]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-mips.c
Add support for MIPS R6.
[thirdparty/binutils-gdb.git] / gas / config / tc-mips.c
CommitLineData
252b5132 1/* tc-mips.c -- assemble code for a MIPS chip.
4b95cf5c 2 Copyright (C) 1993-2014 Free Software Foundation, Inc.
252b5132
RH
3 Contributed by the OSF and Ralph Campbell.
4 Written by Keith Knowles and Ralph Campbell, working independently.
5 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
6 Support.
7
8 This file is part of GAS.
9
10 GAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
ec2655a6 12 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
13 any later version.
14
15 GAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
22 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
23 02110-1301, USA. */
252b5132
RH
24
25#include "as.h"
26#include "config.h"
27#include "subsegs.h"
3882b010 28#include "safe-ctype.h"
252b5132 29
252b5132
RH
30#include "opcode/mips.h"
31#include "itbl-ops.h"
c5dd6aab 32#include "dwarf2dbg.h"
5862107c 33#include "dw2gencfi.h"
252b5132 34
42429eac
RS
35/* Check assumptions made in this file. */
36typedef char static_assert1[sizeof (offsetT) < 8 ? -1 : 1];
37typedef char static_assert2[sizeof (valueT) < 8 ? -1 : 1];
38
252b5132
RH
39#ifdef DEBUG
40#define DBG(x) printf x
41#else
42#define DBG(x)
43#endif
44
263b2574 45#define streq(a, b) (strcmp (a, b) == 0)
46
9e12b7a2
RS
47#define SKIP_SPACE_TABS(S) \
48 do { while (*(S) == ' ' || *(S) == '\t') ++(S); } while (0)
49
252b5132 50/* Clean up namespace so we can include obj-elf.h too. */
17a2f251
TS
51static int mips_output_flavor (void);
52static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
252b5132
RH
53#undef OBJ_PROCESS_STAB
54#undef OUTPUT_FLAVOR
55#undef S_GET_ALIGN
56#undef S_GET_SIZE
57#undef S_SET_ALIGN
58#undef S_SET_SIZE
252b5132
RH
59#undef obj_frob_file
60#undef obj_frob_file_after_relocs
61#undef obj_frob_symbol
62#undef obj_pop_insert
63#undef obj_sec_sym_ok_for_reloc
64#undef OBJ_COPY_SYMBOL_ATTRIBUTES
65
66#include "obj-elf.h"
67/* Fix any of them that we actually care about. */
68#undef OUTPUT_FLAVOR
69#define OUTPUT_FLAVOR mips_output_flavor()
252b5132 70
252b5132 71#include "elf/mips.h"
252b5132
RH
72
73#ifndef ECOFF_DEBUGGING
74#define NO_ECOFF_DEBUGGING
75#define ECOFF_DEBUGGING 0
76#endif
77
ecb4347a
DJ
78int mips_flag_mdebug = -1;
79
dcd410fe
RO
80/* Control generation of .pdr sections. Off by default on IRIX: the native
81 linker doesn't know about and discards them, but relocations against them
82 remain, leading to rld crashes. */
83#ifdef TE_IRIX
84int mips_flag_pdr = FALSE;
85#else
86int mips_flag_pdr = TRUE;
87#endif
88
252b5132
RH
89#include "ecoff.h"
90
252b5132 91static char *mips_regmask_frag;
351cdf24 92static char *mips_flags_frag;
252b5132 93
85b51719 94#define ZERO 0
741fe287 95#define ATREG 1
df58fc94
RS
96#define S0 16
97#define S7 23
252b5132
RH
98#define TREG 24
99#define PIC_CALL_REG 25
100#define KT0 26
101#define KT1 27
102#define GP 28
103#define SP 29
104#define FP 30
105#define RA 31
106
107#define ILLEGAL_REG (32)
108
741fe287
MR
109#define AT mips_opts.at
110
252b5132
RH
111extern int target_big_endian;
112
252b5132 113/* The name of the readonly data section. */
e8044f35 114#define RDATA_SECTION_NAME ".rodata"
252b5132 115
a4e06468
RS
116/* Ways in which an instruction can be "appended" to the output. */
117enum append_method {
118 /* Just add it normally. */
119 APPEND_ADD,
120
121 /* Add it normally and then add a nop. */
122 APPEND_ADD_WITH_NOP,
123
124 /* Turn an instruction with a delay slot into a "compact" version. */
125 APPEND_ADD_COMPACT,
126
127 /* Insert the instruction before the last one. */
128 APPEND_SWAP
129};
130
47e39b9d
RS
131/* Information about an instruction, including its format, operands
132 and fixups. */
133struct mips_cl_insn
134{
135 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
136 const struct mips_opcode *insn_mo;
137
47e39b9d 138 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
5c04167a
RS
139 a copy of INSN_MO->match with the operands filled in. If we have
140 decided to use an extended MIPS16 instruction, this includes the
141 extension. */
47e39b9d
RS
142 unsigned long insn_opcode;
143
144 /* The frag that contains the instruction. */
145 struct frag *frag;
146
147 /* The offset into FRAG of the first instruction byte. */
148 long where;
149
150 /* The relocs associated with the instruction, if any. */
151 fixS *fixp[3];
152
a38419a5
RS
153 /* True if this entry cannot be moved from its current position. */
154 unsigned int fixed_p : 1;
47e39b9d 155
708587a4 156 /* True if this instruction occurred in a .set noreorder block. */
47e39b9d
RS
157 unsigned int noreorder_p : 1;
158
2fa15973
RS
159 /* True for mips16 instructions that jump to an absolute address. */
160 unsigned int mips16_absolute_jump_p : 1;
15be625d
CM
161
162 /* True if this instruction is complete. */
163 unsigned int complete_p : 1;
e407c74b
NC
164
165 /* True if this instruction is cleared from history by unconditional
166 branch. */
167 unsigned int cleared_p : 1;
47e39b9d
RS
168};
169
a325df1d
TS
170/* The ABI to use. */
171enum mips_abi_level
172{
173 NO_ABI = 0,
174 O32_ABI,
175 O64_ABI,
176 N32_ABI,
177 N64_ABI,
178 EABI_ABI
179};
180
181/* MIPS ABI we are using for this output file. */
316f5878 182static enum mips_abi_level mips_abi = NO_ABI;
a325df1d 183
143d77c5
EC
184/* Whether or not we have code that can call pic code. */
185int mips_abicalls = FALSE;
186
aa6975fb
ILT
187/* Whether or not we have code which can be put into a shared
188 library. */
189static bfd_boolean mips_in_shared = TRUE;
190
252b5132
RH
191/* This is the set of options which may be modified by the .set
192 pseudo-op. We use a struct so that .set push and .set pop are more
193 reliable. */
194
e972090a
NC
195struct mips_set_options
196{
252b5132
RH
197 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
198 if it has not been initialized. Changed by `.set mipsN', and the
199 -mipsN command line option, and the default CPU. */
200 int isa;
846ef2d0
RS
201 /* Enabled Application Specific Extensions (ASEs). Changed by `.set
202 <asename>', by command line options, and based on the default
203 architecture. */
204 int ase;
252b5132
RH
205 /* Whether we are assembling for the mips16 processor. 0 if we are
206 not, 1 if we are, and -1 if the value has not been initialized.
207 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
208 -nomips16 command line options, and the default CPU. */
209 int mips16;
df58fc94
RS
210 /* Whether we are assembling for the mipsMIPS ASE. 0 if we are not,
211 1 if we are, and -1 if the value has not been initialized. Changed
212 by `.set micromips' and `.set nomicromips', and the -mmicromips
213 and -mno-micromips command line options, and the default CPU. */
214 int micromips;
252b5132
RH
215 /* Non-zero if we should not reorder instructions. Changed by `.set
216 reorder' and `.set noreorder'. */
217 int noreorder;
741fe287
MR
218 /* Non-zero if we should not permit the register designated "assembler
219 temporary" to be used in instructions. The value is the register
220 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
221 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
222 unsigned int at;
252b5132
RH
223 /* Non-zero if we should warn when a macro instruction expands into
224 more than one machine instruction. Changed by `.set nomacro' and
225 `.set macro'. */
226 int warn_about_macros;
227 /* Non-zero if we should not move instructions. Changed by `.set
228 move', `.set volatile', `.set nomove', and `.set novolatile'. */
229 int nomove;
230 /* Non-zero if we should not optimize branches by moving the target
231 of the branch into the delay slot. Actually, we don't perform
232 this optimization anyhow. Changed by `.set bopt' and `.set
233 nobopt'. */
234 int nobopt;
235 /* Non-zero if we should not autoextend mips16 instructions.
236 Changed by `.set autoextend' and `.set noautoextend'. */
237 int noautoextend;
833794fc
MR
238 /* True if we should only emit 32-bit microMIPS instructions.
239 Changed by `.set insn32' and `.set noinsn32', and the -minsn32
240 and -mno-insn32 command line options. */
241 bfd_boolean insn32;
a325df1d
TS
242 /* Restrict general purpose registers and floating point registers
243 to 32 bit. This is initially determined when -mgp32 or -mfp32
244 is passed but can changed if the assembler code uses .set mipsN. */
bad1aba3 245 int gp;
0b35dfee 246 int fp;
fef14a42
TS
247 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
248 command line option, and the default CPU. */
249 int arch;
aed1a261
RS
250 /* True if ".set sym32" is in effect. */
251 bfd_boolean sym32;
037b32b9
AN
252 /* True if floating-point operations are not allowed. Changed by .set
253 softfloat or .set hardfloat, by command line options -msoft-float or
254 -mhard-float. The default is false. */
255 bfd_boolean soft_float;
256
257 /* True if only single-precision floating-point operations are allowed.
258 Changed by .set singlefloat or .set doublefloat, command-line options
259 -msingle-float or -mdouble-float. The default is false. */
260 bfd_boolean single_float;
351cdf24
MF
261
262 /* 1 if single-precision operations on odd-numbered registers are
263 allowed. */
264 int oddspreg;
252b5132
RH
265};
266
919731af 267/* Specifies whether module level options have been checked yet. */
268static bfd_boolean file_mips_opts_checked = FALSE;
269
7361da2c
AB
270/* Do we support nan2008? 0 if we don't, 1 if we do, and -1 if the
271 value has not been initialized. Changed by `.nan legacy' and
272 `.nan 2008', and the -mnan=legacy and -mnan=2008 command line
273 options, and the default CPU. */
274static int mips_nan2008 = -1;
a325df1d 275
0b35dfee 276/* This is the struct we use to hold the module level set of options.
bad1aba3 277 Note that we must set the isa field to ISA_UNKNOWN and the ASE, gp and
0b35dfee 278 fp fields to -1 to indicate that they have not been initialized. */
037b32b9 279
0b35dfee 280static struct mips_set_options file_mips_opts =
281{
282 /* isa */ ISA_UNKNOWN, /* ase */ 0, /* mips16 */ -1, /* micromips */ -1,
283 /* noreorder */ 0, /* at */ ATREG, /* warn_about_macros */ 0,
284 /* nomove */ 0, /* nobopt */ 0, /* noautoextend */ 0, /* insn32 */ FALSE,
bad1aba3 285 /* gp */ -1, /* fp */ -1, /* arch */ CPU_UNKNOWN, /* sym32 */ FALSE,
351cdf24 286 /* soft_float */ FALSE, /* single_float */ FALSE, /* oddspreg */ -1
0b35dfee 287};
252b5132 288
0b35dfee 289/* This is similar to file_mips_opts, but for the current set of options. */
ba92f887 290
e972090a
NC
291static struct mips_set_options mips_opts =
292{
846ef2d0 293 /* isa */ ISA_UNKNOWN, /* ase */ 0, /* mips16 */ -1, /* micromips */ -1,
b015e599 294 /* noreorder */ 0, /* at */ ATREG, /* warn_about_macros */ 0,
833794fc 295 /* nomove */ 0, /* nobopt */ 0, /* noautoextend */ 0, /* insn32 */ FALSE,
bad1aba3 296 /* gp */ -1, /* fp */ -1, /* arch */ CPU_UNKNOWN, /* sym32 */ FALSE,
351cdf24 297 /* soft_float */ FALSE, /* single_float */ FALSE, /* oddspreg */ -1
e7af610e 298};
252b5132 299
846ef2d0
RS
300/* Which bits of file_ase were explicitly set or cleared by ASE options. */
301static unsigned int file_ase_explicit;
302
252b5132
RH
303/* These variables are filled in with the masks of registers used.
304 The object format code reads them and puts them in the appropriate
305 place. */
306unsigned long mips_gprmask;
307unsigned long mips_cprmask[4];
308
738f4d98 309/* True if any MIPS16 code was produced. */
a4672219
TS
310static int file_ase_mips16;
311
3994f87e
TS
312#define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \
313 || mips_opts.isa == ISA_MIPS32R2 \
ae52f483
AB
314 || mips_opts.isa == ISA_MIPS32R3 \
315 || mips_opts.isa == ISA_MIPS32R5 \
3994f87e 316 || mips_opts.isa == ISA_MIPS64 \
ae52f483
AB
317 || mips_opts.isa == ISA_MIPS64R2 \
318 || mips_opts.isa == ISA_MIPS64R3 \
319 || mips_opts.isa == ISA_MIPS64R5)
3994f87e 320
df58fc94
RS
321/* True if any microMIPS code was produced. */
322static int file_ase_micromips;
323
b12dd2e4
CF
324/* True if we want to create R_MIPS_JALR for jalr $25. */
325#ifdef TE_IRIX
1180b5a4 326#define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
b12dd2e4 327#else
1180b5a4
RS
328/* As a GNU extension, we use R_MIPS_JALR for o32 too. However,
329 because there's no place for any addend, the only acceptable
330 expression is a bare symbol. */
331#define MIPS_JALR_HINT_P(EXPR) \
332 (!HAVE_IN_PLACE_ADDENDS \
333 || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
b12dd2e4
CF
334#endif
335
ec68c924 336/* The argument of the -march= flag. The architecture we are assembling. */
316f5878 337static const char *mips_arch_string;
ec68c924
EC
338
339/* The argument of the -mtune= flag. The architecture for which we
340 are optimizing. */
341static int mips_tune = CPU_UNKNOWN;
316f5878 342static const char *mips_tune_string;
ec68c924 343
316f5878 344/* True when generating 32-bit code for a 64-bit processor. */
252b5132
RH
345static int mips_32bitmode = 0;
346
316f5878
RS
347/* True if the given ABI requires 32-bit registers. */
348#define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
349
350/* Likewise 64-bit registers. */
707bfff6
TS
351#define ABI_NEEDS_64BIT_REGS(ABI) \
352 ((ABI) == N32_ABI \
353 || (ABI) == N64_ABI \
316f5878
RS
354 || (ABI) == O64_ABI)
355
7361da2c
AB
356#define ISA_IS_R6(ISA) \
357 ((ISA) == ISA_MIPS32R6 \
358 || (ISA) == ISA_MIPS64R6)
359
ad3fea08 360/* Return true if ISA supports 64 bit wide gp registers. */
707bfff6
TS
361#define ISA_HAS_64BIT_REGS(ISA) \
362 ((ISA) == ISA_MIPS3 \
363 || (ISA) == ISA_MIPS4 \
364 || (ISA) == ISA_MIPS5 \
365 || (ISA) == ISA_MIPS64 \
ae52f483
AB
366 || (ISA) == ISA_MIPS64R2 \
367 || (ISA) == ISA_MIPS64R3 \
7361da2c
AB
368 || (ISA) == ISA_MIPS64R5 \
369 || (ISA) == ISA_MIPS64R6)
9ce8a5dd 370
ad3fea08
TS
371/* Return true if ISA supports 64 bit wide float registers. */
372#define ISA_HAS_64BIT_FPRS(ISA) \
373 ((ISA) == ISA_MIPS3 \
374 || (ISA) == ISA_MIPS4 \
375 || (ISA) == ISA_MIPS5 \
376 || (ISA) == ISA_MIPS32R2 \
ae52f483
AB
377 || (ISA) == ISA_MIPS32R3 \
378 || (ISA) == ISA_MIPS32R5 \
7361da2c 379 || (ISA) == ISA_MIPS32R6 \
ad3fea08 380 || (ISA) == ISA_MIPS64 \
ae52f483
AB
381 || (ISA) == ISA_MIPS64R2 \
382 || (ISA) == ISA_MIPS64R3 \
7361da2c
AB
383 || (ISA) == ISA_MIPS64R5 \
384 || (ISA) == ISA_MIPS64R6)
ad3fea08 385
af7ee8bf
CD
386/* Return true if ISA supports 64-bit right rotate (dror et al.)
387 instructions. */
707bfff6 388#define ISA_HAS_DROR(ISA) \
df58fc94 389 ((ISA) == ISA_MIPS64R2 \
ae52f483
AB
390 || (ISA) == ISA_MIPS64R3 \
391 || (ISA) == ISA_MIPS64R5 \
7361da2c 392 || (ISA) == ISA_MIPS64R6 \
df58fc94
RS
393 || (mips_opts.micromips \
394 && ISA_HAS_64BIT_REGS (ISA)) \
395 )
af7ee8bf
CD
396
397/* Return true if ISA supports 32-bit right rotate (ror et al.)
398 instructions. */
707bfff6
TS
399#define ISA_HAS_ROR(ISA) \
400 ((ISA) == ISA_MIPS32R2 \
ae52f483
AB
401 || (ISA) == ISA_MIPS32R3 \
402 || (ISA) == ISA_MIPS32R5 \
7361da2c 403 || (ISA) == ISA_MIPS32R6 \
707bfff6 404 || (ISA) == ISA_MIPS64R2 \
ae52f483
AB
405 || (ISA) == ISA_MIPS64R3 \
406 || (ISA) == ISA_MIPS64R5 \
7361da2c 407 || (ISA) == ISA_MIPS64R6 \
846ef2d0 408 || (mips_opts.ase & ASE_SMARTMIPS) \
df58fc94
RS
409 || mips_opts.micromips \
410 )
707bfff6 411
7455baf8 412/* Return true if ISA supports single-precision floats in odd registers. */
351cdf24
MF
413#define ISA_HAS_ODD_SINGLE_FPR(ISA, CPU)\
414 (((ISA) == ISA_MIPS32 \
415 || (ISA) == ISA_MIPS32R2 \
416 || (ISA) == ISA_MIPS32R3 \
417 || (ISA) == ISA_MIPS32R5 \
7361da2c 418 || (ISA) == ISA_MIPS32R6 \
351cdf24
MF
419 || (ISA) == ISA_MIPS64 \
420 || (ISA) == ISA_MIPS64R2 \
421 || (ISA) == ISA_MIPS64R3 \
422 || (ISA) == ISA_MIPS64R5 \
7361da2c 423 || (ISA) == ISA_MIPS64R6 \
351cdf24
MF
424 || (CPU) == CPU_R5900) \
425 && (CPU) != CPU_LOONGSON_3A)
af7ee8bf 426
ad3fea08
TS
427/* Return true if ISA supports move to/from high part of a 64-bit
428 floating-point register. */
429#define ISA_HAS_MXHC1(ISA) \
430 ((ISA) == ISA_MIPS32R2 \
ae52f483
AB
431 || (ISA) == ISA_MIPS32R3 \
432 || (ISA) == ISA_MIPS32R5 \
7361da2c
AB
433 || (ISA) == ISA_MIPS32R6 \
434 || (ISA) == ISA_MIPS64R2 \
435 || (ISA) == ISA_MIPS64R3 \
436 || (ISA) == ISA_MIPS64R5 \
437 || (ISA) == ISA_MIPS64R6)
438
439/* Return true if ISA supports legacy NAN. */
440#define ISA_HAS_LEGACY_NAN(ISA) \
441 ((ISA) == ISA_MIPS1 \
442 || (ISA) == ISA_MIPS2 \
443 || (ISA) == ISA_MIPS3 \
444 || (ISA) == ISA_MIPS4 \
445 || (ISA) == ISA_MIPS5 \
446 || (ISA) == ISA_MIPS32 \
447 || (ISA) == ISA_MIPS32R2 \
448 || (ISA) == ISA_MIPS32R3 \
449 || (ISA) == ISA_MIPS32R5 \
450 || (ISA) == ISA_MIPS64 \
ae52f483
AB
451 || (ISA) == ISA_MIPS64R2 \
452 || (ISA) == ISA_MIPS64R3 \
453 || (ISA) == ISA_MIPS64R5)
ad3fea08 454
bad1aba3 455#define GPR_SIZE \
456 (mips_opts.gp == 64 && !ISA_HAS_64BIT_REGS (mips_opts.isa) \
457 ? 32 \
458 : mips_opts.gp)
ca4e0257 459
bad1aba3 460#define FPR_SIZE \
461 (mips_opts.fp == 64 && !ISA_HAS_64BIT_FPRS (mips_opts.isa) \
462 ? 32 \
463 : mips_opts.fp)
ca4e0257 464
316f5878 465#define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
e013f690 466
316f5878 467#define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
e013f690 468
3b91255e
RS
469/* True if relocations are stored in-place. */
470#define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
471
aed1a261
RS
472/* The ABI-derived address size. */
473#define HAVE_64BIT_ADDRESSES \
bad1aba3 474 (GPR_SIZE == 64 && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
aed1a261 475#define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
e013f690 476
aed1a261
RS
477/* The size of symbolic constants (i.e., expressions of the form
478 "SYMBOL" or "SYMBOL + OFFSET"). */
479#define HAVE_32BIT_SYMBOLS \
480 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
481#define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
ca4e0257 482
b7c7d6c1
TS
483/* Addresses are loaded in different ways, depending on the address size
484 in use. The n32 ABI Documentation also mandates the use of additions
485 with overflow checking, but existing implementations don't follow it. */
f899b4b8 486#define ADDRESS_ADD_INSN \
b7c7d6c1 487 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
f899b4b8
TS
488
489#define ADDRESS_ADDI_INSN \
b7c7d6c1 490 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
f899b4b8
TS
491
492#define ADDRESS_LOAD_INSN \
493 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
494
495#define ADDRESS_STORE_INSN \
496 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
497
a4672219 498/* Return true if the given CPU supports the MIPS16 ASE. */
3396de36
TS
499#define CPU_HAS_MIPS16(cpu) \
500 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
501 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
a4672219 502
2309ddf2 503/* Return true if the given CPU supports the microMIPS ASE. */
df58fc94
RS
504#define CPU_HAS_MICROMIPS(cpu) 0
505
60b63b72
RS
506/* True if CPU has a dror instruction. */
507#define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
508
509/* True if CPU has a ror instruction. */
510#define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
511
dd6a37e7 512/* True if CPU is in the Octeon family */
432233b3 513#define CPU_IS_OCTEON(CPU) ((CPU) == CPU_OCTEON || (CPU) == CPU_OCTEONP || (CPU) == CPU_OCTEON2)
dd6a37e7 514
dd3cbb7e 515/* True if CPU has seq/sne and seqi/snei instructions. */
dd6a37e7 516#define CPU_HAS_SEQ(CPU) (CPU_IS_OCTEON (CPU))
dd3cbb7e 517
0aa27725
RS
518/* True, if CPU has support for ldc1 and sdc1. */
519#define CPU_HAS_LDC1_SDC1(CPU) \
520 ((mips_opts.isa != ISA_MIPS1) && ((CPU) != CPU_R5900))
521
c8978940
CD
522/* True if mflo and mfhi can be immediately followed by instructions
523 which write to the HI and LO registers.
524
525 According to MIPS specifications, MIPS ISAs I, II, and III need
526 (at least) two instructions between the reads of HI/LO and
527 instructions which write them, and later ISAs do not. Contradicting
528 the MIPS specifications, some MIPS IV processor user manuals (e.g.
529 the UM for the NEC Vr5000) document needing the instructions between
530 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
531 MIPS64 and later ISAs to have the interlocks, plus any specific
532 earlier-ISA CPUs for which CPU documentation declares that the
533 instructions are really interlocked. */
534#define hilo_interlocks \
535 (mips_opts.isa == ISA_MIPS32 \
536 || mips_opts.isa == ISA_MIPS32R2 \
ae52f483
AB
537 || mips_opts.isa == ISA_MIPS32R3 \
538 || mips_opts.isa == ISA_MIPS32R5 \
7361da2c 539 || mips_opts.isa == ISA_MIPS32R6 \
c8978940
CD
540 || mips_opts.isa == ISA_MIPS64 \
541 || mips_opts.isa == ISA_MIPS64R2 \
ae52f483
AB
542 || mips_opts.isa == ISA_MIPS64R3 \
543 || mips_opts.isa == ISA_MIPS64R5 \
7361da2c 544 || mips_opts.isa == ISA_MIPS64R6 \
c8978940 545 || mips_opts.arch == CPU_R4010 \
e407c74b 546 || mips_opts.arch == CPU_R5900 \
c8978940
CD
547 || mips_opts.arch == CPU_R10000 \
548 || mips_opts.arch == CPU_R12000 \
3aa3176b
TS
549 || mips_opts.arch == CPU_R14000 \
550 || mips_opts.arch == CPU_R16000 \
c8978940 551 || mips_opts.arch == CPU_RM7000 \
c8978940 552 || mips_opts.arch == CPU_VR5500 \
df58fc94 553 || mips_opts.micromips \
c8978940 554 )
252b5132
RH
555
556/* Whether the processor uses hardware interlocks to protect reads
81912461
ILT
557 from the GPRs after they are loaded from memory, and thus does not
558 require nops to be inserted. This applies to instructions marked
67dc82bc 559 INSN_LOAD_MEMORY. These nops are only required at MIPS ISA
df58fc94
RS
560 level I and microMIPS mode instructions are always interlocked. */
561#define gpr_interlocks \
562 (mips_opts.isa != ISA_MIPS1 \
563 || mips_opts.arch == CPU_R3900 \
e407c74b 564 || mips_opts.arch == CPU_R5900 \
df58fc94
RS
565 || mips_opts.micromips \
566 )
252b5132 567
81912461
ILT
568/* Whether the processor uses hardware interlocks to avoid delays
569 required by coprocessor instructions, and thus does not require
570 nops to be inserted. This applies to instructions marked
43885403
MF
571 INSN_LOAD_COPROC, INSN_COPROC_MOVE, and to delays between
572 instructions marked INSN_WRITE_COND_CODE and ones marked
81912461 573 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
df58fc94
RS
574 levels I, II, and III and microMIPS mode instructions are always
575 interlocked. */
bdaaa2e1 576/* Itbl support may require additional care here. */
81912461
ILT
577#define cop_interlocks \
578 ((mips_opts.isa != ISA_MIPS1 \
579 && mips_opts.isa != ISA_MIPS2 \
580 && mips_opts.isa != ISA_MIPS3) \
581 || mips_opts.arch == CPU_R4300 \
df58fc94 582 || mips_opts.micromips \
81912461
ILT
583 )
584
585/* Whether the processor uses hardware interlocks to protect reads
586 from coprocessor registers after they are loaded from memory, and
587 thus does not require nops to be inserted. This applies to
588 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
df58fc94
RS
589 requires at MIPS ISA level I and microMIPS mode instructions are
590 always interlocked. */
591#define cop_mem_interlocks \
592 (mips_opts.isa != ISA_MIPS1 \
593 || mips_opts.micromips \
594 )
252b5132 595
6b76fefe
CM
596/* Is this a mfhi or mflo instruction? */
597#define MF_HILO_INSN(PINFO) \
b19e8a9b
AN
598 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
599
df58fc94
RS
600/* Whether code compression (either of the MIPS16 or the microMIPS ASEs)
601 has been selected. This implies, in particular, that addresses of text
602 labels have their LSB set. */
603#define HAVE_CODE_COMPRESSION \
604 ((mips_opts.mips16 | mips_opts.micromips) != 0)
605
42429eac 606/* The minimum and maximum signed values that can be stored in a GPR. */
bad1aba3 607#define GPR_SMAX ((offsetT) (((valueT) 1 << (GPR_SIZE - 1)) - 1))
42429eac
RS
608#define GPR_SMIN (-GPR_SMAX - 1)
609
252b5132
RH
610/* MIPS PIC level. */
611
a161fe53 612enum mips_pic_level mips_pic;
252b5132 613
c9914766 614/* 1 if we should generate 32 bit offsets from the $gp register in
252b5132 615 SVR4_PIC mode. Currently has no meaning in other modes. */
c9914766 616static int mips_big_got = 0;
252b5132
RH
617
618/* 1 if trap instructions should used for overflow rather than break
619 instructions. */
c9914766 620static int mips_trap = 0;
252b5132 621
119d663a 622/* 1 if double width floating point constants should not be constructed
b6ff326e 623 by assembling two single width halves into two single width floating
119d663a
NC
624 point registers which just happen to alias the double width destination
625 register. On some architectures this aliasing can be disabled by a bit
d547a75e 626 in the status register, and the setting of this bit cannot be determined
119d663a
NC
627 automatically at assemble time. */
628static int mips_disable_float_construction;
629
252b5132
RH
630/* Non-zero if any .set noreorder directives were used. */
631
632static int mips_any_noreorder;
633
6b76fefe
CM
634/* Non-zero if nops should be inserted when the register referenced in
635 an mfhi/mflo instruction is read in the next two instructions. */
636static int mips_7000_hilo_fix;
637
02ffd3e4 638/* The size of objects in the small data section. */
156c2f8b 639static unsigned int g_switch_value = 8;
252b5132
RH
640/* Whether the -G option was used. */
641static int g_switch_seen = 0;
642
643#define N_RMASK 0xc4
644#define N_VFP 0xd4
645
646/* If we can determine in advance that GP optimization won't be
647 possible, we can skip the relaxation stuff that tries to produce
648 GP-relative references. This makes delay slot optimization work
649 better.
650
651 This function can only provide a guess, but it seems to work for
fba2b7f9
GK
652 gcc output. It needs to guess right for gcc, otherwise gcc
653 will put what it thinks is a GP-relative instruction in a branch
654 delay slot.
252b5132
RH
655
656 I don't know if a fix is needed for the SVR4_PIC mode. I've only
657 fixed it for the non-PIC mode. KR 95/04/07 */
17a2f251 658static int nopic_need_relax (symbolS *, int);
252b5132
RH
659
660/* handle of the OPCODE hash table */
661static struct hash_control *op_hash = NULL;
662
663/* The opcode hash table we use for the mips16. */
664static struct hash_control *mips16_op_hash = NULL;
665
df58fc94
RS
666/* The opcode hash table we use for the microMIPS ASE. */
667static struct hash_control *micromips_op_hash = NULL;
668
252b5132
RH
669/* This array holds the chars that always start a comment. If the
670 pre-processor is disabled, these aren't very useful */
671const char comment_chars[] = "#";
672
673/* This array holds the chars that only start a comment at the beginning of
674 a line. If the line seems to have the form '# 123 filename'
675 .line and .file directives will appear in the pre-processed output */
676/* Note that input_file.c hand checks for '#' at the beginning of the
677 first line of the input file. This is because the compiler outputs
bdaaa2e1 678 #NO_APP at the beginning of its output. */
252b5132
RH
679/* Also note that C style comments are always supported. */
680const char line_comment_chars[] = "#";
681
bdaaa2e1 682/* This array holds machine specific line separator characters. */
63a0b638 683const char line_separator_chars[] = ";";
252b5132
RH
684
685/* Chars that can be used to separate mant from exp in floating point nums */
686const char EXP_CHARS[] = "eE";
687
688/* Chars that mean this number is a floating point constant */
689/* As in 0f12.456 */
690/* or 0d1.2345e12 */
691const char FLT_CHARS[] = "rRsSfFdDxXpP";
692
693/* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
694 changed in read.c . Ideally it shouldn't have to know about it at all,
695 but nothing is ideal around here.
696 */
697
e3de51ce
RS
698/* Types of printf format used for instruction-related error messages.
699 "I" means int ("%d") and "S" means string ("%s"). */
700enum mips_insn_error_format {
701 ERR_FMT_PLAIN,
702 ERR_FMT_I,
703 ERR_FMT_SS,
704};
705
706/* Information about an error that was found while assembling the current
707 instruction. */
708struct mips_insn_error {
709 /* We sometimes need to match an instruction against more than one
710 opcode table entry. Errors found during this matching are reported
711 against a particular syntactic argument rather than against the
712 instruction as a whole. We grade these messages so that errors
713 against argument N have a greater priority than an error against
714 any argument < N, since the former implies that arguments up to N
715 were acceptable and that the opcode entry was therefore a closer match.
716 If several matches report an error against the same argument,
717 we only use that error if it is the same in all cases.
718
719 min_argnum is the minimum argument number for which an error message
720 should be accepted. It is 0 if MSG is against the instruction as
721 a whole. */
722 int min_argnum;
723
724 /* The printf()-style message, including its format and arguments. */
725 enum mips_insn_error_format format;
726 const char *msg;
727 union {
728 int i;
729 const char *ss[2];
730 } u;
731};
732
733/* The error that should be reported for the current instruction. */
734static struct mips_insn_error insn_error;
252b5132
RH
735
736static int auto_align = 1;
737
738/* When outputting SVR4 PIC code, the assembler needs to know the
739 offset in the stack frame from which to restore the $gp register.
740 This is set by the .cprestore pseudo-op, and saved in this
741 variable. */
742static offsetT mips_cprestore_offset = -1;
743
67c1ffbe 744/* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
6478892d 745 more optimizations, it can use a register value instead of a memory-saved
956cd1d6 746 offset and even an other register than $gp as global pointer. */
6478892d
TS
747static offsetT mips_cpreturn_offset = -1;
748static int mips_cpreturn_register = -1;
749static int mips_gp_register = GP;
def2e0dd 750static int mips_gprel_offset = 0;
6478892d 751
7a621144
DJ
752/* Whether mips_cprestore_offset has been set in the current function
753 (or whether it has already been warned about, if not). */
754static int mips_cprestore_valid = 0;
755
252b5132
RH
756/* This is the register which holds the stack frame, as set by the
757 .frame pseudo-op. This is needed to implement .cprestore. */
758static int mips_frame_reg = SP;
759
7a621144
DJ
760/* Whether mips_frame_reg has been set in the current function
761 (or whether it has already been warned about, if not). */
762static int mips_frame_reg_valid = 0;
763
252b5132
RH
764/* To output NOP instructions correctly, we need to keep information
765 about the previous two instructions. */
766
767/* Whether we are optimizing. The default value of 2 means to remove
768 unneeded NOPs and swap branch instructions when possible. A value
769 of 1 means to not swap branches. A value of 0 means to always
770 insert NOPs. */
771static int mips_optimize = 2;
772
773/* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
774 equivalent to seeing no -g option at all. */
775static int mips_debug = 0;
776
7d8e00cf
RS
777/* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
778#define MAX_VR4130_NOPS 4
779
780/* The maximum number of NOPs needed to fill delay slots. */
781#define MAX_DELAY_NOPS 2
782
783/* The maximum number of NOPs needed for any purpose. */
784#define MAX_NOPS 4
71400594
RS
785
786/* A list of previous instructions, with index 0 being the most recent.
787 We need to look back MAX_NOPS instructions when filling delay slots
788 or working around processor errata. We need to look back one
789 instruction further if we're thinking about using history[0] to
790 fill a branch delay slot. */
791static struct mips_cl_insn history[1 + MAX_NOPS];
252b5132 792
fc76e730 793/* Arrays of operands for each instruction. */
14daeee3 794#define MAX_OPERANDS 6
fc76e730
RS
795struct mips_operand_array {
796 const struct mips_operand *operand[MAX_OPERANDS];
797};
798static struct mips_operand_array *mips_operands;
799static struct mips_operand_array *mips16_operands;
800static struct mips_operand_array *micromips_operands;
801
1e915849 802/* Nop instructions used by emit_nop. */
df58fc94
RS
803static struct mips_cl_insn nop_insn;
804static struct mips_cl_insn mips16_nop_insn;
805static struct mips_cl_insn micromips_nop16_insn;
806static struct mips_cl_insn micromips_nop32_insn;
1e915849
RS
807
808/* The appropriate nop for the current mode. */
833794fc
MR
809#define NOP_INSN (mips_opts.mips16 \
810 ? &mips16_nop_insn \
811 : (mips_opts.micromips \
812 ? (mips_opts.insn32 \
813 ? &micromips_nop32_insn \
814 : &micromips_nop16_insn) \
815 : &nop_insn))
df58fc94
RS
816
817/* The size of NOP_INSN in bytes. */
833794fc
MR
818#define NOP_INSN_SIZE ((mips_opts.mips16 \
819 || (mips_opts.micromips && !mips_opts.insn32)) \
820 ? 2 : 4)
252b5132 821
252b5132
RH
822/* If this is set, it points to a frag holding nop instructions which
823 were inserted before the start of a noreorder section. If those
824 nops turn out to be unnecessary, the size of the frag can be
825 decreased. */
826static fragS *prev_nop_frag;
827
828/* The number of nop instructions we created in prev_nop_frag. */
829static int prev_nop_frag_holds;
830
831/* The number of nop instructions that we know we need in
bdaaa2e1 832 prev_nop_frag. */
252b5132
RH
833static int prev_nop_frag_required;
834
835/* The number of instructions we've seen since prev_nop_frag. */
836static int prev_nop_frag_since;
837
e8044f35
RS
838/* Relocations against symbols are sometimes done in two parts, with a HI
839 relocation and a LO relocation. Each relocation has only 16 bits of
840 space to store an addend. This means that in order for the linker to
841 handle carries correctly, it must be able to locate both the HI and
842 the LO relocation. This means that the relocations must appear in
843 order in the relocation table.
252b5132
RH
844
845 In order to implement this, we keep track of each unmatched HI
846 relocation. We then sort them so that they immediately precede the
bdaaa2e1 847 corresponding LO relocation. */
252b5132 848
e972090a
NC
849struct mips_hi_fixup
850{
252b5132
RH
851 /* Next HI fixup. */
852 struct mips_hi_fixup *next;
853 /* This fixup. */
854 fixS *fixp;
855 /* The section this fixup is in. */
856 segT seg;
857};
858
859/* The list of unmatched HI relocs. */
860
861static struct mips_hi_fixup *mips_hi_fixup_list;
862
64bdfcaf
RS
863/* The frag containing the last explicit relocation operator.
864 Null if explicit relocations have not been used. */
865
866static fragS *prev_reloc_op_frag;
867
252b5132
RH
868/* Map mips16 register numbers to normal MIPS register numbers. */
869
e972090a
NC
870static const unsigned int mips16_to_32_reg_map[] =
871{
252b5132
RH
872 16, 17, 2, 3, 4, 5, 6, 7
873};
60b63b72 874
df58fc94
RS
875/* Map microMIPS register numbers to normal MIPS register numbers. */
876
df58fc94 877#define micromips_to_32_reg_d_map mips16_to_32_reg_map
df58fc94
RS
878
879/* The microMIPS registers with type h. */
e76ff5ab 880static const unsigned int micromips_to_32_reg_h_map1[] =
df58fc94
RS
881{
882 5, 5, 6, 4, 4, 4, 4, 4
883};
e76ff5ab 884static const unsigned int micromips_to_32_reg_h_map2[] =
df58fc94
RS
885{
886 6, 7, 7, 21, 22, 5, 6, 7
887};
888
df58fc94
RS
889/* The microMIPS registers with type m. */
890static const unsigned int micromips_to_32_reg_m_map[] =
891{
892 0, 17, 2, 3, 16, 18, 19, 20
893};
894
895#define micromips_to_32_reg_n_map micromips_to_32_reg_m_map
896
71400594
RS
897/* Classifies the kind of instructions we're interested in when
898 implementing -mfix-vr4120. */
c67a084a
NC
899enum fix_vr4120_class
900{
71400594
RS
901 FIX_VR4120_MACC,
902 FIX_VR4120_DMACC,
903 FIX_VR4120_MULT,
904 FIX_VR4120_DMULT,
905 FIX_VR4120_DIV,
906 FIX_VR4120_MTHILO,
907 NUM_FIX_VR4120_CLASSES
908};
909
c67a084a
NC
910/* ...likewise -mfix-loongson2f-jump. */
911static bfd_boolean mips_fix_loongson2f_jump;
912
913/* ...likewise -mfix-loongson2f-nop. */
914static bfd_boolean mips_fix_loongson2f_nop;
915
916/* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed. */
917static bfd_boolean mips_fix_loongson2f;
918
71400594
RS
919/* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
920 there must be at least one other instruction between an instruction
921 of type X and an instruction of type Y. */
922static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
923
924/* True if -mfix-vr4120 is in force. */
d766e8ec 925static int mips_fix_vr4120;
4a6a3df4 926
7d8e00cf
RS
927/* ...likewise -mfix-vr4130. */
928static int mips_fix_vr4130;
929
6a32d874
CM
930/* ...likewise -mfix-24k. */
931static int mips_fix_24k;
932
a8d14a88
CM
933/* ...likewise -mfix-rm7000 */
934static int mips_fix_rm7000;
935
d954098f
DD
936/* ...likewise -mfix-cn63xxp1 */
937static bfd_boolean mips_fix_cn63xxp1;
938
4a6a3df4
AO
939/* We don't relax branches by default, since this causes us to expand
940 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
941 fail to compute the offset before expanding the macro to the most
942 efficient expansion. */
943
944static int mips_relax_branch;
252b5132 945\f
4d7206a2
RS
946/* The expansion of many macros depends on the type of symbol that
947 they refer to. For example, when generating position-dependent code,
948 a macro that refers to a symbol may have two different expansions,
949 one which uses GP-relative addresses and one which uses absolute
950 addresses. When generating SVR4-style PIC, a macro may have
951 different expansions for local and global symbols.
952
953 We handle these situations by generating both sequences and putting
954 them in variant frags. In position-dependent code, the first sequence
955 will be the GP-relative one and the second sequence will be the
956 absolute one. In SVR4 PIC, the first sequence will be for global
957 symbols and the second will be for local symbols.
958
584892a6
RS
959 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
960 SECOND are the lengths of the two sequences in bytes. These fields
961 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
962 the subtype has the following flags:
4d7206a2 963
584892a6
RS
964 RELAX_USE_SECOND
965 Set if it has been decided that we should use the second
966 sequence instead of the first.
967
968 RELAX_SECOND_LONGER
969 Set in the first variant frag if the macro's second implementation
970 is longer than its first. This refers to the macro as a whole,
971 not an individual relaxation.
972
973 RELAX_NOMACRO
974 Set in the first variant frag if the macro appeared in a .set nomacro
975 block and if one alternative requires a warning but the other does not.
976
977 RELAX_DELAY_SLOT
978 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
979 delay slot.
4d7206a2 980
df58fc94
RS
981 RELAX_DELAY_SLOT_16BIT
982 Like RELAX_DELAY_SLOT, but indicates that the delay slot requires a
983 16-bit instruction.
984
985 RELAX_DELAY_SLOT_SIZE_FIRST
986 Like RELAX_DELAY_SLOT, but indicates that the first implementation of
987 the macro is of the wrong size for the branch delay slot.
988
989 RELAX_DELAY_SLOT_SIZE_SECOND
990 Like RELAX_DELAY_SLOT, but indicates that the second implementation of
991 the macro is of the wrong size for the branch delay slot.
992
4d7206a2
RS
993 The frag's "opcode" points to the first fixup for relaxable code.
994
995 Relaxable macros are generated using a sequence such as:
996
997 relax_start (SYMBOL);
998 ... generate first expansion ...
999 relax_switch ();
1000 ... generate second expansion ...
1001 relax_end ();
1002
1003 The code and fixups for the unwanted alternative are discarded
1004 by md_convert_frag. */
584892a6 1005#define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
4d7206a2 1006
584892a6
RS
1007#define RELAX_FIRST(X) (((X) >> 8) & 0xff)
1008#define RELAX_SECOND(X) ((X) & 0xff)
1009#define RELAX_USE_SECOND 0x10000
1010#define RELAX_SECOND_LONGER 0x20000
1011#define RELAX_NOMACRO 0x40000
1012#define RELAX_DELAY_SLOT 0x80000
df58fc94
RS
1013#define RELAX_DELAY_SLOT_16BIT 0x100000
1014#define RELAX_DELAY_SLOT_SIZE_FIRST 0x200000
1015#define RELAX_DELAY_SLOT_SIZE_SECOND 0x400000
252b5132 1016
4a6a3df4
AO
1017/* Branch without likely bit. If label is out of range, we turn:
1018
1019 beq reg1, reg2, label
1020 delay slot
1021
1022 into
1023
1024 bne reg1, reg2, 0f
1025 nop
1026 j label
1027 0: delay slot
1028
1029 with the following opcode replacements:
1030
1031 beq <-> bne
1032 blez <-> bgtz
1033 bltz <-> bgez
1034 bc1f <-> bc1t
1035
1036 bltzal <-> bgezal (with jal label instead of j label)
1037
1038 Even though keeping the delay slot instruction in the delay slot of
1039 the branch would be more efficient, it would be very tricky to do
1040 correctly, because we'd have to introduce a variable frag *after*
1041 the delay slot instruction, and expand that instead. Let's do it
1042 the easy way for now, even if the branch-not-taken case now costs
1043 one additional instruction. Out-of-range branches are not supposed
1044 to be common, anyway.
1045
1046 Branch likely. If label is out of range, we turn:
1047
1048 beql reg1, reg2, label
1049 delay slot (annulled if branch not taken)
1050
1051 into
1052
1053 beql reg1, reg2, 1f
1054 nop
1055 beql $0, $0, 2f
1056 nop
1057 1: j[al] label
1058 delay slot (executed only if branch taken)
1059 2:
1060
1061 It would be possible to generate a shorter sequence by losing the
1062 likely bit, generating something like:
b34976b6 1063
4a6a3df4
AO
1064 bne reg1, reg2, 0f
1065 nop
1066 j[al] label
1067 delay slot (executed only if branch taken)
1068 0:
1069
1070 beql -> bne
1071 bnel -> beq
1072 blezl -> bgtz
1073 bgtzl -> blez
1074 bltzl -> bgez
1075 bgezl -> bltz
1076 bc1fl -> bc1t
1077 bc1tl -> bc1f
1078
1079 bltzall -> bgezal (with jal label instead of j label)
1080 bgezall -> bltzal (ditto)
1081
1082
1083 but it's not clear that it would actually improve performance. */
66b3e8da
MR
1084#define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar) \
1085 ((relax_substateT) \
1086 (0xc0000000 \
1087 | ((at) & 0x1f) \
1088 | ((toofar) ? 0x20 : 0) \
1089 | ((link) ? 0x40 : 0) \
1090 | ((likely) ? 0x80 : 0) \
1091 | ((uncond) ? 0x100 : 0)))
4a6a3df4 1092#define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
66b3e8da
MR
1093#define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
1094#define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
1095#define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
1096#define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
1097#define RELAX_BRANCH_AT(i) ((i) & 0x1f)
4a6a3df4 1098
252b5132
RH
1099/* For mips16 code, we use an entirely different form of relaxation.
1100 mips16 supports two versions of most instructions which take
1101 immediate values: a small one which takes some small value, and a
1102 larger one which takes a 16 bit value. Since branches also follow
1103 this pattern, relaxing these values is required.
1104
1105 We can assemble both mips16 and normal MIPS code in a single
1106 object. Therefore, we need to support this type of relaxation at
1107 the same time that we support the relaxation described above. We
1108 use the high bit of the subtype field to distinguish these cases.
1109
1110 The information we store for this type of relaxation is the
1111 argument code found in the opcode file for this relocation, whether
1112 the user explicitly requested a small or extended form, and whether
1113 the relocation is in a jump or jal delay slot. That tells us the
1114 size of the value, and how it should be stored. We also store
1115 whether the fragment is considered to be extended or not. We also
1116 store whether this is known to be a branch to a different section,
1117 whether we have tried to relax this frag yet, and whether we have
1118 ever extended a PC relative fragment because of a shift count. */
1119#define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
1120 (0x80000000 \
1121 | ((type) & 0xff) \
1122 | ((small) ? 0x100 : 0) \
1123 | ((ext) ? 0x200 : 0) \
1124 | ((dslot) ? 0x400 : 0) \
1125 | ((jal_dslot) ? 0x800 : 0))
4a6a3df4 1126#define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
252b5132
RH
1127#define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
1128#define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
1129#define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
1130#define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
1131#define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
1132#define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
1133#define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
1134#define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
1135#define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
1136#define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
1137#define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
885add95 1138
df58fc94
RS
1139/* For microMIPS code, we use relaxation similar to one we use for
1140 MIPS16 code. Some instructions that take immediate values support
1141 two encodings: a small one which takes some small value, and a
1142 larger one which takes a 16 bit value. As some branches also follow
1143 this pattern, relaxing these values is required.
1144
1145 We can assemble both microMIPS and normal MIPS code in a single
1146 object. Therefore, we need to support this type of relaxation at
1147 the same time that we support the relaxation described above. We
1148 use one of the high bits of the subtype field to distinguish these
1149 cases.
1150
1151 The information we store for this type of relaxation is the argument
1152 code found in the opcode file for this relocation, the register
40209cad
MR
1153 selected as the assembler temporary, whether the branch is
1154 unconditional, whether it is compact, whether it stores the link
1155 address implicitly in $ra, whether relaxation of out-of-range 32-bit
1156 branches to a sequence of instructions is enabled, and whether the
1157 displacement of a branch is too large to fit as an immediate argument
1158 of a 16-bit and a 32-bit branch, respectively. */
1159#define RELAX_MICROMIPS_ENCODE(type, at, uncond, compact, link, \
1160 relax32, toofar16, toofar32) \
1161 (0x40000000 \
1162 | ((type) & 0xff) \
1163 | (((at) & 0x1f) << 8) \
1164 | ((uncond) ? 0x2000 : 0) \
1165 | ((compact) ? 0x4000 : 0) \
1166 | ((link) ? 0x8000 : 0) \
1167 | ((relax32) ? 0x10000 : 0) \
1168 | ((toofar16) ? 0x20000 : 0) \
1169 | ((toofar32) ? 0x40000 : 0))
df58fc94
RS
1170#define RELAX_MICROMIPS_P(i) (((i) & 0xc0000000) == 0x40000000)
1171#define RELAX_MICROMIPS_TYPE(i) ((i) & 0xff)
1172#define RELAX_MICROMIPS_AT(i) (((i) >> 8) & 0x1f)
40209cad
MR
1173#define RELAX_MICROMIPS_UNCOND(i) (((i) & 0x2000) != 0)
1174#define RELAX_MICROMIPS_COMPACT(i) (((i) & 0x4000) != 0)
1175#define RELAX_MICROMIPS_LINK(i) (((i) & 0x8000) != 0)
1176#define RELAX_MICROMIPS_RELAX32(i) (((i) & 0x10000) != 0)
1177
1178#define RELAX_MICROMIPS_TOOFAR16(i) (((i) & 0x20000) != 0)
1179#define RELAX_MICROMIPS_MARK_TOOFAR16(i) ((i) | 0x20000)
1180#define RELAX_MICROMIPS_CLEAR_TOOFAR16(i) ((i) & ~0x20000)
1181#define RELAX_MICROMIPS_TOOFAR32(i) (((i) & 0x40000) != 0)
1182#define RELAX_MICROMIPS_MARK_TOOFAR32(i) ((i) | 0x40000)
1183#define RELAX_MICROMIPS_CLEAR_TOOFAR32(i) ((i) & ~0x40000)
df58fc94 1184
43c0598f
RS
1185/* Sign-extend 16-bit value X. */
1186#define SEXT_16BIT(X) ((((X) + 0x8000) & 0xffff) - 0x8000)
1187
885add95
CD
1188/* Is the given value a sign-extended 32-bit value? */
1189#define IS_SEXT_32BIT_NUM(x) \
1190 (((x) &~ (offsetT) 0x7fffffff) == 0 \
1191 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
1192
1193/* Is the given value a sign-extended 16-bit value? */
1194#define IS_SEXT_16BIT_NUM(x) \
1195 (((x) &~ (offsetT) 0x7fff) == 0 \
1196 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
1197
df58fc94
RS
1198/* Is the given value a sign-extended 12-bit value? */
1199#define IS_SEXT_12BIT_NUM(x) \
1200 (((((x) & 0xfff) ^ 0x800LL) - 0x800LL) == (x))
1201
7f3c4072
CM
1202/* Is the given value a sign-extended 9-bit value? */
1203#define IS_SEXT_9BIT_NUM(x) \
1204 (((((x) & 0x1ff) ^ 0x100LL) - 0x100LL) == (x))
1205
2051e8c4
MR
1206/* Is the given value a zero-extended 32-bit value? Or a negated one? */
1207#define IS_ZEXT_32BIT_NUM(x) \
1208 (((x) &~ (offsetT) 0xffffffff) == 0 \
1209 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
1210
bf12938e
RS
1211/* Extract bits MASK << SHIFT from STRUCT and shift them right
1212 SHIFT places. */
1213#define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1214 (((STRUCT) >> (SHIFT)) & (MASK))
1215
bf12938e 1216/* Extract the operand given by FIELD from mips_cl_insn INSN. */
df58fc94
RS
1217#define EXTRACT_OPERAND(MICROMIPS, FIELD, INSN) \
1218 (!(MICROMIPS) \
1219 ? EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD) \
1220 : EXTRACT_BITS ((INSN).insn_opcode, \
1221 MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD))
bf12938e
RS
1222#define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1223 EXTRACT_BITS ((INSN).insn_opcode, \
1224 MIPS16OP_MASK_##FIELD, \
1225 MIPS16OP_SH_##FIELD)
5c04167a
RS
1226
1227/* The MIPS16 EXTEND opcode, shifted left 16 places. */
1228#define MIPS16_EXTEND (0xf000U << 16)
4d7206a2 1229\f
df58fc94
RS
1230/* Whether or not we are emitting a branch-likely macro. */
1231static bfd_boolean emit_branch_likely_macro = FALSE;
1232
4d7206a2
RS
1233/* Global variables used when generating relaxable macros. See the
1234 comment above RELAX_ENCODE for more details about how relaxation
1235 is used. */
1236static struct {
1237 /* 0 if we're not emitting a relaxable macro.
1238 1 if we're emitting the first of the two relaxation alternatives.
1239 2 if we're emitting the second alternative. */
1240 int sequence;
1241
1242 /* The first relaxable fixup in the current frag. (In other words,
1243 the first fixup that refers to relaxable code.) */
1244 fixS *first_fixup;
1245
1246 /* sizes[0] says how many bytes of the first alternative are stored in
1247 the current frag. Likewise sizes[1] for the second alternative. */
1248 unsigned int sizes[2];
1249
1250 /* The symbol on which the choice of sequence depends. */
1251 symbolS *symbol;
1252} mips_relax;
252b5132 1253\f
584892a6
RS
1254/* Global variables used to decide whether a macro needs a warning. */
1255static struct {
1256 /* True if the macro is in a branch delay slot. */
1257 bfd_boolean delay_slot_p;
1258
df58fc94
RS
1259 /* Set to the length in bytes required if the macro is in a delay slot
1260 that requires a specific length of instruction, otherwise zero. */
1261 unsigned int delay_slot_length;
1262
584892a6
RS
1263 /* For relaxable macros, sizes[0] is the length of the first alternative
1264 in bytes and sizes[1] is the length of the second alternative.
1265 For non-relaxable macros, both elements give the length of the
1266 macro in bytes. */
1267 unsigned int sizes[2];
1268
df58fc94
RS
1269 /* For relaxable macros, first_insn_sizes[0] is the length of the first
1270 instruction of the first alternative in bytes and first_insn_sizes[1]
1271 is the length of the first instruction of the second alternative.
1272 For non-relaxable macros, both elements give the length of the first
1273 instruction in bytes.
1274
1275 Set to zero if we haven't yet seen the first instruction. */
1276 unsigned int first_insn_sizes[2];
1277
1278 /* For relaxable macros, insns[0] is the number of instructions for the
1279 first alternative and insns[1] is the number of instructions for the
1280 second alternative.
1281
1282 For non-relaxable macros, both elements give the number of
1283 instructions for the macro. */
1284 unsigned int insns[2];
1285
584892a6
RS
1286 /* The first variant frag for this macro. */
1287 fragS *first_frag;
1288} mips_macro_warning;
1289\f
252b5132
RH
1290/* Prototypes for static functions. */
1291
252b5132
RH
1292enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1293
b34976b6 1294static void append_insn
df58fc94
RS
1295 (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *,
1296 bfd_boolean expansionp);
7d10b47d 1297static void mips_no_prev_insn (void);
c67a084a 1298static void macro_build (expressionS *, const char *, const char *, ...);
b34976b6 1299static void mips16_macro_build
03ea81db 1300 (expressionS *, const char *, const char *, va_list *);
67c0d1eb 1301static void load_register (int, expressionS *, int);
584892a6
RS
1302static void macro_start (void);
1303static void macro_end (void);
833794fc 1304static void macro (struct mips_cl_insn *ip, char *str);
17a2f251 1305static void mips16_macro (struct mips_cl_insn * ip);
17a2f251
TS
1306static void mips_ip (char *str, struct mips_cl_insn * ip);
1307static void mips16_ip (char *str, struct mips_cl_insn * ip);
b34976b6 1308static void mips16_immed
43c0598f
RS
1309 (char *, unsigned int, int, bfd_reloc_code_real_type, offsetT,
1310 unsigned int, unsigned long *);
5e0116d5 1311static size_t my_getSmallExpression
17a2f251
TS
1312 (expressionS *, bfd_reloc_code_real_type *, char *);
1313static void my_getExpression (expressionS *, char *);
1314static void s_align (int);
1315static void s_change_sec (int);
1316static void s_change_section (int);
1317static void s_cons (int);
1318static void s_float_cons (int);
1319static void s_mips_globl (int);
1320static void s_option (int);
1321static void s_mipsset (int);
1322static void s_abicalls (int);
1323static void s_cpload (int);
1324static void s_cpsetup (int);
1325static void s_cplocal (int);
1326static void s_cprestore (int);
1327static void s_cpreturn (int);
741d6ea8
JM
1328static void s_dtprelword (int);
1329static void s_dtpreldword (int);
d0f13682
CLT
1330static void s_tprelword (int);
1331static void s_tpreldword (int);
17a2f251
TS
1332static void s_gpvalue (int);
1333static void s_gpword (int);
1334static void s_gpdword (int);
a3f278e2 1335static void s_ehword (int);
17a2f251
TS
1336static void s_cpadd (int);
1337static void s_insn (int);
ba92f887 1338static void s_nan (int);
919731af 1339static void s_module (int);
17a2f251
TS
1340static void s_mips_ent (int);
1341static void s_mips_end (int);
1342static void s_mips_frame (int);
1343static void s_mips_mask (int reg_type);
1344static void s_mips_stab (int);
1345static void s_mips_weakext (int);
1346static void s_mips_file (int);
1347static void s_mips_loc (int);
1348static bfd_boolean pic_need_relax (symbolS *, asection *);
4a6a3df4 1349static int relaxed_branch_length (fragS *, asection *, int);
df58fc94
RS
1350static int relaxed_micromips_16bit_branch_length (fragS *, asection *, int);
1351static int relaxed_micromips_32bit_branch_length (fragS *, asection *, int);
919731af 1352static void file_mips_check_options (void);
e7af610e
NC
1353
1354/* Table and functions used to map between CPU/ISA names, and
1355 ISA levels, and CPU numbers. */
1356
e972090a
NC
1357struct mips_cpu_info
1358{
e7af610e 1359 const char *name; /* CPU or ISA name. */
d16afab6
RS
1360 int flags; /* MIPS_CPU_* flags. */
1361 int ase; /* Set of ASEs implemented by the CPU. */
e7af610e
NC
1362 int isa; /* ISA level. */
1363 int cpu; /* CPU number (default CPU if ISA). */
1364};
1365
ad3fea08 1366#define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
ad3fea08 1367
17a2f251
TS
1368static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1369static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1370static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
252b5132 1371\f
c31f3936
RS
1372/* Command-line options. */
1373const char *md_shortopts = "O::g::G:";
1374
1375enum options
1376 {
1377 OPTION_MARCH = OPTION_MD_BASE,
1378 OPTION_MTUNE,
1379 OPTION_MIPS1,
1380 OPTION_MIPS2,
1381 OPTION_MIPS3,
1382 OPTION_MIPS4,
1383 OPTION_MIPS5,
1384 OPTION_MIPS32,
1385 OPTION_MIPS64,
1386 OPTION_MIPS32R2,
ae52f483
AB
1387 OPTION_MIPS32R3,
1388 OPTION_MIPS32R5,
7361da2c 1389 OPTION_MIPS32R6,
c31f3936 1390 OPTION_MIPS64R2,
ae52f483
AB
1391 OPTION_MIPS64R3,
1392 OPTION_MIPS64R5,
7361da2c 1393 OPTION_MIPS64R6,
c31f3936
RS
1394 OPTION_MIPS16,
1395 OPTION_NO_MIPS16,
1396 OPTION_MIPS3D,
1397 OPTION_NO_MIPS3D,
1398 OPTION_MDMX,
1399 OPTION_NO_MDMX,
1400 OPTION_DSP,
1401 OPTION_NO_DSP,
1402 OPTION_MT,
1403 OPTION_NO_MT,
1404 OPTION_VIRT,
1405 OPTION_NO_VIRT,
56d438b1
CF
1406 OPTION_MSA,
1407 OPTION_NO_MSA,
c31f3936
RS
1408 OPTION_SMARTMIPS,
1409 OPTION_NO_SMARTMIPS,
1410 OPTION_DSPR2,
1411 OPTION_NO_DSPR2,
1412 OPTION_EVA,
1413 OPTION_NO_EVA,
7d64c587
AB
1414 OPTION_XPA,
1415 OPTION_NO_XPA,
c31f3936
RS
1416 OPTION_MICROMIPS,
1417 OPTION_NO_MICROMIPS,
1418 OPTION_MCU,
1419 OPTION_NO_MCU,
1420 OPTION_COMPAT_ARCH_BASE,
1421 OPTION_M4650,
1422 OPTION_NO_M4650,
1423 OPTION_M4010,
1424 OPTION_NO_M4010,
1425 OPTION_M4100,
1426 OPTION_NO_M4100,
1427 OPTION_M3900,
1428 OPTION_NO_M3900,
1429 OPTION_M7000_HILO_FIX,
1430 OPTION_MNO_7000_HILO_FIX,
1431 OPTION_FIX_24K,
1432 OPTION_NO_FIX_24K,
a8d14a88
CM
1433 OPTION_FIX_RM7000,
1434 OPTION_NO_FIX_RM7000,
c31f3936
RS
1435 OPTION_FIX_LOONGSON2F_JUMP,
1436 OPTION_NO_FIX_LOONGSON2F_JUMP,
1437 OPTION_FIX_LOONGSON2F_NOP,
1438 OPTION_NO_FIX_LOONGSON2F_NOP,
1439 OPTION_FIX_VR4120,
1440 OPTION_NO_FIX_VR4120,
1441 OPTION_FIX_VR4130,
1442 OPTION_NO_FIX_VR4130,
1443 OPTION_FIX_CN63XXP1,
1444 OPTION_NO_FIX_CN63XXP1,
1445 OPTION_TRAP,
1446 OPTION_BREAK,
1447 OPTION_EB,
1448 OPTION_EL,
1449 OPTION_FP32,
1450 OPTION_GP32,
1451 OPTION_CONSTRUCT_FLOATS,
1452 OPTION_NO_CONSTRUCT_FLOATS,
1453 OPTION_FP64,
351cdf24 1454 OPTION_FPXX,
c31f3936
RS
1455 OPTION_GP64,
1456 OPTION_RELAX_BRANCH,
1457 OPTION_NO_RELAX_BRANCH,
833794fc
MR
1458 OPTION_INSN32,
1459 OPTION_NO_INSN32,
c31f3936
RS
1460 OPTION_MSHARED,
1461 OPTION_MNO_SHARED,
1462 OPTION_MSYM32,
1463 OPTION_MNO_SYM32,
1464 OPTION_SOFT_FLOAT,
1465 OPTION_HARD_FLOAT,
1466 OPTION_SINGLE_FLOAT,
1467 OPTION_DOUBLE_FLOAT,
1468 OPTION_32,
c31f3936
RS
1469 OPTION_CALL_SHARED,
1470 OPTION_CALL_NONPIC,
1471 OPTION_NON_SHARED,
1472 OPTION_XGOT,
1473 OPTION_MABI,
1474 OPTION_N32,
1475 OPTION_64,
1476 OPTION_MDEBUG,
1477 OPTION_NO_MDEBUG,
1478 OPTION_PDR,
1479 OPTION_NO_PDR,
1480 OPTION_MVXWORKS_PIC,
ba92f887 1481 OPTION_NAN,
351cdf24
MF
1482 OPTION_ODD_SPREG,
1483 OPTION_NO_ODD_SPREG,
c31f3936
RS
1484 OPTION_END_OF_ENUM
1485 };
1486
1487struct option md_longopts[] =
1488{
1489 /* Options which specify architecture. */
1490 {"march", required_argument, NULL, OPTION_MARCH},
1491 {"mtune", required_argument, NULL, OPTION_MTUNE},
1492 {"mips0", no_argument, NULL, OPTION_MIPS1},
1493 {"mips1", no_argument, NULL, OPTION_MIPS1},
1494 {"mips2", no_argument, NULL, OPTION_MIPS2},
1495 {"mips3", no_argument, NULL, OPTION_MIPS3},
1496 {"mips4", no_argument, NULL, OPTION_MIPS4},
1497 {"mips5", no_argument, NULL, OPTION_MIPS5},
1498 {"mips32", no_argument, NULL, OPTION_MIPS32},
1499 {"mips64", no_argument, NULL, OPTION_MIPS64},
1500 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
ae52f483
AB
1501 {"mips32r3", no_argument, NULL, OPTION_MIPS32R3},
1502 {"mips32r5", no_argument, NULL, OPTION_MIPS32R5},
7361da2c 1503 {"mips32r6", no_argument, NULL, OPTION_MIPS32R6},
c31f3936 1504 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
ae52f483
AB
1505 {"mips64r3", no_argument, NULL, OPTION_MIPS64R3},
1506 {"mips64r5", no_argument, NULL, OPTION_MIPS64R5},
7361da2c 1507 {"mips64r6", no_argument, NULL, OPTION_MIPS64R6},
c31f3936
RS
1508
1509 /* Options which specify Application Specific Extensions (ASEs). */
1510 {"mips16", no_argument, NULL, OPTION_MIPS16},
1511 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
1512 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
1513 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
1514 {"mdmx", no_argument, NULL, OPTION_MDMX},
1515 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
1516 {"mdsp", no_argument, NULL, OPTION_DSP},
1517 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
1518 {"mmt", no_argument, NULL, OPTION_MT},
1519 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
1520 {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
1521 {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
1522 {"mdspr2", no_argument, NULL, OPTION_DSPR2},
1523 {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
1524 {"meva", no_argument, NULL, OPTION_EVA},
1525 {"mno-eva", no_argument, NULL, OPTION_NO_EVA},
1526 {"mmicromips", no_argument, NULL, OPTION_MICROMIPS},
1527 {"mno-micromips", no_argument, NULL, OPTION_NO_MICROMIPS},
1528 {"mmcu", no_argument, NULL, OPTION_MCU},
1529 {"mno-mcu", no_argument, NULL, OPTION_NO_MCU},
1530 {"mvirt", no_argument, NULL, OPTION_VIRT},
1531 {"mno-virt", no_argument, NULL, OPTION_NO_VIRT},
56d438b1
CF
1532 {"mmsa", no_argument, NULL, OPTION_MSA},
1533 {"mno-msa", no_argument, NULL, OPTION_NO_MSA},
7d64c587
AB
1534 {"mxpa", no_argument, NULL, OPTION_XPA},
1535 {"mno-xpa", no_argument, NULL, OPTION_NO_XPA},
c31f3936
RS
1536
1537 /* Old-style architecture options. Don't add more of these. */
1538 {"m4650", no_argument, NULL, OPTION_M4650},
1539 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
1540 {"m4010", no_argument, NULL, OPTION_M4010},
1541 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
1542 {"m4100", no_argument, NULL, OPTION_M4100},
1543 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
1544 {"m3900", no_argument, NULL, OPTION_M3900},
1545 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
1546
1547 /* Options which enable bug fixes. */
1548 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
1549 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1550 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1551 {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
1552 {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
1553 {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
1554 {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
1555 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
1556 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
1557 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
1558 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
1559 {"mfix-24k", no_argument, NULL, OPTION_FIX_24K},
1560 {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
a8d14a88
CM
1561 {"mfix-rm7000", no_argument, NULL, OPTION_FIX_RM7000},
1562 {"mno-fix-rm7000", no_argument, NULL, OPTION_NO_FIX_RM7000},
c31f3936
RS
1563 {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
1564 {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
1565
1566 /* Miscellaneous options. */
1567 {"trap", no_argument, NULL, OPTION_TRAP},
1568 {"no-break", no_argument, NULL, OPTION_TRAP},
1569 {"break", no_argument, NULL, OPTION_BREAK},
1570 {"no-trap", no_argument, NULL, OPTION_BREAK},
1571 {"EB", no_argument, NULL, OPTION_EB},
1572 {"EL", no_argument, NULL, OPTION_EL},
1573 {"mfp32", no_argument, NULL, OPTION_FP32},
1574 {"mgp32", no_argument, NULL, OPTION_GP32},
1575 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
1576 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
1577 {"mfp64", no_argument, NULL, OPTION_FP64},
351cdf24 1578 {"mfpxx", no_argument, NULL, OPTION_FPXX},
c31f3936
RS
1579 {"mgp64", no_argument, NULL, OPTION_GP64},
1580 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
1581 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
833794fc
MR
1582 {"minsn32", no_argument, NULL, OPTION_INSN32},
1583 {"mno-insn32", no_argument, NULL, OPTION_NO_INSN32},
c31f3936
RS
1584 {"mshared", no_argument, NULL, OPTION_MSHARED},
1585 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
1586 {"msym32", no_argument, NULL, OPTION_MSYM32},
1587 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
1588 {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
1589 {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
1590 {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
1591 {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
351cdf24
MF
1592 {"modd-spreg", no_argument, NULL, OPTION_ODD_SPREG},
1593 {"mno-odd-spreg", no_argument, NULL, OPTION_NO_ODD_SPREG},
c31f3936
RS
1594
1595 /* Strictly speaking this next option is ELF specific,
1596 but we allow it for other ports as well in order to
1597 make testing easier. */
1598 {"32", no_argument, NULL, OPTION_32},
1599
1600 /* ELF-specific options. */
c31f3936
RS
1601 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
1602 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
1603 {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
1604 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
1605 {"xgot", no_argument, NULL, OPTION_XGOT},
1606 {"mabi", required_argument, NULL, OPTION_MABI},
1607 {"n32", no_argument, NULL, OPTION_N32},
1608 {"64", no_argument, NULL, OPTION_64},
1609 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
1610 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
1611 {"mpdr", no_argument, NULL, OPTION_PDR},
1612 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
1613 {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
ba92f887 1614 {"mnan", required_argument, NULL, OPTION_NAN},
c31f3936
RS
1615
1616 {NULL, no_argument, NULL, 0}
1617};
1618size_t md_longopts_size = sizeof (md_longopts);
1619\f
c6278170
RS
1620/* Information about either an Application Specific Extension or an
1621 optional architecture feature that, for simplicity, we treat in the
1622 same way as an ASE. */
1623struct mips_ase
1624{
1625 /* The name of the ASE, used in both the command-line and .set options. */
1626 const char *name;
1627
1628 /* The associated ASE_* flags. If the ASE is available on both 32-bit
1629 and 64-bit architectures, the flags here refer to the subset that
1630 is available on both. */
1631 unsigned int flags;
1632
1633 /* The ASE_* flag used for instructions that are available on 64-bit
1634 architectures but that are not included in FLAGS. */
1635 unsigned int flags64;
1636
1637 /* The command-line options that turn the ASE on and off. */
1638 int option_on;
1639 int option_off;
1640
1641 /* The minimum required architecture revisions for MIPS32, MIPS64,
1642 microMIPS32 and microMIPS64, or -1 if the extension isn't supported. */
1643 int mips32_rev;
1644 int mips64_rev;
1645 int micromips32_rev;
1646 int micromips64_rev;
7361da2c
AB
1647
1648 /* The architecture where the ASE was removed or -1 if the extension has not
1649 been removed. */
1650 int rem_rev;
c6278170
RS
1651};
1652
1653/* A table of all supported ASEs. */
1654static const struct mips_ase mips_ases[] = {
1655 { "dsp", ASE_DSP, ASE_DSP64,
1656 OPTION_DSP, OPTION_NO_DSP,
7361da2c
AB
1657 2, 2, 2, 2,
1658 -1 },
c6278170
RS
1659
1660 { "dspr2", ASE_DSP | ASE_DSPR2, 0,
1661 OPTION_DSPR2, OPTION_NO_DSPR2,
7361da2c
AB
1662 2, 2, 2, 2,
1663 -1 },
c6278170
RS
1664
1665 { "eva", ASE_EVA, 0,
1666 OPTION_EVA, OPTION_NO_EVA,
7361da2c
AB
1667 2, 2, 2, 2,
1668 -1 },
c6278170
RS
1669
1670 { "mcu", ASE_MCU, 0,
1671 OPTION_MCU, OPTION_NO_MCU,
7361da2c
AB
1672 2, 2, 2, 2,
1673 -1 },
c6278170
RS
1674
1675 /* Deprecated in MIPS64r5, but we don't implement that yet. */
1676 { "mdmx", ASE_MDMX, 0,
1677 OPTION_MDMX, OPTION_NO_MDMX,
7361da2c
AB
1678 -1, 1, -1, -1,
1679 6 },
c6278170
RS
1680
1681 /* Requires 64-bit FPRs, so the minimum MIPS32 revision is 2. */
1682 { "mips3d", ASE_MIPS3D, 0,
1683 OPTION_MIPS3D, OPTION_NO_MIPS3D,
7361da2c
AB
1684 2, 1, -1, -1,
1685 6 },
c6278170
RS
1686
1687 { "mt", ASE_MT, 0,
1688 OPTION_MT, OPTION_NO_MT,
7361da2c
AB
1689 2, 2, -1, -1,
1690 -1 },
c6278170
RS
1691
1692 { "smartmips", ASE_SMARTMIPS, 0,
1693 OPTION_SMARTMIPS, OPTION_NO_SMARTMIPS,
7361da2c
AB
1694 1, -1, -1, -1,
1695 6 },
c6278170
RS
1696
1697 { "virt", ASE_VIRT, ASE_VIRT64,
1698 OPTION_VIRT, OPTION_NO_VIRT,
7361da2c
AB
1699 2, 2, 2, 2,
1700 -1 },
56d438b1
CF
1701
1702 { "msa", ASE_MSA, ASE_MSA64,
1703 OPTION_MSA, OPTION_NO_MSA,
7361da2c
AB
1704 2, 2, 2, 2,
1705 -1 },
7d64c587
AB
1706
1707 { "xpa", ASE_XPA, 0,
1708 OPTION_XPA, OPTION_NO_XPA,
7361da2c
AB
1709 2, 2, -1, -1,
1710 -1 },
c6278170
RS
1711};
1712
1713/* The set of ASEs that require -mfp64. */
82bda27b 1714#define FP64_ASES (ASE_MIPS3D | ASE_MDMX | ASE_MSA)
c6278170
RS
1715
1716/* Groups of ASE_* flags that represent different revisions of an ASE. */
1717static const unsigned int mips_ase_groups[] = {
1718 ASE_DSP | ASE_DSPR2
1719};
1720\f
252b5132
RH
1721/* Pseudo-op table.
1722
1723 The following pseudo-ops from the Kane and Heinrich MIPS book
1724 should be defined here, but are currently unsupported: .alias,
1725 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1726
1727 The following pseudo-ops from the Kane and Heinrich MIPS book are
1728 specific to the type of debugging information being generated, and
1729 should be defined by the object format: .aent, .begin, .bend,
1730 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1731 .vreg.
1732
1733 The following pseudo-ops from the Kane and Heinrich MIPS book are
1734 not MIPS CPU specific, but are also not specific to the object file
1735 format. This file is probably the best place to define them, but
d84bcf09 1736 they are not currently supported: .asm0, .endr, .lab, .struct. */
252b5132 1737
e972090a
NC
1738static const pseudo_typeS mips_pseudo_table[] =
1739{
beae10d5 1740 /* MIPS specific pseudo-ops. */
252b5132
RH
1741 {"option", s_option, 0},
1742 {"set", s_mipsset, 0},
1743 {"rdata", s_change_sec, 'r'},
1744 {"sdata", s_change_sec, 's'},
1745 {"livereg", s_ignore, 0},
1746 {"abicalls", s_abicalls, 0},
1747 {"cpload", s_cpload, 0},
6478892d
TS
1748 {"cpsetup", s_cpsetup, 0},
1749 {"cplocal", s_cplocal, 0},
252b5132 1750 {"cprestore", s_cprestore, 0},
6478892d 1751 {"cpreturn", s_cpreturn, 0},
741d6ea8
JM
1752 {"dtprelword", s_dtprelword, 0},
1753 {"dtpreldword", s_dtpreldword, 0},
d0f13682
CLT
1754 {"tprelword", s_tprelword, 0},
1755 {"tpreldword", s_tpreldword, 0},
6478892d 1756 {"gpvalue", s_gpvalue, 0},
252b5132 1757 {"gpword", s_gpword, 0},
10181a0d 1758 {"gpdword", s_gpdword, 0},
a3f278e2 1759 {"ehword", s_ehword, 0},
252b5132
RH
1760 {"cpadd", s_cpadd, 0},
1761 {"insn", s_insn, 0},
ba92f887 1762 {"nan", s_nan, 0},
919731af 1763 {"module", s_module, 0},
252b5132 1764
beae10d5 1765 /* Relatively generic pseudo-ops that happen to be used on MIPS
252b5132 1766 chips. */
38a57ae7 1767 {"asciiz", stringer, 8 + 1},
252b5132
RH
1768 {"bss", s_change_sec, 'b'},
1769 {"err", s_err, 0},
1770 {"half", s_cons, 1},
1771 {"dword", s_cons, 3},
1772 {"weakext", s_mips_weakext, 0},
7c752c2a
TS
1773 {"origin", s_org, 0},
1774 {"repeat", s_rept, 0},
252b5132 1775
998b3c36
MR
1776 /* For MIPS this is non-standard, but we define it for consistency. */
1777 {"sbss", s_change_sec, 'B'},
1778
beae10d5 1779 /* These pseudo-ops are defined in read.c, but must be overridden
252b5132
RH
1780 here for one reason or another. */
1781 {"align", s_align, 0},
1782 {"byte", s_cons, 0},
1783 {"data", s_change_sec, 'd'},
1784 {"double", s_float_cons, 'd'},
1785 {"float", s_float_cons, 'f'},
1786 {"globl", s_mips_globl, 0},
1787 {"global", s_mips_globl, 0},
1788 {"hword", s_cons, 1},
1789 {"int", s_cons, 2},
1790 {"long", s_cons, 2},
1791 {"octa", s_cons, 4},
1792 {"quad", s_cons, 3},
cca86cc8 1793 {"section", s_change_section, 0},
252b5132
RH
1794 {"short", s_cons, 1},
1795 {"single", s_float_cons, 'f'},
754e2bb9 1796 {"stabd", s_mips_stab, 'd'},
252b5132 1797 {"stabn", s_mips_stab, 'n'},
754e2bb9 1798 {"stabs", s_mips_stab, 's'},
252b5132
RH
1799 {"text", s_change_sec, 't'},
1800 {"word", s_cons, 2},
add56521 1801
add56521 1802 { "extern", ecoff_directive_extern, 0},
add56521 1803
43841e91 1804 { NULL, NULL, 0 },
252b5132
RH
1805};
1806
e972090a
NC
1807static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1808{
beae10d5
KH
1809 /* These pseudo-ops should be defined by the object file format.
1810 However, a.out doesn't support them, so we have versions here. */
252b5132
RH
1811 {"aent", s_mips_ent, 1},
1812 {"bgnb", s_ignore, 0},
1813 {"end", s_mips_end, 0},
1814 {"endb", s_ignore, 0},
1815 {"ent", s_mips_ent, 0},
c5dd6aab 1816 {"file", s_mips_file, 0},
252b5132
RH
1817 {"fmask", s_mips_mask, 'F'},
1818 {"frame", s_mips_frame, 0},
c5dd6aab 1819 {"loc", s_mips_loc, 0},
252b5132
RH
1820 {"mask", s_mips_mask, 'R'},
1821 {"verstamp", s_ignore, 0},
43841e91 1822 { NULL, NULL, 0 },
252b5132
RH
1823};
1824
3ae8dd8d
MR
1825/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1826 purpose of the `.dc.a' internal pseudo-op. */
1827
1828int
1829mips_address_bytes (void)
1830{
919731af 1831 file_mips_check_options ();
3ae8dd8d
MR
1832 return HAVE_64BIT_ADDRESSES ? 8 : 4;
1833}
1834
17a2f251 1835extern void pop_insert (const pseudo_typeS *);
252b5132
RH
1836
1837void
17a2f251 1838mips_pop_insert (void)
252b5132
RH
1839{
1840 pop_insert (mips_pseudo_table);
1841 if (! ECOFF_DEBUGGING)
1842 pop_insert (mips_nonecoff_pseudo_table);
1843}
1844\f
1845/* Symbols labelling the current insn. */
1846
e972090a
NC
1847struct insn_label_list
1848{
252b5132
RH
1849 struct insn_label_list *next;
1850 symbolS *label;
1851};
1852
252b5132 1853static struct insn_label_list *free_insn_labels;
742a56fe 1854#define label_list tc_segment_info_data.labels
252b5132 1855
17a2f251 1856static void mips_clear_insn_labels (void);
df58fc94
RS
1857static void mips_mark_labels (void);
1858static void mips_compressed_mark_labels (void);
252b5132
RH
1859
1860static inline void
17a2f251 1861mips_clear_insn_labels (void)
252b5132
RH
1862{
1863 register struct insn_label_list **pl;
a8dbcb85 1864 segment_info_type *si;
252b5132 1865
a8dbcb85
TS
1866 if (now_seg)
1867 {
1868 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1869 ;
1870
1871 si = seg_info (now_seg);
1872 *pl = si->label_list;
1873 si->label_list = NULL;
1874 }
252b5132 1875}
a8dbcb85 1876
df58fc94
RS
1877/* Mark instruction labels in MIPS16/microMIPS mode. */
1878
1879static inline void
1880mips_mark_labels (void)
1881{
1882 if (HAVE_CODE_COMPRESSION)
1883 mips_compressed_mark_labels ();
1884}
252b5132
RH
1885\f
1886static char *expr_end;
1887
e423441d 1888/* An expression in a macro instruction. This is set by mips_ip and
b0e6f033 1889 mips16_ip and when populated is always an O_constant. */
252b5132
RH
1890
1891static expressionS imm_expr;
252b5132 1892
77bd4346
RS
1893/* The relocatable field in an instruction and the relocs associated
1894 with it. These variables are used for instructions like LUI and
1895 JAL as well as true offsets. They are also used for address
1896 operands in macros. */
252b5132 1897
77bd4346 1898static expressionS offset_expr;
f6688943
TS
1899static bfd_reloc_code_real_type offset_reloc[3]
1900 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 1901
df58fc94
RS
1902/* This is set to the resulting size of the instruction to be produced
1903 by mips16_ip if an explicit extension is used or by mips_ip if an
1904 explicit size is supplied. */
252b5132 1905
df58fc94 1906static unsigned int forced_insn_length;
252b5132 1907
e1b47bd5
RS
1908/* True if we are assembling an instruction. All dot symbols defined during
1909 this time should be treated as code labels. */
1910
1911static bfd_boolean mips_assembling_insn;
1912
ecb4347a
DJ
1913/* The pdr segment for per procedure frame/regmask info. Not used for
1914 ECOFF debugging. */
252b5132
RH
1915
1916static segT pdr_seg;
252b5132 1917
e013f690
TS
1918/* The default target format to use. */
1919
aeffff67
RS
1920#if defined (TE_FreeBSD)
1921#define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1922#elif defined (TE_TMIPS)
1923#define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1924#else
1925#define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1926#endif
1927
e013f690 1928const char *
17a2f251 1929mips_target_format (void)
e013f690
TS
1930{
1931 switch (OUTPUT_FLAVOR)
1932 {
e013f690 1933 case bfd_target_elf_flavour:
0a44bf69
RS
1934#ifdef TE_VXWORKS
1935 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1936 return (target_big_endian
1937 ? "elf32-bigmips-vxworks"
1938 : "elf32-littlemips-vxworks");
1939#endif
e013f690 1940 return (target_big_endian
cfe86eaa 1941 ? (HAVE_64BIT_OBJECTS
aeffff67 1942 ? ELF_TARGET ("elf64-", "big")
cfe86eaa 1943 : (HAVE_NEWABI
aeffff67
RS
1944 ? ELF_TARGET ("elf32-n", "big")
1945 : ELF_TARGET ("elf32-", "big")))
cfe86eaa 1946 : (HAVE_64BIT_OBJECTS
aeffff67 1947 ? ELF_TARGET ("elf64-", "little")
cfe86eaa 1948 : (HAVE_NEWABI
aeffff67
RS
1949 ? ELF_TARGET ("elf32-n", "little")
1950 : ELF_TARGET ("elf32-", "little"))));
e013f690
TS
1951 default:
1952 abort ();
1953 return NULL;
1954 }
1955}
1956
c6278170
RS
1957/* Return the ISA revision that is currently in use, or 0 if we are
1958 generating code for MIPS V or below. */
1959
1960static int
1961mips_isa_rev (void)
1962{
1963 if (mips_opts.isa == ISA_MIPS32R2 || mips_opts.isa == ISA_MIPS64R2)
1964 return 2;
1965
ae52f483
AB
1966 if (mips_opts.isa == ISA_MIPS32R3 || mips_opts.isa == ISA_MIPS64R3)
1967 return 3;
1968
1969 if (mips_opts.isa == ISA_MIPS32R5 || mips_opts.isa == ISA_MIPS64R5)
1970 return 5;
1971
7361da2c
AB
1972 if (mips_opts.isa == ISA_MIPS32R6 || mips_opts.isa == ISA_MIPS64R6)
1973 return 6;
1974
c6278170
RS
1975 /* microMIPS implies revision 2 or above. */
1976 if (mips_opts.micromips)
1977 return 2;
1978
1979 if (mips_opts.isa == ISA_MIPS32 || mips_opts.isa == ISA_MIPS64)
1980 return 1;
1981
1982 return 0;
1983}
1984
1985/* Return the mask of all ASEs that are revisions of those in FLAGS. */
1986
1987static unsigned int
1988mips_ase_mask (unsigned int flags)
1989{
1990 unsigned int i;
1991
1992 for (i = 0; i < ARRAY_SIZE (mips_ase_groups); i++)
1993 if (flags & mips_ase_groups[i])
1994 flags |= mips_ase_groups[i];
1995 return flags;
1996}
1997
1998/* Check whether the current ISA supports ASE. Issue a warning if
1999 appropriate. */
2000
2001static void
2002mips_check_isa_supports_ase (const struct mips_ase *ase)
2003{
2004 const char *base;
2005 int min_rev, size;
2006 static unsigned int warned_isa;
2007 static unsigned int warned_fp32;
2008
2009 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
2010 min_rev = mips_opts.micromips ? ase->micromips64_rev : ase->mips64_rev;
2011 else
2012 min_rev = mips_opts.micromips ? ase->micromips32_rev : ase->mips32_rev;
2013 if ((min_rev < 0 || mips_isa_rev () < min_rev)
2014 && (warned_isa & ase->flags) != ase->flags)
2015 {
2016 warned_isa |= ase->flags;
2017 base = mips_opts.micromips ? "microMIPS" : "MIPS";
2018 size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
2019 if (min_rev < 0)
1661c76c 2020 as_warn (_("the %d-bit %s architecture does not support the"
c6278170
RS
2021 " `%s' extension"), size, base, ase->name);
2022 else
1661c76c 2023 as_warn (_("the `%s' extension requires %s%d revision %d or greater"),
c6278170
RS
2024 ase->name, base, size, min_rev);
2025 }
7361da2c
AB
2026 else if ((ase->rem_rev > 0 && mips_isa_rev () >= ase->rem_rev)
2027 && (warned_isa & ase->flags) != ase->flags)
2028 {
2029 warned_isa |= ase->flags;
2030 base = mips_opts.micromips ? "microMIPS" : "MIPS";
2031 size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
2032 as_warn (_("the `%s' extension was removed in %s%d revision %d"),
2033 ase->name, base, size, ase->rem_rev);
2034 }
2035
c6278170 2036 if ((ase->flags & FP64_ASES)
0b35dfee 2037 && mips_opts.fp != 64
c6278170
RS
2038 && (warned_fp32 & ase->flags) != ase->flags)
2039 {
2040 warned_fp32 |= ase->flags;
1661c76c 2041 as_warn (_("the `%s' extension requires 64-bit FPRs"), ase->name);
c6278170
RS
2042 }
2043}
2044
2045/* Check all enabled ASEs to see whether they are supported by the
2046 chosen architecture. */
2047
2048static void
2049mips_check_isa_supports_ases (void)
2050{
2051 unsigned int i, mask;
2052
2053 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
2054 {
2055 mask = mips_ase_mask (mips_ases[i].flags);
2056 if ((mips_opts.ase & mask) == mips_ases[i].flags)
2057 mips_check_isa_supports_ase (&mips_ases[i]);
2058 }
2059}
2060
2061/* Set the state of ASE to ENABLED_P. Return the mask of ASE_* flags
2062 that were affected. */
2063
2064static unsigned int
919731af 2065mips_set_ase (const struct mips_ase *ase, struct mips_set_options *opts,
2066 bfd_boolean enabled_p)
c6278170
RS
2067{
2068 unsigned int mask;
2069
2070 mask = mips_ase_mask (ase->flags);
919731af 2071 opts->ase &= ~mask;
c6278170 2072 if (enabled_p)
919731af 2073 opts->ase |= ase->flags;
c6278170
RS
2074 return mask;
2075}
2076
2077/* Return the ASE called NAME, or null if none. */
2078
2079static const struct mips_ase *
2080mips_lookup_ase (const char *name)
2081{
2082 unsigned int i;
2083
2084 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
2085 if (strcmp (name, mips_ases[i].name) == 0)
2086 return &mips_ases[i];
2087 return NULL;
2088}
2089
df58fc94
RS
2090/* Return the length of a microMIPS instruction in bytes. If bits of
2091 the mask beyond the low 16 are 0, then it is a 16-bit instruction.
2092 Otherwise assume a 32-bit instruction; 48-bit instructions (0x1f
2093 major opcode) will require further modifications to the opcode
2094 table. */
2095
2096static inline unsigned int
2097micromips_insn_length (const struct mips_opcode *mo)
2098{
2099 return (mo->mask >> 16) == 0 ? 2 : 4;
2100}
2101
5c04167a
RS
2102/* Return the length of MIPS16 instruction OPCODE. */
2103
2104static inline unsigned int
2105mips16_opcode_length (unsigned long opcode)
2106{
2107 return (opcode >> 16) == 0 ? 2 : 4;
2108}
2109
1e915849
RS
2110/* Return the length of instruction INSN. */
2111
2112static inline unsigned int
2113insn_length (const struct mips_cl_insn *insn)
2114{
df58fc94
RS
2115 if (mips_opts.micromips)
2116 return micromips_insn_length (insn->insn_mo);
2117 else if (mips_opts.mips16)
5c04167a 2118 return mips16_opcode_length (insn->insn_opcode);
df58fc94 2119 else
1e915849 2120 return 4;
1e915849
RS
2121}
2122
2123/* Initialise INSN from opcode entry MO. Leave its position unspecified. */
2124
2125static void
2126create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
2127{
2128 size_t i;
2129
2130 insn->insn_mo = mo;
1e915849
RS
2131 insn->insn_opcode = mo->match;
2132 insn->frag = NULL;
2133 insn->where = 0;
2134 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2135 insn->fixp[i] = NULL;
2136 insn->fixed_p = (mips_opts.noreorder > 0);
2137 insn->noreorder_p = (mips_opts.noreorder > 0);
2138 insn->mips16_absolute_jump_p = 0;
15be625d 2139 insn->complete_p = 0;
e407c74b 2140 insn->cleared_p = 0;
1e915849
RS
2141}
2142
fc76e730
RS
2143/* Get a list of all the operands in INSN. */
2144
2145static const struct mips_operand_array *
2146insn_operands (const struct mips_cl_insn *insn)
2147{
2148 if (insn->insn_mo >= &mips_opcodes[0]
2149 && insn->insn_mo < &mips_opcodes[NUMOPCODES])
2150 return &mips_operands[insn->insn_mo - &mips_opcodes[0]];
2151
2152 if (insn->insn_mo >= &mips16_opcodes[0]
2153 && insn->insn_mo < &mips16_opcodes[bfd_mips16_num_opcodes])
2154 return &mips16_operands[insn->insn_mo - &mips16_opcodes[0]];
2155
2156 if (insn->insn_mo >= &micromips_opcodes[0]
2157 && insn->insn_mo < &micromips_opcodes[bfd_micromips_num_opcodes])
2158 return &micromips_operands[insn->insn_mo - &micromips_opcodes[0]];
2159
2160 abort ();
2161}
2162
2163/* Get a description of operand OPNO of INSN. */
2164
2165static const struct mips_operand *
2166insn_opno (const struct mips_cl_insn *insn, unsigned opno)
2167{
2168 const struct mips_operand_array *operands;
2169
2170 operands = insn_operands (insn);
2171 if (opno >= MAX_OPERANDS || !operands->operand[opno])
2172 abort ();
2173 return operands->operand[opno];
2174}
2175
e077a1c8
RS
2176/* Install UVAL as the value of OPERAND in INSN. */
2177
2178static inline void
2179insn_insert_operand (struct mips_cl_insn *insn,
2180 const struct mips_operand *operand, unsigned int uval)
2181{
2182 insn->insn_opcode = mips_insert_operand (operand, insn->insn_opcode, uval);
2183}
2184
fc76e730
RS
2185/* Extract the value of OPERAND from INSN. */
2186
2187static inline unsigned
2188insn_extract_operand (const struct mips_cl_insn *insn,
2189 const struct mips_operand *operand)
2190{
2191 return mips_extract_operand (operand, insn->insn_opcode);
2192}
2193
df58fc94 2194/* Record the current MIPS16/microMIPS mode in now_seg. */
742a56fe
RS
2195
2196static void
df58fc94 2197mips_record_compressed_mode (void)
742a56fe
RS
2198{
2199 segment_info_type *si;
2200
2201 si = seg_info (now_seg);
2202 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
2203 si->tc_segment_info_data.mips16 = mips_opts.mips16;
df58fc94
RS
2204 if (si->tc_segment_info_data.micromips != mips_opts.micromips)
2205 si->tc_segment_info_data.micromips = mips_opts.micromips;
742a56fe
RS
2206}
2207
4d68580a
RS
2208/* Read a standard MIPS instruction from BUF. */
2209
2210static unsigned long
2211read_insn (char *buf)
2212{
2213 if (target_big_endian)
2214 return bfd_getb32 ((bfd_byte *) buf);
2215 else
2216 return bfd_getl32 ((bfd_byte *) buf);
2217}
2218
2219/* Write standard MIPS instruction INSN to BUF. Return a pointer to
2220 the next byte. */
2221
2222static char *
2223write_insn (char *buf, unsigned int insn)
2224{
2225 md_number_to_chars (buf, insn, 4);
2226 return buf + 4;
2227}
2228
2229/* Read a microMIPS or MIPS16 opcode from BUF, given that it
2230 has length LENGTH. */
2231
2232static unsigned long
2233read_compressed_insn (char *buf, unsigned int length)
2234{
2235 unsigned long insn;
2236 unsigned int i;
2237
2238 insn = 0;
2239 for (i = 0; i < length; i += 2)
2240 {
2241 insn <<= 16;
2242 if (target_big_endian)
2243 insn |= bfd_getb16 ((char *) buf);
2244 else
2245 insn |= bfd_getl16 ((char *) buf);
2246 buf += 2;
2247 }
2248 return insn;
2249}
2250
5c04167a
RS
2251/* Write microMIPS or MIPS16 instruction INSN to BUF, given that the
2252 instruction is LENGTH bytes long. Return a pointer to the next byte. */
2253
2254static char *
2255write_compressed_insn (char *buf, unsigned int insn, unsigned int length)
2256{
2257 unsigned int i;
2258
2259 for (i = 0; i < length; i += 2)
2260 md_number_to_chars (buf + i, insn >> ((length - i - 2) * 8), 2);
2261 return buf + length;
2262}
2263
1e915849
RS
2264/* Install INSN at the location specified by its "frag" and "where" fields. */
2265
2266static void
2267install_insn (const struct mips_cl_insn *insn)
2268{
2269 char *f = insn->frag->fr_literal + insn->where;
5c04167a
RS
2270 if (HAVE_CODE_COMPRESSION)
2271 write_compressed_insn (f, insn->insn_opcode, insn_length (insn));
1e915849 2272 else
4d68580a 2273 write_insn (f, insn->insn_opcode);
df58fc94 2274 mips_record_compressed_mode ();
1e915849
RS
2275}
2276
2277/* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
2278 and install the opcode in the new location. */
2279
2280static void
2281move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
2282{
2283 size_t i;
2284
2285 insn->frag = frag;
2286 insn->where = where;
2287 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2288 if (insn->fixp[i] != NULL)
2289 {
2290 insn->fixp[i]->fx_frag = frag;
2291 insn->fixp[i]->fx_where = where;
2292 }
2293 install_insn (insn);
2294}
2295
2296/* Add INSN to the end of the output. */
2297
2298static void
2299add_fixed_insn (struct mips_cl_insn *insn)
2300{
2301 char *f = frag_more (insn_length (insn));
2302 move_insn (insn, frag_now, f - frag_now->fr_literal);
2303}
2304
2305/* Start a variant frag and move INSN to the start of the variant part,
2306 marking it as fixed. The other arguments are as for frag_var. */
2307
2308static void
2309add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
2310 relax_substateT subtype, symbolS *symbol, offsetT offset)
2311{
2312 frag_grow (max_chars);
2313 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
2314 insn->fixed_p = 1;
2315 frag_var (rs_machine_dependent, max_chars, var,
2316 subtype, symbol, offset, NULL);
2317}
2318
2319/* Insert N copies of INSN into the history buffer, starting at
2320 position FIRST. Neither FIRST nor N need to be clipped. */
2321
2322static void
2323insert_into_history (unsigned int first, unsigned int n,
2324 const struct mips_cl_insn *insn)
2325{
2326 if (mips_relax.sequence != 2)
2327 {
2328 unsigned int i;
2329
2330 for (i = ARRAY_SIZE (history); i-- > first;)
2331 if (i >= first + n)
2332 history[i] = history[i - n];
2333 else
2334 history[i] = *insn;
2335 }
2336}
2337
e3de51ce
RS
2338/* Clear the error in insn_error. */
2339
2340static void
2341clear_insn_error (void)
2342{
2343 memset (&insn_error, 0, sizeof (insn_error));
2344}
2345
2346/* Possibly record error message MSG for the current instruction.
2347 If the error is about a particular argument, ARGNUM is the 1-based
2348 number of that argument, otherwise it is 0. FORMAT is the format
2349 of MSG. Return true if MSG was used, false if the current message
2350 was kept. */
2351
2352static bfd_boolean
2353set_insn_error_format (int argnum, enum mips_insn_error_format format,
2354 const char *msg)
2355{
2356 if (argnum == 0)
2357 {
2358 /* Give priority to errors against specific arguments, and to
2359 the first whole-instruction message. */
2360 if (insn_error.msg)
2361 return FALSE;
2362 }
2363 else
2364 {
2365 /* Keep insn_error if it is against a later argument. */
2366 if (argnum < insn_error.min_argnum)
2367 return FALSE;
2368
2369 /* If both errors are against the same argument but are different,
2370 give up on reporting a specific error for this argument.
2371 See the comment about mips_insn_error for details. */
2372 if (argnum == insn_error.min_argnum
2373 && insn_error.msg
2374 && strcmp (insn_error.msg, msg) != 0)
2375 {
2376 insn_error.msg = 0;
2377 insn_error.min_argnum += 1;
2378 return FALSE;
2379 }
2380 }
2381 insn_error.min_argnum = argnum;
2382 insn_error.format = format;
2383 insn_error.msg = msg;
2384 return TRUE;
2385}
2386
2387/* Record an instruction error with no % format fields. ARGNUM and MSG are
2388 as for set_insn_error_format. */
2389
2390static void
2391set_insn_error (int argnum, const char *msg)
2392{
2393 set_insn_error_format (argnum, ERR_FMT_PLAIN, msg);
2394}
2395
2396/* Record an instruction error with one %d field I. ARGNUM and MSG are
2397 as for set_insn_error_format. */
2398
2399static void
2400set_insn_error_i (int argnum, const char *msg, int i)
2401{
2402 if (set_insn_error_format (argnum, ERR_FMT_I, msg))
2403 insn_error.u.i = i;
2404}
2405
2406/* Record an instruction error with two %s fields S1 and S2. ARGNUM and MSG
2407 are as for set_insn_error_format. */
2408
2409static void
2410set_insn_error_ss (int argnum, const char *msg, const char *s1, const char *s2)
2411{
2412 if (set_insn_error_format (argnum, ERR_FMT_SS, msg))
2413 {
2414 insn_error.u.ss[0] = s1;
2415 insn_error.u.ss[1] = s2;
2416 }
2417}
2418
2419/* Report the error in insn_error, which is against assembly code STR. */
2420
2421static void
2422report_insn_error (const char *str)
2423{
2424 const char *msg;
2425
2426 msg = ACONCAT ((insn_error.msg, " `%s'", NULL));
2427 switch (insn_error.format)
2428 {
2429 case ERR_FMT_PLAIN:
2430 as_bad (msg, str);
2431 break;
2432
2433 case ERR_FMT_I:
2434 as_bad (msg, insn_error.u.i, str);
2435 break;
2436
2437 case ERR_FMT_SS:
2438 as_bad (msg, insn_error.u.ss[0], insn_error.u.ss[1], str);
2439 break;
2440 }
2441}
2442
71400594
RS
2443/* Initialize vr4120_conflicts. There is a bit of duplication here:
2444 the idea is to make it obvious at a glance that each errata is
2445 included. */
2446
2447static void
2448init_vr4120_conflicts (void)
2449{
2450#define CONFLICT(FIRST, SECOND) \
2451 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
2452
2453 /* Errata 21 - [D]DIV[U] after [D]MACC */
2454 CONFLICT (MACC, DIV);
2455 CONFLICT (DMACC, DIV);
2456
2457 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
2458 CONFLICT (DMULT, DMULT);
2459 CONFLICT (DMULT, DMACC);
2460 CONFLICT (DMACC, DMULT);
2461 CONFLICT (DMACC, DMACC);
2462
2463 /* Errata 24 - MT{LO,HI} after [D]MACC */
2464 CONFLICT (MACC, MTHILO);
2465 CONFLICT (DMACC, MTHILO);
2466
2467 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
2468 instruction is executed immediately after a MACC or DMACC
2469 instruction, the result of [either instruction] is incorrect." */
2470 CONFLICT (MACC, MULT);
2471 CONFLICT (MACC, DMULT);
2472 CONFLICT (DMACC, MULT);
2473 CONFLICT (DMACC, DMULT);
2474
2475 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
2476 executed immediately after a DMULT, DMULTU, DIV, DIVU,
2477 DDIV or DDIVU instruction, the result of the MACC or
2478 DMACC instruction is incorrect.". */
2479 CONFLICT (DMULT, MACC);
2480 CONFLICT (DMULT, DMACC);
2481 CONFLICT (DIV, MACC);
2482 CONFLICT (DIV, DMACC);
2483
2484#undef CONFLICT
2485}
2486
707bfff6
TS
2487struct regname {
2488 const char *name;
2489 unsigned int num;
2490};
2491
14daeee3 2492#define RNUM_MASK 0x00000ff
56d438b1 2493#define RTYPE_MASK 0x0ffff00
14daeee3
RS
2494#define RTYPE_NUM 0x0000100
2495#define RTYPE_FPU 0x0000200
2496#define RTYPE_FCC 0x0000400
2497#define RTYPE_VEC 0x0000800
2498#define RTYPE_GP 0x0001000
2499#define RTYPE_CP0 0x0002000
2500#define RTYPE_PC 0x0004000
2501#define RTYPE_ACC 0x0008000
2502#define RTYPE_CCC 0x0010000
2503#define RTYPE_VI 0x0020000
2504#define RTYPE_VF 0x0040000
2505#define RTYPE_R5900_I 0x0080000
2506#define RTYPE_R5900_Q 0x0100000
2507#define RTYPE_R5900_R 0x0200000
2508#define RTYPE_R5900_ACC 0x0400000
56d438b1 2509#define RTYPE_MSA 0x0800000
14daeee3 2510#define RWARN 0x8000000
707bfff6
TS
2511
2512#define GENERIC_REGISTER_NUMBERS \
2513 {"$0", RTYPE_NUM | 0}, \
2514 {"$1", RTYPE_NUM | 1}, \
2515 {"$2", RTYPE_NUM | 2}, \
2516 {"$3", RTYPE_NUM | 3}, \
2517 {"$4", RTYPE_NUM | 4}, \
2518 {"$5", RTYPE_NUM | 5}, \
2519 {"$6", RTYPE_NUM | 6}, \
2520 {"$7", RTYPE_NUM | 7}, \
2521 {"$8", RTYPE_NUM | 8}, \
2522 {"$9", RTYPE_NUM | 9}, \
2523 {"$10", RTYPE_NUM | 10}, \
2524 {"$11", RTYPE_NUM | 11}, \
2525 {"$12", RTYPE_NUM | 12}, \
2526 {"$13", RTYPE_NUM | 13}, \
2527 {"$14", RTYPE_NUM | 14}, \
2528 {"$15", RTYPE_NUM | 15}, \
2529 {"$16", RTYPE_NUM | 16}, \
2530 {"$17", RTYPE_NUM | 17}, \
2531 {"$18", RTYPE_NUM | 18}, \
2532 {"$19", RTYPE_NUM | 19}, \
2533 {"$20", RTYPE_NUM | 20}, \
2534 {"$21", RTYPE_NUM | 21}, \
2535 {"$22", RTYPE_NUM | 22}, \
2536 {"$23", RTYPE_NUM | 23}, \
2537 {"$24", RTYPE_NUM | 24}, \
2538 {"$25", RTYPE_NUM | 25}, \
2539 {"$26", RTYPE_NUM | 26}, \
2540 {"$27", RTYPE_NUM | 27}, \
2541 {"$28", RTYPE_NUM | 28}, \
2542 {"$29", RTYPE_NUM | 29}, \
2543 {"$30", RTYPE_NUM | 30}, \
2544 {"$31", RTYPE_NUM | 31}
2545
2546#define FPU_REGISTER_NAMES \
2547 {"$f0", RTYPE_FPU | 0}, \
2548 {"$f1", RTYPE_FPU | 1}, \
2549 {"$f2", RTYPE_FPU | 2}, \
2550 {"$f3", RTYPE_FPU | 3}, \
2551 {"$f4", RTYPE_FPU | 4}, \
2552 {"$f5", RTYPE_FPU | 5}, \
2553 {"$f6", RTYPE_FPU | 6}, \
2554 {"$f7", RTYPE_FPU | 7}, \
2555 {"$f8", RTYPE_FPU | 8}, \
2556 {"$f9", RTYPE_FPU | 9}, \
2557 {"$f10", RTYPE_FPU | 10}, \
2558 {"$f11", RTYPE_FPU | 11}, \
2559 {"$f12", RTYPE_FPU | 12}, \
2560 {"$f13", RTYPE_FPU | 13}, \
2561 {"$f14", RTYPE_FPU | 14}, \
2562 {"$f15", RTYPE_FPU | 15}, \
2563 {"$f16", RTYPE_FPU | 16}, \
2564 {"$f17", RTYPE_FPU | 17}, \
2565 {"$f18", RTYPE_FPU | 18}, \
2566 {"$f19", RTYPE_FPU | 19}, \
2567 {"$f20", RTYPE_FPU | 20}, \
2568 {"$f21", RTYPE_FPU | 21}, \
2569 {"$f22", RTYPE_FPU | 22}, \
2570 {"$f23", RTYPE_FPU | 23}, \
2571 {"$f24", RTYPE_FPU | 24}, \
2572 {"$f25", RTYPE_FPU | 25}, \
2573 {"$f26", RTYPE_FPU | 26}, \
2574 {"$f27", RTYPE_FPU | 27}, \
2575 {"$f28", RTYPE_FPU | 28}, \
2576 {"$f29", RTYPE_FPU | 29}, \
2577 {"$f30", RTYPE_FPU | 30}, \
2578 {"$f31", RTYPE_FPU | 31}
2579
2580#define FPU_CONDITION_CODE_NAMES \
2581 {"$fcc0", RTYPE_FCC | 0}, \
2582 {"$fcc1", RTYPE_FCC | 1}, \
2583 {"$fcc2", RTYPE_FCC | 2}, \
2584 {"$fcc3", RTYPE_FCC | 3}, \
2585 {"$fcc4", RTYPE_FCC | 4}, \
2586 {"$fcc5", RTYPE_FCC | 5}, \
2587 {"$fcc6", RTYPE_FCC | 6}, \
2588 {"$fcc7", RTYPE_FCC | 7}
2589
2590#define COPROC_CONDITION_CODE_NAMES \
2591 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
2592 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
2593 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
2594 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
2595 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
2596 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
2597 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
2598 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
2599
2600#define N32N64_SYMBOLIC_REGISTER_NAMES \
2601 {"$a4", RTYPE_GP | 8}, \
2602 {"$a5", RTYPE_GP | 9}, \
2603 {"$a6", RTYPE_GP | 10}, \
2604 {"$a7", RTYPE_GP | 11}, \
2605 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
2606 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
2607 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
2608 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
2609 {"$t0", RTYPE_GP | 12}, \
2610 {"$t1", RTYPE_GP | 13}, \
2611 {"$t2", RTYPE_GP | 14}, \
2612 {"$t3", RTYPE_GP | 15}
2613
2614#define O32_SYMBOLIC_REGISTER_NAMES \
2615 {"$t0", RTYPE_GP | 8}, \
2616 {"$t1", RTYPE_GP | 9}, \
2617 {"$t2", RTYPE_GP | 10}, \
2618 {"$t3", RTYPE_GP | 11}, \
2619 {"$t4", RTYPE_GP | 12}, \
2620 {"$t5", RTYPE_GP | 13}, \
2621 {"$t6", RTYPE_GP | 14}, \
2622 {"$t7", RTYPE_GP | 15}, \
2623 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
2624 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
2625 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
2626 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
2627
2628/* Remaining symbolic register names */
2629#define SYMBOLIC_REGISTER_NAMES \
2630 {"$zero", RTYPE_GP | 0}, \
2631 {"$at", RTYPE_GP | 1}, \
2632 {"$AT", RTYPE_GP | 1}, \
2633 {"$v0", RTYPE_GP | 2}, \
2634 {"$v1", RTYPE_GP | 3}, \
2635 {"$a0", RTYPE_GP | 4}, \
2636 {"$a1", RTYPE_GP | 5}, \
2637 {"$a2", RTYPE_GP | 6}, \
2638 {"$a3", RTYPE_GP | 7}, \
2639 {"$s0", RTYPE_GP | 16}, \
2640 {"$s1", RTYPE_GP | 17}, \
2641 {"$s2", RTYPE_GP | 18}, \
2642 {"$s3", RTYPE_GP | 19}, \
2643 {"$s4", RTYPE_GP | 20}, \
2644 {"$s5", RTYPE_GP | 21}, \
2645 {"$s6", RTYPE_GP | 22}, \
2646 {"$s7", RTYPE_GP | 23}, \
2647 {"$t8", RTYPE_GP | 24}, \
2648 {"$t9", RTYPE_GP | 25}, \
2649 {"$k0", RTYPE_GP | 26}, \
2650 {"$kt0", RTYPE_GP | 26}, \
2651 {"$k1", RTYPE_GP | 27}, \
2652 {"$kt1", RTYPE_GP | 27}, \
2653 {"$gp", RTYPE_GP | 28}, \
2654 {"$sp", RTYPE_GP | 29}, \
2655 {"$s8", RTYPE_GP | 30}, \
2656 {"$fp", RTYPE_GP | 30}, \
2657 {"$ra", RTYPE_GP | 31}
2658
2659#define MIPS16_SPECIAL_REGISTER_NAMES \
2660 {"$pc", RTYPE_PC | 0}
2661
2662#define MDMX_VECTOR_REGISTER_NAMES \
2663 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
2664 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
2665 {"$v2", RTYPE_VEC | 2}, \
2666 {"$v3", RTYPE_VEC | 3}, \
2667 {"$v4", RTYPE_VEC | 4}, \
2668 {"$v5", RTYPE_VEC | 5}, \
2669 {"$v6", RTYPE_VEC | 6}, \
2670 {"$v7", RTYPE_VEC | 7}, \
2671 {"$v8", RTYPE_VEC | 8}, \
2672 {"$v9", RTYPE_VEC | 9}, \
2673 {"$v10", RTYPE_VEC | 10}, \
2674 {"$v11", RTYPE_VEC | 11}, \
2675 {"$v12", RTYPE_VEC | 12}, \
2676 {"$v13", RTYPE_VEC | 13}, \
2677 {"$v14", RTYPE_VEC | 14}, \
2678 {"$v15", RTYPE_VEC | 15}, \
2679 {"$v16", RTYPE_VEC | 16}, \
2680 {"$v17", RTYPE_VEC | 17}, \
2681 {"$v18", RTYPE_VEC | 18}, \
2682 {"$v19", RTYPE_VEC | 19}, \
2683 {"$v20", RTYPE_VEC | 20}, \
2684 {"$v21", RTYPE_VEC | 21}, \
2685 {"$v22", RTYPE_VEC | 22}, \
2686 {"$v23", RTYPE_VEC | 23}, \
2687 {"$v24", RTYPE_VEC | 24}, \
2688 {"$v25", RTYPE_VEC | 25}, \
2689 {"$v26", RTYPE_VEC | 26}, \
2690 {"$v27", RTYPE_VEC | 27}, \
2691 {"$v28", RTYPE_VEC | 28}, \
2692 {"$v29", RTYPE_VEC | 29}, \
2693 {"$v30", RTYPE_VEC | 30}, \
2694 {"$v31", RTYPE_VEC | 31}
2695
14daeee3
RS
2696#define R5900_I_NAMES \
2697 {"$I", RTYPE_R5900_I | 0}
2698
2699#define R5900_Q_NAMES \
2700 {"$Q", RTYPE_R5900_Q | 0}
2701
2702#define R5900_R_NAMES \
2703 {"$R", RTYPE_R5900_R | 0}
2704
2705#define R5900_ACC_NAMES \
2706 {"$ACC", RTYPE_R5900_ACC | 0 }
2707
707bfff6
TS
2708#define MIPS_DSP_ACCUMULATOR_NAMES \
2709 {"$ac0", RTYPE_ACC | 0}, \
2710 {"$ac1", RTYPE_ACC | 1}, \
2711 {"$ac2", RTYPE_ACC | 2}, \
2712 {"$ac3", RTYPE_ACC | 3}
2713
2714static const struct regname reg_names[] = {
2715 GENERIC_REGISTER_NUMBERS,
2716 FPU_REGISTER_NAMES,
2717 FPU_CONDITION_CODE_NAMES,
2718 COPROC_CONDITION_CODE_NAMES,
2719
2720 /* The $txx registers depends on the abi,
2721 these will be added later into the symbol table from
2722 one of the tables below once mips_abi is set after
2723 parsing of arguments from the command line. */
2724 SYMBOLIC_REGISTER_NAMES,
2725
2726 MIPS16_SPECIAL_REGISTER_NAMES,
2727 MDMX_VECTOR_REGISTER_NAMES,
14daeee3
RS
2728 R5900_I_NAMES,
2729 R5900_Q_NAMES,
2730 R5900_R_NAMES,
2731 R5900_ACC_NAMES,
707bfff6
TS
2732 MIPS_DSP_ACCUMULATOR_NAMES,
2733 {0, 0}
2734};
2735
2736static const struct regname reg_names_o32[] = {
2737 O32_SYMBOLIC_REGISTER_NAMES,
2738 {0, 0}
2739};
2740
2741static const struct regname reg_names_n32n64[] = {
2742 N32N64_SYMBOLIC_REGISTER_NAMES,
2743 {0, 0}
2744};
2745
a92713e6
RS
2746/* Register symbols $v0 and $v1 map to GPRs 2 and 3, but they can also be
2747 interpreted as vector registers 0 and 1. If SYMVAL is the value of one
2748 of these register symbols, return the associated vector register,
2749 otherwise return SYMVAL itself. */
df58fc94 2750
a92713e6
RS
2751static unsigned int
2752mips_prefer_vec_regno (unsigned int symval)
707bfff6 2753{
a92713e6
RS
2754 if ((symval & -2) == (RTYPE_GP | 2))
2755 return RTYPE_VEC | (symval & 1);
2756 return symval;
2757}
2758
14daeee3
RS
2759/* Return true if string [S, E) is a valid register name, storing its
2760 symbol value in *SYMVAL_PTR if so. */
a92713e6
RS
2761
2762static bfd_boolean
14daeee3 2763mips_parse_register_1 (char *s, char *e, unsigned int *symval_ptr)
a92713e6 2764{
707bfff6 2765 char save_c;
14daeee3 2766 symbolS *symbol;
707bfff6
TS
2767
2768 /* Terminate name. */
2769 save_c = *e;
2770 *e = '\0';
2771
a92713e6
RS
2772 /* Look up the name. */
2773 symbol = symbol_find (s);
2774 *e = save_c;
2775
2776 if (!symbol || S_GET_SEGMENT (symbol) != reg_section)
2777 return FALSE;
2778
14daeee3
RS
2779 *symval_ptr = S_GET_VALUE (symbol);
2780 return TRUE;
2781}
2782
2783/* Return true if the string at *SPTR is a valid register name. Allow it
2784 to have a VU0-style channel suffix of the form x?y?z?w? if CHANNELS_PTR
2785 is nonnull.
2786
2787 When returning true, move *SPTR past the register, store the
2788 register's symbol value in *SYMVAL_PTR and the channel mask in
2789 *CHANNELS_PTR (if nonnull). The symbol value includes the register
2790 number (RNUM_MASK) and register type (RTYPE_MASK). The channel mask
2791 is a 4-bit value of the form XYZW and is 0 if no suffix was given. */
2792
2793static bfd_boolean
2794mips_parse_register (char **sptr, unsigned int *symval_ptr,
2795 unsigned int *channels_ptr)
2796{
2797 char *s, *e, *m;
2798 const char *q;
2799 unsigned int channels, symval, bit;
2800
2801 /* Find end of name. */
2802 s = e = *sptr;
2803 if (is_name_beginner (*e))
2804 ++e;
2805 while (is_part_of_name (*e))
2806 ++e;
2807
2808 channels = 0;
2809 if (!mips_parse_register_1 (s, e, &symval))
2810 {
2811 if (!channels_ptr)
2812 return FALSE;
2813
2814 /* Eat characters from the end of the string that are valid
2815 channel suffixes. The preceding register must be $ACC or
2816 end with a digit, so there is no ambiguity. */
2817 bit = 1;
2818 m = e;
2819 for (q = "wzyx"; *q; q++, bit <<= 1)
2820 if (m > s && m[-1] == *q)
2821 {
2822 --m;
2823 channels |= bit;
2824 }
2825
2826 if (channels == 0
2827 || !mips_parse_register_1 (s, m, &symval)
2828 || (symval & (RTYPE_VI | RTYPE_VF | RTYPE_R5900_ACC)) == 0)
2829 return FALSE;
2830 }
2831
a92713e6 2832 *sptr = e;
14daeee3
RS
2833 *symval_ptr = symval;
2834 if (channels_ptr)
2835 *channels_ptr = channels;
a92713e6
RS
2836 return TRUE;
2837}
2838
2839/* Check if SPTR points at a valid register specifier according to TYPES.
2840 If so, then return 1, advance S to consume the specifier and store
2841 the register's number in REGNOP, otherwise return 0. */
2842
2843static int
2844reg_lookup (char **s, unsigned int types, unsigned int *regnop)
2845{
2846 unsigned int regno;
2847
14daeee3 2848 if (mips_parse_register (s, &regno, NULL))
707bfff6 2849 {
a92713e6
RS
2850 if (types & RTYPE_VEC)
2851 regno = mips_prefer_vec_regno (regno);
2852 if (regno & types)
2853 regno &= RNUM_MASK;
2854 else
2855 regno = ~0;
707bfff6 2856 }
a92713e6 2857 else
707bfff6 2858 {
a92713e6 2859 if (types & RWARN)
1661c76c 2860 as_warn (_("unrecognized register name `%s'"), *s);
a92713e6 2861 regno = ~0;
707bfff6 2862 }
707bfff6 2863 if (regnop)
a92713e6
RS
2864 *regnop = regno;
2865 return regno <= RNUM_MASK;
707bfff6
TS
2866}
2867
14daeee3
RS
2868/* Parse a VU0 "x?y?z?w?" channel mask at S and store the associated
2869 mask in *CHANNELS. Return a pointer to the first unconsumed character. */
2870
2871static char *
2872mips_parse_vu0_channels (char *s, unsigned int *channels)
2873{
2874 unsigned int i;
2875
2876 *channels = 0;
2877 for (i = 0; i < 4; i++)
2878 if (*s == "xyzw"[i])
2879 {
2880 *channels |= 1 << (3 - i);
2881 ++s;
2882 }
2883 return s;
2884}
2885
a92713e6
RS
2886/* Token types for parsed operand lists. */
2887enum mips_operand_token_type {
2888 /* A plain register, e.g. $f2. */
2889 OT_REG,
df58fc94 2890
14daeee3
RS
2891 /* A 4-bit XYZW channel mask. */
2892 OT_CHANNELS,
2893
56d438b1
CF
2894 /* A constant vector index, e.g. [1]. */
2895 OT_INTEGER_INDEX,
2896
2897 /* A register vector index, e.g. [$2]. */
2898 OT_REG_INDEX,
df58fc94 2899
a92713e6
RS
2900 /* A continuous range of registers, e.g. $s0-$s4. */
2901 OT_REG_RANGE,
2902
2903 /* A (possibly relocated) expression. */
2904 OT_INTEGER,
2905
2906 /* A floating-point value. */
2907 OT_FLOAT,
2908
2909 /* A single character. This can be '(', ')' or ',', but '(' only appears
2910 before OT_REGs. */
2911 OT_CHAR,
2912
14daeee3
RS
2913 /* A doubled character, either "--" or "++". */
2914 OT_DOUBLE_CHAR,
2915
a92713e6
RS
2916 /* The end of the operand list. */
2917 OT_END
2918};
2919
2920/* A parsed operand token. */
2921struct mips_operand_token
2922{
2923 /* The type of token. */
2924 enum mips_operand_token_type type;
2925 union
2926 {
56d438b1 2927 /* The register symbol value for an OT_REG or OT_REG_INDEX. */
a92713e6
RS
2928 unsigned int regno;
2929
14daeee3
RS
2930 /* The 4-bit channel mask for an OT_CHANNEL_SUFFIX. */
2931 unsigned int channels;
2932
56d438b1
CF
2933 /* The integer value of an OT_INTEGER_INDEX. */
2934 addressT index;
a92713e6
RS
2935
2936 /* The two register symbol values involved in an OT_REG_RANGE. */
2937 struct {
2938 unsigned int regno1;
2939 unsigned int regno2;
2940 } reg_range;
2941
2942 /* The value of an OT_INTEGER. The value is represented as an
2943 expression and the relocation operators that were applied to
2944 that expression. The reloc entries are BFD_RELOC_UNUSED if no
2945 relocation operators were used. */
2946 struct {
2947 expressionS value;
2948 bfd_reloc_code_real_type relocs[3];
2949 } integer;
2950
2951 /* The binary data for an OT_FLOAT constant, and the number of bytes
2952 in the constant. */
2953 struct {
2954 unsigned char data[8];
2955 int length;
2956 } flt;
2957
14daeee3 2958 /* The character represented by an OT_CHAR or OT_DOUBLE_CHAR. */
a92713e6
RS
2959 char ch;
2960 } u;
2961};
2962
2963/* An obstack used to construct lists of mips_operand_tokens. */
2964static struct obstack mips_operand_tokens;
2965
2966/* Give TOKEN type TYPE and add it to mips_operand_tokens. */
2967
2968static void
2969mips_add_token (struct mips_operand_token *token,
2970 enum mips_operand_token_type type)
2971{
2972 token->type = type;
2973 obstack_grow (&mips_operand_tokens, token, sizeof (*token));
2974}
2975
2976/* Check whether S is '(' followed by a register name. Add OT_CHAR
2977 and OT_REG tokens for them if so, and return a pointer to the first
2978 unconsumed character. Return null otherwise. */
2979
2980static char *
2981mips_parse_base_start (char *s)
2982{
2983 struct mips_operand_token token;
14daeee3
RS
2984 unsigned int regno, channels;
2985 bfd_boolean decrement_p;
df58fc94 2986
a92713e6
RS
2987 if (*s != '(')
2988 return 0;
2989
2990 ++s;
2991 SKIP_SPACE_TABS (s);
14daeee3
RS
2992
2993 /* Only match "--" as part of a base expression. In other contexts "--X"
2994 is a double negative. */
2995 decrement_p = (s[0] == '-' && s[1] == '-');
2996 if (decrement_p)
2997 {
2998 s += 2;
2999 SKIP_SPACE_TABS (s);
3000 }
3001
3002 /* Allow a channel specifier because that leads to better error messages
3003 than treating something like "$vf0x++" as an expression. */
3004 if (!mips_parse_register (&s, &regno, &channels))
a92713e6
RS
3005 return 0;
3006
3007 token.u.ch = '(';
3008 mips_add_token (&token, OT_CHAR);
3009
14daeee3
RS
3010 if (decrement_p)
3011 {
3012 token.u.ch = '-';
3013 mips_add_token (&token, OT_DOUBLE_CHAR);
3014 }
3015
a92713e6
RS
3016 token.u.regno = regno;
3017 mips_add_token (&token, OT_REG);
3018
14daeee3
RS
3019 if (channels)
3020 {
3021 token.u.channels = channels;
3022 mips_add_token (&token, OT_CHANNELS);
3023 }
3024
3025 /* For consistency, only match "++" as part of base expressions too. */
3026 SKIP_SPACE_TABS (s);
3027 if (s[0] == '+' && s[1] == '+')
3028 {
3029 s += 2;
3030 token.u.ch = '+';
3031 mips_add_token (&token, OT_DOUBLE_CHAR);
3032 }
3033
a92713e6
RS
3034 return s;
3035}
3036
3037/* Parse one or more tokens from S. Return a pointer to the first
3038 unconsumed character on success. Return null if an error was found
3039 and store the error text in insn_error. FLOAT_FORMAT is as for
3040 mips_parse_arguments. */
3041
3042static char *
3043mips_parse_argument_token (char *s, char float_format)
3044{
3045 char *end, *save_in, *err;
14daeee3 3046 unsigned int regno1, regno2, channels;
a92713e6
RS
3047 struct mips_operand_token token;
3048
3049 /* First look for "($reg", since we want to treat that as an
3050 OT_CHAR and OT_REG rather than an expression. */
3051 end = mips_parse_base_start (s);
3052 if (end)
3053 return end;
3054
3055 /* Handle other characters that end up as OT_CHARs. */
3056 if (*s == ')' || *s == ',')
3057 {
3058 token.u.ch = *s;
3059 mips_add_token (&token, OT_CHAR);
3060 ++s;
3061 return s;
3062 }
3063
3064 /* Handle tokens that start with a register. */
14daeee3 3065 if (mips_parse_register (&s, &regno1, &channels))
df58fc94 3066 {
14daeee3
RS
3067 if (channels)
3068 {
3069 /* A register and a VU0 channel suffix. */
3070 token.u.regno = regno1;
3071 mips_add_token (&token, OT_REG);
3072
3073 token.u.channels = channels;
3074 mips_add_token (&token, OT_CHANNELS);
3075 return s;
3076 }
3077
a92713e6
RS
3078 SKIP_SPACE_TABS (s);
3079 if (*s == '-')
df58fc94 3080 {
a92713e6
RS
3081 /* A register range. */
3082 ++s;
3083 SKIP_SPACE_TABS (s);
14daeee3 3084 if (!mips_parse_register (&s, &regno2, NULL))
a92713e6 3085 {
1661c76c 3086 set_insn_error (0, _("invalid register range"));
a92713e6
RS
3087 return 0;
3088 }
df58fc94 3089
a92713e6
RS
3090 token.u.reg_range.regno1 = regno1;
3091 token.u.reg_range.regno2 = regno2;
3092 mips_add_token (&token, OT_REG_RANGE);
3093 return s;
3094 }
a92713e6 3095
56d438b1
CF
3096 /* Add the register itself. */
3097 token.u.regno = regno1;
3098 mips_add_token (&token, OT_REG);
3099
3100 /* Check for a vector index. */
3101 if (*s == '[')
3102 {
a92713e6
RS
3103 ++s;
3104 SKIP_SPACE_TABS (s);
56d438b1
CF
3105 if (mips_parse_register (&s, &token.u.regno, NULL))
3106 mips_add_token (&token, OT_REG_INDEX);
3107 else
a92713e6 3108 {
56d438b1
CF
3109 expressionS element;
3110
3111 my_getExpression (&element, s);
3112 if (element.X_op != O_constant)
3113 {
3114 set_insn_error (0, _("vector element must be constant"));
3115 return 0;
3116 }
3117 s = expr_end;
3118 token.u.index = element.X_add_number;
3119 mips_add_token (&token, OT_INTEGER_INDEX);
a92713e6 3120 }
a92713e6
RS
3121 SKIP_SPACE_TABS (s);
3122 if (*s != ']')
3123 {
1661c76c 3124 set_insn_error (0, _("missing `]'"));
a92713e6
RS
3125 return 0;
3126 }
3127 ++s;
df58fc94 3128 }
a92713e6 3129 return s;
df58fc94
RS
3130 }
3131
a92713e6
RS
3132 if (float_format)
3133 {
3134 /* First try to treat expressions as floats. */
3135 save_in = input_line_pointer;
3136 input_line_pointer = s;
3137 err = md_atof (float_format, (char *) token.u.flt.data,
3138 &token.u.flt.length);
3139 end = input_line_pointer;
3140 input_line_pointer = save_in;
3141 if (err && *err)
3142 {
e3de51ce 3143 set_insn_error (0, err);
a92713e6
RS
3144 return 0;
3145 }
3146 if (s != end)
3147 {
3148 mips_add_token (&token, OT_FLOAT);
3149 return end;
3150 }
3151 }
3152
3153 /* Treat everything else as an integer expression. */
3154 token.u.integer.relocs[0] = BFD_RELOC_UNUSED;
3155 token.u.integer.relocs[1] = BFD_RELOC_UNUSED;
3156 token.u.integer.relocs[2] = BFD_RELOC_UNUSED;
3157 my_getSmallExpression (&token.u.integer.value, token.u.integer.relocs, s);
3158 s = expr_end;
3159 mips_add_token (&token, OT_INTEGER);
3160 return s;
3161}
3162
3163/* S points to the operand list for an instruction. FLOAT_FORMAT is 'f'
3164 if expressions should be treated as 32-bit floating-point constants,
3165 'd' if they should be treated as 64-bit floating-point constants,
3166 or 0 if they should be treated as integer expressions (the usual case).
3167
3168 Return a list of tokens on success, otherwise return 0. The caller
3169 must obstack_free the list after use. */
3170
3171static struct mips_operand_token *
3172mips_parse_arguments (char *s, char float_format)
3173{
3174 struct mips_operand_token token;
3175
3176 SKIP_SPACE_TABS (s);
3177 while (*s)
3178 {
3179 s = mips_parse_argument_token (s, float_format);
3180 if (!s)
3181 {
3182 obstack_free (&mips_operand_tokens,
3183 obstack_finish (&mips_operand_tokens));
3184 return 0;
3185 }
3186 SKIP_SPACE_TABS (s);
3187 }
3188 mips_add_token (&token, OT_END);
3189 return (struct mips_operand_token *) obstack_finish (&mips_operand_tokens);
df58fc94
RS
3190}
3191
d301a56b
RS
3192/* Return TRUE if opcode MO is valid on the currently selected ISA, ASE
3193 and architecture. Use is_opcode_valid_16 for MIPS16 opcodes. */
037b32b9
AN
3194
3195static bfd_boolean
f79e2745 3196is_opcode_valid (const struct mips_opcode *mo)
037b32b9
AN
3197{
3198 int isa = mips_opts.isa;
846ef2d0 3199 int ase = mips_opts.ase;
037b32b9 3200 int fp_s, fp_d;
c6278170 3201 unsigned int i;
037b32b9 3202
c6278170
RS
3203 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
3204 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
3205 if ((ase & mips_ases[i].flags) == mips_ases[i].flags)
3206 ase |= mips_ases[i].flags64;
037b32b9 3207
d301a56b 3208 if (!opcode_is_member (mo, isa, ase, mips_opts.arch))
037b32b9
AN
3209 return FALSE;
3210
3211 /* Check whether the instruction or macro requires single-precision or
3212 double-precision floating-point support. Note that this information is
3213 stored differently in the opcode table for insns and macros. */
3214 if (mo->pinfo == INSN_MACRO)
3215 {
3216 fp_s = mo->pinfo2 & INSN2_M_FP_S;
3217 fp_d = mo->pinfo2 & INSN2_M_FP_D;
3218 }
3219 else
3220 {
3221 fp_s = mo->pinfo & FP_S;
3222 fp_d = mo->pinfo & FP_D;
3223 }
3224
3225 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
3226 return FALSE;
3227
3228 if (fp_s && mips_opts.soft_float)
3229 return FALSE;
3230
3231 return TRUE;
3232}
3233
3234/* Return TRUE if the MIPS16 opcode MO is valid on the currently
3235 selected ISA and architecture. */
3236
3237static bfd_boolean
3238is_opcode_valid_16 (const struct mips_opcode *mo)
3239{
d301a56b 3240 return opcode_is_member (mo, mips_opts.isa, 0, mips_opts.arch);
037b32b9
AN
3241}
3242
df58fc94
RS
3243/* Return TRUE if the size of the microMIPS opcode MO matches one
3244 explicitly requested. Always TRUE in the standard MIPS mode. */
3245
3246static bfd_boolean
3247is_size_valid (const struct mips_opcode *mo)
3248{
3249 if (!mips_opts.micromips)
3250 return TRUE;
3251
833794fc
MR
3252 if (mips_opts.insn32)
3253 {
3254 if (mo->pinfo != INSN_MACRO && micromips_insn_length (mo) != 4)
3255 return FALSE;
3256 if ((mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0)
3257 return FALSE;
3258 }
df58fc94
RS
3259 if (!forced_insn_length)
3260 return TRUE;
3261 if (mo->pinfo == INSN_MACRO)
3262 return FALSE;
3263 return forced_insn_length == micromips_insn_length (mo);
3264}
3265
3266/* Return TRUE if the microMIPS opcode MO is valid for the delay slot
e64af278
MR
3267 of the preceding instruction. Always TRUE in the standard MIPS mode.
3268
3269 We don't accept macros in 16-bit delay slots to avoid a case where
3270 a macro expansion fails because it relies on a preceding 32-bit real
3271 instruction to have matched and does not handle the operands correctly.
3272 The only macros that may expand to 16-bit instructions are JAL that
3273 cannot be placed in a delay slot anyway, and corner cases of BALIGN
3274 and BGT (that likewise cannot be placed in a delay slot) that decay to
3275 a NOP. In all these cases the macros precede any corresponding real
3276 instruction definitions in the opcode table, so they will match in the
3277 second pass where the size of the delay slot is ignored and therefore
3278 produce correct code. */
df58fc94
RS
3279
3280static bfd_boolean
3281is_delay_slot_valid (const struct mips_opcode *mo)
3282{
3283 if (!mips_opts.micromips)
3284 return TRUE;
3285
3286 if (mo->pinfo == INSN_MACRO)
c06dec14 3287 return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;
df58fc94
RS
3288 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
3289 && micromips_insn_length (mo) != 4)
3290 return FALSE;
3291 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
3292 && micromips_insn_length (mo) != 2)
3293 return FALSE;
3294
3295 return TRUE;
3296}
3297
fc76e730
RS
3298/* For consistency checking, verify that all bits of OPCODE are specified
3299 either by the match/mask part of the instruction definition, or by the
3300 operand list. Also build up a list of operands in OPERANDS.
3301
3302 INSN_BITS says which bits of the instruction are significant.
3303 If OPCODE is a standard or microMIPS instruction, DECODE_OPERAND
3304 provides the mips_operand description of each operand. DECODE_OPERAND
3305 is null for MIPS16 instructions. */
ab902481
RS
3306
3307static int
3308validate_mips_insn (const struct mips_opcode *opcode,
3309 unsigned long insn_bits,
fc76e730
RS
3310 const struct mips_operand *(*decode_operand) (const char *),
3311 struct mips_operand_array *operands)
ab902481
RS
3312{
3313 const char *s;
fc76e730 3314 unsigned long used_bits, doubled, undefined, opno, mask;
ab902481
RS
3315 const struct mips_operand *operand;
3316
fc76e730
RS
3317 mask = (opcode->pinfo == INSN_MACRO ? 0 : opcode->mask);
3318 if ((mask & opcode->match) != opcode->match)
ab902481
RS
3319 {
3320 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
3321 opcode->name, opcode->args);
3322 return 0;
3323 }
3324 used_bits = 0;
fc76e730 3325 opno = 0;
14daeee3
RS
3326 if (opcode->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX)
3327 used_bits = mips_insert_operand (&mips_vu0_channel_mask, used_bits, -1);
ab902481
RS
3328 for (s = opcode->args; *s; ++s)
3329 switch (*s)
3330 {
3331 case ',':
3332 case '(':
3333 case ')':
3334 break;
3335
14daeee3
RS
3336 case '#':
3337 s++;
3338 break;
3339
ab902481 3340 default:
fc76e730
RS
3341 if (!decode_operand)
3342 operand = decode_mips16_operand (*s, FALSE);
3343 else
3344 operand = decode_operand (s);
3345 if (!operand && opcode->pinfo != INSN_MACRO)
ab902481
RS
3346 {
3347 as_bad (_("internal: unknown operand type: %s %s"),
3348 opcode->name, opcode->args);
3349 return 0;
3350 }
fc76e730
RS
3351 gas_assert (opno < MAX_OPERANDS);
3352 operands->operand[opno] = operand;
14daeee3 3353 if (operand && operand->type != OP_VU0_MATCH_SUFFIX)
fc76e730 3354 {
14daeee3 3355 used_bits = mips_insert_operand (operand, used_bits, -1);
fc76e730
RS
3356 if (operand->type == OP_MDMX_IMM_REG)
3357 /* Bit 5 is the format selector (OB vs QH). The opcode table
3358 has separate entries for each format. */
3359 used_bits &= ~(1 << (operand->lsb + 5));
3360 if (operand->type == OP_ENTRY_EXIT_LIST)
3361 used_bits &= ~(mask & 0x700);
3362 }
ab902481 3363 /* Skip prefix characters. */
7361da2c 3364 if (decode_operand && (*s == '+' || *s == 'm' || *s == '-'))
ab902481 3365 ++s;
fc76e730 3366 opno += 1;
ab902481
RS
3367 break;
3368 }
fc76e730 3369 doubled = used_bits & mask & insn_bits;
ab902481
RS
3370 if (doubled)
3371 {
3372 as_bad (_("internal: bad mips opcode (bits 0x%08lx doubly defined):"
3373 " %s %s"), doubled, opcode->name, opcode->args);
3374 return 0;
3375 }
fc76e730 3376 used_bits |= mask;
ab902481 3377 undefined = ~used_bits & insn_bits;
fc76e730 3378 if (opcode->pinfo != INSN_MACRO && undefined)
ab902481
RS
3379 {
3380 as_bad (_("internal: bad mips opcode (bits 0x%08lx undefined): %s %s"),
3381 undefined, opcode->name, opcode->args);
3382 return 0;
3383 }
3384 used_bits &= ~insn_bits;
3385 if (used_bits)
3386 {
3387 as_bad (_("internal: bad mips opcode (bits 0x%08lx defined): %s %s"),
3388 used_bits, opcode->name, opcode->args);
3389 return 0;
3390 }
3391 return 1;
3392}
3393
fc76e730
RS
3394/* The MIPS16 version of validate_mips_insn. */
3395
3396static int
3397validate_mips16_insn (const struct mips_opcode *opcode,
3398 struct mips_operand_array *operands)
3399{
3400 if (opcode->args[0] == 'a' || opcode->args[0] == 'i')
3401 {
3402 /* In this case OPCODE defines the first 16 bits in a 32-bit jump
3403 instruction. Use TMP to describe the full instruction. */
3404 struct mips_opcode tmp;
3405
3406 tmp = *opcode;
3407 tmp.match <<= 16;
3408 tmp.mask <<= 16;
3409 return validate_mips_insn (&tmp, 0xffffffff, 0, operands);
3410 }
3411 return validate_mips_insn (opcode, 0xffff, 0, operands);
3412}
3413
ab902481
RS
3414/* The microMIPS version of validate_mips_insn. */
3415
3416static int
fc76e730
RS
3417validate_micromips_insn (const struct mips_opcode *opc,
3418 struct mips_operand_array *operands)
ab902481
RS
3419{
3420 unsigned long insn_bits;
3421 unsigned long major;
3422 unsigned int length;
3423
fc76e730
RS
3424 if (opc->pinfo == INSN_MACRO)
3425 return validate_mips_insn (opc, 0xffffffff, decode_micromips_operand,
3426 operands);
3427
ab902481
RS
3428 length = micromips_insn_length (opc);
3429 if (length != 2 && length != 4)
3430 {
1661c76c 3431 as_bad (_("internal error: bad microMIPS opcode (incorrect length: %u): "
ab902481
RS
3432 "%s %s"), length, opc->name, opc->args);
3433 return 0;
3434 }
3435 major = opc->match >> (10 + 8 * (length - 2));
3436 if ((length == 2 && (major & 7) != 1 && (major & 6) != 2)
3437 || (length == 4 && (major & 7) != 0 && (major & 4) != 4))
3438 {
1661c76c 3439 as_bad (_("internal error: bad microMIPS opcode "
ab902481
RS
3440 "(opcode/length mismatch): %s %s"), opc->name, opc->args);
3441 return 0;
3442 }
3443
3444 /* Shift piecewise to avoid an overflow where unsigned long is 32-bit. */
3445 insn_bits = 1 << 4 * length;
3446 insn_bits <<= 4 * length;
3447 insn_bits -= 1;
fc76e730
RS
3448 return validate_mips_insn (opc, insn_bits, decode_micromips_operand,
3449 operands);
ab902481
RS
3450}
3451
707bfff6
TS
3452/* This function is called once, at assembler startup time. It should set up
3453 all the tables, etc. that the MD part of the assembler will need. */
156c2f8b 3454
252b5132 3455void
17a2f251 3456md_begin (void)
252b5132 3457{
3994f87e 3458 const char *retval = NULL;
156c2f8b 3459 int i = 0;
252b5132 3460 int broken = 0;
1f25f5d3 3461
0a44bf69
RS
3462 if (mips_pic != NO_PIC)
3463 {
3464 if (g_switch_seen && g_switch_value != 0)
3465 as_bad (_("-G may not be used in position-independent code"));
3466 g_switch_value = 0;
3467 }
3468
0b35dfee 3469 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_opts.arch))
1661c76c 3470 as_warn (_("could not set architecture and machine"));
252b5132 3471
252b5132
RH
3472 op_hash = hash_new ();
3473
fc76e730 3474 mips_operands = XCNEWVEC (struct mips_operand_array, NUMOPCODES);
252b5132
RH
3475 for (i = 0; i < NUMOPCODES;)
3476 {
3477 const char *name = mips_opcodes[i].name;
3478
17a2f251 3479 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
252b5132
RH
3480 if (retval != NULL)
3481 {
3482 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
3483 mips_opcodes[i].name, retval);
3484 /* Probably a memory allocation problem? Give up now. */
1661c76c 3485 as_fatal (_("broken assembler, no assembly attempted"));
252b5132
RH
3486 }
3487 do
3488 {
fc76e730
RS
3489 if (!validate_mips_insn (&mips_opcodes[i], 0xffffffff,
3490 decode_mips_operand, &mips_operands[i]))
3491 broken = 1;
3492 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
252b5132 3493 {
fc76e730
RS
3494 create_insn (&nop_insn, mips_opcodes + i);
3495 if (mips_fix_loongson2f_nop)
3496 nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
3497 nop_insn.fixed_p = 1;
252b5132
RH
3498 }
3499 ++i;
3500 }
3501 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
3502 }
3503
3504 mips16_op_hash = hash_new ();
fc76e730
RS
3505 mips16_operands = XCNEWVEC (struct mips_operand_array,
3506 bfd_mips16_num_opcodes);
252b5132
RH
3507
3508 i = 0;
3509 while (i < bfd_mips16_num_opcodes)
3510 {
3511 const char *name = mips16_opcodes[i].name;
3512
17a2f251 3513 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
252b5132
RH
3514 if (retval != NULL)
3515 as_fatal (_("internal: can't hash `%s': %s"),
3516 mips16_opcodes[i].name, retval);
3517 do
3518 {
fc76e730
RS
3519 if (!validate_mips16_insn (&mips16_opcodes[i], &mips16_operands[i]))
3520 broken = 1;
1e915849
RS
3521 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
3522 {
3523 create_insn (&mips16_nop_insn, mips16_opcodes + i);
3524 mips16_nop_insn.fixed_p = 1;
3525 }
252b5132
RH
3526 ++i;
3527 }
3528 while (i < bfd_mips16_num_opcodes
3529 && strcmp (mips16_opcodes[i].name, name) == 0);
3530 }
3531
df58fc94 3532 micromips_op_hash = hash_new ();
fc76e730
RS
3533 micromips_operands = XCNEWVEC (struct mips_operand_array,
3534 bfd_micromips_num_opcodes);
df58fc94
RS
3535
3536 i = 0;
3537 while (i < bfd_micromips_num_opcodes)
3538 {
3539 const char *name = micromips_opcodes[i].name;
3540
3541 retval = hash_insert (micromips_op_hash, name,
3542 (void *) &micromips_opcodes[i]);
3543 if (retval != NULL)
3544 as_fatal (_("internal: can't hash `%s': %s"),
3545 micromips_opcodes[i].name, retval);
3546 do
fc76e730
RS
3547 {
3548 struct mips_cl_insn *micromips_nop_insn;
3549
3550 if (!validate_micromips_insn (&micromips_opcodes[i],
3551 &micromips_operands[i]))
3552 broken = 1;
3553
3554 if (micromips_opcodes[i].pinfo != INSN_MACRO)
3555 {
3556 if (micromips_insn_length (micromips_opcodes + i) == 2)
3557 micromips_nop_insn = &micromips_nop16_insn;
3558 else if (micromips_insn_length (micromips_opcodes + i) == 4)
3559 micromips_nop_insn = &micromips_nop32_insn;
3560 else
3561 continue;
3562
3563 if (micromips_nop_insn->insn_mo == NULL
3564 && strcmp (name, "nop") == 0)
3565 {
3566 create_insn (micromips_nop_insn, micromips_opcodes + i);
3567 micromips_nop_insn->fixed_p = 1;
3568 }
3569 }
3570 }
df58fc94
RS
3571 while (++i < bfd_micromips_num_opcodes
3572 && strcmp (micromips_opcodes[i].name, name) == 0);
3573 }
3574
252b5132 3575 if (broken)
1661c76c 3576 as_fatal (_("broken assembler, no assembly attempted"));
252b5132
RH
3577
3578 /* We add all the general register names to the symbol table. This
3579 helps us detect invalid uses of them. */
707bfff6
TS
3580 for (i = 0; reg_names[i].name; i++)
3581 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
8fc4ee9b 3582 reg_names[i].num, /* & RNUM_MASK, */
707bfff6
TS
3583 &zero_address_frag));
3584 if (HAVE_NEWABI)
3585 for (i = 0; reg_names_n32n64[i].name; i++)
3586 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
8fc4ee9b 3587 reg_names_n32n64[i].num, /* & RNUM_MASK, */
252b5132 3588 &zero_address_frag));
707bfff6
TS
3589 else
3590 for (i = 0; reg_names_o32[i].name; i++)
3591 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
8fc4ee9b 3592 reg_names_o32[i].num, /* & RNUM_MASK, */
6047c971 3593 &zero_address_frag));
6047c971 3594
14daeee3
RS
3595 for (i = 0; i < 32; i++)
3596 {
3597 char regname[7];
3598
3599 /* R5900 VU0 floating-point register. */
3600 regname[sizeof (rename) - 1] = 0;
3601 snprintf (regname, sizeof (regname) - 1, "$vf%d", i);
3602 symbol_table_insert (symbol_new (regname, reg_section,
3603 RTYPE_VF | i, &zero_address_frag));
3604
3605 /* R5900 VU0 integer register. */
3606 snprintf (regname, sizeof (regname) - 1, "$vi%d", i);
3607 symbol_table_insert (symbol_new (regname, reg_section,
3608 RTYPE_VI | i, &zero_address_frag));
3609
56d438b1
CF
3610 /* MSA register. */
3611 snprintf (regname, sizeof (regname) - 1, "$w%d", i);
3612 symbol_table_insert (symbol_new (regname, reg_section,
3613 RTYPE_MSA | i, &zero_address_frag));
14daeee3
RS
3614 }
3615
a92713e6
RS
3616 obstack_init (&mips_operand_tokens);
3617
7d10b47d 3618 mips_no_prev_insn ();
252b5132
RH
3619
3620 mips_gprmask = 0;
3621 mips_cprmask[0] = 0;
3622 mips_cprmask[1] = 0;
3623 mips_cprmask[2] = 0;
3624 mips_cprmask[3] = 0;
3625
3626 /* set the default alignment for the text section (2**2) */
3627 record_alignment (text_section, 2);
3628
4d0d148d 3629 bfd_set_gp_size (stdoutput, g_switch_value);
252b5132 3630
f3ded42a
RS
3631 /* On a native system other than VxWorks, sections must be aligned
3632 to 16 byte boundaries. When configured for an embedded ELF
3633 target, we don't bother. */
3634 if (strncmp (TARGET_OS, "elf", 3) != 0
3635 && strncmp (TARGET_OS, "vxworks", 7) != 0)
252b5132 3636 {
f3ded42a
RS
3637 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
3638 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
3639 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
3640 }
252b5132 3641
f3ded42a
RS
3642 /* Create a .reginfo section for register masks and a .mdebug
3643 section for debugging information. */
3644 {
3645 segT seg;
3646 subsegT subseg;
3647 flagword flags;
3648 segT sec;
3649
3650 seg = now_seg;
3651 subseg = now_subseg;
3652
3653 /* The ABI says this section should be loaded so that the
3654 running program can access it. However, we don't load it
3655 if we are configured for an embedded target */
3656 flags = SEC_READONLY | SEC_DATA;
3657 if (strncmp (TARGET_OS, "elf", 3) != 0)
3658 flags |= SEC_ALLOC | SEC_LOAD;
3659
3660 if (mips_abi != N64_ABI)
252b5132 3661 {
f3ded42a 3662 sec = subseg_new (".reginfo", (subsegT) 0);
bdaaa2e1 3663
f3ded42a
RS
3664 bfd_set_section_flags (stdoutput, sec, flags);
3665 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
252b5132 3666
f3ded42a
RS
3667 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
3668 }
3669 else
3670 {
3671 /* The 64-bit ABI uses a .MIPS.options section rather than
3672 .reginfo section. */
3673 sec = subseg_new (".MIPS.options", (subsegT) 0);
3674 bfd_set_section_flags (stdoutput, sec, flags);
3675 bfd_set_section_alignment (stdoutput, sec, 3);
252b5132 3676
f3ded42a
RS
3677 /* Set up the option header. */
3678 {
3679 Elf_Internal_Options opthdr;
3680 char *f;
3681
3682 opthdr.kind = ODK_REGINFO;
3683 opthdr.size = (sizeof (Elf_External_Options)
3684 + sizeof (Elf64_External_RegInfo));
3685 opthdr.section = 0;
3686 opthdr.info = 0;
3687 f = frag_more (sizeof (Elf_External_Options));
3688 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
3689 (Elf_External_Options *) f);
3690
3691 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
3692 }
3693 }
252b5132 3694
351cdf24
MF
3695 sec = subseg_new (".MIPS.abiflags", (subsegT) 0);
3696 bfd_set_section_flags (stdoutput, sec,
3697 SEC_READONLY | SEC_DATA | SEC_ALLOC | SEC_LOAD);
3698 bfd_set_section_alignment (stdoutput, sec, 3);
3699 mips_flags_frag = frag_more (sizeof (Elf_External_ABIFlags_v0));
3700
f3ded42a
RS
3701 if (ECOFF_DEBUGGING)
3702 {
3703 sec = subseg_new (".mdebug", (subsegT) 0);
3704 (void) bfd_set_section_flags (stdoutput, sec,
3705 SEC_HAS_CONTENTS | SEC_READONLY);
3706 (void) bfd_set_section_alignment (stdoutput, sec, 2);
252b5132 3707 }
f3ded42a
RS
3708 else if (mips_flag_pdr)
3709 {
3710 pdr_seg = subseg_new (".pdr", (subsegT) 0);
3711 (void) bfd_set_section_flags (stdoutput, pdr_seg,
3712 SEC_READONLY | SEC_RELOC
3713 | SEC_DEBUGGING);
3714 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
3715 }
3716
3717 subseg_set (seg, subseg);
3718 }
252b5132 3719
71400594
RS
3720 if (mips_fix_vr4120)
3721 init_vr4120_conflicts ();
252b5132
RH
3722}
3723
351cdf24
MF
3724static inline void
3725fpabi_incompatible_with (int fpabi, const char *what)
3726{
3727 as_warn (_(".gnu_attribute %d,%d is incompatible with `%s'"),
3728 Tag_GNU_MIPS_ABI_FP, fpabi, what);
3729}
3730
3731static inline void
3732fpabi_requires (int fpabi, const char *what)
3733{
3734 as_warn (_(".gnu_attribute %d,%d requires `%s'"),
3735 Tag_GNU_MIPS_ABI_FP, fpabi, what);
3736}
3737
3738/* Check -mabi and register sizes against the specified FP ABI. */
3739static void
3740check_fpabi (int fpabi)
3741{
351cdf24
MF
3742 switch (fpabi)
3743 {
3744 case Val_GNU_MIPS_ABI_FP_DOUBLE:
ea79f94a
MF
3745 if (file_mips_opts.soft_float)
3746 fpabi_incompatible_with (fpabi, "softfloat");
3747 else if (file_mips_opts.single_float)
3748 fpabi_incompatible_with (fpabi, "singlefloat");
351cdf24
MF
3749 if (file_mips_opts.gp == 64 && file_mips_opts.fp == 32)
3750 fpabi_incompatible_with (fpabi, "gp=64 fp=32");
3751 else if (file_mips_opts.gp == 32 && file_mips_opts.fp == 64)
3752 fpabi_incompatible_with (fpabi, "gp=32 fp=64");
351cdf24
MF
3753 break;
3754
3755 case Val_GNU_MIPS_ABI_FP_XX:
3756 if (mips_abi != O32_ABI)
3757 fpabi_requires (fpabi, "-mabi=32");
ea79f94a
MF
3758 else if (file_mips_opts.soft_float)
3759 fpabi_incompatible_with (fpabi, "softfloat");
3760 else if (file_mips_opts.single_float)
3761 fpabi_incompatible_with (fpabi, "singlefloat");
351cdf24
MF
3762 else if (file_mips_opts.fp != 0)
3763 fpabi_requires (fpabi, "fp=xx");
351cdf24
MF
3764 break;
3765
3766 case Val_GNU_MIPS_ABI_FP_64A:
3767 case Val_GNU_MIPS_ABI_FP_64:
3768 if (mips_abi != O32_ABI)
3769 fpabi_requires (fpabi, "-mabi=32");
ea79f94a
MF
3770 else if (file_mips_opts.soft_float)
3771 fpabi_incompatible_with (fpabi, "softfloat");
3772 else if (file_mips_opts.single_float)
3773 fpabi_incompatible_with (fpabi, "singlefloat");
351cdf24
MF
3774 else if (file_mips_opts.fp != 64)
3775 fpabi_requires (fpabi, "fp=64");
3776 else if (fpabi == Val_GNU_MIPS_ABI_FP_64 && !file_mips_opts.oddspreg)
3777 fpabi_incompatible_with (fpabi, "nooddspreg");
3778 else if (fpabi == Val_GNU_MIPS_ABI_FP_64A && file_mips_opts.oddspreg)
3779 fpabi_requires (fpabi, "nooddspreg");
351cdf24
MF
3780 break;
3781
3782 case Val_GNU_MIPS_ABI_FP_SINGLE:
3783 if (file_mips_opts.soft_float)
3784 fpabi_incompatible_with (fpabi, "softfloat");
3785 else if (!file_mips_opts.single_float)
3786 fpabi_requires (fpabi, "singlefloat");
3787 break;
3788
3789 case Val_GNU_MIPS_ABI_FP_SOFT:
3790 if (!file_mips_opts.soft_float)
3791 fpabi_requires (fpabi, "softfloat");
3792 break;
3793
3794 case Val_GNU_MIPS_ABI_FP_OLD_64:
3795 as_warn (_(".gnu_attribute %d,%d is no longer supported"),
3796 Tag_GNU_MIPS_ABI_FP, fpabi);
3797 break;
3798
3799 default:
3800 as_warn (_(".gnu_attribute %d,%d is not a recognized"
3801 " floating-point ABI"), Tag_GNU_MIPS_ABI_FP, fpabi);
3802 break;
3803 }
351cdf24
MF
3804}
3805
919731af 3806/* Perform consistency checks on the current options. */
3807
3808static void
3809mips_check_options (struct mips_set_options *opts, bfd_boolean abi_checks)
3810{
3811 /* Check the size of integer registers agrees with the ABI and ISA. */
3812 if (opts->gp == 64 && !ISA_HAS_64BIT_REGS (opts->isa))
3813 as_bad (_("`gp=64' used with a 32-bit processor"));
3814 else if (abi_checks
3815 && opts->gp == 32 && ABI_NEEDS_64BIT_REGS (mips_abi))
3816 as_bad (_("`gp=32' used with a 64-bit ABI"));
3817 else if (abi_checks
3818 && opts->gp == 64 && ABI_NEEDS_32BIT_REGS (mips_abi))
3819 as_bad (_("`gp=64' used with a 32-bit ABI"));
3820
3821 /* Check the size of the float registers agrees with the ABI and ISA. */
3822 switch (opts->fp)
3823 {
351cdf24
MF
3824 case 0:
3825 if (!CPU_HAS_LDC1_SDC1 (opts->arch))
3826 as_bad (_("`fp=xx' used with a cpu lacking ldc1/sdc1 instructions"));
3827 else if (opts->single_float == 1)
3828 as_bad (_("`fp=xx' cannot be used with `singlefloat'"));
3829 break;
919731af 3830 case 64:
3831 if (!ISA_HAS_64BIT_FPRS (opts->isa))
3832 as_bad (_("`fp=64' used with a 32-bit fpu"));
3833 else if (abi_checks
3834 && ABI_NEEDS_32BIT_REGS (mips_abi)
3835 && !ISA_HAS_MXHC1 (opts->isa))
3836 as_warn (_("`fp=64' used with a 32-bit ABI"));
3837 break;
3838 case 32:
3839 if (abi_checks
3840 && ABI_NEEDS_64BIT_REGS (mips_abi))
3841 as_warn (_("`fp=32' used with a 64-bit ABI"));
7361da2c
AB
3842 if (ISA_IS_R6 (mips_opts.isa) && opts->single_float == 0)
3843 as_bad (_("`fp=32' used with a MIPS R6 cpu"));
919731af 3844 break;
3845 default:
3846 as_bad (_("Unknown size of floating point registers"));
3847 break;
3848 }
3849
351cdf24
MF
3850 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !opts->oddspreg)
3851 as_bad (_("`nooddspreg` cannot be used with a 64-bit ABI"));
3852
919731af 3853 if (opts->micromips == 1 && opts->mips16 == 1)
3854 as_bad (_("`mips16' cannot be used with `micromips'"));
7361da2c
AB
3855 else if (ISA_IS_R6 (mips_opts.isa)
3856 && (opts->micromips == 1
3857 || opts->mips16 == 1))
3858 as_fatal (_("`%s' can not be used with `%s'"),
3859 opts->micromips ? "micromips" : "mips16",
3860 mips_cpu_info_from_isa (mips_opts.isa)->name);
3861
3862 if (ISA_IS_R6 (opts->isa) && mips_relax_branch)
3863 as_fatal (_("branch relaxation is not supported in `%s'"),
3864 mips_cpu_info_from_isa (opts->isa)->name);
919731af 3865}
3866
3867/* Perform consistency checks on the module level options exactly once.
3868 This is a deferred check that happens:
3869 at the first .set directive
3870 or, at the first pseudo op that generates code (inc .dc.a)
3871 or, at the first instruction
3872 or, at the end. */
3873
3874static void
3875file_mips_check_options (void)
3876{
3877 const struct mips_cpu_info *arch_info = 0;
3878
3879 if (file_mips_opts_checked)
3880 return;
3881
3882 /* The following code determines the register size.
3883 Similar code was added to GCC 3.3 (see override_options() in
3884 config/mips/mips.c). The GAS and GCC code should be kept in sync
3885 as much as possible. */
3886
3887 if (file_mips_opts.gp < 0)
3888 {
3889 /* Infer the integer register size from the ABI and processor.
3890 Restrict ourselves to 32-bit registers if that's all the
3891 processor has, or if the ABI cannot handle 64-bit registers. */
3892 file_mips_opts.gp = (ABI_NEEDS_32BIT_REGS (mips_abi)
3893 || !ISA_HAS_64BIT_REGS (file_mips_opts.isa))
3894 ? 32 : 64;
3895 }
3896
3897 if (file_mips_opts.fp < 0)
3898 {
3899 /* No user specified float register size.
3900 ??? GAS treats single-float processors as though they had 64-bit
3901 float registers (although it complains when double-precision
3902 instructions are used). As things stand, saying they have 32-bit
3903 registers would lead to spurious "register must be even" messages.
3904 So here we assume float registers are never smaller than the
3905 integer ones. */
3906 if (file_mips_opts.gp == 64)
3907 /* 64-bit integer registers implies 64-bit float registers. */
3908 file_mips_opts.fp = 64;
3909 else if ((file_mips_opts.ase & FP64_ASES)
3910 && ISA_HAS_64BIT_FPRS (file_mips_opts.isa))
3911 /* Handle ASEs that require 64-bit float registers, if possible. */
3912 file_mips_opts.fp = 64;
7361da2c
AB
3913 else if (ISA_IS_R6 (mips_opts.isa))
3914 /* R6 implies 64-bit float registers. */
3915 file_mips_opts.fp = 64;
919731af 3916 else
3917 /* 32-bit float registers. */
3918 file_mips_opts.fp = 32;
3919 }
3920
3921 arch_info = mips_cpu_info_from_arch (file_mips_opts.arch);
3922
351cdf24
MF
3923 /* Disable operations on odd-numbered floating-point registers by default
3924 when using the FPXX ABI. */
3925 if (file_mips_opts.oddspreg < 0)
3926 {
3927 if (file_mips_opts.fp == 0)
3928 file_mips_opts.oddspreg = 0;
3929 else
3930 file_mips_opts.oddspreg = 1;
3931 }
3932
919731af 3933 /* End of GCC-shared inference code. */
3934
3935 /* This flag is set when we have a 64-bit capable CPU but use only
3936 32-bit wide registers. Note that EABI does not use it. */
3937 if (ISA_HAS_64BIT_REGS (file_mips_opts.isa)
3938 && ((mips_abi == NO_ABI && file_mips_opts.gp == 32)
3939 || mips_abi == O32_ABI))
3940 mips_32bitmode = 1;
3941
3942 if (file_mips_opts.isa == ISA_MIPS1 && mips_trap)
3943 as_bad (_("trap exception not supported at ISA 1"));
3944
3945 /* If the selected architecture includes support for ASEs, enable
3946 generation of code for them. */
3947 if (file_mips_opts.mips16 == -1)
3948 file_mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_opts.arch)) ? 1 : 0;
3949 if (file_mips_opts.micromips == -1)
3950 file_mips_opts.micromips = (CPU_HAS_MICROMIPS (file_mips_opts.arch))
3951 ? 1 : 0;
3952
7361da2c
AB
3953 if (mips_nan2008 == -1)
3954 mips_nan2008 = (ISA_HAS_LEGACY_NAN (file_mips_opts.isa)) ? 0 : 1;
3955 else if (!ISA_HAS_LEGACY_NAN (file_mips_opts.isa) && mips_nan2008 == 0)
3956 as_fatal (_("`%s' does not support legacy NaN"),
3957 mips_cpu_info_from_arch (file_mips_opts.arch)->name);
3958
919731af 3959 /* Some ASEs require 64-bit FPRs, so -mfp32 should stop those ASEs from
3960 being selected implicitly. */
3961 if (file_mips_opts.fp != 64)
3962 file_ase_explicit |= ASE_MIPS3D | ASE_MDMX | ASE_MSA;
3963
3964 /* If the user didn't explicitly select or deselect a particular ASE,
3965 use the default setting for the CPU. */
3966 file_mips_opts.ase |= (arch_info->ase & ~file_ase_explicit);
3967
3968 /* Set up the current options. These may change throughout assembly. */
3969 mips_opts = file_mips_opts;
3970
3971 mips_check_isa_supports_ases ();
3972 mips_check_options (&file_mips_opts, TRUE);
3973 file_mips_opts_checked = TRUE;
3974
3975 if (!bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_opts.arch))
3976 as_warn (_("could not set architecture and machine"));
3977}
3978
252b5132 3979void
17a2f251 3980md_assemble (char *str)
252b5132
RH
3981{
3982 struct mips_cl_insn insn;
f6688943
TS
3983 bfd_reloc_code_real_type unused_reloc[3]
3984 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 3985
919731af 3986 file_mips_check_options ();
3987
252b5132 3988 imm_expr.X_op = O_absent;
252b5132 3989 offset_expr.X_op = O_absent;
f6688943
TS
3990 offset_reloc[0] = BFD_RELOC_UNUSED;
3991 offset_reloc[1] = BFD_RELOC_UNUSED;
3992 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132 3993
e1b47bd5
RS
3994 mips_mark_labels ();
3995 mips_assembling_insn = TRUE;
e3de51ce 3996 clear_insn_error ();
e1b47bd5 3997
252b5132
RH
3998 if (mips_opts.mips16)
3999 mips16_ip (str, &insn);
4000 else
4001 {
4002 mips_ip (str, &insn);
beae10d5
KH
4003 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
4004 str, insn.insn_opcode));
252b5132
RH
4005 }
4006
e3de51ce
RS
4007 if (insn_error.msg)
4008 report_insn_error (str);
e1b47bd5 4009 else if (insn.insn_mo->pinfo == INSN_MACRO)
252b5132 4010 {
584892a6 4011 macro_start ();
252b5132
RH
4012 if (mips_opts.mips16)
4013 mips16_macro (&insn);
4014 else
833794fc 4015 macro (&insn, str);
584892a6 4016 macro_end ();
252b5132
RH
4017 }
4018 else
4019 {
77bd4346 4020 if (offset_expr.X_op != O_absent)
df58fc94 4021 append_insn (&insn, &offset_expr, offset_reloc, FALSE);
252b5132 4022 else
df58fc94 4023 append_insn (&insn, NULL, unused_reloc, FALSE);
252b5132 4024 }
e1b47bd5
RS
4025
4026 mips_assembling_insn = FALSE;
252b5132
RH
4027}
4028
738e5348
RS
4029/* Convenience functions for abstracting away the differences between
4030 MIPS16 and non-MIPS16 relocations. */
4031
4032static inline bfd_boolean
4033mips16_reloc_p (bfd_reloc_code_real_type reloc)
4034{
4035 switch (reloc)
4036 {
4037 case BFD_RELOC_MIPS16_JMP:
4038 case BFD_RELOC_MIPS16_GPREL:
4039 case BFD_RELOC_MIPS16_GOT16:
4040 case BFD_RELOC_MIPS16_CALL16:
4041 case BFD_RELOC_MIPS16_HI16_S:
4042 case BFD_RELOC_MIPS16_HI16:
4043 case BFD_RELOC_MIPS16_LO16:
4044 return TRUE;
4045
4046 default:
4047 return FALSE;
4048 }
4049}
4050
df58fc94
RS
4051static inline bfd_boolean
4052micromips_reloc_p (bfd_reloc_code_real_type reloc)
4053{
4054 switch (reloc)
4055 {
4056 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
4057 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
4058 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
4059 case BFD_RELOC_MICROMIPS_GPREL16:
4060 case BFD_RELOC_MICROMIPS_JMP:
4061 case BFD_RELOC_MICROMIPS_HI16:
4062 case BFD_RELOC_MICROMIPS_HI16_S:
4063 case BFD_RELOC_MICROMIPS_LO16:
4064 case BFD_RELOC_MICROMIPS_LITERAL:
4065 case BFD_RELOC_MICROMIPS_GOT16:
4066 case BFD_RELOC_MICROMIPS_CALL16:
4067 case BFD_RELOC_MICROMIPS_GOT_HI16:
4068 case BFD_RELOC_MICROMIPS_GOT_LO16:
4069 case BFD_RELOC_MICROMIPS_CALL_HI16:
4070 case BFD_RELOC_MICROMIPS_CALL_LO16:
4071 case BFD_RELOC_MICROMIPS_SUB:
4072 case BFD_RELOC_MICROMIPS_GOT_PAGE:
4073 case BFD_RELOC_MICROMIPS_GOT_OFST:
4074 case BFD_RELOC_MICROMIPS_GOT_DISP:
4075 case BFD_RELOC_MICROMIPS_HIGHEST:
4076 case BFD_RELOC_MICROMIPS_HIGHER:
4077 case BFD_RELOC_MICROMIPS_SCN_DISP:
4078 case BFD_RELOC_MICROMIPS_JALR:
4079 return TRUE;
4080
4081 default:
4082 return FALSE;
4083 }
4084}
4085
2309ddf2
MR
4086static inline bfd_boolean
4087jmp_reloc_p (bfd_reloc_code_real_type reloc)
4088{
4089 return reloc == BFD_RELOC_MIPS_JMP || reloc == BFD_RELOC_MICROMIPS_JMP;
4090}
4091
738e5348
RS
4092static inline bfd_boolean
4093got16_reloc_p (bfd_reloc_code_real_type reloc)
4094{
2309ddf2 4095 return (reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16
df58fc94 4096 || reloc == BFD_RELOC_MICROMIPS_GOT16);
738e5348
RS
4097}
4098
4099static inline bfd_boolean
4100hi16_reloc_p (bfd_reloc_code_real_type reloc)
4101{
2309ddf2 4102 return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S
df58fc94 4103 || reloc == BFD_RELOC_MICROMIPS_HI16_S);
738e5348
RS
4104}
4105
4106static inline bfd_boolean
4107lo16_reloc_p (bfd_reloc_code_real_type reloc)
4108{
2309ddf2 4109 return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16
df58fc94
RS
4110 || reloc == BFD_RELOC_MICROMIPS_LO16);
4111}
4112
df58fc94
RS
4113static inline bfd_boolean
4114jalr_reloc_p (bfd_reloc_code_real_type reloc)
4115{
2309ddf2 4116 return reloc == BFD_RELOC_MIPS_JALR || reloc == BFD_RELOC_MICROMIPS_JALR;
738e5348
RS
4117}
4118
f2ae14a1
RS
4119static inline bfd_boolean
4120gprel16_reloc_p (bfd_reloc_code_real_type reloc)
4121{
4122 return (reloc == BFD_RELOC_GPREL16 || reloc == BFD_RELOC_MIPS16_GPREL
4123 || reloc == BFD_RELOC_MICROMIPS_GPREL16);
4124}
4125
2de39019
CM
4126/* Return true if RELOC is a PC-relative relocation that does not have
4127 full address range. */
4128
4129static inline bfd_boolean
4130limited_pcrel_reloc_p (bfd_reloc_code_real_type reloc)
4131{
4132 switch (reloc)
4133 {
4134 case BFD_RELOC_16_PCREL_S2:
4135 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
4136 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
4137 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
7361da2c
AB
4138 case BFD_RELOC_MIPS_21_PCREL_S2:
4139 case BFD_RELOC_MIPS_26_PCREL_S2:
4140 case BFD_RELOC_MIPS_18_PCREL_S3:
4141 case BFD_RELOC_MIPS_19_PCREL_S2:
2de39019
CM
4142 return TRUE;
4143
b47468a6 4144 case BFD_RELOC_32_PCREL:
7361da2c
AB
4145 case BFD_RELOC_HI16_S_PCREL:
4146 case BFD_RELOC_LO16_PCREL:
b47468a6
CM
4147 return HAVE_64BIT_ADDRESSES;
4148
2de39019
CM
4149 default:
4150 return FALSE;
4151 }
4152}
b47468a6 4153
5919d012 4154/* Return true if the given relocation might need a matching %lo().
0a44bf69
RS
4155 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
4156 need a matching %lo() when applied to local symbols. */
5919d012
RS
4157
4158static inline bfd_boolean
17a2f251 4159reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
5919d012 4160{
3b91255e 4161 return (HAVE_IN_PLACE_ADDENDS
738e5348 4162 && (hi16_reloc_p (reloc)
0a44bf69
RS
4163 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
4164 all GOT16 relocations evaluate to "G". */
738e5348
RS
4165 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
4166}
4167
4168/* Return the type of %lo() reloc needed by RELOC, given that
4169 reloc_needs_lo_p. */
4170
4171static inline bfd_reloc_code_real_type
4172matching_lo_reloc (bfd_reloc_code_real_type reloc)
4173{
df58fc94
RS
4174 return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16
4175 : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16
4176 : BFD_RELOC_LO16));
5919d012
RS
4177}
4178
4179/* Return true if the given fixup is followed by a matching R_MIPS_LO16
4180 relocation. */
4181
4182static inline bfd_boolean
17a2f251 4183fixup_has_matching_lo_p (fixS *fixp)
5919d012
RS
4184{
4185 return (fixp->fx_next != NULL
738e5348 4186 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
5919d012
RS
4187 && fixp->fx_addsy == fixp->fx_next->fx_addsy
4188 && fixp->fx_offset == fixp->fx_next->fx_offset);
4189}
4190
462427c4
RS
4191/* Move all labels in LABELS to the current insertion point. TEXT_P
4192 says whether the labels refer to text or data. */
404a8071
RS
4193
4194static void
462427c4 4195mips_move_labels (struct insn_label_list *labels, bfd_boolean text_p)
404a8071
RS
4196{
4197 struct insn_label_list *l;
4198 valueT val;
4199
462427c4 4200 for (l = labels; l != NULL; l = l->next)
404a8071 4201 {
9c2799c2 4202 gas_assert (S_GET_SEGMENT (l->label) == now_seg);
404a8071
RS
4203 symbol_set_frag (l->label, frag_now);
4204 val = (valueT) frag_now_fix ();
df58fc94 4205 /* MIPS16/microMIPS text labels are stored as odd. */
462427c4 4206 if (text_p && HAVE_CODE_COMPRESSION)
404a8071
RS
4207 ++val;
4208 S_SET_VALUE (l->label, val);
4209 }
4210}
4211
462427c4
RS
4212/* Move all labels in insn_labels to the current insertion point
4213 and treat them as text labels. */
4214
4215static void
4216mips_move_text_labels (void)
4217{
4218 mips_move_labels (seg_info (now_seg)->label_list, TRUE);
4219}
4220
5f0fe04b
TS
4221static bfd_boolean
4222s_is_linkonce (symbolS *sym, segT from_seg)
4223{
4224 bfd_boolean linkonce = FALSE;
4225 segT symseg = S_GET_SEGMENT (sym);
4226
4227 if (symseg != from_seg && !S_IS_LOCAL (sym))
4228 {
4229 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
4230 linkonce = TRUE;
5f0fe04b
TS
4231 /* The GNU toolchain uses an extension for ELF: a section
4232 beginning with the magic string .gnu.linkonce is a
4233 linkonce section. */
4234 if (strncmp (segment_name (symseg), ".gnu.linkonce",
4235 sizeof ".gnu.linkonce" - 1) == 0)
4236 linkonce = TRUE;
5f0fe04b
TS
4237 }
4238 return linkonce;
4239}
4240
e1b47bd5 4241/* Mark MIPS16 or microMIPS instruction label LABEL. This permits the
df58fc94
RS
4242 linker to handle them specially, such as generating jalx instructions
4243 when needed. We also make them odd for the duration of the assembly,
4244 in order to generate the right sort of code. We will make them even
252b5132
RH
4245 in the adjust_symtab routine, while leaving them marked. This is
4246 convenient for the debugger and the disassembler. The linker knows
4247 to make them odd again. */
4248
4249static void
e1b47bd5 4250mips_compressed_mark_label (symbolS *label)
252b5132 4251{
df58fc94 4252 gas_assert (HAVE_CODE_COMPRESSION);
a8dbcb85 4253
f3ded42a
RS
4254 if (mips_opts.mips16)
4255 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
4256 else
4257 S_SET_OTHER (label, ELF_ST_SET_MICROMIPS (S_GET_OTHER (label)));
e1b47bd5
RS
4258 if ((S_GET_VALUE (label) & 1) == 0
4259 /* Don't adjust the address if the label is global or weak, or
4260 in a link-once section, since we'll be emitting symbol reloc
4261 references to it which will be patched up by the linker, and
4262 the final value of the symbol may or may not be MIPS16/microMIPS. */
4263 && !S_IS_WEAK (label)
4264 && !S_IS_EXTERNAL (label)
4265 && !s_is_linkonce (label, now_seg))
4266 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
4267}
4268
4269/* Mark preceding MIPS16 or microMIPS instruction labels. */
4270
4271static void
4272mips_compressed_mark_labels (void)
4273{
4274 struct insn_label_list *l;
4275
4276 for (l = seg_info (now_seg)->label_list; l != NULL; l = l->next)
4277 mips_compressed_mark_label (l->label);
252b5132
RH
4278}
4279
4d7206a2
RS
4280/* End the current frag. Make it a variant frag and record the
4281 relaxation info. */
4282
4283static void
4284relax_close_frag (void)
4285{
584892a6 4286 mips_macro_warning.first_frag = frag_now;
4d7206a2 4287 frag_var (rs_machine_dependent, 0, 0,
584892a6 4288 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
4d7206a2
RS
4289 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
4290
4291 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
4292 mips_relax.first_fixup = 0;
4293}
4294
4295/* Start a new relaxation sequence whose expansion depends on SYMBOL.
4296 See the comment above RELAX_ENCODE for more details. */
4297
4298static void
4299relax_start (symbolS *symbol)
4300{
9c2799c2 4301 gas_assert (mips_relax.sequence == 0);
4d7206a2
RS
4302 mips_relax.sequence = 1;
4303 mips_relax.symbol = symbol;
4304}
4305
4306/* Start generating the second version of a relaxable sequence.
4307 See the comment above RELAX_ENCODE for more details. */
252b5132
RH
4308
4309static void
4d7206a2
RS
4310relax_switch (void)
4311{
9c2799c2 4312 gas_assert (mips_relax.sequence == 1);
4d7206a2
RS
4313 mips_relax.sequence = 2;
4314}
4315
4316/* End the current relaxable sequence. */
4317
4318static void
4319relax_end (void)
4320{
9c2799c2 4321 gas_assert (mips_relax.sequence == 2);
4d7206a2
RS
4322 relax_close_frag ();
4323 mips_relax.sequence = 0;
4324}
4325
11625dd8
RS
4326/* Return true if IP is a delayed branch or jump. */
4327
4328static inline bfd_boolean
4329delayed_branch_p (const struct mips_cl_insn *ip)
4330{
4331 return (ip->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
4332 | INSN_COND_BRANCH_DELAY
4333 | INSN_COND_BRANCH_LIKELY)) != 0;
4334}
4335
4336/* Return true if IP is a compact branch or jump. */
4337
4338static inline bfd_boolean
4339compact_branch_p (const struct mips_cl_insn *ip)
4340{
26545944
RS
4341 return (ip->insn_mo->pinfo2 & (INSN2_UNCOND_BRANCH
4342 | INSN2_COND_BRANCH)) != 0;
11625dd8
RS
4343}
4344
4345/* Return true if IP is an unconditional branch or jump. */
4346
4347static inline bfd_boolean
4348uncond_branch_p (const struct mips_cl_insn *ip)
4349{
4350 return ((ip->insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY) != 0
26545944 4351 || (ip->insn_mo->pinfo2 & INSN2_UNCOND_BRANCH) != 0);
11625dd8
RS
4352}
4353
4354/* Return true if IP is a branch-likely instruction. */
4355
4356static inline bfd_boolean
4357branch_likely_p (const struct mips_cl_insn *ip)
4358{
4359 return (ip->insn_mo->pinfo & INSN_COND_BRANCH_LIKELY) != 0;
4360}
4361
14fe068b
RS
4362/* Return the type of nop that should be used to fill the delay slot
4363 of delayed branch IP. */
4364
4365static struct mips_cl_insn *
4366get_delay_slot_nop (const struct mips_cl_insn *ip)
4367{
4368 if (mips_opts.micromips
4369 && (ip->insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
4370 return &micromips_nop32_insn;
4371 return NOP_INSN;
4372}
4373
fc76e730
RS
4374/* Return a mask that has bit N set if OPCODE reads the register(s)
4375 in operand N. */
df58fc94
RS
4376
4377static unsigned int
fc76e730 4378insn_read_mask (const struct mips_opcode *opcode)
df58fc94 4379{
fc76e730
RS
4380 return (opcode->pinfo & INSN_READ_ALL) >> INSN_READ_SHIFT;
4381}
df58fc94 4382
fc76e730
RS
4383/* Return a mask that has bit N set if OPCODE writes to the register(s)
4384 in operand N. */
4385
4386static unsigned int
4387insn_write_mask (const struct mips_opcode *opcode)
4388{
4389 return (opcode->pinfo & INSN_WRITE_ALL) >> INSN_WRITE_SHIFT;
4390}
4391
4392/* Return a mask of the registers specified by operand OPERAND of INSN.
4393 Ignore registers of type OP_REG_<t> unless bit OP_REG_<t> of TYPE_MASK
4394 is set. */
4395
4396static unsigned int
4397operand_reg_mask (const struct mips_cl_insn *insn,
4398 const struct mips_operand *operand,
4399 unsigned int type_mask)
4400{
4401 unsigned int uval, vsel;
4402
4403 switch (operand->type)
df58fc94 4404 {
fc76e730
RS
4405 case OP_INT:
4406 case OP_MAPPED_INT:
4407 case OP_MSB:
4408 case OP_PCREL:
4409 case OP_PERF_REG:
4410 case OP_ADDIUSP_INT:
4411 case OP_ENTRY_EXIT_LIST:
4412 case OP_REPEAT_DEST_REG:
4413 case OP_REPEAT_PREV_REG:
4414 case OP_PC:
14daeee3
RS
4415 case OP_VU0_SUFFIX:
4416 case OP_VU0_MATCH_SUFFIX:
56d438b1 4417 case OP_IMM_INDEX:
fc76e730
RS
4418 abort ();
4419
4420 case OP_REG:
0f35dbc4 4421 case OP_OPTIONAL_REG:
fc76e730
RS
4422 {
4423 const struct mips_reg_operand *reg_op;
4424
4425 reg_op = (const struct mips_reg_operand *) operand;
4426 if (!(type_mask & (1 << reg_op->reg_type)))
4427 return 0;
4428 uval = insn_extract_operand (insn, operand);
4429 return 1 << mips_decode_reg_operand (reg_op, uval);
4430 }
4431
4432 case OP_REG_PAIR:
4433 {
4434 const struct mips_reg_pair_operand *pair_op;
4435
4436 pair_op = (const struct mips_reg_pair_operand *) operand;
4437 if (!(type_mask & (1 << pair_op->reg_type)))
4438 return 0;
4439 uval = insn_extract_operand (insn, operand);
4440 return (1 << pair_op->reg1_map[uval]) | (1 << pair_op->reg2_map[uval]);
4441 }
4442
4443 case OP_CLO_CLZ_DEST:
4444 if (!(type_mask & (1 << OP_REG_GP)))
4445 return 0;
4446 uval = insn_extract_operand (insn, operand);
4447 return (1 << (uval & 31)) | (1 << (uval >> 5));
4448
7361da2c
AB
4449 case OP_SAME_RS_RT:
4450 if (!(type_mask & (1 << OP_REG_GP)))
4451 return 0;
4452 uval = insn_extract_operand (insn, operand);
4453 gas_assert ((uval & 31) == (uval >> 5));
4454 return 1 << (uval & 31);
4455
4456 case OP_CHECK_PREV:
4457 case OP_NON_ZERO_REG:
4458 if (!(type_mask & (1 << OP_REG_GP)))
4459 return 0;
4460 uval = insn_extract_operand (insn, operand);
4461 return 1 << (uval & 31);
4462
fc76e730
RS
4463 case OP_LWM_SWM_LIST:
4464 abort ();
4465
4466 case OP_SAVE_RESTORE_LIST:
4467 abort ();
4468
4469 case OP_MDMX_IMM_REG:
4470 if (!(type_mask & (1 << OP_REG_VEC)))
4471 return 0;
4472 uval = insn_extract_operand (insn, operand);
4473 vsel = uval >> 5;
4474 if ((vsel & 0x18) == 0x18)
4475 return 0;
4476 return 1 << (uval & 31);
56d438b1
CF
4477
4478 case OP_REG_INDEX:
4479 if (!(type_mask & (1 << OP_REG_GP)))
4480 return 0;
4481 return 1 << insn_extract_operand (insn, operand);
df58fc94 4482 }
fc76e730
RS
4483 abort ();
4484}
4485
4486/* Return a mask of the registers specified by operands OPNO_MASK of INSN,
4487 where bit N of OPNO_MASK is set if operand N should be included.
4488 Ignore registers of type OP_REG_<t> unless bit OP_REG_<t> of TYPE_MASK
4489 is set. */
4490
4491static unsigned int
4492insn_reg_mask (const struct mips_cl_insn *insn,
4493 unsigned int type_mask, unsigned int opno_mask)
4494{
4495 unsigned int opno, reg_mask;
4496
4497 opno = 0;
4498 reg_mask = 0;
4499 while (opno_mask != 0)
4500 {
4501 if (opno_mask & 1)
4502 reg_mask |= operand_reg_mask (insn, insn_opno (insn, opno), type_mask);
4503 opno_mask >>= 1;
4504 opno += 1;
4505 }
4506 return reg_mask;
df58fc94
RS
4507}
4508
4c260379
RS
4509/* Return the mask of core registers that IP reads. */
4510
4511static unsigned int
4512gpr_read_mask (const struct mips_cl_insn *ip)
4513{
4514 unsigned long pinfo, pinfo2;
4515 unsigned int mask;
4516
fc76e730 4517 mask = insn_reg_mask (ip, 1 << OP_REG_GP, insn_read_mask (ip->insn_mo));
4c260379
RS
4518 pinfo = ip->insn_mo->pinfo;
4519 pinfo2 = ip->insn_mo->pinfo2;
fc76e730 4520 if (pinfo & INSN_UDI)
4c260379 4521 {
fc76e730
RS
4522 /* UDI instructions have traditionally been assumed to read RS
4523 and RT. */
4524 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
4525 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
4c260379 4526 }
fc76e730
RS
4527 if (pinfo & INSN_READ_GPR_24)
4528 mask |= 1 << 24;
4529 if (pinfo2 & INSN2_READ_GPR_16)
4530 mask |= 1 << 16;
4531 if (pinfo2 & INSN2_READ_SP)
4532 mask |= 1 << SP;
26545944 4533 if (pinfo2 & INSN2_READ_GPR_31)
fc76e730 4534 mask |= 1 << 31;
fe35f09f
RS
4535 /* Don't include register 0. */
4536 return mask & ~1;
4c260379
RS
4537}
4538
4539/* Return the mask of core registers that IP writes. */
4540
4541static unsigned int
4542gpr_write_mask (const struct mips_cl_insn *ip)
4543{
4544 unsigned long pinfo, pinfo2;
4545 unsigned int mask;
4546
fc76e730 4547 mask = insn_reg_mask (ip, 1 << OP_REG_GP, insn_write_mask (ip->insn_mo));
4c260379
RS
4548 pinfo = ip->insn_mo->pinfo;
4549 pinfo2 = ip->insn_mo->pinfo2;
fc76e730
RS
4550 if (pinfo & INSN_WRITE_GPR_24)
4551 mask |= 1 << 24;
4552 if (pinfo & INSN_WRITE_GPR_31)
4553 mask |= 1 << 31;
4554 if (pinfo & INSN_UDI)
4555 /* UDI instructions have traditionally been assumed to write to RD. */
4556 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
4557 if (pinfo2 & INSN2_WRITE_SP)
4558 mask |= 1 << SP;
fe35f09f
RS
4559 /* Don't include register 0. */
4560 return mask & ~1;
4c260379
RS
4561}
4562
4563/* Return the mask of floating-point registers that IP reads. */
4564
4565static unsigned int
4566fpr_read_mask (const struct mips_cl_insn *ip)
4567{
fc76e730 4568 unsigned long pinfo;
4c260379
RS
4569 unsigned int mask;
4570
9d5de888
CF
4571 mask = insn_reg_mask (ip, ((1 << OP_REG_FP) | (1 << OP_REG_VEC)
4572 | (1 << OP_REG_MSA)),
fc76e730 4573 insn_read_mask (ip->insn_mo));
4c260379 4574 pinfo = ip->insn_mo->pinfo;
4c260379
RS
4575 /* Conservatively treat all operands to an FP_D instruction are doubles.
4576 (This is overly pessimistic for things like cvt.d.s.) */
bad1aba3 4577 if (FPR_SIZE != 64 && (pinfo & FP_D))
4c260379
RS
4578 mask |= mask << 1;
4579 return mask;
4580}
4581
4582/* Return the mask of floating-point registers that IP writes. */
4583
4584static unsigned int
4585fpr_write_mask (const struct mips_cl_insn *ip)
4586{
fc76e730 4587 unsigned long pinfo;
4c260379
RS
4588 unsigned int mask;
4589
9d5de888
CF
4590 mask = insn_reg_mask (ip, ((1 << OP_REG_FP) | (1 << OP_REG_VEC)
4591 | (1 << OP_REG_MSA)),
fc76e730 4592 insn_write_mask (ip->insn_mo));
4c260379 4593 pinfo = ip->insn_mo->pinfo;
4c260379
RS
4594 /* Conservatively treat all operands to an FP_D instruction are doubles.
4595 (This is overly pessimistic for things like cvt.s.d.) */
bad1aba3 4596 if (FPR_SIZE != 64 && (pinfo & FP_D))
4c260379
RS
4597 mask |= mask << 1;
4598 return mask;
4599}
4600
a1d78564
RS
4601/* Operand OPNUM of INSN is an odd-numbered floating-point register.
4602 Check whether that is allowed. */
4603
4604static bfd_boolean
4605mips_oddfpreg_ok (const struct mips_opcode *insn, int opnum)
4606{
4607 const char *s = insn->name;
351cdf24
MF
4608 bfd_boolean oddspreg = (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa, mips_opts.arch)
4609 || FPR_SIZE == 64)
4610 && mips_opts.oddspreg;
a1d78564
RS
4611
4612 if (insn->pinfo == INSN_MACRO)
4613 /* Let a macro pass, we'll catch it later when it is expanded. */
4614 return TRUE;
4615
351cdf24
MF
4616 /* Single-precision coprocessor loads and moves are OK for 32-bit registers,
4617 otherwise it depends on oddspreg. */
4618 if ((insn->pinfo & FP_S)
4619 && (insn->pinfo & (INSN_LOAD_MEMORY | INSN_STORE_MEMORY
43885403 4620 | INSN_LOAD_COPROC | INSN_COPROC_MOVE)))
351cdf24 4621 return FPR_SIZE == 32 || oddspreg;
a1d78564 4622
351cdf24
MF
4623 /* Allow odd registers for single-precision ops and double-precision if the
4624 floating-point registers are 64-bit wide. */
4625 switch (insn->pinfo & (FP_S | FP_D))
4626 {
4627 case FP_S:
4628 case 0:
4629 return oddspreg;
4630 case FP_D:
4631 return FPR_SIZE == 64;
4632 default:
4633 break;
a1d78564
RS
4634 }
4635
351cdf24
MF
4636 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
4637 s = strchr (insn->name, '.');
4638 if (s != NULL && opnum == 2)
4639 s = strchr (s + 1, '.');
4640 if (s != NULL && (s[1] == 'w' || s[1] == 's'))
4641 return oddspreg;
a1d78564 4642
351cdf24 4643 return FPR_SIZE == 64;
a1d78564
RS
4644}
4645
a1d78564
RS
4646/* Information about an instruction argument that we're trying to match. */
4647struct mips_arg_info
4648{
4649 /* The instruction so far. */
4650 struct mips_cl_insn *insn;
4651
a92713e6
RS
4652 /* The first unconsumed operand token. */
4653 struct mips_operand_token *token;
4654
a1d78564
RS
4655 /* The 1-based operand number, in terms of insn->insn_mo->args. */
4656 int opnum;
4657
4658 /* The 1-based argument number, for error reporting. This does not
4659 count elided optional registers, etc.. */
4660 int argnum;
4661
4662 /* The last OP_REG operand seen, or ILLEGAL_REG if none. */
4663 unsigned int last_regno;
4664
4665 /* If the first operand was an OP_REG, this is the register that it
4666 specified, otherwise it is ILLEGAL_REG. */
4667 unsigned int dest_regno;
4668
4669 /* The value of the last OP_INT operand. Only used for OP_MSB,
4670 where it gives the lsb position. */
4671 unsigned int last_op_int;
4672
60f20e8b
RS
4673 /* If true, match routines should assume that no later instruction
4674 alternative matches and should therefore be as accomodating as
4675 possible. Match routines should not report errors if something
4676 is only invalid for !LAX_MATCH. */
4677 bfd_boolean lax_match;
a1d78564 4678
a1d78564
RS
4679 /* True if a reference to the current AT register was seen. */
4680 bfd_boolean seen_at;
4681};
4682
1a00e612
RS
4683/* Record that the argument is out of range. */
4684
4685static void
4686match_out_of_range (struct mips_arg_info *arg)
4687{
4688 set_insn_error_i (arg->argnum, _("operand %d out of range"), arg->argnum);
4689}
4690
4691/* Record that the argument isn't constant but needs to be. */
4692
4693static void
4694match_not_constant (struct mips_arg_info *arg)
4695{
4696 set_insn_error_i (arg->argnum, _("operand %d must be constant"),
4697 arg->argnum);
4698}
4699
a92713e6
RS
4700/* Try to match an OT_CHAR token for character CH. Consume the token
4701 and return true on success, otherwise return false. */
a1d78564 4702
a92713e6
RS
4703static bfd_boolean
4704match_char (struct mips_arg_info *arg, char ch)
a1d78564 4705{
a92713e6
RS
4706 if (arg->token->type == OT_CHAR && arg->token->u.ch == ch)
4707 {
4708 ++arg->token;
4709 if (ch == ',')
4710 arg->argnum += 1;
4711 return TRUE;
4712 }
4713 return FALSE;
4714}
a1d78564 4715
a92713e6
RS
4716/* Try to get an expression from the next tokens in ARG. Consume the
4717 tokens and return true on success, storing the expression value in
4718 VALUE and relocation types in R. */
4719
4720static bfd_boolean
4721match_expression (struct mips_arg_info *arg, expressionS *value,
4722 bfd_reloc_code_real_type *r)
4723{
d436c1c2
RS
4724 /* If the next token is a '(' that was parsed as being part of a base
4725 expression, assume we have an elided offset. The later match will fail
4726 if this turns out to be wrong. */
4727 if (arg->token->type == OT_CHAR && arg->token->u.ch == '(')
a1d78564 4728 {
d436c1c2
RS
4729 value->X_op = O_constant;
4730 value->X_add_number = 0;
4731 r[0] = r[1] = r[2] = BFD_RELOC_UNUSED;
a92713e6
RS
4732 return TRUE;
4733 }
4734
d436c1c2
RS
4735 /* Reject register-based expressions such as "0+$2" and "(($2))".
4736 For plain registers the default error seems more appropriate. */
4737 if (arg->token->type == OT_INTEGER
4738 && arg->token->u.integer.value.X_op == O_register)
a92713e6 4739 {
d436c1c2
RS
4740 set_insn_error (arg->argnum, _("register value used as expression"));
4741 return FALSE;
a1d78564 4742 }
d436c1c2
RS
4743
4744 if (arg->token->type == OT_INTEGER)
a92713e6 4745 {
d436c1c2
RS
4746 *value = arg->token->u.integer.value;
4747 memcpy (r, arg->token->u.integer.relocs, 3 * sizeof (*r));
4748 ++arg->token;
4749 return TRUE;
a92713e6 4750 }
a92713e6 4751
d436c1c2
RS
4752 set_insn_error_i
4753 (arg->argnum, _("operand %d must be an immediate expression"),
4754 arg->argnum);
4755 return FALSE;
a92713e6
RS
4756}
4757
4758/* Try to get a constant expression from the next tokens in ARG. Consume
4759 the tokens and return return true on success, storing the constant value
4760 in *VALUE. Use FALLBACK as the value if the match succeeded with an
4761 error. */
4762
4763static bfd_boolean
1a00e612 4764match_const_int (struct mips_arg_info *arg, offsetT *value)
a92713e6
RS
4765{
4766 expressionS ex;
4767 bfd_reloc_code_real_type r[3];
a1d78564 4768
a92713e6
RS
4769 if (!match_expression (arg, &ex, r))
4770 return FALSE;
4771
4772 if (r[0] == BFD_RELOC_UNUSED && ex.X_op == O_constant)
a1d78564
RS
4773 *value = ex.X_add_number;
4774 else
4775 {
1a00e612
RS
4776 match_not_constant (arg);
4777 return FALSE;
a1d78564 4778 }
a92713e6 4779 return TRUE;
a1d78564
RS
4780}
4781
4782/* Return the RTYPE_* flags for a register operand of type TYPE that
4783 appears in instruction OPCODE. */
4784
4785static unsigned int
4786convert_reg_type (const struct mips_opcode *opcode,
4787 enum mips_reg_operand_type type)
4788{
4789 switch (type)
4790 {
4791 case OP_REG_GP:
4792 return RTYPE_NUM | RTYPE_GP;
4793
4794 case OP_REG_FP:
4795 /* Allow vector register names for MDMX if the instruction is a 64-bit
4796 FPR load, store or move (including moves to and from GPRs). */
4797 if ((mips_opts.ase & ASE_MDMX)
4798 && (opcode->pinfo & FP_D)
43885403 4799 && (opcode->pinfo & (INSN_COPROC_MOVE
a1d78564 4800 | INSN_COPROC_MEMORY_DELAY
43885403 4801 | INSN_LOAD_COPROC
67dc82bc 4802 | INSN_LOAD_MEMORY
a1d78564
RS
4803 | INSN_STORE_MEMORY)))
4804 return RTYPE_FPU | RTYPE_VEC;
4805 return RTYPE_FPU;
4806
4807 case OP_REG_CCC:
4808 if (opcode->pinfo & (FP_D | FP_S))
4809 return RTYPE_CCC | RTYPE_FCC;
4810 return RTYPE_CCC;
4811
4812 case OP_REG_VEC:
4813 if (opcode->membership & INSN_5400)
4814 return RTYPE_FPU;
4815 return RTYPE_FPU | RTYPE_VEC;
4816
4817 case OP_REG_ACC:
4818 return RTYPE_ACC;
4819
4820 case OP_REG_COPRO:
4821 if (opcode->name[strlen (opcode->name) - 1] == '0')
4822 return RTYPE_NUM | RTYPE_CP0;
4823 return RTYPE_NUM;
4824
4825 case OP_REG_HW:
4826 return RTYPE_NUM;
14daeee3
RS
4827
4828 case OP_REG_VI:
4829 return RTYPE_NUM | RTYPE_VI;
4830
4831 case OP_REG_VF:
4832 return RTYPE_NUM | RTYPE_VF;
4833
4834 case OP_REG_R5900_I:
4835 return RTYPE_R5900_I;
4836
4837 case OP_REG_R5900_Q:
4838 return RTYPE_R5900_Q;
4839
4840 case OP_REG_R5900_R:
4841 return RTYPE_R5900_R;
4842
4843 case OP_REG_R5900_ACC:
4844 return RTYPE_R5900_ACC;
56d438b1
CF
4845
4846 case OP_REG_MSA:
4847 return RTYPE_MSA;
4848
4849 case OP_REG_MSA_CTRL:
4850 return RTYPE_NUM;
a1d78564
RS
4851 }
4852 abort ();
4853}
4854
4855/* ARG is register REGNO, of type TYPE. Warn about any dubious registers. */
4856
4857static void
4858check_regno (struct mips_arg_info *arg,
4859 enum mips_reg_operand_type type, unsigned int regno)
4860{
4861 if (AT && type == OP_REG_GP && regno == AT)
4862 arg->seen_at = TRUE;
4863
4864 if (type == OP_REG_FP
4865 && (regno & 1) != 0
a1d78564 4866 && !mips_oddfpreg_ok (arg->insn->insn_mo, arg->opnum))
351cdf24
MF
4867 {
4868 /* This was a warning prior to introducing O32 FPXX and FP64 support
4869 so maintain a warning for FP32 but raise an error for the new
4870 cases. */
4871 if (FPR_SIZE == 32)
4872 as_warn (_("float register should be even, was %d"), regno);
4873 else
4874 as_bad (_("float register should be even, was %d"), regno);
4875 }
a1d78564
RS
4876
4877 if (type == OP_REG_CCC)
4878 {
4879 const char *name;
4880 size_t length;
4881
4882 name = arg->insn->insn_mo->name;
4883 length = strlen (name);
4884 if ((regno & 1) != 0
4885 && ((length >= 3 && strcmp (name + length - 3, ".ps") == 0)
4886 || (length >= 5 && strncmp (name + length - 5, "any2", 4) == 0)))
1661c76c 4887 as_warn (_("condition code register should be even for %s, was %d"),
a1d78564
RS
4888 name, regno);
4889
4890 if ((regno & 3) != 0
4891 && (length >= 5 && strncmp (name + length - 5, "any4", 4) == 0))
1661c76c 4892 as_warn (_("condition code register should be 0 or 4 for %s, was %d"),
a1d78564
RS
4893 name, regno);
4894 }
4895}
4896
a92713e6
RS
4897/* ARG is a register with symbol value SYMVAL. Try to interpret it as
4898 a register of type TYPE. Return true on success, storing the register
4899 number in *REGNO and warning about any dubious uses. */
4900
4901static bfd_boolean
4902match_regno (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4903 unsigned int symval, unsigned int *regno)
4904{
4905 if (type == OP_REG_VEC)
4906 symval = mips_prefer_vec_regno (symval);
4907 if (!(symval & convert_reg_type (arg->insn->insn_mo, type)))
4908 return FALSE;
4909
4910 *regno = symval & RNUM_MASK;
4911 check_regno (arg, type, *regno);
4912 return TRUE;
4913}
4914
4915/* Try to interpret the next token in ARG as a register of type TYPE.
4916 Consume the token and return true on success, storing the register
4917 number in *REGNO. Return false on failure. */
4918
4919static bfd_boolean
4920match_reg (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4921 unsigned int *regno)
4922{
4923 if (arg->token->type == OT_REG
4924 && match_regno (arg, type, arg->token->u.regno, regno))
4925 {
4926 ++arg->token;
4927 return TRUE;
4928 }
4929 return FALSE;
4930}
4931
4932/* Try to interpret the next token in ARG as a range of registers of type TYPE.
4933 Consume the token and return true on success, storing the register numbers
4934 in *REGNO1 and *REGNO2. Return false on failure. */
4935
4936static bfd_boolean
4937match_reg_range (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4938 unsigned int *regno1, unsigned int *regno2)
4939{
4940 if (match_reg (arg, type, regno1))
4941 {
4942 *regno2 = *regno1;
4943 return TRUE;
4944 }
4945 if (arg->token->type == OT_REG_RANGE
4946 && match_regno (arg, type, arg->token->u.reg_range.regno1, regno1)
4947 && match_regno (arg, type, arg->token->u.reg_range.regno2, regno2)
4948 && *regno1 <= *regno2)
4949 {
4950 ++arg->token;
4951 return TRUE;
4952 }
4953 return FALSE;
4954}
4955
a1d78564
RS
4956/* OP_INT matcher. */
4957
a92713e6 4958static bfd_boolean
a1d78564 4959match_int_operand (struct mips_arg_info *arg,
a92713e6 4960 const struct mips_operand *operand_base)
a1d78564
RS
4961{
4962 const struct mips_int_operand *operand;
3ccad066 4963 unsigned int uval;
a1d78564
RS
4964 int min_val, max_val, factor;
4965 offsetT sval;
a1d78564
RS
4966
4967 operand = (const struct mips_int_operand *) operand_base;
4968 factor = 1 << operand->shift;
3ccad066
RS
4969 min_val = mips_int_operand_min (operand);
4970 max_val = mips_int_operand_max (operand);
a1d78564 4971
d436c1c2
RS
4972 if (operand_base->lsb == 0
4973 && operand_base->size == 16
4974 && operand->shift == 0
4975 && operand->bias == 0
4976 && (operand->max_val == 32767 || operand->max_val == 65535))
a1d78564
RS
4977 {
4978 /* The operand can be relocated. */
a92713e6
RS
4979 if (!match_expression (arg, &offset_expr, offset_reloc))
4980 return FALSE;
4981
4982 if (offset_reloc[0] != BFD_RELOC_UNUSED)
a1d78564
RS
4983 /* Relocation operators were used. Accept the arguent and
4984 leave the relocation value in offset_expr and offset_relocs
4985 for the caller to process. */
a92713e6
RS
4986 return TRUE;
4987
4988 if (offset_expr.X_op != O_constant)
a1d78564 4989 {
60f20e8b
RS
4990 /* Accept non-constant operands if no later alternative matches,
4991 leaving it for the caller to process. */
4992 if (!arg->lax_match)
4993 return FALSE;
a92713e6
RS
4994 offset_reloc[0] = BFD_RELOC_LO16;
4995 return TRUE;
a1d78564 4996 }
a92713e6 4997
a1d78564
RS
4998 /* Clear the global state; we're going to install the operand
4999 ourselves. */
a92713e6 5000 sval = offset_expr.X_add_number;
a1d78564 5001 offset_expr.X_op = O_absent;
60f20e8b
RS
5002
5003 /* For compatibility with older assemblers, we accept
5004 0x8000-0xffff as signed 16-bit numbers when only
5005 signed numbers are allowed. */
5006 if (sval > max_val)
5007 {
5008 max_val = ((1 << operand_base->size) - 1) << operand->shift;
5009 if (!arg->lax_match && sval <= max_val)
5010 return FALSE;
5011 }
a1d78564
RS
5012 }
5013 else
5014 {
1a00e612 5015 if (!match_const_int (arg, &sval))
a92713e6 5016 return FALSE;
a1d78564
RS
5017 }
5018
5019 arg->last_op_int = sval;
5020
1a00e612 5021 if (sval < min_val || sval > max_val || sval % factor)
a1d78564 5022 {
1a00e612
RS
5023 match_out_of_range (arg);
5024 return FALSE;
a1d78564
RS
5025 }
5026
5027 uval = (unsigned int) sval >> operand->shift;
5028 uval -= operand->bias;
5029
5030 /* Handle -mfix-cn63xxp1. */
5031 if (arg->opnum == 1
5032 && mips_fix_cn63xxp1
5033 && !mips_opts.micromips
5034 && strcmp ("pref", arg->insn->insn_mo->name) == 0)
5035 switch (uval)
5036 {
5037 case 5:
5038 case 25:
5039 case 26:
5040 case 27:
5041 case 28:
5042 case 29:
5043 case 30:
5044 case 31:
5045 /* These are ok. */
5046 break;
5047
5048 default:
5049 /* The rest must be changed to 28. */
5050 uval = 28;
5051 break;
5052 }
5053
5054 insn_insert_operand (arg->insn, operand_base, uval);
a92713e6 5055 return TRUE;
a1d78564
RS
5056}
5057
5058/* OP_MAPPED_INT matcher. */
5059
a92713e6 5060static bfd_boolean
a1d78564 5061match_mapped_int_operand (struct mips_arg_info *arg,
a92713e6 5062 const struct mips_operand *operand_base)
a1d78564
RS
5063{
5064 const struct mips_mapped_int_operand *operand;
5065 unsigned int uval, num_vals;
5066 offsetT sval;
5067
5068 operand = (const struct mips_mapped_int_operand *) operand_base;
1a00e612 5069 if (!match_const_int (arg, &sval))
a92713e6 5070 return FALSE;
a1d78564
RS
5071
5072 num_vals = 1 << operand_base->size;
5073 for (uval = 0; uval < num_vals; uval++)
5074 if (operand->int_map[uval] == sval)
5075 break;
5076 if (uval == num_vals)
1a00e612
RS
5077 {
5078 match_out_of_range (arg);
5079 return FALSE;
5080 }
a1d78564
RS
5081
5082 insn_insert_operand (arg->insn, operand_base, uval);
a92713e6 5083 return TRUE;
a1d78564
RS
5084}
5085
5086/* OP_MSB matcher. */
5087
a92713e6 5088static bfd_boolean
a1d78564 5089match_msb_operand (struct mips_arg_info *arg,
a92713e6 5090 const struct mips_operand *operand_base)
a1d78564
RS
5091{
5092 const struct mips_msb_operand *operand;
5093 int min_val, max_val, max_high;
5094 offsetT size, sval, high;
5095
5096 operand = (const struct mips_msb_operand *) operand_base;
5097 min_val = operand->bias;
5098 max_val = min_val + (1 << operand_base->size) - 1;
5099 max_high = operand->opsize;
5100
1a00e612 5101 if (!match_const_int (arg, &size))
a92713e6 5102 return FALSE;
a1d78564
RS
5103
5104 high = size + arg->last_op_int;
5105 sval = operand->add_lsb ? high : size;
5106
5107 if (size < 0 || high > max_high || sval < min_val || sval > max_val)
5108 {
1a00e612
RS
5109 match_out_of_range (arg);
5110 return FALSE;
a1d78564
RS
5111 }
5112 insn_insert_operand (arg->insn, operand_base, sval - min_val);
a92713e6 5113 return TRUE;
a1d78564
RS
5114}
5115
5116/* OP_REG matcher. */
5117
a92713e6 5118static bfd_boolean
a1d78564 5119match_reg_operand (struct mips_arg_info *arg,
a92713e6 5120 const struct mips_operand *operand_base)
a1d78564
RS
5121{
5122 const struct mips_reg_operand *operand;
a92713e6 5123 unsigned int regno, uval, num_vals;
a1d78564
RS
5124
5125 operand = (const struct mips_reg_operand *) operand_base;
a92713e6
RS
5126 if (!match_reg (arg, operand->reg_type, &regno))
5127 return FALSE;
a1d78564
RS
5128
5129 if (operand->reg_map)
5130 {
5131 num_vals = 1 << operand->root.size;
5132 for (uval = 0; uval < num_vals; uval++)
5133 if (operand->reg_map[uval] == regno)
5134 break;
5135 if (num_vals == uval)
a92713e6 5136 return FALSE;
a1d78564
RS
5137 }
5138 else
5139 uval = regno;
5140
a1d78564
RS
5141 arg->last_regno = regno;
5142 if (arg->opnum == 1)
5143 arg->dest_regno = regno;
5144 insn_insert_operand (arg->insn, operand_base, uval);
a92713e6 5145 return TRUE;
a1d78564
RS
5146}
5147
5148/* OP_REG_PAIR matcher. */
5149
a92713e6 5150static bfd_boolean
a1d78564 5151match_reg_pair_operand (struct mips_arg_info *arg,
a92713e6 5152 const struct mips_operand *operand_base)
a1d78564
RS
5153{
5154 const struct mips_reg_pair_operand *operand;
a92713e6 5155 unsigned int regno1, regno2, uval, num_vals;
a1d78564
RS
5156
5157 operand = (const struct mips_reg_pair_operand *) operand_base;
a92713e6
RS
5158 if (!match_reg (arg, operand->reg_type, &regno1)
5159 || !match_char (arg, ',')
5160 || !match_reg (arg, operand->reg_type, &regno2))
5161 return FALSE;
a1d78564
RS
5162
5163 num_vals = 1 << operand_base->size;
5164 for (uval = 0; uval < num_vals; uval++)
5165 if (operand->reg1_map[uval] == regno1 && operand->reg2_map[uval] == regno2)
5166 break;
5167 if (uval == num_vals)
a92713e6 5168 return FALSE;
a1d78564 5169
a1d78564 5170 insn_insert_operand (arg->insn, operand_base, uval);
a92713e6 5171 return TRUE;
a1d78564
RS
5172}
5173
5174/* OP_PCREL matcher. The caller chooses the relocation type. */
5175
a92713e6
RS
5176static bfd_boolean
5177match_pcrel_operand (struct mips_arg_info *arg)
a1d78564 5178{
a92713e6
RS
5179 bfd_reloc_code_real_type r[3];
5180
5181 return match_expression (arg, &offset_expr, r) && r[0] == BFD_RELOC_UNUSED;
a1d78564
RS
5182}
5183
5184/* OP_PERF_REG matcher. */
5185
a92713e6 5186static bfd_boolean
a1d78564 5187match_perf_reg_operand (struct mips_arg_info *arg,
a92713e6 5188 const struct mips_operand *operand)
a1d78564
RS
5189{
5190 offsetT sval;
5191
1a00e612 5192 if (!match_const_int (arg, &sval))
a92713e6 5193 return FALSE;
a1d78564
RS
5194
5195 if (sval != 0
5196 && (sval != 1
5197 || (mips_opts.arch == CPU_R5900
5198 && (strcmp (arg->insn->insn_mo->name, "mfps") == 0
5199 || strcmp (arg->insn->insn_mo->name, "mtps") == 0))))
5200 {
1a00e612
RS
5201 set_insn_error (arg->argnum, _("invalid performance register"));
5202 return FALSE;
a1d78564
RS
5203 }
5204
5205 insn_insert_operand (arg->insn, operand, sval);
a92713e6 5206 return TRUE;
a1d78564
RS
5207}
5208
5209/* OP_ADDIUSP matcher. */
5210
a92713e6 5211static bfd_boolean
a1d78564 5212match_addiusp_operand (struct mips_arg_info *arg,
a92713e6 5213 const struct mips_operand *operand)
a1d78564
RS
5214{
5215 offsetT sval;
5216 unsigned int uval;
5217
1a00e612 5218 if (!match_const_int (arg, &sval))
a92713e6 5219 return FALSE;
a1d78564
RS
5220
5221 if (sval % 4)
1a00e612
RS
5222 {
5223 match_out_of_range (arg);
5224 return FALSE;
5225 }
a1d78564
RS
5226
5227 sval /= 4;
5228 if (!(sval >= -258 && sval <= 257) || (sval >= -2 && sval <= 1))
1a00e612
RS
5229 {
5230 match_out_of_range (arg);
5231 return FALSE;
5232 }
a1d78564
RS
5233
5234 uval = (unsigned int) sval;
5235 uval = ((uval >> 1) & ~0xff) | (uval & 0xff);
5236 insn_insert_operand (arg->insn, operand, uval);
a92713e6 5237 return TRUE;
a1d78564
RS
5238}
5239
5240/* OP_CLO_CLZ_DEST matcher. */
5241
a92713e6 5242static bfd_boolean
a1d78564 5243match_clo_clz_dest_operand (struct mips_arg_info *arg,
a92713e6 5244 const struct mips_operand *operand)
a1d78564
RS
5245{
5246 unsigned int regno;
5247
a92713e6
RS
5248 if (!match_reg (arg, OP_REG_GP, &regno))
5249 return FALSE;
a1d78564 5250
a1d78564 5251 insn_insert_operand (arg->insn, operand, regno | (regno << 5));
a92713e6 5252 return TRUE;
a1d78564
RS
5253}
5254
7361da2c
AB
5255/* OP_CHECK_PREV matcher. */
5256
5257static bfd_boolean
5258match_check_prev_operand (struct mips_arg_info *arg,
5259 const struct mips_operand *operand_base)
5260{
5261 const struct mips_check_prev_operand *operand;
5262 unsigned int regno;
5263
5264 operand = (const struct mips_check_prev_operand *) operand_base;
5265
5266 if (!match_reg (arg, OP_REG_GP, &regno))
5267 return FALSE;
5268
5269 if (!operand->zero_ok && regno == 0)
5270 return FALSE;
5271
5272 if ((operand->less_than_ok && regno < arg->last_regno)
5273 || (operand->greater_than_ok && regno > arg->last_regno)
5274 || (operand->equal_ok && regno == arg->last_regno))
5275 {
5276 arg->last_regno = regno;
5277 insn_insert_operand (arg->insn, operand_base, regno);
5278 return TRUE;
5279 }
5280
5281 return FALSE;
5282}
5283
5284/* OP_SAME_RS_RT matcher. */
5285
5286static bfd_boolean
5287match_same_rs_rt_operand (struct mips_arg_info *arg,
5288 const struct mips_operand *operand)
5289{
5290 unsigned int regno;
5291
5292 if (!match_reg (arg, OP_REG_GP, &regno))
5293 return FALSE;
5294
5295 if (regno == 0)
5296 {
5297 set_insn_error (arg->argnum, _("the source register must not be $0"));
5298 return FALSE;
5299 }
5300
5301 arg->last_regno = regno;
5302
5303 insn_insert_operand (arg->insn, operand, regno | (regno << 5));
5304 return TRUE;
5305}
5306
a1d78564
RS
5307/* OP_LWM_SWM_LIST matcher. */
5308
a92713e6 5309static bfd_boolean
a1d78564 5310match_lwm_swm_list_operand (struct mips_arg_info *arg,
a92713e6 5311 const struct mips_operand *operand)
a1d78564 5312{
a92713e6
RS
5313 unsigned int reglist, sregs, ra, regno1, regno2;
5314 struct mips_arg_info reset;
a1d78564 5315
a92713e6
RS
5316 reglist = 0;
5317 if (!match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
5318 return FALSE;
5319 do
5320 {
5321 if (regno2 == FP && regno1 >= S0 && regno1 <= S7)
5322 {
5323 reglist |= 1 << FP;
5324 regno2 = S7;
5325 }
5326 reglist |= ((1U << regno2 << 1) - 1) & -(1U << regno1);
5327 reset = *arg;
5328 }
5329 while (match_char (arg, ',')
5330 && match_reg_range (arg, OP_REG_GP, &regno1, &regno2));
5331 *arg = reset;
a1d78564
RS
5332
5333 if (operand->size == 2)
5334 {
5335 /* The list must include both ra and s0-sN, for 0 <= N <= 3. E.g.:
5336
5337 s0, ra
5338 s0, s1, ra, s2, s3
5339 s0-s2, ra
5340
5341 and any permutations of these. */
5342 if ((reglist & 0xfff1ffff) != 0x80010000)
a92713e6 5343 return FALSE;
a1d78564
RS
5344
5345 sregs = (reglist >> 17) & 7;
5346 ra = 0;
5347 }
5348 else
5349 {
5350 /* The list must include at least one of ra and s0-sN,
5351 for 0 <= N <= 8. (Note that there is a gap between s7 and s8,
5352 which are $23 and $30 respectively.) E.g.:
5353
5354 ra
5355 s0
5356 ra, s0, s1, s2
5357 s0-s8
5358 s0-s5, ra
5359
5360 and any permutations of these. */
5361 if ((reglist & 0x3f00ffff) != 0)
a92713e6 5362 return FALSE;
a1d78564
RS
5363
5364 ra = (reglist >> 27) & 0x10;
5365 sregs = ((reglist >> 22) & 0x100) | ((reglist >> 16) & 0xff);
5366 }
5367 sregs += 1;
5368 if ((sregs & -sregs) != sregs)
a92713e6 5369 return FALSE;
a1d78564
RS
5370
5371 insn_insert_operand (arg->insn, operand, (ffs (sregs) - 1) | ra);
a92713e6 5372 return TRUE;
a1d78564
RS
5373}
5374
364215c8
RS
5375/* OP_ENTRY_EXIT_LIST matcher. */
5376
a92713e6 5377static unsigned int
364215c8 5378match_entry_exit_operand (struct mips_arg_info *arg,
a92713e6 5379 const struct mips_operand *operand)
364215c8
RS
5380{
5381 unsigned int mask;
5382 bfd_boolean is_exit;
5383
5384 /* The format is the same for both ENTRY and EXIT, but the constraints
5385 are different. */
5386 is_exit = strcmp (arg->insn->insn_mo->name, "exit") == 0;
5387 mask = (is_exit ? 7 << 3 : 0);
a92713e6 5388 do
364215c8
RS
5389 {
5390 unsigned int regno1, regno2;
5391 bfd_boolean is_freg;
5392
a92713e6 5393 if (match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
364215c8 5394 is_freg = FALSE;
a92713e6 5395 else if (match_reg_range (arg, OP_REG_FP, &regno1, &regno2))
364215c8
RS
5396 is_freg = TRUE;
5397 else
a92713e6 5398 return FALSE;
364215c8
RS
5399
5400 if (is_exit && is_freg && regno1 == 0 && regno2 < 2)
5401 {
5402 mask &= ~(7 << 3);
5403 mask |= (5 + regno2) << 3;
5404 }
5405 else if (!is_exit && regno1 == 4 && regno2 >= 4 && regno2 <= 7)
5406 mask |= (regno2 - 3) << 3;
5407 else if (regno1 == 16 && regno2 >= 16 && regno2 <= 17)
5408 mask |= (regno2 - 15) << 1;
5409 else if (regno1 == RA && regno2 == RA)
5410 mask |= 1;
5411 else
a92713e6 5412 return FALSE;
364215c8 5413 }
a92713e6
RS
5414 while (match_char (arg, ','));
5415
364215c8 5416 insn_insert_operand (arg->insn, operand, mask);
a92713e6 5417 return TRUE;
364215c8
RS
5418}
5419
5420/* OP_SAVE_RESTORE_LIST matcher. */
5421
a92713e6
RS
5422static bfd_boolean
5423match_save_restore_list_operand (struct mips_arg_info *arg)
364215c8
RS
5424{
5425 unsigned int opcode, args, statics, sregs;
5426 unsigned int num_frame_sizes, num_args, num_statics, num_sregs;
364215c8 5427 offsetT frame_size;
364215c8 5428
364215c8
RS
5429 opcode = arg->insn->insn_opcode;
5430 frame_size = 0;
5431 num_frame_sizes = 0;
5432 args = 0;
5433 statics = 0;
5434 sregs = 0;
a92713e6 5435 do
364215c8
RS
5436 {
5437 unsigned int regno1, regno2;
5438
a92713e6 5439 if (arg->token->type == OT_INTEGER)
364215c8
RS
5440 {
5441 /* Handle the frame size. */
1a00e612 5442 if (!match_const_int (arg, &frame_size))
a92713e6 5443 return FALSE;
364215c8 5444 num_frame_sizes += 1;
364215c8
RS
5445 }
5446 else
5447 {
a92713e6
RS
5448 if (!match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
5449 return FALSE;
364215c8
RS
5450
5451 while (regno1 <= regno2)
5452 {
5453 if (regno1 >= 4 && regno1 <= 7)
5454 {
5455 if (num_frame_sizes == 0)
5456 /* args $a0-$a3 */
5457 args |= 1 << (regno1 - 4);
5458 else
5459 /* statics $a0-$a3 */
5460 statics |= 1 << (regno1 - 4);
5461 }
5462 else if (regno1 >= 16 && regno1 <= 23)
5463 /* $s0-$s7 */
5464 sregs |= 1 << (regno1 - 16);
5465 else if (regno1 == 30)
5466 /* $s8 */
5467 sregs |= 1 << 8;
5468 else if (regno1 == 31)
5469 /* Add $ra to insn. */
5470 opcode |= 0x40;
5471 else
a92713e6 5472 return FALSE;
364215c8
RS
5473 regno1 += 1;
5474 if (regno1 == 24)
5475 regno1 = 30;
5476 }
5477 }
364215c8 5478 }
a92713e6 5479 while (match_char (arg, ','));
364215c8
RS
5480
5481 /* Encode args/statics combination. */
5482 if (args & statics)
a92713e6 5483 return FALSE;
364215c8
RS
5484 else if (args == 0xf)
5485 /* All $a0-$a3 are args. */
5486 opcode |= MIPS16_ALL_ARGS << 16;
5487 else if (statics == 0xf)
5488 /* All $a0-$a3 are statics. */
5489 opcode |= MIPS16_ALL_STATICS << 16;
5490 else
5491 {
5492 /* Count arg registers. */
5493 num_args = 0;
5494 while (args & 0x1)
5495 {
5496 args >>= 1;
5497 num_args += 1;
5498 }
5499 if (args != 0)
a92713e6 5500 return FALSE;
364215c8
RS
5501
5502 /* Count static registers. */
5503 num_statics = 0;
5504 while (statics & 0x8)
5505 {
5506 statics = (statics << 1) & 0xf;
5507 num_statics += 1;
5508 }
5509 if (statics != 0)
a92713e6 5510 return FALSE;
364215c8
RS
5511
5512 /* Encode args/statics. */
5513 opcode |= ((num_args << 2) | num_statics) << 16;
5514 }
5515
5516 /* Encode $s0/$s1. */
5517 if (sregs & (1 << 0)) /* $s0 */
5518 opcode |= 0x20;
5519 if (sregs & (1 << 1)) /* $s1 */
5520 opcode |= 0x10;
5521 sregs >>= 2;
5522
5523 /* Encode $s2-$s8. */
5524 num_sregs = 0;
5525 while (sregs & 1)
5526 {
5527 sregs >>= 1;
5528 num_sregs += 1;
5529 }
5530 if (sregs != 0)
a92713e6 5531 return FALSE;
364215c8
RS
5532 opcode |= num_sregs << 24;
5533
5534 /* Encode frame size. */
5535 if (num_frame_sizes == 0)
1a00e612
RS
5536 {
5537 set_insn_error (arg->argnum, _("missing frame size"));
5538 return FALSE;
5539 }
5540 if (num_frame_sizes > 1)
5541 {
5542 set_insn_error (arg->argnum, _("frame size specified twice"));
5543 return FALSE;
5544 }
5545 if ((frame_size & 7) != 0 || frame_size < 0 || frame_size > 0xff * 8)
5546 {
5547 set_insn_error (arg->argnum, _("invalid frame size"));
5548 return FALSE;
5549 }
5550 if (frame_size != 128 || (opcode >> 16) != 0)
364215c8
RS
5551 {
5552 frame_size /= 8;
5553 opcode |= (((frame_size & 0xf0) << 16)
5554 | (frame_size & 0x0f));
5555 }
5556
364215c8
RS
5557 /* Finally build the instruction. */
5558 if ((opcode >> 16) != 0 || frame_size == 0)
5559 opcode |= MIPS16_EXTEND;
5560 arg->insn->insn_opcode = opcode;
a92713e6 5561 return TRUE;
364215c8
RS
5562}
5563
a1d78564
RS
5564/* OP_MDMX_IMM_REG matcher. */
5565
a92713e6 5566static bfd_boolean
a1d78564 5567match_mdmx_imm_reg_operand (struct mips_arg_info *arg,
a92713e6 5568 const struct mips_operand *operand)
a1d78564 5569{
a92713e6 5570 unsigned int regno, uval;
a1d78564
RS
5571 bfd_boolean is_qh;
5572 const struct mips_opcode *opcode;
5573
5574 /* The mips_opcode records whether this is an octobyte or quadhalf
5575 instruction. Start out with that bit in place. */
5576 opcode = arg->insn->insn_mo;
5577 uval = mips_extract_operand (operand, opcode->match);
5578 is_qh = (uval != 0);
5579
56d438b1 5580 if (arg->token->type == OT_REG)
a1d78564
RS
5581 {
5582 if ((opcode->membership & INSN_5400)
5583 && strcmp (opcode->name, "rzu.ob") == 0)
5584 {
1a00e612
RS
5585 set_insn_error_i (arg->argnum, _("operand %d must be an immediate"),
5586 arg->argnum);
5587 return FALSE;
a1d78564
RS
5588 }
5589
56d438b1
CF
5590 if (!match_regno (arg, OP_REG_VEC, arg->token->u.regno, &regno))
5591 return FALSE;
5592 ++arg->token;
5593
a1d78564
RS
5594 /* Check whether this is a vector register or a broadcast of
5595 a single element. */
56d438b1 5596 if (arg->token->type == OT_INTEGER_INDEX)
a1d78564 5597 {
56d438b1 5598 if (arg->token->u.index > (is_qh ? 3 : 7))
a1d78564 5599 {
1a00e612
RS
5600 set_insn_error (arg->argnum, _("invalid element selector"));
5601 return FALSE;
a1d78564 5602 }
56d438b1
CF
5603 uval |= arg->token->u.index << (is_qh ? 2 : 1) << 5;
5604 ++arg->token;
a1d78564
RS
5605 }
5606 else
5607 {
5608 /* A full vector. */
5609 if ((opcode->membership & INSN_5400)
5610 && (strcmp (opcode->name, "sll.ob") == 0
5611 || strcmp (opcode->name, "srl.ob") == 0))
5612 {
1a00e612
RS
5613 set_insn_error_i (arg->argnum, _("operand %d must be scalar"),
5614 arg->argnum);
5615 return FALSE;
a1d78564
RS
5616 }
5617
5618 if (is_qh)
5619 uval |= MDMX_FMTSEL_VEC_QH << 5;
5620 else
5621 uval |= MDMX_FMTSEL_VEC_OB << 5;
5622 }
a1d78564
RS
5623 uval |= regno;
5624 }
5625 else
5626 {
5627 offsetT sval;
5628
1a00e612 5629 if (!match_const_int (arg, &sval))
a92713e6 5630 return FALSE;
a1d78564
RS
5631 if (sval < 0 || sval > 31)
5632 {
1a00e612
RS
5633 match_out_of_range (arg);
5634 return FALSE;
a1d78564
RS
5635 }
5636 uval |= (sval & 31);
5637 if (is_qh)
5638 uval |= MDMX_FMTSEL_IMM_QH << 5;
5639 else
5640 uval |= MDMX_FMTSEL_IMM_OB << 5;
5641 }
5642 insn_insert_operand (arg->insn, operand, uval);
a92713e6 5643 return TRUE;
a1d78564
RS
5644}
5645
56d438b1
CF
5646/* OP_IMM_INDEX matcher. */
5647
5648static bfd_boolean
5649match_imm_index_operand (struct mips_arg_info *arg,
5650 const struct mips_operand *operand)
5651{
5652 unsigned int max_val;
5653
5654 if (arg->token->type != OT_INTEGER_INDEX)
5655 return FALSE;
5656
5657 max_val = (1 << operand->size) - 1;
5658 if (arg->token->u.index > max_val)
5659 {
5660 match_out_of_range (arg);
5661 return FALSE;
5662 }
5663 insn_insert_operand (arg->insn, operand, arg->token->u.index);
5664 ++arg->token;
5665 return TRUE;
5666}
5667
5668/* OP_REG_INDEX matcher. */
5669
5670static bfd_boolean
5671match_reg_index_operand (struct mips_arg_info *arg,
5672 const struct mips_operand *operand)
5673{
5674 unsigned int regno;
5675
5676 if (arg->token->type != OT_REG_INDEX)
5677 return FALSE;
5678
5679 if (!match_regno (arg, OP_REG_GP, arg->token->u.regno, &regno))
5680 return FALSE;
5681
5682 insn_insert_operand (arg->insn, operand, regno);
5683 ++arg->token;
5684 return TRUE;
5685}
5686
a1d78564
RS
5687/* OP_PC matcher. */
5688
a92713e6
RS
5689static bfd_boolean
5690match_pc_operand (struct mips_arg_info *arg)
a1d78564 5691{
a92713e6
RS
5692 if (arg->token->type == OT_REG && (arg->token->u.regno & RTYPE_PC))
5693 {
5694 ++arg->token;
5695 return TRUE;
5696 }
5697 return FALSE;
a1d78564
RS
5698}
5699
7361da2c
AB
5700/* OP_NON_ZERO_REG matcher. */
5701
5702static bfd_boolean
5703match_non_zero_reg_operand (struct mips_arg_info *arg,
5704 const struct mips_operand *operand)
5705{
5706 unsigned int regno;
5707
5708 if (!match_reg (arg, OP_REG_GP, &regno))
5709 return FALSE;
5710
5711 if (regno == 0)
5712 return FALSE;
5713
5714 arg->last_regno = regno;
5715 insn_insert_operand (arg->insn, operand, regno);
5716 return TRUE;
5717}
5718
a1d78564
RS
5719/* OP_REPEAT_DEST_REG and OP_REPEAT_PREV_REG matcher. OTHER_REGNO is the
5720 register that we need to match. */
5721
a92713e6
RS
5722static bfd_boolean
5723match_tied_reg_operand (struct mips_arg_info *arg, unsigned int other_regno)
a1d78564
RS
5724{
5725 unsigned int regno;
5726
a92713e6 5727 return match_reg (arg, OP_REG_GP, &regno) && regno == other_regno;
a1d78564
RS
5728}
5729
89565f1b
RS
5730/* Read a floating-point constant from S for LI.S or LI.D. LENGTH is
5731 the length of the value in bytes (4 for float, 8 for double) and
5732 USING_GPRS says whether the destination is a GPR rather than an FPR.
5733
5734 Return the constant in IMM and OFFSET as follows:
5735
5736 - If the constant should be loaded via memory, set IMM to O_absent and
5737 OFFSET to the memory address.
5738
5739 - Otherwise, if the constant should be loaded into two 32-bit registers,
5740 set IMM to the O_constant to load into the high register and OFFSET
5741 to the corresponding value for the low register.
5742
5743 - Otherwise, set IMM to the full O_constant and set OFFSET to O_absent.
5744
5745 These constants only appear as the last operand in an instruction,
5746 and every instruction that accepts them in any variant accepts them
5747 in all variants. This means we don't have to worry about backing out
5748 any changes if the instruction does not match. We just match
5749 unconditionally and report an error if the constant is invalid. */
5750
a92713e6
RS
5751static bfd_boolean
5752match_float_constant (struct mips_arg_info *arg, expressionS *imm,
5753 expressionS *offset, int length, bfd_boolean using_gprs)
89565f1b 5754{
a92713e6 5755 char *p;
89565f1b
RS
5756 segT seg, new_seg;
5757 subsegT subseg;
5758 const char *newname;
a92713e6 5759 unsigned char *data;
89565f1b
RS
5760
5761 /* Where the constant is placed is based on how the MIPS assembler
5762 does things:
5763
5764 length == 4 && using_gprs -- immediate value only
5765 length == 8 && using_gprs -- .rdata or immediate value
5766 length == 4 && !using_gprs -- .lit4 or immediate value
5767 length == 8 && !using_gprs -- .lit8 or immediate value
5768
5769 The .lit4 and .lit8 sections are only used if permitted by the
5770 -G argument. */
a92713e6 5771 if (arg->token->type != OT_FLOAT)
1a00e612
RS
5772 {
5773 set_insn_error (arg->argnum, _("floating-point expression required"));
5774 return FALSE;
5775 }
a92713e6
RS
5776
5777 gas_assert (arg->token->u.flt.length == length);
5778 data = arg->token->u.flt.data;
5779 ++arg->token;
89565f1b
RS
5780
5781 /* Handle 32-bit constants for which an immediate value is best. */
5782 if (length == 4
5783 && (using_gprs
5784 || g_switch_value < 4
5785 || (data[0] == 0 && data[1] == 0)
5786 || (data[2] == 0 && data[3] == 0)))
5787 {
5788 imm->X_op = O_constant;
5789 if (!target_big_endian)
5790 imm->X_add_number = bfd_getl32 (data);
5791 else
5792 imm->X_add_number = bfd_getb32 (data);
5793 offset->X_op = O_absent;
a92713e6 5794 return TRUE;
89565f1b
RS
5795 }
5796
5797 /* Handle 64-bit constants for which an immediate value is best. */
5798 if (length == 8
5799 && !mips_disable_float_construction
351cdf24
MF
5800 /* Constants can only be constructed in GPRs and copied to FPRs if the
5801 GPRs are at least as wide as the FPRs or MTHC1 is available.
5802 Unlike most tests for 32-bit floating-point registers this check
5803 specifically looks for GPR_SIZE == 32 as the FPXX ABI does not
5804 permit 64-bit moves without MXHC1.
5805 Force the constant into memory otherwise. */
5806 && (using_gprs
5807 || GPR_SIZE == 64
5808 || ISA_HAS_MXHC1 (mips_opts.isa)
5809 || FPR_SIZE == 32)
89565f1b
RS
5810 && ((data[0] == 0 && data[1] == 0)
5811 || (data[2] == 0 && data[3] == 0))
5812 && ((data[4] == 0 && data[5] == 0)
5813 || (data[6] == 0 && data[7] == 0)))
5814 {
5815 /* The value is simple enough to load with a couple of instructions.
5816 If using 32-bit registers, set IMM to the high order 32 bits and
5817 OFFSET to the low order 32 bits. Otherwise, set IMM to the entire
5818 64 bit constant. */
351cdf24 5819 if (GPR_SIZE == 32 || (!using_gprs && FPR_SIZE != 64))
89565f1b
RS
5820 {
5821 imm->X_op = O_constant;
5822 offset->X_op = O_constant;
5823 if (!target_big_endian)
5824 {
5825 imm->X_add_number = bfd_getl32 (data + 4);
5826 offset->X_add_number = bfd_getl32 (data);
5827 }
5828 else
5829 {
5830 imm->X_add_number = bfd_getb32 (data);
5831 offset->X_add_number = bfd_getb32 (data + 4);
5832 }
5833 if (offset->X_add_number == 0)
5834 offset->X_op = O_absent;
5835 }
5836 else
5837 {
5838 imm->X_op = O_constant;
5839 if (!target_big_endian)
5840 imm->X_add_number = bfd_getl64 (data);
5841 else
5842 imm->X_add_number = bfd_getb64 (data);
5843 offset->X_op = O_absent;
5844 }
a92713e6 5845 return TRUE;
89565f1b
RS
5846 }
5847
5848 /* Switch to the right section. */
5849 seg = now_seg;
5850 subseg = now_subseg;
5851 if (length == 4)
5852 {
5853 gas_assert (!using_gprs && g_switch_value >= 4);
5854 newname = ".lit4";
5855 }
5856 else
5857 {
5858 if (using_gprs || g_switch_value < 8)
5859 newname = RDATA_SECTION_NAME;
5860 else
5861 newname = ".lit8";
5862 }
5863
5864 new_seg = subseg_new (newname, (subsegT) 0);
5865 bfd_set_section_flags (stdoutput, new_seg,
5866 SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA);
5867 frag_align (length == 4 ? 2 : 3, 0, 0);
5868 if (strncmp (TARGET_OS, "elf", 3) != 0)
5869 record_alignment (new_seg, 4);
5870 else
5871 record_alignment (new_seg, length == 4 ? 2 : 3);
5872 if (seg == now_seg)
1661c76c 5873 as_bad (_("cannot use `%s' in this section"), arg->insn->insn_mo->name);
89565f1b
RS
5874
5875 /* Set the argument to the current address in the section. */
5876 imm->X_op = O_absent;
5877 offset->X_op = O_symbol;
5878 offset->X_add_symbol = symbol_temp_new_now ();
5879 offset->X_add_number = 0;
5880
5881 /* Put the floating point number into the section. */
5882 p = frag_more (length);
5883 memcpy (p, data, length);
5884
5885 /* Switch back to the original section. */
5886 subseg_set (seg, subseg);
a92713e6 5887 return TRUE;
89565f1b
RS
5888}
5889
14daeee3
RS
5890/* OP_VU0_SUFFIX and OP_VU0_MATCH_SUFFIX matcher; MATCH_P selects between
5891 them. */
5892
5893static bfd_boolean
5894match_vu0_suffix_operand (struct mips_arg_info *arg,
5895 const struct mips_operand *operand,
5896 bfd_boolean match_p)
5897{
5898 unsigned int uval;
5899
5900 /* The operand can be an XYZW mask or a single 2-bit channel index
5901 (with X being 0). */
5902 gas_assert (operand->size == 2 || operand->size == 4);
5903
ee5734f0 5904 /* The suffix can be omitted when it is already part of the opcode. */
14daeee3 5905 if (arg->token->type != OT_CHANNELS)
ee5734f0 5906 return match_p;
14daeee3
RS
5907
5908 uval = arg->token->u.channels;
5909 if (operand->size == 2)
5910 {
5911 /* Check that a single bit is set and convert it into a 2-bit index. */
5912 if ((uval & -uval) != uval)
5913 return FALSE;
5914 uval = 4 - ffs (uval);
5915 }
5916
5917 if (match_p && insn_extract_operand (arg->insn, operand) != uval)
5918 return FALSE;
5919
5920 ++arg->token;
5921 if (!match_p)
5922 insn_insert_operand (arg->insn, operand, uval);
5923 return TRUE;
5924}
5925
a1d78564
RS
5926/* S is the text seen for ARG. Match it against OPERAND. Return the end
5927 of the argument text if the match is successful, otherwise return null. */
5928
a92713e6 5929static bfd_boolean
a1d78564 5930match_operand (struct mips_arg_info *arg,
a92713e6 5931 const struct mips_operand *operand)
a1d78564
RS
5932{
5933 switch (operand->type)
5934 {
5935 case OP_INT:
a92713e6 5936 return match_int_operand (arg, operand);
a1d78564
RS
5937
5938 case OP_MAPPED_INT:
a92713e6 5939 return match_mapped_int_operand (arg, operand);
a1d78564
RS
5940
5941 case OP_MSB:
a92713e6 5942 return match_msb_operand (arg, operand);
a1d78564
RS
5943
5944 case OP_REG:
0f35dbc4 5945 case OP_OPTIONAL_REG:
a92713e6 5946 return match_reg_operand (arg, operand);
a1d78564
RS
5947
5948 case OP_REG_PAIR:
a92713e6 5949 return match_reg_pair_operand (arg, operand);
a1d78564
RS
5950
5951 case OP_PCREL:
a92713e6 5952 return match_pcrel_operand (arg);
a1d78564
RS
5953
5954 case OP_PERF_REG:
a92713e6 5955 return match_perf_reg_operand (arg, operand);
a1d78564
RS
5956
5957 case OP_ADDIUSP_INT:
a92713e6 5958 return match_addiusp_operand (arg, operand);
a1d78564
RS
5959
5960 case OP_CLO_CLZ_DEST:
a92713e6 5961 return match_clo_clz_dest_operand (arg, operand);
a1d78564
RS
5962
5963 case OP_LWM_SWM_LIST:
a92713e6 5964 return match_lwm_swm_list_operand (arg, operand);
a1d78564
RS
5965
5966 case OP_ENTRY_EXIT_LIST:
a92713e6 5967 return match_entry_exit_operand (arg, operand);
364215c8 5968
a1d78564 5969 case OP_SAVE_RESTORE_LIST:
a92713e6 5970 return match_save_restore_list_operand (arg);
a1d78564
RS
5971
5972 case OP_MDMX_IMM_REG:
a92713e6 5973 return match_mdmx_imm_reg_operand (arg, operand);
a1d78564
RS
5974
5975 case OP_REPEAT_DEST_REG:
a92713e6 5976 return match_tied_reg_operand (arg, arg->dest_regno);
a1d78564
RS
5977
5978 case OP_REPEAT_PREV_REG:
a92713e6 5979 return match_tied_reg_operand (arg, arg->last_regno);
a1d78564
RS
5980
5981 case OP_PC:
a92713e6 5982 return match_pc_operand (arg);
14daeee3
RS
5983
5984 case OP_VU0_SUFFIX:
5985 return match_vu0_suffix_operand (arg, operand, FALSE);
5986
5987 case OP_VU0_MATCH_SUFFIX:
5988 return match_vu0_suffix_operand (arg, operand, TRUE);
56d438b1
CF
5989
5990 case OP_IMM_INDEX:
5991 return match_imm_index_operand (arg, operand);
5992
5993 case OP_REG_INDEX:
5994 return match_reg_index_operand (arg, operand);
7361da2c
AB
5995
5996 case OP_SAME_RS_RT:
5997 return match_same_rs_rt_operand (arg, operand);
5998
5999 case OP_CHECK_PREV:
6000 return match_check_prev_operand (arg, operand);
6001
6002 case OP_NON_ZERO_REG:
6003 return match_non_zero_reg_operand (arg, operand);
a1d78564
RS
6004 }
6005 abort ();
6006}
6007
6008/* ARG is the state after successfully matching an instruction.
6009 Issue any queued-up warnings. */
6010
6011static void
6012check_completed_insn (struct mips_arg_info *arg)
6013{
6014 if (arg->seen_at)
6015 {
6016 if (AT == ATREG)
1661c76c 6017 as_warn (_("used $at without \".set noat\""));
a1d78564 6018 else
1661c76c 6019 as_warn (_("used $%u with \".set at=$%u\""), AT, AT);
a1d78564
RS
6020 }
6021}
a1d78564 6022
85fcb30f
RS
6023/* Return true if modifying general-purpose register REG needs a delay. */
6024
6025static bfd_boolean
6026reg_needs_delay (unsigned int reg)
6027{
6028 unsigned long prev_pinfo;
6029
6030 prev_pinfo = history[0].insn_mo->pinfo;
6031 if (!mips_opts.noreorder
67dc82bc 6032 && (((prev_pinfo & INSN_LOAD_MEMORY) && !gpr_interlocks)
43885403 6033 || ((prev_pinfo & INSN_LOAD_COPROC) && !cop_interlocks))
85fcb30f
RS
6034 && (gpr_write_mask (&history[0]) & (1 << reg)))
6035 return TRUE;
6036
6037 return FALSE;
6038}
6039
71400594
RS
6040/* Classify an instruction according to the FIX_VR4120_* enumeration.
6041 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
6042 by VR4120 errata. */
4d7206a2 6043
71400594
RS
6044static unsigned int
6045classify_vr4120_insn (const char *name)
252b5132 6046{
71400594
RS
6047 if (strncmp (name, "macc", 4) == 0)
6048 return FIX_VR4120_MACC;
6049 if (strncmp (name, "dmacc", 5) == 0)
6050 return FIX_VR4120_DMACC;
6051 if (strncmp (name, "mult", 4) == 0)
6052 return FIX_VR4120_MULT;
6053 if (strncmp (name, "dmult", 5) == 0)
6054 return FIX_VR4120_DMULT;
6055 if (strstr (name, "div"))
6056 return FIX_VR4120_DIV;
6057 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
6058 return FIX_VR4120_MTHILO;
6059 return NUM_FIX_VR4120_CLASSES;
6060}
252b5132 6061
a8d14a88
CM
6062#define INSN_ERET 0x42000018
6063#define INSN_DERET 0x4200001f
6064#define INSN_DMULT 0x1c
6065#define INSN_DMULTU 0x1d
ff239038 6066
71400594
RS
6067/* Return the number of instructions that must separate INSN1 and INSN2,
6068 where INSN1 is the earlier instruction. Return the worst-case value
6069 for any INSN2 if INSN2 is null. */
252b5132 6070
71400594
RS
6071static unsigned int
6072insns_between (const struct mips_cl_insn *insn1,
6073 const struct mips_cl_insn *insn2)
6074{
6075 unsigned long pinfo1, pinfo2;
4c260379 6076 unsigned int mask;
71400594 6077
85fcb30f
RS
6078 /* If INFO2 is null, pessimistically assume that all flags are set for
6079 the second instruction. */
71400594
RS
6080 pinfo1 = insn1->insn_mo->pinfo;
6081 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
252b5132 6082
71400594
RS
6083 /* For most targets, write-after-read dependencies on the HI and LO
6084 registers must be separated by at least two instructions. */
6085 if (!hilo_interlocks)
252b5132 6086 {
71400594
RS
6087 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
6088 return 2;
6089 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
6090 return 2;
6091 }
6092
6093 /* If we're working around r7000 errata, there must be two instructions
6094 between an mfhi or mflo and any instruction that uses the result. */
6095 if (mips_7000_hilo_fix
df58fc94 6096 && !mips_opts.micromips
71400594 6097 && MF_HILO_INSN (pinfo1)
85fcb30f 6098 && (insn2 == NULL || (gpr_read_mask (insn2) & gpr_write_mask (insn1))))
71400594
RS
6099 return 2;
6100
ff239038
CM
6101 /* If we're working around 24K errata, one instruction is required
6102 if an ERET or DERET is followed by a branch instruction. */
df58fc94 6103 if (mips_fix_24k && !mips_opts.micromips)
ff239038
CM
6104 {
6105 if (insn1->insn_opcode == INSN_ERET
6106 || insn1->insn_opcode == INSN_DERET)
6107 {
6108 if (insn2 == NULL
6109 || insn2->insn_opcode == INSN_ERET
6110 || insn2->insn_opcode == INSN_DERET
11625dd8 6111 || delayed_branch_p (insn2))
ff239038
CM
6112 return 1;
6113 }
6114 }
6115
a8d14a88
CM
6116 /* If we're working around PMC RM7000 errata, there must be three
6117 nops between a dmult and a load instruction. */
6118 if (mips_fix_rm7000 && !mips_opts.micromips)
6119 {
6120 if ((insn1->insn_opcode & insn1->insn_mo->mask) == INSN_DMULT
6121 || (insn1->insn_opcode & insn1->insn_mo->mask) == INSN_DMULTU)
6122 {
6123 if (pinfo2 & INSN_LOAD_MEMORY)
6124 return 3;
6125 }
6126 }
6127
71400594
RS
6128 /* If working around VR4120 errata, check for combinations that need
6129 a single intervening instruction. */
df58fc94 6130 if (mips_fix_vr4120 && !mips_opts.micromips)
71400594
RS
6131 {
6132 unsigned int class1, class2;
252b5132 6133
71400594
RS
6134 class1 = classify_vr4120_insn (insn1->insn_mo->name);
6135 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
252b5132 6136 {
71400594
RS
6137 if (insn2 == NULL)
6138 return 1;
6139 class2 = classify_vr4120_insn (insn2->insn_mo->name);
6140 if (vr4120_conflicts[class1] & (1 << class2))
6141 return 1;
252b5132 6142 }
71400594
RS
6143 }
6144
df58fc94 6145 if (!HAVE_CODE_COMPRESSION)
71400594
RS
6146 {
6147 /* Check for GPR or coprocessor load delays. All such delays
6148 are on the RT register. */
6149 /* Itbl support may require additional care here. */
67dc82bc 6150 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY))
43885403 6151 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC)))
252b5132 6152 {
85fcb30f 6153 if (insn2 == NULL || (gpr_read_mask (insn2) & gpr_write_mask (insn1)))
71400594
RS
6154 return 1;
6155 }
6156
6157 /* Check for generic coprocessor hazards.
6158
6159 This case is not handled very well. There is no special
6160 knowledge of CP0 handling, and the coprocessors other than
6161 the floating point unit are not distinguished at all. */
6162 /* Itbl support may require additional care here. FIXME!
6163 Need to modify this to include knowledge about
6164 user specified delays! */
43885403 6165 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE))
71400594
RS
6166 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
6167 {
6168 /* Handle cases where INSN1 writes to a known general coprocessor
6169 register. There must be a one instruction delay before INSN2
6170 if INSN2 reads that register, otherwise no delay is needed. */
4c260379
RS
6171 mask = fpr_write_mask (insn1);
6172 if (mask != 0)
252b5132 6173 {
4c260379 6174 if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
71400594 6175 return 1;
252b5132
RH
6176 }
6177 else
6178 {
71400594
RS
6179 /* Read-after-write dependencies on the control registers
6180 require a two-instruction gap. */
6181 if ((pinfo1 & INSN_WRITE_COND_CODE)
6182 && (pinfo2 & INSN_READ_COND_CODE))
6183 return 2;
6184
6185 /* We don't know exactly what INSN1 does. If INSN2 is
6186 also a coprocessor instruction, assume there must be
6187 a one instruction gap. */
6188 if (pinfo2 & INSN_COP)
6189 return 1;
252b5132
RH
6190 }
6191 }
6b76fefe 6192
71400594
RS
6193 /* Check for read-after-write dependencies on the coprocessor
6194 control registers in cases where INSN1 does not need a general
6195 coprocessor delay. This means that INSN1 is a floating point
6196 comparison instruction. */
6197 /* Itbl support may require additional care here. */
6198 else if (!cop_interlocks
6199 && (pinfo1 & INSN_WRITE_COND_CODE)
6200 && (pinfo2 & INSN_READ_COND_CODE))
6201 return 1;
6202 }
6b76fefe 6203
7361da2c
AB
6204 /* Forbidden slots can not contain Control Transfer Instructions (CTIs)
6205 CTIs include all branches and jumps, nal, eret, eretnc, deret, wait
6206 and pause. */
6207 if ((insn1->insn_mo->pinfo2 & INSN2_FORBIDDEN_SLOT)
6208 && ((pinfo2 & INSN_NO_DELAY_SLOT)
6209 || (insn2 && delayed_branch_p (insn2))))
6210 return 1;
6211
71400594
RS
6212 return 0;
6213}
6b76fefe 6214
7d8e00cf
RS
6215/* Return the number of nops that would be needed to work around the
6216 VR4130 mflo/mfhi errata if instruction INSN immediately followed
932d1a1b
RS
6217 the MAX_VR4130_NOPS instructions described by HIST. Ignore hazards
6218 that are contained within the first IGNORE instructions of HIST. */
7d8e00cf
RS
6219
6220static int
932d1a1b 6221nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
7d8e00cf
RS
6222 const struct mips_cl_insn *insn)
6223{
4c260379
RS
6224 int i, j;
6225 unsigned int mask;
7d8e00cf
RS
6226
6227 /* Check if the instruction writes to HI or LO. MTHI and MTLO
6228 are not affected by the errata. */
6229 if (insn != 0
6230 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
6231 || strcmp (insn->insn_mo->name, "mtlo") == 0
6232 || strcmp (insn->insn_mo->name, "mthi") == 0))
6233 return 0;
6234
6235 /* Search for the first MFLO or MFHI. */
6236 for (i = 0; i < MAX_VR4130_NOPS; i++)
91d6fa6a 6237 if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
7d8e00cf
RS
6238 {
6239 /* Extract the destination register. */
4c260379 6240 mask = gpr_write_mask (&hist[i]);
7d8e00cf
RS
6241
6242 /* No nops are needed if INSN reads that register. */
4c260379 6243 if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
7d8e00cf
RS
6244 return 0;
6245
6246 /* ...or if any of the intervening instructions do. */
6247 for (j = 0; j < i; j++)
4c260379 6248 if (gpr_read_mask (&hist[j]) & mask)
7d8e00cf
RS
6249 return 0;
6250
932d1a1b
RS
6251 if (i >= ignore)
6252 return MAX_VR4130_NOPS - i;
7d8e00cf
RS
6253 }
6254 return 0;
6255}
6256
15be625d
CM
6257#define BASE_REG_EQ(INSN1, INSN2) \
6258 ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
6259 == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
6260
6261/* Return the minimum alignment for this store instruction. */
6262
6263static int
6264fix_24k_align_to (const struct mips_opcode *mo)
6265{
6266 if (strcmp (mo->name, "sh") == 0)
6267 return 2;
6268
6269 if (strcmp (mo->name, "swc1") == 0
6270 || strcmp (mo->name, "swc2") == 0
6271 || strcmp (mo->name, "sw") == 0
6272 || strcmp (mo->name, "sc") == 0
6273 || strcmp (mo->name, "s.s") == 0)
6274 return 4;
6275
6276 if (strcmp (mo->name, "sdc1") == 0
6277 || strcmp (mo->name, "sdc2") == 0
6278 || strcmp (mo->name, "s.d") == 0)
6279 return 8;
6280
6281 /* sb, swl, swr */
6282 return 1;
6283}
6284
6285struct fix_24k_store_info
6286 {
6287 /* Immediate offset, if any, for this store instruction. */
6288 short off;
6289 /* Alignment required by this store instruction. */
6290 int align_to;
6291 /* True for register offsets. */
6292 int register_offset;
6293 };
6294
6295/* Comparison function used by qsort. */
6296
6297static int
6298fix_24k_sort (const void *a, const void *b)
6299{
6300 const struct fix_24k_store_info *pos1 = a;
6301 const struct fix_24k_store_info *pos2 = b;
6302
6303 return (pos1->off - pos2->off);
6304}
6305
6306/* INSN is a store instruction. Try to record the store information
6307 in STINFO. Return false if the information isn't known. */
6308
6309static bfd_boolean
6310fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
ab9794cf 6311 const struct mips_cl_insn *insn)
15be625d
CM
6312{
6313 /* The instruction must have a known offset. */
6314 if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
6315 return FALSE;
6316
6317 stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
6318 stinfo->align_to = fix_24k_align_to (insn->insn_mo);
6319 return TRUE;
6320}
6321
932d1a1b
RS
6322/* Return the number of nops that would be needed to work around the 24k
6323 "lost data on stores during refill" errata if instruction INSN
6324 immediately followed the 2 instructions described by HIST.
6325 Ignore hazards that are contained within the first IGNORE
6326 instructions of HIST.
6327
6328 Problem: The FSB (fetch store buffer) acts as an intermediate buffer
6329 for the data cache refills and store data. The following describes
6330 the scenario where the store data could be lost.
6331
6332 * A data cache miss, due to either a load or a store, causing fill
6333 data to be supplied by the memory subsystem
6334 * The first three doublewords of fill data are returned and written
6335 into the cache
6336 * A sequence of four stores occurs in consecutive cycles around the
6337 final doubleword of the fill:
6338 * Store A
6339 * Store B
6340 * Store C
6341 * Zero, One or more instructions
6342 * Store D
6343
6344 The four stores A-D must be to different doublewords of the line that
6345 is being filled. The fourth instruction in the sequence above permits
6346 the fill of the final doubleword to be transferred from the FSB into
6347 the cache. In the sequence above, the stores may be either integer
6348 (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
6349 swxc1, sdxc1, suxc1) stores, as long as the four stores are to
6350 different doublewords on the line. If the floating point unit is
6351 running in 1:2 mode, it is not possible to create the sequence above
6352 using only floating point store instructions.
15be625d
CM
6353
6354 In this case, the cache line being filled is incorrectly marked
6355 invalid, thereby losing the data from any store to the line that
6356 occurs between the original miss and the completion of the five
6357 cycle sequence shown above.
6358
932d1a1b 6359 The workarounds are:
15be625d 6360
932d1a1b
RS
6361 * Run the data cache in write-through mode.
6362 * Insert a non-store instruction between
6363 Store A and Store B or Store B and Store C. */
15be625d
CM
6364
6365static int
932d1a1b 6366nops_for_24k (int ignore, const struct mips_cl_insn *hist,
15be625d
CM
6367 const struct mips_cl_insn *insn)
6368{
6369 struct fix_24k_store_info pos[3];
6370 int align, i, base_offset;
6371
932d1a1b
RS
6372 if (ignore >= 2)
6373 return 0;
6374
ab9794cf
RS
6375 /* If the previous instruction wasn't a store, there's nothing to
6376 worry about. */
15be625d
CM
6377 if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
6378 return 0;
6379
ab9794cf
RS
6380 /* If the instructions after the previous one are unknown, we have
6381 to assume the worst. */
6382 if (!insn)
15be625d
CM
6383 return 1;
6384
ab9794cf
RS
6385 /* Check whether we are dealing with three consecutive stores. */
6386 if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
6387 || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
15be625d
CM
6388 return 0;
6389
6390 /* If we don't know the relationship between the store addresses,
6391 assume the worst. */
ab9794cf 6392 if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
15be625d
CM
6393 || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
6394 return 1;
6395
6396 if (!fix_24k_record_store_info (&pos[0], insn)
6397 || !fix_24k_record_store_info (&pos[1], &hist[0])
6398 || !fix_24k_record_store_info (&pos[2], &hist[1]))
6399 return 1;
6400
6401 qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
6402
6403 /* Pick a value of ALIGN and X such that all offsets are adjusted by
6404 X bytes and such that the base register + X is known to be aligned
6405 to align bytes. */
6406
6407 if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
6408 align = 8;
6409 else
6410 {
6411 align = pos[0].align_to;
6412 base_offset = pos[0].off;
6413 for (i = 1; i < 3; i++)
6414 if (align < pos[i].align_to)
6415 {
6416 align = pos[i].align_to;
6417 base_offset = pos[i].off;
6418 }
6419 for (i = 0; i < 3; i++)
6420 pos[i].off -= base_offset;
6421 }
6422
6423 pos[0].off &= ~align + 1;
6424 pos[1].off &= ~align + 1;
6425 pos[2].off &= ~align + 1;
6426
6427 /* If any two stores write to the same chunk, they also write to the
6428 same doubleword. The offsets are still sorted at this point. */
6429 if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
6430 return 0;
6431
6432 /* A range of at least 9 bytes is needed for the stores to be in
6433 non-overlapping doublewords. */
6434 if (pos[2].off - pos[0].off <= 8)
6435 return 0;
6436
6437 if (pos[2].off - pos[1].off >= 24
6438 || pos[1].off - pos[0].off >= 24
6439 || pos[2].off - pos[0].off >= 32)
6440 return 0;
6441
6442 return 1;
6443}
6444
71400594 6445/* Return the number of nops that would be needed if instruction INSN
91d6fa6a 6446 immediately followed the MAX_NOPS instructions given by HIST,
932d1a1b
RS
6447 where HIST[0] is the most recent instruction. Ignore hazards
6448 between INSN and the first IGNORE instructions in HIST.
6449
6450 If INSN is null, return the worse-case number of nops for any
6451 instruction. */
bdaaa2e1 6452
71400594 6453static int
932d1a1b 6454nops_for_insn (int ignore, const struct mips_cl_insn *hist,
71400594
RS
6455 const struct mips_cl_insn *insn)
6456{
6457 int i, nops, tmp_nops;
bdaaa2e1 6458
71400594 6459 nops = 0;
932d1a1b 6460 for (i = ignore; i < MAX_DELAY_NOPS; i++)
65b02341 6461 {
91d6fa6a 6462 tmp_nops = insns_between (hist + i, insn) - i;
65b02341
RS
6463 if (tmp_nops > nops)
6464 nops = tmp_nops;
6465 }
7d8e00cf 6466
df58fc94 6467 if (mips_fix_vr4130 && !mips_opts.micromips)
7d8e00cf 6468 {
932d1a1b 6469 tmp_nops = nops_for_vr4130 (ignore, hist, insn);
7d8e00cf
RS
6470 if (tmp_nops > nops)
6471 nops = tmp_nops;
6472 }
6473
df58fc94 6474 if (mips_fix_24k && !mips_opts.micromips)
15be625d 6475 {
932d1a1b 6476 tmp_nops = nops_for_24k (ignore, hist, insn);
15be625d
CM
6477 if (tmp_nops > nops)
6478 nops = tmp_nops;
6479 }
6480
71400594
RS
6481 return nops;
6482}
252b5132 6483
71400594 6484/* The variable arguments provide NUM_INSNS extra instructions that
91d6fa6a 6485 might be added to HIST. Return the largest number of nops that
932d1a1b
RS
6486 would be needed after the extended sequence, ignoring hazards
6487 in the first IGNORE instructions. */
252b5132 6488
71400594 6489static int
932d1a1b
RS
6490nops_for_sequence (int num_insns, int ignore,
6491 const struct mips_cl_insn *hist, ...)
71400594
RS
6492{
6493 va_list args;
6494 struct mips_cl_insn buffer[MAX_NOPS];
6495 struct mips_cl_insn *cursor;
6496 int nops;
6497
91d6fa6a 6498 va_start (args, hist);
71400594 6499 cursor = buffer + num_insns;
91d6fa6a 6500 memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
71400594
RS
6501 while (cursor > buffer)
6502 *--cursor = *va_arg (args, const struct mips_cl_insn *);
6503
932d1a1b 6504 nops = nops_for_insn (ignore, buffer, NULL);
71400594
RS
6505 va_end (args);
6506 return nops;
6507}
252b5132 6508
71400594
RS
6509/* Like nops_for_insn, but if INSN is a branch, take into account the
6510 worst-case delay for the branch target. */
252b5132 6511
71400594 6512static int
932d1a1b 6513nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
71400594
RS
6514 const struct mips_cl_insn *insn)
6515{
6516 int nops, tmp_nops;
60b63b72 6517
932d1a1b 6518 nops = nops_for_insn (ignore, hist, insn);
11625dd8 6519 if (delayed_branch_p (insn))
71400594 6520 {
932d1a1b 6521 tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
14fe068b 6522 hist, insn, get_delay_slot_nop (insn));
71400594
RS
6523 if (tmp_nops > nops)
6524 nops = tmp_nops;
6525 }
11625dd8 6526 else if (compact_branch_p (insn))
71400594 6527 {
932d1a1b 6528 tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
71400594
RS
6529 if (tmp_nops > nops)
6530 nops = tmp_nops;
6531 }
6532 return nops;
6533}
6534
c67a084a
NC
6535/* Fix NOP issue: Replace nops by "or at,at,zero". */
6536
6537static void
6538fix_loongson2f_nop (struct mips_cl_insn * ip)
6539{
df58fc94 6540 gas_assert (!HAVE_CODE_COMPRESSION);
c67a084a
NC
6541 if (strcmp (ip->insn_mo->name, "nop") == 0)
6542 ip->insn_opcode = LOONGSON2F_NOP_INSN;
6543}
6544
6545/* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
6546 jr target pc &= 'hffff_ffff_cfff_ffff. */
6547
6548static void
6549fix_loongson2f_jump (struct mips_cl_insn * ip)
6550{
df58fc94 6551 gas_assert (!HAVE_CODE_COMPRESSION);
c67a084a
NC
6552 if (strcmp (ip->insn_mo->name, "j") == 0
6553 || strcmp (ip->insn_mo->name, "jr") == 0
6554 || strcmp (ip->insn_mo->name, "jalr") == 0)
6555 {
6556 int sreg;
6557 expressionS ep;
6558
6559 if (! mips_opts.at)
6560 return;
6561
df58fc94 6562 sreg = EXTRACT_OPERAND (0, RS, *ip);
c67a084a
NC
6563 if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
6564 return;
6565
6566 ep.X_op = O_constant;
6567 ep.X_add_number = 0xcfff0000;
6568 macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
6569 ep.X_add_number = 0xffff;
6570 macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
6571 macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
6572 }
6573}
6574
6575static void
6576fix_loongson2f (struct mips_cl_insn * ip)
6577{
6578 if (mips_fix_loongson2f_nop)
6579 fix_loongson2f_nop (ip);
6580
6581 if (mips_fix_loongson2f_jump)
6582 fix_loongson2f_jump (ip);
6583}
6584
a4e06468
RS
6585/* IP is a branch that has a delay slot, and we need to fill it
6586 automatically. Return true if we can do that by swapping IP
e407c74b
NC
6587 with the previous instruction.
6588 ADDRESS_EXPR is an operand of the instruction to be used with
6589 RELOC_TYPE. */
a4e06468
RS
6590
6591static bfd_boolean
e407c74b 6592can_swap_branch_p (struct mips_cl_insn *ip, expressionS *address_expr,
26545944 6593 bfd_reloc_code_real_type *reloc_type)
a4e06468 6594{
2b0c8b40 6595 unsigned long pinfo, pinfo2, prev_pinfo, prev_pinfo2;
a4e06468 6596 unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
9d5de888 6597 unsigned int fpr_read, prev_fpr_write;
a4e06468
RS
6598
6599 /* -O2 and above is required for this optimization. */
6600 if (mips_optimize < 2)
6601 return FALSE;
6602
6603 /* If we have seen .set volatile or .set nomove, don't optimize. */
6604 if (mips_opts.nomove)
6605 return FALSE;
6606
6607 /* We can't swap if the previous instruction's position is fixed. */
6608 if (history[0].fixed_p)
6609 return FALSE;
6610
6611 /* If the previous previous insn was in a .set noreorder, we can't
6612 swap. Actually, the MIPS assembler will swap in this situation.
6613 However, gcc configured -with-gnu-as will generate code like
6614
6615 .set noreorder
6616 lw $4,XXX
6617 .set reorder
6618 INSN
6619 bne $4,$0,foo
6620
6621 in which we can not swap the bne and INSN. If gcc is not configured
6622 -with-gnu-as, it does not output the .set pseudo-ops. */
6623 if (history[1].noreorder_p)
6624 return FALSE;
6625
87333bb7
MR
6626 /* If the previous instruction had a fixup in mips16 mode, we can not swap.
6627 This means that the previous instruction was a 4-byte one anyhow. */
a4e06468
RS
6628 if (mips_opts.mips16 && history[0].fixp[0])
6629 return FALSE;
6630
6631 /* If the branch is itself the target of a branch, we can not swap.
6632 We cheat on this; all we check for is whether there is a label on
6633 this instruction. If there are any branches to anything other than
6634 a label, users must use .set noreorder. */
6635 if (seg_info (now_seg)->label_list)
6636 return FALSE;
6637
6638 /* If the previous instruction is in a variant frag other than this
2309ddf2 6639 branch's one, we cannot do the swap. This does not apply to
9301f9c3
MR
6640 MIPS16 code, which uses variant frags for different purposes. */
6641 if (!mips_opts.mips16
a4e06468
RS
6642 && history[0].frag
6643 && history[0].frag->fr_type == rs_machine_dependent)
6644 return FALSE;
6645
bcd530a7
RS
6646 /* We do not swap with instructions that cannot architecturally
6647 be placed in a branch delay slot, such as SYNC or ERET. We
6648 also refrain from swapping with a trap instruction, since it
6649 complicates trap handlers to have the trap instruction be in
6650 a delay slot. */
a4e06468 6651 prev_pinfo = history[0].insn_mo->pinfo;
bcd530a7 6652 if (prev_pinfo & INSN_NO_DELAY_SLOT)
a4e06468
RS
6653 return FALSE;
6654
6655 /* Check for conflicts between the branch and the instructions
6656 before the candidate delay slot. */
6657 if (nops_for_insn (0, history + 1, ip) > 0)
6658 return FALSE;
6659
6660 /* Check for conflicts between the swapped sequence and the
6661 target of the branch. */
6662 if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
6663 return FALSE;
6664
6665 /* If the branch reads a register that the previous
6666 instruction sets, we can not swap. */
6667 gpr_read = gpr_read_mask (ip);
6668 prev_gpr_write = gpr_write_mask (&history[0]);
6669 if (gpr_read & prev_gpr_write)
6670 return FALSE;
6671
9d5de888
CF
6672 fpr_read = fpr_read_mask (ip);
6673 prev_fpr_write = fpr_write_mask (&history[0]);
6674 if (fpr_read & prev_fpr_write)
6675 return FALSE;
6676
a4e06468
RS
6677 /* If the branch writes a register that the previous
6678 instruction sets, we can not swap. */
6679 gpr_write = gpr_write_mask (ip);
6680 if (gpr_write & prev_gpr_write)
6681 return FALSE;
6682
6683 /* If the branch writes a register that the previous
6684 instruction reads, we can not swap. */
6685 prev_gpr_read = gpr_read_mask (&history[0]);
6686 if (gpr_write & prev_gpr_read)
6687 return FALSE;
6688
6689 /* If one instruction sets a condition code and the
6690 other one uses a condition code, we can not swap. */
6691 pinfo = ip->insn_mo->pinfo;
6692 if ((pinfo & INSN_READ_COND_CODE)
6693 && (prev_pinfo & INSN_WRITE_COND_CODE))
6694 return FALSE;
6695 if ((pinfo & INSN_WRITE_COND_CODE)
6696 && (prev_pinfo & INSN_READ_COND_CODE))
6697 return FALSE;
6698
6699 /* If the previous instruction uses the PC, we can not swap. */
2b0c8b40 6700 prev_pinfo2 = history[0].insn_mo->pinfo2;
26545944 6701 if (prev_pinfo2 & INSN2_READ_PC)
2b0c8b40 6702 return FALSE;
a4e06468 6703
df58fc94
RS
6704 /* If the previous instruction has an incorrect size for a fixed
6705 branch delay slot in microMIPS mode, we cannot swap. */
2309ddf2
MR
6706 pinfo2 = ip->insn_mo->pinfo2;
6707 if (mips_opts.micromips
6708 && (pinfo2 & INSN2_BRANCH_DELAY_16BIT)
6709 && insn_length (history) != 2)
6710 return FALSE;
6711 if (mips_opts.micromips
6712 && (pinfo2 & INSN2_BRANCH_DELAY_32BIT)
6713 && insn_length (history) != 4)
6714 return FALSE;
6715
e407c74b
NC
6716 /* On R5900 short loops need to be fixed by inserting a nop in
6717 the branch delay slots.
6718 A short loop can be terminated too early. */
6719 if (mips_opts.arch == CPU_R5900
6720 /* Check if instruction has a parameter, ignore "j $31". */
6721 && (address_expr != NULL)
6722 /* Parameter must be 16 bit. */
6723 && (*reloc_type == BFD_RELOC_16_PCREL_S2)
6724 /* Branch to same segment. */
6725 && (S_GET_SEGMENT(address_expr->X_add_symbol) == now_seg)
6726 /* Branch to same code fragment. */
6727 && (symbol_get_frag(address_expr->X_add_symbol) == frag_now)
6728 /* Can only calculate branch offset if value is known. */
6729 && symbol_constant_p(address_expr->X_add_symbol)
6730 /* Check if branch is really conditional. */
6731 && !((ip->insn_opcode & 0xffff0000) == 0x10000000 /* beq $0,$0 */
6732 || (ip->insn_opcode & 0xffff0000) == 0x04010000 /* bgez $0 */
6733 || (ip->insn_opcode & 0xffff0000) == 0x04110000)) /* bgezal $0 */
6734 {
6735 int distance;
6736 /* Check if loop is shorter than 6 instructions including
6737 branch and delay slot. */
6738 distance = frag_now_fix() - S_GET_VALUE(address_expr->X_add_symbol);
6739 if (distance <= 20)
6740 {
6741 int i;
6742 int rv;
6743
6744 rv = FALSE;
6745 /* When the loop includes branches or jumps,
6746 it is not a short loop. */
6747 for (i = 0; i < (distance / 4); i++)
6748 {
6749 if ((history[i].cleared_p)
6750 || delayed_branch_p(&history[i]))
6751 {
6752 rv = TRUE;
6753 break;
6754 }
6755 }
6756 if (rv == FALSE)
6757 {
6758 /* Insert nop after branch to fix short loop. */
6759 return FALSE;
6760 }
6761 }
6762 }
6763
a4e06468
RS
6764 return TRUE;
6765}
6766
e407c74b
NC
6767/* Decide how we should add IP to the instruction stream.
6768 ADDRESS_EXPR is an operand of the instruction to be used with
6769 RELOC_TYPE. */
a4e06468
RS
6770
6771static enum append_method
e407c74b 6772get_append_method (struct mips_cl_insn *ip, expressionS *address_expr,
26545944 6773 bfd_reloc_code_real_type *reloc_type)
a4e06468 6774{
a4e06468
RS
6775 /* The relaxed version of a macro sequence must be inherently
6776 hazard-free. */
6777 if (mips_relax.sequence == 2)
6778 return APPEND_ADD;
6779
6780 /* We must not dabble with instructions in a ".set norerorder" block. */
6781 if (mips_opts.noreorder)
6782 return APPEND_ADD;
6783
6784 /* Otherwise, it's our responsibility to fill branch delay slots. */
11625dd8 6785 if (delayed_branch_p (ip))
a4e06468 6786 {
e407c74b
NC
6787 if (!branch_likely_p (ip)
6788 && can_swap_branch_p (ip, address_expr, reloc_type))
a4e06468
RS
6789 return APPEND_SWAP;
6790
6791 if (mips_opts.mips16
6792 && ISA_SUPPORTS_MIPS16E
fc76e730 6793 && gpr_read_mask (ip) != 0)
a4e06468
RS
6794 return APPEND_ADD_COMPACT;
6795
6796 return APPEND_ADD_WITH_NOP;
6797 }
6798
a4e06468
RS
6799 return APPEND_ADD;
6800}
6801
ceb94aa5
RS
6802/* IP is a MIPS16 instruction whose opcode we have just changed.
6803 Point IP->insn_mo to the new opcode's definition. */
6804
6805static void
6806find_altered_mips16_opcode (struct mips_cl_insn *ip)
6807{
6808 const struct mips_opcode *mo, *end;
6809
6810 end = &mips16_opcodes[bfd_mips16_num_opcodes];
6811 for (mo = ip->insn_mo; mo < end; mo++)
6812 if ((ip->insn_opcode & mo->mask) == mo->match)
6813 {
6814 ip->insn_mo = mo;
6815 return;
6816 }
6817 abort ();
6818}
6819
df58fc94
RS
6820/* For microMIPS macros, we need to generate a local number label
6821 as the target of branches. */
6822#define MICROMIPS_LABEL_CHAR '\037'
6823static unsigned long micromips_target_label;
6824static char micromips_target_name[32];
6825
6826static char *
6827micromips_label_name (void)
6828{
6829 char *p = micromips_target_name;
6830 char symbol_name_temporary[24];
6831 unsigned long l;
6832 int i;
6833
6834 if (*p)
6835 return p;
6836
6837 i = 0;
6838 l = micromips_target_label;
6839#ifdef LOCAL_LABEL_PREFIX
6840 *p++ = LOCAL_LABEL_PREFIX;
6841#endif
6842 *p++ = 'L';
6843 *p++ = MICROMIPS_LABEL_CHAR;
6844 do
6845 {
6846 symbol_name_temporary[i++] = l % 10 + '0';
6847 l /= 10;
6848 }
6849 while (l != 0);
6850 while (i > 0)
6851 *p++ = symbol_name_temporary[--i];
6852 *p = '\0';
6853
6854 return micromips_target_name;
6855}
6856
6857static void
6858micromips_label_expr (expressionS *label_expr)
6859{
6860 label_expr->X_op = O_symbol;
6861 label_expr->X_add_symbol = symbol_find_or_make (micromips_label_name ());
6862 label_expr->X_add_number = 0;
6863}
6864
6865static void
6866micromips_label_inc (void)
6867{
6868 micromips_target_label++;
6869 *micromips_target_name = '\0';
6870}
6871
6872static void
6873micromips_add_label (void)
6874{
6875 symbolS *s;
6876
6877 s = colon (micromips_label_name ());
6878 micromips_label_inc ();
f3ded42a 6879 S_SET_OTHER (s, ELF_ST_SET_MICROMIPS (S_GET_OTHER (s)));
df58fc94
RS
6880}
6881
6882/* If assembling microMIPS code, then return the microMIPS reloc
6883 corresponding to the requested one if any. Otherwise return
6884 the reloc unchanged. */
6885
6886static bfd_reloc_code_real_type
6887micromips_map_reloc (bfd_reloc_code_real_type reloc)
6888{
6889 static const bfd_reloc_code_real_type relocs[][2] =
6890 {
6891 /* Keep sorted incrementally by the left-hand key. */
6892 { BFD_RELOC_16_PCREL_S2, BFD_RELOC_MICROMIPS_16_PCREL_S1 },
6893 { BFD_RELOC_GPREL16, BFD_RELOC_MICROMIPS_GPREL16 },
6894 { BFD_RELOC_MIPS_JMP, BFD_RELOC_MICROMIPS_JMP },
6895 { BFD_RELOC_HI16, BFD_RELOC_MICROMIPS_HI16 },
6896 { BFD_RELOC_HI16_S, BFD_RELOC_MICROMIPS_HI16_S },
6897 { BFD_RELOC_LO16, BFD_RELOC_MICROMIPS_LO16 },
6898 { BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MICROMIPS_LITERAL },
6899 { BFD_RELOC_MIPS_GOT16, BFD_RELOC_MICROMIPS_GOT16 },
6900 { BFD_RELOC_MIPS_CALL16, BFD_RELOC_MICROMIPS_CALL16 },
6901 { BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MICROMIPS_GOT_HI16 },
6902 { BFD_RELOC_MIPS_GOT_LO16, BFD_RELOC_MICROMIPS_GOT_LO16 },
6903 { BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MICROMIPS_CALL_HI16 },
6904 { BFD_RELOC_MIPS_CALL_LO16, BFD_RELOC_MICROMIPS_CALL_LO16 },
6905 { BFD_RELOC_MIPS_SUB, BFD_RELOC_MICROMIPS_SUB },
6906 { BFD_RELOC_MIPS_GOT_PAGE, BFD_RELOC_MICROMIPS_GOT_PAGE },
6907 { BFD_RELOC_MIPS_GOT_OFST, BFD_RELOC_MICROMIPS_GOT_OFST },
6908 { BFD_RELOC_MIPS_GOT_DISP, BFD_RELOC_MICROMIPS_GOT_DISP },
6909 { BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MICROMIPS_HIGHEST },
6910 { BFD_RELOC_MIPS_HIGHER, BFD_RELOC_MICROMIPS_HIGHER },
6911 { BFD_RELOC_MIPS_SCN_DISP, BFD_RELOC_MICROMIPS_SCN_DISP },
6912 { BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MICROMIPS_TLS_GD },
6913 { BFD_RELOC_MIPS_TLS_LDM, BFD_RELOC_MICROMIPS_TLS_LDM },
6914 { BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 },
6915 { BFD_RELOC_MIPS_TLS_DTPREL_LO16, BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 },
6916 { BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MICROMIPS_TLS_GOTTPREL },
6917 { BFD_RELOC_MIPS_TLS_TPREL_HI16, BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 },
6918 { BFD_RELOC_MIPS_TLS_TPREL_LO16, BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 }
6919 };
6920 bfd_reloc_code_real_type r;
6921 size_t i;
6922
6923 if (!mips_opts.micromips)
6924 return reloc;
6925 for (i = 0; i < ARRAY_SIZE (relocs); i++)
6926 {
6927 r = relocs[i][0];
6928 if (r > reloc)
6929 return reloc;
6930 if (r == reloc)
6931 return relocs[i][1];
6932 }
6933 return reloc;
6934}
6935
b886a2ab
RS
6936/* Try to resolve relocation RELOC against constant OPERAND at assembly time.
6937 Return true on success, storing the resolved value in RESULT. */
6938
6939static bfd_boolean
6940calculate_reloc (bfd_reloc_code_real_type reloc, offsetT operand,
6941 offsetT *result)
6942{
6943 switch (reloc)
6944 {
6945 case BFD_RELOC_MIPS_HIGHEST:
6946 case BFD_RELOC_MICROMIPS_HIGHEST:
6947 *result = ((operand + 0x800080008000ull) >> 48) & 0xffff;
6948 return TRUE;
6949
6950 case BFD_RELOC_MIPS_HIGHER:
6951 case BFD_RELOC_MICROMIPS_HIGHER:
6952 *result = ((operand + 0x80008000ull) >> 32) & 0xffff;
6953 return TRUE;
6954
6955 case BFD_RELOC_HI16_S:
6956 case BFD_RELOC_MICROMIPS_HI16_S:
6957 case BFD_RELOC_MIPS16_HI16_S:
6958 *result = ((operand + 0x8000) >> 16) & 0xffff;
6959 return TRUE;
6960
6961 case BFD_RELOC_HI16:
6962 case BFD_RELOC_MICROMIPS_HI16:
6963 case BFD_RELOC_MIPS16_HI16:
6964 *result = (operand >> 16) & 0xffff;
6965 return TRUE;
6966
6967 case BFD_RELOC_LO16:
6968 case BFD_RELOC_MICROMIPS_LO16:
6969 case BFD_RELOC_MIPS16_LO16:
6970 *result = operand & 0xffff;
6971 return TRUE;
6972
6973 case BFD_RELOC_UNUSED:
6974 *result = operand;
6975 return TRUE;
6976
6977 default:
6978 return FALSE;
6979 }
6980}
6981
71400594
RS
6982/* Output an instruction. IP is the instruction information.
6983 ADDRESS_EXPR is an operand of the instruction to be used with
df58fc94
RS
6984 RELOC_TYPE. EXPANSIONP is true if the instruction is part of
6985 a macro expansion. */
71400594
RS
6986
6987static void
6988append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
df58fc94 6989 bfd_reloc_code_real_type *reloc_type, bfd_boolean expansionp)
71400594 6990{
14fe068b 6991 unsigned long prev_pinfo2, pinfo;
71400594 6992 bfd_boolean relaxed_branch = FALSE;
a4e06468 6993 enum append_method method;
2309ddf2 6994 bfd_boolean relax32;
2b0c8b40 6995 int branch_disp;
71400594 6996
2309ddf2 6997 if (mips_fix_loongson2f && !HAVE_CODE_COMPRESSION)
c67a084a
NC
6998 fix_loongson2f (ip);
6999
738f4d98 7000 file_ase_mips16 |= mips_opts.mips16;
df58fc94 7001 file_ase_micromips |= mips_opts.micromips;
738f4d98 7002
df58fc94 7003 prev_pinfo2 = history[0].insn_mo->pinfo2;
71400594 7004 pinfo = ip->insn_mo->pinfo;
df58fc94
RS
7005
7006 if (mips_opts.micromips
7007 && !expansionp
7008 && (((prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
7009 && micromips_insn_length (ip->insn_mo) != 2)
7010 || ((prev_pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
7011 && micromips_insn_length (ip->insn_mo) != 4)))
1661c76c 7012 as_warn (_("wrong size instruction in a %u-bit branch delay slot"),
df58fc94 7013 (prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0 ? 16 : 32);
71400594 7014
15be625d
CM
7015 if (address_expr == NULL)
7016 ip->complete_p = 1;
b886a2ab
RS
7017 else if (reloc_type[0] <= BFD_RELOC_UNUSED
7018 && reloc_type[1] == BFD_RELOC_UNUSED
7019 && reloc_type[2] == BFD_RELOC_UNUSED
15be625d
CM
7020 && address_expr->X_op == O_constant)
7021 {
15be625d
CM
7022 switch (*reloc_type)
7023 {
15be625d 7024 case BFD_RELOC_MIPS_JMP:
df58fc94
RS
7025 {
7026 int shift;
7027
7028 shift = mips_opts.micromips ? 1 : 2;
7029 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7030 as_bad (_("jump to misaligned address (0x%lx)"),
7031 (unsigned long) address_expr->X_add_number);
7032 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7033 & 0x3ffffff);
335574df 7034 ip->complete_p = 1;
df58fc94 7035 }
15be625d
CM
7036 break;
7037
7038 case BFD_RELOC_MIPS16_JMP:
7039 if ((address_expr->X_add_number & 3) != 0)
7040 as_bad (_("jump to misaligned address (0x%lx)"),
7041 (unsigned long) address_expr->X_add_number);
7042 ip->insn_opcode |=
7043 (((address_expr->X_add_number & 0x7c0000) << 3)
7044 | ((address_expr->X_add_number & 0xf800000) >> 7)
7045 | ((address_expr->X_add_number & 0x3fffc) >> 2));
335574df 7046 ip->complete_p = 1;
15be625d
CM
7047 break;
7048
7049 case BFD_RELOC_16_PCREL_S2:
df58fc94
RS
7050 {
7051 int shift;
7052
7053 shift = mips_opts.micromips ? 1 : 2;
7054 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7055 as_bad (_("branch to misaligned address (0x%lx)"),
7056 (unsigned long) address_expr->X_add_number);
7057 if (!mips_relax_branch)
7058 {
7059 if ((address_expr->X_add_number + (1 << (shift + 15)))
7060 & ~((1 << (shift + 16)) - 1))
7061 as_bad (_("branch address range overflow (0x%lx)"),
7062 (unsigned long) address_expr->X_add_number);
7063 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7064 & 0xffff);
7065 }
df58fc94 7066 }
15be625d
CM
7067 break;
7068
7361da2c
AB
7069 case BFD_RELOC_MIPS_21_PCREL_S2:
7070 {
7071 int shift;
7072
7073 shift = 2;
7074 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7075 as_bad (_("branch to misaligned address (0x%lx)"),
7076 (unsigned long) address_expr->X_add_number);
7077 if ((address_expr->X_add_number + (1 << (shift + 20)))
7078 & ~((1 << (shift + 21)) - 1))
7079 as_bad (_("branch address range overflow (0x%lx)"),
7080 (unsigned long) address_expr->X_add_number);
7081 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7082 & 0x1fffff);
7083 }
7084 break;
7085
7086 case BFD_RELOC_MIPS_26_PCREL_S2:
7087 {
7088 int shift;
7089
7090 shift = 2;
7091 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
7092 as_bad (_("branch to misaligned address (0x%lx)"),
7093 (unsigned long) address_expr->X_add_number);
7094 if ((address_expr->X_add_number + (1 << (shift + 25)))
7095 & ~((1 << (shift + 26)) - 1))
7096 as_bad (_("branch address range overflow (0x%lx)"),
7097 (unsigned long) address_expr->X_add_number);
7098 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
7099 & 0x3ffffff);
7100 }
7101 break;
7102
15be625d 7103 default:
b886a2ab
RS
7104 {
7105 offsetT value;
7106
7107 if (calculate_reloc (*reloc_type, address_expr->X_add_number,
7108 &value))
7109 {
7110 ip->insn_opcode |= value & 0xffff;
7111 ip->complete_p = 1;
7112 }
7113 }
7114 break;
7115 }
15be625d
CM
7116 }
7117
71400594
RS
7118 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
7119 {
7120 /* There are a lot of optimizations we could do that we don't.
7121 In particular, we do not, in general, reorder instructions.
7122 If you use gcc with optimization, it will reorder
7123 instructions and generally do much more optimization then we
7124 do here; repeating all that work in the assembler would only
7125 benefit hand written assembly code, and does not seem worth
7126 it. */
7127 int nops = (mips_optimize == 0
932d1a1b
RS
7128 ? nops_for_insn (0, history, NULL)
7129 : nops_for_insn_or_target (0, history, ip));
71400594 7130 if (nops > 0)
252b5132
RH
7131 {
7132 fragS *old_frag;
7133 unsigned long old_frag_offset;
7134 int i;
252b5132
RH
7135
7136 old_frag = frag_now;
7137 old_frag_offset = frag_now_fix ();
7138
7139 for (i = 0; i < nops; i++)
14fe068b
RS
7140 add_fixed_insn (NOP_INSN);
7141 insert_into_history (0, nops, NOP_INSN);
252b5132
RH
7142
7143 if (listing)
7144 {
7145 listing_prev_line ();
7146 /* We may be at the start of a variant frag. In case we
7147 are, make sure there is enough space for the frag
7148 after the frags created by listing_prev_line. The
7149 argument to frag_grow here must be at least as large
7150 as the argument to all other calls to frag_grow in
7151 this file. We don't have to worry about being in the
7152 middle of a variant frag, because the variants insert
7153 all needed nop instructions themselves. */
7154 frag_grow (40);
7155 }
7156
462427c4 7157 mips_move_text_labels ();
252b5132
RH
7158
7159#ifndef NO_ECOFF_DEBUGGING
7160 if (ECOFF_DEBUGGING)
7161 ecoff_fix_loc (old_frag, old_frag_offset);
7162#endif
7163 }
71400594
RS
7164 }
7165 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
7166 {
932d1a1b
RS
7167 int nops;
7168
7169 /* Work out how many nops in prev_nop_frag are needed by IP,
7170 ignoring hazards generated by the first prev_nop_frag_since
7171 instructions. */
7172 nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
9c2799c2 7173 gas_assert (nops <= prev_nop_frag_holds);
252b5132 7174
71400594
RS
7175 /* Enforce NOPS as a minimum. */
7176 if (nops > prev_nop_frag_required)
7177 prev_nop_frag_required = nops;
252b5132 7178
71400594
RS
7179 if (prev_nop_frag_holds == prev_nop_frag_required)
7180 {
7181 /* Settle for the current number of nops. Update the history
7182 accordingly (for the benefit of any future .set reorder code). */
7183 prev_nop_frag = NULL;
7184 insert_into_history (prev_nop_frag_since,
7185 prev_nop_frag_holds, NOP_INSN);
7186 }
7187 else
7188 {
7189 /* Allow this instruction to replace one of the nops that was
7190 tentatively added to prev_nop_frag. */
df58fc94 7191 prev_nop_frag->fr_fix -= NOP_INSN_SIZE;
71400594
RS
7192 prev_nop_frag_holds--;
7193 prev_nop_frag_since++;
252b5132
RH
7194 }
7195 }
7196
e407c74b 7197 method = get_append_method (ip, address_expr, reloc_type);
2b0c8b40 7198 branch_disp = method == APPEND_SWAP ? insn_length (history) : 0;
a4e06468 7199
e410add4
RS
7200 dwarf2_emit_insn (0);
7201 /* We want MIPS16 and microMIPS debug info to use ISA-encoded addresses,
7202 so "move" the instruction address accordingly.
7203
7204 Also, it doesn't seem appropriate for the assembler to reorder .loc
7205 entries. If this instruction is a branch that we are going to swap
7206 with the previous instruction, the two instructions should be
7207 treated as a unit, and the debug information for both instructions
7208 should refer to the start of the branch sequence. Using the
7209 current position is certainly wrong when swapping a 32-bit branch
7210 and a 16-bit delay slot, since the current position would then be
7211 in the middle of a branch. */
7212 dwarf2_move_insn ((HAVE_CODE_COMPRESSION ? 1 : 0) - branch_disp);
58e2ea4d 7213
df58fc94
RS
7214 relax32 = (mips_relax_branch
7215 /* Don't try branch relaxation within .set nomacro, or within
7216 .set noat if we use $at for PIC computations. If it turns
7217 out that the branch was out-of-range, we'll get an error. */
7218 && !mips_opts.warn_about_macros
7219 && (mips_opts.at || mips_pic == NO_PIC)
3bf0dbfb
MR
7220 /* Don't relax BPOSGE32/64 or BC1ANY2T/F and BC1ANY4T/F
7221 as they have no complementing branches. */
7222 && !(ip->insn_mo->ase & (ASE_MIPS3D | ASE_DSP64 | ASE_DSP)));
df58fc94
RS
7223
7224 if (!HAVE_CODE_COMPRESSION
7225 && address_expr
7226 && relax32
0b25d3e6 7227 && *reloc_type == BFD_RELOC_16_PCREL_S2
11625dd8 7228 && delayed_branch_p (ip))
4a6a3df4 7229 {
895921c9 7230 relaxed_branch = TRUE;
1e915849
RS
7231 add_relaxed_insn (ip, (relaxed_branch_length
7232 (NULL, NULL,
11625dd8
RS
7233 uncond_branch_p (ip) ? -1
7234 : branch_likely_p (ip) ? 1
1e915849
RS
7235 : 0)), 4,
7236 RELAX_BRANCH_ENCODE
66b3e8da 7237 (AT,
11625dd8
RS
7238 uncond_branch_p (ip),
7239 branch_likely_p (ip),
1e915849
RS
7240 pinfo & INSN_WRITE_GPR_31,
7241 0),
7242 address_expr->X_add_symbol,
7243 address_expr->X_add_number);
4a6a3df4
AO
7244 *reloc_type = BFD_RELOC_UNUSED;
7245 }
df58fc94
RS
7246 else if (mips_opts.micromips
7247 && address_expr
7248 && ((relax32 && *reloc_type == BFD_RELOC_16_PCREL_S2)
7249 || *reloc_type > BFD_RELOC_UNUSED)
40209cad
MR
7250 && (delayed_branch_p (ip) || compact_branch_p (ip))
7251 /* Don't try branch relaxation when users specify
7252 16-bit/32-bit instructions. */
7253 && !forced_insn_length)
df58fc94
RS
7254 {
7255 bfd_boolean relax16 = *reloc_type > BFD_RELOC_UNUSED;
7256 int type = relax16 ? *reloc_type - BFD_RELOC_UNUSED : 0;
11625dd8
RS
7257 int uncond = uncond_branch_p (ip) ? -1 : 0;
7258 int compact = compact_branch_p (ip);
df58fc94
RS
7259 int al = pinfo & INSN_WRITE_GPR_31;
7260 int length32;
7261
7262 gas_assert (address_expr != NULL);
7263 gas_assert (!mips_relax.sequence);
7264
2b0c8b40 7265 relaxed_branch = TRUE;
df58fc94
RS
7266 length32 = relaxed_micromips_32bit_branch_length (NULL, NULL, uncond);
7267 add_relaxed_insn (ip, relax32 ? length32 : 4, relax16 ? 2 : 4,
40209cad
MR
7268 RELAX_MICROMIPS_ENCODE (type, AT, uncond, compact, al,
7269 relax32, 0, 0),
df58fc94
RS
7270 address_expr->X_add_symbol,
7271 address_expr->X_add_number);
7272 *reloc_type = BFD_RELOC_UNUSED;
7273 }
7274 else if (mips_opts.mips16 && *reloc_type > BFD_RELOC_UNUSED)
252b5132
RH
7275 {
7276 /* We need to set up a variant frag. */
df58fc94 7277 gas_assert (address_expr != NULL);
1e915849
RS
7278 add_relaxed_insn (ip, 4, 0,
7279 RELAX_MIPS16_ENCODE
7280 (*reloc_type - BFD_RELOC_UNUSED,
df58fc94 7281 forced_insn_length == 2, forced_insn_length == 4,
11625dd8 7282 delayed_branch_p (&history[0]),
1e915849
RS
7283 history[0].mips16_absolute_jump_p),
7284 make_expr_symbol (address_expr), 0);
252b5132 7285 }
5c04167a 7286 else if (mips_opts.mips16 && insn_length (ip) == 2)
9497f5ac 7287 {
11625dd8 7288 if (!delayed_branch_p (ip))
b8ee1a6e
DU
7289 /* Make sure there is enough room to swap this instruction with
7290 a following jump instruction. */
7291 frag_grow (6);
1e915849 7292 add_fixed_insn (ip);
252b5132
RH
7293 }
7294 else
7295 {
7296 if (mips_opts.mips16
7297 && mips_opts.noreorder
11625dd8 7298 && delayed_branch_p (&history[0]))
252b5132
RH
7299 as_warn (_("extended instruction in delay slot"));
7300
4d7206a2
RS
7301 if (mips_relax.sequence)
7302 {
7303 /* If we've reached the end of this frag, turn it into a variant
7304 frag and record the information for the instructions we've
7305 written so far. */
7306 if (frag_room () < 4)
7307 relax_close_frag ();
df58fc94 7308 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (ip);
4d7206a2
RS
7309 }
7310
584892a6 7311 if (mips_relax.sequence != 2)
df58fc94
RS
7312 {
7313 if (mips_macro_warning.first_insn_sizes[0] == 0)
7314 mips_macro_warning.first_insn_sizes[0] = insn_length (ip);
7315 mips_macro_warning.sizes[0] += insn_length (ip);
7316 mips_macro_warning.insns[0]++;
7317 }
584892a6 7318 if (mips_relax.sequence != 1)
df58fc94
RS
7319 {
7320 if (mips_macro_warning.first_insn_sizes[1] == 0)
7321 mips_macro_warning.first_insn_sizes[1] = insn_length (ip);
7322 mips_macro_warning.sizes[1] += insn_length (ip);
7323 mips_macro_warning.insns[1]++;
7324 }
584892a6 7325
1e915849
RS
7326 if (mips_opts.mips16)
7327 {
7328 ip->fixed_p = 1;
7329 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
7330 }
7331 add_fixed_insn (ip);
252b5132
RH
7332 }
7333
9fe77896 7334 if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
252b5132 7335 {
df58fc94 7336 bfd_reloc_code_real_type final_type[3];
2309ddf2 7337 reloc_howto_type *howto0;
9fe77896
RS
7338 reloc_howto_type *howto;
7339 int i;
34ce925e 7340
df58fc94
RS
7341 /* Perform any necessary conversion to microMIPS relocations
7342 and find out how many relocations there actually are. */
7343 for (i = 0; i < 3 && reloc_type[i] != BFD_RELOC_UNUSED; i++)
7344 final_type[i] = micromips_map_reloc (reloc_type[i]);
7345
9fe77896
RS
7346 /* In a compound relocation, it is the final (outermost)
7347 operator that determines the relocated field. */
2309ddf2 7348 howto = howto0 = bfd_reloc_type_lookup (stdoutput, final_type[i - 1]);
e8044f35
RS
7349 if (!howto)
7350 abort ();
2309ddf2
MR
7351
7352 if (i > 1)
7353 howto0 = bfd_reloc_type_lookup (stdoutput, final_type[0]);
9fe77896
RS
7354 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
7355 bfd_get_reloc_size (howto),
7356 address_expr,
2309ddf2
MR
7357 howto0 && howto0->pc_relative,
7358 final_type[0]);
9fe77896
RS
7359
7360 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
2309ddf2 7361 if (final_type[0] == BFD_RELOC_MIPS16_JMP && ip->fixp[0]->fx_addsy)
9fe77896
RS
7362 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
7363
7364 /* These relocations can have an addend that won't fit in
7365 4 octets for 64bit assembly. */
bad1aba3 7366 if (GPR_SIZE == 64
9fe77896
RS
7367 && ! howto->partial_inplace
7368 && (reloc_type[0] == BFD_RELOC_16
7369 || reloc_type[0] == BFD_RELOC_32
7370 || reloc_type[0] == BFD_RELOC_MIPS_JMP
7371 || reloc_type[0] == BFD_RELOC_GPREL16
7372 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
7373 || reloc_type[0] == BFD_RELOC_GPREL32
7374 || reloc_type[0] == BFD_RELOC_64
7375 || reloc_type[0] == BFD_RELOC_CTOR
7376 || reloc_type[0] == BFD_RELOC_MIPS_SUB
7377 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
7378 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
7379 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
7380 || reloc_type[0] == BFD_RELOC_MIPS_REL16
7381 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
7382 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
7383 || hi16_reloc_p (reloc_type[0])
7384 || lo16_reloc_p (reloc_type[0])))
7385 ip->fixp[0]->fx_no_overflow = 1;
7386
ddaf2c41
MR
7387 /* These relocations can have an addend that won't fit in 2 octets. */
7388 if (reloc_type[0] == BFD_RELOC_MICROMIPS_7_PCREL_S1
7389 || reloc_type[0] == BFD_RELOC_MICROMIPS_10_PCREL_S1)
7390 ip->fixp[0]->fx_no_overflow = 1;
7391
9fe77896
RS
7392 if (mips_relax.sequence)
7393 {
7394 if (mips_relax.first_fixup == 0)
7395 mips_relax.first_fixup = ip->fixp[0];
7396 }
7397 else if (reloc_needs_lo_p (*reloc_type))
7398 {
7399 struct mips_hi_fixup *hi_fixup;
7400
7401 /* Reuse the last entry if it already has a matching %lo. */
7402 hi_fixup = mips_hi_fixup_list;
7403 if (hi_fixup == 0
7404 || !fixup_has_matching_lo_p (hi_fixup->fixp))
4d7206a2 7405 {
9fe77896
RS
7406 hi_fixup = ((struct mips_hi_fixup *)
7407 xmalloc (sizeof (struct mips_hi_fixup)));
7408 hi_fixup->next = mips_hi_fixup_list;
7409 mips_hi_fixup_list = hi_fixup;
4d7206a2 7410 }
9fe77896
RS
7411 hi_fixup->fixp = ip->fixp[0];
7412 hi_fixup->seg = now_seg;
7413 }
252b5132 7414
9fe77896
RS
7415 /* Add fixups for the second and third relocations, if given.
7416 Note that the ABI allows the second relocation to be
7417 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
7418 moment we only use RSS_UNDEF, but we could add support
7419 for the others if it ever becomes necessary. */
7420 for (i = 1; i < 3; i++)
7421 if (reloc_type[i] != BFD_RELOC_UNUSED)
7422 {
7423 ip->fixp[i] = fix_new (ip->frag, ip->where,
7424 ip->fixp[0]->fx_size, NULL, 0,
df58fc94 7425 FALSE, final_type[i]);
f6688943 7426
9fe77896
RS
7427 /* Use fx_tcbit to mark compound relocs. */
7428 ip->fixp[0]->fx_tcbit = 1;
7429 ip->fixp[i]->fx_tcbit = 1;
7430 }
252b5132 7431 }
1e915849 7432 install_insn (ip);
252b5132
RH
7433
7434 /* Update the register mask information. */
4c260379
RS
7435 mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
7436 mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
252b5132 7437
a4e06468 7438 switch (method)
252b5132 7439 {
a4e06468
RS
7440 case APPEND_ADD:
7441 insert_into_history (0, 1, ip);
7442 break;
7443
7444 case APPEND_ADD_WITH_NOP:
14fe068b
RS
7445 {
7446 struct mips_cl_insn *nop;
7447
7448 insert_into_history (0, 1, ip);
7449 nop = get_delay_slot_nop (ip);
7450 add_fixed_insn (nop);
7451 insert_into_history (0, 1, nop);
7452 if (mips_relax.sequence)
7453 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (nop);
7454 }
a4e06468
RS
7455 break;
7456
7457 case APPEND_ADD_COMPACT:
7458 /* Convert MIPS16 jr/jalr into a "compact" jump. */
7459 gas_assert (mips_opts.mips16);
7460 ip->insn_opcode |= 0x0080;
7461 find_altered_mips16_opcode (ip);
7462 install_insn (ip);
7463 insert_into_history (0, 1, ip);
7464 break;
7465
7466 case APPEND_SWAP:
7467 {
7468 struct mips_cl_insn delay = history[0];
7469 if (mips_opts.mips16)
7470 {
7471 know (delay.frag == ip->frag);
7472 move_insn (ip, delay.frag, delay.where);
7473 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
7474 }
464ab0e5 7475 else if (relaxed_branch || delay.frag != ip->frag)
a4e06468
RS
7476 {
7477 /* Add the delay slot instruction to the end of the
7478 current frag and shrink the fixed part of the
7479 original frag. If the branch occupies the tail of
7480 the latter, move it backwards to cover the gap. */
2b0c8b40 7481 delay.frag->fr_fix -= branch_disp;
a4e06468 7482 if (delay.frag == ip->frag)
2b0c8b40 7483 move_insn (ip, ip->frag, ip->where - branch_disp);
a4e06468
RS
7484 add_fixed_insn (&delay);
7485 }
7486 else
7487 {
2b0c8b40
MR
7488 move_insn (&delay, ip->frag,
7489 ip->where - branch_disp + insn_length (ip));
a4e06468
RS
7490 move_insn (ip, history[0].frag, history[0].where);
7491 }
7492 history[0] = *ip;
7493 delay.fixed_p = 1;
7494 insert_into_history (0, 1, &delay);
7495 }
7496 break;
252b5132
RH
7497 }
7498
13408f1e 7499 /* If we have just completed an unconditional branch, clear the history. */
11625dd8
RS
7500 if ((delayed_branch_p (&history[1]) && uncond_branch_p (&history[1]))
7501 || (compact_branch_p (&history[0]) && uncond_branch_p (&history[0])))
e407c74b
NC
7502 {
7503 unsigned int i;
7504
79850f26 7505 mips_no_prev_insn ();
13408f1e 7506
e407c74b 7507 for (i = 0; i < ARRAY_SIZE (history); i++)
79850f26 7508 history[i].cleared_p = 1;
e407c74b
NC
7509 }
7510
df58fc94
RS
7511 /* We need to emit a label at the end of branch-likely macros. */
7512 if (emit_branch_likely_macro)
7513 {
7514 emit_branch_likely_macro = FALSE;
7515 micromips_add_label ();
7516 }
7517
252b5132
RH
7518 /* We just output an insn, so the next one doesn't have a label. */
7519 mips_clear_insn_labels ();
252b5132
RH
7520}
7521
e407c74b
NC
7522/* Forget that there was any previous instruction or label.
7523 When BRANCH is true, the branch history is also flushed. */
252b5132
RH
7524
7525static void
7d10b47d 7526mips_no_prev_insn (void)
252b5132 7527{
7d10b47d
RS
7528 prev_nop_frag = NULL;
7529 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
252b5132
RH
7530 mips_clear_insn_labels ();
7531}
7532
7d10b47d
RS
7533/* This function must be called before we emit something other than
7534 instructions. It is like mips_no_prev_insn except that it inserts
7535 any NOPS that might be needed by previous instructions. */
252b5132 7536
7d10b47d
RS
7537void
7538mips_emit_delays (void)
252b5132
RH
7539{
7540 if (! mips_opts.noreorder)
7541 {
932d1a1b 7542 int nops = nops_for_insn (0, history, NULL);
252b5132
RH
7543 if (nops > 0)
7544 {
7d10b47d
RS
7545 while (nops-- > 0)
7546 add_fixed_insn (NOP_INSN);
462427c4 7547 mips_move_text_labels ();
7d10b47d
RS
7548 }
7549 }
7550 mips_no_prev_insn ();
7551}
7552
7553/* Start a (possibly nested) noreorder block. */
7554
7555static void
7556start_noreorder (void)
7557{
7558 if (mips_opts.noreorder == 0)
7559 {
7560 unsigned int i;
7561 int nops;
7562
7563 /* None of the instructions before the .set noreorder can be moved. */
7564 for (i = 0; i < ARRAY_SIZE (history); i++)
7565 history[i].fixed_p = 1;
7566
7567 /* Insert any nops that might be needed between the .set noreorder
7568 block and the previous instructions. We will later remove any
7569 nops that turn out not to be needed. */
932d1a1b 7570 nops = nops_for_insn (0, history, NULL);
7d10b47d
RS
7571 if (nops > 0)
7572 {
7573 if (mips_optimize != 0)
252b5132
RH
7574 {
7575 /* Record the frag which holds the nop instructions, so
7576 that we can remove them if we don't need them. */
df58fc94 7577 frag_grow (nops * NOP_INSN_SIZE);
252b5132
RH
7578 prev_nop_frag = frag_now;
7579 prev_nop_frag_holds = nops;
7580 prev_nop_frag_required = 0;
7581 prev_nop_frag_since = 0;
7582 }
7583
7584 for (; nops > 0; --nops)
1e915849 7585 add_fixed_insn (NOP_INSN);
252b5132 7586
7d10b47d
RS
7587 /* Move on to a new frag, so that it is safe to simply
7588 decrease the size of prev_nop_frag. */
7589 frag_wane (frag_now);
7590 frag_new (0);
462427c4 7591 mips_move_text_labels ();
252b5132 7592 }
df58fc94 7593 mips_mark_labels ();
7d10b47d 7594 mips_clear_insn_labels ();
252b5132 7595 }
7d10b47d
RS
7596 mips_opts.noreorder++;
7597 mips_any_noreorder = 1;
7598}
252b5132 7599
7d10b47d 7600/* End a nested noreorder block. */
252b5132 7601
7d10b47d
RS
7602static void
7603end_noreorder (void)
7604{
7605 mips_opts.noreorder--;
7606 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
7607 {
7608 /* Commit to inserting prev_nop_frag_required nops and go back to
7609 handling nop insertion the .set reorder way. */
7610 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
df58fc94 7611 * NOP_INSN_SIZE);
7d10b47d
RS
7612 insert_into_history (prev_nop_frag_since,
7613 prev_nop_frag_required, NOP_INSN);
7614 prev_nop_frag = NULL;
7615 }
252b5132
RH
7616}
7617
97d87491
RS
7618/* Sign-extend 32-bit mode constants that have bit 31 set and all
7619 higher bits unset. */
7620
7621static void
7622normalize_constant_expr (expressionS *ex)
7623{
7624 if (ex->X_op == O_constant
7625 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
7626 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
7627 - 0x80000000);
7628}
7629
7630/* Sign-extend 32-bit mode address offsets that have bit 31 set and
7631 all higher bits unset. */
7632
7633static void
7634normalize_address_expr (expressionS *ex)
7635{
7636 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
7637 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
7638 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
7639 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
7640 - 0x80000000);
7641}
7642
7643/* Try to match TOKENS against OPCODE, storing the result in INSN.
7644 Return true if the match was successful.
7645
7646 OPCODE_EXTRA is a value that should be ORed into the opcode
7647 (used for VU0 channel suffixes, etc.). MORE_ALTS is true if
7648 there are more alternatives after OPCODE and SOFT_MATCH is
7649 as for mips_arg_info. */
7650
7651static bfd_boolean
7652match_insn (struct mips_cl_insn *insn, const struct mips_opcode *opcode,
7653 struct mips_operand_token *tokens, unsigned int opcode_extra,
60f20e8b 7654 bfd_boolean lax_match, bfd_boolean complete_p)
97d87491
RS
7655{
7656 const char *args;
7657 struct mips_arg_info arg;
7658 const struct mips_operand *operand;
7659 char c;
7660
7661 imm_expr.X_op = O_absent;
97d87491
RS
7662 offset_expr.X_op = O_absent;
7663 offset_reloc[0] = BFD_RELOC_UNUSED;
7664 offset_reloc[1] = BFD_RELOC_UNUSED;
7665 offset_reloc[2] = BFD_RELOC_UNUSED;
7666
7667 create_insn (insn, opcode);
60f20e8b
RS
7668 /* When no opcode suffix is specified, assume ".xyzw". */
7669 if ((opcode->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX) != 0 && opcode_extra == 0)
7670 insn->insn_opcode |= 0xf << mips_vu0_channel_mask.lsb;
7671 else
7672 insn->insn_opcode |= opcode_extra;
97d87491
RS
7673 memset (&arg, 0, sizeof (arg));
7674 arg.insn = insn;
7675 arg.token = tokens;
7676 arg.argnum = 1;
7677 arg.last_regno = ILLEGAL_REG;
7678 arg.dest_regno = ILLEGAL_REG;
60f20e8b 7679 arg.lax_match = lax_match;
97d87491
RS
7680 for (args = opcode->args;; ++args)
7681 {
7682 if (arg.token->type == OT_END)
7683 {
7684 /* Handle unary instructions in which only one operand is given.
7685 The source is then the same as the destination. */
7686 if (arg.opnum == 1 && *args == ',')
7687 {
7688 operand = (mips_opts.micromips
7689 ? decode_micromips_operand (args + 1)
7690 : decode_mips_operand (args + 1));
7691 if (operand && mips_optional_operand_p (operand))
7692 {
7693 arg.token = tokens;
7694 arg.argnum = 1;
7695 continue;
7696 }
7697 }
7698
7699 /* Treat elided base registers as $0. */
7700 if (strcmp (args, "(b)") == 0)
7701 args += 3;
7702
7703 if (args[0] == '+')
7704 switch (args[1])
7705 {
7706 case 'K':
7707 case 'N':
7708 /* The register suffix is optional. */
7709 args += 2;
7710 break;
7711 }
7712
7713 /* Fail the match if there were too few operands. */
7714 if (*args)
7715 return FALSE;
7716
7717 /* Successful match. */
60f20e8b
RS
7718 if (!complete_p)
7719 return TRUE;
e3de51ce 7720 clear_insn_error ();
97d87491
RS
7721 if (arg.dest_regno == arg.last_regno
7722 && strncmp (insn->insn_mo->name, "jalr", 4) == 0)
7723 {
7724 if (arg.opnum == 2)
e3de51ce 7725 set_insn_error
1661c76c 7726 (0, _("source and destination must be different"));
97d87491 7727 else if (arg.last_regno == 31)
e3de51ce 7728 set_insn_error
1661c76c 7729 (0, _("a destination register must be supplied"));
97d87491 7730 }
173d3447
CF
7731 else if (arg.last_regno == 31
7732 && (strncmp (insn->insn_mo->name, "bltzal", 6) == 0
7733 || strncmp (insn->insn_mo->name, "bgezal", 6) == 0))
7734 set_insn_error (0, _("the source register must not be $31"));
97d87491
RS
7735 check_completed_insn (&arg);
7736 return TRUE;
7737 }
7738
7739 /* Fail the match if the line has too many operands. */
7740 if (*args == 0)
7741 return FALSE;
7742
7743 /* Handle characters that need to match exactly. */
7744 if (*args == '(' || *args == ')' || *args == ',')
7745 {
7746 if (match_char (&arg, *args))
7747 continue;
7748 return FALSE;
7749 }
7750 if (*args == '#')
7751 {
7752 ++args;
7753 if (arg.token->type == OT_DOUBLE_CHAR
7754 && arg.token->u.ch == *args)
7755 {
7756 ++arg.token;
7757 continue;
7758 }
7759 return FALSE;
7760 }
7761
7762 /* Handle special macro operands. Work out the properties of
7763 other operands. */
7764 arg.opnum += 1;
97d87491
RS
7765 switch (*args)
7766 {
7361da2c
AB
7767 case '-':
7768 switch (args[1])
7769 {
7770 case 'A':
7771 *offset_reloc = BFD_RELOC_MIPS_19_PCREL_S2;
7772 break;
7773
7774 case 'B':
7775 *offset_reloc = BFD_RELOC_MIPS_18_PCREL_S3;
7776 break;
7777 }
7778 break;
7779
97d87491
RS
7780 case '+':
7781 switch (args[1])
7782 {
97d87491
RS
7783 case 'i':
7784 *offset_reloc = BFD_RELOC_MIPS_JMP;
7785 break;
7361da2c
AB
7786
7787 case '\'':
7788 *offset_reloc = BFD_RELOC_MIPS_26_PCREL_S2;
7789 break;
7790
7791 case '\"':
7792 *offset_reloc = BFD_RELOC_MIPS_21_PCREL_S2;
7793 break;
97d87491
RS
7794 }
7795 break;
7796
97d87491 7797 case 'I':
1a00e612
RS
7798 if (!match_const_int (&arg, &imm_expr.X_add_number))
7799 return FALSE;
7800 imm_expr.X_op = O_constant;
bad1aba3 7801 if (GPR_SIZE == 32)
97d87491
RS
7802 normalize_constant_expr (&imm_expr);
7803 continue;
7804
7805 case 'A':
7806 if (arg.token->type == OT_CHAR && arg.token->u.ch == '(')
7807 {
7808 /* Assume that the offset has been elided and that what
7809 we saw was a base register. The match will fail later
7810 if that assumption turns out to be wrong. */
7811 offset_expr.X_op = O_constant;
7812 offset_expr.X_add_number = 0;
7813 }
97d87491 7814 else
1a00e612
RS
7815 {
7816 if (!match_expression (&arg, &offset_expr, offset_reloc))
7817 return FALSE;
7818 normalize_address_expr (&offset_expr);
7819 }
97d87491
RS
7820 continue;
7821
7822 case 'F':
7823 if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7824 8, TRUE))
1a00e612 7825 return FALSE;
97d87491
RS
7826 continue;
7827
7828 case 'L':
7829 if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7830 8, FALSE))
1a00e612 7831 return FALSE;
97d87491
RS
7832 continue;
7833
7834 case 'f':
7835 if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7836 4, TRUE))
1a00e612 7837 return FALSE;
97d87491
RS
7838 continue;
7839
7840 case 'l':
7841 if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7842 4, FALSE))
1a00e612 7843 return FALSE;
97d87491
RS
7844 continue;
7845
97d87491
RS
7846 case 'p':
7847 *offset_reloc = BFD_RELOC_16_PCREL_S2;
7848 break;
7849
7850 case 'a':
7851 *offset_reloc = BFD_RELOC_MIPS_JMP;
7852 break;
7853
7854 case 'm':
7855 gas_assert (mips_opts.micromips);
7856 c = args[1];
7857 switch (c)
7858 {
7859 case 'D':
7860 case 'E':
7861 if (!forced_insn_length)
7862 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
7863 else if (c == 'D')
7864 *offset_reloc = BFD_RELOC_MICROMIPS_10_PCREL_S1;
7865 else
7866 *offset_reloc = BFD_RELOC_MICROMIPS_7_PCREL_S1;
7867 break;
7868 }
7869 break;
7870 }
7871
7872 operand = (mips_opts.micromips
7873 ? decode_micromips_operand (args)
7874 : decode_mips_operand (args));
7875 if (!operand)
7876 abort ();
7877
7878 /* Skip prefixes. */
7361da2c 7879 if (*args == '+' || *args == 'm' || *args == '-')
97d87491
RS
7880 args++;
7881
7882 if (mips_optional_operand_p (operand)
7883 && args[1] == ','
7884 && (arg.token[0].type != OT_REG
7885 || arg.token[1].type == OT_END))
7886 {
7887 /* Assume that the register has been elided and is the
7888 same as the first operand. */
7889 arg.token = tokens;
7890 arg.argnum = 1;
7891 }
7892
7893 if (!match_operand (&arg, operand))
7894 return FALSE;
7895 }
7896}
7897
7898/* Like match_insn, but for MIPS16. */
7899
7900static bfd_boolean
7901match_mips16_insn (struct mips_cl_insn *insn, const struct mips_opcode *opcode,
1a00e612 7902 struct mips_operand_token *tokens)
97d87491
RS
7903{
7904 const char *args;
7905 const struct mips_operand *operand;
7906 const struct mips_operand *ext_operand;
7907 struct mips_arg_info arg;
7908 int relax_char;
7909
7910 create_insn (insn, opcode);
7911 imm_expr.X_op = O_absent;
97d87491
RS
7912 offset_expr.X_op = O_absent;
7913 offset_reloc[0] = BFD_RELOC_UNUSED;
7914 offset_reloc[1] = BFD_RELOC_UNUSED;
7915 offset_reloc[2] = BFD_RELOC_UNUSED;
7916 relax_char = 0;
7917
7918 memset (&arg, 0, sizeof (arg));
7919 arg.insn = insn;
7920 arg.token = tokens;
7921 arg.argnum = 1;
7922 arg.last_regno = ILLEGAL_REG;
7923 arg.dest_regno = ILLEGAL_REG;
97d87491
RS
7924 relax_char = 0;
7925 for (args = opcode->args;; ++args)
7926 {
7927 int c;
7928
7929 if (arg.token->type == OT_END)
7930 {
7931 offsetT value;
7932
7933 /* Handle unary instructions in which only one operand is given.
7934 The source is then the same as the destination. */
7935 if (arg.opnum == 1 && *args == ',')
7936 {
7937 operand = decode_mips16_operand (args[1], FALSE);
7938 if (operand && mips_optional_operand_p (operand))
7939 {
7940 arg.token = tokens;
7941 arg.argnum = 1;
7942 continue;
7943 }
7944 }
7945
7946 /* Fail the match if there were too few operands. */
7947 if (*args)
7948 return FALSE;
7949
7950 /* Successful match. Stuff the immediate value in now, if
7951 we can. */
e3de51ce 7952 clear_insn_error ();
97d87491
RS
7953 if (opcode->pinfo == INSN_MACRO)
7954 {
7955 gas_assert (relax_char == 0 || relax_char == 'p');
7956 gas_assert (*offset_reloc == BFD_RELOC_UNUSED);
7957 }
7958 else if (relax_char
7959 && offset_expr.X_op == O_constant
7960 && calculate_reloc (*offset_reloc,
7961 offset_expr.X_add_number,
7962 &value))
7963 {
7964 mips16_immed (NULL, 0, relax_char, *offset_reloc, value,
7965 forced_insn_length, &insn->insn_opcode);
7966 offset_expr.X_op = O_absent;
7967 *offset_reloc = BFD_RELOC_UNUSED;
7968 }
7969 else if (relax_char && *offset_reloc != BFD_RELOC_UNUSED)
7970 {
7971 if (forced_insn_length == 2)
e3de51ce 7972 set_insn_error (0, _("invalid unextended operand value"));
97d87491
RS
7973 forced_insn_length = 4;
7974 insn->insn_opcode |= MIPS16_EXTEND;
7975 }
7976 else if (relax_char)
7977 *offset_reloc = (int) BFD_RELOC_UNUSED + relax_char;
7978
7979 check_completed_insn (&arg);
7980 return TRUE;
7981 }
7982
7983 /* Fail the match if the line has too many operands. */
7984 if (*args == 0)
7985 return FALSE;
7986
7987 /* Handle characters that need to match exactly. */
7988 if (*args == '(' || *args == ')' || *args == ',')
7989 {
7990 if (match_char (&arg, *args))
7991 continue;
7992 return FALSE;
7993 }
7994
7995 arg.opnum += 1;
7996 c = *args;
7997 switch (c)
7998 {
7999 case 'p':
8000 case 'q':
8001 case 'A':
8002 case 'B':
8003 case 'E':
8004 relax_char = c;
8005 break;
8006
8007 case 'I':
1a00e612
RS
8008 if (!match_const_int (&arg, &imm_expr.X_add_number))
8009 return FALSE;
8010 imm_expr.X_op = O_constant;
bad1aba3 8011 if (GPR_SIZE == 32)
97d87491
RS
8012 normalize_constant_expr (&imm_expr);
8013 continue;
8014
8015 case 'a':
8016 case 'i':
8017 *offset_reloc = BFD_RELOC_MIPS16_JMP;
8018 insn->insn_opcode <<= 16;
8019 break;
8020 }
8021
8022 operand = decode_mips16_operand (c, FALSE);
8023 if (!operand)
8024 abort ();
8025
8026 /* '6' is a special case. It is used for BREAK and SDBBP,
8027 whose operands are only meaningful to the software that decodes
8028 them. This means that there is no architectural reason why
8029 they cannot be prefixed by EXTEND, but in practice,
8030 exception handlers will only look at the instruction
8031 itself. We therefore allow '6' to be extended when
8032 disassembling but not when assembling. */
8033 if (operand->type != OP_PCREL && c != '6')
8034 {
8035 ext_operand = decode_mips16_operand (c, TRUE);
8036 if (operand != ext_operand)
8037 {
8038 if (arg.token->type == OT_CHAR && arg.token->u.ch == '(')
8039 {
8040 offset_expr.X_op = O_constant;
8041 offset_expr.X_add_number = 0;
8042 relax_char = c;
8043 continue;
8044 }
8045
8046 /* We need the OT_INTEGER check because some MIPS16
8047 immediate variants are listed before the register ones. */
8048 if (arg.token->type != OT_INTEGER
8049 || !match_expression (&arg, &offset_expr, offset_reloc))
8050 return FALSE;
8051
8052 /* '8' is used for SLTI(U) and has traditionally not
8053 been allowed to take relocation operators. */
8054 if (offset_reloc[0] != BFD_RELOC_UNUSED
8055 && (ext_operand->size != 16 || c == '8'))
8056 return FALSE;
8057
8058 relax_char = c;
8059 continue;
8060 }
8061 }
8062
8063 if (mips_optional_operand_p (operand)
8064 && args[1] == ','
8065 && (arg.token[0].type != OT_REG
8066 || arg.token[1].type == OT_END))
8067 {
8068 /* Assume that the register has been elided and is the
8069 same as the first operand. */
8070 arg.token = tokens;
8071 arg.argnum = 1;
8072 }
8073
8074 if (!match_operand (&arg, operand))
8075 return FALSE;
8076 }
8077}
8078
60f20e8b
RS
8079/* Record that the current instruction is invalid for the current ISA. */
8080
8081static void
8082match_invalid_for_isa (void)
8083{
8084 set_insn_error_ss
1661c76c 8085 (0, _("opcode not supported on this processor: %s (%s)"),
60f20e8b
RS
8086 mips_cpu_info_from_arch (mips_opts.arch)->name,
8087 mips_cpu_info_from_isa (mips_opts.isa)->name);
8088}
8089
8090/* Try to match TOKENS against a series of opcode entries, starting at FIRST.
8091 Return true if a definite match or failure was found, storing any match
8092 in INSN. OPCODE_EXTRA is a value that should be ORed into the opcode
8093 (to handle things like VU0 suffixes). LAX_MATCH is true if we have already
8094 tried and failed to match under normal conditions and now want to try a
8095 more relaxed match. */
8096
8097static bfd_boolean
8098match_insns (struct mips_cl_insn *insn, const struct mips_opcode *first,
8099 const struct mips_opcode *past, struct mips_operand_token *tokens,
8100 int opcode_extra, bfd_boolean lax_match)
8101{
8102 const struct mips_opcode *opcode;
8103 const struct mips_opcode *invalid_delay_slot;
8104 bfd_boolean seen_valid_for_isa, seen_valid_for_size;
8105
8106 /* Search for a match, ignoring alternatives that don't satisfy the
8107 current ISA or forced_length. */
8108 invalid_delay_slot = 0;
8109 seen_valid_for_isa = FALSE;
8110 seen_valid_for_size = FALSE;
8111 opcode = first;
8112 do
8113 {
8114 gas_assert (strcmp (opcode->name, first->name) == 0);
8115 if (is_opcode_valid (opcode))
8116 {
8117 seen_valid_for_isa = TRUE;
8118 if (is_size_valid (opcode))
8119 {
8120 bfd_boolean delay_slot_ok;
8121
8122 seen_valid_for_size = TRUE;
8123 delay_slot_ok = is_delay_slot_valid (opcode);
8124 if (match_insn (insn, opcode, tokens, opcode_extra,
8125 lax_match, delay_slot_ok))
8126 {
8127 if (!delay_slot_ok)
8128 {
8129 if (!invalid_delay_slot)
8130 invalid_delay_slot = opcode;
8131 }
8132 else
8133 return TRUE;
8134 }
8135 }
8136 }
8137 ++opcode;
8138 }
8139 while (opcode < past && strcmp (opcode->name, first->name) == 0);
8140
8141 /* If the only matches we found had the wrong length for the delay slot,
8142 pick the first such match. We'll issue an appropriate warning later. */
8143 if (invalid_delay_slot)
8144 {
8145 if (match_insn (insn, invalid_delay_slot, tokens, opcode_extra,
8146 lax_match, TRUE))
8147 return TRUE;
8148 abort ();
8149 }
8150
8151 /* Handle the case where we didn't try to match an instruction because
8152 all the alternatives were incompatible with the current ISA. */
8153 if (!seen_valid_for_isa)
8154 {
8155 match_invalid_for_isa ();
8156 return TRUE;
8157 }
8158
8159 /* Handle the case where we didn't try to match an instruction because
8160 all the alternatives were of the wrong size. */
8161 if (!seen_valid_for_size)
8162 {
8163 if (mips_opts.insn32)
1661c76c 8164 set_insn_error (0, _("opcode not supported in the `insn32' mode"));
60f20e8b
RS
8165 else
8166 set_insn_error_i
1661c76c 8167 (0, _("unrecognized %d-bit version of microMIPS opcode"),
60f20e8b
RS
8168 8 * forced_insn_length);
8169 return TRUE;
8170 }
8171
8172 return FALSE;
8173}
8174
8175/* Like match_insns, but for MIPS16. */
8176
8177static bfd_boolean
8178match_mips16_insns (struct mips_cl_insn *insn, const struct mips_opcode *first,
8179 struct mips_operand_token *tokens)
8180{
8181 const struct mips_opcode *opcode;
8182 bfd_boolean seen_valid_for_isa;
8183
8184 /* Search for a match, ignoring alternatives that don't satisfy the
8185 current ISA. There are no separate entries for extended forms so
8186 we deal with forced_length later. */
8187 seen_valid_for_isa = FALSE;
8188 opcode = first;
8189 do
8190 {
8191 gas_assert (strcmp (opcode->name, first->name) == 0);
8192 if (is_opcode_valid_16 (opcode))
8193 {
8194 seen_valid_for_isa = TRUE;
8195 if (match_mips16_insn (insn, opcode, tokens))
8196 return TRUE;
8197 }
8198 ++opcode;
8199 }
8200 while (opcode < &mips16_opcodes[bfd_mips16_num_opcodes]
8201 && strcmp (opcode->name, first->name) == 0);
8202
8203 /* Handle the case where we didn't try to match an instruction because
8204 all the alternatives were incompatible with the current ISA. */
8205 if (!seen_valid_for_isa)
8206 {
8207 match_invalid_for_isa ();
8208 return TRUE;
8209 }
8210
8211 return FALSE;
8212}
8213
584892a6
RS
8214/* Set up global variables for the start of a new macro. */
8215
8216static void
8217macro_start (void)
8218{
8219 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
df58fc94
RS
8220 memset (&mips_macro_warning.first_insn_sizes, 0,
8221 sizeof (mips_macro_warning.first_insn_sizes));
8222 memset (&mips_macro_warning.insns, 0, sizeof (mips_macro_warning.insns));
584892a6 8223 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
11625dd8 8224 && delayed_branch_p (&history[0]));
df58fc94
RS
8225 switch (history[0].insn_mo->pinfo2
8226 & (INSN2_BRANCH_DELAY_32BIT | INSN2_BRANCH_DELAY_16BIT))
8227 {
8228 case INSN2_BRANCH_DELAY_32BIT:
8229 mips_macro_warning.delay_slot_length = 4;
8230 break;
8231 case INSN2_BRANCH_DELAY_16BIT:
8232 mips_macro_warning.delay_slot_length = 2;
8233 break;
8234 default:
8235 mips_macro_warning.delay_slot_length = 0;
8236 break;
8237 }
8238 mips_macro_warning.first_frag = NULL;
584892a6
RS
8239}
8240
df58fc94
RS
8241/* Given that a macro is longer than one instruction or of the wrong size,
8242 return the appropriate warning for it. Return null if no warning is
8243 needed. SUBTYPE is a bitmask of RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT,
8244 RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND,
8245 and RELAX_NOMACRO. */
584892a6
RS
8246
8247static const char *
8248macro_warning (relax_substateT subtype)
8249{
8250 if (subtype & RELAX_DELAY_SLOT)
1661c76c 8251 return _("macro instruction expanded into multiple instructions"
584892a6
RS
8252 " in a branch delay slot");
8253 else if (subtype & RELAX_NOMACRO)
1661c76c 8254 return _("macro instruction expanded into multiple instructions");
df58fc94
RS
8255 else if (subtype & (RELAX_DELAY_SLOT_SIZE_FIRST
8256 | RELAX_DELAY_SLOT_SIZE_SECOND))
8257 return ((subtype & RELAX_DELAY_SLOT_16BIT)
1661c76c 8258 ? _("macro instruction expanded into a wrong size instruction"
df58fc94 8259 " in a 16-bit branch delay slot")
1661c76c 8260 : _("macro instruction expanded into a wrong size instruction"
df58fc94 8261 " in a 32-bit branch delay slot"));
584892a6
RS
8262 else
8263 return 0;
8264}
8265
8266/* Finish up a macro. Emit warnings as appropriate. */
8267
8268static void
8269macro_end (void)
8270{
df58fc94
RS
8271 /* Relaxation warning flags. */
8272 relax_substateT subtype = 0;
8273
8274 /* Check delay slot size requirements. */
8275 if (mips_macro_warning.delay_slot_length == 2)
8276 subtype |= RELAX_DELAY_SLOT_16BIT;
8277 if (mips_macro_warning.delay_slot_length != 0)
584892a6 8278 {
df58fc94
RS
8279 if (mips_macro_warning.delay_slot_length
8280 != mips_macro_warning.first_insn_sizes[0])
8281 subtype |= RELAX_DELAY_SLOT_SIZE_FIRST;
8282 if (mips_macro_warning.delay_slot_length
8283 != mips_macro_warning.first_insn_sizes[1])
8284 subtype |= RELAX_DELAY_SLOT_SIZE_SECOND;
8285 }
584892a6 8286
df58fc94
RS
8287 /* Check instruction count requirements. */
8288 if (mips_macro_warning.insns[0] > 1 || mips_macro_warning.insns[1] > 1)
8289 {
8290 if (mips_macro_warning.insns[1] > mips_macro_warning.insns[0])
584892a6
RS
8291 subtype |= RELAX_SECOND_LONGER;
8292 if (mips_opts.warn_about_macros)
8293 subtype |= RELAX_NOMACRO;
8294 if (mips_macro_warning.delay_slot_p)
8295 subtype |= RELAX_DELAY_SLOT;
df58fc94 8296 }
584892a6 8297
df58fc94
RS
8298 /* If both alternatives fail to fill a delay slot correctly,
8299 emit the warning now. */
8300 if ((subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0
8301 && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0)
8302 {
8303 relax_substateT s;
8304 const char *msg;
8305
8306 s = subtype & (RELAX_DELAY_SLOT_16BIT
8307 | RELAX_DELAY_SLOT_SIZE_FIRST
8308 | RELAX_DELAY_SLOT_SIZE_SECOND);
8309 msg = macro_warning (s);
8310 if (msg != NULL)
8311 as_warn ("%s", msg);
8312 subtype &= ~s;
8313 }
8314
8315 /* If both implementations are longer than 1 instruction, then emit the
8316 warning now. */
8317 if (mips_macro_warning.insns[0] > 1 && mips_macro_warning.insns[1] > 1)
8318 {
8319 relax_substateT s;
8320 const char *msg;
8321
8322 s = subtype & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT);
8323 msg = macro_warning (s);
8324 if (msg != NULL)
8325 as_warn ("%s", msg);
8326 subtype &= ~s;
584892a6 8327 }
df58fc94
RS
8328
8329 /* If any flags still set, then one implementation might need a warning
8330 and the other either will need one of a different kind or none at all.
8331 Pass any remaining flags over to relaxation. */
8332 if (mips_macro_warning.first_frag != NULL)
8333 mips_macro_warning.first_frag->fr_subtype |= subtype;
584892a6
RS
8334}
8335
df58fc94
RS
8336/* Instruction operand formats used in macros that vary between
8337 standard MIPS and microMIPS code. */
8338
833794fc 8339static const char * const brk_fmt[2][2] = { { "c", "c" }, { "mF", "c" } };
df58fc94
RS
8340static const char * const cop12_fmt[2] = { "E,o(b)", "E,~(b)" };
8341static const char * const jalr_fmt[2] = { "d,s", "t,s" };
8342static const char * const lui_fmt[2] = { "t,u", "s,u" };
8343static const char * const mem12_fmt[2] = { "t,o(b)", "t,~(b)" };
833794fc 8344static const char * const mfhl_fmt[2][2] = { { "d", "d" }, { "mj", "s" } };
df58fc94
RS
8345static const char * const shft_fmt[2] = { "d,w,<", "t,r,<" };
8346static const char * const trap_fmt[2] = { "s,t,q", "s,t,|" };
8347
833794fc 8348#define BRK_FMT (brk_fmt[mips_opts.micromips][mips_opts.insn32])
7361da2c
AB
8349#define COP12_FMT (ISA_IS_R6 (mips_opts.isa) ? "E,+:(d)" \
8350 : cop12_fmt[mips_opts.micromips])
df58fc94
RS
8351#define JALR_FMT (jalr_fmt[mips_opts.micromips])
8352#define LUI_FMT (lui_fmt[mips_opts.micromips])
8353#define MEM12_FMT (mem12_fmt[mips_opts.micromips])
7361da2c
AB
8354#define LL_SC_FMT (ISA_IS_R6 (mips_opts.isa) ? "t,+j(b)" \
8355 : mem12_fmt[mips_opts.micromips])
833794fc 8356#define MFHL_FMT (mfhl_fmt[mips_opts.micromips][mips_opts.insn32])
df58fc94
RS
8357#define SHFT_FMT (shft_fmt[mips_opts.micromips])
8358#define TRAP_FMT (trap_fmt[mips_opts.micromips])
8359
6e1304d8
RS
8360/* Read a macro's relocation codes from *ARGS and store them in *R.
8361 The first argument in *ARGS will be either the code for a single
8362 relocation or -1 followed by the three codes that make up a
8363 composite relocation. */
8364
8365static void
8366macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
8367{
8368 int i, next;
8369
8370 next = va_arg (*args, int);
8371 if (next >= 0)
8372 r[0] = (bfd_reloc_code_real_type) next;
8373 else
f2ae14a1
RS
8374 {
8375 for (i = 0; i < 3; i++)
8376 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
8377 /* This function is only used for 16-bit relocation fields.
8378 To make the macro code simpler, treat an unrelocated value
8379 in the same way as BFD_RELOC_LO16. */
8380 if (r[0] == BFD_RELOC_UNUSED)
8381 r[0] = BFD_RELOC_LO16;
8382 }
6e1304d8
RS
8383}
8384
252b5132
RH
8385/* Build an instruction created by a macro expansion. This is passed
8386 a pointer to the count of instructions created so far, an
8387 expression, the name of the instruction to build, an operand format
8388 string, and corresponding arguments. */
8389
252b5132 8390static void
67c0d1eb 8391macro_build (expressionS *ep, const char *name, const char *fmt, ...)
252b5132 8392{
df58fc94 8393 const struct mips_opcode *mo = NULL;
f6688943 8394 bfd_reloc_code_real_type r[3];
df58fc94 8395 const struct mips_opcode *amo;
e077a1c8 8396 const struct mips_operand *operand;
df58fc94
RS
8397 struct hash_control *hash;
8398 struct mips_cl_insn insn;
252b5132 8399 va_list args;
e077a1c8 8400 unsigned int uval;
252b5132 8401
252b5132 8402 va_start (args, fmt);
252b5132 8403
252b5132
RH
8404 if (mips_opts.mips16)
8405 {
03ea81db 8406 mips16_macro_build (ep, name, fmt, &args);
252b5132
RH
8407 va_end (args);
8408 return;
8409 }
8410
f6688943
TS
8411 r[0] = BFD_RELOC_UNUSED;
8412 r[1] = BFD_RELOC_UNUSED;
8413 r[2] = BFD_RELOC_UNUSED;
df58fc94
RS
8414 hash = mips_opts.micromips ? micromips_op_hash : op_hash;
8415 amo = (struct mips_opcode *) hash_find (hash, name);
8416 gas_assert (amo);
8417 gas_assert (strcmp (name, amo->name) == 0);
1e915849 8418
df58fc94 8419 do
8b082fb1
TS
8420 {
8421 /* Search until we get a match for NAME. It is assumed here that
df58fc94
RS
8422 macros will never generate MDMX, MIPS-3D, or MT instructions.
8423 We try to match an instruction that fulfils the branch delay
8424 slot instruction length requirement (if any) of the previous
8425 instruction. While doing this we record the first instruction
8426 seen that matches all the other conditions and use it anyway
8427 if the requirement cannot be met; we will issue an appropriate
8428 warning later on. */
8429 if (strcmp (fmt, amo->args) == 0
8430 && amo->pinfo != INSN_MACRO
8431 && is_opcode_valid (amo)
8432 && is_size_valid (amo))
8433 {
8434 if (is_delay_slot_valid (amo))
8435 {
8436 mo = amo;
8437 break;
8438 }
8439 else if (!mo)
8440 mo = amo;
8441 }
8b082fb1 8442
df58fc94
RS
8443 ++amo;
8444 gas_assert (amo->name);
252b5132 8445 }
df58fc94 8446 while (strcmp (name, amo->name) == 0);
252b5132 8447
df58fc94 8448 gas_assert (mo);
1e915849 8449 create_insn (&insn, mo);
e077a1c8 8450 for (; *fmt; ++fmt)
252b5132 8451 {
e077a1c8 8452 switch (*fmt)
252b5132 8453 {
252b5132
RH
8454 case ',':
8455 case '(':
8456 case ')':
252b5132 8457 case 'z':
e077a1c8 8458 break;
252b5132
RH
8459
8460 case 'i':
8461 case 'j':
6e1304d8 8462 macro_read_relocs (&args, r);
9c2799c2 8463 gas_assert (*r == BFD_RELOC_GPREL16
e391c024
RS
8464 || *r == BFD_RELOC_MIPS_HIGHER
8465 || *r == BFD_RELOC_HI16_S
8466 || *r == BFD_RELOC_LO16
8467 || *r == BFD_RELOC_MIPS_GOT_OFST);
e077a1c8 8468 break;
e391c024
RS
8469
8470 case 'o':
8471 macro_read_relocs (&args, r);
e077a1c8 8472 break;
252b5132
RH
8473
8474 case 'u':
6e1304d8 8475 macro_read_relocs (&args, r);
9c2799c2 8476 gas_assert (ep != NULL
90ecf173
MR
8477 && (ep->X_op == O_constant
8478 || (ep->X_op == O_symbol
8479 && (*r == BFD_RELOC_MIPS_HIGHEST
8480 || *r == BFD_RELOC_HI16_S
8481 || *r == BFD_RELOC_HI16
8482 || *r == BFD_RELOC_GPREL16
8483 || *r == BFD_RELOC_MIPS_GOT_HI16
8484 || *r == BFD_RELOC_MIPS_CALL_HI16))));
e077a1c8 8485 break;
252b5132
RH
8486
8487 case 'p':
9c2799c2 8488 gas_assert (ep != NULL);
bad36eac 8489
252b5132
RH
8490 /*
8491 * This allows macro() to pass an immediate expression for
8492 * creating short branches without creating a symbol.
bad36eac
DJ
8493 *
8494 * We don't allow branch relaxation for these branches, as
8495 * they should only appear in ".set nomacro" anyway.
252b5132
RH
8496 */
8497 if (ep->X_op == O_constant)
8498 {
df58fc94
RS
8499 /* For microMIPS we always use relocations for branches.
8500 So we should not resolve immediate values. */
8501 gas_assert (!mips_opts.micromips);
8502
bad36eac
DJ
8503 if ((ep->X_add_number & 3) != 0)
8504 as_bad (_("branch to misaligned address (0x%lx)"),
8505 (unsigned long) ep->X_add_number);
8506 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
8507 as_bad (_("branch address range overflow (0x%lx)"),
8508 (unsigned long) ep->X_add_number);
252b5132
RH
8509 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
8510 ep = NULL;
8511 }
8512 else
0b25d3e6 8513 *r = BFD_RELOC_16_PCREL_S2;
e077a1c8 8514 break;
252b5132
RH
8515
8516 case 'a':
9c2799c2 8517 gas_assert (ep != NULL);
f6688943 8518 *r = BFD_RELOC_MIPS_JMP;
e077a1c8 8519 break;
d43b4baf 8520
252b5132 8521 default:
e077a1c8
RS
8522 operand = (mips_opts.micromips
8523 ? decode_micromips_operand (fmt)
8524 : decode_mips_operand (fmt));
8525 if (!operand)
8526 abort ();
8527
8528 uval = va_arg (args, int);
8529 if (operand->type == OP_CLO_CLZ_DEST)
8530 uval |= (uval << 5);
8531 insn_insert_operand (&insn, operand, uval);
8532
7361da2c 8533 if (*fmt == '+' || *fmt == 'm' || *fmt == '-')
e077a1c8
RS
8534 ++fmt;
8535 break;
252b5132 8536 }
252b5132
RH
8537 }
8538 va_end (args);
9c2799c2 8539 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 8540
df58fc94 8541 append_insn (&insn, ep, r, TRUE);
252b5132
RH
8542}
8543
8544static void
67c0d1eb 8545mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
03ea81db 8546 va_list *args)
252b5132 8547{
1e915849 8548 struct mips_opcode *mo;
252b5132 8549 struct mips_cl_insn insn;
e077a1c8 8550 const struct mips_operand *operand;
f6688943
TS
8551 bfd_reloc_code_real_type r[3]
8552 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 8553
1e915849 8554 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
9c2799c2
NC
8555 gas_assert (mo);
8556 gas_assert (strcmp (name, mo->name) == 0);
252b5132 8557
1e915849 8558 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
252b5132 8559 {
1e915849 8560 ++mo;
9c2799c2
NC
8561 gas_assert (mo->name);
8562 gas_assert (strcmp (name, mo->name) == 0);
252b5132
RH
8563 }
8564
1e915849 8565 create_insn (&insn, mo);
e077a1c8 8566 for (; *fmt; ++fmt)
252b5132
RH
8567 {
8568 int c;
8569
e077a1c8 8570 c = *fmt;
252b5132
RH
8571 switch (c)
8572 {
252b5132
RH
8573 case ',':
8574 case '(':
8575 case ')':
e077a1c8 8576 break;
252b5132
RH
8577
8578 case '0':
8579 case 'S':
8580 case 'P':
8581 case 'R':
e077a1c8 8582 break;
252b5132
RH
8583
8584 case '<':
8585 case '>':
8586 case '4':
8587 case '5':
8588 case 'H':
8589 case 'W':
8590 case 'D':
8591 case 'j':
8592 case '8':
8593 case 'V':
8594 case 'C':
8595 case 'U':
8596 case 'k':
8597 case 'K':
8598 case 'p':
8599 case 'q':
8600 {
b886a2ab
RS
8601 offsetT value;
8602
9c2799c2 8603 gas_assert (ep != NULL);
252b5132
RH
8604
8605 if (ep->X_op != O_constant)
874e8986 8606 *r = (int) BFD_RELOC_UNUSED + c;
b886a2ab 8607 else if (calculate_reloc (*r, ep->X_add_number, &value))
252b5132 8608 {
b886a2ab 8609 mips16_immed (NULL, 0, c, *r, value, 0, &insn.insn_opcode);
252b5132 8610 ep = NULL;
f6688943 8611 *r = BFD_RELOC_UNUSED;
252b5132
RH
8612 }
8613 }
e077a1c8 8614 break;
252b5132 8615
e077a1c8
RS
8616 default:
8617 operand = decode_mips16_operand (c, FALSE);
8618 if (!operand)
8619 abort ();
252b5132 8620
4a06e5a2 8621 insn_insert_operand (&insn, operand, va_arg (*args, int));
e077a1c8
RS
8622 break;
8623 }
252b5132
RH
8624 }
8625
9c2799c2 8626 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 8627
df58fc94 8628 append_insn (&insn, ep, r, TRUE);
252b5132
RH
8629}
8630
438c16b8
TS
8631/*
8632 * Generate a "jalr" instruction with a relocation hint to the called
8633 * function. This occurs in NewABI PIC code.
8634 */
8635static void
df58fc94 8636macro_build_jalr (expressionS *ep, int cprestore)
438c16b8 8637{
df58fc94
RS
8638 static const bfd_reloc_code_real_type jalr_relocs[2]
8639 = { BFD_RELOC_MIPS_JALR, BFD_RELOC_MICROMIPS_JALR };
8640 bfd_reloc_code_real_type jalr_reloc = jalr_relocs[mips_opts.micromips];
8641 const char *jalr;
685736be 8642 char *f = NULL;
b34976b6 8643
1180b5a4 8644 if (MIPS_JALR_HINT_P (ep))
f21f8242 8645 {
cc3d92a5 8646 frag_grow (8);
f21f8242
AO
8647 f = frag_more (0);
8648 }
2906b037 8649 if (mips_opts.micromips)
df58fc94 8650 {
833794fc
MR
8651 jalr = ((mips_opts.noreorder && !cprestore) || mips_opts.insn32
8652 ? "jalr" : "jalrs");
e64af278 8653 if (MIPS_JALR_HINT_P (ep)
833794fc 8654 || mips_opts.insn32
e64af278 8655 || (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
df58fc94
RS
8656 macro_build (NULL, jalr, "t,s", RA, PIC_CALL_REG);
8657 else
8658 macro_build (NULL, jalr, "mj", PIC_CALL_REG);
8659 }
2906b037
MR
8660 else
8661 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
1180b5a4 8662 if (MIPS_JALR_HINT_P (ep))
df58fc94 8663 fix_new_exp (frag_now, f - frag_now->fr_literal, 4, ep, FALSE, jalr_reloc);
438c16b8
TS
8664}
8665
252b5132
RH
8666/*
8667 * Generate a "lui" instruction.
8668 */
8669static void
67c0d1eb 8670macro_build_lui (expressionS *ep, int regnum)
252b5132 8671{
9c2799c2 8672 gas_assert (! mips_opts.mips16);
252b5132 8673
df58fc94 8674 if (ep->X_op != O_constant)
252b5132 8675 {
9c2799c2 8676 gas_assert (ep->X_op == O_symbol);
bbe506e8
TS
8677 /* _gp_disp is a special case, used from s_cpload.
8678 __gnu_local_gp is used if mips_no_shared. */
9c2799c2 8679 gas_assert (mips_pic == NO_PIC
78e1bb40 8680 || (! HAVE_NEWABI
aa6975fb
ILT
8681 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
8682 || (! mips_in_shared
bbe506e8
TS
8683 && strcmp (S_GET_NAME (ep->X_add_symbol),
8684 "__gnu_local_gp") == 0));
252b5132
RH
8685 }
8686
df58fc94 8687 macro_build (ep, "lui", LUI_FMT, regnum, BFD_RELOC_HI16_S);
252b5132
RH
8688}
8689
885add95
CD
8690/* Generate a sequence of instructions to do a load or store from a constant
8691 offset off of a base register (breg) into/from a target register (treg),
8692 using AT if necessary. */
8693static void
67c0d1eb
RS
8694macro_build_ldst_constoffset (expressionS *ep, const char *op,
8695 int treg, int breg, int dbl)
885add95 8696{
9c2799c2 8697 gas_assert (ep->X_op == O_constant);
885add95 8698
256ab948 8699 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
8700 if (!dbl)
8701 normalize_constant_expr (ep);
256ab948 8702
67c1ffbe 8703 /* Right now, this routine can only handle signed 32-bit constants. */
ecd13cd3 8704 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
885add95
CD
8705 as_warn (_("operand overflow"));
8706
8707 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
8708 {
8709 /* Signed 16-bit offset will fit in the op. Easy! */
67c0d1eb 8710 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
885add95
CD
8711 }
8712 else
8713 {
8714 /* 32-bit offset, need multiple instructions and AT, like:
8715 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
8716 addu $tempreg,$tempreg,$breg
8717 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
8718 to handle the complete offset. */
67c0d1eb
RS
8719 macro_build_lui (ep, AT);
8720 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8721 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
885add95 8722
741fe287 8723 if (!mips_opts.at)
1661c76c 8724 as_bad (_("macro used $at after \".set noat\""));
885add95
CD
8725 }
8726}
8727
252b5132
RH
8728/* set_at()
8729 * Generates code to set the $at register to true (one)
8730 * if reg is less than the immediate expression.
8731 */
8732static void
67c0d1eb 8733set_at (int reg, int unsignedp)
252b5132 8734{
b0e6f033 8735 if (imm_expr.X_add_number >= -0x8000
252b5132 8736 && imm_expr.X_add_number < 0x8000)
67c0d1eb
RS
8737 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
8738 AT, reg, BFD_RELOC_LO16);
252b5132
RH
8739 else
8740 {
bad1aba3 8741 load_register (AT, &imm_expr, GPR_SIZE == 64);
67c0d1eb 8742 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
252b5132
RH
8743 }
8744}
8745
252b5132
RH
8746/* Count the leading zeroes by performing a binary chop. This is a
8747 bulky bit of source, but performance is a LOT better for the
8748 majority of values than a simple loop to count the bits:
8749 for (lcnt = 0; (lcnt < 32); lcnt++)
8750 if ((v) & (1 << (31 - lcnt)))
8751 break;
8752 However it is not code size friendly, and the gain will drop a bit
8753 on certain cached systems.
8754*/
8755#define COUNT_TOP_ZEROES(v) \
8756 (((v) & ~0xffff) == 0 \
8757 ? ((v) & ~0xff) == 0 \
8758 ? ((v) & ~0xf) == 0 \
8759 ? ((v) & ~0x3) == 0 \
8760 ? ((v) & ~0x1) == 0 \
8761 ? !(v) \
8762 ? 32 \
8763 : 31 \
8764 : 30 \
8765 : ((v) & ~0x7) == 0 \
8766 ? 29 \
8767 : 28 \
8768 : ((v) & ~0x3f) == 0 \
8769 ? ((v) & ~0x1f) == 0 \
8770 ? 27 \
8771 : 26 \
8772 : ((v) & ~0x7f) == 0 \
8773 ? 25 \
8774 : 24 \
8775 : ((v) & ~0xfff) == 0 \
8776 ? ((v) & ~0x3ff) == 0 \
8777 ? ((v) & ~0x1ff) == 0 \
8778 ? 23 \
8779 : 22 \
8780 : ((v) & ~0x7ff) == 0 \
8781 ? 21 \
8782 : 20 \
8783 : ((v) & ~0x3fff) == 0 \
8784 ? ((v) & ~0x1fff) == 0 \
8785 ? 19 \
8786 : 18 \
8787 : ((v) & ~0x7fff) == 0 \
8788 ? 17 \
8789 : 16 \
8790 : ((v) & ~0xffffff) == 0 \
8791 ? ((v) & ~0xfffff) == 0 \
8792 ? ((v) & ~0x3ffff) == 0 \
8793 ? ((v) & ~0x1ffff) == 0 \
8794 ? 15 \
8795 : 14 \
8796 : ((v) & ~0x7ffff) == 0 \
8797 ? 13 \
8798 : 12 \
8799 : ((v) & ~0x3fffff) == 0 \
8800 ? ((v) & ~0x1fffff) == 0 \
8801 ? 11 \
8802 : 10 \
8803 : ((v) & ~0x7fffff) == 0 \
8804 ? 9 \
8805 : 8 \
8806 : ((v) & ~0xfffffff) == 0 \
8807 ? ((v) & ~0x3ffffff) == 0 \
8808 ? ((v) & ~0x1ffffff) == 0 \
8809 ? 7 \
8810 : 6 \
8811 : ((v) & ~0x7ffffff) == 0 \
8812 ? 5 \
8813 : 4 \
8814 : ((v) & ~0x3fffffff) == 0 \
8815 ? ((v) & ~0x1fffffff) == 0 \
8816 ? 3 \
8817 : 2 \
8818 : ((v) & ~0x7fffffff) == 0 \
8819 ? 1 \
8820 : 0)
8821
8822/* load_register()
67c1ffbe 8823 * This routine generates the least number of instructions necessary to load
252b5132
RH
8824 * an absolute expression value into a register.
8825 */
8826static void
67c0d1eb 8827load_register (int reg, expressionS *ep, int dbl)
252b5132
RH
8828{
8829 int freg;
8830 expressionS hi32, lo32;
8831
8832 if (ep->X_op != O_big)
8833 {
9c2799c2 8834 gas_assert (ep->X_op == O_constant);
256ab948
TS
8835
8836 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
8837 if (!dbl)
8838 normalize_constant_expr (ep);
256ab948
TS
8839
8840 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
252b5132
RH
8841 {
8842 /* We can handle 16 bit signed values with an addiu to
8843 $zero. No need to ever use daddiu here, since $zero and
8844 the result are always correct in 32 bit mode. */
67c0d1eb 8845 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
8846 return;
8847 }
8848 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
8849 {
8850 /* We can handle 16 bit unsigned values with an ori to
8851 $zero. */
67c0d1eb 8852 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
252b5132
RH
8853 return;
8854 }
256ab948 8855 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
252b5132
RH
8856 {
8857 /* 32 bit values require an lui. */
df58fc94 8858 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
252b5132 8859 if ((ep->X_add_number & 0xffff) != 0)
67c0d1eb 8860 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
252b5132
RH
8861 return;
8862 }
8863 }
8864
8865 /* The value is larger than 32 bits. */
8866
bad1aba3 8867 if (!dbl || GPR_SIZE == 32)
252b5132 8868 {
55e08f71
NC
8869 char value[32];
8870
8871 sprintf_vma (value, ep->X_add_number);
1661c76c 8872 as_bad (_("number (0x%s) larger than 32 bits"), value);
67c0d1eb 8873 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
8874 return;
8875 }
8876
8877 if (ep->X_op != O_big)
8878 {
8879 hi32 = *ep;
8880 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
8881 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
8882 hi32.X_add_number &= 0xffffffff;
8883 lo32 = *ep;
8884 lo32.X_add_number &= 0xffffffff;
8885 }
8886 else
8887 {
9c2799c2 8888 gas_assert (ep->X_add_number > 2);
252b5132
RH
8889 if (ep->X_add_number == 3)
8890 generic_bignum[3] = 0;
8891 else if (ep->X_add_number > 4)
1661c76c 8892 as_bad (_("number larger than 64 bits"));
252b5132
RH
8893 lo32.X_op = O_constant;
8894 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
8895 hi32.X_op = O_constant;
8896 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
8897 }
8898
8899 if (hi32.X_add_number == 0)
8900 freg = 0;
8901 else
8902 {
8903 int shift, bit;
8904 unsigned long hi, lo;
8905
956cd1d6 8906 if (hi32.X_add_number == (offsetT) 0xffffffff)
beae10d5
KH
8907 {
8908 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
8909 {
67c0d1eb 8910 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
8911 return;
8912 }
8913 if (lo32.X_add_number & 0x80000000)
8914 {
df58fc94 8915 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
252b5132 8916 if (lo32.X_add_number & 0xffff)
67c0d1eb 8917 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
beae10d5
KH
8918 return;
8919 }
8920 }
252b5132
RH
8921
8922 /* Check for 16bit shifted constant. We know that hi32 is
8923 non-zero, so start the mask on the first bit of the hi32
8924 value. */
8925 shift = 17;
8926 do
beae10d5
KH
8927 {
8928 unsigned long himask, lomask;
8929
8930 if (shift < 32)
8931 {
8932 himask = 0xffff >> (32 - shift);
8933 lomask = (0xffff << shift) & 0xffffffff;
8934 }
8935 else
8936 {
8937 himask = 0xffff << (shift - 32);
8938 lomask = 0;
8939 }
8940 if ((hi32.X_add_number & ~(offsetT) himask) == 0
8941 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
8942 {
8943 expressionS tmp;
8944
8945 tmp.X_op = O_constant;
8946 if (shift < 32)
8947 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
8948 | (lo32.X_add_number >> shift));
8949 else
8950 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
67c0d1eb 8951 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
df58fc94 8952 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", SHFT_FMT,
67c0d1eb 8953 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
8954 return;
8955 }
f9419b05 8956 ++shift;
beae10d5
KH
8957 }
8958 while (shift <= (64 - 16));
252b5132
RH
8959
8960 /* Find the bit number of the lowest one bit, and store the
8961 shifted value in hi/lo. */
8962 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
8963 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
8964 if (lo != 0)
8965 {
8966 bit = 0;
8967 while ((lo & 1) == 0)
8968 {
8969 lo >>= 1;
8970 ++bit;
8971 }
8972 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
8973 hi >>= bit;
8974 }
8975 else
8976 {
8977 bit = 32;
8978 while ((hi & 1) == 0)
8979 {
8980 hi >>= 1;
8981 ++bit;
8982 }
8983 lo = hi;
8984 hi = 0;
8985 }
8986
8987 /* Optimize if the shifted value is a (power of 2) - 1. */
8988 if ((hi == 0 && ((lo + 1) & lo) == 0)
8989 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
beae10d5
KH
8990 {
8991 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
252b5132 8992 if (shift != 0)
beae10d5 8993 {
252b5132
RH
8994 expressionS tmp;
8995
8996 /* This instruction will set the register to be all
8997 ones. */
beae10d5
KH
8998 tmp.X_op = O_constant;
8999 tmp.X_add_number = (offsetT) -1;
67c0d1eb 9000 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
9001 if (bit != 0)
9002 {
9003 bit += shift;
df58fc94 9004 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", SHFT_FMT,
67c0d1eb 9005 reg, reg, (bit >= 32) ? bit - 32 : bit);
beae10d5 9006 }
df58fc94 9007 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", SHFT_FMT,
67c0d1eb 9008 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
9009 return;
9010 }
9011 }
252b5132
RH
9012
9013 /* Sign extend hi32 before calling load_register, because we can
9014 generally get better code when we load a sign extended value. */
9015 if ((hi32.X_add_number & 0x80000000) != 0)
beae10d5 9016 hi32.X_add_number |= ~(offsetT) 0xffffffff;
67c0d1eb 9017 load_register (reg, &hi32, 0);
252b5132
RH
9018 freg = reg;
9019 }
9020 if ((lo32.X_add_number & 0xffff0000) == 0)
9021 {
9022 if (freg != 0)
9023 {
df58fc94 9024 macro_build (NULL, "dsll32", SHFT_FMT, reg, freg, 0);
252b5132
RH
9025 freg = reg;
9026 }
9027 }
9028 else
9029 {
9030 expressionS mid16;
9031
956cd1d6 9032 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
beae10d5 9033 {
df58fc94
RS
9034 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
9035 macro_build (NULL, "dsrl32", SHFT_FMT, reg, reg, 0);
beae10d5
KH
9036 return;
9037 }
252b5132
RH
9038
9039 if (freg != 0)
9040 {
df58fc94 9041 macro_build (NULL, "dsll", SHFT_FMT, reg, freg, 16);
252b5132
RH
9042 freg = reg;
9043 }
9044 mid16 = lo32;
9045 mid16.X_add_number >>= 16;
67c0d1eb 9046 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
df58fc94 9047 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
252b5132
RH
9048 freg = reg;
9049 }
9050 if ((lo32.X_add_number & 0xffff) != 0)
67c0d1eb 9051 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
252b5132
RH
9052}
9053
269137b2
TS
9054static inline void
9055load_delay_nop (void)
9056{
9057 if (!gpr_interlocks)
9058 macro_build (NULL, "nop", "");
9059}
9060
252b5132
RH
9061/* Load an address into a register. */
9062
9063static void
67c0d1eb 9064load_address (int reg, expressionS *ep, int *used_at)
252b5132 9065{
252b5132
RH
9066 if (ep->X_op != O_constant
9067 && ep->X_op != O_symbol)
9068 {
9069 as_bad (_("expression too complex"));
9070 ep->X_op = O_constant;
9071 }
9072
9073 if (ep->X_op == O_constant)
9074 {
67c0d1eb 9075 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
252b5132
RH
9076 return;
9077 }
9078
9079 if (mips_pic == NO_PIC)
9080 {
9081 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 9082 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
9083 Otherwise we want
9084 lui $reg,<sym> (BFD_RELOC_HI16_S)
9085 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
d6bc6245 9086 If we have an addend, we always use the latter form.
76b3015f 9087
d6bc6245
TS
9088 With 64bit address space and a usable $at we want
9089 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
9090 lui $at,<sym> (BFD_RELOC_HI16_S)
9091 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
9092 daddiu $at,<sym> (BFD_RELOC_LO16)
9093 dsll32 $reg,0
3a482fd5 9094 daddu $reg,$reg,$at
76b3015f 9095
c03099e6 9096 If $at is already in use, we use a path which is suboptimal
d6bc6245
TS
9097 on superscalar processors.
9098 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
9099 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
9100 dsll $reg,16
9101 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
9102 dsll $reg,16
9103 daddiu $reg,<sym> (BFD_RELOC_LO16)
6caf9ef4
TS
9104
9105 For GP relative symbols in 64bit address space we can use
9106 the same sequence as in 32bit address space. */
aed1a261 9107 if (HAVE_64BIT_SYMBOLS)
d6bc6245 9108 {
6caf9ef4
TS
9109 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
9110 && !nopic_need_relax (ep->X_add_symbol, 1))
9111 {
9112 relax_start (ep->X_add_symbol);
9113 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
9114 mips_gp_register, BFD_RELOC_GPREL16);
9115 relax_switch ();
9116 }
d6bc6245 9117
741fe287 9118 if (*used_at == 0 && mips_opts.at)
d6bc6245 9119 {
df58fc94
RS
9120 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
9121 macro_build (ep, "lui", LUI_FMT, AT, BFD_RELOC_HI16_S);
67c0d1eb
RS
9122 macro_build (ep, "daddiu", "t,r,j", reg, reg,
9123 BFD_RELOC_MIPS_HIGHER);
9124 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
df58fc94 9125 macro_build (NULL, "dsll32", SHFT_FMT, reg, reg, 0);
67c0d1eb 9126 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
d6bc6245
TS
9127 *used_at = 1;
9128 }
9129 else
9130 {
df58fc94 9131 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb
RS
9132 macro_build (ep, "daddiu", "t,r,j", reg, reg,
9133 BFD_RELOC_MIPS_HIGHER);
df58fc94 9134 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
67c0d1eb 9135 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
df58fc94 9136 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
67c0d1eb 9137 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
d6bc6245 9138 }
6caf9ef4
TS
9139
9140 if (mips_relax.sequence)
9141 relax_end ();
d6bc6245 9142 }
252b5132
RH
9143 else
9144 {
d6bc6245 9145 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 9146 && !nopic_need_relax (ep->X_add_symbol, 1))
d6bc6245 9147 {
4d7206a2 9148 relax_start (ep->X_add_symbol);
67c0d1eb 9149 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
17a2f251 9150 mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 9151 relax_switch ();
d6bc6245 9152 }
67c0d1eb
RS
9153 macro_build_lui (ep, reg);
9154 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
9155 reg, reg, BFD_RELOC_LO16);
4d7206a2
RS
9156 if (mips_relax.sequence)
9157 relax_end ();
d6bc6245 9158 }
252b5132 9159 }
0a44bf69 9160 else if (!mips_big_got)
252b5132
RH
9161 {
9162 expressionS ex;
9163
9164 /* If this is a reference to an external symbol, we want
9165 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9166 Otherwise we want
9167 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9168 nop
9169 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
f5040a92
AO
9170 If there is a constant, it must be added in after.
9171
ed6fb7bd 9172 If we have NewABI, we want
f5040a92
AO
9173 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
9174 unless we're referencing a global symbol with a non-zero
9175 offset, in which case cst must be added separately. */
ed6fb7bd
SC
9176 if (HAVE_NEWABI)
9177 {
f5040a92
AO
9178 if (ep->X_add_number)
9179 {
4d7206a2 9180 ex.X_add_number = ep->X_add_number;
f5040a92 9181 ep->X_add_number = 0;
4d7206a2 9182 relax_start (ep->X_add_symbol);
67c0d1eb
RS
9183 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9184 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
9185 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9186 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9187 ex.X_op = O_constant;
67c0d1eb 9188 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 9189 reg, reg, BFD_RELOC_LO16);
f5040a92 9190 ep->X_add_number = ex.X_add_number;
4d7206a2 9191 relax_switch ();
f5040a92 9192 }
67c0d1eb 9193 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 9194 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2
RS
9195 if (mips_relax.sequence)
9196 relax_end ();
ed6fb7bd
SC
9197 }
9198 else
9199 {
f5040a92
AO
9200 ex.X_add_number = ep->X_add_number;
9201 ep->X_add_number = 0;
67c0d1eb
RS
9202 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
9203 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 9204 load_delay_nop ();
4d7206a2
RS
9205 relax_start (ep->X_add_symbol);
9206 relax_switch ();
67c0d1eb 9207 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 9208 BFD_RELOC_LO16);
4d7206a2 9209 relax_end ();
ed6fb7bd 9210
f5040a92
AO
9211 if (ex.X_add_number != 0)
9212 {
9213 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9214 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9215 ex.X_op = O_constant;
67c0d1eb 9216 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 9217 reg, reg, BFD_RELOC_LO16);
f5040a92 9218 }
252b5132
RH
9219 }
9220 }
0a44bf69 9221 else if (mips_big_got)
252b5132
RH
9222 {
9223 expressionS ex;
252b5132
RH
9224
9225 /* This is the large GOT case. If this is a reference to an
9226 external symbol, we want
9227 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9228 addu $reg,$reg,$gp
9229 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
f5040a92
AO
9230
9231 Otherwise, for a reference to a local symbol in old ABI, we want
252b5132
RH
9232 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9233 nop
9234 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
684022ea 9235 If there is a constant, it must be added in after.
f5040a92
AO
9236
9237 In the NewABI, for local symbols, with or without offsets, we want:
438c16b8
TS
9238 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
9239 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
f5040a92 9240 */
438c16b8
TS
9241 if (HAVE_NEWABI)
9242 {
4d7206a2 9243 ex.X_add_number = ep->X_add_number;
f5040a92 9244 ep->X_add_number = 0;
4d7206a2 9245 relax_start (ep->X_add_symbol);
df58fc94 9246 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
9247 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9248 reg, reg, mips_gp_register);
9249 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
9250 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
f5040a92
AO
9251 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9252 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9253 else if (ex.X_add_number)
9254 {
9255 ex.X_op = O_constant;
67c0d1eb
RS
9256 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9257 BFD_RELOC_LO16);
f5040a92
AO
9258 }
9259
9260 ep->X_add_number = ex.X_add_number;
4d7206a2 9261 relax_switch ();
67c0d1eb 9262 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 9263 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
67c0d1eb
RS
9264 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9265 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 9266 relax_end ();
438c16b8 9267 }
252b5132 9268 else
438c16b8 9269 {
f5040a92
AO
9270 ex.X_add_number = ep->X_add_number;
9271 ep->X_add_number = 0;
4d7206a2 9272 relax_start (ep->X_add_symbol);
df58fc94 9273 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
9274 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9275 reg, reg, mips_gp_register);
9276 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
9277 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4d7206a2
RS
9278 relax_switch ();
9279 if (reg_needs_delay (mips_gp_register))
438c16b8
TS
9280 {
9281 /* We need a nop before loading from $gp. This special
9282 check is required because the lui which starts the main
9283 instruction stream does not refer to $gp, and so will not
9284 insert the nop which may be required. */
67c0d1eb 9285 macro_build (NULL, "nop", "");
438c16b8 9286 }
67c0d1eb 9287 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 9288 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 9289 load_delay_nop ();
67c0d1eb 9290 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 9291 BFD_RELOC_LO16);
4d7206a2 9292 relax_end ();
438c16b8 9293
f5040a92
AO
9294 if (ex.X_add_number != 0)
9295 {
9296 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
9297 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9298 ex.X_op = O_constant;
67c0d1eb
RS
9299 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
9300 BFD_RELOC_LO16);
f5040a92 9301 }
252b5132
RH
9302 }
9303 }
252b5132
RH
9304 else
9305 abort ();
8fc2e39e 9306
741fe287 9307 if (!mips_opts.at && *used_at == 1)
1661c76c 9308 as_bad (_("macro used $at after \".set noat\""));
252b5132
RH
9309}
9310
ea1fb5dc
RS
9311/* Move the contents of register SOURCE into register DEST. */
9312
9313static void
67c0d1eb 9314move_register (int dest, int source)
ea1fb5dc 9315{
df58fc94
RS
9316 /* Prefer to use a 16-bit microMIPS instruction unless the previous
9317 instruction specifically requires a 32-bit one. */
9318 if (mips_opts.micromips
833794fc 9319 && !mips_opts.insn32
df58fc94 9320 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
7951ca42 9321 macro_build (NULL, "move", "mp,mj", dest, source);
df58fc94 9322 else
bad1aba3 9323 macro_build (NULL, GPR_SIZE == 32 ? "addu" : "daddu", "d,v,t",
df58fc94 9324 dest, source, 0);
ea1fb5dc
RS
9325}
9326
4d7206a2 9327/* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
f6a22291
MR
9328 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
9329 The two alternatives are:
4d7206a2
RS
9330
9331 Global symbol Local sybmol
9332 ------------- ------------
9333 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
9334 ... ...
9335 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
9336
9337 load_got_offset emits the first instruction and add_got_offset
f6a22291
MR
9338 emits the second for a 16-bit offset or add_got_offset_hilo emits
9339 a sequence to add a 32-bit offset using a scratch register. */
4d7206a2
RS
9340
9341static void
67c0d1eb 9342load_got_offset (int dest, expressionS *local)
4d7206a2
RS
9343{
9344 expressionS global;
9345
9346 global = *local;
9347 global.X_add_number = 0;
9348
9349 relax_start (local->X_add_symbol);
67c0d1eb
RS
9350 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
9351 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2 9352 relax_switch ();
67c0d1eb
RS
9353 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
9354 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2
RS
9355 relax_end ();
9356}
9357
9358static void
67c0d1eb 9359add_got_offset (int dest, expressionS *local)
4d7206a2
RS
9360{
9361 expressionS global;
9362
9363 global.X_op = O_constant;
9364 global.X_op_symbol = NULL;
9365 global.X_add_symbol = NULL;
9366 global.X_add_number = local->X_add_number;
9367
9368 relax_start (local->X_add_symbol);
67c0d1eb 9369 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4d7206a2
RS
9370 dest, dest, BFD_RELOC_LO16);
9371 relax_switch ();
67c0d1eb 9372 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4d7206a2
RS
9373 relax_end ();
9374}
9375
f6a22291
MR
9376static void
9377add_got_offset_hilo (int dest, expressionS *local, int tmp)
9378{
9379 expressionS global;
9380 int hold_mips_optimize;
9381
9382 global.X_op = O_constant;
9383 global.X_op_symbol = NULL;
9384 global.X_add_symbol = NULL;
9385 global.X_add_number = local->X_add_number;
9386
9387 relax_start (local->X_add_symbol);
9388 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
9389 relax_switch ();
9390 /* Set mips_optimize around the lui instruction to avoid
9391 inserting an unnecessary nop after the lw. */
9392 hold_mips_optimize = mips_optimize;
9393 mips_optimize = 2;
9394 macro_build_lui (&global, tmp);
9395 mips_optimize = hold_mips_optimize;
9396 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
9397 relax_end ();
9398
9399 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
9400}
9401
df58fc94
RS
9402/* Emit a sequence of instructions to emulate a branch likely operation.
9403 BR is an ordinary branch corresponding to one to be emulated. BRNEG
9404 is its complementing branch with the original condition negated.
9405 CALL is set if the original branch specified the link operation.
9406 EP, FMT, SREG and TREG specify the usual macro_build() parameters.
9407
9408 Code like this is produced in the noreorder mode:
9409
9410 BRNEG <args>, 1f
9411 nop
9412 b <sym>
9413 delay slot (executed only if branch taken)
9414 1:
9415
9416 or, if CALL is set:
9417
9418 BRNEG <args>, 1f
9419 nop
9420 bal <sym>
9421 delay slot (executed only if branch taken)
9422 1:
9423
9424 In the reorder mode the delay slot would be filled with a nop anyway,
9425 so code produced is simply:
9426
9427 BR <args>, <sym>
9428 nop
9429
9430 This function is used when producing code for the microMIPS ASE that
9431 does not implement branch likely instructions in hardware. */
9432
9433static void
9434macro_build_branch_likely (const char *br, const char *brneg,
9435 int call, expressionS *ep, const char *fmt,
9436 unsigned int sreg, unsigned int treg)
9437{
9438 int noreorder = mips_opts.noreorder;
9439 expressionS expr1;
9440
9441 gas_assert (mips_opts.micromips);
9442 start_noreorder ();
9443 if (noreorder)
9444 {
9445 micromips_label_expr (&expr1);
9446 macro_build (&expr1, brneg, fmt, sreg, treg);
9447 macro_build (NULL, "nop", "");
9448 macro_build (ep, call ? "bal" : "b", "p");
9449
9450 /* Set to true so that append_insn adds a label. */
9451 emit_branch_likely_macro = TRUE;
9452 }
9453 else
9454 {
9455 macro_build (ep, br, fmt, sreg, treg);
9456 macro_build (NULL, "nop", "");
9457 }
9458 end_noreorder ();
9459}
9460
9461/* Emit a coprocessor branch-likely macro specified by TYPE, using CC as
9462 the condition code tested. EP specifies the branch target. */
9463
9464static void
9465macro_build_branch_ccl (int type, expressionS *ep, unsigned int cc)
9466{
9467 const int call = 0;
9468 const char *brneg;
9469 const char *br;
9470
9471 switch (type)
9472 {
9473 case M_BC1FL:
9474 br = "bc1f";
9475 brneg = "bc1t";
9476 break;
9477 case M_BC1TL:
9478 br = "bc1t";
9479 brneg = "bc1f";
9480 break;
9481 case M_BC2FL:
9482 br = "bc2f";
9483 brneg = "bc2t";
9484 break;
9485 case M_BC2TL:
9486 br = "bc2t";
9487 brneg = "bc2f";
9488 break;
9489 default:
9490 abort ();
9491 }
9492 macro_build_branch_likely (br, brneg, call, ep, "N,p", cc, ZERO);
9493}
9494
9495/* Emit a two-argument branch macro specified by TYPE, using SREG as
9496 the register tested. EP specifies the branch target. */
9497
9498static void
9499macro_build_branch_rs (int type, expressionS *ep, unsigned int sreg)
9500{
9501 const char *brneg = NULL;
9502 const char *br;
9503 int call = 0;
9504
9505 switch (type)
9506 {
9507 case M_BGEZ:
9508 br = "bgez";
9509 break;
9510 case M_BGEZL:
9511 br = mips_opts.micromips ? "bgez" : "bgezl";
9512 brneg = "bltz";
9513 break;
9514 case M_BGEZALL:
9515 gas_assert (mips_opts.micromips);
833794fc 9516 br = mips_opts.insn32 ? "bgezal" : "bgezals";
df58fc94
RS
9517 brneg = "bltz";
9518 call = 1;
9519 break;
9520 case M_BGTZ:
9521 br = "bgtz";
9522 break;
9523 case M_BGTZL:
9524 br = mips_opts.micromips ? "bgtz" : "bgtzl";
9525 brneg = "blez";
9526 break;
9527 case M_BLEZ:
9528 br = "blez";
9529 break;
9530 case M_BLEZL:
9531 br = mips_opts.micromips ? "blez" : "blezl";
9532 brneg = "bgtz";
9533 break;
9534 case M_BLTZ:
9535 br = "bltz";
9536 break;
9537 case M_BLTZL:
9538 br = mips_opts.micromips ? "bltz" : "bltzl";
9539 brneg = "bgez";
9540 break;
9541 case M_BLTZALL:
9542 gas_assert (mips_opts.micromips);
833794fc 9543 br = mips_opts.insn32 ? "bltzal" : "bltzals";
df58fc94
RS
9544 brneg = "bgez";
9545 call = 1;
9546 break;
9547 default:
9548 abort ();
9549 }
9550 if (mips_opts.micromips && brneg)
9551 macro_build_branch_likely (br, brneg, call, ep, "s,p", sreg, ZERO);
9552 else
9553 macro_build (ep, br, "s,p", sreg);
9554}
9555
9556/* Emit a three-argument branch macro specified by TYPE, using SREG and
9557 TREG as the registers tested. EP specifies the branch target. */
9558
9559static void
9560macro_build_branch_rsrt (int type, expressionS *ep,
9561 unsigned int sreg, unsigned int treg)
9562{
9563 const char *brneg = NULL;
9564 const int call = 0;
9565 const char *br;
9566
9567 switch (type)
9568 {
9569 case M_BEQ:
9570 case M_BEQ_I:
9571 br = "beq";
9572 break;
9573 case M_BEQL:
9574 case M_BEQL_I:
9575 br = mips_opts.micromips ? "beq" : "beql";
9576 brneg = "bne";
9577 break;
9578 case M_BNE:
9579 case M_BNE_I:
9580 br = "bne";
9581 break;
9582 case M_BNEL:
9583 case M_BNEL_I:
9584 br = mips_opts.micromips ? "bne" : "bnel";
9585 brneg = "beq";
9586 break;
9587 default:
9588 abort ();
9589 }
9590 if (mips_opts.micromips && brneg)
9591 macro_build_branch_likely (br, brneg, call, ep, "s,t,p", sreg, treg);
9592 else
9593 macro_build (ep, br, "s,t,p", sreg, treg);
9594}
9595
f2ae14a1
RS
9596/* Return the high part that should be loaded in order to make the low
9597 part of VALUE accessible using an offset of OFFBITS bits. */
9598
9599static offsetT
9600offset_high_part (offsetT value, unsigned int offbits)
9601{
9602 offsetT bias;
9603 addressT low_mask;
9604
9605 if (offbits == 0)
9606 return value;
9607 bias = 1 << (offbits - 1);
9608 low_mask = bias * 2 - 1;
9609 return (value + bias) & ~low_mask;
9610}
9611
9612/* Return true if the value stored in offset_expr and offset_reloc
9613 fits into a signed offset of OFFBITS bits. RANGE is the maximum
9614 amount that the caller wants to add without inducing overflow
9615 and ALIGN is the known alignment of the value in bytes. */
9616
9617static bfd_boolean
9618small_offset_p (unsigned int range, unsigned int align, unsigned int offbits)
9619{
9620 if (offbits == 16)
9621 {
9622 /* Accept any relocation operator if overflow isn't a concern. */
9623 if (range < align && *offset_reloc != BFD_RELOC_UNUSED)
9624 return TRUE;
9625
9626 /* These relocations are guaranteed not to overflow in correct links. */
9627 if (*offset_reloc == BFD_RELOC_MIPS_LITERAL
9628 || gprel16_reloc_p (*offset_reloc))
9629 return TRUE;
9630 }
9631 if (offset_expr.X_op == O_constant
9632 && offset_high_part (offset_expr.X_add_number, offbits) == 0
9633 && offset_high_part (offset_expr.X_add_number + range, offbits) == 0)
9634 return TRUE;
9635 return FALSE;
9636}
9637
252b5132
RH
9638/*
9639 * Build macros
9640 * This routine implements the seemingly endless macro or synthesized
9641 * instructions and addressing modes in the mips assembly language. Many
9642 * of these macros are simple and are similar to each other. These could
67c1ffbe 9643 * probably be handled by some kind of table or grammar approach instead of
252b5132
RH
9644 * this verbose method. Others are not simple macros but are more like
9645 * optimizing code generation.
9646 * One interesting optimization is when several store macros appear
67c1ffbe 9647 * consecutively that would load AT with the upper half of the same address.
252b5132
RH
9648 * The ensuing load upper instructions are ommited. This implies some kind
9649 * of global optimization. We currently only optimize within a single macro.
9650 * For many of the load and store macros if the address is specified as a
9651 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
9652 * first load register 'at' with zero and use it as the base register. The
9653 * mips assembler simply uses register $zero. Just one tiny optimization
9654 * we're missing.
9655 */
9656static void
833794fc 9657macro (struct mips_cl_insn *ip, char *str)
252b5132 9658{
c0ebe874
RS
9659 const struct mips_operand_array *operands;
9660 unsigned int breg, i;
741fe287 9661 unsigned int tempreg;
252b5132 9662 int mask;
43841e91 9663 int used_at = 0;
df58fc94 9664 expressionS label_expr;
252b5132 9665 expressionS expr1;
df58fc94 9666 expressionS *ep;
252b5132
RH
9667 const char *s;
9668 const char *s2;
9669 const char *fmt;
9670 int likely = 0;
252b5132 9671 int coproc = 0;
7f3c4072 9672 int offbits = 16;
1abe91b1 9673 int call = 0;
df58fc94
RS
9674 int jals = 0;
9675 int dbl = 0;
9676 int imm = 0;
9677 int ust = 0;
9678 int lp = 0;
f2ae14a1 9679 bfd_boolean large_offset;
252b5132 9680 int off;
252b5132 9681 int hold_mips_optimize;
f2ae14a1 9682 unsigned int align;
c0ebe874 9683 unsigned int op[MAX_OPERANDS];
252b5132 9684
9c2799c2 9685 gas_assert (! mips_opts.mips16);
252b5132 9686
c0ebe874
RS
9687 operands = insn_operands (ip);
9688 for (i = 0; i < MAX_OPERANDS; i++)
9689 if (operands->operand[i])
9690 op[i] = insn_extract_operand (ip, operands->operand[i]);
9691 else
9692 op[i] = -1;
9693
252b5132
RH
9694 mask = ip->insn_mo->mask;
9695
df58fc94
RS
9696 label_expr.X_op = O_constant;
9697 label_expr.X_op_symbol = NULL;
9698 label_expr.X_add_symbol = NULL;
9699 label_expr.X_add_number = 0;
9700
252b5132
RH
9701 expr1.X_op = O_constant;
9702 expr1.X_op_symbol = NULL;
9703 expr1.X_add_symbol = NULL;
9704 expr1.X_add_number = 1;
f2ae14a1 9705 align = 1;
252b5132
RH
9706
9707 switch (mask)
9708 {
9709 case M_DABS:
9710 dbl = 1;
9711 case M_ABS:
df58fc94
RS
9712 /* bgez $a0,1f
9713 move v0,$a0
9714 sub v0,$zero,$a0
9715 1:
9716 */
252b5132 9717
7d10b47d 9718 start_noreorder ();
252b5132 9719
df58fc94
RS
9720 if (mips_opts.micromips)
9721 micromips_label_expr (&label_expr);
9722 else
9723 label_expr.X_add_number = 8;
c0ebe874
RS
9724 macro_build (&label_expr, "bgez", "s,p", op[1]);
9725 if (op[0] == op[1])
a605d2b3 9726 macro_build (NULL, "nop", "");
252b5132 9727 else
c0ebe874
RS
9728 move_register (op[0], op[1]);
9729 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", op[0], 0, op[1]);
df58fc94
RS
9730 if (mips_opts.micromips)
9731 micromips_add_label ();
252b5132 9732
7d10b47d 9733 end_noreorder ();
8fc2e39e 9734 break;
252b5132
RH
9735
9736 case M_ADD_I:
9737 s = "addi";
9738 s2 = "add";
9739 goto do_addi;
9740 case M_ADDU_I:
9741 s = "addiu";
9742 s2 = "addu";
9743 goto do_addi;
9744 case M_DADD_I:
9745 dbl = 1;
9746 s = "daddi";
9747 s2 = "dadd";
df58fc94
RS
9748 if (!mips_opts.micromips)
9749 goto do_addi;
b0e6f033 9750 if (imm_expr.X_add_number >= -0x200
df58fc94
RS
9751 && imm_expr.X_add_number < 0x200)
9752 {
b0e6f033
RS
9753 macro_build (NULL, s, "t,r,.", op[0], op[1],
9754 (int) imm_expr.X_add_number);
df58fc94
RS
9755 break;
9756 }
9757 goto do_addi_i;
252b5132
RH
9758 case M_DADDU_I:
9759 dbl = 1;
9760 s = "daddiu";
9761 s2 = "daddu";
9762 do_addi:
b0e6f033 9763 if (imm_expr.X_add_number >= -0x8000
252b5132
RH
9764 && imm_expr.X_add_number < 0x8000)
9765 {
c0ebe874 9766 macro_build (&imm_expr, s, "t,r,j", op[0], op[1], BFD_RELOC_LO16);
8fc2e39e 9767 break;
252b5132 9768 }
df58fc94 9769 do_addi_i:
8fc2e39e 9770 used_at = 1;
67c0d1eb 9771 load_register (AT, &imm_expr, dbl);
c0ebe874 9772 macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
252b5132
RH
9773 break;
9774
9775 case M_AND_I:
9776 s = "andi";
9777 s2 = "and";
9778 goto do_bit;
9779 case M_OR_I:
9780 s = "ori";
9781 s2 = "or";
9782 goto do_bit;
9783 case M_NOR_I:
9784 s = "";
9785 s2 = "nor";
9786 goto do_bit;
9787 case M_XOR_I:
9788 s = "xori";
9789 s2 = "xor";
9790 do_bit:
b0e6f033 9791 if (imm_expr.X_add_number >= 0
252b5132
RH
9792 && imm_expr.X_add_number < 0x10000)
9793 {
9794 if (mask != M_NOR_I)
c0ebe874 9795 macro_build (&imm_expr, s, "t,r,i", op[0], op[1], BFD_RELOC_LO16);
252b5132
RH
9796 else
9797 {
67c0d1eb 9798 macro_build (&imm_expr, "ori", "t,r,i",
c0ebe874
RS
9799 op[0], op[1], BFD_RELOC_LO16);
9800 macro_build (NULL, "nor", "d,v,t", op[0], op[0], 0);
252b5132 9801 }
8fc2e39e 9802 break;
252b5132
RH
9803 }
9804
8fc2e39e 9805 used_at = 1;
bad1aba3 9806 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874 9807 macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
252b5132
RH
9808 break;
9809
8b082fb1
TS
9810 case M_BALIGN:
9811 switch (imm_expr.X_add_number)
9812 {
9813 case 0:
9814 macro_build (NULL, "nop", "");
9815 break;
9816 case 2:
c0ebe874 9817 macro_build (NULL, "packrl.ph", "d,s,t", op[0], op[0], op[1]);
8b082fb1 9818 break;
03f66e8a
MR
9819 case 1:
9820 case 3:
c0ebe874 9821 macro_build (NULL, "balign", "t,s,2", op[0], op[1],
90ecf173 9822 (int) imm_expr.X_add_number);
8b082fb1 9823 break;
03f66e8a
MR
9824 default:
9825 as_bad (_("BALIGN immediate not 0, 1, 2 or 3 (%lu)"),
9826 (unsigned long) imm_expr.X_add_number);
9827 break;
8b082fb1
TS
9828 }
9829 break;
9830
df58fc94
RS
9831 case M_BC1FL:
9832 case M_BC1TL:
9833 case M_BC2FL:
9834 case M_BC2TL:
9835 gas_assert (mips_opts.micromips);
9836 macro_build_branch_ccl (mask, &offset_expr,
9837 EXTRACT_OPERAND (1, BCC, *ip));
9838 break;
9839
252b5132 9840 case M_BEQ_I:
252b5132 9841 case M_BEQL_I:
252b5132 9842 case M_BNE_I:
252b5132 9843 case M_BNEL_I:
b0e6f033 9844 if (imm_expr.X_add_number == 0)
c0ebe874 9845 op[1] = 0;
df58fc94 9846 else
252b5132 9847 {
c0ebe874 9848 op[1] = AT;
df58fc94 9849 used_at = 1;
bad1aba3 9850 load_register (op[1], &imm_expr, GPR_SIZE == 64);
252b5132 9851 }
df58fc94
RS
9852 /* Fall through. */
9853 case M_BEQL:
9854 case M_BNEL:
c0ebe874 9855 macro_build_branch_rsrt (mask, &offset_expr, op[0], op[1]);
252b5132
RH
9856 break;
9857
9858 case M_BGEL:
9859 likely = 1;
9860 case M_BGE:
c0ebe874
RS
9861 if (op[1] == 0)
9862 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, op[0]);
9863 else if (op[0] == 0)
9864 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[1]);
df58fc94 9865 else
252b5132 9866 {
df58fc94 9867 used_at = 1;
c0ebe874 9868 macro_build (NULL, "slt", "d,v,t", AT, op[0], op[1]);
df58fc94
RS
9869 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9870 &offset_expr, AT, ZERO);
252b5132 9871 }
df58fc94
RS
9872 break;
9873
9874 case M_BGEZL:
9875 case M_BGEZALL:
9876 case M_BGTZL:
9877 case M_BLEZL:
9878 case M_BLTZL:
9879 case M_BLTZALL:
c0ebe874 9880 macro_build_branch_rs (mask, &offset_expr, op[0]);
252b5132
RH
9881 break;
9882
9883 case M_BGTL_I:
9884 likely = 1;
9885 case M_BGT_I:
90ecf173 9886 /* Check for > max integer. */
b0e6f033 9887 if (imm_expr.X_add_number >= GPR_SMAX)
252b5132
RH
9888 {
9889 do_false:
90ecf173 9890 /* Result is always false. */
252b5132 9891 if (! likely)
a605d2b3 9892 macro_build (NULL, "nop", "");
252b5132 9893 else
df58fc94 9894 macro_build_branch_rsrt (M_BNEL, &offset_expr, ZERO, ZERO);
8fc2e39e 9895 break;
252b5132 9896 }
f9419b05 9897 ++imm_expr.X_add_number;
252b5132
RH
9898 /* FALLTHROUGH */
9899 case M_BGE_I:
9900 case M_BGEL_I:
9901 if (mask == M_BGEL_I)
9902 likely = 1;
b0e6f033 9903 if (imm_expr.X_add_number == 0)
252b5132 9904 {
df58fc94 9905 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ,
c0ebe874 9906 &offset_expr, op[0]);
8fc2e39e 9907 break;
252b5132 9908 }
b0e6f033 9909 if (imm_expr.X_add_number == 1)
252b5132 9910 {
df58fc94 9911 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ,
c0ebe874 9912 &offset_expr, op[0]);
8fc2e39e 9913 break;
252b5132 9914 }
b0e6f033 9915 if (imm_expr.X_add_number <= GPR_SMIN)
252b5132
RH
9916 {
9917 do_true:
9918 /* result is always true */
1661c76c 9919 as_warn (_("branch %s is always true"), ip->insn_mo->name);
67c0d1eb 9920 macro_build (&offset_expr, "b", "p");
8fc2e39e 9921 break;
252b5132 9922 }
8fc2e39e 9923 used_at = 1;
c0ebe874 9924 set_at (op[0], 0);
df58fc94
RS
9925 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9926 &offset_expr, AT, ZERO);
252b5132
RH
9927 break;
9928
9929 case M_BGEUL:
9930 likely = 1;
9931 case M_BGEU:
c0ebe874 9932 if (op[1] == 0)
252b5132 9933 goto do_true;
c0ebe874 9934 else if (op[0] == 0)
df58fc94 9935 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
c0ebe874 9936 &offset_expr, ZERO, op[1]);
df58fc94 9937 else
252b5132 9938 {
df58fc94 9939 used_at = 1;
c0ebe874 9940 macro_build (NULL, "sltu", "d,v,t", AT, op[0], op[1]);
df58fc94
RS
9941 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9942 &offset_expr, AT, ZERO);
252b5132 9943 }
252b5132
RH
9944 break;
9945
9946 case M_BGTUL_I:
9947 likely = 1;
9948 case M_BGTU_I:
c0ebe874 9949 if (op[0] == 0
bad1aba3 9950 || (GPR_SIZE == 32
f01dc953 9951 && imm_expr.X_add_number == -1))
252b5132 9952 goto do_false;
f9419b05 9953 ++imm_expr.X_add_number;
252b5132
RH
9954 /* FALLTHROUGH */
9955 case M_BGEU_I:
9956 case M_BGEUL_I:
9957 if (mask == M_BGEUL_I)
9958 likely = 1;
b0e6f033 9959 if (imm_expr.X_add_number == 0)
252b5132 9960 goto do_true;
b0e6f033 9961 else if (imm_expr.X_add_number == 1)
df58fc94 9962 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
c0ebe874 9963 &offset_expr, op[0], ZERO);
df58fc94 9964 else
252b5132 9965 {
df58fc94 9966 used_at = 1;
c0ebe874 9967 set_at (op[0], 1);
df58fc94
RS
9968 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9969 &offset_expr, AT, ZERO);
252b5132 9970 }
252b5132
RH
9971 break;
9972
9973 case M_BGTL:
9974 likely = 1;
9975 case M_BGT:
c0ebe874
RS
9976 if (op[1] == 0)
9977 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, op[0]);
9978 else if (op[0] == 0)
9979 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[1]);
df58fc94 9980 else
252b5132 9981 {
df58fc94 9982 used_at = 1;
c0ebe874 9983 macro_build (NULL, "slt", "d,v,t", AT, op[1], op[0]);
df58fc94
RS
9984 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9985 &offset_expr, AT, ZERO);
252b5132 9986 }
252b5132
RH
9987 break;
9988
9989 case M_BGTUL:
9990 likely = 1;
9991 case M_BGTU:
c0ebe874 9992 if (op[1] == 0)
df58fc94 9993 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
c0ebe874
RS
9994 &offset_expr, op[0], ZERO);
9995 else if (op[0] == 0)
df58fc94
RS
9996 goto do_false;
9997 else
252b5132 9998 {
df58fc94 9999 used_at = 1;
c0ebe874 10000 macro_build (NULL, "sltu", "d,v,t", AT, op[1], op[0]);
df58fc94
RS
10001 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10002 &offset_expr, AT, ZERO);
252b5132 10003 }
252b5132
RH
10004 break;
10005
10006 case M_BLEL:
10007 likely = 1;
10008 case M_BLE:
c0ebe874
RS
10009 if (op[1] == 0)
10010 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[0]);
10011 else if (op[0] == 0)
10012 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, op[1]);
df58fc94 10013 else
252b5132 10014 {
df58fc94 10015 used_at = 1;
c0ebe874 10016 macro_build (NULL, "slt", "d,v,t", AT, op[1], op[0]);
df58fc94
RS
10017 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10018 &offset_expr, AT, ZERO);
252b5132 10019 }
252b5132
RH
10020 break;
10021
10022 case M_BLEL_I:
10023 likely = 1;
10024 case M_BLE_I:
b0e6f033 10025 if (imm_expr.X_add_number >= GPR_SMAX)
252b5132 10026 goto do_true;
f9419b05 10027 ++imm_expr.X_add_number;
252b5132
RH
10028 /* FALLTHROUGH */
10029 case M_BLT_I:
10030 case M_BLTL_I:
10031 if (mask == M_BLTL_I)
10032 likely = 1;
b0e6f033 10033 if (imm_expr.X_add_number == 0)
c0ebe874 10034 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[0]);
b0e6f033 10035 else if (imm_expr.X_add_number == 1)
c0ebe874 10036 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[0]);
df58fc94 10037 else
252b5132 10038 {
df58fc94 10039 used_at = 1;
c0ebe874 10040 set_at (op[0], 0);
df58fc94
RS
10041 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10042 &offset_expr, AT, ZERO);
252b5132 10043 }
252b5132
RH
10044 break;
10045
10046 case M_BLEUL:
10047 likely = 1;
10048 case M_BLEU:
c0ebe874 10049 if (op[1] == 0)
df58fc94 10050 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
c0ebe874
RS
10051 &offset_expr, op[0], ZERO);
10052 else if (op[0] == 0)
df58fc94
RS
10053 goto do_true;
10054 else
252b5132 10055 {
df58fc94 10056 used_at = 1;
c0ebe874 10057 macro_build (NULL, "sltu", "d,v,t", AT, op[1], op[0]);
df58fc94
RS
10058 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
10059 &offset_expr, AT, ZERO);
252b5132 10060 }
252b5132
RH
10061 break;
10062
10063 case M_BLEUL_I:
10064 likely = 1;
10065 case M_BLEU_I:
c0ebe874 10066 if (op[0] == 0
bad1aba3 10067 || (GPR_SIZE == 32
f01dc953 10068 && imm_expr.X_add_number == -1))
252b5132 10069 goto do_true;
f9419b05 10070 ++imm_expr.X_add_number;
252b5132
RH
10071 /* FALLTHROUGH */
10072 case M_BLTU_I:
10073 case M_BLTUL_I:
10074 if (mask == M_BLTUL_I)
10075 likely = 1;
b0e6f033 10076 if (imm_expr.X_add_number == 0)
252b5132 10077 goto do_false;
b0e6f033 10078 else if (imm_expr.X_add_number == 1)
df58fc94 10079 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
c0ebe874 10080 &offset_expr, op[0], ZERO);
df58fc94 10081 else
252b5132 10082 {
df58fc94 10083 used_at = 1;
c0ebe874 10084 set_at (op[0], 1);
df58fc94
RS
10085 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10086 &offset_expr, AT, ZERO);
252b5132 10087 }
252b5132
RH
10088 break;
10089
10090 case M_BLTL:
10091 likely = 1;
10092 case M_BLT:
c0ebe874
RS
10093 if (op[1] == 0)
10094 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[0]);
10095 else if (op[0] == 0)
10096 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, op[1]);
df58fc94 10097 else
252b5132 10098 {
df58fc94 10099 used_at = 1;
c0ebe874 10100 macro_build (NULL, "slt", "d,v,t", AT, op[0], op[1]);
df58fc94
RS
10101 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10102 &offset_expr, AT, ZERO);
252b5132 10103 }
252b5132
RH
10104 break;
10105
10106 case M_BLTUL:
10107 likely = 1;
10108 case M_BLTU:
c0ebe874 10109 if (op[1] == 0)
252b5132 10110 goto do_false;
c0ebe874 10111 else if (op[0] == 0)
df58fc94 10112 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
c0ebe874 10113 &offset_expr, ZERO, op[1]);
df58fc94 10114 else
252b5132 10115 {
df58fc94 10116 used_at = 1;
c0ebe874 10117 macro_build (NULL, "sltu", "d,v,t", AT, op[0], op[1]);
df58fc94
RS
10118 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
10119 &offset_expr, AT, ZERO);
252b5132 10120 }
252b5132
RH
10121 break;
10122
10123 case M_DDIV_3:
10124 dbl = 1;
10125 case M_DIV_3:
10126 s = "mflo";
10127 goto do_div3;
10128 case M_DREM_3:
10129 dbl = 1;
10130 case M_REM_3:
10131 s = "mfhi";
10132 do_div3:
c0ebe874 10133 if (op[2] == 0)
252b5132 10134 {
1661c76c 10135 as_warn (_("divide by zero"));
252b5132 10136 if (mips_trap)
df58fc94 10137 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
252b5132 10138 else
df58fc94 10139 macro_build (NULL, "break", BRK_FMT, 7);
8fc2e39e 10140 break;
252b5132
RH
10141 }
10142
7d10b47d 10143 start_noreorder ();
252b5132
RH
10144 if (mips_trap)
10145 {
c0ebe874
RS
10146 macro_build (NULL, "teq", TRAP_FMT, op[2], ZERO, 7);
10147 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", op[1], op[2]);
252b5132
RH
10148 }
10149 else
10150 {
df58fc94
RS
10151 if (mips_opts.micromips)
10152 micromips_label_expr (&label_expr);
10153 else
10154 label_expr.X_add_number = 8;
c0ebe874
RS
10155 macro_build (&label_expr, "bne", "s,t,p", op[2], ZERO);
10156 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", op[1], op[2]);
df58fc94
RS
10157 macro_build (NULL, "break", BRK_FMT, 7);
10158 if (mips_opts.micromips)
10159 micromips_add_label ();
252b5132
RH
10160 }
10161 expr1.X_add_number = -1;
8fc2e39e 10162 used_at = 1;
f6a22291 10163 load_register (AT, &expr1, dbl);
df58fc94
RS
10164 if (mips_opts.micromips)
10165 micromips_label_expr (&label_expr);
10166 else
10167 label_expr.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
c0ebe874 10168 macro_build (&label_expr, "bne", "s,t,p", op[2], AT);
252b5132
RH
10169 if (dbl)
10170 {
10171 expr1.X_add_number = 1;
f6a22291 10172 load_register (AT, &expr1, dbl);
df58fc94 10173 macro_build (NULL, "dsll32", SHFT_FMT, AT, AT, 31);
252b5132
RH
10174 }
10175 else
10176 {
10177 expr1.X_add_number = 0x80000000;
df58fc94 10178 macro_build (&expr1, "lui", LUI_FMT, AT, BFD_RELOC_HI16);
252b5132
RH
10179 }
10180 if (mips_trap)
10181 {
c0ebe874 10182 macro_build (NULL, "teq", TRAP_FMT, op[1], AT, 6);
252b5132
RH
10183 /* We want to close the noreorder block as soon as possible, so
10184 that later insns are available for delay slot filling. */
7d10b47d 10185 end_noreorder ();
252b5132
RH
10186 }
10187 else
10188 {
df58fc94
RS
10189 if (mips_opts.micromips)
10190 micromips_label_expr (&label_expr);
10191 else
10192 label_expr.X_add_number = 8;
c0ebe874 10193 macro_build (&label_expr, "bne", "s,t,p", op[1], AT);
a605d2b3 10194 macro_build (NULL, "nop", "");
252b5132
RH
10195
10196 /* We want to close the noreorder block as soon as possible, so
10197 that later insns are available for delay slot filling. */
7d10b47d 10198 end_noreorder ();
252b5132 10199
df58fc94 10200 macro_build (NULL, "break", BRK_FMT, 6);
252b5132 10201 }
df58fc94
RS
10202 if (mips_opts.micromips)
10203 micromips_add_label ();
c0ebe874 10204 macro_build (NULL, s, MFHL_FMT, op[0]);
252b5132
RH
10205 break;
10206
10207 case M_DIV_3I:
10208 s = "div";
10209 s2 = "mflo";
10210 goto do_divi;
10211 case M_DIVU_3I:
10212 s = "divu";
10213 s2 = "mflo";
10214 goto do_divi;
10215 case M_REM_3I:
10216 s = "div";
10217 s2 = "mfhi";
10218 goto do_divi;
10219 case M_REMU_3I:
10220 s = "divu";
10221 s2 = "mfhi";
10222 goto do_divi;
10223 case M_DDIV_3I:
10224 dbl = 1;
10225 s = "ddiv";
10226 s2 = "mflo";
10227 goto do_divi;
10228 case M_DDIVU_3I:
10229 dbl = 1;
10230 s = "ddivu";
10231 s2 = "mflo";
10232 goto do_divi;
10233 case M_DREM_3I:
10234 dbl = 1;
10235 s = "ddiv";
10236 s2 = "mfhi";
10237 goto do_divi;
10238 case M_DREMU_3I:
10239 dbl = 1;
10240 s = "ddivu";
10241 s2 = "mfhi";
10242 do_divi:
b0e6f033 10243 if (imm_expr.X_add_number == 0)
252b5132 10244 {
1661c76c 10245 as_warn (_("divide by zero"));
252b5132 10246 if (mips_trap)
df58fc94 10247 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
252b5132 10248 else
df58fc94 10249 macro_build (NULL, "break", BRK_FMT, 7);
8fc2e39e 10250 break;
252b5132 10251 }
b0e6f033 10252 if (imm_expr.X_add_number == 1)
252b5132
RH
10253 {
10254 if (strcmp (s2, "mflo") == 0)
c0ebe874 10255 move_register (op[0], op[1]);
252b5132 10256 else
c0ebe874 10257 move_register (op[0], ZERO);
8fc2e39e 10258 break;
252b5132 10259 }
b0e6f033 10260 if (imm_expr.X_add_number == -1 && s[strlen (s) - 1] != 'u')
252b5132
RH
10261 {
10262 if (strcmp (s2, "mflo") == 0)
c0ebe874 10263 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", op[0], op[1]);
252b5132 10264 else
c0ebe874 10265 move_register (op[0], ZERO);
8fc2e39e 10266 break;
252b5132
RH
10267 }
10268
8fc2e39e 10269 used_at = 1;
67c0d1eb 10270 load_register (AT, &imm_expr, dbl);
c0ebe874
RS
10271 macro_build (NULL, s, "z,s,t", op[1], AT);
10272 macro_build (NULL, s2, MFHL_FMT, op[0]);
252b5132
RH
10273 break;
10274
10275 case M_DIVU_3:
10276 s = "divu";
10277 s2 = "mflo";
10278 goto do_divu3;
10279 case M_REMU_3:
10280 s = "divu";
10281 s2 = "mfhi";
10282 goto do_divu3;
10283 case M_DDIVU_3:
10284 s = "ddivu";
10285 s2 = "mflo";
10286 goto do_divu3;
10287 case M_DREMU_3:
10288 s = "ddivu";
10289 s2 = "mfhi";
10290 do_divu3:
7d10b47d 10291 start_noreorder ();
252b5132
RH
10292 if (mips_trap)
10293 {
c0ebe874
RS
10294 macro_build (NULL, "teq", TRAP_FMT, op[2], ZERO, 7);
10295 macro_build (NULL, s, "z,s,t", op[1], op[2]);
252b5132
RH
10296 /* We want to close the noreorder block as soon as possible, so
10297 that later insns are available for delay slot filling. */
7d10b47d 10298 end_noreorder ();
252b5132
RH
10299 }
10300 else
10301 {
df58fc94
RS
10302 if (mips_opts.micromips)
10303 micromips_label_expr (&label_expr);
10304 else
10305 label_expr.X_add_number = 8;
c0ebe874
RS
10306 macro_build (&label_expr, "bne", "s,t,p", op[2], ZERO);
10307 macro_build (NULL, s, "z,s,t", op[1], op[2]);
252b5132
RH
10308
10309 /* We want to close the noreorder block as soon as possible, so
10310 that later insns are available for delay slot filling. */
7d10b47d 10311 end_noreorder ();
df58fc94
RS
10312 macro_build (NULL, "break", BRK_FMT, 7);
10313 if (mips_opts.micromips)
10314 micromips_add_label ();
252b5132 10315 }
c0ebe874 10316 macro_build (NULL, s2, MFHL_FMT, op[0]);
8fc2e39e 10317 break;
252b5132 10318
1abe91b1
MR
10319 case M_DLCA_AB:
10320 dbl = 1;
10321 case M_LCA_AB:
10322 call = 1;
10323 goto do_la;
252b5132
RH
10324 case M_DLA_AB:
10325 dbl = 1;
10326 case M_LA_AB:
1abe91b1 10327 do_la:
252b5132
RH
10328 /* Load the address of a symbol into a register. If breg is not
10329 zero, we then add a base register to it. */
10330
c0ebe874 10331 breg = op[2];
bad1aba3 10332 if (dbl && GPR_SIZE == 32)
3bec30a8
TS
10333 as_warn (_("dla used to load 32-bit register"));
10334
90ecf173 10335 if (!dbl && HAVE_64BIT_OBJECTS)
3bec30a8
TS
10336 as_warn (_("la used to load 64-bit address"));
10337
f2ae14a1 10338 if (small_offset_p (0, align, 16))
0c11417f 10339 {
c0ebe874 10340 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", op[0], breg,
f2ae14a1 10341 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2]);
8fc2e39e 10342 break;
0c11417f
MR
10343 }
10344
c0ebe874 10345 if (mips_opts.at && (op[0] == breg))
afdbd6d0
CD
10346 {
10347 tempreg = AT;
10348 used_at = 1;
10349 }
10350 else
c0ebe874 10351 tempreg = op[0];
afdbd6d0 10352
252b5132
RH
10353 if (offset_expr.X_op != O_symbol
10354 && offset_expr.X_op != O_constant)
10355 {
1661c76c 10356 as_bad (_("expression too complex"));
252b5132
RH
10357 offset_expr.X_op = O_constant;
10358 }
10359
252b5132 10360 if (offset_expr.X_op == O_constant)
aed1a261 10361 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
252b5132
RH
10362 else if (mips_pic == NO_PIC)
10363 {
d6bc6245 10364 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 10365 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
10366 Otherwise we want
10367 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
10368 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10369 If we have a constant, we need two instructions anyhow,
d6bc6245 10370 so we may as well always use the latter form.
76b3015f 10371
6caf9ef4
TS
10372 With 64bit address space and a usable $at we want
10373 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
10374 lui $at,<sym> (BFD_RELOC_HI16_S)
10375 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
10376 daddiu $at,<sym> (BFD_RELOC_LO16)
10377 dsll32 $tempreg,0
10378 daddu $tempreg,$tempreg,$at
10379
10380 If $at is already in use, we use a path which is suboptimal
10381 on superscalar processors.
10382 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
10383 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
10384 dsll $tempreg,16
10385 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
10386 dsll $tempreg,16
10387 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
10388
10389 For GP relative symbols in 64bit address space we can use
10390 the same sequence as in 32bit address space. */
aed1a261 10391 if (HAVE_64BIT_SYMBOLS)
252b5132 10392 {
6caf9ef4
TS
10393 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
10394 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
10395 {
10396 relax_start (offset_expr.X_add_symbol);
10397 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10398 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
10399 relax_switch ();
10400 }
d6bc6245 10401
741fe287 10402 if (used_at == 0 && mips_opts.at)
98d3f06f 10403 {
df58fc94 10404 macro_build (&offset_expr, "lui", LUI_FMT,
17a2f251 10405 tempreg, BFD_RELOC_MIPS_HIGHEST);
df58fc94 10406 macro_build (&offset_expr, "lui", LUI_FMT,
17a2f251 10407 AT, BFD_RELOC_HI16_S);
67c0d1eb 10408 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 10409 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb 10410 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 10411 AT, AT, BFD_RELOC_LO16);
df58fc94 10412 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
67c0d1eb 10413 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
98d3f06f
KH
10414 used_at = 1;
10415 }
10416 else
10417 {
df58fc94 10418 macro_build (&offset_expr, "lui", LUI_FMT,
17a2f251 10419 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 10420 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 10421 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
df58fc94 10422 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
67c0d1eb 10423 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 10424 tempreg, tempreg, BFD_RELOC_HI16_S);
df58fc94 10425 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
67c0d1eb 10426 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 10427 tempreg, tempreg, BFD_RELOC_LO16);
98d3f06f 10428 }
6caf9ef4
TS
10429
10430 if (mips_relax.sequence)
10431 relax_end ();
98d3f06f
KH
10432 }
10433 else
10434 {
10435 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 10436 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
98d3f06f 10437 {
4d7206a2 10438 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
10439 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10440 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 10441 relax_switch ();
98d3f06f 10442 }
6943caf0 10443 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
1661c76c 10444 as_bad (_("offset too large"));
67c0d1eb
RS
10445 macro_build_lui (&offset_expr, tempreg);
10446 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10447 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2
RS
10448 if (mips_relax.sequence)
10449 relax_end ();
98d3f06f 10450 }
252b5132 10451 }
0a44bf69 10452 else if (!mips_big_got && !HAVE_NEWABI)
252b5132 10453 {
9117d219
NC
10454 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
10455
252b5132
RH
10456 /* If this is a reference to an external symbol, and there
10457 is no constant, we want
10458 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
1abe91b1 10459 or for lca or if tempreg is PIC_CALL_REG
9117d219 10460 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
252b5132
RH
10461 For a local symbol, we want
10462 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10463 nop
10464 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10465
10466 If we have a small constant, and this is a reference to
10467 an external symbol, we want
10468 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10469 nop
10470 addiu $tempreg,$tempreg,<constant>
10471 For a local symbol, we want the same instruction
10472 sequence, but we output a BFD_RELOC_LO16 reloc on the
10473 addiu instruction.
10474
10475 If we have a large constant, and this is a reference to
10476 an external symbol, we want
10477 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10478 lui $at,<hiconstant>
10479 addiu $at,$at,<loconstant>
10480 addu $tempreg,$tempreg,$at
10481 For a local symbol, we want the same instruction
10482 sequence, but we output a BFD_RELOC_LO16 reloc on the
ed6fb7bd 10483 addiu instruction.
ed6fb7bd
SC
10484 */
10485
4d7206a2 10486 if (offset_expr.X_add_number == 0)
252b5132 10487 {
0a44bf69
RS
10488 if (mips_pic == SVR4_PIC
10489 && breg == 0
10490 && (call || tempreg == PIC_CALL_REG))
4d7206a2
RS
10491 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
10492
10493 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
10494 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10495 lw_reloc_type, mips_gp_register);
4d7206a2 10496 if (breg != 0)
252b5132
RH
10497 {
10498 /* We're going to put in an addu instruction using
10499 tempreg, so we may as well insert the nop right
10500 now. */
269137b2 10501 load_delay_nop ();
252b5132 10502 }
4d7206a2 10503 relax_switch ();
67c0d1eb
RS
10504 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10505 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 10506 load_delay_nop ();
67c0d1eb
RS
10507 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10508 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2 10509 relax_end ();
252b5132
RH
10510 /* FIXME: If breg == 0, and the next instruction uses
10511 $tempreg, then if this variant case is used an extra
10512 nop will be generated. */
10513 }
4d7206a2
RS
10514 else if (offset_expr.X_add_number >= -0x8000
10515 && offset_expr.X_add_number < 0x8000)
252b5132 10516 {
67c0d1eb 10517 load_got_offset (tempreg, &offset_expr);
269137b2 10518 load_delay_nop ();
67c0d1eb 10519 add_got_offset (tempreg, &offset_expr);
252b5132
RH
10520 }
10521 else
10522 {
4d7206a2
RS
10523 expr1.X_add_number = offset_expr.X_add_number;
10524 offset_expr.X_add_number =
43c0598f 10525 SEXT_16BIT (offset_expr.X_add_number);
67c0d1eb 10526 load_got_offset (tempreg, &offset_expr);
f6a22291 10527 offset_expr.X_add_number = expr1.X_add_number;
252b5132
RH
10528 /* If we are going to add in a base register, and the
10529 target register and the base register are the same,
10530 then we are using AT as a temporary register. Since
10531 we want to load the constant into AT, we add our
10532 current AT (from the global offset table) and the
10533 register into the register now, and pretend we were
10534 not using a base register. */
c0ebe874 10535 if (breg == op[0])
252b5132 10536 {
269137b2 10537 load_delay_nop ();
67c0d1eb 10538 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
c0ebe874 10539 op[0], AT, breg);
252b5132 10540 breg = 0;
c0ebe874 10541 tempreg = op[0];
252b5132 10542 }
f6a22291 10543 add_got_offset_hilo (tempreg, &offset_expr, AT);
252b5132
RH
10544 used_at = 1;
10545 }
10546 }
0a44bf69 10547 else if (!mips_big_got && HAVE_NEWABI)
f5040a92 10548 {
67c0d1eb 10549 int add_breg_early = 0;
f5040a92
AO
10550
10551 /* If this is a reference to an external, and there is no
10552 constant, or local symbol (*), with or without a
10553 constant, we want
10554 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
1abe91b1 10555 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
10556 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
10557
10558 If we have a small constant, and this is a reference to
10559 an external symbol, we want
10560 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
10561 addiu $tempreg,$tempreg,<constant>
10562
10563 If we have a large constant, and this is a reference to
10564 an external symbol, we want
10565 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
10566 lui $at,<hiconstant>
10567 addiu $at,$at,<loconstant>
10568 addu $tempreg,$tempreg,$at
10569
10570 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
10571 local symbols, even though it introduces an additional
10572 instruction. */
10573
f5040a92
AO
10574 if (offset_expr.X_add_number)
10575 {
4d7206a2 10576 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
10577 offset_expr.X_add_number = 0;
10578
4d7206a2 10579 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
10580 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10581 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
10582
10583 if (expr1.X_add_number >= -0x8000
10584 && expr1.X_add_number < 0x8000)
10585 {
67c0d1eb
RS
10586 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10587 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 10588 }
ecd13cd3 10589 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92 10590 {
c0ebe874
RS
10591 unsigned int dreg;
10592
f5040a92
AO
10593 /* If we are going to add in a base register, and the
10594 target register and the base register are the same,
10595 then we are using AT as a temporary register. Since
10596 we want to load the constant into AT, we add our
10597 current AT (from the global offset table) and the
10598 register into the register now, and pretend we were
10599 not using a base register. */
c0ebe874 10600 if (breg != op[0])
f5040a92
AO
10601 dreg = tempreg;
10602 else
10603 {
9c2799c2 10604 gas_assert (tempreg == AT);
67c0d1eb 10605 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
c0ebe874
RS
10606 op[0], AT, breg);
10607 dreg = op[0];
67c0d1eb 10608 add_breg_early = 1;
f5040a92
AO
10609 }
10610
f6a22291 10611 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 10612 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 10613 dreg, dreg, AT);
f5040a92 10614
f5040a92
AO
10615 used_at = 1;
10616 }
10617 else
10618 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
10619
4d7206a2 10620 relax_switch ();
f5040a92
AO
10621 offset_expr.X_add_number = expr1.X_add_number;
10622
67c0d1eb
RS
10623 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10624 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10625 if (add_breg_early)
f5040a92 10626 {
67c0d1eb 10627 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
c0ebe874 10628 op[0], tempreg, breg);
f5040a92 10629 breg = 0;
c0ebe874 10630 tempreg = op[0];
f5040a92 10631 }
4d7206a2 10632 relax_end ();
f5040a92 10633 }
4d7206a2 10634 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
f5040a92 10635 {
4d7206a2 10636 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
10637 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10638 BFD_RELOC_MIPS_CALL16, mips_gp_register);
4d7206a2 10639 relax_switch ();
67c0d1eb
RS
10640 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10641 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2 10642 relax_end ();
f5040a92 10643 }
4d7206a2 10644 else
f5040a92 10645 {
67c0d1eb
RS
10646 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10647 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
10648 }
10649 }
0a44bf69 10650 else if (mips_big_got && !HAVE_NEWABI)
252b5132 10651 {
67c0d1eb 10652 int gpdelay;
9117d219
NC
10653 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
10654 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
ed6fb7bd 10655 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
252b5132
RH
10656
10657 /* This is the large GOT case. If this is a reference to an
10658 external symbol, and there is no constant, we want
10659 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10660 addu $tempreg,$tempreg,$gp
10661 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 10662 or for lca or if tempreg is PIC_CALL_REG
9117d219
NC
10663 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
10664 addu $tempreg,$tempreg,$gp
10665 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
252b5132
RH
10666 For a local symbol, we want
10667 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10668 nop
10669 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10670
10671 If we have a small constant, and this is a reference to
10672 an external symbol, we want
10673 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10674 addu $tempreg,$tempreg,$gp
10675 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10676 nop
10677 addiu $tempreg,$tempreg,<constant>
10678 For a local symbol, we want
10679 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10680 nop
10681 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
10682
10683 If we have a large constant, and this is a reference to
10684 an external symbol, we want
10685 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10686 addu $tempreg,$tempreg,$gp
10687 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10688 lui $at,<hiconstant>
10689 addiu $at,$at,<loconstant>
10690 addu $tempreg,$tempreg,$at
10691 For a local symbol, we want
10692 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10693 lui $at,<hiconstant>
10694 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
10695 addu $tempreg,$tempreg,$at
f5040a92 10696 */
438c16b8 10697
252b5132
RH
10698 expr1.X_add_number = offset_expr.X_add_number;
10699 offset_expr.X_add_number = 0;
4d7206a2 10700 relax_start (offset_expr.X_add_symbol);
67c0d1eb 10701 gpdelay = reg_needs_delay (mips_gp_register);
1abe91b1
MR
10702 if (expr1.X_add_number == 0 && breg == 0
10703 && (call || tempreg == PIC_CALL_REG))
9117d219
NC
10704 {
10705 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
10706 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
10707 }
df58fc94 10708 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
67c0d1eb 10709 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 10710 tempreg, tempreg, mips_gp_register);
67c0d1eb 10711 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 10712 tempreg, lw_reloc_type, tempreg);
252b5132
RH
10713 if (expr1.X_add_number == 0)
10714 {
67c0d1eb 10715 if (breg != 0)
252b5132
RH
10716 {
10717 /* We're going to put in an addu instruction using
10718 tempreg, so we may as well insert the nop right
10719 now. */
269137b2 10720 load_delay_nop ();
252b5132 10721 }
252b5132
RH
10722 }
10723 else if (expr1.X_add_number >= -0x8000
10724 && expr1.X_add_number < 0x8000)
10725 {
269137b2 10726 load_delay_nop ();
67c0d1eb 10727 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 10728 tempreg, tempreg, BFD_RELOC_LO16);
252b5132
RH
10729 }
10730 else
10731 {
c0ebe874
RS
10732 unsigned int dreg;
10733
252b5132
RH
10734 /* If we are going to add in a base register, and the
10735 target register and the base register are the same,
10736 then we are using AT as a temporary register. Since
10737 we want to load the constant into AT, we add our
10738 current AT (from the global offset table) and the
10739 register into the register now, and pretend we were
10740 not using a base register. */
c0ebe874 10741 if (breg != op[0])
67c0d1eb 10742 dreg = tempreg;
252b5132
RH
10743 else
10744 {
9c2799c2 10745 gas_assert (tempreg == AT);
269137b2 10746 load_delay_nop ();
67c0d1eb 10747 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
c0ebe874
RS
10748 op[0], AT, breg);
10749 dreg = op[0];
252b5132
RH
10750 }
10751
f6a22291 10752 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 10753 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
252b5132 10754
252b5132
RH
10755 used_at = 1;
10756 }
43c0598f 10757 offset_expr.X_add_number = SEXT_16BIT (expr1.X_add_number);
4d7206a2 10758 relax_switch ();
252b5132 10759
67c0d1eb 10760 if (gpdelay)
252b5132
RH
10761 {
10762 /* This is needed because this instruction uses $gp, but
f5040a92 10763 the first instruction on the main stream does not. */
67c0d1eb 10764 macro_build (NULL, "nop", "");
252b5132 10765 }
ed6fb7bd 10766
67c0d1eb
RS
10767 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10768 local_reloc_type, mips_gp_register);
f5040a92 10769 if (expr1.X_add_number >= -0x8000
252b5132
RH
10770 && expr1.X_add_number < 0x8000)
10771 {
269137b2 10772 load_delay_nop ();
67c0d1eb
RS
10773 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10774 tempreg, tempreg, BFD_RELOC_LO16);
252b5132 10775 /* FIXME: If add_number is 0, and there was no base
f5040a92
AO
10776 register, the external symbol case ended with a load,
10777 so if the symbol turns out to not be external, and
10778 the next instruction uses tempreg, an unnecessary nop
10779 will be inserted. */
252b5132
RH
10780 }
10781 else
10782 {
c0ebe874 10783 if (breg == op[0])
252b5132
RH
10784 {
10785 /* We must add in the base register now, as in the
f5040a92 10786 external symbol case. */
9c2799c2 10787 gas_assert (tempreg == AT);
269137b2 10788 load_delay_nop ();
67c0d1eb 10789 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
c0ebe874
RS
10790 op[0], AT, breg);
10791 tempreg = op[0];
252b5132 10792 /* We set breg to 0 because we have arranged to add
f5040a92 10793 it in in both cases. */
252b5132
RH
10794 breg = 0;
10795 }
10796
67c0d1eb
RS
10797 macro_build_lui (&expr1, AT);
10798 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 10799 AT, AT, BFD_RELOC_LO16);
67c0d1eb 10800 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 10801 tempreg, tempreg, AT);
8fc2e39e 10802 used_at = 1;
252b5132 10803 }
4d7206a2 10804 relax_end ();
252b5132 10805 }
0a44bf69 10806 else if (mips_big_got && HAVE_NEWABI)
f5040a92 10807 {
f5040a92
AO
10808 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
10809 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
67c0d1eb 10810 int add_breg_early = 0;
f5040a92
AO
10811
10812 /* This is the large GOT case. If this is a reference to an
10813 external symbol, and there is no constant, we want
10814 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10815 add $tempreg,$tempreg,$gp
10816 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 10817 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
10818 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
10819 add $tempreg,$tempreg,$gp
10820 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
10821
10822 If we have a small constant, and this is a reference to
10823 an external symbol, we want
10824 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10825 add $tempreg,$tempreg,$gp
10826 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10827 addi $tempreg,$tempreg,<constant>
10828
10829 If we have a large constant, and this is a reference to
10830 an external symbol, we want
10831 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10832 addu $tempreg,$tempreg,$gp
10833 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10834 lui $at,<hiconstant>
10835 addi $at,$at,<loconstant>
10836 add $tempreg,$tempreg,$at
10837
10838 If we have NewABI, and we know it's a local symbol, we want
10839 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
10840 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
10841 otherwise we have to resort to GOT_HI16/GOT_LO16. */
10842
4d7206a2 10843 relax_start (offset_expr.X_add_symbol);
f5040a92 10844
4d7206a2 10845 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
10846 offset_expr.X_add_number = 0;
10847
1abe91b1
MR
10848 if (expr1.X_add_number == 0 && breg == 0
10849 && (call || tempreg == PIC_CALL_REG))
f5040a92
AO
10850 {
10851 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
10852 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
10853 }
df58fc94 10854 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
67c0d1eb 10855 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 10856 tempreg, tempreg, mips_gp_register);
67c0d1eb
RS
10857 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10858 tempreg, lw_reloc_type, tempreg);
f5040a92
AO
10859
10860 if (expr1.X_add_number == 0)
4d7206a2 10861 ;
f5040a92
AO
10862 else if (expr1.X_add_number >= -0x8000
10863 && expr1.X_add_number < 0x8000)
10864 {
67c0d1eb 10865 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 10866 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 10867 }
ecd13cd3 10868 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92 10869 {
c0ebe874
RS
10870 unsigned int dreg;
10871
f5040a92
AO
10872 /* If we are going to add in a base register, and the
10873 target register and the base register are the same,
10874 then we are using AT as a temporary register. Since
10875 we want to load the constant into AT, we add our
10876 current AT (from the global offset table) and the
10877 register into the register now, and pretend we were
10878 not using a base register. */
c0ebe874 10879 if (breg != op[0])
f5040a92
AO
10880 dreg = tempreg;
10881 else
10882 {
9c2799c2 10883 gas_assert (tempreg == AT);
67c0d1eb 10884 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
c0ebe874
RS
10885 op[0], AT, breg);
10886 dreg = op[0];
67c0d1eb 10887 add_breg_early = 1;
f5040a92
AO
10888 }
10889
f6a22291 10890 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 10891 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
f5040a92 10892
f5040a92
AO
10893 used_at = 1;
10894 }
10895 else
10896 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
10897
4d7206a2 10898 relax_switch ();
f5040a92 10899 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
10900 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10901 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
10902 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
10903 tempreg, BFD_RELOC_MIPS_GOT_OFST);
10904 if (add_breg_early)
f5040a92 10905 {
67c0d1eb 10906 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
c0ebe874 10907 op[0], tempreg, breg);
f5040a92 10908 breg = 0;
c0ebe874 10909 tempreg = op[0];
f5040a92 10910 }
4d7206a2 10911 relax_end ();
f5040a92 10912 }
252b5132
RH
10913 else
10914 abort ();
10915
10916 if (breg != 0)
c0ebe874 10917 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", op[0], tempreg, breg);
252b5132
RH
10918 break;
10919
52b6b6b9 10920 case M_MSGSND:
df58fc94 10921 gas_assert (!mips_opts.micromips);
c0ebe874 10922 macro_build (NULL, "c2", "C", (op[0] << 16) | 0x01);
c7af4273 10923 break;
52b6b6b9
JM
10924
10925 case M_MSGLD:
df58fc94 10926 gas_assert (!mips_opts.micromips);
c8276761 10927 macro_build (NULL, "c2", "C", 0x02);
c7af4273 10928 break;
52b6b6b9
JM
10929
10930 case M_MSGLD_T:
df58fc94 10931 gas_assert (!mips_opts.micromips);
c0ebe874 10932 macro_build (NULL, "c2", "C", (op[0] << 16) | 0x02);
c7af4273 10933 break;
52b6b6b9
JM
10934
10935 case M_MSGWAIT:
df58fc94 10936 gas_assert (!mips_opts.micromips);
52b6b6b9 10937 macro_build (NULL, "c2", "C", 3);
c7af4273 10938 break;
52b6b6b9
JM
10939
10940 case M_MSGWAIT_T:
df58fc94 10941 gas_assert (!mips_opts.micromips);
c0ebe874 10942 macro_build (NULL, "c2", "C", (op[0] << 16) | 0x03);
c7af4273 10943 break;
52b6b6b9 10944
252b5132
RH
10945 case M_J_A:
10946 /* The j instruction may not be used in PIC code, since it
10947 requires an absolute address. We convert it to a b
10948 instruction. */
10949 if (mips_pic == NO_PIC)
67c0d1eb 10950 macro_build (&offset_expr, "j", "a");
252b5132 10951 else
67c0d1eb 10952 macro_build (&offset_expr, "b", "p");
8fc2e39e 10953 break;
252b5132
RH
10954
10955 /* The jal instructions must be handled as macros because when
10956 generating PIC code they expand to multi-instruction
10957 sequences. Normally they are simple instructions. */
df58fc94 10958 case M_JALS_1:
c0ebe874
RS
10959 op[1] = op[0];
10960 op[0] = RA;
df58fc94
RS
10961 /* Fall through. */
10962 case M_JALS_2:
10963 gas_assert (mips_opts.micromips);
833794fc
MR
10964 if (mips_opts.insn32)
10965 {
1661c76c 10966 as_bad (_("opcode not supported in the `insn32' mode `%s'"), str);
833794fc
MR
10967 break;
10968 }
df58fc94
RS
10969 jals = 1;
10970 goto jal;
252b5132 10971 case M_JAL_1:
c0ebe874
RS
10972 op[1] = op[0];
10973 op[0] = RA;
252b5132
RH
10974 /* Fall through. */
10975 case M_JAL_2:
df58fc94 10976 jal:
3e722fb5 10977 if (mips_pic == NO_PIC)
df58fc94
RS
10978 {
10979 s = jals ? "jalrs" : "jalr";
e64af278 10980 if (mips_opts.micromips
833794fc 10981 && !mips_opts.insn32
c0ebe874 10982 && op[0] == RA
e64af278 10983 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
c0ebe874 10984 macro_build (NULL, s, "mj", op[1]);
df58fc94 10985 else
c0ebe874 10986 macro_build (NULL, s, JALR_FMT, op[0], op[1]);
df58fc94 10987 }
0a44bf69 10988 else
252b5132 10989 {
df58fc94
RS
10990 int cprestore = (mips_pic == SVR4_PIC && !HAVE_NEWABI
10991 && mips_cprestore_offset >= 0);
10992
c0ebe874 10993 if (op[1] != PIC_CALL_REG)
252b5132 10994 as_warn (_("MIPS PIC call to register other than $25"));
bdaaa2e1 10995
833794fc
MR
10996 s = ((mips_opts.micromips
10997 && !mips_opts.insn32
10998 && (!mips_opts.noreorder || cprestore))
df58fc94 10999 ? "jalrs" : "jalr");
e64af278 11000 if (mips_opts.micromips
833794fc 11001 && !mips_opts.insn32
c0ebe874 11002 && op[0] == RA
e64af278 11003 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
c0ebe874 11004 macro_build (NULL, s, "mj", op[1]);
df58fc94 11005 else
c0ebe874 11006 macro_build (NULL, s, JALR_FMT, op[0], op[1]);
0a44bf69 11007 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
252b5132 11008 {
6478892d 11009 if (mips_cprestore_offset < 0)
1661c76c 11010 as_warn (_("no .cprestore pseudo-op used in PIC code"));
6478892d
TS
11011 else
11012 {
90ecf173 11013 if (!mips_frame_reg_valid)
7a621144 11014 {
1661c76c 11015 as_warn (_("no .frame pseudo-op used in PIC code"));
7a621144
DJ
11016 /* Quiet this warning. */
11017 mips_frame_reg_valid = 1;
11018 }
90ecf173 11019 if (!mips_cprestore_valid)
7a621144 11020 {
1661c76c 11021 as_warn (_("no .cprestore pseudo-op used in PIC code"));
7a621144
DJ
11022 /* Quiet this warning. */
11023 mips_cprestore_valid = 1;
11024 }
d3fca0b5
MR
11025 if (mips_opts.noreorder)
11026 macro_build (NULL, "nop", "");
6478892d 11027 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 11028 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 11029 mips_gp_register,
256ab948
TS
11030 mips_frame_reg,
11031 HAVE_64BIT_ADDRESSES);
6478892d 11032 }
252b5132
RH
11033 }
11034 }
252b5132 11035
8fc2e39e 11036 break;
252b5132 11037
df58fc94
RS
11038 case M_JALS_A:
11039 gas_assert (mips_opts.micromips);
833794fc
MR
11040 if (mips_opts.insn32)
11041 {
1661c76c 11042 as_bad (_("opcode not supported in the `insn32' mode `%s'"), str);
833794fc
MR
11043 break;
11044 }
df58fc94
RS
11045 jals = 1;
11046 /* Fall through. */
252b5132
RH
11047 case M_JAL_A:
11048 if (mips_pic == NO_PIC)
df58fc94 11049 macro_build (&offset_expr, jals ? "jals" : "jal", "a");
252b5132
RH
11050 else if (mips_pic == SVR4_PIC)
11051 {
11052 /* If this is a reference to an external symbol, and we are
11053 using a small GOT, we want
11054 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
11055 nop
f9419b05 11056 jalr $ra,$25
252b5132
RH
11057 nop
11058 lw $gp,cprestore($sp)
11059 The cprestore value is set using the .cprestore
11060 pseudo-op. If we are using a big GOT, we want
11061 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
11062 addu $25,$25,$gp
11063 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
11064 nop
f9419b05 11065 jalr $ra,$25
252b5132
RH
11066 nop
11067 lw $gp,cprestore($sp)
11068 If the symbol is not external, we want
11069 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11070 nop
11071 addiu $25,$25,<sym> (BFD_RELOC_LO16)
f9419b05 11072 jalr $ra,$25
252b5132 11073 nop
438c16b8 11074 lw $gp,cprestore($sp)
f5040a92
AO
11075
11076 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
11077 sequences above, minus nops, unless the symbol is local,
11078 which enables us to use GOT_PAGE/GOT_OFST (big got) or
11079 GOT_DISP. */
438c16b8 11080 if (HAVE_NEWABI)
252b5132 11081 {
90ecf173 11082 if (!mips_big_got)
f5040a92 11083 {
4d7206a2 11084 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
11085 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11086 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
f5040a92 11087 mips_gp_register);
4d7206a2 11088 relax_switch ();
67c0d1eb
RS
11089 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11090 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
4d7206a2
RS
11091 mips_gp_register);
11092 relax_end ();
f5040a92
AO
11093 }
11094 else
11095 {
4d7206a2 11096 relax_start (offset_expr.X_add_symbol);
df58fc94 11097 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
67c0d1eb
RS
11098 BFD_RELOC_MIPS_CALL_HI16);
11099 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
11100 PIC_CALL_REG, mips_gp_register);
11101 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11102 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
11103 PIC_CALL_REG);
4d7206a2 11104 relax_switch ();
67c0d1eb
RS
11105 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11106 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
11107 mips_gp_register);
11108 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11109 PIC_CALL_REG, PIC_CALL_REG,
17a2f251 11110 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 11111 relax_end ();
f5040a92 11112 }
684022ea 11113
df58fc94 11114 macro_build_jalr (&offset_expr, 0);
252b5132
RH
11115 }
11116 else
11117 {
4d7206a2 11118 relax_start (offset_expr.X_add_symbol);
90ecf173 11119 if (!mips_big_got)
438c16b8 11120 {
67c0d1eb
RS
11121 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11122 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
17a2f251 11123 mips_gp_register);
269137b2 11124 load_delay_nop ();
4d7206a2 11125 relax_switch ();
438c16b8 11126 }
252b5132 11127 else
252b5132 11128 {
67c0d1eb
RS
11129 int gpdelay;
11130
11131 gpdelay = reg_needs_delay (mips_gp_register);
df58fc94 11132 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
67c0d1eb
RS
11133 BFD_RELOC_MIPS_CALL_HI16);
11134 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
11135 PIC_CALL_REG, mips_gp_register);
11136 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11137 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
11138 PIC_CALL_REG);
269137b2 11139 load_delay_nop ();
4d7206a2 11140 relax_switch ();
67c0d1eb
RS
11141 if (gpdelay)
11142 macro_build (NULL, "nop", "");
252b5132 11143 }
67c0d1eb
RS
11144 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11145 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
4d7206a2 11146 mips_gp_register);
269137b2 11147 load_delay_nop ();
67c0d1eb
RS
11148 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11149 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
4d7206a2 11150 relax_end ();
df58fc94 11151 macro_build_jalr (&offset_expr, mips_cprestore_offset >= 0);
438c16b8 11152
6478892d 11153 if (mips_cprestore_offset < 0)
1661c76c 11154 as_warn (_("no .cprestore pseudo-op used in PIC code"));
6478892d
TS
11155 else
11156 {
90ecf173 11157 if (!mips_frame_reg_valid)
7a621144 11158 {
1661c76c 11159 as_warn (_("no .frame pseudo-op used in PIC code"));
7a621144
DJ
11160 /* Quiet this warning. */
11161 mips_frame_reg_valid = 1;
11162 }
90ecf173 11163 if (!mips_cprestore_valid)
7a621144 11164 {
1661c76c 11165 as_warn (_("no .cprestore pseudo-op used in PIC code"));
7a621144
DJ
11166 /* Quiet this warning. */
11167 mips_cprestore_valid = 1;
11168 }
6478892d 11169 if (mips_opts.noreorder)
67c0d1eb 11170 macro_build (NULL, "nop", "");
6478892d 11171 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 11172 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 11173 mips_gp_register,
256ab948
TS
11174 mips_frame_reg,
11175 HAVE_64BIT_ADDRESSES);
6478892d 11176 }
252b5132
RH
11177 }
11178 }
0a44bf69 11179 else if (mips_pic == VXWORKS_PIC)
1661c76c 11180 as_bad (_("non-PIC jump used in PIC library"));
252b5132
RH
11181 else
11182 abort ();
11183
8fc2e39e 11184 break;
252b5132 11185
7f3c4072 11186 case M_LBUE_AB:
7f3c4072
CM
11187 s = "lbue";
11188 fmt = "t,+j(b)";
11189 offbits = 9;
11190 goto ld_st;
11191 case M_LHUE_AB:
7f3c4072
CM
11192 s = "lhue";
11193 fmt = "t,+j(b)";
11194 offbits = 9;
11195 goto ld_st;
11196 case M_LBE_AB:
7f3c4072
CM
11197 s = "lbe";
11198 fmt = "t,+j(b)";
11199 offbits = 9;
11200 goto ld_st;
11201 case M_LHE_AB:
7f3c4072
CM
11202 s = "lhe";
11203 fmt = "t,+j(b)";
11204 offbits = 9;
11205 goto ld_st;
11206 case M_LLE_AB:
7f3c4072
CM
11207 s = "lle";
11208 fmt = "t,+j(b)";
11209 offbits = 9;
11210 goto ld_st;
11211 case M_LWE_AB:
7f3c4072
CM
11212 s = "lwe";
11213 fmt = "t,+j(b)";
11214 offbits = 9;
11215 goto ld_st;
11216 case M_LWLE_AB:
7f3c4072
CM
11217 s = "lwle";
11218 fmt = "t,+j(b)";
11219 offbits = 9;
11220 goto ld_st;
11221 case M_LWRE_AB:
7f3c4072
CM
11222 s = "lwre";
11223 fmt = "t,+j(b)";
11224 offbits = 9;
11225 goto ld_st;
11226 case M_SBE_AB:
7f3c4072
CM
11227 s = "sbe";
11228 fmt = "t,+j(b)";
11229 offbits = 9;
11230 goto ld_st;
11231 case M_SCE_AB:
7f3c4072
CM
11232 s = "sce";
11233 fmt = "t,+j(b)";
11234 offbits = 9;
11235 goto ld_st;
11236 case M_SHE_AB:
7f3c4072
CM
11237 s = "she";
11238 fmt = "t,+j(b)";
11239 offbits = 9;
11240 goto ld_st;
11241 case M_SWE_AB:
7f3c4072
CM
11242 s = "swe";
11243 fmt = "t,+j(b)";
11244 offbits = 9;
11245 goto ld_st;
11246 case M_SWLE_AB:
7f3c4072
CM
11247 s = "swle";
11248 fmt = "t,+j(b)";
11249 offbits = 9;
11250 goto ld_st;
11251 case M_SWRE_AB:
7f3c4072
CM
11252 s = "swre";
11253 fmt = "t,+j(b)";
11254 offbits = 9;
11255 goto ld_st;
dec0624d 11256 case M_ACLR_AB:
dec0624d 11257 s = "aclr";
dec0624d 11258 fmt = "\\,~(b)";
7f3c4072 11259 offbits = 12;
dec0624d
MR
11260 goto ld_st;
11261 case M_ASET_AB:
dec0624d 11262 s = "aset";
dec0624d 11263 fmt = "\\,~(b)";
7f3c4072 11264 offbits = 12;
dec0624d 11265 goto ld_st;
252b5132
RH
11266 case M_LB_AB:
11267 s = "lb";
df58fc94 11268 fmt = "t,o(b)";
252b5132
RH
11269 goto ld;
11270 case M_LBU_AB:
11271 s = "lbu";
df58fc94 11272 fmt = "t,o(b)";
252b5132
RH
11273 goto ld;
11274 case M_LH_AB:
11275 s = "lh";
df58fc94 11276 fmt = "t,o(b)";
252b5132
RH
11277 goto ld;
11278 case M_LHU_AB:
11279 s = "lhu";
df58fc94 11280 fmt = "t,o(b)";
252b5132
RH
11281 goto ld;
11282 case M_LW_AB:
11283 s = "lw";
df58fc94 11284 fmt = "t,o(b)";
252b5132
RH
11285 goto ld;
11286 case M_LWC0_AB:
df58fc94 11287 gas_assert (!mips_opts.micromips);
252b5132 11288 s = "lwc0";
df58fc94 11289 fmt = "E,o(b)";
bdaaa2e1 11290 /* Itbl support may require additional care here. */
252b5132 11291 coproc = 1;
df58fc94 11292 goto ld_st;
252b5132
RH
11293 case M_LWC1_AB:
11294 s = "lwc1";
df58fc94 11295 fmt = "T,o(b)";
bdaaa2e1 11296 /* Itbl support may require additional care here. */
252b5132 11297 coproc = 1;
df58fc94 11298 goto ld_st;
252b5132
RH
11299 case M_LWC2_AB:
11300 s = "lwc2";
df58fc94 11301 fmt = COP12_FMT;
7361da2c
AB
11302 offbits = (mips_opts.micromips ? 12
11303 : ISA_IS_R6 (mips_opts.isa) ? 11
11304 : 16);
bdaaa2e1 11305 /* Itbl support may require additional care here. */
252b5132 11306 coproc = 1;
df58fc94 11307 goto ld_st;
252b5132 11308 case M_LWC3_AB:
df58fc94 11309 gas_assert (!mips_opts.micromips);
252b5132 11310 s = "lwc3";
df58fc94 11311 fmt = "E,o(b)";
bdaaa2e1 11312 /* Itbl support may require additional care here. */
252b5132 11313 coproc = 1;
df58fc94 11314 goto ld_st;
252b5132
RH
11315 case M_LWL_AB:
11316 s = "lwl";
df58fc94 11317 fmt = MEM12_FMT;
7f3c4072 11318 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 11319 goto ld_st;
252b5132
RH
11320 case M_LWR_AB:
11321 s = "lwr";
df58fc94 11322 fmt = MEM12_FMT;
7f3c4072 11323 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 11324 goto ld_st;
252b5132 11325 case M_LDC1_AB:
252b5132 11326 s = "ldc1";
df58fc94 11327 fmt = "T,o(b)";
bdaaa2e1 11328 /* Itbl support may require additional care here. */
252b5132 11329 coproc = 1;
df58fc94 11330 goto ld_st;
252b5132
RH
11331 case M_LDC2_AB:
11332 s = "ldc2";
df58fc94 11333 fmt = COP12_FMT;
7361da2c
AB
11334 offbits = (mips_opts.micromips ? 12
11335 : ISA_IS_R6 (mips_opts.isa) ? 11
11336 : 16);
bdaaa2e1 11337 /* Itbl support may require additional care here. */
252b5132 11338 coproc = 1;
df58fc94 11339 goto ld_st;
c77c0862 11340 case M_LQC2_AB:
c77c0862 11341 s = "lqc2";
14daeee3 11342 fmt = "+7,o(b)";
c77c0862
RS
11343 /* Itbl support may require additional care here. */
11344 coproc = 1;
11345 goto ld_st;
252b5132
RH
11346 case M_LDC3_AB:
11347 s = "ldc3";
df58fc94 11348 fmt = "E,o(b)";
bdaaa2e1 11349 /* Itbl support may require additional care here. */
252b5132 11350 coproc = 1;
df58fc94 11351 goto ld_st;
252b5132
RH
11352 case M_LDL_AB:
11353 s = "ldl";
df58fc94 11354 fmt = MEM12_FMT;
7f3c4072 11355 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 11356 goto ld_st;
252b5132
RH
11357 case M_LDR_AB:
11358 s = "ldr";
df58fc94 11359 fmt = MEM12_FMT;
7f3c4072 11360 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 11361 goto ld_st;
252b5132
RH
11362 case M_LL_AB:
11363 s = "ll";
7361da2c
AB
11364 fmt = LL_SC_FMT;
11365 offbits = (mips_opts.micromips ? 12
11366 : ISA_IS_R6 (mips_opts.isa) ? 9
11367 : 16);
252b5132
RH
11368 goto ld;
11369 case M_LLD_AB:
11370 s = "lld";
7361da2c
AB
11371 fmt = LL_SC_FMT;
11372 offbits = (mips_opts.micromips ? 12
11373 : ISA_IS_R6 (mips_opts.isa) ? 9
11374 : 16);
252b5132
RH
11375 goto ld;
11376 case M_LWU_AB:
11377 s = "lwu";
df58fc94 11378 fmt = MEM12_FMT;
7f3c4072 11379 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94
RS
11380 goto ld;
11381 case M_LWP_AB:
df58fc94
RS
11382 gas_assert (mips_opts.micromips);
11383 s = "lwp";
11384 fmt = "t,~(b)";
7f3c4072 11385 offbits = 12;
df58fc94
RS
11386 lp = 1;
11387 goto ld;
11388 case M_LDP_AB:
df58fc94
RS
11389 gas_assert (mips_opts.micromips);
11390 s = "ldp";
11391 fmt = "t,~(b)";
7f3c4072 11392 offbits = 12;
df58fc94
RS
11393 lp = 1;
11394 goto ld;
11395 case M_LWM_AB:
df58fc94
RS
11396 gas_assert (mips_opts.micromips);
11397 s = "lwm";
11398 fmt = "n,~(b)";
7f3c4072 11399 offbits = 12;
df58fc94
RS
11400 goto ld_st;
11401 case M_LDM_AB:
df58fc94
RS
11402 gas_assert (mips_opts.micromips);
11403 s = "ldm";
11404 fmt = "n,~(b)";
7f3c4072 11405 offbits = 12;
df58fc94
RS
11406 goto ld_st;
11407
252b5132 11408 ld:
f19ccbda 11409 /* We don't want to use $0 as tempreg. */
c0ebe874 11410 if (op[2] == op[0] + lp || op[0] + lp == ZERO)
df58fc94 11411 goto ld_st;
252b5132 11412 else
c0ebe874 11413 tempreg = op[0] + lp;
df58fc94
RS
11414 goto ld_noat;
11415
252b5132
RH
11416 case M_SB_AB:
11417 s = "sb";
df58fc94
RS
11418 fmt = "t,o(b)";
11419 goto ld_st;
252b5132
RH
11420 case M_SH_AB:
11421 s = "sh";
df58fc94
RS
11422 fmt = "t,o(b)";
11423 goto ld_st;
252b5132
RH
11424 case M_SW_AB:
11425 s = "sw";
df58fc94
RS
11426 fmt = "t,o(b)";
11427 goto ld_st;
252b5132 11428 case M_SWC0_AB:
df58fc94 11429 gas_assert (!mips_opts.micromips);
252b5132 11430 s = "swc0";
df58fc94 11431 fmt = "E,o(b)";
bdaaa2e1 11432 /* Itbl support may require additional care here. */
252b5132 11433 coproc = 1;
df58fc94 11434 goto ld_st;
252b5132
RH
11435 case M_SWC1_AB:
11436 s = "swc1";
df58fc94 11437 fmt = "T,o(b)";
bdaaa2e1 11438 /* Itbl support may require additional care here. */
252b5132 11439 coproc = 1;
df58fc94 11440 goto ld_st;
252b5132
RH
11441 case M_SWC2_AB:
11442 s = "swc2";
df58fc94 11443 fmt = COP12_FMT;
7361da2c
AB
11444 offbits = (mips_opts.micromips ? 12
11445 : ISA_IS_R6 (mips_opts.isa) ? 11
11446 : 16);
bdaaa2e1 11447 /* Itbl support may require additional care here. */
252b5132 11448 coproc = 1;
df58fc94 11449 goto ld_st;
252b5132 11450 case M_SWC3_AB:
df58fc94 11451 gas_assert (!mips_opts.micromips);
252b5132 11452 s = "swc3";
df58fc94 11453 fmt = "E,o(b)";
bdaaa2e1 11454 /* Itbl support may require additional care here. */
252b5132 11455 coproc = 1;
df58fc94 11456 goto ld_st;
252b5132
RH
11457 case M_SWL_AB:
11458 s = "swl";
df58fc94 11459 fmt = MEM12_FMT;
7f3c4072 11460 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 11461 goto ld_st;
252b5132
RH
11462 case M_SWR_AB:
11463 s = "swr";
df58fc94 11464 fmt = MEM12_FMT;
7f3c4072 11465 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 11466 goto ld_st;
252b5132
RH
11467 case M_SC_AB:
11468 s = "sc";
7361da2c
AB
11469 fmt = LL_SC_FMT;
11470 offbits = (mips_opts.micromips ? 12
11471 : ISA_IS_R6 (mips_opts.isa) ? 9
11472 : 16);
df58fc94 11473 goto ld_st;
252b5132
RH
11474 case M_SCD_AB:
11475 s = "scd";
7361da2c
AB
11476 fmt = LL_SC_FMT;
11477 offbits = (mips_opts.micromips ? 12
11478 : ISA_IS_R6 (mips_opts.isa) ? 9
11479 : 16);
df58fc94 11480 goto ld_st;
d43b4baf
TS
11481 case M_CACHE_AB:
11482 s = "cache";
7361da2c
AB
11483 fmt = (mips_opts.micromips ? "k,~(b)"
11484 : ISA_IS_R6 (mips_opts.isa) ? "k,+j(b)"
11485 : "k,o(b)");
11486 offbits = (mips_opts.micromips ? 12
11487 : ISA_IS_R6 (mips_opts.isa) ? 9
11488 : 16);
7f3c4072
CM
11489 goto ld_st;
11490 case M_CACHEE_AB:
7f3c4072
CM
11491 s = "cachee";
11492 fmt = "k,+j(b)";
11493 offbits = 9;
df58fc94 11494 goto ld_st;
3eebd5eb
MR
11495 case M_PREF_AB:
11496 s = "pref";
7361da2c
AB
11497 fmt = (mips_opts.micromips ? "k,~(b)"
11498 : ISA_IS_R6 (mips_opts.isa) ? "k,+j(b)"
11499 : "k,o(b)");
11500 offbits = (mips_opts.micromips ? 12
11501 : ISA_IS_R6 (mips_opts.isa) ? 9
11502 : 16);
7f3c4072
CM
11503 goto ld_st;
11504 case M_PREFE_AB:
7f3c4072
CM
11505 s = "prefe";
11506 fmt = "k,+j(b)";
11507 offbits = 9;
df58fc94 11508 goto ld_st;
252b5132 11509 case M_SDC1_AB:
252b5132 11510 s = "sdc1";
df58fc94 11511 fmt = "T,o(b)";
252b5132 11512 coproc = 1;
bdaaa2e1 11513 /* Itbl support may require additional care here. */
df58fc94 11514 goto ld_st;
252b5132
RH
11515 case M_SDC2_AB:
11516 s = "sdc2";
df58fc94 11517 fmt = COP12_FMT;
7361da2c
AB
11518 offbits = (mips_opts.micromips ? 12
11519 : ISA_IS_R6 (mips_opts.isa) ? 11
11520 : 16);
c77c0862
RS
11521 /* Itbl support may require additional care here. */
11522 coproc = 1;
11523 goto ld_st;
11524 case M_SQC2_AB:
c77c0862 11525 s = "sqc2";
14daeee3 11526 fmt = "+7,o(b)";
bdaaa2e1 11527 /* Itbl support may require additional care here. */
252b5132 11528 coproc = 1;
df58fc94 11529 goto ld_st;
252b5132 11530 case M_SDC3_AB:
df58fc94 11531 gas_assert (!mips_opts.micromips);
252b5132 11532 s = "sdc3";
df58fc94 11533 fmt = "E,o(b)";
bdaaa2e1 11534 /* Itbl support may require additional care here. */
252b5132 11535 coproc = 1;
df58fc94 11536 goto ld_st;
252b5132
RH
11537 case M_SDL_AB:
11538 s = "sdl";
df58fc94 11539 fmt = MEM12_FMT;
7f3c4072 11540 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 11541 goto ld_st;
252b5132
RH
11542 case M_SDR_AB:
11543 s = "sdr";
df58fc94 11544 fmt = MEM12_FMT;
7f3c4072 11545 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94
RS
11546 goto ld_st;
11547 case M_SWP_AB:
df58fc94
RS
11548 gas_assert (mips_opts.micromips);
11549 s = "swp";
11550 fmt = "t,~(b)";
7f3c4072 11551 offbits = 12;
df58fc94
RS
11552 goto ld_st;
11553 case M_SDP_AB:
df58fc94
RS
11554 gas_assert (mips_opts.micromips);
11555 s = "sdp";
11556 fmt = "t,~(b)";
7f3c4072 11557 offbits = 12;
df58fc94
RS
11558 goto ld_st;
11559 case M_SWM_AB:
df58fc94
RS
11560 gas_assert (mips_opts.micromips);
11561 s = "swm";
11562 fmt = "n,~(b)";
7f3c4072 11563 offbits = 12;
df58fc94
RS
11564 goto ld_st;
11565 case M_SDM_AB:
df58fc94
RS
11566 gas_assert (mips_opts.micromips);
11567 s = "sdm";
11568 fmt = "n,~(b)";
7f3c4072 11569 offbits = 12;
df58fc94
RS
11570
11571 ld_st:
8fc2e39e 11572 tempreg = AT;
df58fc94 11573 ld_noat:
c0ebe874 11574 breg = op[2];
f2ae14a1
RS
11575 if (small_offset_p (0, align, 16))
11576 {
11577 /* The first case exists for M_LD_AB and M_SD_AB, which are
11578 macros for o32 but which should act like normal instructions
11579 otherwise. */
11580 if (offbits == 16)
c0ebe874 11581 macro_build (&offset_expr, s, fmt, op[0], -1, offset_reloc[0],
f2ae14a1
RS
11582 offset_reloc[1], offset_reloc[2], breg);
11583 else if (small_offset_p (0, align, offbits))
11584 {
11585 if (offbits == 0)
c0ebe874 11586 macro_build (NULL, s, fmt, op[0], breg);
f2ae14a1 11587 else
c0ebe874 11588 macro_build (NULL, s, fmt, op[0],
c8276761 11589 (int) offset_expr.X_add_number, breg);
f2ae14a1
RS
11590 }
11591 else
11592 {
11593 if (tempreg == AT)
11594 used_at = 1;
11595 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11596 tempreg, breg, -1, offset_reloc[0],
11597 offset_reloc[1], offset_reloc[2]);
11598 if (offbits == 0)
c0ebe874 11599 macro_build (NULL, s, fmt, op[0], tempreg);
f2ae14a1 11600 else
c0ebe874 11601 macro_build (NULL, s, fmt, op[0], 0, tempreg);
f2ae14a1
RS
11602 }
11603 break;
11604 }
11605
11606 if (tempreg == AT)
11607 used_at = 1;
11608
252b5132
RH
11609 if (offset_expr.X_op != O_constant
11610 && offset_expr.X_op != O_symbol)
11611 {
1661c76c 11612 as_bad (_("expression too complex"));
252b5132
RH
11613 offset_expr.X_op = O_constant;
11614 }
11615
2051e8c4
MR
11616 if (HAVE_32BIT_ADDRESSES
11617 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
11618 {
11619 char value [32];
11620
11621 sprintf_vma (value, offset_expr.X_add_number);
1661c76c 11622 as_bad (_("number (0x%s) larger than 32 bits"), value);
55e08f71 11623 }
2051e8c4 11624
252b5132
RH
11625 /* A constant expression in PIC code can be handled just as it
11626 is in non PIC code. */
aed1a261
RS
11627 if (offset_expr.X_op == O_constant)
11628 {
f2ae14a1
RS
11629 expr1.X_add_number = offset_high_part (offset_expr.X_add_number,
11630 offbits == 0 ? 16 : offbits);
11631 offset_expr.X_add_number -= expr1.X_add_number;
df58fc94 11632
f2ae14a1
RS
11633 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
11634 if (breg != 0)
11635 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11636 tempreg, tempreg, breg);
7f3c4072 11637 if (offbits == 0)
dd6a37e7 11638 {
f2ae14a1 11639 if (offset_expr.X_add_number != 0)
dd6a37e7 11640 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
f2ae14a1 11641 "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
c0ebe874 11642 macro_build (NULL, s, fmt, op[0], tempreg);
dd6a37e7 11643 }
7f3c4072 11644 else if (offbits == 16)
c0ebe874 11645 macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
df58fc94 11646 else
c0ebe874 11647 macro_build (NULL, s, fmt, op[0],
c8276761 11648 (int) offset_expr.X_add_number, tempreg);
df58fc94 11649 }
7f3c4072 11650 else if (offbits != 16)
df58fc94 11651 {
7f3c4072
CM
11652 /* The offset field is too narrow to be used for a low-part
11653 relocation, so load the whole address into the auxillary
f2ae14a1
RS
11654 register. */
11655 load_address (tempreg, &offset_expr, &used_at);
11656 if (breg != 0)
11657 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11658 tempreg, tempreg, breg);
7f3c4072 11659 if (offbits == 0)
c0ebe874 11660 macro_build (NULL, s, fmt, op[0], tempreg);
dd6a37e7 11661 else
c0ebe874 11662 macro_build (NULL, s, fmt, op[0], 0, tempreg);
aed1a261
RS
11663 }
11664 else if (mips_pic == NO_PIC)
252b5132
RH
11665 {
11666 /* If this is a reference to a GP relative symbol, and there
11667 is no base register, we want
c0ebe874 11668 <op> op[0],<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
11669 Otherwise, if there is no base register, we want
11670 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
c0ebe874 11671 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
252b5132
RH
11672 If we have a constant, we need two instructions anyhow,
11673 so we always use the latter form.
11674
11675 If we have a base register, and this is a reference to a
11676 GP relative symbol, we want
11677 addu $tempreg,$breg,$gp
c0ebe874 11678 <op> op[0],<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
11679 Otherwise we want
11680 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
11681 addu $tempreg,$tempreg,$breg
c0ebe874 11682 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245 11683 With a constant we always use the latter case.
76b3015f 11684
d6bc6245
TS
11685 With 64bit address space and no base register and $at usable,
11686 we want
11687 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
11688 lui $at,<sym> (BFD_RELOC_HI16_S)
11689 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
11690 dsll32 $tempreg,0
11691 daddu $tempreg,$at
c0ebe874 11692 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245
TS
11693 If we have a base register, we want
11694 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
11695 lui $at,<sym> (BFD_RELOC_HI16_S)
11696 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
11697 daddu $at,$breg
11698 dsll32 $tempreg,0
11699 daddu $tempreg,$at
c0ebe874 11700 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245
TS
11701
11702 Without $at we can't generate the optimal path for superscalar
11703 processors here since this would require two temporary registers.
11704 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
11705 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
11706 dsll $tempreg,16
11707 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
11708 dsll $tempreg,16
c0ebe874 11709 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245
TS
11710 If we have a base register, we want
11711 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
11712 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
11713 dsll $tempreg,16
11714 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
11715 dsll $tempreg,16
11716 daddu $tempreg,$tempreg,$breg
c0ebe874 11717 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
6373ee54 11718
6caf9ef4 11719 For GP relative symbols in 64bit address space we can use
aed1a261
RS
11720 the same sequence as in 32bit address space. */
11721 if (HAVE_64BIT_SYMBOLS)
d6bc6245 11722 {
aed1a261 11723 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4
TS
11724 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11725 {
11726 relax_start (offset_expr.X_add_symbol);
11727 if (breg == 0)
11728 {
c0ebe874 11729 macro_build (&offset_expr, s, fmt, op[0],
6caf9ef4
TS
11730 BFD_RELOC_GPREL16, mips_gp_register);
11731 }
11732 else
11733 {
11734 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11735 tempreg, breg, mips_gp_register);
c0ebe874 11736 macro_build (&offset_expr, s, fmt, op[0],
6caf9ef4
TS
11737 BFD_RELOC_GPREL16, tempreg);
11738 }
11739 relax_switch ();
11740 }
d6bc6245 11741
741fe287 11742 if (used_at == 0 && mips_opts.at)
d6bc6245 11743 {
df58fc94 11744 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
67c0d1eb 11745 BFD_RELOC_MIPS_HIGHEST);
df58fc94 11746 macro_build (&offset_expr, "lui", LUI_FMT, AT,
67c0d1eb
RS
11747 BFD_RELOC_HI16_S);
11748 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11749 tempreg, BFD_RELOC_MIPS_HIGHER);
d6bc6245 11750 if (breg != 0)
67c0d1eb 11751 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
df58fc94 11752 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
67c0d1eb 11753 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
c0ebe874 11754 macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_LO16,
67c0d1eb 11755 tempreg);
d6bc6245
TS
11756 used_at = 1;
11757 }
11758 else
11759 {
df58fc94 11760 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
67c0d1eb
RS
11761 BFD_RELOC_MIPS_HIGHEST);
11762 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11763 tempreg, BFD_RELOC_MIPS_HIGHER);
df58fc94 11764 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
67c0d1eb
RS
11765 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11766 tempreg, BFD_RELOC_HI16_S);
df58fc94 11767 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
d6bc6245 11768 if (breg != 0)
67c0d1eb 11769 macro_build (NULL, "daddu", "d,v,t",
17a2f251 11770 tempreg, tempreg, breg);
c0ebe874 11771 macro_build (&offset_expr, s, fmt, op[0],
17a2f251 11772 BFD_RELOC_LO16, tempreg);
d6bc6245 11773 }
6caf9ef4
TS
11774
11775 if (mips_relax.sequence)
11776 relax_end ();
8fc2e39e 11777 break;
d6bc6245 11778 }
256ab948 11779
252b5132
RH
11780 if (breg == 0)
11781 {
67c0d1eb 11782 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 11783 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 11784 {
4d7206a2 11785 relax_start (offset_expr.X_add_symbol);
c0ebe874 11786 macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_GPREL16,
67c0d1eb 11787 mips_gp_register);
4d7206a2 11788 relax_switch ();
252b5132 11789 }
67c0d1eb 11790 macro_build_lui (&offset_expr, tempreg);
c0ebe874 11791 macro_build (&offset_expr, s, fmt, op[0],
17a2f251 11792 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
11793 if (mips_relax.sequence)
11794 relax_end ();
252b5132
RH
11795 }
11796 else
11797 {
67c0d1eb 11798 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 11799 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 11800 {
4d7206a2 11801 relax_start (offset_expr.X_add_symbol);
67c0d1eb 11802 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 11803 tempreg, breg, mips_gp_register);
c0ebe874 11804 macro_build (&offset_expr, s, fmt, op[0],
17a2f251 11805 BFD_RELOC_GPREL16, tempreg);
4d7206a2 11806 relax_switch ();
252b5132 11807 }
67c0d1eb
RS
11808 macro_build_lui (&offset_expr, tempreg);
11809 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 11810 tempreg, tempreg, breg);
c0ebe874 11811 macro_build (&offset_expr, s, fmt, op[0],
17a2f251 11812 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
11813 if (mips_relax.sequence)
11814 relax_end ();
252b5132
RH
11815 }
11816 }
0a44bf69 11817 else if (!mips_big_got)
252b5132 11818 {
ed6fb7bd 11819 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
f9419b05 11820
252b5132
RH
11821 /* If this is a reference to an external symbol, we want
11822 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11823 nop
c0ebe874 11824 <op> op[0],0($tempreg)
252b5132
RH
11825 Otherwise we want
11826 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11827 nop
11828 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
c0ebe874 11829 <op> op[0],0($tempreg)
f5040a92
AO
11830
11831 For NewABI, we want
11832 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
c0ebe874 11833 <op> op[0],<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
f5040a92 11834
252b5132
RH
11835 If there is a base register, we add it to $tempreg before
11836 the <op>. If there is a constant, we stick it in the
11837 <op> instruction. We don't handle constants larger than
11838 16 bits, because we have no way to load the upper 16 bits
11839 (actually, we could handle them for the subset of cases
11840 in which we are not using $at). */
9c2799c2 11841 gas_assert (offset_expr.X_op == O_symbol);
f5040a92
AO
11842 if (HAVE_NEWABI)
11843 {
67c0d1eb
RS
11844 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11845 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 11846 if (breg != 0)
67c0d1eb 11847 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 11848 tempreg, tempreg, breg);
c0ebe874 11849 macro_build (&offset_expr, s, fmt, op[0],
17a2f251 11850 BFD_RELOC_MIPS_GOT_OFST, tempreg);
f5040a92
AO
11851 break;
11852 }
252b5132
RH
11853 expr1.X_add_number = offset_expr.X_add_number;
11854 offset_expr.X_add_number = 0;
11855 if (expr1.X_add_number < -0x8000
11856 || expr1.X_add_number >= 0x8000)
11857 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb
RS
11858 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11859 lw_reloc_type, mips_gp_register);
269137b2 11860 load_delay_nop ();
4d7206a2
RS
11861 relax_start (offset_expr.X_add_symbol);
11862 relax_switch ();
67c0d1eb
RS
11863 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
11864 tempreg, BFD_RELOC_LO16);
4d7206a2 11865 relax_end ();
252b5132 11866 if (breg != 0)
67c0d1eb 11867 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 11868 tempreg, tempreg, breg);
c0ebe874 11869 macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
252b5132 11870 }
0a44bf69 11871 else if (mips_big_got && !HAVE_NEWABI)
252b5132 11872 {
67c0d1eb 11873 int gpdelay;
252b5132
RH
11874
11875 /* If this is a reference to an external symbol, we want
11876 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
11877 addu $tempreg,$tempreg,$gp
11878 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
c0ebe874 11879 <op> op[0],0($tempreg)
252b5132
RH
11880 Otherwise we want
11881 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11882 nop
11883 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
c0ebe874 11884 <op> op[0],0($tempreg)
252b5132
RH
11885 If there is a base register, we add it to $tempreg before
11886 the <op>. If there is a constant, we stick it in the
11887 <op> instruction. We don't handle constants larger than
11888 16 bits, because we have no way to load the upper 16 bits
11889 (actually, we could handle them for the subset of cases
f5040a92 11890 in which we are not using $at). */
9c2799c2 11891 gas_assert (offset_expr.X_op == O_symbol);
252b5132
RH
11892 expr1.X_add_number = offset_expr.X_add_number;
11893 offset_expr.X_add_number = 0;
11894 if (expr1.X_add_number < -0x8000
11895 || expr1.X_add_number >= 0x8000)
11896 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 11897 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 11898 relax_start (offset_expr.X_add_symbol);
df58fc94 11899 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
17a2f251 11900 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
11901 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
11902 mips_gp_register);
11903 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11904 BFD_RELOC_MIPS_GOT_LO16, tempreg);
4d7206a2 11905 relax_switch ();
67c0d1eb
RS
11906 if (gpdelay)
11907 macro_build (NULL, "nop", "");
11908 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11909 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 11910 load_delay_nop ();
67c0d1eb
RS
11911 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
11912 tempreg, BFD_RELOC_LO16);
4d7206a2
RS
11913 relax_end ();
11914
252b5132 11915 if (breg != 0)
67c0d1eb 11916 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 11917 tempreg, tempreg, breg);
c0ebe874 11918 macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
252b5132 11919 }
0a44bf69 11920 else if (mips_big_got && HAVE_NEWABI)
f5040a92 11921 {
f5040a92
AO
11922 /* If this is a reference to an external symbol, we want
11923 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
11924 add $tempreg,$tempreg,$gp
11925 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
c0ebe874 11926 <op> op[0],<ofst>($tempreg)
f5040a92
AO
11927 Otherwise, for local symbols, we want:
11928 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
c0ebe874 11929 <op> op[0],<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
9c2799c2 11930 gas_assert (offset_expr.X_op == O_symbol);
4d7206a2 11931 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
11932 offset_expr.X_add_number = 0;
11933 if (expr1.X_add_number < -0x8000
11934 || expr1.X_add_number >= 0x8000)
11935 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4d7206a2 11936 relax_start (offset_expr.X_add_symbol);
df58fc94 11937 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
17a2f251 11938 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
11939 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
11940 mips_gp_register);
11941 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11942 BFD_RELOC_MIPS_GOT_LO16, tempreg);
f5040a92 11943 if (breg != 0)
67c0d1eb 11944 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 11945 tempreg, tempreg, breg);
c0ebe874 11946 macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
684022ea 11947
4d7206a2 11948 relax_switch ();
f5040a92 11949 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
11950 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11951 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 11952 if (breg != 0)
67c0d1eb 11953 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 11954 tempreg, tempreg, breg);
c0ebe874 11955 macro_build (&offset_expr, s, fmt, op[0],
17a2f251 11956 BFD_RELOC_MIPS_GOT_OFST, tempreg);
4d7206a2 11957 relax_end ();
f5040a92 11958 }
252b5132
RH
11959 else
11960 abort ();
11961
252b5132
RH
11962 break;
11963
833794fc
MR
11964 case M_JRADDIUSP:
11965 gas_assert (mips_opts.micromips);
11966 gas_assert (mips_opts.insn32);
11967 start_noreorder ();
11968 macro_build (NULL, "jr", "s", RA);
c0ebe874 11969 expr1.X_add_number = op[0] << 2;
833794fc
MR
11970 macro_build (&expr1, "addiu", "t,r,j", SP, SP, BFD_RELOC_LO16);
11971 end_noreorder ();
11972 break;
11973
11974 case M_JRC:
11975 gas_assert (mips_opts.micromips);
11976 gas_assert (mips_opts.insn32);
c0ebe874 11977 macro_build (NULL, "jr", "s", op[0]);
833794fc
MR
11978 if (mips_opts.noreorder)
11979 macro_build (NULL, "nop", "");
11980 break;
11981
252b5132
RH
11982 case M_LI:
11983 case M_LI_S:
c0ebe874 11984 load_register (op[0], &imm_expr, 0);
8fc2e39e 11985 break;
252b5132
RH
11986
11987 case M_DLI:
c0ebe874 11988 load_register (op[0], &imm_expr, 1);
8fc2e39e 11989 break;
252b5132
RH
11990
11991 case M_LI_SS:
11992 if (imm_expr.X_op == O_constant)
11993 {
8fc2e39e 11994 used_at = 1;
67c0d1eb 11995 load_register (AT, &imm_expr, 0);
c0ebe874 11996 macro_build (NULL, "mtc1", "t,G", AT, op[0]);
252b5132
RH
11997 break;
11998 }
11999 else
12000 {
b0e6f033
RS
12001 gas_assert (imm_expr.X_op == O_absent
12002 && offset_expr.X_op == O_symbol
90ecf173
MR
12003 && strcmp (segment_name (S_GET_SEGMENT
12004 (offset_expr.X_add_symbol)),
12005 ".lit4") == 0
12006 && offset_expr.X_add_number == 0);
c0ebe874 12007 macro_build (&offset_expr, "lwc1", "T,o(b)", op[0],
17a2f251 12008 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 12009 break;
252b5132
RH
12010 }
12011
12012 case M_LI_D:
ca4e0257
RS
12013 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
12014 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
12015 order 32 bits of the value and the low order 32 bits are either
12016 zero or in OFFSET_EXPR. */
b0e6f033 12017 if (imm_expr.X_op == O_constant)
252b5132 12018 {
bad1aba3 12019 if (GPR_SIZE == 64)
c0ebe874 12020 load_register (op[0], &imm_expr, 1);
252b5132
RH
12021 else
12022 {
12023 int hreg, lreg;
12024
12025 if (target_big_endian)
12026 {
c0ebe874
RS
12027 hreg = op[0];
12028 lreg = op[0] + 1;
252b5132
RH
12029 }
12030 else
12031 {
c0ebe874
RS
12032 hreg = op[0] + 1;
12033 lreg = op[0];
252b5132
RH
12034 }
12035
12036 if (hreg <= 31)
67c0d1eb 12037 load_register (hreg, &imm_expr, 0);
252b5132
RH
12038 if (lreg <= 31)
12039 {
12040 if (offset_expr.X_op == O_absent)
67c0d1eb 12041 move_register (lreg, 0);
252b5132
RH
12042 else
12043 {
9c2799c2 12044 gas_assert (offset_expr.X_op == O_constant);
67c0d1eb 12045 load_register (lreg, &offset_expr, 0);
252b5132
RH
12046 }
12047 }
12048 }
8fc2e39e 12049 break;
252b5132 12050 }
b0e6f033 12051 gas_assert (imm_expr.X_op == O_absent);
252b5132
RH
12052
12053 /* We know that sym is in the .rdata section. First we get the
12054 upper 16 bits of the address. */
12055 if (mips_pic == NO_PIC)
12056 {
67c0d1eb 12057 macro_build_lui (&offset_expr, AT);
8fc2e39e 12058 used_at = 1;
252b5132 12059 }
0a44bf69 12060 else
252b5132 12061 {
67c0d1eb
RS
12062 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
12063 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8fc2e39e 12064 used_at = 1;
252b5132 12065 }
bdaaa2e1 12066
252b5132 12067 /* Now we load the register(s). */
bad1aba3 12068 if (GPR_SIZE == 64)
8fc2e39e
TS
12069 {
12070 used_at = 1;
c0ebe874
RS
12071 macro_build (&offset_expr, "ld", "t,o(b)", op[0],
12072 BFD_RELOC_LO16, AT);
8fc2e39e 12073 }
252b5132
RH
12074 else
12075 {
8fc2e39e 12076 used_at = 1;
c0ebe874
RS
12077 macro_build (&offset_expr, "lw", "t,o(b)", op[0],
12078 BFD_RELOC_LO16, AT);
12079 if (op[0] != RA)
252b5132
RH
12080 {
12081 /* FIXME: How in the world do we deal with the possible
12082 overflow here? */
12083 offset_expr.X_add_number += 4;
67c0d1eb 12084 macro_build (&offset_expr, "lw", "t,o(b)",
c0ebe874 12085 op[0] + 1, BFD_RELOC_LO16, AT);
252b5132
RH
12086 }
12087 }
252b5132
RH
12088 break;
12089
12090 case M_LI_DD:
ca4e0257
RS
12091 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
12092 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
12093 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
12094 the value and the low order 32 bits are either zero or in
12095 OFFSET_EXPR. */
b0e6f033 12096 if (imm_expr.X_op == O_constant)
252b5132 12097 {
8fc2e39e 12098 used_at = 1;
bad1aba3 12099 load_register (AT, &imm_expr, FPR_SIZE == 64);
351cdf24
MF
12100 if (FPR_SIZE == 64 && GPR_SIZE == 64)
12101 macro_build (NULL, "dmtc1", "t,S", AT, op[0]);
252b5132
RH
12102 else
12103 {
351cdf24
MF
12104 if (ISA_HAS_MXHC1 (mips_opts.isa))
12105 macro_build (NULL, "mthc1", "t,G", AT, op[0]);
12106 else if (FPR_SIZE != 32)
12107 as_bad (_("Unable to generate `%s' compliant code "
12108 "without mthc1"),
12109 (FPR_SIZE == 64) ? "fp64" : "fpxx");
12110 else
12111 macro_build (NULL, "mtc1", "t,G", AT, op[0] + 1);
252b5132 12112 if (offset_expr.X_op == O_absent)
c0ebe874 12113 macro_build (NULL, "mtc1", "t,G", 0, op[0]);
252b5132
RH
12114 else
12115 {
9c2799c2 12116 gas_assert (offset_expr.X_op == O_constant);
67c0d1eb 12117 load_register (AT, &offset_expr, 0);
c0ebe874 12118 macro_build (NULL, "mtc1", "t,G", AT, op[0]);
252b5132
RH
12119 }
12120 }
12121 break;
12122 }
12123
b0e6f033
RS
12124 gas_assert (imm_expr.X_op == O_absent
12125 && offset_expr.X_op == O_symbol
90ecf173 12126 && offset_expr.X_add_number == 0);
252b5132
RH
12127 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
12128 if (strcmp (s, ".lit8") == 0)
f2ae14a1 12129 {
c0ebe874 12130 op[2] = mips_gp_register;
f2ae14a1
RS
12131 offset_reloc[0] = BFD_RELOC_MIPS_LITERAL;
12132 offset_reloc[1] = BFD_RELOC_UNUSED;
12133 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
12134 }
12135 else
12136 {
9c2799c2 12137 gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
8fc2e39e 12138 used_at = 1;
0a44bf69 12139 if (mips_pic != NO_PIC)
67c0d1eb
RS
12140 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
12141 BFD_RELOC_MIPS_GOT16, mips_gp_register);
252b5132
RH
12142 else
12143 {
12144 /* FIXME: This won't work for a 64 bit address. */
67c0d1eb 12145 macro_build_lui (&offset_expr, AT);
252b5132 12146 }
bdaaa2e1 12147
c0ebe874 12148 op[2] = AT;
f2ae14a1
RS
12149 offset_reloc[0] = BFD_RELOC_LO16;
12150 offset_reloc[1] = BFD_RELOC_UNUSED;
12151 offset_reloc[2] = BFD_RELOC_UNUSED;
12152 }
12153 align = 8;
12154 /* Fall through */
c4a68bea 12155
252b5132
RH
12156 case M_L_DAB:
12157 /*
12158 * The MIPS assembler seems to check for X_add_number not
12159 * being double aligned and generating:
12160 * lui at,%hi(foo+1)
12161 * addu at,at,v1
12162 * addiu at,at,%lo(foo+1)
12163 * lwc1 f2,0(at)
12164 * lwc1 f3,4(at)
12165 * But, the resulting address is the same after relocation so why
12166 * generate the extra instruction?
12167 */
bdaaa2e1 12168 /* Itbl support may require additional care here. */
252b5132 12169 coproc = 1;
df58fc94 12170 fmt = "T,o(b)";
0aa27725 12171 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
252b5132
RH
12172 {
12173 s = "ldc1";
df58fc94 12174 goto ld_st;
252b5132 12175 }
252b5132 12176 s = "lwc1";
252b5132
RH
12177 goto ldd_std;
12178
12179 case M_S_DAB:
df58fc94
RS
12180 gas_assert (!mips_opts.micromips);
12181 /* Itbl support may require additional care here. */
12182 coproc = 1;
12183 fmt = "T,o(b)";
0aa27725 12184 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
252b5132
RH
12185 {
12186 s = "sdc1";
df58fc94 12187 goto ld_st;
252b5132 12188 }
252b5132 12189 s = "swc1";
252b5132
RH
12190 goto ldd_std;
12191
e407c74b
NC
12192 case M_LQ_AB:
12193 fmt = "t,o(b)";
12194 s = "lq";
12195 goto ld;
12196
12197 case M_SQ_AB:
12198 fmt = "t,o(b)";
12199 s = "sq";
12200 goto ld_st;
12201
252b5132 12202 case M_LD_AB:
df58fc94 12203 fmt = "t,o(b)";
bad1aba3 12204 if (GPR_SIZE == 64)
252b5132
RH
12205 {
12206 s = "ld";
12207 goto ld;
12208 }
252b5132 12209 s = "lw";
252b5132
RH
12210 goto ldd_std;
12211
12212 case M_SD_AB:
df58fc94 12213 fmt = "t,o(b)";
bad1aba3 12214 if (GPR_SIZE == 64)
252b5132
RH
12215 {
12216 s = "sd";
df58fc94 12217 goto ld_st;
252b5132 12218 }
252b5132 12219 s = "sw";
252b5132
RH
12220
12221 ldd_std:
f2ae14a1
RS
12222 /* Even on a big endian machine $fn comes before $fn+1. We have
12223 to adjust when loading from memory. We set coproc if we must
12224 load $fn+1 first. */
12225 /* Itbl support may require additional care here. */
12226 if (!target_big_endian)
12227 coproc = 0;
12228
c0ebe874 12229 breg = op[2];
f2ae14a1
RS
12230 if (small_offset_p (0, align, 16))
12231 {
12232 ep = &offset_expr;
12233 if (!small_offset_p (4, align, 16))
12234 {
12235 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", AT, breg,
12236 -1, offset_reloc[0], offset_reloc[1],
12237 offset_reloc[2]);
12238 expr1.X_add_number = 0;
12239 ep = &expr1;
12240 breg = AT;
12241 used_at = 1;
12242 offset_reloc[0] = BFD_RELOC_LO16;
12243 offset_reloc[1] = BFD_RELOC_UNUSED;
12244 offset_reloc[2] = BFD_RELOC_UNUSED;
12245 }
c0ebe874 12246 if (strcmp (s, "lw") == 0 && op[0] == breg)
f2ae14a1
RS
12247 {
12248 ep->X_add_number += 4;
c0ebe874 12249 macro_build (ep, s, fmt, op[0] + 1, -1, offset_reloc[0],
f2ae14a1
RS
12250 offset_reloc[1], offset_reloc[2], breg);
12251 ep->X_add_number -= 4;
c0ebe874 12252 macro_build (ep, s, fmt, op[0], -1, offset_reloc[0],
f2ae14a1
RS
12253 offset_reloc[1], offset_reloc[2], breg);
12254 }
12255 else
12256 {
c0ebe874 12257 macro_build (ep, s, fmt, coproc ? op[0] + 1 : op[0], -1,
f2ae14a1
RS
12258 offset_reloc[0], offset_reloc[1], offset_reloc[2],
12259 breg);
12260 ep->X_add_number += 4;
c0ebe874 12261 macro_build (ep, s, fmt, coproc ? op[0] : op[0] + 1, -1,
f2ae14a1
RS
12262 offset_reloc[0], offset_reloc[1], offset_reloc[2],
12263 breg);
12264 }
12265 break;
12266 }
12267
252b5132
RH
12268 if (offset_expr.X_op != O_symbol
12269 && offset_expr.X_op != O_constant)
12270 {
1661c76c 12271 as_bad (_("expression too complex"));
252b5132
RH
12272 offset_expr.X_op = O_constant;
12273 }
12274
2051e8c4
MR
12275 if (HAVE_32BIT_ADDRESSES
12276 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
12277 {
12278 char value [32];
12279
12280 sprintf_vma (value, offset_expr.X_add_number);
1661c76c 12281 as_bad (_("number (0x%s) larger than 32 bits"), value);
55e08f71 12282 }
2051e8c4 12283
90ecf173 12284 if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
252b5132
RH
12285 {
12286 /* If this is a reference to a GP relative symbol, we want
c0ebe874
RS
12287 <op> op[0],<sym>($gp) (BFD_RELOC_GPREL16)
12288 <op> op[0]+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
12289 If we have a base register, we use this
12290 addu $at,$breg,$gp
c0ebe874
RS
12291 <op> op[0],<sym>($at) (BFD_RELOC_GPREL16)
12292 <op> op[0]+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
12293 If this is not a GP relative symbol, we want
12294 lui $at,<sym> (BFD_RELOC_HI16_S)
c0ebe874
RS
12295 <op> op[0],<sym>($at) (BFD_RELOC_LO16)
12296 <op> op[0]+1,<sym>+4($at) (BFD_RELOC_LO16)
252b5132
RH
12297 If there is a base register, we add it to $at after the
12298 lui instruction. If there is a constant, we always use
12299 the last case. */
39a59cf8
MR
12300 if (offset_expr.X_op == O_symbol
12301 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 12302 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 12303 {
4d7206a2 12304 relax_start (offset_expr.X_add_symbol);
252b5132
RH
12305 if (breg == 0)
12306 {
c9914766 12307 tempreg = mips_gp_register;
252b5132
RH
12308 }
12309 else
12310 {
67c0d1eb 12311 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 12312 AT, breg, mips_gp_register);
252b5132 12313 tempreg = AT;
252b5132
RH
12314 used_at = 1;
12315 }
12316
beae10d5 12317 /* Itbl support may require additional care here. */
c0ebe874 12318 macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
17a2f251 12319 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
12320 offset_expr.X_add_number += 4;
12321
12322 /* Set mips_optimize to 2 to avoid inserting an
12323 undesired nop. */
12324 hold_mips_optimize = mips_optimize;
12325 mips_optimize = 2;
beae10d5 12326 /* Itbl support may require additional care here. */
c0ebe874 12327 macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
17a2f251 12328 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
12329 mips_optimize = hold_mips_optimize;
12330
4d7206a2 12331 relax_switch ();
252b5132 12332
0970e49e 12333 offset_expr.X_add_number -= 4;
252b5132 12334 }
8fc2e39e 12335 used_at = 1;
f2ae14a1
RS
12336 if (offset_high_part (offset_expr.X_add_number, 16)
12337 != offset_high_part (offset_expr.X_add_number + 4, 16))
12338 {
12339 load_address (AT, &offset_expr, &used_at);
12340 offset_expr.X_op = O_constant;
12341 offset_expr.X_add_number = 0;
12342 }
12343 else
12344 macro_build_lui (&offset_expr, AT);
252b5132 12345 if (breg != 0)
67c0d1eb 12346 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 12347 /* Itbl support may require additional care here. */
c0ebe874 12348 macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
17a2f251 12349 BFD_RELOC_LO16, AT);
252b5132
RH
12350 /* FIXME: How do we handle overflow here? */
12351 offset_expr.X_add_number += 4;
beae10d5 12352 /* Itbl support may require additional care here. */
c0ebe874 12353 macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
17a2f251 12354 BFD_RELOC_LO16, AT);
4d7206a2
RS
12355 if (mips_relax.sequence)
12356 relax_end ();
bdaaa2e1 12357 }
0a44bf69 12358 else if (!mips_big_got)
252b5132 12359 {
252b5132
RH
12360 /* If this is a reference to an external symbol, we want
12361 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
12362 nop
c0ebe874
RS
12363 <op> op[0],0($at)
12364 <op> op[0]+1,4($at)
252b5132
RH
12365 Otherwise we want
12366 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
12367 nop
c0ebe874
RS
12368 <op> op[0],<sym>($at) (BFD_RELOC_LO16)
12369 <op> op[0]+1,<sym>+4($at) (BFD_RELOC_LO16)
252b5132
RH
12370 If there is a base register we add it to $at before the
12371 lwc1 instructions. If there is a constant we include it
12372 in the lwc1 instructions. */
12373 used_at = 1;
12374 expr1.X_add_number = offset_expr.X_add_number;
252b5132
RH
12375 if (expr1.X_add_number < -0x8000
12376 || expr1.X_add_number >= 0x8000 - 4)
12377 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 12378 load_got_offset (AT, &offset_expr);
269137b2 12379 load_delay_nop ();
252b5132 12380 if (breg != 0)
67c0d1eb 12381 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
252b5132
RH
12382
12383 /* Set mips_optimize to 2 to avoid inserting an undesired
12384 nop. */
12385 hold_mips_optimize = mips_optimize;
12386 mips_optimize = 2;
4d7206a2 12387
beae10d5 12388 /* Itbl support may require additional care here. */
4d7206a2 12389 relax_start (offset_expr.X_add_symbol);
c0ebe874 12390 macro_build (&expr1, s, fmt, coproc ? op[0] + 1 : op[0],
67c0d1eb 12391 BFD_RELOC_LO16, AT);
4d7206a2 12392 expr1.X_add_number += 4;
c0ebe874 12393 macro_build (&expr1, s, fmt, coproc ? op[0] : op[0] + 1,
67c0d1eb 12394 BFD_RELOC_LO16, AT);
4d7206a2 12395 relax_switch ();
c0ebe874 12396 macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
67c0d1eb 12397 BFD_RELOC_LO16, AT);
4d7206a2 12398 offset_expr.X_add_number += 4;
c0ebe874 12399 macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
67c0d1eb 12400 BFD_RELOC_LO16, AT);
4d7206a2 12401 relax_end ();
252b5132 12402
4d7206a2 12403 mips_optimize = hold_mips_optimize;
252b5132 12404 }
0a44bf69 12405 else if (mips_big_got)
252b5132 12406 {
67c0d1eb 12407 int gpdelay;
252b5132
RH
12408
12409 /* If this is a reference to an external symbol, we want
12410 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
12411 addu $at,$at,$gp
12412 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
12413 nop
c0ebe874
RS
12414 <op> op[0],0($at)
12415 <op> op[0]+1,4($at)
252b5132
RH
12416 Otherwise we want
12417 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
12418 nop
c0ebe874
RS
12419 <op> op[0],<sym>($at) (BFD_RELOC_LO16)
12420 <op> op[0]+1,<sym>+4($at) (BFD_RELOC_LO16)
252b5132
RH
12421 If there is a base register we add it to $at before the
12422 lwc1 instructions. If there is a constant we include it
12423 in the lwc1 instructions. */
12424 used_at = 1;
12425 expr1.X_add_number = offset_expr.X_add_number;
12426 offset_expr.X_add_number = 0;
12427 if (expr1.X_add_number < -0x8000
12428 || expr1.X_add_number >= 0x8000 - 4)
12429 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 12430 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 12431 relax_start (offset_expr.X_add_symbol);
df58fc94 12432 macro_build (&offset_expr, "lui", LUI_FMT,
67c0d1eb
RS
12433 AT, BFD_RELOC_MIPS_GOT_HI16);
12434 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 12435 AT, AT, mips_gp_register);
67c0d1eb 12436 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 12437 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
269137b2 12438 load_delay_nop ();
252b5132 12439 if (breg != 0)
67c0d1eb 12440 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 12441 /* Itbl support may require additional care here. */
c0ebe874 12442 macro_build (&expr1, s, fmt, coproc ? op[0] + 1 : op[0],
17a2f251 12443 BFD_RELOC_LO16, AT);
252b5132
RH
12444 expr1.X_add_number += 4;
12445
12446 /* Set mips_optimize to 2 to avoid inserting an undesired
12447 nop. */
12448 hold_mips_optimize = mips_optimize;
12449 mips_optimize = 2;
beae10d5 12450 /* Itbl support may require additional care here. */
c0ebe874 12451 macro_build (&expr1, s, fmt, coproc ? op[0] : op[0] + 1,
17a2f251 12452 BFD_RELOC_LO16, AT);
252b5132
RH
12453 mips_optimize = hold_mips_optimize;
12454 expr1.X_add_number -= 4;
12455
4d7206a2
RS
12456 relax_switch ();
12457 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
12458 if (gpdelay)
12459 macro_build (NULL, "nop", "");
12460 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
12461 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 12462 load_delay_nop ();
252b5132 12463 if (breg != 0)
67c0d1eb 12464 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 12465 /* Itbl support may require additional care here. */
c0ebe874 12466 macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
67c0d1eb 12467 BFD_RELOC_LO16, AT);
4d7206a2 12468 offset_expr.X_add_number += 4;
252b5132
RH
12469
12470 /* Set mips_optimize to 2 to avoid inserting an undesired
12471 nop. */
12472 hold_mips_optimize = mips_optimize;
12473 mips_optimize = 2;
beae10d5 12474 /* Itbl support may require additional care here. */
c0ebe874 12475 macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
67c0d1eb 12476 BFD_RELOC_LO16, AT);
252b5132 12477 mips_optimize = hold_mips_optimize;
4d7206a2 12478 relax_end ();
252b5132 12479 }
252b5132
RH
12480 else
12481 abort ();
12482
252b5132 12483 break;
dd6a37e7
AP
12484
12485 case M_SAA_AB:
dd6a37e7 12486 s = "saa";
0db377d0 12487 goto saa_saad;
dd6a37e7 12488 case M_SAAD_AB:
dd6a37e7 12489 s = "saad";
0db377d0
MR
12490 saa_saad:
12491 gas_assert (!mips_opts.micromips);
7f3c4072 12492 offbits = 0;
dd6a37e7
AP
12493 fmt = "t,(b)";
12494 goto ld_st;
12495
252b5132
RH
12496 /* New code added to support COPZ instructions.
12497 This code builds table entries out of the macros in mip_opcodes.
12498 R4000 uses interlocks to handle coproc delays.
12499 Other chips (like the R3000) require nops to be inserted for delays.
12500
f72c8c98 12501 FIXME: Currently, we require that the user handle delays.
252b5132
RH
12502 In order to fill delay slots for non-interlocked chips,
12503 we must have a way to specify delays based on the coprocessor.
12504 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
12505 What are the side-effects of the cop instruction?
12506 What cache support might we have and what are its effects?
12507 Both coprocessor & memory require delays. how long???
bdaaa2e1 12508 What registers are read/set/modified?
252b5132
RH
12509
12510 If an itbl is provided to interpret cop instructions,
bdaaa2e1 12511 this knowledge can be encoded in the itbl spec. */
252b5132
RH
12512
12513 case M_COP0:
12514 s = "c0";
12515 goto copz;
12516 case M_COP1:
12517 s = "c1";
12518 goto copz;
12519 case M_COP2:
12520 s = "c2";
12521 goto copz;
12522 case M_COP3:
12523 s = "c3";
12524 copz:
df58fc94 12525 gas_assert (!mips_opts.micromips);
252b5132
RH
12526 /* For now we just do C (same as Cz). The parameter will be
12527 stored in insn_opcode by mips_ip. */
c8276761 12528 macro_build (NULL, s, "C", (int) ip->insn_opcode);
8fc2e39e 12529 break;
252b5132 12530
ea1fb5dc 12531 case M_MOVE:
c0ebe874 12532 move_register (op[0], op[1]);
8fc2e39e 12533 break;
ea1fb5dc 12534
833794fc
MR
12535 case M_MOVEP:
12536 gas_assert (mips_opts.micromips);
12537 gas_assert (mips_opts.insn32);
c0ebe874
RS
12538 move_register (micromips_to_32_reg_h_map1[op[0]],
12539 micromips_to_32_reg_m_map[op[1]]);
12540 move_register (micromips_to_32_reg_h_map2[op[0]],
12541 micromips_to_32_reg_n_map[op[2]]);
833794fc
MR
12542 break;
12543
252b5132
RH
12544 case M_DMUL:
12545 dbl = 1;
12546 case M_MUL:
e407c74b 12547 if (mips_opts.arch == CPU_R5900)
c0ebe874
RS
12548 macro_build (NULL, dbl ? "dmultu" : "multu", "d,s,t", op[0], op[1],
12549 op[2]);
e407c74b
NC
12550 else
12551 {
c0ebe874
RS
12552 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", op[1], op[2]);
12553 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
e407c74b 12554 }
8fc2e39e 12555 break;
252b5132
RH
12556
12557 case M_DMUL_I:
12558 dbl = 1;
12559 case M_MUL_I:
12560 /* The MIPS assembler some times generates shifts and adds. I'm
12561 not trying to be that fancy. GCC should do this for us
12562 anyway. */
8fc2e39e 12563 used_at = 1;
67c0d1eb 12564 load_register (AT, &imm_expr, dbl);
c0ebe874
RS
12565 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", op[1], AT);
12566 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
252b5132
RH
12567 break;
12568
12569 case M_DMULO_I:
12570 dbl = 1;
12571 case M_MULO_I:
12572 imm = 1;
12573 goto do_mulo;
12574
12575 case M_DMULO:
12576 dbl = 1;
12577 case M_MULO:
12578 do_mulo:
7d10b47d 12579 start_noreorder ();
8fc2e39e 12580 used_at = 1;
252b5132 12581 if (imm)
67c0d1eb 12582 load_register (AT, &imm_expr, dbl);
c0ebe874
RS
12583 macro_build (NULL, dbl ? "dmult" : "mult", "s,t",
12584 op[1], imm ? AT : op[2]);
12585 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12586 macro_build (NULL, dbl ? "dsra32" : "sra", SHFT_FMT, op[0], op[0], 31);
df58fc94 12587 macro_build (NULL, "mfhi", MFHL_FMT, AT);
252b5132 12588 if (mips_trap)
c0ebe874 12589 macro_build (NULL, "tne", TRAP_FMT, op[0], AT, 6);
252b5132
RH
12590 else
12591 {
df58fc94
RS
12592 if (mips_opts.micromips)
12593 micromips_label_expr (&label_expr);
12594 else
12595 label_expr.X_add_number = 8;
c0ebe874 12596 macro_build (&label_expr, "beq", "s,t,p", op[0], AT);
a605d2b3 12597 macro_build (NULL, "nop", "");
df58fc94
RS
12598 macro_build (NULL, "break", BRK_FMT, 6);
12599 if (mips_opts.micromips)
12600 micromips_add_label ();
252b5132 12601 }
7d10b47d 12602 end_noreorder ();
c0ebe874 12603 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
252b5132
RH
12604 break;
12605
12606 case M_DMULOU_I:
12607 dbl = 1;
12608 case M_MULOU_I:
12609 imm = 1;
12610 goto do_mulou;
12611
12612 case M_DMULOU:
12613 dbl = 1;
12614 case M_MULOU:
12615 do_mulou:
7d10b47d 12616 start_noreorder ();
8fc2e39e 12617 used_at = 1;
252b5132 12618 if (imm)
67c0d1eb
RS
12619 load_register (AT, &imm_expr, dbl);
12620 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
c0ebe874 12621 op[1], imm ? AT : op[2]);
df58fc94 12622 macro_build (NULL, "mfhi", MFHL_FMT, AT);
c0ebe874 12623 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
252b5132 12624 if (mips_trap)
df58fc94 12625 macro_build (NULL, "tne", TRAP_FMT, AT, ZERO, 6);
252b5132
RH
12626 else
12627 {
df58fc94
RS
12628 if (mips_opts.micromips)
12629 micromips_label_expr (&label_expr);
12630 else
12631 label_expr.X_add_number = 8;
12632 macro_build (&label_expr, "beq", "s,t,p", AT, ZERO);
a605d2b3 12633 macro_build (NULL, "nop", "");
df58fc94
RS
12634 macro_build (NULL, "break", BRK_FMT, 6);
12635 if (mips_opts.micromips)
12636 micromips_add_label ();
252b5132 12637 }
7d10b47d 12638 end_noreorder ();
252b5132
RH
12639 break;
12640
771c7ce4 12641 case M_DROL:
fef14a42 12642 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097 12643 {
c0ebe874 12644 if (op[0] == op[1])
82dd0097
CD
12645 {
12646 tempreg = AT;
12647 used_at = 1;
12648 }
12649 else
c0ebe874
RS
12650 tempreg = op[0];
12651 macro_build (NULL, "dnegu", "d,w", tempreg, op[2]);
12652 macro_build (NULL, "drorv", "d,t,s", op[0], op[1], tempreg);
8fc2e39e 12653 break;
82dd0097 12654 }
8fc2e39e 12655 used_at = 1;
c0ebe874
RS
12656 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, op[2]);
12657 macro_build (NULL, "dsrlv", "d,t,s", AT, op[1], AT);
12658 macro_build (NULL, "dsllv", "d,t,s", op[0], op[1], op[2]);
12659 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
771c7ce4
TS
12660 break;
12661
252b5132 12662 case M_ROL:
fef14a42 12663 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 12664 {
c0ebe874 12665 if (op[0] == op[1])
82dd0097
CD
12666 {
12667 tempreg = AT;
12668 used_at = 1;
12669 }
12670 else
c0ebe874
RS
12671 tempreg = op[0];
12672 macro_build (NULL, "negu", "d,w", tempreg, op[2]);
12673 macro_build (NULL, "rorv", "d,t,s", op[0], op[1], tempreg);
8fc2e39e 12674 break;
82dd0097 12675 }
8fc2e39e 12676 used_at = 1;
c0ebe874
RS
12677 macro_build (NULL, "subu", "d,v,t", AT, ZERO, op[2]);
12678 macro_build (NULL, "srlv", "d,t,s", AT, op[1], AT);
12679 macro_build (NULL, "sllv", "d,t,s", op[0], op[1], op[2]);
12680 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
252b5132
RH
12681 break;
12682
771c7ce4
TS
12683 case M_DROL_I:
12684 {
12685 unsigned int rot;
91d6fa6a
NC
12686 char *l;
12687 char *rr;
771c7ce4 12688
771c7ce4 12689 rot = imm_expr.X_add_number & 0x3f;
fef14a42 12690 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
60b63b72
RS
12691 {
12692 rot = (64 - rot) & 0x3f;
12693 if (rot >= 32)
c0ebe874 12694 macro_build (NULL, "dror32", SHFT_FMT, op[0], op[1], rot - 32);
60b63b72 12695 else
c0ebe874 12696 macro_build (NULL, "dror", SHFT_FMT, op[0], op[1], rot);
8fc2e39e 12697 break;
60b63b72 12698 }
483fc7cd 12699 if (rot == 0)
483fc7cd 12700 {
c0ebe874 12701 macro_build (NULL, "dsrl", SHFT_FMT, op[0], op[1], 0);
8fc2e39e 12702 break;
483fc7cd 12703 }
82dd0097 12704 l = (rot < 0x20) ? "dsll" : "dsll32";
91d6fa6a 12705 rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
82dd0097 12706 rot &= 0x1f;
8fc2e39e 12707 used_at = 1;
c0ebe874
RS
12708 macro_build (NULL, l, SHFT_FMT, AT, op[1], rot);
12709 macro_build (NULL, rr, SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12710 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
771c7ce4
TS
12711 }
12712 break;
12713
252b5132 12714 case M_ROL_I:
771c7ce4
TS
12715 {
12716 unsigned int rot;
12717
771c7ce4 12718 rot = imm_expr.X_add_number & 0x1f;
fef14a42 12719 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
60b63b72 12720 {
c0ebe874
RS
12721 macro_build (NULL, "ror", SHFT_FMT, op[0], op[1],
12722 (32 - rot) & 0x1f);
8fc2e39e 12723 break;
60b63b72 12724 }
483fc7cd 12725 if (rot == 0)
483fc7cd 12726 {
c0ebe874 12727 macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], 0);
8fc2e39e 12728 break;
483fc7cd 12729 }
8fc2e39e 12730 used_at = 1;
c0ebe874
RS
12731 macro_build (NULL, "sll", SHFT_FMT, AT, op[1], rot);
12732 macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12733 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
771c7ce4
TS
12734 }
12735 break;
12736
12737 case M_DROR:
fef14a42 12738 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097 12739 {
c0ebe874 12740 macro_build (NULL, "drorv", "d,t,s", op[0], op[1], op[2]);
8fc2e39e 12741 break;
82dd0097 12742 }
8fc2e39e 12743 used_at = 1;
c0ebe874
RS
12744 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, op[2]);
12745 macro_build (NULL, "dsllv", "d,t,s", AT, op[1], AT);
12746 macro_build (NULL, "dsrlv", "d,t,s", op[0], op[1], op[2]);
12747 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
252b5132
RH
12748 break;
12749
12750 case M_ROR:
fef14a42 12751 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 12752 {
c0ebe874 12753 macro_build (NULL, "rorv", "d,t,s", op[0], op[1], op[2]);
8fc2e39e 12754 break;
82dd0097 12755 }
8fc2e39e 12756 used_at = 1;
c0ebe874
RS
12757 macro_build (NULL, "subu", "d,v,t", AT, ZERO, op[2]);
12758 macro_build (NULL, "sllv", "d,t,s", AT, op[1], AT);
12759 macro_build (NULL, "srlv", "d,t,s", op[0], op[1], op[2]);
12760 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
252b5132
RH
12761 break;
12762
771c7ce4
TS
12763 case M_DROR_I:
12764 {
12765 unsigned int rot;
91d6fa6a
NC
12766 char *l;
12767 char *rr;
771c7ce4 12768
771c7ce4 12769 rot = imm_expr.X_add_number & 0x3f;
fef14a42 12770 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
12771 {
12772 if (rot >= 32)
c0ebe874 12773 macro_build (NULL, "dror32", SHFT_FMT, op[0], op[1], rot - 32);
82dd0097 12774 else
c0ebe874 12775 macro_build (NULL, "dror", SHFT_FMT, op[0], op[1], rot);
8fc2e39e 12776 break;
82dd0097 12777 }
483fc7cd 12778 if (rot == 0)
483fc7cd 12779 {
c0ebe874 12780 macro_build (NULL, "dsrl", SHFT_FMT, op[0], op[1], 0);
8fc2e39e 12781 break;
483fc7cd 12782 }
91d6fa6a 12783 rr = (rot < 0x20) ? "dsrl" : "dsrl32";
82dd0097
CD
12784 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
12785 rot &= 0x1f;
8fc2e39e 12786 used_at = 1;
c0ebe874
RS
12787 macro_build (NULL, rr, SHFT_FMT, AT, op[1], rot);
12788 macro_build (NULL, l, SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12789 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
771c7ce4
TS
12790 }
12791 break;
12792
252b5132 12793 case M_ROR_I:
771c7ce4
TS
12794 {
12795 unsigned int rot;
12796
771c7ce4 12797 rot = imm_expr.X_add_number & 0x1f;
fef14a42 12798 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 12799 {
c0ebe874 12800 macro_build (NULL, "ror", SHFT_FMT, op[0], op[1], rot);
8fc2e39e 12801 break;
82dd0097 12802 }
483fc7cd 12803 if (rot == 0)
483fc7cd 12804 {
c0ebe874 12805 macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], 0);
8fc2e39e 12806 break;
483fc7cd 12807 }
8fc2e39e 12808 used_at = 1;
c0ebe874
RS
12809 macro_build (NULL, "srl", SHFT_FMT, AT, op[1], rot);
12810 macro_build (NULL, "sll", SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12811 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
771c7ce4 12812 }
252b5132
RH
12813 break;
12814
252b5132 12815 case M_SEQ:
c0ebe874
RS
12816 if (op[1] == 0)
12817 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[2], BFD_RELOC_LO16);
12818 else if (op[2] == 0)
12819 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[1], BFD_RELOC_LO16);
252b5132
RH
12820 else
12821 {
c0ebe874
RS
12822 macro_build (NULL, "xor", "d,v,t", op[0], op[1], op[2]);
12823 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[0], BFD_RELOC_LO16);
252b5132 12824 }
8fc2e39e 12825 break;
252b5132
RH
12826
12827 case M_SEQ_I:
b0e6f033 12828 if (imm_expr.X_add_number == 0)
252b5132 12829 {
c0ebe874 12830 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[1], BFD_RELOC_LO16);
8fc2e39e 12831 break;
252b5132 12832 }
c0ebe874 12833 if (op[1] == 0)
252b5132 12834 {
1661c76c 12835 as_warn (_("instruction %s: result is always false"),
252b5132 12836 ip->insn_mo->name);
c0ebe874 12837 move_register (op[0], 0);
8fc2e39e 12838 break;
252b5132 12839 }
dd3cbb7e
NC
12840 if (CPU_HAS_SEQ (mips_opts.arch)
12841 && -512 <= imm_expr.X_add_number
12842 && imm_expr.X_add_number < 512)
12843 {
c0ebe874 12844 macro_build (NULL, "seqi", "t,r,+Q", op[0], op[1],
750bdd57 12845 (int) imm_expr.X_add_number);
dd3cbb7e
NC
12846 break;
12847 }
b0e6f033 12848 if (imm_expr.X_add_number >= 0
252b5132 12849 && imm_expr.X_add_number < 0x10000)
c0ebe874 12850 macro_build (&imm_expr, "xori", "t,r,i", op[0], op[1], BFD_RELOC_LO16);
b0e6f033 12851 else if (imm_expr.X_add_number > -0x8000
252b5132
RH
12852 && imm_expr.X_add_number < 0)
12853 {
12854 imm_expr.X_add_number = -imm_expr.X_add_number;
bad1aba3 12855 macro_build (&imm_expr, GPR_SIZE == 32 ? "addiu" : "daddiu",
c0ebe874 12856 "t,r,j", op[0], op[1], BFD_RELOC_LO16);
252b5132 12857 }
dd3cbb7e
NC
12858 else if (CPU_HAS_SEQ (mips_opts.arch))
12859 {
12860 used_at = 1;
bad1aba3 12861 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874 12862 macro_build (NULL, "seq", "d,v,t", op[0], op[1], AT);
dd3cbb7e
NC
12863 break;
12864 }
252b5132
RH
12865 else
12866 {
bad1aba3 12867 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874 12868 macro_build (NULL, "xor", "d,v,t", op[0], op[1], AT);
252b5132
RH
12869 used_at = 1;
12870 }
c0ebe874 12871 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[0], BFD_RELOC_LO16);
8fc2e39e 12872 break;
252b5132 12873
c0ebe874 12874 case M_SGE: /* X >= Y <==> not (X < Y) */
252b5132
RH
12875 s = "slt";
12876 goto sge;
12877 case M_SGEU:
12878 s = "sltu";
12879 sge:
c0ebe874
RS
12880 macro_build (NULL, s, "d,v,t", op[0], op[1], op[2]);
12881 macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
8fc2e39e 12882 break;
252b5132 12883
c0ebe874 12884 case M_SGE_I: /* X >= I <==> not (X < I) */
252b5132 12885 case M_SGEU_I:
b0e6f033 12886 if (imm_expr.X_add_number >= -0x8000
252b5132 12887 && imm_expr.X_add_number < 0x8000)
c0ebe874
RS
12888 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
12889 op[0], op[1], BFD_RELOC_LO16);
252b5132
RH
12890 else
12891 {
bad1aba3 12892 load_register (AT, &imm_expr, GPR_SIZE == 64);
67c0d1eb 12893 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
c0ebe874 12894 op[0], op[1], AT);
252b5132
RH
12895 used_at = 1;
12896 }
c0ebe874 12897 macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
8fc2e39e 12898 break;
252b5132 12899
c0ebe874 12900 case M_SGT: /* X > Y <==> Y < X */
252b5132
RH
12901 s = "slt";
12902 goto sgt;
12903 case M_SGTU:
12904 s = "sltu";
12905 sgt:
c0ebe874 12906 macro_build (NULL, s, "d,v,t", op[0], op[2], op[1]);
8fc2e39e 12907 break;
252b5132 12908
c0ebe874 12909 case M_SGT_I: /* X > I <==> I < X */
252b5132
RH
12910 s = "slt";
12911 goto sgti;
12912 case M_SGTU_I:
12913 s = "sltu";
12914 sgti:
8fc2e39e 12915 used_at = 1;
bad1aba3 12916 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874 12917 macro_build (NULL, s, "d,v,t", op[0], AT, op[1]);
252b5132
RH
12918 break;
12919
c0ebe874 12920 case M_SLE: /* X <= Y <==> Y >= X <==> not (Y < X) */
252b5132
RH
12921 s = "slt";
12922 goto sle;
12923 case M_SLEU:
12924 s = "sltu";
12925 sle:
c0ebe874
RS
12926 macro_build (NULL, s, "d,v,t", op[0], op[2], op[1]);
12927 macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
8fc2e39e 12928 break;
252b5132 12929
c0ebe874 12930 case M_SLE_I: /* X <= I <==> I >= X <==> not (I < X) */
252b5132
RH
12931 s = "slt";
12932 goto slei;
12933 case M_SLEU_I:
12934 s = "sltu";
12935 slei:
8fc2e39e 12936 used_at = 1;
bad1aba3 12937 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874
RS
12938 macro_build (NULL, s, "d,v,t", op[0], AT, op[1]);
12939 macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
252b5132
RH
12940 break;
12941
12942 case M_SLT_I:
b0e6f033 12943 if (imm_expr.X_add_number >= -0x8000
252b5132
RH
12944 && imm_expr.X_add_number < 0x8000)
12945 {
c0ebe874
RS
12946 macro_build (&imm_expr, "slti", "t,r,j", op[0], op[1],
12947 BFD_RELOC_LO16);
8fc2e39e 12948 break;
252b5132 12949 }
8fc2e39e 12950 used_at = 1;
bad1aba3 12951 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874 12952 macro_build (NULL, "slt", "d,v,t", op[0], op[1], AT);
252b5132
RH
12953 break;
12954
12955 case M_SLTU_I:
b0e6f033 12956 if (imm_expr.X_add_number >= -0x8000
252b5132
RH
12957 && imm_expr.X_add_number < 0x8000)
12958 {
c0ebe874 12959 macro_build (&imm_expr, "sltiu", "t,r,j", op[0], op[1],
17a2f251 12960 BFD_RELOC_LO16);
8fc2e39e 12961 break;
252b5132 12962 }
8fc2e39e 12963 used_at = 1;
bad1aba3 12964 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874 12965 macro_build (NULL, "sltu", "d,v,t", op[0], op[1], AT);
252b5132
RH
12966 break;
12967
12968 case M_SNE:
c0ebe874
RS
12969 if (op[1] == 0)
12970 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[2]);
12971 else if (op[2] == 0)
12972 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[1]);
252b5132
RH
12973 else
12974 {
c0ebe874
RS
12975 macro_build (NULL, "xor", "d,v,t", op[0], op[1], op[2]);
12976 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[0]);
252b5132 12977 }
8fc2e39e 12978 break;
252b5132
RH
12979
12980 case M_SNE_I:
b0e6f033 12981 if (imm_expr.X_add_number == 0)
252b5132 12982 {
c0ebe874 12983 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[1]);
8fc2e39e 12984 break;
252b5132 12985 }
c0ebe874 12986 if (op[1] == 0)
252b5132 12987 {
1661c76c 12988 as_warn (_("instruction %s: result is always true"),
252b5132 12989 ip->insn_mo->name);
bad1aba3 12990 macro_build (&expr1, GPR_SIZE == 32 ? "addiu" : "daddiu", "t,r,j",
c0ebe874 12991 op[0], 0, BFD_RELOC_LO16);
8fc2e39e 12992 break;
252b5132 12993 }
dd3cbb7e
NC
12994 if (CPU_HAS_SEQ (mips_opts.arch)
12995 && -512 <= imm_expr.X_add_number
12996 && imm_expr.X_add_number < 512)
12997 {
c0ebe874 12998 macro_build (NULL, "snei", "t,r,+Q", op[0], op[1],
750bdd57 12999 (int) imm_expr.X_add_number);
dd3cbb7e
NC
13000 break;
13001 }
b0e6f033 13002 if (imm_expr.X_add_number >= 0
252b5132
RH
13003 && imm_expr.X_add_number < 0x10000)
13004 {
c0ebe874
RS
13005 macro_build (&imm_expr, "xori", "t,r,i", op[0], op[1],
13006 BFD_RELOC_LO16);
252b5132 13007 }
b0e6f033 13008 else if (imm_expr.X_add_number > -0x8000
252b5132
RH
13009 && imm_expr.X_add_number < 0)
13010 {
13011 imm_expr.X_add_number = -imm_expr.X_add_number;
bad1aba3 13012 macro_build (&imm_expr, GPR_SIZE == 32 ? "addiu" : "daddiu",
c0ebe874 13013 "t,r,j", op[0], op[1], BFD_RELOC_LO16);
252b5132 13014 }
dd3cbb7e
NC
13015 else if (CPU_HAS_SEQ (mips_opts.arch))
13016 {
13017 used_at = 1;
bad1aba3 13018 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874 13019 macro_build (NULL, "sne", "d,v,t", op[0], op[1], AT);
dd3cbb7e
NC
13020 break;
13021 }
252b5132
RH
13022 else
13023 {
bad1aba3 13024 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874 13025 macro_build (NULL, "xor", "d,v,t", op[0], op[1], AT);
252b5132
RH
13026 used_at = 1;
13027 }
c0ebe874 13028 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[0]);
8fc2e39e 13029 break;
252b5132 13030
df58fc94
RS
13031 case M_SUB_I:
13032 s = "addi";
13033 s2 = "sub";
13034 goto do_subi;
13035 case M_SUBU_I:
13036 s = "addiu";
13037 s2 = "subu";
13038 goto do_subi;
252b5132
RH
13039 case M_DSUB_I:
13040 dbl = 1;
df58fc94
RS
13041 s = "daddi";
13042 s2 = "dsub";
13043 if (!mips_opts.micromips)
13044 goto do_subi;
b0e6f033 13045 if (imm_expr.X_add_number > -0x200
df58fc94 13046 && imm_expr.X_add_number <= 0x200)
252b5132 13047 {
b0e6f033
RS
13048 macro_build (NULL, s, "t,r,.", op[0], op[1],
13049 (int) -imm_expr.X_add_number);
8fc2e39e 13050 break;
252b5132 13051 }
df58fc94 13052 goto do_subi_i;
252b5132
RH
13053 case M_DSUBU_I:
13054 dbl = 1;
df58fc94
RS
13055 s = "daddiu";
13056 s2 = "dsubu";
13057 do_subi:
b0e6f033 13058 if (imm_expr.X_add_number > -0x8000
252b5132
RH
13059 && imm_expr.X_add_number <= 0x8000)
13060 {
13061 imm_expr.X_add_number = -imm_expr.X_add_number;
c0ebe874 13062 macro_build (&imm_expr, s, "t,r,j", op[0], op[1], BFD_RELOC_LO16);
8fc2e39e 13063 break;
252b5132 13064 }
df58fc94 13065 do_subi_i:
8fc2e39e 13066 used_at = 1;
67c0d1eb 13067 load_register (AT, &imm_expr, dbl);
c0ebe874 13068 macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
252b5132
RH
13069 break;
13070
13071 case M_TEQ_I:
13072 s = "teq";
13073 goto trap;
13074 case M_TGE_I:
13075 s = "tge";
13076 goto trap;
13077 case M_TGEU_I:
13078 s = "tgeu";
13079 goto trap;
13080 case M_TLT_I:
13081 s = "tlt";
13082 goto trap;
13083 case M_TLTU_I:
13084 s = "tltu";
13085 goto trap;
13086 case M_TNE_I:
13087 s = "tne";
13088 trap:
8fc2e39e 13089 used_at = 1;
bad1aba3 13090 load_register (AT, &imm_expr, GPR_SIZE == 64);
c0ebe874 13091 macro_build (NULL, s, "s,t", op[0], AT);
252b5132
RH
13092 break;
13093
252b5132 13094 case M_TRUNCWS:
43841e91 13095 case M_TRUNCWD:
df58fc94 13096 gas_assert (!mips_opts.micromips);
0aa27725 13097 gas_assert (mips_opts.isa == ISA_MIPS1);
8fc2e39e 13098 used_at = 1;
252b5132
RH
13099
13100 /*
13101 * Is the double cfc1 instruction a bug in the mips assembler;
13102 * or is there a reason for it?
13103 */
7d10b47d 13104 start_noreorder ();
c0ebe874
RS
13105 macro_build (NULL, "cfc1", "t,G", op[2], RA);
13106 macro_build (NULL, "cfc1", "t,G", op[2], RA);
67c0d1eb 13107 macro_build (NULL, "nop", "");
252b5132 13108 expr1.X_add_number = 3;
c0ebe874 13109 macro_build (&expr1, "ori", "t,r,i", AT, op[2], BFD_RELOC_LO16);
252b5132 13110 expr1.X_add_number = 2;
67c0d1eb
RS
13111 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
13112 macro_build (NULL, "ctc1", "t,G", AT, RA);
13113 macro_build (NULL, "nop", "");
13114 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
c0ebe874
RS
13115 op[0], op[1]);
13116 macro_build (NULL, "ctc1", "t,G", op[2], RA);
67c0d1eb 13117 macro_build (NULL, "nop", "");
7d10b47d 13118 end_noreorder ();
252b5132
RH
13119 break;
13120
f2ae14a1 13121 case M_ULH_AB:
252b5132 13122 s = "lb";
df58fc94
RS
13123 s2 = "lbu";
13124 off = 1;
13125 goto uld_st;
f2ae14a1 13126 case M_ULHU_AB:
252b5132 13127 s = "lbu";
df58fc94
RS
13128 s2 = "lbu";
13129 off = 1;
13130 goto uld_st;
f2ae14a1 13131 case M_ULW_AB:
df58fc94
RS
13132 s = "lwl";
13133 s2 = "lwr";
7f3c4072 13134 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94
RS
13135 off = 3;
13136 goto uld_st;
f2ae14a1 13137 case M_ULD_AB:
252b5132
RH
13138 s = "ldl";
13139 s2 = "ldr";
7f3c4072 13140 offbits = (mips_opts.micromips ? 12 : 16);
252b5132 13141 off = 7;
df58fc94 13142 goto uld_st;
f2ae14a1 13143 case M_USH_AB:
df58fc94
RS
13144 s = "sb";
13145 s2 = "sb";
13146 off = 1;
13147 ust = 1;
13148 goto uld_st;
f2ae14a1 13149 case M_USW_AB:
df58fc94
RS
13150 s = "swl";
13151 s2 = "swr";
7f3c4072 13152 offbits = (mips_opts.micromips ? 12 : 16);
252b5132 13153 off = 3;
df58fc94
RS
13154 ust = 1;
13155 goto uld_st;
f2ae14a1 13156 case M_USD_AB:
df58fc94
RS
13157 s = "sdl";
13158 s2 = "sdr";
7f3c4072 13159 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94
RS
13160 off = 7;
13161 ust = 1;
13162
13163 uld_st:
c0ebe874 13164 breg = op[2];
f2ae14a1 13165 large_offset = !small_offset_p (off, align, offbits);
df58fc94
RS
13166 ep = &offset_expr;
13167 expr1.X_add_number = 0;
f2ae14a1 13168 if (large_offset)
df58fc94
RS
13169 {
13170 used_at = 1;
13171 tempreg = AT;
f2ae14a1
RS
13172 if (small_offset_p (0, align, 16))
13173 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", tempreg, breg, -1,
13174 offset_reloc[0], offset_reloc[1], offset_reloc[2]);
13175 else
13176 {
13177 load_address (tempreg, ep, &used_at);
13178 if (breg != 0)
13179 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
13180 tempreg, tempreg, breg);
13181 }
13182 offset_reloc[0] = BFD_RELOC_LO16;
13183 offset_reloc[1] = BFD_RELOC_UNUSED;
13184 offset_reloc[2] = BFD_RELOC_UNUSED;
df58fc94 13185 breg = tempreg;
c0ebe874 13186 tempreg = op[0];
df58fc94
RS
13187 ep = &expr1;
13188 }
c0ebe874 13189 else if (!ust && op[0] == breg)
8fc2e39e
TS
13190 {
13191 used_at = 1;
13192 tempreg = AT;
13193 }
252b5132 13194 else
c0ebe874 13195 tempreg = op[0];
af22f5b2 13196
df58fc94
RS
13197 if (off == 1)
13198 goto ulh_sh;
252b5132 13199
90ecf173 13200 if (!target_big_endian)
df58fc94 13201 ep->X_add_number += off;
f2ae14a1 13202 if (offbits == 12)
c8276761 13203 macro_build (NULL, s, "t,~(b)", tempreg, (int) ep->X_add_number, breg);
f2ae14a1
RS
13204 else
13205 macro_build (ep, s, "t,o(b)", tempreg, -1,
13206 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
df58fc94 13207
90ecf173 13208 if (!target_big_endian)
df58fc94 13209 ep->X_add_number -= off;
252b5132 13210 else
df58fc94 13211 ep->X_add_number += off;
f2ae14a1 13212 if (offbits == 12)
df58fc94 13213 macro_build (NULL, s2, "t,~(b)",
c8276761 13214 tempreg, (int) ep->X_add_number, breg);
f2ae14a1
RS
13215 else
13216 macro_build (ep, s2, "t,o(b)", tempreg, -1,
13217 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
252b5132 13218
df58fc94 13219 /* If necessary, move the result in tempreg to the final destination. */
c0ebe874 13220 if (!ust && op[0] != tempreg)
df58fc94
RS
13221 {
13222 /* Protect second load's delay slot. */
13223 load_delay_nop ();
c0ebe874 13224 move_register (op[0], tempreg);
df58fc94 13225 }
8fc2e39e 13226 break;
252b5132 13227
df58fc94 13228 ulh_sh:
d6bc6245 13229 used_at = 1;
df58fc94
RS
13230 if (target_big_endian == ust)
13231 ep->X_add_number += off;
c0ebe874 13232 tempreg = ust || large_offset ? op[0] : AT;
f2ae14a1
RS
13233 macro_build (ep, s, "t,o(b)", tempreg, -1,
13234 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
df58fc94
RS
13235
13236 /* For halfword transfers we need a temporary register to shuffle
13237 bytes. Unfortunately for M_USH_A we have none available before
13238 the next store as AT holds the base address. We deal with this
13239 case by clobbering TREG and then restoring it as with ULH. */
c0ebe874 13240 tempreg = ust == large_offset ? op[0] : AT;
df58fc94 13241 if (ust)
c0ebe874 13242 macro_build (NULL, "srl", SHFT_FMT, tempreg, op[0], 8);
df58fc94
RS
13243
13244 if (target_big_endian == ust)
13245 ep->X_add_number -= off;
252b5132 13246 else
df58fc94 13247 ep->X_add_number += off;
f2ae14a1
RS
13248 macro_build (ep, s2, "t,o(b)", tempreg, -1,
13249 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
252b5132 13250
df58fc94 13251 /* For M_USH_A re-retrieve the LSB. */
f2ae14a1 13252 if (ust && large_offset)
df58fc94
RS
13253 {
13254 if (target_big_endian)
13255 ep->X_add_number += off;
13256 else
13257 ep->X_add_number -= off;
f2ae14a1
RS
13258 macro_build (&expr1, "lbu", "t,o(b)", AT, -1,
13259 offset_reloc[0], offset_reloc[1], offset_reloc[2], AT);
df58fc94
RS
13260 }
13261 /* For ULH and M_USH_A OR the LSB in. */
f2ae14a1 13262 if (!ust || large_offset)
df58fc94 13263 {
c0ebe874 13264 tempreg = !large_offset ? AT : op[0];
df58fc94 13265 macro_build (NULL, "sll", SHFT_FMT, tempreg, tempreg, 8);
c0ebe874 13266 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
df58fc94 13267 }
252b5132
RH
13268 break;
13269
13270 default:
13271 /* FIXME: Check if this is one of the itbl macros, since they
bdaaa2e1 13272 are added dynamically. */
1661c76c 13273 as_bad (_("macro %s not implemented yet"), ip->insn_mo->name);
252b5132
RH
13274 break;
13275 }
741fe287 13276 if (!mips_opts.at && used_at)
1661c76c 13277 as_bad (_("macro used $at after \".set noat\""));
252b5132
RH
13278}
13279
13280/* Implement macros in mips16 mode. */
13281
13282static void
17a2f251 13283mips16_macro (struct mips_cl_insn *ip)
252b5132 13284{
c0ebe874 13285 const struct mips_operand_array *operands;
252b5132 13286 int mask;
c0ebe874 13287 int tmp;
252b5132
RH
13288 expressionS expr1;
13289 int dbl;
13290 const char *s, *s2, *s3;
c0ebe874
RS
13291 unsigned int op[MAX_OPERANDS];
13292 unsigned int i;
252b5132
RH
13293
13294 mask = ip->insn_mo->mask;
13295
c0ebe874
RS
13296 operands = insn_operands (ip);
13297 for (i = 0; i < MAX_OPERANDS; i++)
13298 if (operands->operand[i])
13299 op[i] = insn_extract_operand (ip, operands->operand[i]);
13300 else
13301 op[i] = -1;
252b5132 13302
252b5132
RH
13303 expr1.X_op = O_constant;
13304 expr1.X_op_symbol = NULL;
13305 expr1.X_add_symbol = NULL;
13306 expr1.X_add_number = 1;
13307
13308 dbl = 0;
13309
13310 switch (mask)
13311 {
13312 default:
b37df7c4 13313 abort ();
252b5132
RH
13314
13315 case M_DDIV_3:
13316 dbl = 1;
13317 case M_DIV_3:
13318 s = "mflo";
13319 goto do_div3;
13320 case M_DREM_3:
13321 dbl = 1;
13322 case M_REM_3:
13323 s = "mfhi";
13324 do_div3:
7d10b47d 13325 start_noreorder ();
c0ebe874 13326 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", op[1], op[2]);
252b5132 13327 expr1.X_add_number = 2;
c0ebe874 13328 macro_build (&expr1, "bnez", "x,p", op[2]);
67c0d1eb 13329 macro_build (NULL, "break", "6", 7);
bdaaa2e1 13330
252b5132
RH
13331 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
13332 since that causes an overflow. We should do that as well,
13333 but I don't see how to do the comparisons without a temporary
13334 register. */
7d10b47d 13335 end_noreorder ();
c0ebe874 13336 macro_build (NULL, s, "x", op[0]);
252b5132
RH
13337 break;
13338
13339 case M_DIVU_3:
13340 s = "divu";
13341 s2 = "mflo";
13342 goto do_divu3;
13343 case M_REMU_3:
13344 s = "divu";
13345 s2 = "mfhi";
13346 goto do_divu3;
13347 case M_DDIVU_3:
13348 s = "ddivu";
13349 s2 = "mflo";
13350 goto do_divu3;
13351 case M_DREMU_3:
13352 s = "ddivu";
13353 s2 = "mfhi";
13354 do_divu3:
7d10b47d 13355 start_noreorder ();
c0ebe874 13356 macro_build (NULL, s, "0,x,y", op[1], op[2]);
252b5132 13357 expr1.X_add_number = 2;
c0ebe874 13358 macro_build (&expr1, "bnez", "x,p", op[2]);
67c0d1eb 13359 macro_build (NULL, "break", "6", 7);
7d10b47d 13360 end_noreorder ();
c0ebe874 13361 macro_build (NULL, s2, "x", op[0]);
252b5132
RH
13362 break;
13363
13364 case M_DMUL:
13365 dbl = 1;
13366 case M_MUL:
c0ebe874
RS
13367 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", op[1], op[2]);
13368 macro_build (NULL, "mflo", "x", op[0]);
8fc2e39e 13369 break;
252b5132
RH
13370
13371 case M_DSUBU_I:
13372 dbl = 1;
13373 goto do_subu;
13374 case M_SUBU_I:
13375 do_subu:
252b5132 13376 imm_expr.X_add_number = -imm_expr.X_add_number;
c0ebe874 13377 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", op[0], op[1]);
252b5132
RH
13378 break;
13379
13380 case M_SUBU_I_2:
252b5132 13381 imm_expr.X_add_number = -imm_expr.X_add_number;
c0ebe874 13382 macro_build (&imm_expr, "addiu", "x,k", op[0]);
252b5132
RH
13383 break;
13384
13385 case M_DSUBU_I_2:
252b5132 13386 imm_expr.X_add_number = -imm_expr.X_add_number;
c0ebe874 13387 macro_build (&imm_expr, "daddiu", "y,j", op[0]);
252b5132
RH
13388 break;
13389
13390 case M_BEQ:
13391 s = "cmp";
13392 s2 = "bteqz";
13393 goto do_branch;
13394 case M_BNE:
13395 s = "cmp";
13396 s2 = "btnez";
13397 goto do_branch;
13398 case M_BLT:
13399 s = "slt";
13400 s2 = "btnez";
13401 goto do_branch;
13402 case M_BLTU:
13403 s = "sltu";
13404 s2 = "btnez";
13405 goto do_branch;
13406 case M_BLE:
13407 s = "slt";
13408 s2 = "bteqz";
13409 goto do_reverse_branch;
13410 case M_BLEU:
13411 s = "sltu";
13412 s2 = "bteqz";
13413 goto do_reverse_branch;
13414 case M_BGE:
13415 s = "slt";
13416 s2 = "bteqz";
13417 goto do_branch;
13418 case M_BGEU:
13419 s = "sltu";
13420 s2 = "bteqz";
13421 goto do_branch;
13422 case M_BGT:
13423 s = "slt";
13424 s2 = "btnez";
13425 goto do_reverse_branch;
13426 case M_BGTU:
13427 s = "sltu";
13428 s2 = "btnez";
13429
13430 do_reverse_branch:
c0ebe874
RS
13431 tmp = op[1];
13432 op[1] = op[0];
13433 op[0] = tmp;
252b5132
RH
13434
13435 do_branch:
c0ebe874 13436 macro_build (NULL, s, "x,y", op[0], op[1]);
67c0d1eb 13437 macro_build (&offset_expr, s2, "p");
252b5132
RH
13438 break;
13439
13440 case M_BEQ_I:
13441 s = "cmpi";
13442 s2 = "bteqz";
13443 s3 = "x,U";
13444 goto do_branch_i;
13445 case M_BNE_I:
13446 s = "cmpi";
13447 s2 = "btnez";
13448 s3 = "x,U";
13449 goto do_branch_i;
13450 case M_BLT_I:
13451 s = "slti";
13452 s2 = "btnez";
13453 s3 = "x,8";
13454 goto do_branch_i;
13455 case M_BLTU_I:
13456 s = "sltiu";
13457 s2 = "btnez";
13458 s3 = "x,8";
13459 goto do_branch_i;
13460 case M_BLE_I:
13461 s = "slti";
13462 s2 = "btnez";
13463 s3 = "x,8";
13464 goto do_addone_branch_i;
13465 case M_BLEU_I:
13466 s = "sltiu";
13467 s2 = "btnez";
13468 s3 = "x,8";
13469 goto do_addone_branch_i;
13470 case M_BGE_I:
13471 s = "slti";
13472 s2 = "bteqz";
13473 s3 = "x,8";
13474 goto do_branch_i;
13475 case M_BGEU_I:
13476 s = "sltiu";
13477 s2 = "bteqz";
13478 s3 = "x,8";
13479 goto do_branch_i;
13480 case M_BGT_I:
13481 s = "slti";
13482 s2 = "bteqz";
13483 s3 = "x,8";
13484 goto do_addone_branch_i;
13485 case M_BGTU_I:
13486 s = "sltiu";
13487 s2 = "bteqz";
13488 s3 = "x,8";
13489
13490 do_addone_branch_i:
252b5132
RH
13491 ++imm_expr.X_add_number;
13492
13493 do_branch_i:
c0ebe874 13494 macro_build (&imm_expr, s, s3, op[0]);
67c0d1eb 13495 macro_build (&offset_expr, s2, "p");
252b5132
RH
13496 break;
13497
13498 case M_ABS:
13499 expr1.X_add_number = 0;
c0ebe874
RS
13500 macro_build (&expr1, "slti", "x,8", op[1]);
13501 if (op[0] != op[1])
13502 macro_build (NULL, "move", "y,X", op[0], mips16_to_32_reg_map[op[1]]);
252b5132 13503 expr1.X_add_number = 2;
67c0d1eb 13504 macro_build (&expr1, "bteqz", "p");
c0ebe874 13505 macro_build (NULL, "neg", "x,w", op[0], op[0]);
0acfaea6 13506 break;
252b5132
RH
13507 }
13508}
13509
14daeee3
RS
13510/* Look up instruction [START, START + LENGTH) in HASH. Record any extra
13511 opcode bits in *OPCODE_EXTRA. */
13512
13513static struct mips_opcode *
13514mips_lookup_insn (struct hash_control *hash, const char *start,
da8bca91 13515 ssize_t length, unsigned int *opcode_extra)
14daeee3
RS
13516{
13517 char *name, *dot, *p;
13518 unsigned int mask, suffix;
da8bca91 13519 ssize_t opend;
14daeee3
RS
13520 struct mips_opcode *insn;
13521
13522 /* Make a copy of the instruction so that we can fiddle with it. */
13523 name = alloca (length + 1);
13524 memcpy (name, start, length);
13525 name[length] = '\0';
13526
13527 /* Look up the instruction as-is. */
13528 insn = (struct mips_opcode *) hash_find (hash, name);
ee5734f0 13529 if (insn)
14daeee3
RS
13530 return insn;
13531
13532 dot = strchr (name, '.');
13533 if (dot && dot[1])
13534 {
13535 /* Try to interpret the text after the dot as a VU0 channel suffix. */
13536 p = mips_parse_vu0_channels (dot + 1, &mask);
13537 if (*p == 0 && mask != 0)
13538 {
13539 *dot = 0;
13540 insn = (struct mips_opcode *) hash_find (hash, name);
13541 *dot = '.';
13542 if (insn && (insn->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX) != 0)
13543 {
13544 *opcode_extra |= mask << mips_vu0_channel_mask.lsb;
13545 return insn;
13546 }
13547 }
13548 }
13549
13550 if (mips_opts.micromips)
13551 {
13552 /* See if there's an instruction size override suffix,
13553 either `16' or `32', at the end of the mnemonic proper,
13554 that defines the operation, i.e. before the first `.'
13555 character if any. Strip it and retry. */
13556 opend = dot != NULL ? dot - name : length;
13557 if (opend >= 3 && name[opend - 2] == '1' && name[opend - 1] == '6')
13558 suffix = 2;
13559 else if (name[opend - 2] == '3' && name[opend - 1] == '2')
13560 suffix = 4;
13561 else
13562 suffix = 0;
13563 if (suffix)
13564 {
13565 memcpy (name + opend - 2, name + opend, length - opend + 1);
13566 insn = (struct mips_opcode *) hash_find (hash, name);
ee5734f0 13567 if (insn)
14daeee3
RS
13568 {
13569 forced_insn_length = suffix;
13570 return insn;
13571 }
13572 }
13573 }
13574
13575 return NULL;
13576}
13577
77bd4346 13578/* Assemble an instruction into its binary format. If the instruction
e423441d
RS
13579 is a macro, set imm_expr and offset_expr to the values associated
13580 with "I" and "A" operands respectively. Otherwise store the value
13581 of the relocatable field (if any) in offset_expr. In both cases
13582 set offset_reloc to the relocation operators applied to offset_expr. */
252b5132
RH
13583
13584static void
60f20e8b 13585mips_ip (char *str, struct mips_cl_insn *insn)
252b5132 13586{
60f20e8b 13587 const struct mips_opcode *first, *past;
df58fc94 13588 struct hash_control *hash;
a92713e6 13589 char format;
14daeee3 13590 size_t end;
a92713e6 13591 struct mips_operand_token *tokens;
14daeee3 13592 unsigned int opcode_extra;
252b5132 13593
df58fc94
RS
13594 if (mips_opts.micromips)
13595 {
13596 hash = micromips_op_hash;
13597 past = &micromips_opcodes[bfd_micromips_num_opcodes];
13598 }
13599 else
13600 {
13601 hash = op_hash;
13602 past = &mips_opcodes[NUMOPCODES];
13603 }
13604 forced_insn_length = 0;
14daeee3 13605 opcode_extra = 0;
252b5132 13606
df58fc94 13607 /* We first try to match an instruction up to a space or to the end. */
a40bc9dd
RS
13608 for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
13609 continue;
bdaaa2e1 13610
60f20e8b
RS
13611 first = mips_lookup_insn (hash, str, end, &opcode_extra);
13612 if (first == NULL)
252b5132 13613 {
1661c76c 13614 set_insn_error (0, _("unrecognized opcode"));
a40bc9dd 13615 return;
252b5132
RH
13616 }
13617
60f20e8b 13618 if (strcmp (first->name, "li.s") == 0)
a92713e6 13619 format = 'f';
60f20e8b 13620 else if (strcmp (first->name, "li.d") == 0)
a92713e6
RS
13621 format = 'd';
13622 else
13623 format = 0;
13624 tokens = mips_parse_arguments (str + end, format);
13625 if (!tokens)
13626 return;
13627
60f20e8b
RS
13628 if (!match_insns (insn, first, past, tokens, opcode_extra, FALSE)
13629 && !match_insns (insn, first, past, tokens, opcode_extra, TRUE))
1661c76c 13630 set_insn_error (0, _("invalid operands"));
df58fc94 13631
e3de51ce 13632 obstack_free (&mips_operand_tokens, tokens);
252b5132
RH
13633}
13634
77bd4346
RS
13635/* As for mips_ip, but used when assembling MIPS16 code.
13636 Also set forced_insn_length to the resulting instruction size in
13637 bytes if the user explicitly requested a small or extended instruction. */
252b5132
RH
13638
13639static void
60f20e8b 13640mips16_ip (char *str, struct mips_cl_insn *insn)
252b5132 13641{
1a00e612 13642 char *end, *s, c;
60f20e8b 13643 struct mips_opcode *first;
a92713e6 13644 struct mips_operand_token *tokens;
252b5132 13645
df58fc94 13646 forced_insn_length = 0;
252b5132 13647
3882b010 13648 for (s = str; ISLOWER (*s); ++s)
252b5132 13649 ;
1a00e612
RS
13650 end = s;
13651 c = *end;
13652 switch (c)
252b5132
RH
13653 {
13654 case '\0':
13655 break;
13656
13657 case ' ':
1a00e612 13658 s++;
252b5132
RH
13659 break;
13660
13661 case '.':
13662 if (s[1] == 't' && s[2] == ' ')
13663 {
df58fc94 13664 forced_insn_length = 2;
252b5132
RH
13665 s += 3;
13666 break;
13667 }
13668 else if (s[1] == 'e' && s[2] == ' ')
13669 {
df58fc94 13670 forced_insn_length = 4;
252b5132
RH
13671 s += 3;
13672 break;
13673 }
13674 /* Fall through. */
13675 default:
1661c76c 13676 set_insn_error (0, _("unrecognized opcode"));
252b5132
RH
13677 return;
13678 }
13679
df58fc94
RS
13680 if (mips_opts.noautoextend && !forced_insn_length)
13681 forced_insn_length = 2;
252b5132 13682
1a00e612 13683 *end = 0;
60f20e8b 13684 first = (struct mips_opcode *) hash_find (mips16_op_hash, str);
1a00e612
RS
13685 *end = c;
13686
60f20e8b 13687 if (!first)
252b5132 13688 {
1661c76c 13689 set_insn_error (0, _("unrecognized opcode"));
252b5132
RH
13690 return;
13691 }
13692
a92713e6
RS
13693 tokens = mips_parse_arguments (s, 0);
13694 if (!tokens)
13695 return;
13696
60f20e8b 13697 if (!match_mips16_insns (insn, first, tokens))
1661c76c 13698 set_insn_error (0, _("invalid operands"));
252b5132 13699
e3de51ce 13700 obstack_free (&mips_operand_tokens, tokens);
252b5132
RH
13701}
13702
b886a2ab
RS
13703/* Marshal immediate value VAL for an extended MIPS16 instruction.
13704 NBITS is the number of significant bits in VAL. */
13705
13706static unsigned long
13707mips16_immed_extend (offsetT val, unsigned int nbits)
13708{
13709 int extval;
13710 if (nbits == 16)
13711 {
13712 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
13713 val &= 0x1f;
13714 }
13715 else if (nbits == 15)
13716 {
13717 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
13718 val &= 0xf;
13719 }
13720 else
13721 {
13722 extval = ((val & 0x1f) << 6) | (val & 0x20);
13723 val = 0;
13724 }
13725 return (extval << 16) | val;
13726}
13727
3ccad066
RS
13728/* Like decode_mips16_operand, but require the operand to be defined and
13729 require it to be an integer. */
13730
13731static const struct mips_int_operand *
13732mips16_immed_operand (int type, bfd_boolean extended_p)
13733{
13734 const struct mips_operand *operand;
13735
13736 operand = decode_mips16_operand (type, extended_p);
13737 if (!operand || (operand->type != OP_INT && operand->type != OP_PCREL))
13738 abort ();
13739 return (const struct mips_int_operand *) operand;
13740}
13741
13742/* Return true if SVAL fits OPERAND. RELOC is as for mips16_immed. */
13743
13744static bfd_boolean
13745mips16_immed_in_range_p (const struct mips_int_operand *operand,
13746 bfd_reloc_code_real_type reloc, offsetT sval)
13747{
13748 int min_val, max_val;
13749
13750 min_val = mips_int_operand_min (operand);
13751 max_val = mips_int_operand_max (operand);
13752 if (reloc != BFD_RELOC_UNUSED)
13753 {
13754 if (min_val < 0)
13755 sval = SEXT_16BIT (sval);
13756 else
13757 sval &= 0xffff;
13758 }
13759
13760 return (sval >= min_val
13761 && sval <= max_val
13762 && (sval & ((1 << operand->shift) - 1)) == 0);
13763}
13764
5c04167a
RS
13765/* Install immediate value VAL into MIPS16 instruction *INSN,
13766 extending it if necessary. The instruction in *INSN may
13767 already be extended.
13768
43c0598f
RS
13769 RELOC is the relocation that produced VAL, or BFD_RELOC_UNUSED
13770 if none. In the former case, VAL is a 16-bit number with no
13771 defined signedness.
13772
13773 TYPE is the type of the immediate field. USER_INSN_LENGTH
13774 is the length that the user requested, or 0 if none. */
252b5132
RH
13775
13776static void
43c0598f
RS
13777mips16_immed (char *file, unsigned int line, int type,
13778 bfd_reloc_code_real_type reloc, offsetT val,
5c04167a 13779 unsigned int user_insn_length, unsigned long *insn)
252b5132 13780{
3ccad066
RS
13781 const struct mips_int_operand *operand;
13782 unsigned int uval, length;
252b5132 13783
3ccad066
RS
13784 operand = mips16_immed_operand (type, FALSE);
13785 if (!mips16_immed_in_range_p (operand, reloc, val))
5c04167a
RS
13786 {
13787 /* We need an extended instruction. */
13788 if (user_insn_length == 2)
13789 as_bad_where (file, line, _("invalid unextended operand value"));
13790 else
13791 *insn |= MIPS16_EXTEND;
13792 }
13793 else if (user_insn_length == 4)
13794 {
13795 /* The operand doesn't force an unextended instruction to be extended.
13796 Warn if the user wanted an extended instruction anyway. */
13797 *insn |= MIPS16_EXTEND;
13798 as_warn_where (file, line,
13799 _("extended operand requested but not required"));
13800 }
252b5132 13801
3ccad066
RS
13802 length = mips16_opcode_length (*insn);
13803 if (length == 4)
252b5132 13804 {
3ccad066
RS
13805 operand = mips16_immed_operand (type, TRUE);
13806 if (!mips16_immed_in_range_p (operand, reloc, val))
13807 as_bad_where (file, line,
13808 _("operand value out of range for instruction"));
252b5132 13809 }
3ccad066
RS
13810 uval = ((unsigned int) val >> operand->shift) - operand->bias;
13811 if (length == 2)
13812 *insn = mips_insert_operand (&operand->root, *insn, uval);
252b5132 13813 else
3ccad066 13814 *insn |= mips16_immed_extend (uval, operand->root.size);
252b5132
RH
13815}
13816\f
d6f16593 13817struct percent_op_match
ad8d3bb3 13818{
5e0116d5
RS
13819 const char *str;
13820 bfd_reloc_code_real_type reloc;
d6f16593
MR
13821};
13822
13823static const struct percent_op_match mips_percent_op[] =
ad8d3bb3 13824{
5e0116d5 13825 {"%lo", BFD_RELOC_LO16},
5e0116d5
RS
13826 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
13827 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
13828 {"%call16", BFD_RELOC_MIPS_CALL16},
13829 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
13830 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
13831 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
13832 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
13833 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
13834 {"%got", BFD_RELOC_MIPS_GOT16},
13835 {"%gp_rel", BFD_RELOC_GPREL16},
13836 {"%half", BFD_RELOC_16},
13837 {"%highest", BFD_RELOC_MIPS_HIGHEST},
13838 {"%higher", BFD_RELOC_MIPS_HIGHER},
13839 {"%neg", BFD_RELOC_MIPS_SUB},
3f98094e
DJ
13840 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
13841 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
13842 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
13843 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
13844 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
13845 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
13846 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
7361da2c
AB
13847 {"%hi", BFD_RELOC_HI16_S},
13848 {"%pcrel_hi", BFD_RELOC_HI16_S_PCREL},
13849 {"%pcrel_lo", BFD_RELOC_LO16_PCREL}
ad8d3bb3
TS
13850};
13851
d6f16593
MR
13852static const struct percent_op_match mips16_percent_op[] =
13853{
13854 {"%lo", BFD_RELOC_MIPS16_LO16},
13855 {"%gprel", BFD_RELOC_MIPS16_GPREL},
738e5348
RS
13856 {"%got", BFD_RELOC_MIPS16_GOT16},
13857 {"%call16", BFD_RELOC_MIPS16_CALL16},
d0f13682
CLT
13858 {"%hi", BFD_RELOC_MIPS16_HI16_S},
13859 {"%tlsgd", BFD_RELOC_MIPS16_TLS_GD},
13860 {"%tlsldm", BFD_RELOC_MIPS16_TLS_LDM},
13861 {"%dtprel_hi", BFD_RELOC_MIPS16_TLS_DTPREL_HI16},
13862 {"%dtprel_lo", BFD_RELOC_MIPS16_TLS_DTPREL_LO16},
13863 {"%tprel_hi", BFD_RELOC_MIPS16_TLS_TPREL_HI16},
13864 {"%tprel_lo", BFD_RELOC_MIPS16_TLS_TPREL_LO16},
13865 {"%gottprel", BFD_RELOC_MIPS16_TLS_GOTTPREL}
d6f16593
MR
13866};
13867
252b5132 13868
5e0116d5
RS
13869/* Return true if *STR points to a relocation operator. When returning true,
13870 move *STR over the operator and store its relocation code in *RELOC.
13871 Leave both *STR and *RELOC alone when returning false. */
13872
13873static bfd_boolean
17a2f251 13874parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
252b5132 13875{
d6f16593
MR
13876 const struct percent_op_match *percent_op;
13877 size_t limit, i;
13878
13879 if (mips_opts.mips16)
13880 {
13881 percent_op = mips16_percent_op;
13882 limit = ARRAY_SIZE (mips16_percent_op);
13883 }
13884 else
13885 {
13886 percent_op = mips_percent_op;
13887 limit = ARRAY_SIZE (mips_percent_op);
13888 }
76b3015f 13889
d6f16593 13890 for (i = 0; i < limit; i++)
5e0116d5 13891 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
394f9b3a 13892 {
3f98094e
DJ
13893 int len = strlen (percent_op[i].str);
13894
13895 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
13896 continue;
13897
5e0116d5
RS
13898 *str += strlen (percent_op[i].str);
13899 *reloc = percent_op[i].reloc;
394f9b3a 13900
5e0116d5
RS
13901 /* Check whether the output BFD supports this relocation.
13902 If not, issue an error and fall back on something safe. */
13903 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
394f9b3a 13904 {
20203fb9 13905 as_bad (_("relocation %s isn't supported by the current ABI"),
5e0116d5 13906 percent_op[i].str);
01a3f561 13907 *reloc = BFD_RELOC_UNUSED;
394f9b3a 13908 }
5e0116d5 13909 return TRUE;
394f9b3a 13910 }
5e0116d5 13911 return FALSE;
394f9b3a 13912}
ad8d3bb3 13913
ad8d3bb3 13914
5e0116d5
RS
13915/* Parse string STR as a 16-bit relocatable operand. Store the
13916 expression in *EP and the relocations in the array starting
13917 at RELOC. Return the number of relocation operators used.
ad8d3bb3 13918
01a3f561 13919 On exit, EXPR_END points to the first character after the expression. */
ad8d3bb3 13920
5e0116d5 13921static size_t
17a2f251
TS
13922my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
13923 char *str)
ad8d3bb3 13924{
5e0116d5
RS
13925 bfd_reloc_code_real_type reversed_reloc[3];
13926 size_t reloc_index, i;
09b8f35a
RS
13927 int crux_depth, str_depth;
13928 char *crux;
5e0116d5
RS
13929
13930 /* Search for the start of the main expression, recoding relocations
09b8f35a
RS
13931 in REVERSED_RELOC. End the loop with CRUX pointing to the start
13932 of the main expression and with CRUX_DEPTH containing the number
13933 of open brackets at that point. */
13934 reloc_index = -1;
13935 str_depth = 0;
13936 do
fb1b3232 13937 {
09b8f35a
RS
13938 reloc_index++;
13939 crux = str;
13940 crux_depth = str_depth;
13941
13942 /* Skip over whitespace and brackets, keeping count of the number
13943 of brackets. */
13944 while (*str == ' ' || *str == '\t' || *str == '(')
13945 if (*str++ == '(')
13946 str_depth++;
5e0116d5 13947 }
09b8f35a
RS
13948 while (*str == '%'
13949 && reloc_index < (HAVE_NEWABI ? 3 : 1)
13950 && parse_relocation (&str, &reversed_reloc[reloc_index]));
ad8d3bb3 13951
09b8f35a 13952 my_getExpression (ep, crux);
5e0116d5 13953 str = expr_end;
394f9b3a 13954
5e0116d5 13955 /* Match every open bracket. */
09b8f35a 13956 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
5e0116d5 13957 if (*str++ == ')')
09b8f35a 13958 crux_depth--;
394f9b3a 13959
09b8f35a 13960 if (crux_depth > 0)
20203fb9 13961 as_bad (_("unclosed '('"));
394f9b3a 13962
5e0116d5 13963 expr_end = str;
252b5132 13964
01a3f561 13965 if (reloc_index != 0)
64bdfcaf
RS
13966 {
13967 prev_reloc_op_frag = frag_now;
13968 for (i = 0; i < reloc_index; i++)
13969 reloc[i] = reversed_reloc[reloc_index - 1 - i];
13970 }
fb1b3232 13971
5e0116d5 13972 return reloc_index;
252b5132
RH
13973}
13974
13975static void
17a2f251 13976my_getExpression (expressionS *ep, char *str)
252b5132
RH
13977{
13978 char *save_in;
13979
13980 save_in = input_line_pointer;
13981 input_line_pointer = str;
13982 expression (ep);
13983 expr_end = input_line_pointer;
13984 input_line_pointer = save_in;
252b5132
RH
13985}
13986
252b5132 13987char *
17a2f251 13988md_atof (int type, char *litP, int *sizeP)
252b5132 13989{
499ac353 13990 return ieee_md_atof (type, litP, sizeP, target_big_endian);
252b5132
RH
13991}
13992
13993void
17a2f251 13994md_number_to_chars (char *buf, valueT val, int n)
252b5132
RH
13995{
13996 if (target_big_endian)
13997 number_to_chars_bigendian (buf, val, n);
13998 else
13999 number_to_chars_littleendian (buf, val, n);
14000}
14001\f
e013f690
TS
14002static int support_64bit_objects(void)
14003{
14004 const char **list, **l;
aa3d8fdf 14005 int yes;
e013f690
TS
14006
14007 list = bfd_target_list ();
14008 for (l = list; *l != NULL; l++)
aeffff67
RS
14009 if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
14010 || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
e013f690 14011 break;
aa3d8fdf 14012 yes = (*l != NULL);
e013f690 14013 free (list);
aa3d8fdf 14014 return yes;
e013f690
TS
14015}
14016
316f5878
RS
14017/* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
14018 NEW_VALUE. Warn if another value was already specified. Note:
14019 we have to defer parsing the -march and -mtune arguments in order
14020 to handle 'from-abi' correctly, since the ABI might be specified
14021 in a later argument. */
14022
14023static void
17a2f251 14024mips_set_option_string (const char **string_ptr, const char *new_value)
316f5878
RS
14025{
14026 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
1661c76c 14027 as_warn (_("a different %s was already specified, is now %s"),
316f5878
RS
14028 string_ptr == &mips_arch_string ? "-march" : "-mtune",
14029 new_value);
14030
14031 *string_ptr = new_value;
14032}
14033
252b5132 14034int
17a2f251 14035md_parse_option (int c, char *arg)
252b5132 14036{
c6278170
RS
14037 unsigned int i;
14038
14039 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
14040 if (c == mips_ases[i].option_on || c == mips_ases[i].option_off)
14041 {
919731af 14042 file_ase_explicit |= mips_set_ase (&mips_ases[i], &file_mips_opts,
c6278170
RS
14043 c == mips_ases[i].option_on);
14044 return 1;
14045 }
14046
252b5132
RH
14047 switch (c)
14048 {
119d663a
NC
14049 case OPTION_CONSTRUCT_FLOATS:
14050 mips_disable_float_construction = 0;
14051 break;
bdaaa2e1 14052
119d663a
NC
14053 case OPTION_NO_CONSTRUCT_FLOATS:
14054 mips_disable_float_construction = 1;
14055 break;
bdaaa2e1 14056
252b5132
RH
14057 case OPTION_TRAP:
14058 mips_trap = 1;
14059 break;
14060
14061 case OPTION_BREAK:
14062 mips_trap = 0;
14063 break;
14064
14065 case OPTION_EB:
14066 target_big_endian = 1;
14067 break;
14068
14069 case OPTION_EL:
14070 target_big_endian = 0;
14071 break;
14072
14073 case 'O':
4ffff32f
TS
14074 if (arg == NULL)
14075 mips_optimize = 1;
14076 else if (arg[0] == '0')
14077 mips_optimize = 0;
14078 else if (arg[0] == '1')
252b5132
RH
14079 mips_optimize = 1;
14080 else
14081 mips_optimize = 2;
14082 break;
14083
14084 case 'g':
14085 if (arg == NULL)
14086 mips_debug = 2;
14087 else
14088 mips_debug = atoi (arg);
252b5132
RH
14089 break;
14090
14091 case OPTION_MIPS1:
0b35dfee 14092 file_mips_opts.isa = ISA_MIPS1;
252b5132
RH
14093 break;
14094
14095 case OPTION_MIPS2:
0b35dfee 14096 file_mips_opts.isa = ISA_MIPS2;
252b5132
RH
14097 break;
14098
14099 case OPTION_MIPS3:
0b35dfee 14100 file_mips_opts.isa = ISA_MIPS3;
252b5132
RH
14101 break;
14102
14103 case OPTION_MIPS4:
0b35dfee 14104 file_mips_opts.isa = ISA_MIPS4;
e7af610e
NC
14105 break;
14106
84ea6cf2 14107 case OPTION_MIPS5:
0b35dfee 14108 file_mips_opts.isa = ISA_MIPS5;
84ea6cf2
NC
14109 break;
14110
e7af610e 14111 case OPTION_MIPS32:
0b35dfee 14112 file_mips_opts.isa = ISA_MIPS32;
252b5132
RH
14113 break;
14114
af7ee8bf 14115 case OPTION_MIPS32R2:
0b35dfee 14116 file_mips_opts.isa = ISA_MIPS32R2;
af7ee8bf
CD
14117 break;
14118
ae52f483 14119 case OPTION_MIPS32R3:
0ae19f05 14120 file_mips_opts.isa = ISA_MIPS32R3;
ae52f483
AB
14121 break;
14122
14123 case OPTION_MIPS32R5:
0ae19f05 14124 file_mips_opts.isa = ISA_MIPS32R5;
ae52f483
AB
14125 break;
14126
7361da2c
AB
14127 case OPTION_MIPS32R6:
14128 file_mips_opts.isa = ISA_MIPS32R6;
14129 break;
14130
5f74bc13 14131 case OPTION_MIPS64R2:
0b35dfee 14132 file_mips_opts.isa = ISA_MIPS64R2;
5f74bc13
CD
14133 break;
14134
ae52f483 14135 case OPTION_MIPS64R3:
0ae19f05 14136 file_mips_opts.isa = ISA_MIPS64R3;
ae52f483
AB
14137 break;
14138
14139 case OPTION_MIPS64R5:
0ae19f05 14140 file_mips_opts.isa = ISA_MIPS64R5;
ae52f483
AB
14141 break;
14142
7361da2c
AB
14143 case OPTION_MIPS64R6:
14144 file_mips_opts.isa = ISA_MIPS64R6;
14145 break;
14146
84ea6cf2 14147 case OPTION_MIPS64:
0b35dfee 14148 file_mips_opts.isa = ISA_MIPS64;
84ea6cf2
NC
14149 break;
14150
ec68c924 14151 case OPTION_MTUNE:
316f5878
RS
14152 mips_set_option_string (&mips_tune_string, arg);
14153 break;
ec68c924 14154
316f5878
RS
14155 case OPTION_MARCH:
14156 mips_set_option_string (&mips_arch_string, arg);
252b5132
RH
14157 break;
14158
14159 case OPTION_M4650:
316f5878
RS
14160 mips_set_option_string (&mips_arch_string, "4650");
14161 mips_set_option_string (&mips_tune_string, "4650");
252b5132
RH
14162 break;
14163
14164 case OPTION_NO_M4650:
14165 break;
14166
14167 case OPTION_M4010:
316f5878
RS
14168 mips_set_option_string (&mips_arch_string, "4010");
14169 mips_set_option_string (&mips_tune_string, "4010");
252b5132
RH
14170 break;
14171
14172 case OPTION_NO_M4010:
14173 break;
14174
14175 case OPTION_M4100:
316f5878
RS
14176 mips_set_option_string (&mips_arch_string, "4100");
14177 mips_set_option_string (&mips_tune_string, "4100");
252b5132
RH
14178 break;
14179
14180 case OPTION_NO_M4100:
14181 break;
14182
252b5132 14183 case OPTION_M3900:
316f5878
RS
14184 mips_set_option_string (&mips_arch_string, "3900");
14185 mips_set_option_string (&mips_tune_string, "3900");
252b5132 14186 break;
bdaaa2e1 14187
252b5132
RH
14188 case OPTION_NO_M3900:
14189 break;
14190
df58fc94 14191 case OPTION_MICROMIPS:
919731af 14192 if (file_mips_opts.mips16 == 1)
df58fc94
RS
14193 {
14194 as_bad (_("-mmicromips cannot be used with -mips16"));
14195 return 0;
14196 }
919731af 14197 file_mips_opts.micromips = 1;
df58fc94
RS
14198 mips_no_prev_insn ();
14199 break;
14200
14201 case OPTION_NO_MICROMIPS:
919731af 14202 file_mips_opts.micromips = 0;
df58fc94
RS
14203 mips_no_prev_insn ();
14204 break;
14205
252b5132 14206 case OPTION_MIPS16:
919731af 14207 if (file_mips_opts.micromips == 1)
df58fc94
RS
14208 {
14209 as_bad (_("-mips16 cannot be used with -micromips"));
14210 return 0;
14211 }
919731af 14212 file_mips_opts.mips16 = 1;
7d10b47d 14213 mips_no_prev_insn ();
252b5132
RH
14214 break;
14215
14216 case OPTION_NO_MIPS16:
919731af 14217 file_mips_opts.mips16 = 0;
7d10b47d 14218 mips_no_prev_insn ();
252b5132
RH
14219 break;
14220
6a32d874
CM
14221 case OPTION_FIX_24K:
14222 mips_fix_24k = 1;
14223 break;
14224
14225 case OPTION_NO_FIX_24K:
14226 mips_fix_24k = 0;
14227 break;
14228
a8d14a88
CM
14229 case OPTION_FIX_RM7000:
14230 mips_fix_rm7000 = 1;
14231 break;
14232
14233 case OPTION_NO_FIX_RM7000:
14234 mips_fix_rm7000 = 0;
14235 break;
14236
c67a084a
NC
14237 case OPTION_FIX_LOONGSON2F_JUMP:
14238 mips_fix_loongson2f_jump = TRUE;
14239 break;
14240
14241 case OPTION_NO_FIX_LOONGSON2F_JUMP:
14242 mips_fix_loongson2f_jump = FALSE;
14243 break;
14244
14245 case OPTION_FIX_LOONGSON2F_NOP:
14246 mips_fix_loongson2f_nop = TRUE;
14247 break;
14248
14249 case OPTION_NO_FIX_LOONGSON2F_NOP:
14250 mips_fix_loongson2f_nop = FALSE;
14251 break;
14252
d766e8ec
RS
14253 case OPTION_FIX_VR4120:
14254 mips_fix_vr4120 = 1;
60b63b72
RS
14255 break;
14256
d766e8ec
RS
14257 case OPTION_NO_FIX_VR4120:
14258 mips_fix_vr4120 = 0;
60b63b72
RS
14259 break;
14260
7d8e00cf
RS
14261 case OPTION_FIX_VR4130:
14262 mips_fix_vr4130 = 1;
14263 break;
14264
14265 case OPTION_NO_FIX_VR4130:
14266 mips_fix_vr4130 = 0;
14267 break;
14268
d954098f
DD
14269 case OPTION_FIX_CN63XXP1:
14270 mips_fix_cn63xxp1 = TRUE;
14271 break;
14272
14273 case OPTION_NO_FIX_CN63XXP1:
14274 mips_fix_cn63xxp1 = FALSE;
14275 break;
14276
4a6a3df4
AO
14277 case OPTION_RELAX_BRANCH:
14278 mips_relax_branch = 1;
14279 break;
14280
14281 case OPTION_NO_RELAX_BRANCH:
14282 mips_relax_branch = 0;
14283 break;
14284
833794fc 14285 case OPTION_INSN32:
919731af 14286 file_mips_opts.insn32 = TRUE;
833794fc
MR
14287 break;
14288
14289 case OPTION_NO_INSN32:
919731af 14290 file_mips_opts.insn32 = FALSE;
833794fc
MR
14291 break;
14292
aa6975fb
ILT
14293 case OPTION_MSHARED:
14294 mips_in_shared = TRUE;
14295 break;
14296
14297 case OPTION_MNO_SHARED:
14298 mips_in_shared = FALSE;
14299 break;
14300
aed1a261 14301 case OPTION_MSYM32:
919731af 14302 file_mips_opts.sym32 = TRUE;
aed1a261
RS
14303 break;
14304
14305 case OPTION_MNO_SYM32:
919731af 14306 file_mips_opts.sym32 = FALSE;
aed1a261
RS
14307 break;
14308
252b5132
RH
14309 /* When generating ELF code, we permit -KPIC and -call_shared to
14310 select SVR4_PIC, and -non_shared to select no PIC. This is
14311 intended to be compatible with Irix 5. */
14312 case OPTION_CALL_SHARED:
252b5132 14313 mips_pic = SVR4_PIC;
143d77c5 14314 mips_abicalls = TRUE;
252b5132
RH
14315 break;
14316
861fb55a 14317 case OPTION_CALL_NONPIC:
861fb55a
DJ
14318 mips_pic = NO_PIC;
14319 mips_abicalls = TRUE;
14320 break;
14321
252b5132 14322 case OPTION_NON_SHARED:
252b5132 14323 mips_pic = NO_PIC;
143d77c5 14324 mips_abicalls = FALSE;
252b5132
RH
14325 break;
14326
44075ae2
TS
14327 /* The -xgot option tells the assembler to use 32 bit offsets
14328 when accessing the got in SVR4_PIC mode. It is for Irix
252b5132
RH
14329 compatibility. */
14330 case OPTION_XGOT:
14331 mips_big_got = 1;
14332 break;
14333
14334 case 'G':
6caf9ef4
TS
14335 g_switch_value = atoi (arg);
14336 g_switch_seen = 1;
252b5132
RH
14337 break;
14338
34ba82a8
TS
14339 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
14340 and -mabi=64. */
252b5132 14341 case OPTION_32:
f3ded42a 14342 mips_abi = O32_ABI;
252b5132
RH
14343 break;
14344
e013f690 14345 case OPTION_N32:
316f5878 14346 mips_abi = N32_ABI;
e013f690 14347 break;
252b5132 14348
e013f690 14349 case OPTION_64:
316f5878 14350 mips_abi = N64_ABI;
f43abd2b 14351 if (!support_64bit_objects())
1661c76c 14352 as_fatal (_("no compiled in support for 64 bit object file format"));
252b5132
RH
14353 break;
14354
c97ef257 14355 case OPTION_GP32:
bad1aba3 14356 file_mips_opts.gp = 32;
c97ef257
AH
14357 break;
14358
14359 case OPTION_GP64:
bad1aba3 14360 file_mips_opts.gp = 64;
c97ef257 14361 break;
252b5132 14362
ca4e0257 14363 case OPTION_FP32:
0b35dfee 14364 file_mips_opts.fp = 32;
316f5878
RS
14365 break;
14366
351cdf24
MF
14367 case OPTION_FPXX:
14368 file_mips_opts.fp = 0;
14369 break;
14370
316f5878 14371 case OPTION_FP64:
0b35dfee 14372 file_mips_opts.fp = 64;
ca4e0257
RS
14373 break;
14374
351cdf24
MF
14375 case OPTION_ODD_SPREG:
14376 file_mips_opts.oddspreg = 1;
14377 break;
14378
14379 case OPTION_NO_ODD_SPREG:
14380 file_mips_opts.oddspreg = 0;
14381 break;
14382
037b32b9 14383 case OPTION_SINGLE_FLOAT:
0b35dfee 14384 file_mips_opts.single_float = 1;
037b32b9
AN
14385 break;
14386
14387 case OPTION_DOUBLE_FLOAT:
0b35dfee 14388 file_mips_opts.single_float = 0;
037b32b9
AN
14389 break;
14390
14391 case OPTION_SOFT_FLOAT:
0b35dfee 14392 file_mips_opts.soft_float = 1;
037b32b9
AN
14393 break;
14394
14395 case OPTION_HARD_FLOAT:
0b35dfee 14396 file_mips_opts.soft_float = 0;
037b32b9
AN
14397 break;
14398
252b5132 14399 case OPTION_MABI:
e013f690 14400 if (strcmp (arg, "32") == 0)
316f5878 14401 mips_abi = O32_ABI;
e013f690 14402 else if (strcmp (arg, "o64") == 0)
316f5878 14403 mips_abi = O64_ABI;
e013f690 14404 else if (strcmp (arg, "n32") == 0)
316f5878 14405 mips_abi = N32_ABI;
e013f690
TS
14406 else if (strcmp (arg, "64") == 0)
14407 {
316f5878 14408 mips_abi = N64_ABI;
e013f690 14409 if (! support_64bit_objects())
1661c76c 14410 as_fatal (_("no compiled in support for 64 bit object file "
e013f690
TS
14411 "format"));
14412 }
14413 else if (strcmp (arg, "eabi") == 0)
316f5878 14414 mips_abi = EABI_ABI;
e013f690 14415 else
da0e507f
TS
14416 {
14417 as_fatal (_("invalid abi -mabi=%s"), arg);
14418 return 0;
14419 }
252b5132
RH
14420 break;
14421
6b76fefe 14422 case OPTION_M7000_HILO_FIX:
b34976b6 14423 mips_7000_hilo_fix = TRUE;
6b76fefe
CM
14424 break;
14425
9ee72ff1 14426 case OPTION_MNO_7000_HILO_FIX:
b34976b6 14427 mips_7000_hilo_fix = FALSE;
6b76fefe
CM
14428 break;
14429
ecb4347a 14430 case OPTION_MDEBUG:
b34976b6 14431 mips_flag_mdebug = TRUE;
ecb4347a
DJ
14432 break;
14433
14434 case OPTION_NO_MDEBUG:
b34976b6 14435 mips_flag_mdebug = FALSE;
ecb4347a 14436 break;
dcd410fe
RO
14437
14438 case OPTION_PDR:
14439 mips_flag_pdr = TRUE;
14440 break;
14441
14442 case OPTION_NO_PDR:
14443 mips_flag_pdr = FALSE;
14444 break;
0a44bf69
RS
14445
14446 case OPTION_MVXWORKS_PIC:
14447 mips_pic = VXWORKS_PIC;
14448 break;
ecb4347a 14449
ba92f887
MR
14450 case OPTION_NAN:
14451 if (strcmp (arg, "2008") == 0)
7361da2c 14452 mips_nan2008 = 1;
ba92f887 14453 else if (strcmp (arg, "legacy") == 0)
7361da2c 14454 mips_nan2008 = 0;
ba92f887
MR
14455 else
14456 {
1661c76c 14457 as_fatal (_("invalid NaN setting -mnan=%s"), arg);
ba92f887
MR
14458 return 0;
14459 }
14460 break;
14461
252b5132
RH
14462 default:
14463 return 0;
14464 }
14465
c67a084a
NC
14466 mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
14467
252b5132
RH
14468 return 1;
14469}
316f5878 14470\f
919731af 14471/* Set up globals to tune for the ISA or processor described by INFO. */
252b5132 14472
316f5878 14473static void
17a2f251 14474mips_set_tune (const struct mips_cpu_info *info)
316f5878
RS
14475{
14476 if (info != 0)
fef14a42 14477 mips_tune = info->cpu;
316f5878 14478}
80cc45a5 14479
34ba82a8 14480
252b5132 14481void
17a2f251 14482mips_after_parse_args (void)
e9670677 14483{
fef14a42
TS
14484 const struct mips_cpu_info *arch_info = 0;
14485 const struct mips_cpu_info *tune_info = 0;
14486
e9670677 14487 /* GP relative stuff not working for PE */
6caf9ef4 14488 if (strncmp (TARGET_OS, "pe", 2) == 0)
e9670677 14489 {
6caf9ef4 14490 if (g_switch_seen && g_switch_value != 0)
1661c76c 14491 as_bad (_("-G not supported in this configuration"));
e9670677
MR
14492 g_switch_value = 0;
14493 }
14494
cac012d6
AO
14495 if (mips_abi == NO_ABI)
14496 mips_abi = MIPS_DEFAULT_ABI;
14497
919731af 14498 /* The following code determines the architecture.
22923709
RS
14499 Similar code was added to GCC 3.3 (see override_options() in
14500 config/mips/mips.c). The GAS and GCC code should be kept in sync
14501 as much as possible. */
e9670677 14502
316f5878 14503 if (mips_arch_string != 0)
fef14a42 14504 arch_info = mips_parse_cpu ("-march", mips_arch_string);
e9670677 14505
0b35dfee 14506 if (file_mips_opts.isa != ISA_UNKNOWN)
e9670677 14507 {
0b35dfee 14508 /* Handle -mipsN. At this point, file_mips_opts.isa contains the
fef14a42 14509 ISA level specified by -mipsN, while arch_info->isa contains
316f5878 14510 the -march selection (if any). */
fef14a42 14511 if (arch_info != 0)
e9670677 14512 {
316f5878
RS
14513 /* -march takes precedence over -mipsN, since it is more descriptive.
14514 There's no harm in specifying both as long as the ISA levels
14515 are the same. */
0b35dfee 14516 if (file_mips_opts.isa != arch_info->isa)
1661c76c
RS
14517 as_bad (_("-%s conflicts with the other architecture options,"
14518 " which imply -%s"),
0b35dfee 14519 mips_cpu_info_from_isa (file_mips_opts.isa)->name,
fef14a42 14520 mips_cpu_info_from_isa (arch_info->isa)->name);
e9670677 14521 }
316f5878 14522 else
0b35dfee 14523 arch_info = mips_cpu_info_from_isa (file_mips_opts.isa);
e9670677
MR
14524 }
14525
fef14a42 14526 if (arch_info == 0)
95bfe26e
MF
14527 {
14528 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
14529 gas_assert (arch_info);
14530 }
e9670677 14531
fef14a42 14532 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
20203fb9 14533 as_bad (_("-march=%s is not compatible with the selected ABI"),
fef14a42
TS
14534 arch_info->name);
14535
919731af 14536 file_mips_opts.arch = arch_info->cpu;
14537 file_mips_opts.isa = arch_info->isa;
14538
14539 /* Set up initial mips_opts state. */
14540 mips_opts = file_mips_opts;
14541
14542 /* The register size inference code is now placed in
14543 file_mips_check_options. */
fef14a42 14544
0b35dfee 14545 /* Optimize for file_mips_opts.arch, unless -mtune selects a different
14546 processor. */
fef14a42
TS
14547 if (mips_tune_string != 0)
14548 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
e9670677 14549
fef14a42
TS
14550 if (tune_info == 0)
14551 mips_set_tune (arch_info);
14552 else
14553 mips_set_tune (tune_info);
e9670677 14554
ecb4347a 14555 if (mips_flag_mdebug < 0)
e8044f35 14556 mips_flag_mdebug = 0;
e9670677
MR
14557}
14558\f
14559void
17a2f251 14560mips_init_after_args (void)
252b5132
RH
14561{
14562 /* initialize opcodes */
14563 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
beae10d5 14564 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
252b5132
RH
14565}
14566
14567long
17a2f251 14568md_pcrel_from (fixS *fixP)
252b5132 14569{
a7ebbfdf
TS
14570 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
14571 switch (fixP->fx_r_type)
14572 {
df58fc94
RS
14573 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
14574 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
14575 /* Return the address of the delay slot. */
14576 return addr + 2;
14577
14578 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
14579 case BFD_RELOC_MICROMIPS_JMP:
a7ebbfdf 14580 case BFD_RELOC_16_PCREL_S2:
7361da2c
AB
14581 case BFD_RELOC_MIPS_21_PCREL_S2:
14582 case BFD_RELOC_MIPS_26_PCREL_S2:
a7ebbfdf
TS
14583 case BFD_RELOC_MIPS_JMP:
14584 /* Return the address of the delay slot. */
14585 return addr + 4;
df58fc94 14586
a7ebbfdf
TS
14587 default:
14588 return addr;
14589 }
252b5132
RH
14590}
14591
252b5132
RH
14592/* This is called before the symbol table is processed. In order to
14593 work with gcc when using mips-tfile, we must keep all local labels.
14594 However, in other cases, we want to discard them. If we were
14595 called with -g, but we didn't see any debugging information, it may
14596 mean that gcc is smuggling debugging information through to
14597 mips-tfile, in which case we must generate all local labels. */
14598
14599void
17a2f251 14600mips_frob_file_before_adjust (void)
252b5132
RH
14601{
14602#ifndef NO_ECOFF_DEBUGGING
14603 if (ECOFF_DEBUGGING
14604 && mips_debug != 0
14605 && ! ecoff_debugging_seen)
14606 flag_keep_locals = 1;
14607#endif
14608}
14609
3b91255e 14610/* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
55cf6793 14611 the corresponding LO16 reloc. This is called before md_apply_fix and
3b91255e
RS
14612 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
14613 relocation operators.
14614
14615 For our purposes, a %lo() expression matches a %got() or %hi()
14616 expression if:
14617
14618 (a) it refers to the same symbol; and
14619 (b) the offset applied in the %lo() expression is no lower than
14620 the offset applied in the %got() or %hi().
14621
14622 (b) allows us to cope with code like:
14623
14624 lui $4,%hi(foo)
14625 lh $4,%lo(foo+2)($4)
14626
14627 ...which is legal on RELA targets, and has a well-defined behaviour
14628 if the user knows that adding 2 to "foo" will not induce a carry to
14629 the high 16 bits.
14630
14631 When several %lo()s match a particular %got() or %hi(), we use the
14632 following rules to distinguish them:
14633
14634 (1) %lo()s with smaller offsets are a better match than %lo()s with
14635 higher offsets.
14636
14637 (2) %lo()s with no matching %got() or %hi() are better than those
14638 that already have a matching %got() or %hi().
14639
14640 (3) later %lo()s are better than earlier %lo()s.
14641
14642 These rules are applied in order.
14643
14644 (1) means, among other things, that %lo()s with identical offsets are
14645 chosen if they exist.
14646
14647 (2) means that we won't associate several high-part relocations with
14648 the same low-part relocation unless there's no alternative. Having
14649 several high parts for the same low part is a GNU extension; this rule
14650 allows careful users to avoid it.
14651
14652 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
14653 with the last high-part relocation being at the front of the list.
14654 It therefore makes sense to choose the last matching low-part
14655 relocation, all other things being equal. It's also easier
14656 to code that way. */
252b5132
RH
14657
14658void
17a2f251 14659mips_frob_file (void)
252b5132
RH
14660{
14661 struct mips_hi_fixup *l;
35903be0 14662 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
252b5132
RH
14663
14664 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
14665 {
14666 segment_info_type *seginfo;
3b91255e
RS
14667 bfd_boolean matched_lo_p;
14668 fixS **hi_pos, **lo_pos, **pos;
252b5132 14669
9c2799c2 14670 gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
252b5132 14671
5919d012 14672 /* If a GOT16 relocation turns out to be against a global symbol,
b886a2ab
RS
14673 there isn't supposed to be a matching LO. Ignore %gots against
14674 constants; we'll report an error for those later. */
738e5348 14675 if (got16_reloc_p (l->fixp->fx_r_type)
b886a2ab
RS
14676 && !(l->fixp->fx_addsy
14677 && pic_need_relax (l->fixp->fx_addsy, l->seg)))
5919d012
RS
14678 continue;
14679
14680 /* Check quickly whether the next fixup happens to be a matching %lo. */
14681 if (fixup_has_matching_lo_p (l->fixp))
252b5132
RH
14682 continue;
14683
252b5132 14684 seginfo = seg_info (l->seg);
252b5132 14685
3b91255e
RS
14686 /* Set HI_POS to the position of this relocation in the chain.
14687 Set LO_POS to the position of the chosen low-part relocation.
14688 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
14689 relocation that matches an immediately-preceding high-part
14690 relocation. */
14691 hi_pos = NULL;
14692 lo_pos = NULL;
14693 matched_lo_p = FALSE;
738e5348 14694 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
35903be0 14695
3b91255e
RS
14696 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
14697 {
14698 if (*pos == l->fixp)
14699 hi_pos = pos;
14700
35903be0 14701 if ((*pos)->fx_r_type == looking_for_rtype
30cfc97a 14702 && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
3b91255e
RS
14703 && (*pos)->fx_offset >= l->fixp->fx_offset
14704 && (lo_pos == NULL
14705 || (*pos)->fx_offset < (*lo_pos)->fx_offset
14706 || (!matched_lo_p
14707 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
14708 lo_pos = pos;
14709
14710 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
14711 && fixup_has_matching_lo_p (*pos));
14712 }
14713
14714 /* If we found a match, remove the high-part relocation from its
14715 current position and insert it before the low-part relocation.
14716 Make the offsets match so that fixup_has_matching_lo_p()
14717 will return true.
14718
14719 We don't warn about unmatched high-part relocations since some
14720 versions of gcc have been known to emit dead "lui ...%hi(...)"
14721 instructions. */
14722 if (lo_pos != NULL)
14723 {
14724 l->fixp->fx_offset = (*lo_pos)->fx_offset;
14725 if (l->fixp->fx_next != *lo_pos)
252b5132 14726 {
3b91255e
RS
14727 *hi_pos = l->fixp->fx_next;
14728 l->fixp->fx_next = *lo_pos;
14729 *lo_pos = l->fixp;
252b5132 14730 }
252b5132
RH
14731 }
14732 }
14733}
14734
252b5132 14735int
17a2f251 14736mips_force_relocation (fixS *fixp)
252b5132 14737{
ae6063d4 14738 if (generic_force_reloc (fixp))
252b5132
RH
14739 return 1;
14740
df58fc94
RS
14741 /* We want to keep BFD_RELOC_MICROMIPS_*_PCREL_S1 relocation,
14742 so that the linker relaxation can update targets. */
14743 if (fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
14744 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
14745 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1)
14746 return 1;
14747
7361da2c
AB
14748 /* We want all PC-relative relocations to be kept for R6 relaxation. */
14749 if (ISA_IS_R6 (mips_opts.isa)
14750 && (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
14751 || fixp->fx_r_type == BFD_RELOC_MIPS_21_PCREL_S2
14752 || fixp->fx_r_type == BFD_RELOC_MIPS_26_PCREL_S2
14753 || fixp->fx_r_type == BFD_RELOC_MIPS_18_PCREL_S3
14754 || fixp->fx_r_type == BFD_RELOC_MIPS_19_PCREL_S2
14755 || fixp->fx_r_type == BFD_RELOC_HI16_S_PCREL
14756 || fixp->fx_r_type == BFD_RELOC_LO16_PCREL))
14757 return 1;
14758
3e722fb5 14759 return 0;
252b5132
RH
14760}
14761
b886a2ab
RS
14762/* Read the instruction associated with RELOC from BUF. */
14763
14764static unsigned int
14765read_reloc_insn (char *buf, bfd_reloc_code_real_type reloc)
14766{
14767 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
14768 return read_compressed_insn (buf, 4);
14769 else
14770 return read_insn (buf);
14771}
14772
14773/* Write instruction INSN to BUF, given that it has been relocated
14774 by RELOC. */
14775
14776static void
14777write_reloc_insn (char *buf, bfd_reloc_code_real_type reloc,
14778 unsigned long insn)
14779{
14780 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
14781 write_compressed_insn (buf, insn, 4);
14782 else
14783 write_insn (buf, insn);
14784}
14785
252b5132
RH
14786/* Apply a fixup to the object file. */
14787
94f592af 14788void
55cf6793 14789md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 14790{
4d68580a 14791 char *buf;
b886a2ab 14792 unsigned long insn;
a7ebbfdf 14793 reloc_howto_type *howto;
252b5132 14794
d56a8dda
RS
14795 if (fixP->fx_pcrel)
14796 switch (fixP->fx_r_type)
14797 {
14798 case BFD_RELOC_16_PCREL_S2:
14799 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
14800 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
14801 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
14802 case BFD_RELOC_32_PCREL:
7361da2c
AB
14803 case BFD_RELOC_MIPS_21_PCREL_S2:
14804 case BFD_RELOC_MIPS_26_PCREL_S2:
14805 case BFD_RELOC_MIPS_18_PCREL_S3:
14806 case BFD_RELOC_MIPS_19_PCREL_S2:
14807 case BFD_RELOC_HI16_S_PCREL:
14808 case BFD_RELOC_LO16_PCREL:
d56a8dda
RS
14809 break;
14810
14811 case BFD_RELOC_32:
14812 fixP->fx_r_type = BFD_RELOC_32_PCREL;
14813 break;
14814
14815 default:
14816 as_bad_where (fixP->fx_file, fixP->fx_line,
14817 _("PC-relative reference to a different section"));
14818 break;
14819 }
14820
14821 /* Handle BFD_RELOC_8, since it's easy. Punt on other bfd relocations
14822 that have no MIPS ELF equivalent. */
14823 if (fixP->fx_r_type != BFD_RELOC_8)
14824 {
14825 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
14826 if (!howto)
14827 return;
14828 }
65551fa4 14829
df58fc94
RS
14830 gas_assert (fixP->fx_size == 2
14831 || fixP->fx_size == 4
d56a8dda 14832 || fixP->fx_r_type == BFD_RELOC_8
90ecf173
MR
14833 || fixP->fx_r_type == BFD_RELOC_16
14834 || fixP->fx_r_type == BFD_RELOC_64
14835 || fixP->fx_r_type == BFD_RELOC_CTOR
14836 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
df58fc94 14837 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_SUB
90ecf173
MR
14838 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
14839 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
14840 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
252b5132 14841
4d68580a 14842 buf = fixP->fx_frag->fr_literal + fixP->fx_where;
252b5132 14843
b1dca8ee
RS
14844 /* Don't treat parts of a composite relocation as done. There are two
14845 reasons for this:
14846
14847 (1) The second and third parts will be against 0 (RSS_UNDEF) but
14848 should nevertheless be emitted if the first part is.
14849
14850 (2) In normal usage, composite relocations are never assembly-time
14851 constants. The easiest way of dealing with the pathological
14852 exceptions is to generate a relocation against STN_UNDEF and
14853 leave everything up to the linker. */
3994f87e 14854 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
252b5132
RH
14855 fixP->fx_done = 1;
14856
14857 switch (fixP->fx_r_type)
14858 {
3f98094e
DJ
14859 case BFD_RELOC_MIPS_TLS_GD:
14860 case BFD_RELOC_MIPS_TLS_LDM:
741d6ea8
JM
14861 case BFD_RELOC_MIPS_TLS_DTPREL32:
14862 case BFD_RELOC_MIPS_TLS_DTPREL64:
3f98094e
DJ
14863 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
14864 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
14865 case BFD_RELOC_MIPS_TLS_GOTTPREL:
d0f13682
CLT
14866 case BFD_RELOC_MIPS_TLS_TPREL32:
14867 case BFD_RELOC_MIPS_TLS_TPREL64:
3f98094e
DJ
14868 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
14869 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
df58fc94
RS
14870 case BFD_RELOC_MICROMIPS_TLS_GD:
14871 case BFD_RELOC_MICROMIPS_TLS_LDM:
14872 case BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16:
14873 case BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16:
14874 case BFD_RELOC_MICROMIPS_TLS_GOTTPREL:
14875 case BFD_RELOC_MICROMIPS_TLS_TPREL_HI16:
14876 case BFD_RELOC_MICROMIPS_TLS_TPREL_LO16:
d0f13682
CLT
14877 case BFD_RELOC_MIPS16_TLS_GD:
14878 case BFD_RELOC_MIPS16_TLS_LDM:
14879 case BFD_RELOC_MIPS16_TLS_DTPREL_HI16:
14880 case BFD_RELOC_MIPS16_TLS_DTPREL_LO16:
14881 case BFD_RELOC_MIPS16_TLS_GOTTPREL:
14882 case BFD_RELOC_MIPS16_TLS_TPREL_HI16:
14883 case BFD_RELOC_MIPS16_TLS_TPREL_LO16:
b886a2ab
RS
14884 if (!fixP->fx_addsy)
14885 {
14886 as_bad_where (fixP->fx_file, fixP->fx_line,
14887 _("TLS relocation against a constant"));
14888 break;
14889 }
3f98094e
DJ
14890 S_SET_THREAD_LOCAL (fixP->fx_addsy);
14891 /* fall through */
14892
252b5132 14893 case BFD_RELOC_MIPS_JMP:
e369bcce
TS
14894 case BFD_RELOC_MIPS_SHIFT5:
14895 case BFD_RELOC_MIPS_SHIFT6:
14896 case BFD_RELOC_MIPS_GOT_DISP:
14897 case BFD_RELOC_MIPS_GOT_PAGE:
14898 case BFD_RELOC_MIPS_GOT_OFST:
14899 case BFD_RELOC_MIPS_SUB:
14900 case BFD_RELOC_MIPS_INSERT_A:
14901 case BFD_RELOC_MIPS_INSERT_B:
14902 case BFD_RELOC_MIPS_DELETE:
14903 case BFD_RELOC_MIPS_HIGHEST:
14904 case BFD_RELOC_MIPS_HIGHER:
14905 case BFD_RELOC_MIPS_SCN_DISP:
14906 case BFD_RELOC_MIPS_REL16:
14907 case BFD_RELOC_MIPS_RELGOT:
14908 case BFD_RELOC_MIPS_JALR:
252b5132
RH
14909 case BFD_RELOC_HI16:
14910 case BFD_RELOC_HI16_S:
b886a2ab 14911 case BFD_RELOC_LO16:
cdf6fd85 14912 case BFD_RELOC_GPREL16:
252b5132
RH
14913 case BFD_RELOC_MIPS_LITERAL:
14914 case BFD_RELOC_MIPS_CALL16:
14915 case BFD_RELOC_MIPS_GOT16:
cdf6fd85 14916 case BFD_RELOC_GPREL32:
252b5132
RH
14917 case BFD_RELOC_MIPS_GOT_HI16:
14918 case BFD_RELOC_MIPS_GOT_LO16:
14919 case BFD_RELOC_MIPS_CALL_HI16:
14920 case BFD_RELOC_MIPS_CALL_LO16:
14921 case BFD_RELOC_MIPS16_GPREL:
738e5348
RS
14922 case BFD_RELOC_MIPS16_GOT16:
14923 case BFD_RELOC_MIPS16_CALL16:
d6f16593
MR
14924 case BFD_RELOC_MIPS16_HI16:
14925 case BFD_RELOC_MIPS16_HI16_S:
b886a2ab 14926 case BFD_RELOC_MIPS16_LO16:
252b5132 14927 case BFD_RELOC_MIPS16_JMP:
df58fc94
RS
14928 case BFD_RELOC_MICROMIPS_JMP:
14929 case BFD_RELOC_MICROMIPS_GOT_DISP:
14930 case BFD_RELOC_MICROMIPS_GOT_PAGE:
14931 case BFD_RELOC_MICROMIPS_GOT_OFST:
14932 case BFD_RELOC_MICROMIPS_SUB:
14933 case BFD_RELOC_MICROMIPS_HIGHEST:
14934 case BFD_RELOC_MICROMIPS_HIGHER:
14935 case BFD_RELOC_MICROMIPS_SCN_DISP:
14936 case BFD_RELOC_MICROMIPS_JALR:
14937 case BFD_RELOC_MICROMIPS_HI16:
14938 case BFD_RELOC_MICROMIPS_HI16_S:
b886a2ab 14939 case BFD_RELOC_MICROMIPS_LO16:
df58fc94
RS
14940 case BFD_RELOC_MICROMIPS_GPREL16:
14941 case BFD_RELOC_MICROMIPS_LITERAL:
14942 case BFD_RELOC_MICROMIPS_CALL16:
14943 case BFD_RELOC_MICROMIPS_GOT16:
14944 case BFD_RELOC_MICROMIPS_GOT_HI16:
14945 case BFD_RELOC_MICROMIPS_GOT_LO16:
14946 case BFD_RELOC_MICROMIPS_CALL_HI16:
14947 case BFD_RELOC_MICROMIPS_CALL_LO16:
067ec077 14948 case BFD_RELOC_MIPS_EH:
b886a2ab
RS
14949 if (fixP->fx_done)
14950 {
14951 offsetT value;
14952
14953 if (calculate_reloc (fixP->fx_r_type, *valP, &value))
14954 {
14955 insn = read_reloc_insn (buf, fixP->fx_r_type);
14956 if (mips16_reloc_p (fixP->fx_r_type))
14957 insn |= mips16_immed_extend (value, 16);
14958 else
14959 insn |= (value & 0xffff);
14960 write_reloc_insn (buf, fixP->fx_r_type, insn);
14961 }
14962 else
14963 as_bad_where (fixP->fx_file, fixP->fx_line,
1661c76c 14964 _("unsupported constant in relocation"));
b886a2ab 14965 }
252b5132
RH
14966 break;
14967
252b5132
RH
14968 case BFD_RELOC_64:
14969 /* This is handled like BFD_RELOC_32, but we output a sign
14970 extended value if we are only 32 bits. */
3e722fb5 14971 if (fixP->fx_done)
252b5132
RH
14972 {
14973 if (8 <= sizeof (valueT))
4d68580a 14974 md_number_to_chars (buf, *valP, 8);
252b5132
RH
14975 else
14976 {
a7ebbfdf 14977 valueT hiv;
252b5132 14978
a7ebbfdf 14979 if ((*valP & 0x80000000) != 0)
252b5132
RH
14980 hiv = 0xffffffff;
14981 else
14982 hiv = 0;
4d68580a
RS
14983 md_number_to_chars (buf + (target_big_endian ? 4 : 0), *valP, 4);
14984 md_number_to_chars (buf + (target_big_endian ? 0 : 4), hiv, 4);
252b5132
RH
14985 }
14986 }
14987 break;
14988
056350c6 14989 case BFD_RELOC_RVA:
252b5132 14990 case BFD_RELOC_32:
b47468a6 14991 case BFD_RELOC_32_PCREL:
252b5132 14992 case BFD_RELOC_16:
d56a8dda 14993 case BFD_RELOC_8:
252b5132 14994 /* If we are deleting this reloc entry, we must fill in the
54f4ddb3
TS
14995 value now. This can happen if we have a .word which is not
14996 resolved when it appears but is later defined. */
252b5132 14997 if (fixP->fx_done)
4d68580a 14998 md_number_to_chars (buf, *valP, fixP->fx_size);
252b5132
RH
14999 break;
15000
7361da2c
AB
15001 case BFD_RELOC_MIPS_21_PCREL_S2:
15002 case BFD_RELOC_MIPS_26_PCREL_S2:
15003 if ((*valP & 0x3) != 0)
15004 as_bad_where (fixP->fx_file, fixP->fx_line,
15005 _("branch to misaligned address (%lx)"), (long) *valP);
15006
15007 gas_assert (!fixP->fx_done);
15008 break;
15009
15010 case BFD_RELOC_MIPS_18_PCREL_S3:
15011 if ((*valP & 0x7) != 0)
15012 as_bad_where (fixP->fx_file, fixP->fx_line,
15013 _("PC-relative access to misaligned address (%lx)"),
15014 (long) *valP);
15015
15016 gas_assert (!fixP->fx_done);
15017 break;
15018
15019 case BFD_RELOC_MIPS_19_PCREL_S2:
15020 if ((*valP & 0x3) != 0)
15021 as_bad_where (fixP->fx_file, fixP->fx_line,
15022 _("PC-relative access to misaligned address (%lx)"),
15023 (long) *valP);
15024
15025 gas_assert (!fixP->fx_done);
15026 break;
15027
15028 case BFD_RELOC_HI16_S_PCREL:
15029 case BFD_RELOC_LO16_PCREL:
15030 gas_assert (!fixP->fx_done);
15031 break;
15032
252b5132 15033 case BFD_RELOC_16_PCREL_S2:
a7ebbfdf 15034 if ((*valP & 0x3) != 0)
cb56d3d3 15035 as_bad_where (fixP->fx_file, fixP->fx_line,
1661c76c 15036 _("branch to misaligned address (%lx)"), (long) *valP);
cb56d3d3 15037
54f4ddb3
TS
15038 /* We need to save the bits in the instruction since fixup_segment()
15039 might be deleting the relocation entry (i.e., a branch within
15040 the current segment). */
a7ebbfdf 15041 if (! fixP->fx_done)
bb2d6cd7 15042 break;
252b5132 15043
54f4ddb3 15044 /* Update old instruction data. */
4d68580a 15045 insn = read_insn (buf);
252b5132 15046
a7ebbfdf
TS
15047 if (*valP + 0x20000 <= 0x3ffff)
15048 {
15049 insn |= (*valP >> 2) & 0xffff;
4d68580a 15050 write_insn (buf, insn);
a7ebbfdf
TS
15051 }
15052 else if (mips_pic == NO_PIC
15053 && fixP->fx_done
15054 && fixP->fx_frag->fr_address >= text_section->vma
15055 && (fixP->fx_frag->fr_address
587aac4e 15056 < text_section->vma + bfd_get_section_size (text_section))
a7ebbfdf
TS
15057 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
15058 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
15059 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
252b5132
RH
15060 {
15061 /* The branch offset is too large. If this is an
15062 unconditional branch, and we are not generating PIC code,
15063 we can convert it to an absolute jump instruction. */
a7ebbfdf
TS
15064 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
15065 insn = 0x0c000000; /* jal */
252b5132 15066 else
a7ebbfdf
TS
15067 insn = 0x08000000; /* j */
15068 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
15069 fixP->fx_done = 0;
15070 fixP->fx_addsy = section_symbol (text_section);
15071 *valP += md_pcrel_from (fixP);
4d68580a 15072 write_insn (buf, insn);
a7ebbfdf
TS
15073 }
15074 else
15075 {
15076 /* If we got here, we have branch-relaxation disabled,
15077 and there's nothing we can do to fix this instruction
15078 without turning it into a longer sequence. */
15079 as_bad_where (fixP->fx_file, fixP->fx_line,
1661c76c 15080 _("branch out of range"));
252b5132 15081 }
252b5132
RH
15082 break;
15083
df58fc94
RS
15084 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15085 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15086 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15087 /* We adjust the offset back to even. */
15088 if ((*valP & 0x1) != 0)
15089 --(*valP);
15090
15091 if (! fixP->fx_done)
15092 break;
15093
15094 /* Should never visit here, because we keep the relocation. */
15095 abort ();
15096 break;
15097
252b5132
RH
15098 case BFD_RELOC_VTABLE_INHERIT:
15099 fixP->fx_done = 0;
15100 if (fixP->fx_addsy
15101 && !S_IS_DEFINED (fixP->fx_addsy)
15102 && !S_IS_WEAK (fixP->fx_addsy))
15103 S_SET_WEAK (fixP->fx_addsy);
15104 break;
15105
15106 case BFD_RELOC_VTABLE_ENTRY:
15107 fixP->fx_done = 0;
15108 break;
15109
15110 default:
b37df7c4 15111 abort ();
252b5132 15112 }
a7ebbfdf
TS
15113
15114 /* Remember value for tc_gen_reloc. */
15115 fixP->fx_addnumber = *valP;
252b5132
RH
15116}
15117
252b5132 15118static symbolS *
17a2f251 15119get_symbol (void)
252b5132
RH
15120{
15121 int c;
15122 char *name;
15123 symbolS *p;
15124
15125 name = input_line_pointer;
15126 c = get_symbol_end ();
15127 p = (symbolS *) symbol_find_or_make (name);
15128 *input_line_pointer = c;
15129 return p;
15130}
15131
742a56fe
RS
15132/* Align the current frag to a given power of two. If a particular
15133 fill byte should be used, FILL points to an integer that contains
15134 that byte, otherwise FILL is null.
15135
462427c4
RS
15136 This function used to have the comment:
15137
15138 The MIPS assembler also automatically adjusts any preceding label.
15139
15140 The implementation therefore applied the adjustment to a maximum of
15141 one label. However, other label adjustments are applied to batches
15142 of labels, and adjusting just one caused problems when new labels
15143 were added for the sake of debugging or unwind information.
15144 We therefore adjust all preceding labels (given as LABELS) instead. */
252b5132
RH
15145
15146static void
462427c4 15147mips_align (int to, int *fill, struct insn_label_list *labels)
252b5132 15148{
7d10b47d 15149 mips_emit_delays ();
df58fc94 15150 mips_record_compressed_mode ();
742a56fe
RS
15151 if (fill == NULL && subseg_text_p (now_seg))
15152 frag_align_code (to, 0);
15153 else
15154 frag_align (to, fill ? *fill : 0, 0);
252b5132 15155 record_alignment (now_seg, to);
462427c4 15156 mips_move_labels (labels, FALSE);
252b5132
RH
15157}
15158
15159/* Align to a given power of two. .align 0 turns off the automatic
15160 alignment used by the data creating pseudo-ops. */
15161
15162static void
17a2f251 15163s_align (int x ATTRIBUTE_UNUSED)
252b5132 15164{
742a56fe 15165 int temp, fill_value, *fill_ptr;
49954fb4 15166 long max_alignment = 28;
252b5132 15167
54f4ddb3 15168 /* o Note that the assembler pulls down any immediately preceding label
252b5132 15169 to the aligned address.
54f4ddb3 15170 o It's not documented but auto alignment is reinstated by
252b5132 15171 a .align pseudo instruction.
54f4ddb3 15172 o Note also that after auto alignment is turned off the mips assembler
252b5132 15173 issues an error on attempt to assemble an improperly aligned data item.
54f4ddb3 15174 We don't. */
252b5132
RH
15175
15176 temp = get_absolute_expression ();
15177 if (temp > max_alignment)
1661c76c 15178 as_bad (_("alignment too large, %d assumed"), temp = max_alignment);
252b5132
RH
15179 else if (temp < 0)
15180 {
1661c76c 15181 as_warn (_("alignment negative, 0 assumed"));
252b5132
RH
15182 temp = 0;
15183 }
15184 if (*input_line_pointer == ',')
15185 {
f9419b05 15186 ++input_line_pointer;
742a56fe
RS
15187 fill_value = get_absolute_expression ();
15188 fill_ptr = &fill_value;
252b5132
RH
15189 }
15190 else
742a56fe 15191 fill_ptr = 0;
252b5132
RH
15192 if (temp)
15193 {
a8dbcb85
TS
15194 segment_info_type *si = seg_info (now_seg);
15195 struct insn_label_list *l = si->label_list;
54f4ddb3 15196 /* Auto alignment should be switched on by next section change. */
252b5132 15197 auto_align = 1;
462427c4 15198 mips_align (temp, fill_ptr, l);
252b5132
RH
15199 }
15200 else
15201 {
15202 auto_align = 0;
15203 }
15204
15205 demand_empty_rest_of_line ();
15206}
15207
252b5132 15208static void
17a2f251 15209s_change_sec (int sec)
252b5132
RH
15210{
15211 segT seg;
15212
252b5132
RH
15213 /* The ELF backend needs to know that we are changing sections, so
15214 that .previous works correctly. We could do something like check
b6ff326e 15215 for an obj_section_change_hook macro, but that might be confusing
252b5132
RH
15216 as it would not be appropriate to use it in the section changing
15217 functions in read.c, since obj-elf.c intercepts those. FIXME:
15218 This should be cleaner, somehow. */
f3ded42a 15219 obj_elf_section_change_hook ();
252b5132 15220
7d10b47d 15221 mips_emit_delays ();
6a32d874 15222
252b5132
RH
15223 switch (sec)
15224 {
15225 case 't':
15226 s_text (0);
15227 break;
15228 case 'd':
15229 s_data (0);
15230 break;
15231 case 'b':
15232 subseg_set (bss_section, (subsegT) get_absolute_expression ());
15233 demand_empty_rest_of_line ();
15234 break;
15235
15236 case 'r':
4d0d148d
TS
15237 seg = subseg_new (RDATA_SECTION_NAME,
15238 (subsegT) get_absolute_expression ());
f3ded42a
RS
15239 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
15240 | SEC_READONLY | SEC_RELOC
15241 | SEC_DATA));
15242 if (strncmp (TARGET_OS, "elf", 3) != 0)
15243 record_alignment (seg, 4);
4d0d148d 15244 demand_empty_rest_of_line ();
252b5132
RH
15245 break;
15246
15247 case 's':
4d0d148d 15248 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
f3ded42a
RS
15249 bfd_set_section_flags (stdoutput, seg,
15250 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
15251 if (strncmp (TARGET_OS, "elf", 3) != 0)
15252 record_alignment (seg, 4);
4d0d148d
TS
15253 demand_empty_rest_of_line ();
15254 break;
998b3c36
MR
15255
15256 case 'B':
15257 seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
f3ded42a
RS
15258 bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
15259 if (strncmp (TARGET_OS, "elf", 3) != 0)
15260 record_alignment (seg, 4);
998b3c36
MR
15261 demand_empty_rest_of_line ();
15262 break;
252b5132
RH
15263 }
15264
15265 auto_align = 1;
15266}
b34976b6 15267
cca86cc8 15268void
17a2f251 15269s_change_section (int ignore ATTRIBUTE_UNUSED)
cca86cc8 15270{
cca86cc8
SC
15271 char *section_name;
15272 char c;
684022ea 15273 char next_c = 0;
cca86cc8
SC
15274 int section_type;
15275 int section_flag;
15276 int section_entry_size;
15277 int section_alignment;
b34976b6 15278
cca86cc8
SC
15279 section_name = input_line_pointer;
15280 c = get_symbol_end ();
a816d1ed
AO
15281 if (c)
15282 next_c = *(input_line_pointer + 1);
cca86cc8 15283
4cf0dd0d
TS
15284 /* Do we have .section Name<,"flags">? */
15285 if (c != ',' || (c == ',' && next_c == '"'))
cca86cc8 15286 {
4cf0dd0d
TS
15287 /* just after name is now '\0'. */
15288 *input_line_pointer = c;
cca86cc8
SC
15289 input_line_pointer = section_name;
15290 obj_elf_section (ignore);
15291 return;
15292 }
15293 input_line_pointer++;
15294
15295 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
15296 if (c == ',')
15297 section_type = get_absolute_expression ();
15298 else
15299 section_type = 0;
15300 if (*input_line_pointer++ == ',')
15301 section_flag = get_absolute_expression ();
15302 else
15303 section_flag = 0;
15304 if (*input_line_pointer++ == ',')
15305 section_entry_size = get_absolute_expression ();
15306 else
15307 section_entry_size = 0;
15308 if (*input_line_pointer++ == ',')
15309 section_alignment = get_absolute_expression ();
15310 else
15311 section_alignment = 0;
87975d2a
AM
15312 /* FIXME: really ignore? */
15313 (void) section_alignment;
cca86cc8 15314
a816d1ed
AO
15315 section_name = xstrdup (section_name);
15316
8ab8a5c8
RS
15317 /* When using the generic form of .section (as implemented by obj-elf.c),
15318 there's no way to set the section type to SHT_MIPS_DWARF. Users have
15319 traditionally had to fall back on the more common @progbits instead.
15320
15321 There's nothing really harmful in this, since bfd will correct
15322 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
708587a4 15323 means that, for backwards compatibility, the special_section entries
8ab8a5c8
RS
15324 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
15325
15326 Even so, we shouldn't force users of the MIPS .section syntax to
15327 incorrectly label the sections as SHT_PROGBITS. The best compromise
15328 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
15329 generic type-checking code. */
15330 if (section_type == SHT_MIPS_DWARF)
15331 section_type = SHT_PROGBITS;
15332
cca86cc8
SC
15333 obj_elf_change_section (section_name, section_type, section_flag,
15334 section_entry_size, 0, 0, 0);
a816d1ed
AO
15335
15336 if (now_seg->name != section_name)
15337 free (section_name);
cca86cc8 15338}
252b5132
RH
15339
15340void
17a2f251 15341mips_enable_auto_align (void)
252b5132
RH
15342{
15343 auto_align = 1;
15344}
15345
15346static void
17a2f251 15347s_cons (int log_size)
252b5132 15348{
a8dbcb85
TS
15349 segment_info_type *si = seg_info (now_seg);
15350 struct insn_label_list *l = si->label_list;
252b5132 15351
7d10b47d 15352 mips_emit_delays ();
252b5132 15353 if (log_size > 0 && auto_align)
462427c4 15354 mips_align (log_size, 0, l);
252b5132 15355 cons (1 << log_size);
a1facbec 15356 mips_clear_insn_labels ();
252b5132
RH
15357}
15358
15359static void
17a2f251 15360s_float_cons (int type)
252b5132 15361{
a8dbcb85
TS
15362 segment_info_type *si = seg_info (now_seg);
15363 struct insn_label_list *l = si->label_list;
252b5132 15364
7d10b47d 15365 mips_emit_delays ();
252b5132
RH
15366
15367 if (auto_align)
49309057
ILT
15368 {
15369 if (type == 'd')
462427c4 15370 mips_align (3, 0, l);
49309057 15371 else
462427c4 15372 mips_align (2, 0, l);
49309057 15373 }
252b5132 15374
252b5132 15375 float_cons (type);
a1facbec 15376 mips_clear_insn_labels ();
252b5132
RH
15377}
15378
15379/* Handle .globl. We need to override it because on Irix 5 you are
15380 permitted to say
15381 .globl foo .text
15382 where foo is an undefined symbol, to mean that foo should be
15383 considered to be the address of a function. */
15384
15385static void
17a2f251 15386s_mips_globl (int x ATTRIBUTE_UNUSED)
252b5132
RH
15387{
15388 char *name;
15389 int c;
15390 symbolS *symbolP;
15391 flagword flag;
15392
8a06b769 15393 do
252b5132 15394 {
8a06b769 15395 name = input_line_pointer;
252b5132 15396 c = get_symbol_end ();
8a06b769
TS
15397 symbolP = symbol_find_or_make (name);
15398 S_SET_EXTERNAL (symbolP);
15399
252b5132 15400 *input_line_pointer = c;
8a06b769 15401 SKIP_WHITESPACE ();
252b5132 15402
8a06b769
TS
15403 /* On Irix 5, every global symbol that is not explicitly labelled as
15404 being a function is apparently labelled as being an object. */
15405 flag = BSF_OBJECT;
252b5132 15406
8a06b769
TS
15407 if (!is_end_of_line[(unsigned char) *input_line_pointer]
15408 && (*input_line_pointer != ','))
15409 {
15410 char *secname;
15411 asection *sec;
15412
15413 secname = input_line_pointer;
15414 c = get_symbol_end ();
15415 sec = bfd_get_section_by_name (stdoutput, secname);
15416 if (sec == NULL)
15417 as_bad (_("%s: no such section"), secname);
15418 *input_line_pointer = c;
15419
15420 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
15421 flag = BSF_FUNCTION;
15422 }
15423
15424 symbol_get_bfdsym (symbolP)->flags |= flag;
15425
15426 c = *input_line_pointer;
15427 if (c == ',')
15428 {
15429 input_line_pointer++;
15430 SKIP_WHITESPACE ();
15431 if (is_end_of_line[(unsigned char) *input_line_pointer])
15432 c = '\n';
15433 }
15434 }
15435 while (c == ',');
252b5132 15436
252b5132
RH
15437 demand_empty_rest_of_line ();
15438}
15439
15440static void
17a2f251 15441s_option (int x ATTRIBUTE_UNUSED)
252b5132
RH
15442{
15443 char *opt;
15444 char c;
15445
15446 opt = input_line_pointer;
15447 c = get_symbol_end ();
15448
15449 if (*opt == 'O')
15450 {
15451 /* FIXME: What does this mean? */
15452 }
15453 else if (strncmp (opt, "pic", 3) == 0)
15454 {
15455 int i;
15456
15457 i = atoi (opt + 3);
15458 if (i == 0)
15459 mips_pic = NO_PIC;
15460 else if (i == 2)
143d77c5 15461 {
8b828383 15462 mips_pic = SVR4_PIC;
143d77c5
EC
15463 mips_abicalls = TRUE;
15464 }
252b5132
RH
15465 else
15466 as_bad (_(".option pic%d not supported"), i);
15467
4d0d148d 15468 if (mips_pic == SVR4_PIC)
252b5132
RH
15469 {
15470 if (g_switch_seen && g_switch_value != 0)
15471 as_warn (_("-G may not be used with SVR4 PIC code"));
15472 g_switch_value = 0;
15473 bfd_set_gp_size (stdoutput, 0);
15474 }
15475 }
15476 else
1661c76c 15477 as_warn (_("unrecognized option \"%s\""), opt);
252b5132
RH
15478
15479 *input_line_pointer = c;
15480 demand_empty_rest_of_line ();
15481}
15482
15483/* This structure is used to hold a stack of .set values. */
15484
e972090a
NC
15485struct mips_option_stack
15486{
252b5132
RH
15487 struct mips_option_stack *next;
15488 struct mips_set_options options;
15489};
15490
15491static struct mips_option_stack *mips_opts_stack;
15492
919731af 15493static bfd_boolean
15494parse_code_option (char * name)
252b5132 15495{
c6278170 15496 const struct mips_ase *ase;
919731af 15497 if (strncmp (name, "at=", 3) == 0)
741fe287
MR
15498 {
15499 char *s = name + 3;
15500
15501 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
1661c76c 15502 as_bad (_("unrecognized register name `%s'"), s);
741fe287 15503 }
252b5132 15504 else if (strcmp (name, "at") == 0)
919731af 15505 mips_opts.at = ATREG;
252b5132 15506 else if (strcmp (name, "noat") == 0)
919731af 15507 mips_opts.at = ZERO;
252b5132 15508 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
919731af 15509 mips_opts.nomove = 0;
252b5132 15510 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
919731af 15511 mips_opts.nomove = 1;
252b5132 15512 else if (strcmp (name, "bopt") == 0)
919731af 15513 mips_opts.nobopt = 0;
252b5132 15514 else if (strcmp (name, "nobopt") == 0)
919731af 15515 mips_opts.nobopt = 1;
ad3fea08 15516 else if (strcmp (name, "gp=32") == 0)
bad1aba3 15517 mips_opts.gp = 32;
ad3fea08 15518 else if (strcmp (name, "gp=64") == 0)
919731af 15519 mips_opts.gp = 64;
ad3fea08 15520 else if (strcmp (name, "fp=32") == 0)
0b35dfee 15521 mips_opts.fp = 32;
351cdf24
MF
15522 else if (strcmp (name, "fp=xx") == 0)
15523 mips_opts.fp = 0;
ad3fea08 15524 else if (strcmp (name, "fp=64") == 0)
919731af 15525 mips_opts.fp = 64;
037b32b9
AN
15526 else if (strcmp (name, "softfloat") == 0)
15527 mips_opts.soft_float = 1;
15528 else if (strcmp (name, "hardfloat") == 0)
15529 mips_opts.soft_float = 0;
15530 else if (strcmp (name, "singlefloat") == 0)
15531 mips_opts.single_float = 1;
15532 else if (strcmp (name, "doublefloat") == 0)
15533 mips_opts.single_float = 0;
351cdf24
MF
15534 else if (strcmp (name, "nooddspreg") == 0)
15535 mips_opts.oddspreg = 0;
15536 else if (strcmp (name, "oddspreg") == 0)
15537 mips_opts.oddspreg = 1;
252b5132
RH
15538 else if (strcmp (name, "mips16") == 0
15539 || strcmp (name, "MIPS-16") == 0)
919731af 15540 mips_opts.mips16 = 1;
252b5132
RH
15541 else if (strcmp (name, "nomips16") == 0
15542 || strcmp (name, "noMIPS-16") == 0)
15543 mips_opts.mips16 = 0;
df58fc94 15544 else if (strcmp (name, "micromips") == 0)
919731af 15545 mips_opts.micromips = 1;
df58fc94
RS
15546 else if (strcmp (name, "nomicromips") == 0)
15547 mips_opts.micromips = 0;
c6278170
RS
15548 else if (name[0] == 'n'
15549 && name[1] == 'o'
15550 && (ase = mips_lookup_ase (name + 2)))
919731af 15551 mips_set_ase (ase, &mips_opts, FALSE);
c6278170 15552 else if ((ase = mips_lookup_ase (name)))
919731af 15553 mips_set_ase (ase, &mips_opts, TRUE);
1a2c1fad 15554 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
252b5132 15555 {
1a2c1fad
CD
15556 /* Permit the user to change the ISA and architecture on the fly.
15557 Needless to say, misuse can cause serious problems. */
919731af 15558 if (strncmp (name, "arch=", 5) == 0)
1a2c1fad
CD
15559 {
15560 const struct mips_cpu_info *p;
15561
919731af 15562 p = mips_parse_cpu ("internal use", name + 5);
1a2c1fad
CD
15563 if (!p)
15564 as_bad (_("unknown architecture %s"), name + 5);
15565 else
15566 {
15567 mips_opts.arch = p->cpu;
15568 mips_opts.isa = p->isa;
15569 }
15570 }
81a21e38
TS
15571 else if (strncmp (name, "mips", 4) == 0)
15572 {
15573 const struct mips_cpu_info *p;
15574
919731af 15575 p = mips_parse_cpu ("internal use", name);
81a21e38
TS
15576 if (!p)
15577 as_bad (_("unknown ISA level %s"), name + 4);
15578 else
15579 {
15580 mips_opts.arch = p->cpu;
15581 mips_opts.isa = p->isa;
15582 }
15583 }
af7ee8bf 15584 else
81a21e38 15585 as_bad (_("unknown ISA or architecture %s"), name);
252b5132
RH
15586 }
15587 else if (strcmp (name, "autoextend") == 0)
15588 mips_opts.noautoextend = 0;
15589 else if (strcmp (name, "noautoextend") == 0)
15590 mips_opts.noautoextend = 1;
833794fc
MR
15591 else if (strcmp (name, "insn32") == 0)
15592 mips_opts.insn32 = TRUE;
15593 else if (strcmp (name, "noinsn32") == 0)
15594 mips_opts.insn32 = FALSE;
919731af 15595 else if (strcmp (name, "sym32") == 0)
15596 mips_opts.sym32 = TRUE;
15597 else if (strcmp (name, "nosym32") == 0)
15598 mips_opts.sym32 = FALSE;
15599 else
15600 return FALSE;
15601 return TRUE;
15602}
15603
15604/* Handle the .set pseudo-op. */
15605
15606static void
15607s_mipsset (int x ATTRIBUTE_UNUSED)
15608{
15609 char *name = input_line_pointer, ch;
15610 int prev_isa = mips_opts.isa;
15611
15612 file_mips_check_options ();
15613
15614 while (!is_end_of_line[(unsigned char) *input_line_pointer])
15615 ++input_line_pointer;
15616 ch = *input_line_pointer;
15617 *input_line_pointer = '\0';
15618
15619 if (strchr (name, ','))
15620 {
15621 /* Generic ".set" directive; use the generic handler. */
15622 *input_line_pointer = ch;
15623 input_line_pointer = name;
15624 s_set (0);
15625 return;
15626 }
15627
15628 if (strcmp (name, "reorder") == 0)
15629 {
15630 if (mips_opts.noreorder)
15631 end_noreorder ();
15632 }
15633 else if (strcmp (name, "noreorder") == 0)
15634 {
15635 if (!mips_opts.noreorder)
15636 start_noreorder ();
15637 }
15638 else if (strcmp (name, "macro") == 0)
15639 mips_opts.warn_about_macros = 0;
15640 else if (strcmp (name, "nomacro") == 0)
15641 {
15642 if (mips_opts.noreorder == 0)
15643 as_bad (_("`noreorder' must be set before `nomacro'"));
15644 mips_opts.warn_about_macros = 1;
15645 }
15646 else if (strcmp (name, "gp=default") == 0)
15647 mips_opts.gp = file_mips_opts.gp;
15648 else if (strcmp (name, "fp=default") == 0)
15649 mips_opts.fp = file_mips_opts.fp;
15650 else if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
15651 {
15652 mips_opts.isa = file_mips_opts.isa;
15653 mips_opts.arch = file_mips_opts.arch;
15654 mips_opts.gp = file_mips_opts.gp;
15655 mips_opts.fp = file_mips_opts.fp;
15656 }
252b5132
RH
15657 else if (strcmp (name, "push") == 0)
15658 {
15659 struct mips_option_stack *s;
15660
15661 s = (struct mips_option_stack *) xmalloc (sizeof *s);
15662 s->next = mips_opts_stack;
15663 s->options = mips_opts;
15664 mips_opts_stack = s;
15665 }
15666 else if (strcmp (name, "pop") == 0)
15667 {
15668 struct mips_option_stack *s;
15669
15670 s = mips_opts_stack;
15671 if (s == NULL)
15672 as_bad (_(".set pop with no .set push"));
15673 else
15674 {
15675 /* If we're changing the reorder mode we need to handle
15676 delay slots correctly. */
15677 if (s->options.noreorder && ! mips_opts.noreorder)
7d10b47d 15678 start_noreorder ();
252b5132 15679 else if (! s->options.noreorder && mips_opts.noreorder)
7d10b47d 15680 end_noreorder ();
252b5132
RH
15681
15682 mips_opts = s->options;
15683 mips_opts_stack = s->next;
15684 free (s);
15685 }
15686 }
919731af 15687 else if (!parse_code_option (name))
15688 as_warn (_("tried to set unrecognized symbol: %s\n"), name);
15689
15690 /* The use of .set [arch|cpu]= historically 'fixes' the width of gp and fp
15691 registers based on what is supported by the arch/cpu. */
15692 if (mips_opts.isa != prev_isa)
e6559e01 15693 {
919731af 15694 switch (mips_opts.isa)
15695 {
15696 case 0:
15697 break;
15698 case ISA_MIPS1:
351cdf24
MF
15699 /* MIPS I cannot support FPXX. */
15700 mips_opts.fp = 32;
15701 /* fall-through. */
919731af 15702 case ISA_MIPS2:
15703 case ISA_MIPS32:
15704 case ISA_MIPS32R2:
15705 case ISA_MIPS32R3:
15706 case ISA_MIPS32R5:
15707 mips_opts.gp = 32;
351cdf24
MF
15708 if (mips_opts.fp != 0)
15709 mips_opts.fp = 32;
919731af 15710 break;
7361da2c
AB
15711 case ISA_MIPS32R6:
15712 mips_opts.gp = 32;
15713 mips_opts.fp = 64;
15714 break;
919731af 15715 case ISA_MIPS3:
15716 case ISA_MIPS4:
15717 case ISA_MIPS5:
15718 case ISA_MIPS64:
15719 case ISA_MIPS64R2:
15720 case ISA_MIPS64R3:
15721 case ISA_MIPS64R5:
7361da2c 15722 case ISA_MIPS64R6:
919731af 15723 mips_opts.gp = 64;
351cdf24
MF
15724 if (mips_opts.fp != 0)
15725 {
15726 if (mips_opts.arch == CPU_R5900)
15727 mips_opts.fp = 32;
15728 else
15729 mips_opts.fp = 64;
15730 }
919731af 15731 break;
15732 default:
15733 as_bad (_("unknown ISA level %s"), name + 4);
15734 break;
15735 }
e6559e01 15736 }
919731af 15737
15738 mips_check_options (&mips_opts, FALSE);
15739
15740 mips_check_isa_supports_ases ();
15741 *input_line_pointer = ch;
15742 demand_empty_rest_of_line ();
15743}
15744
15745/* Handle the .module pseudo-op. */
15746
15747static void
15748s_module (int ignore ATTRIBUTE_UNUSED)
15749{
15750 char *name = input_line_pointer, ch;
15751
15752 while (!is_end_of_line[(unsigned char) *input_line_pointer])
15753 ++input_line_pointer;
15754 ch = *input_line_pointer;
15755 *input_line_pointer = '\0';
15756
15757 if (!file_mips_opts_checked)
252b5132 15758 {
919731af 15759 if (!parse_code_option (name))
15760 as_bad (_(".module used with unrecognized symbol: %s\n"), name);
15761
15762 /* Update module level settings from mips_opts. */
15763 file_mips_opts = mips_opts;
252b5132 15764 }
919731af 15765 else
15766 as_bad (_(".module is not permitted after generating code"));
15767
252b5132
RH
15768 *input_line_pointer = ch;
15769 demand_empty_rest_of_line ();
15770}
15771
15772/* Handle the .abicalls pseudo-op. I believe this is equivalent to
15773 .option pic2. It means to generate SVR4 PIC calls. */
15774
15775static void
17a2f251 15776s_abicalls (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
15777{
15778 mips_pic = SVR4_PIC;
143d77c5 15779 mips_abicalls = TRUE;
4d0d148d
TS
15780
15781 if (g_switch_seen && g_switch_value != 0)
15782 as_warn (_("-G may not be used with SVR4 PIC code"));
15783 g_switch_value = 0;
15784
252b5132
RH
15785 bfd_set_gp_size (stdoutput, 0);
15786 demand_empty_rest_of_line ();
15787}
15788
15789/* Handle the .cpload pseudo-op. This is used when generating SVR4
15790 PIC code. It sets the $gp register for the function based on the
15791 function address, which is in the register named in the argument.
15792 This uses a relocation against _gp_disp, which is handled specially
15793 by the linker. The result is:
15794 lui $gp,%hi(_gp_disp)
15795 addiu $gp,$gp,%lo(_gp_disp)
15796 addu $gp,$gp,.cpload argument
aa6975fb
ILT
15797 The .cpload argument is normally $25 == $t9.
15798
15799 The -mno-shared option changes this to:
bbe506e8
TS
15800 lui $gp,%hi(__gnu_local_gp)
15801 addiu $gp,$gp,%lo(__gnu_local_gp)
aa6975fb
ILT
15802 and the argument is ignored. This saves an instruction, but the
15803 resulting code is not position independent; it uses an absolute
bbe506e8
TS
15804 address for __gnu_local_gp. Thus code assembled with -mno-shared
15805 can go into an ordinary executable, but not into a shared library. */
252b5132
RH
15806
15807static void
17a2f251 15808s_cpload (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
15809{
15810 expressionS ex;
aa6975fb
ILT
15811 int reg;
15812 int in_shared;
252b5132 15813
919731af 15814 file_mips_check_options ();
15815
6478892d
TS
15816 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
15817 .cpload is ignored. */
15818 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
15819 {
15820 s_ignore (0);
15821 return;
15822 }
15823
a276b80c
MR
15824 if (mips_opts.mips16)
15825 {
15826 as_bad (_("%s not supported in MIPS16 mode"), ".cpload");
15827 ignore_rest_of_line ();
15828 return;
15829 }
15830
d3ecfc59 15831 /* .cpload should be in a .set noreorder section. */
252b5132
RH
15832 if (mips_opts.noreorder == 0)
15833 as_warn (_(".cpload not in noreorder section"));
15834
aa6975fb
ILT
15835 reg = tc_get_register (0);
15836
15837 /* If we need to produce a 64-bit address, we are better off using
15838 the default instruction sequence. */
aed1a261 15839 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
aa6975fb 15840
252b5132 15841 ex.X_op = O_symbol;
bbe506e8
TS
15842 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
15843 "__gnu_local_gp");
252b5132
RH
15844 ex.X_op_symbol = NULL;
15845 ex.X_add_number = 0;
15846
15847 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
49309057 15848 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
252b5132 15849
8a75745d
MR
15850 mips_mark_labels ();
15851 mips_assembling_insn = TRUE;
15852
584892a6 15853 macro_start ();
67c0d1eb
RS
15854 macro_build_lui (&ex, mips_gp_register);
15855 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
17a2f251 15856 mips_gp_register, BFD_RELOC_LO16);
aa6975fb
ILT
15857 if (in_shared)
15858 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
15859 mips_gp_register, reg);
584892a6 15860 macro_end ();
252b5132 15861
8a75745d 15862 mips_assembling_insn = FALSE;
252b5132
RH
15863 demand_empty_rest_of_line ();
15864}
15865
6478892d
TS
15866/* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
15867 .cpsetup $reg1, offset|$reg2, label
15868
15869 If offset is given, this results in:
15870 sd $gp, offset($sp)
956cd1d6 15871 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
15872 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
15873 daddu $gp, $gp, $reg1
6478892d
TS
15874
15875 If $reg2 is given, this results in:
15876 daddu $reg2, $gp, $0
956cd1d6 15877 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
15878 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
15879 daddu $gp, $gp, $reg1
aa6975fb
ILT
15880 $reg1 is normally $25 == $t9.
15881
15882 The -mno-shared option replaces the last three instructions with
15883 lui $gp,%hi(_gp)
54f4ddb3 15884 addiu $gp,$gp,%lo(_gp) */
aa6975fb 15885
6478892d 15886static void
17a2f251 15887s_cpsetup (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
15888{
15889 expressionS ex_off;
15890 expressionS ex_sym;
15891 int reg1;
6478892d 15892
919731af 15893 file_mips_check_options ();
15894
8586fc66 15895 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
6478892d
TS
15896 We also need NewABI support. */
15897 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
15898 {
15899 s_ignore (0);
15900 return;
15901 }
15902
a276b80c
MR
15903 if (mips_opts.mips16)
15904 {
15905 as_bad (_("%s not supported in MIPS16 mode"), ".cpsetup");
15906 ignore_rest_of_line ();
15907 return;
15908 }
15909
6478892d
TS
15910 reg1 = tc_get_register (0);
15911 SKIP_WHITESPACE ();
15912 if (*input_line_pointer != ',')
15913 {
15914 as_bad (_("missing argument separator ',' for .cpsetup"));
15915 return;
15916 }
15917 else
80245285 15918 ++input_line_pointer;
6478892d
TS
15919 SKIP_WHITESPACE ();
15920 if (*input_line_pointer == '$')
80245285
TS
15921 {
15922 mips_cpreturn_register = tc_get_register (0);
15923 mips_cpreturn_offset = -1;
15924 }
6478892d 15925 else
80245285
TS
15926 {
15927 mips_cpreturn_offset = get_absolute_expression ();
15928 mips_cpreturn_register = -1;
15929 }
6478892d
TS
15930 SKIP_WHITESPACE ();
15931 if (*input_line_pointer != ',')
15932 {
15933 as_bad (_("missing argument separator ',' for .cpsetup"));
15934 return;
15935 }
15936 else
f9419b05 15937 ++input_line_pointer;
6478892d 15938 SKIP_WHITESPACE ();
f21f8242 15939 expression (&ex_sym);
6478892d 15940
8a75745d
MR
15941 mips_mark_labels ();
15942 mips_assembling_insn = TRUE;
15943
584892a6 15944 macro_start ();
6478892d
TS
15945 if (mips_cpreturn_register == -1)
15946 {
15947 ex_off.X_op = O_constant;
15948 ex_off.X_add_symbol = NULL;
15949 ex_off.X_op_symbol = NULL;
15950 ex_off.X_add_number = mips_cpreturn_offset;
15951
67c0d1eb 15952 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
17a2f251 15953 BFD_RELOC_LO16, SP);
6478892d
TS
15954 }
15955 else
67c0d1eb 15956 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
17a2f251 15957 mips_gp_register, 0);
6478892d 15958
aed1a261 15959 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
aa6975fb 15960 {
df58fc94 15961 macro_build (&ex_sym, "lui", LUI_FMT, mips_gp_register,
aa6975fb
ILT
15962 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
15963 BFD_RELOC_HI16_S);
15964
15965 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
15966 mips_gp_register, -1, BFD_RELOC_GPREL16,
15967 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
15968
15969 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
15970 mips_gp_register, reg1);
15971 }
15972 else
15973 {
15974 expressionS ex;
15975
15976 ex.X_op = O_symbol;
4184909a 15977 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
aa6975fb
ILT
15978 ex.X_op_symbol = NULL;
15979 ex.X_add_number = 0;
6e1304d8 15980
aa6975fb
ILT
15981 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
15982 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
15983
15984 macro_build_lui (&ex, mips_gp_register);
15985 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
15986 mips_gp_register, BFD_RELOC_LO16);
15987 }
f21f8242 15988
584892a6 15989 macro_end ();
6478892d 15990
8a75745d 15991 mips_assembling_insn = FALSE;
6478892d
TS
15992 demand_empty_rest_of_line ();
15993}
15994
15995static void
17a2f251 15996s_cplocal (int ignore ATTRIBUTE_UNUSED)
6478892d 15997{
919731af 15998 file_mips_check_options ();
15999
6478892d 16000 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
54f4ddb3 16001 .cplocal is ignored. */
6478892d
TS
16002 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16003 {
16004 s_ignore (0);
16005 return;
16006 }
16007
a276b80c
MR
16008 if (mips_opts.mips16)
16009 {
16010 as_bad (_("%s not supported in MIPS16 mode"), ".cplocal");
16011 ignore_rest_of_line ();
16012 return;
16013 }
16014
6478892d 16015 mips_gp_register = tc_get_register (0);
85b51719 16016 demand_empty_rest_of_line ();
6478892d
TS
16017}
16018
252b5132
RH
16019/* Handle the .cprestore pseudo-op. This stores $gp into a given
16020 offset from $sp. The offset is remembered, and after making a PIC
16021 call $gp is restored from that location. */
16022
16023static void
17a2f251 16024s_cprestore (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
16025{
16026 expressionS ex;
252b5132 16027
919731af 16028 file_mips_check_options ();
16029
6478892d 16030 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
c9914766 16031 .cprestore is ignored. */
6478892d 16032 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
16033 {
16034 s_ignore (0);
16035 return;
16036 }
16037
a276b80c
MR
16038 if (mips_opts.mips16)
16039 {
16040 as_bad (_("%s not supported in MIPS16 mode"), ".cprestore");
16041 ignore_rest_of_line ();
16042 return;
16043 }
16044
252b5132 16045 mips_cprestore_offset = get_absolute_expression ();
7a621144 16046 mips_cprestore_valid = 1;
252b5132
RH
16047
16048 ex.X_op = O_constant;
16049 ex.X_add_symbol = NULL;
16050 ex.X_op_symbol = NULL;
16051 ex.X_add_number = mips_cprestore_offset;
16052
8a75745d
MR
16053 mips_mark_labels ();
16054 mips_assembling_insn = TRUE;
16055
584892a6 16056 macro_start ();
67c0d1eb
RS
16057 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
16058 SP, HAVE_64BIT_ADDRESSES);
584892a6 16059 macro_end ();
252b5132 16060
8a75745d 16061 mips_assembling_insn = FALSE;
252b5132
RH
16062 demand_empty_rest_of_line ();
16063}
16064
6478892d 16065/* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
67c1ffbe 16066 was given in the preceding .cpsetup, it results in:
6478892d 16067 ld $gp, offset($sp)
76b3015f 16068
6478892d 16069 If a register $reg2 was given there, it results in:
54f4ddb3
TS
16070 daddu $gp, $reg2, $0 */
16071
6478892d 16072static void
17a2f251 16073s_cpreturn (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
16074{
16075 expressionS ex;
6478892d 16076
919731af 16077 file_mips_check_options ();
16078
6478892d
TS
16079 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
16080 We also need NewABI support. */
16081 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16082 {
16083 s_ignore (0);
16084 return;
16085 }
16086
a276b80c
MR
16087 if (mips_opts.mips16)
16088 {
16089 as_bad (_("%s not supported in MIPS16 mode"), ".cpreturn");
16090 ignore_rest_of_line ();
16091 return;
16092 }
16093
8a75745d
MR
16094 mips_mark_labels ();
16095 mips_assembling_insn = TRUE;
16096
584892a6 16097 macro_start ();
6478892d
TS
16098 if (mips_cpreturn_register == -1)
16099 {
16100 ex.X_op = O_constant;
16101 ex.X_add_symbol = NULL;
16102 ex.X_op_symbol = NULL;
16103 ex.X_add_number = mips_cpreturn_offset;
16104
67c0d1eb 16105 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
6478892d
TS
16106 }
16107 else
67c0d1eb 16108 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
17a2f251 16109 mips_cpreturn_register, 0);
584892a6 16110 macro_end ();
6478892d 16111
8a75745d 16112 mips_assembling_insn = FALSE;
6478892d
TS
16113 demand_empty_rest_of_line ();
16114}
16115
d0f13682
CLT
16116/* Handle a .dtprelword, .dtpreldword, .tprelword, or .tpreldword
16117 pseudo-op; DIRSTR says which. The pseudo-op generates a BYTES-size
16118 DTP- or TP-relative relocation of type RTYPE, for use in either DWARF
16119 debug information or MIPS16 TLS. */
741d6ea8
JM
16120
16121static void
d0f13682
CLT
16122s_tls_rel_directive (const size_t bytes, const char *dirstr,
16123 bfd_reloc_code_real_type rtype)
741d6ea8
JM
16124{
16125 expressionS ex;
16126 char *p;
16127
16128 expression (&ex);
16129
16130 if (ex.X_op != O_symbol)
16131 {
1661c76c 16132 as_bad (_("unsupported use of %s"), dirstr);
741d6ea8
JM
16133 ignore_rest_of_line ();
16134 }
16135
16136 p = frag_more (bytes);
16137 md_number_to_chars (p, 0, bytes);
d0f13682 16138 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, rtype);
741d6ea8 16139 demand_empty_rest_of_line ();
de64cffd 16140 mips_clear_insn_labels ();
741d6ea8
JM
16141}
16142
16143/* Handle .dtprelword. */
16144
16145static void
16146s_dtprelword (int ignore ATTRIBUTE_UNUSED)
16147{
d0f13682 16148 s_tls_rel_directive (4, ".dtprelword", BFD_RELOC_MIPS_TLS_DTPREL32);
741d6ea8
JM
16149}
16150
16151/* Handle .dtpreldword. */
16152
16153static void
16154s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
16155{
d0f13682
CLT
16156 s_tls_rel_directive (8, ".dtpreldword", BFD_RELOC_MIPS_TLS_DTPREL64);
16157}
16158
16159/* Handle .tprelword. */
16160
16161static void
16162s_tprelword (int ignore ATTRIBUTE_UNUSED)
16163{
16164 s_tls_rel_directive (4, ".tprelword", BFD_RELOC_MIPS_TLS_TPREL32);
16165}
16166
16167/* Handle .tpreldword. */
16168
16169static void
16170s_tpreldword (int ignore ATTRIBUTE_UNUSED)
16171{
16172 s_tls_rel_directive (8, ".tpreldword", BFD_RELOC_MIPS_TLS_TPREL64);
741d6ea8
JM
16173}
16174
6478892d
TS
16175/* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
16176 code. It sets the offset to use in gp_rel relocations. */
16177
16178static void
17a2f251 16179s_gpvalue (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
16180{
16181 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
16182 We also need NewABI support. */
16183 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16184 {
16185 s_ignore (0);
16186 return;
16187 }
16188
def2e0dd 16189 mips_gprel_offset = get_absolute_expression ();
6478892d
TS
16190
16191 demand_empty_rest_of_line ();
16192}
16193
252b5132
RH
16194/* Handle the .gpword pseudo-op. This is used when generating PIC
16195 code. It generates a 32 bit GP relative reloc. */
16196
16197static void
17a2f251 16198s_gpword (int ignore ATTRIBUTE_UNUSED)
252b5132 16199{
a8dbcb85
TS
16200 segment_info_type *si;
16201 struct insn_label_list *l;
252b5132
RH
16202 expressionS ex;
16203 char *p;
16204
16205 /* When not generating PIC code, this is treated as .word. */
16206 if (mips_pic != SVR4_PIC)
16207 {
16208 s_cons (2);
16209 return;
16210 }
16211
a8dbcb85
TS
16212 si = seg_info (now_seg);
16213 l = si->label_list;
7d10b47d 16214 mips_emit_delays ();
252b5132 16215 if (auto_align)
462427c4 16216 mips_align (2, 0, l);
252b5132
RH
16217
16218 expression (&ex);
a1facbec 16219 mips_clear_insn_labels ();
252b5132
RH
16220
16221 if (ex.X_op != O_symbol || ex.X_add_number != 0)
16222 {
1661c76c 16223 as_bad (_("unsupported use of .gpword"));
252b5132
RH
16224 ignore_rest_of_line ();
16225 }
16226
16227 p = frag_more (4);
17a2f251 16228 md_number_to_chars (p, 0, 4);
b34976b6 16229 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
cdf6fd85 16230 BFD_RELOC_GPREL32);
252b5132
RH
16231
16232 demand_empty_rest_of_line ();
16233}
16234
10181a0d 16235static void
17a2f251 16236s_gpdword (int ignore ATTRIBUTE_UNUSED)
10181a0d 16237{
a8dbcb85
TS
16238 segment_info_type *si;
16239 struct insn_label_list *l;
10181a0d
AO
16240 expressionS ex;
16241 char *p;
16242
16243 /* When not generating PIC code, this is treated as .dword. */
16244 if (mips_pic != SVR4_PIC)
16245 {
16246 s_cons (3);
16247 return;
16248 }
16249
a8dbcb85
TS
16250 si = seg_info (now_seg);
16251 l = si->label_list;
7d10b47d 16252 mips_emit_delays ();
10181a0d 16253 if (auto_align)
462427c4 16254 mips_align (3, 0, l);
10181a0d
AO
16255
16256 expression (&ex);
a1facbec 16257 mips_clear_insn_labels ();
10181a0d
AO
16258
16259 if (ex.X_op != O_symbol || ex.X_add_number != 0)
16260 {
1661c76c 16261 as_bad (_("unsupported use of .gpdword"));
10181a0d
AO
16262 ignore_rest_of_line ();
16263 }
16264
16265 p = frag_more (8);
17a2f251 16266 md_number_to_chars (p, 0, 8);
a105a300 16267 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
6e1304d8 16268 BFD_RELOC_GPREL32)->fx_tcbit = 1;
10181a0d
AO
16269
16270 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
6e1304d8
RS
16271 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
16272 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
10181a0d
AO
16273
16274 demand_empty_rest_of_line ();
16275}
16276
a3f278e2
CM
16277/* Handle the .ehword pseudo-op. This is used when generating unwinding
16278 tables. It generates a R_MIPS_EH reloc. */
16279
16280static void
16281s_ehword (int ignore ATTRIBUTE_UNUSED)
16282{
16283 expressionS ex;
16284 char *p;
16285
16286 mips_emit_delays ();
16287
16288 expression (&ex);
16289 mips_clear_insn_labels ();
16290
16291 if (ex.X_op != O_symbol || ex.X_add_number != 0)
16292 {
1661c76c 16293 as_bad (_("unsupported use of .ehword"));
a3f278e2
CM
16294 ignore_rest_of_line ();
16295 }
16296
16297 p = frag_more (4);
16298 md_number_to_chars (p, 0, 4);
16299 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
16300 BFD_RELOC_MIPS_EH);
16301
16302 demand_empty_rest_of_line ();
16303}
16304
252b5132
RH
16305/* Handle the .cpadd pseudo-op. This is used when dealing with switch
16306 tables in SVR4 PIC code. */
16307
16308static void
17a2f251 16309s_cpadd (int ignore ATTRIBUTE_UNUSED)
252b5132 16310{
252b5132
RH
16311 int reg;
16312
919731af 16313 file_mips_check_options ();
16314
10181a0d
AO
16315 /* This is ignored when not generating SVR4 PIC code. */
16316 if (mips_pic != SVR4_PIC)
252b5132
RH
16317 {
16318 s_ignore (0);
16319 return;
16320 }
16321
8a75745d
MR
16322 mips_mark_labels ();
16323 mips_assembling_insn = TRUE;
16324
252b5132 16325 /* Add $gp to the register named as an argument. */
584892a6 16326 macro_start ();
252b5132 16327 reg = tc_get_register (0);
67c0d1eb 16328 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
584892a6 16329 macro_end ();
252b5132 16330
8a75745d 16331 mips_assembling_insn = FALSE;
bdaaa2e1 16332 demand_empty_rest_of_line ();
252b5132
RH
16333}
16334
16335/* Handle the .insn pseudo-op. This marks instruction labels in
df58fc94 16336 mips16/micromips mode. This permits the linker to handle them specially,
252b5132
RH
16337 such as generating jalx instructions when needed. We also make
16338 them odd for the duration of the assembly, in order to generate the
16339 right sort of code. We will make them even in the adjust_symtab
16340 routine, while leaving them marked. This is convenient for the
16341 debugger and the disassembler. The linker knows to make them odd
16342 again. */
16343
16344static void
17a2f251 16345s_insn (int ignore ATTRIBUTE_UNUSED)
252b5132 16346{
df58fc94 16347 mips_mark_labels ();
252b5132
RH
16348
16349 demand_empty_rest_of_line ();
16350}
16351
ba92f887
MR
16352/* Handle the .nan pseudo-op. */
16353
16354static void
16355s_nan (int ignore ATTRIBUTE_UNUSED)
16356{
16357 static const char str_legacy[] = "legacy";
16358 static const char str_2008[] = "2008";
16359 size_t i;
16360
16361 for (i = 0; !is_end_of_line[(unsigned char) input_line_pointer[i]]; i++);
16362
16363 if (i == sizeof (str_2008) - 1
16364 && memcmp (input_line_pointer, str_2008, i) == 0)
7361da2c 16365 mips_nan2008 = 1;
ba92f887
MR
16366 else if (i == sizeof (str_legacy) - 1
16367 && memcmp (input_line_pointer, str_legacy, i) == 0)
7361da2c
AB
16368 {
16369 if (ISA_HAS_LEGACY_NAN (file_mips_opts.isa))
16370 mips_nan2008 = 0;
16371 else
16372 as_bad (_("`%s' does not support legacy NaN"),
16373 mips_cpu_info_from_isa (file_mips_opts.isa)->name);
16374 }
ba92f887 16375 else
1661c76c 16376 as_bad (_("bad .nan directive"));
ba92f887
MR
16377
16378 input_line_pointer += i;
16379 demand_empty_rest_of_line ();
16380}
16381
754e2bb9
RS
16382/* Handle a .stab[snd] directive. Ideally these directives would be
16383 implemented in a transparent way, so that removing them would not
16384 have any effect on the generated instructions. However, s_stab
16385 internally changes the section, so in practice we need to decide
16386 now whether the preceding label marks compressed code. We do not
16387 support changing the compression mode of a label after a .stab*
16388 directive, such as in:
16389
16390 foo:
16391 .stabs ...
16392 .set mips16
16393
16394 so the current mode wins. */
252b5132
RH
16395
16396static void
17a2f251 16397s_mips_stab (int type)
252b5132 16398{
754e2bb9 16399 mips_mark_labels ();
252b5132
RH
16400 s_stab (type);
16401}
16402
54f4ddb3 16403/* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
252b5132
RH
16404
16405static void
17a2f251 16406s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
16407{
16408 char *name;
16409 int c;
16410 symbolS *symbolP;
16411 expressionS exp;
16412
16413 name = input_line_pointer;
16414 c = get_symbol_end ();
16415 symbolP = symbol_find_or_make (name);
16416 S_SET_WEAK (symbolP);
16417 *input_line_pointer = c;
16418
16419 SKIP_WHITESPACE ();
16420
16421 if (! is_end_of_line[(unsigned char) *input_line_pointer])
16422 {
16423 if (S_IS_DEFINED (symbolP))
16424 {
20203fb9 16425 as_bad (_("ignoring attempt to redefine symbol %s"),
252b5132
RH
16426 S_GET_NAME (symbolP));
16427 ignore_rest_of_line ();
16428 return;
16429 }
bdaaa2e1 16430
252b5132
RH
16431 if (*input_line_pointer == ',')
16432 {
16433 ++input_line_pointer;
16434 SKIP_WHITESPACE ();
16435 }
bdaaa2e1 16436
252b5132
RH
16437 expression (&exp);
16438 if (exp.X_op != O_symbol)
16439 {
20203fb9 16440 as_bad (_("bad .weakext directive"));
98d3f06f 16441 ignore_rest_of_line ();
252b5132
RH
16442 return;
16443 }
49309057 16444 symbol_set_value_expression (symbolP, &exp);
252b5132
RH
16445 }
16446
16447 demand_empty_rest_of_line ();
16448}
16449
16450/* Parse a register string into a number. Called from the ECOFF code
16451 to parse .frame. The argument is non-zero if this is the frame
16452 register, so that we can record it in mips_frame_reg. */
16453
16454int
17a2f251 16455tc_get_register (int frame)
252b5132 16456{
707bfff6 16457 unsigned int reg;
252b5132
RH
16458
16459 SKIP_WHITESPACE ();
707bfff6
TS
16460 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
16461 reg = 0;
252b5132 16462 if (frame)
7a621144
DJ
16463 {
16464 mips_frame_reg = reg != 0 ? reg : SP;
16465 mips_frame_reg_valid = 1;
16466 mips_cprestore_valid = 0;
16467 }
252b5132
RH
16468 return reg;
16469}
16470
16471valueT
17a2f251 16472md_section_align (asection *seg, valueT addr)
252b5132
RH
16473{
16474 int align = bfd_get_section_alignment (stdoutput, seg);
16475
f3ded42a
RS
16476 /* We don't need to align ELF sections to the full alignment.
16477 However, Irix 5 may prefer that we align them at least to a 16
16478 byte boundary. We don't bother to align the sections if we
16479 are targeted for an embedded system. */
16480 if (strncmp (TARGET_OS, "elf", 3) == 0)
16481 return addr;
16482 if (align > 4)
16483 align = 4;
252b5132
RH
16484
16485 return ((addr + (1 << align) - 1) & (-1 << align));
16486}
16487
16488/* Utility routine, called from above as well. If called while the
16489 input file is still being read, it's only an approximation. (For
16490 example, a symbol may later become defined which appeared to be
16491 undefined earlier.) */
16492
16493static int
17a2f251 16494nopic_need_relax (symbolS *sym, int before_relaxing)
252b5132
RH
16495{
16496 if (sym == 0)
16497 return 0;
16498
4d0d148d 16499 if (g_switch_value > 0)
252b5132
RH
16500 {
16501 const char *symname;
16502 int change;
16503
c9914766 16504 /* Find out whether this symbol can be referenced off the $gp
252b5132
RH
16505 register. It can be if it is smaller than the -G size or if
16506 it is in the .sdata or .sbss section. Certain symbols can
c9914766 16507 not be referenced off the $gp, although it appears as though
252b5132
RH
16508 they can. */
16509 symname = S_GET_NAME (sym);
16510 if (symname != (const char *) NULL
16511 && (strcmp (symname, "eprol") == 0
16512 || strcmp (symname, "etext") == 0
16513 || strcmp (symname, "_gp") == 0
16514 || strcmp (symname, "edata") == 0
16515 || strcmp (symname, "_fbss") == 0
16516 || strcmp (symname, "_fdata") == 0
16517 || strcmp (symname, "_ftext") == 0
16518 || strcmp (symname, "end") == 0
16519 || strcmp (symname, "_gp_disp") == 0))
16520 change = 1;
16521 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
16522 && (0
16523#ifndef NO_ECOFF_DEBUGGING
49309057
ILT
16524 || (symbol_get_obj (sym)->ecoff_extern_size != 0
16525 && (symbol_get_obj (sym)->ecoff_extern_size
16526 <= g_switch_value))
252b5132
RH
16527#endif
16528 /* We must defer this decision until after the whole
16529 file has been read, since there might be a .extern
16530 after the first use of this symbol. */
16531 || (before_relaxing
16532#ifndef NO_ECOFF_DEBUGGING
49309057 16533 && symbol_get_obj (sym)->ecoff_extern_size == 0
252b5132
RH
16534#endif
16535 && S_GET_VALUE (sym) == 0)
16536 || (S_GET_VALUE (sym) != 0
16537 && S_GET_VALUE (sym) <= g_switch_value)))
16538 change = 0;
16539 else
16540 {
16541 const char *segname;
16542
16543 segname = segment_name (S_GET_SEGMENT (sym));
9c2799c2 16544 gas_assert (strcmp (segname, ".lit8") != 0
252b5132
RH
16545 && strcmp (segname, ".lit4") != 0);
16546 change = (strcmp (segname, ".sdata") != 0
fba2b7f9
GK
16547 && strcmp (segname, ".sbss") != 0
16548 && strncmp (segname, ".sdata.", 7) != 0
d4dc2f22
TS
16549 && strncmp (segname, ".sbss.", 6) != 0
16550 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
fba2b7f9 16551 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
252b5132
RH
16552 }
16553 return change;
16554 }
16555 else
c9914766 16556 /* We are not optimizing for the $gp register. */
252b5132
RH
16557 return 1;
16558}
16559
5919d012
RS
16560
16561/* Return true if the given symbol should be considered local for SVR4 PIC. */
16562
16563static bfd_boolean
17a2f251 16564pic_need_relax (symbolS *sym, asection *segtype)
5919d012
RS
16565{
16566 asection *symsec;
5919d012
RS
16567
16568 /* Handle the case of a symbol equated to another symbol. */
16569 while (symbol_equated_reloc_p (sym))
16570 {
16571 symbolS *n;
16572
5f0fe04b 16573 /* It's possible to get a loop here in a badly written program. */
5919d012
RS
16574 n = symbol_get_value_expression (sym)->X_add_symbol;
16575 if (n == sym)
16576 break;
16577 sym = n;
16578 }
16579
df1f3cda
DD
16580 if (symbol_section_p (sym))
16581 return TRUE;
16582
5919d012
RS
16583 symsec = S_GET_SEGMENT (sym);
16584
5919d012 16585 /* This must duplicate the test in adjust_reloc_syms. */
45dfa85a
AM
16586 return (!bfd_is_und_section (symsec)
16587 && !bfd_is_abs_section (symsec)
5f0fe04b
TS
16588 && !bfd_is_com_section (symsec)
16589 && !s_is_linkonce (sym, segtype)
5919d012 16590 /* A global or weak symbol is treated as external. */
f3ded42a 16591 && (!S_IS_WEAK (sym) && !S_IS_EXTERNAL (sym)));
5919d012
RS
16592}
16593
16594
252b5132
RH
16595/* Given a mips16 variant frag FRAGP, return non-zero if it needs an
16596 extended opcode. SEC is the section the frag is in. */
16597
16598static int
17a2f251 16599mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
252b5132
RH
16600{
16601 int type;
3ccad066 16602 const struct mips_int_operand *operand;
252b5132 16603 offsetT val;
252b5132 16604 segT symsec;
98aa84af 16605 fragS *sym_frag;
252b5132
RH
16606
16607 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
16608 return 0;
16609 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
16610 return 1;
16611
16612 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
3ccad066 16613 operand = mips16_immed_operand (type, FALSE);
252b5132 16614
98aa84af 16615 sym_frag = symbol_get_frag (fragp->fr_symbol);
ac62c346 16616 val = S_GET_VALUE (fragp->fr_symbol);
98aa84af 16617 symsec = S_GET_SEGMENT (fragp->fr_symbol);
252b5132 16618
3ccad066 16619 if (operand->root.type == OP_PCREL)
252b5132 16620 {
3ccad066 16621 const struct mips_pcrel_operand *pcrel_op;
252b5132 16622 addressT addr;
3ccad066 16623 offsetT maxtiny;
252b5132
RH
16624
16625 /* We won't have the section when we are called from
16626 mips_relax_frag. However, we will always have been called
16627 from md_estimate_size_before_relax first. If this is a
16628 branch to a different section, we mark it as such. If SEC is
16629 NULL, and the frag is not marked, then it must be a branch to
16630 the same section. */
3ccad066 16631 pcrel_op = (const struct mips_pcrel_operand *) operand;
252b5132
RH
16632 if (sec == NULL)
16633 {
16634 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
16635 return 1;
16636 }
16637 else
16638 {
98aa84af 16639 /* Must have been called from md_estimate_size_before_relax. */
252b5132
RH
16640 if (symsec != sec)
16641 {
16642 fragp->fr_subtype =
16643 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16644
16645 /* FIXME: We should support this, and let the linker
16646 catch branches and loads that are out of range. */
16647 as_bad_where (fragp->fr_file, fragp->fr_line,
16648 _("unsupported PC relative reference to different section"));
16649
16650 return 1;
16651 }
98aa84af
AM
16652 if (fragp != sym_frag && sym_frag->fr_address == 0)
16653 /* Assume non-extended on the first relaxation pass.
16654 The address we have calculated will be bogus if this is
16655 a forward branch to another frag, as the forward frag
16656 will have fr_address == 0. */
16657 return 0;
252b5132
RH
16658 }
16659
16660 /* In this case, we know for sure that the symbol fragment is in
98aa84af
AM
16661 the same section. If the relax_marker of the symbol fragment
16662 differs from the relax_marker of this fragment, we have not
16663 yet adjusted the symbol fragment fr_address. We want to add
252b5132
RH
16664 in STRETCH in order to get a better estimate of the address.
16665 This particularly matters because of the shift bits. */
16666 if (stretch != 0
98aa84af 16667 && sym_frag->relax_marker != fragp->relax_marker)
252b5132
RH
16668 {
16669 fragS *f;
16670
16671 /* Adjust stretch for any alignment frag. Note that if have
16672 been expanding the earlier code, the symbol may be
16673 defined in what appears to be an earlier frag. FIXME:
16674 This doesn't handle the fr_subtype field, which specifies
16675 a maximum number of bytes to skip when doing an
16676 alignment. */
98aa84af 16677 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
252b5132
RH
16678 {
16679 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
16680 {
16681 if (stretch < 0)
16682 stretch = - ((- stretch)
16683 & ~ ((1 << (int) f->fr_offset) - 1));
16684 else
16685 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
16686 if (stretch == 0)
16687 break;
16688 }
16689 }
16690 if (f != NULL)
16691 val += stretch;
16692 }
16693
16694 addr = fragp->fr_address + fragp->fr_fix;
16695
16696 /* The base address rules are complicated. The base address of
16697 a branch is the following instruction. The base address of a
16698 PC relative load or add is the instruction itself, but if it
16699 is in a delay slot (in which case it can not be extended) use
16700 the address of the instruction whose delay slot it is in. */
3ccad066 16701 if (pcrel_op->include_isa_bit)
252b5132
RH
16702 {
16703 addr += 2;
16704
16705 /* If we are currently assuming that this frag should be
16706 extended, then, the current address is two bytes
bdaaa2e1 16707 higher. */
252b5132
RH
16708 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
16709 addr += 2;
16710
16711 /* Ignore the low bit in the target, since it will be set
16712 for a text label. */
3ccad066 16713 val &= -2;
252b5132
RH
16714 }
16715 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
16716 addr -= 4;
16717 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
16718 addr -= 2;
16719
3ccad066 16720 val -= addr & -(1 << pcrel_op->align_log2);
252b5132
RH
16721
16722 /* If any of the shifted bits are set, we must use an extended
16723 opcode. If the address depends on the size of this
16724 instruction, this can lead to a loop, so we arrange to always
16725 use an extended opcode. We only check this when we are in
16726 the main relaxation loop, when SEC is NULL. */
3ccad066 16727 if ((val & ((1 << operand->shift) - 1)) != 0 && sec == NULL)
252b5132
RH
16728 {
16729 fragp->fr_subtype =
16730 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16731 return 1;
16732 }
16733
16734 /* If we are about to mark a frag as extended because the value
3ccad066
RS
16735 is precisely the next value above maxtiny, then there is a
16736 chance of an infinite loop as in the following code:
252b5132
RH
16737 la $4,foo
16738 .skip 1020
16739 .align 2
16740 foo:
16741 In this case when the la is extended, foo is 0x3fc bytes
16742 away, so the la can be shrunk, but then foo is 0x400 away, so
16743 the la must be extended. To avoid this loop, we mark the
16744 frag as extended if it was small, and is about to become
3ccad066
RS
16745 extended with the next value above maxtiny. */
16746 maxtiny = mips_int_operand_max (operand);
16747 if (val == maxtiny + (1 << operand->shift)
252b5132
RH
16748 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
16749 && sec == NULL)
16750 {
16751 fragp->fr_subtype =
16752 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16753 return 1;
16754 }
16755 }
16756 else if (symsec != absolute_section && sec != NULL)
16757 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
16758
3ccad066 16759 return !mips16_immed_in_range_p (operand, BFD_RELOC_UNUSED, val);
252b5132
RH
16760}
16761
4a6a3df4
AO
16762/* Compute the length of a branch sequence, and adjust the
16763 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
16764 worst-case length is computed, with UPDATE being used to indicate
16765 whether an unconditional (-1), branch-likely (+1) or regular (0)
16766 branch is to be computed. */
16767static int
17a2f251 16768relaxed_branch_length (fragS *fragp, asection *sec, int update)
4a6a3df4 16769{
b34976b6 16770 bfd_boolean toofar;
4a6a3df4
AO
16771 int length;
16772
16773 if (fragp
16774 && S_IS_DEFINED (fragp->fr_symbol)
16775 && sec == S_GET_SEGMENT (fragp->fr_symbol))
16776 {
16777 addressT addr;
16778 offsetT val;
16779
16780 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16781
16782 addr = fragp->fr_address + fragp->fr_fix + 4;
16783
16784 val -= addr;
16785
16786 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
16787 }
16788 else if (fragp)
16789 /* If the symbol is not defined or it's in a different segment,
16790 assume the user knows what's going on and emit a short
16791 branch. */
b34976b6 16792 toofar = FALSE;
4a6a3df4 16793 else
b34976b6 16794 toofar = TRUE;
4a6a3df4
AO
16795
16796 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
16797 fragp->fr_subtype
66b3e8da
MR
16798 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
16799 RELAX_BRANCH_UNCOND (fragp->fr_subtype),
4a6a3df4
AO
16800 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
16801 RELAX_BRANCH_LINK (fragp->fr_subtype),
16802 toofar);
16803
16804 length = 4;
16805 if (toofar)
16806 {
16807 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
16808 length += 8;
16809
16810 if (mips_pic != NO_PIC)
16811 {
16812 /* Additional space for PIC loading of target address. */
16813 length += 8;
16814 if (mips_opts.isa == ISA_MIPS1)
16815 /* Additional space for $at-stabilizing nop. */
16816 length += 4;
16817 }
16818
16819 /* If branch is conditional. */
16820 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
16821 length += 8;
16822 }
b34976b6 16823
4a6a3df4
AO
16824 return length;
16825}
16826
df58fc94
RS
16827/* Compute the length of a branch sequence, and adjust the
16828 RELAX_MICROMIPS_TOOFAR32 bit accordingly. If FRAGP is NULL, the
16829 worst-case length is computed, with UPDATE being used to indicate
16830 whether an unconditional (-1), or regular (0) branch is to be
16831 computed. */
16832
16833static int
16834relaxed_micromips_32bit_branch_length (fragS *fragp, asection *sec, int update)
16835{
16836 bfd_boolean toofar;
16837 int length;
16838
16839 if (fragp
16840 && S_IS_DEFINED (fragp->fr_symbol)
16841 && sec == S_GET_SEGMENT (fragp->fr_symbol))
16842 {
16843 addressT addr;
16844 offsetT val;
16845
16846 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16847 /* Ignore the low bit in the target, since it will be set
16848 for a text label. */
16849 if ((val & 1) != 0)
16850 --val;
16851
16852 addr = fragp->fr_address + fragp->fr_fix + 4;
16853
16854 val -= addr;
16855
16856 toofar = val < - (0x8000 << 1) || val >= (0x8000 << 1);
16857 }
16858 else if (fragp)
16859 /* If the symbol is not defined or it's in a different segment,
16860 assume the user knows what's going on and emit a short
16861 branch. */
16862 toofar = FALSE;
16863 else
16864 toofar = TRUE;
16865
16866 if (fragp && update
16867 && toofar != RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
16868 fragp->fr_subtype = (toofar
16869 ? RELAX_MICROMIPS_MARK_TOOFAR32 (fragp->fr_subtype)
16870 : RELAX_MICROMIPS_CLEAR_TOOFAR32 (fragp->fr_subtype));
16871
16872 length = 4;
16873 if (toofar)
16874 {
16875 bfd_boolean compact_known = fragp != NULL;
16876 bfd_boolean compact = FALSE;
16877 bfd_boolean uncond;
16878
16879 if (compact_known)
16880 compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
16881 if (fragp)
16882 uncond = RELAX_MICROMIPS_UNCOND (fragp->fr_subtype);
16883 else
16884 uncond = update < 0;
16885
16886 /* If label is out of range, we turn branch <br>:
16887
16888 <br> label # 4 bytes
16889 0:
16890
16891 into:
16892
16893 j label # 4 bytes
16894 nop # 2 bytes if compact && !PIC
16895 0:
16896 */
16897 if (mips_pic == NO_PIC && (!compact_known || compact))
16898 length += 2;
16899
16900 /* If assembling PIC code, we further turn:
16901
16902 j label # 4 bytes
16903
16904 into:
16905
16906 lw/ld at, %got(label)(gp) # 4 bytes
16907 d/addiu at, %lo(label) # 4 bytes
16908 jr/c at # 2 bytes
16909 */
16910 if (mips_pic != NO_PIC)
16911 length += 6;
16912
16913 /* If branch <br> is conditional, we prepend negated branch <brneg>:
16914
16915 <brneg> 0f # 4 bytes
16916 nop # 2 bytes if !compact
16917 */
16918 if (!uncond)
16919 length += (compact_known && compact) ? 4 : 6;
16920 }
16921
16922 return length;
16923}
16924
16925/* Compute the length of a branch, and adjust the RELAX_MICROMIPS_TOOFAR16
16926 bit accordingly. */
16927
16928static int
16929relaxed_micromips_16bit_branch_length (fragS *fragp, asection *sec, int update)
16930{
16931 bfd_boolean toofar;
16932
df58fc94
RS
16933 if (fragp
16934 && S_IS_DEFINED (fragp->fr_symbol)
16935 && sec == S_GET_SEGMENT (fragp->fr_symbol))
16936 {
16937 addressT addr;
16938 offsetT val;
16939 int type;
16940
16941 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16942 /* Ignore the low bit in the target, since it will be set
16943 for a text label. */
16944 if ((val & 1) != 0)
16945 --val;
16946
16947 /* Assume this is a 2-byte branch. */
16948 addr = fragp->fr_address + fragp->fr_fix + 2;
16949
16950 /* We try to avoid the infinite loop by not adding 2 more bytes for
16951 long branches. */
16952
16953 val -= addr;
16954
16955 type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
16956 if (type == 'D')
16957 toofar = val < - (0x200 << 1) || val >= (0x200 << 1);
16958 else if (type == 'E')
16959 toofar = val < - (0x40 << 1) || val >= (0x40 << 1);
16960 else
16961 abort ();
16962 }
16963 else
16964 /* If the symbol is not defined or it's in a different segment,
16965 we emit a normal 32-bit branch. */
16966 toofar = TRUE;
16967
16968 if (fragp && update
16969 && toofar != RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
16970 fragp->fr_subtype
16971 = toofar ? RELAX_MICROMIPS_MARK_TOOFAR16 (fragp->fr_subtype)
16972 : RELAX_MICROMIPS_CLEAR_TOOFAR16 (fragp->fr_subtype);
16973
16974 if (toofar)
16975 return 4;
16976
16977 return 2;
16978}
16979
252b5132
RH
16980/* Estimate the size of a frag before relaxing. Unless this is the
16981 mips16, we are not really relaxing here, and the final size is
16982 encoded in the subtype information. For the mips16, we have to
16983 decide whether we are using an extended opcode or not. */
16984
252b5132 16985int
17a2f251 16986md_estimate_size_before_relax (fragS *fragp, asection *segtype)
252b5132 16987{
5919d012 16988 int change;
252b5132 16989
4a6a3df4
AO
16990 if (RELAX_BRANCH_P (fragp->fr_subtype))
16991 {
16992
b34976b6
AM
16993 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
16994
4a6a3df4
AO
16995 return fragp->fr_var;
16996 }
16997
252b5132 16998 if (RELAX_MIPS16_P (fragp->fr_subtype))
177b4a6a
AO
16999 /* We don't want to modify the EXTENDED bit here; it might get us
17000 into infinite loops. We change it only in mips_relax_frag(). */
17001 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
252b5132 17002
df58fc94
RS
17003 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17004 {
17005 int length = 4;
17006
17007 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17008 length = relaxed_micromips_16bit_branch_length (fragp, segtype, FALSE);
17009 if (length == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17010 length = relaxed_micromips_32bit_branch_length (fragp, segtype, FALSE);
17011 fragp->fr_var = length;
17012
17013 return length;
17014 }
17015
252b5132 17016 if (mips_pic == NO_PIC)
5919d012 17017 change = nopic_need_relax (fragp->fr_symbol, 0);
252b5132 17018 else if (mips_pic == SVR4_PIC)
5919d012 17019 change = pic_need_relax (fragp->fr_symbol, segtype);
0a44bf69
RS
17020 else if (mips_pic == VXWORKS_PIC)
17021 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
17022 change = 0;
252b5132
RH
17023 else
17024 abort ();
17025
17026 if (change)
17027 {
4d7206a2 17028 fragp->fr_subtype |= RELAX_USE_SECOND;
4d7206a2 17029 return -RELAX_FIRST (fragp->fr_subtype);
252b5132 17030 }
4d7206a2
RS
17031 else
17032 return -RELAX_SECOND (fragp->fr_subtype);
252b5132
RH
17033}
17034
17035/* This is called to see whether a reloc against a defined symbol
de7e6852 17036 should be converted into a reloc against a section. */
252b5132
RH
17037
17038int
17a2f251 17039mips_fix_adjustable (fixS *fixp)
252b5132 17040{
252b5132
RH
17041 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
17042 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17043 return 0;
a161fe53 17044
252b5132
RH
17045 if (fixp->fx_addsy == NULL)
17046 return 1;
a161fe53 17047
de7e6852
RS
17048 /* If symbol SYM is in a mergeable section, relocations of the form
17049 SYM + 0 can usually be made section-relative. The mergeable data
17050 is then identified by the section offset rather than by the symbol.
17051
17052 However, if we're generating REL LO16 relocations, the offset is split
17053 between the LO16 and parterning high part relocation. The linker will
17054 need to recalculate the complete offset in order to correctly identify
17055 the merge data.
17056
17057 The linker has traditionally not looked for the parterning high part
17058 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
17059 placed anywhere. Rather than break backwards compatibility by changing
17060 this, it seems better not to force the issue, and instead keep the
17061 original symbol. This will work with either linker behavior. */
738e5348 17062 if ((lo16_reloc_p (fixp->fx_r_type)
704803a9 17063 || reloc_needs_lo_p (fixp->fx_r_type))
de7e6852
RS
17064 && HAVE_IN_PLACE_ADDENDS
17065 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
17066 return 0;
17067
ce70d90a 17068 /* There is no place to store an in-place offset for JALR relocations.
2de39019
CM
17069 Likewise an in-range offset of limited PC-relative relocations may
17070 overflow the in-place relocatable field if recalculated against the
7361da2c
AB
17071 start address of the symbol's containing section.
17072
17073 Also, PC relative relocations for MIPS R6 need to be symbol rather than
17074 section relative to allow linker relaxations to be performed later on. */
17075 if ((HAVE_IN_PLACE_ADDENDS || ISA_IS_R6 (mips_opts.isa))
2de39019
CM
17076 && (limited_pcrel_reloc_p (fixp->fx_r_type)
17077 || jalr_reloc_p (fixp->fx_r_type)))
1180b5a4
RS
17078 return 0;
17079
b314ec0e
RS
17080 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
17081 to a floating-point stub. The same is true for non-R_MIPS16_26
17082 relocations against MIPS16 functions; in this case, the stub becomes
17083 the function's canonical address.
17084
17085 Floating-point stubs are stored in unique .mips16.call.* or
17086 .mips16.fn.* sections. If a stub T for function F is in section S,
17087 the first relocation in section S must be against F; this is how the
17088 linker determines the target function. All relocations that might
17089 resolve to T must also be against F. We therefore have the following
17090 restrictions, which are given in an intentionally-redundant way:
17091
17092 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
17093 symbols.
17094
17095 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
17096 if that stub might be used.
17097
17098 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
17099 symbols.
17100
17101 4. We cannot reduce a stub's relocations against MIPS16 symbols if
17102 that stub might be used.
17103
17104 There is a further restriction:
17105
df58fc94
RS
17106 5. We cannot reduce jump relocations (R_MIPS_26, R_MIPS16_26 or
17107 R_MICROMIPS_26_S1) against MIPS16 or microMIPS symbols on
17108 targets with in-place addends; the relocation field cannot
b314ec0e
RS
17109 encode the low bit.
17110
df58fc94
RS
17111 For simplicity, we deal with (3)-(4) by not reducing _any_ relocation
17112 against a MIPS16 symbol. We deal with (5) by by not reducing any
17113 such relocations on REL targets.
b314ec0e
RS
17114
17115 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
17116 relocation against some symbol R, no relocation against R may be
17117 reduced. (Note that this deals with (2) as well as (1) because
17118 relocations against global symbols will never be reduced on ELF
17119 targets.) This approach is a little simpler than trying to detect
17120 stub sections, and gives the "all or nothing" per-symbol consistency
17121 that we have for MIPS16 symbols. */
f3ded42a 17122 if (fixp->fx_subsy == NULL
30c09090 17123 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
df58fc94
RS
17124 || *symbol_get_tc (fixp->fx_addsy)
17125 || (HAVE_IN_PLACE_ADDENDS
17126 && ELF_ST_IS_MICROMIPS (S_GET_OTHER (fixp->fx_addsy))
17127 && jmp_reloc_p (fixp->fx_r_type))))
252b5132 17128 return 0;
a161fe53 17129
252b5132
RH
17130 return 1;
17131}
17132
17133/* Translate internal representation of relocation info to BFD target
17134 format. */
17135
17136arelent **
17a2f251 17137tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
17138{
17139 static arelent *retval[4];
17140 arelent *reloc;
17141 bfd_reloc_code_real_type code;
17142
4b0cff4e
TS
17143 memset (retval, 0, sizeof(retval));
17144 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
49309057
ILT
17145 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
17146 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
17147 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
17148
bad36eac
DJ
17149 if (fixp->fx_pcrel)
17150 {
df58fc94
RS
17151 gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
17152 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
17153 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
b47468a6 17154 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
7361da2c
AB
17155 || fixp->fx_r_type == BFD_RELOC_32_PCREL
17156 || fixp->fx_r_type == BFD_RELOC_MIPS_21_PCREL_S2
17157 || fixp->fx_r_type == BFD_RELOC_MIPS_26_PCREL_S2
17158 || fixp->fx_r_type == BFD_RELOC_MIPS_18_PCREL_S3
17159 || fixp->fx_r_type == BFD_RELOC_MIPS_19_PCREL_S2
17160 || fixp->fx_r_type == BFD_RELOC_HI16_S_PCREL
17161 || fixp->fx_r_type == BFD_RELOC_LO16_PCREL);
bad36eac
DJ
17162
17163 /* At this point, fx_addnumber is "symbol offset - pcrel address".
17164 Relocations want only the symbol offset. */
17165 reloc->addend = fixp->fx_addnumber + reloc->address;
bad36eac
DJ
17166 }
17167 else
17168 reloc->addend = fixp->fx_addnumber;
252b5132 17169
438c16b8
TS
17170 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
17171 entry to be used in the relocation's section offset. */
17172 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
252b5132
RH
17173 {
17174 reloc->address = reloc->addend;
17175 reloc->addend = 0;
17176 }
17177
252b5132 17178 code = fixp->fx_r_type;
252b5132 17179
bad36eac 17180 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
252b5132
RH
17181 if (reloc->howto == NULL)
17182 {
17183 as_bad_where (fixp->fx_file, fixp->fx_line,
1661c76c
RS
17184 _("cannot represent %s relocation in this object file"
17185 " format"),
252b5132
RH
17186 bfd_get_reloc_code_name (code));
17187 retval[0] = NULL;
17188 }
17189
17190 return retval;
17191}
17192
17193/* Relax a machine dependent frag. This returns the amount by which
17194 the current size of the frag should change. */
17195
17196int
17a2f251 17197mips_relax_frag (asection *sec, fragS *fragp, long stretch)
252b5132 17198{
4a6a3df4
AO
17199 if (RELAX_BRANCH_P (fragp->fr_subtype))
17200 {
17201 offsetT old_var = fragp->fr_var;
b34976b6
AM
17202
17203 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
4a6a3df4
AO
17204
17205 return fragp->fr_var - old_var;
17206 }
17207
df58fc94
RS
17208 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17209 {
17210 offsetT old_var = fragp->fr_var;
17211 offsetT new_var = 4;
17212
17213 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17214 new_var = relaxed_micromips_16bit_branch_length (fragp, sec, TRUE);
17215 if (new_var == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17216 new_var = relaxed_micromips_32bit_branch_length (fragp, sec, TRUE);
17217 fragp->fr_var = new_var;
17218
17219 return new_var - old_var;
17220 }
17221
252b5132
RH
17222 if (! RELAX_MIPS16_P (fragp->fr_subtype))
17223 return 0;
17224
c4e7957c 17225 if (mips16_extended_frag (fragp, NULL, stretch))
252b5132
RH
17226 {
17227 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17228 return 0;
17229 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
17230 return 2;
17231 }
17232 else
17233 {
17234 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17235 return 0;
17236 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
17237 return -2;
17238 }
17239
17240 return 0;
17241}
17242
17243/* Convert a machine dependent frag. */
17244
17245void
17a2f251 17246md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
252b5132 17247{
4a6a3df4
AO
17248 if (RELAX_BRANCH_P (fragp->fr_subtype))
17249 {
4d68580a 17250 char *buf;
4a6a3df4
AO
17251 unsigned long insn;
17252 expressionS exp;
17253 fixS *fixp;
b34976b6 17254
4d68580a
RS
17255 buf = fragp->fr_literal + fragp->fr_fix;
17256 insn = read_insn (buf);
b34976b6 17257
4a6a3df4
AO
17258 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
17259 {
17260 /* We generate a fixup instead of applying it right now
17261 because, if there are linker relaxations, we're going to
17262 need the relocations. */
17263 exp.X_op = O_symbol;
17264 exp.X_add_symbol = fragp->fr_symbol;
17265 exp.X_add_number = fragp->fr_offset;
17266
4d68580a
RS
17267 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
17268 BFD_RELOC_16_PCREL_S2);
4a6a3df4
AO
17269 fixp->fx_file = fragp->fr_file;
17270 fixp->fx_line = fragp->fr_line;
b34976b6 17271
4d68580a 17272 buf = write_insn (buf, insn);
4a6a3df4
AO
17273 }
17274 else
17275 {
17276 int i;
17277
17278 as_warn_where (fragp->fr_file, fragp->fr_line,
1661c76c 17279 _("relaxed out-of-range branch into a jump"));
4a6a3df4
AO
17280
17281 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
17282 goto uncond;
17283
17284 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17285 {
17286 /* Reverse the branch. */
17287 switch ((insn >> 28) & 0xf)
17288 {
17289 case 4:
56d438b1
CF
17290 if ((insn & 0xff000000) == 0x47000000
17291 || (insn & 0xff600000) == 0x45600000)
17292 {
17293 /* BZ.df/BNZ.df, BZ.V/BNZ.V can have the condition
17294 reversed by tweaking bit 23. */
17295 insn ^= 0x00800000;
17296 }
17297 else
17298 {
17299 /* bc[0-3][tf]l? instructions can have the condition
17300 reversed by tweaking a single TF bit, and their
17301 opcodes all have 0x4???????. */
17302 gas_assert ((insn & 0xf3e00000) == 0x41000000);
17303 insn ^= 0x00010000;
17304 }
4a6a3df4
AO
17305 break;
17306
17307 case 0:
17308 /* bltz 0x04000000 bgez 0x04010000
54f4ddb3 17309 bltzal 0x04100000 bgezal 0x04110000 */
9c2799c2 17310 gas_assert ((insn & 0xfc0e0000) == 0x04000000);
4a6a3df4
AO
17311 insn ^= 0x00010000;
17312 break;
b34976b6 17313
4a6a3df4
AO
17314 case 1:
17315 /* beq 0x10000000 bne 0x14000000
54f4ddb3 17316 blez 0x18000000 bgtz 0x1c000000 */
4a6a3df4
AO
17317 insn ^= 0x04000000;
17318 break;
17319
17320 default:
17321 abort ();
17322 }
17323 }
17324
17325 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
17326 {
17327 /* Clear the and-link bit. */
9c2799c2 17328 gas_assert ((insn & 0xfc1c0000) == 0x04100000);
4a6a3df4 17329
54f4ddb3
TS
17330 /* bltzal 0x04100000 bgezal 0x04110000
17331 bltzall 0x04120000 bgezall 0x04130000 */
4a6a3df4
AO
17332 insn &= ~0x00100000;
17333 }
17334
17335 /* Branch over the branch (if the branch was likely) or the
17336 full jump (not likely case). Compute the offset from the
17337 current instruction to branch to. */
17338 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17339 i = 16;
17340 else
17341 {
17342 /* How many bytes in instructions we've already emitted? */
4d68580a 17343 i = buf - fragp->fr_literal - fragp->fr_fix;
4a6a3df4
AO
17344 /* How many bytes in instructions from here to the end? */
17345 i = fragp->fr_var - i;
17346 }
17347 /* Convert to instruction count. */
17348 i >>= 2;
17349 /* Branch counts from the next instruction. */
b34976b6 17350 i--;
4a6a3df4
AO
17351 insn |= i;
17352 /* Branch over the jump. */
4d68580a 17353 buf = write_insn (buf, insn);
4a6a3df4 17354
54f4ddb3 17355 /* nop */
4d68580a 17356 buf = write_insn (buf, 0);
4a6a3df4
AO
17357
17358 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17359 {
17360 /* beql $0, $0, 2f */
17361 insn = 0x50000000;
17362 /* Compute the PC offset from the current instruction to
17363 the end of the variable frag. */
17364 /* How many bytes in instructions we've already emitted? */
4d68580a 17365 i = buf - fragp->fr_literal - fragp->fr_fix;
4a6a3df4
AO
17366 /* How many bytes in instructions from here to the end? */
17367 i = fragp->fr_var - i;
17368 /* Convert to instruction count. */
17369 i >>= 2;
17370 /* Don't decrement i, because we want to branch over the
17371 delay slot. */
4a6a3df4 17372 insn |= i;
4a6a3df4 17373
4d68580a
RS
17374 buf = write_insn (buf, insn);
17375 buf = write_insn (buf, 0);
4a6a3df4
AO
17376 }
17377
17378 uncond:
17379 if (mips_pic == NO_PIC)
17380 {
17381 /* j or jal. */
17382 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
17383 ? 0x0c000000 : 0x08000000);
17384 exp.X_op = O_symbol;
17385 exp.X_add_symbol = fragp->fr_symbol;
17386 exp.X_add_number = fragp->fr_offset;
17387
4d68580a
RS
17388 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17389 FALSE, BFD_RELOC_MIPS_JMP);
4a6a3df4
AO
17390 fixp->fx_file = fragp->fr_file;
17391 fixp->fx_line = fragp->fr_line;
17392
4d68580a 17393 buf = write_insn (buf, insn);
4a6a3df4
AO
17394 }
17395 else
17396 {
66b3e8da
MR
17397 unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
17398
4a6a3df4 17399 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
66b3e8da
MR
17400 insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
17401 insn |= at << OP_SH_RT;
4a6a3df4
AO
17402 exp.X_op = O_symbol;
17403 exp.X_add_symbol = fragp->fr_symbol;
17404 exp.X_add_number = fragp->fr_offset;
17405
17406 if (fragp->fr_offset)
17407 {
17408 exp.X_add_symbol = make_expr_symbol (&exp);
17409 exp.X_add_number = 0;
17410 }
17411
4d68580a
RS
17412 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17413 FALSE, BFD_RELOC_MIPS_GOT16);
4a6a3df4
AO
17414 fixp->fx_file = fragp->fr_file;
17415 fixp->fx_line = fragp->fr_line;
17416
4d68580a 17417 buf = write_insn (buf, insn);
b34976b6 17418
4a6a3df4 17419 if (mips_opts.isa == ISA_MIPS1)
4d68580a
RS
17420 /* nop */
17421 buf = write_insn (buf, 0);
4a6a3df4
AO
17422
17423 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
66b3e8da
MR
17424 insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
17425 insn |= at << OP_SH_RS | at << OP_SH_RT;
4a6a3df4 17426
4d68580a
RS
17427 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17428 FALSE, BFD_RELOC_LO16);
4a6a3df4
AO
17429 fixp->fx_file = fragp->fr_file;
17430 fixp->fx_line = fragp->fr_line;
b34976b6 17431
4d68580a 17432 buf = write_insn (buf, insn);
4a6a3df4
AO
17433
17434 /* j(al)r $at. */
17435 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
66b3e8da 17436 insn = 0x0000f809;
4a6a3df4 17437 else
66b3e8da
MR
17438 insn = 0x00000008;
17439 insn |= at << OP_SH_RS;
4a6a3df4 17440
4d68580a 17441 buf = write_insn (buf, insn);
4a6a3df4
AO
17442 }
17443 }
17444
4a6a3df4 17445 fragp->fr_fix += fragp->fr_var;
4d68580a 17446 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
4a6a3df4
AO
17447 return;
17448 }
17449
df58fc94
RS
17450 /* Relax microMIPS branches. */
17451 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17452 {
4d68580a 17453 char *buf = fragp->fr_literal + fragp->fr_fix;
df58fc94
RS
17454 bfd_boolean compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
17455 bfd_boolean al = RELAX_MICROMIPS_LINK (fragp->fr_subtype);
17456 int type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
2309ddf2 17457 bfd_boolean short_ds;
df58fc94
RS
17458 unsigned long insn;
17459 expressionS exp;
17460 fixS *fixp;
17461
17462 exp.X_op = O_symbol;
17463 exp.X_add_symbol = fragp->fr_symbol;
17464 exp.X_add_number = fragp->fr_offset;
17465
17466 fragp->fr_fix += fragp->fr_var;
17467
17468 /* Handle 16-bit branches that fit or are forced to fit. */
17469 if (type != 0 && !RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
17470 {
17471 /* We generate a fixup instead of applying it right now,
17472 because if there is linker relaxation, we're going to
17473 need the relocations. */
17474 if (type == 'D')
4d68580a 17475 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
df58fc94
RS
17476 BFD_RELOC_MICROMIPS_10_PCREL_S1);
17477 else if (type == 'E')
4d68580a 17478 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
df58fc94
RS
17479 BFD_RELOC_MICROMIPS_7_PCREL_S1);
17480 else
17481 abort ();
17482
17483 fixp->fx_file = fragp->fr_file;
17484 fixp->fx_line = fragp->fr_line;
17485
17486 /* These relocations can have an addend that won't fit in
17487 2 octets. */
17488 fixp->fx_no_overflow = 1;
17489
17490 return;
17491 }
17492
2309ddf2 17493 /* Handle 32-bit branches that fit or are forced to fit. */
df58fc94
RS
17494 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
17495 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17496 {
17497 /* We generate a fixup instead of applying it right now,
17498 because if there is linker relaxation, we're going to
17499 need the relocations. */
4d68580a
RS
17500 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
17501 BFD_RELOC_MICROMIPS_16_PCREL_S1);
df58fc94
RS
17502 fixp->fx_file = fragp->fr_file;
17503 fixp->fx_line = fragp->fr_line;
17504
17505 if (type == 0)
17506 return;
17507 }
17508
17509 /* Relax 16-bit branches to 32-bit branches. */
17510 if (type != 0)
17511 {
4d68580a 17512 insn = read_compressed_insn (buf, 2);
df58fc94
RS
17513
17514 if ((insn & 0xfc00) == 0xcc00) /* b16 */
17515 insn = 0x94000000; /* beq */
17516 else if ((insn & 0xdc00) == 0x8c00) /* beqz16/bnez16 */
17517 {
17518 unsigned long regno;
17519
17520 regno = (insn >> MICROMIPSOP_SH_MD) & MICROMIPSOP_MASK_MD;
17521 regno = micromips_to_32_reg_d_map [regno];
17522 insn = ((insn & 0x2000) << 16) | 0x94000000; /* beq/bne */
17523 insn |= regno << MICROMIPSOP_SH_RS;
17524 }
17525 else
17526 abort ();
17527
17528 /* Nothing else to do, just write it out. */
17529 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
17530 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17531 {
4d68580a
RS
17532 buf = write_compressed_insn (buf, insn, 4);
17533 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
df58fc94
RS
17534 return;
17535 }
17536 }
17537 else
4d68580a 17538 insn = read_compressed_insn (buf, 4);
df58fc94
RS
17539
17540 /* Relax 32-bit branches to a sequence of instructions. */
17541 as_warn_where (fragp->fr_file, fragp->fr_line,
1661c76c 17542 _("relaxed out-of-range branch into a jump"));
df58fc94 17543
2309ddf2
MR
17544 /* Set the short-delay-slot bit. */
17545 short_ds = al && (insn & 0x02000000) != 0;
df58fc94
RS
17546
17547 if (!RELAX_MICROMIPS_UNCOND (fragp->fr_subtype))
17548 {
17549 symbolS *l;
17550
17551 /* Reverse the branch. */
17552 if ((insn & 0xfc000000) == 0x94000000 /* beq */
17553 || (insn & 0xfc000000) == 0xb4000000) /* bne */
17554 insn ^= 0x20000000;
17555 else if ((insn & 0xffe00000) == 0x40000000 /* bltz */
17556 || (insn & 0xffe00000) == 0x40400000 /* bgez */
17557 || (insn & 0xffe00000) == 0x40800000 /* blez */
17558 || (insn & 0xffe00000) == 0x40c00000 /* bgtz */
17559 || (insn & 0xffe00000) == 0x40a00000 /* bnezc */
17560 || (insn & 0xffe00000) == 0x40e00000 /* beqzc */
17561 || (insn & 0xffe00000) == 0x40200000 /* bltzal */
17562 || (insn & 0xffe00000) == 0x40600000 /* bgezal */
17563 || (insn & 0xffe00000) == 0x42200000 /* bltzals */
17564 || (insn & 0xffe00000) == 0x42600000) /* bgezals */
17565 insn ^= 0x00400000;
17566 else if ((insn & 0xffe30000) == 0x43800000 /* bc1f */
17567 || (insn & 0xffe30000) == 0x43a00000 /* bc1t */
17568 || (insn & 0xffe30000) == 0x42800000 /* bc2f */
17569 || (insn & 0xffe30000) == 0x42a00000) /* bc2t */
17570 insn ^= 0x00200000;
56d438b1
CF
17571 else if ((insn & 0xff000000) == 0x83000000 /* BZ.df
17572 BNZ.df */
17573 || (insn & 0xff600000) == 0x81600000) /* BZ.V
17574 BNZ.V */
17575 insn ^= 0x00800000;
df58fc94
RS
17576 else
17577 abort ();
17578
17579 if (al)
17580 {
17581 /* Clear the and-link and short-delay-slot bits. */
17582 gas_assert ((insn & 0xfda00000) == 0x40200000);
17583
17584 /* bltzal 0x40200000 bgezal 0x40600000 */
17585 /* bltzals 0x42200000 bgezals 0x42600000 */
17586 insn &= ~0x02200000;
17587 }
17588
17589 /* Make a label at the end for use with the branch. */
17590 l = symbol_new (micromips_label_name (), asec, fragp->fr_fix, fragp);
17591 micromips_label_inc ();
f3ded42a 17592 S_SET_OTHER (l, ELF_ST_SET_MICROMIPS (S_GET_OTHER (l)));
df58fc94
RS
17593
17594 /* Refer to it. */
4d68580a
RS
17595 fixp = fix_new (fragp, buf - fragp->fr_literal, 4, l, 0, TRUE,
17596 BFD_RELOC_MICROMIPS_16_PCREL_S1);
df58fc94
RS
17597 fixp->fx_file = fragp->fr_file;
17598 fixp->fx_line = fragp->fr_line;
17599
17600 /* Branch over the jump. */
4d68580a 17601 buf = write_compressed_insn (buf, insn, 4);
df58fc94 17602 if (!compact)
4d68580a
RS
17603 /* nop */
17604 buf = write_compressed_insn (buf, 0x0c00, 2);
df58fc94
RS
17605 }
17606
17607 if (mips_pic == NO_PIC)
17608 {
2309ddf2
MR
17609 unsigned long jal = short_ds ? 0x74000000 : 0xf4000000; /* jal/s */
17610
df58fc94
RS
17611 /* j/jal/jals <sym> R_MICROMIPS_26_S1 */
17612 insn = al ? jal : 0xd4000000;
17613
4d68580a
RS
17614 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17615 BFD_RELOC_MICROMIPS_JMP);
df58fc94
RS
17616 fixp->fx_file = fragp->fr_file;
17617 fixp->fx_line = fragp->fr_line;
17618
4d68580a 17619 buf = write_compressed_insn (buf, insn, 4);
df58fc94 17620 if (compact)
4d68580a
RS
17621 /* nop */
17622 buf = write_compressed_insn (buf, 0x0c00, 2);
df58fc94
RS
17623 }
17624 else
17625 {
17626 unsigned long at = RELAX_MICROMIPS_AT (fragp->fr_subtype);
2309ddf2
MR
17627 unsigned long jalr = short_ds ? 0x45e0 : 0x45c0; /* jalr/s */
17628 unsigned long jr = compact ? 0x45a0 : 0x4580; /* jr/c */
df58fc94
RS
17629
17630 /* lw/ld $at, <sym>($gp) R_MICROMIPS_GOT16 */
17631 insn = HAVE_64BIT_ADDRESSES ? 0xdc1c0000 : 0xfc1c0000;
17632 insn |= at << MICROMIPSOP_SH_RT;
17633
17634 if (exp.X_add_number)
17635 {
17636 exp.X_add_symbol = make_expr_symbol (&exp);
17637 exp.X_add_number = 0;
17638 }
17639
4d68580a
RS
17640 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17641 BFD_RELOC_MICROMIPS_GOT16);
df58fc94
RS
17642 fixp->fx_file = fragp->fr_file;
17643 fixp->fx_line = fragp->fr_line;
17644
4d68580a 17645 buf = write_compressed_insn (buf, insn, 4);
df58fc94
RS
17646
17647 /* d/addiu $at, $at, <sym> R_MICROMIPS_LO16 */
17648 insn = HAVE_64BIT_ADDRESSES ? 0x5c000000 : 0x30000000;
17649 insn |= at << MICROMIPSOP_SH_RT | at << MICROMIPSOP_SH_RS;
17650
4d68580a
RS
17651 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17652 BFD_RELOC_MICROMIPS_LO16);
df58fc94
RS
17653 fixp->fx_file = fragp->fr_file;
17654 fixp->fx_line = fragp->fr_line;
17655
4d68580a 17656 buf = write_compressed_insn (buf, insn, 4);
df58fc94
RS
17657
17658 /* jr/jrc/jalr/jalrs $at */
17659 insn = al ? jalr : jr;
17660 insn |= at << MICROMIPSOP_SH_MJ;
17661
4d68580a 17662 buf = write_compressed_insn (buf, insn, 2);
df58fc94
RS
17663 }
17664
4d68580a 17665 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
df58fc94
RS
17666 return;
17667 }
17668
252b5132
RH
17669 if (RELAX_MIPS16_P (fragp->fr_subtype))
17670 {
17671 int type;
3ccad066 17672 const struct mips_int_operand *operand;
252b5132 17673 offsetT val;
5c04167a
RS
17674 char *buf;
17675 unsigned int user_length, length;
252b5132 17676 unsigned long insn;
5c04167a 17677 bfd_boolean ext;
252b5132
RH
17678
17679 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
3ccad066 17680 operand = mips16_immed_operand (type, FALSE);
252b5132 17681
5c04167a 17682 ext = RELAX_MIPS16_EXTENDED (fragp->fr_subtype);
5f5f22c0 17683 val = resolve_symbol_value (fragp->fr_symbol);
3ccad066 17684 if (operand->root.type == OP_PCREL)
252b5132 17685 {
3ccad066 17686 const struct mips_pcrel_operand *pcrel_op;
252b5132
RH
17687 addressT addr;
17688
3ccad066 17689 pcrel_op = (const struct mips_pcrel_operand *) operand;
252b5132
RH
17690 addr = fragp->fr_address + fragp->fr_fix;
17691
17692 /* The rules for the base address of a PC relative reloc are
17693 complicated; see mips16_extended_frag. */
3ccad066 17694 if (pcrel_op->include_isa_bit)
252b5132
RH
17695 {
17696 addr += 2;
17697 if (ext)
17698 addr += 2;
17699 /* Ignore the low bit in the target, since it will be
17700 set for a text label. */
3ccad066 17701 val &= -2;
252b5132
RH
17702 }
17703 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
17704 addr -= 4;
17705 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
17706 addr -= 2;
17707
3ccad066 17708 addr &= -(1 << pcrel_op->align_log2);
252b5132
RH
17709 val -= addr;
17710
17711 /* Make sure the section winds up with the alignment we have
17712 assumed. */
3ccad066
RS
17713 if (operand->shift > 0)
17714 record_alignment (asec, operand->shift);
252b5132
RH
17715 }
17716
17717 if (ext
17718 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
17719 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
17720 as_warn_where (fragp->fr_file, fragp->fr_line,
17721 _("extended instruction in delay slot"));
17722
5c04167a 17723 buf = fragp->fr_literal + fragp->fr_fix;
252b5132 17724
4d68580a 17725 insn = read_compressed_insn (buf, 2);
5c04167a
RS
17726 if (ext)
17727 insn |= MIPS16_EXTEND;
252b5132 17728
5c04167a
RS
17729 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
17730 user_length = 4;
17731 else if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
17732 user_length = 2;
17733 else
17734 user_length = 0;
17735
43c0598f 17736 mips16_immed (fragp->fr_file, fragp->fr_line, type,
c150d1d2 17737 BFD_RELOC_UNUSED, val, user_length, &insn);
252b5132 17738
5c04167a
RS
17739 length = (ext ? 4 : 2);
17740 gas_assert (mips16_opcode_length (insn) == length);
17741 write_compressed_insn (buf, insn, length);
17742 fragp->fr_fix += length;
252b5132
RH
17743 }
17744 else
17745 {
df58fc94
RS
17746 relax_substateT subtype = fragp->fr_subtype;
17747 bfd_boolean second_longer = (subtype & RELAX_SECOND_LONGER) != 0;
17748 bfd_boolean use_second = (subtype & RELAX_USE_SECOND) != 0;
4d7206a2
RS
17749 int first, second;
17750 fixS *fixp;
252b5132 17751
df58fc94
RS
17752 first = RELAX_FIRST (subtype);
17753 second = RELAX_SECOND (subtype);
4d7206a2 17754 fixp = (fixS *) fragp->fr_opcode;
252b5132 17755
df58fc94
RS
17756 /* If the delay slot chosen does not match the size of the instruction,
17757 then emit a warning. */
17758 if ((!use_second && (subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0)
17759 || (use_second && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0))
17760 {
17761 relax_substateT s;
17762 const char *msg;
17763
17764 s = subtype & (RELAX_DELAY_SLOT_16BIT
17765 | RELAX_DELAY_SLOT_SIZE_FIRST
17766 | RELAX_DELAY_SLOT_SIZE_SECOND);
17767 msg = macro_warning (s);
17768 if (msg != NULL)
db9b2be4 17769 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
df58fc94
RS
17770 subtype &= ~s;
17771 }
17772
584892a6 17773 /* Possibly emit a warning if we've chosen the longer option. */
df58fc94 17774 if (use_second == second_longer)
584892a6 17775 {
df58fc94
RS
17776 relax_substateT s;
17777 const char *msg;
17778
17779 s = (subtype
17780 & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT));
17781 msg = macro_warning (s);
17782 if (msg != NULL)
db9b2be4 17783 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
df58fc94 17784 subtype &= ~s;
584892a6
RS
17785 }
17786
4d7206a2
RS
17787 /* Go through all the fixups for the first sequence. Disable them
17788 (by marking them as done) if we're going to use the second
17789 sequence instead. */
17790 while (fixp
17791 && fixp->fx_frag == fragp
17792 && fixp->fx_where < fragp->fr_fix - second)
17793 {
df58fc94 17794 if (subtype & RELAX_USE_SECOND)
4d7206a2
RS
17795 fixp->fx_done = 1;
17796 fixp = fixp->fx_next;
17797 }
252b5132 17798
4d7206a2
RS
17799 /* Go through the fixups for the second sequence. Disable them if
17800 we're going to use the first sequence, otherwise adjust their
17801 addresses to account for the relaxation. */
17802 while (fixp && fixp->fx_frag == fragp)
17803 {
df58fc94 17804 if (subtype & RELAX_USE_SECOND)
4d7206a2
RS
17805 fixp->fx_where -= first;
17806 else
17807 fixp->fx_done = 1;
17808 fixp = fixp->fx_next;
17809 }
17810
17811 /* Now modify the frag contents. */
df58fc94 17812 if (subtype & RELAX_USE_SECOND)
4d7206a2
RS
17813 {
17814 char *start;
17815
17816 start = fragp->fr_literal + fragp->fr_fix - first - second;
17817 memmove (start, start + first, second);
17818 fragp->fr_fix -= first;
17819 }
17820 else
17821 fragp->fr_fix -= second;
252b5132
RH
17822 }
17823}
17824
252b5132
RH
17825/* This function is called after the relocs have been generated.
17826 We've been storing mips16 text labels as odd. Here we convert them
17827 back to even for the convenience of the debugger. */
17828
17829void
17a2f251 17830mips_frob_file_after_relocs (void)
252b5132
RH
17831{
17832 asymbol **syms;
17833 unsigned int count, i;
17834
252b5132
RH
17835 syms = bfd_get_outsymbols (stdoutput);
17836 count = bfd_get_symcount (stdoutput);
17837 for (i = 0; i < count; i++, syms++)
df58fc94
RS
17838 if (ELF_ST_IS_COMPRESSED (elf_symbol (*syms)->internal_elf_sym.st_other)
17839 && ((*syms)->value & 1) != 0)
17840 {
17841 (*syms)->value &= ~1;
17842 /* If the symbol has an odd size, it was probably computed
17843 incorrectly, so adjust that as well. */
17844 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
17845 ++elf_symbol (*syms)->internal_elf_sym.st_size;
17846 }
252b5132
RH
17847}
17848
a1facbec
MR
17849/* This function is called whenever a label is defined, including fake
17850 labels instantiated off the dot special symbol. It is used when
17851 handling branch delays; if a branch has a label, we assume we cannot
17852 move it. This also bumps the value of the symbol by 1 in compressed
17853 code. */
252b5132 17854
e1b47bd5 17855static void
a1facbec 17856mips_record_label (symbolS *sym)
252b5132 17857{
a8dbcb85 17858 segment_info_type *si = seg_info (now_seg);
252b5132
RH
17859 struct insn_label_list *l;
17860
17861 if (free_insn_labels == NULL)
17862 l = (struct insn_label_list *) xmalloc (sizeof *l);
17863 else
17864 {
17865 l = free_insn_labels;
17866 free_insn_labels = l->next;
17867 }
17868
17869 l->label = sym;
a8dbcb85
TS
17870 l->next = si->label_list;
17871 si->label_list = l;
a1facbec 17872}
07a53e5c 17873
a1facbec
MR
17874/* This function is called as tc_frob_label() whenever a label is defined
17875 and adds a DWARF-2 record we only want for true labels. */
17876
17877void
17878mips_define_label (symbolS *sym)
17879{
17880 mips_record_label (sym);
07a53e5c 17881 dwarf2_emit_label (sym);
252b5132 17882}
e1b47bd5
RS
17883
17884/* This function is called by tc_new_dot_label whenever a new dot symbol
17885 is defined. */
17886
17887void
17888mips_add_dot_label (symbolS *sym)
17889{
17890 mips_record_label (sym);
17891 if (mips_assembling_insn && HAVE_CODE_COMPRESSION)
17892 mips_compressed_mark_label (sym);
17893}
252b5132 17894\f
351cdf24
MF
17895/* Converting ASE flags from internal to .MIPS.abiflags values. */
17896static unsigned int
17897mips_convert_ase_flags (int ase)
17898{
17899 unsigned int ext_ases = 0;
17900
17901 if (ase & ASE_DSP)
17902 ext_ases |= AFL_ASE_DSP;
17903 if (ase & ASE_DSPR2)
17904 ext_ases |= AFL_ASE_DSPR2;
17905 if (ase & ASE_EVA)
17906 ext_ases |= AFL_ASE_EVA;
17907 if (ase & ASE_MCU)
17908 ext_ases |= AFL_ASE_MCU;
17909 if (ase & ASE_MDMX)
17910 ext_ases |= AFL_ASE_MDMX;
17911 if (ase & ASE_MIPS3D)
17912 ext_ases |= AFL_ASE_MIPS3D;
17913 if (ase & ASE_MT)
17914 ext_ases |= AFL_ASE_MT;
17915 if (ase & ASE_SMARTMIPS)
17916 ext_ases |= AFL_ASE_SMARTMIPS;
17917 if (ase & ASE_VIRT)
17918 ext_ases |= AFL_ASE_VIRT;
17919 if (ase & ASE_MSA)
17920 ext_ases |= AFL_ASE_MSA;
17921 if (ase & ASE_XPA)
17922 ext_ases |= AFL_ASE_XPA;
17923
17924 return ext_ases;
17925}
252b5132
RH
17926/* Some special processing for a MIPS ELF file. */
17927
17928void
17a2f251 17929mips_elf_final_processing (void)
252b5132 17930{
351cdf24
MF
17931 int fpabi;
17932 Elf_Internal_ABIFlags_v0 flags;
17933
17934 flags.version = 0;
17935 flags.isa_rev = 0;
17936 switch (file_mips_opts.isa)
17937 {
17938 case INSN_ISA1:
17939 flags.isa_level = 1;
17940 break;
17941 case INSN_ISA2:
17942 flags.isa_level = 2;
17943 break;
17944 case INSN_ISA3:
17945 flags.isa_level = 3;
17946 break;
17947 case INSN_ISA4:
17948 flags.isa_level = 4;
17949 break;
17950 case INSN_ISA5:
17951 flags.isa_level = 5;
17952 break;
17953 case INSN_ISA32:
17954 flags.isa_level = 32;
17955 flags.isa_rev = 1;
17956 break;
17957 case INSN_ISA32R2:
17958 flags.isa_level = 32;
17959 flags.isa_rev = 2;
17960 break;
17961 case INSN_ISA32R3:
17962 flags.isa_level = 32;
17963 flags.isa_rev = 3;
17964 break;
17965 case INSN_ISA32R5:
17966 flags.isa_level = 32;
17967 flags.isa_rev = 5;
17968 break;
17969 case INSN_ISA64:
17970 flags.isa_level = 64;
17971 flags.isa_rev = 1;
17972 break;
17973 case INSN_ISA64R2:
17974 flags.isa_level = 64;
17975 flags.isa_rev = 2;
17976 break;
17977 case INSN_ISA64R3:
17978 flags.isa_level = 64;
17979 flags.isa_rev = 3;
17980 break;
17981 case INSN_ISA64R5:
17982 flags.isa_level = 64;
17983 flags.isa_rev = 5;
17984 break;
17985 }
17986
17987 flags.gpr_size = file_mips_opts.gp == 32 ? AFL_REG_32 : AFL_REG_64;
17988 flags.cpr1_size = file_mips_opts.soft_float ? AFL_REG_NONE
17989 : (file_mips_opts.ase & ASE_MSA) ? AFL_REG_128
17990 : (file_mips_opts.fp == 64) ? AFL_REG_64
17991 : AFL_REG_32;
17992 flags.cpr2_size = AFL_REG_NONE;
17993 flags.fp_abi = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
17994 Tag_GNU_MIPS_ABI_FP);
17995 flags.isa_ext = bfd_mips_isa_ext (stdoutput);
17996 flags.ases = mips_convert_ase_flags (file_mips_opts.ase);
17997 if (file_ase_mips16)
17998 flags.ases |= AFL_ASE_MIPS16;
17999 if (file_ase_micromips)
18000 flags.ases |= AFL_ASE_MICROMIPS;
18001 flags.flags1 = 0;
18002 if ((ISA_HAS_ODD_SINGLE_FPR (file_mips_opts.isa, file_mips_opts.arch)
18003 || file_mips_opts.fp == 64)
18004 && file_mips_opts.oddspreg)
18005 flags.flags1 |= AFL_FLAGS1_ODDSPREG;
18006 flags.flags2 = 0;
18007
18008 bfd_mips_elf_swap_abiflags_v0_out (stdoutput, &flags,
18009 ((Elf_External_ABIFlags_v0 *)
18010 mips_flags_frag));
18011
252b5132 18012 /* Write out the register information. */
316f5878 18013 if (mips_abi != N64_ABI)
252b5132
RH
18014 {
18015 Elf32_RegInfo s;
18016
18017 s.ri_gprmask = mips_gprmask;
18018 s.ri_cprmask[0] = mips_cprmask[0];
18019 s.ri_cprmask[1] = mips_cprmask[1];
18020 s.ri_cprmask[2] = mips_cprmask[2];
18021 s.ri_cprmask[3] = mips_cprmask[3];
18022 /* The gp_value field is set by the MIPS ELF backend. */
18023
18024 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
18025 ((Elf32_External_RegInfo *)
18026 mips_regmask_frag));
18027 }
18028 else
18029 {
18030 Elf64_Internal_RegInfo s;
18031
18032 s.ri_gprmask = mips_gprmask;
18033 s.ri_pad = 0;
18034 s.ri_cprmask[0] = mips_cprmask[0];
18035 s.ri_cprmask[1] = mips_cprmask[1];
18036 s.ri_cprmask[2] = mips_cprmask[2];
18037 s.ri_cprmask[3] = mips_cprmask[3];
18038 /* The gp_value field is set by the MIPS ELF backend. */
18039
18040 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
18041 ((Elf64_External_RegInfo *)
18042 mips_regmask_frag));
18043 }
18044
18045 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
18046 sort of BFD interface for this. */
18047 if (mips_any_noreorder)
18048 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
18049 if (mips_pic != NO_PIC)
143d77c5 18050 {
8b828383 18051 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
143d77c5
EC
18052 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18053 }
18054 if (mips_abicalls)
18055 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
252b5132 18056
b015e599
AP
18057 /* Set MIPS ELF flags for ASEs. Note that not all ASEs have flags
18058 defined at present; this might need to change in future. */
a4672219
TS
18059 if (file_ase_mips16)
18060 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
df58fc94
RS
18061 if (file_ase_micromips)
18062 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MICROMIPS;
919731af 18063 if (file_mips_opts.ase & ASE_MDMX)
deec1734 18064 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
1f25f5d3 18065
bdaaa2e1 18066 /* Set the MIPS ELF ABI flags. */
316f5878 18067 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
252b5132 18068 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
316f5878 18069 else if (mips_abi == O64_ABI)
252b5132 18070 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
316f5878 18071 else if (mips_abi == EABI_ABI)
252b5132 18072 {
bad1aba3 18073 if (file_mips_opts.gp == 64)
252b5132
RH
18074 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
18075 else
18076 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
18077 }
316f5878 18078 else if (mips_abi == N32_ABI)
be00bddd
TS
18079 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
18080
c9914766 18081 /* Nothing to do for N64_ABI. */
252b5132
RH
18082
18083 if (mips_32bitmode)
18084 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
ad3fea08 18085
7361da2c 18086 if (mips_nan2008 == 1)
ba92f887
MR
18087 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NAN2008;
18088
ad3fea08 18089 /* 32 bit code with 64 bit FP registers. */
351cdf24
MF
18090 fpabi = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
18091 Tag_GNU_MIPS_ABI_FP);
18092 if (fpabi == Val_GNU_MIPS_ABI_FP_OLD_64)
f1c38003 18093 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_FP64;
252b5132 18094}
252b5132 18095\f
beae10d5 18096typedef struct proc {
9b2f1d35
EC
18097 symbolS *func_sym;
18098 symbolS *func_end_sym;
beae10d5
KH
18099 unsigned long reg_mask;
18100 unsigned long reg_offset;
18101 unsigned long fpreg_mask;
18102 unsigned long fpreg_offset;
18103 unsigned long frame_offset;
18104 unsigned long frame_reg;
18105 unsigned long pc_reg;
18106} procS;
252b5132
RH
18107
18108static procS cur_proc;
18109static procS *cur_proc_ptr;
18110static int numprocs;
18111
df58fc94
RS
18112/* Implement NOP_OPCODE. We encode a MIPS16 nop as "1", a microMIPS nop
18113 as "2", and a normal nop as "0". */
18114
18115#define NOP_OPCODE_MIPS 0
18116#define NOP_OPCODE_MIPS16 1
18117#define NOP_OPCODE_MICROMIPS 2
742a56fe
RS
18118
18119char
18120mips_nop_opcode (void)
18121{
df58fc94
RS
18122 if (seg_info (now_seg)->tc_segment_info_data.micromips)
18123 return NOP_OPCODE_MICROMIPS;
18124 else if (seg_info (now_seg)->tc_segment_info_data.mips16)
18125 return NOP_OPCODE_MIPS16;
18126 else
18127 return NOP_OPCODE_MIPS;
742a56fe
RS
18128}
18129
df58fc94
RS
18130/* Fill in an rs_align_code fragment. Unlike elsewhere we want to use
18131 32-bit microMIPS NOPs here (if applicable). */
a19d8eb0 18132
0a9ef439 18133void
17a2f251 18134mips_handle_align (fragS *fragp)
a19d8eb0 18135{
df58fc94 18136 char nop_opcode;
742a56fe 18137 char *p;
c67a084a
NC
18138 int bytes, size, excess;
18139 valueT opcode;
742a56fe 18140
0a9ef439
RH
18141 if (fragp->fr_type != rs_align_code)
18142 return;
18143
742a56fe 18144 p = fragp->fr_literal + fragp->fr_fix;
df58fc94
RS
18145 nop_opcode = *p;
18146 switch (nop_opcode)
a19d8eb0 18147 {
df58fc94
RS
18148 case NOP_OPCODE_MICROMIPS:
18149 opcode = micromips_nop32_insn.insn_opcode;
18150 size = 4;
18151 break;
18152 case NOP_OPCODE_MIPS16:
c67a084a
NC
18153 opcode = mips16_nop_insn.insn_opcode;
18154 size = 2;
df58fc94
RS
18155 break;
18156 case NOP_OPCODE_MIPS:
18157 default:
c67a084a
NC
18158 opcode = nop_insn.insn_opcode;
18159 size = 4;
df58fc94 18160 break;
c67a084a 18161 }
a19d8eb0 18162
c67a084a
NC
18163 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
18164 excess = bytes % size;
df58fc94
RS
18165
18166 /* Handle the leading part if we're not inserting a whole number of
18167 instructions, and make it the end of the fixed part of the frag.
18168 Try to fit in a short microMIPS NOP if applicable and possible,
18169 and use zeroes otherwise. */
18170 gas_assert (excess < 4);
18171 fragp->fr_fix += excess;
18172 switch (excess)
c67a084a 18173 {
df58fc94
RS
18174 case 3:
18175 *p++ = '\0';
18176 /* Fall through. */
18177 case 2:
833794fc 18178 if (nop_opcode == NOP_OPCODE_MICROMIPS && !mips_opts.insn32)
df58fc94 18179 {
4d68580a 18180 p = write_compressed_insn (p, micromips_nop16_insn.insn_opcode, 2);
df58fc94
RS
18181 break;
18182 }
18183 *p++ = '\0';
18184 /* Fall through. */
18185 case 1:
18186 *p++ = '\0';
18187 /* Fall through. */
18188 case 0:
18189 break;
a19d8eb0 18190 }
c67a084a
NC
18191
18192 md_number_to_chars (p, opcode, size);
18193 fragp->fr_var = size;
a19d8eb0
CP
18194}
18195
252b5132 18196static long
17a2f251 18197get_number (void)
252b5132
RH
18198{
18199 int negative = 0;
18200 long val = 0;
18201
18202 if (*input_line_pointer == '-')
18203 {
18204 ++input_line_pointer;
18205 negative = 1;
18206 }
3882b010 18207 if (!ISDIGIT (*input_line_pointer))
956cd1d6 18208 as_bad (_("expected simple number"));
252b5132
RH
18209 if (input_line_pointer[0] == '0')
18210 {
18211 if (input_line_pointer[1] == 'x')
18212 {
18213 input_line_pointer += 2;
3882b010 18214 while (ISXDIGIT (*input_line_pointer))
252b5132
RH
18215 {
18216 val <<= 4;
18217 val |= hex_value (*input_line_pointer++);
18218 }
18219 return negative ? -val : val;
18220 }
18221 else
18222 {
18223 ++input_line_pointer;
3882b010 18224 while (ISDIGIT (*input_line_pointer))
252b5132
RH
18225 {
18226 val <<= 3;
18227 val |= *input_line_pointer++ - '0';
18228 }
18229 return negative ? -val : val;
18230 }
18231 }
3882b010 18232 if (!ISDIGIT (*input_line_pointer))
252b5132
RH
18233 {
18234 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
18235 *input_line_pointer, *input_line_pointer);
956cd1d6 18236 as_warn (_("invalid number"));
252b5132
RH
18237 return -1;
18238 }
3882b010 18239 while (ISDIGIT (*input_line_pointer))
252b5132
RH
18240 {
18241 val *= 10;
18242 val += *input_line_pointer++ - '0';
18243 }
18244 return negative ? -val : val;
18245}
18246
18247/* The .file directive; just like the usual .file directive, but there
c5dd6aab
DJ
18248 is an initial number which is the ECOFF file index. In the non-ECOFF
18249 case .file implies DWARF-2. */
18250
18251static void
17a2f251 18252s_mips_file (int x ATTRIBUTE_UNUSED)
c5dd6aab 18253{
ecb4347a
DJ
18254 static int first_file_directive = 0;
18255
c5dd6aab
DJ
18256 if (ECOFF_DEBUGGING)
18257 {
18258 get_number ();
18259 s_app_file (0);
18260 }
18261 else
ecb4347a
DJ
18262 {
18263 char *filename;
18264
18265 filename = dwarf2_directive_file (0);
18266
18267 /* Versions of GCC up to 3.1 start files with a ".file"
18268 directive even for stabs output. Make sure that this
18269 ".file" is handled. Note that you need a version of GCC
18270 after 3.1 in order to support DWARF-2 on MIPS. */
18271 if (filename != NULL && ! first_file_directive)
18272 {
18273 (void) new_logical_line (filename, -1);
c04f5787 18274 s_app_file_string (filename, 0);
ecb4347a
DJ
18275 }
18276 first_file_directive = 1;
18277 }
c5dd6aab
DJ
18278}
18279
18280/* The .loc directive, implying DWARF-2. */
252b5132
RH
18281
18282static void
17a2f251 18283s_mips_loc (int x ATTRIBUTE_UNUSED)
252b5132 18284{
c5dd6aab
DJ
18285 if (!ECOFF_DEBUGGING)
18286 dwarf2_directive_loc (0);
252b5132
RH
18287}
18288
252b5132
RH
18289/* The .end directive. */
18290
18291static void
17a2f251 18292s_mips_end (int x ATTRIBUTE_UNUSED)
252b5132
RH
18293{
18294 symbolS *p;
252b5132 18295
7a621144
DJ
18296 /* Following functions need their own .frame and .cprestore directives. */
18297 mips_frame_reg_valid = 0;
18298 mips_cprestore_valid = 0;
18299
252b5132
RH
18300 if (!is_end_of_line[(unsigned char) *input_line_pointer])
18301 {
18302 p = get_symbol ();
18303 demand_empty_rest_of_line ();
18304 }
18305 else
18306 p = NULL;
18307
14949570 18308 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
18309 as_warn (_(".end not in text section"));
18310
18311 if (!cur_proc_ptr)
18312 {
1661c76c 18313 as_warn (_(".end directive without a preceding .ent directive"));
252b5132
RH
18314 demand_empty_rest_of_line ();
18315 return;
18316 }
18317
18318 if (p != NULL)
18319 {
9c2799c2 18320 gas_assert (S_GET_NAME (p));
9b2f1d35 18321 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
1661c76c 18322 as_warn (_(".end symbol does not match .ent symbol"));
ecb4347a
DJ
18323
18324 if (debug_type == DEBUG_STABS)
18325 stabs_generate_asm_endfunc (S_GET_NAME (p),
18326 S_GET_NAME (p));
252b5132
RH
18327 }
18328 else
18329 as_warn (_(".end directive missing or unknown symbol"));
18330
9b2f1d35
EC
18331 /* Create an expression to calculate the size of the function. */
18332 if (p && cur_proc_ptr)
18333 {
18334 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
18335 expressionS *exp = xmalloc (sizeof (expressionS));
18336
18337 obj->size = exp;
18338 exp->X_op = O_subtract;
18339 exp->X_add_symbol = symbol_temp_new_now ();
18340 exp->X_op_symbol = p;
18341 exp->X_add_number = 0;
18342
18343 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
18344 }
18345
ecb4347a 18346 /* Generate a .pdr section. */
f3ded42a 18347 if (!ECOFF_DEBUGGING && mips_flag_pdr)
ecb4347a
DJ
18348 {
18349 segT saved_seg = now_seg;
18350 subsegT saved_subseg = now_subseg;
ecb4347a
DJ
18351 expressionS exp;
18352 char *fragp;
252b5132 18353
252b5132 18354#ifdef md_flush_pending_output
ecb4347a 18355 md_flush_pending_output ();
252b5132
RH
18356#endif
18357
9c2799c2 18358 gas_assert (pdr_seg);
ecb4347a 18359 subseg_set (pdr_seg, 0);
252b5132 18360
ecb4347a
DJ
18361 /* Write the symbol. */
18362 exp.X_op = O_symbol;
18363 exp.X_add_symbol = p;
18364 exp.X_add_number = 0;
18365 emit_expr (&exp, 4);
252b5132 18366
ecb4347a 18367 fragp = frag_more (7 * 4);
252b5132 18368
17a2f251
TS
18369 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
18370 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
18371 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
18372 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
18373 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
18374 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
18375 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
252b5132 18376
ecb4347a
DJ
18377 subseg_set (saved_seg, saved_subseg);
18378 }
252b5132
RH
18379
18380 cur_proc_ptr = NULL;
18381}
18382
18383/* The .aent and .ent directives. */
18384
18385static void
17a2f251 18386s_mips_ent (int aent)
252b5132 18387{
252b5132 18388 symbolS *symbolP;
252b5132
RH
18389
18390 symbolP = get_symbol ();
18391 if (*input_line_pointer == ',')
f9419b05 18392 ++input_line_pointer;
252b5132 18393 SKIP_WHITESPACE ();
3882b010 18394 if (ISDIGIT (*input_line_pointer)
d9a62219 18395 || *input_line_pointer == '-')
874e8986 18396 get_number ();
252b5132 18397
14949570 18398 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
1661c76c 18399 as_warn (_(".ent or .aent not in text section"));
252b5132
RH
18400
18401 if (!aent && cur_proc_ptr)
9a41af64 18402 as_warn (_("missing .end"));
252b5132
RH
18403
18404 if (!aent)
18405 {
7a621144
DJ
18406 /* This function needs its own .frame and .cprestore directives. */
18407 mips_frame_reg_valid = 0;
18408 mips_cprestore_valid = 0;
18409
252b5132
RH
18410 cur_proc_ptr = &cur_proc;
18411 memset (cur_proc_ptr, '\0', sizeof (procS));
18412
9b2f1d35 18413 cur_proc_ptr->func_sym = symbolP;
252b5132 18414
f9419b05 18415 ++numprocs;
ecb4347a
DJ
18416
18417 if (debug_type == DEBUG_STABS)
18418 stabs_generate_asm_func (S_GET_NAME (symbolP),
18419 S_GET_NAME (symbolP));
252b5132
RH
18420 }
18421
7c0fc524
MR
18422 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
18423
252b5132
RH
18424 demand_empty_rest_of_line ();
18425}
18426
18427/* The .frame directive. If the mdebug section is present (IRIX 5 native)
bdaaa2e1 18428 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
252b5132 18429 s_mips_frame is used so that we can set the PDR information correctly.
bdaaa2e1 18430 We can't use the ecoff routines because they make reference to the ecoff
252b5132
RH
18431 symbol table (in the mdebug section). */
18432
18433static void
17a2f251 18434s_mips_frame (int ignore ATTRIBUTE_UNUSED)
252b5132 18435{
f3ded42a
RS
18436 if (ECOFF_DEBUGGING)
18437 s_ignore (ignore);
18438 else
ecb4347a
DJ
18439 {
18440 long val;
252b5132 18441
ecb4347a
DJ
18442 if (cur_proc_ptr == (procS *) NULL)
18443 {
18444 as_warn (_(".frame outside of .ent"));
18445 demand_empty_rest_of_line ();
18446 return;
18447 }
252b5132 18448
ecb4347a
DJ
18449 cur_proc_ptr->frame_reg = tc_get_register (1);
18450
18451 SKIP_WHITESPACE ();
18452 if (*input_line_pointer++ != ','
18453 || get_absolute_expression_and_terminator (&val) != ',')
18454 {
1661c76c 18455 as_warn (_("bad .frame directive"));
ecb4347a
DJ
18456 --input_line_pointer;
18457 demand_empty_rest_of_line ();
18458 return;
18459 }
252b5132 18460
ecb4347a
DJ
18461 cur_proc_ptr->frame_offset = val;
18462 cur_proc_ptr->pc_reg = tc_get_register (0);
252b5132 18463
252b5132 18464 demand_empty_rest_of_line ();
252b5132 18465 }
252b5132
RH
18466}
18467
bdaaa2e1
KH
18468/* The .fmask and .mask directives. If the mdebug section is present
18469 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
252b5132 18470 embedded targets, s_mips_mask is used so that we can set the PDR
bdaaa2e1 18471 information correctly. We can't use the ecoff routines because they
252b5132
RH
18472 make reference to the ecoff symbol table (in the mdebug section). */
18473
18474static void
17a2f251 18475s_mips_mask (int reg_type)
252b5132 18476{
f3ded42a
RS
18477 if (ECOFF_DEBUGGING)
18478 s_ignore (reg_type);
18479 else
252b5132 18480 {
ecb4347a 18481 long mask, off;
252b5132 18482
ecb4347a
DJ
18483 if (cur_proc_ptr == (procS *) NULL)
18484 {
18485 as_warn (_(".mask/.fmask outside of .ent"));
18486 demand_empty_rest_of_line ();
18487 return;
18488 }
252b5132 18489
ecb4347a
DJ
18490 if (get_absolute_expression_and_terminator (&mask) != ',')
18491 {
1661c76c 18492 as_warn (_("bad .mask/.fmask directive"));
ecb4347a
DJ
18493 --input_line_pointer;
18494 demand_empty_rest_of_line ();
18495 return;
18496 }
252b5132 18497
ecb4347a
DJ
18498 off = get_absolute_expression ();
18499
18500 if (reg_type == 'F')
18501 {
18502 cur_proc_ptr->fpreg_mask = mask;
18503 cur_proc_ptr->fpreg_offset = off;
18504 }
18505 else
18506 {
18507 cur_proc_ptr->reg_mask = mask;
18508 cur_proc_ptr->reg_offset = off;
18509 }
18510
18511 demand_empty_rest_of_line ();
252b5132 18512 }
252b5132
RH
18513}
18514
316f5878
RS
18515/* A table describing all the processors gas knows about. Names are
18516 matched in the order listed.
e7af610e 18517
316f5878
RS
18518 To ease comparison, please keep this table in the same order as
18519 gcc's mips_cpu_info_table[]. */
e972090a
NC
18520static const struct mips_cpu_info mips_cpu_info_table[] =
18521{
316f5878 18522 /* Entries for generic ISAs */
d16afab6
RS
18523 { "mips1", MIPS_CPU_IS_ISA, 0, ISA_MIPS1, CPU_R3000 },
18524 { "mips2", MIPS_CPU_IS_ISA, 0, ISA_MIPS2, CPU_R6000 },
18525 { "mips3", MIPS_CPU_IS_ISA, 0, ISA_MIPS3, CPU_R4000 },
18526 { "mips4", MIPS_CPU_IS_ISA, 0, ISA_MIPS4, CPU_R8000 },
18527 { "mips5", MIPS_CPU_IS_ISA, 0, ISA_MIPS5, CPU_MIPS5 },
18528 { "mips32", MIPS_CPU_IS_ISA, 0, ISA_MIPS32, CPU_MIPS32 },
18529 { "mips32r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
ae52f483
AB
18530 { "mips32r3", MIPS_CPU_IS_ISA, 0, ISA_MIPS32R3, CPU_MIPS32R3 },
18531 { "mips32r5", MIPS_CPU_IS_ISA, 0, ISA_MIPS32R5, CPU_MIPS32R5 },
7361da2c 18532 { "mips32r6", MIPS_CPU_IS_ISA, 0, ISA_MIPS32R6, CPU_MIPS32R6 },
d16afab6
RS
18533 { "mips64", MIPS_CPU_IS_ISA, 0, ISA_MIPS64, CPU_MIPS64 },
18534 { "mips64r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS64R2, CPU_MIPS64R2 },
ae52f483
AB
18535 { "mips64r3", MIPS_CPU_IS_ISA, 0, ISA_MIPS64R3, CPU_MIPS64R3 },
18536 { "mips64r5", MIPS_CPU_IS_ISA, 0, ISA_MIPS64R5, CPU_MIPS64R5 },
7361da2c 18537 { "mips64r6", MIPS_CPU_IS_ISA, 0, ISA_MIPS64R6, CPU_MIPS64R6 },
316f5878
RS
18538
18539 /* MIPS I */
d16afab6
RS
18540 { "r3000", 0, 0, ISA_MIPS1, CPU_R3000 },
18541 { "r2000", 0, 0, ISA_MIPS1, CPU_R3000 },
18542 { "r3900", 0, 0, ISA_MIPS1, CPU_R3900 },
316f5878
RS
18543
18544 /* MIPS II */
d16afab6 18545 { "r6000", 0, 0, ISA_MIPS2, CPU_R6000 },
316f5878
RS
18546
18547 /* MIPS III */
d16afab6
RS
18548 { "r4000", 0, 0, ISA_MIPS3, CPU_R4000 },
18549 { "r4010", 0, 0, ISA_MIPS2, CPU_R4010 },
18550 { "vr4100", 0, 0, ISA_MIPS3, CPU_VR4100 },
18551 { "vr4111", 0, 0, ISA_MIPS3, CPU_R4111 },
18552 { "vr4120", 0, 0, ISA_MIPS3, CPU_VR4120 },
18553 { "vr4130", 0, 0, ISA_MIPS3, CPU_VR4120 },
18554 { "vr4181", 0, 0, ISA_MIPS3, CPU_R4111 },
18555 { "vr4300", 0, 0, ISA_MIPS3, CPU_R4300 },
18556 { "r4400", 0, 0, ISA_MIPS3, CPU_R4400 },
18557 { "r4600", 0, 0, ISA_MIPS3, CPU_R4600 },
18558 { "orion", 0, 0, ISA_MIPS3, CPU_R4600 },
18559 { "r4650", 0, 0, ISA_MIPS3, CPU_R4650 },
18560 { "r5900", 0, 0, ISA_MIPS3, CPU_R5900 },
b15591bb 18561 /* ST Microelectronics Loongson 2E and 2F cores */
d16afab6
RS
18562 { "loongson2e", 0, 0, ISA_MIPS3, CPU_LOONGSON_2E },
18563 { "loongson2f", 0, 0, ISA_MIPS3, CPU_LOONGSON_2F },
316f5878
RS
18564
18565 /* MIPS IV */
d16afab6
RS
18566 { "r8000", 0, 0, ISA_MIPS4, CPU_R8000 },
18567 { "r10000", 0, 0, ISA_MIPS4, CPU_R10000 },
18568 { "r12000", 0, 0, ISA_MIPS4, CPU_R12000 },
18569 { "r14000", 0, 0, ISA_MIPS4, CPU_R14000 },
18570 { "r16000", 0, 0, ISA_MIPS4, CPU_R16000 },
18571 { "vr5000", 0, 0, ISA_MIPS4, CPU_R5000 },
18572 { "vr5400", 0, 0, ISA_MIPS4, CPU_VR5400 },
18573 { "vr5500", 0, 0, ISA_MIPS4, CPU_VR5500 },
18574 { "rm5200", 0, 0, ISA_MIPS4, CPU_R5000 },
18575 { "rm5230", 0, 0, ISA_MIPS4, CPU_R5000 },
18576 { "rm5231", 0, 0, ISA_MIPS4, CPU_R5000 },
18577 { "rm5261", 0, 0, ISA_MIPS4, CPU_R5000 },
18578 { "rm5721", 0, 0, ISA_MIPS4, CPU_R5000 },
18579 { "rm7000", 0, 0, ISA_MIPS4, CPU_RM7000 },
18580 { "rm9000", 0, 0, ISA_MIPS4, CPU_RM9000 },
316f5878
RS
18581
18582 /* MIPS 32 */
d16afab6
RS
18583 { "4kc", 0, 0, ISA_MIPS32, CPU_MIPS32 },
18584 { "4km", 0, 0, ISA_MIPS32, CPU_MIPS32 },
18585 { "4kp", 0, 0, ISA_MIPS32, CPU_MIPS32 },
18586 { "4ksc", 0, ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
ad3fea08
TS
18587
18588 /* MIPS 32 Release 2 */
d16afab6
RS
18589 { "4kec", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
18590 { "4kem", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
18591 { "4kep", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
18592 { "4ksd", 0, ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
18593 { "m4k", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
18594 { "m4kp", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
18595 { "m14k", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
18596 { "m14kc", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
18597 { "m14ke", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
18598 ISA_MIPS32R2, CPU_MIPS32R2 },
18599 { "m14kec", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
18600 ISA_MIPS32R2, CPU_MIPS32R2 },
18601 { "24kc", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
18602 { "24kf2_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
18603 { "24kf", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
18604 { "24kf1_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 18605 /* Deprecated forms of the above. */
d16afab6
RS
18606 { "24kfx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
18607 { "24kx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 18608 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
d16afab6
RS
18609 { "24kec", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
18610 { "24kef2_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
18611 { "24kef", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
18612 { "24kef1_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 18613 /* Deprecated forms of the above. */
d16afab6
RS
18614 { "24kefx", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
18615 { "24kex", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 18616 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
d16afab6
RS
18617 { "34kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18618 { "34kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18619 { "34kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18620 { "34kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 18621 /* Deprecated forms of the above. */
d16afab6
RS
18622 { "34kfx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18623 { "34kx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
711eefe4 18624 /* 34Kn is a 34kc without DSP. */
d16afab6 18625 { "34kn", 0, ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 18626 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
d16afab6
RS
18627 { "74kc", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18628 { "74kf2_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18629 { "74kf", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18630 { "74kf1_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18631 { "74kf3_2", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 18632 /* Deprecated forms of the above. */
d16afab6
RS
18633 { "74kfx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18634 { "74kx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
30f8113a 18635 /* 1004K cores are multiprocessor versions of the 34K. */
d16afab6
RS
18636 { "1004kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18637 { "1004kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18638 { "1004kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18639 { "1004kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
bbaa46c0 18640 /* P5600 with EVA and Virtualization ASEs, other ASEs are optional. */
ae52f483 18641 { "p5600", 0, ASE_VIRT | ASE_EVA | ASE_XPA, ISA_MIPS32R5, CPU_MIPS32R5 },
32b26a03 18642
316f5878 18643 /* MIPS 64 */
d16afab6
RS
18644 { "5kc", 0, 0, ISA_MIPS64, CPU_MIPS64 },
18645 { "5kf", 0, 0, ISA_MIPS64, CPU_MIPS64 },
18646 { "20kc", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
18647 { "25kf", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
ad3fea08 18648
c7a23324 18649 /* Broadcom SB-1 CPU core */
d16afab6 18650 { "sb1", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
1e85aad8 18651 /* Broadcom SB-1A CPU core */
d16afab6 18652 { "sb1a", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
d051516a 18653
4ba154f5 18654 { "loongson3a", 0, 0, ISA_MIPS64R2, CPU_LOONGSON_3A },
e7af610e 18655
ed163775
MR
18656 /* MIPS 64 Release 2 */
18657
967344c6 18658 /* Cavium Networks Octeon CPU core */
d16afab6
RS
18659 { "octeon", 0, 0, ISA_MIPS64R2, CPU_OCTEON },
18660 { "octeon+", 0, 0, ISA_MIPS64R2, CPU_OCTEONP },
18661 { "octeon2", 0, 0, ISA_MIPS64R2, CPU_OCTEON2 },
967344c6 18662
52b6b6b9 18663 /* RMI Xlr */
d16afab6 18664 { "xlr", 0, 0, ISA_MIPS64, CPU_XLR },
52b6b6b9 18665
55a36193
MK
18666 /* Broadcom XLP.
18667 XLP is mostly like XLR, with the prominent exception that it is
18668 MIPS64R2 rather than MIPS64. */
d16afab6 18669 { "xlp", 0, 0, ISA_MIPS64R2, CPU_XLR },
55a36193 18670
316f5878 18671 /* End marker */
d16afab6 18672 { NULL, 0, 0, 0, 0 }
316f5878 18673};
e7af610e 18674
84ea6cf2 18675
316f5878
RS
18676/* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
18677 with a final "000" replaced by "k". Ignore case.
e7af610e 18678
316f5878 18679 Note: this function is shared between GCC and GAS. */
c6c98b38 18680
b34976b6 18681static bfd_boolean
17a2f251 18682mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
18683{
18684 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
18685 given++, canonical++;
18686
18687 return ((*given == 0 && *canonical == 0)
18688 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
18689}
18690
18691
18692/* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
18693 CPU name. We've traditionally allowed a lot of variation here.
18694
18695 Note: this function is shared between GCC and GAS. */
18696
b34976b6 18697static bfd_boolean
17a2f251 18698mips_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
18699{
18700 /* First see if the name matches exactly, or with a final "000"
18701 turned into "k". */
18702 if (mips_strict_matching_cpu_name_p (canonical, given))
b34976b6 18703 return TRUE;
316f5878
RS
18704
18705 /* If not, try comparing based on numerical designation alone.
18706 See if GIVEN is an unadorned number, or 'r' followed by a number. */
18707 if (TOLOWER (*given) == 'r')
18708 given++;
18709 if (!ISDIGIT (*given))
b34976b6 18710 return FALSE;
316f5878
RS
18711
18712 /* Skip over some well-known prefixes in the canonical name,
18713 hoping to find a number there too. */
18714 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
18715 canonical += 2;
18716 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
18717 canonical += 2;
18718 else if (TOLOWER (canonical[0]) == 'r')
18719 canonical += 1;
18720
18721 return mips_strict_matching_cpu_name_p (canonical, given);
18722}
18723
18724
18725/* Parse an option that takes the name of a processor as its argument.
18726 OPTION is the name of the option and CPU_STRING is the argument.
18727 Return the corresponding processor enumeration if the CPU_STRING is
18728 recognized, otherwise report an error and return null.
18729
18730 A similar function exists in GCC. */
e7af610e
NC
18731
18732static const struct mips_cpu_info *
17a2f251 18733mips_parse_cpu (const char *option, const char *cpu_string)
e7af610e 18734{
316f5878 18735 const struct mips_cpu_info *p;
e7af610e 18736
316f5878
RS
18737 /* 'from-abi' selects the most compatible architecture for the given
18738 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
18739 EABIs, we have to decide whether we're using the 32-bit or 64-bit
18740 version. Look first at the -mgp options, if given, otherwise base
18741 the choice on MIPS_DEFAULT_64BIT.
e7af610e 18742
316f5878
RS
18743 Treat NO_ABI like the EABIs. One reason to do this is that the
18744 plain 'mips' and 'mips64' configs have 'from-abi' as their default
18745 architecture. This code picks MIPS I for 'mips' and MIPS III for
18746 'mips64', just as we did in the days before 'from-abi'. */
18747 if (strcasecmp (cpu_string, "from-abi") == 0)
18748 {
18749 if (ABI_NEEDS_32BIT_REGS (mips_abi))
18750 return mips_cpu_info_from_isa (ISA_MIPS1);
18751
18752 if (ABI_NEEDS_64BIT_REGS (mips_abi))
18753 return mips_cpu_info_from_isa (ISA_MIPS3);
18754
bad1aba3 18755 if (file_mips_opts.gp >= 0)
18756 return mips_cpu_info_from_isa (file_mips_opts.gp == 32
0b35dfee 18757 ? ISA_MIPS1 : ISA_MIPS3);
316f5878
RS
18758
18759 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
18760 ? ISA_MIPS3
18761 : ISA_MIPS1);
18762 }
18763
18764 /* 'default' has traditionally been a no-op. Probably not very useful. */
18765 if (strcasecmp (cpu_string, "default") == 0)
18766 return 0;
18767
18768 for (p = mips_cpu_info_table; p->name != 0; p++)
18769 if (mips_matching_cpu_name_p (p->name, cpu_string))
18770 return p;
18771
1661c76c 18772 as_bad (_("bad value (%s) for %s"), cpu_string, option);
316f5878 18773 return 0;
e7af610e
NC
18774}
18775
316f5878
RS
18776/* Return the canonical processor information for ISA (a member of the
18777 ISA_MIPS* enumeration). */
18778
e7af610e 18779static const struct mips_cpu_info *
17a2f251 18780mips_cpu_info_from_isa (int isa)
e7af610e
NC
18781{
18782 int i;
18783
18784 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
ad3fea08 18785 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
316f5878 18786 && isa == mips_cpu_info_table[i].isa)
e7af610e
NC
18787 return (&mips_cpu_info_table[i]);
18788
e972090a 18789 return NULL;
e7af610e 18790}
fef14a42
TS
18791
18792static const struct mips_cpu_info *
17a2f251 18793mips_cpu_info_from_arch (int arch)
fef14a42
TS
18794{
18795 int i;
18796
18797 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
18798 if (arch == mips_cpu_info_table[i].cpu)
18799 return (&mips_cpu_info_table[i]);
18800
18801 return NULL;
18802}
316f5878
RS
18803\f
18804static void
17a2f251 18805show (FILE *stream, const char *string, int *col_p, int *first_p)
316f5878
RS
18806{
18807 if (*first_p)
18808 {
18809 fprintf (stream, "%24s", "");
18810 *col_p = 24;
18811 }
18812 else
18813 {
18814 fprintf (stream, ", ");
18815 *col_p += 2;
18816 }
e7af610e 18817
316f5878
RS
18818 if (*col_p + strlen (string) > 72)
18819 {
18820 fprintf (stream, "\n%24s", "");
18821 *col_p = 24;
18822 }
18823
18824 fprintf (stream, "%s", string);
18825 *col_p += strlen (string);
18826
18827 *first_p = 0;
18828}
18829
18830void
17a2f251 18831md_show_usage (FILE *stream)
e7af610e 18832{
316f5878
RS
18833 int column, first;
18834 size_t i;
18835
18836 fprintf (stream, _("\
18837MIPS options:\n\
316f5878
RS
18838-EB generate big endian output\n\
18839-EL generate little endian output\n\
18840-g, -g2 do not remove unneeded NOPs or swap branches\n\
18841-G NUM allow referencing objects up to NUM bytes\n\
18842 implicitly with the gp register [default 8]\n"));
18843 fprintf (stream, _("\
18844-mips1 generate MIPS ISA I instructions\n\
18845-mips2 generate MIPS ISA II instructions\n\
18846-mips3 generate MIPS ISA III instructions\n\
18847-mips4 generate MIPS ISA IV instructions\n\
18848-mips5 generate MIPS ISA V instructions\n\
18849-mips32 generate MIPS32 ISA instructions\n\
af7ee8bf 18850-mips32r2 generate MIPS32 release 2 ISA instructions\n\
ae52f483
AB
18851-mips32r3 generate MIPS32 release 3 ISA instructions\n\
18852-mips32r5 generate MIPS32 release 5 ISA instructions\n\
7361da2c 18853-mips32r6 generate MIPS32 release 6 ISA instructions\n\
316f5878 18854-mips64 generate MIPS64 ISA instructions\n\
5f74bc13 18855-mips64r2 generate MIPS64 release 2 ISA instructions\n\
ae52f483
AB
18856-mips64r3 generate MIPS64 release 3 ISA instructions\n\
18857-mips64r5 generate MIPS64 release 5 ISA instructions\n\
7361da2c 18858-mips64r6 generate MIPS64 release 6 ISA instructions\n\
316f5878
RS
18859-march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
18860
18861 first = 1;
e7af610e
NC
18862
18863 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
316f5878
RS
18864 show (stream, mips_cpu_info_table[i].name, &column, &first);
18865 show (stream, "from-abi", &column, &first);
18866 fputc ('\n', stream);
e7af610e 18867
316f5878
RS
18868 fprintf (stream, _("\
18869-mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
18870-no-mCPU don't generate code specific to CPU.\n\
18871 For -mCPU and -no-mCPU, CPU must be one of:\n"));
18872
18873 first = 1;
18874
18875 show (stream, "3900", &column, &first);
18876 show (stream, "4010", &column, &first);
18877 show (stream, "4100", &column, &first);
18878 show (stream, "4650", &column, &first);
18879 fputc ('\n', stream);
18880
18881 fprintf (stream, _("\
18882-mips16 generate mips16 instructions\n\
18883-no-mips16 do not generate mips16 instructions\n"));
18884 fprintf (stream, _("\
df58fc94
RS
18885-mmicromips generate microMIPS instructions\n\
18886-mno-micromips do not generate microMIPS instructions\n"));
18887 fprintf (stream, _("\
e16bfa71
TS
18888-msmartmips generate smartmips instructions\n\
18889-mno-smartmips do not generate smartmips instructions\n"));
18890 fprintf (stream, _("\
74cd071d
CF
18891-mdsp generate DSP instructions\n\
18892-mno-dsp do not generate DSP instructions\n"));
18893 fprintf (stream, _("\
8b082fb1
TS
18894-mdspr2 generate DSP R2 instructions\n\
18895-mno-dspr2 do not generate DSP R2 instructions\n"));
18896 fprintf (stream, _("\
ef2e4d86
CF
18897-mmt generate MT instructions\n\
18898-mno-mt do not generate MT instructions\n"));
18899 fprintf (stream, _("\
dec0624d
MR
18900-mmcu generate MCU instructions\n\
18901-mno-mcu do not generate MCU instructions\n"));
18902 fprintf (stream, _("\
56d438b1
CF
18903-mmsa generate MSA instructions\n\
18904-mno-msa do not generate MSA instructions\n"));
18905 fprintf (stream, _("\
7d64c587
AB
18906-mxpa generate eXtended Physical Address (XPA) instructions\n\
18907-mno-xpa do not generate eXtended Physical Address (XPA) instructions\n"));
18908 fprintf (stream, _("\
b015e599
AP
18909-mvirt generate Virtualization instructions\n\
18910-mno-virt do not generate Virtualization instructions\n"));
18911 fprintf (stream, _("\
833794fc
MR
18912-minsn32 only generate 32-bit microMIPS instructions\n\
18913-mno-insn32 generate all microMIPS instructions\n"));
18914 fprintf (stream, _("\
c67a084a
NC
18915-mfix-loongson2f-jump work around Loongson2F JUMP instructions\n\
18916-mfix-loongson2f-nop work around Loongson2F NOP errata\n\
d766e8ec 18917-mfix-vr4120 work around certain VR4120 errata\n\
7d8e00cf 18918-mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
6a32d874 18919-mfix-24k insert a nop after ERET and DERET instructions\n\
d954098f 18920-mfix-cn63xxp1 work around CN63XXP1 PREF errata\n\
316f5878
RS
18921-mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
18922-mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
aed1a261 18923-msym32 assume all symbols have 32-bit values\n\
316f5878
RS
18924-O0 remove unneeded NOPs, do not swap branches\n\
18925-O remove unneeded NOPs and swap branches\n\
316f5878
RS
18926--trap, --no-break trap exception on div by 0 and mult overflow\n\
18927--break, --no-trap break exception on div by 0 and mult overflow\n"));
037b32b9
AN
18928 fprintf (stream, _("\
18929-mhard-float allow floating-point instructions\n\
18930-msoft-float do not allow floating-point instructions\n\
18931-msingle-float only allow 32-bit floating-point operations\n\
18932-mdouble-float allow 32-bit and 64-bit floating-point operations\n\
3bf0dbfb 18933--[no-]construct-floats [dis]allow floating point values to be constructed\n\
ba92f887
MR
18934--[no-]relax-branch [dis]allow out-of-range branches to be relaxed\n\
18935-mnan=ENCODING select an IEEE 754 NaN encoding convention, either of:\n"));
18936
18937 first = 1;
18938
18939 show (stream, "legacy", &column, &first);
18940 show (stream, "2008", &column, &first);
18941
18942 fputc ('\n', stream);
18943
316f5878
RS
18944 fprintf (stream, _("\
18945-KPIC, -call_shared generate SVR4 position independent code\n\
861fb55a 18946-call_nonpic generate non-PIC code that can operate with DSOs\n\
0c000745 18947-mvxworks-pic generate VxWorks position independent code\n\
861fb55a 18948-non_shared do not generate code that can operate with DSOs\n\
316f5878 18949-xgot assume a 32 bit GOT\n\
dcd410fe 18950-mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
bbe506e8 18951-mshared, -mno-shared disable/enable .cpload optimization for\n\
d821e36b 18952 position dependent (non shared) code\n\
316f5878
RS
18953-mabi=ABI create ABI conformant object file for:\n"));
18954
18955 first = 1;
18956
18957 show (stream, "32", &column, &first);
18958 show (stream, "o64", &column, &first);
18959 show (stream, "n32", &column, &first);
18960 show (stream, "64", &column, &first);
18961 show (stream, "eabi", &column, &first);
18962
18963 fputc ('\n', stream);
18964
18965 fprintf (stream, _("\
18966-32 create o32 ABI object file (default)\n\
18967-n32 create n32 ABI object file\n\
18968-64 create 64 ABI object file\n"));
e7af610e 18969}
14e777e0 18970
1575952e 18971#ifdef TE_IRIX
14e777e0 18972enum dwarf2_format
413a266c 18973mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
14e777e0 18974{
369943fe 18975 if (HAVE_64BIT_SYMBOLS)
1575952e 18976 return dwarf2_format_64bit_irix;
14e777e0
KB
18977 else
18978 return dwarf2_format_32bit;
18979}
1575952e 18980#endif
73369e65
EC
18981
18982int
18983mips_dwarf2_addr_size (void)
18984{
6b6b3450 18985 if (HAVE_64BIT_OBJECTS)
73369e65 18986 return 8;
73369e65
EC
18987 else
18988 return 4;
18989}
5862107c
EC
18990
18991/* Standard calling conventions leave the CFA at SP on entry. */
18992void
18993mips_cfi_frame_initial_instructions (void)
18994{
18995 cfi_add_CFA_def_cfa_register (SP);
18996}
18997
707bfff6
TS
18998int
18999tc_mips_regname_to_dw2regnum (char *regname)
19000{
19001 unsigned int regnum = -1;
19002 unsigned int reg;
19003
19004 if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
19005 regnum = reg;
19006
19007 return regnum;
19008}
263b2574 19009
19010/* Implement CONVERT_SYMBOLIC_ATTRIBUTE.
19011 Given a symbolic attribute NAME, return the proper integer value.
19012 Returns -1 if the attribute is not known. */
19013
19014int
19015mips_convert_symbolic_attribute (const char *name)
19016{
19017 static const struct
19018 {
19019 const char * name;
19020 const int tag;
19021 }
19022 attribute_table[] =
19023 {
19024#define T(tag) {#tag, tag}
19025 T (Tag_GNU_MIPS_ABI_FP),
19026 T (Tag_GNU_MIPS_ABI_MSA),
19027#undef T
19028 };
19029 unsigned int i;
19030
19031 if (name == NULL)
19032 return -1;
19033
19034 for (i = 0; i < ARRAY_SIZE (attribute_table); i++)
19035 if (streq (name, attribute_table[i].name))
19036 return attribute_table[i].tag;
19037
19038 return -1;
19039}
fd5c94ab
RS
19040
19041void
19042md_mips_end (void)
19043{
351cdf24
MF
19044 int fpabi = Val_GNU_MIPS_ABI_FP_ANY;
19045
fd5c94ab
RS
19046 mips_emit_delays ();
19047 if (cur_proc_ptr)
19048 as_warn (_("missing .end at end of assembly"));
919731af 19049
19050 /* Just in case no code was emitted, do the consistency check. */
19051 file_mips_check_options ();
351cdf24
MF
19052
19053 /* Set a floating-point ABI if the user did not. */
19054 if (obj_elf_seen_attribute (OBJ_ATTR_GNU, Tag_GNU_MIPS_ABI_FP))
19055 {
19056 /* Perform consistency checks on the floating-point ABI. */
19057 fpabi = bfd_elf_get_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
19058 Tag_GNU_MIPS_ABI_FP);
19059 if (fpabi != Val_GNU_MIPS_ABI_FP_ANY)
19060 check_fpabi (fpabi);
19061 }
19062 else
19063 {
19064 /* Soft-float gets precedence over single-float, the two options should
19065 not be used together so this should not matter. */
19066 if (file_mips_opts.soft_float == 1)
19067 fpabi = Val_GNU_MIPS_ABI_FP_SOFT;
19068 /* Single-float gets precedence over all double_float cases. */
19069 else if (file_mips_opts.single_float == 1)
19070 fpabi = Val_GNU_MIPS_ABI_FP_SINGLE;
19071 else
19072 {
19073 switch (file_mips_opts.fp)
19074 {
19075 case 32:
19076 if (file_mips_opts.gp == 32)
19077 fpabi = Val_GNU_MIPS_ABI_FP_DOUBLE;
19078 break;
19079 case 0:
19080 fpabi = Val_GNU_MIPS_ABI_FP_XX;
19081 break;
19082 case 64:
19083 if (file_mips_opts.gp == 32 && !file_mips_opts.oddspreg)
19084 fpabi = Val_GNU_MIPS_ABI_FP_64A;
19085 else if (file_mips_opts.gp == 32)
19086 fpabi = Val_GNU_MIPS_ABI_FP_64;
19087 else
19088 fpabi = Val_GNU_MIPS_ABI_FP_DOUBLE;
19089 break;
19090 }
19091 }
19092
19093 bfd_elf_add_obj_attr_int (stdoutput, OBJ_ATTR_GNU,
19094 Tag_GNU_MIPS_ABI_FP, fpabi);
19095 }
fd5c94ab 19096}