gas/
[deliverable/binutils-gdb.git] / gas / config / tc-mips.c
CommitLineData
252b5132 1/* tc-mips.c -- assemble code for a MIPS chip.
81912461 2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
e407c74b 3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
c67a084a 4 Free Software Foundation, Inc.
252b5132
RH
5 Contributed by the OSF and Ralph Campbell.
6 Written by Keith Knowles and Ralph Campbell, working independently.
7 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
8 Support.
9
10 This file is part of GAS.
11
12 GAS is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
ec2655a6 14 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
15 any later version.
16
17 GAS is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
24 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
25 02110-1301, USA. */
252b5132
RH
26
27#include "as.h"
28#include "config.h"
29#include "subsegs.h"
3882b010 30#include "safe-ctype.h"
252b5132 31
252b5132
RH
32#include "opcode/mips.h"
33#include "itbl-ops.h"
c5dd6aab 34#include "dwarf2dbg.h"
5862107c 35#include "dw2gencfi.h"
252b5132 36
42429eac
RS
37/* Check assumptions made in this file. */
38typedef char static_assert1[sizeof (offsetT) < 8 ? -1 : 1];
39typedef char static_assert2[sizeof (valueT) < 8 ? -1 : 1];
40
252b5132
RH
41#ifdef DEBUG
42#define DBG(x) printf x
43#else
44#define DBG(x)
45#endif
46
252b5132 47/* Clean up namespace so we can include obj-elf.h too. */
17a2f251
TS
48static int mips_output_flavor (void);
49static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
252b5132
RH
50#undef OBJ_PROCESS_STAB
51#undef OUTPUT_FLAVOR
52#undef S_GET_ALIGN
53#undef S_GET_SIZE
54#undef S_SET_ALIGN
55#undef S_SET_SIZE
252b5132
RH
56#undef obj_frob_file
57#undef obj_frob_file_after_relocs
58#undef obj_frob_symbol
59#undef obj_pop_insert
60#undef obj_sec_sym_ok_for_reloc
61#undef OBJ_COPY_SYMBOL_ATTRIBUTES
62
63#include "obj-elf.h"
64/* Fix any of them that we actually care about. */
65#undef OUTPUT_FLAVOR
66#define OUTPUT_FLAVOR mips_output_flavor()
252b5132 67
252b5132 68#include "elf/mips.h"
252b5132
RH
69
70#ifndef ECOFF_DEBUGGING
71#define NO_ECOFF_DEBUGGING
72#define ECOFF_DEBUGGING 0
73#endif
74
ecb4347a
DJ
75int mips_flag_mdebug = -1;
76
dcd410fe
RO
77/* Control generation of .pdr sections. Off by default on IRIX: the native
78 linker doesn't know about and discards them, but relocations against them
79 remain, leading to rld crashes. */
80#ifdef TE_IRIX
81int mips_flag_pdr = FALSE;
82#else
83int mips_flag_pdr = TRUE;
84#endif
85
252b5132
RH
86#include "ecoff.h"
87
252b5132 88static char *mips_regmask_frag;
252b5132 89
85b51719 90#define ZERO 0
741fe287 91#define ATREG 1
df58fc94
RS
92#define S0 16
93#define S7 23
252b5132
RH
94#define TREG 24
95#define PIC_CALL_REG 25
96#define KT0 26
97#define KT1 27
98#define GP 28
99#define SP 29
100#define FP 30
101#define RA 31
102
103#define ILLEGAL_REG (32)
104
741fe287
MR
105#define AT mips_opts.at
106
252b5132
RH
107extern int target_big_endian;
108
252b5132 109/* The name of the readonly data section. */
e8044f35 110#define RDATA_SECTION_NAME ".rodata"
252b5132 111
a4e06468
RS
112/* Ways in which an instruction can be "appended" to the output. */
113enum append_method {
114 /* Just add it normally. */
115 APPEND_ADD,
116
117 /* Add it normally and then add a nop. */
118 APPEND_ADD_WITH_NOP,
119
120 /* Turn an instruction with a delay slot into a "compact" version. */
121 APPEND_ADD_COMPACT,
122
123 /* Insert the instruction before the last one. */
124 APPEND_SWAP
125};
126
47e39b9d
RS
127/* Information about an instruction, including its format, operands
128 and fixups. */
129struct mips_cl_insn
130{
131 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
132 const struct mips_opcode *insn_mo;
133
47e39b9d 134 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
5c04167a
RS
135 a copy of INSN_MO->match with the operands filled in. If we have
136 decided to use an extended MIPS16 instruction, this includes the
137 extension. */
47e39b9d
RS
138 unsigned long insn_opcode;
139
140 /* The frag that contains the instruction. */
141 struct frag *frag;
142
143 /* The offset into FRAG of the first instruction byte. */
144 long where;
145
146 /* The relocs associated with the instruction, if any. */
147 fixS *fixp[3];
148
a38419a5
RS
149 /* True if this entry cannot be moved from its current position. */
150 unsigned int fixed_p : 1;
47e39b9d 151
708587a4 152 /* True if this instruction occurred in a .set noreorder block. */
47e39b9d
RS
153 unsigned int noreorder_p : 1;
154
2fa15973
RS
155 /* True for mips16 instructions that jump to an absolute address. */
156 unsigned int mips16_absolute_jump_p : 1;
15be625d
CM
157
158 /* True if this instruction is complete. */
159 unsigned int complete_p : 1;
e407c74b
NC
160
161 /* True if this instruction is cleared from history by unconditional
162 branch. */
163 unsigned int cleared_p : 1;
47e39b9d
RS
164};
165
a325df1d
TS
166/* The ABI to use. */
167enum mips_abi_level
168{
169 NO_ABI = 0,
170 O32_ABI,
171 O64_ABI,
172 N32_ABI,
173 N64_ABI,
174 EABI_ABI
175};
176
177/* MIPS ABI we are using for this output file. */
316f5878 178static enum mips_abi_level mips_abi = NO_ABI;
a325df1d 179
143d77c5
EC
180/* Whether or not we have code that can call pic code. */
181int mips_abicalls = FALSE;
182
aa6975fb
ILT
183/* Whether or not we have code which can be put into a shared
184 library. */
185static bfd_boolean mips_in_shared = TRUE;
186
252b5132
RH
187/* This is the set of options which may be modified by the .set
188 pseudo-op. We use a struct so that .set push and .set pop are more
189 reliable. */
190
e972090a
NC
191struct mips_set_options
192{
252b5132
RH
193 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
194 if it has not been initialized. Changed by `.set mipsN', and the
195 -mipsN command line option, and the default CPU. */
196 int isa;
846ef2d0
RS
197 /* Enabled Application Specific Extensions (ASEs). Changed by `.set
198 <asename>', by command line options, and based on the default
199 architecture. */
200 int ase;
252b5132
RH
201 /* Whether we are assembling for the mips16 processor. 0 if we are
202 not, 1 if we are, and -1 if the value has not been initialized.
203 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
204 -nomips16 command line options, and the default CPU. */
205 int mips16;
df58fc94
RS
206 /* Whether we are assembling for the mipsMIPS ASE. 0 if we are not,
207 1 if we are, and -1 if the value has not been initialized. Changed
208 by `.set micromips' and `.set nomicromips', and the -mmicromips
209 and -mno-micromips command line options, and the default CPU. */
210 int micromips;
252b5132
RH
211 /* Non-zero if we should not reorder instructions. Changed by `.set
212 reorder' and `.set noreorder'. */
213 int noreorder;
741fe287
MR
214 /* Non-zero if we should not permit the register designated "assembler
215 temporary" to be used in instructions. The value is the register
216 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
217 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
218 unsigned int at;
252b5132
RH
219 /* Non-zero if we should warn when a macro instruction expands into
220 more than one machine instruction. Changed by `.set nomacro' and
221 `.set macro'. */
222 int warn_about_macros;
223 /* Non-zero if we should not move instructions. Changed by `.set
224 move', `.set volatile', `.set nomove', and `.set novolatile'. */
225 int nomove;
226 /* Non-zero if we should not optimize branches by moving the target
227 of the branch into the delay slot. Actually, we don't perform
228 this optimization anyhow. Changed by `.set bopt' and `.set
229 nobopt'. */
230 int nobopt;
231 /* Non-zero if we should not autoextend mips16 instructions.
232 Changed by `.set autoextend' and `.set noautoextend'. */
233 int noautoextend;
833794fc
MR
234 /* True if we should only emit 32-bit microMIPS instructions.
235 Changed by `.set insn32' and `.set noinsn32', and the -minsn32
236 and -mno-insn32 command line options. */
237 bfd_boolean insn32;
a325df1d
TS
238 /* Restrict general purpose registers and floating point registers
239 to 32 bit. This is initially determined when -mgp32 or -mfp32
240 is passed but can changed if the assembler code uses .set mipsN. */
241 int gp32;
242 int fp32;
fef14a42
TS
243 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
244 command line option, and the default CPU. */
245 int arch;
aed1a261
RS
246 /* True if ".set sym32" is in effect. */
247 bfd_boolean sym32;
037b32b9
AN
248 /* True if floating-point operations are not allowed. Changed by .set
249 softfloat or .set hardfloat, by command line options -msoft-float or
250 -mhard-float. The default is false. */
251 bfd_boolean soft_float;
252
253 /* True if only single-precision floating-point operations are allowed.
254 Changed by .set singlefloat or .set doublefloat, command-line options
255 -msingle-float or -mdouble-float. The default is false. */
256 bfd_boolean single_float;
252b5132
RH
257};
258
037b32b9
AN
259/* This is the struct we use to hold the current set of options. Note
260 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
261 -1 to indicate that they have not been initialized. */
262
a325df1d 263/* True if -mgp32 was passed. */
a8e8e863 264static int file_mips_gp32 = -1;
a325df1d
TS
265
266/* True if -mfp32 was passed. */
a8e8e863 267static int file_mips_fp32 = -1;
a325df1d 268
037b32b9
AN
269/* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
270static int file_mips_soft_float = 0;
271
272/* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
273static int file_mips_single_float = 0;
252b5132 274
ba92f887
MR
275/* True if -mnan=2008, false if -mnan=legacy. */
276static bfd_boolean mips_flag_nan2008 = FALSE;
277
e972090a
NC
278static struct mips_set_options mips_opts =
279{
846ef2d0 280 /* isa */ ISA_UNKNOWN, /* ase */ 0, /* mips16 */ -1, /* micromips */ -1,
b015e599 281 /* noreorder */ 0, /* at */ ATREG, /* warn_about_macros */ 0,
833794fc
MR
282 /* nomove */ 0, /* nobopt */ 0, /* noautoextend */ 0, /* insn32 */ FALSE,
283 /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN, /* sym32 */ FALSE,
b015e599 284 /* soft_float */ FALSE, /* single_float */ FALSE
e7af610e 285};
252b5132 286
846ef2d0
RS
287/* The set of ASEs that were selected on the command line, either
288 explicitly via ASE options or implicitly through things like -march. */
289static unsigned int file_ase;
290
291/* Which bits of file_ase were explicitly set or cleared by ASE options. */
292static unsigned int file_ase_explicit;
293
252b5132
RH
294/* These variables are filled in with the masks of registers used.
295 The object format code reads them and puts them in the appropriate
296 place. */
297unsigned long mips_gprmask;
298unsigned long mips_cprmask[4];
299
300/* MIPS ISA we are using for this output file. */
e7af610e 301static int file_mips_isa = ISA_UNKNOWN;
252b5132 302
738f4d98 303/* True if any MIPS16 code was produced. */
a4672219
TS
304static int file_ase_mips16;
305
3994f87e
TS
306#define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \
307 || mips_opts.isa == ISA_MIPS32R2 \
308 || mips_opts.isa == ISA_MIPS64 \
309 || mips_opts.isa == ISA_MIPS64R2)
310
df58fc94
RS
311/* True if any microMIPS code was produced. */
312static int file_ase_micromips;
313
b12dd2e4
CF
314/* True if we want to create R_MIPS_JALR for jalr $25. */
315#ifdef TE_IRIX
1180b5a4 316#define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
b12dd2e4 317#else
1180b5a4
RS
318/* As a GNU extension, we use R_MIPS_JALR for o32 too. However,
319 because there's no place for any addend, the only acceptable
320 expression is a bare symbol. */
321#define MIPS_JALR_HINT_P(EXPR) \
322 (!HAVE_IN_PLACE_ADDENDS \
323 || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
b12dd2e4
CF
324#endif
325
ec68c924 326/* The argument of the -march= flag. The architecture we are assembling. */
fef14a42 327static int file_mips_arch = CPU_UNKNOWN;
316f5878 328static const char *mips_arch_string;
ec68c924
EC
329
330/* The argument of the -mtune= flag. The architecture for which we
331 are optimizing. */
332static int mips_tune = CPU_UNKNOWN;
316f5878 333static const char *mips_tune_string;
ec68c924 334
316f5878 335/* True when generating 32-bit code for a 64-bit processor. */
252b5132
RH
336static int mips_32bitmode = 0;
337
316f5878
RS
338/* True if the given ABI requires 32-bit registers. */
339#define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
340
341/* Likewise 64-bit registers. */
707bfff6
TS
342#define ABI_NEEDS_64BIT_REGS(ABI) \
343 ((ABI) == N32_ABI \
344 || (ABI) == N64_ABI \
316f5878
RS
345 || (ABI) == O64_ABI)
346
ad3fea08 347/* Return true if ISA supports 64 bit wide gp registers. */
707bfff6
TS
348#define ISA_HAS_64BIT_REGS(ISA) \
349 ((ISA) == ISA_MIPS3 \
350 || (ISA) == ISA_MIPS4 \
351 || (ISA) == ISA_MIPS5 \
352 || (ISA) == ISA_MIPS64 \
353 || (ISA) == ISA_MIPS64R2)
9ce8a5dd 354
ad3fea08
TS
355/* Return true if ISA supports 64 bit wide float registers. */
356#define ISA_HAS_64BIT_FPRS(ISA) \
357 ((ISA) == ISA_MIPS3 \
358 || (ISA) == ISA_MIPS4 \
359 || (ISA) == ISA_MIPS5 \
360 || (ISA) == ISA_MIPS32R2 \
361 || (ISA) == ISA_MIPS64 \
362 || (ISA) == ISA_MIPS64R2)
363
af7ee8bf
CD
364/* Return true if ISA supports 64-bit right rotate (dror et al.)
365 instructions. */
707bfff6 366#define ISA_HAS_DROR(ISA) \
df58fc94
RS
367 ((ISA) == ISA_MIPS64R2 \
368 || (mips_opts.micromips \
369 && ISA_HAS_64BIT_REGS (ISA)) \
370 )
af7ee8bf
CD
371
372/* Return true if ISA supports 32-bit right rotate (ror et al.)
373 instructions. */
707bfff6
TS
374#define ISA_HAS_ROR(ISA) \
375 ((ISA) == ISA_MIPS32R2 \
376 || (ISA) == ISA_MIPS64R2 \
846ef2d0 377 || (mips_opts.ase & ASE_SMARTMIPS) \
df58fc94
RS
378 || mips_opts.micromips \
379 )
707bfff6 380
7455baf8
TS
381/* Return true if ISA supports single-precision floats in odd registers. */
382#define ISA_HAS_ODD_SINGLE_FPR(ISA) \
383 ((ISA) == ISA_MIPS32 \
384 || (ISA) == ISA_MIPS32R2 \
385 || (ISA) == ISA_MIPS64 \
386 || (ISA) == ISA_MIPS64R2)
af7ee8bf 387
ad3fea08
TS
388/* Return true if ISA supports move to/from high part of a 64-bit
389 floating-point register. */
390#define ISA_HAS_MXHC1(ISA) \
391 ((ISA) == ISA_MIPS32R2 \
392 || (ISA) == ISA_MIPS64R2)
393
e013f690 394#define HAVE_32BIT_GPRS \
ad3fea08 395 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
ca4e0257 396
e013f690 397#define HAVE_32BIT_FPRS \
ad3fea08 398 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
ca4e0257 399
ad3fea08
TS
400#define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
401#define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
ca4e0257 402
316f5878 403#define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
e013f690 404
316f5878 405#define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
e013f690 406
3b91255e
RS
407/* True if relocations are stored in-place. */
408#define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
409
aed1a261
RS
410/* The ABI-derived address size. */
411#define HAVE_64BIT_ADDRESSES \
412 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
413#define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
e013f690 414
aed1a261
RS
415/* The size of symbolic constants (i.e., expressions of the form
416 "SYMBOL" or "SYMBOL + OFFSET"). */
417#define HAVE_32BIT_SYMBOLS \
418 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
419#define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
ca4e0257 420
b7c7d6c1
TS
421/* Addresses are loaded in different ways, depending on the address size
422 in use. The n32 ABI Documentation also mandates the use of additions
423 with overflow checking, but existing implementations don't follow it. */
f899b4b8 424#define ADDRESS_ADD_INSN \
b7c7d6c1 425 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
f899b4b8
TS
426
427#define ADDRESS_ADDI_INSN \
b7c7d6c1 428 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
f899b4b8
TS
429
430#define ADDRESS_LOAD_INSN \
431 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
432
433#define ADDRESS_STORE_INSN \
434 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
435
a4672219 436/* Return true if the given CPU supports the MIPS16 ASE. */
3396de36
TS
437#define CPU_HAS_MIPS16(cpu) \
438 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
439 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
a4672219 440
2309ddf2 441/* Return true if the given CPU supports the microMIPS ASE. */
df58fc94
RS
442#define CPU_HAS_MICROMIPS(cpu) 0
443
60b63b72
RS
444/* True if CPU has a dror instruction. */
445#define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
446
447/* True if CPU has a ror instruction. */
448#define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
449
dd6a37e7 450/* True if CPU is in the Octeon family */
432233b3 451#define CPU_IS_OCTEON(CPU) ((CPU) == CPU_OCTEON || (CPU) == CPU_OCTEONP || (CPU) == CPU_OCTEON2)
dd6a37e7 452
dd3cbb7e 453/* True if CPU has seq/sne and seqi/snei instructions. */
dd6a37e7 454#define CPU_HAS_SEQ(CPU) (CPU_IS_OCTEON (CPU))
dd3cbb7e 455
0aa27725
RS
456/* True, if CPU has support for ldc1 and sdc1. */
457#define CPU_HAS_LDC1_SDC1(CPU) \
458 ((mips_opts.isa != ISA_MIPS1) && ((CPU) != CPU_R5900))
459
c8978940
CD
460/* True if mflo and mfhi can be immediately followed by instructions
461 which write to the HI and LO registers.
462
463 According to MIPS specifications, MIPS ISAs I, II, and III need
464 (at least) two instructions between the reads of HI/LO and
465 instructions which write them, and later ISAs do not. Contradicting
466 the MIPS specifications, some MIPS IV processor user manuals (e.g.
467 the UM for the NEC Vr5000) document needing the instructions between
468 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
469 MIPS64 and later ISAs to have the interlocks, plus any specific
470 earlier-ISA CPUs for which CPU documentation declares that the
471 instructions are really interlocked. */
472#define hilo_interlocks \
473 (mips_opts.isa == ISA_MIPS32 \
474 || mips_opts.isa == ISA_MIPS32R2 \
475 || mips_opts.isa == ISA_MIPS64 \
476 || mips_opts.isa == ISA_MIPS64R2 \
477 || mips_opts.arch == CPU_R4010 \
e407c74b 478 || mips_opts.arch == CPU_R5900 \
c8978940
CD
479 || mips_opts.arch == CPU_R10000 \
480 || mips_opts.arch == CPU_R12000 \
3aa3176b
TS
481 || mips_opts.arch == CPU_R14000 \
482 || mips_opts.arch == CPU_R16000 \
c8978940 483 || mips_opts.arch == CPU_RM7000 \
c8978940 484 || mips_opts.arch == CPU_VR5500 \
df58fc94 485 || mips_opts.micromips \
c8978940 486 )
252b5132
RH
487
488/* Whether the processor uses hardware interlocks to protect reads
81912461
ILT
489 from the GPRs after they are loaded from memory, and thus does not
490 require nops to be inserted. This applies to instructions marked
491 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
df58fc94
RS
492 level I and microMIPS mode instructions are always interlocked. */
493#define gpr_interlocks \
494 (mips_opts.isa != ISA_MIPS1 \
495 || mips_opts.arch == CPU_R3900 \
e407c74b 496 || mips_opts.arch == CPU_R5900 \
df58fc94
RS
497 || mips_opts.micromips \
498 )
252b5132 499
81912461
ILT
500/* Whether the processor uses hardware interlocks to avoid delays
501 required by coprocessor instructions, and thus does not require
502 nops to be inserted. This applies to instructions marked
503 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
504 between instructions marked INSN_WRITE_COND_CODE and ones marked
505 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
df58fc94
RS
506 levels I, II, and III and microMIPS mode instructions are always
507 interlocked. */
bdaaa2e1 508/* Itbl support may require additional care here. */
81912461
ILT
509#define cop_interlocks \
510 ((mips_opts.isa != ISA_MIPS1 \
511 && mips_opts.isa != ISA_MIPS2 \
512 && mips_opts.isa != ISA_MIPS3) \
513 || mips_opts.arch == CPU_R4300 \
df58fc94 514 || mips_opts.micromips \
81912461
ILT
515 )
516
517/* Whether the processor uses hardware interlocks to protect reads
518 from coprocessor registers after they are loaded from memory, and
519 thus does not require nops to be inserted. This applies to
520 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
df58fc94
RS
521 requires at MIPS ISA level I and microMIPS mode instructions are
522 always interlocked. */
523#define cop_mem_interlocks \
524 (mips_opts.isa != ISA_MIPS1 \
525 || mips_opts.micromips \
526 )
252b5132 527
6b76fefe
CM
528/* Is this a mfhi or mflo instruction? */
529#define MF_HILO_INSN(PINFO) \
b19e8a9b
AN
530 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
531
df58fc94
RS
532/* Whether code compression (either of the MIPS16 or the microMIPS ASEs)
533 has been selected. This implies, in particular, that addresses of text
534 labels have their LSB set. */
535#define HAVE_CODE_COMPRESSION \
536 ((mips_opts.mips16 | mips_opts.micromips) != 0)
537
42429eac
RS
538/* The minimum and maximum signed values that can be stored in a GPR. */
539#define GPR_SMAX ((offsetT) (((valueT) 1 << (HAVE_64BIT_GPRS ? 63 : 31)) - 1))
540#define GPR_SMIN (-GPR_SMAX - 1)
541
252b5132
RH
542/* MIPS PIC level. */
543
a161fe53 544enum mips_pic_level mips_pic;
252b5132 545
c9914766 546/* 1 if we should generate 32 bit offsets from the $gp register in
252b5132 547 SVR4_PIC mode. Currently has no meaning in other modes. */
c9914766 548static int mips_big_got = 0;
252b5132
RH
549
550/* 1 if trap instructions should used for overflow rather than break
551 instructions. */
c9914766 552static int mips_trap = 0;
252b5132 553
119d663a 554/* 1 if double width floating point constants should not be constructed
b6ff326e 555 by assembling two single width halves into two single width floating
119d663a
NC
556 point registers which just happen to alias the double width destination
557 register. On some architectures this aliasing can be disabled by a bit
d547a75e 558 in the status register, and the setting of this bit cannot be determined
119d663a
NC
559 automatically at assemble time. */
560static int mips_disable_float_construction;
561
252b5132
RH
562/* Non-zero if any .set noreorder directives were used. */
563
564static int mips_any_noreorder;
565
6b76fefe
CM
566/* Non-zero if nops should be inserted when the register referenced in
567 an mfhi/mflo instruction is read in the next two instructions. */
568static int mips_7000_hilo_fix;
569
02ffd3e4 570/* The size of objects in the small data section. */
156c2f8b 571static unsigned int g_switch_value = 8;
252b5132
RH
572/* Whether the -G option was used. */
573static int g_switch_seen = 0;
574
575#define N_RMASK 0xc4
576#define N_VFP 0xd4
577
578/* If we can determine in advance that GP optimization won't be
579 possible, we can skip the relaxation stuff that tries to produce
580 GP-relative references. This makes delay slot optimization work
581 better.
582
583 This function can only provide a guess, but it seems to work for
fba2b7f9
GK
584 gcc output. It needs to guess right for gcc, otherwise gcc
585 will put what it thinks is a GP-relative instruction in a branch
586 delay slot.
252b5132
RH
587
588 I don't know if a fix is needed for the SVR4_PIC mode. I've only
589 fixed it for the non-PIC mode. KR 95/04/07 */
17a2f251 590static int nopic_need_relax (symbolS *, int);
252b5132
RH
591
592/* handle of the OPCODE hash table */
593static struct hash_control *op_hash = NULL;
594
595/* The opcode hash table we use for the mips16. */
596static struct hash_control *mips16_op_hash = NULL;
597
df58fc94
RS
598/* The opcode hash table we use for the microMIPS ASE. */
599static struct hash_control *micromips_op_hash = NULL;
600
252b5132
RH
601/* This array holds the chars that always start a comment. If the
602 pre-processor is disabled, these aren't very useful */
603const char comment_chars[] = "#";
604
605/* This array holds the chars that only start a comment at the beginning of
606 a line. If the line seems to have the form '# 123 filename'
607 .line and .file directives will appear in the pre-processed output */
608/* Note that input_file.c hand checks for '#' at the beginning of the
609 first line of the input file. This is because the compiler outputs
bdaaa2e1 610 #NO_APP at the beginning of its output. */
252b5132
RH
611/* Also note that C style comments are always supported. */
612const char line_comment_chars[] = "#";
613
bdaaa2e1 614/* This array holds machine specific line separator characters. */
63a0b638 615const char line_separator_chars[] = ";";
252b5132
RH
616
617/* Chars that can be used to separate mant from exp in floating point nums */
618const char EXP_CHARS[] = "eE";
619
620/* Chars that mean this number is a floating point constant */
621/* As in 0f12.456 */
622/* or 0d1.2345e12 */
623const char FLT_CHARS[] = "rRsSfFdDxXpP";
624
625/* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
626 changed in read.c . Ideally it shouldn't have to know about it at all,
627 but nothing is ideal around here.
628 */
629
630static char *insn_error;
631
632static int auto_align = 1;
633
634/* When outputting SVR4 PIC code, the assembler needs to know the
635 offset in the stack frame from which to restore the $gp register.
636 This is set by the .cprestore pseudo-op, and saved in this
637 variable. */
638static offsetT mips_cprestore_offset = -1;
639
67c1ffbe 640/* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
6478892d 641 more optimizations, it can use a register value instead of a memory-saved
956cd1d6 642 offset and even an other register than $gp as global pointer. */
6478892d
TS
643static offsetT mips_cpreturn_offset = -1;
644static int mips_cpreturn_register = -1;
645static int mips_gp_register = GP;
def2e0dd 646static int mips_gprel_offset = 0;
6478892d 647
7a621144
DJ
648/* Whether mips_cprestore_offset has been set in the current function
649 (or whether it has already been warned about, if not). */
650static int mips_cprestore_valid = 0;
651
252b5132
RH
652/* This is the register which holds the stack frame, as set by the
653 .frame pseudo-op. This is needed to implement .cprestore. */
654static int mips_frame_reg = SP;
655
7a621144
DJ
656/* Whether mips_frame_reg has been set in the current function
657 (or whether it has already been warned about, if not). */
658static int mips_frame_reg_valid = 0;
659
252b5132
RH
660/* To output NOP instructions correctly, we need to keep information
661 about the previous two instructions. */
662
663/* Whether we are optimizing. The default value of 2 means to remove
664 unneeded NOPs and swap branch instructions when possible. A value
665 of 1 means to not swap branches. A value of 0 means to always
666 insert NOPs. */
667static int mips_optimize = 2;
668
669/* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
670 equivalent to seeing no -g option at all. */
671static int mips_debug = 0;
672
7d8e00cf
RS
673/* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
674#define MAX_VR4130_NOPS 4
675
676/* The maximum number of NOPs needed to fill delay slots. */
677#define MAX_DELAY_NOPS 2
678
679/* The maximum number of NOPs needed for any purpose. */
680#define MAX_NOPS 4
71400594
RS
681
682/* A list of previous instructions, with index 0 being the most recent.
683 We need to look back MAX_NOPS instructions when filling delay slots
684 or working around processor errata. We need to look back one
685 instruction further if we're thinking about using history[0] to
686 fill a branch delay slot. */
687static struct mips_cl_insn history[1 + MAX_NOPS];
252b5132 688
1e915849 689/* Nop instructions used by emit_nop. */
df58fc94
RS
690static struct mips_cl_insn nop_insn;
691static struct mips_cl_insn mips16_nop_insn;
692static struct mips_cl_insn micromips_nop16_insn;
693static struct mips_cl_insn micromips_nop32_insn;
1e915849
RS
694
695/* The appropriate nop for the current mode. */
833794fc
MR
696#define NOP_INSN (mips_opts.mips16 \
697 ? &mips16_nop_insn \
698 : (mips_opts.micromips \
699 ? (mips_opts.insn32 \
700 ? &micromips_nop32_insn \
701 : &micromips_nop16_insn) \
702 : &nop_insn))
df58fc94
RS
703
704/* The size of NOP_INSN in bytes. */
833794fc
MR
705#define NOP_INSN_SIZE ((mips_opts.mips16 \
706 || (mips_opts.micromips && !mips_opts.insn32)) \
707 ? 2 : 4)
252b5132 708
252b5132
RH
709/* If this is set, it points to a frag holding nop instructions which
710 were inserted before the start of a noreorder section. If those
711 nops turn out to be unnecessary, the size of the frag can be
712 decreased. */
713static fragS *prev_nop_frag;
714
715/* The number of nop instructions we created in prev_nop_frag. */
716static int prev_nop_frag_holds;
717
718/* The number of nop instructions that we know we need in
bdaaa2e1 719 prev_nop_frag. */
252b5132
RH
720static int prev_nop_frag_required;
721
722/* The number of instructions we've seen since prev_nop_frag. */
723static int prev_nop_frag_since;
724
e8044f35
RS
725/* Relocations against symbols are sometimes done in two parts, with a HI
726 relocation and a LO relocation. Each relocation has only 16 bits of
727 space to store an addend. This means that in order for the linker to
728 handle carries correctly, it must be able to locate both the HI and
729 the LO relocation. This means that the relocations must appear in
730 order in the relocation table.
252b5132
RH
731
732 In order to implement this, we keep track of each unmatched HI
733 relocation. We then sort them so that they immediately precede the
bdaaa2e1 734 corresponding LO relocation. */
252b5132 735
e972090a
NC
736struct mips_hi_fixup
737{
252b5132
RH
738 /* Next HI fixup. */
739 struct mips_hi_fixup *next;
740 /* This fixup. */
741 fixS *fixp;
742 /* The section this fixup is in. */
743 segT seg;
744};
745
746/* The list of unmatched HI relocs. */
747
748static struct mips_hi_fixup *mips_hi_fixup_list;
749
64bdfcaf
RS
750/* The frag containing the last explicit relocation operator.
751 Null if explicit relocations have not been used. */
752
753static fragS *prev_reloc_op_frag;
754
252b5132
RH
755/* Map normal MIPS register numbers to mips16 register numbers. */
756
757#define X ILLEGAL_REG
e972090a
NC
758static const int mips32_to_16_reg_map[] =
759{
252b5132
RH
760 X, X, 2, 3, 4, 5, 6, 7,
761 X, X, X, X, X, X, X, X,
762 0, 1, X, X, X, X, X, X,
763 X, X, X, X, X, X, X, X
764};
765#undef X
766
767/* Map mips16 register numbers to normal MIPS register numbers. */
768
e972090a
NC
769static const unsigned int mips16_to_32_reg_map[] =
770{
252b5132
RH
771 16, 17, 2, 3, 4, 5, 6, 7
772};
60b63b72 773
df58fc94
RS
774/* Map normal MIPS register numbers to microMIPS register numbers. */
775
776#define mips32_to_micromips_reg_b_map mips32_to_16_reg_map
777#define mips32_to_micromips_reg_c_map mips32_to_16_reg_map
778#define mips32_to_micromips_reg_d_map mips32_to_16_reg_map
779#define mips32_to_micromips_reg_e_map mips32_to_16_reg_map
780#define mips32_to_micromips_reg_f_map mips32_to_16_reg_map
781#define mips32_to_micromips_reg_g_map mips32_to_16_reg_map
782#define mips32_to_micromips_reg_l_map mips32_to_16_reg_map
783
784#define X ILLEGAL_REG
df58fc94
RS
785/* reg type m: 0, 17, 2, 3, 16, 18, 19, 20. */
786static const int mips32_to_micromips_reg_m_map[] =
787{
788 0, X, 2, 3, X, X, X, X,
789 X, X, X, X, X, X, X, X,
790 4, 1, 5, 6, 7, X, X, X,
791 X, X, X, X, X, X, X, X
792};
793
794/* reg type q: 0, 2-7. 17. */
795static const int mips32_to_micromips_reg_q_map[] =
796{
797 0, X, 2, 3, 4, 5, 6, 7,
798 X, X, X, X, X, X, X, X,
799 X, 1, X, X, X, X, X, X,
800 X, X, X, X, X, X, X, X
801};
802
803#define mips32_to_micromips_reg_n_map mips32_to_micromips_reg_m_map
804#undef X
805
806/* Map microMIPS register numbers to normal MIPS register numbers. */
807
808#define micromips_to_32_reg_b_map mips16_to_32_reg_map
809#define micromips_to_32_reg_c_map mips16_to_32_reg_map
810#define micromips_to_32_reg_d_map mips16_to_32_reg_map
811#define micromips_to_32_reg_e_map mips16_to_32_reg_map
812#define micromips_to_32_reg_f_map mips16_to_32_reg_map
813#define micromips_to_32_reg_g_map mips16_to_32_reg_map
814
815/* The microMIPS registers with type h. */
e76ff5ab 816static const unsigned int micromips_to_32_reg_h_map1[] =
df58fc94
RS
817{
818 5, 5, 6, 4, 4, 4, 4, 4
819};
e76ff5ab 820static const unsigned int micromips_to_32_reg_h_map2[] =
df58fc94
RS
821{
822 6, 7, 7, 21, 22, 5, 6, 7
823};
824
825#define micromips_to_32_reg_l_map mips16_to_32_reg_map
826
827/* The microMIPS registers with type m. */
828static const unsigned int micromips_to_32_reg_m_map[] =
829{
830 0, 17, 2, 3, 16, 18, 19, 20
831};
832
833#define micromips_to_32_reg_n_map micromips_to_32_reg_m_map
834
835/* The microMIPS registers with type q. */
836static const unsigned int micromips_to_32_reg_q_map[] =
837{
838 0, 17, 2, 3, 4, 5, 6, 7
839};
840
841/* microMIPS imm type B. */
842static const int micromips_imm_b_map[] =
843{
844 1, 4, 8, 12, 16, 20, 24, -1
845};
846
847/* microMIPS imm type C. */
848static const int micromips_imm_c_map[] =
849{
850 128, 1, 2, 3, 4, 7, 8, 15, 16, 31, 32, 63, 64, 255, 32768, 65535
851};
852
71400594
RS
853/* Classifies the kind of instructions we're interested in when
854 implementing -mfix-vr4120. */
c67a084a
NC
855enum fix_vr4120_class
856{
71400594
RS
857 FIX_VR4120_MACC,
858 FIX_VR4120_DMACC,
859 FIX_VR4120_MULT,
860 FIX_VR4120_DMULT,
861 FIX_VR4120_DIV,
862 FIX_VR4120_MTHILO,
863 NUM_FIX_VR4120_CLASSES
864};
865
c67a084a
NC
866/* ...likewise -mfix-loongson2f-jump. */
867static bfd_boolean mips_fix_loongson2f_jump;
868
869/* ...likewise -mfix-loongson2f-nop. */
870static bfd_boolean mips_fix_loongson2f_nop;
871
872/* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed. */
873static bfd_boolean mips_fix_loongson2f;
874
71400594
RS
875/* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
876 there must be at least one other instruction between an instruction
877 of type X and an instruction of type Y. */
878static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
879
880/* True if -mfix-vr4120 is in force. */
d766e8ec 881static int mips_fix_vr4120;
4a6a3df4 882
7d8e00cf
RS
883/* ...likewise -mfix-vr4130. */
884static int mips_fix_vr4130;
885
6a32d874
CM
886/* ...likewise -mfix-24k. */
887static int mips_fix_24k;
888
d954098f
DD
889/* ...likewise -mfix-cn63xxp1 */
890static bfd_boolean mips_fix_cn63xxp1;
891
4a6a3df4
AO
892/* We don't relax branches by default, since this causes us to expand
893 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
894 fail to compute the offset before expanding the macro to the most
895 efficient expansion. */
896
897static int mips_relax_branch;
252b5132 898\f
4d7206a2
RS
899/* The expansion of many macros depends on the type of symbol that
900 they refer to. For example, when generating position-dependent code,
901 a macro that refers to a symbol may have two different expansions,
902 one which uses GP-relative addresses and one which uses absolute
903 addresses. When generating SVR4-style PIC, a macro may have
904 different expansions for local and global symbols.
905
906 We handle these situations by generating both sequences and putting
907 them in variant frags. In position-dependent code, the first sequence
908 will be the GP-relative one and the second sequence will be the
909 absolute one. In SVR4 PIC, the first sequence will be for global
910 symbols and the second will be for local symbols.
911
584892a6
RS
912 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
913 SECOND are the lengths of the two sequences in bytes. These fields
914 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
915 the subtype has the following flags:
4d7206a2 916
584892a6
RS
917 RELAX_USE_SECOND
918 Set if it has been decided that we should use the second
919 sequence instead of the first.
920
921 RELAX_SECOND_LONGER
922 Set in the first variant frag if the macro's second implementation
923 is longer than its first. This refers to the macro as a whole,
924 not an individual relaxation.
925
926 RELAX_NOMACRO
927 Set in the first variant frag if the macro appeared in a .set nomacro
928 block and if one alternative requires a warning but the other does not.
929
930 RELAX_DELAY_SLOT
931 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
932 delay slot.
4d7206a2 933
df58fc94
RS
934 RELAX_DELAY_SLOT_16BIT
935 Like RELAX_DELAY_SLOT, but indicates that the delay slot requires a
936 16-bit instruction.
937
938 RELAX_DELAY_SLOT_SIZE_FIRST
939 Like RELAX_DELAY_SLOT, but indicates that the first implementation of
940 the macro is of the wrong size for the branch delay slot.
941
942 RELAX_DELAY_SLOT_SIZE_SECOND
943 Like RELAX_DELAY_SLOT, but indicates that the second implementation of
944 the macro is of the wrong size for the branch delay slot.
945
4d7206a2
RS
946 The frag's "opcode" points to the first fixup for relaxable code.
947
948 Relaxable macros are generated using a sequence such as:
949
950 relax_start (SYMBOL);
951 ... generate first expansion ...
952 relax_switch ();
953 ... generate second expansion ...
954 relax_end ();
955
956 The code and fixups for the unwanted alternative are discarded
957 by md_convert_frag. */
584892a6 958#define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
4d7206a2 959
584892a6
RS
960#define RELAX_FIRST(X) (((X) >> 8) & 0xff)
961#define RELAX_SECOND(X) ((X) & 0xff)
962#define RELAX_USE_SECOND 0x10000
963#define RELAX_SECOND_LONGER 0x20000
964#define RELAX_NOMACRO 0x40000
965#define RELAX_DELAY_SLOT 0x80000
df58fc94
RS
966#define RELAX_DELAY_SLOT_16BIT 0x100000
967#define RELAX_DELAY_SLOT_SIZE_FIRST 0x200000
968#define RELAX_DELAY_SLOT_SIZE_SECOND 0x400000
252b5132 969
4a6a3df4
AO
970/* Branch without likely bit. If label is out of range, we turn:
971
972 beq reg1, reg2, label
973 delay slot
974
975 into
976
977 bne reg1, reg2, 0f
978 nop
979 j label
980 0: delay slot
981
982 with the following opcode replacements:
983
984 beq <-> bne
985 blez <-> bgtz
986 bltz <-> bgez
987 bc1f <-> bc1t
988
989 bltzal <-> bgezal (with jal label instead of j label)
990
991 Even though keeping the delay slot instruction in the delay slot of
992 the branch would be more efficient, it would be very tricky to do
993 correctly, because we'd have to introduce a variable frag *after*
994 the delay slot instruction, and expand that instead. Let's do it
995 the easy way for now, even if the branch-not-taken case now costs
996 one additional instruction. Out-of-range branches are not supposed
997 to be common, anyway.
998
999 Branch likely. If label is out of range, we turn:
1000
1001 beql reg1, reg2, label
1002 delay slot (annulled if branch not taken)
1003
1004 into
1005
1006 beql reg1, reg2, 1f
1007 nop
1008 beql $0, $0, 2f
1009 nop
1010 1: j[al] label
1011 delay slot (executed only if branch taken)
1012 2:
1013
1014 It would be possible to generate a shorter sequence by losing the
1015 likely bit, generating something like:
b34976b6 1016
4a6a3df4
AO
1017 bne reg1, reg2, 0f
1018 nop
1019 j[al] label
1020 delay slot (executed only if branch taken)
1021 0:
1022
1023 beql -> bne
1024 bnel -> beq
1025 blezl -> bgtz
1026 bgtzl -> blez
1027 bltzl -> bgez
1028 bgezl -> bltz
1029 bc1fl -> bc1t
1030 bc1tl -> bc1f
1031
1032 bltzall -> bgezal (with jal label instead of j label)
1033 bgezall -> bltzal (ditto)
1034
1035
1036 but it's not clear that it would actually improve performance. */
66b3e8da
MR
1037#define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar) \
1038 ((relax_substateT) \
1039 (0xc0000000 \
1040 | ((at) & 0x1f) \
1041 | ((toofar) ? 0x20 : 0) \
1042 | ((link) ? 0x40 : 0) \
1043 | ((likely) ? 0x80 : 0) \
1044 | ((uncond) ? 0x100 : 0)))
4a6a3df4 1045#define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
66b3e8da
MR
1046#define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
1047#define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
1048#define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
1049#define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
1050#define RELAX_BRANCH_AT(i) ((i) & 0x1f)
4a6a3df4 1051
252b5132
RH
1052/* For mips16 code, we use an entirely different form of relaxation.
1053 mips16 supports two versions of most instructions which take
1054 immediate values: a small one which takes some small value, and a
1055 larger one which takes a 16 bit value. Since branches also follow
1056 this pattern, relaxing these values is required.
1057
1058 We can assemble both mips16 and normal MIPS code in a single
1059 object. Therefore, we need to support this type of relaxation at
1060 the same time that we support the relaxation described above. We
1061 use the high bit of the subtype field to distinguish these cases.
1062
1063 The information we store for this type of relaxation is the
1064 argument code found in the opcode file for this relocation, whether
1065 the user explicitly requested a small or extended form, and whether
1066 the relocation is in a jump or jal delay slot. That tells us the
1067 size of the value, and how it should be stored. We also store
1068 whether the fragment is considered to be extended or not. We also
1069 store whether this is known to be a branch to a different section,
1070 whether we have tried to relax this frag yet, and whether we have
1071 ever extended a PC relative fragment because of a shift count. */
1072#define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
1073 (0x80000000 \
1074 | ((type) & 0xff) \
1075 | ((small) ? 0x100 : 0) \
1076 | ((ext) ? 0x200 : 0) \
1077 | ((dslot) ? 0x400 : 0) \
1078 | ((jal_dslot) ? 0x800 : 0))
4a6a3df4 1079#define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
252b5132
RH
1080#define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
1081#define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
1082#define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
1083#define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
1084#define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
1085#define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
1086#define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
1087#define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
1088#define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
1089#define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
1090#define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
885add95 1091
df58fc94
RS
1092/* For microMIPS code, we use relaxation similar to one we use for
1093 MIPS16 code. Some instructions that take immediate values support
1094 two encodings: a small one which takes some small value, and a
1095 larger one which takes a 16 bit value. As some branches also follow
1096 this pattern, relaxing these values is required.
1097
1098 We can assemble both microMIPS and normal MIPS code in a single
1099 object. Therefore, we need to support this type of relaxation at
1100 the same time that we support the relaxation described above. We
1101 use one of the high bits of the subtype field to distinguish these
1102 cases.
1103
1104 The information we store for this type of relaxation is the argument
1105 code found in the opcode file for this relocation, the register
40209cad
MR
1106 selected as the assembler temporary, whether the branch is
1107 unconditional, whether it is compact, whether it stores the link
1108 address implicitly in $ra, whether relaxation of out-of-range 32-bit
1109 branches to a sequence of instructions is enabled, and whether the
1110 displacement of a branch is too large to fit as an immediate argument
1111 of a 16-bit and a 32-bit branch, respectively. */
1112#define RELAX_MICROMIPS_ENCODE(type, at, uncond, compact, link, \
1113 relax32, toofar16, toofar32) \
1114 (0x40000000 \
1115 | ((type) & 0xff) \
1116 | (((at) & 0x1f) << 8) \
1117 | ((uncond) ? 0x2000 : 0) \
1118 | ((compact) ? 0x4000 : 0) \
1119 | ((link) ? 0x8000 : 0) \
1120 | ((relax32) ? 0x10000 : 0) \
1121 | ((toofar16) ? 0x20000 : 0) \
1122 | ((toofar32) ? 0x40000 : 0))
df58fc94
RS
1123#define RELAX_MICROMIPS_P(i) (((i) & 0xc0000000) == 0x40000000)
1124#define RELAX_MICROMIPS_TYPE(i) ((i) & 0xff)
1125#define RELAX_MICROMIPS_AT(i) (((i) >> 8) & 0x1f)
40209cad
MR
1126#define RELAX_MICROMIPS_UNCOND(i) (((i) & 0x2000) != 0)
1127#define RELAX_MICROMIPS_COMPACT(i) (((i) & 0x4000) != 0)
1128#define RELAX_MICROMIPS_LINK(i) (((i) & 0x8000) != 0)
1129#define RELAX_MICROMIPS_RELAX32(i) (((i) & 0x10000) != 0)
1130
1131#define RELAX_MICROMIPS_TOOFAR16(i) (((i) & 0x20000) != 0)
1132#define RELAX_MICROMIPS_MARK_TOOFAR16(i) ((i) | 0x20000)
1133#define RELAX_MICROMIPS_CLEAR_TOOFAR16(i) ((i) & ~0x20000)
1134#define RELAX_MICROMIPS_TOOFAR32(i) (((i) & 0x40000) != 0)
1135#define RELAX_MICROMIPS_MARK_TOOFAR32(i) ((i) | 0x40000)
1136#define RELAX_MICROMIPS_CLEAR_TOOFAR32(i) ((i) & ~0x40000)
df58fc94 1137
43c0598f
RS
1138/* Sign-extend 16-bit value X. */
1139#define SEXT_16BIT(X) ((((X) + 0x8000) & 0xffff) - 0x8000)
1140
885add95
CD
1141/* Is the given value a sign-extended 32-bit value? */
1142#define IS_SEXT_32BIT_NUM(x) \
1143 (((x) &~ (offsetT) 0x7fffffff) == 0 \
1144 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
1145
1146/* Is the given value a sign-extended 16-bit value? */
1147#define IS_SEXT_16BIT_NUM(x) \
1148 (((x) &~ (offsetT) 0x7fff) == 0 \
1149 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
1150
df58fc94
RS
1151/* Is the given value a sign-extended 12-bit value? */
1152#define IS_SEXT_12BIT_NUM(x) \
1153 (((((x) & 0xfff) ^ 0x800LL) - 0x800LL) == (x))
1154
7f3c4072
CM
1155/* Is the given value a sign-extended 9-bit value? */
1156#define IS_SEXT_9BIT_NUM(x) \
1157 (((((x) & 0x1ff) ^ 0x100LL) - 0x100LL) == (x))
1158
2051e8c4
MR
1159/* Is the given value a zero-extended 32-bit value? Or a negated one? */
1160#define IS_ZEXT_32BIT_NUM(x) \
1161 (((x) &~ (offsetT) 0xffffffff) == 0 \
1162 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
1163
bf12938e
RS
1164/* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
1165 VALUE << SHIFT. VALUE is evaluated exactly once. */
1166#define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
1167 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
1168 | (((VALUE) & (MASK)) << (SHIFT)))
1169
1170/* Extract bits MASK << SHIFT from STRUCT and shift them right
1171 SHIFT places. */
1172#define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1173 (((STRUCT) >> (SHIFT)) & (MASK))
1174
1175/* Change INSN's opcode so that the operand given by FIELD has value VALUE.
1176 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
1177
1178 include/opcode/mips.h specifies operand fields using the macros
1179 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
1180 with "MIPS16OP" instead of "OP". */
df58fc94
RS
1181#define INSERT_OPERAND(MICROMIPS, FIELD, INSN, VALUE) \
1182 do \
1183 if (!(MICROMIPS)) \
1184 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1185 OP_MASK_##FIELD, OP_SH_##FIELD); \
1186 else \
1187 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1188 MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD); \
1189 while (0)
bf12938e
RS
1190#define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
1191 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1192 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
1193
1194/* Extract the operand given by FIELD from mips_cl_insn INSN. */
df58fc94
RS
1195#define EXTRACT_OPERAND(MICROMIPS, FIELD, INSN) \
1196 (!(MICROMIPS) \
1197 ? EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD) \
1198 : EXTRACT_BITS ((INSN).insn_opcode, \
1199 MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD))
bf12938e
RS
1200#define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1201 EXTRACT_BITS ((INSN).insn_opcode, \
1202 MIPS16OP_MASK_##FIELD, \
1203 MIPS16OP_SH_##FIELD)
5c04167a
RS
1204
1205/* The MIPS16 EXTEND opcode, shifted left 16 places. */
1206#define MIPS16_EXTEND (0xf000U << 16)
4d7206a2 1207\f
df58fc94
RS
1208/* Whether or not we are emitting a branch-likely macro. */
1209static bfd_boolean emit_branch_likely_macro = FALSE;
1210
4d7206a2
RS
1211/* Global variables used when generating relaxable macros. See the
1212 comment above RELAX_ENCODE for more details about how relaxation
1213 is used. */
1214static struct {
1215 /* 0 if we're not emitting a relaxable macro.
1216 1 if we're emitting the first of the two relaxation alternatives.
1217 2 if we're emitting the second alternative. */
1218 int sequence;
1219
1220 /* The first relaxable fixup in the current frag. (In other words,
1221 the first fixup that refers to relaxable code.) */
1222 fixS *first_fixup;
1223
1224 /* sizes[0] says how many bytes of the first alternative are stored in
1225 the current frag. Likewise sizes[1] for the second alternative. */
1226 unsigned int sizes[2];
1227
1228 /* The symbol on which the choice of sequence depends. */
1229 symbolS *symbol;
1230} mips_relax;
252b5132 1231\f
584892a6
RS
1232/* Global variables used to decide whether a macro needs a warning. */
1233static struct {
1234 /* True if the macro is in a branch delay slot. */
1235 bfd_boolean delay_slot_p;
1236
df58fc94
RS
1237 /* Set to the length in bytes required if the macro is in a delay slot
1238 that requires a specific length of instruction, otherwise zero. */
1239 unsigned int delay_slot_length;
1240
584892a6
RS
1241 /* For relaxable macros, sizes[0] is the length of the first alternative
1242 in bytes and sizes[1] is the length of the second alternative.
1243 For non-relaxable macros, both elements give the length of the
1244 macro in bytes. */
1245 unsigned int sizes[2];
1246
df58fc94
RS
1247 /* For relaxable macros, first_insn_sizes[0] is the length of the first
1248 instruction of the first alternative in bytes and first_insn_sizes[1]
1249 is the length of the first instruction of the second alternative.
1250 For non-relaxable macros, both elements give the length of the first
1251 instruction in bytes.
1252
1253 Set to zero if we haven't yet seen the first instruction. */
1254 unsigned int first_insn_sizes[2];
1255
1256 /* For relaxable macros, insns[0] is the number of instructions for the
1257 first alternative and insns[1] is the number of instructions for the
1258 second alternative.
1259
1260 For non-relaxable macros, both elements give the number of
1261 instructions for the macro. */
1262 unsigned int insns[2];
1263
584892a6
RS
1264 /* The first variant frag for this macro. */
1265 fragS *first_frag;
1266} mips_macro_warning;
1267\f
252b5132
RH
1268/* Prototypes for static functions. */
1269
252b5132
RH
1270enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1271
b34976b6 1272static void append_insn
df58fc94
RS
1273 (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *,
1274 bfd_boolean expansionp);
7d10b47d 1275static void mips_no_prev_insn (void);
c67a084a 1276static void macro_build (expressionS *, const char *, const char *, ...);
b34976b6 1277static void mips16_macro_build
03ea81db 1278 (expressionS *, const char *, const char *, va_list *);
67c0d1eb 1279static void load_register (int, expressionS *, int);
584892a6
RS
1280static void macro_start (void);
1281static void macro_end (void);
833794fc 1282static void macro (struct mips_cl_insn *ip, char *str);
17a2f251 1283static void mips16_macro (struct mips_cl_insn * ip);
17a2f251
TS
1284static void mips_ip (char *str, struct mips_cl_insn * ip);
1285static void mips16_ip (char *str, struct mips_cl_insn * ip);
b34976b6 1286static void mips16_immed
43c0598f
RS
1287 (char *, unsigned int, int, bfd_reloc_code_real_type, offsetT,
1288 unsigned int, unsigned long *);
5e0116d5 1289static size_t my_getSmallExpression
17a2f251
TS
1290 (expressionS *, bfd_reloc_code_real_type *, char *);
1291static void my_getExpression (expressionS *, char *);
1292static void s_align (int);
1293static void s_change_sec (int);
1294static void s_change_section (int);
1295static void s_cons (int);
1296static void s_float_cons (int);
1297static void s_mips_globl (int);
1298static void s_option (int);
1299static void s_mipsset (int);
1300static void s_abicalls (int);
1301static void s_cpload (int);
1302static void s_cpsetup (int);
1303static void s_cplocal (int);
1304static void s_cprestore (int);
1305static void s_cpreturn (int);
741d6ea8
JM
1306static void s_dtprelword (int);
1307static void s_dtpreldword (int);
d0f13682
CLT
1308static void s_tprelword (int);
1309static void s_tpreldword (int);
17a2f251
TS
1310static void s_gpvalue (int);
1311static void s_gpword (int);
1312static void s_gpdword (int);
a3f278e2 1313static void s_ehword (int);
17a2f251
TS
1314static void s_cpadd (int);
1315static void s_insn (int);
ba92f887 1316static void s_nan (int);
17a2f251
TS
1317static void md_obj_begin (void);
1318static void md_obj_end (void);
1319static void s_mips_ent (int);
1320static void s_mips_end (int);
1321static void s_mips_frame (int);
1322static void s_mips_mask (int reg_type);
1323static void s_mips_stab (int);
1324static void s_mips_weakext (int);
1325static void s_mips_file (int);
1326static void s_mips_loc (int);
1327static bfd_boolean pic_need_relax (symbolS *, asection *);
4a6a3df4 1328static int relaxed_branch_length (fragS *, asection *, int);
17a2f251 1329static int validate_mips_insn (const struct mips_opcode *);
df58fc94
RS
1330static int validate_micromips_insn (const struct mips_opcode *);
1331static int relaxed_micromips_16bit_branch_length (fragS *, asection *, int);
1332static int relaxed_micromips_32bit_branch_length (fragS *, asection *, int);
e7af610e
NC
1333
1334/* Table and functions used to map between CPU/ISA names, and
1335 ISA levels, and CPU numbers. */
1336
e972090a
NC
1337struct mips_cpu_info
1338{
e7af610e 1339 const char *name; /* CPU or ISA name. */
d16afab6
RS
1340 int flags; /* MIPS_CPU_* flags. */
1341 int ase; /* Set of ASEs implemented by the CPU. */
e7af610e
NC
1342 int isa; /* ISA level. */
1343 int cpu; /* CPU number (default CPU if ISA). */
1344};
1345
ad3fea08 1346#define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
ad3fea08 1347
17a2f251
TS
1348static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1349static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1350static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
252b5132 1351\f
c31f3936
RS
1352/* Command-line options. */
1353const char *md_shortopts = "O::g::G:";
1354
1355enum options
1356 {
1357 OPTION_MARCH = OPTION_MD_BASE,
1358 OPTION_MTUNE,
1359 OPTION_MIPS1,
1360 OPTION_MIPS2,
1361 OPTION_MIPS3,
1362 OPTION_MIPS4,
1363 OPTION_MIPS5,
1364 OPTION_MIPS32,
1365 OPTION_MIPS64,
1366 OPTION_MIPS32R2,
1367 OPTION_MIPS64R2,
1368 OPTION_MIPS16,
1369 OPTION_NO_MIPS16,
1370 OPTION_MIPS3D,
1371 OPTION_NO_MIPS3D,
1372 OPTION_MDMX,
1373 OPTION_NO_MDMX,
1374 OPTION_DSP,
1375 OPTION_NO_DSP,
1376 OPTION_MT,
1377 OPTION_NO_MT,
1378 OPTION_VIRT,
1379 OPTION_NO_VIRT,
1380 OPTION_SMARTMIPS,
1381 OPTION_NO_SMARTMIPS,
1382 OPTION_DSPR2,
1383 OPTION_NO_DSPR2,
1384 OPTION_EVA,
1385 OPTION_NO_EVA,
1386 OPTION_MICROMIPS,
1387 OPTION_NO_MICROMIPS,
1388 OPTION_MCU,
1389 OPTION_NO_MCU,
1390 OPTION_COMPAT_ARCH_BASE,
1391 OPTION_M4650,
1392 OPTION_NO_M4650,
1393 OPTION_M4010,
1394 OPTION_NO_M4010,
1395 OPTION_M4100,
1396 OPTION_NO_M4100,
1397 OPTION_M3900,
1398 OPTION_NO_M3900,
1399 OPTION_M7000_HILO_FIX,
1400 OPTION_MNO_7000_HILO_FIX,
1401 OPTION_FIX_24K,
1402 OPTION_NO_FIX_24K,
1403 OPTION_FIX_LOONGSON2F_JUMP,
1404 OPTION_NO_FIX_LOONGSON2F_JUMP,
1405 OPTION_FIX_LOONGSON2F_NOP,
1406 OPTION_NO_FIX_LOONGSON2F_NOP,
1407 OPTION_FIX_VR4120,
1408 OPTION_NO_FIX_VR4120,
1409 OPTION_FIX_VR4130,
1410 OPTION_NO_FIX_VR4130,
1411 OPTION_FIX_CN63XXP1,
1412 OPTION_NO_FIX_CN63XXP1,
1413 OPTION_TRAP,
1414 OPTION_BREAK,
1415 OPTION_EB,
1416 OPTION_EL,
1417 OPTION_FP32,
1418 OPTION_GP32,
1419 OPTION_CONSTRUCT_FLOATS,
1420 OPTION_NO_CONSTRUCT_FLOATS,
1421 OPTION_FP64,
1422 OPTION_GP64,
1423 OPTION_RELAX_BRANCH,
1424 OPTION_NO_RELAX_BRANCH,
833794fc
MR
1425 OPTION_INSN32,
1426 OPTION_NO_INSN32,
c31f3936
RS
1427 OPTION_MSHARED,
1428 OPTION_MNO_SHARED,
1429 OPTION_MSYM32,
1430 OPTION_MNO_SYM32,
1431 OPTION_SOFT_FLOAT,
1432 OPTION_HARD_FLOAT,
1433 OPTION_SINGLE_FLOAT,
1434 OPTION_DOUBLE_FLOAT,
1435 OPTION_32,
c31f3936
RS
1436 OPTION_CALL_SHARED,
1437 OPTION_CALL_NONPIC,
1438 OPTION_NON_SHARED,
1439 OPTION_XGOT,
1440 OPTION_MABI,
1441 OPTION_N32,
1442 OPTION_64,
1443 OPTION_MDEBUG,
1444 OPTION_NO_MDEBUG,
1445 OPTION_PDR,
1446 OPTION_NO_PDR,
1447 OPTION_MVXWORKS_PIC,
ba92f887 1448 OPTION_NAN,
c31f3936
RS
1449 OPTION_END_OF_ENUM
1450 };
1451
1452struct option md_longopts[] =
1453{
1454 /* Options which specify architecture. */
1455 {"march", required_argument, NULL, OPTION_MARCH},
1456 {"mtune", required_argument, NULL, OPTION_MTUNE},
1457 {"mips0", no_argument, NULL, OPTION_MIPS1},
1458 {"mips1", no_argument, NULL, OPTION_MIPS1},
1459 {"mips2", no_argument, NULL, OPTION_MIPS2},
1460 {"mips3", no_argument, NULL, OPTION_MIPS3},
1461 {"mips4", no_argument, NULL, OPTION_MIPS4},
1462 {"mips5", no_argument, NULL, OPTION_MIPS5},
1463 {"mips32", no_argument, NULL, OPTION_MIPS32},
1464 {"mips64", no_argument, NULL, OPTION_MIPS64},
1465 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
1466 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
1467
1468 /* Options which specify Application Specific Extensions (ASEs). */
1469 {"mips16", no_argument, NULL, OPTION_MIPS16},
1470 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
1471 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
1472 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
1473 {"mdmx", no_argument, NULL, OPTION_MDMX},
1474 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
1475 {"mdsp", no_argument, NULL, OPTION_DSP},
1476 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
1477 {"mmt", no_argument, NULL, OPTION_MT},
1478 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
1479 {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
1480 {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
1481 {"mdspr2", no_argument, NULL, OPTION_DSPR2},
1482 {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
1483 {"meva", no_argument, NULL, OPTION_EVA},
1484 {"mno-eva", no_argument, NULL, OPTION_NO_EVA},
1485 {"mmicromips", no_argument, NULL, OPTION_MICROMIPS},
1486 {"mno-micromips", no_argument, NULL, OPTION_NO_MICROMIPS},
1487 {"mmcu", no_argument, NULL, OPTION_MCU},
1488 {"mno-mcu", no_argument, NULL, OPTION_NO_MCU},
1489 {"mvirt", no_argument, NULL, OPTION_VIRT},
1490 {"mno-virt", no_argument, NULL, OPTION_NO_VIRT},
1491
1492 /* Old-style architecture options. Don't add more of these. */
1493 {"m4650", no_argument, NULL, OPTION_M4650},
1494 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
1495 {"m4010", no_argument, NULL, OPTION_M4010},
1496 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
1497 {"m4100", no_argument, NULL, OPTION_M4100},
1498 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
1499 {"m3900", no_argument, NULL, OPTION_M3900},
1500 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
1501
1502 /* Options which enable bug fixes. */
1503 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
1504 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1505 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1506 {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
1507 {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
1508 {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
1509 {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
1510 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
1511 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
1512 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
1513 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
1514 {"mfix-24k", no_argument, NULL, OPTION_FIX_24K},
1515 {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
1516 {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
1517 {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
1518
1519 /* Miscellaneous options. */
1520 {"trap", no_argument, NULL, OPTION_TRAP},
1521 {"no-break", no_argument, NULL, OPTION_TRAP},
1522 {"break", no_argument, NULL, OPTION_BREAK},
1523 {"no-trap", no_argument, NULL, OPTION_BREAK},
1524 {"EB", no_argument, NULL, OPTION_EB},
1525 {"EL", no_argument, NULL, OPTION_EL},
1526 {"mfp32", no_argument, NULL, OPTION_FP32},
1527 {"mgp32", no_argument, NULL, OPTION_GP32},
1528 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
1529 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
1530 {"mfp64", no_argument, NULL, OPTION_FP64},
1531 {"mgp64", no_argument, NULL, OPTION_GP64},
1532 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
1533 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
833794fc
MR
1534 {"minsn32", no_argument, NULL, OPTION_INSN32},
1535 {"mno-insn32", no_argument, NULL, OPTION_NO_INSN32},
c31f3936
RS
1536 {"mshared", no_argument, NULL, OPTION_MSHARED},
1537 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
1538 {"msym32", no_argument, NULL, OPTION_MSYM32},
1539 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
1540 {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
1541 {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
1542 {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
1543 {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
1544
1545 /* Strictly speaking this next option is ELF specific,
1546 but we allow it for other ports as well in order to
1547 make testing easier. */
1548 {"32", no_argument, NULL, OPTION_32},
1549
1550 /* ELF-specific options. */
c31f3936
RS
1551 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
1552 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
1553 {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
1554 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
1555 {"xgot", no_argument, NULL, OPTION_XGOT},
1556 {"mabi", required_argument, NULL, OPTION_MABI},
1557 {"n32", no_argument, NULL, OPTION_N32},
1558 {"64", no_argument, NULL, OPTION_64},
1559 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
1560 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
1561 {"mpdr", no_argument, NULL, OPTION_PDR},
1562 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
1563 {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
ba92f887 1564 {"mnan", required_argument, NULL, OPTION_NAN},
c31f3936
RS
1565
1566 {NULL, no_argument, NULL, 0}
1567};
1568size_t md_longopts_size = sizeof (md_longopts);
1569\f
c6278170
RS
1570/* Information about either an Application Specific Extension or an
1571 optional architecture feature that, for simplicity, we treat in the
1572 same way as an ASE. */
1573struct mips_ase
1574{
1575 /* The name of the ASE, used in both the command-line and .set options. */
1576 const char *name;
1577
1578 /* The associated ASE_* flags. If the ASE is available on both 32-bit
1579 and 64-bit architectures, the flags here refer to the subset that
1580 is available on both. */
1581 unsigned int flags;
1582
1583 /* The ASE_* flag used for instructions that are available on 64-bit
1584 architectures but that are not included in FLAGS. */
1585 unsigned int flags64;
1586
1587 /* The command-line options that turn the ASE on and off. */
1588 int option_on;
1589 int option_off;
1590
1591 /* The minimum required architecture revisions for MIPS32, MIPS64,
1592 microMIPS32 and microMIPS64, or -1 if the extension isn't supported. */
1593 int mips32_rev;
1594 int mips64_rev;
1595 int micromips32_rev;
1596 int micromips64_rev;
1597};
1598
1599/* A table of all supported ASEs. */
1600static const struct mips_ase mips_ases[] = {
1601 { "dsp", ASE_DSP, ASE_DSP64,
1602 OPTION_DSP, OPTION_NO_DSP,
1603 2, 2, 2, 2 },
1604
1605 { "dspr2", ASE_DSP | ASE_DSPR2, 0,
1606 OPTION_DSPR2, OPTION_NO_DSPR2,
1607 2, 2, 2, 2 },
1608
1609 { "eva", ASE_EVA, 0,
1610 OPTION_EVA, OPTION_NO_EVA,
1611 2, 2, 2, 2 },
1612
1613 { "mcu", ASE_MCU, 0,
1614 OPTION_MCU, OPTION_NO_MCU,
1615 2, 2, 2, 2 },
1616
1617 /* Deprecated in MIPS64r5, but we don't implement that yet. */
1618 { "mdmx", ASE_MDMX, 0,
1619 OPTION_MDMX, OPTION_NO_MDMX,
1620 -1, 1, -1, -1 },
1621
1622 /* Requires 64-bit FPRs, so the minimum MIPS32 revision is 2. */
1623 { "mips3d", ASE_MIPS3D, 0,
1624 OPTION_MIPS3D, OPTION_NO_MIPS3D,
1625 2, 1, -1, -1 },
1626
1627 { "mt", ASE_MT, 0,
1628 OPTION_MT, OPTION_NO_MT,
1629 2, 2, -1, -1 },
1630
1631 { "smartmips", ASE_SMARTMIPS, 0,
1632 OPTION_SMARTMIPS, OPTION_NO_SMARTMIPS,
1633 1, -1, -1, -1 },
1634
1635 { "virt", ASE_VIRT, ASE_VIRT64,
1636 OPTION_VIRT, OPTION_NO_VIRT,
1637 2, 2, 2, 2 }
1638};
1639
1640/* The set of ASEs that require -mfp64. */
1641#define FP64_ASES (ASE_MIPS3D | ASE_MDMX)
1642
1643/* Groups of ASE_* flags that represent different revisions of an ASE. */
1644static const unsigned int mips_ase_groups[] = {
1645 ASE_DSP | ASE_DSPR2
1646};
1647\f
252b5132
RH
1648/* Pseudo-op table.
1649
1650 The following pseudo-ops from the Kane and Heinrich MIPS book
1651 should be defined here, but are currently unsupported: .alias,
1652 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1653
1654 The following pseudo-ops from the Kane and Heinrich MIPS book are
1655 specific to the type of debugging information being generated, and
1656 should be defined by the object format: .aent, .begin, .bend,
1657 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1658 .vreg.
1659
1660 The following pseudo-ops from the Kane and Heinrich MIPS book are
1661 not MIPS CPU specific, but are also not specific to the object file
1662 format. This file is probably the best place to define them, but
d84bcf09 1663 they are not currently supported: .asm0, .endr, .lab, .struct. */
252b5132 1664
e972090a
NC
1665static const pseudo_typeS mips_pseudo_table[] =
1666{
beae10d5 1667 /* MIPS specific pseudo-ops. */
252b5132
RH
1668 {"option", s_option, 0},
1669 {"set", s_mipsset, 0},
1670 {"rdata", s_change_sec, 'r'},
1671 {"sdata", s_change_sec, 's'},
1672 {"livereg", s_ignore, 0},
1673 {"abicalls", s_abicalls, 0},
1674 {"cpload", s_cpload, 0},
6478892d
TS
1675 {"cpsetup", s_cpsetup, 0},
1676 {"cplocal", s_cplocal, 0},
252b5132 1677 {"cprestore", s_cprestore, 0},
6478892d 1678 {"cpreturn", s_cpreturn, 0},
741d6ea8
JM
1679 {"dtprelword", s_dtprelword, 0},
1680 {"dtpreldword", s_dtpreldword, 0},
d0f13682
CLT
1681 {"tprelword", s_tprelword, 0},
1682 {"tpreldword", s_tpreldword, 0},
6478892d 1683 {"gpvalue", s_gpvalue, 0},
252b5132 1684 {"gpword", s_gpword, 0},
10181a0d 1685 {"gpdword", s_gpdword, 0},
a3f278e2 1686 {"ehword", s_ehword, 0},
252b5132
RH
1687 {"cpadd", s_cpadd, 0},
1688 {"insn", s_insn, 0},
ba92f887 1689 {"nan", s_nan, 0},
252b5132 1690
beae10d5 1691 /* Relatively generic pseudo-ops that happen to be used on MIPS
252b5132 1692 chips. */
38a57ae7 1693 {"asciiz", stringer, 8 + 1},
252b5132
RH
1694 {"bss", s_change_sec, 'b'},
1695 {"err", s_err, 0},
1696 {"half", s_cons, 1},
1697 {"dword", s_cons, 3},
1698 {"weakext", s_mips_weakext, 0},
7c752c2a
TS
1699 {"origin", s_org, 0},
1700 {"repeat", s_rept, 0},
252b5132 1701
998b3c36
MR
1702 /* For MIPS this is non-standard, but we define it for consistency. */
1703 {"sbss", s_change_sec, 'B'},
1704
beae10d5 1705 /* These pseudo-ops are defined in read.c, but must be overridden
252b5132
RH
1706 here for one reason or another. */
1707 {"align", s_align, 0},
1708 {"byte", s_cons, 0},
1709 {"data", s_change_sec, 'd'},
1710 {"double", s_float_cons, 'd'},
1711 {"float", s_float_cons, 'f'},
1712 {"globl", s_mips_globl, 0},
1713 {"global", s_mips_globl, 0},
1714 {"hword", s_cons, 1},
1715 {"int", s_cons, 2},
1716 {"long", s_cons, 2},
1717 {"octa", s_cons, 4},
1718 {"quad", s_cons, 3},
cca86cc8 1719 {"section", s_change_section, 0},
252b5132
RH
1720 {"short", s_cons, 1},
1721 {"single", s_float_cons, 'f'},
754e2bb9 1722 {"stabd", s_mips_stab, 'd'},
252b5132 1723 {"stabn", s_mips_stab, 'n'},
754e2bb9 1724 {"stabs", s_mips_stab, 's'},
252b5132
RH
1725 {"text", s_change_sec, 't'},
1726 {"word", s_cons, 2},
add56521 1727
add56521 1728 { "extern", ecoff_directive_extern, 0},
add56521 1729
43841e91 1730 { NULL, NULL, 0 },
252b5132
RH
1731};
1732
e972090a
NC
1733static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1734{
beae10d5
KH
1735 /* These pseudo-ops should be defined by the object file format.
1736 However, a.out doesn't support them, so we have versions here. */
252b5132
RH
1737 {"aent", s_mips_ent, 1},
1738 {"bgnb", s_ignore, 0},
1739 {"end", s_mips_end, 0},
1740 {"endb", s_ignore, 0},
1741 {"ent", s_mips_ent, 0},
c5dd6aab 1742 {"file", s_mips_file, 0},
252b5132
RH
1743 {"fmask", s_mips_mask, 'F'},
1744 {"frame", s_mips_frame, 0},
c5dd6aab 1745 {"loc", s_mips_loc, 0},
252b5132
RH
1746 {"mask", s_mips_mask, 'R'},
1747 {"verstamp", s_ignore, 0},
43841e91 1748 { NULL, NULL, 0 },
252b5132
RH
1749};
1750
3ae8dd8d
MR
1751/* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1752 purpose of the `.dc.a' internal pseudo-op. */
1753
1754int
1755mips_address_bytes (void)
1756{
1757 return HAVE_64BIT_ADDRESSES ? 8 : 4;
1758}
1759
17a2f251 1760extern void pop_insert (const pseudo_typeS *);
252b5132
RH
1761
1762void
17a2f251 1763mips_pop_insert (void)
252b5132
RH
1764{
1765 pop_insert (mips_pseudo_table);
1766 if (! ECOFF_DEBUGGING)
1767 pop_insert (mips_nonecoff_pseudo_table);
1768}
1769\f
1770/* Symbols labelling the current insn. */
1771
e972090a
NC
1772struct insn_label_list
1773{
252b5132
RH
1774 struct insn_label_list *next;
1775 symbolS *label;
1776};
1777
252b5132 1778static struct insn_label_list *free_insn_labels;
742a56fe 1779#define label_list tc_segment_info_data.labels
252b5132 1780
17a2f251 1781static void mips_clear_insn_labels (void);
df58fc94
RS
1782static void mips_mark_labels (void);
1783static void mips_compressed_mark_labels (void);
252b5132
RH
1784
1785static inline void
17a2f251 1786mips_clear_insn_labels (void)
252b5132
RH
1787{
1788 register struct insn_label_list **pl;
a8dbcb85 1789 segment_info_type *si;
252b5132 1790
a8dbcb85
TS
1791 if (now_seg)
1792 {
1793 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1794 ;
1795
1796 si = seg_info (now_seg);
1797 *pl = si->label_list;
1798 si->label_list = NULL;
1799 }
252b5132 1800}
a8dbcb85 1801
df58fc94
RS
1802/* Mark instruction labels in MIPS16/microMIPS mode. */
1803
1804static inline void
1805mips_mark_labels (void)
1806{
1807 if (HAVE_CODE_COMPRESSION)
1808 mips_compressed_mark_labels ();
1809}
252b5132
RH
1810\f
1811static char *expr_end;
1812
77bd4346
RS
1813/* Expressions which appear in macro instructions. These are set by
1814 mips_ip and read by macro. */
252b5132
RH
1815
1816static expressionS imm_expr;
5f74bc13 1817static expressionS imm2_expr;
252b5132 1818
77bd4346
RS
1819/* The relocatable field in an instruction and the relocs associated
1820 with it. These variables are used for instructions like LUI and
1821 JAL as well as true offsets. They are also used for address
1822 operands in macros. */
252b5132 1823
77bd4346 1824static expressionS offset_expr;
f6688943
TS
1825static bfd_reloc_code_real_type offset_reloc[3]
1826 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 1827
df58fc94
RS
1828/* This is set to the resulting size of the instruction to be produced
1829 by mips16_ip if an explicit extension is used or by mips_ip if an
1830 explicit size is supplied. */
252b5132 1831
df58fc94 1832static unsigned int forced_insn_length;
252b5132 1833
e1b47bd5
RS
1834/* True if we are assembling an instruction. All dot symbols defined during
1835 this time should be treated as code labels. */
1836
1837static bfd_boolean mips_assembling_insn;
1838
ecb4347a
DJ
1839/* The pdr segment for per procedure frame/regmask info. Not used for
1840 ECOFF debugging. */
252b5132
RH
1841
1842static segT pdr_seg;
252b5132 1843
e013f690
TS
1844/* The default target format to use. */
1845
aeffff67
RS
1846#if defined (TE_FreeBSD)
1847#define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1848#elif defined (TE_TMIPS)
1849#define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1850#else
1851#define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1852#endif
1853
e013f690 1854const char *
17a2f251 1855mips_target_format (void)
e013f690
TS
1856{
1857 switch (OUTPUT_FLAVOR)
1858 {
e013f690 1859 case bfd_target_elf_flavour:
0a44bf69
RS
1860#ifdef TE_VXWORKS
1861 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1862 return (target_big_endian
1863 ? "elf32-bigmips-vxworks"
1864 : "elf32-littlemips-vxworks");
1865#endif
e013f690 1866 return (target_big_endian
cfe86eaa 1867 ? (HAVE_64BIT_OBJECTS
aeffff67 1868 ? ELF_TARGET ("elf64-", "big")
cfe86eaa 1869 : (HAVE_NEWABI
aeffff67
RS
1870 ? ELF_TARGET ("elf32-n", "big")
1871 : ELF_TARGET ("elf32-", "big")))
cfe86eaa 1872 : (HAVE_64BIT_OBJECTS
aeffff67 1873 ? ELF_TARGET ("elf64-", "little")
cfe86eaa 1874 : (HAVE_NEWABI
aeffff67
RS
1875 ? ELF_TARGET ("elf32-n", "little")
1876 : ELF_TARGET ("elf32-", "little"))));
e013f690
TS
1877 default:
1878 abort ();
1879 return NULL;
1880 }
1881}
1882
c6278170
RS
1883/* Return the ISA revision that is currently in use, or 0 if we are
1884 generating code for MIPS V or below. */
1885
1886static int
1887mips_isa_rev (void)
1888{
1889 if (mips_opts.isa == ISA_MIPS32R2 || mips_opts.isa == ISA_MIPS64R2)
1890 return 2;
1891
1892 /* microMIPS implies revision 2 or above. */
1893 if (mips_opts.micromips)
1894 return 2;
1895
1896 if (mips_opts.isa == ISA_MIPS32 || mips_opts.isa == ISA_MIPS64)
1897 return 1;
1898
1899 return 0;
1900}
1901
1902/* Return the mask of all ASEs that are revisions of those in FLAGS. */
1903
1904static unsigned int
1905mips_ase_mask (unsigned int flags)
1906{
1907 unsigned int i;
1908
1909 for (i = 0; i < ARRAY_SIZE (mips_ase_groups); i++)
1910 if (flags & mips_ase_groups[i])
1911 flags |= mips_ase_groups[i];
1912 return flags;
1913}
1914
1915/* Check whether the current ISA supports ASE. Issue a warning if
1916 appropriate. */
1917
1918static void
1919mips_check_isa_supports_ase (const struct mips_ase *ase)
1920{
1921 const char *base;
1922 int min_rev, size;
1923 static unsigned int warned_isa;
1924 static unsigned int warned_fp32;
1925
1926 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
1927 min_rev = mips_opts.micromips ? ase->micromips64_rev : ase->mips64_rev;
1928 else
1929 min_rev = mips_opts.micromips ? ase->micromips32_rev : ase->mips32_rev;
1930 if ((min_rev < 0 || mips_isa_rev () < min_rev)
1931 && (warned_isa & ase->flags) != ase->flags)
1932 {
1933 warned_isa |= ase->flags;
1934 base = mips_opts.micromips ? "microMIPS" : "MIPS";
1935 size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
1936 if (min_rev < 0)
1937 as_warn (_("The %d-bit %s architecture does not support the"
1938 " `%s' extension"), size, base, ase->name);
1939 else
1940 as_warn (_("The `%s' extension requires %s%d revision %d or greater"),
1941 ase->name, base, size, min_rev);
1942 }
1943 if ((ase->flags & FP64_ASES)
1944 && mips_opts.fp32
1945 && (warned_fp32 & ase->flags) != ase->flags)
1946 {
1947 warned_fp32 |= ase->flags;
1948 as_warn (_("The `%s' extension requires 64-bit FPRs"), ase->name);
1949 }
1950}
1951
1952/* Check all enabled ASEs to see whether they are supported by the
1953 chosen architecture. */
1954
1955static void
1956mips_check_isa_supports_ases (void)
1957{
1958 unsigned int i, mask;
1959
1960 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
1961 {
1962 mask = mips_ase_mask (mips_ases[i].flags);
1963 if ((mips_opts.ase & mask) == mips_ases[i].flags)
1964 mips_check_isa_supports_ase (&mips_ases[i]);
1965 }
1966}
1967
1968/* Set the state of ASE to ENABLED_P. Return the mask of ASE_* flags
1969 that were affected. */
1970
1971static unsigned int
1972mips_set_ase (const struct mips_ase *ase, bfd_boolean enabled_p)
1973{
1974 unsigned int mask;
1975
1976 mask = mips_ase_mask (ase->flags);
1977 mips_opts.ase &= ~mask;
1978 if (enabled_p)
1979 mips_opts.ase |= ase->flags;
1980 return mask;
1981}
1982
1983/* Return the ASE called NAME, or null if none. */
1984
1985static const struct mips_ase *
1986mips_lookup_ase (const char *name)
1987{
1988 unsigned int i;
1989
1990 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
1991 if (strcmp (name, mips_ases[i].name) == 0)
1992 return &mips_ases[i];
1993 return NULL;
1994}
1995
df58fc94
RS
1996/* Return the length of a microMIPS instruction in bytes. If bits of
1997 the mask beyond the low 16 are 0, then it is a 16-bit instruction.
1998 Otherwise assume a 32-bit instruction; 48-bit instructions (0x1f
1999 major opcode) will require further modifications to the opcode
2000 table. */
2001
2002static inline unsigned int
2003micromips_insn_length (const struct mips_opcode *mo)
2004{
2005 return (mo->mask >> 16) == 0 ? 2 : 4;
2006}
2007
5c04167a
RS
2008/* Return the length of MIPS16 instruction OPCODE. */
2009
2010static inline unsigned int
2011mips16_opcode_length (unsigned long opcode)
2012{
2013 return (opcode >> 16) == 0 ? 2 : 4;
2014}
2015
1e915849
RS
2016/* Return the length of instruction INSN. */
2017
2018static inline unsigned int
2019insn_length (const struct mips_cl_insn *insn)
2020{
df58fc94
RS
2021 if (mips_opts.micromips)
2022 return micromips_insn_length (insn->insn_mo);
2023 else if (mips_opts.mips16)
5c04167a 2024 return mips16_opcode_length (insn->insn_opcode);
df58fc94 2025 else
1e915849 2026 return 4;
1e915849
RS
2027}
2028
2029/* Initialise INSN from opcode entry MO. Leave its position unspecified. */
2030
2031static void
2032create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
2033{
2034 size_t i;
2035
2036 insn->insn_mo = mo;
1e915849
RS
2037 insn->insn_opcode = mo->match;
2038 insn->frag = NULL;
2039 insn->where = 0;
2040 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2041 insn->fixp[i] = NULL;
2042 insn->fixed_p = (mips_opts.noreorder > 0);
2043 insn->noreorder_p = (mips_opts.noreorder > 0);
2044 insn->mips16_absolute_jump_p = 0;
15be625d 2045 insn->complete_p = 0;
e407c74b 2046 insn->cleared_p = 0;
1e915849
RS
2047}
2048
df58fc94 2049/* Record the current MIPS16/microMIPS mode in now_seg. */
742a56fe
RS
2050
2051static void
df58fc94 2052mips_record_compressed_mode (void)
742a56fe
RS
2053{
2054 segment_info_type *si;
2055
2056 si = seg_info (now_seg);
2057 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
2058 si->tc_segment_info_data.mips16 = mips_opts.mips16;
df58fc94
RS
2059 if (si->tc_segment_info_data.micromips != mips_opts.micromips)
2060 si->tc_segment_info_data.micromips = mips_opts.micromips;
742a56fe
RS
2061}
2062
4d68580a
RS
2063/* Read a standard MIPS instruction from BUF. */
2064
2065static unsigned long
2066read_insn (char *buf)
2067{
2068 if (target_big_endian)
2069 return bfd_getb32 ((bfd_byte *) buf);
2070 else
2071 return bfd_getl32 ((bfd_byte *) buf);
2072}
2073
2074/* Write standard MIPS instruction INSN to BUF. Return a pointer to
2075 the next byte. */
2076
2077static char *
2078write_insn (char *buf, unsigned int insn)
2079{
2080 md_number_to_chars (buf, insn, 4);
2081 return buf + 4;
2082}
2083
2084/* Read a microMIPS or MIPS16 opcode from BUF, given that it
2085 has length LENGTH. */
2086
2087static unsigned long
2088read_compressed_insn (char *buf, unsigned int length)
2089{
2090 unsigned long insn;
2091 unsigned int i;
2092
2093 insn = 0;
2094 for (i = 0; i < length; i += 2)
2095 {
2096 insn <<= 16;
2097 if (target_big_endian)
2098 insn |= bfd_getb16 ((char *) buf);
2099 else
2100 insn |= bfd_getl16 ((char *) buf);
2101 buf += 2;
2102 }
2103 return insn;
2104}
2105
5c04167a
RS
2106/* Write microMIPS or MIPS16 instruction INSN to BUF, given that the
2107 instruction is LENGTH bytes long. Return a pointer to the next byte. */
2108
2109static char *
2110write_compressed_insn (char *buf, unsigned int insn, unsigned int length)
2111{
2112 unsigned int i;
2113
2114 for (i = 0; i < length; i += 2)
2115 md_number_to_chars (buf + i, insn >> ((length - i - 2) * 8), 2);
2116 return buf + length;
2117}
2118
1e915849
RS
2119/* Install INSN at the location specified by its "frag" and "where" fields. */
2120
2121static void
2122install_insn (const struct mips_cl_insn *insn)
2123{
2124 char *f = insn->frag->fr_literal + insn->where;
5c04167a
RS
2125 if (HAVE_CODE_COMPRESSION)
2126 write_compressed_insn (f, insn->insn_opcode, insn_length (insn));
1e915849 2127 else
4d68580a 2128 write_insn (f, insn->insn_opcode);
df58fc94 2129 mips_record_compressed_mode ();
1e915849
RS
2130}
2131
2132/* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
2133 and install the opcode in the new location. */
2134
2135static void
2136move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
2137{
2138 size_t i;
2139
2140 insn->frag = frag;
2141 insn->where = where;
2142 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2143 if (insn->fixp[i] != NULL)
2144 {
2145 insn->fixp[i]->fx_frag = frag;
2146 insn->fixp[i]->fx_where = where;
2147 }
2148 install_insn (insn);
2149}
2150
2151/* Add INSN to the end of the output. */
2152
2153static void
2154add_fixed_insn (struct mips_cl_insn *insn)
2155{
2156 char *f = frag_more (insn_length (insn));
2157 move_insn (insn, frag_now, f - frag_now->fr_literal);
2158}
2159
2160/* Start a variant frag and move INSN to the start of the variant part,
2161 marking it as fixed. The other arguments are as for frag_var. */
2162
2163static void
2164add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
2165 relax_substateT subtype, symbolS *symbol, offsetT offset)
2166{
2167 frag_grow (max_chars);
2168 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
2169 insn->fixed_p = 1;
2170 frag_var (rs_machine_dependent, max_chars, var,
2171 subtype, symbol, offset, NULL);
2172}
2173
2174/* Insert N copies of INSN into the history buffer, starting at
2175 position FIRST. Neither FIRST nor N need to be clipped. */
2176
2177static void
2178insert_into_history (unsigned int first, unsigned int n,
2179 const struct mips_cl_insn *insn)
2180{
2181 if (mips_relax.sequence != 2)
2182 {
2183 unsigned int i;
2184
2185 for (i = ARRAY_SIZE (history); i-- > first;)
2186 if (i >= first + n)
2187 history[i] = history[i - n];
2188 else
2189 history[i] = *insn;
2190 }
2191}
2192
71400594
RS
2193/* Initialize vr4120_conflicts. There is a bit of duplication here:
2194 the idea is to make it obvious at a glance that each errata is
2195 included. */
2196
2197static void
2198init_vr4120_conflicts (void)
2199{
2200#define CONFLICT(FIRST, SECOND) \
2201 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
2202
2203 /* Errata 21 - [D]DIV[U] after [D]MACC */
2204 CONFLICT (MACC, DIV);
2205 CONFLICT (DMACC, DIV);
2206
2207 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
2208 CONFLICT (DMULT, DMULT);
2209 CONFLICT (DMULT, DMACC);
2210 CONFLICT (DMACC, DMULT);
2211 CONFLICT (DMACC, DMACC);
2212
2213 /* Errata 24 - MT{LO,HI} after [D]MACC */
2214 CONFLICT (MACC, MTHILO);
2215 CONFLICT (DMACC, MTHILO);
2216
2217 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
2218 instruction is executed immediately after a MACC or DMACC
2219 instruction, the result of [either instruction] is incorrect." */
2220 CONFLICT (MACC, MULT);
2221 CONFLICT (MACC, DMULT);
2222 CONFLICT (DMACC, MULT);
2223 CONFLICT (DMACC, DMULT);
2224
2225 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
2226 executed immediately after a DMULT, DMULTU, DIV, DIVU,
2227 DDIV or DDIVU instruction, the result of the MACC or
2228 DMACC instruction is incorrect.". */
2229 CONFLICT (DMULT, MACC);
2230 CONFLICT (DMULT, DMACC);
2231 CONFLICT (DIV, MACC);
2232 CONFLICT (DIV, DMACC);
2233
2234#undef CONFLICT
2235}
2236
707bfff6
TS
2237struct regname {
2238 const char *name;
2239 unsigned int num;
2240};
2241
2242#define RTYPE_MASK 0x1ff00
2243#define RTYPE_NUM 0x00100
2244#define RTYPE_FPU 0x00200
2245#define RTYPE_FCC 0x00400
2246#define RTYPE_VEC 0x00800
2247#define RTYPE_GP 0x01000
2248#define RTYPE_CP0 0x02000
2249#define RTYPE_PC 0x04000
2250#define RTYPE_ACC 0x08000
2251#define RTYPE_CCC 0x10000
2252#define RNUM_MASK 0x000ff
2253#define RWARN 0x80000
2254
2255#define GENERIC_REGISTER_NUMBERS \
2256 {"$0", RTYPE_NUM | 0}, \
2257 {"$1", RTYPE_NUM | 1}, \
2258 {"$2", RTYPE_NUM | 2}, \
2259 {"$3", RTYPE_NUM | 3}, \
2260 {"$4", RTYPE_NUM | 4}, \
2261 {"$5", RTYPE_NUM | 5}, \
2262 {"$6", RTYPE_NUM | 6}, \
2263 {"$7", RTYPE_NUM | 7}, \
2264 {"$8", RTYPE_NUM | 8}, \
2265 {"$9", RTYPE_NUM | 9}, \
2266 {"$10", RTYPE_NUM | 10}, \
2267 {"$11", RTYPE_NUM | 11}, \
2268 {"$12", RTYPE_NUM | 12}, \
2269 {"$13", RTYPE_NUM | 13}, \
2270 {"$14", RTYPE_NUM | 14}, \
2271 {"$15", RTYPE_NUM | 15}, \
2272 {"$16", RTYPE_NUM | 16}, \
2273 {"$17", RTYPE_NUM | 17}, \
2274 {"$18", RTYPE_NUM | 18}, \
2275 {"$19", RTYPE_NUM | 19}, \
2276 {"$20", RTYPE_NUM | 20}, \
2277 {"$21", RTYPE_NUM | 21}, \
2278 {"$22", RTYPE_NUM | 22}, \
2279 {"$23", RTYPE_NUM | 23}, \
2280 {"$24", RTYPE_NUM | 24}, \
2281 {"$25", RTYPE_NUM | 25}, \
2282 {"$26", RTYPE_NUM | 26}, \
2283 {"$27", RTYPE_NUM | 27}, \
2284 {"$28", RTYPE_NUM | 28}, \
2285 {"$29", RTYPE_NUM | 29}, \
2286 {"$30", RTYPE_NUM | 30}, \
2287 {"$31", RTYPE_NUM | 31}
2288
2289#define FPU_REGISTER_NAMES \
2290 {"$f0", RTYPE_FPU | 0}, \
2291 {"$f1", RTYPE_FPU | 1}, \
2292 {"$f2", RTYPE_FPU | 2}, \
2293 {"$f3", RTYPE_FPU | 3}, \
2294 {"$f4", RTYPE_FPU | 4}, \
2295 {"$f5", RTYPE_FPU | 5}, \
2296 {"$f6", RTYPE_FPU | 6}, \
2297 {"$f7", RTYPE_FPU | 7}, \
2298 {"$f8", RTYPE_FPU | 8}, \
2299 {"$f9", RTYPE_FPU | 9}, \
2300 {"$f10", RTYPE_FPU | 10}, \
2301 {"$f11", RTYPE_FPU | 11}, \
2302 {"$f12", RTYPE_FPU | 12}, \
2303 {"$f13", RTYPE_FPU | 13}, \
2304 {"$f14", RTYPE_FPU | 14}, \
2305 {"$f15", RTYPE_FPU | 15}, \
2306 {"$f16", RTYPE_FPU | 16}, \
2307 {"$f17", RTYPE_FPU | 17}, \
2308 {"$f18", RTYPE_FPU | 18}, \
2309 {"$f19", RTYPE_FPU | 19}, \
2310 {"$f20", RTYPE_FPU | 20}, \
2311 {"$f21", RTYPE_FPU | 21}, \
2312 {"$f22", RTYPE_FPU | 22}, \
2313 {"$f23", RTYPE_FPU | 23}, \
2314 {"$f24", RTYPE_FPU | 24}, \
2315 {"$f25", RTYPE_FPU | 25}, \
2316 {"$f26", RTYPE_FPU | 26}, \
2317 {"$f27", RTYPE_FPU | 27}, \
2318 {"$f28", RTYPE_FPU | 28}, \
2319 {"$f29", RTYPE_FPU | 29}, \
2320 {"$f30", RTYPE_FPU | 30}, \
2321 {"$f31", RTYPE_FPU | 31}
2322
2323#define FPU_CONDITION_CODE_NAMES \
2324 {"$fcc0", RTYPE_FCC | 0}, \
2325 {"$fcc1", RTYPE_FCC | 1}, \
2326 {"$fcc2", RTYPE_FCC | 2}, \
2327 {"$fcc3", RTYPE_FCC | 3}, \
2328 {"$fcc4", RTYPE_FCC | 4}, \
2329 {"$fcc5", RTYPE_FCC | 5}, \
2330 {"$fcc6", RTYPE_FCC | 6}, \
2331 {"$fcc7", RTYPE_FCC | 7}
2332
2333#define COPROC_CONDITION_CODE_NAMES \
2334 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
2335 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
2336 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
2337 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
2338 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
2339 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
2340 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
2341 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
2342
2343#define N32N64_SYMBOLIC_REGISTER_NAMES \
2344 {"$a4", RTYPE_GP | 8}, \
2345 {"$a5", RTYPE_GP | 9}, \
2346 {"$a6", RTYPE_GP | 10}, \
2347 {"$a7", RTYPE_GP | 11}, \
2348 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
2349 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
2350 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
2351 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
2352 {"$t0", RTYPE_GP | 12}, \
2353 {"$t1", RTYPE_GP | 13}, \
2354 {"$t2", RTYPE_GP | 14}, \
2355 {"$t3", RTYPE_GP | 15}
2356
2357#define O32_SYMBOLIC_REGISTER_NAMES \
2358 {"$t0", RTYPE_GP | 8}, \
2359 {"$t1", RTYPE_GP | 9}, \
2360 {"$t2", RTYPE_GP | 10}, \
2361 {"$t3", RTYPE_GP | 11}, \
2362 {"$t4", RTYPE_GP | 12}, \
2363 {"$t5", RTYPE_GP | 13}, \
2364 {"$t6", RTYPE_GP | 14}, \
2365 {"$t7", RTYPE_GP | 15}, \
2366 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
2367 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
2368 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
2369 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
2370
2371/* Remaining symbolic register names */
2372#define SYMBOLIC_REGISTER_NAMES \
2373 {"$zero", RTYPE_GP | 0}, \
2374 {"$at", RTYPE_GP | 1}, \
2375 {"$AT", RTYPE_GP | 1}, \
2376 {"$v0", RTYPE_GP | 2}, \
2377 {"$v1", RTYPE_GP | 3}, \
2378 {"$a0", RTYPE_GP | 4}, \
2379 {"$a1", RTYPE_GP | 5}, \
2380 {"$a2", RTYPE_GP | 6}, \
2381 {"$a3", RTYPE_GP | 7}, \
2382 {"$s0", RTYPE_GP | 16}, \
2383 {"$s1", RTYPE_GP | 17}, \
2384 {"$s2", RTYPE_GP | 18}, \
2385 {"$s3", RTYPE_GP | 19}, \
2386 {"$s4", RTYPE_GP | 20}, \
2387 {"$s5", RTYPE_GP | 21}, \
2388 {"$s6", RTYPE_GP | 22}, \
2389 {"$s7", RTYPE_GP | 23}, \
2390 {"$t8", RTYPE_GP | 24}, \
2391 {"$t9", RTYPE_GP | 25}, \
2392 {"$k0", RTYPE_GP | 26}, \
2393 {"$kt0", RTYPE_GP | 26}, \
2394 {"$k1", RTYPE_GP | 27}, \
2395 {"$kt1", RTYPE_GP | 27}, \
2396 {"$gp", RTYPE_GP | 28}, \
2397 {"$sp", RTYPE_GP | 29}, \
2398 {"$s8", RTYPE_GP | 30}, \
2399 {"$fp", RTYPE_GP | 30}, \
2400 {"$ra", RTYPE_GP | 31}
2401
2402#define MIPS16_SPECIAL_REGISTER_NAMES \
2403 {"$pc", RTYPE_PC | 0}
2404
2405#define MDMX_VECTOR_REGISTER_NAMES \
2406 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
2407 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
2408 {"$v2", RTYPE_VEC | 2}, \
2409 {"$v3", RTYPE_VEC | 3}, \
2410 {"$v4", RTYPE_VEC | 4}, \
2411 {"$v5", RTYPE_VEC | 5}, \
2412 {"$v6", RTYPE_VEC | 6}, \
2413 {"$v7", RTYPE_VEC | 7}, \
2414 {"$v8", RTYPE_VEC | 8}, \
2415 {"$v9", RTYPE_VEC | 9}, \
2416 {"$v10", RTYPE_VEC | 10}, \
2417 {"$v11", RTYPE_VEC | 11}, \
2418 {"$v12", RTYPE_VEC | 12}, \
2419 {"$v13", RTYPE_VEC | 13}, \
2420 {"$v14", RTYPE_VEC | 14}, \
2421 {"$v15", RTYPE_VEC | 15}, \
2422 {"$v16", RTYPE_VEC | 16}, \
2423 {"$v17", RTYPE_VEC | 17}, \
2424 {"$v18", RTYPE_VEC | 18}, \
2425 {"$v19", RTYPE_VEC | 19}, \
2426 {"$v20", RTYPE_VEC | 20}, \
2427 {"$v21", RTYPE_VEC | 21}, \
2428 {"$v22", RTYPE_VEC | 22}, \
2429 {"$v23", RTYPE_VEC | 23}, \
2430 {"$v24", RTYPE_VEC | 24}, \
2431 {"$v25", RTYPE_VEC | 25}, \
2432 {"$v26", RTYPE_VEC | 26}, \
2433 {"$v27", RTYPE_VEC | 27}, \
2434 {"$v28", RTYPE_VEC | 28}, \
2435 {"$v29", RTYPE_VEC | 29}, \
2436 {"$v30", RTYPE_VEC | 30}, \
2437 {"$v31", RTYPE_VEC | 31}
2438
2439#define MIPS_DSP_ACCUMULATOR_NAMES \
2440 {"$ac0", RTYPE_ACC | 0}, \
2441 {"$ac1", RTYPE_ACC | 1}, \
2442 {"$ac2", RTYPE_ACC | 2}, \
2443 {"$ac3", RTYPE_ACC | 3}
2444
2445static const struct regname reg_names[] = {
2446 GENERIC_REGISTER_NUMBERS,
2447 FPU_REGISTER_NAMES,
2448 FPU_CONDITION_CODE_NAMES,
2449 COPROC_CONDITION_CODE_NAMES,
2450
2451 /* The $txx registers depends on the abi,
2452 these will be added later into the symbol table from
2453 one of the tables below once mips_abi is set after
2454 parsing of arguments from the command line. */
2455 SYMBOLIC_REGISTER_NAMES,
2456
2457 MIPS16_SPECIAL_REGISTER_NAMES,
2458 MDMX_VECTOR_REGISTER_NAMES,
2459 MIPS_DSP_ACCUMULATOR_NAMES,
2460 {0, 0}
2461};
2462
2463static const struct regname reg_names_o32[] = {
2464 O32_SYMBOLIC_REGISTER_NAMES,
2465 {0, 0}
2466};
2467
2468static const struct regname reg_names_n32n64[] = {
2469 N32N64_SYMBOLIC_REGISTER_NAMES,
2470 {0, 0}
2471};
2472
df58fc94
RS
2473/* Check if S points at a valid register specifier according to TYPES.
2474 If so, then return 1, advance S to consume the specifier and store
2475 the register's number in REGNOP, otherwise return 0. */
2476
707bfff6
TS
2477static int
2478reg_lookup (char **s, unsigned int types, unsigned int *regnop)
2479{
2480 symbolS *symbolP;
2481 char *e;
2482 char save_c;
2483 int reg = -1;
2484
2485 /* Find end of name. */
2486 e = *s;
2487 if (is_name_beginner (*e))
2488 ++e;
2489 while (is_part_of_name (*e))
2490 ++e;
2491
2492 /* Terminate name. */
2493 save_c = *e;
2494 *e = '\0';
2495
2496 /* Look for a register symbol. */
2497 if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
2498 {
2499 int r = S_GET_VALUE (symbolP);
2500 if (r & types)
2501 reg = r & RNUM_MASK;
2502 else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
2503 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
2504 reg = (r & RNUM_MASK) - 2;
2505 }
2506 /* Else see if this is a register defined in an itbl entry. */
2507 else if ((types & RTYPE_GP) && itbl_have_entries)
2508 {
2509 char *n = *s;
2510 unsigned long r;
2511
2512 if (*n == '$')
2513 ++n;
2514 if (itbl_get_reg_val (n, &r))
2515 reg = r & RNUM_MASK;
2516 }
2517
2518 /* Advance to next token if a register was recognised. */
2519 if (reg >= 0)
2520 *s = e;
2521 else if (types & RWARN)
20203fb9 2522 as_warn (_("Unrecognized register name `%s'"), *s);
707bfff6
TS
2523
2524 *e = save_c;
2525 if (regnop)
2526 *regnop = reg;
2527 return reg >= 0;
2528}
2529
df58fc94
RS
2530/* Check if S points at a valid register list according to TYPES.
2531 If so, then return 1, advance S to consume the list and store
2532 the registers present on the list as a bitmask of ones in REGLISTP,
2533 otherwise return 0. A valid list comprises a comma-separated
2534 enumeration of valid single registers and/or dash-separated
2535 contiguous register ranges as determined by their numbers.
2536
2537 As a special exception if one of s0-s7 registers is specified as
2538 the range's lower delimiter and s8 (fp) is its upper one, then no
2539 registers whose numbers place them between s7 and s8 (i.e. $24-$29)
2309ddf2 2540 are selected; they have to be listed separately if needed. */
df58fc94
RS
2541
2542static int
2543reglist_lookup (char **s, unsigned int types, unsigned int *reglistp)
2544{
2545 unsigned int reglist = 0;
2546 unsigned int lastregno;
2547 bfd_boolean ok = TRUE;
2548 unsigned int regmask;
2309ddf2 2549 char *s_endlist = *s;
df58fc94 2550 char *s_reset = *s;
2309ddf2 2551 unsigned int regno;
df58fc94
RS
2552
2553 while (reg_lookup (s, types, &regno))
2554 {
2555 lastregno = regno;
2556 if (**s == '-')
2557 {
2558 (*s)++;
2559 ok = reg_lookup (s, types, &lastregno);
2560 if (ok && lastregno < regno)
2561 ok = FALSE;
2562 if (!ok)
2563 break;
2564 }
2565
2566 if (lastregno == FP && regno >= S0 && regno <= S7)
2567 {
2568 lastregno = S7;
2569 reglist |= 1 << FP;
2570 }
2571 regmask = 1 << lastregno;
2572 regmask = (regmask << 1) - 1;
2573 regmask ^= (1 << regno) - 1;
2574 reglist |= regmask;
2575
2309ddf2 2576 s_endlist = *s;
df58fc94
RS
2577 if (**s != ',')
2578 break;
2579 (*s)++;
2580 }
2581
2582 if (ok)
2309ddf2 2583 *s = s_endlist;
df58fc94
RS
2584 else
2585 *s = s_reset;
2586 if (reglistp)
2587 *reglistp = reglist;
2588 return ok && reglist != 0;
2589}
2590
e76ff5ab
RS
2591static unsigned int
2592mips_lookup_reg_pair (unsigned int regno1, unsigned int regno2,
2593 const unsigned int *map1, const unsigned int *map2,
2594 unsigned int count)
2595{
2596 unsigned int i;
2597
2598 for (i = 0; i < count; i++)
2599 if (map1[i] == regno1 && map2[i] == regno2)
2600 return i;
2601 return ILLEGAL_REG;
2602}
2603
d301a56b
RS
2604/* Return TRUE if opcode MO is valid on the currently selected ISA, ASE
2605 and architecture. Use is_opcode_valid_16 for MIPS16 opcodes. */
037b32b9
AN
2606
2607static bfd_boolean
f79e2745 2608is_opcode_valid (const struct mips_opcode *mo)
037b32b9
AN
2609{
2610 int isa = mips_opts.isa;
846ef2d0 2611 int ase = mips_opts.ase;
037b32b9 2612 int fp_s, fp_d;
c6278170 2613 unsigned int i;
037b32b9 2614
c6278170
RS
2615 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
2616 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
2617 if ((ase & mips_ases[i].flags) == mips_ases[i].flags)
2618 ase |= mips_ases[i].flags64;
037b32b9 2619
d301a56b 2620 if (!opcode_is_member (mo, isa, ase, mips_opts.arch))
037b32b9
AN
2621 return FALSE;
2622
2623 /* Check whether the instruction or macro requires single-precision or
2624 double-precision floating-point support. Note that this information is
2625 stored differently in the opcode table for insns and macros. */
2626 if (mo->pinfo == INSN_MACRO)
2627 {
2628 fp_s = mo->pinfo2 & INSN2_M_FP_S;
2629 fp_d = mo->pinfo2 & INSN2_M_FP_D;
2630 }
2631 else
2632 {
2633 fp_s = mo->pinfo & FP_S;
2634 fp_d = mo->pinfo & FP_D;
2635 }
2636
2637 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
2638 return FALSE;
2639
2640 if (fp_s && mips_opts.soft_float)
2641 return FALSE;
2642
2643 return TRUE;
2644}
2645
2646/* Return TRUE if the MIPS16 opcode MO is valid on the currently
2647 selected ISA and architecture. */
2648
2649static bfd_boolean
2650is_opcode_valid_16 (const struct mips_opcode *mo)
2651{
d301a56b 2652 return opcode_is_member (mo, mips_opts.isa, 0, mips_opts.arch);
037b32b9
AN
2653}
2654
df58fc94
RS
2655/* Return TRUE if the size of the microMIPS opcode MO matches one
2656 explicitly requested. Always TRUE in the standard MIPS mode. */
2657
2658static bfd_boolean
2659is_size_valid (const struct mips_opcode *mo)
2660{
2661 if (!mips_opts.micromips)
2662 return TRUE;
2663
833794fc
MR
2664 if (mips_opts.insn32)
2665 {
2666 if (mo->pinfo != INSN_MACRO && micromips_insn_length (mo) != 4)
2667 return FALSE;
2668 if ((mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0)
2669 return FALSE;
2670 }
df58fc94
RS
2671 if (!forced_insn_length)
2672 return TRUE;
2673 if (mo->pinfo == INSN_MACRO)
2674 return FALSE;
2675 return forced_insn_length == micromips_insn_length (mo);
2676}
2677
2678/* Return TRUE if the microMIPS opcode MO is valid for the delay slot
e64af278
MR
2679 of the preceding instruction. Always TRUE in the standard MIPS mode.
2680
2681 We don't accept macros in 16-bit delay slots to avoid a case where
2682 a macro expansion fails because it relies on a preceding 32-bit real
2683 instruction to have matched and does not handle the operands correctly.
2684 The only macros that may expand to 16-bit instructions are JAL that
2685 cannot be placed in a delay slot anyway, and corner cases of BALIGN
2686 and BGT (that likewise cannot be placed in a delay slot) that decay to
2687 a NOP. In all these cases the macros precede any corresponding real
2688 instruction definitions in the opcode table, so they will match in the
2689 second pass where the size of the delay slot is ignored and therefore
2690 produce correct code. */
df58fc94
RS
2691
2692static bfd_boolean
2693is_delay_slot_valid (const struct mips_opcode *mo)
2694{
2695 if (!mips_opts.micromips)
2696 return TRUE;
2697
2698 if (mo->pinfo == INSN_MACRO)
c06dec14 2699 return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;
df58fc94
RS
2700 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
2701 && micromips_insn_length (mo) != 4)
2702 return FALSE;
2703 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
2704 && micromips_insn_length (mo) != 2)
2705 return FALSE;
2706
2707 return TRUE;
2708}
2709
707bfff6
TS
2710/* This function is called once, at assembler startup time. It should set up
2711 all the tables, etc. that the MD part of the assembler will need. */
156c2f8b 2712
252b5132 2713void
17a2f251 2714md_begin (void)
252b5132 2715{
3994f87e 2716 const char *retval = NULL;
156c2f8b 2717 int i = 0;
252b5132 2718 int broken = 0;
1f25f5d3 2719
0a44bf69
RS
2720 if (mips_pic != NO_PIC)
2721 {
2722 if (g_switch_seen && g_switch_value != 0)
2723 as_bad (_("-G may not be used in position-independent code"));
2724 g_switch_value = 0;
2725 }
2726
fef14a42 2727 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
252b5132
RH
2728 as_warn (_("Could not set architecture and machine"));
2729
252b5132
RH
2730 op_hash = hash_new ();
2731
2732 for (i = 0; i < NUMOPCODES;)
2733 {
2734 const char *name = mips_opcodes[i].name;
2735
17a2f251 2736 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
252b5132
RH
2737 if (retval != NULL)
2738 {
2739 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
2740 mips_opcodes[i].name, retval);
2741 /* Probably a memory allocation problem? Give up now. */
2742 as_fatal (_("Broken assembler. No assembly attempted."));
2743 }
2744 do
2745 {
2746 if (mips_opcodes[i].pinfo != INSN_MACRO)
2747 {
2748 if (!validate_mips_insn (&mips_opcodes[i]))
2749 broken = 1;
1e915849
RS
2750 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
2751 {
2752 create_insn (&nop_insn, mips_opcodes + i);
c67a084a
NC
2753 if (mips_fix_loongson2f_nop)
2754 nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
1e915849
RS
2755 nop_insn.fixed_p = 1;
2756 }
252b5132
RH
2757 }
2758 ++i;
2759 }
2760 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
2761 }
2762
2763 mips16_op_hash = hash_new ();
2764
2765 i = 0;
2766 while (i < bfd_mips16_num_opcodes)
2767 {
2768 const char *name = mips16_opcodes[i].name;
2769
17a2f251 2770 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
252b5132
RH
2771 if (retval != NULL)
2772 as_fatal (_("internal: can't hash `%s': %s"),
2773 mips16_opcodes[i].name, retval);
2774 do
2775 {
2776 if (mips16_opcodes[i].pinfo != INSN_MACRO
2777 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
2778 != mips16_opcodes[i].match))
2779 {
2780 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
2781 mips16_opcodes[i].name, mips16_opcodes[i].args);
2782 broken = 1;
2783 }
1e915849
RS
2784 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
2785 {
2786 create_insn (&mips16_nop_insn, mips16_opcodes + i);
2787 mips16_nop_insn.fixed_p = 1;
2788 }
252b5132
RH
2789 ++i;
2790 }
2791 while (i < bfd_mips16_num_opcodes
2792 && strcmp (mips16_opcodes[i].name, name) == 0);
2793 }
2794
df58fc94
RS
2795 micromips_op_hash = hash_new ();
2796
2797 i = 0;
2798 while (i < bfd_micromips_num_opcodes)
2799 {
2800 const char *name = micromips_opcodes[i].name;
2801
2802 retval = hash_insert (micromips_op_hash, name,
2803 (void *) &micromips_opcodes[i]);
2804 if (retval != NULL)
2805 as_fatal (_("internal: can't hash `%s': %s"),
2806 micromips_opcodes[i].name, retval);
2807 do
2808 if (micromips_opcodes[i].pinfo != INSN_MACRO)
2809 {
2810 struct mips_cl_insn *micromips_nop_insn;
2811
2812 if (!validate_micromips_insn (&micromips_opcodes[i]))
2813 broken = 1;
2814
2815 if (micromips_insn_length (micromips_opcodes + i) == 2)
2816 micromips_nop_insn = &micromips_nop16_insn;
2817 else if (micromips_insn_length (micromips_opcodes + i) == 4)
2818 micromips_nop_insn = &micromips_nop32_insn;
2819 else
2820 continue;
2821
2822 if (micromips_nop_insn->insn_mo == NULL
2823 && strcmp (name, "nop") == 0)
2824 {
2825 create_insn (micromips_nop_insn, micromips_opcodes + i);
2826 micromips_nop_insn->fixed_p = 1;
2827 }
2828 }
2829 while (++i < bfd_micromips_num_opcodes
2830 && strcmp (micromips_opcodes[i].name, name) == 0);
2831 }
2832
252b5132
RH
2833 if (broken)
2834 as_fatal (_("Broken assembler. No assembly attempted."));
2835
2836 /* We add all the general register names to the symbol table. This
2837 helps us detect invalid uses of them. */
707bfff6
TS
2838 for (i = 0; reg_names[i].name; i++)
2839 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
8fc4ee9b 2840 reg_names[i].num, /* & RNUM_MASK, */
707bfff6
TS
2841 &zero_address_frag));
2842 if (HAVE_NEWABI)
2843 for (i = 0; reg_names_n32n64[i].name; i++)
2844 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
8fc4ee9b 2845 reg_names_n32n64[i].num, /* & RNUM_MASK, */
252b5132 2846 &zero_address_frag));
707bfff6
TS
2847 else
2848 for (i = 0; reg_names_o32[i].name; i++)
2849 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
8fc4ee9b 2850 reg_names_o32[i].num, /* & RNUM_MASK, */
6047c971 2851 &zero_address_frag));
6047c971 2852
7d10b47d 2853 mips_no_prev_insn ();
252b5132
RH
2854
2855 mips_gprmask = 0;
2856 mips_cprmask[0] = 0;
2857 mips_cprmask[1] = 0;
2858 mips_cprmask[2] = 0;
2859 mips_cprmask[3] = 0;
2860
2861 /* set the default alignment for the text section (2**2) */
2862 record_alignment (text_section, 2);
2863
4d0d148d 2864 bfd_set_gp_size (stdoutput, g_switch_value);
252b5132 2865
f3ded42a
RS
2866 /* On a native system other than VxWorks, sections must be aligned
2867 to 16 byte boundaries. When configured for an embedded ELF
2868 target, we don't bother. */
2869 if (strncmp (TARGET_OS, "elf", 3) != 0
2870 && strncmp (TARGET_OS, "vxworks", 7) != 0)
252b5132 2871 {
f3ded42a
RS
2872 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
2873 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
2874 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
2875 }
252b5132 2876
f3ded42a
RS
2877 /* Create a .reginfo section for register masks and a .mdebug
2878 section for debugging information. */
2879 {
2880 segT seg;
2881 subsegT subseg;
2882 flagword flags;
2883 segT sec;
2884
2885 seg = now_seg;
2886 subseg = now_subseg;
2887
2888 /* The ABI says this section should be loaded so that the
2889 running program can access it. However, we don't load it
2890 if we are configured for an embedded target */
2891 flags = SEC_READONLY | SEC_DATA;
2892 if (strncmp (TARGET_OS, "elf", 3) != 0)
2893 flags |= SEC_ALLOC | SEC_LOAD;
2894
2895 if (mips_abi != N64_ABI)
252b5132 2896 {
f3ded42a 2897 sec = subseg_new (".reginfo", (subsegT) 0);
bdaaa2e1 2898
f3ded42a
RS
2899 bfd_set_section_flags (stdoutput, sec, flags);
2900 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
252b5132 2901
f3ded42a
RS
2902 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
2903 }
2904 else
2905 {
2906 /* The 64-bit ABI uses a .MIPS.options section rather than
2907 .reginfo section. */
2908 sec = subseg_new (".MIPS.options", (subsegT) 0);
2909 bfd_set_section_flags (stdoutput, sec, flags);
2910 bfd_set_section_alignment (stdoutput, sec, 3);
252b5132 2911
f3ded42a
RS
2912 /* Set up the option header. */
2913 {
2914 Elf_Internal_Options opthdr;
2915 char *f;
2916
2917 opthdr.kind = ODK_REGINFO;
2918 opthdr.size = (sizeof (Elf_External_Options)
2919 + sizeof (Elf64_External_RegInfo));
2920 opthdr.section = 0;
2921 opthdr.info = 0;
2922 f = frag_more (sizeof (Elf_External_Options));
2923 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2924 (Elf_External_Options *) f);
2925
2926 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2927 }
2928 }
252b5132 2929
f3ded42a
RS
2930 if (ECOFF_DEBUGGING)
2931 {
2932 sec = subseg_new (".mdebug", (subsegT) 0);
2933 (void) bfd_set_section_flags (stdoutput, sec,
2934 SEC_HAS_CONTENTS | SEC_READONLY);
2935 (void) bfd_set_section_alignment (stdoutput, sec, 2);
252b5132 2936 }
f3ded42a
RS
2937 else if (mips_flag_pdr)
2938 {
2939 pdr_seg = subseg_new (".pdr", (subsegT) 0);
2940 (void) bfd_set_section_flags (stdoutput, pdr_seg,
2941 SEC_READONLY | SEC_RELOC
2942 | SEC_DEBUGGING);
2943 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2944 }
2945
2946 subseg_set (seg, subseg);
2947 }
252b5132
RH
2948
2949 if (! ECOFF_DEBUGGING)
2950 md_obj_begin ();
71400594
RS
2951
2952 if (mips_fix_vr4120)
2953 init_vr4120_conflicts ();
252b5132
RH
2954}
2955
2956void
17a2f251 2957md_mips_end (void)
252b5132 2958{
02b1ab82 2959 mips_emit_delays ();
252b5132
RH
2960 if (! ECOFF_DEBUGGING)
2961 md_obj_end ();
2962}
2963
2964void
17a2f251 2965md_assemble (char *str)
252b5132
RH
2966{
2967 struct mips_cl_insn insn;
f6688943
TS
2968 bfd_reloc_code_real_type unused_reloc[3]
2969 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132
RH
2970
2971 imm_expr.X_op = O_absent;
5f74bc13 2972 imm2_expr.X_op = O_absent;
252b5132 2973 offset_expr.X_op = O_absent;
f6688943
TS
2974 offset_reloc[0] = BFD_RELOC_UNUSED;
2975 offset_reloc[1] = BFD_RELOC_UNUSED;
2976 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132 2977
e1b47bd5
RS
2978 mips_mark_labels ();
2979 mips_assembling_insn = TRUE;
2980
252b5132
RH
2981 if (mips_opts.mips16)
2982 mips16_ip (str, &insn);
2983 else
2984 {
2985 mips_ip (str, &insn);
beae10d5
KH
2986 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2987 str, insn.insn_opcode));
252b5132
RH
2988 }
2989
2990 if (insn_error)
e1b47bd5
RS
2991 as_bad ("%s `%s'", insn_error, str);
2992 else if (insn.insn_mo->pinfo == INSN_MACRO)
252b5132 2993 {
584892a6 2994 macro_start ();
252b5132
RH
2995 if (mips_opts.mips16)
2996 mips16_macro (&insn);
2997 else
833794fc 2998 macro (&insn, str);
584892a6 2999 macro_end ();
252b5132
RH
3000 }
3001 else
3002 {
77bd4346 3003 if (offset_expr.X_op != O_absent)
df58fc94 3004 append_insn (&insn, &offset_expr, offset_reloc, FALSE);
252b5132 3005 else
df58fc94 3006 append_insn (&insn, NULL, unused_reloc, FALSE);
252b5132 3007 }
e1b47bd5
RS
3008
3009 mips_assembling_insn = FALSE;
252b5132
RH
3010}
3011
738e5348
RS
3012/* Convenience functions for abstracting away the differences between
3013 MIPS16 and non-MIPS16 relocations. */
3014
3015static inline bfd_boolean
3016mips16_reloc_p (bfd_reloc_code_real_type reloc)
3017{
3018 switch (reloc)
3019 {
3020 case BFD_RELOC_MIPS16_JMP:
3021 case BFD_RELOC_MIPS16_GPREL:
3022 case BFD_RELOC_MIPS16_GOT16:
3023 case BFD_RELOC_MIPS16_CALL16:
3024 case BFD_RELOC_MIPS16_HI16_S:
3025 case BFD_RELOC_MIPS16_HI16:
3026 case BFD_RELOC_MIPS16_LO16:
3027 return TRUE;
3028
3029 default:
3030 return FALSE;
3031 }
3032}
3033
df58fc94
RS
3034static inline bfd_boolean
3035micromips_reloc_p (bfd_reloc_code_real_type reloc)
3036{
3037 switch (reloc)
3038 {
3039 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
3040 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
3041 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
3042 case BFD_RELOC_MICROMIPS_GPREL16:
3043 case BFD_RELOC_MICROMIPS_JMP:
3044 case BFD_RELOC_MICROMIPS_HI16:
3045 case BFD_RELOC_MICROMIPS_HI16_S:
3046 case BFD_RELOC_MICROMIPS_LO16:
3047 case BFD_RELOC_MICROMIPS_LITERAL:
3048 case BFD_RELOC_MICROMIPS_GOT16:
3049 case BFD_RELOC_MICROMIPS_CALL16:
3050 case BFD_RELOC_MICROMIPS_GOT_HI16:
3051 case BFD_RELOC_MICROMIPS_GOT_LO16:
3052 case BFD_RELOC_MICROMIPS_CALL_HI16:
3053 case BFD_RELOC_MICROMIPS_CALL_LO16:
3054 case BFD_RELOC_MICROMIPS_SUB:
3055 case BFD_RELOC_MICROMIPS_GOT_PAGE:
3056 case BFD_RELOC_MICROMIPS_GOT_OFST:
3057 case BFD_RELOC_MICROMIPS_GOT_DISP:
3058 case BFD_RELOC_MICROMIPS_HIGHEST:
3059 case BFD_RELOC_MICROMIPS_HIGHER:
3060 case BFD_RELOC_MICROMIPS_SCN_DISP:
3061 case BFD_RELOC_MICROMIPS_JALR:
3062 return TRUE;
3063
3064 default:
3065 return FALSE;
3066 }
3067}
3068
2309ddf2
MR
3069static inline bfd_boolean
3070jmp_reloc_p (bfd_reloc_code_real_type reloc)
3071{
3072 return reloc == BFD_RELOC_MIPS_JMP || reloc == BFD_RELOC_MICROMIPS_JMP;
3073}
3074
738e5348
RS
3075static inline bfd_boolean
3076got16_reloc_p (bfd_reloc_code_real_type reloc)
3077{
2309ddf2 3078 return (reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16
df58fc94 3079 || reloc == BFD_RELOC_MICROMIPS_GOT16);
738e5348
RS
3080}
3081
3082static inline bfd_boolean
3083hi16_reloc_p (bfd_reloc_code_real_type reloc)
3084{
2309ddf2 3085 return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S
df58fc94 3086 || reloc == BFD_RELOC_MICROMIPS_HI16_S);
738e5348
RS
3087}
3088
3089static inline bfd_boolean
3090lo16_reloc_p (bfd_reloc_code_real_type reloc)
3091{
2309ddf2 3092 return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16
df58fc94
RS
3093 || reloc == BFD_RELOC_MICROMIPS_LO16);
3094}
3095
df58fc94
RS
3096static inline bfd_boolean
3097jalr_reloc_p (bfd_reloc_code_real_type reloc)
3098{
2309ddf2 3099 return reloc == BFD_RELOC_MIPS_JALR || reloc == BFD_RELOC_MICROMIPS_JALR;
738e5348
RS
3100}
3101
f2ae14a1
RS
3102static inline bfd_boolean
3103gprel16_reloc_p (bfd_reloc_code_real_type reloc)
3104{
3105 return (reloc == BFD_RELOC_GPREL16 || reloc == BFD_RELOC_MIPS16_GPREL
3106 || reloc == BFD_RELOC_MICROMIPS_GPREL16);
3107}
3108
2de39019
CM
3109/* Return true if RELOC is a PC-relative relocation that does not have
3110 full address range. */
3111
3112static inline bfd_boolean
3113limited_pcrel_reloc_p (bfd_reloc_code_real_type reloc)
3114{
3115 switch (reloc)
3116 {
3117 case BFD_RELOC_16_PCREL_S2:
3118 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
3119 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
3120 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
3121 return TRUE;
3122
b47468a6
CM
3123 case BFD_RELOC_32_PCREL:
3124 return HAVE_64BIT_ADDRESSES;
3125
2de39019
CM
3126 default:
3127 return FALSE;
3128 }
3129}
b47468a6 3130
5919d012 3131/* Return true if the given relocation might need a matching %lo().
0a44bf69
RS
3132 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
3133 need a matching %lo() when applied to local symbols. */
5919d012
RS
3134
3135static inline bfd_boolean
17a2f251 3136reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
5919d012 3137{
3b91255e 3138 return (HAVE_IN_PLACE_ADDENDS
738e5348 3139 && (hi16_reloc_p (reloc)
0a44bf69
RS
3140 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
3141 all GOT16 relocations evaluate to "G". */
738e5348
RS
3142 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
3143}
3144
3145/* Return the type of %lo() reloc needed by RELOC, given that
3146 reloc_needs_lo_p. */
3147
3148static inline bfd_reloc_code_real_type
3149matching_lo_reloc (bfd_reloc_code_real_type reloc)
3150{
df58fc94
RS
3151 return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16
3152 : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16
3153 : BFD_RELOC_LO16));
5919d012
RS
3154}
3155
3156/* Return true if the given fixup is followed by a matching R_MIPS_LO16
3157 relocation. */
3158
3159static inline bfd_boolean
17a2f251 3160fixup_has_matching_lo_p (fixS *fixp)
5919d012
RS
3161{
3162 return (fixp->fx_next != NULL
738e5348 3163 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
5919d012
RS
3164 && fixp->fx_addsy == fixp->fx_next->fx_addsy
3165 && fixp->fx_offset == fixp->fx_next->fx_offset);
3166}
3167
252b5132
RH
3168/* This function returns true if modifying a register requires a
3169 delay. */
3170
3171static int
17a2f251 3172reg_needs_delay (unsigned int reg)
252b5132
RH
3173{
3174 unsigned long prev_pinfo;
3175
47e39b9d 3176 prev_pinfo = history[0].insn_mo->pinfo;
252b5132 3177 if (! mips_opts.noreorder
81912461
ILT
3178 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
3179 && ! gpr_interlocks)
3180 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
3181 && ! cop_interlocks)))
252b5132 3182 {
81912461
ILT
3183 /* A load from a coprocessor or from memory. All load delays
3184 delay the use of general register rt for one instruction. */
bdaaa2e1 3185 /* Itbl support may require additional care here. */
252b5132 3186 know (prev_pinfo & INSN_WRITE_GPR_T);
df58fc94 3187 if (reg == EXTRACT_OPERAND (mips_opts.micromips, RT, history[0]))
252b5132
RH
3188 return 1;
3189 }
3190
3191 return 0;
3192}
3193
462427c4
RS
3194/* Move all labels in LABELS to the current insertion point. TEXT_P
3195 says whether the labels refer to text or data. */
404a8071
RS
3196
3197static void
462427c4 3198mips_move_labels (struct insn_label_list *labels, bfd_boolean text_p)
404a8071
RS
3199{
3200 struct insn_label_list *l;
3201 valueT val;
3202
462427c4 3203 for (l = labels; l != NULL; l = l->next)
404a8071 3204 {
9c2799c2 3205 gas_assert (S_GET_SEGMENT (l->label) == now_seg);
404a8071
RS
3206 symbol_set_frag (l->label, frag_now);
3207 val = (valueT) frag_now_fix ();
df58fc94 3208 /* MIPS16/microMIPS text labels are stored as odd. */
462427c4 3209 if (text_p && HAVE_CODE_COMPRESSION)
404a8071
RS
3210 ++val;
3211 S_SET_VALUE (l->label, val);
3212 }
3213}
3214
462427c4
RS
3215/* Move all labels in insn_labels to the current insertion point
3216 and treat them as text labels. */
3217
3218static void
3219mips_move_text_labels (void)
3220{
3221 mips_move_labels (seg_info (now_seg)->label_list, TRUE);
3222}
3223
5f0fe04b
TS
3224static bfd_boolean
3225s_is_linkonce (symbolS *sym, segT from_seg)
3226{
3227 bfd_boolean linkonce = FALSE;
3228 segT symseg = S_GET_SEGMENT (sym);
3229
3230 if (symseg != from_seg && !S_IS_LOCAL (sym))
3231 {
3232 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
3233 linkonce = TRUE;
5f0fe04b
TS
3234 /* The GNU toolchain uses an extension for ELF: a section
3235 beginning with the magic string .gnu.linkonce is a
3236 linkonce section. */
3237 if (strncmp (segment_name (symseg), ".gnu.linkonce",
3238 sizeof ".gnu.linkonce" - 1) == 0)
3239 linkonce = TRUE;
5f0fe04b
TS
3240 }
3241 return linkonce;
3242}
3243
e1b47bd5 3244/* Mark MIPS16 or microMIPS instruction label LABEL. This permits the
df58fc94
RS
3245 linker to handle them specially, such as generating jalx instructions
3246 when needed. We also make them odd for the duration of the assembly,
3247 in order to generate the right sort of code. We will make them even
252b5132
RH
3248 in the adjust_symtab routine, while leaving them marked. This is
3249 convenient for the debugger and the disassembler. The linker knows
3250 to make them odd again. */
3251
3252static void
e1b47bd5 3253mips_compressed_mark_label (symbolS *label)
252b5132 3254{
df58fc94 3255 gas_assert (HAVE_CODE_COMPRESSION);
a8dbcb85 3256
f3ded42a
RS
3257 if (mips_opts.mips16)
3258 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
3259 else
3260 S_SET_OTHER (label, ELF_ST_SET_MICROMIPS (S_GET_OTHER (label)));
e1b47bd5
RS
3261 if ((S_GET_VALUE (label) & 1) == 0
3262 /* Don't adjust the address if the label is global or weak, or
3263 in a link-once section, since we'll be emitting symbol reloc
3264 references to it which will be patched up by the linker, and
3265 the final value of the symbol may or may not be MIPS16/microMIPS. */
3266 && !S_IS_WEAK (label)
3267 && !S_IS_EXTERNAL (label)
3268 && !s_is_linkonce (label, now_seg))
3269 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
3270}
3271
3272/* Mark preceding MIPS16 or microMIPS instruction labels. */
3273
3274static void
3275mips_compressed_mark_labels (void)
3276{
3277 struct insn_label_list *l;
3278
3279 for (l = seg_info (now_seg)->label_list; l != NULL; l = l->next)
3280 mips_compressed_mark_label (l->label);
252b5132
RH
3281}
3282
4d7206a2
RS
3283/* End the current frag. Make it a variant frag and record the
3284 relaxation info. */
3285
3286static void
3287relax_close_frag (void)
3288{
584892a6 3289 mips_macro_warning.first_frag = frag_now;
4d7206a2 3290 frag_var (rs_machine_dependent, 0, 0,
584892a6 3291 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
4d7206a2
RS
3292 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
3293
3294 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
3295 mips_relax.first_fixup = 0;
3296}
3297
3298/* Start a new relaxation sequence whose expansion depends on SYMBOL.
3299 See the comment above RELAX_ENCODE for more details. */
3300
3301static void
3302relax_start (symbolS *symbol)
3303{
9c2799c2 3304 gas_assert (mips_relax.sequence == 0);
4d7206a2
RS
3305 mips_relax.sequence = 1;
3306 mips_relax.symbol = symbol;
3307}
3308
3309/* Start generating the second version of a relaxable sequence.
3310 See the comment above RELAX_ENCODE for more details. */
252b5132
RH
3311
3312static void
4d7206a2
RS
3313relax_switch (void)
3314{
9c2799c2 3315 gas_assert (mips_relax.sequence == 1);
4d7206a2
RS
3316 mips_relax.sequence = 2;
3317}
3318
3319/* End the current relaxable sequence. */
3320
3321static void
3322relax_end (void)
3323{
9c2799c2 3324 gas_assert (mips_relax.sequence == 2);
4d7206a2
RS
3325 relax_close_frag ();
3326 mips_relax.sequence = 0;
3327}
3328
11625dd8
RS
3329/* Return true if IP is a delayed branch or jump. */
3330
3331static inline bfd_boolean
3332delayed_branch_p (const struct mips_cl_insn *ip)
3333{
3334 return (ip->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
3335 | INSN_COND_BRANCH_DELAY
3336 | INSN_COND_BRANCH_LIKELY)) != 0;
3337}
3338
3339/* Return true if IP is a compact branch or jump. */
3340
3341static inline bfd_boolean
3342compact_branch_p (const struct mips_cl_insn *ip)
3343{
3344 if (mips_opts.mips16)
3345 return (ip->insn_mo->pinfo & (MIPS16_INSN_UNCOND_BRANCH
3346 | MIPS16_INSN_COND_BRANCH)) != 0;
3347 else
3348 return (ip->insn_mo->pinfo2 & (INSN2_UNCOND_BRANCH
3349 | INSN2_COND_BRANCH)) != 0;
3350}
3351
3352/* Return true if IP is an unconditional branch or jump. */
3353
3354static inline bfd_boolean
3355uncond_branch_p (const struct mips_cl_insn *ip)
3356{
3357 return ((ip->insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY) != 0
3358 || (mips_opts.mips16
3359 ? (ip->insn_mo->pinfo & MIPS16_INSN_UNCOND_BRANCH) != 0
3360 : (ip->insn_mo->pinfo2 & INSN2_UNCOND_BRANCH) != 0));
3361}
3362
3363/* Return true if IP is a branch-likely instruction. */
3364
3365static inline bfd_boolean
3366branch_likely_p (const struct mips_cl_insn *ip)
3367{
3368 return (ip->insn_mo->pinfo & INSN_COND_BRANCH_LIKELY) != 0;
3369}
3370
14fe068b
RS
3371/* Return the type of nop that should be used to fill the delay slot
3372 of delayed branch IP. */
3373
3374static struct mips_cl_insn *
3375get_delay_slot_nop (const struct mips_cl_insn *ip)
3376{
3377 if (mips_opts.micromips
3378 && (ip->insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
3379 return &micromips_nop32_insn;
3380 return NOP_INSN;
3381}
3382
2309ddf2 3383/* Return the mask of core registers that IP reads or writes. */
df58fc94
RS
3384
3385static unsigned int
3386gpr_mod_mask (const struct mips_cl_insn *ip)
3387{
2309ddf2 3388 unsigned long pinfo2;
df58fc94
RS
3389 unsigned int mask;
3390
3391 mask = 0;
df58fc94
RS
3392 pinfo2 = ip->insn_mo->pinfo2;
3393 if (mips_opts.micromips)
3394 {
df58fc94
RS
3395 if (pinfo2 & INSN2_MOD_GPR_MD)
3396 mask |= 1 << micromips_to_32_reg_d_map[EXTRACT_OPERAND (1, MD, *ip)];
df58fc94
RS
3397 if (pinfo2 & INSN2_MOD_GPR_MF)
3398 mask |= 1 << micromips_to_32_reg_f_map[EXTRACT_OPERAND (1, MF, *ip)];
df58fc94
RS
3399 if (pinfo2 & INSN2_MOD_SP)
3400 mask |= 1 << SP;
3401 }
3402 return mask;
3403}
3404
4c260379
RS
3405/* Return the mask of core registers that IP reads. */
3406
3407static unsigned int
3408gpr_read_mask (const struct mips_cl_insn *ip)
3409{
3410 unsigned long pinfo, pinfo2;
3411 unsigned int mask;
3412
df58fc94 3413 mask = gpr_mod_mask (ip);
4c260379
RS
3414 pinfo = ip->insn_mo->pinfo;
3415 pinfo2 = ip->insn_mo->pinfo2;
3416 if (mips_opts.mips16)
3417 {
3418 if (pinfo & MIPS16_INSN_READ_X)
3419 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
3420 if (pinfo & MIPS16_INSN_READ_Y)
3421 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
3422 if (pinfo & MIPS16_INSN_READ_T)
3423 mask |= 1 << TREG;
3424 if (pinfo & MIPS16_INSN_READ_SP)
3425 mask |= 1 << SP;
3426 if (pinfo & MIPS16_INSN_READ_31)
3427 mask |= 1 << RA;
3428 if (pinfo & MIPS16_INSN_READ_Z)
3429 mask |= 1 << (mips16_to_32_reg_map
3430 [MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]);
3431 if (pinfo & MIPS16_INSN_READ_GPR_X)
3432 mask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
3433 }
3434 else
3435 {
3436 if (pinfo2 & INSN2_READ_GPR_D)
2309ddf2 3437 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
4c260379 3438 if (pinfo & INSN_READ_GPR_T)
2309ddf2 3439 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
4c260379 3440 if (pinfo & INSN_READ_GPR_S)
2309ddf2
MR
3441 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
3442 if (pinfo2 & INSN2_READ_GP)
3443 mask |= 1 << GP;
3444 if (pinfo2 & INSN2_READ_GPR_31)
3445 mask |= 1 << RA;
4c260379 3446 if (pinfo2 & INSN2_READ_GPR_Z)
2309ddf2 3447 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
4c260379 3448 }
2b0c8b40
MR
3449 if (mips_opts.micromips)
3450 {
3451 if (pinfo2 & INSN2_READ_GPR_MC)
3452 mask |= 1 << micromips_to_32_reg_c_map[EXTRACT_OPERAND (1, MC, *ip)];
3453 if (pinfo2 & INSN2_READ_GPR_ME)
3454 mask |= 1 << micromips_to_32_reg_e_map[EXTRACT_OPERAND (1, ME, *ip)];
3455 if (pinfo2 & INSN2_READ_GPR_MG)
3456 mask |= 1 << micromips_to_32_reg_g_map[EXTRACT_OPERAND (1, MG, *ip)];
3457 if (pinfo2 & INSN2_READ_GPR_MJ)
3458 mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
3459 if (pinfo2 & INSN2_READ_GPR_MMN)
3460 {
3461 mask |= 1 << micromips_to_32_reg_m_map[EXTRACT_OPERAND (1, MM, *ip)];
3462 mask |= 1 << micromips_to_32_reg_n_map[EXTRACT_OPERAND (1, MN, *ip)];
3463 }
3464 if (pinfo2 & INSN2_READ_GPR_MP)
3465 mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
3466 if (pinfo2 & INSN2_READ_GPR_MQ)
3467 mask |= 1 << micromips_to_32_reg_q_map[EXTRACT_OPERAND (1, MQ, *ip)];
3468 }
fe35f09f
RS
3469 /* Don't include register 0. */
3470 return mask & ~1;
4c260379
RS
3471}
3472
3473/* Return the mask of core registers that IP writes. */
3474
3475static unsigned int
3476gpr_write_mask (const struct mips_cl_insn *ip)
3477{
3478 unsigned long pinfo, pinfo2;
3479 unsigned int mask;
3480
df58fc94 3481 mask = gpr_mod_mask (ip);
4c260379
RS
3482 pinfo = ip->insn_mo->pinfo;
3483 pinfo2 = ip->insn_mo->pinfo2;
3484 if (mips_opts.mips16)
3485 {
3486 if (pinfo & MIPS16_INSN_WRITE_X)
3487 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
3488 if (pinfo & MIPS16_INSN_WRITE_Y)
3489 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
3490 if (pinfo & MIPS16_INSN_WRITE_Z)
3491 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RZ, *ip)];
3492 if (pinfo & MIPS16_INSN_WRITE_T)
3493 mask |= 1 << TREG;
3494 if (pinfo & MIPS16_INSN_WRITE_SP)
3495 mask |= 1 << SP;
3496 if (pinfo & MIPS16_INSN_WRITE_31)
3497 mask |= 1 << RA;
3498 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
3499 mask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
3500 }
3501 else
3502 {
3503 if (pinfo & INSN_WRITE_GPR_D)
df58fc94 3504 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
4c260379 3505 if (pinfo & INSN_WRITE_GPR_T)
df58fc94 3506 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
2b0c8b40 3507 if (pinfo & INSN_WRITE_GPR_S)
2309ddf2 3508 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
4c260379
RS
3509 if (pinfo & INSN_WRITE_GPR_31)
3510 mask |= 1 << RA;
3511 if (pinfo2 & INSN2_WRITE_GPR_Z)
df58fc94 3512 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
4c260379 3513 }
2b0c8b40
MR
3514 if (mips_opts.micromips)
3515 {
3516 if (pinfo2 & INSN2_WRITE_GPR_MB)
3517 mask |= 1 << micromips_to_32_reg_b_map[EXTRACT_OPERAND (1, MB, *ip)];
e76ff5ab 3518 if (pinfo2 & INSN2_WRITE_GPR_MH)
2b0c8b40 3519 {
e76ff5ab
RS
3520 mask |= 1 << micromips_to_32_reg_h_map1[EXTRACT_OPERAND (1, MH, *ip)];
3521 mask |= 1 << micromips_to_32_reg_h_map2[EXTRACT_OPERAND (1, MH, *ip)];
2b0c8b40
MR
3522 }
3523 if (pinfo2 & INSN2_WRITE_GPR_MJ)
3524 mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
3525 if (pinfo2 & INSN2_WRITE_GPR_MP)
3526 mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
3527 }
fe35f09f
RS
3528 /* Don't include register 0. */
3529 return mask & ~1;
4c260379
RS
3530}
3531
3532/* Return the mask of floating-point registers that IP reads. */
3533
3534static unsigned int
3535fpr_read_mask (const struct mips_cl_insn *ip)
3536{
3537 unsigned long pinfo, pinfo2;
3538 unsigned int mask;
3539
3540 mask = 0;
3541 pinfo = ip->insn_mo->pinfo;
3542 pinfo2 = ip->insn_mo->pinfo2;
2309ddf2 3543 if (!mips_opts.mips16)
df58fc94
RS
3544 {
3545 if (pinfo2 & INSN2_READ_FPR_D)
2309ddf2 3546 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
4c260379 3547 if (pinfo & INSN_READ_FPR_S)
df58fc94 3548 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
4c260379 3549 if (pinfo & INSN_READ_FPR_T)
df58fc94 3550 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
4c260379 3551 if (pinfo & INSN_READ_FPR_R)
df58fc94 3552 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FR, *ip);
4c260379 3553 if (pinfo2 & INSN2_READ_FPR_Z)
df58fc94 3554 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
4c260379
RS
3555 }
3556 /* Conservatively treat all operands to an FP_D instruction are doubles.
3557 (This is overly pessimistic for things like cvt.d.s.) */
3558 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
3559 mask |= mask << 1;
3560 return mask;
3561}
3562
3563/* Return the mask of floating-point registers that IP writes. */
3564
3565static unsigned int
3566fpr_write_mask (const struct mips_cl_insn *ip)
3567{
3568 unsigned long pinfo, pinfo2;
3569 unsigned int mask;
3570
3571 mask = 0;
3572 pinfo = ip->insn_mo->pinfo;
3573 pinfo2 = ip->insn_mo->pinfo2;
2309ddf2 3574 if (!mips_opts.mips16)
4c260379
RS
3575 {
3576 if (pinfo & INSN_WRITE_FPR_D)
df58fc94 3577 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
4c260379 3578 if (pinfo & INSN_WRITE_FPR_S)
df58fc94 3579 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
4c260379 3580 if (pinfo & INSN_WRITE_FPR_T)
df58fc94 3581 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
4c260379 3582 if (pinfo2 & INSN2_WRITE_FPR_Z)
df58fc94 3583 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
4c260379
RS
3584 }
3585 /* Conservatively treat all operands to an FP_D instruction are doubles.
3586 (This is overly pessimistic for things like cvt.s.d.) */
3587 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
3588 mask |= mask << 1;
3589 return mask;
3590}
3591
71400594
RS
3592/* Classify an instruction according to the FIX_VR4120_* enumeration.
3593 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
3594 by VR4120 errata. */
4d7206a2 3595
71400594
RS
3596static unsigned int
3597classify_vr4120_insn (const char *name)
252b5132 3598{
71400594
RS
3599 if (strncmp (name, "macc", 4) == 0)
3600 return FIX_VR4120_MACC;
3601 if (strncmp (name, "dmacc", 5) == 0)
3602 return FIX_VR4120_DMACC;
3603 if (strncmp (name, "mult", 4) == 0)
3604 return FIX_VR4120_MULT;
3605 if (strncmp (name, "dmult", 5) == 0)
3606 return FIX_VR4120_DMULT;
3607 if (strstr (name, "div"))
3608 return FIX_VR4120_DIV;
3609 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
3610 return FIX_VR4120_MTHILO;
3611 return NUM_FIX_VR4120_CLASSES;
3612}
252b5132 3613
ff239038
CM
3614#define INSN_ERET 0x42000018
3615#define INSN_DERET 0x4200001f
3616
71400594
RS
3617/* Return the number of instructions that must separate INSN1 and INSN2,
3618 where INSN1 is the earlier instruction. Return the worst-case value
3619 for any INSN2 if INSN2 is null. */
252b5132 3620
71400594
RS
3621static unsigned int
3622insns_between (const struct mips_cl_insn *insn1,
3623 const struct mips_cl_insn *insn2)
3624{
3625 unsigned long pinfo1, pinfo2;
4c260379 3626 unsigned int mask;
71400594
RS
3627
3628 /* This function needs to know which pinfo flags are set for INSN2
3629 and which registers INSN2 uses. The former is stored in PINFO2 and
4c260379
RS
3630 the latter is tested via INSN2_USES_GPR. If INSN2 is null, PINFO2
3631 will have every flag set and INSN2_USES_GPR will always return true. */
71400594
RS
3632 pinfo1 = insn1->insn_mo->pinfo;
3633 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
252b5132 3634
4c260379
RS
3635#define INSN2_USES_GPR(REG) \
3636 (insn2 == NULL || (gpr_read_mask (insn2) & (1U << (REG))) != 0)
71400594
RS
3637
3638 /* For most targets, write-after-read dependencies on the HI and LO
3639 registers must be separated by at least two instructions. */
3640 if (!hilo_interlocks)
252b5132 3641 {
71400594
RS
3642 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
3643 return 2;
3644 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
3645 return 2;
3646 }
3647
3648 /* If we're working around r7000 errata, there must be two instructions
3649 between an mfhi or mflo and any instruction that uses the result. */
3650 if (mips_7000_hilo_fix
df58fc94 3651 && !mips_opts.micromips
71400594 3652 && MF_HILO_INSN (pinfo1)
df58fc94 3653 && INSN2_USES_GPR (EXTRACT_OPERAND (0, RD, *insn1)))
71400594
RS
3654 return 2;
3655
ff239038
CM
3656 /* If we're working around 24K errata, one instruction is required
3657 if an ERET or DERET is followed by a branch instruction. */
df58fc94 3658 if (mips_fix_24k && !mips_opts.micromips)
ff239038
CM
3659 {
3660 if (insn1->insn_opcode == INSN_ERET
3661 || insn1->insn_opcode == INSN_DERET)
3662 {
3663 if (insn2 == NULL
3664 || insn2->insn_opcode == INSN_ERET
3665 || insn2->insn_opcode == INSN_DERET
11625dd8 3666 || delayed_branch_p (insn2))
ff239038
CM
3667 return 1;
3668 }
3669 }
3670
71400594
RS
3671 /* If working around VR4120 errata, check for combinations that need
3672 a single intervening instruction. */
df58fc94 3673 if (mips_fix_vr4120 && !mips_opts.micromips)
71400594
RS
3674 {
3675 unsigned int class1, class2;
252b5132 3676
71400594
RS
3677 class1 = classify_vr4120_insn (insn1->insn_mo->name);
3678 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
252b5132 3679 {
71400594
RS
3680 if (insn2 == NULL)
3681 return 1;
3682 class2 = classify_vr4120_insn (insn2->insn_mo->name);
3683 if (vr4120_conflicts[class1] & (1 << class2))
3684 return 1;
252b5132 3685 }
71400594
RS
3686 }
3687
df58fc94 3688 if (!HAVE_CODE_COMPRESSION)
71400594
RS
3689 {
3690 /* Check for GPR or coprocessor load delays. All such delays
3691 are on the RT register. */
3692 /* Itbl support may require additional care here. */
3693 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
3694 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
252b5132 3695 {
71400594 3696 know (pinfo1 & INSN_WRITE_GPR_T);
df58fc94 3697 if (INSN2_USES_GPR (EXTRACT_OPERAND (0, RT, *insn1)))
71400594
RS
3698 return 1;
3699 }
3700
3701 /* Check for generic coprocessor hazards.
3702
3703 This case is not handled very well. There is no special
3704 knowledge of CP0 handling, and the coprocessors other than
3705 the floating point unit are not distinguished at all. */
3706 /* Itbl support may require additional care here. FIXME!
3707 Need to modify this to include knowledge about
3708 user specified delays! */
3709 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
3710 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
3711 {
3712 /* Handle cases where INSN1 writes to a known general coprocessor
3713 register. There must be a one instruction delay before INSN2
3714 if INSN2 reads that register, otherwise no delay is needed. */
4c260379
RS
3715 mask = fpr_write_mask (insn1);
3716 if (mask != 0)
252b5132 3717 {
4c260379 3718 if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
71400594 3719 return 1;
252b5132
RH
3720 }
3721 else
3722 {
71400594
RS
3723 /* Read-after-write dependencies on the control registers
3724 require a two-instruction gap. */
3725 if ((pinfo1 & INSN_WRITE_COND_CODE)
3726 && (pinfo2 & INSN_READ_COND_CODE))
3727 return 2;
3728
3729 /* We don't know exactly what INSN1 does. If INSN2 is
3730 also a coprocessor instruction, assume there must be
3731 a one instruction gap. */
3732 if (pinfo2 & INSN_COP)
3733 return 1;
252b5132
RH
3734 }
3735 }
6b76fefe 3736
71400594
RS
3737 /* Check for read-after-write dependencies on the coprocessor
3738 control registers in cases where INSN1 does not need a general
3739 coprocessor delay. This means that INSN1 is a floating point
3740 comparison instruction. */
3741 /* Itbl support may require additional care here. */
3742 else if (!cop_interlocks
3743 && (pinfo1 & INSN_WRITE_COND_CODE)
3744 && (pinfo2 & INSN_READ_COND_CODE))
3745 return 1;
3746 }
6b76fefe 3747
4c260379 3748#undef INSN2_USES_GPR
6b76fefe 3749
71400594
RS
3750 return 0;
3751}
6b76fefe 3752
7d8e00cf
RS
3753/* Return the number of nops that would be needed to work around the
3754 VR4130 mflo/mfhi errata if instruction INSN immediately followed
932d1a1b
RS
3755 the MAX_VR4130_NOPS instructions described by HIST. Ignore hazards
3756 that are contained within the first IGNORE instructions of HIST. */
7d8e00cf
RS
3757
3758static int
932d1a1b 3759nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
7d8e00cf
RS
3760 const struct mips_cl_insn *insn)
3761{
4c260379
RS
3762 int i, j;
3763 unsigned int mask;
7d8e00cf
RS
3764
3765 /* Check if the instruction writes to HI or LO. MTHI and MTLO
3766 are not affected by the errata. */
3767 if (insn != 0
3768 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
3769 || strcmp (insn->insn_mo->name, "mtlo") == 0
3770 || strcmp (insn->insn_mo->name, "mthi") == 0))
3771 return 0;
3772
3773 /* Search for the first MFLO or MFHI. */
3774 for (i = 0; i < MAX_VR4130_NOPS; i++)
91d6fa6a 3775 if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
7d8e00cf
RS
3776 {
3777 /* Extract the destination register. */
4c260379 3778 mask = gpr_write_mask (&hist[i]);
7d8e00cf
RS
3779
3780 /* No nops are needed if INSN reads that register. */
4c260379 3781 if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
7d8e00cf
RS
3782 return 0;
3783
3784 /* ...or if any of the intervening instructions do. */
3785 for (j = 0; j < i; j++)
4c260379 3786 if (gpr_read_mask (&hist[j]) & mask)
7d8e00cf
RS
3787 return 0;
3788
932d1a1b
RS
3789 if (i >= ignore)
3790 return MAX_VR4130_NOPS - i;
7d8e00cf
RS
3791 }
3792 return 0;
3793}
3794
15be625d
CM
3795#define BASE_REG_EQ(INSN1, INSN2) \
3796 ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
3797 == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
3798
3799/* Return the minimum alignment for this store instruction. */
3800
3801static int
3802fix_24k_align_to (const struct mips_opcode *mo)
3803{
3804 if (strcmp (mo->name, "sh") == 0)
3805 return 2;
3806
3807 if (strcmp (mo->name, "swc1") == 0
3808 || strcmp (mo->name, "swc2") == 0
3809 || strcmp (mo->name, "sw") == 0
3810 || strcmp (mo->name, "sc") == 0
3811 || strcmp (mo->name, "s.s") == 0)
3812 return 4;
3813
3814 if (strcmp (mo->name, "sdc1") == 0
3815 || strcmp (mo->name, "sdc2") == 0
3816 || strcmp (mo->name, "s.d") == 0)
3817 return 8;
3818
3819 /* sb, swl, swr */
3820 return 1;
3821}
3822
3823struct fix_24k_store_info
3824 {
3825 /* Immediate offset, if any, for this store instruction. */
3826 short off;
3827 /* Alignment required by this store instruction. */
3828 int align_to;
3829 /* True for register offsets. */
3830 int register_offset;
3831 };
3832
3833/* Comparison function used by qsort. */
3834
3835static int
3836fix_24k_sort (const void *a, const void *b)
3837{
3838 const struct fix_24k_store_info *pos1 = a;
3839 const struct fix_24k_store_info *pos2 = b;
3840
3841 return (pos1->off - pos2->off);
3842}
3843
3844/* INSN is a store instruction. Try to record the store information
3845 in STINFO. Return false if the information isn't known. */
3846
3847static bfd_boolean
3848fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
ab9794cf 3849 const struct mips_cl_insn *insn)
15be625d
CM
3850{
3851 /* The instruction must have a known offset. */
3852 if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
3853 return FALSE;
3854
3855 stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
3856 stinfo->align_to = fix_24k_align_to (insn->insn_mo);
3857 return TRUE;
3858}
3859
932d1a1b
RS
3860/* Return the number of nops that would be needed to work around the 24k
3861 "lost data on stores during refill" errata if instruction INSN
3862 immediately followed the 2 instructions described by HIST.
3863 Ignore hazards that are contained within the first IGNORE
3864 instructions of HIST.
3865
3866 Problem: The FSB (fetch store buffer) acts as an intermediate buffer
3867 for the data cache refills and store data. The following describes
3868 the scenario where the store data could be lost.
3869
3870 * A data cache miss, due to either a load or a store, causing fill
3871 data to be supplied by the memory subsystem
3872 * The first three doublewords of fill data are returned and written
3873 into the cache
3874 * A sequence of four stores occurs in consecutive cycles around the
3875 final doubleword of the fill:
3876 * Store A
3877 * Store B
3878 * Store C
3879 * Zero, One or more instructions
3880 * Store D
3881
3882 The four stores A-D must be to different doublewords of the line that
3883 is being filled. The fourth instruction in the sequence above permits
3884 the fill of the final doubleword to be transferred from the FSB into
3885 the cache. In the sequence above, the stores may be either integer
3886 (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
3887 swxc1, sdxc1, suxc1) stores, as long as the four stores are to
3888 different doublewords on the line. If the floating point unit is
3889 running in 1:2 mode, it is not possible to create the sequence above
3890 using only floating point store instructions.
15be625d
CM
3891
3892 In this case, the cache line being filled is incorrectly marked
3893 invalid, thereby losing the data from any store to the line that
3894 occurs between the original miss and the completion of the five
3895 cycle sequence shown above.
3896
932d1a1b 3897 The workarounds are:
15be625d 3898
932d1a1b
RS
3899 * Run the data cache in write-through mode.
3900 * Insert a non-store instruction between
3901 Store A and Store B or Store B and Store C. */
15be625d
CM
3902
3903static int
932d1a1b 3904nops_for_24k (int ignore, const struct mips_cl_insn *hist,
15be625d
CM
3905 const struct mips_cl_insn *insn)
3906{
3907 struct fix_24k_store_info pos[3];
3908 int align, i, base_offset;
3909
932d1a1b
RS
3910 if (ignore >= 2)
3911 return 0;
3912
ab9794cf
RS
3913 /* If the previous instruction wasn't a store, there's nothing to
3914 worry about. */
15be625d
CM
3915 if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
3916 return 0;
3917
ab9794cf
RS
3918 /* If the instructions after the previous one are unknown, we have
3919 to assume the worst. */
3920 if (!insn)
15be625d
CM
3921 return 1;
3922
ab9794cf
RS
3923 /* Check whether we are dealing with three consecutive stores. */
3924 if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
3925 || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
15be625d
CM
3926 return 0;
3927
3928 /* If we don't know the relationship between the store addresses,
3929 assume the worst. */
ab9794cf 3930 if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
15be625d
CM
3931 || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
3932 return 1;
3933
3934 if (!fix_24k_record_store_info (&pos[0], insn)
3935 || !fix_24k_record_store_info (&pos[1], &hist[0])
3936 || !fix_24k_record_store_info (&pos[2], &hist[1]))
3937 return 1;
3938
3939 qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
3940
3941 /* Pick a value of ALIGN and X such that all offsets are adjusted by
3942 X bytes and such that the base register + X is known to be aligned
3943 to align bytes. */
3944
3945 if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
3946 align = 8;
3947 else
3948 {
3949 align = pos[0].align_to;
3950 base_offset = pos[0].off;
3951 for (i = 1; i < 3; i++)
3952 if (align < pos[i].align_to)
3953 {
3954 align = pos[i].align_to;
3955 base_offset = pos[i].off;
3956 }
3957 for (i = 0; i < 3; i++)
3958 pos[i].off -= base_offset;
3959 }
3960
3961 pos[0].off &= ~align + 1;
3962 pos[1].off &= ~align + 1;
3963 pos[2].off &= ~align + 1;
3964
3965 /* If any two stores write to the same chunk, they also write to the
3966 same doubleword. The offsets are still sorted at this point. */
3967 if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
3968 return 0;
3969
3970 /* A range of at least 9 bytes is needed for the stores to be in
3971 non-overlapping doublewords. */
3972 if (pos[2].off - pos[0].off <= 8)
3973 return 0;
3974
3975 if (pos[2].off - pos[1].off >= 24
3976 || pos[1].off - pos[0].off >= 24
3977 || pos[2].off - pos[0].off >= 32)
3978 return 0;
3979
3980 return 1;
3981}
3982
71400594 3983/* Return the number of nops that would be needed if instruction INSN
91d6fa6a 3984 immediately followed the MAX_NOPS instructions given by HIST,
932d1a1b
RS
3985 where HIST[0] is the most recent instruction. Ignore hazards
3986 between INSN and the first IGNORE instructions in HIST.
3987
3988 If INSN is null, return the worse-case number of nops for any
3989 instruction. */
bdaaa2e1 3990
71400594 3991static int
932d1a1b 3992nops_for_insn (int ignore, const struct mips_cl_insn *hist,
71400594
RS
3993 const struct mips_cl_insn *insn)
3994{
3995 int i, nops, tmp_nops;
bdaaa2e1 3996
71400594 3997 nops = 0;
932d1a1b 3998 for (i = ignore; i < MAX_DELAY_NOPS; i++)
65b02341 3999 {
91d6fa6a 4000 tmp_nops = insns_between (hist + i, insn) - i;
65b02341
RS
4001 if (tmp_nops > nops)
4002 nops = tmp_nops;
4003 }
7d8e00cf 4004
df58fc94 4005 if (mips_fix_vr4130 && !mips_opts.micromips)
7d8e00cf 4006 {
932d1a1b 4007 tmp_nops = nops_for_vr4130 (ignore, hist, insn);
7d8e00cf
RS
4008 if (tmp_nops > nops)
4009 nops = tmp_nops;
4010 }
4011
df58fc94 4012 if (mips_fix_24k && !mips_opts.micromips)
15be625d 4013 {
932d1a1b 4014 tmp_nops = nops_for_24k (ignore, hist, insn);
15be625d
CM
4015 if (tmp_nops > nops)
4016 nops = tmp_nops;
4017 }
4018
71400594
RS
4019 return nops;
4020}
252b5132 4021
71400594 4022/* The variable arguments provide NUM_INSNS extra instructions that
91d6fa6a 4023 might be added to HIST. Return the largest number of nops that
932d1a1b
RS
4024 would be needed after the extended sequence, ignoring hazards
4025 in the first IGNORE instructions. */
252b5132 4026
71400594 4027static int
932d1a1b
RS
4028nops_for_sequence (int num_insns, int ignore,
4029 const struct mips_cl_insn *hist, ...)
71400594
RS
4030{
4031 va_list args;
4032 struct mips_cl_insn buffer[MAX_NOPS];
4033 struct mips_cl_insn *cursor;
4034 int nops;
4035
91d6fa6a 4036 va_start (args, hist);
71400594 4037 cursor = buffer + num_insns;
91d6fa6a 4038 memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
71400594
RS
4039 while (cursor > buffer)
4040 *--cursor = *va_arg (args, const struct mips_cl_insn *);
4041
932d1a1b 4042 nops = nops_for_insn (ignore, buffer, NULL);
71400594
RS
4043 va_end (args);
4044 return nops;
4045}
252b5132 4046
71400594
RS
4047/* Like nops_for_insn, but if INSN is a branch, take into account the
4048 worst-case delay for the branch target. */
252b5132 4049
71400594 4050static int
932d1a1b 4051nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
71400594
RS
4052 const struct mips_cl_insn *insn)
4053{
4054 int nops, tmp_nops;
60b63b72 4055
932d1a1b 4056 nops = nops_for_insn (ignore, hist, insn);
11625dd8 4057 if (delayed_branch_p (insn))
71400594 4058 {
932d1a1b 4059 tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
14fe068b 4060 hist, insn, get_delay_slot_nop (insn));
71400594
RS
4061 if (tmp_nops > nops)
4062 nops = tmp_nops;
4063 }
11625dd8 4064 else if (compact_branch_p (insn))
71400594 4065 {
932d1a1b 4066 tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
71400594
RS
4067 if (tmp_nops > nops)
4068 nops = tmp_nops;
4069 }
4070 return nops;
4071}
4072
c67a084a
NC
4073/* Fix NOP issue: Replace nops by "or at,at,zero". */
4074
4075static void
4076fix_loongson2f_nop (struct mips_cl_insn * ip)
4077{
df58fc94 4078 gas_assert (!HAVE_CODE_COMPRESSION);
c67a084a
NC
4079 if (strcmp (ip->insn_mo->name, "nop") == 0)
4080 ip->insn_opcode = LOONGSON2F_NOP_INSN;
4081}
4082
4083/* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
4084 jr target pc &= 'hffff_ffff_cfff_ffff. */
4085
4086static void
4087fix_loongson2f_jump (struct mips_cl_insn * ip)
4088{
df58fc94 4089 gas_assert (!HAVE_CODE_COMPRESSION);
c67a084a
NC
4090 if (strcmp (ip->insn_mo->name, "j") == 0
4091 || strcmp (ip->insn_mo->name, "jr") == 0
4092 || strcmp (ip->insn_mo->name, "jalr") == 0)
4093 {
4094 int sreg;
4095 expressionS ep;
4096
4097 if (! mips_opts.at)
4098 return;
4099
df58fc94 4100 sreg = EXTRACT_OPERAND (0, RS, *ip);
c67a084a
NC
4101 if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
4102 return;
4103
4104 ep.X_op = O_constant;
4105 ep.X_add_number = 0xcfff0000;
4106 macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
4107 ep.X_add_number = 0xffff;
4108 macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
4109 macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
4110 }
4111}
4112
4113static void
4114fix_loongson2f (struct mips_cl_insn * ip)
4115{
4116 if (mips_fix_loongson2f_nop)
4117 fix_loongson2f_nop (ip);
4118
4119 if (mips_fix_loongson2f_jump)
4120 fix_loongson2f_jump (ip);
4121}
4122
a4e06468
RS
4123/* IP is a branch that has a delay slot, and we need to fill it
4124 automatically. Return true if we can do that by swapping IP
e407c74b
NC
4125 with the previous instruction.
4126 ADDRESS_EXPR is an operand of the instruction to be used with
4127 RELOC_TYPE. */
a4e06468
RS
4128
4129static bfd_boolean
e407c74b
NC
4130can_swap_branch_p (struct mips_cl_insn *ip, expressionS *address_expr,
4131 bfd_reloc_code_real_type *reloc_type)
a4e06468 4132{
2b0c8b40 4133 unsigned long pinfo, pinfo2, prev_pinfo, prev_pinfo2;
a4e06468
RS
4134 unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
4135
4136 /* -O2 and above is required for this optimization. */
4137 if (mips_optimize < 2)
4138 return FALSE;
4139
4140 /* If we have seen .set volatile or .set nomove, don't optimize. */
4141 if (mips_opts.nomove)
4142 return FALSE;
4143
4144 /* We can't swap if the previous instruction's position is fixed. */
4145 if (history[0].fixed_p)
4146 return FALSE;
4147
4148 /* If the previous previous insn was in a .set noreorder, we can't
4149 swap. Actually, the MIPS assembler will swap in this situation.
4150 However, gcc configured -with-gnu-as will generate code like
4151
4152 .set noreorder
4153 lw $4,XXX
4154 .set reorder
4155 INSN
4156 bne $4,$0,foo
4157
4158 in which we can not swap the bne and INSN. If gcc is not configured
4159 -with-gnu-as, it does not output the .set pseudo-ops. */
4160 if (history[1].noreorder_p)
4161 return FALSE;
4162
87333bb7
MR
4163 /* If the previous instruction had a fixup in mips16 mode, we can not swap.
4164 This means that the previous instruction was a 4-byte one anyhow. */
a4e06468
RS
4165 if (mips_opts.mips16 && history[0].fixp[0])
4166 return FALSE;
4167
4168 /* If the branch is itself the target of a branch, we can not swap.
4169 We cheat on this; all we check for is whether there is a label on
4170 this instruction. If there are any branches to anything other than
4171 a label, users must use .set noreorder. */
4172 if (seg_info (now_seg)->label_list)
4173 return FALSE;
4174
4175 /* If the previous instruction is in a variant frag other than this
2309ddf2 4176 branch's one, we cannot do the swap. This does not apply to
9301f9c3
MR
4177 MIPS16 code, which uses variant frags for different purposes. */
4178 if (!mips_opts.mips16
a4e06468
RS
4179 && history[0].frag
4180 && history[0].frag->fr_type == rs_machine_dependent)
4181 return FALSE;
4182
bcd530a7
RS
4183 /* We do not swap with instructions that cannot architecturally
4184 be placed in a branch delay slot, such as SYNC or ERET. We
4185 also refrain from swapping with a trap instruction, since it
4186 complicates trap handlers to have the trap instruction be in
4187 a delay slot. */
a4e06468 4188 prev_pinfo = history[0].insn_mo->pinfo;
bcd530a7 4189 if (prev_pinfo & INSN_NO_DELAY_SLOT)
a4e06468
RS
4190 return FALSE;
4191
4192 /* Check for conflicts between the branch and the instructions
4193 before the candidate delay slot. */
4194 if (nops_for_insn (0, history + 1, ip) > 0)
4195 return FALSE;
4196
4197 /* Check for conflicts between the swapped sequence and the
4198 target of the branch. */
4199 if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
4200 return FALSE;
4201
4202 /* If the branch reads a register that the previous
4203 instruction sets, we can not swap. */
4204 gpr_read = gpr_read_mask (ip);
4205 prev_gpr_write = gpr_write_mask (&history[0]);
4206 if (gpr_read & prev_gpr_write)
4207 return FALSE;
4208
4209 /* If the branch writes a register that the previous
4210 instruction sets, we can not swap. */
4211 gpr_write = gpr_write_mask (ip);
4212 if (gpr_write & prev_gpr_write)
4213 return FALSE;
4214
4215 /* If the branch writes a register that the previous
4216 instruction reads, we can not swap. */
4217 prev_gpr_read = gpr_read_mask (&history[0]);
4218 if (gpr_write & prev_gpr_read)
4219 return FALSE;
4220
4221 /* If one instruction sets a condition code and the
4222 other one uses a condition code, we can not swap. */
4223 pinfo = ip->insn_mo->pinfo;
4224 if ((pinfo & INSN_READ_COND_CODE)
4225 && (prev_pinfo & INSN_WRITE_COND_CODE))
4226 return FALSE;
4227 if ((pinfo & INSN_WRITE_COND_CODE)
4228 && (prev_pinfo & INSN_READ_COND_CODE))
4229 return FALSE;
4230
4231 /* If the previous instruction uses the PC, we can not swap. */
2b0c8b40 4232 prev_pinfo2 = history[0].insn_mo->pinfo2;
a4e06468
RS
4233 if (mips_opts.mips16 && (prev_pinfo & MIPS16_INSN_READ_PC))
4234 return FALSE;
2b0c8b40
MR
4235 if (mips_opts.micromips && (prev_pinfo2 & INSN2_READ_PC))
4236 return FALSE;
a4e06468 4237
df58fc94
RS
4238 /* If the previous instruction has an incorrect size for a fixed
4239 branch delay slot in microMIPS mode, we cannot swap. */
2309ddf2
MR
4240 pinfo2 = ip->insn_mo->pinfo2;
4241 if (mips_opts.micromips
4242 && (pinfo2 & INSN2_BRANCH_DELAY_16BIT)
4243 && insn_length (history) != 2)
4244 return FALSE;
4245 if (mips_opts.micromips
4246 && (pinfo2 & INSN2_BRANCH_DELAY_32BIT)
4247 && insn_length (history) != 4)
4248 return FALSE;
4249
e407c74b
NC
4250 /* On R5900 short loops need to be fixed by inserting a nop in
4251 the branch delay slots.
4252 A short loop can be terminated too early. */
4253 if (mips_opts.arch == CPU_R5900
4254 /* Check if instruction has a parameter, ignore "j $31". */
4255 && (address_expr != NULL)
4256 /* Parameter must be 16 bit. */
4257 && (*reloc_type == BFD_RELOC_16_PCREL_S2)
4258 /* Branch to same segment. */
4259 && (S_GET_SEGMENT(address_expr->X_add_symbol) == now_seg)
4260 /* Branch to same code fragment. */
4261 && (symbol_get_frag(address_expr->X_add_symbol) == frag_now)
4262 /* Can only calculate branch offset if value is known. */
4263 && symbol_constant_p(address_expr->X_add_symbol)
4264 /* Check if branch is really conditional. */
4265 && !((ip->insn_opcode & 0xffff0000) == 0x10000000 /* beq $0,$0 */
4266 || (ip->insn_opcode & 0xffff0000) == 0x04010000 /* bgez $0 */
4267 || (ip->insn_opcode & 0xffff0000) == 0x04110000)) /* bgezal $0 */
4268 {
4269 int distance;
4270 /* Check if loop is shorter than 6 instructions including
4271 branch and delay slot. */
4272 distance = frag_now_fix() - S_GET_VALUE(address_expr->X_add_symbol);
4273 if (distance <= 20)
4274 {
4275 int i;
4276 int rv;
4277
4278 rv = FALSE;
4279 /* When the loop includes branches or jumps,
4280 it is not a short loop. */
4281 for (i = 0; i < (distance / 4); i++)
4282 {
4283 if ((history[i].cleared_p)
4284 || delayed_branch_p(&history[i]))
4285 {
4286 rv = TRUE;
4287 break;
4288 }
4289 }
4290 if (rv == FALSE)
4291 {
4292 /* Insert nop after branch to fix short loop. */
4293 return FALSE;
4294 }
4295 }
4296 }
4297
a4e06468
RS
4298 return TRUE;
4299}
4300
e407c74b
NC
4301/* Decide how we should add IP to the instruction stream.
4302 ADDRESS_EXPR is an operand of the instruction to be used with
4303 RELOC_TYPE. */
a4e06468
RS
4304
4305static enum append_method
e407c74b
NC
4306get_append_method (struct mips_cl_insn *ip, expressionS *address_expr,
4307 bfd_reloc_code_real_type *reloc_type)
a4e06468
RS
4308{
4309 unsigned long pinfo;
4310
4311 /* The relaxed version of a macro sequence must be inherently
4312 hazard-free. */
4313 if (mips_relax.sequence == 2)
4314 return APPEND_ADD;
4315
4316 /* We must not dabble with instructions in a ".set norerorder" block. */
4317 if (mips_opts.noreorder)
4318 return APPEND_ADD;
4319
4320 /* Otherwise, it's our responsibility to fill branch delay slots. */
11625dd8 4321 if (delayed_branch_p (ip))
a4e06468 4322 {
e407c74b
NC
4323 if (!branch_likely_p (ip)
4324 && can_swap_branch_p (ip, address_expr, reloc_type))
a4e06468
RS
4325 return APPEND_SWAP;
4326
11625dd8 4327 pinfo = ip->insn_mo->pinfo;
a4e06468
RS
4328 if (mips_opts.mips16
4329 && ISA_SUPPORTS_MIPS16E
a4e06468
RS
4330 && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31)))
4331 return APPEND_ADD_COMPACT;
4332
4333 return APPEND_ADD_WITH_NOP;
4334 }
4335
a4e06468
RS
4336 return APPEND_ADD;
4337}
4338
ceb94aa5
RS
4339/* IP is a MIPS16 instruction whose opcode we have just changed.
4340 Point IP->insn_mo to the new opcode's definition. */
4341
4342static void
4343find_altered_mips16_opcode (struct mips_cl_insn *ip)
4344{
4345 const struct mips_opcode *mo, *end;
4346
4347 end = &mips16_opcodes[bfd_mips16_num_opcodes];
4348 for (mo = ip->insn_mo; mo < end; mo++)
4349 if ((ip->insn_opcode & mo->mask) == mo->match)
4350 {
4351 ip->insn_mo = mo;
4352 return;
4353 }
4354 abort ();
4355}
4356
df58fc94
RS
4357/* For microMIPS macros, we need to generate a local number label
4358 as the target of branches. */
4359#define MICROMIPS_LABEL_CHAR '\037'
4360static unsigned long micromips_target_label;
4361static char micromips_target_name[32];
4362
4363static char *
4364micromips_label_name (void)
4365{
4366 char *p = micromips_target_name;
4367 char symbol_name_temporary[24];
4368 unsigned long l;
4369 int i;
4370
4371 if (*p)
4372 return p;
4373
4374 i = 0;
4375 l = micromips_target_label;
4376#ifdef LOCAL_LABEL_PREFIX
4377 *p++ = LOCAL_LABEL_PREFIX;
4378#endif
4379 *p++ = 'L';
4380 *p++ = MICROMIPS_LABEL_CHAR;
4381 do
4382 {
4383 symbol_name_temporary[i++] = l % 10 + '0';
4384 l /= 10;
4385 }
4386 while (l != 0);
4387 while (i > 0)
4388 *p++ = symbol_name_temporary[--i];
4389 *p = '\0';
4390
4391 return micromips_target_name;
4392}
4393
4394static void
4395micromips_label_expr (expressionS *label_expr)
4396{
4397 label_expr->X_op = O_symbol;
4398 label_expr->X_add_symbol = symbol_find_or_make (micromips_label_name ());
4399 label_expr->X_add_number = 0;
4400}
4401
4402static void
4403micromips_label_inc (void)
4404{
4405 micromips_target_label++;
4406 *micromips_target_name = '\0';
4407}
4408
4409static void
4410micromips_add_label (void)
4411{
4412 symbolS *s;
4413
4414 s = colon (micromips_label_name ());
4415 micromips_label_inc ();
f3ded42a 4416 S_SET_OTHER (s, ELF_ST_SET_MICROMIPS (S_GET_OTHER (s)));
df58fc94
RS
4417}
4418
4419/* If assembling microMIPS code, then return the microMIPS reloc
4420 corresponding to the requested one if any. Otherwise return
4421 the reloc unchanged. */
4422
4423static bfd_reloc_code_real_type
4424micromips_map_reloc (bfd_reloc_code_real_type reloc)
4425{
4426 static const bfd_reloc_code_real_type relocs[][2] =
4427 {
4428 /* Keep sorted incrementally by the left-hand key. */
4429 { BFD_RELOC_16_PCREL_S2, BFD_RELOC_MICROMIPS_16_PCREL_S1 },
4430 { BFD_RELOC_GPREL16, BFD_RELOC_MICROMIPS_GPREL16 },
4431 { BFD_RELOC_MIPS_JMP, BFD_RELOC_MICROMIPS_JMP },
4432 { BFD_RELOC_HI16, BFD_RELOC_MICROMIPS_HI16 },
4433 { BFD_RELOC_HI16_S, BFD_RELOC_MICROMIPS_HI16_S },
4434 { BFD_RELOC_LO16, BFD_RELOC_MICROMIPS_LO16 },
4435 { BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MICROMIPS_LITERAL },
4436 { BFD_RELOC_MIPS_GOT16, BFD_RELOC_MICROMIPS_GOT16 },
4437 { BFD_RELOC_MIPS_CALL16, BFD_RELOC_MICROMIPS_CALL16 },
4438 { BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MICROMIPS_GOT_HI16 },
4439 { BFD_RELOC_MIPS_GOT_LO16, BFD_RELOC_MICROMIPS_GOT_LO16 },
4440 { BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MICROMIPS_CALL_HI16 },
4441 { BFD_RELOC_MIPS_CALL_LO16, BFD_RELOC_MICROMIPS_CALL_LO16 },
4442 { BFD_RELOC_MIPS_SUB, BFD_RELOC_MICROMIPS_SUB },
4443 { BFD_RELOC_MIPS_GOT_PAGE, BFD_RELOC_MICROMIPS_GOT_PAGE },
4444 { BFD_RELOC_MIPS_GOT_OFST, BFD_RELOC_MICROMIPS_GOT_OFST },
4445 { BFD_RELOC_MIPS_GOT_DISP, BFD_RELOC_MICROMIPS_GOT_DISP },
4446 { BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MICROMIPS_HIGHEST },
4447 { BFD_RELOC_MIPS_HIGHER, BFD_RELOC_MICROMIPS_HIGHER },
4448 { BFD_RELOC_MIPS_SCN_DISP, BFD_RELOC_MICROMIPS_SCN_DISP },
4449 { BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MICROMIPS_TLS_GD },
4450 { BFD_RELOC_MIPS_TLS_LDM, BFD_RELOC_MICROMIPS_TLS_LDM },
4451 { BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 },
4452 { BFD_RELOC_MIPS_TLS_DTPREL_LO16, BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 },
4453 { BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MICROMIPS_TLS_GOTTPREL },
4454 { BFD_RELOC_MIPS_TLS_TPREL_HI16, BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 },
4455 { BFD_RELOC_MIPS_TLS_TPREL_LO16, BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 }
4456 };
4457 bfd_reloc_code_real_type r;
4458 size_t i;
4459
4460 if (!mips_opts.micromips)
4461 return reloc;
4462 for (i = 0; i < ARRAY_SIZE (relocs); i++)
4463 {
4464 r = relocs[i][0];
4465 if (r > reloc)
4466 return reloc;
4467 if (r == reloc)
4468 return relocs[i][1];
4469 }
4470 return reloc;
4471}
4472
b886a2ab
RS
4473/* Try to resolve relocation RELOC against constant OPERAND at assembly time.
4474 Return true on success, storing the resolved value in RESULT. */
4475
4476static bfd_boolean
4477calculate_reloc (bfd_reloc_code_real_type reloc, offsetT operand,
4478 offsetT *result)
4479{
4480 switch (reloc)
4481 {
4482 case BFD_RELOC_MIPS_HIGHEST:
4483 case BFD_RELOC_MICROMIPS_HIGHEST:
4484 *result = ((operand + 0x800080008000ull) >> 48) & 0xffff;
4485 return TRUE;
4486
4487 case BFD_RELOC_MIPS_HIGHER:
4488 case BFD_RELOC_MICROMIPS_HIGHER:
4489 *result = ((operand + 0x80008000ull) >> 32) & 0xffff;
4490 return TRUE;
4491
4492 case BFD_RELOC_HI16_S:
4493 case BFD_RELOC_MICROMIPS_HI16_S:
4494 case BFD_RELOC_MIPS16_HI16_S:
4495 *result = ((operand + 0x8000) >> 16) & 0xffff;
4496 return TRUE;
4497
4498 case BFD_RELOC_HI16:
4499 case BFD_RELOC_MICROMIPS_HI16:
4500 case BFD_RELOC_MIPS16_HI16:
4501 *result = (operand >> 16) & 0xffff;
4502 return TRUE;
4503
4504 case BFD_RELOC_LO16:
4505 case BFD_RELOC_MICROMIPS_LO16:
4506 case BFD_RELOC_MIPS16_LO16:
4507 *result = operand & 0xffff;
4508 return TRUE;
4509
4510 case BFD_RELOC_UNUSED:
4511 *result = operand;
4512 return TRUE;
4513
4514 default:
4515 return FALSE;
4516 }
4517}
4518
71400594
RS
4519/* Output an instruction. IP is the instruction information.
4520 ADDRESS_EXPR is an operand of the instruction to be used with
df58fc94
RS
4521 RELOC_TYPE. EXPANSIONP is true if the instruction is part of
4522 a macro expansion. */
71400594
RS
4523
4524static void
4525append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
df58fc94 4526 bfd_reloc_code_real_type *reloc_type, bfd_boolean expansionp)
71400594 4527{
14fe068b 4528 unsigned long prev_pinfo2, pinfo;
71400594 4529 bfd_boolean relaxed_branch = FALSE;
a4e06468 4530 enum append_method method;
2309ddf2 4531 bfd_boolean relax32;
2b0c8b40 4532 int branch_disp;
71400594 4533
2309ddf2 4534 if (mips_fix_loongson2f && !HAVE_CODE_COMPRESSION)
c67a084a
NC
4535 fix_loongson2f (ip);
4536
738f4d98 4537 file_ase_mips16 |= mips_opts.mips16;
df58fc94 4538 file_ase_micromips |= mips_opts.micromips;
738f4d98 4539
df58fc94 4540 prev_pinfo2 = history[0].insn_mo->pinfo2;
71400594 4541 pinfo = ip->insn_mo->pinfo;
df58fc94
RS
4542
4543 if (mips_opts.micromips
4544 && !expansionp
4545 && (((prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
4546 && micromips_insn_length (ip->insn_mo) != 2)
4547 || ((prev_pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
4548 && micromips_insn_length (ip->insn_mo) != 4)))
4549 as_warn (_("Wrong size instruction in a %u-bit branch delay slot"),
4550 (prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0 ? 16 : 32);
71400594 4551
15be625d
CM
4552 if (address_expr == NULL)
4553 ip->complete_p = 1;
b886a2ab
RS
4554 else if (reloc_type[0] <= BFD_RELOC_UNUSED
4555 && reloc_type[1] == BFD_RELOC_UNUSED
4556 && reloc_type[2] == BFD_RELOC_UNUSED
15be625d
CM
4557 && address_expr->X_op == O_constant)
4558 {
15be625d
CM
4559 switch (*reloc_type)
4560 {
15be625d 4561 case BFD_RELOC_MIPS_JMP:
df58fc94
RS
4562 {
4563 int shift;
4564
4565 shift = mips_opts.micromips ? 1 : 2;
4566 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
4567 as_bad (_("jump to misaligned address (0x%lx)"),
4568 (unsigned long) address_expr->X_add_number);
4569 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
4570 & 0x3ffffff);
335574df 4571 ip->complete_p = 1;
df58fc94 4572 }
15be625d
CM
4573 break;
4574
4575 case BFD_RELOC_MIPS16_JMP:
4576 if ((address_expr->X_add_number & 3) != 0)
4577 as_bad (_("jump to misaligned address (0x%lx)"),
4578 (unsigned long) address_expr->X_add_number);
4579 ip->insn_opcode |=
4580 (((address_expr->X_add_number & 0x7c0000) << 3)
4581 | ((address_expr->X_add_number & 0xf800000) >> 7)
4582 | ((address_expr->X_add_number & 0x3fffc) >> 2));
335574df 4583 ip->complete_p = 1;
15be625d
CM
4584 break;
4585
4586 case BFD_RELOC_16_PCREL_S2:
df58fc94
RS
4587 {
4588 int shift;
4589
4590 shift = mips_opts.micromips ? 1 : 2;
4591 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
4592 as_bad (_("branch to misaligned address (0x%lx)"),
4593 (unsigned long) address_expr->X_add_number);
4594 if (!mips_relax_branch)
4595 {
4596 if ((address_expr->X_add_number + (1 << (shift + 15)))
4597 & ~((1 << (shift + 16)) - 1))
4598 as_bad (_("branch address range overflow (0x%lx)"),
4599 (unsigned long) address_expr->X_add_number);
4600 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
4601 & 0xffff);
4602 }
df58fc94 4603 }
15be625d
CM
4604 break;
4605
4606 default:
b886a2ab
RS
4607 {
4608 offsetT value;
4609
4610 if (calculate_reloc (*reloc_type, address_expr->X_add_number,
4611 &value))
4612 {
4613 ip->insn_opcode |= value & 0xffff;
4614 ip->complete_p = 1;
4615 }
4616 }
4617 break;
4618 }
15be625d
CM
4619 }
4620
71400594
RS
4621 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
4622 {
4623 /* There are a lot of optimizations we could do that we don't.
4624 In particular, we do not, in general, reorder instructions.
4625 If you use gcc with optimization, it will reorder
4626 instructions and generally do much more optimization then we
4627 do here; repeating all that work in the assembler would only
4628 benefit hand written assembly code, and does not seem worth
4629 it. */
4630 int nops = (mips_optimize == 0
932d1a1b
RS
4631 ? nops_for_insn (0, history, NULL)
4632 : nops_for_insn_or_target (0, history, ip));
71400594 4633 if (nops > 0)
252b5132
RH
4634 {
4635 fragS *old_frag;
4636 unsigned long old_frag_offset;
4637 int i;
252b5132
RH
4638
4639 old_frag = frag_now;
4640 old_frag_offset = frag_now_fix ();
4641
4642 for (i = 0; i < nops; i++)
14fe068b
RS
4643 add_fixed_insn (NOP_INSN);
4644 insert_into_history (0, nops, NOP_INSN);
252b5132
RH
4645
4646 if (listing)
4647 {
4648 listing_prev_line ();
4649 /* We may be at the start of a variant frag. In case we
4650 are, make sure there is enough space for the frag
4651 after the frags created by listing_prev_line. The
4652 argument to frag_grow here must be at least as large
4653 as the argument to all other calls to frag_grow in
4654 this file. We don't have to worry about being in the
4655 middle of a variant frag, because the variants insert
4656 all needed nop instructions themselves. */
4657 frag_grow (40);
4658 }
4659
462427c4 4660 mips_move_text_labels ();
252b5132
RH
4661
4662#ifndef NO_ECOFF_DEBUGGING
4663 if (ECOFF_DEBUGGING)
4664 ecoff_fix_loc (old_frag, old_frag_offset);
4665#endif
4666 }
71400594
RS
4667 }
4668 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
4669 {
932d1a1b
RS
4670 int nops;
4671
4672 /* Work out how many nops in prev_nop_frag are needed by IP,
4673 ignoring hazards generated by the first prev_nop_frag_since
4674 instructions. */
4675 nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
9c2799c2 4676 gas_assert (nops <= prev_nop_frag_holds);
252b5132 4677
71400594
RS
4678 /* Enforce NOPS as a minimum. */
4679 if (nops > prev_nop_frag_required)
4680 prev_nop_frag_required = nops;
252b5132 4681
71400594
RS
4682 if (prev_nop_frag_holds == prev_nop_frag_required)
4683 {
4684 /* Settle for the current number of nops. Update the history
4685 accordingly (for the benefit of any future .set reorder code). */
4686 prev_nop_frag = NULL;
4687 insert_into_history (prev_nop_frag_since,
4688 prev_nop_frag_holds, NOP_INSN);
4689 }
4690 else
4691 {
4692 /* Allow this instruction to replace one of the nops that was
4693 tentatively added to prev_nop_frag. */
df58fc94 4694 prev_nop_frag->fr_fix -= NOP_INSN_SIZE;
71400594
RS
4695 prev_nop_frag_holds--;
4696 prev_nop_frag_since++;
252b5132
RH
4697 }
4698 }
4699
e407c74b 4700 method = get_append_method (ip, address_expr, reloc_type);
2b0c8b40 4701 branch_disp = method == APPEND_SWAP ? insn_length (history) : 0;
a4e06468 4702
e410add4
RS
4703 dwarf2_emit_insn (0);
4704 /* We want MIPS16 and microMIPS debug info to use ISA-encoded addresses,
4705 so "move" the instruction address accordingly.
4706
4707 Also, it doesn't seem appropriate for the assembler to reorder .loc
4708 entries. If this instruction is a branch that we are going to swap
4709 with the previous instruction, the two instructions should be
4710 treated as a unit, and the debug information for both instructions
4711 should refer to the start of the branch sequence. Using the
4712 current position is certainly wrong when swapping a 32-bit branch
4713 and a 16-bit delay slot, since the current position would then be
4714 in the middle of a branch. */
4715 dwarf2_move_insn ((HAVE_CODE_COMPRESSION ? 1 : 0) - branch_disp);
58e2ea4d 4716
df58fc94
RS
4717 relax32 = (mips_relax_branch
4718 /* Don't try branch relaxation within .set nomacro, or within
4719 .set noat if we use $at for PIC computations. If it turns
4720 out that the branch was out-of-range, we'll get an error. */
4721 && !mips_opts.warn_about_macros
4722 && (mips_opts.at || mips_pic == NO_PIC)
3bf0dbfb
MR
4723 /* Don't relax BPOSGE32/64 or BC1ANY2T/F and BC1ANY4T/F
4724 as they have no complementing branches. */
4725 && !(ip->insn_mo->ase & (ASE_MIPS3D | ASE_DSP64 | ASE_DSP)));
df58fc94
RS
4726
4727 if (!HAVE_CODE_COMPRESSION
4728 && address_expr
4729 && relax32
0b25d3e6 4730 && *reloc_type == BFD_RELOC_16_PCREL_S2
11625dd8 4731 && delayed_branch_p (ip))
4a6a3df4 4732 {
895921c9 4733 relaxed_branch = TRUE;
1e915849
RS
4734 add_relaxed_insn (ip, (relaxed_branch_length
4735 (NULL, NULL,
11625dd8
RS
4736 uncond_branch_p (ip) ? -1
4737 : branch_likely_p (ip) ? 1
1e915849
RS
4738 : 0)), 4,
4739 RELAX_BRANCH_ENCODE
66b3e8da 4740 (AT,
11625dd8
RS
4741 uncond_branch_p (ip),
4742 branch_likely_p (ip),
1e915849
RS
4743 pinfo & INSN_WRITE_GPR_31,
4744 0),
4745 address_expr->X_add_symbol,
4746 address_expr->X_add_number);
4a6a3df4
AO
4747 *reloc_type = BFD_RELOC_UNUSED;
4748 }
df58fc94
RS
4749 else if (mips_opts.micromips
4750 && address_expr
4751 && ((relax32 && *reloc_type == BFD_RELOC_16_PCREL_S2)
4752 || *reloc_type > BFD_RELOC_UNUSED)
40209cad
MR
4753 && (delayed_branch_p (ip) || compact_branch_p (ip))
4754 /* Don't try branch relaxation when users specify
4755 16-bit/32-bit instructions. */
4756 && !forced_insn_length)
df58fc94
RS
4757 {
4758 bfd_boolean relax16 = *reloc_type > BFD_RELOC_UNUSED;
4759 int type = relax16 ? *reloc_type - BFD_RELOC_UNUSED : 0;
11625dd8
RS
4760 int uncond = uncond_branch_p (ip) ? -1 : 0;
4761 int compact = compact_branch_p (ip);
df58fc94
RS
4762 int al = pinfo & INSN_WRITE_GPR_31;
4763 int length32;
4764
4765 gas_assert (address_expr != NULL);
4766 gas_assert (!mips_relax.sequence);
4767
2b0c8b40 4768 relaxed_branch = TRUE;
df58fc94
RS
4769 length32 = relaxed_micromips_32bit_branch_length (NULL, NULL, uncond);
4770 add_relaxed_insn (ip, relax32 ? length32 : 4, relax16 ? 2 : 4,
40209cad
MR
4771 RELAX_MICROMIPS_ENCODE (type, AT, uncond, compact, al,
4772 relax32, 0, 0),
df58fc94
RS
4773 address_expr->X_add_symbol,
4774 address_expr->X_add_number);
4775 *reloc_type = BFD_RELOC_UNUSED;
4776 }
4777 else if (mips_opts.mips16 && *reloc_type > BFD_RELOC_UNUSED)
252b5132
RH
4778 {
4779 /* We need to set up a variant frag. */
df58fc94 4780 gas_assert (address_expr != NULL);
1e915849
RS
4781 add_relaxed_insn (ip, 4, 0,
4782 RELAX_MIPS16_ENCODE
4783 (*reloc_type - BFD_RELOC_UNUSED,
df58fc94 4784 forced_insn_length == 2, forced_insn_length == 4,
11625dd8 4785 delayed_branch_p (&history[0]),
1e915849
RS
4786 history[0].mips16_absolute_jump_p),
4787 make_expr_symbol (address_expr), 0);
252b5132 4788 }
5c04167a 4789 else if (mips_opts.mips16 && insn_length (ip) == 2)
9497f5ac 4790 {
11625dd8 4791 if (!delayed_branch_p (ip))
b8ee1a6e
DU
4792 /* Make sure there is enough room to swap this instruction with
4793 a following jump instruction. */
4794 frag_grow (6);
1e915849 4795 add_fixed_insn (ip);
252b5132
RH
4796 }
4797 else
4798 {
4799 if (mips_opts.mips16
4800 && mips_opts.noreorder
11625dd8 4801 && delayed_branch_p (&history[0]))
252b5132
RH
4802 as_warn (_("extended instruction in delay slot"));
4803
4d7206a2
RS
4804 if (mips_relax.sequence)
4805 {
4806 /* If we've reached the end of this frag, turn it into a variant
4807 frag and record the information for the instructions we've
4808 written so far. */
4809 if (frag_room () < 4)
4810 relax_close_frag ();
df58fc94 4811 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (ip);
4d7206a2
RS
4812 }
4813
584892a6 4814 if (mips_relax.sequence != 2)
df58fc94
RS
4815 {
4816 if (mips_macro_warning.first_insn_sizes[0] == 0)
4817 mips_macro_warning.first_insn_sizes[0] = insn_length (ip);
4818 mips_macro_warning.sizes[0] += insn_length (ip);
4819 mips_macro_warning.insns[0]++;
4820 }
584892a6 4821 if (mips_relax.sequence != 1)
df58fc94
RS
4822 {
4823 if (mips_macro_warning.first_insn_sizes[1] == 0)
4824 mips_macro_warning.first_insn_sizes[1] = insn_length (ip);
4825 mips_macro_warning.sizes[1] += insn_length (ip);
4826 mips_macro_warning.insns[1]++;
4827 }
584892a6 4828
1e915849
RS
4829 if (mips_opts.mips16)
4830 {
4831 ip->fixed_p = 1;
4832 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
4833 }
4834 add_fixed_insn (ip);
252b5132
RH
4835 }
4836
9fe77896 4837 if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
252b5132 4838 {
df58fc94 4839 bfd_reloc_code_real_type final_type[3];
2309ddf2 4840 reloc_howto_type *howto0;
9fe77896
RS
4841 reloc_howto_type *howto;
4842 int i;
34ce925e 4843
df58fc94
RS
4844 /* Perform any necessary conversion to microMIPS relocations
4845 and find out how many relocations there actually are. */
4846 for (i = 0; i < 3 && reloc_type[i] != BFD_RELOC_UNUSED; i++)
4847 final_type[i] = micromips_map_reloc (reloc_type[i]);
4848
9fe77896
RS
4849 /* In a compound relocation, it is the final (outermost)
4850 operator that determines the relocated field. */
2309ddf2 4851 howto = howto0 = bfd_reloc_type_lookup (stdoutput, final_type[i - 1]);
e8044f35
RS
4852 if (!howto)
4853 abort ();
2309ddf2
MR
4854
4855 if (i > 1)
4856 howto0 = bfd_reloc_type_lookup (stdoutput, final_type[0]);
9fe77896
RS
4857 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
4858 bfd_get_reloc_size (howto),
4859 address_expr,
2309ddf2
MR
4860 howto0 && howto0->pc_relative,
4861 final_type[0]);
9fe77896
RS
4862
4863 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
2309ddf2 4864 if (final_type[0] == BFD_RELOC_MIPS16_JMP && ip->fixp[0]->fx_addsy)
9fe77896
RS
4865 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
4866
4867 /* These relocations can have an addend that won't fit in
4868 4 octets for 64bit assembly. */
4869 if (HAVE_64BIT_GPRS
4870 && ! howto->partial_inplace
4871 && (reloc_type[0] == BFD_RELOC_16
4872 || reloc_type[0] == BFD_RELOC_32
4873 || reloc_type[0] == BFD_RELOC_MIPS_JMP
4874 || reloc_type[0] == BFD_RELOC_GPREL16
4875 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
4876 || reloc_type[0] == BFD_RELOC_GPREL32
4877 || reloc_type[0] == BFD_RELOC_64
4878 || reloc_type[0] == BFD_RELOC_CTOR
4879 || reloc_type[0] == BFD_RELOC_MIPS_SUB
4880 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
4881 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
4882 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
4883 || reloc_type[0] == BFD_RELOC_MIPS_REL16
4884 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
4885 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
4886 || hi16_reloc_p (reloc_type[0])
4887 || lo16_reloc_p (reloc_type[0])))
4888 ip->fixp[0]->fx_no_overflow = 1;
4889
ddaf2c41
MR
4890 /* These relocations can have an addend that won't fit in 2 octets. */
4891 if (reloc_type[0] == BFD_RELOC_MICROMIPS_7_PCREL_S1
4892 || reloc_type[0] == BFD_RELOC_MICROMIPS_10_PCREL_S1)
4893 ip->fixp[0]->fx_no_overflow = 1;
4894
9fe77896
RS
4895 if (mips_relax.sequence)
4896 {
4897 if (mips_relax.first_fixup == 0)
4898 mips_relax.first_fixup = ip->fixp[0];
4899 }
4900 else if (reloc_needs_lo_p (*reloc_type))
4901 {
4902 struct mips_hi_fixup *hi_fixup;
4903
4904 /* Reuse the last entry if it already has a matching %lo. */
4905 hi_fixup = mips_hi_fixup_list;
4906 if (hi_fixup == 0
4907 || !fixup_has_matching_lo_p (hi_fixup->fixp))
4d7206a2 4908 {
9fe77896
RS
4909 hi_fixup = ((struct mips_hi_fixup *)
4910 xmalloc (sizeof (struct mips_hi_fixup)));
4911 hi_fixup->next = mips_hi_fixup_list;
4912 mips_hi_fixup_list = hi_fixup;
4d7206a2 4913 }
9fe77896
RS
4914 hi_fixup->fixp = ip->fixp[0];
4915 hi_fixup->seg = now_seg;
4916 }
252b5132 4917
9fe77896
RS
4918 /* Add fixups for the second and third relocations, if given.
4919 Note that the ABI allows the second relocation to be
4920 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
4921 moment we only use RSS_UNDEF, but we could add support
4922 for the others if it ever becomes necessary. */
4923 for (i = 1; i < 3; i++)
4924 if (reloc_type[i] != BFD_RELOC_UNUSED)
4925 {
4926 ip->fixp[i] = fix_new (ip->frag, ip->where,
4927 ip->fixp[0]->fx_size, NULL, 0,
df58fc94 4928 FALSE, final_type[i]);
f6688943 4929
9fe77896
RS
4930 /* Use fx_tcbit to mark compound relocs. */
4931 ip->fixp[0]->fx_tcbit = 1;
4932 ip->fixp[i]->fx_tcbit = 1;
4933 }
252b5132 4934 }
1e915849 4935 install_insn (ip);
252b5132
RH
4936
4937 /* Update the register mask information. */
4c260379
RS
4938 mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
4939 mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
252b5132 4940
a4e06468 4941 switch (method)
252b5132 4942 {
a4e06468
RS
4943 case APPEND_ADD:
4944 insert_into_history (0, 1, ip);
4945 break;
4946
4947 case APPEND_ADD_WITH_NOP:
14fe068b
RS
4948 {
4949 struct mips_cl_insn *nop;
4950
4951 insert_into_history (0, 1, ip);
4952 nop = get_delay_slot_nop (ip);
4953 add_fixed_insn (nop);
4954 insert_into_history (0, 1, nop);
4955 if (mips_relax.sequence)
4956 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (nop);
4957 }
a4e06468
RS
4958 break;
4959
4960 case APPEND_ADD_COMPACT:
4961 /* Convert MIPS16 jr/jalr into a "compact" jump. */
4962 gas_assert (mips_opts.mips16);
4963 ip->insn_opcode |= 0x0080;
4964 find_altered_mips16_opcode (ip);
4965 install_insn (ip);
4966 insert_into_history (0, 1, ip);
4967 break;
4968
4969 case APPEND_SWAP:
4970 {
4971 struct mips_cl_insn delay = history[0];
4972 if (mips_opts.mips16)
4973 {
4974 know (delay.frag == ip->frag);
4975 move_insn (ip, delay.frag, delay.where);
4976 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
4977 }
464ab0e5 4978 else if (relaxed_branch || delay.frag != ip->frag)
a4e06468
RS
4979 {
4980 /* Add the delay slot instruction to the end of the
4981 current frag and shrink the fixed part of the
4982 original frag. If the branch occupies the tail of
4983 the latter, move it backwards to cover the gap. */
2b0c8b40 4984 delay.frag->fr_fix -= branch_disp;
a4e06468 4985 if (delay.frag == ip->frag)
2b0c8b40 4986 move_insn (ip, ip->frag, ip->where - branch_disp);
a4e06468
RS
4987 add_fixed_insn (&delay);
4988 }
4989 else
4990 {
2b0c8b40
MR
4991 move_insn (&delay, ip->frag,
4992 ip->where - branch_disp + insn_length (ip));
a4e06468
RS
4993 move_insn (ip, history[0].frag, history[0].where);
4994 }
4995 history[0] = *ip;
4996 delay.fixed_p = 1;
4997 insert_into_history (0, 1, &delay);
4998 }
4999 break;
252b5132
RH
5000 }
5001
13408f1e 5002 /* If we have just completed an unconditional branch, clear the history. */
11625dd8
RS
5003 if ((delayed_branch_p (&history[1]) && uncond_branch_p (&history[1]))
5004 || (compact_branch_p (&history[0]) && uncond_branch_p (&history[0])))
e407c74b
NC
5005 {
5006 unsigned int i;
5007
79850f26 5008 mips_no_prev_insn ();
13408f1e 5009
e407c74b 5010 for (i = 0; i < ARRAY_SIZE (history); i++)
79850f26 5011 history[i].cleared_p = 1;
e407c74b
NC
5012 }
5013
df58fc94
RS
5014 /* We need to emit a label at the end of branch-likely macros. */
5015 if (emit_branch_likely_macro)
5016 {
5017 emit_branch_likely_macro = FALSE;
5018 micromips_add_label ();
5019 }
5020
252b5132
RH
5021 /* We just output an insn, so the next one doesn't have a label. */
5022 mips_clear_insn_labels ();
252b5132
RH
5023}
5024
e407c74b
NC
5025/* Forget that there was any previous instruction or label.
5026 When BRANCH is true, the branch history is also flushed. */
252b5132
RH
5027
5028static void
7d10b47d 5029mips_no_prev_insn (void)
252b5132 5030{
7d10b47d
RS
5031 prev_nop_frag = NULL;
5032 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
252b5132
RH
5033 mips_clear_insn_labels ();
5034}
5035
7d10b47d
RS
5036/* This function must be called before we emit something other than
5037 instructions. It is like mips_no_prev_insn except that it inserts
5038 any NOPS that might be needed by previous instructions. */
252b5132 5039
7d10b47d
RS
5040void
5041mips_emit_delays (void)
252b5132
RH
5042{
5043 if (! mips_opts.noreorder)
5044 {
932d1a1b 5045 int nops = nops_for_insn (0, history, NULL);
252b5132
RH
5046 if (nops > 0)
5047 {
7d10b47d
RS
5048 while (nops-- > 0)
5049 add_fixed_insn (NOP_INSN);
462427c4 5050 mips_move_text_labels ();
7d10b47d
RS
5051 }
5052 }
5053 mips_no_prev_insn ();
5054}
5055
5056/* Start a (possibly nested) noreorder block. */
5057
5058static void
5059start_noreorder (void)
5060{
5061 if (mips_opts.noreorder == 0)
5062 {
5063 unsigned int i;
5064 int nops;
5065
5066 /* None of the instructions before the .set noreorder can be moved. */
5067 for (i = 0; i < ARRAY_SIZE (history); i++)
5068 history[i].fixed_p = 1;
5069
5070 /* Insert any nops that might be needed between the .set noreorder
5071 block and the previous instructions. We will later remove any
5072 nops that turn out not to be needed. */
932d1a1b 5073 nops = nops_for_insn (0, history, NULL);
7d10b47d
RS
5074 if (nops > 0)
5075 {
5076 if (mips_optimize != 0)
252b5132
RH
5077 {
5078 /* Record the frag which holds the nop instructions, so
5079 that we can remove them if we don't need them. */
df58fc94 5080 frag_grow (nops * NOP_INSN_SIZE);
252b5132
RH
5081 prev_nop_frag = frag_now;
5082 prev_nop_frag_holds = nops;
5083 prev_nop_frag_required = 0;
5084 prev_nop_frag_since = 0;
5085 }
5086
5087 for (; nops > 0; --nops)
1e915849 5088 add_fixed_insn (NOP_INSN);
252b5132 5089
7d10b47d
RS
5090 /* Move on to a new frag, so that it is safe to simply
5091 decrease the size of prev_nop_frag. */
5092 frag_wane (frag_now);
5093 frag_new (0);
462427c4 5094 mips_move_text_labels ();
252b5132 5095 }
df58fc94 5096 mips_mark_labels ();
7d10b47d 5097 mips_clear_insn_labels ();
252b5132 5098 }
7d10b47d
RS
5099 mips_opts.noreorder++;
5100 mips_any_noreorder = 1;
5101}
252b5132 5102
7d10b47d 5103/* End a nested noreorder block. */
252b5132 5104
7d10b47d
RS
5105static void
5106end_noreorder (void)
5107{
5108 mips_opts.noreorder--;
5109 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
5110 {
5111 /* Commit to inserting prev_nop_frag_required nops and go back to
5112 handling nop insertion the .set reorder way. */
5113 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
df58fc94 5114 * NOP_INSN_SIZE);
7d10b47d
RS
5115 insert_into_history (prev_nop_frag_since,
5116 prev_nop_frag_required, NOP_INSN);
5117 prev_nop_frag = NULL;
5118 }
252b5132
RH
5119}
5120
584892a6
RS
5121/* Set up global variables for the start of a new macro. */
5122
5123static void
5124macro_start (void)
5125{
5126 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
df58fc94
RS
5127 memset (&mips_macro_warning.first_insn_sizes, 0,
5128 sizeof (mips_macro_warning.first_insn_sizes));
5129 memset (&mips_macro_warning.insns, 0, sizeof (mips_macro_warning.insns));
584892a6 5130 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
11625dd8 5131 && delayed_branch_p (&history[0]));
df58fc94
RS
5132 switch (history[0].insn_mo->pinfo2
5133 & (INSN2_BRANCH_DELAY_32BIT | INSN2_BRANCH_DELAY_16BIT))
5134 {
5135 case INSN2_BRANCH_DELAY_32BIT:
5136 mips_macro_warning.delay_slot_length = 4;
5137 break;
5138 case INSN2_BRANCH_DELAY_16BIT:
5139 mips_macro_warning.delay_slot_length = 2;
5140 break;
5141 default:
5142 mips_macro_warning.delay_slot_length = 0;
5143 break;
5144 }
5145 mips_macro_warning.first_frag = NULL;
584892a6
RS
5146}
5147
df58fc94
RS
5148/* Given that a macro is longer than one instruction or of the wrong size,
5149 return the appropriate warning for it. Return null if no warning is
5150 needed. SUBTYPE is a bitmask of RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT,
5151 RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND,
5152 and RELAX_NOMACRO. */
584892a6
RS
5153
5154static const char *
5155macro_warning (relax_substateT subtype)
5156{
5157 if (subtype & RELAX_DELAY_SLOT)
5158 return _("Macro instruction expanded into multiple instructions"
5159 " in a branch delay slot");
5160 else if (subtype & RELAX_NOMACRO)
5161 return _("Macro instruction expanded into multiple instructions");
df58fc94
RS
5162 else if (subtype & (RELAX_DELAY_SLOT_SIZE_FIRST
5163 | RELAX_DELAY_SLOT_SIZE_SECOND))
5164 return ((subtype & RELAX_DELAY_SLOT_16BIT)
5165 ? _("Macro instruction expanded into a wrong size instruction"
5166 " in a 16-bit branch delay slot")
5167 : _("Macro instruction expanded into a wrong size instruction"
5168 " in a 32-bit branch delay slot"));
584892a6
RS
5169 else
5170 return 0;
5171}
5172
5173/* Finish up a macro. Emit warnings as appropriate. */
5174
5175static void
5176macro_end (void)
5177{
df58fc94
RS
5178 /* Relaxation warning flags. */
5179 relax_substateT subtype = 0;
5180
5181 /* Check delay slot size requirements. */
5182 if (mips_macro_warning.delay_slot_length == 2)
5183 subtype |= RELAX_DELAY_SLOT_16BIT;
5184 if (mips_macro_warning.delay_slot_length != 0)
584892a6 5185 {
df58fc94
RS
5186 if (mips_macro_warning.delay_slot_length
5187 != mips_macro_warning.first_insn_sizes[0])
5188 subtype |= RELAX_DELAY_SLOT_SIZE_FIRST;
5189 if (mips_macro_warning.delay_slot_length
5190 != mips_macro_warning.first_insn_sizes[1])
5191 subtype |= RELAX_DELAY_SLOT_SIZE_SECOND;
5192 }
584892a6 5193
df58fc94
RS
5194 /* Check instruction count requirements. */
5195 if (mips_macro_warning.insns[0] > 1 || mips_macro_warning.insns[1] > 1)
5196 {
5197 if (mips_macro_warning.insns[1] > mips_macro_warning.insns[0])
584892a6
RS
5198 subtype |= RELAX_SECOND_LONGER;
5199 if (mips_opts.warn_about_macros)
5200 subtype |= RELAX_NOMACRO;
5201 if (mips_macro_warning.delay_slot_p)
5202 subtype |= RELAX_DELAY_SLOT;
df58fc94 5203 }
584892a6 5204
df58fc94
RS
5205 /* If both alternatives fail to fill a delay slot correctly,
5206 emit the warning now. */
5207 if ((subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0
5208 && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0)
5209 {
5210 relax_substateT s;
5211 const char *msg;
5212
5213 s = subtype & (RELAX_DELAY_SLOT_16BIT
5214 | RELAX_DELAY_SLOT_SIZE_FIRST
5215 | RELAX_DELAY_SLOT_SIZE_SECOND);
5216 msg = macro_warning (s);
5217 if (msg != NULL)
5218 as_warn ("%s", msg);
5219 subtype &= ~s;
5220 }
5221
5222 /* If both implementations are longer than 1 instruction, then emit the
5223 warning now. */
5224 if (mips_macro_warning.insns[0] > 1 && mips_macro_warning.insns[1] > 1)
5225 {
5226 relax_substateT s;
5227 const char *msg;
5228
5229 s = subtype & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT);
5230 msg = macro_warning (s);
5231 if (msg != NULL)
5232 as_warn ("%s", msg);
5233 subtype &= ~s;
584892a6 5234 }
df58fc94
RS
5235
5236 /* If any flags still set, then one implementation might need a warning
5237 and the other either will need one of a different kind or none at all.
5238 Pass any remaining flags over to relaxation. */
5239 if (mips_macro_warning.first_frag != NULL)
5240 mips_macro_warning.first_frag->fr_subtype |= subtype;
584892a6
RS
5241}
5242
df58fc94
RS
5243/* Instruction operand formats used in macros that vary between
5244 standard MIPS and microMIPS code. */
5245
833794fc 5246static const char * const brk_fmt[2][2] = { { "c", "c" }, { "mF", "c" } };
df58fc94
RS
5247static const char * const cop12_fmt[2] = { "E,o(b)", "E,~(b)" };
5248static const char * const jalr_fmt[2] = { "d,s", "t,s" };
5249static const char * const lui_fmt[2] = { "t,u", "s,u" };
5250static const char * const mem12_fmt[2] = { "t,o(b)", "t,~(b)" };
833794fc 5251static const char * const mfhl_fmt[2][2] = { { "d", "d" }, { "mj", "s" } };
df58fc94
RS
5252static const char * const shft_fmt[2] = { "d,w,<", "t,r,<" };
5253static const char * const trap_fmt[2] = { "s,t,q", "s,t,|" };
5254
833794fc 5255#define BRK_FMT (brk_fmt[mips_opts.micromips][mips_opts.insn32])
df58fc94
RS
5256#define COP12_FMT (cop12_fmt[mips_opts.micromips])
5257#define JALR_FMT (jalr_fmt[mips_opts.micromips])
5258#define LUI_FMT (lui_fmt[mips_opts.micromips])
5259#define MEM12_FMT (mem12_fmt[mips_opts.micromips])
833794fc 5260#define MFHL_FMT (mfhl_fmt[mips_opts.micromips][mips_opts.insn32])
df58fc94
RS
5261#define SHFT_FMT (shft_fmt[mips_opts.micromips])
5262#define TRAP_FMT (trap_fmt[mips_opts.micromips])
5263
6e1304d8
RS
5264/* Read a macro's relocation codes from *ARGS and store them in *R.
5265 The first argument in *ARGS will be either the code for a single
5266 relocation or -1 followed by the three codes that make up a
5267 composite relocation. */
5268
5269static void
5270macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
5271{
5272 int i, next;
5273
5274 next = va_arg (*args, int);
5275 if (next >= 0)
5276 r[0] = (bfd_reloc_code_real_type) next;
5277 else
f2ae14a1
RS
5278 {
5279 for (i = 0; i < 3; i++)
5280 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
5281 /* This function is only used for 16-bit relocation fields.
5282 To make the macro code simpler, treat an unrelocated value
5283 in the same way as BFD_RELOC_LO16. */
5284 if (r[0] == BFD_RELOC_UNUSED)
5285 r[0] = BFD_RELOC_LO16;
5286 }
6e1304d8
RS
5287}
5288
252b5132
RH
5289/* Build an instruction created by a macro expansion. This is passed
5290 a pointer to the count of instructions created so far, an
5291 expression, the name of the instruction to build, an operand format
5292 string, and corresponding arguments. */
5293
252b5132 5294static void
67c0d1eb 5295macro_build (expressionS *ep, const char *name, const char *fmt, ...)
252b5132 5296{
df58fc94 5297 const struct mips_opcode *mo = NULL;
f6688943 5298 bfd_reloc_code_real_type r[3];
df58fc94
RS
5299 const struct mips_opcode *amo;
5300 struct hash_control *hash;
5301 struct mips_cl_insn insn;
252b5132 5302 va_list args;
252b5132 5303
252b5132 5304 va_start (args, fmt);
252b5132 5305
252b5132
RH
5306 if (mips_opts.mips16)
5307 {
03ea81db 5308 mips16_macro_build (ep, name, fmt, &args);
252b5132
RH
5309 va_end (args);
5310 return;
5311 }
5312
f6688943
TS
5313 r[0] = BFD_RELOC_UNUSED;
5314 r[1] = BFD_RELOC_UNUSED;
5315 r[2] = BFD_RELOC_UNUSED;
df58fc94
RS
5316 hash = mips_opts.micromips ? micromips_op_hash : op_hash;
5317 amo = (struct mips_opcode *) hash_find (hash, name);
5318 gas_assert (amo);
5319 gas_assert (strcmp (name, amo->name) == 0);
1e915849 5320
df58fc94 5321 do
8b082fb1
TS
5322 {
5323 /* Search until we get a match for NAME. It is assumed here that
df58fc94
RS
5324 macros will never generate MDMX, MIPS-3D, or MT instructions.
5325 We try to match an instruction that fulfils the branch delay
5326 slot instruction length requirement (if any) of the previous
5327 instruction. While doing this we record the first instruction
5328 seen that matches all the other conditions and use it anyway
5329 if the requirement cannot be met; we will issue an appropriate
5330 warning later on. */
5331 if (strcmp (fmt, amo->args) == 0
5332 && amo->pinfo != INSN_MACRO
5333 && is_opcode_valid (amo)
5334 && is_size_valid (amo))
5335 {
5336 if (is_delay_slot_valid (amo))
5337 {
5338 mo = amo;
5339 break;
5340 }
5341 else if (!mo)
5342 mo = amo;
5343 }
8b082fb1 5344
df58fc94
RS
5345 ++amo;
5346 gas_assert (amo->name);
252b5132 5347 }
df58fc94 5348 while (strcmp (name, amo->name) == 0);
252b5132 5349
df58fc94 5350 gas_assert (mo);
1e915849 5351 create_insn (&insn, mo);
252b5132
RH
5352 for (;;)
5353 {
5354 switch (*fmt++)
5355 {
5356 case '\0':
5357 break;
5358
5359 case ',':
5360 case '(':
5361 case ')':
5362 continue;
5363
5f74bc13
CD
5364 case '+':
5365 switch (*fmt++)
5366 {
5367 case 'A':
5368 case 'E':
df58fc94
RS
5369 INSERT_OPERAND (mips_opts.micromips,
5370 EXTLSB, insn, va_arg (args, int));
5f74bc13
CD
5371 continue;
5372
5373 case 'B':
5374 case 'F':
5375 /* Note that in the macro case, these arguments are already
5376 in MSB form. (When handling the instruction in the
5377 non-macro case, these arguments are sizes from which
5378 MSB values must be calculated.) */
df58fc94
RS
5379 INSERT_OPERAND (mips_opts.micromips,
5380 INSMSB, insn, va_arg (args, int));
5f74bc13
CD
5381 continue;
5382
b015e599
AP
5383 case 'J':
5384 gas_assert (!mips_opts.micromips);
5385 INSERT_OPERAND (0, CODE10, insn, va_arg (args, int));
5386 continue;
5387
5f74bc13
CD
5388 case 'C':
5389 case 'G':
5390 case 'H':
5391 /* Note that in the macro case, these arguments are already
5392 in MSBD form. (When handling the instruction in the
5393 non-macro case, these arguments are sizes from which
5394 MSBD values must be calculated.) */
df58fc94
RS
5395 INSERT_OPERAND (mips_opts.micromips,
5396 EXTMSBD, insn, va_arg (args, int));
5f74bc13
CD
5397 continue;
5398
dd3cbb7e 5399 case 'Q':
df58fc94
RS
5400 gas_assert (!mips_opts.micromips);
5401 INSERT_OPERAND (0, SEQI, insn, va_arg (args, int));
dd3cbb7e
NC
5402 continue;
5403
7f3c4072
CM
5404 case 'j':
5405 INSERT_OPERAND (mips_opts.micromips, EVAOFFSET, insn, va_arg (args, int));
5406 continue;
5407
5f74bc13 5408 default:
b37df7c4 5409 abort ();
5f74bc13
CD
5410 }
5411 continue;
5412
8b082fb1 5413 case '2':
03f66e8a 5414 INSERT_OPERAND (mips_opts.micromips, BP, insn, va_arg (args, int));
8b082fb1
TS
5415 continue;
5416
df58fc94
RS
5417 case 'n':
5418 gas_assert (mips_opts.micromips);
252b5132
RH
5419 case 't':
5420 case 'w':
5421 case 'E':
df58fc94 5422 INSERT_OPERAND (mips_opts.micromips, RT, insn, va_arg (args, int));
252b5132
RH
5423 continue;
5424
5425 case 'c':
833794fc 5426 INSERT_OPERAND (mips_opts.micromips, CODE, insn, va_arg (args, int));
38487616
TS
5427 continue;
5428
252b5132 5429 case 'W':
df58fc94
RS
5430 gas_assert (!mips_opts.micromips);
5431 case 'T':
5432 INSERT_OPERAND (mips_opts.micromips, FT, insn, va_arg (args, int));
252b5132
RH
5433 continue;
5434
252b5132 5435 case 'G':
df58fc94
RS
5436 if (mips_opts.micromips)
5437 INSERT_OPERAND (1, RS, insn, va_arg (args, int));
5438 else
5439 INSERT_OPERAND (0, RD, insn, va_arg (args, int));
5440 continue;
5441
af7ee8bf 5442 case 'K':
df58fc94
RS
5443 gas_assert (!mips_opts.micromips);
5444 case 'd':
5445 INSERT_OPERAND (mips_opts.micromips, RD, insn, va_arg (args, int));
252b5132
RH
5446 continue;
5447
4372b673 5448 case 'U':
df58fc94 5449 gas_assert (!mips_opts.micromips);
4372b673
NC
5450 {
5451 int tmp = va_arg (args, int);
5452
df58fc94
RS
5453 INSERT_OPERAND (0, RT, insn, tmp);
5454 INSERT_OPERAND (0, RD, insn, tmp);
4372b673 5455 }
df58fc94 5456 continue;
4372b673 5457
252b5132
RH
5458 case 'V':
5459 case 'S':
df58fc94
RS
5460 gas_assert (!mips_opts.micromips);
5461 INSERT_OPERAND (0, FS, insn, va_arg (args, int));
252b5132
RH
5462 continue;
5463
5464 case 'z':
5465 continue;
5466
5467 case '<':
df58fc94
RS
5468 INSERT_OPERAND (mips_opts.micromips,
5469 SHAMT, insn, va_arg (args, int));
252b5132
RH
5470 continue;
5471
5472 case 'D':
df58fc94
RS
5473 gas_assert (!mips_opts.micromips);
5474 INSERT_OPERAND (0, FD, insn, va_arg (args, int));
252b5132
RH
5475 continue;
5476
5477 case 'B':
df58fc94
RS
5478 gas_assert (!mips_opts.micromips);
5479 INSERT_OPERAND (0, CODE20, insn, va_arg (args, int));
252b5132
RH
5480 continue;
5481
4372b673 5482 case 'J':
df58fc94
RS
5483 gas_assert (!mips_opts.micromips);
5484 INSERT_OPERAND (0, CODE19, insn, va_arg (args, int));
4372b673
NC
5485 continue;
5486
252b5132 5487 case 'q':
df58fc94
RS
5488 gas_assert (!mips_opts.micromips);
5489 INSERT_OPERAND (0, CODE2, insn, va_arg (args, int));
252b5132
RH
5490 continue;
5491
5492 case 'b':
5493 case 's':
5494 case 'r':
5495 case 'v':
df58fc94 5496 INSERT_OPERAND (mips_opts.micromips, RS, insn, va_arg (args, int));
252b5132
RH
5497 continue;
5498
5499 case 'i':
5500 case 'j':
6e1304d8 5501 macro_read_relocs (&args, r);
9c2799c2 5502 gas_assert (*r == BFD_RELOC_GPREL16
e391c024
RS
5503 || *r == BFD_RELOC_MIPS_HIGHER
5504 || *r == BFD_RELOC_HI16_S
5505 || *r == BFD_RELOC_LO16
5506 || *r == BFD_RELOC_MIPS_GOT_OFST);
5507 continue;
5508
5509 case 'o':
5510 macro_read_relocs (&args, r);
252b5132
RH
5511 continue;
5512
5513 case 'u':
6e1304d8 5514 macro_read_relocs (&args, r);
9c2799c2 5515 gas_assert (ep != NULL
90ecf173
MR
5516 && (ep->X_op == O_constant
5517 || (ep->X_op == O_symbol
5518 && (*r == BFD_RELOC_MIPS_HIGHEST
5519 || *r == BFD_RELOC_HI16_S
5520 || *r == BFD_RELOC_HI16
5521 || *r == BFD_RELOC_GPREL16
5522 || *r == BFD_RELOC_MIPS_GOT_HI16
5523 || *r == BFD_RELOC_MIPS_CALL_HI16))));
252b5132
RH
5524 continue;
5525
5526 case 'p':
9c2799c2 5527 gas_assert (ep != NULL);
bad36eac 5528
252b5132
RH
5529 /*
5530 * This allows macro() to pass an immediate expression for
5531 * creating short branches without creating a symbol.
bad36eac
DJ
5532 *
5533 * We don't allow branch relaxation for these branches, as
5534 * they should only appear in ".set nomacro" anyway.
252b5132
RH
5535 */
5536 if (ep->X_op == O_constant)
5537 {
df58fc94
RS
5538 /* For microMIPS we always use relocations for branches.
5539 So we should not resolve immediate values. */
5540 gas_assert (!mips_opts.micromips);
5541
bad36eac
DJ
5542 if ((ep->X_add_number & 3) != 0)
5543 as_bad (_("branch to misaligned address (0x%lx)"),
5544 (unsigned long) ep->X_add_number);
5545 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
5546 as_bad (_("branch address range overflow (0x%lx)"),
5547 (unsigned long) ep->X_add_number);
252b5132
RH
5548 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
5549 ep = NULL;
5550 }
5551 else
0b25d3e6 5552 *r = BFD_RELOC_16_PCREL_S2;
252b5132
RH
5553 continue;
5554
5555 case 'a':
9c2799c2 5556 gas_assert (ep != NULL);
f6688943 5557 *r = BFD_RELOC_MIPS_JMP;
252b5132
RH
5558 continue;
5559
5560 case 'C':
df58fc94 5561 gas_assert (!mips_opts.micromips);
c8276761 5562 INSERT_OPERAND (0, COPZ, insn, va_arg (args, int));
252b5132
RH
5563 continue;
5564
d43b4baf 5565 case 'k':
df58fc94 5566 INSERT_OPERAND (mips_opts.micromips,
c8276761 5567 CACHE, insn, va_arg (args, int));
df58fc94
RS
5568 continue;
5569
5570 case '|':
5571 gas_assert (mips_opts.micromips);
5572 INSERT_OPERAND (1, TRAP, insn, va_arg (args, int));
5573 continue;
5574
5575 case '.':
5576 gas_assert (mips_opts.micromips);
5577 INSERT_OPERAND (1, OFFSET10, insn, va_arg (args, int));
5578 continue;
5579
dec0624d
MR
5580 case '\\':
5581 INSERT_OPERAND (mips_opts.micromips,
c8276761 5582 3BITPOS, insn, va_arg (args, int));
dec0624d
MR
5583 continue;
5584
df58fc94 5585 case '~':
dec0624d 5586 INSERT_OPERAND (mips_opts.micromips,
c8276761 5587 OFFSET12, insn, va_arg (args, int));
df58fc94
RS
5588 continue;
5589
5590 case 'N':
5591 gas_assert (mips_opts.micromips);
5592 INSERT_OPERAND (1, BCC, insn, va_arg (args, int));
5593 continue;
5594
5595 case 'm': /* Opcode extension character. */
5596 gas_assert (mips_opts.micromips);
5597 switch (*fmt++)
5598 {
5599 case 'j':
5600 INSERT_OPERAND (1, MJ, insn, va_arg (args, int));
5601 break;
5602
5603 case 'p':
5604 INSERT_OPERAND (1, MP, insn, va_arg (args, int));
5605 break;
5606
5607 case 'F':
5608 INSERT_OPERAND (1, IMMF, insn, va_arg (args, int));
5609 break;
5610
5611 default:
b37df7c4 5612 abort ();
df58fc94 5613 }
d43b4baf
TS
5614 continue;
5615
252b5132 5616 default:
b37df7c4 5617 abort ();
252b5132
RH
5618 }
5619 break;
5620 }
5621 va_end (args);
9c2799c2 5622 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 5623
df58fc94 5624 append_insn (&insn, ep, r, TRUE);
252b5132
RH
5625}
5626
5627static void
67c0d1eb 5628mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
03ea81db 5629 va_list *args)
252b5132 5630{
1e915849 5631 struct mips_opcode *mo;
252b5132 5632 struct mips_cl_insn insn;
f6688943
TS
5633 bfd_reloc_code_real_type r[3]
5634 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 5635
1e915849 5636 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
9c2799c2
NC
5637 gas_assert (mo);
5638 gas_assert (strcmp (name, mo->name) == 0);
252b5132 5639
1e915849 5640 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
252b5132 5641 {
1e915849 5642 ++mo;
9c2799c2
NC
5643 gas_assert (mo->name);
5644 gas_assert (strcmp (name, mo->name) == 0);
252b5132
RH
5645 }
5646
1e915849 5647 create_insn (&insn, mo);
252b5132
RH
5648 for (;;)
5649 {
5650 int c;
5651
5652 c = *fmt++;
5653 switch (c)
5654 {
5655 case '\0':
5656 break;
5657
5658 case ',':
5659 case '(':
5660 case ')':
5661 continue;
5662
5663 case 'y':
5664 case 'w':
03ea81db 5665 MIPS16_INSERT_OPERAND (RY, insn, va_arg (*args, int));
252b5132
RH
5666 continue;
5667
5668 case 'x':
5669 case 'v':
03ea81db 5670 MIPS16_INSERT_OPERAND (RX, insn, va_arg (*args, int));
252b5132
RH
5671 continue;
5672
5673 case 'z':
03ea81db 5674 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (*args, int));
252b5132
RH
5675 continue;
5676
5677 case 'Z':
03ea81db 5678 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (*args, int));
252b5132
RH
5679 continue;
5680
5681 case '0':
5682 case 'S':
5683 case 'P':
5684 case 'R':
5685 continue;
5686
5687 case 'X':
03ea81db 5688 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (*args, int));
252b5132
RH
5689 continue;
5690
5691 case 'Y':
5692 {
5693 int regno;
5694
03ea81db 5695 regno = va_arg (*args, int);
252b5132 5696 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
a9e24354 5697 MIPS16_INSERT_OPERAND (REG32R, insn, regno);
252b5132
RH
5698 }
5699 continue;
5700
5701 case '<':
5702 case '>':
5703 case '4':
5704 case '5':
5705 case 'H':
5706 case 'W':
5707 case 'D':
5708 case 'j':
5709 case '8':
5710 case 'V':
5711 case 'C':
5712 case 'U':
5713 case 'k':
5714 case 'K':
5715 case 'p':
5716 case 'q':
5717 {
b886a2ab
RS
5718 offsetT value;
5719
9c2799c2 5720 gas_assert (ep != NULL);
252b5132
RH
5721
5722 if (ep->X_op != O_constant)
874e8986 5723 *r = (int) BFD_RELOC_UNUSED + c;
b886a2ab 5724 else if (calculate_reloc (*r, ep->X_add_number, &value))
252b5132 5725 {
b886a2ab 5726 mips16_immed (NULL, 0, c, *r, value, 0, &insn.insn_opcode);
252b5132 5727 ep = NULL;
f6688943 5728 *r = BFD_RELOC_UNUSED;
252b5132
RH
5729 }
5730 }
5731 continue;
5732
5733 case '6':
03ea81db 5734 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (*args, int));
252b5132
RH
5735 continue;
5736 }
5737
5738 break;
5739 }
5740
9c2799c2 5741 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 5742
df58fc94 5743 append_insn (&insn, ep, r, TRUE);
252b5132
RH
5744}
5745
2051e8c4
MR
5746/*
5747 * Sign-extend 32-bit mode constants that have bit 31 set and all
5748 * higher bits unset.
5749 */
9f872bbe 5750static void
2051e8c4
MR
5751normalize_constant_expr (expressionS *ex)
5752{
9ee2a2d4 5753 if (ex->X_op == O_constant
2051e8c4
MR
5754 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
5755 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
5756 - 0x80000000);
5757}
5758
5759/*
5760 * Sign-extend 32-bit mode address offsets that have bit 31 set and
5761 * all higher bits unset.
5762 */
5763static void
5764normalize_address_expr (expressionS *ex)
5765{
5766 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
5767 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
5768 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
5769 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
5770 - 0x80000000);
5771}
5772
438c16b8
TS
5773/*
5774 * Generate a "jalr" instruction with a relocation hint to the called
5775 * function. This occurs in NewABI PIC code.
5776 */
5777static void
df58fc94 5778macro_build_jalr (expressionS *ep, int cprestore)
438c16b8 5779{
df58fc94
RS
5780 static const bfd_reloc_code_real_type jalr_relocs[2]
5781 = { BFD_RELOC_MIPS_JALR, BFD_RELOC_MICROMIPS_JALR };
5782 bfd_reloc_code_real_type jalr_reloc = jalr_relocs[mips_opts.micromips];
5783 const char *jalr;
685736be 5784 char *f = NULL;
b34976b6 5785
1180b5a4 5786 if (MIPS_JALR_HINT_P (ep))
f21f8242 5787 {
cc3d92a5 5788 frag_grow (8);
f21f8242
AO
5789 f = frag_more (0);
5790 }
2906b037 5791 if (mips_opts.micromips)
df58fc94 5792 {
833794fc
MR
5793 jalr = ((mips_opts.noreorder && !cprestore) || mips_opts.insn32
5794 ? "jalr" : "jalrs");
e64af278 5795 if (MIPS_JALR_HINT_P (ep)
833794fc 5796 || mips_opts.insn32
e64af278 5797 || (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
df58fc94
RS
5798 macro_build (NULL, jalr, "t,s", RA, PIC_CALL_REG);
5799 else
5800 macro_build (NULL, jalr, "mj", PIC_CALL_REG);
5801 }
2906b037
MR
5802 else
5803 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
1180b5a4 5804 if (MIPS_JALR_HINT_P (ep))
df58fc94 5805 fix_new_exp (frag_now, f - frag_now->fr_literal, 4, ep, FALSE, jalr_reloc);
438c16b8
TS
5806}
5807
252b5132
RH
5808/*
5809 * Generate a "lui" instruction.
5810 */
5811static void
67c0d1eb 5812macro_build_lui (expressionS *ep, int regnum)
252b5132 5813{
9c2799c2 5814 gas_assert (! mips_opts.mips16);
252b5132 5815
df58fc94 5816 if (ep->X_op != O_constant)
252b5132 5817 {
9c2799c2 5818 gas_assert (ep->X_op == O_symbol);
bbe506e8
TS
5819 /* _gp_disp is a special case, used from s_cpload.
5820 __gnu_local_gp is used if mips_no_shared. */
9c2799c2 5821 gas_assert (mips_pic == NO_PIC
78e1bb40 5822 || (! HAVE_NEWABI
aa6975fb
ILT
5823 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
5824 || (! mips_in_shared
bbe506e8
TS
5825 && strcmp (S_GET_NAME (ep->X_add_symbol),
5826 "__gnu_local_gp") == 0));
252b5132
RH
5827 }
5828
df58fc94 5829 macro_build (ep, "lui", LUI_FMT, regnum, BFD_RELOC_HI16_S);
252b5132
RH
5830}
5831
885add95
CD
5832/* Generate a sequence of instructions to do a load or store from a constant
5833 offset off of a base register (breg) into/from a target register (treg),
5834 using AT if necessary. */
5835static void
67c0d1eb
RS
5836macro_build_ldst_constoffset (expressionS *ep, const char *op,
5837 int treg, int breg, int dbl)
885add95 5838{
9c2799c2 5839 gas_assert (ep->X_op == O_constant);
885add95 5840
256ab948 5841 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
5842 if (!dbl)
5843 normalize_constant_expr (ep);
256ab948 5844
67c1ffbe 5845 /* Right now, this routine can only handle signed 32-bit constants. */
ecd13cd3 5846 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
885add95
CD
5847 as_warn (_("operand overflow"));
5848
5849 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
5850 {
5851 /* Signed 16-bit offset will fit in the op. Easy! */
67c0d1eb 5852 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
885add95
CD
5853 }
5854 else
5855 {
5856 /* 32-bit offset, need multiple instructions and AT, like:
5857 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
5858 addu $tempreg,$tempreg,$breg
5859 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
5860 to handle the complete offset. */
67c0d1eb
RS
5861 macro_build_lui (ep, AT);
5862 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
5863 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
885add95 5864
741fe287 5865 if (!mips_opts.at)
8fc2e39e 5866 as_bad (_("Macro used $at after \".set noat\""));
885add95
CD
5867 }
5868}
5869
252b5132
RH
5870/* set_at()
5871 * Generates code to set the $at register to true (one)
5872 * if reg is less than the immediate expression.
5873 */
5874static void
67c0d1eb 5875set_at (int reg, int unsignedp)
252b5132
RH
5876{
5877 if (imm_expr.X_op == O_constant
5878 && imm_expr.X_add_number >= -0x8000
5879 && imm_expr.X_add_number < 0x8000)
67c0d1eb
RS
5880 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
5881 AT, reg, BFD_RELOC_LO16);
252b5132
RH
5882 else
5883 {
67c0d1eb
RS
5884 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5885 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
252b5132
RH
5886 }
5887}
5888
5889/* Warn if an expression is not a constant. */
5890
5891static void
17a2f251 5892check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
252b5132
RH
5893{
5894 if (ex->X_op == O_big)
5895 as_bad (_("unsupported large constant"));
5896 else if (ex->X_op != O_constant)
9ee2a2d4
MR
5897 as_bad (_("Instruction %s requires absolute expression"),
5898 ip->insn_mo->name);
13757d0c 5899
9ee2a2d4
MR
5900 if (HAVE_32BIT_GPRS)
5901 normalize_constant_expr (ex);
252b5132
RH
5902}
5903
5904/* Count the leading zeroes by performing a binary chop. This is a
5905 bulky bit of source, but performance is a LOT better for the
5906 majority of values than a simple loop to count the bits:
5907 for (lcnt = 0; (lcnt < 32); lcnt++)
5908 if ((v) & (1 << (31 - lcnt)))
5909 break;
5910 However it is not code size friendly, and the gain will drop a bit
5911 on certain cached systems.
5912*/
5913#define COUNT_TOP_ZEROES(v) \
5914 (((v) & ~0xffff) == 0 \
5915 ? ((v) & ~0xff) == 0 \
5916 ? ((v) & ~0xf) == 0 \
5917 ? ((v) & ~0x3) == 0 \
5918 ? ((v) & ~0x1) == 0 \
5919 ? !(v) \
5920 ? 32 \
5921 : 31 \
5922 : 30 \
5923 : ((v) & ~0x7) == 0 \
5924 ? 29 \
5925 : 28 \
5926 : ((v) & ~0x3f) == 0 \
5927 ? ((v) & ~0x1f) == 0 \
5928 ? 27 \
5929 : 26 \
5930 : ((v) & ~0x7f) == 0 \
5931 ? 25 \
5932 : 24 \
5933 : ((v) & ~0xfff) == 0 \
5934 ? ((v) & ~0x3ff) == 0 \
5935 ? ((v) & ~0x1ff) == 0 \
5936 ? 23 \
5937 : 22 \
5938 : ((v) & ~0x7ff) == 0 \
5939 ? 21 \
5940 : 20 \
5941 : ((v) & ~0x3fff) == 0 \
5942 ? ((v) & ~0x1fff) == 0 \
5943 ? 19 \
5944 : 18 \
5945 : ((v) & ~0x7fff) == 0 \
5946 ? 17 \
5947 : 16 \
5948 : ((v) & ~0xffffff) == 0 \
5949 ? ((v) & ~0xfffff) == 0 \
5950 ? ((v) & ~0x3ffff) == 0 \
5951 ? ((v) & ~0x1ffff) == 0 \
5952 ? 15 \
5953 : 14 \
5954 : ((v) & ~0x7ffff) == 0 \
5955 ? 13 \
5956 : 12 \
5957 : ((v) & ~0x3fffff) == 0 \
5958 ? ((v) & ~0x1fffff) == 0 \
5959 ? 11 \
5960 : 10 \
5961 : ((v) & ~0x7fffff) == 0 \
5962 ? 9 \
5963 : 8 \
5964 : ((v) & ~0xfffffff) == 0 \
5965 ? ((v) & ~0x3ffffff) == 0 \
5966 ? ((v) & ~0x1ffffff) == 0 \
5967 ? 7 \
5968 : 6 \
5969 : ((v) & ~0x7ffffff) == 0 \
5970 ? 5 \
5971 : 4 \
5972 : ((v) & ~0x3fffffff) == 0 \
5973 ? ((v) & ~0x1fffffff) == 0 \
5974 ? 3 \
5975 : 2 \
5976 : ((v) & ~0x7fffffff) == 0 \
5977 ? 1 \
5978 : 0)
5979
5980/* load_register()
67c1ffbe 5981 * This routine generates the least number of instructions necessary to load
252b5132
RH
5982 * an absolute expression value into a register.
5983 */
5984static void
67c0d1eb 5985load_register (int reg, expressionS *ep, int dbl)
252b5132
RH
5986{
5987 int freg;
5988 expressionS hi32, lo32;
5989
5990 if (ep->X_op != O_big)
5991 {
9c2799c2 5992 gas_assert (ep->X_op == O_constant);
256ab948
TS
5993
5994 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
5995 if (!dbl)
5996 normalize_constant_expr (ep);
256ab948
TS
5997
5998 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
252b5132
RH
5999 {
6000 /* We can handle 16 bit signed values with an addiu to
6001 $zero. No need to ever use daddiu here, since $zero and
6002 the result are always correct in 32 bit mode. */
67c0d1eb 6003 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
6004 return;
6005 }
6006 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
6007 {
6008 /* We can handle 16 bit unsigned values with an ori to
6009 $zero. */
67c0d1eb 6010 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
252b5132
RH
6011 return;
6012 }
256ab948 6013 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
252b5132
RH
6014 {
6015 /* 32 bit values require an lui. */
df58fc94 6016 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
252b5132 6017 if ((ep->X_add_number & 0xffff) != 0)
67c0d1eb 6018 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
252b5132
RH
6019 return;
6020 }
6021 }
6022
6023 /* The value is larger than 32 bits. */
6024
2051e8c4 6025 if (!dbl || HAVE_32BIT_GPRS)
252b5132 6026 {
55e08f71
NC
6027 char value[32];
6028
6029 sprintf_vma (value, ep->X_add_number);
20e1fcfd 6030 as_bad (_("Number (0x%s) larger than 32 bits"), value);
67c0d1eb 6031 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
6032 return;
6033 }
6034
6035 if (ep->X_op != O_big)
6036 {
6037 hi32 = *ep;
6038 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
6039 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
6040 hi32.X_add_number &= 0xffffffff;
6041 lo32 = *ep;
6042 lo32.X_add_number &= 0xffffffff;
6043 }
6044 else
6045 {
9c2799c2 6046 gas_assert (ep->X_add_number > 2);
252b5132
RH
6047 if (ep->X_add_number == 3)
6048 generic_bignum[3] = 0;
6049 else if (ep->X_add_number > 4)
6050 as_bad (_("Number larger than 64 bits"));
6051 lo32.X_op = O_constant;
6052 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
6053 hi32.X_op = O_constant;
6054 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
6055 }
6056
6057 if (hi32.X_add_number == 0)
6058 freg = 0;
6059 else
6060 {
6061 int shift, bit;
6062 unsigned long hi, lo;
6063
956cd1d6 6064 if (hi32.X_add_number == (offsetT) 0xffffffff)
beae10d5
KH
6065 {
6066 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
6067 {
67c0d1eb 6068 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
6069 return;
6070 }
6071 if (lo32.X_add_number & 0x80000000)
6072 {
df58fc94 6073 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
252b5132 6074 if (lo32.X_add_number & 0xffff)
67c0d1eb 6075 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
beae10d5
KH
6076 return;
6077 }
6078 }
252b5132
RH
6079
6080 /* Check for 16bit shifted constant. We know that hi32 is
6081 non-zero, so start the mask on the first bit of the hi32
6082 value. */
6083 shift = 17;
6084 do
beae10d5
KH
6085 {
6086 unsigned long himask, lomask;
6087
6088 if (shift < 32)
6089 {
6090 himask = 0xffff >> (32 - shift);
6091 lomask = (0xffff << shift) & 0xffffffff;
6092 }
6093 else
6094 {
6095 himask = 0xffff << (shift - 32);
6096 lomask = 0;
6097 }
6098 if ((hi32.X_add_number & ~(offsetT) himask) == 0
6099 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
6100 {
6101 expressionS tmp;
6102
6103 tmp.X_op = O_constant;
6104 if (shift < 32)
6105 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
6106 | (lo32.X_add_number >> shift));
6107 else
6108 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
67c0d1eb 6109 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
df58fc94 6110 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", SHFT_FMT,
67c0d1eb 6111 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
6112 return;
6113 }
f9419b05 6114 ++shift;
beae10d5
KH
6115 }
6116 while (shift <= (64 - 16));
252b5132
RH
6117
6118 /* Find the bit number of the lowest one bit, and store the
6119 shifted value in hi/lo. */
6120 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
6121 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
6122 if (lo != 0)
6123 {
6124 bit = 0;
6125 while ((lo & 1) == 0)
6126 {
6127 lo >>= 1;
6128 ++bit;
6129 }
6130 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
6131 hi >>= bit;
6132 }
6133 else
6134 {
6135 bit = 32;
6136 while ((hi & 1) == 0)
6137 {
6138 hi >>= 1;
6139 ++bit;
6140 }
6141 lo = hi;
6142 hi = 0;
6143 }
6144
6145 /* Optimize if the shifted value is a (power of 2) - 1. */
6146 if ((hi == 0 && ((lo + 1) & lo) == 0)
6147 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
beae10d5
KH
6148 {
6149 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
252b5132 6150 if (shift != 0)
beae10d5 6151 {
252b5132
RH
6152 expressionS tmp;
6153
6154 /* This instruction will set the register to be all
6155 ones. */
beae10d5
KH
6156 tmp.X_op = O_constant;
6157 tmp.X_add_number = (offsetT) -1;
67c0d1eb 6158 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
6159 if (bit != 0)
6160 {
6161 bit += shift;
df58fc94 6162 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", SHFT_FMT,
67c0d1eb 6163 reg, reg, (bit >= 32) ? bit - 32 : bit);
beae10d5 6164 }
df58fc94 6165 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", SHFT_FMT,
67c0d1eb 6166 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
6167 return;
6168 }
6169 }
252b5132
RH
6170
6171 /* Sign extend hi32 before calling load_register, because we can
6172 generally get better code when we load a sign extended value. */
6173 if ((hi32.X_add_number & 0x80000000) != 0)
beae10d5 6174 hi32.X_add_number |= ~(offsetT) 0xffffffff;
67c0d1eb 6175 load_register (reg, &hi32, 0);
252b5132
RH
6176 freg = reg;
6177 }
6178 if ((lo32.X_add_number & 0xffff0000) == 0)
6179 {
6180 if (freg != 0)
6181 {
df58fc94 6182 macro_build (NULL, "dsll32", SHFT_FMT, reg, freg, 0);
252b5132
RH
6183 freg = reg;
6184 }
6185 }
6186 else
6187 {
6188 expressionS mid16;
6189
956cd1d6 6190 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
beae10d5 6191 {
df58fc94
RS
6192 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
6193 macro_build (NULL, "dsrl32", SHFT_FMT, reg, reg, 0);
beae10d5
KH
6194 return;
6195 }
252b5132
RH
6196
6197 if (freg != 0)
6198 {
df58fc94 6199 macro_build (NULL, "dsll", SHFT_FMT, reg, freg, 16);
252b5132
RH
6200 freg = reg;
6201 }
6202 mid16 = lo32;
6203 mid16.X_add_number >>= 16;
67c0d1eb 6204 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
df58fc94 6205 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
252b5132
RH
6206 freg = reg;
6207 }
6208 if ((lo32.X_add_number & 0xffff) != 0)
67c0d1eb 6209 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
252b5132
RH
6210}
6211
269137b2
TS
6212static inline void
6213load_delay_nop (void)
6214{
6215 if (!gpr_interlocks)
6216 macro_build (NULL, "nop", "");
6217}
6218
252b5132
RH
6219/* Load an address into a register. */
6220
6221static void
67c0d1eb 6222load_address (int reg, expressionS *ep, int *used_at)
252b5132 6223{
252b5132
RH
6224 if (ep->X_op != O_constant
6225 && ep->X_op != O_symbol)
6226 {
6227 as_bad (_("expression too complex"));
6228 ep->X_op = O_constant;
6229 }
6230
6231 if (ep->X_op == O_constant)
6232 {
67c0d1eb 6233 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
252b5132
RH
6234 return;
6235 }
6236
6237 if (mips_pic == NO_PIC)
6238 {
6239 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 6240 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
6241 Otherwise we want
6242 lui $reg,<sym> (BFD_RELOC_HI16_S)
6243 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
d6bc6245 6244 If we have an addend, we always use the latter form.
76b3015f 6245
d6bc6245
TS
6246 With 64bit address space and a usable $at we want
6247 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6248 lui $at,<sym> (BFD_RELOC_HI16_S)
6249 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
6250 daddiu $at,<sym> (BFD_RELOC_LO16)
6251 dsll32 $reg,0
3a482fd5 6252 daddu $reg,$reg,$at
76b3015f 6253
c03099e6 6254 If $at is already in use, we use a path which is suboptimal
d6bc6245
TS
6255 on superscalar processors.
6256 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6257 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
6258 dsll $reg,16
6259 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
6260 dsll $reg,16
6261 daddiu $reg,<sym> (BFD_RELOC_LO16)
6caf9ef4
TS
6262
6263 For GP relative symbols in 64bit address space we can use
6264 the same sequence as in 32bit address space. */
aed1a261 6265 if (HAVE_64BIT_SYMBOLS)
d6bc6245 6266 {
6caf9ef4
TS
6267 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6268 && !nopic_need_relax (ep->X_add_symbol, 1))
6269 {
6270 relax_start (ep->X_add_symbol);
6271 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
6272 mips_gp_register, BFD_RELOC_GPREL16);
6273 relax_switch ();
6274 }
d6bc6245 6275
741fe287 6276 if (*used_at == 0 && mips_opts.at)
d6bc6245 6277 {
df58fc94
RS
6278 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
6279 macro_build (ep, "lui", LUI_FMT, AT, BFD_RELOC_HI16_S);
67c0d1eb
RS
6280 macro_build (ep, "daddiu", "t,r,j", reg, reg,
6281 BFD_RELOC_MIPS_HIGHER);
6282 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
df58fc94 6283 macro_build (NULL, "dsll32", SHFT_FMT, reg, reg, 0);
67c0d1eb 6284 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
d6bc6245
TS
6285 *used_at = 1;
6286 }
6287 else
6288 {
df58fc94 6289 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb
RS
6290 macro_build (ep, "daddiu", "t,r,j", reg, reg,
6291 BFD_RELOC_MIPS_HIGHER);
df58fc94 6292 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
67c0d1eb 6293 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
df58fc94 6294 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
67c0d1eb 6295 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
d6bc6245 6296 }
6caf9ef4
TS
6297
6298 if (mips_relax.sequence)
6299 relax_end ();
d6bc6245 6300 }
252b5132
RH
6301 else
6302 {
d6bc6245 6303 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 6304 && !nopic_need_relax (ep->X_add_symbol, 1))
d6bc6245 6305 {
4d7206a2 6306 relax_start (ep->X_add_symbol);
67c0d1eb 6307 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
17a2f251 6308 mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 6309 relax_switch ();
d6bc6245 6310 }
67c0d1eb
RS
6311 macro_build_lui (ep, reg);
6312 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
6313 reg, reg, BFD_RELOC_LO16);
4d7206a2
RS
6314 if (mips_relax.sequence)
6315 relax_end ();
d6bc6245 6316 }
252b5132 6317 }
0a44bf69 6318 else if (!mips_big_got)
252b5132
RH
6319 {
6320 expressionS ex;
6321
6322 /* If this is a reference to an external symbol, we want
6323 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6324 Otherwise we want
6325 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6326 nop
6327 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
f5040a92
AO
6328 If there is a constant, it must be added in after.
6329
ed6fb7bd 6330 If we have NewABI, we want
f5040a92
AO
6331 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
6332 unless we're referencing a global symbol with a non-zero
6333 offset, in which case cst must be added separately. */
ed6fb7bd
SC
6334 if (HAVE_NEWABI)
6335 {
f5040a92
AO
6336 if (ep->X_add_number)
6337 {
4d7206a2 6338 ex.X_add_number = ep->X_add_number;
f5040a92 6339 ep->X_add_number = 0;
4d7206a2 6340 relax_start (ep->X_add_symbol);
67c0d1eb
RS
6341 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6342 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
6343 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6344 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6345 ex.X_op = O_constant;
67c0d1eb 6346 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 6347 reg, reg, BFD_RELOC_LO16);
f5040a92 6348 ep->X_add_number = ex.X_add_number;
4d7206a2 6349 relax_switch ();
f5040a92 6350 }
67c0d1eb 6351 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 6352 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2
RS
6353 if (mips_relax.sequence)
6354 relax_end ();
ed6fb7bd
SC
6355 }
6356 else
6357 {
f5040a92
AO
6358 ex.X_add_number = ep->X_add_number;
6359 ep->X_add_number = 0;
67c0d1eb
RS
6360 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6361 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 6362 load_delay_nop ();
4d7206a2
RS
6363 relax_start (ep->X_add_symbol);
6364 relax_switch ();
67c0d1eb 6365 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 6366 BFD_RELOC_LO16);
4d7206a2 6367 relax_end ();
ed6fb7bd 6368
f5040a92
AO
6369 if (ex.X_add_number != 0)
6370 {
6371 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6372 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6373 ex.X_op = O_constant;
67c0d1eb 6374 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 6375 reg, reg, BFD_RELOC_LO16);
f5040a92 6376 }
252b5132
RH
6377 }
6378 }
0a44bf69 6379 else if (mips_big_got)
252b5132
RH
6380 {
6381 expressionS ex;
252b5132
RH
6382
6383 /* This is the large GOT case. If this is a reference to an
6384 external symbol, we want
6385 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6386 addu $reg,$reg,$gp
6387 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
f5040a92
AO
6388
6389 Otherwise, for a reference to a local symbol in old ABI, we want
252b5132
RH
6390 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6391 nop
6392 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
684022ea 6393 If there is a constant, it must be added in after.
f5040a92
AO
6394
6395 In the NewABI, for local symbols, with or without offsets, we want:
438c16b8
TS
6396 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6397 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
f5040a92 6398 */
438c16b8
TS
6399 if (HAVE_NEWABI)
6400 {
4d7206a2 6401 ex.X_add_number = ep->X_add_number;
f5040a92 6402 ep->X_add_number = 0;
4d7206a2 6403 relax_start (ep->X_add_symbol);
df58fc94 6404 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
6405 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6406 reg, reg, mips_gp_register);
6407 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
6408 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
f5040a92
AO
6409 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6410 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6411 else if (ex.X_add_number)
6412 {
6413 ex.X_op = O_constant;
67c0d1eb
RS
6414 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6415 BFD_RELOC_LO16);
f5040a92
AO
6416 }
6417
6418 ep->X_add_number = ex.X_add_number;
4d7206a2 6419 relax_switch ();
67c0d1eb 6420 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 6421 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
67c0d1eb
RS
6422 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6423 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 6424 relax_end ();
438c16b8 6425 }
252b5132 6426 else
438c16b8 6427 {
f5040a92
AO
6428 ex.X_add_number = ep->X_add_number;
6429 ep->X_add_number = 0;
4d7206a2 6430 relax_start (ep->X_add_symbol);
df58fc94 6431 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
6432 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6433 reg, reg, mips_gp_register);
6434 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
6435 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4d7206a2
RS
6436 relax_switch ();
6437 if (reg_needs_delay (mips_gp_register))
438c16b8
TS
6438 {
6439 /* We need a nop before loading from $gp. This special
6440 check is required because the lui which starts the main
6441 instruction stream does not refer to $gp, and so will not
6442 insert the nop which may be required. */
67c0d1eb 6443 macro_build (NULL, "nop", "");
438c16b8 6444 }
67c0d1eb 6445 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 6446 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 6447 load_delay_nop ();
67c0d1eb 6448 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 6449 BFD_RELOC_LO16);
4d7206a2 6450 relax_end ();
438c16b8 6451
f5040a92
AO
6452 if (ex.X_add_number != 0)
6453 {
6454 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6455 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6456 ex.X_op = O_constant;
67c0d1eb
RS
6457 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6458 BFD_RELOC_LO16);
f5040a92 6459 }
252b5132
RH
6460 }
6461 }
252b5132
RH
6462 else
6463 abort ();
8fc2e39e 6464
741fe287 6465 if (!mips_opts.at && *used_at == 1)
8fc2e39e 6466 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
6467}
6468
ea1fb5dc
RS
6469/* Move the contents of register SOURCE into register DEST. */
6470
6471static void
67c0d1eb 6472move_register (int dest, int source)
ea1fb5dc 6473{
df58fc94
RS
6474 /* Prefer to use a 16-bit microMIPS instruction unless the previous
6475 instruction specifically requires a 32-bit one. */
6476 if (mips_opts.micromips
833794fc 6477 && !mips_opts.insn32
df58fc94 6478 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
7951ca42 6479 macro_build (NULL, "move", "mp,mj", dest, source);
df58fc94
RS
6480 else
6481 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
6482 dest, source, 0);
ea1fb5dc
RS
6483}
6484
4d7206a2 6485/* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
f6a22291
MR
6486 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
6487 The two alternatives are:
4d7206a2
RS
6488
6489 Global symbol Local sybmol
6490 ------------- ------------
6491 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
6492 ... ...
6493 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
6494
6495 load_got_offset emits the first instruction and add_got_offset
f6a22291
MR
6496 emits the second for a 16-bit offset or add_got_offset_hilo emits
6497 a sequence to add a 32-bit offset using a scratch register. */
4d7206a2
RS
6498
6499static void
67c0d1eb 6500load_got_offset (int dest, expressionS *local)
4d7206a2
RS
6501{
6502 expressionS global;
6503
6504 global = *local;
6505 global.X_add_number = 0;
6506
6507 relax_start (local->X_add_symbol);
67c0d1eb
RS
6508 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
6509 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2 6510 relax_switch ();
67c0d1eb
RS
6511 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
6512 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2
RS
6513 relax_end ();
6514}
6515
6516static void
67c0d1eb 6517add_got_offset (int dest, expressionS *local)
4d7206a2
RS
6518{
6519 expressionS global;
6520
6521 global.X_op = O_constant;
6522 global.X_op_symbol = NULL;
6523 global.X_add_symbol = NULL;
6524 global.X_add_number = local->X_add_number;
6525
6526 relax_start (local->X_add_symbol);
67c0d1eb 6527 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4d7206a2
RS
6528 dest, dest, BFD_RELOC_LO16);
6529 relax_switch ();
67c0d1eb 6530 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4d7206a2
RS
6531 relax_end ();
6532}
6533
f6a22291
MR
6534static void
6535add_got_offset_hilo (int dest, expressionS *local, int tmp)
6536{
6537 expressionS global;
6538 int hold_mips_optimize;
6539
6540 global.X_op = O_constant;
6541 global.X_op_symbol = NULL;
6542 global.X_add_symbol = NULL;
6543 global.X_add_number = local->X_add_number;
6544
6545 relax_start (local->X_add_symbol);
6546 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
6547 relax_switch ();
6548 /* Set mips_optimize around the lui instruction to avoid
6549 inserting an unnecessary nop after the lw. */
6550 hold_mips_optimize = mips_optimize;
6551 mips_optimize = 2;
6552 macro_build_lui (&global, tmp);
6553 mips_optimize = hold_mips_optimize;
6554 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
6555 relax_end ();
6556
6557 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
6558}
6559
df58fc94
RS
6560/* Emit a sequence of instructions to emulate a branch likely operation.
6561 BR is an ordinary branch corresponding to one to be emulated. BRNEG
6562 is its complementing branch with the original condition negated.
6563 CALL is set if the original branch specified the link operation.
6564 EP, FMT, SREG and TREG specify the usual macro_build() parameters.
6565
6566 Code like this is produced in the noreorder mode:
6567
6568 BRNEG <args>, 1f
6569 nop
6570 b <sym>
6571 delay slot (executed only if branch taken)
6572 1:
6573
6574 or, if CALL is set:
6575
6576 BRNEG <args>, 1f
6577 nop
6578 bal <sym>
6579 delay slot (executed only if branch taken)
6580 1:
6581
6582 In the reorder mode the delay slot would be filled with a nop anyway,
6583 so code produced is simply:
6584
6585 BR <args>, <sym>
6586 nop
6587
6588 This function is used when producing code for the microMIPS ASE that
6589 does not implement branch likely instructions in hardware. */
6590
6591static void
6592macro_build_branch_likely (const char *br, const char *brneg,
6593 int call, expressionS *ep, const char *fmt,
6594 unsigned int sreg, unsigned int treg)
6595{
6596 int noreorder = mips_opts.noreorder;
6597 expressionS expr1;
6598
6599 gas_assert (mips_opts.micromips);
6600 start_noreorder ();
6601 if (noreorder)
6602 {
6603 micromips_label_expr (&expr1);
6604 macro_build (&expr1, brneg, fmt, sreg, treg);
6605 macro_build (NULL, "nop", "");
6606 macro_build (ep, call ? "bal" : "b", "p");
6607
6608 /* Set to true so that append_insn adds a label. */
6609 emit_branch_likely_macro = TRUE;
6610 }
6611 else
6612 {
6613 macro_build (ep, br, fmt, sreg, treg);
6614 macro_build (NULL, "nop", "");
6615 }
6616 end_noreorder ();
6617}
6618
6619/* Emit a coprocessor branch-likely macro specified by TYPE, using CC as
6620 the condition code tested. EP specifies the branch target. */
6621
6622static void
6623macro_build_branch_ccl (int type, expressionS *ep, unsigned int cc)
6624{
6625 const int call = 0;
6626 const char *brneg;
6627 const char *br;
6628
6629 switch (type)
6630 {
6631 case M_BC1FL:
6632 br = "bc1f";
6633 brneg = "bc1t";
6634 break;
6635 case M_BC1TL:
6636 br = "bc1t";
6637 brneg = "bc1f";
6638 break;
6639 case M_BC2FL:
6640 br = "bc2f";
6641 brneg = "bc2t";
6642 break;
6643 case M_BC2TL:
6644 br = "bc2t";
6645 brneg = "bc2f";
6646 break;
6647 default:
6648 abort ();
6649 }
6650 macro_build_branch_likely (br, brneg, call, ep, "N,p", cc, ZERO);
6651}
6652
6653/* Emit a two-argument branch macro specified by TYPE, using SREG as
6654 the register tested. EP specifies the branch target. */
6655
6656static void
6657macro_build_branch_rs (int type, expressionS *ep, unsigned int sreg)
6658{
6659 const char *brneg = NULL;
6660 const char *br;
6661 int call = 0;
6662
6663 switch (type)
6664 {
6665 case M_BGEZ:
6666 br = "bgez";
6667 break;
6668 case M_BGEZL:
6669 br = mips_opts.micromips ? "bgez" : "bgezl";
6670 brneg = "bltz";
6671 break;
6672 case M_BGEZALL:
6673 gas_assert (mips_opts.micromips);
833794fc 6674 br = mips_opts.insn32 ? "bgezal" : "bgezals";
df58fc94
RS
6675 brneg = "bltz";
6676 call = 1;
6677 break;
6678 case M_BGTZ:
6679 br = "bgtz";
6680 break;
6681 case M_BGTZL:
6682 br = mips_opts.micromips ? "bgtz" : "bgtzl";
6683 brneg = "blez";
6684 break;
6685 case M_BLEZ:
6686 br = "blez";
6687 break;
6688 case M_BLEZL:
6689 br = mips_opts.micromips ? "blez" : "blezl";
6690 brneg = "bgtz";
6691 break;
6692 case M_BLTZ:
6693 br = "bltz";
6694 break;
6695 case M_BLTZL:
6696 br = mips_opts.micromips ? "bltz" : "bltzl";
6697 brneg = "bgez";
6698 break;
6699 case M_BLTZALL:
6700 gas_assert (mips_opts.micromips);
833794fc 6701 br = mips_opts.insn32 ? "bltzal" : "bltzals";
df58fc94
RS
6702 brneg = "bgez";
6703 call = 1;
6704 break;
6705 default:
6706 abort ();
6707 }
6708 if (mips_opts.micromips && brneg)
6709 macro_build_branch_likely (br, brneg, call, ep, "s,p", sreg, ZERO);
6710 else
6711 macro_build (ep, br, "s,p", sreg);
6712}
6713
6714/* Emit a three-argument branch macro specified by TYPE, using SREG and
6715 TREG as the registers tested. EP specifies the branch target. */
6716
6717static void
6718macro_build_branch_rsrt (int type, expressionS *ep,
6719 unsigned int sreg, unsigned int treg)
6720{
6721 const char *brneg = NULL;
6722 const int call = 0;
6723 const char *br;
6724
6725 switch (type)
6726 {
6727 case M_BEQ:
6728 case M_BEQ_I:
6729 br = "beq";
6730 break;
6731 case M_BEQL:
6732 case M_BEQL_I:
6733 br = mips_opts.micromips ? "beq" : "beql";
6734 brneg = "bne";
6735 break;
6736 case M_BNE:
6737 case M_BNE_I:
6738 br = "bne";
6739 break;
6740 case M_BNEL:
6741 case M_BNEL_I:
6742 br = mips_opts.micromips ? "bne" : "bnel";
6743 brneg = "beq";
6744 break;
6745 default:
6746 abort ();
6747 }
6748 if (mips_opts.micromips && brneg)
6749 macro_build_branch_likely (br, brneg, call, ep, "s,t,p", sreg, treg);
6750 else
6751 macro_build (ep, br, "s,t,p", sreg, treg);
6752}
6753
f2ae14a1
RS
6754/* Return the high part that should be loaded in order to make the low
6755 part of VALUE accessible using an offset of OFFBITS bits. */
6756
6757static offsetT
6758offset_high_part (offsetT value, unsigned int offbits)
6759{
6760 offsetT bias;
6761 addressT low_mask;
6762
6763 if (offbits == 0)
6764 return value;
6765 bias = 1 << (offbits - 1);
6766 low_mask = bias * 2 - 1;
6767 return (value + bias) & ~low_mask;
6768}
6769
6770/* Return true if the value stored in offset_expr and offset_reloc
6771 fits into a signed offset of OFFBITS bits. RANGE is the maximum
6772 amount that the caller wants to add without inducing overflow
6773 and ALIGN is the known alignment of the value in bytes. */
6774
6775static bfd_boolean
6776small_offset_p (unsigned int range, unsigned int align, unsigned int offbits)
6777{
6778 if (offbits == 16)
6779 {
6780 /* Accept any relocation operator if overflow isn't a concern. */
6781 if (range < align && *offset_reloc != BFD_RELOC_UNUSED)
6782 return TRUE;
6783
6784 /* These relocations are guaranteed not to overflow in correct links. */
6785 if (*offset_reloc == BFD_RELOC_MIPS_LITERAL
6786 || gprel16_reloc_p (*offset_reloc))
6787 return TRUE;
6788 }
6789 if (offset_expr.X_op == O_constant
6790 && offset_high_part (offset_expr.X_add_number, offbits) == 0
6791 && offset_high_part (offset_expr.X_add_number + range, offbits) == 0)
6792 return TRUE;
6793 return FALSE;
6794}
6795
252b5132
RH
6796/*
6797 * Build macros
6798 * This routine implements the seemingly endless macro or synthesized
6799 * instructions and addressing modes in the mips assembly language. Many
6800 * of these macros are simple and are similar to each other. These could
67c1ffbe 6801 * probably be handled by some kind of table or grammar approach instead of
252b5132
RH
6802 * this verbose method. Others are not simple macros but are more like
6803 * optimizing code generation.
6804 * One interesting optimization is when several store macros appear
67c1ffbe 6805 * consecutively that would load AT with the upper half of the same address.
252b5132
RH
6806 * The ensuing load upper instructions are ommited. This implies some kind
6807 * of global optimization. We currently only optimize within a single macro.
6808 * For many of the load and store macros if the address is specified as a
6809 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
6810 * first load register 'at' with zero and use it as the base register. The
6811 * mips assembler simply uses register $zero. Just one tiny optimization
6812 * we're missing.
6813 */
6814static void
833794fc 6815macro (struct mips_cl_insn *ip, char *str)
252b5132 6816{
741fe287
MR
6817 unsigned int treg, sreg, dreg, breg;
6818 unsigned int tempreg;
252b5132 6819 int mask;
43841e91 6820 int used_at = 0;
df58fc94 6821 expressionS label_expr;
252b5132 6822 expressionS expr1;
df58fc94 6823 expressionS *ep;
252b5132
RH
6824 const char *s;
6825 const char *s2;
6826 const char *fmt;
6827 int likely = 0;
252b5132 6828 int coproc = 0;
7f3c4072 6829 int offbits = 16;
1abe91b1 6830 int call = 0;
df58fc94
RS
6831 int jals = 0;
6832 int dbl = 0;
6833 int imm = 0;
6834 int ust = 0;
6835 int lp = 0;
f2ae14a1 6836 bfd_boolean large_offset;
252b5132 6837 int off;
252b5132 6838 int hold_mips_optimize;
f2ae14a1 6839 unsigned int align;
252b5132 6840
9c2799c2 6841 gas_assert (! mips_opts.mips16);
252b5132 6842
df58fc94
RS
6843 treg = EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
6844 dreg = EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
6845 sreg = breg = EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
252b5132
RH
6846 mask = ip->insn_mo->mask;
6847
df58fc94
RS
6848 label_expr.X_op = O_constant;
6849 label_expr.X_op_symbol = NULL;
6850 label_expr.X_add_symbol = NULL;
6851 label_expr.X_add_number = 0;
6852
252b5132
RH
6853 expr1.X_op = O_constant;
6854 expr1.X_op_symbol = NULL;
6855 expr1.X_add_symbol = NULL;
6856 expr1.X_add_number = 1;
f2ae14a1 6857 align = 1;
252b5132
RH
6858
6859 switch (mask)
6860 {
6861 case M_DABS:
6862 dbl = 1;
6863 case M_ABS:
df58fc94
RS
6864 /* bgez $a0,1f
6865 move v0,$a0
6866 sub v0,$zero,$a0
6867 1:
6868 */
252b5132 6869
7d10b47d 6870 start_noreorder ();
252b5132 6871
df58fc94
RS
6872 if (mips_opts.micromips)
6873 micromips_label_expr (&label_expr);
6874 else
6875 label_expr.X_add_number = 8;
6876 macro_build (&label_expr, "bgez", "s,p", sreg);
252b5132 6877 if (dreg == sreg)
a605d2b3 6878 macro_build (NULL, "nop", "");
252b5132 6879 else
67c0d1eb
RS
6880 move_register (dreg, sreg);
6881 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
df58fc94
RS
6882 if (mips_opts.micromips)
6883 micromips_add_label ();
252b5132 6884
7d10b47d 6885 end_noreorder ();
8fc2e39e 6886 break;
252b5132
RH
6887
6888 case M_ADD_I:
6889 s = "addi";
6890 s2 = "add";
6891 goto do_addi;
6892 case M_ADDU_I:
6893 s = "addiu";
6894 s2 = "addu";
6895 goto do_addi;
6896 case M_DADD_I:
6897 dbl = 1;
6898 s = "daddi";
6899 s2 = "dadd";
df58fc94
RS
6900 if (!mips_opts.micromips)
6901 goto do_addi;
6902 if (imm_expr.X_op == O_constant
6903 && imm_expr.X_add_number >= -0x200
6904 && imm_expr.X_add_number < 0x200)
6905 {
6906 macro_build (NULL, s, "t,r,.", treg, sreg, imm_expr.X_add_number);
6907 break;
6908 }
6909 goto do_addi_i;
252b5132
RH
6910 case M_DADDU_I:
6911 dbl = 1;
6912 s = "daddiu";
6913 s2 = "daddu";
6914 do_addi:
6915 if (imm_expr.X_op == O_constant
6916 && imm_expr.X_add_number >= -0x8000
6917 && imm_expr.X_add_number < 0x8000)
6918 {
67c0d1eb 6919 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
8fc2e39e 6920 break;
252b5132 6921 }
df58fc94 6922 do_addi_i:
8fc2e39e 6923 used_at = 1;
67c0d1eb
RS
6924 load_register (AT, &imm_expr, dbl);
6925 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
6926 break;
6927
6928 case M_AND_I:
6929 s = "andi";
6930 s2 = "and";
6931 goto do_bit;
6932 case M_OR_I:
6933 s = "ori";
6934 s2 = "or";
6935 goto do_bit;
6936 case M_NOR_I:
6937 s = "";
6938 s2 = "nor";
6939 goto do_bit;
6940 case M_XOR_I:
6941 s = "xori";
6942 s2 = "xor";
6943 do_bit:
6944 if (imm_expr.X_op == O_constant
6945 && imm_expr.X_add_number >= 0
6946 && imm_expr.X_add_number < 0x10000)
6947 {
6948 if (mask != M_NOR_I)
67c0d1eb 6949 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
252b5132
RH
6950 else
6951 {
67c0d1eb
RS
6952 macro_build (&imm_expr, "ori", "t,r,i",
6953 treg, sreg, BFD_RELOC_LO16);
6954 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
252b5132 6955 }
8fc2e39e 6956 break;
252b5132
RH
6957 }
6958
8fc2e39e 6959 used_at = 1;
67c0d1eb
RS
6960 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
6961 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
6962 break;
6963
8b082fb1
TS
6964 case M_BALIGN:
6965 switch (imm_expr.X_add_number)
6966 {
6967 case 0:
6968 macro_build (NULL, "nop", "");
6969 break;
6970 case 2:
6971 macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
6972 break;
03f66e8a
MR
6973 case 1:
6974 case 3:
8b082fb1 6975 macro_build (NULL, "balign", "t,s,2", treg, sreg,
90ecf173 6976 (int) imm_expr.X_add_number);
8b082fb1 6977 break;
03f66e8a
MR
6978 default:
6979 as_bad (_("BALIGN immediate not 0, 1, 2 or 3 (%lu)"),
6980 (unsigned long) imm_expr.X_add_number);
6981 break;
8b082fb1
TS
6982 }
6983 break;
6984
df58fc94
RS
6985 case M_BC1FL:
6986 case M_BC1TL:
6987 case M_BC2FL:
6988 case M_BC2TL:
6989 gas_assert (mips_opts.micromips);
6990 macro_build_branch_ccl (mask, &offset_expr,
6991 EXTRACT_OPERAND (1, BCC, *ip));
6992 break;
6993
252b5132 6994 case M_BEQ_I:
252b5132 6995 case M_BEQL_I:
252b5132 6996 case M_BNE_I:
252b5132 6997 case M_BNEL_I:
252b5132 6998 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
df58fc94
RS
6999 treg = 0;
7000 else
252b5132 7001 {
df58fc94
RS
7002 treg = AT;
7003 used_at = 1;
7004 load_register (treg, &imm_expr, HAVE_64BIT_GPRS);
252b5132 7005 }
df58fc94
RS
7006 /* Fall through. */
7007 case M_BEQL:
7008 case M_BNEL:
7009 macro_build_branch_rsrt (mask, &offset_expr, sreg, treg);
252b5132
RH
7010 break;
7011
7012 case M_BGEL:
7013 likely = 1;
7014 case M_BGE:
7015 if (treg == 0)
df58fc94
RS
7016 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, sreg);
7017 else if (sreg == 0)
7018 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, treg);
7019 else
252b5132 7020 {
df58fc94
RS
7021 used_at = 1;
7022 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
7023 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7024 &offset_expr, AT, ZERO);
252b5132 7025 }
df58fc94
RS
7026 break;
7027
7028 case M_BGEZL:
7029 case M_BGEZALL:
7030 case M_BGTZL:
7031 case M_BLEZL:
7032 case M_BLTZL:
7033 case M_BLTZALL:
7034 macro_build_branch_rs (mask, &offset_expr, sreg);
252b5132
RH
7035 break;
7036
7037 case M_BGTL_I:
7038 likely = 1;
7039 case M_BGT_I:
90ecf173 7040 /* Check for > max integer. */
42429eac 7041 if (imm_expr.X_op == O_constant && imm_expr.X_add_number >= GPR_SMAX)
252b5132
RH
7042 {
7043 do_false:
90ecf173 7044 /* Result is always false. */
252b5132 7045 if (! likely)
a605d2b3 7046 macro_build (NULL, "nop", "");
252b5132 7047 else
df58fc94 7048 macro_build_branch_rsrt (M_BNEL, &offset_expr, ZERO, ZERO);
8fc2e39e 7049 break;
252b5132
RH
7050 }
7051 if (imm_expr.X_op != O_constant)
7052 as_bad (_("Unsupported large constant"));
f9419b05 7053 ++imm_expr.X_add_number;
252b5132
RH
7054 /* FALLTHROUGH */
7055 case M_BGE_I:
7056 case M_BGEL_I:
7057 if (mask == M_BGEL_I)
7058 likely = 1;
7059 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7060 {
df58fc94
RS
7061 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ,
7062 &offset_expr, sreg);
8fc2e39e 7063 break;
252b5132
RH
7064 }
7065 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7066 {
df58fc94
RS
7067 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ,
7068 &offset_expr, sreg);
8fc2e39e 7069 break;
252b5132 7070 }
42429eac 7071 if (imm_expr.X_op == O_constant && imm_expr.X_add_number <= GPR_SMIN)
252b5132
RH
7072 {
7073 do_true:
7074 /* result is always true */
7075 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
67c0d1eb 7076 macro_build (&offset_expr, "b", "p");
8fc2e39e 7077 break;
252b5132 7078 }
8fc2e39e 7079 used_at = 1;
67c0d1eb 7080 set_at (sreg, 0);
df58fc94
RS
7081 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7082 &offset_expr, AT, ZERO);
252b5132
RH
7083 break;
7084
7085 case M_BGEUL:
7086 likely = 1;
7087 case M_BGEU:
7088 if (treg == 0)
7089 goto do_true;
df58fc94
RS
7090 else if (sreg == 0)
7091 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7092 &offset_expr, ZERO, treg);
7093 else
252b5132 7094 {
df58fc94
RS
7095 used_at = 1;
7096 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
7097 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7098 &offset_expr, AT, ZERO);
252b5132 7099 }
252b5132
RH
7100 break;
7101
7102 case M_BGTUL_I:
7103 likely = 1;
7104 case M_BGTU_I:
7105 if (sreg == 0
ca4e0257 7106 || (HAVE_32BIT_GPRS
252b5132 7107 && imm_expr.X_op == O_constant
f01dc953 7108 && imm_expr.X_add_number == -1))
252b5132
RH
7109 goto do_false;
7110 if (imm_expr.X_op != O_constant)
7111 as_bad (_("Unsupported large constant"));
f9419b05 7112 ++imm_expr.X_add_number;
252b5132
RH
7113 /* FALLTHROUGH */
7114 case M_BGEU_I:
7115 case M_BGEUL_I:
7116 if (mask == M_BGEUL_I)
7117 likely = 1;
7118 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7119 goto do_true;
df58fc94
RS
7120 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7121 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7122 &offset_expr, sreg, ZERO);
7123 else
252b5132 7124 {
df58fc94
RS
7125 used_at = 1;
7126 set_at (sreg, 1);
7127 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7128 &offset_expr, AT, ZERO);
252b5132 7129 }
252b5132
RH
7130 break;
7131
7132 case M_BGTL:
7133 likely = 1;
7134 case M_BGT:
7135 if (treg == 0)
df58fc94
RS
7136 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, sreg);
7137 else if (sreg == 0)
7138 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, treg);
7139 else
252b5132 7140 {
df58fc94
RS
7141 used_at = 1;
7142 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
7143 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7144 &offset_expr, AT, ZERO);
252b5132 7145 }
252b5132
RH
7146 break;
7147
7148 case M_BGTUL:
7149 likely = 1;
7150 case M_BGTU:
7151 if (treg == 0)
df58fc94
RS
7152 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7153 &offset_expr, sreg, ZERO);
7154 else if (sreg == 0)
7155 goto do_false;
7156 else
252b5132 7157 {
df58fc94
RS
7158 used_at = 1;
7159 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
7160 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7161 &offset_expr, AT, ZERO);
252b5132 7162 }
252b5132
RH
7163 break;
7164
7165 case M_BLEL:
7166 likely = 1;
7167 case M_BLE:
7168 if (treg == 0)
df58fc94
RS
7169 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
7170 else if (sreg == 0)
7171 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, treg);
7172 else
252b5132 7173 {
df58fc94
RS
7174 used_at = 1;
7175 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
7176 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7177 &offset_expr, AT, ZERO);
252b5132 7178 }
252b5132
RH
7179 break;
7180
7181 case M_BLEL_I:
7182 likely = 1;
7183 case M_BLE_I:
42429eac 7184 if (imm_expr.X_op == O_constant && imm_expr.X_add_number >= GPR_SMAX)
252b5132
RH
7185 goto do_true;
7186 if (imm_expr.X_op != O_constant)
7187 as_bad (_("Unsupported large constant"));
f9419b05 7188 ++imm_expr.X_add_number;
252b5132
RH
7189 /* FALLTHROUGH */
7190 case M_BLT_I:
7191 case M_BLTL_I:
7192 if (mask == M_BLTL_I)
7193 likely = 1;
7194 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
df58fc94
RS
7195 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
7196 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7197 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
7198 else
252b5132 7199 {
df58fc94
RS
7200 used_at = 1;
7201 set_at (sreg, 0);
7202 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7203 &offset_expr, AT, ZERO);
252b5132 7204 }
252b5132
RH
7205 break;
7206
7207 case M_BLEUL:
7208 likely = 1;
7209 case M_BLEU:
7210 if (treg == 0)
df58fc94
RS
7211 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7212 &offset_expr, sreg, ZERO);
7213 else if (sreg == 0)
7214 goto do_true;
7215 else
252b5132 7216 {
df58fc94
RS
7217 used_at = 1;
7218 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
7219 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7220 &offset_expr, AT, ZERO);
252b5132 7221 }
252b5132
RH
7222 break;
7223
7224 case M_BLEUL_I:
7225 likely = 1;
7226 case M_BLEU_I:
7227 if (sreg == 0
ca4e0257 7228 || (HAVE_32BIT_GPRS
252b5132 7229 && imm_expr.X_op == O_constant
f01dc953 7230 && imm_expr.X_add_number == -1))
252b5132
RH
7231 goto do_true;
7232 if (imm_expr.X_op != O_constant)
7233 as_bad (_("Unsupported large constant"));
f9419b05 7234 ++imm_expr.X_add_number;
252b5132
RH
7235 /* FALLTHROUGH */
7236 case M_BLTU_I:
7237 case M_BLTUL_I:
7238 if (mask == M_BLTUL_I)
7239 likely = 1;
7240 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7241 goto do_false;
df58fc94
RS
7242 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7243 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7244 &offset_expr, sreg, ZERO);
7245 else
252b5132 7246 {
df58fc94
RS
7247 used_at = 1;
7248 set_at (sreg, 1);
7249 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7250 &offset_expr, AT, ZERO);
252b5132 7251 }
252b5132
RH
7252 break;
7253
7254 case M_BLTL:
7255 likely = 1;
7256 case M_BLT:
7257 if (treg == 0)
df58fc94
RS
7258 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
7259 else if (sreg == 0)
7260 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, treg);
7261 else
252b5132 7262 {
df58fc94
RS
7263 used_at = 1;
7264 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
7265 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7266 &offset_expr, AT, ZERO);
252b5132 7267 }
252b5132
RH
7268 break;
7269
7270 case M_BLTUL:
7271 likely = 1;
7272 case M_BLTU:
7273 if (treg == 0)
7274 goto do_false;
df58fc94
RS
7275 else if (sreg == 0)
7276 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7277 &offset_expr, ZERO, treg);
7278 else
252b5132 7279 {
df58fc94
RS
7280 used_at = 1;
7281 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
7282 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7283 &offset_expr, AT, ZERO);
252b5132 7284 }
252b5132
RH
7285 break;
7286
5f74bc13
CD
7287 case M_DEXT:
7288 {
d5818fca
MR
7289 /* Use unsigned arithmetic. */
7290 addressT pos;
7291 addressT size;
5f74bc13 7292
90ecf173 7293 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5f74bc13
CD
7294 {
7295 as_bad (_("Unsupported large constant"));
7296 pos = size = 1;
7297 }
7298 else
7299 {
d5818fca
MR
7300 pos = imm_expr.X_add_number;
7301 size = imm2_expr.X_add_number;
5f74bc13
CD
7302 }
7303
7304 if (pos > 63)
7305 {
d5818fca 7306 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
5f74bc13
CD
7307 pos = 1;
7308 }
90ecf173 7309 if (size == 0 || size > 64 || (pos + size - 1) > 63)
5f74bc13
CD
7310 {
7311 as_bad (_("Improper extract size (%lu, position %lu)"),
d5818fca 7312 (unsigned long) size, (unsigned long) pos);
5f74bc13
CD
7313 size = 1;
7314 }
7315
7316 if (size <= 32 && pos < 32)
7317 {
7318 s = "dext";
7319 fmt = "t,r,+A,+C";
7320 }
7321 else if (size <= 32)
7322 {
7323 s = "dextu";
7324 fmt = "t,r,+E,+H";
7325 }
7326 else
7327 {
7328 s = "dextm";
7329 fmt = "t,r,+A,+G";
7330 }
d5818fca
MR
7331 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
7332 (int) (size - 1));
5f74bc13 7333 }
8fc2e39e 7334 break;
5f74bc13
CD
7335
7336 case M_DINS:
7337 {
d5818fca
MR
7338 /* Use unsigned arithmetic. */
7339 addressT pos;
7340 addressT size;
5f74bc13 7341
90ecf173 7342 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5f74bc13
CD
7343 {
7344 as_bad (_("Unsupported large constant"));
7345 pos = size = 1;
7346 }
7347 else
7348 {
d5818fca
MR
7349 pos = imm_expr.X_add_number;
7350 size = imm2_expr.X_add_number;
5f74bc13
CD
7351 }
7352
7353 if (pos > 63)
7354 {
d5818fca 7355 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
5f74bc13
CD
7356 pos = 1;
7357 }
90ecf173 7358 if (size == 0 || size > 64 || (pos + size - 1) > 63)
5f74bc13
CD
7359 {
7360 as_bad (_("Improper insert size (%lu, position %lu)"),
d5818fca 7361 (unsigned long) size, (unsigned long) pos);
5f74bc13
CD
7362 size = 1;
7363 }
7364
7365 if (pos < 32 && (pos + size - 1) < 32)
7366 {
7367 s = "dins";
7368 fmt = "t,r,+A,+B";
7369 }
7370 else if (pos >= 32)
7371 {
7372 s = "dinsu";
7373 fmt = "t,r,+E,+F";
7374 }
7375 else
7376 {
7377 s = "dinsm";
7378 fmt = "t,r,+A,+F";
7379 }
750bdd57
AS
7380 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
7381 (int) (pos + size - 1));
5f74bc13 7382 }
8fc2e39e 7383 break;
5f74bc13 7384
252b5132
RH
7385 case M_DDIV_3:
7386 dbl = 1;
7387 case M_DIV_3:
7388 s = "mflo";
7389 goto do_div3;
7390 case M_DREM_3:
7391 dbl = 1;
7392 case M_REM_3:
7393 s = "mfhi";
7394 do_div3:
7395 if (treg == 0)
7396 {
7397 as_warn (_("Divide by zero."));
7398 if (mips_trap)
df58fc94 7399 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
252b5132 7400 else
df58fc94 7401 macro_build (NULL, "break", BRK_FMT, 7);
8fc2e39e 7402 break;
252b5132
RH
7403 }
7404
7d10b47d 7405 start_noreorder ();
252b5132
RH
7406 if (mips_trap)
7407 {
df58fc94 7408 macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
67c0d1eb 7409 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
252b5132
RH
7410 }
7411 else
7412 {
df58fc94
RS
7413 if (mips_opts.micromips)
7414 micromips_label_expr (&label_expr);
7415 else
7416 label_expr.X_add_number = 8;
7417 macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
67c0d1eb 7418 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
df58fc94
RS
7419 macro_build (NULL, "break", BRK_FMT, 7);
7420 if (mips_opts.micromips)
7421 micromips_add_label ();
252b5132
RH
7422 }
7423 expr1.X_add_number = -1;
8fc2e39e 7424 used_at = 1;
f6a22291 7425 load_register (AT, &expr1, dbl);
df58fc94
RS
7426 if (mips_opts.micromips)
7427 micromips_label_expr (&label_expr);
7428 else
7429 label_expr.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
7430 macro_build (&label_expr, "bne", "s,t,p", treg, AT);
252b5132
RH
7431 if (dbl)
7432 {
7433 expr1.X_add_number = 1;
f6a22291 7434 load_register (AT, &expr1, dbl);
df58fc94 7435 macro_build (NULL, "dsll32", SHFT_FMT, AT, AT, 31);
252b5132
RH
7436 }
7437 else
7438 {
7439 expr1.X_add_number = 0x80000000;
df58fc94 7440 macro_build (&expr1, "lui", LUI_FMT, AT, BFD_RELOC_HI16);
252b5132
RH
7441 }
7442 if (mips_trap)
7443 {
df58fc94 7444 macro_build (NULL, "teq", TRAP_FMT, sreg, AT, 6);
252b5132
RH
7445 /* We want to close the noreorder block as soon as possible, so
7446 that later insns are available for delay slot filling. */
7d10b47d 7447 end_noreorder ();
252b5132
RH
7448 }
7449 else
7450 {
df58fc94
RS
7451 if (mips_opts.micromips)
7452 micromips_label_expr (&label_expr);
7453 else
7454 label_expr.X_add_number = 8;
7455 macro_build (&label_expr, "bne", "s,t,p", sreg, AT);
a605d2b3 7456 macro_build (NULL, "nop", "");
252b5132
RH
7457
7458 /* We want to close the noreorder block as soon as possible, so
7459 that later insns are available for delay slot filling. */
7d10b47d 7460 end_noreorder ();
252b5132 7461
df58fc94 7462 macro_build (NULL, "break", BRK_FMT, 6);
252b5132 7463 }
df58fc94
RS
7464 if (mips_opts.micromips)
7465 micromips_add_label ();
7466 macro_build (NULL, s, MFHL_FMT, dreg);
252b5132
RH
7467 break;
7468
7469 case M_DIV_3I:
7470 s = "div";
7471 s2 = "mflo";
7472 goto do_divi;
7473 case M_DIVU_3I:
7474 s = "divu";
7475 s2 = "mflo";
7476 goto do_divi;
7477 case M_REM_3I:
7478 s = "div";
7479 s2 = "mfhi";
7480 goto do_divi;
7481 case M_REMU_3I:
7482 s = "divu";
7483 s2 = "mfhi";
7484 goto do_divi;
7485 case M_DDIV_3I:
7486 dbl = 1;
7487 s = "ddiv";
7488 s2 = "mflo";
7489 goto do_divi;
7490 case M_DDIVU_3I:
7491 dbl = 1;
7492 s = "ddivu";
7493 s2 = "mflo";
7494 goto do_divi;
7495 case M_DREM_3I:
7496 dbl = 1;
7497 s = "ddiv";
7498 s2 = "mfhi";
7499 goto do_divi;
7500 case M_DREMU_3I:
7501 dbl = 1;
7502 s = "ddivu";
7503 s2 = "mfhi";
7504 do_divi:
7505 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7506 {
7507 as_warn (_("Divide by zero."));
7508 if (mips_trap)
df58fc94 7509 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
252b5132 7510 else
df58fc94 7511 macro_build (NULL, "break", BRK_FMT, 7);
8fc2e39e 7512 break;
252b5132
RH
7513 }
7514 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7515 {
7516 if (strcmp (s2, "mflo") == 0)
67c0d1eb 7517 move_register (dreg, sreg);
252b5132 7518 else
c80c840e 7519 move_register (dreg, ZERO);
8fc2e39e 7520 break;
252b5132
RH
7521 }
7522 if (imm_expr.X_op == O_constant
7523 && imm_expr.X_add_number == -1
7524 && s[strlen (s) - 1] != 'u')
7525 {
7526 if (strcmp (s2, "mflo") == 0)
7527 {
67c0d1eb 7528 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
252b5132
RH
7529 }
7530 else
c80c840e 7531 move_register (dreg, ZERO);
8fc2e39e 7532 break;
252b5132
RH
7533 }
7534
8fc2e39e 7535 used_at = 1;
67c0d1eb
RS
7536 load_register (AT, &imm_expr, dbl);
7537 macro_build (NULL, s, "z,s,t", sreg, AT);
df58fc94 7538 macro_build (NULL, s2, MFHL_FMT, dreg);
252b5132
RH
7539 break;
7540
7541 case M_DIVU_3:
7542 s = "divu";
7543 s2 = "mflo";
7544 goto do_divu3;
7545 case M_REMU_3:
7546 s = "divu";
7547 s2 = "mfhi";
7548 goto do_divu3;
7549 case M_DDIVU_3:
7550 s = "ddivu";
7551 s2 = "mflo";
7552 goto do_divu3;
7553 case M_DREMU_3:
7554 s = "ddivu";
7555 s2 = "mfhi";
7556 do_divu3:
7d10b47d 7557 start_noreorder ();
252b5132
RH
7558 if (mips_trap)
7559 {
df58fc94 7560 macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
67c0d1eb 7561 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
7562 /* We want to close the noreorder block as soon as possible, so
7563 that later insns are available for delay slot filling. */
7d10b47d 7564 end_noreorder ();
252b5132
RH
7565 }
7566 else
7567 {
df58fc94
RS
7568 if (mips_opts.micromips)
7569 micromips_label_expr (&label_expr);
7570 else
7571 label_expr.X_add_number = 8;
7572 macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
67c0d1eb 7573 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
7574
7575 /* We want to close the noreorder block as soon as possible, so
7576 that later insns are available for delay slot filling. */
7d10b47d 7577 end_noreorder ();
df58fc94
RS
7578 macro_build (NULL, "break", BRK_FMT, 7);
7579 if (mips_opts.micromips)
7580 micromips_add_label ();
252b5132 7581 }
df58fc94 7582 macro_build (NULL, s2, MFHL_FMT, dreg);
8fc2e39e 7583 break;
252b5132 7584
1abe91b1
MR
7585 case M_DLCA_AB:
7586 dbl = 1;
7587 case M_LCA_AB:
7588 call = 1;
7589 goto do_la;
252b5132
RH
7590 case M_DLA_AB:
7591 dbl = 1;
7592 case M_LA_AB:
1abe91b1 7593 do_la:
252b5132
RH
7594 /* Load the address of a symbol into a register. If breg is not
7595 zero, we then add a base register to it. */
7596
3bec30a8
TS
7597 if (dbl && HAVE_32BIT_GPRS)
7598 as_warn (_("dla used to load 32-bit register"));
7599
90ecf173 7600 if (!dbl && HAVE_64BIT_OBJECTS)
3bec30a8
TS
7601 as_warn (_("la used to load 64-bit address"));
7602
f2ae14a1 7603 if (small_offset_p (0, align, 16))
0c11417f 7604 {
f2ae14a1
RS
7605 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", treg, breg,
7606 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2]);
8fc2e39e 7607 break;
0c11417f
MR
7608 }
7609
741fe287 7610 if (mips_opts.at && (treg == breg))
afdbd6d0
CD
7611 {
7612 tempreg = AT;
7613 used_at = 1;
7614 }
7615 else
7616 {
7617 tempreg = treg;
afdbd6d0
CD
7618 }
7619
252b5132
RH
7620 if (offset_expr.X_op != O_symbol
7621 && offset_expr.X_op != O_constant)
7622 {
f71d0d44 7623 as_bad (_("Expression too complex"));
252b5132
RH
7624 offset_expr.X_op = O_constant;
7625 }
7626
252b5132 7627 if (offset_expr.X_op == O_constant)
aed1a261 7628 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
252b5132
RH
7629 else if (mips_pic == NO_PIC)
7630 {
d6bc6245 7631 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 7632 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
7633 Otherwise we want
7634 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
7635 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7636 If we have a constant, we need two instructions anyhow,
d6bc6245 7637 so we may as well always use the latter form.
76b3015f 7638
6caf9ef4
TS
7639 With 64bit address space and a usable $at we want
7640 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
7641 lui $at,<sym> (BFD_RELOC_HI16_S)
7642 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
7643 daddiu $at,<sym> (BFD_RELOC_LO16)
7644 dsll32 $tempreg,0
7645 daddu $tempreg,$tempreg,$at
7646
7647 If $at is already in use, we use a path which is suboptimal
7648 on superscalar processors.
7649 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
7650 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
7651 dsll $tempreg,16
7652 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
7653 dsll $tempreg,16
7654 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
7655
7656 For GP relative symbols in 64bit address space we can use
7657 the same sequence as in 32bit address space. */
aed1a261 7658 if (HAVE_64BIT_SYMBOLS)
252b5132 7659 {
6caf9ef4
TS
7660 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7661 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7662 {
7663 relax_start (offset_expr.X_add_symbol);
7664 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7665 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
7666 relax_switch ();
7667 }
d6bc6245 7668
741fe287 7669 if (used_at == 0 && mips_opts.at)
98d3f06f 7670 {
df58fc94 7671 macro_build (&offset_expr, "lui", LUI_FMT,
17a2f251 7672 tempreg, BFD_RELOC_MIPS_HIGHEST);
df58fc94 7673 macro_build (&offset_expr, "lui", LUI_FMT,
17a2f251 7674 AT, BFD_RELOC_HI16_S);
67c0d1eb 7675 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 7676 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb 7677 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 7678 AT, AT, BFD_RELOC_LO16);
df58fc94 7679 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
67c0d1eb 7680 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
98d3f06f
KH
7681 used_at = 1;
7682 }
7683 else
7684 {
df58fc94 7685 macro_build (&offset_expr, "lui", LUI_FMT,
17a2f251 7686 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 7687 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 7688 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
df58fc94 7689 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
67c0d1eb 7690 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 7691 tempreg, tempreg, BFD_RELOC_HI16_S);
df58fc94 7692 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
67c0d1eb 7693 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 7694 tempreg, tempreg, BFD_RELOC_LO16);
98d3f06f 7695 }
6caf9ef4
TS
7696
7697 if (mips_relax.sequence)
7698 relax_end ();
98d3f06f
KH
7699 }
7700 else
7701 {
7702 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 7703 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
98d3f06f 7704 {
4d7206a2 7705 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7706 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7707 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 7708 relax_switch ();
98d3f06f 7709 }
6943caf0 7710 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
f71d0d44 7711 as_bad (_("Offset too large"));
67c0d1eb
RS
7712 macro_build_lui (&offset_expr, tempreg);
7713 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7714 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2
RS
7715 if (mips_relax.sequence)
7716 relax_end ();
98d3f06f 7717 }
252b5132 7718 }
0a44bf69 7719 else if (!mips_big_got && !HAVE_NEWABI)
252b5132 7720 {
9117d219
NC
7721 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
7722
252b5132
RH
7723 /* If this is a reference to an external symbol, and there
7724 is no constant, we want
7725 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
1abe91b1 7726 or for lca or if tempreg is PIC_CALL_REG
9117d219 7727 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
252b5132
RH
7728 For a local symbol, we want
7729 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7730 nop
7731 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7732
7733 If we have a small constant, and this is a reference to
7734 an external symbol, we want
7735 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7736 nop
7737 addiu $tempreg,$tempreg,<constant>
7738 For a local symbol, we want the same instruction
7739 sequence, but we output a BFD_RELOC_LO16 reloc on the
7740 addiu instruction.
7741
7742 If we have a large constant, and this is a reference to
7743 an external symbol, we want
7744 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7745 lui $at,<hiconstant>
7746 addiu $at,$at,<loconstant>
7747 addu $tempreg,$tempreg,$at
7748 For a local symbol, we want the same instruction
7749 sequence, but we output a BFD_RELOC_LO16 reloc on the
ed6fb7bd 7750 addiu instruction.
ed6fb7bd
SC
7751 */
7752
4d7206a2 7753 if (offset_expr.X_add_number == 0)
252b5132 7754 {
0a44bf69
RS
7755 if (mips_pic == SVR4_PIC
7756 && breg == 0
7757 && (call || tempreg == PIC_CALL_REG))
4d7206a2
RS
7758 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
7759
7760 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7761 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7762 lw_reloc_type, mips_gp_register);
4d7206a2 7763 if (breg != 0)
252b5132
RH
7764 {
7765 /* We're going to put in an addu instruction using
7766 tempreg, so we may as well insert the nop right
7767 now. */
269137b2 7768 load_delay_nop ();
252b5132 7769 }
4d7206a2 7770 relax_switch ();
67c0d1eb
RS
7771 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7772 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 7773 load_delay_nop ();
67c0d1eb
RS
7774 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7775 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2 7776 relax_end ();
252b5132
RH
7777 /* FIXME: If breg == 0, and the next instruction uses
7778 $tempreg, then if this variant case is used an extra
7779 nop will be generated. */
7780 }
4d7206a2
RS
7781 else if (offset_expr.X_add_number >= -0x8000
7782 && offset_expr.X_add_number < 0x8000)
252b5132 7783 {
67c0d1eb 7784 load_got_offset (tempreg, &offset_expr);
269137b2 7785 load_delay_nop ();
67c0d1eb 7786 add_got_offset (tempreg, &offset_expr);
252b5132
RH
7787 }
7788 else
7789 {
4d7206a2
RS
7790 expr1.X_add_number = offset_expr.X_add_number;
7791 offset_expr.X_add_number =
43c0598f 7792 SEXT_16BIT (offset_expr.X_add_number);
67c0d1eb 7793 load_got_offset (tempreg, &offset_expr);
f6a22291 7794 offset_expr.X_add_number = expr1.X_add_number;
252b5132
RH
7795 /* If we are going to add in a base register, and the
7796 target register and the base register are the same,
7797 then we are using AT as a temporary register. Since
7798 we want to load the constant into AT, we add our
7799 current AT (from the global offset table) and the
7800 register into the register now, and pretend we were
7801 not using a base register. */
67c0d1eb 7802 if (breg == treg)
252b5132 7803 {
269137b2 7804 load_delay_nop ();
67c0d1eb 7805 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7806 treg, AT, breg);
252b5132
RH
7807 breg = 0;
7808 tempreg = treg;
252b5132 7809 }
f6a22291 7810 add_got_offset_hilo (tempreg, &offset_expr, AT);
252b5132
RH
7811 used_at = 1;
7812 }
7813 }
0a44bf69 7814 else if (!mips_big_got && HAVE_NEWABI)
f5040a92 7815 {
67c0d1eb 7816 int add_breg_early = 0;
f5040a92
AO
7817
7818 /* If this is a reference to an external, and there is no
7819 constant, or local symbol (*), with or without a
7820 constant, we want
7821 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
1abe91b1 7822 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
7823 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
7824
7825 If we have a small constant, and this is a reference to
7826 an external symbol, we want
7827 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7828 addiu $tempreg,$tempreg,<constant>
7829
7830 If we have a large constant, and this is a reference to
7831 an external symbol, we want
7832 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7833 lui $at,<hiconstant>
7834 addiu $at,$at,<loconstant>
7835 addu $tempreg,$tempreg,$at
7836
7837 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
7838 local symbols, even though it introduces an additional
7839 instruction. */
7840
f5040a92
AO
7841 if (offset_expr.X_add_number)
7842 {
4d7206a2 7843 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
7844 offset_expr.X_add_number = 0;
7845
4d7206a2 7846 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7847 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7848 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
7849
7850 if (expr1.X_add_number >= -0x8000
7851 && expr1.X_add_number < 0x8000)
7852 {
67c0d1eb
RS
7853 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
7854 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 7855 }
ecd13cd3 7856 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92 7857 {
f5040a92
AO
7858 /* If we are going to add in a base register, and the
7859 target register and the base register are the same,
7860 then we are using AT as a temporary register. Since
7861 we want to load the constant into AT, we add our
7862 current AT (from the global offset table) and the
7863 register into the register now, and pretend we were
7864 not using a base register. */
7865 if (breg != treg)
7866 dreg = tempreg;
7867 else
7868 {
9c2799c2 7869 gas_assert (tempreg == AT);
67c0d1eb
RS
7870 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7871 treg, AT, breg);
f5040a92 7872 dreg = treg;
67c0d1eb 7873 add_breg_early = 1;
f5040a92
AO
7874 }
7875
f6a22291 7876 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 7877 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7878 dreg, dreg, AT);
f5040a92 7879
f5040a92
AO
7880 used_at = 1;
7881 }
7882 else
7883 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
7884
4d7206a2 7885 relax_switch ();
f5040a92
AO
7886 offset_expr.X_add_number = expr1.X_add_number;
7887
67c0d1eb
RS
7888 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7889 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7890 if (add_breg_early)
f5040a92 7891 {
67c0d1eb 7892 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
f899b4b8 7893 treg, tempreg, breg);
f5040a92
AO
7894 breg = 0;
7895 tempreg = treg;
7896 }
4d7206a2 7897 relax_end ();
f5040a92 7898 }
4d7206a2 7899 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
f5040a92 7900 {
4d7206a2 7901 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
7902 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7903 BFD_RELOC_MIPS_CALL16, mips_gp_register);
4d7206a2 7904 relax_switch ();
67c0d1eb
RS
7905 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7906 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2 7907 relax_end ();
f5040a92 7908 }
4d7206a2 7909 else
f5040a92 7910 {
67c0d1eb
RS
7911 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7912 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
7913 }
7914 }
0a44bf69 7915 else if (mips_big_got && !HAVE_NEWABI)
252b5132 7916 {
67c0d1eb 7917 int gpdelay;
9117d219
NC
7918 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
7919 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
ed6fb7bd 7920 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
252b5132
RH
7921
7922 /* This is the large GOT case. If this is a reference to an
7923 external symbol, and there is no constant, we want
7924 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7925 addu $tempreg,$tempreg,$gp
7926 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 7927 or for lca or if tempreg is PIC_CALL_REG
9117d219
NC
7928 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
7929 addu $tempreg,$tempreg,$gp
7930 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
252b5132
RH
7931 For a local symbol, we want
7932 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7933 nop
7934 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7935
7936 If we have a small constant, and this is a reference to
7937 an external symbol, we want
7938 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7939 addu $tempreg,$tempreg,$gp
7940 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7941 nop
7942 addiu $tempreg,$tempreg,<constant>
7943 For a local symbol, we want
7944 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7945 nop
7946 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
7947
7948 If we have a large constant, and this is a reference to
7949 an external symbol, we want
7950 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7951 addu $tempreg,$tempreg,$gp
7952 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7953 lui $at,<hiconstant>
7954 addiu $at,$at,<loconstant>
7955 addu $tempreg,$tempreg,$at
7956 For a local symbol, we want
7957 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7958 lui $at,<hiconstant>
7959 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
7960 addu $tempreg,$tempreg,$at
f5040a92 7961 */
438c16b8 7962
252b5132
RH
7963 expr1.X_add_number = offset_expr.X_add_number;
7964 offset_expr.X_add_number = 0;
4d7206a2 7965 relax_start (offset_expr.X_add_symbol);
67c0d1eb 7966 gpdelay = reg_needs_delay (mips_gp_register);
1abe91b1
MR
7967 if (expr1.X_add_number == 0 && breg == 0
7968 && (call || tempreg == PIC_CALL_REG))
9117d219
NC
7969 {
7970 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
7971 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
7972 }
df58fc94 7973 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
67c0d1eb 7974 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 7975 tempreg, tempreg, mips_gp_register);
67c0d1eb 7976 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 7977 tempreg, lw_reloc_type, tempreg);
252b5132
RH
7978 if (expr1.X_add_number == 0)
7979 {
67c0d1eb 7980 if (breg != 0)
252b5132
RH
7981 {
7982 /* We're going to put in an addu instruction using
7983 tempreg, so we may as well insert the nop right
7984 now. */
269137b2 7985 load_delay_nop ();
252b5132 7986 }
252b5132
RH
7987 }
7988 else if (expr1.X_add_number >= -0x8000
7989 && expr1.X_add_number < 0x8000)
7990 {
269137b2 7991 load_delay_nop ();
67c0d1eb 7992 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 7993 tempreg, tempreg, BFD_RELOC_LO16);
252b5132
RH
7994 }
7995 else
7996 {
252b5132
RH
7997 /* If we are going to add in a base register, and the
7998 target register and the base register are the same,
7999 then we are using AT as a temporary register. Since
8000 we want to load the constant into AT, we add our
8001 current AT (from the global offset table) and the
8002 register into the register now, and pretend we were
8003 not using a base register. */
8004 if (breg != treg)
67c0d1eb 8005 dreg = tempreg;
252b5132
RH
8006 else
8007 {
9c2799c2 8008 gas_assert (tempreg == AT);
269137b2 8009 load_delay_nop ();
67c0d1eb 8010 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 8011 treg, AT, breg);
252b5132 8012 dreg = treg;
252b5132
RH
8013 }
8014
f6a22291 8015 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 8016 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
252b5132 8017
252b5132
RH
8018 used_at = 1;
8019 }
43c0598f 8020 offset_expr.X_add_number = SEXT_16BIT (expr1.X_add_number);
4d7206a2 8021 relax_switch ();
252b5132 8022
67c0d1eb 8023 if (gpdelay)
252b5132
RH
8024 {
8025 /* This is needed because this instruction uses $gp, but
f5040a92 8026 the first instruction on the main stream does not. */
67c0d1eb 8027 macro_build (NULL, "nop", "");
252b5132 8028 }
ed6fb7bd 8029
67c0d1eb
RS
8030 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8031 local_reloc_type, mips_gp_register);
f5040a92 8032 if (expr1.X_add_number >= -0x8000
252b5132
RH
8033 && expr1.X_add_number < 0x8000)
8034 {
269137b2 8035 load_delay_nop ();
67c0d1eb
RS
8036 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8037 tempreg, tempreg, BFD_RELOC_LO16);
252b5132 8038 /* FIXME: If add_number is 0, and there was no base
f5040a92
AO
8039 register, the external symbol case ended with a load,
8040 so if the symbol turns out to not be external, and
8041 the next instruction uses tempreg, an unnecessary nop
8042 will be inserted. */
252b5132
RH
8043 }
8044 else
8045 {
8046 if (breg == treg)
8047 {
8048 /* We must add in the base register now, as in the
f5040a92 8049 external symbol case. */
9c2799c2 8050 gas_assert (tempreg == AT);
269137b2 8051 load_delay_nop ();
67c0d1eb 8052 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 8053 treg, AT, breg);
252b5132
RH
8054 tempreg = treg;
8055 /* We set breg to 0 because we have arranged to add
f5040a92 8056 it in in both cases. */
252b5132
RH
8057 breg = 0;
8058 }
8059
67c0d1eb
RS
8060 macro_build_lui (&expr1, AT);
8061 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 8062 AT, AT, BFD_RELOC_LO16);
67c0d1eb 8063 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 8064 tempreg, tempreg, AT);
8fc2e39e 8065 used_at = 1;
252b5132 8066 }
4d7206a2 8067 relax_end ();
252b5132 8068 }
0a44bf69 8069 else if (mips_big_got && HAVE_NEWABI)
f5040a92 8070 {
f5040a92
AO
8071 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
8072 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
67c0d1eb 8073 int add_breg_early = 0;
f5040a92
AO
8074
8075 /* This is the large GOT case. If this is a reference to an
8076 external symbol, and there is no constant, we want
8077 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8078 add $tempreg,$tempreg,$gp
8079 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
1abe91b1 8080 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
8081 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
8082 add $tempreg,$tempreg,$gp
8083 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
8084
8085 If we have a small constant, and this is a reference to
8086 an external symbol, we want
8087 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8088 add $tempreg,$tempreg,$gp
8089 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8090 addi $tempreg,$tempreg,<constant>
8091
8092 If we have a large constant, and this is a reference to
8093 an external symbol, we want
8094 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8095 addu $tempreg,$tempreg,$gp
8096 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8097 lui $at,<hiconstant>
8098 addi $at,$at,<loconstant>
8099 add $tempreg,$tempreg,$at
8100
8101 If we have NewABI, and we know it's a local symbol, we want
8102 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
8103 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
8104 otherwise we have to resort to GOT_HI16/GOT_LO16. */
8105
4d7206a2 8106 relax_start (offset_expr.X_add_symbol);
f5040a92 8107
4d7206a2 8108 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
8109 offset_expr.X_add_number = 0;
8110
1abe91b1
MR
8111 if (expr1.X_add_number == 0 && breg == 0
8112 && (call || tempreg == PIC_CALL_REG))
f5040a92
AO
8113 {
8114 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
8115 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
8116 }
df58fc94 8117 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
67c0d1eb 8118 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 8119 tempreg, tempreg, mips_gp_register);
67c0d1eb
RS
8120 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8121 tempreg, lw_reloc_type, tempreg);
f5040a92
AO
8122
8123 if (expr1.X_add_number == 0)
4d7206a2 8124 ;
f5040a92
AO
8125 else if (expr1.X_add_number >= -0x8000
8126 && expr1.X_add_number < 0x8000)
8127 {
67c0d1eb 8128 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 8129 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 8130 }
ecd13cd3 8131 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92 8132 {
f5040a92
AO
8133 /* If we are going to add in a base register, and the
8134 target register and the base register are the same,
8135 then we are using AT as a temporary register. Since
8136 we want to load the constant into AT, we add our
8137 current AT (from the global offset table) and the
8138 register into the register now, and pretend we were
8139 not using a base register. */
8140 if (breg != treg)
8141 dreg = tempreg;
8142 else
8143 {
9c2799c2 8144 gas_assert (tempreg == AT);
67c0d1eb 8145 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 8146 treg, AT, breg);
f5040a92 8147 dreg = treg;
67c0d1eb 8148 add_breg_early = 1;
f5040a92
AO
8149 }
8150
f6a22291 8151 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 8152 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
f5040a92 8153
f5040a92
AO
8154 used_at = 1;
8155 }
8156 else
8157 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
8158
4d7206a2 8159 relax_switch ();
f5040a92 8160 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
8161 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8162 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
8163 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
8164 tempreg, BFD_RELOC_MIPS_GOT_OFST);
8165 if (add_breg_early)
f5040a92 8166 {
67c0d1eb 8167 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 8168 treg, tempreg, breg);
f5040a92
AO
8169 breg = 0;
8170 tempreg = treg;
8171 }
4d7206a2 8172 relax_end ();
f5040a92 8173 }
252b5132
RH
8174 else
8175 abort ();
8176
8177 if (breg != 0)
aed1a261 8178 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
252b5132
RH
8179 break;
8180
52b6b6b9 8181 case M_MSGSND:
df58fc94 8182 gas_assert (!mips_opts.micromips);
c8276761 8183 macro_build (NULL, "c2", "C", (treg << 16) | 0x01);
c7af4273 8184 break;
52b6b6b9
JM
8185
8186 case M_MSGLD:
df58fc94 8187 gas_assert (!mips_opts.micromips);
c8276761 8188 macro_build (NULL, "c2", "C", 0x02);
c7af4273 8189 break;
52b6b6b9
JM
8190
8191 case M_MSGLD_T:
df58fc94 8192 gas_assert (!mips_opts.micromips);
c8276761 8193 macro_build (NULL, "c2", "C", (treg << 16) | 0x02);
c7af4273 8194 break;
52b6b6b9
JM
8195
8196 case M_MSGWAIT:
df58fc94 8197 gas_assert (!mips_opts.micromips);
52b6b6b9 8198 macro_build (NULL, "c2", "C", 3);
c7af4273 8199 break;
52b6b6b9
JM
8200
8201 case M_MSGWAIT_T:
df58fc94 8202 gas_assert (!mips_opts.micromips);
c8276761 8203 macro_build (NULL, "c2", "C", (treg << 16) | 0x03);
c7af4273 8204 break;
52b6b6b9 8205
252b5132
RH
8206 case M_J_A:
8207 /* The j instruction may not be used in PIC code, since it
8208 requires an absolute address. We convert it to a b
8209 instruction. */
8210 if (mips_pic == NO_PIC)
67c0d1eb 8211 macro_build (&offset_expr, "j", "a");
252b5132 8212 else
67c0d1eb 8213 macro_build (&offset_expr, "b", "p");
8fc2e39e 8214 break;
252b5132
RH
8215
8216 /* The jal instructions must be handled as macros because when
8217 generating PIC code they expand to multi-instruction
8218 sequences. Normally they are simple instructions. */
df58fc94
RS
8219 case M_JALS_1:
8220 dreg = RA;
8221 /* Fall through. */
8222 case M_JALS_2:
8223 gas_assert (mips_opts.micromips);
833794fc
MR
8224 if (mips_opts.insn32)
8225 {
8226 as_bad (_("Opcode not supported in the `insn32' mode `%s'"), str);
8227 break;
8228 }
df58fc94
RS
8229 jals = 1;
8230 goto jal;
252b5132
RH
8231 case M_JAL_1:
8232 dreg = RA;
8233 /* Fall through. */
8234 case M_JAL_2:
df58fc94 8235 jal:
3e722fb5 8236 if (mips_pic == NO_PIC)
df58fc94
RS
8237 {
8238 s = jals ? "jalrs" : "jalr";
e64af278 8239 if (mips_opts.micromips
833794fc 8240 && !mips_opts.insn32
e64af278
MR
8241 && dreg == RA
8242 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
df58fc94
RS
8243 macro_build (NULL, s, "mj", sreg);
8244 else
8245 macro_build (NULL, s, JALR_FMT, dreg, sreg);
8246 }
0a44bf69 8247 else
252b5132 8248 {
df58fc94
RS
8249 int cprestore = (mips_pic == SVR4_PIC && !HAVE_NEWABI
8250 && mips_cprestore_offset >= 0);
8251
252b5132
RH
8252 if (sreg != PIC_CALL_REG)
8253 as_warn (_("MIPS PIC call to register other than $25"));
bdaaa2e1 8254
833794fc
MR
8255 s = ((mips_opts.micromips
8256 && !mips_opts.insn32
8257 && (!mips_opts.noreorder || cprestore))
df58fc94 8258 ? "jalrs" : "jalr");
e64af278 8259 if (mips_opts.micromips
833794fc 8260 && !mips_opts.insn32
e64af278
MR
8261 && dreg == RA
8262 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
df58fc94
RS
8263 macro_build (NULL, s, "mj", sreg);
8264 else
8265 macro_build (NULL, s, JALR_FMT, dreg, sreg);
0a44bf69 8266 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
252b5132 8267 {
6478892d
TS
8268 if (mips_cprestore_offset < 0)
8269 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8270 else
8271 {
90ecf173 8272 if (!mips_frame_reg_valid)
7a621144
DJ
8273 {
8274 as_warn (_("No .frame pseudo-op used in PIC code"));
8275 /* Quiet this warning. */
8276 mips_frame_reg_valid = 1;
8277 }
90ecf173 8278 if (!mips_cprestore_valid)
7a621144
DJ
8279 {
8280 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8281 /* Quiet this warning. */
8282 mips_cprestore_valid = 1;
8283 }
d3fca0b5
MR
8284 if (mips_opts.noreorder)
8285 macro_build (NULL, "nop", "");
6478892d 8286 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 8287 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 8288 mips_gp_register,
256ab948
TS
8289 mips_frame_reg,
8290 HAVE_64BIT_ADDRESSES);
6478892d 8291 }
252b5132
RH
8292 }
8293 }
252b5132 8294
8fc2e39e 8295 break;
252b5132 8296
df58fc94
RS
8297 case M_JALS_A:
8298 gas_assert (mips_opts.micromips);
833794fc
MR
8299 if (mips_opts.insn32)
8300 {
8301 as_bad (_("Opcode not supported in the `insn32' mode `%s'"), str);
8302 break;
8303 }
df58fc94
RS
8304 jals = 1;
8305 /* Fall through. */
252b5132
RH
8306 case M_JAL_A:
8307 if (mips_pic == NO_PIC)
df58fc94 8308 macro_build (&offset_expr, jals ? "jals" : "jal", "a");
252b5132
RH
8309 else if (mips_pic == SVR4_PIC)
8310 {
8311 /* If this is a reference to an external symbol, and we are
8312 using a small GOT, we want
8313 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
8314 nop
f9419b05 8315 jalr $ra,$25
252b5132
RH
8316 nop
8317 lw $gp,cprestore($sp)
8318 The cprestore value is set using the .cprestore
8319 pseudo-op. If we are using a big GOT, we want
8320 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
8321 addu $25,$25,$gp
8322 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
8323 nop
f9419b05 8324 jalr $ra,$25
252b5132
RH
8325 nop
8326 lw $gp,cprestore($sp)
8327 If the symbol is not external, we want
8328 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
8329 nop
8330 addiu $25,$25,<sym> (BFD_RELOC_LO16)
f9419b05 8331 jalr $ra,$25
252b5132 8332 nop
438c16b8 8333 lw $gp,cprestore($sp)
f5040a92
AO
8334
8335 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
8336 sequences above, minus nops, unless the symbol is local,
8337 which enables us to use GOT_PAGE/GOT_OFST (big got) or
8338 GOT_DISP. */
438c16b8 8339 if (HAVE_NEWABI)
252b5132 8340 {
90ecf173 8341 if (!mips_big_got)
f5040a92 8342 {
4d7206a2 8343 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
8344 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8345 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
f5040a92 8346 mips_gp_register);
4d7206a2 8347 relax_switch ();
67c0d1eb
RS
8348 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8349 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
4d7206a2
RS
8350 mips_gp_register);
8351 relax_end ();
f5040a92
AO
8352 }
8353 else
8354 {
4d7206a2 8355 relax_start (offset_expr.X_add_symbol);
df58fc94 8356 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
67c0d1eb
RS
8357 BFD_RELOC_MIPS_CALL_HI16);
8358 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
8359 PIC_CALL_REG, mips_gp_register);
8360 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8361 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
8362 PIC_CALL_REG);
4d7206a2 8363 relax_switch ();
67c0d1eb
RS
8364 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8365 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
8366 mips_gp_register);
8367 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8368 PIC_CALL_REG, PIC_CALL_REG,
17a2f251 8369 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 8370 relax_end ();
f5040a92 8371 }
684022ea 8372
df58fc94 8373 macro_build_jalr (&offset_expr, 0);
252b5132
RH
8374 }
8375 else
8376 {
4d7206a2 8377 relax_start (offset_expr.X_add_symbol);
90ecf173 8378 if (!mips_big_got)
438c16b8 8379 {
67c0d1eb
RS
8380 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8381 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
17a2f251 8382 mips_gp_register);
269137b2 8383 load_delay_nop ();
4d7206a2 8384 relax_switch ();
438c16b8 8385 }
252b5132 8386 else
252b5132 8387 {
67c0d1eb
RS
8388 int gpdelay;
8389
8390 gpdelay = reg_needs_delay (mips_gp_register);
df58fc94 8391 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
67c0d1eb
RS
8392 BFD_RELOC_MIPS_CALL_HI16);
8393 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
8394 PIC_CALL_REG, mips_gp_register);
8395 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8396 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
8397 PIC_CALL_REG);
269137b2 8398 load_delay_nop ();
4d7206a2 8399 relax_switch ();
67c0d1eb
RS
8400 if (gpdelay)
8401 macro_build (NULL, "nop", "");
252b5132 8402 }
67c0d1eb
RS
8403 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8404 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
4d7206a2 8405 mips_gp_register);
269137b2 8406 load_delay_nop ();
67c0d1eb
RS
8407 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8408 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
4d7206a2 8409 relax_end ();
df58fc94 8410 macro_build_jalr (&offset_expr, mips_cprestore_offset >= 0);
438c16b8 8411
6478892d
TS
8412 if (mips_cprestore_offset < 0)
8413 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8414 else
8415 {
90ecf173 8416 if (!mips_frame_reg_valid)
7a621144
DJ
8417 {
8418 as_warn (_("No .frame pseudo-op used in PIC code"));
8419 /* Quiet this warning. */
8420 mips_frame_reg_valid = 1;
8421 }
90ecf173 8422 if (!mips_cprestore_valid)
7a621144
DJ
8423 {
8424 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8425 /* Quiet this warning. */
8426 mips_cprestore_valid = 1;
8427 }
6478892d 8428 if (mips_opts.noreorder)
67c0d1eb 8429 macro_build (NULL, "nop", "");
6478892d 8430 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 8431 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 8432 mips_gp_register,
256ab948
TS
8433 mips_frame_reg,
8434 HAVE_64BIT_ADDRESSES);
6478892d 8435 }
252b5132
RH
8436 }
8437 }
0a44bf69
RS
8438 else if (mips_pic == VXWORKS_PIC)
8439 as_bad (_("Non-PIC jump used in PIC library"));
252b5132
RH
8440 else
8441 abort ();
8442
8fc2e39e 8443 break;
252b5132 8444
7f3c4072 8445 case M_LBUE_AB:
7f3c4072
CM
8446 s = "lbue";
8447 fmt = "t,+j(b)";
8448 offbits = 9;
8449 goto ld_st;
8450 case M_LHUE_AB:
7f3c4072
CM
8451 s = "lhue";
8452 fmt = "t,+j(b)";
8453 offbits = 9;
8454 goto ld_st;
8455 case M_LBE_AB:
7f3c4072
CM
8456 s = "lbe";
8457 fmt = "t,+j(b)";
8458 offbits = 9;
8459 goto ld_st;
8460 case M_LHE_AB:
7f3c4072
CM
8461 s = "lhe";
8462 fmt = "t,+j(b)";
8463 offbits = 9;
8464 goto ld_st;
8465 case M_LLE_AB:
7f3c4072
CM
8466 s = "lle";
8467 fmt = "t,+j(b)";
8468 offbits = 9;
8469 goto ld_st;
8470 case M_LWE_AB:
7f3c4072
CM
8471 s = "lwe";
8472 fmt = "t,+j(b)";
8473 offbits = 9;
8474 goto ld_st;
8475 case M_LWLE_AB:
7f3c4072
CM
8476 s = "lwle";
8477 fmt = "t,+j(b)";
8478 offbits = 9;
8479 goto ld_st;
8480 case M_LWRE_AB:
7f3c4072
CM
8481 s = "lwre";
8482 fmt = "t,+j(b)";
8483 offbits = 9;
8484 goto ld_st;
8485 case M_SBE_AB:
7f3c4072
CM
8486 s = "sbe";
8487 fmt = "t,+j(b)";
8488 offbits = 9;
8489 goto ld_st;
8490 case M_SCE_AB:
7f3c4072
CM
8491 s = "sce";
8492 fmt = "t,+j(b)";
8493 offbits = 9;
8494 goto ld_st;
8495 case M_SHE_AB:
7f3c4072
CM
8496 s = "she";
8497 fmt = "t,+j(b)";
8498 offbits = 9;
8499 goto ld_st;
8500 case M_SWE_AB:
7f3c4072
CM
8501 s = "swe";
8502 fmt = "t,+j(b)";
8503 offbits = 9;
8504 goto ld_st;
8505 case M_SWLE_AB:
7f3c4072
CM
8506 s = "swle";
8507 fmt = "t,+j(b)";
8508 offbits = 9;
8509 goto ld_st;
8510 case M_SWRE_AB:
7f3c4072
CM
8511 s = "swre";
8512 fmt = "t,+j(b)";
8513 offbits = 9;
8514 goto ld_st;
dec0624d 8515 case M_ACLR_AB:
dec0624d
MR
8516 s = "aclr";
8517 treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
8518 fmt = "\\,~(b)";
7f3c4072 8519 offbits = 12;
dec0624d
MR
8520 goto ld_st;
8521 case M_ASET_AB:
dec0624d
MR
8522 s = "aset";
8523 treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
8524 fmt = "\\,~(b)";
7f3c4072 8525 offbits = 12;
dec0624d 8526 goto ld_st;
252b5132
RH
8527 case M_LB_AB:
8528 s = "lb";
df58fc94 8529 fmt = "t,o(b)";
252b5132
RH
8530 goto ld;
8531 case M_LBU_AB:
8532 s = "lbu";
df58fc94 8533 fmt = "t,o(b)";
252b5132
RH
8534 goto ld;
8535 case M_LH_AB:
8536 s = "lh";
df58fc94 8537 fmt = "t,o(b)";
252b5132
RH
8538 goto ld;
8539 case M_LHU_AB:
8540 s = "lhu";
df58fc94 8541 fmt = "t,o(b)";
252b5132
RH
8542 goto ld;
8543 case M_LW_AB:
8544 s = "lw";
df58fc94 8545 fmt = "t,o(b)";
252b5132
RH
8546 goto ld;
8547 case M_LWC0_AB:
df58fc94 8548 gas_assert (!mips_opts.micromips);
252b5132 8549 s = "lwc0";
df58fc94 8550 fmt = "E,o(b)";
bdaaa2e1 8551 /* Itbl support may require additional care here. */
252b5132 8552 coproc = 1;
df58fc94 8553 goto ld_st;
252b5132
RH
8554 case M_LWC1_AB:
8555 s = "lwc1";
df58fc94 8556 fmt = "T,o(b)";
bdaaa2e1 8557 /* Itbl support may require additional care here. */
252b5132 8558 coproc = 1;
df58fc94 8559 goto ld_st;
252b5132
RH
8560 case M_LWC2_AB:
8561 s = "lwc2";
df58fc94 8562 fmt = COP12_FMT;
7f3c4072 8563 offbits = (mips_opts.micromips ? 12 : 16);
bdaaa2e1 8564 /* Itbl support may require additional care here. */
252b5132 8565 coproc = 1;
df58fc94 8566 goto ld_st;
252b5132 8567 case M_LWC3_AB:
df58fc94 8568 gas_assert (!mips_opts.micromips);
252b5132 8569 s = "lwc3";
df58fc94 8570 fmt = "E,o(b)";
bdaaa2e1 8571 /* Itbl support may require additional care here. */
252b5132 8572 coproc = 1;
df58fc94 8573 goto ld_st;
252b5132
RH
8574 case M_LWL_AB:
8575 s = "lwl";
df58fc94 8576 fmt = MEM12_FMT;
7f3c4072 8577 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 8578 goto ld_st;
252b5132
RH
8579 case M_LWR_AB:
8580 s = "lwr";
df58fc94 8581 fmt = MEM12_FMT;
7f3c4072 8582 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 8583 goto ld_st;
252b5132 8584 case M_LDC1_AB:
252b5132 8585 s = "ldc1";
df58fc94 8586 fmt = "T,o(b)";
bdaaa2e1 8587 /* Itbl support may require additional care here. */
252b5132 8588 coproc = 1;
df58fc94 8589 goto ld_st;
252b5132
RH
8590 case M_LDC2_AB:
8591 s = "ldc2";
df58fc94 8592 fmt = COP12_FMT;
7f3c4072 8593 offbits = (mips_opts.micromips ? 12 : 16);
bdaaa2e1 8594 /* Itbl support may require additional care here. */
252b5132 8595 coproc = 1;
df58fc94 8596 goto ld_st;
c77c0862 8597 case M_LQC2_AB:
c77c0862
RS
8598 s = "lqc2";
8599 fmt = "E,o(b)";
8600 /* Itbl support may require additional care here. */
8601 coproc = 1;
8602 goto ld_st;
252b5132
RH
8603 case M_LDC3_AB:
8604 s = "ldc3";
df58fc94 8605 fmt = "E,o(b)";
bdaaa2e1 8606 /* Itbl support may require additional care here. */
252b5132 8607 coproc = 1;
df58fc94 8608 goto ld_st;
252b5132
RH
8609 case M_LDL_AB:
8610 s = "ldl";
df58fc94 8611 fmt = MEM12_FMT;
7f3c4072 8612 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 8613 goto ld_st;
252b5132
RH
8614 case M_LDR_AB:
8615 s = "ldr";
df58fc94 8616 fmt = MEM12_FMT;
7f3c4072 8617 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 8618 goto ld_st;
252b5132
RH
8619 case M_LL_AB:
8620 s = "ll";
df58fc94 8621 fmt = MEM12_FMT;
7f3c4072 8622 offbits = (mips_opts.micromips ? 12 : 16);
252b5132
RH
8623 goto ld;
8624 case M_LLD_AB:
8625 s = "lld";
df58fc94 8626 fmt = MEM12_FMT;
7f3c4072 8627 offbits = (mips_opts.micromips ? 12 : 16);
252b5132
RH
8628 goto ld;
8629 case M_LWU_AB:
8630 s = "lwu";
df58fc94 8631 fmt = MEM12_FMT;
7f3c4072 8632 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94
RS
8633 goto ld;
8634 case M_LWP_AB:
df58fc94
RS
8635 gas_assert (mips_opts.micromips);
8636 s = "lwp";
8637 fmt = "t,~(b)";
7f3c4072 8638 offbits = 12;
df58fc94
RS
8639 lp = 1;
8640 goto ld;
8641 case M_LDP_AB:
df58fc94
RS
8642 gas_assert (mips_opts.micromips);
8643 s = "ldp";
8644 fmt = "t,~(b)";
7f3c4072 8645 offbits = 12;
df58fc94
RS
8646 lp = 1;
8647 goto ld;
8648 case M_LWM_AB:
df58fc94
RS
8649 gas_assert (mips_opts.micromips);
8650 s = "lwm";
8651 fmt = "n,~(b)";
7f3c4072 8652 offbits = 12;
df58fc94
RS
8653 goto ld_st;
8654 case M_LDM_AB:
df58fc94
RS
8655 gas_assert (mips_opts.micromips);
8656 s = "ldm";
8657 fmt = "n,~(b)";
7f3c4072 8658 offbits = 12;
df58fc94
RS
8659 goto ld_st;
8660
252b5132 8661 ld:
f19ccbda
MR
8662 /* We don't want to use $0 as tempreg. */
8663 if (breg == treg + lp || treg + lp == ZERO)
df58fc94 8664 goto ld_st;
252b5132 8665 else
df58fc94
RS
8666 tempreg = treg + lp;
8667 goto ld_noat;
8668
252b5132
RH
8669 case M_SB_AB:
8670 s = "sb";
df58fc94
RS
8671 fmt = "t,o(b)";
8672 goto ld_st;
252b5132
RH
8673 case M_SH_AB:
8674 s = "sh";
df58fc94
RS
8675 fmt = "t,o(b)";
8676 goto ld_st;
252b5132
RH
8677 case M_SW_AB:
8678 s = "sw";
df58fc94
RS
8679 fmt = "t,o(b)";
8680 goto ld_st;
252b5132 8681 case M_SWC0_AB:
df58fc94 8682 gas_assert (!mips_opts.micromips);
252b5132 8683 s = "swc0";
df58fc94 8684 fmt = "E,o(b)";
bdaaa2e1 8685 /* Itbl support may require additional care here. */
252b5132 8686 coproc = 1;
df58fc94 8687 goto ld_st;
252b5132
RH
8688 case M_SWC1_AB:
8689 s = "swc1";
df58fc94 8690 fmt = "T,o(b)";
bdaaa2e1 8691 /* Itbl support may require additional care here. */
252b5132 8692 coproc = 1;
df58fc94 8693 goto ld_st;
252b5132
RH
8694 case M_SWC2_AB:
8695 s = "swc2";
df58fc94 8696 fmt = COP12_FMT;
7f3c4072 8697 offbits = (mips_opts.micromips ? 12 : 16);
bdaaa2e1 8698 /* Itbl support may require additional care here. */
252b5132 8699 coproc = 1;
df58fc94 8700 goto ld_st;
252b5132 8701 case M_SWC3_AB:
df58fc94 8702 gas_assert (!mips_opts.micromips);
252b5132 8703 s = "swc3";
df58fc94 8704 fmt = "E,o(b)";
bdaaa2e1 8705 /* Itbl support may require additional care here. */
252b5132 8706 coproc = 1;
df58fc94 8707 goto ld_st;
252b5132
RH
8708 case M_SWL_AB:
8709 s = "swl";
df58fc94 8710 fmt = MEM12_FMT;
7f3c4072 8711 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 8712 goto ld_st;
252b5132
RH
8713 case M_SWR_AB:
8714 s = "swr";
df58fc94 8715 fmt = MEM12_FMT;
7f3c4072 8716 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 8717 goto ld_st;
252b5132
RH
8718 case M_SC_AB:
8719 s = "sc";
df58fc94 8720 fmt = MEM12_FMT;
7f3c4072 8721 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 8722 goto ld_st;
252b5132
RH
8723 case M_SCD_AB:
8724 s = "scd";
df58fc94 8725 fmt = MEM12_FMT;
7f3c4072 8726 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 8727 goto ld_st;
d43b4baf
TS
8728 case M_CACHE_AB:
8729 s = "cache";
df58fc94 8730 fmt = mips_opts.micromips ? "k,~(b)" : "k,o(b)";
7f3c4072
CM
8731 offbits = (mips_opts.micromips ? 12 : 16);
8732 goto ld_st;
8733 case M_CACHEE_AB:
7f3c4072
CM
8734 s = "cachee";
8735 fmt = "k,+j(b)";
8736 offbits = 9;
df58fc94 8737 goto ld_st;
3eebd5eb
MR
8738 case M_PREF_AB:
8739 s = "pref";
df58fc94 8740 fmt = !mips_opts.micromips ? "k,o(b)" : "k,~(b)";
7f3c4072
CM
8741 offbits = (mips_opts.micromips ? 12 : 16);
8742 goto ld_st;
8743 case M_PREFE_AB:
7f3c4072
CM
8744 s = "prefe";
8745 fmt = "k,+j(b)";
8746 offbits = 9;
df58fc94 8747 goto ld_st;
252b5132 8748 case M_SDC1_AB:
252b5132 8749 s = "sdc1";
df58fc94 8750 fmt = "T,o(b)";
252b5132 8751 coproc = 1;
bdaaa2e1 8752 /* Itbl support may require additional care here. */
df58fc94 8753 goto ld_st;
252b5132
RH
8754 case M_SDC2_AB:
8755 s = "sdc2";
df58fc94 8756 fmt = COP12_FMT;
7f3c4072 8757 offbits = (mips_opts.micromips ? 12 : 16);
c77c0862
RS
8758 /* Itbl support may require additional care here. */
8759 coproc = 1;
8760 goto ld_st;
8761 case M_SQC2_AB:
c77c0862
RS
8762 s = "sqc2";
8763 fmt = "E,o(b)";
bdaaa2e1 8764 /* Itbl support may require additional care here. */
252b5132 8765 coproc = 1;
df58fc94 8766 goto ld_st;
252b5132 8767 case M_SDC3_AB:
df58fc94 8768 gas_assert (!mips_opts.micromips);
252b5132 8769 s = "sdc3";
df58fc94 8770 fmt = "E,o(b)";
bdaaa2e1 8771 /* Itbl support may require additional care here. */
252b5132 8772 coproc = 1;
df58fc94 8773 goto ld_st;
252b5132
RH
8774 case M_SDL_AB:
8775 s = "sdl";
df58fc94 8776 fmt = MEM12_FMT;
7f3c4072 8777 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94 8778 goto ld_st;
252b5132
RH
8779 case M_SDR_AB:
8780 s = "sdr";
df58fc94 8781 fmt = MEM12_FMT;
7f3c4072 8782 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94
RS
8783 goto ld_st;
8784 case M_SWP_AB:
df58fc94
RS
8785 gas_assert (mips_opts.micromips);
8786 s = "swp";
8787 fmt = "t,~(b)";
7f3c4072 8788 offbits = 12;
df58fc94
RS
8789 goto ld_st;
8790 case M_SDP_AB:
df58fc94
RS
8791 gas_assert (mips_opts.micromips);
8792 s = "sdp";
8793 fmt = "t,~(b)";
7f3c4072 8794 offbits = 12;
df58fc94
RS
8795 goto ld_st;
8796 case M_SWM_AB:
df58fc94
RS
8797 gas_assert (mips_opts.micromips);
8798 s = "swm";
8799 fmt = "n,~(b)";
7f3c4072 8800 offbits = 12;
df58fc94
RS
8801 goto ld_st;
8802 case M_SDM_AB:
df58fc94
RS
8803 gas_assert (mips_opts.micromips);
8804 s = "sdm";
8805 fmt = "n,~(b)";
7f3c4072 8806 offbits = 12;
df58fc94
RS
8807
8808 ld_st:
8fc2e39e 8809 tempreg = AT;
df58fc94 8810 ld_noat:
f2ae14a1
RS
8811 if (small_offset_p (0, align, 16))
8812 {
8813 /* The first case exists for M_LD_AB and M_SD_AB, which are
8814 macros for o32 but which should act like normal instructions
8815 otherwise. */
8816 if (offbits == 16)
8817 macro_build (&offset_expr, s, fmt, treg, -1, offset_reloc[0],
8818 offset_reloc[1], offset_reloc[2], breg);
8819 else if (small_offset_p (0, align, offbits))
8820 {
8821 if (offbits == 0)
8822 macro_build (NULL, s, fmt, treg, breg);
8823 else
8824 macro_build (NULL, s, fmt, treg,
c8276761 8825 (int) offset_expr.X_add_number, breg);
f2ae14a1
RS
8826 }
8827 else
8828 {
8829 if (tempreg == AT)
8830 used_at = 1;
8831 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8832 tempreg, breg, -1, offset_reloc[0],
8833 offset_reloc[1], offset_reloc[2]);
8834 if (offbits == 0)
8835 macro_build (NULL, s, fmt, treg, tempreg);
8836 else
c8276761 8837 macro_build (NULL, s, fmt, treg, 0, tempreg);
f2ae14a1
RS
8838 }
8839 break;
8840 }
8841
8842 if (tempreg == AT)
8843 used_at = 1;
8844
252b5132
RH
8845 if (offset_expr.X_op != O_constant
8846 && offset_expr.X_op != O_symbol)
8847 {
f71d0d44 8848 as_bad (_("Expression too complex"));
252b5132
RH
8849 offset_expr.X_op = O_constant;
8850 }
8851
2051e8c4
MR
8852 if (HAVE_32BIT_ADDRESSES
8853 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
8854 {
8855 char value [32];
8856
8857 sprintf_vma (value, offset_expr.X_add_number);
20e1fcfd 8858 as_bad (_("Number (0x%s) larger than 32 bits"), value);
55e08f71 8859 }
2051e8c4 8860
252b5132
RH
8861 /* A constant expression in PIC code can be handled just as it
8862 is in non PIC code. */
aed1a261
RS
8863 if (offset_expr.X_op == O_constant)
8864 {
f2ae14a1
RS
8865 expr1.X_add_number = offset_high_part (offset_expr.X_add_number,
8866 offbits == 0 ? 16 : offbits);
8867 offset_expr.X_add_number -= expr1.X_add_number;
df58fc94 8868
f2ae14a1
RS
8869 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
8870 if (breg != 0)
8871 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8872 tempreg, tempreg, breg);
7f3c4072 8873 if (offbits == 0)
dd6a37e7 8874 {
f2ae14a1 8875 if (offset_expr.X_add_number != 0)
dd6a37e7 8876 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
f2ae14a1 8877 "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
dd6a37e7
AP
8878 macro_build (NULL, s, fmt, treg, tempreg);
8879 }
7f3c4072 8880 else if (offbits == 16)
f2ae14a1 8881 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, tempreg);
df58fc94 8882 else
f2ae14a1 8883 macro_build (NULL, s, fmt, treg,
c8276761 8884 (int) offset_expr.X_add_number, tempreg);
df58fc94 8885 }
7f3c4072 8886 else if (offbits != 16)
df58fc94 8887 {
7f3c4072
CM
8888 /* The offset field is too narrow to be used for a low-part
8889 relocation, so load the whole address into the auxillary
f2ae14a1
RS
8890 register. */
8891 load_address (tempreg, &offset_expr, &used_at);
8892 if (breg != 0)
8893 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8894 tempreg, tempreg, breg);
7f3c4072 8895 if (offbits == 0)
dd6a37e7
AP
8896 macro_build (NULL, s, fmt, treg, tempreg);
8897 else
c8276761 8898 macro_build (NULL, s, fmt, treg, 0, tempreg);
aed1a261
RS
8899 }
8900 else if (mips_pic == NO_PIC)
252b5132
RH
8901 {
8902 /* If this is a reference to a GP relative symbol, and there
8903 is no base register, we want
cdf6fd85 8904 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
8905 Otherwise, if there is no base register, we want
8906 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
8907 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8908 If we have a constant, we need two instructions anyhow,
8909 so we always use the latter form.
8910
8911 If we have a base register, and this is a reference to a
8912 GP relative symbol, we want
8913 addu $tempreg,$breg,$gp
cdf6fd85 8914 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
8915 Otherwise we want
8916 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
8917 addu $tempreg,$tempreg,$breg
8918 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245 8919 With a constant we always use the latter case.
76b3015f 8920
d6bc6245
TS
8921 With 64bit address space and no base register and $at usable,
8922 we want
8923 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8924 lui $at,<sym> (BFD_RELOC_HI16_S)
8925 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8926 dsll32 $tempreg,0
8927 daddu $tempreg,$at
8928 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8929 If we have a base register, we want
8930 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8931 lui $at,<sym> (BFD_RELOC_HI16_S)
8932 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8933 daddu $at,$breg
8934 dsll32 $tempreg,0
8935 daddu $tempreg,$at
8936 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8937
8938 Without $at we can't generate the optimal path for superscalar
8939 processors here since this would require two temporary registers.
8940 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8941 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8942 dsll $tempreg,16
8943 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
8944 dsll $tempreg,16
8945 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8946 If we have a base register, we want
8947 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8948 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8949 dsll $tempreg,16
8950 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
8951 dsll $tempreg,16
8952 daddu $tempreg,$tempreg,$breg
8953 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6373ee54 8954
6caf9ef4 8955 For GP relative symbols in 64bit address space we can use
aed1a261
RS
8956 the same sequence as in 32bit address space. */
8957 if (HAVE_64BIT_SYMBOLS)
d6bc6245 8958 {
aed1a261 8959 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4
TS
8960 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
8961 {
8962 relax_start (offset_expr.X_add_symbol);
8963 if (breg == 0)
8964 {
8965 macro_build (&offset_expr, s, fmt, treg,
8966 BFD_RELOC_GPREL16, mips_gp_register);
8967 }
8968 else
8969 {
8970 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8971 tempreg, breg, mips_gp_register);
8972 macro_build (&offset_expr, s, fmt, treg,
8973 BFD_RELOC_GPREL16, tempreg);
8974 }
8975 relax_switch ();
8976 }
d6bc6245 8977
741fe287 8978 if (used_at == 0 && mips_opts.at)
d6bc6245 8979 {
df58fc94 8980 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
67c0d1eb 8981 BFD_RELOC_MIPS_HIGHEST);
df58fc94 8982 macro_build (&offset_expr, "lui", LUI_FMT, AT,
67c0d1eb
RS
8983 BFD_RELOC_HI16_S);
8984 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
8985 tempreg, BFD_RELOC_MIPS_HIGHER);
d6bc6245 8986 if (breg != 0)
67c0d1eb 8987 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
df58fc94 8988 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
67c0d1eb
RS
8989 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
8990 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
8991 tempreg);
d6bc6245
TS
8992 used_at = 1;
8993 }
8994 else
8995 {
df58fc94 8996 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
67c0d1eb
RS
8997 BFD_RELOC_MIPS_HIGHEST);
8998 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
8999 tempreg, BFD_RELOC_MIPS_HIGHER);
df58fc94 9000 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
67c0d1eb
RS
9001 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
9002 tempreg, BFD_RELOC_HI16_S);
df58fc94 9003 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
d6bc6245 9004 if (breg != 0)
67c0d1eb 9005 macro_build (NULL, "daddu", "d,v,t",
17a2f251 9006 tempreg, tempreg, breg);
67c0d1eb 9007 macro_build (&offset_expr, s, fmt, treg,
17a2f251 9008 BFD_RELOC_LO16, tempreg);
d6bc6245 9009 }
6caf9ef4
TS
9010
9011 if (mips_relax.sequence)
9012 relax_end ();
8fc2e39e 9013 break;
d6bc6245 9014 }
256ab948 9015
252b5132
RH
9016 if (breg == 0)
9017 {
67c0d1eb 9018 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 9019 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 9020 {
4d7206a2 9021 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
9022 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
9023 mips_gp_register);
4d7206a2 9024 relax_switch ();
252b5132 9025 }
67c0d1eb
RS
9026 macro_build_lui (&offset_expr, tempreg);
9027 macro_build (&offset_expr, s, fmt, treg,
17a2f251 9028 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
9029 if (mips_relax.sequence)
9030 relax_end ();
252b5132
RH
9031 }
9032 else
9033 {
67c0d1eb 9034 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 9035 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 9036 {
4d7206a2 9037 relax_start (offset_expr.X_add_symbol);
67c0d1eb 9038 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 9039 tempreg, breg, mips_gp_register);
67c0d1eb 9040 macro_build (&offset_expr, s, fmt, treg,
17a2f251 9041 BFD_RELOC_GPREL16, tempreg);
4d7206a2 9042 relax_switch ();
252b5132 9043 }
67c0d1eb
RS
9044 macro_build_lui (&offset_expr, tempreg);
9045 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 9046 tempreg, tempreg, breg);
67c0d1eb 9047 macro_build (&offset_expr, s, fmt, treg,
17a2f251 9048 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
9049 if (mips_relax.sequence)
9050 relax_end ();
252b5132
RH
9051 }
9052 }
0a44bf69 9053 else if (!mips_big_got)
252b5132 9054 {
ed6fb7bd 9055 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
f9419b05 9056
252b5132
RH
9057 /* If this is a reference to an external symbol, we want
9058 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9059 nop
9060 <op> $treg,0($tempreg)
9061 Otherwise we want
9062 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9063 nop
9064 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
9065 <op> $treg,0($tempreg)
f5040a92
AO
9066
9067 For NewABI, we want
9068 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
9069 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
9070
252b5132
RH
9071 If there is a base register, we add it to $tempreg before
9072 the <op>. If there is a constant, we stick it in the
9073 <op> instruction. We don't handle constants larger than
9074 16 bits, because we have no way to load the upper 16 bits
9075 (actually, we could handle them for the subset of cases
9076 in which we are not using $at). */
9c2799c2 9077 gas_assert (offset_expr.X_op == O_symbol);
f5040a92
AO
9078 if (HAVE_NEWABI)
9079 {
67c0d1eb
RS
9080 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9081 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 9082 if (breg != 0)
67c0d1eb 9083 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 9084 tempreg, tempreg, breg);
67c0d1eb 9085 macro_build (&offset_expr, s, fmt, treg,
17a2f251 9086 BFD_RELOC_MIPS_GOT_OFST, tempreg);
f5040a92
AO
9087 break;
9088 }
252b5132
RH
9089 expr1.X_add_number = offset_expr.X_add_number;
9090 offset_expr.X_add_number = 0;
9091 if (expr1.X_add_number < -0x8000
9092 || expr1.X_add_number >= 0x8000)
9093 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb
RS
9094 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9095 lw_reloc_type, mips_gp_register);
269137b2 9096 load_delay_nop ();
4d7206a2
RS
9097 relax_start (offset_expr.X_add_symbol);
9098 relax_switch ();
67c0d1eb
RS
9099 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
9100 tempreg, BFD_RELOC_LO16);
4d7206a2 9101 relax_end ();
252b5132 9102 if (breg != 0)
67c0d1eb 9103 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 9104 tempreg, tempreg, breg);
67c0d1eb 9105 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 9106 }
0a44bf69 9107 else if (mips_big_got && !HAVE_NEWABI)
252b5132 9108 {
67c0d1eb 9109 int gpdelay;
252b5132
RH
9110
9111 /* If this is a reference to an external symbol, we want
9112 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9113 addu $tempreg,$tempreg,$gp
9114 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
9115 <op> $treg,0($tempreg)
9116 Otherwise we want
9117 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9118 nop
9119 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
9120 <op> $treg,0($tempreg)
9121 If there is a base register, we add it to $tempreg before
9122 the <op>. If there is a constant, we stick it in the
9123 <op> instruction. We don't handle constants larger than
9124 16 bits, because we have no way to load the upper 16 bits
9125 (actually, we could handle them for the subset of cases
f5040a92 9126 in which we are not using $at). */
9c2799c2 9127 gas_assert (offset_expr.X_op == O_symbol);
252b5132
RH
9128 expr1.X_add_number = offset_expr.X_add_number;
9129 offset_expr.X_add_number = 0;
9130 if (expr1.X_add_number < -0x8000
9131 || expr1.X_add_number >= 0x8000)
9132 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 9133 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 9134 relax_start (offset_expr.X_add_symbol);
df58fc94 9135 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
17a2f251 9136 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
9137 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
9138 mips_gp_register);
9139 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9140 BFD_RELOC_MIPS_GOT_LO16, tempreg);
4d7206a2 9141 relax_switch ();
67c0d1eb
RS
9142 if (gpdelay)
9143 macro_build (NULL, "nop", "");
9144 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9145 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 9146 load_delay_nop ();
67c0d1eb
RS
9147 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
9148 tempreg, BFD_RELOC_LO16);
4d7206a2
RS
9149 relax_end ();
9150
252b5132 9151 if (breg != 0)
67c0d1eb 9152 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 9153 tempreg, tempreg, breg);
67c0d1eb 9154 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 9155 }
0a44bf69 9156 else if (mips_big_got && HAVE_NEWABI)
f5040a92 9157 {
f5040a92
AO
9158 /* If this is a reference to an external symbol, we want
9159 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9160 add $tempreg,$tempreg,$gp
9161 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
9162 <op> $treg,<ofst>($tempreg)
9163 Otherwise, for local symbols, we want:
9164 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
9165 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
9c2799c2 9166 gas_assert (offset_expr.X_op == O_symbol);
4d7206a2 9167 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
9168 offset_expr.X_add_number = 0;
9169 if (expr1.X_add_number < -0x8000
9170 || expr1.X_add_number >= 0x8000)
9171 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4d7206a2 9172 relax_start (offset_expr.X_add_symbol);
df58fc94 9173 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
17a2f251 9174 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
9175 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
9176 mips_gp_register);
9177 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9178 BFD_RELOC_MIPS_GOT_LO16, tempreg);
f5040a92 9179 if (breg != 0)
67c0d1eb 9180 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 9181 tempreg, tempreg, breg);
67c0d1eb 9182 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
684022ea 9183
4d7206a2 9184 relax_switch ();
f5040a92 9185 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
9186 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9187 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 9188 if (breg != 0)
67c0d1eb 9189 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 9190 tempreg, tempreg, breg);
67c0d1eb 9191 macro_build (&offset_expr, s, fmt, treg,
17a2f251 9192 BFD_RELOC_MIPS_GOT_OFST, tempreg);
4d7206a2 9193 relax_end ();
f5040a92 9194 }
252b5132
RH
9195 else
9196 abort ();
9197
252b5132
RH
9198 break;
9199
833794fc
MR
9200 case M_JRADDIUSP:
9201 gas_assert (mips_opts.micromips);
9202 gas_assert (mips_opts.insn32);
9203 start_noreorder ();
9204 macro_build (NULL, "jr", "s", RA);
9205 expr1.X_add_number = EXTRACT_OPERAND (1, IMMP, *ip) << 2;
9206 macro_build (&expr1, "addiu", "t,r,j", SP, SP, BFD_RELOC_LO16);
9207 end_noreorder ();
9208 break;
9209
9210 case M_JRC:
9211 gas_assert (mips_opts.micromips);
9212 gas_assert (mips_opts.insn32);
9213 macro_build (NULL, "jr", "s", sreg);
9214 if (mips_opts.noreorder)
9215 macro_build (NULL, "nop", "");
9216 break;
9217
252b5132
RH
9218 case M_LI:
9219 case M_LI_S:
67c0d1eb 9220 load_register (treg, &imm_expr, 0);
8fc2e39e 9221 break;
252b5132
RH
9222
9223 case M_DLI:
67c0d1eb 9224 load_register (treg, &imm_expr, 1);
8fc2e39e 9225 break;
252b5132
RH
9226
9227 case M_LI_SS:
9228 if (imm_expr.X_op == O_constant)
9229 {
8fc2e39e 9230 used_at = 1;
67c0d1eb
RS
9231 load_register (AT, &imm_expr, 0);
9232 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
9233 break;
9234 }
9235 else
9236 {
9c2799c2 9237 gas_assert (offset_expr.X_op == O_symbol
90ecf173
MR
9238 && strcmp (segment_name (S_GET_SEGMENT
9239 (offset_expr.X_add_symbol)),
9240 ".lit4") == 0
9241 && offset_expr.X_add_number == 0);
67c0d1eb 9242 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
17a2f251 9243 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 9244 break;
252b5132
RH
9245 }
9246
9247 case M_LI_D:
ca4e0257
RS
9248 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
9249 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
9250 order 32 bits of the value and the low order 32 bits are either
9251 zero or in OFFSET_EXPR. */
252b5132
RH
9252 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
9253 {
ca4e0257 9254 if (HAVE_64BIT_GPRS)
67c0d1eb 9255 load_register (treg, &imm_expr, 1);
252b5132
RH
9256 else
9257 {
9258 int hreg, lreg;
9259
9260 if (target_big_endian)
9261 {
9262 hreg = treg;
9263 lreg = treg + 1;
9264 }
9265 else
9266 {
9267 hreg = treg + 1;
9268 lreg = treg;
9269 }
9270
9271 if (hreg <= 31)
67c0d1eb 9272 load_register (hreg, &imm_expr, 0);
252b5132
RH
9273 if (lreg <= 31)
9274 {
9275 if (offset_expr.X_op == O_absent)
67c0d1eb 9276 move_register (lreg, 0);
252b5132
RH
9277 else
9278 {
9c2799c2 9279 gas_assert (offset_expr.X_op == O_constant);
67c0d1eb 9280 load_register (lreg, &offset_expr, 0);
252b5132
RH
9281 }
9282 }
9283 }
8fc2e39e 9284 break;
252b5132
RH
9285 }
9286
9287 /* We know that sym is in the .rdata section. First we get the
9288 upper 16 bits of the address. */
9289 if (mips_pic == NO_PIC)
9290 {
67c0d1eb 9291 macro_build_lui (&offset_expr, AT);
8fc2e39e 9292 used_at = 1;
252b5132 9293 }
0a44bf69 9294 else
252b5132 9295 {
67c0d1eb
RS
9296 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9297 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8fc2e39e 9298 used_at = 1;
252b5132 9299 }
bdaaa2e1 9300
252b5132 9301 /* Now we load the register(s). */
ca4e0257 9302 if (HAVE_64BIT_GPRS)
8fc2e39e
TS
9303 {
9304 used_at = 1;
9305 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
9306 }
252b5132
RH
9307 else
9308 {
8fc2e39e 9309 used_at = 1;
67c0d1eb 9310 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
f9419b05 9311 if (treg != RA)
252b5132
RH
9312 {
9313 /* FIXME: How in the world do we deal with the possible
9314 overflow here? */
9315 offset_expr.X_add_number += 4;
67c0d1eb 9316 macro_build (&offset_expr, "lw", "t,o(b)",
17a2f251 9317 treg + 1, BFD_RELOC_LO16, AT);
252b5132
RH
9318 }
9319 }
252b5132
RH
9320 break;
9321
9322 case M_LI_DD:
ca4e0257
RS
9323 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
9324 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
9325 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
9326 the value and the low order 32 bits are either zero or in
9327 OFFSET_EXPR. */
252b5132
RH
9328 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
9329 {
8fc2e39e 9330 used_at = 1;
67c0d1eb 9331 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
ca4e0257
RS
9332 if (HAVE_64BIT_FPRS)
9333 {
9c2799c2 9334 gas_assert (HAVE_64BIT_GPRS);
67c0d1eb 9335 macro_build (NULL, "dmtc1", "t,S", AT, treg);
ca4e0257 9336 }
252b5132
RH
9337 else
9338 {
67c0d1eb 9339 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
252b5132 9340 if (offset_expr.X_op == O_absent)
67c0d1eb 9341 macro_build (NULL, "mtc1", "t,G", 0, treg);
252b5132
RH
9342 else
9343 {
9c2799c2 9344 gas_assert (offset_expr.X_op == O_constant);
67c0d1eb
RS
9345 load_register (AT, &offset_expr, 0);
9346 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
9347 }
9348 }
9349 break;
9350 }
9351
9c2799c2 9352 gas_assert (offset_expr.X_op == O_symbol
90ecf173 9353 && offset_expr.X_add_number == 0);
252b5132
RH
9354 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
9355 if (strcmp (s, ".lit8") == 0)
f2ae14a1
RS
9356 {
9357 breg = mips_gp_register;
9358 offset_reloc[0] = BFD_RELOC_MIPS_LITERAL;
9359 offset_reloc[1] = BFD_RELOC_UNUSED;
9360 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
9361 }
9362 else
9363 {
9c2799c2 9364 gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
8fc2e39e 9365 used_at = 1;
0a44bf69 9366 if (mips_pic != NO_PIC)
67c0d1eb
RS
9367 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9368 BFD_RELOC_MIPS_GOT16, mips_gp_register);
252b5132
RH
9369 else
9370 {
9371 /* FIXME: This won't work for a 64 bit address. */
67c0d1eb 9372 macro_build_lui (&offset_expr, AT);
252b5132 9373 }
bdaaa2e1 9374
252b5132 9375 breg = AT;
f2ae14a1
RS
9376 offset_reloc[0] = BFD_RELOC_LO16;
9377 offset_reloc[1] = BFD_RELOC_UNUSED;
9378 offset_reloc[2] = BFD_RELOC_UNUSED;
9379 }
9380 align = 8;
9381 /* Fall through */
c4a68bea 9382
252b5132
RH
9383 case M_L_DAB:
9384 /*
9385 * The MIPS assembler seems to check for X_add_number not
9386 * being double aligned and generating:
9387 * lui at,%hi(foo+1)
9388 * addu at,at,v1
9389 * addiu at,at,%lo(foo+1)
9390 * lwc1 f2,0(at)
9391 * lwc1 f3,4(at)
9392 * But, the resulting address is the same after relocation so why
9393 * generate the extra instruction?
9394 */
bdaaa2e1 9395 /* Itbl support may require additional care here. */
252b5132 9396 coproc = 1;
df58fc94 9397 fmt = "T,o(b)";
0aa27725 9398 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
252b5132
RH
9399 {
9400 s = "ldc1";
df58fc94 9401 goto ld_st;
252b5132 9402 }
252b5132 9403 s = "lwc1";
252b5132
RH
9404 goto ldd_std;
9405
9406 case M_S_DAB:
df58fc94
RS
9407 gas_assert (!mips_opts.micromips);
9408 /* Itbl support may require additional care here. */
9409 coproc = 1;
9410 fmt = "T,o(b)";
0aa27725 9411 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
252b5132
RH
9412 {
9413 s = "sdc1";
df58fc94 9414 goto ld_st;
252b5132 9415 }
252b5132 9416 s = "swc1";
252b5132
RH
9417 goto ldd_std;
9418
e407c74b
NC
9419 case M_LQ_AB:
9420 fmt = "t,o(b)";
9421 s = "lq";
9422 goto ld;
9423
9424 case M_SQ_AB:
9425 fmt = "t,o(b)";
9426 s = "sq";
9427 goto ld_st;
9428
252b5132 9429 case M_LD_AB:
df58fc94 9430 fmt = "t,o(b)";
ca4e0257 9431 if (HAVE_64BIT_GPRS)
252b5132
RH
9432 {
9433 s = "ld";
9434 goto ld;
9435 }
252b5132 9436 s = "lw";
252b5132
RH
9437 goto ldd_std;
9438
9439 case M_SD_AB:
df58fc94 9440 fmt = "t,o(b)";
ca4e0257 9441 if (HAVE_64BIT_GPRS)
252b5132
RH
9442 {
9443 s = "sd";
df58fc94 9444 goto ld_st;
252b5132 9445 }
252b5132 9446 s = "sw";
252b5132
RH
9447
9448 ldd_std:
f2ae14a1
RS
9449 /* Even on a big endian machine $fn comes before $fn+1. We have
9450 to adjust when loading from memory. We set coproc if we must
9451 load $fn+1 first. */
9452 /* Itbl support may require additional care here. */
9453 if (!target_big_endian)
9454 coproc = 0;
9455
9456 if (small_offset_p (0, align, 16))
9457 {
9458 ep = &offset_expr;
9459 if (!small_offset_p (4, align, 16))
9460 {
9461 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", AT, breg,
9462 -1, offset_reloc[0], offset_reloc[1],
9463 offset_reloc[2]);
9464 expr1.X_add_number = 0;
9465 ep = &expr1;
9466 breg = AT;
9467 used_at = 1;
9468 offset_reloc[0] = BFD_RELOC_LO16;
9469 offset_reloc[1] = BFD_RELOC_UNUSED;
9470 offset_reloc[2] = BFD_RELOC_UNUSED;
9471 }
9472 if (strcmp (s, "lw") == 0 && treg == breg)
9473 {
9474 ep->X_add_number += 4;
9475 macro_build (ep, s, fmt, treg + 1, -1, offset_reloc[0],
9476 offset_reloc[1], offset_reloc[2], breg);
9477 ep->X_add_number -= 4;
9478 macro_build (ep, s, fmt, treg, -1, offset_reloc[0],
9479 offset_reloc[1], offset_reloc[2], breg);
9480 }
9481 else
9482 {
9483 macro_build (ep, s, fmt, coproc ? treg + 1 : treg, -1,
9484 offset_reloc[0], offset_reloc[1], offset_reloc[2],
9485 breg);
9486 ep->X_add_number += 4;
9487 macro_build (ep, s, fmt, coproc ? treg : treg + 1, -1,
9488 offset_reloc[0], offset_reloc[1], offset_reloc[2],
9489 breg);
9490 }
9491 break;
9492 }
9493
252b5132
RH
9494 if (offset_expr.X_op != O_symbol
9495 && offset_expr.X_op != O_constant)
9496 {
f71d0d44 9497 as_bad (_("Expression too complex"));
252b5132
RH
9498 offset_expr.X_op = O_constant;
9499 }
9500
2051e8c4
MR
9501 if (HAVE_32BIT_ADDRESSES
9502 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
55e08f71
NC
9503 {
9504 char value [32];
9505
9506 sprintf_vma (value, offset_expr.X_add_number);
20e1fcfd 9507 as_bad (_("Number (0x%s) larger than 32 bits"), value);
55e08f71 9508 }
2051e8c4 9509
90ecf173 9510 if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
252b5132
RH
9511 {
9512 /* If this is a reference to a GP relative symbol, we want
cdf6fd85
TS
9513 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
9514 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
9515 If we have a base register, we use this
9516 addu $at,$breg,$gp
cdf6fd85
TS
9517 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
9518 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
9519 If this is not a GP relative symbol, we want
9520 lui $at,<sym> (BFD_RELOC_HI16_S)
9521 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9522 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9523 If there is a base register, we add it to $at after the
9524 lui instruction. If there is a constant, we always use
9525 the last case. */
39a59cf8
MR
9526 if (offset_expr.X_op == O_symbol
9527 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 9528 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 9529 {
4d7206a2 9530 relax_start (offset_expr.X_add_symbol);
252b5132
RH
9531 if (breg == 0)
9532 {
c9914766 9533 tempreg = mips_gp_register;
252b5132
RH
9534 }
9535 else
9536 {
67c0d1eb 9537 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 9538 AT, breg, mips_gp_register);
252b5132 9539 tempreg = AT;
252b5132
RH
9540 used_at = 1;
9541 }
9542
beae10d5 9543 /* Itbl support may require additional care here. */
67c0d1eb 9544 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 9545 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
9546 offset_expr.X_add_number += 4;
9547
9548 /* Set mips_optimize to 2 to avoid inserting an
9549 undesired nop. */
9550 hold_mips_optimize = mips_optimize;
9551 mips_optimize = 2;
beae10d5 9552 /* Itbl support may require additional care here. */
67c0d1eb 9553 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 9554 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
9555 mips_optimize = hold_mips_optimize;
9556
4d7206a2 9557 relax_switch ();
252b5132 9558
0970e49e 9559 offset_expr.X_add_number -= 4;
252b5132 9560 }
8fc2e39e 9561 used_at = 1;
f2ae14a1
RS
9562 if (offset_high_part (offset_expr.X_add_number, 16)
9563 != offset_high_part (offset_expr.X_add_number + 4, 16))
9564 {
9565 load_address (AT, &offset_expr, &used_at);
9566 offset_expr.X_op = O_constant;
9567 offset_expr.X_add_number = 0;
9568 }
9569 else
9570 macro_build_lui (&offset_expr, AT);
252b5132 9571 if (breg != 0)
67c0d1eb 9572 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 9573 /* Itbl support may require additional care here. */
67c0d1eb 9574 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 9575 BFD_RELOC_LO16, AT);
252b5132
RH
9576 /* FIXME: How do we handle overflow here? */
9577 offset_expr.X_add_number += 4;
beae10d5 9578 /* Itbl support may require additional care here. */
67c0d1eb 9579 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 9580 BFD_RELOC_LO16, AT);
4d7206a2
RS
9581 if (mips_relax.sequence)
9582 relax_end ();
bdaaa2e1 9583 }
0a44bf69 9584 else if (!mips_big_got)
252b5132 9585 {
252b5132
RH
9586 /* If this is a reference to an external symbol, we want
9587 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9588 nop
9589 <op> $treg,0($at)
9590 <op> $treg+1,4($at)
9591 Otherwise we want
9592 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9593 nop
9594 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9595 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9596 If there is a base register we add it to $at before the
9597 lwc1 instructions. If there is a constant we include it
9598 in the lwc1 instructions. */
9599 used_at = 1;
9600 expr1.X_add_number = offset_expr.X_add_number;
252b5132
RH
9601 if (expr1.X_add_number < -0x8000
9602 || expr1.X_add_number >= 0x8000 - 4)
9603 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 9604 load_got_offset (AT, &offset_expr);
269137b2 9605 load_delay_nop ();
252b5132 9606 if (breg != 0)
67c0d1eb 9607 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
252b5132
RH
9608
9609 /* Set mips_optimize to 2 to avoid inserting an undesired
9610 nop. */
9611 hold_mips_optimize = mips_optimize;
9612 mips_optimize = 2;
4d7206a2 9613
beae10d5 9614 /* Itbl support may require additional care here. */
4d7206a2 9615 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
9616 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
9617 BFD_RELOC_LO16, AT);
4d7206a2 9618 expr1.X_add_number += 4;
67c0d1eb
RS
9619 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
9620 BFD_RELOC_LO16, AT);
4d7206a2 9621 relax_switch ();
67c0d1eb
RS
9622 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9623 BFD_RELOC_LO16, AT);
4d7206a2 9624 offset_expr.X_add_number += 4;
67c0d1eb
RS
9625 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9626 BFD_RELOC_LO16, AT);
4d7206a2 9627 relax_end ();
252b5132 9628
4d7206a2 9629 mips_optimize = hold_mips_optimize;
252b5132 9630 }
0a44bf69 9631 else if (mips_big_got)
252b5132 9632 {
67c0d1eb 9633 int gpdelay;
252b5132
RH
9634
9635 /* If this is a reference to an external symbol, we want
9636 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9637 addu $at,$at,$gp
9638 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
9639 nop
9640 <op> $treg,0($at)
9641 <op> $treg+1,4($at)
9642 Otherwise we want
9643 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9644 nop
9645 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9646 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9647 If there is a base register we add it to $at before the
9648 lwc1 instructions. If there is a constant we include it
9649 in the lwc1 instructions. */
9650 used_at = 1;
9651 expr1.X_add_number = offset_expr.X_add_number;
9652 offset_expr.X_add_number = 0;
9653 if (expr1.X_add_number < -0x8000
9654 || expr1.X_add_number >= 0x8000 - 4)
9655 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
67c0d1eb 9656 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 9657 relax_start (offset_expr.X_add_symbol);
df58fc94 9658 macro_build (&offset_expr, "lui", LUI_FMT,
67c0d1eb
RS
9659 AT, BFD_RELOC_MIPS_GOT_HI16);
9660 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 9661 AT, AT, mips_gp_register);
67c0d1eb 9662 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 9663 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
269137b2 9664 load_delay_nop ();
252b5132 9665 if (breg != 0)
67c0d1eb 9666 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 9667 /* Itbl support may require additional care here. */
67c0d1eb 9668 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
17a2f251 9669 BFD_RELOC_LO16, AT);
252b5132
RH
9670 expr1.X_add_number += 4;
9671
9672 /* Set mips_optimize to 2 to avoid inserting an undesired
9673 nop. */
9674 hold_mips_optimize = mips_optimize;
9675 mips_optimize = 2;
beae10d5 9676 /* Itbl support may require additional care here. */
67c0d1eb 9677 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
17a2f251 9678 BFD_RELOC_LO16, AT);
252b5132
RH
9679 mips_optimize = hold_mips_optimize;
9680 expr1.X_add_number -= 4;
9681
4d7206a2
RS
9682 relax_switch ();
9683 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
9684 if (gpdelay)
9685 macro_build (NULL, "nop", "");
9686 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9687 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 9688 load_delay_nop ();
252b5132 9689 if (breg != 0)
67c0d1eb 9690 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 9691 /* Itbl support may require additional care here. */
67c0d1eb
RS
9692 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9693 BFD_RELOC_LO16, AT);
4d7206a2 9694 offset_expr.X_add_number += 4;
252b5132
RH
9695
9696 /* Set mips_optimize to 2 to avoid inserting an undesired
9697 nop. */
9698 hold_mips_optimize = mips_optimize;
9699 mips_optimize = 2;
beae10d5 9700 /* Itbl support may require additional care here. */
67c0d1eb
RS
9701 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9702 BFD_RELOC_LO16, AT);
252b5132 9703 mips_optimize = hold_mips_optimize;
4d7206a2 9704 relax_end ();
252b5132 9705 }
252b5132
RH
9706 else
9707 abort ();
9708
252b5132 9709 break;
dd6a37e7
AP
9710
9711 case M_SAA_AB:
dd6a37e7 9712 s = "saa";
7f3c4072 9713 offbits = 0;
dd6a37e7
AP
9714 fmt = "t,(b)";
9715 goto ld_st;
9716 case M_SAAD_AB:
dd6a37e7 9717 s = "saad";
7f3c4072 9718 offbits = 0;
dd6a37e7
AP
9719 fmt = "t,(b)";
9720 goto ld_st;
9721
252b5132
RH
9722 /* New code added to support COPZ instructions.
9723 This code builds table entries out of the macros in mip_opcodes.
9724 R4000 uses interlocks to handle coproc delays.
9725 Other chips (like the R3000) require nops to be inserted for delays.
9726
f72c8c98 9727 FIXME: Currently, we require that the user handle delays.
252b5132
RH
9728 In order to fill delay slots for non-interlocked chips,
9729 we must have a way to specify delays based on the coprocessor.
9730 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
9731 What are the side-effects of the cop instruction?
9732 What cache support might we have and what are its effects?
9733 Both coprocessor & memory require delays. how long???
bdaaa2e1 9734 What registers are read/set/modified?
252b5132
RH
9735
9736 If an itbl is provided to interpret cop instructions,
bdaaa2e1 9737 this knowledge can be encoded in the itbl spec. */
252b5132
RH
9738
9739 case M_COP0:
9740 s = "c0";
9741 goto copz;
9742 case M_COP1:
9743 s = "c1";
9744 goto copz;
9745 case M_COP2:
9746 s = "c2";
9747 goto copz;
9748 case M_COP3:
9749 s = "c3";
9750 copz:
df58fc94 9751 gas_assert (!mips_opts.micromips);
252b5132
RH
9752 /* For now we just do C (same as Cz). The parameter will be
9753 stored in insn_opcode by mips_ip. */
c8276761 9754 macro_build (NULL, s, "C", (int) ip->insn_opcode);
8fc2e39e 9755 break;
252b5132 9756
ea1fb5dc 9757 case M_MOVE:
67c0d1eb 9758 move_register (dreg, sreg);
8fc2e39e 9759 break;
ea1fb5dc 9760
833794fc
MR
9761 case M_MOVEP:
9762 gas_assert (mips_opts.micromips);
9763 gas_assert (mips_opts.insn32);
e76ff5ab
RS
9764 dreg = micromips_to_32_reg_h_map1[EXTRACT_OPERAND (1, MH, *ip)];
9765 breg = micromips_to_32_reg_h_map2[EXTRACT_OPERAND (1, MH, *ip)];
833794fc
MR
9766 sreg = micromips_to_32_reg_m_map[EXTRACT_OPERAND (1, MM, *ip)];
9767 treg = micromips_to_32_reg_n_map[EXTRACT_OPERAND (1, MN, *ip)];
9768 move_register (dreg, sreg);
9769 move_register (breg, treg);
9770 break;
9771
252b5132
RH
9772 case M_DMUL:
9773 dbl = 1;
9774 case M_MUL:
e407c74b
NC
9775 if (mips_opts.arch == CPU_R5900)
9776 {
9777 macro_build (NULL, dbl ? "dmultu" : "multu", "d,s,t", dreg, sreg, treg);
9778 }
9779 else
9780 {
67c0d1eb 9781 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
df58fc94 9782 macro_build (NULL, "mflo", MFHL_FMT, dreg);
e407c74b 9783 }
8fc2e39e 9784 break;
252b5132
RH
9785
9786 case M_DMUL_I:
9787 dbl = 1;
9788 case M_MUL_I:
9789 /* The MIPS assembler some times generates shifts and adds. I'm
9790 not trying to be that fancy. GCC should do this for us
9791 anyway. */
8fc2e39e 9792 used_at = 1;
67c0d1eb
RS
9793 load_register (AT, &imm_expr, dbl);
9794 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
df58fc94 9795 macro_build (NULL, "mflo", MFHL_FMT, dreg);
252b5132
RH
9796 break;
9797
9798 case M_DMULO_I:
9799 dbl = 1;
9800 case M_MULO_I:
9801 imm = 1;
9802 goto do_mulo;
9803
9804 case M_DMULO:
9805 dbl = 1;
9806 case M_MULO:
9807 do_mulo:
7d10b47d 9808 start_noreorder ();
8fc2e39e 9809 used_at = 1;
252b5132 9810 if (imm)
67c0d1eb
RS
9811 load_register (AT, &imm_expr, dbl);
9812 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
df58fc94
RS
9813 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9814 macro_build (NULL, dbl ? "dsra32" : "sra", SHFT_FMT, dreg, dreg, RA);
9815 macro_build (NULL, "mfhi", MFHL_FMT, AT);
252b5132 9816 if (mips_trap)
df58fc94 9817 macro_build (NULL, "tne", TRAP_FMT, dreg, AT, 6);
252b5132
RH
9818 else
9819 {
df58fc94
RS
9820 if (mips_opts.micromips)
9821 micromips_label_expr (&label_expr);
9822 else
9823 label_expr.X_add_number = 8;
9824 macro_build (&label_expr, "beq", "s,t,p", dreg, AT);
a605d2b3 9825 macro_build (NULL, "nop", "");
df58fc94
RS
9826 macro_build (NULL, "break", BRK_FMT, 6);
9827 if (mips_opts.micromips)
9828 micromips_add_label ();
252b5132 9829 }
7d10b47d 9830 end_noreorder ();
df58fc94 9831 macro_build (NULL, "mflo", MFHL_FMT, dreg);
252b5132
RH
9832 break;
9833
9834 case M_DMULOU_I:
9835 dbl = 1;
9836 case M_MULOU_I:
9837 imm = 1;
9838 goto do_mulou;
9839
9840 case M_DMULOU:
9841 dbl = 1;
9842 case M_MULOU:
9843 do_mulou:
7d10b47d 9844 start_noreorder ();
8fc2e39e 9845 used_at = 1;
252b5132 9846 if (imm)
67c0d1eb
RS
9847 load_register (AT, &imm_expr, dbl);
9848 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
17a2f251 9849 sreg, imm ? AT : treg);
df58fc94
RS
9850 macro_build (NULL, "mfhi", MFHL_FMT, AT);
9851 macro_build (NULL, "mflo", MFHL_FMT, dreg);
252b5132 9852 if (mips_trap)
df58fc94 9853 macro_build (NULL, "tne", TRAP_FMT, AT, ZERO, 6);
252b5132
RH
9854 else
9855 {
df58fc94
RS
9856 if (mips_opts.micromips)
9857 micromips_label_expr (&label_expr);
9858 else
9859 label_expr.X_add_number = 8;
9860 macro_build (&label_expr, "beq", "s,t,p", AT, ZERO);
a605d2b3 9861 macro_build (NULL, "nop", "");
df58fc94
RS
9862 macro_build (NULL, "break", BRK_FMT, 6);
9863 if (mips_opts.micromips)
9864 micromips_add_label ();
252b5132 9865 }
7d10b47d 9866 end_noreorder ();
252b5132
RH
9867 break;
9868
771c7ce4 9869 case M_DROL:
fef14a42 9870 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
9871 {
9872 if (dreg == sreg)
9873 {
9874 tempreg = AT;
9875 used_at = 1;
9876 }
9877 else
9878 {
9879 tempreg = dreg;
82dd0097 9880 }
67c0d1eb
RS
9881 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
9882 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 9883 break;
82dd0097 9884 }
8fc2e39e 9885 used_at = 1;
c80c840e 9886 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
67c0d1eb
RS
9887 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
9888 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
9889 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
9890 break;
9891
252b5132 9892 case M_ROL:
fef14a42 9893 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097
CD
9894 {
9895 if (dreg == sreg)
9896 {
9897 tempreg = AT;
9898 used_at = 1;
9899 }
9900 else
9901 {
9902 tempreg = dreg;
82dd0097 9903 }
67c0d1eb
RS
9904 macro_build (NULL, "negu", "d,w", tempreg, treg);
9905 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 9906 break;
82dd0097 9907 }
8fc2e39e 9908 used_at = 1;
c80c840e 9909 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
67c0d1eb
RS
9910 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
9911 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
9912 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
9913 break;
9914
771c7ce4
TS
9915 case M_DROL_I:
9916 {
9917 unsigned int rot;
91d6fa6a
NC
9918 char *l;
9919 char *rr;
771c7ce4
TS
9920
9921 if (imm_expr.X_op != O_constant)
82dd0097 9922 as_bad (_("Improper rotate count"));
771c7ce4 9923 rot = imm_expr.X_add_number & 0x3f;
fef14a42 9924 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
60b63b72
RS
9925 {
9926 rot = (64 - rot) & 0x3f;
9927 if (rot >= 32)
df58fc94 9928 macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
60b63b72 9929 else
df58fc94 9930 macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
8fc2e39e 9931 break;
60b63b72 9932 }
483fc7cd 9933 if (rot == 0)
483fc7cd 9934 {
df58fc94 9935 macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
8fc2e39e 9936 break;
483fc7cd 9937 }
82dd0097 9938 l = (rot < 0x20) ? "dsll" : "dsll32";
91d6fa6a 9939 rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
82dd0097 9940 rot &= 0x1f;
8fc2e39e 9941 used_at = 1;
df58fc94
RS
9942 macro_build (NULL, l, SHFT_FMT, AT, sreg, rot);
9943 macro_build (NULL, rr, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
67c0d1eb 9944 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
9945 }
9946 break;
9947
252b5132 9948 case M_ROL_I:
771c7ce4
TS
9949 {
9950 unsigned int rot;
9951
9952 if (imm_expr.X_op != O_constant)
82dd0097 9953 as_bad (_("Improper rotate count"));
771c7ce4 9954 rot = imm_expr.X_add_number & 0x1f;
fef14a42 9955 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
60b63b72 9956 {
df58fc94 9957 macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, (32 - rot) & 0x1f);
8fc2e39e 9958 break;
60b63b72 9959 }
483fc7cd 9960 if (rot == 0)
483fc7cd 9961 {
df58fc94 9962 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
8fc2e39e 9963 break;
483fc7cd 9964 }
8fc2e39e 9965 used_at = 1;
df58fc94
RS
9966 macro_build (NULL, "sll", SHFT_FMT, AT, sreg, rot);
9967 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
67c0d1eb 9968 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
9969 }
9970 break;
9971
9972 case M_DROR:
fef14a42 9973 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097 9974 {
67c0d1eb 9975 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 9976 break;
82dd0097 9977 }
8fc2e39e 9978 used_at = 1;
c80c840e 9979 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
67c0d1eb
RS
9980 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
9981 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
9982 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
9983 break;
9984
9985 case M_ROR:
fef14a42 9986 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 9987 {
67c0d1eb 9988 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 9989 break;
82dd0097 9990 }
8fc2e39e 9991 used_at = 1;
c80c840e 9992 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
67c0d1eb
RS
9993 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
9994 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
9995 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
252b5132
RH
9996 break;
9997
771c7ce4
TS
9998 case M_DROR_I:
9999 {
10000 unsigned int rot;
91d6fa6a
NC
10001 char *l;
10002 char *rr;
771c7ce4
TS
10003
10004 if (imm_expr.X_op != O_constant)
82dd0097 10005 as_bad (_("Improper rotate count"));
771c7ce4 10006 rot = imm_expr.X_add_number & 0x3f;
fef14a42 10007 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
10008 {
10009 if (rot >= 32)
df58fc94 10010 macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
82dd0097 10011 else
df58fc94 10012 macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
8fc2e39e 10013 break;
82dd0097 10014 }
483fc7cd 10015 if (rot == 0)
483fc7cd 10016 {
df58fc94 10017 macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
8fc2e39e 10018 break;
483fc7cd 10019 }
91d6fa6a 10020 rr = (rot < 0x20) ? "dsrl" : "dsrl32";
82dd0097
CD
10021 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
10022 rot &= 0x1f;
8fc2e39e 10023 used_at = 1;
df58fc94
RS
10024 macro_build (NULL, rr, SHFT_FMT, AT, sreg, rot);
10025 macro_build (NULL, l, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
67c0d1eb 10026 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4
TS
10027 }
10028 break;
10029
252b5132 10030 case M_ROR_I:
771c7ce4
TS
10031 {
10032 unsigned int rot;
10033
10034 if (imm_expr.X_op != O_constant)
82dd0097 10035 as_bad (_("Improper rotate count"));
771c7ce4 10036 rot = imm_expr.X_add_number & 0x1f;
fef14a42 10037 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 10038 {
df58fc94 10039 macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, rot);
8fc2e39e 10040 break;
82dd0097 10041 }
483fc7cd 10042 if (rot == 0)
483fc7cd 10043 {
df58fc94 10044 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
8fc2e39e 10045 break;
483fc7cd 10046 }
8fc2e39e 10047 used_at = 1;
df58fc94
RS
10048 macro_build (NULL, "srl", SHFT_FMT, AT, sreg, rot);
10049 macro_build (NULL, "sll", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
67c0d1eb 10050 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
771c7ce4 10051 }
252b5132
RH
10052 break;
10053
252b5132
RH
10054 case M_SEQ:
10055 if (sreg == 0)
67c0d1eb 10056 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
252b5132 10057 else if (treg == 0)
67c0d1eb 10058 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
10059 else
10060 {
67c0d1eb
RS
10061 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
10062 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
252b5132 10063 }
8fc2e39e 10064 break;
252b5132
RH
10065
10066 case M_SEQ_I:
10067 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
10068 {
67c0d1eb 10069 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 10070 break;
252b5132
RH
10071 }
10072 if (sreg == 0)
10073 {
10074 as_warn (_("Instruction %s: result is always false"),
10075 ip->insn_mo->name);
67c0d1eb 10076 move_register (dreg, 0);
8fc2e39e 10077 break;
252b5132 10078 }
dd3cbb7e
NC
10079 if (CPU_HAS_SEQ (mips_opts.arch)
10080 && -512 <= imm_expr.X_add_number
10081 && imm_expr.X_add_number < 512)
10082 {
10083 macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
750bdd57 10084 (int) imm_expr.X_add_number);
dd3cbb7e
NC
10085 break;
10086 }
252b5132
RH
10087 if (imm_expr.X_op == O_constant
10088 && imm_expr.X_add_number >= 0
10089 && imm_expr.X_add_number < 0x10000)
10090 {
67c0d1eb 10091 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
10092 }
10093 else if (imm_expr.X_op == O_constant
10094 && imm_expr.X_add_number > -0x8000
10095 && imm_expr.X_add_number < 0)
10096 {
10097 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 10098 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 10099 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132 10100 }
dd3cbb7e
NC
10101 else if (CPU_HAS_SEQ (mips_opts.arch))
10102 {
10103 used_at = 1;
10104 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10105 macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
10106 break;
10107 }
252b5132
RH
10108 else
10109 {
67c0d1eb
RS
10110 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10111 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
10112 used_at = 1;
10113 }
67c0d1eb 10114 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 10115 break;
252b5132
RH
10116
10117 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
10118 s = "slt";
10119 goto sge;
10120 case M_SGEU:
10121 s = "sltu";
10122 sge:
67c0d1eb
RS
10123 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
10124 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 10125 break;
252b5132
RH
10126
10127 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
10128 case M_SGEU_I:
10129 if (imm_expr.X_op == O_constant
10130 && imm_expr.X_add_number >= -0x8000
10131 && imm_expr.X_add_number < 0x8000)
10132 {
67c0d1eb
RS
10133 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
10134 dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
10135 }
10136 else
10137 {
67c0d1eb
RS
10138 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10139 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
10140 dreg, sreg, AT);
252b5132
RH
10141 used_at = 1;
10142 }
67c0d1eb 10143 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 10144 break;
252b5132
RH
10145
10146 case M_SGT: /* sreg > treg <==> treg < sreg */
10147 s = "slt";
10148 goto sgt;
10149 case M_SGTU:
10150 s = "sltu";
10151 sgt:
67c0d1eb 10152 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8fc2e39e 10153 break;
252b5132
RH
10154
10155 case M_SGT_I: /* sreg > I <==> I < sreg */
10156 s = "slt";
10157 goto sgti;
10158 case M_SGTU_I:
10159 s = "sltu";
10160 sgti:
8fc2e39e 10161 used_at = 1;
67c0d1eb
RS
10162 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10163 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
252b5132
RH
10164 break;
10165
2396cfb9 10166 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
252b5132
RH
10167 s = "slt";
10168 goto sle;
10169 case M_SLEU:
10170 s = "sltu";
10171 sle:
67c0d1eb
RS
10172 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
10173 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 10174 break;
252b5132 10175
2396cfb9 10176 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
252b5132
RH
10177 s = "slt";
10178 goto slei;
10179 case M_SLEU_I:
10180 s = "sltu";
10181 slei:
8fc2e39e 10182 used_at = 1;
67c0d1eb
RS
10183 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10184 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
10185 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
252b5132
RH
10186 break;
10187
10188 case M_SLT_I:
10189 if (imm_expr.X_op == O_constant
10190 && imm_expr.X_add_number >= -0x8000
10191 && imm_expr.X_add_number < 0x8000)
10192 {
67c0d1eb 10193 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 10194 break;
252b5132 10195 }
8fc2e39e 10196 used_at = 1;
67c0d1eb
RS
10197 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10198 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
252b5132
RH
10199 break;
10200
10201 case M_SLTU_I:
10202 if (imm_expr.X_op == O_constant
10203 && imm_expr.X_add_number >= -0x8000
10204 && imm_expr.X_add_number < 0x8000)
10205 {
67c0d1eb 10206 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
17a2f251 10207 BFD_RELOC_LO16);
8fc2e39e 10208 break;
252b5132 10209 }
8fc2e39e 10210 used_at = 1;
67c0d1eb
RS
10211 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10212 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
252b5132
RH
10213 break;
10214
10215 case M_SNE:
10216 if (sreg == 0)
67c0d1eb 10217 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
252b5132 10218 else if (treg == 0)
67c0d1eb 10219 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
252b5132
RH
10220 else
10221 {
67c0d1eb
RS
10222 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
10223 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
252b5132 10224 }
8fc2e39e 10225 break;
252b5132
RH
10226
10227 case M_SNE_I:
10228 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
10229 {
67c0d1eb 10230 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
8fc2e39e 10231 break;
252b5132
RH
10232 }
10233 if (sreg == 0)
10234 {
10235 as_warn (_("Instruction %s: result is always true"),
10236 ip->insn_mo->name);
67c0d1eb
RS
10237 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
10238 dreg, 0, BFD_RELOC_LO16);
8fc2e39e 10239 break;
252b5132 10240 }
dd3cbb7e
NC
10241 if (CPU_HAS_SEQ (mips_opts.arch)
10242 && -512 <= imm_expr.X_add_number
10243 && imm_expr.X_add_number < 512)
10244 {
10245 macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
750bdd57 10246 (int) imm_expr.X_add_number);
dd3cbb7e
NC
10247 break;
10248 }
252b5132
RH
10249 if (imm_expr.X_op == O_constant
10250 && imm_expr.X_add_number >= 0
10251 && imm_expr.X_add_number < 0x10000)
10252 {
67c0d1eb 10253 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
10254 }
10255 else if (imm_expr.X_op == O_constant
10256 && imm_expr.X_add_number > -0x8000
10257 && imm_expr.X_add_number < 0)
10258 {
10259 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 10260 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 10261 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132 10262 }
dd3cbb7e
NC
10263 else if (CPU_HAS_SEQ (mips_opts.arch))
10264 {
10265 used_at = 1;
10266 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10267 macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
10268 break;
10269 }
252b5132
RH
10270 else
10271 {
67c0d1eb
RS
10272 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10273 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
10274 used_at = 1;
10275 }
67c0d1eb 10276 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
8fc2e39e 10277 break;
252b5132 10278
df58fc94
RS
10279 case M_SUB_I:
10280 s = "addi";
10281 s2 = "sub";
10282 goto do_subi;
10283 case M_SUBU_I:
10284 s = "addiu";
10285 s2 = "subu";
10286 goto do_subi;
252b5132
RH
10287 case M_DSUB_I:
10288 dbl = 1;
df58fc94
RS
10289 s = "daddi";
10290 s2 = "dsub";
10291 if (!mips_opts.micromips)
10292 goto do_subi;
252b5132 10293 if (imm_expr.X_op == O_constant
df58fc94
RS
10294 && imm_expr.X_add_number > -0x200
10295 && imm_expr.X_add_number <= 0x200)
252b5132 10296 {
df58fc94 10297 macro_build (NULL, s, "t,r,.", dreg, sreg, -imm_expr.X_add_number);
8fc2e39e 10298 break;
252b5132 10299 }
df58fc94 10300 goto do_subi_i;
252b5132
RH
10301 case M_DSUBU_I:
10302 dbl = 1;
df58fc94
RS
10303 s = "daddiu";
10304 s2 = "dsubu";
10305 do_subi:
252b5132
RH
10306 if (imm_expr.X_op == O_constant
10307 && imm_expr.X_add_number > -0x8000
10308 && imm_expr.X_add_number <= 0x8000)
10309 {
10310 imm_expr.X_add_number = -imm_expr.X_add_number;
df58fc94 10311 macro_build (&imm_expr, s, "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 10312 break;
252b5132 10313 }
df58fc94 10314 do_subi_i:
8fc2e39e 10315 used_at = 1;
67c0d1eb 10316 load_register (AT, &imm_expr, dbl);
df58fc94 10317 macro_build (NULL, s2, "d,v,t", dreg, sreg, AT);
252b5132
RH
10318 break;
10319
10320 case M_TEQ_I:
10321 s = "teq";
10322 goto trap;
10323 case M_TGE_I:
10324 s = "tge";
10325 goto trap;
10326 case M_TGEU_I:
10327 s = "tgeu";
10328 goto trap;
10329 case M_TLT_I:
10330 s = "tlt";
10331 goto trap;
10332 case M_TLTU_I:
10333 s = "tltu";
10334 goto trap;
10335 case M_TNE_I:
10336 s = "tne";
10337 trap:
8fc2e39e 10338 used_at = 1;
67c0d1eb
RS
10339 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10340 macro_build (NULL, s, "s,t", sreg, AT);
252b5132
RH
10341 break;
10342
252b5132 10343 case M_TRUNCWS:
43841e91 10344 case M_TRUNCWD:
df58fc94 10345 gas_assert (!mips_opts.micromips);
0aa27725 10346 gas_assert (mips_opts.isa == ISA_MIPS1);
8fc2e39e 10347 used_at = 1;
252b5132
RH
10348 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
10349 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
10350
10351 /*
10352 * Is the double cfc1 instruction a bug in the mips assembler;
10353 * or is there a reason for it?
10354 */
7d10b47d 10355 start_noreorder ();
67c0d1eb
RS
10356 macro_build (NULL, "cfc1", "t,G", treg, RA);
10357 macro_build (NULL, "cfc1", "t,G", treg, RA);
10358 macro_build (NULL, "nop", "");
252b5132 10359 expr1.X_add_number = 3;
67c0d1eb 10360 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
252b5132 10361 expr1.X_add_number = 2;
67c0d1eb
RS
10362 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
10363 macro_build (NULL, "ctc1", "t,G", AT, RA);
10364 macro_build (NULL, "nop", "");
10365 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
10366 dreg, sreg);
10367 macro_build (NULL, "ctc1", "t,G", treg, RA);
10368 macro_build (NULL, "nop", "");
7d10b47d 10369 end_noreorder ();
252b5132
RH
10370 break;
10371
f2ae14a1 10372 case M_ULH_AB:
252b5132 10373 s = "lb";
df58fc94
RS
10374 s2 = "lbu";
10375 off = 1;
10376 goto uld_st;
f2ae14a1 10377 case M_ULHU_AB:
252b5132 10378 s = "lbu";
df58fc94
RS
10379 s2 = "lbu";
10380 off = 1;
10381 goto uld_st;
f2ae14a1 10382 case M_ULW_AB:
df58fc94
RS
10383 s = "lwl";
10384 s2 = "lwr";
7f3c4072 10385 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94
RS
10386 off = 3;
10387 goto uld_st;
f2ae14a1 10388 case M_ULD_AB:
252b5132
RH
10389 s = "ldl";
10390 s2 = "ldr";
7f3c4072 10391 offbits = (mips_opts.micromips ? 12 : 16);
252b5132 10392 off = 7;
df58fc94 10393 goto uld_st;
f2ae14a1 10394 case M_USH_AB:
df58fc94
RS
10395 s = "sb";
10396 s2 = "sb";
10397 off = 1;
10398 ust = 1;
10399 goto uld_st;
f2ae14a1 10400 case M_USW_AB:
df58fc94
RS
10401 s = "swl";
10402 s2 = "swr";
7f3c4072 10403 offbits = (mips_opts.micromips ? 12 : 16);
252b5132 10404 off = 3;
df58fc94
RS
10405 ust = 1;
10406 goto uld_st;
f2ae14a1 10407 case M_USD_AB:
df58fc94
RS
10408 s = "sdl";
10409 s2 = "sdr";
7f3c4072 10410 offbits = (mips_opts.micromips ? 12 : 16);
df58fc94
RS
10411 off = 7;
10412 ust = 1;
10413
10414 uld_st:
f2ae14a1 10415 large_offset = !small_offset_p (off, align, offbits);
df58fc94
RS
10416 ep = &offset_expr;
10417 expr1.X_add_number = 0;
f2ae14a1 10418 if (large_offset)
df58fc94
RS
10419 {
10420 used_at = 1;
10421 tempreg = AT;
f2ae14a1
RS
10422 if (small_offset_p (0, align, 16))
10423 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", tempreg, breg, -1,
10424 offset_reloc[0], offset_reloc[1], offset_reloc[2]);
10425 else
10426 {
10427 load_address (tempreg, ep, &used_at);
10428 if (breg != 0)
10429 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10430 tempreg, tempreg, breg);
10431 }
10432 offset_reloc[0] = BFD_RELOC_LO16;
10433 offset_reloc[1] = BFD_RELOC_UNUSED;
10434 offset_reloc[2] = BFD_RELOC_UNUSED;
df58fc94
RS
10435 breg = tempreg;
10436 tempreg = treg;
10437 ep = &expr1;
10438 }
10439 else if (!ust && treg == breg)
8fc2e39e
TS
10440 {
10441 used_at = 1;
10442 tempreg = AT;
10443 }
252b5132 10444 else
df58fc94 10445 tempreg = treg;
af22f5b2 10446
df58fc94
RS
10447 if (off == 1)
10448 goto ulh_sh;
252b5132 10449
90ecf173 10450 if (!target_big_endian)
df58fc94 10451 ep->X_add_number += off;
f2ae14a1 10452 if (offbits == 12)
c8276761 10453 macro_build (NULL, s, "t,~(b)", tempreg, (int) ep->X_add_number, breg);
f2ae14a1
RS
10454 else
10455 macro_build (ep, s, "t,o(b)", tempreg, -1,
10456 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
df58fc94 10457
90ecf173 10458 if (!target_big_endian)
df58fc94 10459 ep->X_add_number -= off;
252b5132 10460 else
df58fc94 10461 ep->X_add_number += off;
f2ae14a1 10462 if (offbits == 12)
df58fc94 10463 macro_build (NULL, s2, "t,~(b)",
c8276761 10464 tempreg, (int) ep->X_add_number, breg);
f2ae14a1
RS
10465 else
10466 macro_build (ep, s2, "t,o(b)", tempreg, -1,
10467 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
252b5132 10468
df58fc94
RS
10469 /* If necessary, move the result in tempreg to the final destination. */
10470 if (!ust && treg != tempreg)
10471 {
10472 /* Protect second load's delay slot. */
10473 load_delay_nop ();
10474 move_register (treg, tempreg);
10475 }
8fc2e39e 10476 break;
252b5132 10477
df58fc94 10478 ulh_sh:
d6bc6245 10479 used_at = 1;
df58fc94
RS
10480 if (target_big_endian == ust)
10481 ep->X_add_number += off;
f2ae14a1
RS
10482 tempreg = ust || large_offset ? treg : AT;
10483 macro_build (ep, s, "t,o(b)", tempreg, -1,
10484 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
df58fc94
RS
10485
10486 /* For halfword transfers we need a temporary register to shuffle
10487 bytes. Unfortunately for M_USH_A we have none available before
10488 the next store as AT holds the base address. We deal with this
10489 case by clobbering TREG and then restoring it as with ULH. */
f2ae14a1 10490 tempreg = ust == large_offset ? treg : AT;
df58fc94
RS
10491 if (ust)
10492 macro_build (NULL, "srl", SHFT_FMT, tempreg, treg, 8);
10493
10494 if (target_big_endian == ust)
10495 ep->X_add_number -= off;
252b5132 10496 else
df58fc94 10497 ep->X_add_number += off;
f2ae14a1
RS
10498 macro_build (ep, s2, "t,o(b)", tempreg, -1,
10499 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
252b5132 10500
df58fc94 10501 /* For M_USH_A re-retrieve the LSB. */
f2ae14a1 10502 if (ust && large_offset)
df58fc94
RS
10503 {
10504 if (target_big_endian)
10505 ep->X_add_number += off;
10506 else
10507 ep->X_add_number -= off;
f2ae14a1
RS
10508 macro_build (&expr1, "lbu", "t,o(b)", AT, -1,
10509 offset_reloc[0], offset_reloc[1], offset_reloc[2], AT);
df58fc94
RS
10510 }
10511 /* For ULH and M_USH_A OR the LSB in. */
f2ae14a1 10512 if (!ust || large_offset)
df58fc94 10513 {
f2ae14a1 10514 tempreg = !large_offset ? AT : treg;
df58fc94
RS
10515 macro_build (NULL, "sll", SHFT_FMT, tempreg, tempreg, 8);
10516 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
10517 }
252b5132
RH
10518 break;
10519
10520 default:
10521 /* FIXME: Check if this is one of the itbl macros, since they
bdaaa2e1 10522 are added dynamically. */
252b5132
RH
10523 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
10524 break;
10525 }
741fe287 10526 if (!mips_opts.at && used_at)
8fc2e39e 10527 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
10528}
10529
10530/* Implement macros in mips16 mode. */
10531
10532static void
17a2f251 10533mips16_macro (struct mips_cl_insn *ip)
252b5132
RH
10534{
10535 int mask;
10536 int xreg, yreg, zreg, tmp;
252b5132
RH
10537 expressionS expr1;
10538 int dbl;
10539 const char *s, *s2, *s3;
10540
10541 mask = ip->insn_mo->mask;
10542
bf12938e
RS
10543 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
10544 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
10545 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
252b5132 10546
252b5132
RH
10547 expr1.X_op = O_constant;
10548 expr1.X_op_symbol = NULL;
10549 expr1.X_add_symbol = NULL;
10550 expr1.X_add_number = 1;
10551
10552 dbl = 0;
10553
10554 switch (mask)
10555 {
10556 default:
b37df7c4 10557 abort ();
252b5132
RH
10558
10559 case M_DDIV_3:
10560 dbl = 1;
10561 case M_DIV_3:
10562 s = "mflo";
10563 goto do_div3;
10564 case M_DREM_3:
10565 dbl = 1;
10566 case M_REM_3:
10567 s = "mfhi";
10568 do_div3:
7d10b47d 10569 start_noreorder ();
67c0d1eb 10570 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
252b5132 10571 expr1.X_add_number = 2;
67c0d1eb
RS
10572 macro_build (&expr1, "bnez", "x,p", yreg);
10573 macro_build (NULL, "break", "6", 7);
bdaaa2e1 10574
252b5132
RH
10575 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
10576 since that causes an overflow. We should do that as well,
10577 but I don't see how to do the comparisons without a temporary
10578 register. */
7d10b47d 10579 end_noreorder ();
67c0d1eb 10580 macro_build (NULL, s, "x", zreg);
252b5132
RH
10581 break;
10582
10583 case M_DIVU_3:
10584 s = "divu";
10585 s2 = "mflo";
10586 goto do_divu3;
10587 case M_REMU_3:
10588 s = "divu";
10589 s2 = "mfhi";
10590 goto do_divu3;
10591 case M_DDIVU_3:
10592 s = "ddivu";
10593 s2 = "mflo";
10594 goto do_divu3;
10595 case M_DREMU_3:
10596 s = "ddivu";
10597 s2 = "mfhi";
10598 do_divu3:
7d10b47d 10599 start_noreorder ();
67c0d1eb 10600 macro_build (NULL, s, "0,x,y", xreg, yreg);
252b5132 10601 expr1.X_add_number = 2;
67c0d1eb
RS
10602 macro_build (&expr1, "bnez", "x,p", yreg);
10603 macro_build (NULL, "break", "6", 7);
7d10b47d 10604 end_noreorder ();
67c0d1eb 10605 macro_build (NULL, s2, "x", zreg);
252b5132
RH
10606 break;
10607
10608 case M_DMUL:
10609 dbl = 1;
10610 case M_MUL:
67c0d1eb
RS
10611 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
10612 macro_build (NULL, "mflo", "x", zreg);
8fc2e39e 10613 break;
252b5132
RH
10614
10615 case M_DSUBU_I:
10616 dbl = 1;
10617 goto do_subu;
10618 case M_SUBU_I:
10619 do_subu:
10620 if (imm_expr.X_op != O_constant)
10621 as_bad (_("Unsupported large constant"));
10622 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 10623 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
252b5132
RH
10624 break;
10625
10626 case M_SUBU_I_2:
10627 if (imm_expr.X_op != O_constant)
10628 as_bad (_("Unsupported large constant"));
10629 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 10630 macro_build (&imm_expr, "addiu", "x,k", xreg);
252b5132
RH
10631 break;
10632
10633 case M_DSUBU_I_2:
10634 if (imm_expr.X_op != O_constant)
10635 as_bad (_("Unsupported large constant"));
10636 imm_expr.X_add_number = -imm_expr.X_add_number;
67c0d1eb 10637 macro_build (&imm_expr, "daddiu", "y,j", yreg);
252b5132
RH
10638 break;
10639
10640 case M_BEQ:
10641 s = "cmp";
10642 s2 = "bteqz";
10643 goto do_branch;
10644 case M_BNE:
10645 s = "cmp";
10646 s2 = "btnez";
10647 goto do_branch;
10648 case M_BLT:
10649 s = "slt";
10650 s2 = "btnez";
10651 goto do_branch;
10652 case M_BLTU:
10653 s = "sltu";
10654 s2 = "btnez";
10655 goto do_branch;
10656 case M_BLE:
10657 s = "slt";
10658 s2 = "bteqz";
10659 goto do_reverse_branch;
10660 case M_BLEU:
10661 s = "sltu";
10662 s2 = "bteqz";
10663 goto do_reverse_branch;
10664 case M_BGE:
10665 s = "slt";
10666 s2 = "bteqz";
10667 goto do_branch;
10668 case M_BGEU:
10669 s = "sltu";
10670 s2 = "bteqz";
10671 goto do_branch;
10672 case M_BGT:
10673 s = "slt";
10674 s2 = "btnez";
10675 goto do_reverse_branch;
10676 case M_BGTU:
10677 s = "sltu";
10678 s2 = "btnez";
10679
10680 do_reverse_branch:
10681 tmp = xreg;
10682 xreg = yreg;
10683 yreg = tmp;
10684
10685 do_branch:
67c0d1eb
RS
10686 macro_build (NULL, s, "x,y", xreg, yreg);
10687 macro_build (&offset_expr, s2, "p");
252b5132
RH
10688 break;
10689
10690 case M_BEQ_I:
10691 s = "cmpi";
10692 s2 = "bteqz";
10693 s3 = "x,U";
10694 goto do_branch_i;
10695 case M_BNE_I:
10696 s = "cmpi";
10697 s2 = "btnez";
10698 s3 = "x,U";
10699 goto do_branch_i;
10700 case M_BLT_I:
10701 s = "slti";
10702 s2 = "btnez";
10703 s3 = "x,8";
10704 goto do_branch_i;
10705 case M_BLTU_I:
10706 s = "sltiu";
10707 s2 = "btnez";
10708 s3 = "x,8";
10709 goto do_branch_i;
10710 case M_BLE_I:
10711 s = "slti";
10712 s2 = "btnez";
10713 s3 = "x,8";
10714 goto do_addone_branch_i;
10715 case M_BLEU_I:
10716 s = "sltiu";
10717 s2 = "btnez";
10718 s3 = "x,8";
10719 goto do_addone_branch_i;
10720 case M_BGE_I:
10721 s = "slti";
10722 s2 = "bteqz";
10723 s3 = "x,8";
10724 goto do_branch_i;
10725 case M_BGEU_I:
10726 s = "sltiu";
10727 s2 = "bteqz";
10728 s3 = "x,8";
10729 goto do_branch_i;
10730 case M_BGT_I:
10731 s = "slti";
10732 s2 = "bteqz";
10733 s3 = "x,8";
10734 goto do_addone_branch_i;
10735 case M_BGTU_I:
10736 s = "sltiu";
10737 s2 = "bteqz";
10738 s3 = "x,8";
10739
10740 do_addone_branch_i:
10741 if (imm_expr.X_op != O_constant)
10742 as_bad (_("Unsupported large constant"));
10743 ++imm_expr.X_add_number;
10744
10745 do_branch_i:
67c0d1eb
RS
10746 macro_build (&imm_expr, s, s3, xreg);
10747 macro_build (&offset_expr, s2, "p");
252b5132
RH
10748 break;
10749
10750 case M_ABS:
10751 expr1.X_add_number = 0;
67c0d1eb 10752 macro_build (&expr1, "slti", "x,8", yreg);
252b5132 10753 if (xreg != yreg)
67c0d1eb 10754 move_register (xreg, yreg);
252b5132 10755 expr1.X_add_number = 2;
67c0d1eb
RS
10756 macro_build (&expr1, "bteqz", "p");
10757 macro_build (NULL, "neg", "x,w", xreg, xreg);
252b5132
RH
10758 }
10759}
10760
10761/* For consistency checking, verify that all bits are specified either
10762 by the match/mask part of the instruction definition, or by the
10763 operand list. */
10764static int
17a2f251 10765validate_mips_insn (const struct mips_opcode *opc)
252b5132
RH
10766{
10767 const char *p = opc->args;
10768 char c;
10769 unsigned long used_bits = opc->mask;
10770
10771 if ((used_bits & opc->match) != opc->match)
10772 {
10773 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
10774 opc->name, opc->args);
10775 return 0;
10776 }
10777#define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
10778 while (*p)
10779 switch (c = *p++)
10780 {
10781 case ',': break;
10782 case '(': break;
10783 case ')': break;
af7ee8bf
CD
10784 case '+':
10785 switch (c = *p++)
10786 {
9bcd4f99
TS
10787 case '1': USE_BITS (OP_MASK_UDI1, OP_SH_UDI1); break;
10788 case '2': USE_BITS (OP_MASK_UDI2, OP_SH_UDI2); break;
10789 case '3': USE_BITS (OP_MASK_UDI3, OP_SH_UDI3); break;
10790 case '4': USE_BITS (OP_MASK_UDI4, OP_SH_UDI4); break;
af7ee8bf
CD
10791 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10792 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
10793 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
5f74bc13
CD
10794 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10795 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
10796 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10797 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10798 case 'I': break;
b015e599 10799 case 'J': USE_BITS (OP_MASK_CODE10, OP_SH_CODE10); break;
ef2e4d86 10800 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
bb35fb24
NC
10801 case 'x': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
10802 case 'X': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
10803 case 'p': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
10804 case 'P': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
dd3cbb7e 10805 case 'Q': USE_BITS (OP_MASK_SEQI, OP_SH_SEQI); break;
bb35fb24
NC
10806 case 's': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
10807 case 'S': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
98675402
RS
10808 case 'z': USE_BITS (OP_MASK_RZ, OP_SH_RZ); break;
10809 case 'Z': USE_BITS (OP_MASK_FZ, OP_SH_FZ); break;
10810 case 'a': USE_BITS (OP_MASK_OFFSET_A, OP_SH_OFFSET_A); break;
10811 case 'b': USE_BITS (OP_MASK_OFFSET_B, OP_SH_OFFSET_B); break;
10812 case 'c': USE_BITS (OP_MASK_OFFSET_C, OP_SH_OFFSET_C); break;
27c5c572 10813 case 'i': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
7f3c4072 10814 case 'j': USE_BITS (OP_MASK_EVAOFFSET, OP_SH_EVAOFFSET); break;
bb35fb24 10815
af7ee8bf
CD
10816 default:
10817 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
10818 c, opc->name, opc->args);
10819 return 0;
10820 }
10821 break;
252b5132
RH
10822 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10823 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10824 case 'A': break;
4372b673 10825 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
252b5132
RH
10826 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
10827 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
10828 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10829 case 'F': break;
10830 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
156c2f8b 10831 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
252b5132 10832 case 'I': break;
e972090a 10833 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
af7ee8bf 10834 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
252b5132
RH
10835 case 'L': break;
10836 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
10837 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
deec1734
CD
10838 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
10839 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
10840 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
10841 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
10842 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10843 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10844 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10845 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
deec1734
CD
10846 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
10847 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10848 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
10849 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
10850 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10851 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
10852 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10853 case 'f': break;
10854 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
10855 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
10856 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10857 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
10858 case 'l': break;
10859 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10860 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10861 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
10862 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10863 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10864 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10865 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
10866 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10867 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10868 case 'x': break;
10869 case 'z': break;
10870 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
4372b673
NC
10871 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
10872 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
60b63b72
RS
10873 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
10874 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
18870af7 10875 case '1': USE_BITS (OP_MASK_STYPE, OP_SH_STYPE); break;
8b082fb1 10876 case '2': USE_BITS (OP_MASK_BP, OP_SH_BP); break;
74cd071d
CF
10877 case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break;
10878 case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break;
10879 case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break;
10880 case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10881 case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break;
10882 case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break;
10883 case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break;
10884 case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break;
10885 case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break;
10886 case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break;
10887 case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break;
ef2e4d86
CF
10888 case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break;
10889 case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break;
10890 case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break;
10891 case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break;
dec0624d
MR
10892 case '\\': USE_BITS (OP_MASK_3BITPOS, OP_SH_3BITPOS); break;
10893 case '~': USE_BITS (OP_MASK_OFFSET12, OP_SH_OFFSET12); break;
ef2e4d86 10894 case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
252b5132
RH
10895 default:
10896 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
10897 c, opc->name, opc->args);
10898 return 0;
10899 }
10900#undef USE_BITS
10901 if (used_bits != 0xffffffff)
10902 {
10903 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
10904 ~used_bits & 0xffffffff, opc->name, opc->args);
10905 return 0;
10906 }
10907 return 1;
10908}
10909
df58fc94
RS
10910/* For consistency checking, verify that the length implied matches the
10911 major opcode and that all bits are specified either by the match/mask
10912 part of the instruction definition, or by the operand list. */
10913
10914static int
10915validate_micromips_insn (const struct mips_opcode *opc)
10916{
10917 unsigned long match = opc->match;
10918 unsigned long mask = opc->mask;
10919 const char *p = opc->args;
10920 unsigned long insn_bits;
10921 unsigned long used_bits;
10922 unsigned long major;
10923 unsigned int length;
10924 char e;
10925 char c;
10926
10927 if ((mask & match) != match)
10928 {
10929 as_bad (_("Internal error: bad microMIPS opcode (mask error): %s %s"),
10930 opc->name, opc->args);
10931 return 0;
10932 }
10933 length = micromips_insn_length (opc);
10934 if (length != 2 && length != 4)
10935 {
10936 as_bad (_("Internal error: bad microMIPS opcode (incorrect length: %u): "
10937 "%s %s"), length, opc->name, opc->args);
10938 return 0;
10939 }
10940 major = match >> (10 + 8 * (length - 2));
10941 if ((length == 2 && (major & 7) != 1 && (major & 6) != 2)
10942 || (length == 4 && (major & 7) != 0 && (major & 4) != 4))
10943 {
10944 as_bad (_("Internal error: bad microMIPS opcode "
10945 "(opcode/length mismatch): %s %s"), opc->name, opc->args);
10946 return 0;
10947 }
10948
10949 /* Shift piecewise to avoid an overflow where unsigned long is 32-bit. */
10950 insn_bits = 1 << 4 * length;
10951 insn_bits <<= 4 * length;
10952 insn_bits -= 1;
10953 used_bits = mask;
10954#define USE_BITS(field) \
10955 (used_bits |= MICROMIPSOP_MASK_##field << MICROMIPSOP_SH_##field)
10956 while (*p)
10957 switch (c = *p++)
10958 {
10959 case ',': break;
10960 case '(': break;
10961 case ')': break;
10962 case '+':
10963 e = c;
10964 switch (c = *p++)
10965 {
10966 case 'A': USE_BITS (EXTLSB); break;
10967 case 'B': USE_BITS (INSMSB); break;
10968 case 'C': USE_BITS (EXTMSBD); break;
df58fc94
RS
10969 case 'E': USE_BITS (EXTLSB); break;
10970 case 'F': USE_BITS (INSMSB); break;
10971 case 'G': USE_BITS (EXTMSBD); break;
10972 case 'H': USE_BITS (EXTMSBD); break;
27c5c572 10973 case 'i': USE_BITS (TARGET); break;
7f3c4072 10974 case 'j': USE_BITS (EVAOFFSET); break;
df58fc94
RS
10975 default:
10976 as_bad (_("Internal error: bad mips opcode "
10977 "(unknown extension operand type `%c%c'): %s %s"),
10978 e, c, opc->name, opc->args);
10979 return 0;
10980 }
10981 break;
10982 case 'm':
10983 e = c;
10984 switch (c = *p++)
10985 {
10986 case 'A': USE_BITS (IMMA); break;
10987 case 'B': USE_BITS (IMMB); break;
10988 case 'C': USE_BITS (IMMC); break;
10989 case 'D': USE_BITS (IMMD); break;
10990 case 'E': USE_BITS (IMME); break;
10991 case 'F': USE_BITS (IMMF); break;
10992 case 'G': USE_BITS (IMMG); break;
10993 case 'H': USE_BITS (IMMH); break;
10994 case 'I': USE_BITS (IMMI); break;
10995 case 'J': USE_BITS (IMMJ); break;
10996 case 'L': USE_BITS (IMML); break;
10997 case 'M': USE_BITS (IMMM); break;
10998 case 'N': USE_BITS (IMMN); break;
10999 case 'O': USE_BITS (IMMO); break;
11000 case 'P': USE_BITS (IMMP); break;
11001 case 'Q': USE_BITS (IMMQ); break;
11002 case 'U': USE_BITS (IMMU); break;
11003 case 'W': USE_BITS (IMMW); break;
11004 case 'X': USE_BITS (IMMX); break;
11005 case 'Y': USE_BITS (IMMY); break;
11006 case 'Z': break;
11007 case 'a': break;
11008 case 'b': USE_BITS (MB); break;
11009 case 'c': USE_BITS (MC); break;
11010 case 'd': USE_BITS (MD); break;
11011 case 'e': USE_BITS (ME); break;
11012 case 'f': USE_BITS (MF); break;
11013 case 'g': USE_BITS (MG); break;
11014 case 'h': USE_BITS (MH); break;
df58fc94
RS
11015 case 'j': USE_BITS (MJ); break;
11016 case 'l': USE_BITS (ML); break;
11017 case 'm': USE_BITS (MM); break;
11018 case 'n': USE_BITS (MN); break;
11019 case 'p': USE_BITS (MP); break;
11020 case 'q': USE_BITS (MQ); break;
11021 case 'r': break;
11022 case 's': break;
11023 case 't': break;
11024 case 'x': break;
11025 case 'y': break;
11026 case 'z': break;
11027 default:
11028 as_bad (_("Internal error: bad mips opcode "
11029 "(unknown extension operand type `%c%c'): %s %s"),
11030 e, c, opc->name, opc->args);
11031 return 0;
11032 }
11033 break;
11034 case '.': USE_BITS (OFFSET10); break;
11035 case '1': USE_BITS (STYPE); break;
03f66e8a
MR
11036 case '2': USE_BITS (BP); break;
11037 case '3': USE_BITS (SA3); break;
11038 case '4': USE_BITS (SA4); break;
11039 case '5': USE_BITS (IMM8); break;
11040 case '6': USE_BITS (RS); break;
11041 case '7': USE_BITS (DSPACC); break;
11042 case '8': USE_BITS (WRDSP); break;
11043 case '0': USE_BITS (DSPSFT); break;
df58fc94
RS
11044 case '<': USE_BITS (SHAMT); break;
11045 case '>': USE_BITS (SHAMT); break;
03f66e8a 11046 case '@': USE_BITS (IMM10); break;
df58fc94
RS
11047 case 'B': USE_BITS (CODE10); break;
11048 case 'C': USE_BITS (COPZ); break;
11049 case 'D': USE_BITS (FD); break;
11050 case 'E': USE_BITS (RT); break;
11051 case 'G': USE_BITS (RS); break;
444d75be 11052 case 'H': USE_BITS (SEL); break;
df58fc94
RS
11053 case 'K': USE_BITS (RS); break;
11054 case 'M': USE_BITS (CCC); break;
11055 case 'N': USE_BITS (BCC); break;
11056 case 'R': USE_BITS (FR); break;
11057 case 'S': USE_BITS (FS); break;
11058 case 'T': USE_BITS (FT); break;
11059 case 'V': USE_BITS (FS); break;
dec0624d 11060 case '\\': USE_BITS (3BITPOS); break;
03f66e8a 11061 case '^': USE_BITS (RD); break;
df58fc94
RS
11062 case 'a': USE_BITS (TARGET); break;
11063 case 'b': USE_BITS (RS); break;
11064 case 'c': USE_BITS (CODE); break;
11065 case 'd': USE_BITS (RD); break;
11066 case 'h': USE_BITS (PREFX); break;
11067 case 'i': USE_BITS (IMMEDIATE); break;
11068 case 'j': USE_BITS (DELTA); break;
11069 case 'k': USE_BITS (CACHE); break;
11070 case 'n': USE_BITS (RT); break;
11071 case 'o': USE_BITS (DELTA); break;
11072 case 'p': USE_BITS (DELTA); break;
11073 case 'q': USE_BITS (CODE2); break;
11074 case 'r': USE_BITS (RS); break;
11075 case 's': USE_BITS (RS); break;
11076 case 't': USE_BITS (RT); break;
11077 case 'u': USE_BITS (IMMEDIATE); break;
11078 case 'v': USE_BITS (RS); break;
11079 case 'w': USE_BITS (RT); break;
11080 case 'y': USE_BITS (RS3); break;
11081 case 'z': break;
11082 case '|': USE_BITS (TRAP); break;
11083 case '~': USE_BITS (OFFSET12); break;
11084 default:
11085 as_bad (_("Internal error: bad microMIPS opcode "
11086 "(unknown operand type `%c'): %s %s"),
11087 c, opc->name, opc->args);
11088 return 0;
11089 }
11090#undef USE_BITS
11091 if (used_bits != insn_bits)
11092 {
11093 if (~used_bits & insn_bits)
11094 as_bad (_("Internal error: bad microMIPS opcode "
11095 "(bits 0x%lx undefined): %s %s"),
11096 ~used_bits & insn_bits, opc->name, opc->args);
11097 if (used_bits & ~insn_bits)
11098 as_bad (_("Internal error: bad microMIPS opcode "
11099 "(bits 0x%lx defined): %s %s"),
11100 used_bits & ~insn_bits, opc->name, opc->args);
11101 return 0;
11102 }
11103 return 1;
11104}
11105
9bcd4f99
TS
11106/* UDI immediates. */
11107struct mips_immed {
11108 char type;
11109 unsigned int shift;
11110 unsigned long mask;
11111 const char * desc;
11112};
11113
11114static const struct mips_immed mips_immed[] = {
11115 { '1', OP_SH_UDI1, OP_MASK_UDI1, 0},
11116 { '2', OP_SH_UDI2, OP_MASK_UDI2, 0},
11117 { '3', OP_SH_UDI3, OP_MASK_UDI3, 0},
11118 { '4', OP_SH_UDI4, OP_MASK_UDI4, 0},
11119 { 0,0,0,0 }
11120};
11121
7455baf8
TS
11122/* Check whether an odd floating-point register is allowed. */
11123static int
11124mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
11125{
11126 const char *s = insn->name;
11127
11128 if (insn->pinfo == INSN_MACRO)
11129 /* Let a macro pass, we'll catch it later when it is expanded. */
11130 return 1;
11131
e407c74b 11132 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa) || (mips_opts.arch == CPU_R5900))
7455baf8
TS
11133 {
11134 /* Allow odd registers for single-precision ops. */
11135 switch (insn->pinfo & (FP_S | FP_D))
11136 {
11137 case FP_S:
11138 case 0:
11139 return 1; /* both single precision - ok */
11140 case FP_D:
11141 return 0; /* both double precision - fail */
11142 default:
11143 break;
11144 }
11145
11146 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
11147 s = strchr (insn->name, '.');
11148 if (argnum == 2)
11149 s = s != NULL ? strchr (s + 1, '.') : NULL;
11150 return (s != NULL && (s[1] == 'w' || s[1] == 's'));
11151 }
11152
11153 /* Single-precision coprocessor loads and moves are OK too. */
11154 if ((insn->pinfo & FP_S)
11155 && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
11156 | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
11157 return 1;
11158
11159 return 0;
11160}
11161
df58fc94
RS
11162/* Check if EXPR is a constant between MIN (inclusive) and MAX (exclusive)
11163 taking bits from BIT up. */
11164static int
11165expr_const_in_range (expressionS *ep, offsetT min, offsetT max, int bit)
11166{
11167 return (ep->X_op == O_constant
11168 && (ep->X_add_number & ((1 << bit) - 1)) == 0
11169 && ep->X_add_number >= min << bit
11170 && ep->X_add_number < max << bit);
11171}
11172
77bd4346
RS
11173/* Assemble an instruction into its binary format. If the instruction
11174 is a macro, set imm_expr, imm2_expr and offset_expr to the values
11175 associated with "I", "+I" and "A" operands respectively. Otherwise
11176 store the value of the relocatable field (if any) in offset_expr.
11177 In both cases set offset_reloc to the relocation operators applied
11178 to offset_expr. */
252b5132
RH
11179
11180static void
17a2f251 11181mips_ip (char *str, struct mips_cl_insn *ip)
252b5132 11182{
df58fc94
RS
11183 bfd_boolean wrong_delay_slot_insns = FALSE;
11184 bfd_boolean need_delay_slot_ok = TRUE;
11185 struct mips_opcode *firstinsn = NULL;
11186 const struct mips_opcode *past;
11187 struct hash_control *hash;
252b5132
RH
11188 char *s;
11189 const char *args;
43841e91 11190 char c = 0;
252b5132
RH
11191 struct mips_opcode *insn;
11192 char *argsStart;
e76ff5ab 11193 unsigned int regno, regno2;
34224acf 11194 unsigned int lastregno;
df58fc94 11195 unsigned int destregno = 0;
af7ee8bf 11196 unsigned int lastpos = 0;
071742cf 11197 unsigned int limlo, limhi;
f02d8318 11198 int sizelo;
252b5132 11199 char *s_reset;
74cd071d 11200 offsetT min_range, max_range;
df58fc94 11201 long opend;
a40bc9dd 11202 char *name;
707bfff6
TS
11203 int argnum;
11204 unsigned int rtype;
df58fc94 11205 char *dot;
a40bc9dd 11206 long end;
252b5132
RH
11207
11208 insn_error = NULL;
11209
df58fc94
RS
11210 if (mips_opts.micromips)
11211 {
11212 hash = micromips_op_hash;
11213 past = &micromips_opcodes[bfd_micromips_num_opcodes];
11214 }
11215 else
11216 {
11217 hash = op_hash;
11218 past = &mips_opcodes[NUMOPCODES];
11219 }
11220 forced_insn_length = 0;
252b5132 11221 insn = NULL;
252b5132 11222
df58fc94 11223 /* We first try to match an instruction up to a space or to the end. */
a40bc9dd
RS
11224 for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
11225 continue;
bdaaa2e1 11226
a40bc9dd
RS
11227 /* Make a copy of the instruction so that we can fiddle with it. */
11228 name = alloca (end + 1);
11229 memcpy (name, str, end);
11230 name[end] = '\0';
252b5132 11231
df58fc94
RS
11232 for (;;)
11233 {
11234 insn = (struct mips_opcode *) hash_find (hash, name);
11235
11236 if (insn != NULL || !mips_opts.micromips)
11237 break;
11238 if (forced_insn_length)
11239 break;
11240
11241 /* See if there's an instruction size override suffix,
11242 either `16' or `32', at the end of the mnemonic proper,
11243 that defines the operation, i.e. before the first `.'
11244 character if any. Strip it and retry. */
11245 dot = strchr (name, '.');
11246 opend = dot != NULL ? dot - name : end;
11247 if (opend < 3)
11248 break;
11249 if (name[opend - 2] == '1' && name[opend - 1] == '6')
11250 forced_insn_length = 2;
11251 else if (name[opend - 2] == '3' && name[opend - 1] == '2')
11252 forced_insn_length = 4;
11253 else
11254 break;
11255 memcpy (name + opend - 2, name + opend, end - opend + 1);
11256 }
252b5132
RH
11257 if (insn == NULL)
11258 {
a40bc9dd
RS
11259 insn_error = _("Unrecognized opcode");
11260 return;
252b5132
RH
11261 }
11262
df58fc94
RS
11263 /* For microMIPS instructions placed in a fixed-length branch delay slot
11264 we make up to two passes over the relevant fragment of the opcode
11265 table. First we try instructions that meet the delay slot's length
11266 requirement. If none matched, then we retry with the remaining ones
11267 and if one matches, then we use it and then issue an appropriate
11268 warning later on. */
a40bc9dd 11269 argsStart = s = str + end;
252b5132
RH
11270 for (;;)
11271 {
df58fc94
RS
11272 bfd_boolean delay_slot_ok;
11273 bfd_boolean size_ok;
b34976b6 11274 bfd_boolean ok;
252b5132 11275
a40bc9dd 11276 gas_assert (strcmp (insn->name, name) == 0);
252b5132 11277
f79e2745 11278 ok = is_opcode_valid (insn);
df58fc94
RS
11279 size_ok = is_size_valid (insn);
11280 delay_slot_ok = is_delay_slot_valid (insn);
11281 if (!delay_slot_ok && !wrong_delay_slot_insns)
252b5132 11282 {
df58fc94
RS
11283 firstinsn = insn;
11284 wrong_delay_slot_insns = TRUE;
11285 }
11286 if (!ok || !size_ok || delay_slot_ok != need_delay_slot_ok)
11287 {
11288 static char buf[256];
11289
11290 if (insn + 1 < past && strcmp (insn->name, insn[1].name) == 0)
252b5132
RH
11291 {
11292 ++insn;
11293 continue;
11294 }
df58fc94 11295 if (wrong_delay_slot_insns && need_delay_slot_ok)
beae10d5 11296 {
df58fc94
RS
11297 gas_assert (firstinsn);
11298 need_delay_slot_ok = FALSE;
11299 past = insn + 1;
11300 insn = firstinsn;
11301 continue;
252b5132 11302 }
df58fc94
RS
11303
11304 if (insn_error)
11305 return;
11306
11307 if (!ok)
7bd942df 11308 sprintf (buf, _("Opcode not supported on this processor: %s (%s)"),
df58fc94
RS
11309 mips_cpu_info_from_arch (mips_opts.arch)->name,
11310 mips_cpu_info_from_isa (mips_opts.isa)->name);
833794fc
MR
11311 else if (mips_opts.insn32)
11312 sprintf (buf, _("Opcode not supported in the `insn32' mode"));
df58fc94
RS
11313 else
11314 sprintf (buf, _("Unrecognized %u-bit version of microMIPS opcode"),
11315 8 * forced_insn_length);
11316 insn_error = buf;
11317
11318 return;
252b5132
RH
11319 }
11320
f2ae14a1
RS
11321 imm_expr.X_op = O_absent;
11322 imm2_expr.X_op = O_absent;
11323 offset_expr.X_op = O_absent;
f2ae14a1
RS
11324 offset_reloc[0] = BFD_RELOC_UNUSED;
11325 offset_reloc[1] = BFD_RELOC_UNUSED;
11326 offset_reloc[2] = BFD_RELOC_UNUSED;
11327
1e915849 11328 create_insn (ip, insn);
268f6bed 11329 insn_error = NULL;
707bfff6 11330 argnum = 1;
24864476 11331 lastregno = 0xffffffff;
252b5132
RH
11332 for (args = insn->args;; ++args)
11333 {
deec1734
CD
11334 int is_mdmx;
11335
ad8d3bb3 11336 s += strspn (s, " \t");
deec1734 11337 is_mdmx = 0;
252b5132
RH
11338 switch (*args)
11339 {
11340 case '\0': /* end of args */
11341 if (*s == '\0')
11342 return;
11343 break;
11344
03f66e8a
MR
11345 case '2':
11346 /* DSP 2-bit unsigned immediate in bit 11 (for standard MIPS
11347 code) or 14 (for microMIPS code). */
8b082fb1
TS
11348 my_getExpression (&imm_expr, s);
11349 check_absolute_expr (ip, &imm_expr);
11350 if ((unsigned long) imm_expr.X_add_number != 1
11351 && (unsigned long) imm_expr.X_add_number != 3)
11352 {
11353 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
11354 (unsigned long) imm_expr.X_add_number);
11355 }
03f66e8a
MR
11356 INSERT_OPERAND (mips_opts.micromips,
11357 BP, *ip, imm_expr.X_add_number);
8b082fb1
TS
11358 imm_expr.X_op = O_absent;
11359 s = expr_end;
11360 continue;
11361
03f66e8a 11362 case '3':
c3678916
RS
11363 /* DSP 3-bit unsigned immediate in bit 21 (for standard MIPS
11364 code) or 13 (for microMIPS code). */
03f66e8a
MR
11365 {
11366 unsigned long mask = (mips_opts.micromips
11367 ? MICROMIPSOP_MASK_SA3 : OP_MASK_SA3);
11368
11369 my_getExpression (&imm_expr, s);
11370 check_absolute_expr (ip, &imm_expr);
11371 if ((unsigned long) imm_expr.X_add_number > mask)
11372 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11373 mask, (unsigned long) imm_expr.X_add_number);
11374 INSERT_OPERAND (mips_opts.micromips,
11375 SA3, *ip, imm_expr.X_add_number);
11376 imm_expr.X_op = O_absent;
11377 s = expr_end;
11378 }
74cd071d
CF
11379 continue;
11380
03f66e8a 11381 case '4':
c3678916
RS
11382 /* DSP 4-bit unsigned immediate in bit 21 (for standard MIPS
11383 code) or 12 (for microMIPS code). */
03f66e8a
MR
11384 {
11385 unsigned long mask = (mips_opts.micromips
11386 ? MICROMIPSOP_MASK_SA4 : OP_MASK_SA4);
11387
11388 my_getExpression (&imm_expr, s);
11389 check_absolute_expr (ip, &imm_expr);
11390 if ((unsigned long) imm_expr.X_add_number > mask)
11391 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11392 mask, (unsigned long) imm_expr.X_add_number);
11393 INSERT_OPERAND (mips_opts.micromips,
11394 SA4, *ip, imm_expr.X_add_number);
11395 imm_expr.X_op = O_absent;
11396 s = expr_end;
11397 }
74cd071d
CF
11398 continue;
11399
03f66e8a 11400 case '5':
c3678916
RS
11401 /* DSP 8-bit unsigned immediate in bit 16 (for standard MIPS
11402 code) or 13 (for microMIPS code). */
03f66e8a
MR
11403 {
11404 unsigned long mask = (mips_opts.micromips
11405 ? MICROMIPSOP_MASK_IMM8 : OP_MASK_IMM8);
11406
11407 my_getExpression (&imm_expr, s);
11408 check_absolute_expr (ip, &imm_expr);
11409 if ((unsigned long) imm_expr.X_add_number > mask)
11410 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11411 mask, (unsigned long) imm_expr.X_add_number);
11412 INSERT_OPERAND (mips_opts.micromips,
11413 IMM8, *ip, imm_expr.X_add_number);
11414 imm_expr.X_op = O_absent;
11415 s = expr_end;
11416 }
74cd071d
CF
11417 continue;
11418
03f66e8a 11419 case '6':
c3678916
RS
11420 /* DSP 5-bit unsigned immediate in bit 21 (for standard MIPS
11421 code) or 16 (for microMIPS code). */
03f66e8a
MR
11422 {
11423 unsigned long mask = (mips_opts.micromips
11424 ? MICROMIPSOP_MASK_RS : OP_MASK_RS);
11425
11426 my_getExpression (&imm_expr, s);
11427 check_absolute_expr (ip, &imm_expr);
11428 if ((unsigned long) imm_expr.X_add_number > mask)
11429 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11430 mask, (unsigned long) imm_expr.X_add_number);
11431 INSERT_OPERAND (mips_opts.micromips,
11432 RS, *ip, imm_expr.X_add_number);
11433 imm_expr.X_op = O_absent;
11434 s = expr_end;
11435 }
74cd071d
CF
11436 continue;
11437
c3678916
RS
11438 case '7':
11439 /* Four DSP accumulators in bit 11 (for standard MIPS code)
11440 or 14 (for microMIPS code). */
03f66e8a
MR
11441 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c'
11442 && s[3] >= '0' && s[3] <= '3')
74cd071d
CF
11443 {
11444 regno = s[3] - '0';
11445 s += 4;
03f66e8a 11446 INSERT_OPERAND (mips_opts.micromips, DSPACC, *ip, regno);
74cd071d
CF
11447 continue;
11448 }
11449 else
11450 as_bad (_("Invalid dsp acc register"));
11451 break;
11452
03f66e8a
MR
11453 case '8':
11454 /* DSP 6-bit unsigned immediate in bit 11 (for standard MIPS
11455 code) or 14 (for microMIPS code). */
11456 {
11457 unsigned long mask = (mips_opts.micromips
11458 ? MICROMIPSOP_MASK_WRDSP
11459 : OP_MASK_WRDSP);
11460
11461 my_getExpression (&imm_expr, s);
11462 check_absolute_expr (ip, &imm_expr);
11463 if ((unsigned long) imm_expr.X_add_number > mask)
11464 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11465 mask, (unsigned long) imm_expr.X_add_number);
11466 INSERT_OPERAND (mips_opts.micromips,
11467 WRDSP, *ip, imm_expr.X_add_number);
11468 imm_expr.X_op = O_absent;
11469 s = expr_end;
11470 }
74cd071d
CF
11471 continue;
11472
90ecf173 11473 case '9': /* Four DSP accumulators in bits 21,22. */
df58fc94 11474 gas_assert (!mips_opts.micromips);
03f66e8a
MR
11475 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c'
11476 && s[3] >= '0' && s[3] <= '3')
74cd071d
CF
11477 {
11478 regno = s[3] - '0';
11479 s += 4;
df58fc94 11480 INSERT_OPERAND (0, DSPACC_S, *ip, regno);
74cd071d
CF
11481 continue;
11482 }
11483 else
11484 as_bad (_("Invalid dsp acc register"));
11485 break;
11486
03f66e8a 11487 case '0':
c3678916
RS
11488 /* DSP 6-bit signed immediate in bit 20 (for standard MIPS
11489 code) or 16 (for microMIPS code). */
03f66e8a
MR
11490 {
11491 long mask = (mips_opts.micromips
11492 ? MICROMIPSOP_MASK_DSPSFT : OP_MASK_DSPSFT);
11493
11494 my_getExpression (&imm_expr, s);
11495 check_absolute_expr (ip, &imm_expr);
11496 min_range = -((mask + 1) >> 1);
11497 max_range = ((mask + 1) >> 1) - 1;
11498 if (imm_expr.X_add_number < min_range
11499 || imm_expr.X_add_number > max_range)
a9e24354
TS
11500 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11501 (long) min_range, (long) max_range,
11502 (long) imm_expr.X_add_number);
03f66e8a
MR
11503 INSERT_OPERAND (mips_opts.micromips,
11504 DSPSFT, *ip, imm_expr.X_add_number);
11505 imm_expr.X_op = O_absent;
11506 s = expr_end;
11507 }
74cd071d
CF
11508 continue;
11509
90ecf173 11510 case '\'': /* DSP 6-bit unsigned immediate in bit 16. */
df58fc94 11511 gas_assert (!mips_opts.micromips);
74cd071d
CF
11512 my_getExpression (&imm_expr, s);
11513 check_absolute_expr (ip, &imm_expr);
11514 if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
11515 {
a9e24354
TS
11516 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
11517 OP_MASK_RDDSP,
11518 (unsigned long) imm_expr.X_add_number);
74cd071d 11519 }
df58fc94 11520 INSERT_OPERAND (0, RDDSP, *ip, imm_expr.X_add_number);
74cd071d
CF
11521 imm_expr.X_op = O_absent;
11522 s = expr_end;
11523 continue;
11524
90ecf173 11525 case ':': /* DSP 7-bit signed immediate in bit 19. */
df58fc94 11526 gas_assert (!mips_opts.micromips);
74cd071d
CF
11527 my_getExpression (&imm_expr, s);
11528 check_absolute_expr (ip, &imm_expr);
11529 min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
11530 max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
11531 if (imm_expr.X_add_number < min_range ||
11532 imm_expr.X_add_number > max_range)
11533 {
a9e24354
TS
11534 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11535 (long) min_range, (long) max_range,
11536 (long) imm_expr.X_add_number);
74cd071d 11537 }
df58fc94 11538 INSERT_OPERAND (0, DSPSFT_7, *ip, imm_expr.X_add_number);
74cd071d
CF
11539 imm_expr.X_op = O_absent;
11540 s = expr_end;
11541 continue;
11542
90ecf173 11543 case '@': /* DSP 10-bit signed immediate in bit 16. */
03f66e8a
MR
11544 {
11545 long mask = (mips_opts.micromips
11546 ? MICROMIPSOP_MASK_IMM10 : OP_MASK_IMM10);
11547
11548 my_getExpression (&imm_expr, s);
11549 check_absolute_expr (ip, &imm_expr);
11550 min_range = -((mask + 1) >> 1);
11551 max_range = ((mask + 1) >> 1) - 1;
11552 if (imm_expr.X_add_number < min_range
11553 || imm_expr.X_add_number > max_range)
a9e24354
TS
11554 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11555 (long) min_range, (long) max_range,
11556 (long) imm_expr.X_add_number);
03f66e8a
MR
11557 INSERT_OPERAND (mips_opts.micromips,
11558 IMM10, *ip, imm_expr.X_add_number);
11559 imm_expr.X_op = O_absent;
11560 s = expr_end;
11561 }
11562 continue;
11563
11564 case '^': /* DSP 5-bit unsigned immediate in bit 11. */
11565 gas_assert (mips_opts.micromips);
11566 my_getExpression (&imm_expr, s);
11567 check_absolute_expr (ip, &imm_expr);
11568 if (imm_expr.X_add_number & ~MICROMIPSOP_MASK_RD)
11569 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
11570 MICROMIPSOP_MASK_RD,
11571 (unsigned long) imm_expr.X_add_number);
11572 INSERT_OPERAND (1, RD, *ip, imm_expr.X_add_number);
74cd071d
CF
11573 imm_expr.X_op = O_absent;
11574 s = expr_end;
11575 continue;
11576
a9e24354 11577 case '!': /* MT usermode flag bit. */
df58fc94 11578 gas_assert (!mips_opts.micromips);
ef2e4d86
CF
11579 my_getExpression (&imm_expr, s);
11580 check_absolute_expr (ip, &imm_expr);
11581 if (imm_expr.X_add_number & ~OP_MASK_MT_U)
a9e24354
TS
11582 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
11583 (unsigned long) imm_expr.X_add_number);
df58fc94 11584 INSERT_OPERAND (0, MT_U, *ip, imm_expr.X_add_number);
ef2e4d86
CF
11585 imm_expr.X_op = O_absent;
11586 s = expr_end;
11587 continue;
11588
a9e24354 11589 case '$': /* MT load high flag bit. */
df58fc94 11590 gas_assert (!mips_opts.micromips);
ef2e4d86
CF
11591 my_getExpression (&imm_expr, s);
11592 check_absolute_expr (ip, &imm_expr);
11593 if (imm_expr.X_add_number & ~OP_MASK_MT_H)
a9e24354
TS
11594 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
11595 (unsigned long) imm_expr.X_add_number);
df58fc94 11596 INSERT_OPERAND (0, MT_H, *ip, imm_expr.X_add_number);
ef2e4d86
CF
11597 imm_expr.X_op = O_absent;
11598 s = expr_end;
11599 continue;
11600
90ecf173 11601 case '*': /* Four DSP accumulators in bits 18,19. */
df58fc94 11602 gas_assert (!mips_opts.micromips);
ef2e4d86
CF
11603 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
11604 s[3] >= '0' && s[3] <= '3')
11605 {
11606 regno = s[3] - '0';
11607 s += 4;
df58fc94 11608 INSERT_OPERAND (0, MTACC_T, *ip, regno);
ef2e4d86
CF
11609 continue;
11610 }
11611 else
11612 as_bad (_("Invalid dsp/smartmips acc register"));
11613 break;
11614
90ecf173 11615 case '&': /* Four DSP accumulators in bits 13,14. */
df58fc94 11616 gas_assert (!mips_opts.micromips);
ef2e4d86
CF
11617 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
11618 s[3] >= '0' && s[3] <= '3')
11619 {
11620 regno = s[3] - '0';
11621 s += 4;
df58fc94 11622 INSERT_OPERAND (0, MTACC_D, *ip, regno);
ef2e4d86
CF
11623 continue;
11624 }
11625 else
11626 as_bad (_("Invalid dsp/smartmips acc register"));
11627 break;
11628
dec0624d
MR
11629 case '\\': /* 3-bit bit position. */
11630 {
2906b037
MR
11631 unsigned long mask = (mips_opts.micromips
11632 ? MICROMIPSOP_MASK_3BITPOS
11633 : OP_MASK_3BITPOS);
dec0624d
MR
11634
11635 my_getExpression (&imm_expr, s);
11636 check_absolute_expr (ip, &imm_expr);
11637 if ((unsigned long) imm_expr.X_add_number > mask)
11638 as_warn (_("Bit position for %s not in range 0..%lu (%lu)"),
11639 ip->insn_mo->name,
11640 mask, (unsigned long) imm_expr.X_add_number);
11641 INSERT_OPERAND (mips_opts.micromips,
11642 3BITPOS, *ip, imm_expr.X_add_number);
11643 imm_expr.X_op = O_absent;
11644 s = expr_end;
11645 }
11646 continue;
11647
252b5132 11648 case ',':
a339155f 11649 ++argnum;
252b5132
RH
11650 if (*s++ == *args)
11651 continue;
11652 s--;
11653 switch (*++args)
11654 {
11655 case 'r':
11656 case 'v':
df58fc94 11657 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
252b5132
RH
11658 continue;
11659
11660 case 'w':
df58fc94 11661 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
38487616
TS
11662 continue;
11663
252b5132 11664 case 'W':
df58fc94
RS
11665 gas_assert (!mips_opts.micromips);
11666 INSERT_OPERAND (0, FT, *ip, lastregno);
252b5132
RH
11667 continue;
11668
11669 case 'V':
df58fc94 11670 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
252b5132
RH
11671 continue;
11672 }
11673 break;
11674
11675 case '(':
11676 /* Handle optional base register.
11677 Either the base register is omitted or
bdaaa2e1 11678 we must have a left paren. */
252b5132
RH
11679 /* This is dependent on the next operand specifier
11680 is a base register specification. */
df58fc94
RS
11681 gas_assert (args[1] == 'b'
11682 || (mips_opts.micromips
11683 && args[1] == 'm'
11684 && (args[2] == 'l' || args[2] == 'n'
11685 || args[2] == 's' || args[2] == 'a')));
11686 if (*s == '\0' && args[1] == 'b')
252b5132 11687 return;
df58fc94 11688 /* Fall through. */
252b5132 11689
90ecf173 11690 case ')': /* These must match exactly. */
df58fc94
RS
11691 if (*s++ == *args)
11692 continue;
11693 break;
11694
af7ee8bf
CD
11695 case '+': /* Opcode extension character. */
11696 switch (*++args)
11697 {
9bcd4f99
TS
11698 case '1': /* UDI immediates. */
11699 case '2':
11700 case '3':
11701 case '4':
df58fc94 11702 gas_assert (!mips_opts.micromips);
9bcd4f99
TS
11703 {
11704 const struct mips_immed *imm = mips_immed;
11705
11706 while (imm->type && imm->type != *args)
11707 ++imm;
11708 if (! imm->type)
b37df7c4 11709 abort ();
9bcd4f99
TS
11710 my_getExpression (&imm_expr, s);
11711 check_absolute_expr (ip, &imm_expr);
11712 if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
11713 {
11714 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
11715 imm->desc ? imm->desc : ip->insn_mo->name,
11716 (unsigned long) imm_expr.X_add_number,
11717 (unsigned long) imm_expr.X_add_number);
90ecf173 11718 imm_expr.X_add_number &= imm->mask;
9bcd4f99
TS
11719 }
11720 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
11721 << imm->shift);
11722 imm_expr.X_op = O_absent;
11723 s = expr_end;
11724 }
11725 continue;
90ecf173 11726
b015e599
AP
11727 case 'J': /* 10-bit hypcall code. */
11728 gas_assert (!mips_opts.micromips);
11729 {
11730 unsigned long mask = OP_MASK_CODE10;
11731
11732 my_getExpression (&imm_expr, s);
11733 check_absolute_expr (ip, &imm_expr);
11734 if ((unsigned long) imm_expr.X_add_number > mask)
11735 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
11736 ip->insn_mo->name,
11737 mask, (unsigned long) imm_expr.X_add_number);
11738 INSERT_OPERAND (0, CODE10, *ip, imm_expr.X_add_number);
11739 imm_expr.X_op = O_absent;
11740 s = expr_end;
11741 }
11742 continue;
11743
071742cf
CD
11744 case 'A': /* ins/ext position, becomes LSB. */
11745 limlo = 0;
11746 limhi = 31;
5f74bc13
CD
11747 goto do_lsb;
11748 case 'E':
11749 limlo = 32;
11750 limhi = 63;
11751 goto do_lsb;
90ecf173 11752 do_lsb:
071742cf
CD
11753 my_getExpression (&imm_expr, s);
11754 check_absolute_expr (ip, &imm_expr);
11755 if ((unsigned long) imm_expr.X_add_number < limlo
11756 || (unsigned long) imm_expr.X_add_number > limhi)
11757 {
11758 as_bad (_("Improper position (%lu)"),
11759 (unsigned long) imm_expr.X_add_number);
11760 imm_expr.X_add_number = limlo;
11761 }
11762 lastpos = imm_expr.X_add_number;
df58fc94
RS
11763 INSERT_OPERAND (mips_opts.micromips,
11764 EXTLSB, *ip, imm_expr.X_add_number);
071742cf
CD
11765 imm_expr.X_op = O_absent;
11766 s = expr_end;
11767 continue;
11768
11769 case 'B': /* ins size, becomes MSB. */
11770 limlo = 1;
11771 limhi = 32;
5f74bc13
CD
11772 goto do_msb;
11773 case 'F':
11774 limlo = 33;
11775 limhi = 64;
11776 goto do_msb;
90ecf173 11777 do_msb:
071742cf
CD
11778 my_getExpression (&imm_expr, s);
11779 check_absolute_expr (ip, &imm_expr);
11780 /* Check for negative input so that small negative numbers
11781 will not succeed incorrectly. The checks against
11782 (pos+size) transitively check "size" itself,
11783 assuming that "pos" is reasonable. */
11784 if ((long) imm_expr.X_add_number < 0
11785 || ((unsigned long) imm_expr.X_add_number
11786 + lastpos) < limlo
11787 || ((unsigned long) imm_expr.X_add_number
11788 + lastpos) > limhi)
11789 {
11790 as_bad (_("Improper insert size (%lu, position %lu)"),
11791 (unsigned long) imm_expr.X_add_number,
11792 (unsigned long) lastpos);
11793 imm_expr.X_add_number = limlo - lastpos;
11794 }
df58fc94
RS
11795 INSERT_OPERAND (mips_opts.micromips, INSMSB, *ip,
11796 lastpos + imm_expr.X_add_number - 1);
071742cf
CD
11797 imm_expr.X_op = O_absent;
11798 s = expr_end;
11799 continue;
11800
11801 case 'C': /* ext size, becomes MSBD. */
11802 limlo = 1;
11803 limhi = 32;
f02d8318 11804 sizelo = 1;
5f74bc13
CD
11805 goto do_msbd;
11806 case 'G':
11807 limlo = 33;
11808 limhi = 64;
f02d8318 11809 sizelo = 33;
5f74bc13
CD
11810 goto do_msbd;
11811 case 'H':
11812 limlo = 33;
11813 limhi = 64;
f02d8318 11814 sizelo = 1;
5f74bc13 11815 goto do_msbd;
90ecf173 11816 do_msbd:
071742cf
CD
11817 my_getExpression (&imm_expr, s);
11818 check_absolute_expr (ip, &imm_expr);
f02d8318
CF
11819 /* The checks against (pos+size) don't transitively check
11820 "size" itself, assuming that "pos" is reasonable.
11821 We also need to check the lower bound of "size". */
11822 if ((long) imm_expr.X_add_number < sizelo
071742cf
CD
11823 || ((unsigned long) imm_expr.X_add_number
11824 + lastpos) < limlo
11825 || ((unsigned long) imm_expr.X_add_number
11826 + lastpos) > limhi)
11827 {
11828 as_bad (_("Improper extract size (%lu, position %lu)"),
11829 (unsigned long) imm_expr.X_add_number,
11830 (unsigned long) lastpos);
11831 imm_expr.X_add_number = limlo - lastpos;
11832 }
df58fc94
RS
11833 INSERT_OPERAND (mips_opts.micromips,
11834 EXTMSBD, *ip, imm_expr.X_add_number - 1);
071742cf
CD
11835 imm_expr.X_op = O_absent;
11836 s = expr_end;
11837 continue;
af7ee8bf 11838
5f74bc13
CD
11839 case 'I':
11840 /* "+I" is like "I", except that imm2_expr is used. */
11841 my_getExpression (&imm2_expr, s);
11842 if (imm2_expr.X_op != O_big
11843 && imm2_expr.X_op != O_constant)
11844 insn_error = _("absolute expression required");
9ee2a2d4
MR
11845 if (HAVE_32BIT_GPRS)
11846 normalize_constant_expr (&imm2_expr);
5f74bc13
CD
11847 s = expr_end;
11848 continue;
11849
707bfff6 11850 case 't': /* Coprocessor register number. */
df58fc94 11851 gas_assert (!mips_opts.micromips);
ef2e4d86
CF
11852 if (s[0] == '$' && ISDIGIT (s[1]))
11853 {
11854 ++s;
11855 regno = 0;
11856 do
11857 {
11858 regno *= 10;
11859 regno += *s - '0';
11860 ++s;
11861 }
11862 while (ISDIGIT (*s));
11863 if (regno > 31)
11864 as_bad (_("Invalid register number (%d)"), regno);
11865 else
11866 {
df58fc94 11867 INSERT_OPERAND (0, RT, *ip, regno);
ef2e4d86
CF
11868 continue;
11869 }
11870 }
11871 else
11872 as_bad (_("Invalid coprocessor 0 register number"));
11873 break;
11874
bb35fb24
NC
11875 case 'x':
11876 /* bbit[01] and bbit[01]32 bit index. Give error if index
11877 is not in the valid range. */
df58fc94 11878 gas_assert (!mips_opts.micromips);
bb35fb24
NC
11879 my_getExpression (&imm_expr, s);
11880 check_absolute_expr (ip, &imm_expr);
11881 if ((unsigned) imm_expr.X_add_number > 31)
11882 {
11883 as_bad (_("Improper bit index (%lu)"),
11884 (unsigned long) imm_expr.X_add_number);
11885 imm_expr.X_add_number = 0;
11886 }
df58fc94 11887 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number);
bb35fb24
NC
11888 imm_expr.X_op = O_absent;
11889 s = expr_end;
11890 continue;
11891
11892 case 'X':
11893 /* bbit[01] bit index when bbit is used but we generate
11894 bbit[01]32 because the index is over 32. Move to the
11895 next candidate if index is not in the valid range. */
df58fc94 11896 gas_assert (!mips_opts.micromips);
bb35fb24
NC
11897 my_getExpression (&imm_expr, s);
11898 check_absolute_expr (ip, &imm_expr);
11899 if ((unsigned) imm_expr.X_add_number < 32
11900 || (unsigned) imm_expr.X_add_number > 63)
11901 break;
df58fc94 11902 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number - 32);
bb35fb24
NC
11903 imm_expr.X_op = O_absent;
11904 s = expr_end;
11905 continue;
11906
11907 case 'p':
11908 /* cins, cins32, exts and exts32 position field. Give error
11909 if it's not in the valid range. */
df58fc94 11910 gas_assert (!mips_opts.micromips);
bb35fb24
NC
11911 my_getExpression (&imm_expr, s);
11912 check_absolute_expr (ip, &imm_expr);
11913 if ((unsigned) imm_expr.X_add_number > 31)
11914 {
11915 as_bad (_("Improper position (%lu)"),
11916 (unsigned long) imm_expr.X_add_number);
11917 imm_expr.X_add_number = 0;
11918 }
23e69e47 11919 lastpos = imm_expr.X_add_number;
df58fc94 11920 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number);
bb35fb24
NC
11921 imm_expr.X_op = O_absent;
11922 s = expr_end;
11923 continue;
11924
11925 case 'P':
11926 /* cins, cins32, exts and exts32 position field. Move to
11927 the next candidate if it's not in the valid range. */
df58fc94 11928 gas_assert (!mips_opts.micromips);
bb35fb24
NC
11929 my_getExpression (&imm_expr, s);
11930 check_absolute_expr (ip, &imm_expr);
11931 if ((unsigned) imm_expr.X_add_number < 32
11932 || (unsigned) imm_expr.X_add_number > 63)
11933 break;
11934 lastpos = imm_expr.X_add_number;
df58fc94 11935 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number - 32);
bb35fb24
NC
11936 imm_expr.X_op = O_absent;
11937 s = expr_end;
11938 continue;
11939
11940 case 's':
23e69e47 11941 /* cins32 and exts32 length-minus-one field. */
df58fc94 11942 gas_assert (!mips_opts.micromips);
bb35fb24
NC
11943 my_getExpression (&imm_expr, s);
11944 check_absolute_expr (ip, &imm_expr);
23e69e47
RS
11945 if ((unsigned long) imm_expr.X_add_number > 31
11946 || (unsigned long) imm_expr.X_add_number + lastpos > 31)
bb35fb24
NC
11947 {
11948 as_bad (_("Improper size (%lu)"),
11949 (unsigned long) imm_expr.X_add_number);
11950 imm_expr.X_add_number = 0;
11951 }
df58fc94 11952 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
bb35fb24
NC
11953 imm_expr.X_op = O_absent;
11954 s = expr_end;
11955 continue;
11956
11957 case 'S':
23e69e47 11958 /* cins/exts length-minus-one field. */
df58fc94 11959 gas_assert (!mips_opts.micromips);
bb35fb24
NC
11960 my_getExpression (&imm_expr, s);
11961 check_absolute_expr (ip, &imm_expr);
23e69e47 11962 if ((unsigned long) imm_expr.X_add_number > 31
bb35fb24
NC
11963 || (unsigned long) imm_expr.X_add_number + lastpos > 63)
11964 {
11965 as_bad (_("Improper size (%lu)"),
11966 (unsigned long) imm_expr.X_add_number);
11967 imm_expr.X_add_number = 0;
11968 }
df58fc94 11969 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
bb35fb24
NC
11970 imm_expr.X_op = O_absent;
11971 s = expr_end;
11972 continue;
11973
dd3cbb7e
NC
11974 case 'Q':
11975 /* seqi/snei immediate field. */
df58fc94 11976 gas_assert (!mips_opts.micromips);
dd3cbb7e
NC
11977 my_getExpression (&imm_expr, s);
11978 check_absolute_expr (ip, &imm_expr);
11979 if ((long) imm_expr.X_add_number < -512
11980 || (long) imm_expr.X_add_number >= 512)
11981 {
11982 as_bad (_("Improper immediate (%ld)"),
11983 (long) imm_expr.X_add_number);
11984 imm_expr.X_add_number = 0;
11985 }
df58fc94 11986 INSERT_OPERAND (0, SEQI, *ip, imm_expr.X_add_number);
dd3cbb7e
NC
11987 imm_expr.X_op = O_absent;
11988 s = expr_end;
11989 continue;
11990
98675402 11991 case 'a': /* 8-bit signed offset in bit 6 */
df58fc94 11992 gas_assert (!mips_opts.micromips);
98675402
RS
11993 my_getExpression (&imm_expr, s);
11994 check_absolute_expr (ip, &imm_expr);
11995 min_range = -((OP_MASK_OFFSET_A + 1) >> 1);
11996 max_range = ((OP_MASK_OFFSET_A + 1) >> 1) - 1;
11997 if (imm_expr.X_add_number < min_range
11998 || imm_expr.X_add_number > max_range)
11999 {
c95354ed 12000 as_bad (_("Offset not in range %ld..%ld (%ld)"),
98675402
RS
12001 (long) min_range, (long) max_range,
12002 (long) imm_expr.X_add_number);
12003 }
df58fc94 12004 INSERT_OPERAND (0, OFFSET_A, *ip, imm_expr.X_add_number);
98675402
RS
12005 imm_expr.X_op = O_absent;
12006 s = expr_end;
12007 continue;
12008
12009 case 'b': /* 8-bit signed offset in bit 3 */
df58fc94 12010 gas_assert (!mips_opts.micromips);
98675402
RS
12011 my_getExpression (&imm_expr, s);
12012 check_absolute_expr (ip, &imm_expr);
12013 min_range = -((OP_MASK_OFFSET_B + 1) >> 1);
12014 max_range = ((OP_MASK_OFFSET_B + 1) >> 1) - 1;
12015 if (imm_expr.X_add_number < min_range
12016 || imm_expr.X_add_number > max_range)
12017 {
c95354ed 12018 as_bad (_("Offset not in range %ld..%ld (%ld)"),
98675402
RS
12019 (long) min_range, (long) max_range,
12020 (long) imm_expr.X_add_number);
12021 }
df58fc94 12022 INSERT_OPERAND (0, OFFSET_B, *ip, imm_expr.X_add_number);
98675402
RS
12023 imm_expr.X_op = O_absent;
12024 s = expr_end;
12025 continue;
12026
12027 case 'c': /* 9-bit signed offset in bit 6 */
df58fc94 12028 gas_assert (!mips_opts.micromips);
98675402
RS
12029 my_getExpression (&imm_expr, s);
12030 check_absolute_expr (ip, &imm_expr);
12031 min_range = -((OP_MASK_OFFSET_C + 1) >> 1);
12032 max_range = ((OP_MASK_OFFSET_C + 1) >> 1) - 1;
c95354ed
MX
12033 /* We check the offset range before adjusted. */
12034 min_range <<= 4;
12035 max_range <<= 4;
98675402
RS
12036 if (imm_expr.X_add_number < min_range
12037 || imm_expr.X_add_number > max_range)
12038 {
c95354ed 12039 as_bad (_("Offset not in range %ld..%ld (%ld)"),
98675402
RS
12040 (long) min_range, (long) max_range,
12041 (long) imm_expr.X_add_number);
12042 }
c95354ed
MX
12043 if (imm_expr.X_add_number & 0xf)
12044 {
12045 as_bad (_("Offset not 16 bytes alignment (%ld)"),
12046 (long) imm_expr.X_add_number);
12047 }
12048 /* Right shift 4 bits to adjust the offset operand. */
df58fc94
RS
12049 INSERT_OPERAND (0, OFFSET_C, *ip,
12050 imm_expr.X_add_number >> 4);
98675402
RS
12051 imm_expr.X_op = O_absent;
12052 s = expr_end;
12053 continue;
12054
12055 case 'z':
df58fc94 12056 gas_assert (!mips_opts.micromips);
98675402
RS
12057 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
12058 break;
12059 if (regno == AT && mips_opts.at)
12060 {
12061 if (mips_opts.at == ATREG)
12062 as_warn (_("used $at without \".set noat\""));
12063 else
12064 as_warn (_("used $%u with \".set at=$%u\""),
12065 regno, mips_opts.at);
12066 }
df58fc94 12067 INSERT_OPERAND (0, RZ, *ip, regno);
98675402
RS
12068 continue;
12069
12070 case 'Z':
df58fc94 12071 gas_assert (!mips_opts.micromips);
98675402
RS
12072 if (!reg_lookup (&s, RTYPE_FPU, &regno))
12073 break;
df58fc94 12074 INSERT_OPERAND (0, FZ, *ip, regno);
98675402
RS
12075 continue;
12076
27c5c572
RS
12077 case 'i':
12078 goto jump;
12079
7f3c4072
CM
12080 case 'j':
12081 {
12082 int shift = 8;
12083 size_t i;
77bd4346
RS
12084 bfd_reloc_code_real_type r[3];
12085
7f3c4072
CM
12086 /* Check whether there is only a single bracketed expression
12087 left. If so, it must be the base register and the
12088 constant must be zero. */
12089 if (*s == '(' && strchr (s + 1, '(') == 0)
12090 continue;
12091
12092 /* If this value won't fit into the offset, then go find
12093 a macro that will generate a 16- or 32-bit offset code
12094 pattern. */
77bd4346 12095 i = my_getSmallExpression (&imm_expr, r, s);
7f3c4072
CM
12096 if ((i == 0 && (imm_expr.X_op != O_constant
12097 || imm_expr.X_add_number >= 1 << shift
12098 || imm_expr.X_add_number < -1 << shift))
12099 || i > 0)
12100 {
12101 imm_expr.X_op = O_absent;
12102 break;
12103 }
12104 INSERT_OPERAND (mips_opts.micromips, EVAOFFSET, *ip,
12105 imm_expr.X_add_number);
12106 imm_expr.X_op = O_absent;
12107 s = expr_end;
12108 }
12109 continue;
12110
af7ee8bf 12111 default:
df58fc94 12112 as_bad (_("Internal error: bad %s opcode "
90ecf173 12113 "(unknown extension operand type `+%c'): %s %s"),
df58fc94 12114 mips_opts.micromips ? "microMIPS" : "MIPS",
90ecf173 12115 *args, insn->name, insn->args);
af7ee8bf
CD
12116 /* Further processing is fruitless. */
12117 return;
12118 }
12119 break;
12120
df58fc94 12121 case '.': /* 10-bit offset. */
df58fc94 12122 gas_assert (mips_opts.micromips);
dec0624d 12123 case '~': /* 12-bit offset. */
df58fc94
RS
12124 {
12125 int shift = *args == '.' ? 9 : 11;
12126 size_t i;
77bd4346 12127 bfd_reloc_code_real_type r[3];
df58fc94
RS
12128
12129 /* Check whether there is only a single bracketed expression
12130 left. If so, it must be the base register and the
12131 constant must be zero. */
12132 if (*s == '(' && strchr (s + 1, '(') == 0)
12133 continue;
12134
12135 /* If this value won't fit into the offset, then go find
12136 a macro that will generate a 16- or 32-bit offset code
12137 pattern. */
77bd4346 12138 i = my_getSmallExpression (&imm_expr, r, s);
df58fc94
RS
12139 if ((i == 0 && (imm_expr.X_op != O_constant
12140 || imm_expr.X_add_number >= 1 << shift
12141 || imm_expr.X_add_number < -1 << shift))
12142 || i > 0)
12143 {
12144 imm_expr.X_op = O_absent;
12145 break;
12146 }
12147 if (shift == 9)
12148 INSERT_OPERAND (1, OFFSET10, *ip, imm_expr.X_add_number);
12149 else
dec0624d
MR
12150 INSERT_OPERAND (mips_opts.micromips,
12151 OFFSET12, *ip, imm_expr.X_add_number);
df58fc94
RS
12152 imm_expr.X_op = O_absent;
12153 s = expr_end;
12154 }
12155 continue;
12156
252b5132
RH
12157 case '<': /* must be at least one digit */
12158 /*
12159 * According to the manual, if the shift amount is greater
b6ff326e
KH
12160 * than 31 or less than 0, then the shift amount should be
12161 * mod 32. In reality the mips assembler issues an error.
252b5132
RH
12162 * We issue a warning and mask out all but the low 5 bits.
12163 */
12164 my_getExpression (&imm_expr, s);
12165 check_absolute_expr (ip, &imm_expr);
12166 if ((unsigned long) imm_expr.X_add_number > 31)
bf12938e
RS
12167 as_warn (_("Improper shift amount (%lu)"),
12168 (unsigned long) imm_expr.X_add_number);
df58fc94
RS
12169 INSERT_OPERAND (mips_opts.micromips,
12170 SHAMT, *ip, imm_expr.X_add_number);
252b5132
RH
12171 imm_expr.X_op = O_absent;
12172 s = expr_end;
12173 continue;
12174
12175 case '>': /* shift amount minus 32 */
12176 my_getExpression (&imm_expr, s);
12177 check_absolute_expr (ip, &imm_expr);
12178 if ((unsigned long) imm_expr.X_add_number < 32
12179 || (unsigned long) imm_expr.X_add_number > 63)
12180 break;
df58fc94
RS
12181 INSERT_OPERAND (mips_opts.micromips,
12182 SHAMT, *ip, imm_expr.X_add_number - 32);
252b5132
RH
12183 imm_expr.X_op = O_absent;
12184 s = expr_end;
12185 continue;
12186
90ecf173
MR
12187 case 'k': /* CACHE code. */
12188 case 'h': /* PREFX code. */
12189 case '1': /* SYNC type. */
252b5132
RH
12190 my_getExpression (&imm_expr, s);
12191 check_absolute_expr (ip, &imm_expr);
12192 if ((unsigned long) imm_expr.X_add_number > 31)
bf12938e
RS
12193 as_warn (_("Invalid value for `%s' (%lu)"),
12194 ip->insn_mo->name,
12195 (unsigned long) imm_expr.X_add_number);
df58fc94 12196 switch (*args)
d954098f 12197 {
df58fc94
RS
12198 case 'k':
12199 if (mips_fix_cn63xxp1
12200 && !mips_opts.micromips
12201 && strcmp ("pref", insn->name) == 0)
d954098f
DD
12202 switch (imm_expr.X_add_number)
12203 {
12204 case 5:
12205 case 25:
12206 case 26:
12207 case 27:
12208 case 28:
12209 case 29:
12210 case 30:
12211 case 31: /* These are ok. */
12212 break;
12213
12214 default: /* The rest must be changed to 28. */
12215 imm_expr.X_add_number = 28;
12216 break;
12217 }
df58fc94
RS
12218 INSERT_OPERAND (mips_opts.micromips,
12219 CACHE, *ip, imm_expr.X_add_number);
12220 break;
12221 case 'h':
12222 INSERT_OPERAND (mips_opts.micromips,
12223 PREFX, *ip, imm_expr.X_add_number);
12224 break;
12225 case '1':
12226 INSERT_OPERAND (mips_opts.micromips,
12227 STYPE, *ip, imm_expr.X_add_number);
12228 break;
d954098f 12229 }
252b5132
RH
12230 imm_expr.X_op = O_absent;
12231 s = expr_end;
12232 continue;
12233
90ecf173 12234 case 'c': /* BREAK code. */
df58fc94
RS
12235 {
12236 unsigned long mask = (mips_opts.micromips
12237 ? MICROMIPSOP_MASK_CODE
12238 : OP_MASK_CODE);
12239
12240 my_getExpression (&imm_expr, s);
12241 check_absolute_expr (ip, &imm_expr);
12242 if ((unsigned long) imm_expr.X_add_number > mask)
12243 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
12244 ip->insn_mo->name,
12245 mask, (unsigned long) imm_expr.X_add_number);
12246 INSERT_OPERAND (mips_opts.micromips,
12247 CODE, *ip, imm_expr.X_add_number);
12248 imm_expr.X_op = O_absent;
12249 s = expr_end;
12250 }
252b5132
RH
12251 continue;
12252
90ecf173 12253 case 'q': /* Lower BREAK code. */
df58fc94
RS
12254 {
12255 unsigned long mask = (mips_opts.micromips
12256 ? MICROMIPSOP_MASK_CODE2
12257 : OP_MASK_CODE2);
12258
12259 my_getExpression (&imm_expr, s);
12260 check_absolute_expr (ip, &imm_expr);
12261 if ((unsigned long) imm_expr.X_add_number > mask)
12262 as_warn (_("Lower code for %s not in range 0..%lu (%lu)"),
12263 ip->insn_mo->name,
12264 mask, (unsigned long) imm_expr.X_add_number);
12265 INSERT_OPERAND (mips_opts.micromips,
12266 CODE2, *ip, imm_expr.X_add_number);
12267 imm_expr.X_op = O_absent;
12268 s = expr_end;
12269 }
252b5132
RH
12270 continue;
12271
df58fc94
RS
12272 case 'B': /* 20- or 10-bit syscall/break/wait code. */
12273 {
12274 unsigned long mask = (mips_opts.micromips
12275 ? MICROMIPSOP_MASK_CODE10
12276 : OP_MASK_CODE20);
12277
12278 my_getExpression (&imm_expr, s);
12279 check_absolute_expr (ip, &imm_expr);
12280 if ((unsigned long) imm_expr.X_add_number > mask)
12281 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
12282 ip->insn_mo->name,
12283 mask, (unsigned long) imm_expr.X_add_number);
12284 if (mips_opts.micromips)
12285 INSERT_OPERAND (1, CODE10, *ip, imm_expr.X_add_number);
12286 else
12287 INSERT_OPERAND (0, CODE20, *ip, imm_expr.X_add_number);
12288 imm_expr.X_op = O_absent;
12289 s = expr_end;
12290 }
252b5132
RH
12291 continue;
12292
df58fc94
RS
12293 case 'C': /* 25- or 23-bit coprocessor code. */
12294 {
12295 unsigned long mask = (mips_opts.micromips
12296 ? MICROMIPSOP_MASK_COPZ
12297 : OP_MASK_COPZ);
12298
12299 my_getExpression (&imm_expr, s);
12300 check_absolute_expr (ip, &imm_expr);
12301 if ((unsigned long) imm_expr.X_add_number > mask)
12302 as_warn (_("Coproccesor code > %u bits (%lu)"),
12303 mips_opts.micromips ? 23U : 25U,
793b27f4 12304 (unsigned long) imm_expr.X_add_number);
df58fc94
RS
12305 INSERT_OPERAND (mips_opts.micromips,
12306 COPZ, *ip, imm_expr.X_add_number);
12307 imm_expr.X_op = O_absent;
12308 s = expr_end;
12309 }
beae10d5 12310 continue;
252b5132 12311
df58fc94
RS
12312 case 'J': /* 19-bit WAIT code. */
12313 gas_assert (!mips_opts.micromips);
4372b673
NC
12314 my_getExpression (&imm_expr, s);
12315 check_absolute_expr (ip, &imm_expr);
793b27f4 12316 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
df58fc94
RS
12317 {
12318 as_warn (_("Illegal 19-bit code (%lu)"),
a9e24354 12319 (unsigned long) imm_expr.X_add_number);
df58fc94
RS
12320 imm_expr.X_add_number &= OP_MASK_CODE19;
12321 }
12322 INSERT_OPERAND (0, CODE19, *ip, imm_expr.X_add_number);
4372b673
NC
12323 imm_expr.X_op = O_absent;
12324 s = expr_end;
12325 continue;
12326
707bfff6 12327 case 'P': /* Performance register. */
df58fc94 12328 gas_assert (!mips_opts.micromips);
beae10d5 12329 my_getExpression (&imm_expr, s);
252b5132 12330 check_absolute_expr (ip, &imm_expr);
beae10d5 12331 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
bf12938e
RS
12332 as_warn (_("Invalid performance register (%lu)"),
12333 (unsigned long) imm_expr.X_add_number);
e407c74b
NC
12334 if (imm_expr.X_add_number != 0 && mips_opts.arch == CPU_R5900
12335 && (!strcmp(insn->name,"mfps") || !strcmp(insn->name,"mtps")))
12336 as_warn (_("Invalid performance register (%lu)"),
12337 (unsigned long) imm_expr.X_add_number);
df58fc94 12338 INSERT_OPERAND (0, PERFREG, *ip, imm_expr.X_add_number);
beae10d5
KH
12339 imm_expr.X_op = O_absent;
12340 s = expr_end;
12341 continue;
252b5132 12342
707bfff6 12343 case 'G': /* Coprocessor destination register. */
df58fc94
RS
12344 {
12345 unsigned long opcode = ip->insn_opcode;
12346 unsigned long mask;
12347 unsigned int types;
12348 int cop0;
12349
12350 if (mips_opts.micromips)
12351 {
12352 mask = ~((MICROMIPSOP_MASK_RT << MICROMIPSOP_SH_RT)
12353 | (MICROMIPSOP_MASK_RS << MICROMIPSOP_SH_RS)
12354 | (MICROMIPSOP_MASK_SEL << MICROMIPSOP_SH_SEL));
12355 opcode &= mask;
12356 switch (opcode)
12357 {
12358 case 0x000000fc: /* mfc0 */
12359 case 0x000002fc: /* mtc0 */
12360 case 0x580000fc: /* dmfc0 */
12361 case 0x580002fc: /* dmtc0 */
12362 cop0 = 1;
12363 break;
12364 default:
12365 cop0 = 0;
12366 break;
12367 }
12368 }
12369 else
12370 {
12371 opcode = (opcode >> OP_SH_OP) & OP_MASK_OP;
12372 cop0 = opcode == OP_OP_COP0;
12373 }
12374 types = RTYPE_NUM | (cop0 ? RTYPE_CP0 : RTYPE_GP);
12375 ok = reg_lookup (&s, types, &regno);
12376 if (mips_opts.micromips)
12377 INSERT_OPERAND (1, RS, *ip, regno);
12378 else
12379 INSERT_OPERAND (0, RD, *ip, regno);
12380 if (ok)
12381 {
12382 lastregno = regno;
12383 continue;
12384 }
12385 }
12386 break;
707bfff6 12387
df58fc94
RS
12388 case 'y': /* ALNV.PS source register. */
12389 gas_assert (mips_opts.micromips);
12390 goto do_reg;
12391 case 'x': /* Ignore register name. */
12392 case 'U': /* Destination register (CLO/CLZ). */
12393 case 'g': /* Coprocessor destination register. */
12394 gas_assert (!mips_opts.micromips);
90ecf173
MR
12395 case 'b': /* Base register. */
12396 case 'd': /* Destination register. */
12397 case 's': /* Source register. */
12398 case 't': /* Target register. */
12399 case 'r': /* Both target and source. */
12400 case 'v': /* Both dest and source. */
12401 case 'w': /* Both dest and target. */
12402 case 'E': /* Coprocessor target register. */
12403 case 'K': /* RDHWR destination register. */
90ecf173 12404 case 'z': /* Must be zero register. */
df58fc94 12405 do_reg:
90ecf173 12406 s_reset = s;
707bfff6
TS
12407 if (*args == 'E' || *args == 'K')
12408 ok = reg_lookup (&s, RTYPE_NUM, &regno);
12409 else
12410 {
12411 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
741fe287
MR
12412 if (regno == AT && mips_opts.at)
12413 {
12414 if (mips_opts.at == ATREG)
f71d0d44 12415 as_warn (_("Used $at without \".set noat\""));
741fe287 12416 else
f71d0d44 12417 as_warn (_("Used $%u with \".set at=$%u\""),
741fe287
MR
12418 regno, mips_opts.at);
12419 }
707bfff6
TS
12420 }
12421 if (ok)
252b5132 12422 {
252b5132
RH
12423 c = *args;
12424 if (*s == ' ')
f9419b05 12425 ++s;
252b5132
RH
12426 if (args[1] != *s)
12427 {
12428 if (c == 'r' || c == 'v' || c == 'w')
12429 {
12430 regno = lastregno;
12431 s = s_reset;
f9419b05 12432 ++args;
252b5132
RH
12433 }
12434 }
12435 /* 'z' only matches $0. */
12436 if (c == 'z' && regno != 0)
12437 break;
12438
24864476 12439 if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
e7c604dd
CM
12440 {
12441 if (regno == lastregno)
90ecf173
MR
12442 {
12443 insn_error
f71d0d44 12444 = _("Source and destination must be different");
e7c604dd 12445 continue;
90ecf173 12446 }
24864476 12447 if (regno == 31 && lastregno == 0xffffffff)
90ecf173
MR
12448 {
12449 insn_error
f71d0d44 12450 = _("A destination register must be supplied");
e7c604dd 12451 continue;
90ecf173 12452 }
e7c604dd 12453 }
90ecf173
MR
12454 /* Now that we have assembled one operand, we use the args
12455 string to figure out where it goes in the instruction. */
252b5132
RH
12456 switch (c)
12457 {
12458 case 'r':
12459 case 's':
12460 case 'v':
12461 case 'b':
df58fc94 12462 INSERT_OPERAND (mips_opts.micromips, RS, *ip, regno);
252b5132 12463 break;
df58fc94 12464
af7ee8bf 12465 case 'K':
df58fc94
RS
12466 if (mips_opts.micromips)
12467 INSERT_OPERAND (1, RS, *ip, regno);
12468 else
12469 INSERT_OPERAND (0, RD, *ip, regno);
12470 break;
12471
12472 case 'd':
ef2e4d86 12473 case 'g':
df58fc94 12474 INSERT_OPERAND (mips_opts.micromips, RD, *ip, regno);
252b5132 12475 break;
df58fc94 12476
4372b673 12477 case 'U':
df58fc94
RS
12478 gas_assert (!mips_opts.micromips);
12479 INSERT_OPERAND (0, RD, *ip, regno);
12480 INSERT_OPERAND (0, RT, *ip, regno);
4372b673 12481 break;
df58fc94 12482
252b5132
RH
12483 case 'w':
12484 case 't':
12485 case 'E':
df58fc94
RS
12486 INSERT_OPERAND (mips_opts.micromips, RT, *ip, regno);
12487 break;
12488
12489 case 'y':
12490 gas_assert (mips_opts.micromips);
12491 INSERT_OPERAND (1, RS3, *ip, regno);
252b5132 12492 break;
df58fc94 12493
252b5132
RH
12494 case 'x':
12495 /* This case exists because on the r3000 trunc
12496 expands into a macro which requires a gp
12497 register. On the r6000 or r4000 it is
12498 assembled into a single instruction which
12499 ignores the register. Thus the insn version
12500 is MIPS_ISA2 and uses 'x', and the macro
12501 version is MIPS_ISA1 and uses 't'. */
12502 break;
df58fc94 12503
252b5132
RH
12504 case 'z':
12505 /* This case is for the div instruction, which
12506 acts differently if the destination argument
12507 is $0. This only matches $0, and is checked
12508 outside the switch. */
12509 break;
252b5132
RH
12510 }
12511 lastregno = regno;
12512 continue;
12513 }
252b5132
RH
12514 switch (*args++)
12515 {
12516 case 'r':
12517 case 'v':
df58fc94 12518 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
252b5132 12519 continue;
df58fc94 12520
252b5132 12521 case 'w':
df58fc94 12522 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
252b5132
RH
12523 continue;
12524 }
12525 break;
12526
deec1734 12527 case 'O': /* MDMX alignment immediate constant. */
df58fc94 12528 gas_assert (!mips_opts.micromips);
deec1734
CD
12529 my_getExpression (&imm_expr, s);
12530 check_absolute_expr (ip, &imm_expr);
12531 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
20203fb9 12532 as_warn (_("Improper align amount (%ld), using low bits"),
bf12938e 12533 (long) imm_expr.X_add_number);
df58fc94 12534 INSERT_OPERAND (0, ALN, *ip, imm_expr.X_add_number);
deec1734
CD
12535 imm_expr.X_op = O_absent;
12536 s = expr_end;
12537 continue;
12538
12539 case 'Q': /* MDMX vector, element sel, or const. */
12540 if (s[0] != '$')
12541 {
12542 /* MDMX Immediate. */
df58fc94 12543 gas_assert (!mips_opts.micromips);
deec1734
CD
12544 my_getExpression (&imm_expr, s);
12545 check_absolute_expr (ip, &imm_expr);
12546 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
bf12938e
RS
12547 as_warn (_("Invalid MDMX Immediate (%ld)"),
12548 (long) imm_expr.X_add_number);
df58fc94 12549 INSERT_OPERAND (0, FT, *ip, imm_expr.X_add_number);
deec1734
CD
12550 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
12551 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
12552 else
12553 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
deec1734
CD
12554 imm_expr.X_op = O_absent;
12555 s = expr_end;
12556 continue;
12557 }
12558 /* Not MDMX Immediate. Fall through. */
12559 case 'X': /* MDMX destination register. */
12560 case 'Y': /* MDMX source register. */
12561 case 'Z': /* MDMX target register. */
5c324c16 12562 is_mdmx = !(insn->membership & INSN_5400);
df58fc94
RS
12563 case 'W':
12564 gas_assert (!mips_opts.micromips);
90ecf173
MR
12565 case 'D': /* Floating point destination register. */
12566 case 'S': /* Floating point source register. */
12567 case 'T': /* Floating point target register. */
12568 case 'R': /* Floating point source register. */
252b5132 12569 case 'V':
707bfff6
TS
12570 rtype = RTYPE_FPU;
12571 if (is_mdmx
846ef2d0 12572 || ((mips_opts.ase & ASE_MDMX)
707bfff6
TS
12573 && (ip->insn_mo->pinfo & FP_D)
12574 && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
12575 | INSN_COPROC_MEMORY_DELAY
12576 | INSN_LOAD_COPROC_DELAY
12577 | INSN_LOAD_MEMORY_DELAY
12578 | INSN_STORE_MEMORY))))
12579 rtype |= RTYPE_VEC;
252b5132 12580 s_reset = s;
707bfff6 12581 if (reg_lookup (&s, rtype, &regno))
252b5132 12582 {
252b5132 12583 if ((regno & 1) != 0
ca4e0257 12584 && HAVE_32BIT_FPRS
90ecf173 12585 && !mips_oddfpreg_ok (ip->insn_mo, argnum))
252b5132
RH
12586 as_warn (_("Float register should be even, was %d"),
12587 regno);
12588
12589 c = *args;
12590 if (*s == ' ')
f9419b05 12591 ++s;
252b5132
RH
12592 if (args[1] != *s)
12593 {
12594 if (c == 'V' || c == 'W')
12595 {
12596 regno = lastregno;
12597 s = s_reset;
f9419b05 12598 ++args;
252b5132
RH
12599 }
12600 }
12601 switch (c)
12602 {
12603 case 'D':
deec1734 12604 case 'X':
df58fc94 12605 INSERT_OPERAND (mips_opts.micromips, FD, *ip, regno);
252b5132 12606 break;
df58fc94 12607
252b5132
RH
12608 case 'V':
12609 case 'S':
deec1734 12610 case 'Y':
df58fc94 12611 INSERT_OPERAND (mips_opts.micromips, FS, *ip, regno);
252b5132 12612 break;
df58fc94 12613
deec1734
CD
12614 case 'Q':
12615 /* This is like 'Z', but also needs to fix the MDMX
12616 vector/scalar select bits. Note that the
12617 scalar immediate case is handled above. */
5c324c16
RS
12618 if ((ip->insn_mo->membership & INSN_5400)
12619 && strcmp (insn->name, "rzu.ob") == 0)
12620 as_bad (_("Operand %d of `%s' must be an immediate"),
12621 argnum, ip->insn_mo->name);
12622
deec1734
CD
12623 if (*s == '[')
12624 {
12625 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
12626 int max_el = (is_qh ? 3 : 7);
12627 s++;
12628 my_getExpression(&imm_expr, s);
12629 check_absolute_expr (ip, &imm_expr);
12630 s = expr_end;
12631 if (imm_expr.X_add_number > max_el)
20203fb9
NC
12632 as_bad (_("Bad element selector %ld"),
12633 (long) imm_expr.X_add_number);
deec1734
CD
12634 imm_expr.X_add_number &= max_el;
12635 ip->insn_opcode |= (imm_expr.X_add_number
12636 << (OP_SH_VSEL +
12637 (is_qh ? 2 : 1)));
01a3f561 12638 imm_expr.X_op = O_absent;
deec1734 12639 if (*s != ']')
20203fb9 12640 as_warn (_("Expecting ']' found '%s'"), s);
deec1734
CD
12641 else
12642 s++;
12643 }
12644 else
5c324c16
RS
12645 {
12646 if ((ip->insn_mo->membership & INSN_5400)
12647 && (strcmp (insn->name, "sll.ob") == 0
12648 || strcmp (insn->name, "srl.ob") == 0))
12649 as_bad (_("Operand %d of `%s' must be scalar"),
12650 argnum, ip->insn_mo->name);
12651
deec1734
CD
12652 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
12653 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
12654 << OP_SH_VSEL);
12655 else
12656 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
12657 OP_SH_VSEL);
12658 }
90ecf173 12659 /* Fall through. */
252b5132
RH
12660 case 'W':
12661 case 'T':
deec1734 12662 case 'Z':
df58fc94 12663 INSERT_OPERAND (mips_opts.micromips, FT, *ip, regno);
252b5132 12664 break;
df58fc94 12665
252b5132 12666 case 'R':
df58fc94 12667 INSERT_OPERAND (mips_opts.micromips, FR, *ip, regno);
252b5132
RH
12668 break;
12669 }
12670 lastregno = regno;
12671 continue;
12672 }
12673
252b5132
RH
12674 switch (*args++)
12675 {
12676 case 'V':
df58fc94 12677 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
252b5132 12678 continue;
df58fc94 12679
252b5132 12680 case 'W':
df58fc94 12681 INSERT_OPERAND (mips_opts.micromips, FT, *ip, lastregno);
252b5132
RH
12682 continue;
12683 }
12684 break;
12685
12686 case 'I':
12687 my_getExpression (&imm_expr, s);
12688 if (imm_expr.X_op != O_big
12689 && imm_expr.X_op != O_constant)
12690 insn_error = _("absolute expression required");
9ee2a2d4
MR
12691 if (HAVE_32BIT_GPRS)
12692 normalize_constant_expr (&imm_expr);
252b5132
RH
12693 s = expr_end;
12694 continue;
12695
12696 case 'A':
0cbbe1b8
RS
12697 my_getSmallExpression (&offset_expr, offset_reloc, s);
12698 if (offset_expr.X_op == O_register)
f2ae14a1 12699 {
0cbbe1b8
RS
12700 /* Assume that the offset has been elided and that what
12701 we saw was a base register. The match will fail later
12702 if that assumption turns out to be wrong. */
f2ae14a1
RS
12703 offset_expr.X_op = O_constant;
12704 offset_expr.X_add_number = 0;
12705 }
12706 else
12707 {
f2ae14a1
RS
12708 normalize_address_expr (&offset_expr);
12709 s = expr_end;
12710 }
252b5132
RH
12711 continue;
12712
12713 case 'F':
12714 case 'L':
12715 case 'f':
12716 case 'l':
12717 {
12718 int f64;
ca4e0257 12719 int using_gprs;
252b5132
RH
12720 char *save_in;
12721 char *err;
12722 unsigned char temp[8];
12723 int len;
12724 unsigned int length;
12725 segT seg;
12726 subsegT subseg;
12727 char *p;
12728
12729 /* These only appear as the last operand in an
12730 instruction, and every instruction that accepts
12731 them in any variant accepts them in all variants.
12732 This means we don't have to worry about backing out
12733 any changes if the instruction does not match.
12734
12735 The difference between them is the size of the
12736 floating point constant and where it goes. For 'F'
12737 and 'L' the constant is 64 bits; for 'f' and 'l' it
12738 is 32 bits. Where the constant is placed is based
12739 on how the MIPS assembler does things:
12740 F -- .rdata
12741 L -- .lit8
12742 f -- immediate value
12743 l -- .lit4
12744
12745 The .lit4 and .lit8 sections are only used if
12746 permitted by the -G argument.
12747
ca4e0257
RS
12748 The code below needs to know whether the target register
12749 is 32 or 64 bits wide. It relies on the fact 'f' and
12750 'F' are used with GPR-based instructions and 'l' and
12751 'L' are used with FPR-based instructions. */
252b5132
RH
12752
12753 f64 = *args == 'F' || *args == 'L';
ca4e0257 12754 using_gprs = *args == 'F' || *args == 'f';
252b5132
RH
12755
12756 save_in = input_line_pointer;
12757 input_line_pointer = s;
12758 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
12759 length = len;
12760 s = input_line_pointer;
12761 input_line_pointer = save_in;
12762 if (err != NULL && *err != '\0')
12763 {
12764 as_bad (_("Bad floating point constant: %s"), err);
12765 memset (temp, '\0', sizeof temp);
12766 length = f64 ? 8 : 4;
12767 }
12768
9c2799c2 12769 gas_assert (length == (unsigned) (f64 ? 8 : 4));
252b5132
RH
12770
12771 if (*args == 'f'
12772 || (*args == 'l'
3e722fb5 12773 && (g_switch_value < 4
252b5132
RH
12774 || (temp[0] == 0 && temp[1] == 0)
12775 || (temp[2] == 0 && temp[3] == 0))))
12776 {
12777 imm_expr.X_op = O_constant;
90ecf173 12778 if (!target_big_endian)
252b5132
RH
12779 imm_expr.X_add_number = bfd_getl32 (temp);
12780 else
12781 imm_expr.X_add_number = bfd_getb32 (temp);
12782 }
12783 else if (length > 4
90ecf173 12784 && !mips_disable_float_construction
ca4e0257
RS
12785 /* Constants can only be constructed in GPRs and
12786 copied to FPRs if the GPRs are at least as wide
12787 as the FPRs. Force the constant into memory if
12788 we are using 64-bit FPRs but the GPRs are only
12789 32 bits wide. */
12790 && (using_gprs
90ecf173 12791 || !(HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
252b5132
RH
12792 && ((temp[0] == 0 && temp[1] == 0)
12793 || (temp[2] == 0 && temp[3] == 0))
12794 && ((temp[4] == 0 && temp[5] == 0)
12795 || (temp[6] == 0 && temp[7] == 0)))
12796 {
ca4e0257 12797 /* The value is simple enough to load with a couple of
90ecf173
MR
12798 instructions. If using 32-bit registers, set
12799 imm_expr to the high order 32 bits and offset_expr to
12800 the low order 32 bits. Otherwise, set imm_expr to
12801 the entire 64 bit constant. */
ca4e0257 12802 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
252b5132
RH
12803 {
12804 imm_expr.X_op = O_constant;
12805 offset_expr.X_op = O_constant;
90ecf173 12806 if (!target_big_endian)
252b5132
RH
12807 {
12808 imm_expr.X_add_number = bfd_getl32 (temp + 4);
12809 offset_expr.X_add_number = bfd_getl32 (temp);
12810 }
12811 else
12812 {
12813 imm_expr.X_add_number = bfd_getb32 (temp);
12814 offset_expr.X_add_number = bfd_getb32 (temp + 4);
12815 }
12816 if (offset_expr.X_add_number == 0)
12817 offset_expr.X_op = O_absent;
12818 }
42429eac 12819 else
252b5132
RH
12820 {
12821 imm_expr.X_op = O_constant;
90ecf173 12822 if (!target_big_endian)
252b5132
RH
12823 imm_expr.X_add_number = bfd_getl64 (temp);
12824 else
12825 imm_expr.X_add_number = bfd_getb64 (temp);
12826 }
252b5132
RH
12827 }
12828 else
12829 {
12830 const char *newname;
12831 segT new_seg;
12832
12833 /* Switch to the right section. */
12834 seg = now_seg;
12835 subseg = now_subseg;
12836 switch (*args)
12837 {
12838 default: /* unused default case avoids warnings. */
12839 case 'L':
12840 newname = RDATA_SECTION_NAME;
3e722fb5 12841 if (g_switch_value >= 8)
252b5132
RH
12842 newname = ".lit8";
12843 break;
12844 case 'F':
3e722fb5 12845 newname = RDATA_SECTION_NAME;
252b5132
RH
12846 break;
12847 case 'l':
9c2799c2 12848 gas_assert (g_switch_value >= 4);
252b5132
RH
12849 newname = ".lit4";
12850 break;
12851 }
12852 new_seg = subseg_new (newname, (subsegT) 0);
f3ded42a
RS
12853 bfd_set_section_flags (stdoutput, new_seg,
12854 (SEC_ALLOC
12855 | SEC_LOAD
12856 | SEC_READONLY
12857 | SEC_DATA));
252b5132 12858 frag_align (*args == 'l' ? 2 : 3, 0, 0);
f3ded42a 12859 if (strncmp (TARGET_OS, "elf", 3) != 0)
252b5132
RH
12860 record_alignment (new_seg, 4);
12861 else
12862 record_alignment (new_seg, *args == 'l' ? 2 : 3);
12863 if (seg == now_seg)
12864 as_bad (_("Can't use floating point insn in this section"));
12865
df58fc94
RS
12866 /* Set the argument to the current address in the
12867 section. */
12868 offset_expr.X_op = O_symbol;
12869 offset_expr.X_add_symbol = symbol_temp_new_now ();
12870 offset_expr.X_add_number = 0;
12871
12872 /* Put the floating point number into the section. */
12873 p = frag_more ((int) length);
12874 memcpy (p, temp, length);
12875
12876 /* Switch back to the original section. */
12877 subseg_set (seg, subseg);
12878 }
12879 }
12880 continue;
12881
12882 case 'i': /* 16-bit unsigned immediate. */
12883 case 'j': /* 16-bit signed immediate. */
77bd4346
RS
12884 *offset_reloc = BFD_RELOC_LO16;
12885 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0)
df58fc94
RS
12886 {
12887 int more;
12888 offsetT minval, maxval;
12889
12890 more = (insn + 1 < past
12891 && strcmp (insn->name, insn[1].name) == 0);
12892
df58fc94
RS
12893 /* For compatibility with older assemblers, we accept
12894 0x8000-0xffff as signed 16-bit numbers when only
12895 signed numbers are allowed. */
12896 if (*args == 'i')
12897 minval = 0, maxval = 0xffff;
12898 else if (more)
12899 minval = -0x8000, maxval = 0x7fff;
12900 else
12901 minval = -0x8000, maxval = 0xffff;
12902
77bd4346
RS
12903 if (offset_expr.X_op != O_constant
12904 || offset_expr.X_add_number < minval
12905 || offset_expr.X_add_number > maxval)
df58fc94
RS
12906 {
12907 if (more)
12908 break;
77bd4346
RS
12909 if (offset_expr.X_op == O_constant
12910 || offset_expr.X_op == O_big)
df58fc94
RS
12911 as_bad (_("Expression out of range"));
12912 }
12913 }
12914 s = expr_end;
12915 continue;
12916
12917 case 'o': /* 16-bit offset. */
12918 offset_reloc[0] = BFD_RELOC_LO16;
12919 offset_reloc[1] = BFD_RELOC_UNUSED;
12920 offset_reloc[2] = BFD_RELOC_UNUSED;
12921
12922 /* Check whether there is only a single bracketed expression
12923 left. If so, it must be the base register and the
12924 constant must be zero. */
12925 if (*s == '(' && strchr (s + 1, '(') == 0)
12926 {
12927 offset_expr.X_op = O_constant;
12928 offset_expr.X_add_number = 0;
12929 continue;
12930 }
12931
12932 /* If this value won't fit into a 16 bit offset, then go
12933 find a macro that will generate the 32 bit offset
12934 code pattern. */
12935 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
12936 && (offset_expr.X_op != O_constant
12937 || offset_expr.X_add_number >= 0x8000
12938 || offset_expr.X_add_number < -0x8000))
12939 break;
12940
12941 s = expr_end;
12942 continue;
12943
12944 case 'p': /* PC-relative offset. */
12945 *offset_reloc = BFD_RELOC_16_PCREL_S2;
12946 my_getExpression (&offset_expr, s);
12947 s = expr_end;
12948 continue;
12949
12950 case 'u': /* Upper 16 bits. */
77bd4346
RS
12951 *offset_reloc = BFD_RELOC_LO16;
12952 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
12953 && offset_expr.X_op == O_constant
12954 && (offset_expr.X_add_number < 0
12955 || offset_expr.X_add_number >= 0x10000))
df58fc94 12956 as_bad (_("lui expression (%lu) not in range 0..65535"),
77bd4346 12957 (unsigned long) offset_expr.X_add_number);
df58fc94
RS
12958 s = expr_end;
12959 continue;
12960
12961 case 'a': /* 26-bit address. */
27c5c572 12962 jump:
df58fc94
RS
12963 *offset_reloc = BFD_RELOC_MIPS_JMP;
12964 my_getExpression (&offset_expr, s);
12965 s = expr_end;
12966 continue;
12967
12968 case 'N': /* 3-bit branch condition code. */
12969 case 'M': /* 3-bit compare condition code. */
12970 rtype = RTYPE_CCC;
12971 if (ip->insn_mo->pinfo & (FP_D | FP_S))
12972 rtype |= RTYPE_FCC;
12973 if (!reg_lookup (&s, rtype, &regno))
12974 break;
12975 if ((strcmp (str + strlen (str) - 3, ".ps") == 0
12976 || strcmp (str + strlen (str) - 5, "any2f") == 0
12977 || strcmp (str + strlen (str) - 5, "any2t") == 0)
12978 && (regno & 1) != 0)
12979 as_warn (_("Condition code register should be even for %s, "
12980 "was %d"),
12981 str, regno);
12982 if ((strcmp (str + strlen (str) - 5, "any4f") == 0
12983 || strcmp (str + strlen (str) - 5, "any4t") == 0)
12984 && (regno & 3) != 0)
12985 as_warn (_("Condition code register should be 0 or 4 for %s, "
12986 "was %d"),
12987 str, regno);
12988 if (*args == 'N')
12989 INSERT_OPERAND (mips_opts.micromips, BCC, *ip, regno);
12990 else
12991 INSERT_OPERAND (mips_opts.micromips, CCC, *ip, regno);
12992 continue;
12993
12994 case 'H':
12995 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
12996 s += 2;
12997 if (ISDIGIT (*s))
12998 {
12999 c = 0;
13000 do
13001 {
13002 c *= 10;
13003 c += *s - '0';
13004 ++s;
13005 }
13006 while (ISDIGIT (*s));
13007 }
13008 else
13009 c = 8; /* Invalid sel value. */
13010
13011 if (c > 7)
13012 as_bad (_("Invalid coprocessor sub-selection value (0-7)"));
13013 INSERT_OPERAND (mips_opts.micromips, SEL, *ip, c);
13014 continue;
13015
13016 case 'e':
13017 gas_assert (!mips_opts.micromips);
13018 /* Must be at least one digit. */
13019 my_getExpression (&imm_expr, s);
13020 check_absolute_expr (ip, &imm_expr);
13021
13022 if ((unsigned long) imm_expr.X_add_number
13023 > (unsigned long) OP_MASK_VECBYTE)
13024 {
13025 as_bad (_("bad byte vector index (%ld)"),
13026 (long) imm_expr.X_add_number);
13027 imm_expr.X_add_number = 0;
13028 }
13029
13030 INSERT_OPERAND (0, VECBYTE, *ip, imm_expr.X_add_number);
13031 imm_expr.X_op = O_absent;
13032 s = expr_end;
13033 continue;
13034
13035 case '%':
13036 gas_assert (!mips_opts.micromips);
13037 my_getExpression (&imm_expr, s);
13038 check_absolute_expr (ip, &imm_expr);
13039
13040 if ((unsigned long) imm_expr.X_add_number
13041 > (unsigned long) OP_MASK_VECALIGN)
13042 {
13043 as_bad (_("bad byte vector index (%ld)"),
13044 (long) imm_expr.X_add_number);
13045 imm_expr.X_add_number = 0;
13046 }
13047
13048 INSERT_OPERAND (0, VECALIGN, *ip, imm_expr.X_add_number);
13049 imm_expr.X_op = O_absent;
13050 s = expr_end;
13051 continue;
13052
13053 case 'm': /* Opcode extension character. */
13054 gas_assert (mips_opts.micromips);
13055 c = *++args;
13056 switch (c)
13057 {
13058 case 'r':
13059 if (strncmp (s, "$pc", 3) == 0)
13060 {
13061 s += 3;
13062 continue;
13063 }
13064 break;
13065
13066 case 'a':
13067 case 'b':
13068 case 'c':
13069 case 'd':
13070 case 'e':
13071 case 'f':
13072 case 'g':
13073 case 'h':
df58fc94
RS
13074 case 'j':
13075 case 'l':
13076 case 'm':
13077 case 'n':
13078 case 'p':
13079 case 'q':
13080 case 's':
13081 case 't':
13082 case 'x':
13083 case 'y':
13084 case 'z':
13085 s_reset = s;
13086 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
13087 if (regno == AT && mips_opts.at)
13088 {
13089 if (mips_opts.at == ATREG)
13090 as_warn (_("Used $at without \".set noat\""));
13091 else
13092 as_warn (_("Used $%u with \".set at=$%u\""),
13093 regno, mips_opts.at);
13094 }
13095 if (!ok)
13096 {
13097 if (c == 'c')
13098 {
13099 gas_assert (args[1] == ',');
13100 regno = lastregno;
13101 ++args;
13102 }
13103 else if (c == 't')
13104 {
13105 gas_assert (args[1] == ',');
13106 ++args;
13107 continue; /* Nothing to do. */
13108 }
13109 else
13110 break;
13111 }
13112
13113 if (c == 'j' && !strncmp (ip->insn_mo->name, "jalr", 4))
13114 {
13115 if (regno == lastregno)
13116 {
13117 insn_error
13118 = _("Source and destination must be different");
13119 continue;
13120 }
13121 if (regno == 31 && lastregno == 0xffffffff)
13122 {
13123 insn_error
13124 = _("A destination register must be supplied");
13125 continue;
13126 }
13127 }
13128
13129 if (*s == ' ')
13130 ++s;
13131 if (args[1] != *s)
13132 {
13133 if (c == 'e')
13134 {
13135 gas_assert (args[1] == ',');
13136 regno = lastregno;
13137 s = s_reset;
13138 ++args;
13139 }
13140 else if (c == 't')
13141 {
13142 gas_assert (args[1] == ',');
13143 s = s_reset;
13144 ++args;
13145 continue; /* Nothing to do. */
13146 }
13147 }
13148
13149 /* Make sure regno is the same as lastregno. */
13150 if (c == 't' && regno != lastregno)
13151 break;
13152
13153 /* Make sure regno is the same as destregno. */
13154 if (c == 'x' && regno != destregno)
13155 break;
13156
13157 /* We need to save regno, before regno maps to the
13158 microMIPS register encoding. */
13159 lastregno = regno;
13160
13161 if (c == 'f')
13162 destregno = regno;
13163
13164 switch (c)
13165 {
13166 case 'a':
13167 if (regno != GP)
13168 regno = ILLEGAL_REG;
13169 break;
13170
13171 case 'b':
13172 regno = mips32_to_micromips_reg_b_map[regno];
13173 break;
13174
13175 case 'c':
13176 regno = mips32_to_micromips_reg_c_map[regno];
13177 break;
13178
13179 case 'd':
13180 regno = mips32_to_micromips_reg_d_map[regno];
13181 break;
13182
13183 case 'e':
13184 regno = mips32_to_micromips_reg_e_map[regno];
13185 break;
13186
13187 case 'f':
13188 regno = mips32_to_micromips_reg_f_map[regno];
13189 break;
13190
13191 case 'g':
13192 regno = mips32_to_micromips_reg_g_map[regno];
13193 break;
13194
13195 case 'h':
e76ff5ab
RS
13196 s += strspn (s, " \t");
13197 if (*s != ',')
df58fc94 13198 {
e76ff5ab
RS
13199 regno = ILLEGAL_REG;
13200 break;
df58fc94 13201 }
e76ff5ab
RS
13202 ++s;
13203 s += strspn (s, " \t");
13204 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno2);
13205 if (!ok)
13206 {
13207 regno = ILLEGAL_REG;
13208 break;
13209 }
13210 if (regno2 == AT && mips_opts.at)
13211 {
13212 if (mips_opts.at == ATREG)
13213 as_warn (_("Used $at without \".set noat\""));
13214 else
13215 as_warn (_("Used $%u with \".set at=$%u\""),
13216 regno2, mips_opts.at);
13217 }
13218 regno = (mips_lookup_reg_pair
13219 (regno, regno2,
13220 micromips_to_32_reg_h_map1,
13221 micromips_to_32_reg_h_map2, 8));
df58fc94
RS
13222 break;
13223
13224 case 'l':
13225 regno = mips32_to_micromips_reg_l_map[regno];
13226 break;
13227
13228 case 'm':
13229 regno = mips32_to_micromips_reg_m_map[regno];
13230 break;
13231
13232 case 'n':
13233 regno = mips32_to_micromips_reg_n_map[regno];
13234 break;
13235
13236 case 'q':
13237 regno = mips32_to_micromips_reg_q_map[regno];
13238 break;
13239
13240 case 's':
13241 if (regno != SP)
13242 regno = ILLEGAL_REG;
13243 break;
13244
13245 case 'y':
13246 if (regno != 31)
13247 regno = ILLEGAL_REG;
13248 break;
13249
13250 case 'z':
13251 if (regno != ZERO)
13252 regno = ILLEGAL_REG;
13253 break;
13254
13255 case 'j': /* Do nothing. */
13256 case 'p':
13257 case 't':
13258 case 'x':
13259 break;
13260
13261 default:
b37df7c4 13262 abort ();
df58fc94
RS
13263 }
13264
13265 if (regno == ILLEGAL_REG)
13266 break;
13267
13268 switch (c)
13269 {
13270 case 'b':
13271 INSERT_OPERAND (1, MB, *ip, regno);
13272 break;
13273
13274 case 'c':
13275 INSERT_OPERAND (1, MC, *ip, regno);
13276 break;
13277
13278 case 'd':
13279 INSERT_OPERAND (1, MD, *ip, regno);
13280 break;
13281
13282 case 'e':
13283 INSERT_OPERAND (1, ME, *ip, regno);
13284 break;
13285
13286 case 'f':
13287 INSERT_OPERAND (1, MF, *ip, regno);
13288 break;
13289
13290 case 'g':
13291 INSERT_OPERAND (1, MG, *ip, regno);
13292 break;
13293
13294 case 'h':
13295 INSERT_OPERAND (1, MH, *ip, regno);
13296 break;
13297
df58fc94
RS
13298 case 'j':
13299 INSERT_OPERAND (1, MJ, *ip, regno);
13300 break;
13301
13302 case 'l':
13303 INSERT_OPERAND (1, ML, *ip, regno);
13304 break;
13305
13306 case 'm':
13307 INSERT_OPERAND (1, MM, *ip, regno);
13308 break;
13309
13310 case 'n':
13311 INSERT_OPERAND (1, MN, *ip, regno);
13312 break;
13313
13314 case 'p':
13315 INSERT_OPERAND (1, MP, *ip, regno);
13316 break;
13317
13318 case 'q':
13319 INSERT_OPERAND (1, MQ, *ip, regno);
13320 break;
13321
13322 case 'a': /* Do nothing. */
13323 case 's': /* Do nothing. */
13324 case 't': /* Do nothing. */
13325 case 'x': /* Do nothing. */
13326 case 'y': /* Do nothing. */
13327 case 'z': /* Do nothing. */
13328 break;
13329
13330 default:
b37df7c4 13331 abort ();
df58fc94
RS
13332 }
13333 continue;
13334
13335 case 'A':
13336 {
13337 bfd_reloc_code_real_type r[3];
13338 expressionS ep;
13339 int imm;
13340
13341 /* Check whether there is only a single bracketed
13342 expression left. If so, it must be the base register
13343 and the constant must be zero. */
13344 if (*s == '(' && strchr (s + 1, '(') == 0)
13345 {
13346 INSERT_OPERAND (1, IMMA, *ip, 0);
13347 continue;
13348 }
13349
13350 if (my_getSmallExpression (&ep, r, s) > 0
13351 || !expr_const_in_range (&ep, -64, 64, 2))
13352 break;
13353
13354 imm = ep.X_add_number >> 2;
13355 INSERT_OPERAND (1, IMMA, *ip, imm);
13356 }
13357 s = expr_end;
13358 continue;
13359
13360 case 'B':
13361 {
13362 bfd_reloc_code_real_type r[3];
13363 expressionS ep;
13364 int imm;
13365
13366 if (my_getSmallExpression (&ep, r, s) > 0
13367 || ep.X_op != O_constant)
13368 break;
13369
13370 for (imm = 0; imm < 8; imm++)
13371 if (micromips_imm_b_map[imm] == ep.X_add_number)
13372 break;
13373 if (imm >= 8)
13374 break;
13375
13376 INSERT_OPERAND (1, IMMB, *ip, imm);
13377 }
13378 s = expr_end;
13379 continue;
13380
13381 case 'C':
13382 {
13383 bfd_reloc_code_real_type r[3];
13384 expressionS ep;
13385 int imm;
13386
13387 if (my_getSmallExpression (&ep, r, s) > 0
13388 || ep.X_op != O_constant)
13389 break;
13390
13391 for (imm = 0; imm < 16; imm++)
13392 if (micromips_imm_c_map[imm] == ep.X_add_number)
13393 break;
13394 if (imm >= 16)
13395 break;
13396
13397 INSERT_OPERAND (1, IMMC, *ip, imm);
13398 }
13399 s = expr_end;
13400 continue;
13401
13402 case 'D': /* pc relative offset */
13403 case 'E': /* pc relative offset */
13404 my_getExpression (&offset_expr, s);
13405 if (offset_expr.X_op == O_register)
13406 break;
13407
40209cad
MR
13408 if (!forced_insn_length)
13409 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
13410 else if (c == 'D')
13411 *offset_reloc = BFD_RELOC_MICROMIPS_10_PCREL_S1;
13412 else
13413 *offset_reloc = BFD_RELOC_MICROMIPS_7_PCREL_S1;
df58fc94
RS
13414 s = expr_end;
13415 continue;
13416
13417 case 'F':
13418 {
13419 bfd_reloc_code_real_type r[3];
13420 expressionS ep;
13421 int imm;
13422
13423 if (my_getSmallExpression (&ep, r, s) > 0
13424 || !expr_const_in_range (&ep, 0, 16, 0))
13425 break;
13426
13427 imm = ep.X_add_number;
13428 INSERT_OPERAND (1, IMMF, *ip, imm);
13429 }
13430 s = expr_end;
13431 continue;
13432
13433 case 'G':
13434 {
13435 bfd_reloc_code_real_type r[3];
13436 expressionS ep;
13437 int imm;
13438
13439 /* Check whether there is only a single bracketed
13440 expression left. If so, it must be the base register
13441 and the constant must be zero. */
13442 if (*s == '(' && strchr (s + 1, '(') == 0)
13443 {
13444 INSERT_OPERAND (1, IMMG, *ip, 0);
13445 continue;
13446 }
13447
13448 if (my_getSmallExpression (&ep, r, s) > 0
13449 || !expr_const_in_range (&ep, -1, 15, 0))
13450 break;
13451
13452 imm = ep.X_add_number & 15;
13453 INSERT_OPERAND (1, IMMG, *ip, imm);
13454 }
13455 s = expr_end;
13456 continue;
13457
13458 case 'H':
13459 {
13460 bfd_reloc_code_real_type r[3];
13461 expressionS ep;
13462 int imm;
13463
13464 /* Check whether there is only a single bracketed
13465 expression left. If so, it must be the base register
13466 and the constant must be zero. */
13467 if (*s == '(' && strchr (s + 1, '(') == 0)
13468 {
13469 INSERT_OPERAND (1, IMMH, *ip, 0);
13470 continue;
13471 }
13472
13473 if (my_getSmallExpression (&ep, r, s) > 0
13474 || !expr_const_in_range (&ep, 0, 16, 1))
13475 break;
13476
13477 imm = ep.X_add_number >> 1;
13478 INSERT_OPERAND (1, IMMH, *ip, imm);
13479 }
13480 s = expr_end;
13481 continue;
13482
13483 case 'I':
13484 {
13485 bfd_reloc_code_real_type r[3];
13486 expressionS ep;
13487 int imm;
13488
13489 if (my_getSmallExpression (&ep, r, s) > 0
13490 || !expr_const_in_range (&ep, -1, 127, 0))
13491 break;
13492
13493 imm = ep.X_add_number & 127;
13494 INSERT_OPERAND (1, IMMI, *ip, imm);
13495 }
13496 s = expr_end;
13497 continue;
13498
13499 case 'J':
13500 {
13501 bfd_reloc_code_real_type r[3];
13502 expressionS ep;
13503 int imm;
13504
13505 /* Check whether there is only a single bracketed
13506 expression left. If so, it must be the base register
13507 and the constant must be zero. */
13508 if (*s == '(' && strchr (s + 1, '(') == 0)
13509 {
13510 INSERT_OPERAND (1, IMMJ, *ip, 0);
13511 continue;
13512 }
13513
13514 if (my_getSmallExpression (&ep, r, s) > 0
13515 || !expr_const_in_range (&ep, 0, 16, 2))
13516 break;
13517
13518 imm = ep.X_add_number >> 2;
13519 INSERT_OPERAND (1, IMMJ, *ip, imm);
13520 }
13521 s = expr_end;
13522 continue;
13523
13524 case 'L':
13525 {
13526 bfd_reloc_code_real_type r[3];
13527 expressionS ep;
13528 int imm;
13529
13530 /* Check whether there is only a single bracketed
13531 expression left. If so, it must be the base register
13532 and the constant must be zero. */
13533 if (*s == '(' && strchr (s + 1, '(') == 0)
13534 {
13535 INSERT_OPERAND (1, IMML, *ip, 0);
13536 continue;
13537 }
13538
13539 if (my_getSmallExpression (&ep, r, s) > 0
13540 || !expr_const_in_range (&ep, 0, 16, 0))
13541 break;
13542
13543 imm = ep.X_add_number;
13544 INSERT_OPERAND (1, IMML, *ip, imm);
13545 }
13546 s = expr_end;
13547 continue;
13548
13549 case 'M':
13550 {
13551 bfd_reloc_code_real_type r[3];
13552 expressionS ep;
13553 int imm;
13554
13555 if (my_getSmallExpression (&ep, r, s) > 0
13556 || !expr_const_in_range (&ep, 1, 9, 0))
13557 break;
13558
13559 imm = ep.X_add_number & 7;
13560 INSERT_OPERAND (1, IMMM, *ip, imm);
13561 }
13562 s = expr_end;
13563 continue;
13564
13565 case 'N': /* Register list for lwm and swm. */
13566 {
13567 /* A comma-separated list of registers and/or
13568 dash-separated contiguous ranges including
13569 both ra and a set of one or more registers
13570 starting at s0 up to s3 which have to be
13571 consecutive, e.g.:
13572
13573 s0, ra
13574 s0, s1, ra, s2, s3
13575 s0-s2, ra
13576
13577 and any permutations of these. */
13578 unsigned int reglist;
13579 int imm;
13580
13581 if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, &reglist))
13582 break;
13583
13584 if ((reglist & 0xfff1ffff) != 0x80010000)
13585 break;
13586
13587 reglist = (reglist >> 17) & 7;
13588 reglist += 1;
13589 if ((reglist & -reglist) != reglist)
13590 break;
252b5132 13591
df58fc94
RS
13592 imm = ffs (reglist) - 1;
13593 INSERT_OPERAND (1, IMMN, *ip, imm);
13594 }
13595 continue;
252b5132 13596
df58fc94
RS
13597 case 'O': /* sdbbp 4-bit code. */
13598 {
13599 bfd_reloc_code_real_type r[3];
13600 expressionS ep;
13601 int imm;
13602
13603 if (my_getSmallExpression (&ep, r, s) > 0
13604 || !expr_const_in_range (&ep, 0, 16, 0))
13605 break;
13606
13607 imm = ep.X_add_number;
13608 INSERT_OPERAND (1, IMMO, *ip, imm);
252b5132 13609 }
df58fc94
RS
13610 s = expr_end;
13611 continue;
252b5132 13612
df58fc94
RS
13613 case 'P':
13614 {
13615 bfd_reloc_code_real_type r[3];
13616 expressionS ep;
13617 int imm;
5e0116d5 13618
df58fc94
RS
13619 if (my_getSmallExpression (&ep, r, s) > 0
13620 || !expr_const_in_range (&ep, 0, 32, 2))
13621 break;
5e0116d5 13622
df58fc94
RS
13623 imm = ep.X_add_number >> 2;
13624 INSERT_OPERAND (1, IMMP, *ip, imm);
13625 }
13626 s = expr_end;
13627 continue;
5e0116d5 13628
df58fc94
RS
13629 case 'Q':
13630 {
13631 bfd_reloc_code_real_type r[3];
13632 expressionS ep;
13633 int imm;
5e0116d5 13634
df58fc94
RS
13635 if (my_getSmallExpression (&ep, r, s) > 0
13636 || !expr_const_in_range (&ep, -0x400000, 0x400000, 2))
13637 break;
252b5132 13638
df58fc94
RS
13639 imm = ep.X_add_number >> 2;
13640 INSERT_OPERAND (1, IMMQ, *ip, imm);
13641 }
13642 s = expr_end;
13643 continue;
4614d845 13644
df58fc94
RS
13645 case 'U':
13646 {
13647 bfd_reloc_code_real_type r[3];
13648 expressionS ep;
13649 int imm;
13650
13651 /* Check whether there is only a single bracketed
13652 expression left. If so, it must be the base register
13653 and the constant must be zero. */
13654 if (*s == '(' && strchr (s + 1, '(') == 0)
13655 {
13656 INSERT_OPERAND (1, IMMU, *ip, 0);
13657 continue;
13658 }
13659
13660 if (my_getSmallExpression (&ep, r, s) > 0
13661 || !expr_const_in_range (&ep, 0, 32, 2))
13662 break;
13663
13664 imm = ep.X_add_number >> 2;
13665 INSERT_OPERAND (1, IMMU, *ip, imm);
13666 }
13667 s = expr_end;
5e0116d5 13668 continue;
252b5132 13669
df58fc94
RS
13670 case 'W':
13671 {
13672 bfd_reloc_code_real_type r[3];
13673 expressionS ep;
13674 int imm;
252b5132 13675
df58fc94
RS
13676 if (my_getSmallExpression (&ep, r, s) > 0
13677 || !expr_const_in_range (&ep, 0, 64, 2))
13678 break;
252b5132 13679
df58fc94
RS
13680 imm = ep.X_add_number >> 2;
13681 INSERT_OPERAND (1, IMMW, *ip, imm);
13682 }
13683 s = expr_end;
13684 continue;
252b5132 13685
df58fc94
RS
13686 case 'X':
13687 {
13688 bfd_reloc_code_real_type r[3];
13689 expressionS ep;
13690 int imm;
252b5132 13691
df58fc94
RS
13692 if (my_getSmallExpression (&ep, r, s) > 0
13693 || !expr_const_in_range (&ep, -8, 8, 0))
13694 break;
252b5132 13695
df58fc94
RS
13696 imm = ep.X_add_number;
13697 INSERT_OPERAND (1, IMMX, *ip, imm);
13698 }
13699 s = expr_end;
13700 continue;
252b5132 13701
df58fc94
RS
13702 case 'Y':
13703 {
13704 bfd_reloc_code_real_type r[3];
13705 expressionS ep;
13706 int imm;
156c2f8b 13707
df58fc94
RS
13708 if (my_getSmallExpression (&ep, r, s) > 0
13709 || expr_const_in_range (&ep, -2, 2, 2)
13710 || !expr_const_in_range (&ep, -258, 258, 2))
13711 break;
156c2f8b 13712
df58fc94
RS
13713 imm = ep.X_add_number >> 2;
13714 imm = ((imm >> 1) & ~0xff) | (imm & 0xff);
13715 INSERT_OPERAND (1, IMMY, *ip, imm);
13716 }
13717 s = expr_end;
13718 continue;
60b63b72 13719
df58fc94
RS
13720 case 'Z':
13721 {
13722 bfd_reloc_code_real_type r[3];
13723 expressionS ep;
13724
13725 if (my_getSmallExpression (&ep, r, s) > 0
13726 || !expr_const_in_range (&ep, 0, 1, 0))
13727 break;
13728 }
13729 s = expr_end;
13730 continue;
13731
13732 default:
13733 as_bad (_("Internal error: bad microMIPS opcode "
13734 "(unknown extension operand type `m%c'): %s %s"),
13735 *args, insn->name, insn->args);
13736 /* Further processing is fruitless. */
13737 return;
60b63b72 13738 }
df58fc94 13739 break;
60b63b72 13740
df58fc94
RS
13741 case 'n': /* Register list for 32-bit lwm and swm. */
13742 gas_assert (mips_opts.micromips);
13743 {
13744 /* A comma-separated list of registers and/or
13745 dash-separated contiguous ranges including
13746 at least one of ra and a set of one or more
13747 registers starting at s0 up to s7 and then
13748 s8 which have to be consecutive, e.g.:
13749
13750 ra
13751 s0
13752 ra, s0, s1, s2
13753 s0-s8
13754 s0-s5, ra
13755
13756 and any permutations of these. */
13757 unsigned int reglist;
13758 int imm;
13759 int ra;
13760
13761 if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, &reglist))
13762 break;
13763
13764 if ((reglist & 0x3f00ffff) != 0)
13765 break;
13766
13767 ra = (reglist >> 27) & 0x10;
13768 reglist = ((reglist >> 22) & 0x100) | ((reglist >> 16) & 0xff);
13769 reglist += 1;
13770 if ((reglist & -reglist) != reglist)
13771 break;
13772
13773 imm = (ffs (reglist) - 1) | ra;
13774 INSERT_OPERAND (1, RT, *ip, imm);
13775 imm_expr.X_op = O_absent;
13776 }
60b63b72
RS
13777 continue;
13778
df58fc94
RS
13779 case '|': /* 4-bit trap code. */
13780 gas_assert (mips_opts.micromips);
60b63b72
RS
13781 my_getExpression (&imm_expr, s);
13782 check_absolute_expr (ip, &imm_expr);
60b63b72 13783 if ((unsigned long) imm_expr.X_add_number
df58fc94
RS
13784 > MICROMIPSOP_MASK_TRAP)
13785 as_bad (_("Trap code (%lu) for %s not in 0..15 range"),
13786 (unsigned long) imm_expr.X_add_number,
13787 ip->insn_mo->name);
13788 INSERT_OPERAND (1, TRAP, *ip, imm_expr.X_add_number);
60b63b72
RS
13789 imm_expr.X_op = O_absent;
13790 s = expr_end;
13791 continue;
13792
252b5132 13793 default:
f71d0d44 13794 as_bad (_("Bad char = '%c'\n"), *args);
b37df7c4 13795 abort ();
252b5132
RH
13796 }
13797 break;
13798 }
13799 /* Args don't match. */
df58fc94
RS
13800 s = argsStart;
13801 insn_error = _("Illegal operands");
13802 if (insn + 1 < past && !strcmp (insn->name, insn[1].name))
252b5132
RH
13803 {
13804 ++insn;
252b5132
RH
13805 continue;
13806 }
df58fc94
RS
13807 else if (wrong_delay_slot_insns && need_delay_slot_ok)
13808 {
13809 gas_assert (firstinsn);
13810 need_delay_slot_ok = FALSE;
13811 past = insn + 1;
13812 insn = firstinsn;
13813 continue;
13814 }
252b5132
RH
13815 return;
13816 }
13817}
13818
0499d65b
TS
13819#define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
13820
77bd4346
RS
13821/* As for mips_ip, but used when assembling MIPS16 code.
13822 Also set forced_insn_length to the resulting instruction size in
13823 bytes if the user explicitly requested a small or extended instruction. */
252b5132
RH
13824
13825static void
17a2f251 13826mips16_ip (char *str, struct mips_cl_insn *ip)
252b5132
RH
13827{
13828 char *s;
13829 const char *args;
13830 struct mips_opcode *insn;
13831 char *argsstart;
13832 unsigned int regno;
13833 unsigned int lastregno = 0;
13834 char *s_reset;
d6f16593 13835 size_t i;
252b5132
RH
13836
13837 insn_error = NULL;
13838
df58fc94 13839 forced_insn_length = 0;
252b5132 13840
3882b010 13841 for (s = str; ISLOWER (*s); ++s)
252b5132
RH
13842 ;
13843 switch (*s)
13844 {
13845 case '\0':
13846 break;
13847
13848 case ' ':
13849 *s++ = '\0';
13850 break;
13851
13852 case '.':
13853 if (s[1] == 't' && s[2] == ' ')
13854 {
13855 *s = '\0';
df58fc94 13856 forced_insn_length = 2;
252b5132
RH
13857 s += 3;
13858 break;
13859 }
13860 else if (s[1] == 'e' && s[2] == ' ')
13861 {
13862 *s = '\0';
df58fc94 13863 forced_insn_length = 4;
252b5132
RH
13864 s += 3;
13865 break;
13866 }
13867 /* Fall through. */
13868 default:
13869 insn_error = _("unknown opcode");
13870 return;
13871 }
13872
df58fc94
RS
13873 if (mips_opts.noautoextend && !forced_insn_length)
13874 forced_insn_length = 2;
252b5132
RH
13875
13876 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
13877 {
13878 insn_error = _("unrecognized opcode");
13879 return;
13880 }
13881
13882 argsstart = s;
13883 for (;;)
13884 {
9b3f89ee 13885 bfd_boolean ok;
77bd4346 13886 char relax_char;
9b3f89ee 13887
9c2799c2 13888 gas_assert (strcmp (insn->name, str) == 0);
252b5132 13889
037b32b9 13890 ok = is_opcode_valid_16 (insn);
9b3f89ee
TS
13891 if (! ok)
13892 {
13893 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
13894 && strcmp (insn->name, insn[1].name) == 0)
13895 {
13896 ++insn;
13897 continue;
13898 }
13899 else
13900 {
13901 if (!insn_error)
13902 {
13903 static char buf[100];
13904 sprintf (buf,
7bd942df 13905 _("Opcode not supported on this processor: %s (%s)"),
9b3f89ee
TS
13906 mips_cpu_info_from_arch (mips_opts.arch)->name,
13907 mips_cpu_info_from_isa (mips_opts.isa)->name);
13908 insn_error = buf;
13909 }
13910 return;
13911 }
13912 }
13913
1e915849 13914 create_insn (ip, insn);
252b5132 13915 imm_expr.X_op = O_absent;
5f74bc13 13916 imm2_expr.X_op = O_absent;
252b5132 13917 offset_expr.X_op = O_absent;
f6688943
TS
13918 offset_reloc[0] = BFD_RELOC_UNUSED;
13919 offset_reloc[1] = BFD_RELOC_UNUSED;
13920 offset_reloc[2] = BFD_RELOC_UNUSED;
77bd4346 13921 relax_char = 0;
252b5132
RH
13922 for (args = insn->args; 1; ++args)
13923 {
13924 int c;
13925
13926 if (*s == ' ')
13927 ++s;
13928
13929 /* In this switch statement we call break if we did not find
13930 a match, continue if we did find a match, or return if we
13931 are done. */
13932
13933 c = *args;
13934 switch (c)
13935 {
13936 case '\0':
13937 if (*s == '\0')
13938 {
b886a2ab
RS
13939 offsetT value;
13940
252b5132 13941 /* Stuff the immediate value in now, if we can. */
77bd4346
RS
13942 if (insn->pinfo == INSN_MACRO)
13943 {
13944 gas_assert (relax_char == 0);
13945 gas_assert (*offset_reloc == BFD_RELOC_UNUSED);
13946 }
13947 else if (relax_char
13948 && offset_expr.X_op == O_constant
13949 && calculate_reloc (*offset_reloc,
13950 offset_expr.X_add_number,
13951 &value))
252b5132 13952 {
77bd4346
RS
13953 mips16_immed (NULL, 0, relax_char, *offset_reloc, value,
13954 forced_insn_length, &ip->insn_opcode);
13955 offset_expr.X_op = O_absent;
43c0598f 13956 *offset_reloc = BFD_RELOC_UNUSED;
252b5132 13957 }
77bd4346
RS
13958 else if (relax_char && *offset_reloc != BFD_RELOC_UNUSED)
13959 {
13960 if (forced_insn_length == 2)
13961 as_bad (_("invalid unextended operand value"));
13962 forced_insn_length = 4;
13963 ip->insn_opcode |= MIPS16_EXTEND;
13964 }
13965 else if (relax_char)
13966 *offset_reloc = (int) BFD_RELOC_UNUSED + relax_char;
252b5132
RH
13967
13968 return;
13969 }
13970 break;
13971
13972 case ',':
13973 if (*s++ == c)
13974 continue;
13975 s--;
13976 switch (*++args)
13977 {
13978 case 'v':
bf12938e 13979 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132
RH
13980 continue;
13981 case 'w':
bf12938e 13982 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
13983 continue;
13984 }
13985 break;
13986
13987 case '(':
13988 case ')':
13989 if (*s++ == c)
13990 continue;
13991 break;
13992
13993 case 'v':
13994 case 'w':
13995 if (s[0] != '$')
13996 {
13997 if (c == 'v')
bf12938e 13998 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132 13999 else
bf12938e 14000 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
14001 ++args;
14002 continue;
14003 }
14004 /* Fall through. */
14005 case 'x':
14006 case 'y':
14007 case 'z':
14008 case 'Z':
14009 case '0':
14010 case 'S':
14011 case 'R':
14012 case 'X':
14013 case 'Y':
707bfff6
TS
14014 s_reset = s;
14015 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
252b5132 14016 {
707bfff6 14017 if (c == 'v' || c == 'w')
85b51719 14018 {
707bfff6 14019 if (c == 'v')
a9e24354 14020 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
707bfff6 14021 else
a9e24354 14022 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
707bfff6
TS
14023 ++args;
14024 continue;
85b51719 14025 }
707bfff6 14026 break;
252b5132
RH
14027 }
14028
14029 if (*s == ' ')
14030 ++s;
14031 if (args[1] != *s)
14032 {
14033 if (c == 'v' || c == 'w')
14034 {
14035 regno = mips16_to_32_reg_map[lastregno];
14036 s = s_reset;
f9419b05 14037 ++args;
252b5132
RH
14038 }
14039 }
14040
14041 switch (c)
14042 {
14043 case 'x':
14044 case 'y':
14045 case 'z':
14046 case 'v':
14047 case 'w':
14048 case 'Z':
14049 regno = mips32_to_16_reg_map[regno];
14050 break;
14051
14052 case '0':
14053 if (regno != 0)
14054 regno = ILLEGAL_REG;
14055 break;
14056
14057 case 'S':
14058 if (regno != SP)
14059 regno = ILLEGAL_REG;
14060 break;
14061
14062 case 'R':
14063 if (regno != RA)
14064 regno = ILLEGAL_REG;
14065 break;
14066
14067 case 'X':
14068 case 'Y':
741fe287
MR
14069 if (regno == AT && mips_opts.at)
14070 {
14071 if (mips_opts.at == ATREG)
14072 as_warn (_("used $at without \".set noat\""));
14073 else
14074 as_warn (_("used $%u with \".set at=$%u\""),
14075 regno, mips_opts.at);
14076 }
252b5132
RH
14077 break;
14078
14079 default:
b37df7c4 14080 abort ();
252b5132
RH
14081 }
14082
14083 if (regno == ILLEGAL_REG)
14084 break;
14085
14086 switch (c)
14087 {
14088 case 'x':
14089 case 'v':
bf12938e 14090 MIPS16_INSERT_OPERAND (RX, *ip, regno);
252b5132
RH
14091 break;
14092 case 'y':
14093 case 'w':
bf12938e 14094 MIPS16_INSERT_OPERAND (RY, *ip, regno);
252b5132
RH
14095 break;
14096 case 'z':
bf12938e 14097 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
252b5132
RH
14098 break;
14099 case 'Z':
bf12938e 14100 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
252b5132
RH
14101 case '0':
14102 case 'S':
14103 case 'R':
14104 break;
14105 case 'X':
bf12938e 14106 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
252b5132
RH
14107 break;
14108 case 'Y':
14109 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
bf12938e 14110 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
252b5132
RH
14111 break;
14112 default:
b37df7c4 14113 abort ();
252b5132
RH
14114 }
14115
14116 lastregno = regno;
14117 continue;
14118
14119 case 'P':
14120 if (strncmp (s, "$pc", 3) == 0)
14121 {
14122 s += 3;
14123 continue;
14124 }
14125 break;
14126
252b5132
RH
14127 case '5':
14128 case 'H':
14129 case 'W':
14130 case 'D':
14131 case 'j':
252b5132
RH
14132 case 'V':
14133 case 'C':
14134 case 'U':
14135 case 'k':
14136 case 'K':
77bd4346 14137 i = my_getSmallExpression (&offset_expr, offset_reloc, s);
d6f16593 14138 if (i > 0)
252b5132 14139 {
77bd4346 14140 relax_char = c;
d6f16593
MR
14141 s = expr_end;
14142 continue;
252b5132 14143 }
77bd4346 14144 *offset_reloc = BFD_RELOC_UNUSED;
d6f16593
MR
14145 /* Fall through. */
14146 case '<':
14147 case '>':
14148 case '[':
14149 case ']':
14150 case '4':
14151 case '8':
77bd4346
RS
14152 my_getExpression (&offset_expr, s);
14153 if (offset_expr.X_op == O_register)
252b5132
RH
14154 {
14155 /* What we thought was an expression turned out to
14156 be a register. */
14157
14158 if (s[0] == '(' && args[1] == '(')
14159 {
14160 /* It looks like the expression was omitted
14161 before a register indirection, which means
14162 that the expression is implicitly zero. We
77bd4346 14163 still set up offset_expr, so that we handle
252b5132 14164 explicit extensions correctly. */
77bd4346
RS
14165 offset_expr.X_op = O_constant;
14166 offset_expr.X_add_number = 0;
14167 relax_char = c;
252b5132
RH
14168 continue;
14169 }
14170
14171 break;
14172 }
14173
14174 /* We need to relax this instruction. */
77bd4346 14175 relax_char = c;
252b5132
RH
14176 s = expr_end;
14177 continue;
14178
14179 case 'p':
14180 case 'q':
14181 case 'A':
14182 case 'B':
14183 case 'E':
14184 /* We use offset_reloc rather than imm_reloc for the PC
14185 relative operands. This lets macros with both
14186 immediate and address operands work correctly. */
14187 my_getExpression (&offset_expr, s);
14188
14189 if (offset_expr.X_op == O_register)
14190 break;
14191
14192 /* We need to relax this instruction. */
77bd4346 14193 relax_char = c;
252b5132
RH
14194 s = expr_end;
14195 continue;
14196
14197 case '6': /* break code */
14198 my_getExpression (&imm_expr, s);
14199 check_absolute_expr (ip, &imm_expr);
14200 if ((unsigned long) imm_expr.X_add_number > 63)
bf12938e
RS
14201 as_warn (_("Invalid value for `%s' (%lu)"),
14202 ip->insn_mo->name,
14203 (unsigned long) imm_expr.X_add_number);
14204 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
252b5132
RH
14205 imm_expr.X_op = O_absent;
14206 s = expr_end;
14207 continue;
14208
cc537e56
RS
14209 case 'I':
14210 my_getExpression (&imm_expr, s);
14211 if (imm_expr.X_op != O_big
14212 && imm_expr.X_op != O_constant)
14213 insn_error = _("absolute expression required");
14214 if (HAVE_32BIT_GPRS)
14215 normalize_constant_expr (&imm_expr);
14216 s = expr_end;
14217 continue;
14218
252b5132 14219 case 'a': /* 26 bit address */
27c5c572 14220 case 'i':
252b5132
RH
14221 my_getExpression (&offset_expr, s);
14222 s = expr_end;
f6688943 14223 *offset_reloc = BFD_RELOC_MIPS16_JMP;
252b5132
RH
14224 ip->insn_opcode <<= 16;
14225 continue;
14226
14227 case 'l': /* register list for entry macro */
14228 case 'L': /* register list for exit macro */
14229 {
14230 int mask;
14231
14232 if (c == 'l')
14233 mask = 0;
14234 else
14235 mask = 7 << 3;
14236 while (*s != '\0')
14237 {
707bfff6 14238 unsigned int freg, reg1, reg2;
252b5132
RH
14239
14240 while (*s == ' ' || *s == ',')
14241 ++s;
707bfff6 14242 if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
252b5132 14243 freg = 0;
707bfff6
TS
14244 else if (reg_lookup (&s, RTYPE_FPU, &reg1))
14245 freg = 1;
252b5132
RH
14246 else
14247 {
707bfff6
TS
14248 as_bad (_("can't parse register list"));
14249 break;
252b5132
RH
14250 }
14251 if (*s == ' ')
14252 ++s;
14253 if (*s != '-')
14254 reg2 = reg1;
14255 else
14256 {
14257 ++s;
707bfff6
TS
14258 if (!reg_lookup (&s, freg ? RTYPE_FPU
14259 : (RTYPE_GP | RTYPE_NUM), &reg2))
252b5132 14260 {
707bfff6
TS
14261 as_bad (_("invalid register list"));
14262 break;
252b5132
RH
14263 }
14264 }
14265 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
14266 {
14267 mask &= ~ (7 << 3);
14268 mask |= 5 << 3;
14269 }
14270 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
14271 {
14272 mask &= ~ (7 << 3);
14273 mask |= 6 << 3;
14274 }
14275 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
14276 mask |= (reg2 - 3) << 3;
14277 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
14278 mask |= (reg2 - 15) << 1;
f9419b05 14279 else if (reg1 == RA && reg2 == RA)
252b5132
RH
14280 mask |= 1;
14281 else
14282 {
14283 as_bad (_("invalid register list"));
14284 break;
14285 }
14286 }
14287 /* The mask is filled in in the opcode table for the
14288 benefit of the disassembler. We remove it before
14289 applying the actual mask. */
14290 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
14291 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
14292 }
14293 continue;
14294
0499d65b
TS
14295 case 'm': /* Register list for save insn. */
14296 case 'M': /* Register list for restore insn. */
14297 {
5c04167a 14298 int opcode = ip->insn_opcode;
0499d65b 14299 int framesz = 0, seen_framesz = 0;
91d6fa6a 14300 int nargs = 0, statics = 0, sregs = 0;
0499d65b
TS
14301
14302 while (*s != '\0')
14303 {
14304 unsigned int reg1, reg2;
14305
14306 SKIP_SPACE_TABS (s);
14307 while (*s == ',')
14308 ++s;
14309 SKIP_SPACE_TABS (s);
14310
14311 my_getExpression (&imm_expr, s);
14312 if (imm_expr.X_op == O_constant)
14313 {
14314 /* Handle the frame size. */
14315 if (seen_framesz)
14316 {
14317 as_bad (_("more than one frame size in list"));
14318 break;
14319 }
14320 seen_framesz = 1;
14321 framesz = imm_expr.X_add_number;
14322 imm_expr.X_op = O_absent;
14323 s = expr_end;
14324 continue;
14325 }
14326
707bfff6 14327 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
0499d65b
TS
14328 {
14329 as_bad (_("can't parse register list"));
14330 break;
14331 }
0499d65b 14332
707bfff6
TS
14333 while (*s == ' ')
14334 ++s;
14335
0499d65b
TS
14336 if (*s != '-')
14337 reg2 = reg1;
14338 else
14339 {
14340 ++s;
707bfff6
TS
14341 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg2)
14342 || reg2 < reg1)
0499d65b
TS
14343 {
14344 as_bad (_("can't parse register list"));
14345 break;
14346 }
0499d65b
TS
14347 }
14348
14349 while (reg1 <= reg2)
14350 {
14351 if (reg1 >= 4 && reg1 <= 7)
14352 {
3a93f742 14353 if (!seen_framesz)
0499d65b 14354 /* args $a0-$a3 */
91d6fa6a 14355 nargs |= 1 << (reg1 - 4);
0499d65b
TS
14356 else
14357 /* statics $a0-$a3 */
14358 statics |= 1 << (reg1 - 4);
14359 }
14360 else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
14361 {
14362 /* $s0-$s8 */
14363 sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
14364 }
14365 else if (reg1 == 31)
14366 {
14367 /* Add $ra to insn. */
14368 opcode |= 0x40;
14369 }
14370 else
14371 {
14372 as_bad (_("unexpected register in list"));
14373 break;
14374 }
14375 if (++reg1 == 24)
14376 reg1 = 30;
14377 }
14378 }
14379
14380 /* Encode args/statics combination. */
91d6fa6a 14381 if (nargs & statics)
0499d65b 14382 as_bad (_("arg/static registers overlap"));
91d6fa6a 14383 else if (nargs == 0xf)
0499d65b
TS
14384 /* All $a0-$a3 are args. */
14385 opcode |= MIPS16_ALL_ARGS << 16;
14386 else if (statics == 0xf)
14387 /* All $a0-$a3 are statics. */
14388 opcode |= MIPS16_ALL_STATICS << 16;
14389 else
14390 {
14391 int narg = 0, nstat = 0;
14392
14393 /* Count arg registers. */
91d6fa6a 14394 while (nargs & 0x1)
0499d65b 14395 {
91d6fa6a 14396 nargs >>= 1;
0499d65b
TS
14397 narg++;
14398 }
91d6fa6a 14399 if (nargs != 0)
0499d65b
TS
14400 as_bad (_("invalid arg register list"));
14401
14402 /* Count static registers. */
14403 while (statics & 0x8)
14404 {
14405 statics = (statics << 1) & 0xf;
14406 nstat++;
14407 }
14408 if (statics != 0)
14409 as_bad (_("invalid static register list"));
14410
14411 /* Encode args/statics. */
14412 opcode |= ((narg << 2) | nstat) << 16;
14413 }
14414
14415 /* Encode $s0/$s1. */
14416 if (sregs & (1 << 0)) /* $s0 */
14417 opcode |= 0x20;
14418 if (sregs & (1 << 1)) /* $s1 */
14419 opcode |= 0x10;
14420 sregs >>= 2;
14421
14422 if (sregs != 0)
14423 {
14424 /* Count regs $s2-$s8. */
14425 int nsreg = 0;
14426 while (sregs & 1)
14427 {
14428 sregs >>= 1;
14429 nsreg++;
14430 }
14431 if (sregs != 0)
14432 as_bad (_("invalid static register list"));
14433 /* Encode $s2-$s8. */
14434 opcode |= nsreg << 24;
14435 }
14436
14437 /* Encode frame size. */
14438 if (!seen_framesz)
14439 as_bad (_("missing frame size"));
14440 else if ((framesz & 7) != 0 || framesz < 0
14441 || framesz > 0xff * 8)
14442 as_bad (_("invalid frame size"));
14443 else if (framesz != 128 || (opcode >> 16) != 0)
14444 {
14445 framesz /= 8;
14446 opcode |= (((framesz & 0xf0) << 16)
14447 | (framesz & 0x0f));
14448 }
14449
14450 /* Finally build the instruction. */
14451 if ((opcode >> 16) != 0 || framesz == 0)
5c04167a
RS
14452 opcode |= MIPS16_EXTEND;
14453 ip->insn_opcode = opcode;
0499d65b
TS
14454 }
14455 continue;
14456
252b5132
RH
14457 case 'e': /* extend code */
14458 my_getExpression (&imm_expr, s);
14459 check_absolute_expr (ip, &imm_expr);
14460 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
14461 {
14462 as_warn (_("Invalid value for `%s' (%lu)"),
14463 ip->insn_mo->name,
14464 (unsigned long) imm_expr.X_add_number);
14465 imm_expr.X_add_number &= 0x7ff;
14466 }
14467 ip->insn_opcode |= imm_expr.X_add_number;
14468 imm_expr.X_op = O_absent;
14469 s = expr_end;
14470 continue;
14471
14472 default:
b37df7c4 14473 abort ();
252b5132
RH
14474 }
14475 break;
14476 }
14477
14478 /* Args don't match. */
14479 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
14480 strcmp (insn->name, insn[1].name) == 0)
14481 {
14482 ++insn;
14483 s = argsstart;
14484 continue;
14485 }
14486
14487 insn_error = _("illegal operands");
14488
14489 return;
14490 }
14491}
14492
14493/* This structure holds information we know about a mips16 immediate
14494 argument type. */
14495
e972090a
NC
14496struct mips16_immed_operand
14497{
252b5132
RH
14498 /* The type code used in the argument string in the opcode table. */
14499 int type;
14500 /* The number of bits in the short form of the opcode. */
14501 int nbits;
14502 /* The number of bits in the extended form of the opcode. */
14503 int extbits;
14504 /* The amount by which the short form is shifted when it is used;
14505 for example, the sw instruction has a shift count of 2. */
14506 int shift;
14507 /* The amount by which the short form is shifted when it is stored
14508 into the instruction code. */
14509 int op_shift;
14510 /* Non-zero if the short form is unsigned. */
14511 int unsp;
14512 /* Non-zero if the extended form is unsigned. */
14513 int extu;
14514 /* Non-zero if the value is PC relative. */
14515 int pcrel;
14516};
14517
14518/* The mips16 immediate operand types. */
14519
14520static const struct mips16_immed_operand mips16_immed_operands[] =
14521{
14522 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
14523 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
14524 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
14525 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
14526 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
14527 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
14528 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
14529 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
14530 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
14531 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
14532 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
14533 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
14534 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
14535 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
14536 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
14537 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
14538 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
14539 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
14540 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
14541 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
14542 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
14543};
14544
14545#define MIPS16_NUM_IMMED \
14546 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
14547
b886a2ab
RS
14548/* Marshal immediate value VAL for an extended MIPS16 instruction.
14549 NBITS is the number of significant bits in VAL. */
14550
14551static unsigned long
14552mips16_immed_extend (offsetT val, unsigned int nbits)
14553{
14554 int extval;
14555 if (nbits == 16)
14556 {
14557 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
14558 val &= 0x1f;
14559 }
14560 else if (nbits == 15)
14561 {
14562 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
14563 val &= 0xf;
14564 }
14565 else
14566 {
14567 extval = ((val & 0x1f) << 6) | (val & 0x20);
14568 val = 0;
14569 }
14570 return (extval << 16) | val;
14571}
14572
5c04167a
RS
14573/* Install immediate value VAL into MIPS16 instruction *INSN,
14574 extending it if necessary. The instruction in *INSN may
14575 already be extended.
14576
43c0598f
RS
14577 RELOC is the relocation that produced VAL, or BFD_RELOC_UNUSED
14578 if none. In the former case, VAL is a 16-bit number with no
14579 defined signedness.
14580
14581 TYPE is the type of the immediate field. USER_INSN_LENGTH
14582 is the length that the user requested, or 0 if none. */
252b5132
RH
14583
14584static void
43c0598f
RS
14585mips16_immed (char *file, unsigned int line, int type,
14586 bfd_reloc_code_real_type reloc, offsetT val,
5c04167a 14587 unsigned int user_insn_length, unsigned long *insn)
252b5132 14588{
3994f87e 14589 const struct mips16_immed_operand *op;
252b5132 14590 int mintiny, maxtiny;
252b5132
RH
14591
14592 op = mips16_immed_operands;
14593 while (op->type != type)
14594 {
14595 ++op;
9c2799c2 14596 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
252b5132
RH
14597 }
14598
14599 if (op->unsp)
14600 {
14601 if (type == '<' || type == '>' || type == '[' || type == ']')
14602 {
14603 mintiny = 1;
14604 maxtiny = 1 << op->nbits;
14605 }
14606 else
14607 {
14608 mintiny = 0;
14609 maxtiny = (1 << op->nbits) - 1;
14610 }
43c0598f
RS
14611 if (reloc != BFD_RELOC_UNUSED)
14612 val &= 0xffff;
252b5132
RH
14613 }
14614 else
14615 {
14616 mintiny = - (1 << (op->nbits - 1));
14617 maxtiny = (1 << (op->nbits - 1)) - 1;
43c0598f
RS
14618 if (reloc != BFD_RELOC_UNUSED)
14619 val = SEXT_16BIT (val);
252b5132
RH
14620 }
14621
14622 /* Branch offsets have an implicit 0 in the lowest bit. */
14623 if (type == 'p' || type == 'q')
14624 val /= 2;
14625
14626 if ((val & ((1 << op->shift) - 1)) != 0
14627 || val < (mintiny << op->shift)
14628 || val > (maxtiny << op->shift))
5c04167a
RS
14629 {
14630 /* We need an extended instruction. */
14631 if (user_insn_length == 2)
14632 as_bad_where (file, line, _("invalid unextended operand value"));
14633 else
14634 *insn |= MIPS16_EXTEND;
14635 }
14636 else if (user_insn_length == 4)
14637 {
14638 /* The operand doesn't force an unextended instruction to be extended.
14639 Warn if the user wanted an extended instruction anyway. */
14640 *insn |= MIPS16_EXTEND;
14641 as_warn_where (file, line,
14642 _("extended operand requested but not required"));
14643 }
252b5132 14644
5c04167a 14645 if (mips16_opcode_length (*insn) == 2)
252b5132
RH
14646 {
14647 int insnval;
14648
252b5132
RH
14649 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
14650 insnval <<= op->op_shift;
14651 *insn |= insnval;
14652 }
14653 else
14654 {
14655 long minext, maxext;
252b5132 14656
43c0598f 14657 if (reloc == BFD_RELOC_UNUSED)
252b5132 14658 {
43c0598f
RS
14659 if (op->extu)
14660 {
14661 minext = 0;
14662 maxext = (1 << op->extbits) - 1;
14663 }
14664 else
14665 {
14666 minext = - (1 << (op->extbits - 1));
14667 maxext = (1 << (op->extbits - 1)) - 1;
14668 }
14669 if (val < minext || val > maxext)
14670 as_bad_where (file, line,
14671 _("operand value out of range for instruction"));
252b5132 14672 }
252b5132 14673
b886a2ab 14674 *insn |= mips16_immed_extend (val, op->extbits);
252b5132
RH
14675 }
14676}
14677\f
d6f16593 14678struct percent_op_match
ad8d3bb3 14679{
5e0116d5
RS
14680 const char *str;
14681 bfd_reloc_code_real_type reloc;
d6f16593
MR
14682};
14683
14684static const struct percent_op_match mips_percent_op[] =
ad8d3bb3 14685{
5e0116d5 14686 {"%lo", BFD_RELOC_LO16},
5e0116d5
RS
14687 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
14688 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
14689 {"%call16", BFD_RELOC_MIPS_CALL16},
14690 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
14691 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
14692 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
14693 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
14694 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
14695 {"%got", BFD_RELOC_MIPS_GOT16},
14696 {"%gp_rel", BFD_RELOC_GPREL16},
14697 {"%half", BFD_RELOC_16},
14698 {"%highest", BFD_RELOC_MIPS_HIGHEST},
14699 {"%higher", BFD_RELOC_MIPS_HIGHER},
14700 {"%neg", BFD_RELOC_MIPS_SUB},
3f98094e
DJ
14701 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
14702 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
14703 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
14704 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
14705 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
14706 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
14707 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
5e0116d5 14708 {"%hi", BFD_RELOC_HI16_S}
ad8d3bb3
TS
14709};
14710
d6f16593
MR
14711static const struct percent_op_match mips16_percent_op[] =
14712{
14713 {"%lo", BFD_RELOC_MIPS16_LO16},
14714 {"%gprel", BFD_RELOC_MIPS16_GPREL},
738e5348
RS
14715 {"%got", BFD_RELOC_MIPS16_GOT16},
14716 {"%call16", BFD_RELOC_MIPS16_CALL16},
d0f13682
CLT
14717 {"%hi", BFD_RELOC_MIPS16_HI16_S},
14718 {"%tlsgd", BFD_RELOC_MIPS16_TLS_GD},
14719 {"%tlsldm", BFD_RELOC_MIPS16_TLS_LDM},
14720 {"%dtprel_hi", BFD_RELOC_MIPS16_TLS_DTPREL_HI16},
14721 {"%dtprel_lo", BFD_RELOC_MIPS16_TLS_DTPREL_LO16},
14722 {"%tprel_hi", BFD_RELOC_MIPS16_TLS_TPREL_HI16},
14723 {"%tprel_lo", BFD_RELOC_MIPS16_TLS_TPREL_LO16},
14724 {"%gottprel", BFD_RELOC_MIPS16_TLS_GOTTPREL}
d6f16593
MR
14725};
14726
252b5132 14727
5e0116d5
RS
14728/* Return true if *STR points to a relocation operator. When returning true,
14729 move *STR over the operator and store its relocation code in *RELOC.
14730 Leave both *STR and *RELOC alone when returning false. */
14731
14732static bfd_boolean
17a2f251 14733parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
252b5132 14734{
d6f16593
MR
14735 const struct percent_op_match *percent_op;
14736 size_t limit, i;
14737
14738 if (mips_opts.mips16)
14739 {
14740 percent_op = mips16_percent_op;
14741 limit = ARRAY_SIZE (mips16_percent_op);
14742 }
14743 else
14744 {
14745 percent_op = mips_percent_op;
14746 limit = ARRAY_SIZE (mips_percent_op);
14747 }
76b3015f 14748
d6f16593 14749 for (i = 0; i < limit; i++)
5e0116d5 14750 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
394f9b3a 14751 {
3f98094e
DJ
14752 int len = strlen (percent_op[i].str);
14753
14754 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
14755 continue;
14756
5e0116d5
RS
14757 *str += strlen (percent_op[i].str);
14758 *reloc = percent_op[i].reloc;
394f9b3a 14759
5e0116d5
RS
14760 /* Check whether the output BFD supports this relocation.
14761 If not, issue an error and fall back on something safe. */
14762 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
394f9b3a 14763 {
20203fb9 14764 as_bad (_("relocation %s isn't supported by the current ABI"),
5e0116d5 14765 percent_op[i].str);
01a3f561 14766 *reloc = BFD_RELOC_UNUSED;
394f9b3a 14767 }
5e0116d5 14768 return TRUE;
394f9b3a 14769 }
5e0116d5 14770 return FALSE;
394f9b3a 14771}
ad8d3bb3 14772
ad8d3bb3 14773
5e0116d5
RS
14774/* Parse string STR as a 16-bit relocatable operand. Store the
14775 expression in *EP and the relocations in the array starting
14776 at RELOC. Return the number of relocation operators used.
ad8d3bb3 14777
01a3f561 14778 On exit, EXPR_END points to the first character after the expression. */
ad8d3bb3 14779
5e0116d5 14780static size_t
17a2f251
TS
14781my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
14782 char *str)
ad8d3bb3 14783{
5e0116d5
RS
14784 bfd_reloc_code_real_type reversed_reloc[3];
14785 size_t reloc_index, i;
09b8f35a
RS
14786 int crux_depth, str_depth;
14787 char *crux;
5e0116d5
RS
14788
14789 /* Search for the start of the main expression, recoding relocations
09b8f35a
RS
14790 in REVERSED_RELOC. End the loop with CRUX pointing to the start
14791 of the main expression and with CRUX_DEPTH containing the number
14792 of open brackets at that point. */
14793 reloc_index = -1;
14794 str_depth = 0;
14795 do
fb1b3232 14796 {
09b8f35a
RS
14797 reloc_index++;
14798 crux = str;
14799 crux_depth = str_depth;
14800
14801 /* Skip over whitespace and brackets, keeping count of the number
14802 of brackets. */
14803 while (*str == ' ' || *str == '\t' || *str == '(')
14804 if (*str++ == '(')
14805 str_depth++;
5e0116d5 14806 }
09b8f35a
RS
14807 while (*str == '%'
14808 && reloc_index < (HAVE_NEWABI ? 3 : 1)
14809 && parse_relocation (&str, &reversed_reloc[reloc_index]));
ad8d3bb3 14810
09b8f35a 14811 my_getExpression (ep, crux);
5e0116d5 14812 str = expr_end;
394f9b3a 14813
5e0116d5 14814 /* Match every open bracket. */
09b8f35a 14815 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
5e0116d5 14816 if (*str++ == ')')
09b8f35a 14817 crux_depth--;
394f9b3a 14818
09b8f35a 14819 if (crux_depth > 0)
20203fb9 14820 as_bad (_("unclosed '('"));
394f9b3a 14821
5e0116d5 14822 expr_end = str;
252b5132 14823
01a3f561 14824 if (reloc_index != 0)
64bdfcaf
RS
14825 {
14826 prev_reloc_op_frag = frag_now;
14827 for (i = 0; i < reloc_index; i++)
14828 reloc[i] = reversed_reloc[reloc_index - 1 - i];
14829 }
fb1b3232 14830
5e0116d5 14831 return reloc_index;
252b5132
RH
14832}
14833
14834static void
17a2f251 14835my_getExpression (expressionS *ep, char *str)
252b5132
RH
14836{
14837 char *save_in;
14838
14839 save_in = input_line_pointer;
14840 input_line_pointer = str;
14841 expression (ep);
14842 expr_end = input_line_pointer;
14843 input_line_pointer = save_in;
252b5132
RH
14844}
14845
252b5132 14846char *
17a2f251 14847md_atof (int type, char *litP, int *sizeP)
252b5132 14848{
499ac353 14849 return ieee_md_atof (type, litP, sizeP, target_big_endian);
252b5132
RH
14850}
14851
14852void
17a2f251 14853md_number_to_chars (char *buf, valueT val, int n)
252b5132
RH
14854{
14855 if (target_big_endian)
14856 number_to_chars_bigendian (buf, val, n);
14857 else
14858 number_to_chars_littleendian (buf, val, n);
14859}
14860\f
e013f690
TS
14861static int support_64bit_objects(void)
14862{
14863 const char **list, **l;
aa3d8fdf 14864 int yes;
e013f690
TS
14865
14866 list = bfd_target_list ();
14867 for (l = list; *l != NULL; l++)
aeffff67
RS
14868 if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
14869 || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
e013f690 14870 break;
aa3d8fdf 14871 yes = (*l != NULL);
e013f690 14872 free (list);
aa3d8fdf 14873 return yes;
e013f690
TS
14874}
14875
316f5878
RS
14876/* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
14877 NEW_VALUE. Warn if another value was already specified. Note:
14878 we have to defer parsing the -march and -mtune arguments in order
14879 to handle 'from-abi' correctly, since the ABI might be specified
14880 in a later argument. */
14881
14882static void
17a2f251 14883mips_set_option_string (const char **string_ptr, const char *new_value)
316f5878
RS
14884{
14885 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
14886 as_warn (_("A different %s was already specified, is now %s"),
14887 string_ptr == &mips_arch_string ? "-march" : "-mtune",
14888 new_value);
14889
14890 *string_ptr = new_value;
14891}
14892
252b5132 14893int
17a2f251 14894md_parse_option (int c, char *arg)
252b5132 14895{
c6278170
RS
14896 unsigned int i;
14897
14898 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
14899 if (c == mips_ases[i].option_on || c == mips_ases[i].option_off)
14900 {
14901 file_ase_explicit |= mips_set_ase (&mips_ases[i],
14902 c == mips_ases[i].option_on);
14903 return 1;
14904 }
14905
252b5132
RH
14906 switch (c)
14907 {
119d663a
NC
14908 case OPTION_CONSTRUCT_FLOATS:
14909 mips_disable_float_construction = 0;
14910 break;
bdaaa2e1 14911
119d663a
NC
14912 case OPTION_NO_CONSTRUCT_FLOATS:
14913 mips_disable_float_construction = 1;
14914 break;
bdaaa2e1 14915
252b5132
RH
14916 case OPTION_TRAP:
14917 mips_trap = 1;
14918 break;
14919
14920 case OPTION_BREAK:
14921 mips_trap = 0;
14922 break;
14923
14924 case OPTION_EB:
14925 target_big_endian = 1;
14926 break;
14927
14928 case OPTION_EL:
14929 target_big_endian = 0;
14930 break;
14931
14932 case 'O':
4ffff32f
TS
14933 if (arg == NULL)
14934 mips_optimize = 1;
14935 else if (arg[0] == '0')
14936 mips_optimize = 0;
14937 else if (arg[0] == '1')
252b5132
RH
14938 mips_optimize = 1;
14939 else
14940 mips_optimize = 2;
14941 break;
14942
14943 case 'g':
14944 if (arg == NULL)
14945 mips_debug = 2;
14946 else
14947 mips_debug = atoi (arg);
252b5132
RH
14948 break;
14949
14950 case OPTION_MIPS1:
316f5878 14951 file_mips_isa = ISA_MIPS1;
252b5132
RH
14952 break;
14953
14954 case OPTION_MIPS2:
316f5878 14955 file_mips_isa = ISA_MIPS2;
252b5132
RH
14956 break;
14957
14958 case OPTION_MIPS3:
316f5878 14959 file_mips_isa = ISA_MIPS3;
252b5132
RH
14960 break;
14961
14962 case OPTION_MIPS4:
316f5878 14963 file_mips_isa = ISA_MIPS4;
e7af610e
NC
14964 break;
14965
84ea6cf2 14966 case OPTION_MIPS5:
316f5878 14967 file_mips_isa = ISA_MIPS5;
84ea6cf2
NC
14968 break;
14969
e7af610e 14970 case OPTION_MIPS32:
316f5878 14971 file_mips_isa = ISA_MIPS32;
252b5132
RH
14972 break;
14973
af7ee8bf
CD
14974 case OPTION_MIPS32R2:
14975 file_mips_isa = ISA_MIPS32R2;
14976 break;
14977
5f74bc13
CD
14978 case OPTION_MIPS64R2:
14979 file_mips_isa = ISA_MIPS64R2;
14980 break;
14981
84ea6cf2 14982 case OPTION_MIPS64:
316f5878 14983 file_mips_isa = ISA_MIPS64;
84ea6cf2
NC
14984 break;
14985
ec68c924 14986 case OPTION_MTUNE:
316f5878
RS
14987 mips_set_option_string (&mips_tune_string, arg);
14988 break;
ec68c924 14989
316f5878
RS
14990 case OPTION_MARCH:
14991 mips_set_option_string (&mips_arch_string, arg);
252b5132
RH
14992 break;
14993
14994 case OPTION_M4650:
316f5878
RS
14995 mips_set_option_string (&mips_arch_string, "4650");
14996 mips_set_option_string (&mips_tune_string, "4650");
252b5132
RH
14997 break;
14998
14999 case OPTION_NO_M4650:
15000 break;
15001
15002 case OPTION_M4010:
316f5878
RS
15003 mips_set_option_string (&mips_arch_string, "4010");
15004 mips_set_option_string (&mips_tune_string, "4010");
252b5132
RH
15005 break;
15006
15007 case OPTION_NO_M4010:
15008 break;
15009
15010 case OPTION_M4100:
316f5878
RS
15011 mips_set_option_string (&mips_arch_string, "4100");
15012 mips_set_option_string (&mips_tune_string, "4100");
252b5132
RH
15013 break;
15014
15015 case OPTION_NO_M4100:
15016 break;
15017
252b5132 15018 case OPTION_M3900:
316f5878
RS
15019 mips_set_option_string (&mips_arch_string, "3900");
15020 mips_set_option_string (&mips_tune_string, "3900");
252b5132 15021 break;
bdaaa2e1 15022
252b5132
RH
15023 case OPTION_NO_M3900:
15024 break;
15025
df58fc94
RS
15026 case OPTION_MICROMIPS:
15027 if (mips_opts.mips16 == 1)
15028 {
15029 as_bad (_("-mmicromips cannot be used with -mips16"));
15030 return 0;
15031 }
15032 mips_opts.micromips = 1;
15033 mips_no_prev_insn ();
15034 break;
15035
15036 case OPTION_NO_MICROMIPS:
15037 mips_opts.micromips = 0;
15038 mips_no_prev_insn ();
15039 break;
15040
252b5132 15041 case OPTION_MIPS16:
df58fc94
RS
15042 if (mips_opts.micromips == 1)
15043 {
15044 as_bad (_("-mips16 cannot be used with -micromips"));
15045 return 0;
15046 }
252b5132 15047 mips_opts.mips16 = 1;
7d10b47d 15048 mips_no_prev_insn ();
252b5132
RH
15049 break;
15050
15051 case OPTION_NO_MIPS16:
15052 mips_opts.mips16 = 0;
7d10b47d 15053 mips_no_prev_insn ();
252b5132
RH
15054 break;
15055
6a32d874
CM
15056 case OPTION_FIX_24K:
15057 mips_fix_24k = 1;
15058 break;
15059
15060 case OPTION_NO_FIX_24K:
15061 mips_fix_24k = 0;
15062 break;
15063
c67a084a
NC
15064 case OPTION_FIX_LOONGSON2F_JUMP:
15065 mips_fix_loongson2f_jump = TRUE;
15066 break;
15067
15068 case OPTION_NO_FIX_LOONGSON2F_JUMP:
15069 mips_fix_loongson2f_jump = FALSE;
15070 break;
15071
15072 case OPTION_FIX_LOONGSON2F_NOP:
15073 mips_fix_loongson2f_nop = TRUE;
15074 break;
15075
15076 case OPTION_NO_FIX_LOONGSON2F_NOP:
15077 mips_fix_loongson2f_nop = FALSE;
15078 break;
15079
d766e8ec
RS
15080 case OPTION_FIX_VR4120:
15081 mips_fix_vr4120 = 1;
60b63b72
RS
15082 break;
15083
d766e8ec
RS
15084 case OPTION_NO_FIX_VR4120:
15085 mips_fix_vr4120 = 0;
60b63b72
RS
15086 break;
15087
7d8e00cf
RS
15088 case OPTION_FIX_VR4130:
15089 mips_fix_vr4130 = 1;
15090 break;
15091
15092 case OPTION_NO_FIX_VR4130:
15093 mips_fix_vr4130 = 0;
15094 break;
15095
d954098f
DD
15096 case OPTION_FIX_CN63XXP1:
15097 mips_fix_cn63xxp1 = TRUE;
15098 break;
15099
15100 case OPTION_NO_FIX_CN63XXP1:
15101 mips_fix_cn63xxp1 = FALSE;
15102 break;
15103
4a6a3df4
AO
15104 case OPTION_RELAX_BRANCH:
15105 mips_relax_branch = 1;
15106 break;
15107
15108 case OPTION_NO_RELAX_BRANCH:
15109 mips_relax_branch = 0;
15110 break;
15111
833794fc
MR
15112 case OPTION_INSN32:
15113 mips_opts.insn32 = TRUE;
15114 break;
15115
15116 case OPTION_NO_INSN32:
15117 mips_opts.insn32 = FALSE;
15118 break;
15119
aa6975fb
ILT
15120 case OPTION_MSHARED:
15121 mips_in_shared = TRUE;
15122 break;
15123
15124 case OPTION_MNO_SHARED:
15125 mips_in_shared = FALSE;
15126 break;
15127
aed1a261
RS
15128 case OPTION_MSYM32:
15129 mips_opts.sym32 = TRUE;
15130 break;
15131
15132 case OPTION_MNO_SYM32:
15133 mips_opts.sym32 = FALSE;
15134 break;
15135
252b5132
RH
15136 /* When generating ELF code, we permit -KPIC and -call_shared to
15137 select SVR4_PIC, and -non_shared to select no PIC. This is
15138 intended to be compatible with Irix 5. */
15139 case OPTION_CALL_SHARED:
252b5132 15140 mips_pic = SVR4_PIC;
143d77c5 15141 mips_abicalls = TRUE;
252b5132
RH
15142 break;
15143
861fb55a 15144 case OPTION_CALL_NONPIC:
861fb55a
DJ
15145 mips_pic = NO_PIC;
15146 mips_abicalls = TRUE;
15147 break;
15148
252b5132 15149 case OPTION_NON_SHARED:
252b5132 15150 mips_pic = NO_PIC;
143d77c5 15151 mips_abicalls = FALSE;
252b5132
RH
15152 break;
15153
44075ae2
TS
15154 /* The -xgot option tells the assembler to use 32 bit offsets
15155 when accessing the got in SVR4_PIC mode. It is for Irix
252b5132
RH
15156 compatibility. */
15157 case OPTION_XGOT:
15158 mips_big_got = 1;
15159 break;
15160
15161 case 'G':
6caf9ef4
TS
15162 g_switch_value = atoi (arg);
15163 g_switch_seen = 1;
252b5132
RH
15164 break;
15165
34ba82a8
TS
15166 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
15167 and -mabi=64. */
252b5132 15168 case OPTION_32:
f3ded42a 15169 mips_abi = O32_ABI;
252b5132
RH
15170 break;
15171
e013f690 15172 case OPTION_N32:
316f5878 15173 mips_abi = N32_ABI;
e013f690 15174 break;
252b5132 15175
e013f690 15176 case OPTION_64:
316f5878 15177 mips_abi = N64_ABI;
f43abd2b 15178 if (!support_64bit_objects())
e013f690 15179 as_fatal (_("No compiled in support for 64 bit object file format"));
252b5132
RH
15180 break;
15181
c97ef257 15182 case OPTION_GP32:
a325df1d 15183 file_mips_gp32 = 1;
c97ef257
AH
15184 break;
15185
15186 case OPTION_GP64:
a325df1d 15187 file_mips_gp32 = 0;
c97ef257 15188 break;
252b5132 15189
ca4e0257 15190 case OPTION_FP32:
a325df1d 15191 file_mips_fp32 = 1;
316f5878
RS
15192 break;
15193
15194 case OPTION_FP64:
15195 file_mips_fp32 = 0;
ca4e0257
RS
15196 break;
15197
037b32b9
AN
15198 case OPTION_SINGLE_FLOAT:
15199 file_mips_single_float = 1;
15200 break;
15201
15202 case OPTION_DOUBLE_FLOAT:
15203 file_mips_single_float = 0;
15204 break;
15205
15206 case OPTION_SOFT_FLOAT:
15207 file_mips_soft_float = 1;
15208 break;
15209
15210 case OPTION_HARD_FLOAT:
15211 file_mips_soft_float = 0;
15212 break;
15213
252b5132 15214 case OPTION_MABI:
e013f690 15215 if (strcmp (arg, "32") == 0)
316f5878 15216 mips_abi = O32_ABI;
e013f690 15217 else if (strcmp (arg, "o64") == 0)
316f5878 15218 mips_abi = O64_ABI;
e013f690 15219 else if (strcmp (arg, "n32") == 0)
316f5878 15220 mips_abi = N32_ABI;
e013f690
TS
15221 else if (strcmp (arg, "64") == 0)
15222 {
316f5878 15223 mips_abi = N64_ABI;
e013f690
TS
15224 if (! support_64bit_objects())
15225 as_fatal (_("No compiled in support for 64 bit object file "
15226 "format"));
15227 }
15228 else if (strcmp (arg, "eabi") == 0)
316f5878 15229 mips_abi = EABI_ABI;
e013f690 15230 else
da0e507f
TS
15231 {
15232 as_fatal (_("invalid abi -mabi=%s"), arg);
15233 return 0;
15234 }
252b5132
RH
15235 break;
15236
6b76fefe 15237 case OPTION_M7000_HILO_FIX:
b34976b6 15238 mips_7000_hilo_fix = TRUE;
6b76fefe
CM
15239 break;
15240
9ee72ff1 15241 case OPTION_MNO_7000_HILO_FIX:
b34976b6 15242 mips_7000_hilo_fix = FALSE;
6b76fefe
CM
15243 break;
15244
ecb4347a 15245 case OPTION_MDEBUG:
b34976b6 15246 mips_flag_mdebug = TRUE;
ecb4347a
DJ
15247 break;
15248
15249 case OPTION_NO_MDEBUG:
b34976b6 15250 mips_flag_mdebug = FALSE;
ecb4347a 15251 break;
dcd410fe
RO
15252
15253 case OPTION_PDR:
15254 mips_flag_pdr = TRUE;
15255 break;
15256
15257 case OPTION_NO_PDR:
15258 mips_flag_pdr = FALSE;
15259 break;
0a44bf69
RS
15260
15261 case OPTION_MVXWORKS_PIC:
15262 mips_pic = VXWORKS_PIC;
15263 break;
ecb4347a 15264
ba92f887
MR
15265 case OPTION_NAN:
15266 if (strcmp (arg, "2008") == 0)
15267 mips_flag_nan2008 = TRUE;
15268 else if (strcmp (arg, "legacy") == 0)
15269 mips_flag_nan2008 = FALSE;
15270 else
15271 {
15272 as_fatal (_("Invalid NaN setting -mnan=%s"), arg);
15273 return 0;
15274 }
15275 break;
15276
252b5132
RH
15277 default:
15278 return 0;
15279 }
15280
c67a084a
NC
15281 mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
15282
252b5132
RH
15283 return 1;
15284}
316f5878
RS
15285\f
15286/* Set up globals to generate code for the ISA or processor
15287 described by INFO. */
252b5132 15288
252b5132 15289static void
17a2f251 15290mips_set_architecture (const struct mips_cpu_info *info)
252b5132 15291{
316f5878 15292 if (info != 0)
252b5132 15293 {
fef14a42
TS
15294 file_mips_arch = info->cpu;
15295 mips_opts.arch = info->cpu;
316f5878 15296 mips_opts.isa = info->isa;
252b5132 15297 }
252b5132
RH
15298}
15299
252b5132 15300
316f5878 15301/* Likewise for tuning. */
252b5132 15302
316f5878 15303static void
17a2f251 15304mips_set_tune (const struct mips_cpu_info *info)
316f5878
RS
15305{
15306 if (info != 0)
fef14a42 15307 mips_tune = info->cpu;
316f5878 15308}
80cc45a5 15309
34ba82a8 15310
252b5132 15311void
17a2f251 15312mips_after_parse_args (void)
e9670677 15313{
fef14a42
TS
15314 const struct mips_cpu_info *arch_info = 0;
15315 const struct mips_cpu_info *tune_info = 0;
15316
e9670677 15317 /* GP relative stuff not working for PE */
6caf9ef4 15318 if (strncmp (TARGET_OS, "pe", 2) == 0)
e9670677 15319 {
6caf9ef4 15320 if (g_switch_seen && g_switch_value != 0)
e9670677
MR
15321 as_bad (_("-G not supported in this configuration."));
15322 g_switch_value = 0;
15323 }
15324
cac012d6
AO
15325 if (mips_abi == NO_ABI)
15326 mips_abi = MIPS_DEFAULT_ABI;
15327
22923709
RS
15328 /* The following code determines the architecture and register size.
15329 Similar code was added to GCC 3.3 (see override_options() in
15330 config/mips/mips.c). The GAS and GCC code should be kept in sync
15331 as much as possible. */
e9670677 15332
316f5878 15333 if (mips_arch_string != 0)
fef14a42 15334 arch_info = mips_parse_cpu ("-march", mips_arch_string);
e9670677 15335
316f5878 15336 if (file_mips_isa != ISA_UNKNOWN)
e9670677 15337 {
316f5878 15338 /* Handle -mipsN. At this point, file_mips_isa contains the
fef14a42 15339 ISA level specified by -mipsN, while arch_info->isa contains
316f5878 15340 the -march selection (if any). */
fef14a42 15341 if (arch_info != 0)
e9670677 15342 {
316f5878
RS
15343 /* -march takes precedence over -mipsN, since it is more descriptive.
15344 There's no harm in specifying both as long as the ISA levels
15345 are the same. */
fef14a42 15346 if (file_mips_isa != arch_info->isa)
316f5878
RS
15347 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
15348 mips_cpu_info_from_isa (file_mips_isa)->name,
fef14a42 15349 mips_cpu_info_from_isa (arch_info->isa)->name);
e9670677 15350 }
316f5878 15351 else
fef14a42 15352 arch_info = mips_cpu_info_from_isa (file_mips_isa);
e9670677
MR
15353 }
15354
fef14a42 15355 if (arch_info == 0)
95bfe26e
MF
15356 {
15357 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
15358 gas_assert (arch_info);
15359 }
e9670677 15360
fef14a42 15361 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
20203fb9 15362 as_bad (_("-march=%s is not compatible with the selected ABI"),
fef14a42
TS
15363 arch_info->name);
15364
15365 mips_set_architecture (arch_info);
15366
15367 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
15368 if (mips_tune_string != 0)
15369 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
e9670677 15370
fef14a42
TS
15371 if (tune_info == 0)
15372 mips_set_tune (arch_info);
15373 else
15374 mips_set_tune (tune_info);
e9670677 15375
316f5878 15376 if (file_mips_gp32 >= 0)
e9670677 15377 {
316f5878
RS
15378 /* The user specified the size of the integer registers. Make sure
15379 it agrees with the ABI and ISA. */
15380 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
15381 as_bad (_("-mgp64 used with a 32-bit processor"));
15382 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
15383 as_bad (_("-mgp32 used with a 64-bit ABI"));
15384 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
15385 as_bad (_("-mgp64 used with a 32-bit ABI"));
e9670677
MR
15386 }
15387 else
15388 {
316f5878
RS
15389 /* Infer the integer register size from the ABI and processor.
15390 Restrict ourselves to 32-bit registers if that's all the
15391 processor has, or if the ABI cannot handle 64-bit registers. */
15392 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
15393 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
e9670677
MR
15394 }
15395
ad3fea08
TS
15396 switch (file_mips_fp32)
15397 {
15398 default:
15399 case -1:
15400 /* No user specified float register size.
15401 ??? GAS treats single-float processors as though they had 64-bit
15402 float registers (although it complains when double-precision
15403 instructions are used). As things stand, saying they have 32-bit
15404 registers would lead to spurious "register must be even" messages.
15405 So here we assume float registers are never smaller than the
15406 integer ones. */
15407 if (file_mips_gp32 == 0)
15408 /* 64-bit integer registers implies 64-bit float registers. */
15409 file_mips_fp32 = 0;
c6278170 15410 else if ((mips_opts.ase & FP64_ASES)
ad3fea08
TS
15411 && ISA_HAS_64BIT_FPRS (mips_opts.isa))
15412 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
15413 file_mips_fp32 = 0;
15414 else
15415 /* 32-bit float registers. */
15416 file_mips_fp32 = 1;
15417 break;
15418
15419 /* The user specified the size of the float registers. Check if it
15420 agrees with the ABI and ISA. */
15421 case 0:
15422 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
15423 as_bad (_("-mfp64 used with a 32-bit fpu"));
15424 else if (ABI_NEEDS_32BIT_REGS (mips_abi)
15425 && !ISA_HAS_MXHC1 (mips_opts.isa))
15426 as_warn (_("-mfp64 used with a 32-bit ABI"));
15427 break;
15428 case 1:
15429 if (ABI_NEEDS_64BIT_REGS (mips_abi))
15430 as_warn (_("-mfp32 used with a 64-bit ABI"));
15431 break;
15432 }
e9670677 15433
316f5878 15434 /* End of GCC-shared inference code. */
e9670677 15435
17a2f251
TS
15436 /* This flag is set when we have a 64-bit capable CPU but use only
15437 32-bit wide registers. Note that EABI does not use it. */
15438 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
15439 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
15440 || mips_abi == O32_ABI))
316f5878 15441 mips_32bitmode = 1;
e9670677
MR
15442
15443 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
15444 as_bad (_("trap exception not supported at ISA 1"));
15445
e9670677
MR
15446 /* If the selected architecture includes support for ASEs, enable
15447 generation of code for them. */
a4672219 15448 if (mips_opts.mips16 == -1)
fef14a42 15449 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
df58fc94
RS
15450 if (mips_opts.micromips == -1)
15451 mips_opts.micromips = (CPU_HAS_MICROMIPS (file_mips_arch)) ? 1 : 0;
846ef2d0
RS
15452
15453 /* MIPS3D and MDMX require 64-bit FPRs, so -mfp32 should stop those
15454 ASEs from being selected implicitly. */
15455 if (file_mips_fp32 == 1)
15456 file_ase_explicit |= ASE_MIPS3D | ASE_MDMX;
15457
15458 /* If the user didn't explicitly select or deselect a particular ASE,
15459 use the default setting for the CPU. */
15460 mips_opts.ase |= (arch_info->ase & ~file_ase_explicit);
15461
e9670677 15462 file_mips_isa = mips_opts.isa;
846ef2d0 15463 file_ase = mips_opts.ase;
e9670677
MR
15464 mips_opts.gp32 = file_mips_gp32;
15465 mips_opts.fp32 = file_mips_fp32;
037b32b9
AN
15466 mips_opts.soft_float = file_mips_soft_float;
15467 mips_opts.single_float = file_mips_single_float;
e9670677 15468
c6278170
RS
15469 mips_check_isa_supports_ases ();
15470
ecb4347a 15471 if (mips_flag_mdebug < 0)
e8044f35 15472 mips_flag_mdebug = 0;
e9670677
MR
15473}
15474\f
15475void
17a2f251 15476mips_init_after_args (void)
252b5132
RH
15477{
15478 /* initialize opcodes */
15479 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
beae10d5 15480 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
252b5132
RH
15481}
15482
15483long
17a2f251 15484md_pcrel_from (fixS *fixP)
252b5132 15485{
a7ebbfdf
TS
15486 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
15487 switch (fixP->fx_r_type)
15488 {
df58fc94
RS
15489 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15490 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15491 /* Return the address of the delay slot. */
15492 return addr + 2;
15493
15494 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15495 case BFD_RELOC_MICROMIPS_JMP:
a7ebbfdf
TS
15496 case BFD_RELOC_16_PCREL_S2:
15497 case BFD_RELOC_MIPS_JMP:
15498 /* Return the address of the delay slot. */
15499 return addr + 4;
df58fc94 15500
b47468a6
CM
15501 case BFD_RELOC_32_PCREL:
15502 return addr;
15503
a7ebbfdf 15504 default:
58ea3d6a 15505 /* We have no relocation type for PC relative MIPS16 instructions. */
64817874
TS
15506 if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
15507 as_bad_where (fixP->fx_file, fixP->fx_line,
15508 _("PC relative MIPS16 instruction references a different section"));
a7ebbfdf
TS
15509 return addr;
15510 }
252b5132
RH
15511}
15512
252b5132
RH
15513/* This is called before the symbol table is processed. In order to
15514 work with gcc when using mips-tfile, we must keep all local labels.
15515 However, in other cases, we want to discard them. If we were
15516 called with -g, but we didn't see any debugging information, it may
15517 mean that gcc is smuggling debugging information through to
15518 mips-tfile, in which case we must generate all local labels. */
15519
15520void
17a2f251 15521mips_frob_file_before_adjust (void)
252b5132
RH
15522{
15523#ifndef NO_ECOFF_DEBUGGING
15524 if (ECOFF_DEBUGGING
15525 && mips_debug != 0
15526 && ! ecoff_debugging_seen)
15527 flag_keep_locals = 1;
15528#endif
15529}
15530
3b91255e 15531/* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
55cf6793 15532 the corresponding LO16 reloc. This is called before md_apply_fix and
3b91255e
RS
15533 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
15534 relocation operators.
15535
15536 For our purposes, a %lo() expression matches a %got() or %hi()
15537 expression if:
15538
15539 (a) it refers to the same symbol; and
15540 (b) the offset applied in the %lo() expression is no lower than
15541 the offset applied in the %got() or %hi().
15542
15543 (b) allows us to cope with code like:
15544
15545 lui $4,%hi(foo)
15546 lh $4,%lo(foo+2)($4)
15547
15548 ...which is legal on RELA targets, and has a well-defined behaviour
15549 if the user knows that adding 2 to "foo" will not induce a carry to
15550 the high 16 bits.
15551
15552 When several %lo()s match a particular %got() or %hi(), we use the
15553 following rules to distinguish them:
15554
15555 (1) %lo()s with smaller offsets are a better match than %lo()s with
15556 higher offsets.
15557
15558 (2) %lo()s with no matching %got() or %hi() are better than those
15559 that already have a matching %got() or %hi().
15560
15561 (3) later %lo()s are better than earlier %lo()s.
15562
15563 These rules are applied in order.
15564
15565 (1) means, among other things, that %lo()s with identical offsets are
15566 chosen if they exist.
15567
15568 (2) means that we won't associate several high-part relocations with
15569 the same low-part relocation unless there's no alternative. Having
15570 several high parts for the same low part is a GNU extension; this rule
15571 allows careful users to avoid it.
15572
15573 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
15574 with the last high-part relocation being at the front of the list.
15575 It therefore makes sense to choose the last matching low-part
15576 relocation, all other things being equal. It's also easier
15577 to code that way. */
252b5132
RH
15578
15579void
17a2f251 15580mips_frob_file (void)
252b5132
RH
15581{
15582 struct mips_hi_fixup *l;
35903be0 15583 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
252b5132
RH
15584
15585 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
15586 {
15587 segment_info_type *seginfo;
3b91255e
RS
15588 bfd_boolean matched_lo_p;
15589 fixS **hi_pos, **lo_pos, **pos;
252b5132 15590
9c2799c2 15591 gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
252b5132 15592
5919d012 15593 /* If a GOT16 relocation turns out to be against a global symbol,
b886a2ab
RS
15594 there isn't supposed to be a matching LO. Ignore %gots against
15595 constants; we'll report an error for those later. */
738e5348 15596 if (got16_reloc_p (l->fixp->fx_r_type)
b886a2ab
RS
15597 && !(l->fixp->fx_addsy
15598 && pic_need_relax (l->fixp->fx_addsy, l->seg)))
5919d012
RS
15599 continue;
15600
15601 /* Check quickly whether the next fixup happens to be a matching %lo. */
15602 if (fixup_has_matching_lo_p (l->fixp))
252b5132
RH
15603 continue;
15604
252b5132 15605 seginfo = seg_info (l->seg);
252b5132 15606
3b91255e
RS
15607 /* Set HI_POS to the position of this relocation in the chain.
15608 Set LO_POS to the position of the chosen low-part relocation.
15609 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
15610 relocation that matches an immediately-preceding high-part
15611 relocation. */
15612 hi_pos = NULL;
15613 lo_pos = NULL;
15614 matched_lo_p = FALSE;
738e5348 15615 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
35903be0 15616
3b91255e
RS
15617 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
15618 {
15619 if (*pos == l->fixp)
15620 hi_pos = pos;
15621
35903be0 15622 if ((*pos)->fx_r_type == looking_for_rtype
30cfc97a 15623 && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
3b91255e
RS
15624 && (*pos)->fx_offset >= l->fixp->fx_offset
15625 && (lo_pos == NULL
15626 || (*pos)->fx_offset < (*lo_pos)->fx_offset
15627 || (!matched_lo_p
15628 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
15629 lo_pos = pos;
15630
15631 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
15632 && fixup_has_matching_lo_p (*pos));
15633 }
15634
15635 /* If we found a match, remove the high-part relocation from its
15636 current position and insert it before the low-part relocation.
15637 Make the offsets match so that fixup_has_matching_lo_p()
15638 will return true.
15639
15640 We don't warn about unmatched high-part relocations since some
15641 versions of gcc have been known to emit dead "lui ...%hi(...)"
15642 instructions. */
15643 if (lo_pos != NULL)
15644 {
15645 l->fixp->fx_offset = (*lo_pos)->fx_offset;
15646 if (l->fixp->fx_next != *lo_pos)
252b5132 15647 {
3b91255e
RS
15648 *hi_pos = l->fixp->fx_next;
15649 l->fixp->fx_next = *lo_pos;
15650 *lo_pos = l->fixp;
252b5132 15651 }
252b5132
RH
15652 }
15653 }
15654}
15655
252b5132 15656int
17a2f251 15657mips_force_relocation (fixS *fixp)
252b5132 15658{
ae6063d4 15659 if (generic_force_reloc (fixp))
252b5132
RH
15660 return 1;
15661
df58fc94
RS
15662 /* We want to keep BFD_RELOC_MICROMIPS_*_PCREL_S1 relocation,
15663 so that the linker relaxation can update targets. */
15664 if (fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
15665 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
15666 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1)
15667 return 1;
15668
3e722fb5 15669 return 0;
252b5132
RH
15670}
15671
b886a2ab
RS
15672/* Read the instruction associated with RELOC from BUF. */
15673
15674static unsigned int
15675read_reloc_insn (char *buf, bfd_reloc_code_real_type reloc)
15676{
15677 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
15678 return read_compressed_insn (buf, 4);
15679 else
15680 return read_insn (buf);
15681}
15682
15683/* Write instruction INSN to BUF, given that it has been relocated
15684 by RELOC. */
15685
15686static void
15687write_reloc_insn (char *buf, bfd_reloc_code_real_type reloc,
15688 unsigned long insn)
15689{
15690 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
15691 write_compressed_insn (buf, insn, 4);
15692 else
15693 write_insn (buf, insn);
15694}
15695
252b5132
RH
15696/* Apply a fixup to the object file. */
15697
94f592af 15698void
55cf6793 15699md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 15700{
4d68580a 15701 char *buf;
b886a2ab 15702 unsigned long insn;
a7ebbfdf 15703 reloc_howto_type *howto;
252b5132 15704
a7ebbfdf
TS
15705 /* We ignore generic BFD relocations we don't know about. */
15706 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
15707 if (! howto)
15708 return;
65551fa4 15709
df58fc94
RS
15710 gas_assert (fixP->fx_size == 2
15711 || fixP->fx_size == 4
90ecf173
MR
15712 || fixP->fx_r_type == BFD_RELOC_16
15713 || fixP->fx_r_type == BFD_RELOC_64
15714 || fixP->fx_r_type == BFD_RELOC_CTOR
15715 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
df58fc94 15716 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_SUB
90ecf173
MR
15717 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
15718 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
15719 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
252b5132 15720
4d68580a 15721 buf = fixP->fx_frag->fr_literal + fixP->fx_where;
252b5132 15722
df58fc94
RS
15723 gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
15724 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
15725 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
b47468a6
CM
15726 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
15727 || fixP->fx_r_type == BFD_RELOC_32_PCREL);
b1dca8ee
RS
15728
15729 /* Don't treat parts of a composite relocation as done. There are two
15730 reasons for this:
15731
15732 (1) The second and third parts will be against 0 (RSS_UNDEF) but
15733 should nevertheless be emitted if the first part is.
15734
15735 (2) In normal usage, composite relocations are never assembly-time
15736 constants. The easiest way of dealing with the pathological
15737 exceptions is to generate a relocation against STN_UNDEF and
15738 leave everything up to the linker. */
3994f87e 15739 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
252b5132
RH
15740 fixP->fx_done = 1;
15741
15742 switch (fixP->fx_r_type)
15743 {
3f98094e
DJ
15744 case BFD_RELOC_MIPS_TLS_GD:
15745 case BFD_RELOC_MIPS_TLS_LDM:
741d6ea8
JM
15746 case BFD_RELOC_MIPS_TLS_DTPREL32:
15747 case BFD_RELOC_MIPS_TLS_DTPREL64:
3f98094e
DJ
15748 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
15749 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
15750 case BFD_RELOC_MIPS_TLS_GOTTPREL:
d0f13682
CLT
15751 case BFD_RELOC_MIPS_TLS_TPREL32:
15752 case BFD_RELOC_MIPS_TLS_TPREL64:
3f98094e
DJ
15753 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
15754 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
df58fc94
RS
15755 case BFD_RELOC_MICROMIPS_TLS_GD:
15756 case BFD_RELOC_MICROMIPS_TLS_LDM:
15757 case BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16:
15758 case BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16:
15759 case BFD_RELOC_MICROMIPS_TLS_GOTTPREL:
15760 case BFD_RELOC_MICROMIPS_TLS_TPREL_HI16:
15761 case BFD_RELOC_MICROMIPS_TLS_TPREL_LO16:
d0f13682
CLT
15762 case BFD_RELOC_MIPS16_TLS_GD:
15763 case BFD_RELOC_MIPS16_TLS_LDM:
15764 case BFD_RELOC_MIPS16_TLS_DTPREL_HI16:
15765 case BFD_RELOC_MIPS16_TLS_DTPREL_LO16:
15766 case BFD_RELOC_MIPS16_TLS_GOTTPREL:
15767 case BFD_RELOC_MIPS16_TLS_TPREL_HI16:
15768 case BFD_RELOC_MIPS16_TLS_TPREL_LO16:
b886a2ab
RS
15769 if (!fixP->fx_addsy)
15770 {
15771 as_bad_where (fixP->fx_file, fixP->fx_line,
15772 _("TLS relocation against a constant"));
15773 break;
15774 }
3f98094e
DJ
15775 S_SET_THREAD_LOCAL (fixP->fx_addsy);
15776 /* fall through */
15777
252b5132 15778 case BFD_RELOC_MIPS_JMP:
e369bcce
TS
15779 case BFD_RELOC_MIPS_SHIFT5:
15780 case BFD_RELOC_MIPS_SHIFT6:
15781 case BFD_RELOC_MIPS_GOT_DISP:
15782 case BFD_RELOC_MIPS_GOT_PAGE:
15783 case BFD_RELOC_MIPS_GOT_OFST:
15784 case BFD_RELOC_MIPS_SUB:
15785 case BFD_RELOC_MIPS_INSERT_A:
15786 case BFD_RELOC_MIPS_INSERT_B:
15787 case BFD_RELOC_MIPS_DELETE:
15788 case BFD_RELOC_MIPS_HIGHEST:
15789 case BFD_RELOC_MIPS_HIGHER:
15790 case BFD_RELOC_MIPS_SCN_DISP:
15791 case BFD_RELOC_MIPS_REL16:
15792 case BFD_RELOC_MIPS_RELGOT:
15793 case BFD_RELOC_MIPS_JALR:
252b5132
RH
15794 case BFD_RELOC_HI16:
15795 case BFD_RELOC_HI16_S:
b886a2ab 15796 case BFD_RELOC_LO16:
cdf6fd85 15797 case BFD_RELOC_GPREL16:
252b5132
RH
15798 case BFD_RELOC_MIPS_LITERAL:
15799 case BFD_RELOC_MIPS_CALL16:
15800 case BFD_RELOC_MIPS_GOT16:
cdf6fd85 15801 case BFD_RELOC_GPREL32:
252b5132
RH
15802 case BFD_RELOC_MIPS_GOT_HI16:
15803 case BFD_RELOC_MIPS_GOT_LO16:
15804 case BFD_RELOC_MIPS_CALL_HI16:
15805 case BFD_RELOC_MIPS_CALL_LO16:
15806 case BFD_RELOC_MIPS16_GPREL:
738e5348
RS
15807 case BFD_RELOC_MIPS16_GOT16:
15808 case BFD_RELOC_MIPS16_CALL16:
d6f16593
MR
15809 case BFD_RELOC_MIPS16_HI16:
15810 case BFD_RELOC_MIPS16_HI16_S:
b886a2ab 15811 case BFD_RELOC_MIPS16_LO16:
252b5132 15812 case BFD_RELOC_MIPS16_JMP:
df58fc94
RS
15813 case BFD_RELOC_MICROMIPS_JMP:
15814 case BFD_RELOC_MICROMIPS_GOT_DISP:
15815 case BFD_RELOC_MICROMIPS_GOT_PAGE:
15816 case BFD_RELOC_MICROMIPS_GOT_OFST:
15817 case BFD_RELOC_MICROMIPS_SUB:
15818 case BFD_RELOC_MICROMIPS_HIGHEST:
15819 case BFD_RELOC_MICROMIPS_HIGHER:
15820 case BFD_RELOC_MICROMIPS_SCN_DISP:
15821 case BFD_RELOC_MICROMIPS_JALR:
15822 case BFD_RELOC_MICROMIPS_HI16:
15823 case BFD_RELOC_MICROMIPS_HI16_S:
b886a2ab 15824 case BFD_RELOC_MICROMIPS_LO16:
df58fc94
RS
15825 case BFD_RELOC_MICROMIPS_GPREL16:
15826 case BFD_RELOC_MICROMIPS_LITERAL:
15827 case BFD_RELOC_MICROMIPS_CALL16:
15828 case BFD_RELOC_MICROMIPS_GOT16:
15829 case BFD_RELOC_MICROMIPS_GOT_HI16:
15830 case BFD_RELOC_MICROMIPS_GOT_LO16:
15831 case BFD_RELOC_MICROMIPS_CALL_HI16:
15832 case BFD_RELOC_MICROMIPS_CALL_LO16:
067ec077 15833 case BFD_RELOC_MIPS_EH:
b886a2ab
RS
15834 if (fixP->fx_done)
15835 {
15836 offsetT value;
15837
15838 if (calculate_reloc (fixP->fx_r_type, *valP, &value))
15839 {
15840 insn = read_reloc_insn (buf, fixP->fx_r_type);
15841 if (mips16_reloc_p (fixP->fx_r_type))
15842 insn |= mips16_immed_extend (value, 16);
15843 else
15844 insn |= (value & 0xffff);
15845 write_reloc_insn (buf, fixP->fx_r_type, insn);
15846 }
15847 else
15848 as_bad_where (fixP->fx_file, fixP->fx_line,
15849 _("Unsupported constant in relocation"));
15850 }
252b5132
RH
15851 break;
15852
252b5132
RH
15853 case BFD_RELOC_64:
15854 /* This is handled like BFD_RELOC_32, but we output a sign
15855 extended value if we are only 32 bits. */
3e722fb5 15856 if (fixP->fx_done)
252b5132
RH
15857 {
15858 if (8 <= sizeof (valueT))
4d68580a 15859 md_number_to_chars (buf, *valP, 8);
252b5132
RH
15860 else
15861 {
a7ebbfdf 15862 valueT hiv;
252b5132 15863
a7ebbfdf 15864 if ((*valP & 0x80000000) != 0)
252b5132
RH
15865 hiv = 0xffffffff;
15866 else
15867 hiv = 0;
4d68580a
RS
15868 md_number_to_chars (buf + (target_big_endian ? 4 : 0), *valP, 4);
15869 md_number_to_chars (buf + (target_big_endian ? 0 : 4), hiv, 4);
252b5132
RH
15870 }
15871 }
15872 break;
15873
056350c6 15874 case BFD_RELOC_RVA:
252b5132 15875 case BFD_RELOC_32:
b47468a6 15876 case BFD_RELOC_32_PCREL:
252b5132
RH
15877 case BFD_RELOC_16:
15878 /* If we are deleting this reloc entry, we must fill in the
54f4ddb3
TS
15879 value now. This can happen if we have a .word which is not
15880 resolved when it appears but is later defined. */
252b5132 15881 if (fixP->fx_done)
4d68580a 15882 md_number_to_chars (buf, *valP, fixP->fx_size);
252b5132
RH
15883 break;
15884
252b5132 15885 case BFD_RELOC_16_PCREL_S2:
a7ebbfdf 15886 if ((*valP & 0x3) != 0)
cb56d3d3 15887 as_bad_where (fixP->fx_file, fixP->fx_line,
bad36eac 15888 _("Branch to misaligned address (%lx)"), (long) *valP);
cb56d3d3 15889
54f4ddb3
TS
15890 /* We need to save the bits in the instruction since fixup_segment()
15891 might be deleting the relocation entry (i.e., a branch within
15892 the current segment). */
a7ebbfdf 15893 if (! fixP->fx_done)
bb2d6cd7 15894 break;
252b5132 15895
54f4ddb3 15896 /* Update old instruction data. */
4d68580a 15897 insn = read_insn (buf);
252b5132 15898
a7ebbfdf
TS
15899 if (*valP + 0x20000 <= 0x3ffff)
15900 {
15901 insn |= (*valP >> 2) & 0xffff;
4d68580a 15902 write_insn (buf, insn);
a7ebbfdf
TS
15903 }
15904 else if (mips_pic == NO_PIC
15905 && fixP->fx_done
15906 && fixP->fx_frag->fr_address >= text_section->vma
15907 && (fixP->fx_frag->fr_address
587aac4e 15908 < text_section->vma + bfd_get_section_size (text_section))
a7ebbfdf
TS
15909 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
15910 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
15911 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
252b5132
RH
15912 {
15913 /* The branch offset is too large. If this is an
15914 unconditional branch, and we are not generating PIC code,
15915 we can convert it to an absolute jump instruction. */
a7ebbfdf
TS
15916 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
15917 insn = 0x0c000000; /* jal */
252b5132 15918 else
a7ebbfdf
TS
15919 insn = 0x08000000; /* j */
15920 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
15921 fixP->fx_done = 0;
15922 fixP->fx_addsy = section_symbol (text_section);
15923 *valP += md_pcrel_from (fixP);
4d68580a 15924 write_insn (buf, insn);
a7ebbfdf
TS
15925 }
15926 else
15927 {
15928 /* If we got here, we have branch-relaxation disabled,
15929 and there's nothing we can do to fix this instruction
15930 without turning it into a longer sequence. */
15931 as_bad_where (fixP->fx_file, fixP->fx_line,
15932 _("Branch out of range"));
252b5132 15933 }
252b5132
RH
15934 break;
15935
df58fc94
RS
15936 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15937 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15938 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15939 /* We adjust the offset back to even. */
15940 if ((*valP & 0x1) != 0)
15941 --(*valP);
15942
15943 if (! fixP->fx_done)
15944 break;
15945
15946 /* Should never visit here, because we keep the relocation. */
15947 abort ();
15948 break;
15949
252b5132
RH
15950 case BFD_RELOC_VTABLE_INHERIT:
15951 fixP->fx_done = 0;
15952 if (fixP->fx_addsy
15953 && !S_IS_DEFINED (fixP->fx_addsy)
15954 && !S_IS_WEAK (fixP->fx_addsy))
15955 S_SET_WEAK (fixP->fx_addsy);
15956 break;
15957
15958 case BFD_RELOC_VTABLE_ENTRY:
15959 fixP->fx_done = 0;
15960 break;
15961
15962 default:
b37df7c4 15963 abort ();
252b5132 15964 }
a7ebbfdf
TS
15965
15966 /* Remember value for tc_gen_reloc. */
15967 fixP->fx_addnumber = *valP;
252b5132
RH
15968}
15969
252b5132 15970static symbolS *
17a2f251 15971get_symbol (void)
252b5132
RH
15972{
15973 int c;
15974 char *name;
15975 symbolS *p;
15976
15977 name = input_line_pointer;
15978 c = get_symbol_end ();
15979 p = (symbolS *) symbol_find_or_make (name);
15980 *input_line_pointer = c;
15981 return p;
15982}
15983
742a56fe
RS
15984/* Align the current frag to a given power of two. If a particular
15985 fill byte should be used, FILL points to an integer that contains
15986 that byte, otherwise FILL is null.
15987
462427c4
RS
15988 This function used to have the comment:
15989
15990 The MIPS assembler also automatically adjusts any preceding label.
15991
15992 The implementation therefore applied the adjustment to a maximum of
15993 one label. However, other label adjustments are applied to batches
15994 of labels, and adjusting just one caused problems when new labels
15995 were added for the sake of debugging or unwind information.
15996 We therefore adjust all preceding labels (given as LABELS) instead. */
252b5132
RH
15997
15998static void
462427c4 15999mips_align (int to, int *fill, struct insn_label_list *labels)
252b5132 16000{
7d10b47d 16001 mips_emit_delays ();
df58fc94 16002 mips_record_compressed_mode ();
742a56fe
RS
16003 if (fill == NULL && subseg_text_p (now_seg))
16004 frag_align_code (to, 0);
16005 else
16006 frag_align (to, fill ? *fill : 0, 0);
252b5132 16007 record_alignment (now_seg, to);
462427c4 16008 mips_move_labels (labels, FALSE);
252b5132
RH
16009}
16010
16011/* Align to a given power of two. .align 0 turns off the automatic
16012 alignment used by the data creating pseudo-ops. */
16013
16014static void
17a2f251 16015s_align (int x ATTRIBUTE_UNUSED)
252b5132 16016{
742a56fe 16017 int temp, fill_value, *fill_ptr;
49954fb4 16018 long max_alignment = 28;
252b5132 16019
54f4ddb3 16020 /* o Note that the assembler pulls down any immediately preceding label
252b5132 16021 to the aligned address.
54f4ddb3 16022 o It's not documented but auto alignment is reinstated by
252b5132 16023 a .align pseudo instruction.
54f4ddb3 16024 o Note also that after auto alignment is turned off the mips assembler
252b5132 16025 issues an error on attempt to assemble an improperly aligned data item.
54f4ddb3 16026 We don't. */
252b5132
RH
16027
16028 temp = get_absolute_expression ();
16029 if (temp > max_alignment)
16030 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
16031 else if (temp < 0)
16032 {
16033 as_warn (_("Alignment negative: 0 assumed."));
16034 temp = 0;
16035 }
16036 if (*input_line_pointer == ',')
16037 {
f9419b05 16038 ++input_line_pointer;
742a56fe
RS
16039 fill_value = get_absolute_expression ();
16040 fill_ptr = &fill_value;
252b5132
RH
16041 }
16042 else
742a56fe 16043 fill_ptr = 0;
252b5132
RH
16044 if (temp)
16045 {
a8dbcb85
TS
16046 segment_info_type *si = seg_info (now_seg);
16047 struct insn_label_list *l = si->label_list;
54f4ddb3 16048 /* Auto alignment should be switched on by next section change. */
252b5132 16049 auto_align = 1;
462427c4 16050 mips_align (temp, fill_ptr, l);
252b5132
RH
16051 }
16052 else
16053 {
16054 auto_align = 0;
16055 }
16056
16057 demand_empty_rest_of_line ();
16058}
16059
252b5132 16060static void
17a2f251 16061s_change_sec (int sec)
252b5132
RH
16062{
16063 segT seg;
16064
252b5132
RH
16065 /* The ELF backend needs to know that we are changing sections, so
16066 that .previous works correctly. We could do something like check
b6ff326e 16067 for an obj_section_change_hook macro, but that might be confusing
252b5132
RH
16068 as it would not be appropriate to use it in the section changing
16069 functions in read.c, since obj-elf.c intercepts those. FIXME:
16070 This should be cleaner, somehow. */
f3ded42a 16071 obj_elf_section_change_hook ();
252b5132 16072
7d10b47d 16073 mips_emit_delays ();
6a32d874 16074
252b5132
RH
16075 switch (sec)
16076 {
16077 case 't':
16078 s_text (0);
16079 break;
16080 case 'd':
16081 s_data (0);
16082 break;
16083 case 'b':
16084 subseg_set (bss_section, (subsegT) get_absolute_expression ());
16085 demand_empty_rest_of_line ();
16086 break;
16087
16088 case 'r':
4d0d148d
TS
16089 seg = subseg_new (RDATA_SECTION_NAME,
16090 (subsegT) get_absolute_expression ());
f3ded42a
RS
16091 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
16092 | SEC_READONLY | SEC_RELOC
16093 | SEC_DATA));
16094 if (strncmp (TARGET_OS, "elf", 3) != 0)
16095 record_alignment (seg, 4);
4d0d148d 16096 demand_empty_rest_of_line ();
252b5132
RH
16097 break;
16098
16099 case 's':
4d0d148d 16100 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
f3ded42a
RS
16101 bfd_set_section_flags (stdoutput, seg,
16102 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
16103 if (strncmp (TARGET_OS, "elf", 3) != 0)
16104 record_alignment (seg, 4);
4d0d148d
TS
16105 demand_empty_rest_of_line ();
16106 break;
998b3c36
MR
16107
16108 case 'B':
16109 seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
f3ded42a
RS
16110 bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
16111 if (strncmp (TARGET_OS, "elf", 3) != 0)
16112 record_alignment (seg, 4);
998b3c36
MR
16113 demand_empty_rest_of_line ();
16114 break;
252b5132
RH
16115 }
16116
16117 auto_align = 1;
16118}
b34976b6 16119
cca86cc8 16120void
17a2f251 16121s_change_section (int ignore ATTRIBUTE_UNUSED)
cca86cc8 16122{
cca86cc8
SC
16123 char *section_name;
16124 char c;
684022ea 16125 char next_c = 0;
cca86cc8
SC
16126 int section_type;
16127 int section_flag;
16128 int section_entry_size;
16129 int section_alignment;
b34976b6 16130
cca86cc8
SC
16131 section_name = input_line_pointer;
16132 c = get_symbol_end ();
a816d1ed
AO
16133 if (c)
16134 next_c = *(input_line_pointer + 1);
cca86cc8 16135
4cf0dd0d
TS
16136 /* Do we have .section Name<,"flags">? */
16137 if (c != ',' || (c == ',' && next_c == '"'))
cca86cc8 16138 {
4cf0dd0d
TS
16139 /* just after name is now '\0'. */
16140 *input_line_pointer = c;
cca86cc8
SC
16141 input_line_pointer = section_name;
16142 obj_elf_section (ignore);
16143 return;
16144 }
16145 input_line_pointer++;
16146
16147 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
16148 if (c == ',')
16149 section_type = get_absolute_expression ();
16150 else
16151 section_type = 0;
16152 if (*input_line_pointer++ == ',')
16153 section_flag = get_absolute_expression ();
16154 else
16155 section_flag = 0;
16156 if (*input_line_pointer++ == ',')
16157 section_entry_size = get_absolute_expression ();
16158 else
16159 section_entry_size = 0;
16160 if (*input_line_pointer++ == ',')
16161 section_alignment = get_absolute_expression ();
16162 else
16163 section_alignment = 0;
87975d2a
AM
16164 /* FIXME: really ignore? */
16165 (void) section_alignment;
cca86cc8 16166
a816d1ed
AO
16167 section_name = xstrdup (section_name);
16168
8ab8a5c8
RS
16169 /* When using the generic form of .section (as implemented by obj-elf.c),
16170 there's no way to set the section type to SHT_MIPS_DWARF. Users have
16171 traditionally had to fall back on the more common @progbits instead.
16172
16173 There's nothing really harmful in this, since bfd will correct
16174 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
708587a4 16175 means that, for backwards compatibility, the special_section entries
8ab8a5c8
RS
16176 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
16177
16178 Even so, we shouldn't force users of the MIPS .section syntax to
16179 incorrectly label the sections as SHT_PROGBITS. The best compromise
16180 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
16181 generic type-checking code. */
16182 if (section_type == SHT_MIPS_DWARF)
16183 section_type = SHT_PROGBITS;
16184
cca86cc8
SC
16185 obj_elf_change_section (section_name, section_type, section_flag,
16186 section_entry_size, 0, 0, 0);
a816d1ed
AO
16187
16188 if (now_seg->name != section_name)
16189 free (section_name);
cca86cc8 16190}
252b5132
RH
16191
16192void
17a2f251 16193mips_enable_auto_align (void)
252b5132
RH
16194{
16195 auto_align = 1;
16196}
16197
16198static void
17a2f251 16199s_cons (int log_size)
252b5132 16200{
a8dbcb85
TS
16201 segment_info_type *si = seg_info (now_seg);
16202 struct insn_label_list *l = si->label_list;
252b5132 16203
7d10b47d 16204 mips_emit_delays ();
252b5132 16205 if (log_size > 0 && auto_align)
462427c4 16206 mips_align (log_size, 0, l);
252b5132 16207 cons (1 << log_size);
a1facbec 16208 mips_clear_insn_labels ();
252b5132
RH
16209}
16210
16211static void
17a2f251 16212s_float_cons (int type)
252b5132 16213{
a8dbcb85
TS
16214 segment_info_type *si = seg_info (now_seg);
16215 struct insn_label_list *l = si->label_list;
252b5132 16216
7d10b47d 16217 mips_emit_delays ();
252b5132
RH
16218
16219 if (auto_align)
49309057
ILT
16220 {
16221 if (type == 'd')
462427c4 16222 mips_align (3, 0, l);
49309057 16223 else
462427c4 16224 mips_align (2, 0, l);
49309057 16225 }
252b5132 16226
252b5132 16227 float_cons (type);
a1facbec 16228 mips_clear_insn_labels ();
252b5132
RH
16229}
16230
16231/* Handle .globl. We need to override it because on Irix 5 you are
16232 permitted to say
16233 .globl foo .text
16234 where foo is an undefined symbol, to mean that foo should be
16235 considered to be the address of a function. */
16236
16237static void
17a2f251 16238s_mips_globl (int x ATTRIBUTE_UNUSED)
252b5132
RH
16239{
16240 char *name;
16241 int c;
16242 symbolS *symbolP;
16243 flagword flag;
16244
8a06b769 16245 do
252b5132 16246 {
8a06b769 16247 name = input_line_pointer;
252b5132 16248 c = get_symbol_end ();
8a06b769
TS
16249 symbolP = symbol_find_or_make (name);
16250 S_SET_EXTERNAL (symbolP);
16251
252b5132 16252 *input_line_pointer = c;
8a06b769 16253 SKIP_WHITESPACE ();
252b5132 16254
8a06b769
TS
16255 /* On Irix 5, every global symbol that is not explicitly labelled as
16256 being a function is apparently labelled as being an object. */
16257 flag = BSF_OBJECT;
252b5132 16258
8a06b769
TS
16259 if (!is_end_of_line[(unsigned char) *input_line_pointer]
16260 && (*input_line_pointer != ','))
16261 {
16262 char *secname;
16263 asection *sec;
16264
16265 secname = input_line_pointer;
16266 c = get_symbol_end ();
16267 sec = bfd_get_section_by_name (stdoutput, secname);
16268 if (sec == NULL)
16269 as_bad (_("%s: no such section"), secname);
16270 *input_line_pointer = c;
16271
16272 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
16273 flag = BSF_FUNCTION;
16274 }
16275
16276 symbol_get_bfdsym (symbolP)->flags |= flag;
16277
16278 c = *input_line_pointer;
16279 if (c == ',')
16280 {
16281 input_line_pointer++;
16282 SKIP_WHITESPACE ();
16283 if (is_end_of_line[(unsigned char) *input_line_pointer])
16284 c = '\n';
16285 }
16286 }
16287 while (c == ',');
252b5132 16288
252b5132
RH
16289 demand_empty_rest_of_line ();
16290}
16291
16292static void
17a2f251 16293s_option (int x ATTRIBUTE_UNUSED)
252b5132
RH
16294{
16295 char *opt;
16296 char c;
16297
16298 opt = input_line_pointer;
16299 c = get_symbol_end ();
16300
16301 if (*opt == 'O')
16302 {
16303 /* FIXME: What does this mean? */
16304 }
16305 else if (strncmp (opt, "pic", 3) == 0)
16306 {
16307 int i;
16308
16309 i = atoi (opt + 3);
16310 if (i == 0)
16311 mips_pic = NO_PIC;
16312 else if (i == 2)
143d77c5 16313 {
8b828383 16314 mips_pic = SVR4_PIC;
143d77c5
EC
16315 mips_abicalls = TRUE;
16316 }
252b5132
RH
16317 else
16318 as_bad (_(".option pic%d not supported"), i);
16319
4d0d148d 16320 if (mips_pic == SVR4_PIC)
252b5132
RH
16321 {
16322 if (g_switch_seen && g_switch_value != 0)
16323 as_warn (_("-G may not be used with SVR4 PIC code"));
16324 g_switch_value = 0;
16325 bfd_set_gp_size (stdoutput, 0);
16326 }
16327 }
16328 else
16329 as_warn (_("Unrecognized option \"%s\""), opt);
16330
16331 *input_line_pointer = c;
16332 demand_empty_rest_of_line ();
16333}
16334
16335/* This structure is used to hold a stack of .set values. */
16336
e972090a
NC
16337struct mips_option_stack
16338{
252b5132
RH
16339 struct mips_option_stack *next;
16340 struct mips_set_options options;
16341};
16342
16343static struct mips_option_stack *mips_opts_stack;
16344
16345/* Handle the .set pseudo-op. */
16346
16347static void
17a2f251 16348s_mipsset (int x ATTRIBUTE_UNUSED)
252b5132
RH
16349{
16350 char *name = input_line_pointer, ch;
c6278170 16351 const struct mips_ase *ase;
252b5132
RH
16352
16353 while (!is_end_of_line[(unsigned char) *input_line_pointer])
f9419b05 16354 ++input_line_pointer;
252b5132
RH
16355 ch = *input_line_pointer;
16356 *input_line_pointer = '\0';
16357
16358 if (strcmp (name, "reorder") == 0)
16359 {
7d10b47d
RS
16360 if (mips_opts.noreorder)
16361 end_noreorder ();
252b5132
RH
16362 }
16363 else if (strcmp (name, "noreorder") == 0)
16364 {
7d10b47d
RS
16365 if (!mips_opts.noreorder)
16366 start_noreorder ();
252b5132 16367 }
741fe287
MR
16368 else if (strncmp (name, "at=", 3) == 0)
16369 {
16370 char *s = name + 3;
16371
16372 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
16373 as_bad (_("Unrecognized register name `%s'"), s);
16374 }
252b5132
RH
16375 else if (strcmp (name, "at") == 0)
16376 {
741fe287 16377 mips_opts.at = ATREG;
252b5132
RH
16378 }
16379 else if (strcmp (name, "noat") == 0)
16380 {
741fe287 16381 mips_opts.at = ZERO;
252b5132
RH
16382 }
16383 else if (strcmp (name, "macro") == 0)
16384 {
16385 mips_opts.warn_about_macros = 0;
16386 }
16387 else if (strcmp (name, "nomacro") == 0)
16388 {
16389 if (mips_opts.noreorder == 0)
16390 as_bad (_("`noreorder' must be set before `nomacro'"));
16391 mips_opts.warn_about_macros = 1;
16392 }
16393 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
16394 {
16395 mips_opts.nomove = 0;
16396 }
16397 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
16398 {
16399 mips_opts.nomove = 1;
16400 }
16401 else if (strcmp (name, "bopt") == 0)
16402 {
16403 mips_opts.nobopt = 0;
16404 }
16405 else if (strcmp (name, "nobopt") == 0)
16406 {
16407 mips_opts.nobopt = 1;
16408 }
ad3fea08
TS
16409 else if (strcmp (name, "gp=default") == 0)
16410 mips_opts.gp32 = file_mips_gp32;
16411 else if (strcmp (name, "gp=32") == 0)
16412 mips_opts.gp32 = 1;
16413 else if (strcmp (name, "gp=64") == 0)
16414 {
16415 if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
20203fb9 16416 as_warn (_("%s isa does not support 64-bit registers"),
ad3fea08
TS
16417 mips_cpu_info_from_isa (mips_opts.isa)->name);
16418 mips_opts.gp32 = 0;
16419 }
16420 else if (strcmp (name, "fp=default") == 0)
16421 mips_opts.fp32 = file_mips_fp32;
16422 else if (strcmp (name, "fp=32") == 0)
16423 mips_opts.fp32 = 1;
16424 else if (strcmp (name, "fp=64") == 0)
16425 {
16426 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
20203fb9 16427 as_warn (_("%s isa does not support 64-bit floating point registers"),
ad3fea08
TS
16428 mips_cpu_info_from_isa (mips_opts.isa)->name);
16429 mips_opts.fp32 = 0;
16430 }
037b32b9
AN
16431 else if (strcmp (name, "softfloat") == 0)
16432 mips_opts.soft_float = 1;
16433 else if (strcmp (name, "hardfloat") == 0)
16434 mips_opts.soft_float = 0;
16435 else if (strcmp (name, "singlefloat") == 0)
16436 mips_opts.single_float = 1;
16437 else if (strcmp (name, "doublefloat") == 0)
16438 mips_opts.single_float = 0;
252b5132
RH
16439 else if (strcmp (name, "mips16") == 0
16440 || strcmp (name, "MIPS-16") == 0)
df58fc94
RS
16441 {
16442 if (mips_opts.micromips == 1)
16443 as_fatal (_("`mips16' cannot be used with `micromips'"));
16444 mips_opts.mips16 = 1;
16445 }
252b5132
RH
16446 else if (strcmp (name, "nomips16") == 0
16447 || strcmp (name, "noMIPS-16") == 0)
16448 mips_opts.mips16 = 0;
df58fc94
RS
16449 else if (strcmp (name, "micromips") == 0)
16450 {
16451 if (mips_opts.mips16 == 1)
16452 as_fatal (_("`micromips' cannot be used with `mips16'"));
16453 mips_opts.micromips = 1;
16454 }
16455 else if (strcmp (name, "nomicromips") == 0)
16456 mips_opts.micromips = 0;
c6278170
RS
16457 else if (name[0] == 'n'
16458 && name[1] == 'o'
16459 && (ase = mips_lookup_ase (name + 2)))
16460 mips_set_ase (ase, FALSE);
16461 else if ((ase = mips_lookup_ase (name)))
16462 mips_set_ase (ase, TRUE);
1a2c1fad 16463 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
252b5132 16464 {
af7ee8bf 16465 int reset = 0;
252b5132 16466
1a2c1fad
CD
16467 /* Permit the user to change the ISA and architecture on the fly.
16468 Needless to say, misuse can cause serious problems. */
81a21e38 16469 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
af7ee8bf
CD
16470 {
16471 reset = 1;
16472 mips_opts.isa = file_mips_isa;
1a2c1fad 16473 mips_opts.arch = file_mips_arch;
1a2c1fad
CD
16474 }
16475 else if (strncmp (name, "arch=", 5) == 0)
16476 {
16477 const struct mips_cpu_info *p;
16478
16479 p = mips_parse_cpu("internal use", name + 5);
16480 if (!p)
16481 as_bad (_("unknown architecture %s"), name + 5);
16482 else
16483 {
16484 mips_opts.arch = p->cpu;
16485 mips_opts.isa = p->isa;
16486 }
16487 }
81a21e38
TS
16488 else if (strncmp (name, "mips", 4) == 0)
16489 {
16490 const struct mips_cpu_info *p;
16491
16492 p = mips_parse_cpu("internal use", name);
16493 if (!p)
16494 as_bad (_("unknown ISA level %s"), name + 4);
16495 else
16496 {
16497 mips_opts.arch = p->cpu;
16498 mips_opts.isa = p->isa;
16499 }
16500 }
af7ee8bf 16501 else
81a21e38 16502 as_bad (_("unknown ISA or architecture %s"), name);
af7ee8bf
CD
16503
16504 switch (mips_opts.isa)
98d3f06f
KH
16505 {
16506 case 0:
98d3f06f 16507 break;
af7ee8bf
CD
16508 case ISA_MIPS1:
16509 case ISA_MIPS2:
16510 case ISA_MIPS32:
16511 case ISA_MIPS32R2:
98d3f06f
KH
16512 mips_opts.gp32 = 1;
16513 mips_opts.fp32 = 1;
16514 break;
af7ee8bf
CD
16515 case ISA_MIPS3:
16516 case ISA_MIPS4:
16517 case ISA_MIPS5:
16518 case ISA_MIPS64:
5f74bc13 16519 case ISA_MIPS64R2:
98d3f06f 16520 mips_opts.gp32 = 0;
e407c74b
NC
16521 if (mips_opts.arch == CPU_R5900)
16522 {
16523 mips_opts.fp32 = 1;
16524 }
16525 else
16526 {
98d3f06f 16527 mips_opts.fp32 = 0;
e407c74b 16528 }
98d3f06f
KH
16529 break;
16530 default:
16531 as_bad (_("unknown ISA level %s"), name + 4);
16532 break;
16533 }
af7ee8bf 16534 if (reset)
98d3f06f 16535 {
af7ee8bf
CD
16536 mips_opts.gp32 = file_mips_gp32;
16537 mips_opts.fp32 = file_mips_fp32;
98d3f06f 16538 }
252b5132
RH
16539 }
16540 else if (strcmp (name, "autoextend") == 0)
16541 mips_opts.noautoextend = 0;
16542 else if (strcmp (name, "noautoextend") == 0)
16543 mips_opts.noautoextend = 1;
833794fc
MR
16544 else if (strcmp (name, "insn32") == 0)
16545 mips_opts.insn32 = TRUE;
16546 else if (strcmp (name, "noinsn32") == 0)
16547 mips_opts.insn32 = FALSE;
252b5132
RH
16548 else if (strcmp (name, "push") == 0)
16549 {
16550 struct mips_option_stack *s;
16551
16552 s = (struct mips_option_stack *) xmalloc (sizeof *s);
16553 s->next = mips_opts_stack;
16554 s->options = mips_opts;
16555 mips_opts_stack = s;
16556 }
16557 else if (strcmp (name, "pop") == 0)
16558 {
16559 struct mips_option_stack *s;
16560
16561 s = mips_opts_stack;
16562 if (s == NULL)
16563 as_bad (_(".set pop with no .set push"));
16564 else
16565 {
16566 /* If we're changing the reorder mode we need to handle
16567 delay slots correctly. */
16568 if (s->options.noreorder && ! mips_opts.noreorder)
7d10b47d 16569 start_noreorder ();
252b5132 16570 else if (! s->options.noreorder && mips_opts.noreorder)
7d10b47d 16571 end_noreorder ();
252b5132
RH
16572
16573 mips_opts = s->options;
16574 mips_opts_stack = s->next;
16575 free (s);
16576 }
16577 }
aed1a261
RS
16578 else if (strcmp (name, "sym32") == 0)
16579 mips_opts.sym32 = TRUE;
16580 else if (strcmp (name, "nosym32") == 0)
16581 mips_opts.sym32 = FALSE;
e6559e01
JM
16582 else if (strchr (name, ','))
16583 {
16584 /* Generic ".set" directive; use the generic handler. */
16585 *input_line_pointer = ch;
16586 input_line_pointer = name;
16587 s_set (0);
16588 return;
16589 }
252b5132
RH
16590 else
16591 {
16592 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
16593 }
c6278170 16594 mips_check_isa_supports_ases ();
252b5132
RH
16595 *input_line_pointer = ch;
16596 demand_empty_rest_of_line ();
16597}
16598
16599/* Handle the .abicalls pseudo-op. I believe this is equivalent to
16600 .option pic2. It means to generate SVR4 PIC calls. */
16601
16602static void
17a2f251 16603s_abicalls (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
16604{
16605 mips_pic = SVR4_PIC;
143d77c5 16606 mips_abicalls = TRUE;
4d0d148d
TS
16607
16608 if (g_switch_seen && g_switch_value != 0)
16609 as_warn (_("-G may not be used with SVR4 PIC code"));
16610 g_switch_value = 0;
16611
252b5132
RH
16612 bfd_set_gp_size (stdoutput, 0);
16613 demand_empty_rest_of_line ();
16614}
16615
16616/* Handle the .cpload pseudo-op. This is used when generating SVR4
16617 PIC code. It sets the $gp register for the function based on the
16618 function address, which is in the register named in the argument.
16619 This uses a relocation against _gp_disp, which is handled specially
16620 by the linker. The result is:
16621 lui $gp,%hi(_gp_disp)
16622 addiu $gp,$gp,%lo(_gp_disp)
16623 addu $gp,$gp,.cpload argument
aa6975fb
ILT
16624 The .cpload argument is normally $25 == $t9.
16625
16626 The -mno-shared option changes this to:
bbe506e8
TS
16627 lui $gp,%hi(__gnu_local_gp)
16628 addiu $gp,$gp,%lo(__gnu_local_gp)
aa6975fb
ILT
16629 and the argument is ignored. This saves an instruction, but the
16630 resulting code is not position independent; it uses an absolute
bbe506e8
TS
16631 address for __gnu_local_gp. Thus code assembled with -mno-shared
16632 can go into an ordinary executable, but not into a shared library. */
252b5132
RH
16633
16634static void
17a2f251 16635s_cpload (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
16636{
16637 expressionS ex;
aa6975fb
ILT
16638 int reg;
16639 int in_shared;
252b5132 16640
6478892d
TS
16641 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
16642 .cpload is ignored. */
16643 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
16644 {
16645 s_ignore (0);
16646 return;
16647 }
16648
a276b80c
MR
16649 if (mips_opts.mips16)
16650 {
16651 as_bad (_("%s not supported in MIPS16 mode"), ".cpload");
16652 ignore_rest_of_line ();
16653 return;
16654 }
16655
d3ecfc59 16656 /* .cpload should be in a .set noreorder section. */
252b5132
RH
16657 if (mips_opts.noreorder == 0)
16658 as_warn (_(".cpload not in noreorder section"));
16659
aa6975fb
ILT
16660 reg = tc_get_register (0);
16661
16662 /* If we need to produce a 64-bit address, we are better off using
16663 the default instruction sequence. */
aed1a261 16664 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
aa6975fb 16665
252b5132 16666 ex.X_op = O_symbol;
bbe506e8
TS
16667 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
16668 "__gnu_local_gp");
252b5132
RH
16669 ex.X_op_symbol = NULL;
16670 ex.X_add_number = 0;
16671
16672 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
49309057 16673 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
252b5132 16674
8a75745d
MR
16675 mips_mark_labels ();
16676 mips_assembling_insn = TRUE;
16677
584892a6 16678 macro_start ();
67c0d1eb
RS
16679 macro_build_lui (&ex, mips_gp_register);
16680 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
17a2f251 16681 mips_gp_register, BFD_RELOC_LO16);
aa6975fb
ILT
16682 if (in_shared)
16683 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
16684 mips_gp_register, reg);
584892a6 16685 macro_end ();
252b5132 16686
8a75745d 16687 mips_assembling_insn = FALSE;
252b5132
RH
16688 demand_empty_rest_of_line ();
16689}
16690
6478892d
TS
16691/* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
16692 .cpsetup $reg1, offset|$reg2, label
16693
16694 If offset is given, this results in:
16695 sd $gp, offset($sp)
956cd1d6 16696 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
16697 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
16698 daddu $gp, $gp, $reg1
6478892d
TS
16699
16700 If $reg2 is given, this results in:
16701 daddu $reg2, $gp, $0
956cd1d6 16702 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
16703 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
16704 daddu $gp, $gp, $reg1
aa6975fb
ILT
16705 $reg1 is normally $25 == $t9.
16706
16707 The -mno-shared option replaces the last three instructions with
16708 lui $gp,%hi(_gp)
54f4ddb3 16709 addiu $gp,$gp,%lo(_gp) */
aa6975fb 16710
6478892d 16711static void
17a2f251 16712s_cpsetup (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
16713{
16714 expressionS ex_off;
16715 expressionS ex_sym;
16716 int reg1;
6478892d 16717
8586fc66 16718 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
6478892d
TS
16719 We also need NewABI support. */
16720 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16721 {
16722 s_ignore (0);
16723 return;
16724 }
16725
a276b80c
MR
16726 if (mips_opts.mips16)
16727 {
16728 as_bad (_("%s not supported in MIPS16 mode"), ".cpsetup");
16729 ignore_rest_of_line ();
16730 return;
16731 }
16732
6478892d
TS
16733 reg1 = tc_get_register (0);
16734 SKIP_WHITESPACE ();
16735 if (*input_line_pointer != ',')
16736 {
16737 as_bad (_("missing argument separator ',' for .cpsetup"));
16738 return;
16739 }
16740 else
80245285 16741 ++input_line_pointer;
6478892d
TS
16742 SKIP_WHITESPACE ();
16743 if (*input_line_pointer == '$')
80245285
TS
16744 {
16745 mips_cpreturn_register = tc_get_register (0);
16746 mips_cpreturn_offset = -1;
16747 }
6478892d 16748 else
80245285
TS
16749 {
16750 mips_cpreturn_offset = get_absolute_expression ();
16751 mips_cpreturn_register = -1;
16752 }
6478892d
TS
16753 SKIP_WHITESPACE ();
16754 if (*input_line_pointer != ',')
16755 {
16756 as_bad (_("missing argument separator ',' for .cpsetup"));
16757 return;
16758 }
16759 else
f9419b05 16760 ++input_line_pointer;
6478892d 16761 SKIP_WHITESPACE ();
f21f8242 16762 expression (&ex_sym);
6478892d 16763
8a75745d
MR
16764 mips_mark_labels ();
16765 mips_assembling_insn = TRUE;
16766
584892a6 16767 macro_start ();
6478892d
TS
16768 if (mips_cpreturn_register == -1)
16769 {
16770 ex_off.X_op = O_constant;
16771 ex_off.X_add_symbol = NULL;
16772 ex_off.X_op_symbol = NULL;
16773 ex_off.X_add_number = mips_cpreturn_offset;
16774
67c0d1eb 16775 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
17a2f251 16776 BFD_RELOC_LO16, SP);
6478892d
TS
16777 }
16778 else
67c0d1eb 16779 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
17a2f251 16780 mips_gp_register, 0);
6478892d 16781
aed1a261 16782 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
aa6975fb 16783 {
df58fc94 16784 macro_build (&ex_sym, "lui", LUI_FMT, mips_gp_register,
aa6975fb
ILT
16785 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
16786 BFD_RELOC_HI16_S);
16787
16788 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
16789 mips_gp_register, -1, BFD_RELOC_GPREL16,
16790 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
16791
16792 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
16793 mips_gp_register, reg1);
16794 }
16795 else
16796 {
16797 expressionS ex;
16798
16799 ex.X_op = O_symbol;
4184909a 16800 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
aa6975fb
ILT
16801 ex.X_op_symbol = NULL;
16802 ex.X_add_number = 0;
6e1304d8 16803
aa6975fb
ILT
16804 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
16805 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
16806
16807 macro_build_lui (&ex, mips_gp_register);
16808 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
16809 mips_gp_register, BFD_RELOC_LO16);
16810 }
f21f8242 16811
584892a6 16812 macro_end ();
6478892d 16813
8a75745d 16814 mips_assembling_insn = FALSE;
6478892d
TS
16815 demand_empty_rest_of_line ();
16816}
16817
16818static void
17a2f251 16819s_cplocal (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
16820{
16821 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
54f4ddb3 16822 .cplocal is ignored. */
6478892d
TS
16823 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16824 {
16825 s_ignore (0);
16826 return;
16827 }
16828
a276b80c
MR
16829 if (mips_opts.mips16)
16830 {
16831 as_bad (_("%s not supported in MIPS16 mode"), ".cplocal");
16832 ignore_rest_of_line ();
16833 return;
16834 }
16835
6478892d 16836 mips_gp_register = tc_get_register (0);
85b51719 16837 demand_empty_rest_of_line ();
6478892d
TS
16838}
16839
252b5132
RH
16840/* Handle the .cprestore pseudo-op. This stores $gp into a given
16841 offset from $sp. The offset is remembered, and after making a PIC
16842 call $gp is restored from that location. */
16843
16844static void
17a2f251 16845s_cprestore (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
16846{
16847 expressionS ex;
252b5132 16848
6478892d 16849 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
c9914766 16850 .cprestore is ignored. */
6478892d 16851 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
16852 {
16853 s_ignore (0);
16854 return;
16855 }
16856
a276b80c
MR
16857 if (mips_opts.mips16)
16858 {
16859 as_bad (_("%s not supported in MIPS16 mode"), ".cprestore");
16860 ignore_rest_of_line ();
16861 return;
16862 }
16863
252b5132 16864 mips_cprestore_offset = get_absolute_expression ();
7a621144 16865 mips_cprestore_valid = 1;
252b5132
RH
16866
16867 ex.X_op = O_constant;
16868 ex.X_add_symbol = NULL;
16869 ex.X_op_symbol = NULL;
16870 ex.X_add_number = mips_cprestore_offset;
16871
8a75745d
MR
16872 mips_mark_labels ();
16873 mips_assembling_insn = TRUE;
16874
584892a6 16875 macro_start ();
67c0d1eb
RS
16876 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
16877 SP, HAVE_64BIT_ADDRESSES);
584892a6 16878 macro_end ();
252b5132 16879
8a75745d 16880 mips_assembling_insn = FALSE;
252b5132
RH
16881 demand_empty_rest_of_line ();
16882}
16883
6478892d 16884/* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
67c1ffbe 16885 was given in the preceding .cpsetup, it results in:
6478892d 16886 ld $gp, offset($sp)
76b3015f 16887
6478892d 16888 If a register $reg2 was given there, it results in:
54f4ddb3
TS
16889 daddu $gp, $reg2, $0 */
16890
6478892d 16891static void
17a2f251 16892s_cpreturn (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
16893{
16894 expressionS ex;
6478892d
TS
16895
16896 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
16897 We also need NewABI support. */
16898 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16899 {
16900 s_ignore (0);
16901 return;
16902 }
16903
a276b80c
MR
16904 if (mips_opts.mips16)
16905 {
16906 as_bad (_("%s not supported in MIPS16 mode"), ".cpreturn");
16907 ignore_rest_of_line ();
16908 return;
16909 }
16910
8a75745d
MR
16911 mips_mark_labels ();
16912 mips_assembling_insn = TRUE;
16913
584892a6 16914 macro_start ();
6478892d
TS
16915 if (mips_cpreturn_register == -1)
16916 {
16917 ex.X_op = O_constant;
16918 ex.X_add_symbol = NULL;
16919 ex.X_op_symbol = NULL;
16920 ex.X_add_number = mips_cpreturn_offset;
16921
67c0d1eb 16922 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
6478892d
TS
16923 }
16924 else
67c0d1eb 16925 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
17a2f251 16926 mips_cpreturn_register, 0);
584892a6 16927 macro_end ();
6478892d 16928
8a75745d 16929 mips_assembling_insn = FALSE;
6478892d
TS
16930 demand_empty_rest_of_line ();
16931}
16932
d0f13682
CLT
16933/* Handle a .dtprelword, .dtpreldword, .tprelword, or .tpreldword
16934 pseudo-op; DIRSTR says which. The pseudo-op generates a BYTES-size
16935 DTP- or TP-relative relocation of type RTYPE, for use in either DWARF
16936 debug information or MIPS16 TLS. */
741d6ea8
JM
16937
16938static void
d0f13682
CLT
16939s_tls_rel_directive (const size_t bytes, const char *dirstr,
16940 bfd_reloc_code_real_type rtype)
741d6ea8
JM
16941{
16942 expressionS ex;
16943 char *p;
16944
16945 expression (&ex);
16946
16947 if (ex.X_op != O_symbol)
16948 {
d0f13682 16949 as_bad (_("Unsupported use of %s"), dirstr);
741d6ea8
JM
16950 ignore_rest_of_line ();
16951 }
16952
16953 p = frag_more (bytes);
16954 md_number_to_chars (p, 0, bytes);
d0f13682 16955 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, rtype);
741d6ea8 16956 demand_empty_rest_of_line ();
de64cffd 16957 mips_clear_insn_labels ();
741d6ea8
JM
16958}
16959
16960/* Handle .dtprelword. */
16961
16962static void
16963s_dtprelword (int ignore ATTRIBUTE_UNUSED)
16964{
d0f13682 16965 s_tls_rel_directive (4, ".dtprelword", BFD_RELOC_MIPS_TLS_DTPREL32);
741d6ea8
JM
16966}
16967
16968/* Handle .dtpreldword. */
16969
16970static void
16971s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
16972{
d0f13682
CLT
16973 s_tls_rel_directive (8, ".dtpreldword", BFD_RELOC_MIPS_TLS_DTPREL64);
16974}
16975
16976/* Handle .tprelword. */
16977
16978static void
16979s_tprelword (int ignore ATTRIBUTE_UNUSED)
16980{
16981 s_tls_rel_directive (4, ".tprelword", BFD_RELOC_MIPS_TLS_TPREL32);
16982}
16983
16984/* Handle .tpreldword. */
16985
16986static void
16987s_tpreldword (int ignore ATTRIBUTE_UNUSED)
16988{
16989 s_tls_rel_directive (8, ".tpreldword", BFD_RELOC_MIPS_TLS_TPREL64);
741d6ea8
JM
16990}
16991
6478892d
TS
16992/* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
16993 code. It sets the offset to use in gp_rel relocations. */
16994
16995static void
17a2f251 16996s_gpvalue (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
16997{
16998 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
16999 We also need NewABI support. */
17000 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
17001 {
17002 s_ignore (0);
17003 return;
17004 }
17005
def2e0dd 17006 mips_gprel_offset = get_absolute_expression ();
6478892d
TS
17007
17008 demand_empty_rest_of_line ();
17009}
17010
252b5132
RH
17011/* Handle the .gpword pseudo-op. This is used when generating PIC
17012 code. It generates a 32 bit GP relative reloc. */
17013
17014static void
17a2f251 17015s_gpword (int ignore ATTRIBUTE_UNUSED)
252b5132 17016{
a8dbcb85
TS
17017 segment_info_type *si;
17018 struct insn_label_list *l;
252b5132
RH
17019 expressionS ex;
17020 char *p;
17021
17022 /* When not generating PIC code, this is treated as .word. */
17023 if (mips_pic != SVR4_PIC)
17024 {
17025 s_cons (2);
17026 return;
17027 }
17028
a8dbcb85
TS
17029 si = seg_info (now_seg);
17030 l = si->label_list;
7d10b47d 17031 mips_emit_delays ();
252b5132 17032 if (auto_align)
462427c4 17033 mips_align (2, 0, l);
252b5132
RH
17034
17035 expression (&ex);
a1facbec 17036 mips_clear_insn_labels ();
252b5132
RH
17037
17038 if (ex.X_op != O_symbol || ex.X_add_number != 0)
17039 {
17040 as_bad (_("Unsupported use of .gpword"));
17041 ignore_rest_of_line ();
17042 }
17043
17044 p = frag_more (4);
17a2f251 17045 md_number_to_chars (p, 0, 4);
b34976b6 17046 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
cdf6fd85 17047 BFD_RELOC_GPREL32);
252b5132
RH
17048
17049 demand_empty_rest_of_line ();
17050}
17051
10181a0d 17052static void
17a2f251 17053s_gpdword (int ignore ATTRIBUTE_UNUSED)
10181a0d 17054{
a8dbcb85
TS
17055 segment_info_type *si;
17056 struct insn_label_list *l;
10181a0d
AO
17057 expressionS ex;
17058 char *p;
17059
17060 /* When not generating PIC code, this is treated as .dword. */
17061 if (mips_pic != SVR4_PIC)
17062 {
17063 s_cons (3);
17064 return;
17065 }
17066
a8dbcb85
TS
17067 si = seg_info (now_seg);
17068 l = si->label_list;
7d10b47d 17069 mips_emit_delays ();
10181a0d 17070 if (auto_align)
462427c4 17071 mips_align (3, 0, l);
10181a0d
AO
17072
17073 expression (&ex);
a1facbec 17074 mips_clear_insn_labels ();
10181a0d
AO
17075
17076 if (ex.X_op != O_symbol || ex.X_add_number != 0)
17077 {
17078 as_bad (_("Unsupported use of .gpdword"));
17079 ignore_rest_of_line ();
17080 }
17081
17082 p = frag_more (8);
17a2f251 17083 md_number_to_chars (p, 0, 8);
a105a300 17084 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
6e1304d8 17085 BFD_RELOC_GPREL32)->fx_tcbit = 1;
10181a0d
AO
17086
17087 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
6e1304d8
RS
17088 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
17089 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
10181a0d
AO
17090
17091 demand_empty_rest_of_line ();
17092}
17093
a3f278e2
CM
17094/* Handle the .ehword pseudo-op. This is used when generating unwinding
17095 tables. It generates a R_MIPS_EH reloc. */
17096
17097static void
17098s_ehword (int ignore ATTRIBUTE_UNUSED)
17099{
17100 expressionS ex;
17101 char *p;
17102
17103 mips_emit_delays ();
17104
17105 expression (&ex);
17106 mips_clear_insn_labels ();
17107
17108 if (ex.X_op != O_symbol || ex.X_add_number != 0)
17109 {
17110 as_bad (_("Unsupported use of .ehword"));
17111 ignore_rest_of_line ();
17112 }
17113
17114 p = frag_more (4);
17115 md_number_to_chars (p, 0, 4);
17116 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
17117 BFD_RELOC_MIPS_EH);
17118
17119 demand_empty_rest_of_line ();
17120}
17121
252b5132
RH
17122/* Handle the .cpadd pseudo-op. This is used when dealing with switch
17123 tables in SVR4 PIC code. */
17124
17125static void
17a2f251 17126s_cpadd (int ignore ATTRIBUTE_UNUSED)
252b5132 17127{
252b5132
RH
17128 int reg;
17129
10181a0d
AO
17130 /* This is ignored when not generating SVR4 PIC code. */
17131 if (mips_pic != SVR4_PIC)
252b5132
RH
17132 {
17133 s_ignore (0);
17134 return;
17135 }
17136
8a75745d
MR
17137 mips_mark_labels ();
17138 mips_assembling_insn = TRUE;
17139
252b5132 17140 /* Add $gp to the register named as an argument. */
584892a6 17141 macro_start ();
252b5132 17142 reg = tc_get_register (0);
67c0d1eb 17143 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
584892a6 17144 macro_end ();
252b5132 17145
8a75745d 17146 mips_assembling_insn = FALSE;
bdaaa2e1 17147 demand_empty_rest_of_line ();
252b5132
RH
17148}
17149
17150/* Handle the .insn pseudo-op. This marks instruction labels in
df58fc94 17151 mips16/micromips mode. This permits the linker to handle them specially,
252b5132
RH
17152 such as generating jalx instructions when needed. We also make
17153 them odd for the duration of the assembly, in order to generate the
17154 right sort of code. We will make them even in the adjust_symtab
17155 routine, while leaving them marked. This is convenient for the
17156 debugger and the disassembler. The linker knows to make them odd
17157 again. */
17158
17159static void
17a2f251 17160s_insn (int ignore ATTRIBUTE_UNUSED)
252b5132 17161{
df58fc94 17162 mips_mark_labels ();
252b5132
RH
17163
17164 demand_empty_rest_of_line ();
17165}
17166
ba92f887
MR
17167/* Handle the .nan pseudo-op. */
17168
17169static void
17170s_nan (int ignore ATTRIBUTE_UNUSED)
17171{
17172 static const char str_legacy[] = "legacy";
17173 static const char str_2008[] = "2008";
17174 size_t i;
17175
17176 for (i = 0; !is_end_of_line[(unsigned char) input_line_pointer[i]]; i++);
17177
17178 if (i == sizeof (str_2008) - 1
17179 && memcmp (input_line_pointer, str_2008, i) == 0)
17180 mips_flag_nan2008 = TRUE;
17181 else if (i == sizeof (str_legacy) - 1
17182 && memcmp (input_line_pointer, str_legacy, i) == 0)
17183 mips_flag_nan2008 = FALSE;
17184 else
17185 as_bad (_("Bad .nan directive"));
17186
17187 input_line_pointer += i;
17188 demand_empty_rest_of_line ();
17189}
17190
754e2bb9
RS
17191/* Handle a .stab[snd] directive. Ideally these directives would be
17192 implemented in a transparent way, so that removing them would not
17193 have any effect on the generated instructions. However, s_stab
17194 internally changes the section, so in practice we need to decide
17195 now whether the preceding label marks compressed code. We do not
17196 support changing the compression mode of a label after a .stab*
17197 directive, such as in:
17198
17199 foo:
17200 .stabs ...
17201 .set mips16
17202
17203 so the current mode wins. */
252b5132
RH
17204
17205static void
17a2f251 17206s_mips_stab (int type)
252b5132 17207{
754e2bb9 17208 mips_mark_labels ();
252b5132
RH
17209 s_stab (type);
17210}
17211
54f4ddb3 17212/* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
252b5132
RH
17213
17214static void
17a2f251 17215s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
17216{
17217 char *name;
17218 int c;
17219 symbolS *symbolP;
17220 expressionS exp;
17221
17222 name = input_line_pointer;
17223 c = get_symbol_end ();
17224 symbolP = symbol_find_or_make (name);
17225 S_SET_WEAK (symbolP);
17226 *input_line_pointer = c;
17227
17228 SKIP_WHITESPACE ();
17229
17230 if (! is_end_of_line[(unsigned char) *input_line_pointer])
17231 {
17232 if (S_IS_DEFINED (symbolP))
17233 {
20203fb9 17234 as_bad (_("ignoring attempt to redefine symbol %s"),
252b5132
RH
17235 S_GET_NAME (symbolP));
17236 ignore_rest_of_line ();
17237 return;
17238 }
bdaaa2e1 17239
252b5132
RH
17240 if (*input_line_pointer == ',')
17241 {
17242 ++input_line_pointer;
17243 SKIP_WHITESPACE ();
17244 }
bdaaa2e1 17245
252b5132
RH
17246 expression (&exp);
17247 if (exp.X_op != O_symbol)
17248 {
20203fb9 17249 as_bad (_("bad .weakext directive"));
98d3f06f 17250 ignore_rest_of_line ();
252b5132
RH
17251 return;
17252 }
49309057 17253 symbol_set_value_expression (symbolP, &exp);
252b5132
RH
17254 }
17255
17256 demand_empty_rest_of_line ();
17257}
17258
17259/* Parse a register string into a number. Called from the ECOFF code
17260 to parse .frame. The argument is non-zero if this is the frame
17261 register, so that we can record it in mips_frame_reg. */
17262
17263int
17a2f251 17264tc_get_register (int frame)
252b5132 17265{
707bfff6 17266 unsigned int reg;
252b5132
RH
17267
17268 SKIP_WHITESPACE ();
707bfff6
TS
17269 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
17270 reg = 0;
252b5132 17271 if (frame)
7a621144
DJ
17272 {
17273 mips_frame_reg = reg != 0 ? reg : SP;
17274 mips_frame_reg_valid = 1;
17275 mips_cprestore_valid = 0;
17276 }
252b5132
RH
17277 return reg;
17278}
17279
17280valueT
17a2f251 17281md_section_align (asection *seg, valueT addr)
252b5132
RH
17282{
17283 int align = bfd_get_section_alignment (stdoutput, seg);
17284
f3ded42a
RS
17285 /* We don't need to align ELF sections to the full alignment.
17286 However, Irix 5 may prefer that we align them at least to a 16
17287 byte boundary. We don't bother to align the sections if we
17288 are targeted for an embedded system. */
17289 if (strncmp (TARGET_OS, "elf", 3) == 0)
17290 return addr;
17291 if (align > 4)
17292 align = 4;
252b5132
RH
17293
17294 return ((addr + (1 << align) - 1) & (-1 << align));
17295}
17296
17297/* Utility routine, called from above as well. If called while the
17298 input file is still being read, it's only an approximation. (For
17299 example, a symbol may later become defined which appeared to be
17300 undefined earlier.) */
17301
17302static int
17a2f251 17303nopic_need_relax (symbolS *sym, int before_relaxing)
252b5132
RH
17304{
17305 if (sym == 0)
17306 return 0;
17307
4d0d148d 17308 if (g_switch_value > 0)
252b5132
RH
17309 {
17310 const char *symname;
17311 int change;
17312
c9914766 17313 /* Find out whether this symbol can be referenced off the $gp
252b5132
RH
17314 register. It can be if it is smaller than the -G size or if
17315 it is in the .sdata or .sbss section. Certain symbols can
c9914766 17316 not be referenced off the $gp, although it appears as though
252b5132
RH
17317 they can. */
17318 symname = S_GET_NAME (sym);
17319 if (symname != (const char *) NULL
17320 && (strcmp (symname, "eprol") == 0
17321 || strcmp (symname, "etext") == 0
17322 || strcmp (symname, "_gp") == 0
17323 || strcmp (symname, "edata") == 0
17324 || strcmp (symname, "_fbss") == 0
17325 || strcmp (symname, "_fdata") == 0
17326 || strcmp (symname, "_ftext") == 0
17327 || strcmp (symname, "end") == 0
17328 || strcmp (symname, "_gp_disp") == 0))
17329 change = 1;
17330 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
17331 && (0
17332#ifndef NO_ECOFF_DEBUGGING
49309057
ILT
17333 || (symbol_get_obj (sym)->ecoff_extern_size != 0
17334 && (symbol_get_obj (sym)->ecoff_extern_size
17335 <= g_switch_value))
252b5132
RH
17336#endif
17337 /* We must defer this decision until after the whole
17338 file has been read, since there might be a .extern
17339 after the first use of this symbol. */
17340 || (before_relaxing
17341#ifndef NO_ECOFF_DEBUGGING
49309057 17342 && symbol_get_obj (sym)->ecoff_extern_size == 0
252b5132
RH
17343#endif
17344 && S_GET_VALUE (sym) == 0)
17345 || (S_GET_VALUE (sym) != 0
17346 && S_GET_VALUE (sym) <= g_switch_value)))
17347 change = 0;
17348 else
17349 {
17350 const char *segname;
17351
17352 segname = segment_name (S_GET_SEGMENT (sym));
9c2799c2 17353 gas_assert (strcmp (segname, ".lit8") != 0
252b5132
RH
17354 && strcmp (segname, ".lit4") != 0);
17355 change = (strcmp (segname, ".sdata") != 0
fba2b7f9
GK
17356 && strcmp (segname, ".sbss") != 0
17357 && strncmp (segname, ".sdata.", 7) != 0
d4dc2f22
TS
17358 && strncmp (segname, ".sbss.", 6) != 0
17359 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
fba2b7f9 17360 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
252b5132
RH
17361 }
17362 return change;
17363 }
17364 else
c9914766 17365 /* We are not optimizing for the $gp register. */
252b5132
RH
17366 return 1;
17367}
17368
5919d012
RS
17369
17370/* Return true if the given symbol should be considered local for SVR4 PIC. */
17371
17372static bfd_boolean
17a2f251 17373pic_need_relax (symbolS *sym, asection *segtype)
5919d012
RS
17374{
17375 asection *symsec;
5919d012
RS
17376
17377 /* Handle the case of a symbol equated to another symbol. */
17378 while (symbol_equated_reloc_p (sym))
17379 {
17380 symbolS *n;
17381
5f0fe04b 17382 /* It's possible to get a loop here in a badly written program. */
5919d012
RS
17383 n = symbol_get_value_expression (sym)->X_add_symbol;
17384 if (n == sym)
17385 break;
17386 sym = n;
17387 }
17388
df1f3cda
DD
17389 if (symbol_section_p (sym))
17390 return TRUE;
17391
5919d012
RS
17392 symsec = S_GET_SEGMENT (sym);
17393
5919d012 17394 /* This must duplicate the test in adjust_reloc_syms. */
45dfa85a
AM
17395 return (!bfd_is_und_section (symsec)
17396 && !bfd_is_abs_section (symsec)
5f0fe04b
TS
17397 && !bfd_is_com_section (symsec)
17398 && !s_is_linkonce (sym, segtype)
5919d012 17399 /* A global or weak symbol is treated as external. */
f3ded42a 17400 && (!S_IS_WEAK (sym) && !S_IS_EXTERNAL (sym)));
5919d012
RS
17401}
17402
17403
252b5132
RH
17404/* Given a mips16 variant frag FRAGP, return non-zero if it needs an
17405 extended opcode. SEC is the section the frag is in. */
17406
17407static int
17a2f251 17408mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
252b5132
RH
17409{
17410 int type;
3994f87e 17411 const struct mips16_immed_operand *op;
252b5132
RH
17412 offsetT val;
17413 int mintiny, maxtiny;
17414 segT symsec;
98aa84af 17415 fragS *sym_frag;
252b5132
RH
17416
17417 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
17418 return 0;
17419 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
17420 return 1;
17421
17422 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
17423 op = mips16_immed_operands;
17424 while (op->type != type)
17425 {
17426 ++op;
9c2799c2 17427 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
252b5132
RH
17428 }
17429
17430 if (op->unsp)
17431 {
17432 if (type == '<' || type == '>' || type == '[' || type == ']')
17433 {
17434 mintiny = 1;
17435 maxtiny = 1 << op->nbits;
17436 }
17437 else
17438 {
17439 mintiny = 0;
17440 maxtiny = (1 << op->nbits) - 1;
17441 }
17442 }
17443 else
17444 {
17445 mintiny = - (1 << (op->nbits - 1));
17446 maxtiny = (1 << (op->nbits - 1)) - 1;
17447 }
17448
98aa84af 17449 sym_frag = symbol_get_frag (fragp->fr_symbol);
ac62c346 17450 val = S_GET_VALUE (fragp->fr_symbol);
98aa84af 17451 symsec = S_GET_SEGMENT (fragp->fr_symbol);
252b5132
RH
17452
17453 if (op->pcrel)
17454 {
17455 addressT addr;
17456
17457 /* We won't have the section when we are called from
17458 mips_relax_frag. However, we will always have been called
17459 from md_estimate_size_before_relax first. If this is a
17460 branch to a different section, we mark it as such. If SEC is
17461 NULL, and the frag is not marked, then it must be a branch to
17462 the same section. */
17463 if (sec == NULL)
17464 {
17465 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
17466 return 1;
17467 }
17468 else
17469 {
98aa84af 17470 /* Must have been called from md_estimate_size_before_relax. */
252b5132
RH
17471 if (symsec != sec)
17472 {
17473 fragp->fr_subtype =
17474 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17475
17476 /* FIXME: We should support this, and let the linker
17477 catch branches and loads that are out of range. */
17478 as_bad_where (fragp->fr_file, fragp->fr_line,
17479 _("unsupported PC relative reference to different section"));
17480
17481 return 1;
17482 }
98aa84af
AM
17483 if (fragp != sym_frag && sym_frag->fr_address == 0)
17484 /* Assume non-extended on the first relaxation pass.
17485 The address we have calculated will be bogus if this is
17486 a forward branch to another frag, as the forward frag
17487 will have fr_address == 0. */
17488 return 0;
252b5132
RH
17489 }
17490
17491 /* In this case, we know for sure that the symbol fragment is in
98aa84af
AM
17492 the same section. If the relax_marker of the symbol fragment
17493 differs from the relax_marker of this fragment, we have not
17494 yet adjusted the symbol fragment fr_address. We want to add
252b5132
RH
17495 in STRETCH in order to get a better estimate of the address.
17496 This particularly matters because of the shift bits. */
17497 if (stretch != 0
98aa84af 17498 && sym_frag->relax_marker != fragp->relax_marker)
252b5132
RH
17499 {
17500 fragS *f;
17501
17502 /* Adjust stretch for any alignment frag. Note that if have
17503 been expanding the earlier code, the symbol may be
17504 defined in what appears to be an earlier frag. FIXME:
17505 This doesn't handle the fr_subtype field, which specifies
17506 a maximum number of bytes to skip when doing an
17507 alignment. */
98aa84af 17508 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
252b5132
RH
17509 {
17510 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
17511 {
17512 if (stretch < 0)
17513 stretch = - ((- stretch)
17514 & ~ ((1 << (int) f->fr_offset) - 1));
17515 else
17516 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
17517 if (stretch == 0)
17518 break;
17519 }
17520 }
17521 if (f != NULL)
17522 val += stretch;
17523 }
17524
17525 addr = fragp->fr_address + fragp->fr_fix;
17526
17527 /* The base address rules are complicated. The base address of
17528 a branch is the following instruction. The base address of a
17529 PC relative load or add is the instruction itself, but if it
17530 is in a delay slot (in which case it can not be extended) use
17531 the address of the instruction whose delay slot it is in. */
17532 if (type == 'p' || type == 'q')
17533 {
17534 addr += 2;
17535
17536 /* If we are currently assuming that this frag should be
17537 extended, then, the current address is two bytes
bdaaa2e1 17538 higher. */
252b5132
RH
17539 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17540 addr += 2;
17541
17542 /* Ignore the low bit in the target, since it will be set
17543 for a text label. */
17544 if ((val & 1) != 0)
17545 --val;
17546 }
17547 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
17548 addr -= 4;
17549 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
17550 addr -= 2;
17551
17552 val -= addr & ~ ((1 << op->shift) - 1);
17553
17554 /* Branch offsets have an implicit 0 in the lowest bit. */
17555 if (type == 'p' || type == 'q')
17556 val /= 2;
17557
17558 /* If any of the shifted bits are set, we must use an extended
17559 opcode. If the address depends on the size of this
17560 instruction, this can lead to a loop, so we arrange to always
17561 use an extended opcode. We only check this when we are in
17562 the main relaxation loop, when SEC is NULL. */
17563 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
17564 {
17565 fragp->fr_subtype =
17566 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17567 return 1;
17568 }
17569
17570 /* If we are about to mark a frag as extended because the value
17571 is precisely maxtiny + 1, then there is a chance of an
17572 infinite loop as in the following code:
17573 la $4,foo
17574 .skip 1020
17575 .align 2
17576 foo:
17577 In this case when the la is extended, foo is 0x3fc bytes
17578 away, so the la can be shrunk, but then foo is 0x400 away, so
17579 the la must be extended. To avoid this loop, we mark the
17580 frag as extended if it was small, and is about to become
17581 extended with a value of maxtiny + 1. */
17582 if (val == ((maxtiny + 1) << op->shift)
17583 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
17584 && sec == NULL)
17585 {
17586 fragp->fr_subtype =
17587 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17588 return 1;
17589 }
17590 }
17591 else if (symsec != absolute_section && sec != NULL)
17592 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
17593
17594 if ((val & ((1 << op->shift) - 1)) != 0
17595 || val < (mintiny << op->shift)
17596 || val > (maxtiny << op->shift))
17597 return 1;
17598 else
17599 return 0;
17600}
17601
4a6a3df4
AO
17602/* Compute the length of a branch sequence, and adjust the
17603 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
17604 worst-case length is computed, with UPDATE being used to indicate
17605 whether an unconditional (-1), branch-likely (+1) or regular (0)
17606 branch is to be computed. */
17607static int
17a2f251 17608relaxed_branch_length (fragS *fragp, asection *sec, int update)
4a6a3df4 17609{
b34976b6 17610 bfd_boolean toofar;
4a6a3df4
AO
17611 int length;
17612
17613 if (fragp
17614 && S_IS_DEFINED (fragp->fr_symbol)
17615 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17616 {
17617 addressT addr;
17618 offsetT val;
17619
17620 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17621
17622 addr = fragp->fr_address + fragp->fr_fix + 4;
17623
17624 val -= addr;
17625
17626 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
17627 }
17628 else if (fragp)
17629 /* If the symbol is not defined or it's in a different segment,
17630 assume the user knows what's going on and emit a short
17631 branch. */
b34976b6 17632 toofar = FALSE;
4a6a3df4 17633 else
b34976b6 17634 toofar = TRUE;
4a6a3df4
AO
17635
17636 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
17637 fragp->fr_subtype
66b3e8da
MR
17638 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
17639 RELAX_BRANCH_UNCOND (fragp->fr_subtype),
4a6a3df4
AO
17640 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
17641 RELAX_BRANCH_LINK (fragp->fr_subtype),
17642 toofar);
17643
17644 length = 4;
17645 if (toofar)
17646 {
17647 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
17648 length += 8;
17649
17650 if (mips_pic != NO_PIC)
17651 {
17652 /* Additional space for PIC loading of target address. */
17653 length += 8;
17654 if (mips_opts.isa == ISA_MIPS1)
17655 /* Additional space for $at-stabilizing nop. */
17656 length += 4;
17657 }
17658
17659 /* If branch is conditional. */
17660 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
17661 length += 8;
17662 }
b34976b6 17663
4a6a3df4
AO
17664 return length;
17665}
17666
df58fc94
RS
17667/* Compute the length of a branch sequence, and adjust the
17668 RELAX_MICROMIPS_TOOFAR32 bit accordingly. If FRAGP is NULL, the
17669 worst-case length is computed, with UPDATE being used to indicate
17670 whether an unconditional (-1), or regular (0) branch is to be
17671 computed. */
17672
17673static int
17674relaxed_micromips_32bit_branch_length (fragS *fragp, asection *sec, int update)
17675{
17676 bfd_boolean toofar;
17677 int length;
17678
17679 if (fragp
17680 && S_IS_DEFINED (fragp->fr_symbol)
17681 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17682 {
17683 addressT addr;
17684 offsetT val;
17685
17686 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17687 /* Ignore the low bit in the target, since it will be set
17688 for a text label. */
17689 if ((val & 1) != 0)
17690 --val;
17691
17692 addr = fragp->fr_address + fragp->fr_fix + 4;
17693
17694 val -= addr;
17695
17696 toofar = val < - (0x8000 << 1) || val >= (0x8000 << 1);
17697 }
17698 else if (fragp)
17699 /* If the symbol is not defined or it's in a different segment,
17700 assume the user knows what's going on and emit a short
17701 branch. */
17702 toofar = FALSE;
17703 else
17704 toofar = TRUE;
17705
17706 if (fragp && update
17707 && toofar != RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17708 fragp->fr_subtype = (toofar
17709 ? RELAX_MICROMIPS_MARK_TOOFAR32 (fragp->fr_subtype)
17710 : RELAX_MICROMIPS_CLEAR_TOOFAR32 (fragp->fr_subtype));
17711
17712 length = 4;
17713 if (toofar)
17714 {
17715 bfd_boolean compact_known = fragp != NULL;
17716 bfd_boolean compact = FALSE;
17717 bfd_boolean uncond;
17718
17719 if (compact_known)
17720 compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
17721 if (fragp)
17722 uncond = RELAX_MICROMIPS_UNCOND (fragp->fr_subtype);
17723 else
17724 uncond = update < 0;
17725
17726 /* If label is out of range, we turn branch <br>:
17727
17728 <br> label # 4 bytes
17729 0:
17730
17731 into:
17732
17733 j label # 4 bytes
17734 nop # 2 bytes if compact && !PIC
17735 0:
17736 */
17737 if (mips_pic == NO_PIC && (!compact_known || compact))
17738 length += 2;
17739
17740 /* If assembling PIC code, we further turn:
17741
17742 j label # 4 bytes
17743
17744 into:
17745
17746 lw/ld at, %got(label)(gp) # 4 bytes
17747 d/addiu at, %lo(label) # 4 bytes
17748 jr/c at # 2 bytes
17749 */
17750 if (mips_pic != NO_PIC)
17751 length += 6;
17752
17753 /* If branch <br> is conditional, we prepend negated branch <brneg>:
17754
17755 <brneg> 0f # 4 bytes
17756 nop # 2 bytes if !compact
17757 */
17758 if (!uncond)
17759 length += (compact_known && compact) ? 4 : 6;
17760 }
17761
17762 return length;
17763}
17764
17765/* Compute the length of a branch, and adjust the RELAX_MICROMIPS_TOOFAR16
17766 bit accordingly. */
17767
17768static int
17769relaxed_micromips_16bit_branch_length (fragS *fragp, asection *sec, int update)
17770{
17771 bfd_boolean toofar;
17772
df58fc94
RS
17773 if (fragp
17774 && S_IS_DEFINED (fragp->fr_symbol)
17775 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17776 {
17777 addressT addr;
17778 offsetT val;
17779 int type;
17780
17781 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17782 /* Ignore the low bit in the target, since it will be set
17783 for a text label. */
17784 if ((val & 1) != 0)
17785 --val;
17786
17787 /* Assume this is a 2-byte branch. */
17788 addr = fragp->fr_address + fragp->fr_fix + 2;
17789
17790 /* We try to avoid the infinite loop by not adding 2 more bytes for
17791 long branches. */
17792
17793 val -= addr;
17794
17795 type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
17796 if (type == 'D')
17797 toofar = val < - (0x200 << 1) || val >= (0x200 << 1);
17798 else if (type == 'E')
17799 toofar = val < - (0x40 << 1) || val >= (0x40 << 1);
17800 else
17801 abort ();
17802 }
17803 else
17804 /* If the symbol is not defined or it's in a different segment,
17805 we emit a normal 32-bit branch. */
17806 toofar = TRUE;
17807
17808 if (fragp && update
17809 && toofar != RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
17810 fragp->fr_subtype
17811 = toofar ? RELAX_MICROMIPS_MARK_TOOFAR16 (fragp->fr_subtype)
17812 : RELAX_MICROMIPS_CLEAR_TOOFAR16 (fragp->fr_subtype);
17813
17814 if (toofar)
17815 return 4;
17816
17817 return 2;
17818}
17819
252b5132
RH
17820/* Estimate the size of a frag before relaxing. Unless this is the
17821 mips16, we are not really relaxing here, and the final size is
17822 encoded in the subtype information. For the mips16, we have to
17823 decide whether we are using an extended opcode or not. */
17824
252b5132 17825int
17a2f251 17826md_estimate_size_before_relax (fragS *fragp, asection *segtype)
252b5132 17827{
5919d012 17828 int change;
252b5132 17829
4a6a3df4
AO
17830 if (RELAX_BRANCH_P (fragp->fr_subtype))
17831 {
17832
b34976b6
AM
17833 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
17834
4a6a3df4
AO
17835 return fragp->fr_var;
17836 }
17837
252b5132 17838 if (RELAX_MIPS16_P (fragp->fr_subtype))
177b4a6a
AO
17839 /* We don't want to modify the EXTENDED bit here; it might get us
17840 into infinite loops. We change it only in mips_relax_frag(). */
17841 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
252b5132 17842
df58fc94
RS
17843 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17844 {
17845 int length = 4;
17846
17847 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17848 length = relaxed_micromips_16bit_branch_length (fragp, segtype, FALSE);
17849 if (length == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17850 length = relaxed_micromips_32bit_branch_length (fragp, segtype, FALSE);
17851 fragp->fr_var = length;
17852
17853 return length;
17854 }
17855
252b5132 17856 if (mips_pic == NO_PIC)
5919d012 17857 change = nopic_need_relax (fragp->fr_symbol, 0);
252b5132 17858 else if (mips_pic == SVR4_PIC)
5919d012 17859 change = pic_need_relax (fragp->fr_symbol, segtype);
0a44bf69
RS
17860 else if (mips_pic == VXWORKS_PIC)
17861 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
17862 change = 0;
252b5132
RH
17863 else
17864 abort ();
17865
17866 if (change)
17867 {
4d7206a2 17868 fragp->fr_subtype |= RELAX_USE_SECOND;
4d7206a2 17869 return -RELAX_FIRST (fragp->fr_subtype);
252b5132 17870 }
4d7206a2
RS
17871 else
17872 return -RELAX_SECOND (fragp->fr_subtype);
252b5132
RH
17873}
17874
17875/* This is called to see whether a reloc against a defined symbol
de7e6852 17876 should be converted into a reloc against a section. */
252b5132
RH
17877
17878int
17a2f251 17879mips_fix_adjustable (fixS *fixp)
252b5132 17880{
252b5132
RH
17881 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
17882 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17883 return 0;
a161fe53 17884
252b5132
RH
17885 if (fixp->fx_addsy == NULL)
17886 return 1;
a161fe53 17887
de7e6852
RS
17888 /* If symbol SYM is in a mergeable section, relocations of the form
17889 SYM + 0 can usually be made section-relative. The mergeable data
17890 is then identified by the section offset rather than by the symbol.
17891
17892 However, if we're generating REL LO16 relocations, the offset is split
17893 between the LO16 and parterning high part relocation. The linker will
17894 need to recalculate the complete offset in order to correctly identify
17895 the merge data.
17896
17897 The linker has traditionally not looked for the parterning high part
17898 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
17899 placed anywhere. Rather than break backwards compatibility by changing
17900 this, it seems better not to force the issue, and instead keep the
17901 original symbol. This will work with either linker behavior. */
738e5348 17902 if ((lo16_reloc_p (fixp->fx_r_type)
704803a9 17903 || reloc_needs_lo_p (fixp->fx_r_type))
de7e6852
RS
17904 && HAVE_IN_PLACE_ADDENDS
17905 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
17906 return 0;
17907
ce70d90a 17908 /* There is no place to store an in-place offset for JALR relocations.
2de39019
CM
17909 Likewise an in-range offset of limited PC-relative relocations may
17910 overflow the in-place relocatable field if recalculated against the
17911 start address of the symbol's containing section. */
ce70d90a 17912 if (HAVE_IN_PLACE_ADDENDS
2de39019
CM
17913 && (limited_pcrel_reloc_p (fixp->fx_r_type)
17914 || jalr_reloc_p (fixp->fx_r_type)))
1180b5a4
RS
17915 return 0;
17916
b314ec0e
RS
17917 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
17918 to a floating-point stub. The same is true for non-R_MIPS16_26
17919 relocations against MIPS16 functions; in this case, the stub becomes
17920 the function's canonical address.
17921
17922 Floating-point stubs are stored in unique .mips16.call.* or
17923 .mips16.fn.* sections. If a stub T for function F is in section S,
17924 the first relocation in section S must be against F; this is how the
17925 linker determines the target function. All relocations that might
17926 resolve to T must also be against F. We therefore have the following
17927 restrictions, which are given in an intentionally-redundant way:
17928
17929 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
17930 symbols.
17931
17932 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
17933 if that stub might be used.
17934
17935 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
17936 symbols.
17937
17938 4. We cannot reduce a stub's relocations against MIPS16 symbols if
17939 that stub might be used.
17940
17941 There is a further restriction:
17942
df58fc94
RS
17943 5. We cannot reduce jump relocations (R_MIPS_26, R_MIPS16_26 or
17944 R_MICROMIPS_26_S1) against MIPS16 or microMIPS symbols on
17945 targets with in-place addends; the relocation field cannot
b314ec0e
RS
17946 encode the low bit.
17947
df58fc94
RS
17948 For simplicity, we deal with (3)-(4) by not reducing _any_ relocation
17949 against a MIPS16 symbol. We deal with (5) by by not reducing any
17950 such relocations on REL targets.
b314ec0e
RS
17951
17952 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
17953 relocation against some symbol R, no relocation against R may be
17954 reduced. (Note that this deals with (2) as well as (1) because
17955 relocations against global symbols will never be reduced on ELF
17956 targets.) This approach is a little simpler than trying to detect
17957 stub sections, and gives the "all or nothing" per-symbol consistency
17958 that we have for MIPS16 symbols. */
f3ded42a 17959 if (fixp->fx_subsy == NULL
30c09090 17960 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
df58fc94
RS
17961 || *symbol_get_tc (fixp->fx_addsy)
17962 || (HAVE_IN_PLACE_ADDENDS
17963 && ELF_ST_IS_MICROMIPS (S_GET_OTHER (fixp->fx_addsy))
17964 && jmp_reloc_p (fixp->fx_r_type))))
252b5132 17965 return 0;
a161fe53 17966
252b5132
RH
17967 return 1;
17968}
17969
17970/* Translate internal representation of relocation info to BFD target
17971 format. */
17972
17973arelent **
17a2f251 17974tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
17975{
17976 static arelent *retval[4];
17977 arelent *reloc;
17978 bfd_reloc_code_real_type code;
17979
4b0cff4e
TS
17980 memset (retval, 0, sizeof(retval));
17981 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
49309057
ILT
17982 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
17983 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
17984 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
17985
bad36eac
DJ
17986 if (fixp->fx_pcrel)
17987 {
df58fc94
RS
17988 gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
17989 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
17990 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
b47468a6
CM
17991 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
17992 || fixp->fx_r_type == BFD_RELOC_32_PCREL);
bad36eac
DJ
17993
17994 /* At this point, fx_addnumber is "symbol offset - pcrel address".
17995 Relocations want only the symbol offset. */
17996 reloc->addend = fixp->fx_addnumber + reloc->address;
bad36eac
DJ
17997 }
17998 else
17999 reloc->addend = fixp->fx_addnumber;
252b5132 18000
438c16b8
TS
18001 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
18002 entry to be used in the relocation's section offset. */
18003 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
252b5132
RH
18004 {
18005 reloc->address = reloc->addend;
18006 reloc->addend = 0;
18007 }
18008
252b5132 18009 code = fixp->fx_r_type;
252b5132 18010
bad36eac 18011 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
252b5132
RH
18012 if (reloc->howto == NULL)
18013 {
18014 as_bad_where (fixp->fx_file, fixp->fx_line,
18015 _("Can not represent %s relocation in this object file format"),
18016 bfd_get_reloc_code_name (code));
18017 retval[0] = NULL;
18018 }
18019
18020 return retval;
18021}
18022
18023/* Relax a machine dependent frag. This returns the amount by which
18024 the current size of the frag should change. */
18025
18026int
17a2f251 18027mips_relax_frag (asection *sec, fragS *fragp, long stretch)
252b5132 18028{
4a6a3df4
AO
18029 if (RELAX_BRANCH_P (fragp->fr_subtype))
18030 {
18031 offsetT old_var = fragp->fr_var;
b34976b6
AM
18032
18033 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
4a6a3df4
AO
18034
18035 return fragp->fr_var - old_var;
18036 }
18037
df58fc94
RS
18038 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
18039 {
18040 offsetT old_var = fragp->fr_var;
18041 offsetT new_var = 4;
18042
18043 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
18044 new_var = relaxed_micromips_16bit_branch_length (fragp, sec, TRUE);
18045 if (new_var == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
18046 new_var = relaxed_micromips_32bit_branch_length (fragp, sec, TRUE);
18047 fragp->fr_var = new_var;
18048
18049 return new_var - old_var;
18050 }
18051
252b5132
RH
18052 if (! RELAX_MIPS16_P (fragp->fr_subtype))
18053 return 0;
18054
c4e7957c 18055 if (mips16_extended_frag (fragp, NULL, stretch))
252b5132
RH
18056 {
18057 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
18058 return 0;
18059 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
18060 return 2;
18061 }
18062 else
18063 {
18064 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
18065 return 0;
18066 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
18067 return -2;
18068 }
18069
18070 return 0;
18071}
18072
18073/* Convert a machine dependent frag. */
18074
18075void
17a2f251 18076md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
252b5132 18077{
4a6a3df4
AO
18078 if (RELAX_BRANCH_P (fragp->fr_subtype))
18079 {
4d68580a 18080 char *buf;
4a6a3df4
AO
18081 unsigned long insn;
18082 expressionS exp;
18083 fixS *fixp;
b34976b6 18084
4d68580a
RS
18085 buf = fragp->fr_literal + fragp->fr_fix;
18086 insn = read_insn (buf);
b34976b6 18087
4a6a3df4
AO
18088 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
18089 {
18090 /* We generate a fixup instead of applying it right now
18091 because, if there are linker relaxations, we're going to
18092 need the relocations. */
18093 exp.X_op = O_symbol;
18094 exp.X_add_symbol = fragp->fr_symbol;
18095 exp.X_add_number = fragp->fr_offset;
18096
4d68580a
RS
18097 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
18098 BFD_RELOC_16_PCREL_S2);
4a6a3df4
AO
18099 fixp->fx_file = fragp->fr_file;
18100 fixp->fx_line = fragp->fr_line;
b34976b6 18101
4d68580a 18102 buf = write_insn (buf, insn);
4a6a3df4
AO
18103 }
18104 else
18105 {
18106 int i;
18107
18108 as_warn_where (fragp->fr_file, fragp->fr_line,
5c4f07ba 18109 _("Relaxed out-of-range branch into a jump"));
4a6a3df4
AO
18110
18111 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
18112 goto uncond;
18113
18114 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
18115 {
18116 /* Reverse the branch. */
18117 switch ((insn >> 28) & 0xf)
18118 {
18119 case 4:
3bf0dbfb
MR
18120 /* bc[0-3][tf]l? instructions can have the condition
18121 reversed by tweaking a single TF bit, and their
18122 opcodes all have 0x4???????. */
18123 gas_assert ((insn & 0xf3e00000) == 0x41000000);
4a6a3df4
AO
18124 insn ^= 0x00010000;
18125 break;
18126
18127 case 0:
18128 /* bltz 0x04000000 bgez 0x04010000
54f4ddb3 18129 bltzal 0x04100000 bgezal 0x04110000 */
9c2799c2 18130 gas_assert ((insn & 0xfc0e0000) == 0x04000000);
4a6a3df4
AO
18131 insn ^= 0x00010000;
18132 break;
b34976b6 18133
4a6a3df4
AO
18134 case 1:
18135 /* beq 0x10000000 bne 0x14000000
54f4ddb3 18136 blez 0x18000000 bgtz 0x1c000000 */
4a6a3df4
AO
18137 insn ^= 0x04000000;
18138 break;
18139
18140 default:
18141 abort ();
18142 }
18143 }
18144
18145 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
18146 {
18147 /* Clear the and-link bit. */
9c2799c2 18148 gas_assert ((insn & 0xfc1c0000) == 0x04100000);
4a6a3df4 18149
54f4ddb3
TS
18150 /* bltzal 0x04100000 bgezal 0x04110000
18151 bltzall 0x04120000 bgezall 0x04130000 */
4a6a3df4
AO
18152 insn &= ~0x00100000;
18153 }
18154
18155 /* Branch over the branch (if the branch was likely) or the
18156 full jump (not likely case). Compute the offset from the
18157 current instruction to branch to. */
18158 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
18159 i = 16;
18160 else
18161 {
18162 /* How many bytes in instructions we've already emitted? */
4d68580a 18163 i = buf - fragp->fr_literal - fragp->fr_fix;
4a6a3df4
AO
18164 /* How many bytes in instructions from here to the end? */
18165 i = fragp->fr_var - i;
18166 }
18167 /* Convert to instruction count. */
18168 i >>= 2;
18169 /* Branch counts from the next instruction. */
b34976b6 18170 i--;
4a6a3df4
AO
18171 insn |= i;
18172 /* Branch over the jump. */
4d68580a 18173 buf = write_insn (buf, insn);
4a6a3df4 18174
54f4ddb3 18175 /* nop */
4d68580a 18176 buf = write_insn (buf, 0);
4a6a3df4
AO
18177
18178 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
18179 {
18180 /* beql $0, $0, 2f */
18181 insn = 0x50000000;
18182 /* Compute the PC offset from the current instruction to
18183 the end of the variable frag. */
18184 /* How many bytes in instructions we've already emitted? */
4d68580a 18185 i = buf - fragp->fr_literal - fragp->fr_fix;
4a6a3df4
AO
18186 /* How many bytes in instructions from here to the end? */
18187 i = fragp->fr_var - i;
18188 /* Convert to instruction count. */
18189 i >>= 2;
18190 /* Don't decrement i, because we want to branch over the
18191 delay slot. */
4a6a3df4 18192 insn |= i;
4a6a3df4 18193
4d68580a
RS
18194 buf = write_insn (buf, insn);
18195 buf = write_insn (buf, 0);
4a6a3df4
AO
18196 }
18197
18198 uncond:
18199 if (mips_pic == NO_PIC)
18200 {
18201 /* j or jal. */
18202 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
18203 ? 0x0c000000 : 0x08000000);
18204 exp.X_op = O_symbol;
18205 exp.X_add_symbol = fragp->fr_symbol;
18206 exp.X_add_number = fragp->fr_offset;
18207
4d68580a
RS
18208 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18209 FALSE, BFD_RELOC_MIPS_JMP);
4a6a3df4
AO
18210 fixp->fx_file = fragp->fr_file;
18211 fixp->fx_line = fragp->fr_line;
18212
4d68580a 18213 buf = write_insn (buf, insn);
4a6a3df4
AO
18214 }
18215 else
18216 {
66b3e8da
MR
18217 unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
18218
4a6a3df4 18219 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
66b3e8da
MR
18220 insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
18221 insn |= at << OP_SH_RT;
4a6a3df4
AO
18222 exp.X_op = O_symbol;
18223 exp.X_add_symbol = fragp->fr_symbol;
18224 exp.X_add_number = fragp->fr_offset;
18225
18226 if (fragp->fr_offset)
18227 {
18228 exp.X_add_symbol = make_expr_symbol (&exp);
18229 exp.X_add_number = 0;
18230 }
18231
4d68580a
RS
18232 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18233 FALSE, BFD_RELOC_MIPS_GOT16);
4a6a3df4
AO
18234 fixp->fx_file = fragp->fr_file;
18235 fixp->fx_line = fragp->fr_line;
18236
4d68580a 18237 buf = write_insn (buf, insn);
b34976b6 18238
4a6a3df4 18239 if (mips_opts.isa == ISA_MIPS1)
4d68580a
RS
18240 /* nop */
18241 buf = write_insn (buf, 0);
4a6a3df4
AO
18242
18243 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
66b3e8da
MR
18244 insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
18245 insn |= at << OP_SH_RS | at << OP_SH_RT;
4a6a3df4 18246
4d68580a
RS
18247 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18248 FALSE, BFD_RELOC_LO16);
4a6a3df4
AO
18249 fixp->fx_file = fragp->fr_file;
18250 fixp->fx_line = fragp->fr_line;
b34976b6 18251
4d68580a 18252 buf = write_insn (buf, insn);
4a6a3df4
AO
18253
18254 /* j(al)r $at. */
18255 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
66b3e8da 18256 insn = 0x0000f809;
4a6a3df4 18257 else
66b3e8da
MR
18258 insn = 0x00000008;
18259 insn |= at << OP_SH_RS;
4a6a3df4 18260
4d68580a 18261 buf = write_insn (buf, insn);
4a6a3df4
AO
18262 }
18263 }
18264
4a6a3df4 18265 fragp->fr_fix += fragp->fr_var;
4d68580a 18266 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
4a6a3df4
AO
18267 return;
18268 }
18269
df58fc94
RS
18270 /* Relax microMIPS branches. */
18271 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
18272 {
4d68580a 18273 char *buf = fragp->fr_literal + fragp->fr_fix;
df58fc94
RS
18274 bfd_boolean compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
18275 bfd_boolean al = RELAX_MICROMIPS_LINK (fragp->fr_subtype);
18276 int type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
2309ddf2 18277 bfd_boolean short_ds;
df58fc94
RS
18278 unsigned long insn;
18279 expressionS exp;
18280 fixS *fixp;
18281
18282 exp.X_op = O_symbol;
18283 exp.X_add_symbol = fragp->fr_symbol;
18284 exp.X_add_number = fragp->fr_offset;
18285
18286 fragp->fr_fix += fragp->fr_var;
18287
18288 /* Handle 16-bit branches that fit or are forced to fit. */
18289 if (type != 0 && !RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
18290 {
18291 /* We generate a fixup instead of applying it right now,
18292 because if there is linker relaxation, we're going to
18293 need the relocations. */
18294 if (type == 'D')
4d68580a 18295 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
df58fc94
RS
18296 BFD_RELOC_MICROMIPS_10_PCREL_S1);
18297 else if (type == 'E')
4d68580a 18298 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
df58fc94
RS
18299 BFD_RELOC_MICROMIPS_7_PCREL_S1);
18300 else
18301 abort ();
18302
18303 fixp->fx_file = fragp->fr_file;
18304 fixp->fx_line = fragp->fr_line;
18305
18306 /* These relocations can have an addend that won't fit in
18307 2 octets. */
18308 fixp->fx_no_overflow = 1;
18309
18310 return;
18311 }
18312
2309ddf2 18313 /* Handle 32-bit branches that fit or are forced to fit. */
df58fc94
RS
18314 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
18315 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
18316 {
18317 /* We generate a fixup instead of applying it right now,
18318 because if there is linker relaxation, we're going to
18319 need the relocations. */
4d68580a
RS
18320 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
18321 BFD_RELOC_MICROMIPS_16_PCREL_S1);
df58fc94
RS
18322 fixp->fx_file = fragp->fr_file;
18323 fixp->fx_line = fragp->fr_line;
18324
18325 if (type == 0)
18326 return;
18327 }
18328
18329 /* Relax 16-bit branches to 32-bit branches. */
18330 if (type != 0)
18331 {
4d68580a 18332 insn = read_compressed_insn (buf, 2);
df58fc94
RS
18333
18334 if ((insn & 0xfc00) == 0xcc00) /* b16 */
18335 insn = 0x94000000; /* beq */
18336 else if ((insn & 0xdc00) == 0x8c00) /* beqz16/bnez16 */
18337 {
18338 unsigned long regno;
18339
18340 regno = (insn >> MICROMIPSOP_SH_MD) & MICROMIPSOP_MASK_MD;
18341 regno = micromips_to_32_reg_d_map [regno];
18342 insn = ((insn & 0x2000) << 16) | 0x94000000; /* beq/bne */
18343 insn |= regno << MICROMIPSOP_SH_RS;
18344 }
18345 else
18346 abort ();
18347
18348 /* Nothing else to do, just write it out. */
18349 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
18350 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
18351 {
4d68580a
RS
18352 buf = write_compressed_insn (buf, insn, 4);
18353 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
df58fc94
RS
18354 return;
18355 }
18356 }
18357 else
4d68580a 18358 insn = read_compressed_insn (buf, 4);
df58fc94
RS
18359
18360 /* Relax 32-bit branches to a sequence of instructions. */
18361 as_warn_where (fragp->fr_file, fragp->fr_line,
18362 _("Relaxed out-of-range branch into a jump"));
18363
2309ddf2
MR
18364 /* Set the short-delay-slot bit. */
18365 short_ds = al && (insn & 0x02000000) != 0;
df58fc94
RS
18366
18367 if (!RELAX_MICROMIPS_UNCOND (fragp->fr_subtype))
18368 {
18369 symbolS *l;
18370
18371 /* Reverse the branch. */
18372 if ((insn & 0xfc000000) == 0x94000000 /* beq */
18373 || (insn & 0xfc000000) == 0xb4000000) /* bne */
18374 insn ^= 0x20000000;
18375 else if ((insn & 0xffe00000) == 0x40000000 /* bltz */
18376 || (insn & 0xffe00000) == 0x40400000 /* bgez */
18377 || (insn & 0xffe00000) == 0x40800000 /* blez */
18378 || (insn & 0xffe00000) == 0x40c00000 /* bgtz */
18379 || (insn & 0xffe00000) == 0x40a00000 /* bnezc */
18380 || (insn & 0xffe00000) == 0x40e00000 /* beqzc */
18381 || (insn & 0xffe00000) == 0x40200000 /* bltzal */
18382 || (insn & 0xffe00000) == 0x40600000 /* bgezal */
18383 || (insn & 0xffe00000) == 0x42200000 /* bltzals */
18384 || (insn & 0xffe00000) == 0x42600000) /* bgezals */
18385 insn ^= 0x00400000;
18386 else if ((insn & 0xffe30000) == 0x43800000 /* bc1f */
18387 || (insn & 0xffe30000) == 0x43a00000 /* bc1t */
18388 || (insn & 0xffe30000) == 0x42800000 /* bc2f */
18389 || (insn & 0xffe30000) == 0x42a00000) /* bc2t */
18390 insn ^= 0x00200000;
18391 else
18392 abort ();
18393
18394 if (al)
18395 {
18396 /* Clear the and-link and short-delay-slot bits. */
18397 gas_assert ((insn & 0xfda00000) == 0x40200000);
18398
18399 /* bltzal 0x40200000 bgezal 0x40600000 */
18400 /* bltzals 0x42200000 bgezals 0x42600000 */
18401 insn &= ~0x02200000;
18402 }
18403
18404 /* Make a label at the end for use with the branch. */
18405 l = symbol_new (micromips_label_name (), asec, fragp->fr_fix, fragp);
18406 micromips_label_inc ();
f3ded42a 18407 S_SET_OTHER (l, ELF_ST_SET_MICROMIPS (S_GET_OTHER (l)));
df58fc94
RS
18408
18409 /* Refer to it. */
4d68580a
RS
18410 fixp = fix_new (fragp, buf - fragp->fr_literal, 4, l, 0, TRUE,
18411 BFD_RELOC_MICROMIPS_16_PCREL_S1);
df58fc94
RS
18412 fixp->fx_file = fragp->fr_file;
18413 fixp->fx_line = fragp->fr_line;
18414
18415 /* Branch over the jump. */
4d68580a 18416 buf = write_compressed_insn (buf, insn, 4);
df58fc94 18417 if (!compact)
4d68580a
RS
18418 /* nop */
18419 buf = write_compressed_insn (buf, 0x0c00, 2);
df58fc94
RS
18420 }
18421
18422 if (mips_pic == NO_PIC)
18423 {
2309ddf2
MR
18424 unsigned long jal = short_ds ? 0x74000000 : 0xf4000000; /* jal/s */
18425
df58fc94
RS
18426 /* j/jal/jals <sym> R_MICROMIPS_26_S1 */
18427 insn = al ? jal : 0xd4000000;
18428
4d68580a
RS
18429 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18430 BFD_RELOC_MICROMIPS_JMP);
df58fc94
RS
18431 fixp->fx_file = fragp->fr_file;
18432 fixp->fx_line = fragp->fr_line;
18433
4d68580a 18434 buf = write_compressed_insn (buf, insn, 4);
df58fc94 18435 if (compact)
4d68580a
RS
18436 /* nop */
18437 buf = write_compressed_insn (buf, 0x0c00, 2);
df58fc94
RS
18438 }
18439 else
18440 {
18441 unsigned long at = RELAX_MICROMIPS_AT (fragp->fr_subtype);
2309ddf2
MR
18442 unsigned long jalr = short_ds ? 0x45e0 : 0x45c0; /* jalr/s */
18443 unsigned long jr = compact ? 0x45a0 : 0x4580; /* jr/c */
df58fc94
RS
18444
18445 /* lw/ld $at, <sym>($gp) R_MICROMIPS_GOT16 */
18446 insn = HAVE_64BIT_ADDRESSES ? 0xdc1c0000 : 0xfc1c0000;
18447 insn |= at << MICROMIPSOP_SH_RT;
18448
18449 if (exp.X_add_number)
18450 {
18451 exp.X_add_symbol = make_expr_symbol (&exp);
18452 exp.X_add_number = 0;
18453 }
18454
4d68580a
RS
18455 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18456 BFD_RELOC_MICROMIPS_GOT16);
df58fc94
RS
18457 fixp->fx_file = fragp->fr_file;
18458 fixp->fx_line = fragp->fr_line;
18459
4d68580a 18460 buf = write_compressed_insn (buf, insn, 4);
df58fc94
RS
18461
18462 /* d/addiu $at, $at, <sym> R_MICROMIPS_LO16 */
18463 insn = HAVE_64BIT_ADDRESSES ? 0x5c000000 : 0x30000000;
18464 insn |= at << MICROMIPSOP_SH_RT | at << MICROMIPSOP_SH_RS;
18465
4d68580a
RS
18466 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18467 BFD_RELOC_MICROMIPS_LO16);
df58fc94
RS
18468 fixp->fx_file = fragp->fr_file;
18469 fixp->fx_line = fragp->fr_line;
18470
4d68580a 18471 buf = write_compressed_insn (buf, insn, 4);
df58fc94
RS
18472
18473 /* jr/jrc/jalr/jalrs $at */
18474 insn = al ? jalr : jr;
18475 insn |= at << MICROMIPSOP_SH_MJ;
18476
4d68580a 18477 buf = write_compressed_insn (buf, insn, 2);
df58fc94
RS
18478 }
18479
4d68580a 18480 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
df58fc94
RS
18481 return;
18482 }
18483
252b5132
RH
18484 if (RELAX_MIPS16_P (fragp->fr_subtype))
18485 {
18486 int type;
3994f87e 18487 const struct mips16_immed_operand *op;
252b5132 18488 offsetT val;
5c04167a
RS
18489 char *buf;
18490 unsigned int user_length, length;
252b5132 18491 unsigned long insn;
5c04167a 18492 bfd_boolean ext;
252b5132
RH
18493
18494 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
18495 op = mips16_immed_operands;
18496 while (op->type != type)
18497 ++op;
18498
5c04167a 18499 ext = RELAX_MIPS16_EXTENDED (fragp->fr_subtype);
5f5f22c0 18500 val = resolve_symbol_value (fragp->fr_symbol);
252b5132
RH
18501 if (op->pcrel)
18502 {
18503 addressT addr;
18504
18505 addr = fragp->fr_address + fragp->fr_fix;
18506
18507 /* The rules for the base address of a PC relative reloc are
18508 complicated; see mips16_extended_frag. */
18509 if (type == 'p' || type == 'q')
18510 {
18511 addr += 2;
18512 if (ext)
18513 addr += 2;
18514 /* Ignore the low bit in the target, since it will be
18515 set for a text label. */
18516 if ((val & 1) != 0)
18517 --val;
18518 }
18519 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
18520 addr -= 4;
18521 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
18522 addr -= 2;
18523
18524 addr &= ~ (addressT) ((1 << op->shift) - 1);
18525 val -= addr;
18526
18527 /* Make sure the section winds up with the alignment we have
18528 assumed. */
18529 if (op->shift > 0)
18530 record_alignment (asec, op->shift);
18531 }
18532
18533 if (ext
18534 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
18535 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
18536 as_warn_where (fragp->fr_file, fragp->fr_line,
18537 _("extended instruction in delay slot"));
18538
5c04167a 18539 buf = fragp->fr_literal + fragp->fr_fix;
252b5132 18540
4d68580a 18541 insn = read_compressed_insn (buf, 2);
5c04167a
RS
18542 if (ext)
18543 insn |= MIPS16_EXTEND;
252b5132 18544
5c04167a
RS
18545 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
18546 user_length = 4;
18547 else if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
18548 user_length = 2;
18549 else
18550 user_length = 0;
18551
43c0598f 18552 mips16_immed (fragp->fr_file, fragp->fr_line, type,
c150d1d2 18553 BFD_RELOC_UNUSED, val, user_length, &insn);
252b5132 18554
5c04167a
RS
18555 length = (ext ? 4 : 2);
18556 gas_assert (mips16_opcode_length (insn) == length);
18557 write_compressed_insn (buf, insn, length);
18558 fragp->fr_fix += length;
252b5132
RH
18559 }
18560 else
18561 {
df58fc94
RS
18562 relax_substateT subtype = fragp->fr_subtype;
18563 bfd_boolean second_longer = (subtype & RELAX_SECOND_LONGER) != 0;
18564 bfd_boolean use_second = (subtype & RELAX_USE_SECOND) != 0;
4d7206a2
RS
18565 int first, second;
18566 fixS *fixp;
252b5132 18567
df58fc94
RS
18568 first = RELAX_FIRST (subtype);
18569 second = RELAX_SECOND (subtype);
4d7206a2 18570 fixp = (fixS *) fragp->fr_opcode;
252b5132 18571
df58fc94
RS
18572 /* If the delay slot chosen does not match the size of the instruction,
18573 then emit a warning. */
18574 if ((!use_second && (subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0)
18575 || (use_second && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0))
18576 {
18577 relax_substateT s;
18578 const char *msg;
18579
18580 s = subtype & (RELAX_DELAY_SLOT_16BIT
18581 | RELAX_DELAY_SLOT_SIZE_FIRST
18582 | RELAX_DELAY_SLOT_SIZE_SECOND);
18583 msg = macro_warning (s);
18584 if (msg != NULL)
db9b2be4 18585 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
df58fc94
RS
18586 subtype &= ~s;
18587 }
18588
584892a6 18589 /* Possibly emit a warning if we've chosen the longer option. */
df58fc94 18590 if (use_second == second_longer)
584892a6 18591 {
df58fc94
RS
18592 relax_substateT s;
18593 const char *msg;
18594
18595 s = (subtype
18596 & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT));
18597 msg = macro_warning (s);
18598 if (msg != NULL)
db9b2be4 18599 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
df58fc94 18600 subtype &= ~s;
584892a6
RS
18601 }
18602
4d7206a2
RS
18603 /* Go through all the fixups for the first sequence. Disable them
18604 (by marking them as done) if we're going to use the second
18605 sequence instead. */
18606 while (fixp
18607 && fixp->fx_frag == fragp
18608 && fixp->fx_where < fragp->fr_fix - second)
18609 {
df58fc94 18610 if (subtype & RELAX_USE_SECOND)
4d7206a2
RS
18611 fixp->fx_done = 1;
18612 fixp = fixp->fx_next;
18613 }
252b5132 18614
4d7206a2
RS
18615 /* Go through the fixups for the second sequence. Disable them if
18616 we're going to use the first sequence, otherwise adjust their
18617 addresses to account for the relaxation. */
18618 while (fixp && fixp->fx_frag == fragp)
18619 {
df58fc94 18620 if (subtype & RELAX_USE_SECOND)
4d7206a2
RS
18621 fixp->fx_where -= first;
18622 else
18623 fixp->fx_done = 1;
18624 fixp = fixp->fx_next;
18625 }
18626
18627 /* Now modify the frag contents. */
df58fc94 18628 if (subtype & RELAX_USE_SECOND)
4d7206a2
RS
18629 {
18630 char *start;
18631
18632 start = fragp->fr_literal + fragp->fr_fix - first - second;
18633 memmove (start, start + first, second);
18634 fragp->fr_fix -= first;
18635 }
18636 else
18637 fragp->fr_fix -= second;
252b5132
RH
18638 }
18639}
18640
252b5132
RH
18641/* This function is called after the relocs have been generated.
18642 We've been storing mips16 text labels as odd. Here we convert them
18643 back to even for the convenience of the debugger. */
18644
18645void
17a2f251 18646mips_frob_file_after_relocs (void)
252b5132
RH
18647{
18648 asymbol **syms;
18649 unsigned int count, i;
18650
252b5132
RH
18651 syms = bfd_get_outsymbols (stdoutput);
18652 count = bfd_get_symcount (stdoutput);
18653 for (i = 0; i < count; i++, syms++)
df58fc94
RS
18654 if (ELF_ST_IS_COMPRESSED (elf_symbol (*syms)->internal_elf_sym.st_other)
18655 && ((*syms)->value & 1) != 0)
18656 {
18657 (*syms)->value &= ~1;
18658 /* If the symbol has an odd size, it was probably computed
18659 incorrectly, so adjust that as well. */
18660 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
18661 ++elf_symbol (*syms)->internal_elf_sym.st_size;
18662 }
252b5132
RH
18663}
18664
a1facbec
MR
18665/* This function is called whenever a label is defined, including fake
18666 labels instantiated off the dot special symbol. It is used when
18667 handling branch delays; if a branch has a label, we assume we cannot
18668 move it. This also bumps the value of the symbol by 1 in compressed
18669 code. */
252b5132 18670
e1b47bd5 18671static void
a1facbec 18672mips_record_label (symbolS *sym)
252b5132 18673{
a8dbcb85 18674 segment_info_type *si = seg_info (now_seg);
252b5132
RH
18675 struct insn_label_list *l;
18676
18677 if (free_insn_labels == NULL)
18678 l = (struct insn_label_list *) xmalloc (sizeof *l);
18679 else
18680 {
18681 l = free_insn_labels;
18682 free_insn_labels = l->next;
18683 }
18684
18685 l->label = sym;
a8dbcb85
TS
18686 l->next = si->label_list;
18687 si->label_list = l;
a1facbec 18688}
07a53e5c 18689
a1facbec
MR
18690/* This function is called as tc_frob_label() whenever a label is defined
18691 and adds a DWARF-2 record we only want for true labels. */
18692
18693void
18694mips_define_label (symbolS *sym)
18695{
18696 mips_record_label (sym);
07a53e5c 18697 dwarf2_emit_label (sym);
252b5132 18698}
e1b47bd5
RS
18699
18700/* This function is called by tc_new_dot_label whenever a new dot symbol
18701 is defined. */
18702
18703void
18704mips_add_dot_label (symbolS *sym)
18705{
18706 mips_record_label (sym);
18707 if (mips_assembling_insn && HAVE_CODE_COMPRESSION)
18708 mips_compressed_mark_label (sym);
18709}
252b5132 18710\f
252b5132
RH
18711/* Some special processing for a MIPS ELF file. */
18712
18713void
17a2f251 18714mips_elf_final_processing (void)
252b5132
RH
18715{
18716 /* Write out the register information. */
316f5878 18717 if (mips_abi != N64_ABI)
252b5132
RH
18718 {
18719 Elf32_RegInfo s;
18720
18721 s.ri_gprmask = mips_gprmask;
18722 s.ri_cprmask[0] = mips_cprmask[0];
18723 s.ri_cprmask[1] = mips_cprmask[1];
18724 s.ri_cprmask[2] = mips_cprmask[2];
18725 s.ri_cprmask[3] = mips_cprmask[3];
18726 /* The gp_value field is set by the MIPS ELF backend. */
18727
18728 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
18729 ((Elf32_External_RegInfo *)
18730 mips_regmask_frag));
18731 }
18732 else
18733 {
18734 Elf64_Internal_RegInfo s;
18735
18736 s.ri_gprmask = mips_gprmask;
18737 s.ri_pad = 0;
18738 s.ri_cprmask[0] = mips_cprmask[0];
18739 s.ri_cprmask[1] = mips_cprmask[1];
18740 s.ri_cprmask[2] = mips_cprmask[2];
18741 s.ri_cprmask[3] = mips_cprmask[3];
18742 /* The gp_value field is set by the MIPS ELF backend. */
18743
18744 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
18745 ((Elf64_External_RegInfo *)
18746 mips_regmask_frag));
18747 }
18748
18749 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
18750 sort of BFD interface for this. */
18751 if (mips_any_noreorder)
18752 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
18753 if (mips_pic != NO_PIC)
143d77c5 18754 {
8b828383 18755 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
143d77c5
EC
18756 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18757 }
18758 if (mips_abicalls)
18759 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
252b5132 18760
b015e599
AP
18761 /* Set MIPS ELF flags for ASEs. Note that not all ASEs have flags
18762 defined at present; this might need to change in future. */
a4672219
TS
18763 if (file_ase_mips16)
18764 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
df58fc94
RS
18765 if (file_ase_micromips)
18766 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MICROMIPS;
846ef2d0 18767 if (file_ase & ASE_MDMX)
deec1734 18768 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
1f25f5d3 18769
bdaaa2e1 18770 /* Set the MIPS ELF ABI flags. */
316f5878 18771 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
252b5132 18772 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
316f5878 18773 else if (mips_abi == O64_ABI)
252b5132 18774 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
316f5878 18775 else if (mips_abi == EABI_ABI)
252b5132 18776 {
316f5878 18777 if (!file_mips_gp32)
252b5132
RH
18778 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
18779 else
18780 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
18781 }
316f5878 18782 else if (mips_abi == N32_ABI)
be00bddd
TS
18783 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
18784
c9914766 18785 /* Nothing to do for N64_ABI. */
252b5132
RH
18786
18787 if (mips_32bitmode)
18788 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
ad3fea08 18789
ba92f887
MR
18790 if (mips_flag_nan2008)
18791 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NAN2008;
18792
ad3fea08
TS
18793#if 0 /* XXX FIXME */
18794 /* 32 bit code with 64 bit FP registers. */
18795 if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
18796 elf_elfheader (stdoutput)->e_flags |= ???;
18797#endif
252b5132 18798}
252b5132 18799\f
beae10d5 18800typedef struct proc {
9b2f1d35
EC
18801 symbolS *func_sym;
18802 symbolS *func_end_sym;
beae10d5
KH
18803 unsigned long reg_mask;
18804 unsigned long reg_offset;
18805 unsigned long fpreg_mask;
18806 unsigned long fpreg_offset;
18807 unsigned long frame_offset;
18808 unsigned long frame_reg;
18809 unsigned long pc_reg;
18810} procS;
252b5132
RH
18811
18812static procS cur_proc;
18813static procS *cur_proc_ptr;
18814static int numprocs;
18815
df58fc94
RS
18816/* Implement NOP_OPCODE. We encode a MIPS16 nop as "1", a microMIPS nop
18817 as "2", and a normal nop as "0". */
18818
18819#define NOP_OPCODE_MIPS 0
18820#define NOP_OPCODE_MIPS16 1
18821#define NOP_OPCODE_MICROMIPS 2
742a56fe
RS
18822
18823char
18824mips_nop_opcode (void)
18825{
df58fc94
RS
18826 if (seg_info (now_seg)->tc_segment_info_data.micromips)
18827 return NOP_OPCODE_MICROMIPS;
18828 else if (seg_info (now_seg)->tc_segment_info_data.mips16)
18829 return NOP_OPCODE_MIPS16;
18830 else
18831 return NOP_OPCODE_MIPS;
742a56fe
RS
18832}
18833
df58fc94
RS
18834/* Fill in an rs_align_code fragment. Unlike elsewhere we want to use
18835 32-bit microMIPS NOPs here (if applicable). */
a19d8eb0 18836
0a9ef439 18837void
17a2f251 18838mips_handle_align (fragS *fragp)
a19d8eb0 18839{
df58fc94 18840 char nop_opcode;
742a56fe 18841 char *p;
c67a084a
NC
18842 int bytes, size, excess;
18843 valueT opcode;
742a56fe 18844
0a9ef439
RH
18845 if (fragp->fr_type != rs_align_code)
18846 return;
18847
742a56fe 18848 p = fragp->fr_literal + fragp->fr_fix;
df58fc94
RS
18849 nop_opcode = *p;
18850 switch (nop_opcode)
a19d8eb0 18851 {
df58fc94
RS
18852 case NOP_OPCODE_MICROMIPS:
18853 opcode = micromips_nop32_insn.insn_opcode;
18854 size = 4;
18855 break;
18856 case NOP_OPCODE_MIPS16:
c67a084a
NC
18857 opcode = mips16_nop_insn.insn_opcode;
18858 size = 2;
df58fc94
RS
18859 break;
18860 case NOP_OPCODE_MIPS:
18861 default:
c67a084a
NC
18862 opcode = nop_insn.insn_opcode;
18863 size = 4;
df58fc94 18864 break;
c67a084a 18865 }
a19d8eb0 18866
c67a084a
NC
18867 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
18868 excess = bytes % size;
df58fc94
RS
18869
18870 /* Handle the leading part if we're not inserting a whole number of
18871 instructions, and make it the end of the fixed part of the frag.
18872 Try to fit in a short microMIPS NOP if applicable and possible,
18873 and use zeroes otherwise. */
18874 gas_assert (excess < 4);
18875 fragp->fr_fix += excess;
18876 switch (excess)
c67a084a 18877 {
df58fc94
RS
18878 case 3:
18879 *p++ = '\0';
18880 /* Fall through. */
18881 case 2:
833794fc 18882 if (nop_opcode == NOP_OPCODE_MICROMIPS && !mips_opts.insn32)
df58fc94 18883 {
4d68580a 18884 p = write_compressed_insn (p, micromips_nop16_insn.insn_opcode, 2);
df58fc94
RS
18885 break;
18886 }
18887 *p++ = '\0';
18888 /* Fall through. */
18889 case 1:
18890 *p++ = '\0';
18891 /* Fall through. */
18892 case 0:
18893 break;
a19d8eb0 18894 }
c67a084a
NC
18895
18896 md_number_to_chars (p, opcode, size);
18897 fragp->fr_var = size;
a19d8eb0
CP
18898}
18899
252b5132 18900static void
17a2f251 18901md_obj_begin (void)
252b5132
RH
18902{
18903}
18904
18905static void
17a2f251 18906md_obj_end (void)
252b5132 18907{
54f4ddb3 18908 /* Check for premature end, nesting errors, etc. */
252b5132 18909 if (cur_proc_ptr)
9a41af64 18910 as_warn (_("missing .end at end of assembly"));
252b5132
RH
18911}
18912
18913static long
17a2f251 18914get_number (void)
252b5132
RH
18915{
18916 int negative = 0;
18917 long val = 0;
18918
18919 if (*input_line_pointer == '-')
18920 {
18921 ++input_line_pointer;
18922 negative = 1;
18923 }
3882b010 18924 if (!ISDIGIT (*input_line_pointer))
956cd1d6 18925 as_bad (_("expected simple number"));
252b5132
RH
18926 if (input_line_pointer[0] == '0')
18927 {
18928 if (input_line_pointer[1] == 'x')
18929 {
18930 input_line_pointer += 2;
3882b010 18931 while (ISXDIGIT (*input_line_pointer))
252b5132
RH
18932 {
18933 val <<= 4;
18934 val |= hex_value (*input_line_pointer++);
18935 }
18936 return negative ? -val : val;
18937 }
18938 else
18939 {
18940 ++input_line_pointer;
3882b010 18941 while (ISDIGIT (*input_line_pointer))
252b5132
RH
18942 {
18943 val <<= 3;
18944 val |= *input_line_pointer++ - '0';
18945 }
18946 return negative ? -val : val;
18947 }
18948 }
3882b010 18949 if (!ISDIGIT (*input_line_pointer))
252b5132
RH
18950 {
18951 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
18952 *input_line_pointer, *input_line_pointer);
956cd1d6 18953 as_warn (_("invalid number"));
252b5132
RH
18954 return -1;
18955 }
3882b010 18956 while (ISDIGIT (*input_line_pointer))
252b5132
RH
18957 {
18958 val *= 10;
18959 val += *input_line_pointer++ - '0';
18960 }
18961 return negative ? -val : val;
18962}
18963
18964/* The .file directive; just like the usual .file directive, but there
c5dd6aab
DJ
18965 is an initial number which is the ECOFF file index. In the non-ECOFF
18966 case .file implies DWARF-2. */
18967
18968static void
17a2f251 18969s_mips_file (int x ATTRIBUTE_UNUSED)
c5dd6aab 18970{
ecb4347a
DJ
18971 static int first_file_directive = 0;
18972
c5dd6aab
DJ
18973 if (ECOFF_DEBUGGING)
18974 {
18975 get_number ();
18976 s_app_file (0);
18977 }
18978 else
ecb4347a
DJ
18979 {
18980 char *filename;
18981
18982 filename = dwarf2_directive_file (0);
18983
18984 /* Versions of GCC up to 3.1 start files with a ".file"
18985 directive even for stabs output. Make sure that this
18986 ".file" is handled. Note that you need a version of GCC
18987 after 3.1 in order to support DWARF-2 on MIPS. */
18988 if (filename != NULL && ! first_file_directive)
18989 {
18990 (void) new_logical_line (filename, -1);
c04f5787 18991 s_app_file_string (filename, 0);
ecb4347a
DJ
18992 }
18993 first_file_directive = 1;
18994 }
c5dd6aab
DJ
18995}
18996
18997/* The .loc directive, implying DWARF-2. */
252b5132
RH
18998
18999static void
17a2f251 19000s_mips_loc (int x ATTRIBUTE_UNUSED)
252b5132 19001{
c5dd6aab
DJ
19002 if (!ECOFF_DEBUGGING)
19003 dwarf2_directive_loc (0);
252b5132
RH
19004}
19005
252b5132
RH
19006/* The .end directive. */
19007
19008static void
17a2f251 19009s_mips_end (int x ATTRIBUTE_UNUSED)
252b5132
RH
19010{
19011 symbolS *p;
252b5132 19012
7a621144
DJ
19013 /* Following functions need their own .frame and .cprestore directives. */
19014 mips_frame_reg_valid = 0;
19015 mips_cprestore_valid = 0;
19016
252b5132
RH
19017 if (!is_end_of_line[(unsigned char) *input_line_pointer])
19018 {
19019 p = get_symbol ();
19020 demand_empty_rest_of_line ();
19021 }
19022 else
19023 p = NULL;
19024
14949570 19025 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
19026 as_warn (_(".end not in text section"));
19027
19028 if (!cur_proc_ptr)
19029 {
19030 as_warn (_(".end directive without a preceding .ent directive."));
19031 demand_empty_rest_of_line ();
19032 return;
19033 }
19034
19035 if (p != NULL)
19036 {
9c2799c2 19037 gas_assert (S_GET_NAME (p));
9b2f1d35 19038 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
252b5132 19039 as_warn (_(".end symbol does not match .ent symbol."));
ecb4347a
DJ
19040
19041 if (debug_type == DEBUG_STABS)
19042 stabs_generate_asm_endfunc (S_GET_NAME (p),
19043 S_GET_NAME (p));
252b5132
RH
19044 }
19045 else
19046 as_warn (_(".end directive missing or unknown symbol"));
19047
9b2f1d35
EC
19048 /* Create an expression to calculate the size of the function. */
19049 if (p && cur_proc_ptr)
19050 {
19051 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
19052 expressionS *exp = xmalloc (sizeof (expressionS));
19053
19054 obj->size = exp;
19055 exp->X_op = O_subtract;
19056 exp->X_add_symbol = symbol_temp_new_now ();
19057 exp->X_op_symbol = p;
19058 exp->X_add_number = 0;
19059
19060 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
19061 }
19062
ecb4347a 19063 /* Generate a .pdr section. */
f3ded42a 19064 if (!ECOFF_DEBUGGING && mips_flag_pdr)
ecb4347a
DJ
19065 {
19066 segT saved_seg = now_seg;
19067 subsegT saved_subseg = now_subseg;
ecb4347a
DJ
19068 expressionS exp;
19069 char *fragp;
252b5132 19070
252b5132 19071#ifdef md_flush_pending_output
ecb4347a 19072 md_flush_pending_output ();
252b5132
RH
19073#endif
19074
9c2799c2 19075 gas_assert (pdr_seg);
ecb4347a 19076 subseg_set (pdr_seg, 0);
252b5132 19077
ecb4347a
DJ
19078 /* Write the symbol. */
19079 exp.X_op = O_symbol;
19080 exp.X_add_symbol = p;
19081 exp.X_add_number = 0;
19082 emit_expr (&exp, 4);
252b5132 19083
ecb4347a 19084 fragp = frag_more (7 * 4);
252b5132 19085
17a2f251
TS
19086 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
19087 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
19088 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
19089 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
19090 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
19091 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
19092 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
252b5132 19093
ecb4347a
DJ
19094 subseg_set (saved_seg, saved_subseg);
19095 }
252b5132
RH
19096
19097 cur_proc_ptr = NULL;
19098}
19099
19100/* The .aent and .ent directives. */
19101
19102static void
17a2f251 19103s_mips_ent (int aent)
252b5132 19104{
252b5132 19105 symbolS *symbolP;
252b5132
RH
19106
19107 symbolP = get_symbol ();
19108 if (*input_line_pointer == ',')
f9419b05 19109 ++input_line_pointer;
252b5132 19110 SKIP_WHITESPACE ();
3882b010 19111 if (ISDIGIT (*input_line_pointer)
d9a62219 19112 || *input_line_pointer == '-')
874e8986 19113 get_number ();
252b5132 19114
14949570 19115 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
19116 as_warn (_(".ent or .aent not in text section."));
19117
19118 if (!aent && cur_proc_ptr)
9a41af64 19119 as_warn (_("missing .end"));
252b5132
RH
19120
19121 if (!aent)
19122 {
7a621144
DJ
19123 /* This function needs its own .frame and .cprestore directives. */
19124 mips_frame_reg_valid = 0;
19125 mips_cprestore_valid = 0;
19126
252b5132
RH
19127 cur_proc_ptr = &cur_proc;
19128 memset (cur_proc_ptr, '\0', sizeof (procS));
19129
9b2f1d35 19130 cur_proc_ptr->func_sym = symbolP;
252b5132 19131
f9419b05 19132 ++numprocs;
ecb4347a
DJ
19133
19134 if (debug_type == DEBUG_STABS)
19135 stabs_generate_asm_func (S_GET_NAME (symbolP),
19136 S_GET_NAME (symbolP));
252b5132
RH
19137 }
19138
7c0fc524
MR
19139 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
19140
252b5132
RH
19141 demand_empty_rest_of_line ();
19142}
19143
19144/* The .frame directive. If the mdebug section is present (IRIX 5 native)
bdaaa2e1 19145 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
252b5132 19146 s_mips_frame is used so that we can set the PDR information correctly.
bdaaa2e1 19147 We can't use the ecoff routines because they make reference to the ecoff
252b5132
RH
19148 symbol table (in the mdebug section). */
19149
19150static void
17a2f251 19151s_mips_frame (int ignore ATTRIBUTE_UNUSED)
252b5132 19152{
f3ded42a
RS
19153 if (ECOFF_DEBUGGING)
19154 s_ignore (ignore);
19155 else
ecb4347a
DJ
19156 {
19157 long val;
252b5132 19158
ecb4347a
DJ
19159 if (cur_proc_ptr == (procS *) NULL)
19160 {
19161 as_warn (_(".frame outside of .ent"));
19162 demand_empty_rest_of_line ();
19163 return;
19164 }
252b5132 19165
ecb4347a
DJ
19166 cur_proc_ptr->frame_reg = tc_get_register (1);
19167
19168 SKIP_WHITESPACE ();
19169 if (*input_line_pointer++ != ','
19170 || get_absolute_expression_and_terminator (&val) != ',')
19171 {
19172 as_warn (_("Bad .frame directive"));
19173 --input_line_pointer;
19174 demand_empty_rest_of_line ();
19175 return;
19176 }
252b5132 19177
ecb4347a
DJ
19178 cur_proc_ptr->frame_offset = val;
19179 cur_proc_ptr->pc_reg = tc_get_register (0);
252b5132 19180
252b5132 19181 demand_empty_rest_of_line ();
252b5132 19182 }
252b5132
RH
19183}
19184
bdaaa2e1
KH
19185/* The .fmask and .mask directives. If the mdebug section is present
19186 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
252b5132 19187 embedded targets, s_mips_mask is used so that we can set the PDR
bdaaa2e1 19188 information correctly. We can't use the ecoff routines because they
252b5132
RH
19189 make reference to the ecoff symbol table (in the mdebug section). */
19190
19191static void
17a2f251 19192s_mips_mask (int reg_type)
252b5132 19193{
f3ded42a
RS
19194 if (ECOFF_DEBUGGING)
19195 s_ignore (reg_type);
19196 else
252b5132 19197 {
ecb4347a 19198 long mask, off;
252b5132 19199
ecb4347a
DJ
19200 if (cur_proc_ptr == (procS *) NULL)
19201 {
19202 as_warn (_(".mask/.fmask outside of .ent"));
19203 demand_empty_rest_of_line ();
19204 return;
19205 }
252b5132 19206
ecb4347a
DJ
19207 if (get_absolute_expression_and_terminator (&mask) != ',')
19208 {
19209 as_warn (_("Bad .mask/.fmask directive"));
19210 --input_line_pointer;
19211 demand_empty_rest_of_line ();
19212 return;
19213 }
252b5132 19214
ecb4347a
DJ
19215 off = get_absolute_expression ();
19216
19217 if (reg_type == 'F')
19218 {
19219 cur_proc_ptr->fpreg_mask = mask;
19220 cur_proc_ptr->fpreg_offset = off;
19221 }
19222 else
19223 {
19224 cur_proc_ptr->reg_mask = mask;
19225 cur_proc_ptr->reg_offset = off;
19226 }
19227
19228 demand_empty_rest_of_line ();
252b5132 19229 }
252b5132
RH
19230}
19231
316f5878
RS
19232/* A table describing all the processors gas knows about. Names are
19233 matched in the order listed.
e7af610e 19234
316f5878
RS
19235 To ease comparison, please keep this table in the same order as
19236 gcc's mips_cpu_info_table[]. */
e972090a
NC
19237static const struct mips_cpu_info mips_cpu_info_table[] =
19238{
316f5878 19239 /* Entries for generic ISAs */
d16afab6
RS
19240 { "mips1", MIPS_CPU_IS_ISA, 0, ISA_MIPS1, CPU_R3000 },
19241 { "mips2", MIPS_CPU_IS_ISA, 0, ISA_MIPS2, CPU_R6000 },
19242 { "mips3", MIPS_CPU_IS_ISA, 0, ISA_MIPS3, CPU_R4000 },
19243 { "mips4", MIPS_CPU_IS_ISA, 0, ISA_MIPS4, CPU_R8000 },
19244 { "mips5", MIPS_CPU_IS_ISA, 0, ISA_MIPS5, CPU_MIPS5 },
19245 { "mips32", MIPS_CPU_IS_ISA, 0, ISA_MIPS32, CPU_MIPS32 },
19246 { "mips32r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19247 { "mips64", MIPS_CPU_IS_ISA, 0, ISA_MIPS64, CPU_MIPS64 },
19248 { "mips64r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS64R2, CPU_MIPS64R2 },
316f5878
RS
19249
19250 /* MIPS I */
d16afab6
RS
19251 { "r3000", 0, 0, ISA_MIPS1, CPU_R3000 },
19252 { "r2000", 0, 0, ISA_MIPS1, CPU_R3000 },
19253 { "r3900", 0, 0, ISA_MIPS1, CPU_R3900 },
316f5878
RS
19254
19255 /* MIPS II */
d16afab6 19256 { "r6000", 0, 0, ISA_MIPS2, CPU_R6000 },
316f5878
RS
19257
19258 /* MIPS III */
d16afab6
RS
19259 { "r4000", 0, 0, ISA_MIPS3, CPU_R4000 },
19260 { "r4010", 0, 0, ISA_MIPS2, CPU_R4010 },
19261 { "vr4100", 0, 0, ISA_MIPS3, CPU_VR4100 },
19262 { "vr4111", 0, 0, ISA_MIPS3, CPU_R4111 },
19263 { "vr4120", 0, 0, ISA_MIPS3, CPU_VR4120 },
19264 { "vr4130", 0, 0, ISA_MIPS3, CPU_VR4120 },
19265 { "vr4181", 0, 0, ISA_MIPS3, CPU_R4111 },
19266 { "vr4300", 0, 0, ISA_MIPS3, CPU_R4300 },
19267 { "r4400", 0, 0, ISA_MIPS3, CPU_R4400 },
19268 { "r4600", 0, 0, ISA_MIPS3, CPU_R4600 },
19269 { "orion", 0, 0, ISA_MIPS3, CPU_R4600 },
19270 { "r4650", 0, 0, ISA_MIPS3, CPU_R4650 },
19271 { "r5900", 0, 0, ISA_MIPS3, CPU_R5900 },
b15591bb 19272 /* ST Microelectronics Loongson 2E and 2F cores */
d16afab6
RS
19273 { "loongson2e", 0, 0, ISA_MIPS3, CPU_LOONGSON_2E },
19274 { "loongson2f", 0, 0, ISA_MIPS3, CPU_LOONGSON_2F },
316f5878
RS
19275
19276 /* MIPS IV */
d16afab6
RS
19277 { "r8000", 0, 0, ISA_MIPS4, CPU_R8000 },
19278 { "r10000", 0, 0, ISA_MIPS4, CPU_R10000 },
19279 { "r12000", 0, 0, ISA_MIPS4, CPU_R12000 },
19280 { "r14000", 0, 0, ISA_MIPS4, CPU_R14000 },
19281 { "r16000", 0, 0, ISA_MIPS4, CPU_R16000 },
19282 { "vr5000", 0, 0, ISA_MIPS4, CPU_R5000 },
19283 { "vr5400", 0, 0, ISA_MIPS4, CPU_VR5400 },
19284 { "vr5500", 0, 0, ISA_MIPS4, CPU_VR5500 },
19285 { "rm5200", 0, 0, ISA_MIPS4, CPU_R5000 },
19286 { "rm5230", 0, 0, ISA_MIPS4, CPU_R5000 },
19287 { "rm5231", 0, 0, ISA_MIPS4, CPU_R5000 },
19288 { "rm5261", 0, 0, ISA_MIPS4, CPU_R5000 },
19289 { "rm5721", 0, 0, ISA_MIPS4, CPU_R5000 },
19290 { "rm7000", 0, 0, ISA_MIPS4, CPU_RM7000 },
19291 { "rm9000", 0, 0, ISA_MIPS4, CPU_RM9000 },
316f5878
RS
19292
19293 /* MIPS 32 */
d16afab6
RS
19294 { "4kc", 0, 0, ISA_MIPS32, CPU_MIPS32 },
19295 { "4km", 0, 0, ISA_MIPS32, CPU_MIPS32 },
19296 { "4kp", 0, 0, ISA_MIPS32, CPU_MIPS32 },
19297 { "4ksc", 0, ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
ad3fea08
TS
19298
19299 /* MIPS 32 Release 2 */
d16afab6
RS
19300 { "4kec", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19301 { "4kem", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19302 { "4kep", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19303 { "4ksd", 0, ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
19304 { "m4k", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19305 { "m4kp", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19306 { "m14k", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
19307 { "m14kc", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
19308 { "m14ke", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
19309 ISA_MIPS32R2, CPU_MIPS32R2 },
19310 { "m14kec", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
19311 ISA_MIPS32R2, CPU_MIPS32R2 },
19312 { "24kc", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19313 { "24kf2_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19314 { "24kf", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19315 { "24kf1_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 19316 /* Deprecated forms of the above. */
d16afab6
RS
19317 { "24kfx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19318 { "24kx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 19319 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
d16afab6
RS
19320 { "24kec", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19321 { "24kef2_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19322 { "24kef", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19323 { "24kef1_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 19324 /* Deprecated forms of the above. */
d16afab6
RS
19325 { "24kefx", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19326 { "24kex", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 19327 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
d16afab6
RS
19328 { "34kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19329 { "34kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19330 { "34kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19331 { "34kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 19332 /* Deprecated forms of the above. */
d16afab6
RS
19333 { "34kfx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19334 { "34kx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
711eefe4 19335 /* 34Kn is a 34kc without DSP. */
d16afab6 19336 { "34kn", 0, ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
01fd108f 19337 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
d16afab6
RS
19338 { "74kc", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19339 { "74kf2_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19340 { "74kf", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19341 { "74kf1_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19342 { "74kf3_2", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
0fdf1951 19343 /* Deprecated forms of the above. */
d16afab6
RS
19344 { "74kfx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19345 { "74kx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
30f8113a 19346 /* 1004K cores are multiprocessor versions of the 34K. */
d16afab6
RS
19347 { "1004kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19348 { "1004kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19349 { "1004kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19350 { "1004kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
32b26a03 19351
316f5878 19352 /* MIPS 64 */
d16afab6
RS
19353 { "5kc", 0, 0, ISA_MIPS64, CPU_MIPS64 },
19354 { "5kf", 0, 0, ISA_MIPS64, CPU_MIPS64 },
19355 { "20kc", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
19356 { "25kf", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
ad3fea08 19357
c7a23324 19358 /* Broadcom SB-1 CPU core */
d16afab6 19359 { "sb1", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
1e85aad8 19360 /* Broadcom SB-1A CPU core */
d16afab6 19361 { "sb1a", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
d051516a 19362
d16afab6 19363 { "loongson3a", 0, 0, ISA_MIPS64, CPU_LOONGSON_3A },
e7af610e 19364
ed163775
MR
19365 /* MIPS 64 Release 2 */
19366
967344c6 19367 /* Cavium Networks Octeon CPU core */
d16afab6
RS
19368 { "octeon", 0, 0, ISA_MIPS64R2, CPU_OCTEON },
19369 { "octeon+", 0, 0, ISA_MIPS64R2, CPU_OCTEONP },
19370 { "octeon2", 0, 0, ISA_MIPS64R2, CPU_OCTEON2 },
967344c6 19371
52b6b6b9 19372 /* RMI Xlr */
d16afab6 19373 { "xlr", 0, 0, ISA_MIPS64, CPU_XLR },
52b6b6b9 19374
55a36193
MK
19375 /* Broadcom XLP.
19376 XLP is mostly like XLR, with the prominent exception that it is
19377 MIPS64R2 rather than MIPS64. */
d16afab6 19378 { "xlp", 0, 0, ISA_MIPS64R2, CPU_XLR },
55a36193 19379
316f5878 19380 /* End marker */
d16afab6 19381 { NULL, 0, 0, 0, 0 }
316f5878 19382};
e7af610e 19383
84ea6cf2 19384
316f5878
RS
19385/* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
19386 with a final "000" replaced by "k". Ignore case.
e7af610e 19387
316f5878 19388 Note: this function is shared between GCC and GAS. */
c6c98b38 19389
b34976b6 19390static bfd_boolean
17a2f251 19391mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
19392{
19393 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
19394 given++, canonical++;
19395
19396 return ((*given == 0 && *canonical == 0)
19397 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
19398}
19399
19400
19401/* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
19402 CPU name. We've traditionally allowed a lot of variation here.
19403
19404 Note: this function is shared between GCC and GAS. */
19405
b34976b6 19406static bfd_boolean
17a2f251 19407mips_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
19408{
19409 /* First see if the name matches exactly, or with a final "000"
19410 turned into "k". */
19411 if (mips_strict_matching_cpu_name_p (canonical, given))
b34976b6 19412 return TRUE;
316f5878
RS
19413
19414 /* If not, try comparing based on numerical designation alone.
19415 See if GIVEN is an unadorned number, or 'r' followed by a number. */
19416 if (TOLOWER (*given) == 'r')
19417 given++;
19418 if (!ISDIGIT (*given))
b34976b6 19419 return FALSE;
316f5878
RS
19420
19421 /* Skip over some well-known prefixes in the canonical name,
19422 hoping to find a number there too. */
19423 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
19424 canonical += 2;
19425 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
19426 canonical += 2;
19427 else if (TOLOWER (canonical[0]) == 'r')
19428 canonical += 1;
19429
19430 return mips_strict_matching_cpu_name_p (canonical, given);
19431}
19432
19433
19434/* Parse an option that takes the name of a processor as its argument.
19435 OPTION is the name of the option and CPU_STRING is the argument.
19436 Return the corresponding processor enumeration if the CPU_STRING is
19437 recognized, otherwise report an error and return null.
19438
19439 A similar function exists in GCC. */
e7af610e
NC
19440
19441static const struct mips_cpu_info *
17a2f251 19442mips_parse_cpu (const char *option, const char *cpu_string)
e7af610e 19443{
316f5878 19444 const struct mips_cpu_info *p;
e7af610e 19445
316f5878
RS
19446 /* 'from-abi' selects the most compatible architecture for the given
19447 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
19448 EABIs, we have to decide whether we're using the 32-bit or 64-bit
19449 version. Look first at the -mgp options, if given, otherwise base
19450 the choice on MIPS_DEFAULT_64BIT.
e7af610e 19451
316f5878
RS
19452 Treat NO_ABI like the EABIs. One reason to do this is that the
19453 plain 'mips' and 'mips64' configs have 'from-abi' as their default
19454 architecture. This code picks MIPS I for 'mips' and MIPS III for
19455 'mips64', just as we did in the days before 'from-abi'. */
19456 if (strcasecmp (cpu_string, "from-abi") == 0)
19457 {
19458 if (ABI_NEEDS_32BIT_REGS (mips_abi))
19459 return mips_cpu_info_from_isa (ISA_MIPS1);
19460
19461 if (ABI_NEEDS_64BIT_REGS (mips_abi))
19462 return mips_cpu_info_from_isa (ISA_MIPS3);
19463
19464 if (file_mips_gp32 >= 0)
19465 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
19466
19467 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
19468 ? ISA_MIPS3
19469 : ISA_MIPS1);
19470 }
19471
19472 /* 'default' has traditionally been a no-op. Probably not very useful. */
19473 if (strcasecmp (cpu_string, "default") == 0)
19474 return 0;
19475
19476 for (p = mips_cpu_info_table; p->name != 0; p++)
19477 if (mips_matching_cpu_name_p (p->name, cpu_string))
19478 return p;
19479
20203fb9 19480 as_bad (_("Bad value (%s) for %s"), cpu_string, option);
316f5878 19481 return 0;
e7af610e
NC
19482}
19483
316f5878
RS
19484/* Return the canonical processor information for ISA (a member of the
19485 ISA_MIPS* enumeration). */
19486
e7af610e 19487static const struct mips_cpu_info *
17a2f251 19488mips_cpu_info_from_isa (int isa)
e7af610e
NC
19489{
19490 int i;
19491
19492 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
ad3fea08 19493 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
316f5878 19494 && isa == mips_cpu_info_table[i].isa)
e7af610e
NC
19495 return (&mips_cpu_info_table[i]);
19496
e972090a 19497 return NULL;
e7af610e 19498}
fef14a42
TS
19499
19500static const struct mips_cpu_info *
17a2f251 19501mips_cpu_info_from_arch (int arch)
fef14a42
TS
19502{
19503 int i;
19504
19505 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19506 if (arch == mips_cpu_info_table[i].cpu)
19507 return (&mips_cpu_info_table[i]);
19508
19509 return NULL;
19510}
316f5878
RS
19511\f
19512static void
17a2f251 19513show (FILE *stream, const char *string, int *col_p, int *first_p)
316f5878
RS
19514{
19515 if (*first_p)
19516 {
19517 fprintf (stream, "%24s", "");
19518 *col_p = 24;
19519 }
19520 else
19521 {
19522 fprintf (stream, ", ");
19523 *col_p += 2;
19524 }
e7af610e 19525
316f5878
RS
19526 if (*col_p + strlen (string) > 72)
19527 {
19528 fprintf (stream, "\n%24s", "");
19529 *col_p = 24;
19530 }
19531
19532 fprintf (stream, "%s", string);
19533 *col_p += strlen (string);
19534
19535 *first_p = 0;
19536}
19537
19538void
17a2f251 19539md_show_usage (FILE *stream)
e7af610e 19540{
316f5878
RS
19541 int column, first;
19542 size_t i;
19543
19544 fprintf (stream, _("\
19545MIPS options:\n\
316f5878
RS
19546-EB generate big endian output\n\
19547-EL generate little endian output\n\
19548-g, -g2 do not remove unneeded NOPs or swap branches\n\
19549-G NUM allow referencing objects up to NUM bytes\n\
19550 implicitly with the gp register [default 8]\n"));
19551 fprintf (stream, _("\
19552-mips1 generate MIPS ISA I instructions\n\
19553-mips2 generate MIPS ISA II instructions\n\
19554-mips3 generate MIPS ISA III instructions\n\
19555-mips4 generate MIPS ISA IV instructions\n\
19556-mips5 generate MIPS ISA V instructions\n\
19557-mips32 generate MIPS32 ISA instructions\n\
af7ee8bf 19558-mips32r2 generate MIPS32 release 2 ISA instructions\n\
316f5878 19559-mips64 generate MIPS64 ISA instructions\n\
5f74bc13 19560-mips64r2 generate MIPS64 release 2 ISA instructions\n\
316f5878
RS
19561-march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
19562
19563 first = 1;
e7af610e
NC
19564
19565 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
316f5878
RS
19566 show (stream, mips_cpu_info_table[i].name, &column, &first);
19567 show (stream, "from-abi", &column, &first);
19568 fputc ('\n', stream);
e7af610e 19569
316f5878
RS
19570 fprintf (stream, _("\
19571-mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
19572-no-mCPU don't generate code specific to CPU.\n\
19573 For -mCPU and -no-mCPU, CPU must be one of:\n"));
19574
19575 first = 1;
19576
19577 show (stream, "3900", &column, &first);
19578 show (stream, "4010", &column, &first);
19579 show (stream, "4100", &column, &first);
19580 show (stream, "4650", &column, &first);
19581 fputc ('\n', stream);
19582
19583 fprintf (stream, _("\
19584-mips16 generate mips16 instructions\n\
19585-no-mips16 do not generate mips16 instructions\n"));
19586 fprintf (stream, _("\
df58fc94
RS
19587-mmicromips generate microMIPS instructions\n\
19588-mno-micromips do not generate microMIPS instructions\n"));
19589 fprintf (stream, _("\
e16bfa71
TS
19590-msmartmips generate smartmips instructions\n\
19591-mno-smartmips do not generate smartmips instructions\n"));
19592 fprintf (stream, _("\
74cd071d
CF
19593-mdsp generate DSP instructions\n\
19594-mno-dsp do not generate DSP instructions\n"));
19595 fprintf (stream, _("\
8b082fb1
TS
19596-mdspr2 generate DSP R2 instructions\n\
19597-mno-dspr2 do not generate DSP R2 instructions\n"));
19598 fprintf (stream, _("\
ef2e4d86
CF
19599-mmt generate MT instructions\n\
19600-mno-mt do not generate MT instructions\n"));
19601 fprintf (stream, _("\
dec0624d
MR
19602-mmcu generate MCU instructions\n\
19603-mno-mcu do not generate MCU instructions\n"));
19604 fprintf (stream, _("\
b015e599
AP
19605-mvirt generate Virtualization instructions\n\
19606-mno-virt do not generate Virtualization instructions\n"));
19607 fprintf (stream, _("\
833794fc
MR
19608-minsn32 only generate 32-bit microMIPS instructions\n\
19609-mno-insn32 generate all microMIPS instructions\n"));
19610 fprintf (stream, _("\
c67a084a
NC
19611-mfix-loongson2f-jump work around Loongson2F JUMP instructions\n\
19612-mfix-loongson2f-nop work around Loongson2F NOP errata\n\
d766e8ec 19613-mfix-vr4120 work around certain VR4120 errata\n\
7d8e00cf 19614-mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
6a32d874 19615-mfix-24k insert a nop after ERET and DERET instructions\n\
d954098f 19616-mfix-cn63xxp1 work around CN63XXP1 PREF errata\n\
316f5878
RS
19617-mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
19618-mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
aed1a261 19619-msym32 assume all symbols have 32-bit values\n\
316f5878
RS
19620-O0 remove unneeded NOPs, do not swap branches\n\
19621-O remove unneeded NOPs and swap branches\n\
316f5878
RS
19622--trap, --no-break trap exception on div by 0 and mult overflow\n\
19623--break, --no-trap break exception on div by 0 and mult overflow\n"));
037b32b9
AN
19624 fprintf (stream, _("\
19625-mhard-float allow floating-point instructions\n\
19626-msoft-float do not allow floating-point instructions\n\
19627-msingle-float only allow 32-bit floating-point operations\n\
19628-mdouble-float allow 32-bit and 64-bit floating-point operations\n\
3bf0dbfb 19629--[no-]construct-floats [dis]allow floating point values to be constructed\n\
ba92f887
MR
19630--[no-]relax-branch [dis]allow out-of-range branches to be relaxed\n\
19631-mnan=ENCODING select an IEEE 754 NaN encoding convention, either of:\n"));
19632
19633 first = 1;
19634
19635 show (stream, "legacy", &column, &first);
19636 show (stream, "2008", &column, &first);
19637
19638 fputc ('\n', stream);
19639
316f5878
RS
19640 fprintf (stream, _("\
19641-KPIC, -call_shared generate SVR4 position independent code\n\
861fb55a 19642-call_nonpic generate non-PIC code that can operate with DSOs\n\
0c000745 19643-mvxworks-pic generate VxWorks position independent code\n\
861fb55a 19644-non_shared do not generate code that can operate with DSOs\n\
316f5878 19645-xgot assume a 32 bit GOT\n\
dcd410fe 19646-mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
bbe506e8 19647-mshared, -mno-shared disable/enable .cpload optimization for\n\
d821e36b 19648 position dependent (non shared) code\n\
316f5878
RS
19649-mabi=ABI create ABI conformant object file for:\n"));
19650
19651 first = 1;
19652
19653 show (stream, "32", &column, &first);
19654 show (stream, "o64", &column, &first);
19655 show (stream, "n32", &column, &first);
19656 show (stream, "64", &column, &first);
19657 show (stream, "eabi", &column, &first);
19658
19659 fputc ('\n', stream);
19660
19661 fprintf (stream, _("\
19662-32 create o32 ABI object file (default)\n\
19663-n32 create n32 ABI object file\n\
19664-64 create 64 ABI object file\n"));
e7af610e 19665}
14e777e0 19666
1575952e 19667#ifdef TE_IRIX
14e777e0 19668enum dwarf2_format
413a266c 19669mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
14e777e0 19670{
369943fe 19671 if (HAVE_64BIT_SYMBOLS)
1575952e 19672 return dwarf2_format_64bit_irix;
14e777e0
KB
19673 else
19674 return dwarf2_format_32bit;
19675}
1575952e 19676#endif
73369e65
EC
19677
19678int
19679mips_dwarf2_addr_size (void)
19680{
6b6b3450 19681 if (HAVE_64BIT_OBJECTS)
73369e65 19682 return 8;
73369e65
EC
19683 else
19684 return 4;
19685}
5862107c
EC
19686
19687/* Standard calling conventions leave the CFA at SP on entry. */
19688void
19689mips_cfi_frame_initial_instructions (void)
19690{
19691 cfi_add_CFA_def_cfa_register (SP);
19692}
19693
707bfff6
TS
19694int
19695tc_mips_regname_to_dw2regnum (char *regname)
19696{
19697 unsigned int regnum = -1;
19698 unsigned int reg;
19699
19700 if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
19701 regnum = reg;
19702
19703 return regnum;
19704}
This page took 2.518726 seconds and 4 git commands to generate.