include/opcode/
[binutils-gdb.git] / gas / config / tc-mips.c
1 /* tc-mips.c -- assemble code for a MIPS chip.
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
4 Free Software Foundation, Inc.
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
14 the Free Software Foundation; either version 3, or (at your option)
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
24 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
25 02110-1301, USA. */
26
27 #include "as.h"
28 #include "config.h"
29 #include "subsegs.h"
30 #include "safe-ctype.h"
31
32 #include "opcode/mips.h"
33 #include "itbl-ops.h"
34 #include "dwarf2dbg.h"
35 #include "dw2gencfi.h"
36
37 /* Check assumptions made in this file. */
38 typedef char static_assert1[sizeof (offsetT) < 8 ? -1 : 1];
39 typedef char static_assert2[sizeof (valueT) < 8 ? -1 : 1];
40
41 #ifdef DEBUG
42 #define DBG(x) printf x
43 #else
44 #define DBG(x)
45 #endif
46
47 /* Clean up namespace so we can include obj-elf.h too. */
48 static int mips_output_flavor (void);
49 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
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
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()
67
68 #include "elf/mips.h"
69
70 #ifndef ECOFF_DEBUGGING
71 #define NO_ECOFF_DEBUGGING
72 #define ECOFF_DEBUGGING 0
73 #endif
74
75 int mips_flag_mdebug = -1;
76
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
81 int mips_flag_pdr = FALSE;
82 #else
83 int mips_flag_pdr = TRUE;
84 #endif
85
86 #include "ecoff.h"
87
88 static char *mips_regmask_frag;
89
90 #define ZERO 0
91 #define ATREG 1
92 #define S0 16
93 #define S7 23
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
105 #define AT mips_opts.at
106
107 extern int target_big_endian;
108
109 /* The name of the readonly data section. */
110 #define RDATA_SECTION_NAME ".rodata"
111
112 /* Ways in which an instruction can be "appended" to the output. */
113 enum 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
127 /* Information about an instruction, including its format, operands
128 and fixups. */
129 struct mips_cl_insn
130 {
131 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
132 const struct mips_opcode *insn_mo;
133
134 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
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. */
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
149 /* True if this entry cannot be moved from its current position. */
150 unsigned int fixed_p : 1;
151
152 /* True if this instruction occurred in a .set noreorder block. */
153 unsigned int noreorder_p : 1;
154
155 /* True for mips16 instructions that jump to an absolute address. */
156 unsigned int mips16_absolute_jump_p : 1;
157
158 /* True if this instruction is complete. */
159 unsigned int complete_p : 1;
160
161 /* True if this instruction is cleared from history by unconditional
162 branch. */
163 unsigned int cleared_p : 1;
164 };
165
166 /* The ABI to use. */
167 enum 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. */
178 static enum mips_abi_level mips_abi = NO_ABI;
179
180 /* Whether or not we have code that can call pic code. */
181 int mips_abicalls = FALSE;
182
183 /* Whether or not we have code which can be put into a shared
184 library. */
185 static bfd_boolean mips_in_shared = TRUE;
186
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
191 struct mips_set_options
192 {
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;
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;
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;
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;
211 /* Non-zero if we should not reorder instructions. Changed by `.set
212 reorder' and `.set noreorder'. */
213 int noreorder;
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;
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;
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;
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;
243 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
244 command line option, and the default CPU. */
245 int arch;
246 /* True if ".set sym32" is in effect. */
247 bfd_boolean sym32;
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;
257 };
258
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
263 /* True if -mgp32 was passed. */
264 static int file_mips_gp32 = -1;
265
266 /* True if -mfp32 was passed. */
267 static int file_mips_fp32 = -1;
268
269 /* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
270 static int file_mips_soft_float = 0;
271
272 /* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
273 static int file_mips_single_float = 0;
274
275 /* True if -mnan=2008, false if -mnan=legacy. */
276 static bfd_boolean mips_flag_nan2008 = FALSE;
277
278 static struct mips_set_options mips_opts =
279 {
280 /* isa */ ISA_UNKNOWN, /* ase */ 0, /* mips16 */ -1, /* micromips */ -1,
281 /* noreorder */ 0, /* at */ ATREG, /* warn_about_macros */ 0,
282 /* nomove */ 0, /* nobopt */ 0, /* noautoextend */ 0, /* insn32 */ FALSE,
283 /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN, /* sym32 */ FALSE,
284 /* soft_float */ FALSE, /* single_float */ FALSE
285 };
286
287 /* The set of ASEs that were selected on the command line, either
288 explicitly via ASE options or implicitly through things like -march. */
289 static unsigned int file_ase;
290
291 /* Which bits of file_ase were explicitly set or cleared by ASE options. */
292 static unsigned int file_ase_explicit;
293
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. */
297 unsigned long mips_gprmask;
298 unsigned long mips_cprmask[4];
299
300 /* MIPS ISA we are using for this output file. */
301 static int file_mips_isa = ISA_UNKNOWN;
302
303 /* True if any MIPS16 code was produced. */
304 static int file_ase_mips16;
305
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
311 /* True if any microMIPS code was produced. */
312 static int file_ase_micromips;
313
314 /* True if we want to create R_MIPS_JALR for jalr $25. */
315 #ifdef TE_IRIX
316 #define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
317 #else
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))
324 #endif
325
326 /* The argument of the -march= flag. The architecture we are assembling. */
327 static int file_mips_arch = CPU_UNKNOWN;
328 static const char *mips_arch_string;
329
330 /* The argument of the -mtune= flag. The architecture for which we
331 are optimizing. */
332 static int mips_tune = CPU_UNKNOWN;
333 static const char *mips_tune_string;
334
335 /* True when generating 32-bit code for a 64-bit processor. */
336 static int mips_32bitmode = 0;
337
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. */
342 #define ABI_NEEDS_64BIT_REGS(ABI) \
343 ((ABI) == N32_ABI \
344 || (ABI) == N64_ABI \
345 || (ABI) == O64_ABI)
346
347 /* Return true if ISA supports 64 bit wide gp registers. */
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)
354
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
364 /* Return true if ISA supports 64-bit right rotate (dror et al.)
365 instructions. */
366 #define ISA_HAS_DROR(ISA) \
367 ((ISA) == ISA_MIPS64R2 \
368 || (mips_opts.micromips \
369 && ISA_HAS_64BIT_REGS (ISA)) \
370 )
371
372 /* Return true if ISA supports 32-bit right rotate (ror et al.)
373 instructions. */
374 #define ISA_HAS_ROR(ISA) \
375 ((ISA) == ISA_MIPS32R2 \
376 || (ISA) == ISA_MIPS64R2 \
377 || (mips_opts.ase & ASE_SMARTMIPS) \
378 || mips_opts.micromips \
379 )
380
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)
387
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
394 #define HAVE_32BIT_GPRS \
395 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
396
397 #define HAVE_32BIT_FPRS \
398 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
399
400 #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
401 #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
402
403 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
404
405 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
406
407 /* True if relocations are stored in-place. */
408 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
409
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)
414
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)
420
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. */
424 #define ADDRESS_ADD_INSN \
425 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
426
427 #define ADDRESS_ADDI_INSN \
428 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
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
436 /* Return true if the given CPU supports the MIPS16 ASE. */
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)
440
441 /* Return true if the given CPU supports the microMIPS ASE. */
442 #define CPU_HAS_MICROMIPS(cpu) 0
443
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
450 /* True if CPU is in the Octeon family */
451 #define CPU_IS_OCTEON(CPU) ((CPU) == CPU_OCTEON || (CPU) == CPU_OCTEONP || (CPU) == CPU_OCTEON2)
452
453 /* True if CPU has seq/sne and seqi/snei instructions. */
454 #define CPU_HAS_SEQ(CPU) (CPU_IS_OCTEON (CPU))
455
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
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 \
478 || mips_opts.arch == CPU_R5900 \
479 || mips_opts.arch == CPU_R10000 \
480 || mips_opts.arch == CPU_R12000 \
481 || mips_opts.arch == CPU_R14000 \
482 || mips_opts.arch == CPU_R16000 \
483 || mips_opts.arch == CPU_RM7000 \
484 || mips_opts.arch == CPU_VR5500 \
485 || mips_opts.micromips \
486 )
487
488 /* Whether the processor uses hardware interlocks to protect reads
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
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 \
496 || mips_opts.arch == CPU_R5900 \
497 || mips_opts.micromips \
498 )
499
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
506 levels I, II, and III and microMIPS mode instructions are always
507 interlocked. */
508 /* Itbl support may require additional care here. */
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 \
514 || mips_opts.micromips \
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
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 )
527
528 /* Is this a mfhi or mflo instruction? */
529 #define MF_HILO_INSN(PINFO) \
530 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
531
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
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
542 /* MIPS PIC level. */
543
544 enum mips_pic_level mips_pic;
545
546 /* 1 if we should generate 32 bit offsets from the $gp register in
547 SVR4_PIC mode. Currently has no meaning in other modes. */
548 static int mips_big_got = 0;
549
550 /* 1 if trap instructions should used for overflow rather than break
551 instructions. */
552 static int mips_trap = 0;
553
554 /* 1 if double width floating point constants should not be constructed
555 by assembling two single width halves into two single width floating
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
558 in the status register, and the setting of this bit cannot be determined
559 automatically at assemble time. */
560 static int mips_disable_float_construction;
561
562 /* Non-zero if any .set noreorder directives were used. */
563
564 static int mips_any_noreorder;
565
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. */
568 static int mips_7000_hilo_fix;
569
570 /* The size of objects in the small data section. */
571 static unsigned int g_switch_value = 8;
572 /* Whether the -G option was used. */
573 static 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
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.
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 */
590 static int nopic_need_relax (symbolS *, int);
591
592 /* handle of the OPCODE hash table */
593 static struct hash_control *op_hash = NULL;
594
595 /* The opcode hash table we use for the mips16. */
596 static struct hash_control *mips16_op_hash = NULL;
597
598 /* The opcode hash table we use for the microMIPS ASE. */
599 static struct hash_control *micromips_op_hash = NULL;
600
601 /* This array holds the chars that always start a comment. If the
602 pre-processor is disabled, these aren't very useful */
603 const 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
610 #NO_APP at the beginning of its output. */
611 /* Also note that C style comments are always supported. */
612 const char line_comment_chars[] = "#";
613
614 /* This array holds machine specific line separator characters. */
615 const char line_separator_chars[] = ";";
616
617 /* Chars that can be used to separate mant from exp in floating point nums */
618 const 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 */
623 const 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
630 static char *insn_error;
631
632 static 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. */
638 static offsetT mips_cprestore_offset = -1;
639
640 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
641 more optimizations, it can use a register value instead of a memory-saved
642 offset and even an other register than $gp as global pointer. */
643 static offsetT mips_cpreturn_offset = -1;
644 static int mips_cpreturn_register = -1;
645 static int mips_gp_register = GP;
646 static int mips_gprel_offset = 0;
647
648 /* Whether mips_cprestore_offset has been set in the current function
649 (or whether it has already been warned about, if not). */
650 static int mips_cprestore_valid = 0;
651
652 /* This is the register which holds the stack frame, as set by the
653 .frame pseudo-op. This is needed to implement .cprestore. */
654 static int mips_frame_reg = SP;
655
656 /* Whether mips_frame_reg has been set in the current function
657 (or whether it has already been warned about, if not). */
658 static int mips_frame_reg_valid = 0;
659
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. */
667 static 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. */
671 static int mips_debug = 0;
672
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
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. */
687 static struct mips_cl_insn history[1 + MAX_NOPS];
688
689 /* Nop instructions used by emit_nop. */
690 static struct mips_cl_insn nop_insn;
691 static struct mips_cl_insn mips16_nop_insn;
692 static struct mips_cl_insn micromips_nop16_insn;
693 static struct mips_cl_insn micromips_nop32_insn;
694
695 /* The appropriate nop for the current mode. */
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))
703
704 /* The size of NOP_INSN in bytes. */
705 #define NOP_INSN_SIZE ((mips_opts.mips16 \
706 || (mips_opts.micromips && !mips_opts.insn32)) \
707 ? 2 : 4)
708
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. */
713 static fragS *prev_nop_frag;
714
715 /* The number of nop instructions we created in prev_nop_frag. */
716 static int prev_nop_frag_holds;
717
718 /* The number of nop instructions that we know we need in
719 prev_nop_frag. */
720 static int prev_nop_frag_required;
721
722 /* The number of instructions we've seen since prev_nop_frag. */
723 static int prev_nop_frag_since;
724
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.
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
734 corresponding LO relocation. */
735
736 struct mips_hi_fixup
737 {
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
748 static struct mips_hi_fixup *mips_hi_fixup_list;
749
750 /* The frag containing the last explicit relocation operator.
751 Null if explicit relocations have not been used. */
752
753 static fragS *prev_reloc_op_frag;
754
755 /* Map normal MIPS register numbers to mips16 register numbers. */
756
757 #define X ILLEGAL_REG
758 static const int mips32_to_16_reg_map[] =
759 {
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
769 static const unsigned int mips16_to_32_reg_map[] =
770 {
771 16, 17, 2, 3, 4, 5, 6, 7
772 };
773
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
785 /* reg type m: 0, 17, 2, 3, 16, 18, 19, 20. */
786 static 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. */
795 static 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. */
816 static const unsigned int micromips_to_32_reg_h_map1[] =
817 {
818 5, 5, 6, 4, 4, 4, 4, 4
819 };
820 static const unsigned int micromips_to_32_reg_h_map2[] =
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. */
828 static 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. */
836 static 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. */
842 static const int micromips_imm_b_map[] =
843 {
844 1, 4, 8, 12, 16, 20, 24, -1
845 };
846
847 /* microMIPS imm type C. */
848 static 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
853 /* Classifies the kind of instructions we're interested in when
854 implementing -mfix-vr4120. */
855 enum fix_vr4120_class
856 {
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
866 /* ...likewise -mfix-loongson2f-jump. */
867 static bfd_boolean mips_fix_loongson2f_jump;
868
869 /* ...likewise -mfix-loongson2f-nop. */
870 static bfd_boolean mips_fix_loongson2f_nop;
871
872 /* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed. */
873 static bfd_boolean mips_fix_loongson2f;
874
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. */
878 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
879
880 /* True if -mfix-vr4120 is in force. */
881 static int mips_fix_vr4120;
882
883 /* ...likewise -mfix-vr4130. */
884 static int mips_fix_vr4130;
885
886 /* ...likewise -mfix-24k. */
887 static int mips_fix_24k;
888
889 /* ...likewise -mfix-cn63xxp1 */
890 static bfd_boolean mips_fix_cn63xxp1;
891
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
897 static int mips_relax_branch;
898 \f
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
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:
916
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.
933
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
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. */
958 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
959
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
966 #define RELAX_DELAY_SLOT_16BIT 0x100000
967 #define RELAX_DELAY_SLOT_SIZE_FIRST 0x200000
968 #define RELAX_DELAY_SLOT_SIZE_SECOND 0x400000
969
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:
1016
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. */
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)))
1045 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
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)
1051
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))
1079 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
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)
1091
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
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))
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)
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)
1137
1138 /* Sign-extend 16-bit value X. */
1139 #define SEXT_16BIT(X) ((((X) + 0x8000) & 0xffff) - 0x8000)
1140
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
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
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
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
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". */
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)
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. */
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))
1200 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1201 EXTRACT_BITS ((INSN).insn_opcode, \
1202 MIPS16OP_MASK_##FIELD, \
1203 MIPS16OP_SH_##FIELD)
1204
1205 /* The MIPS16 EXTEND opcode, shifted left 16 places. */
1206 #define MIPS16_EXTEND (0xf000U << 16)
1207 \f
1208 /* Whether or not we are emitting a branch-likely macro. */
1209 static bfd_boolean emit_branch_likely_macro = FALSE;
1210
1211 /* Global variables used when generating relaxable macros. See the
1212 comment above RELAX_ENCODE for more details about how relaxation
1213 is used. */
1214 static 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;
1231 \f
1232 /* Global variables used to decide whether a macro needs a warning. */
1233 static struct {
1234 /* True if the macro is in a branch delay slot. */
1235 bfd_boolean delay_slot_p;
1236
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
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
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
1264 /* The first variant frag for this macro. */
1265 fragS *first_frag;
1266 } mips_macro_warning;
1267 \f
1268 /* Prototypes for static functions. */
1269
1270 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1271
1272 static void append_insn
1273 (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *,
1274 bfd_boolean expansionp);
1275 static void mips_no_prev_insn (void);
1276 static void macro_build (expressionS *, const char *, const char *, ...);
1277 static void mips16_macro_build
1278 (expressionS *, const char *, const char *, va_list *);
1279 static void load_register (int, expressionS *, int);
1280 static void macro_start (void);
1281 static void macro_end (void);
1282 static void macro (struct mips_cl_insn *ip, char *str);
1283 static void mips16_macro (struct mips_cl_insn * ip);
1284 static void mips_ip (char *str, struct mips_cl_insn * ip);
1285 static void mips16_ip (char *str, struct mips_cl_insn * ip);
1286 static void mips16_immed
1287 (char *, unsigned int, int, bfd_reloc_code_real_type, offsetT,
1288 unsigned int, unsigned long *);
1289 static size_t my_getSmallExpression
1290 (expressionS *, bfd_reloc_code_real_type *, char *);
1291 static void my_getExpression (expressionS *, char *);
1292 static void s_align (int);
1293 static void s_change_sec (int);
1294 static void s_change_section (int);
1295 static void s_cons (int);
1296 static void s_float_cons (int);
1297 static void s_mips_globl (int);
1298 static void s_option (int);
1299 static void s_mipsset (int);
1300 static void s_abicalls (int);
1301 static void s_cpload (int);
1302 static void s_cpsetup (int);
1303 static void s_cplocal (int);
1304 static void s_cprestore (int);
1305 static void s_cpreturn (int);
1306 static void s_dtprelword (int);
1307 static void s_dtpreldword (int);
1308 static void s_tprelword (int);
1309 static void s_tpreldword (int);
1310 static void s_gpvalue (int);
1311 static void s_gpword (int);
1312 static void s_gpdword (int);
1313 static void s_ehword (int);
1314 static void s_cpadd (int);
1315 static void s_insn (int);
1316 static void s_nan (int);
1317 static void md_obj_begin (void);
1318 static void md_obj_end (void);
1319 static void s_mips_ent (int);
1320 static void s_mips_end (int);
1321 static void s_mips_frame (int);
1322 static void s_mips_mask (int reg_type);
1323 static void s_mips_stab (int);
1324 static void s_mips_weakext (int);
1325 static void s_mips_file (int);
1326 static void s_mips_loc (int);
1327 static bfd_boolean pic_need_relax (symbolS *, asection *);
1328 static int relaxed_branch_length (fragS *, asection *, int);
1329 static int validate_mips_insn (const struct mips_opcode *);
1330 static int validate_micromips_insn (const struct mips_opcode *);
1331 static int relaxed_micromips_16bit_branch_length (fragS *, asection *, int);
1332 static int relaxed_micromips_32bit_branch_length (fragS *, asection *, int);
1333
1334 /* Table and functions used to map between CPU/ISA names, and
1335 ISA levels, and CPU numbers. */
1336
1337 struct mips_cpu_info
1338 {
1339 const char *name; /* CPU or ISA name. */
1340 int flags; /* MIPS_CPU_* flags. */
1341 int ase; /* Set of ASEs implemented by the CPU. */
1342 int isa; /* ISA level. */
1343 int cpu; /* CPU number (default CPU if ISA). */
1344 };
1345
1346 #define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1347
1348 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1349 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1350 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1351 \f
1352 /* Command-line options. */
1353 const char *md_shortopts = "O::g::G:";
1354
1355 enum 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,
1425 OPTION_INSN32,
1426 OPTION_NO_INSN32,
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,
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,
1448 OPTION_NAN,
1449 OPTION_END_OF_ENUM
1450 };
1451
1452 struct 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},
1534 {"minsn32", no_argument, NULL, OPTION_INSN32},
1535 {"mno-insn32", no_argument, NULL, OPTION_NO_INSN32},
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. */
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},
1564 {"mnan", required_argument, NULL, OPTION_NAN},
1565
1566 {NULL, no_argument, NULL, 0}
1567 };
1568 size_t md_longopts_size = sizeof (md_longopts);
1569 \f
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. */
1573 struct 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. */
1600 static 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. */
1644 static const unsigned int mips_ase_groups[] = {
1645 ASE_DSP | ASE_DSPR2
1646 };
1647 \f
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
1663 they are not currently supported: .asm0, .endr, .lab, .struct. */
1664
1665 static const pseudo_typeS mips_pseudo_table[] =
1666 {
1667 /* MIPS specific pseudo-ops. */
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},
1675 {"cpsetup", s_cpsetup, 0},
1676 {"cplocal", s_cplocal, 0},
1677 {"cprestore", s_cprestore, 0},
1678 {"cpreturn", s_cpreturn, 0},
1679 {"dtprelword", s_dtprelword, 0},
1680 {"dtpreldword", s_dtpreldword, 0},
1681 {"tprelword", s_tprelword, 0},
1682 {"tpreldword", s_tpreldword, 0},
1683 {"gpvalue", s_gpvalue, 0},
1684 {"gpword", s_gpword, 0},
1685 {"gpdword", s_gpdword, 0},
1686 {"ehword", s_ehword, 0},
1687 {"cpadd", s_cpadd, 0},
1688 {"insn", s_insn, 0},
1689 {"nan", s_nan, 0},
1690
1691 /* Relatively generic pseudo-ops that happen to be used on MIPS
1692 chips. */
1693 {"asciiz", stringer, 8 + 1},
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},
1699 {"origin", s_org, 0},
1700 {"repeat", s_rept, 0},
1701
1702 /* For MIPS this is non-standard, but we define it for consistency. */
1703 {"sbss", s_change_sec, 'B'},
1704
1705 /* These pseudo-ops are defined in read.c, but must be overridden
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},
1719 {"section", s_change_section, 0},
1720 {"short", s_cons, 1},
1721 {"single", s_float_cons, 'f'},
1722 {"stabd", s_mips_stab, 'd'},
1723 {"stabn", s_mips_stab, 'n'},
1724 {"stabs", s_mips_stab, 's'},
1725 {"text", s_change_sec, 't'},
1726 {"word", s_cons, 2},
1727
1728 { "extern", ecoff_directive_extern, 0},
1729
1730 { NULL, NULL, 0 },
1731 };
1732
1733 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1734 {
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. */
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},
1742 {"file", s_mips_file, 0},
1743 {"fmask", s_mips_mask, 'F'},
1744 {"frame", s_mips_frame, 0},
1745 {"loc", s_mips_loc, 0},
1746 {"mask", s_mips_mask, 'R'},
1747 {"verstamp", s_ignore, 0},
1748 { NULL, NULL, 0 },
1749 };
1750
1751 /* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1752 purpose of the `.dc.a' internal pseudo-op. */
1753
1754 int
1755 mips_address_bytes (void)
1756 {
1757 return HAVE_64BIT_ADDRESSES ? 8 : 4;
1758 }
1759
1760 extern void pop_insert (const pseudo_typeS *);
1761
1762 void
1763 mips_pop_insert (void)
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
1772 struct insn_label_list
1773 {
1774 struct insn_label_list *next;
1775 symbolS *label;
1776 };
1777
1778 static struct insn_label_list *free_insn_labels;
1779 #define label_list tc_segment_info_data.labels
1780
1781 static void mips_clear_insn_labels (void);
1782 static void mips_mark_labels (void);
1783 static void mips_compressed_mark_labels (void);
1784
1785 static inline void
1786 mips_clear_insn_labels (void)
1787 {
1788 register struct insn_label_list **pl;
1789 segment_info_type *si;
1790
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 }
1800 }
1801
1802 /* Mark instruction labels in MIPS16/microMIPS mode. */
1803
1804 static inline void
1805 mips_mark_labels (void)
1806 {
1807 if (HAVE_CODE_COMPRESSION)
1808 mips_compressed_mark_labels ();
1809 }
1810 \f
1811 static char *expr_end;
1812
1813 /* Expressions which appear in instructions. These are set by
1814 mips_ip. */
1815
1816 static expressionS imm_expr;
1817 static expressionS imm2_expr;
1818 static expressionS offset_expr;
1819
1820 /* Relocs associated with imm_expr and offset_expr. */
1821
1822 static bfd_reloc_code_real_type imm_reloc[3]
1823 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1824 static bfd_reloc_code_real_type offset_reloc[3]
1825 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1826
1827 /* This is set to the resulting size of the instruction to be produced
1828 by mips16_ip if an explicit extension is used or by mips_ip if an
1829 explicit size is supplied. */
1830
1831 static unsigned int forced_insn_length;
1832
1833 /* True if we are assembling an instruction. All dot symbols defined during
1834 this time should be treated as code labels. */
1835
1836 static bfd_boolean mips_assembling_insn;
1837
1838 /* The pdr segment for per procedure frame/regmask info. Not used for
1839 ECOFF debugging. */
1840
1841 static segT pdr_seg;
1842
1843 /* The default target format to use. */
1844
1845 #if defined (TE_FreeBSD)
1846 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1847 #elif defined (TE_TMIPS)
1848 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1849 #else
1850 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1851 #endif
1852
1853 const char *
1854 mips_target_format (void)
1855 {
1856 switch (OUTPUT_FLAVOR)
1857 {
1858 case bfd_target_elf_flavour:
1859 #ifdef TE_VXWORKS
1860 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1861 return (target_big_endian
1862 ? "elf32-bigmips-vxworks"
1863 : "elf32-littlemips-vxworks");
1864 #endif
1865 return (target_big_endian
1866 ? (HAVE_64BIT_OBJECTS
1867 ? ELF_TARGET ("elf64-", "big")
1868 : (HAVE_NEWABI
1869 ? ELF_TARGET ("elf32-n", "big")
1870 : ELF_TARGET ("elf32-", "big")))
1871 : (HAVE_64BIT_OBJECTS
1872 ? ELF_TARGET ("elf64-", "little")
1873 : (HAVE_NEWABI
1874 ? ELF_TARGET ("elf32-n", "little")
1875 : ELF_TARGET ("elf32-", "little"))));
1876 default:
1877 abort ();
1878 return NULL;
1879 }
1880 }
1881
1882 /* Return the ISA revision that is currently in use, or 0 if we are
1883 generating code for MIPS V or below. */
1884
1885 static int
1886 mips_isa_rev (void)
1887 {
1888 if (mips_opts.isa == ISA_MIPS32R2 || mips_opts.isa == ISA_MIPS64R2)
1889 return 2;
1890
1891 /* microMIPS implies revision 2 or above. */
1892 if (mips_opts.micromips)
1893 return 2;
1894
1895 if (mips_opts.isa == ISA_MIPS32 || mips_opts.isa == ISA_MIPS64)
1896 return 1;
1897
1898 return 0;
1899 }
1900
1901 /* Return the mask of all ASEs that are revisions of those in FLAGS. */
1902
1903 static unsigned int
1904 mips_ase_mask (unsigned int flags)
1905 {
1906 unsigned int i;
1907
1908 for (i = 0; i < ARRAY_SIZE (mips_ase_groups); i++)
1909 if (flags & mips_ase_groups[i])
1910 flags |= mips_ase_groups[i];
1911 return flags;
1912 }
1913
1914 /* Check whether the current ISA supports ASE. Issue a warning if
1915 appropriate. */
1916
1917 static void
1918 mips_check_isa_supports_ase (const struct mips_ase *ase)
1919 {
1920 const char *base;
1921 int min_rev, size;
1922 static unsigned int warned_isa;
1923 static unsigned int warned_fp32;
1924
1925 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
1926 min_rev = mips_opts.micromips ? ase->micromips64_rev : ase->mips64_rev;
1927 else
1928 min_rev = mips_opts.micromips ? ase->micromips32_rev : ase->mips32_rev;
1929 if ((min_rev < 0 || mips_isa_rev () < min_rev)
1930 && (warned_isa & ase->flags) != ase->flags)
1931 {
1932 warned_isa |= ase->flags;
1933 base = mips_opts.micromips ? "microMIPS" : "MIPS";
1934 size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
1935 if (min_rev < 0)
1936 as_warn (_("The %d-bit %s architecture does not support the"
1937 " `%s' extension"), size, base, ase->name);
1938 else
1939 as_warn (_("The `%s' extension requires %s%d revision %d or greater"),
1940 ase->name, base, size, min_rev);
1941 }
1942 if ((ase->flags & FP64_ASES)
1943 && mips_opts.fp32
1944 && (warned_fp32 & ase->flags) != ase->flags)
1945 {
1946 warned_fp32 |= ase->flags;
1947 as_warn (_("The `%s' extension requires 64-bit FPRs"), ase->name);
1948 }
1949 }
1950
1951 /* Check all enabled ASEs to see whether they are supported by the
1952 chosen architecture. */
1953
1954 static void
1955 mips_check_isa_supports_ases (void)
1956 {
1957 unsigned int i, mask;
1958
1959 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
1960 {
1961 mask = mips_ase_mask (mips_ases[i].flags);
1962 if ((mips_opts.ase & mask) == mips_ases[i].flags)
1963 mips_check_isa_supports_ase (&mips_ases[i]);
1964 }
1965 }
1966
1967 /* Set the state of ASE to ENABLED_P. Return the mask of ASE_* flags
1968 that were affected. */
1969
1970 static unsigned int
1971 mips_set_ase (const struct mips_ase *ase, bfd_boolean enabled_p)
1972 {
1973 unsigned int mask;
1974
1975 mask = mips_ase_mask (ase->flags);
1976 mips_opts.ase &= ~mask;
1977 if (enabled_p)
1978 mips_opts.ase |= ase->flags;
1979 return mask;
1980 }
1981
1982 /* Return the ASE called NAME, or null if none. */
1983
1984 static const struct mips_ase *
1985 mips_lookup_ase (const char *name)
1986 {
1987 unsigned int i;
1988
1989 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
1990 if (strcmp (name, mips_ases[i].name) == 0)
1991 return &mips_ases[i];
1992 return NULL;
1993 }
1994
1995 /* Return the length of a microMIPS instruction in bytes. If bits of
1996 the mask beyond the low 16 are 0, then it is a 16-bit instruction.
1997 Otherwise assume a 32-bit instruction; 48-bit instructions (0x1f
1998 major opcode) will require further modifications to the opcode
1999 table. */
2000
2001 static inline unsigned int
2002 micromips_insn_length (const struct mips_opcode *mo)
2003 {
2004 return (mo->mask >> 16) == 0 ? 2 : 4;
2005 }
2006
2007 /* Return the length of MIPS16 instruction OPCODE. */
2008
2009 static inline unsigned int
2010 mips16_opcode_length (unsigned long opcode)
2011 {
2012 return (opcode >> 16) == 0 ? 2 : 4;
2013 }
2014
2015 /* Return the length of instruction INSN. */
2016
2017 static inline unsigned int
2018 insn_length (const struct mips_cl_insn *insn)
2019 {
2020 if (mips_opts.micromips)
2021 return micromips_insn_length (insn->insn_mo);
2022 else if (mips_opts.mips16)
2023 return mips16_opcode_length (insn->insn_opcode);
2024 else
2025 return 4;
2026 }
2027
2028 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
2029
2030 static void
2031 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
2032 {
2033 size_t i;
2034
2035 insn->insn_mo = mo;
2036 insn->insn_opcode = mo->match;
2037 insn->frag = NULL;
2038 insn->where = 0;
2039 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2040 insn->fixp[i] = NULL;
2041 insn->fixed_p = (mips_opts.noreorder > 0);
2042 insn->noreorder_p = (mips_opts.noreorder > 0);
2043 insn->mips16_absolute_jump_p = 0;
2044 insn->complete_p = 0;
2045 insn->cleared_p = 0;
2046 }
2047
2048 /* Record the current MIPS16/microMIPS mode in now_seg. */
2049
2050 static void
2051 mips_record_compressed_mode (void)
2052 {
2053 segment_info_type *si;
2054
2055 si = seg_info (now_seg);
2056 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
2057 si->tc_segment_info_data.mips16 = mips_opts.mips16;
2058 if (si->tc_segment_info_data.micromips != mips_opts.micromips)
2059 si->tc_segment_info_data.micromips = mips_opts.micromips;
2060 }
2061
2062 /* Read a standard MIPS instruction from BUF. */
2063
2064 static unsigned long
2065 read_insn (char *buf)
2066 {
2067 if (target_big_endian)
2068 return bfd_getb32 ((bfd_byte *) buf);
2069 else
2070 return bfd_getl32 ((bfd_byte *) buf);
2071 }
2072
2073 /* Write standard MIPS instruction INSN to BUF. Return a pointer to
2074 the next byte. */
2075
2076 static char *
2077 write_insn (char *buf, unsigned int insn)
2078 {
2079 md_number_to_chars (buf, insn, 4);
2080 return buf + 4;
2081 }
2082
2083 /* Read a microMIPS or MIPS16 opcode from BUF, given that it
2084 has length LENGTH. */
2085
2086 static unsigned long
2087 read_compressed_insn (char *buf, unsigned int length)
2088 {
2089 unsigned long insn;
2090 unsigned int i;
2091
2092 insn = 0;
2093 for (i = 0; i < length; i += 2)
2094 {
2095 insn <<= 16;
2096 if (target_big_endian)
2097 insn |= bfd_getb16 ((char *) buf);
2098 else
2099 insn |= bfd_getl16 ((char *) buf);
2100 buf += 2;
2101 }
2102 return insn;
2103 }
2104
2105 /* Write microMIPS or MIPS16 instruction INSN to BUF, given that the
2106 instruction is LENGTH bytes long. Return a pointer to the next byte. */
2107
2108 static char *
2109 write_compressed_insn (char *buf, unsigned int insn, unsigned int length)
2110 {
2111 unsigned int i;
2112
2113 for (i = 0; i < length; i += 2)
2114 md_number_to_chars (buf + i, insn >> ((length - i - 2) * 8), 2);
2115 return buf + length;
2116 }
2117
2118 /* Install INSN at the location specified by its "frag" and "where" fields. */
2119
2120 static void
2121 install_insn (const struct mips_cl_insn *insn)
2122 {
2123 char *f = insn->frag->fr_literal + insn->where;
2124 if (HAVE_CODE_COMPRESSION)
2125 write_compressed_insn (f, insn->insn_opcode, insn_length (insn));
2126 else
2127 write_insn (f, insn->insn_opcode);
2128 mips_record_compressed_mode ();
2129 }
2130
2131 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
2132 and install the opcode in the new location. */
2133
2134 static void
2135 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
2136 {
2137 size_t i;
2138
2139 insn->frag = frag;
2140 insn->where = where;
2141 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2142 if (insn->fixp[i] != NULL)
2143 {
2144 insn->fixp[i]->fx_frag = frag;
2145 insn->fixp[i]->fx_where = where;
2146 }
2147 install_insn (insn);
2148 }
2149
2150 /* Add INSN to the end of the output. */
2151
2152 static void
2153 add_fixed_insn (struct mips_cl_insn *insn)
2154 {
2155 char *f = frag_more (insn_length (insn));
2156 move_insn (insn, frag_now, f - frag_now->fr_literal);
2157 }
2158
2159 /* Start a variant frag and move INSN to the start of the variant part,
2160 marking it as fixed. The other arguments are as for frag_var. */
2161
2162 static void
2163 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
2164 relax_substateT subtype, symbolS *symbol, offsetT offset)
2165 {
2166 frag_grow (max_chars);
2167 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
2168 insn->fixed_p = 1;
2169 frag_var (rs_machine_dependent, max_chars, var,
2170 subtype, symbol, offset, NULL);
2171 }
2172
2173 /* Insert N copies of INSN into the history buffer, starting at
2174 position FIRST. Neither FIRST nor N need to be clipped. */
2175
2176 static void
2177 insert_into_history (unsigned int first, unsigned int n,
2178 const struct mips_cl_insn *insn)
2179 {
2180 if (mips_relax.sequence != 2)
2181 {
2182 unsigned int i;
2183
2184 for (i = ARRAY_SIZE (history); i-- > first;)
2185 if (i >= first + n)
2186 history[i] = history[i - n];
2187 else
2188 history[i] = *insn;
2189 }
2190 }
2191
2192 /* Initialize vr4120_conflicts. There is a bit of duplication here:
2193 the idea is to make it obvious at a glance that each errata is
2194 included. */
2195
2196 static void
2197 init_vr4120_conflicts (void)
2198 {
2199 #define CONFLICT(FIRST, SECOND) \
2200 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
2201
2202 /* Errata 21 - [D]DIV[U] after [D]MACC */
2203 CONFLICT (MACC, DIV);
2204 CONFLICT (DMACC, DIV);
2205
2206 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
2207 CONFLICT (DMULT, DMULT);
2208 CONFLICT (DMULT, DMACC);
2209 CONFLICT (DMACC, DMULT);
2210 CONFLICT (DMACC, DMACC);
2211
2212 /* Errata 24 - MT{LO,HI} after [D]MACC */
2213 CONFLICT (MACC, MTHILO);
2214 CONFLICT (DMACC, MTHILO);
2215
2216 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
2217 instruction is executed immediately after a MACC or DMACC
2218 instruction, the result of [either instruction] is incorrect." */
2219 CONFLICT (MACC, MULT);
2220 CONFLICT (MACC, DMULT);
2221 CONFLICT (DMACC, MULT);
2222 CONFLICT (DMACC, DMULT);
2223
2224 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
2225 executed immediately after a DMULT, DMULTU, DIV, DIVU,
2226 DDIV or DDIVU instruction, the result of the MACC or
2227 DMACC instruction is incorrect.". */
2228 CONFLICT (DMULT, MACC);
2229 CONFLICT (DMULT, DMACC);
2230 CONFLICT (DIV, MACC);
2231 CONFLICT (DIV, DMACC);
2232
2233 #undef CONFLICT
2234 }
2235
2236 struct regname {
2237 const char *name;
2238 unsigned int num;
2239 };
2240
2241 #define RTYPE_MASK 0x1ff00
2242 #define RTYPE_NUM 0x00100
2243 #define RTYPE_FPU 0x00200
2244 #define RTYPE_FCC 0x00400
2245 #define RTYPE_VEC 0x00800
2246 #define RTYPE_GP 0x01000
2247 #define RTYPE_CP0 0x02000
2248 #define RTYPE_PC 0x04000
2249 #define RTYPE_ACC 0x08000
2250 #define RTYPE_CCC 0x10000
2251 #define RNUM_MASK 0x000ff
2252 #define RWARN 0x80000
2253
2254 #define GENERIC_REGISTER_NUMBERS \
2255 {"$0", RTYPE_NUM | 0}, \
2256 {"$1", RTYPE_NUM | 1}, \
2257 {"$2", RTYPE_NUM | 2}, \
2258 {"$3", RTYPE_NUM | 3}, \
2259 {"$4", RTYPE_NUM | 4}, \
2260 {"$5", RTYPE_NUM | 5}, \
2261 {"$6", RTYPE_NUM | 6}, \
2262 {"$7", RTYPE_NUM | 7}, \
2263 {"$8", RTYPE_NUM | 8}, \
2264 {"$9", RTYPE_NUM | 9}, \
2265 {"$10", RTYPE_NUM | 10}, \
2266 {"$11", RTYPE_NUM | 11}, \
2267 {"$12", RTYPE_NUM | 12}, \
2268 {"$13", RTYPE_NUM | 13}, \
2269 {"$14", RTYPE_NUM | 14}, \
2270 {"$15", RTYPE_NUM | 15}, \
2271 {"$16", RTYPE_NUM | 16}, \
2272 {"$17", RTYPE_NUM | 17}, \
2273 {"$18", RTYPE_NUM | 18}, \
2274 {"$19", RTYPE_NUM | 19}, \
2275 {"$20", RTYPE_NUM | 20}, \
2276 {"$21", RTYPE_NUM | 21}, \
2277 {"$22", RTYPE_NUM | 22}, \
2278 {"$23", RTYPE_NUM | 23}, \
2279 {"$24", RTYPE_NUM | 24}, \
2280 {"$25", RTYPE_NUM | 25}, \
2281 {"$26", RTYPE_NUM | 26}, \
2282 {"$27", RTYPE_NUM | 27}, \
2283 {"$28", RTYPE_NUM | 28}, \
2284 {"$29", RTYPE_NUM | 29}, \
2285 {"$30", RTYPE_NUM | 30}, \
2286 {"$31", RTYPE_NUM | 31}
2287
2288 #define FPU_REGISTER_NAMES \
2289 {"$f0", RTYPE_FPU | 0}, \
2290 {"$f1", RTYPE_FPU | 1}, \
2291 {"$f2", RTYPE_FPU | 2}, \
2292 {"$f3", RTYPE_FPU | 3}, \
2293 {"$f4", RTYPE_FPU | 4}, \
2294 {"$f5", RTYPE_FPU | 5}, \
2295 {"$f6", RTYPE_FPU | 6}, \
2296 {"$f7", RTYPE_FPU | 7}, \
2297 {"$f8", RTYPE_FPU | 8}, \
2298 {"$f9", RTYPE_FPU | 9}, \
2299 {"$f10", RTYPE_FPU | 10}, \
2300 {"$f11", RTYPE_FPU | 11}, \
2301 {"$f12", RTYPE_FPU | 12}, \
2302 {"$f13", RTYPE_FPU | 13}, \
2303 {"$f14", RTYPE_FPU | 14}, \
2304 {"$f15", RTYPE_FPU | 15}, \
2305 {"$f16", RTYPE_FPU | 16}, \
2306 {"$f17", RTYPE_FPU | 17}, \
2307 {"$f18", RTYPE_FPU | 18}, \
2308 {"$f19", RTYPE_FPU | 19}, \
2309 {"$f20", RTYPE_FPU | 20}, \
2310 {"$f21", RTYPE_FPU | 21}, \
2311 {"$f22", RTYPE_FPU | 22}, \
2312 {"$f23", RTYPE_FPU | 23}, \
2313 {"$f24", RTYPE_FPU | 24}, \
2314 {"$f25", RTYPE_FPU | 25}, \
2315 {"$f26", RTYPE_FPU | 26}, \
2316 {"$f27", RTYPE_FPU | 27}, \
2317 {"$f28", RTYPE_FPU | 28}, \
2318 {"$f29", RTYPE_FPU | 29}, \
2319 {"$f30", RTYPE_FPU | 30}, \
2320 {"$f31", RTYPE_FPU | 31}
2321
2322 #define FPU_CONDITION_CODE_NAMES \
2323 {"$fcc0", RTYPE_FCC | 0}, \
2324 {"$fcc1", RTYPE_FCC | 1}, \
2325 {"$fcc2", RTYPE_FCC | 2}, \
2326 {"$fcc3", RTYPE_FCC | 3}, \
2327 {"$fcc4", RTYPE_FCC | 4}, \
2328 {"$fcc5", RTYPE_FCC | 5}, \
2329 {"$fcc6", RTYPE_FCC | 6}, \
2330 {"$fcc7", RTYPE_FCC | 7}
2331
2332 #define COPROC_CONDITION_CODE_NAMES \
2333 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
2334 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
2335 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
2336 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
2337 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
2338 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
2339 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
2340 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
2341
2342 #define N32N64_SYMBOLIC_REGISTER_NAMES \
2343 {"$a4", RTYPE_GP | 8}, \
2344 {"$a5", RTYPE_GP | 9}, \
2345 {"$a6", RTYPE_GP | 10}, \
2346 {"$a7", RTYPE_GP | 11}, \
2347 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
2348 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
2349 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
2350 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
2351 {"$t0", RTYPE_GP | 12}, \
2352 {"$t1", RTYPE_GP | 13}, \
2353 {"$t2", RTYPE_GP | 14}, \
2354 {"$t3", RTYPE_GP | 15}
2355
2356 #define O32_SYMBOLIC_REGISTER_NAMES \
2357 {"$t0", RTYPE_GP | 8}, \
2358 {"$t1", RTYPE_GP | 9}, \
2359 {"$t2", RTYPE_GP | 10}, \
2360 {"$t3", RTYPE_GP | 11}, \
2361 {"$t4", RTYPE_GP | 12}, \
2362 {"$t5", RTYPE_GP | 13}, \
2363 {"$t6", RTYPE_GP | 14}, \
2364 {"$t7", RTYPE_GP | 15}, \
2365 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
2366 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
2367 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
2368 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
2369
2370 /* Remaining symbolic register names */
2371 #define SYMBOLIC_REGISTER_NAMES \
2372 {"$zero", RTYPE_GP | 0}, \
2373 {"$at", RTYPE_GP | 1}, \
2374 {"$AT", RTYPE_GP | 1}, \
2375 {"$v0", RTYPE_GP | 2}, \
2376 {"$v1", RTYPE_GP | 3}, \
2377 {"$a0", RTYPE_GP | 4}, \
2378 {"$a1", RTYPE_GP | 5}, \
2379 {"$a2", RTYPE_GP | 6}, \
2380 {"$a3", RTYPE_GP | 7}, \
2381 {"$s0", RTYPE_GP | 16}, \
2382 {"$s1", RTYPE_GP | 17}, \
2383 {"$s2", RTYPE_GP | 18}, \
2384 {"$s3", RTYPE_GP | 19}, \
2385 {"$s4", RTYPE_GP | 20}, \
2386 {"$s5", RTYPE_GP | 21}, \
2387 {"$s6", RTYPE_GP | 22}, \
2388 {"$s7", RTYPE_GP | 23}, \
2389 {"$t8", RTYPE_GP | 24}, \
2390 {"$t9", RTYPE_GP | 25}, \
2391 {"$k0", RTYPE_GP | 26}, \
2392 {"$kt0", RTYPE_GP | 26}, \
2393 {"$k1", RTYPE_GP | 27}, \
2394 {"$kt1", RTYPE_GP | 27}, \
2395 {"$gp", RTYPE_GP | 28}, \
2396 {"$sp", RTYPE_GP | 29}, \
2397 {"$s8", RTYPE_GP | 30}, \
2398 {"$fp", RTYPE_GP | 30}, \
2399 {"$ra", RTYPE_GP | 31}
2400
2401 #define MIPS16_SPECIAL_REGISTER_NAMES \
2402 {"$pc", RTYPE_PC | 0}
2403
2404 #define MDMX_VECTOR_REGISTER_NAMES \
2405 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
2406 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
2407 {"$v2", RTYPE_VEC | 2}, \
2408 {"$v3", RTYPE_VEC | 3}, \
2409 {"$v4", RTYPE_VEC | 4}, \
2410 {"$v5", RTYPE_VEC | 5}, \
2411 {"$v6", RTYPE_VEC | 6}, \
2412 {"$v7", RTYPE_VEC | 7}, \
2413 {"$v8", RTYPE_VEC | 8}, \
2414 {"$v9", RTYPE_VEC | 9}, \
2415 {"$v10", RTYPE_VEC | 10}, \
2416 {"$v11", RTYPE_VEC | 11}, \
2417 {"$v12", RTYPE_VEC | 12}, \
2418 {"$v13", RTYPE_VEC | 13}, \
2419 {"$v14", RTYPE_VEC | 14}, \
2420 {"$v15", RTYPE_VEC | 15}, \
2421 {"$v16", RTYPE_VEC | 16}, \
2422 {"$v17", RTYPE_VEC | 17}, \
2423 {"$v18", RTYPE_VEC | 18}, \
2424 {"$v19", RTYPE_VEC | 19}, \
2425 {"$v20", RTYPE_VEC | 20}, \
2426 {"$v21", RTYPE_VEC | 21}, \
2427 {"$v22", RTYPE_VEC | 22}, \
2428 {"$v23", RTYPE_VEC | 23}, \
2429 {"$v24", RTYPE_VEC | 24}, \
2430 {"$v25", RTYPE_VEC | 25}, \
2431 {"$v26", RTYPE_VEC | 26}, \
2432 {"$v27", RTYPE_VEC | 27}, \
2433 {"$v28", RTYPE_VEC | 28}, \
2434 {"$v29", RTYPE_VEC | 29}, \
2435 {"$v30", RTYPE_VEC | 30}, \
2436 {"$v31", RTYPE_VEC | 31}
2437
2438 #define MIPS_DSP_ACCUMULATOR_NAMES \
2439 {"$ac0", RTYPE_ACC | 0}, \
2440 {"$ac1", RTYPE_ACC | 1}, \
2441 {"$ac2", RTYPE_ACC | 2}, \
2442 {"$ac3", RTYPE_ACC | 3}
2443
2444 static const struct regname reg_names[] = {
2445 GENERIC_REGISTER_NUMBERS,
2446 FPU_REGISTER_NAMES,
2447 FPU_CONDITION_CODE_NAMES,
2448 COPROC_CONDITION_CODE_NAMES,
2449
2450 /* The $txx registers depends on the abi,
2451 these will be added later into the symbol table from
2452 one of the tables below once mips_abi is set after
2453 parsing of arguments from the command line. */
2454 SYMBOLIC_REGISTER_NAMES,
2455
2456 MIPS16_SPECIAL_REGISTER_NAMES,
2457 MDMX_VECTOR_REGISTER_NAMES,
2458 MIPS_DSP_ACCUMULATOR_NAMES,
2459 {0, 0}
2460 };
2461
2462 static const struct regname reg_names_o32[] = {
2463 O32_SYMBOLIC_REGISTER_NAMES,
2464 {0, 0}
2465 };
2466
2467 static const struct regname reg_names_n32n64[] = {
2468 N32N64_SYMBOLIC_REGISTER_NAMES,
2469 {0, 0}
2470 };
2471
2472 /* Check if S points at a valid register specifier according to TYPES.
2473 If so, then return 1, advance S to consume the specifier and store
2474 the register's number in REGNOP, otherwise return 0. */
2475
2476 static int
2477 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
2478 {
2479 symbolS *symbolP;
2480 char *e;
2481 char save_c;
2482 int reg = -1;
2483
2484 /* Find end of name. */
2485 e = *s;
2486 if (is_name_beginner (*e))
2487 ++e;
2488 while (is_part_of_name (*e))
2489 ++e;
2490
2491 /* Terminate name. */
2492 save_c = *e;
2493 *e = '\0';
2494
2495 /* Look for a register symbol. */
2496 if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
2497 {
2498 int r = S_GET_VALUE (symbolP);
2499 if (r & types)
2500 reg = r & RNUM_MASK;
2501 else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
2502 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
2503 reg = (r & RNUM_MASK) - 2;
2504 }
2505 /* Else see if this is a register defined in an itbl entry. */
2506 else if ((types & RTYPE_GP) && itbl_have_entries)
2507 {
2508 char *n = *s;
2509 unsigned long r;
2510
2511 if (*n == '$')
2512 ++n;
2513 if (itbl_get_reg_val (n, &r))
2514 reg = r & RNUM_MASK;
2515 }
2516
2517 /* Advance to next token if a register was recognised. */
2518 if (reg >= 0)
2519 *s = e;
2520 else if (types & RWARN)
2521 as_warn (_("Unrecognized register name `%s'"), *s);
2522
2523 *e = save_c;
2524 if (regnop)
2525 *regnop = reg;
2526 return reg >= 0;
2527 }
2528
2529 /* Check if S points at a valid register list according to TYPES.
2530 If so, then return 1, advance S to consume the list and store
2531 the registers present on the list as a bitmask of ones in REGLISTP,
2532 otherwise return 0. A valid list comprises a comma-separated
2533 enumeration of valid single registers and/or dash-separated
2534 contiguous register ranges as determined by their numbers.
2535
2536 As a special exception if one of s0-s7 registers is specified as
2537 the range's lower delimiter and s8 (fp) is its upper one, then no
2538 registers whose numbers place them between s7 and s8 (i.e. $24-$29)
2539 are selected; they have to be listed separately if needed. */
2540
2541 static int
2542 reglist_lookup (char **s, unsigned int types, unsigned int *reglistp)
2543 {
2544 unsigned int reglist = 0;
2545 unsigned int lastregno;
2546 bfd_boolean ok = TRUE;
2547 unsigned int regmask;
2548 char *s_endlist = *s;
2549 char *s_reset = *s;
2550 unsigned int regno;
2551
2552 while (reg_lookup (s, types, &regno))
2553 {
2554 lastregno = regno;
2555 if (**s == '-')
2556 {
2557 (*s)++;
2558 ok = reg_lookup (s, types, &lastregno);
2559 if (ok && lastregno < regno)
2560 ok = FALSE;
2561 if (!ok)
2562 break;
2563 }
2564
2565 if (lastregno == FP && regno >= S0 && regno <= S7)
2566 {
2567 lastregno = S7;
2568 reglist |= 1 << FP;
2569 }
2570 regmask = 1 << lastregno;
2571 regmask = (regmask << 1) - 1;
2572 regmask ^= (1 << regno) - 1;
2573 reglist |= regmask;
2574
2575 s_endlist = *s;
2576 if (**s != ',')
2577 break;
2578 (*s)++;
2579 }
2580
2581 if (ok)
2582 *s = s_endlist;
2583 else
2584 *s = s_reset;
2585 if (reglistp)
2586 *reglistp = reglist;
2587 return ok && reglist != 0;
2588 }
2589
2590 static unsigned int
2591 mips_lookup_reg_pair (unsigned int regno1, unsigned int regno2,
2592 const unsigned int *map1, const unsigned int *map2,
2593 unsigned int count)
2594 {
2595 unsigned int i;
2596
2597 for (i = 0; i < count; i++)
2598 if (map1[i] == regno1 && map2[i] == regno2)
2599 return i;
2600 return ILLEGAL_REG;
2601 }
2602
2603 /* Return TRUE if opcode MO is valid on the currently selected ISA, ASE
2604 and architecture. Use is_opcode_valid_16 for MIPS16 opcodes. */
2605
2606 static bfd_boolean
2607 is_opcode_valid (const struct mips_opcode *mo)
2608 {
2609 int isa = mips_opts.isa;
2610 int ase = mips_opts.ase;
2611 int fp_s, fp_d;
2612 unsigned int i;
2613
2614 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
2615 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
2616 if ((ase & mips_ases[i].flags) == mips_ases[i].flags)
2617 ase |= mips_ases[i].flags64;
2618
2619 if (!opcode_is_member (mo, isa, ase, mips_opts.arch))
2620 return FALSE;
2621
2622 /* Check whether the instruction or macro requires single-precision or
2623 double-precision floating-point support. Note that this information is
2624 stored differently in the opcode table for insns and macros. */
2625 if (mo->pinfo == INSN_MACRO)
2626 {
2627 fp_s = mo->pinfo2 & INSN2_M_FP_S;
2628 fp_d = mo->pinfo2 & INSN2_M_FP_D;
2629 }
2630 else
2631 {
2632 fp_s = mo->pinfo & FP_S;
2633 fp_d = mo->pinfo & FP_D;
2634 }
2635
2636 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
2637 return FALSE;
2638
2639 if (fp_s && mips_opts.soft_float)
2640 return FALSE;
2641
2642 return TRUE;
2643 }
2644
2645 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
2646 selected ISA and architecture. */
2647
2648 static bfd_boolean
2649 is_opcode_valid_16 (const struct mips_opcode *mo)
2650 {
2651 return opcode_is_member (mo, mips_opts.isa, 0, mips_opts.arch);
2652 }
2653
2654 /* Return TRUE if the size of the microMIPS opcode MO matches one
2655 explicitly requested. Always TRUE in the standard MIPS mode. */
2656
2657 static bfd_boolean
2658 is_size_valid (const struct mips_opcode *mo)
2659 {
2660 if (!mips_opts.micromips)
2661 return TRUE;
2662
2663 if (mips_opts.insn32)
2664 {
2665 if (mo->pinfo != INSN_MACRO && micromips_insn_length (mo) != 4)
2666 return FALSE;
2667 if ((mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0)
2668 return FALSE;
2669 }
2670 if (!forced_insn_length)
2671 return TRUE;
2672 if (mo->pinfo == INSN_MACRO)
2673 return FALSE;
2674 return forced_insn_length == micromips_insn_length (mo);
2675 }
2676
2677 /* Return TRUE if the microMIPS opcode MO is valid for the delay slot
2678 of the preceding instruction. Always TRUE in the standard MIPS mode.
2679
2680 We don't accept macros in 16-bit delay slots to avoid a case where
2681 a macro expansion fails because it relies on a preceding 32-bit real
2682 instruction to have matched and does not handle the operands correctly.
2683 The only macros that may expand to 16-bit instructions are JAL that
2684 cannot be placed in a delay slot anyway, and corner cases of BALIGN
2685 and BGT (that likewise cannot be placed in a delay slot) that decay to
2686 a NOP. In all these cases the macros precede any corresponding real
2687 instruction definitions in the opcode table, so they will match in the
2688 second pass where the size of the delay slot is ignored and therefore
2689 produce correct code. */
2690
2691 static bfd_boolean
2692 is_delay_slot_valid (const struct mips_opcode *mo)
2693 {
2694 if (!mips_opts.micromips)
2695 return TRUE;
2696
2697 if (mo->pinfo == INSN_MACRO)
2698 return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;
2699 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
2700 && micromips_insn_length (mo) != 4)
2701 return FALSE;
2702 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
2703 && micromips_insn_length (mo) != 2)
2704 return FALSE;
2705
2706 return TRUE;
2707 }
2708
2709 /* This function is called once, at assembler startup time. It should set up
2710 all the tables, etc. that the MD part of the assembler will need. */
2711
2712 void
2713 md_begin (void)
2714 {
2715 const char *retval = NULL;
2716 int i = 0;
2717 int broken = 0;
2718
2719 if (mips_pic != NO_PIC)
2720 {
2721 if (g_switch_seen && g_switch_value != 0)
2722 as_bad (_("-G may not be used in position-independent code"));
2723 g_switch_value = 0;
2724 }
2725
2726 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
2727 as_warn (_("Could not set architecture and machine"));
2728
2729 op_hash = hash_new ();
2730
2731 for (i = 0; i < NUMOPCODES;)
2732 {
2733 const char *name = mips_opcodes[i].name;
2734
2735 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
2736 if (retval != NULL)
2737 {
2738 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
2739 mips_opcodes[i].name, retval);
2740 /* Probably a memory allocation problem? Give up now. */
2741 as_fatal (_("Broken assembler. No assembly attempted."));
2742 }
2743 do
2744 {
2745 if (mips_opcodes[i].pinfo != INSN_MACRO)
2746 {
2747 if (!validate_mips_insn (&mips_opcodes[i]))
2748 broken = 1;
2749 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
2750 {
2751 create_insn (&nop_insn, mips_opcodes + i);
2752 if (mips_fix_loongson2f_nop)
2753 nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
2754 nop_insn.fixed_p = 1;
2755 }
2756 }
2757 ++i;
2758 }
2759 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
2760 }
2761
2762 mips16_op_hash = hash_new ();
2763
2764 i = 0;
2765 while (i < bfd_mips16_num_opcodes)
2766 {
2767 const char *name = mips16_opcodes[i].name;
2768
2769 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
2770 if (retval != NULL)
2771 as_fatal (_("internal: can't hash `%s': %s"),
2772 mips16_opcodes[i].name, retval);
2773 do
2774 {
2775 if (mips16_opcodes[i].pinfo != INSN_MACRO
2776 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
2777 != mips16_opcodes[i].match))
2778 {
2779 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
2780 mips16_opcodes[i].name, mips16_opcodes[i].args);
2781 broken = 1;
2782 }
2783 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
2784 {
2785 create_insn (&mips16_nop_insn, mips16_opcodes + i);
2786 mips16_nop_insn.fixed_p = 1;
2787 }
2788 ++i;
2789 }
2790 while (i < bfd_mips16_num_opcodes
2791 && strcmp (mips16_opcodes[i].name, name) == 0);
2792 }
2793
2794 micromips_op_hash = hash_new ();
2795
2796 i = 0;
2797 while (i < bfd_micromips_num_opcodes)
2798 {
2799 const char *name = micromips_opcodes[i].name;
2800
2801 retval = hash_insert (micromips_op_hash, name,
2802 (void *) &micromips_opcodes[i]);
2803 if (retval != NULL)
2804 as_fatal (_("internal: can't hash `%s': %s"),
2805 micromips_opcodes[i].name, retval);
2806 do
2807 if (micromips_opcodes[i].pinfo != INSN_MACRO)
2808 {
2809 struct mips_cl_insn *micromips_nop_insn;
2810
2811 if (!validate_micromips_insn (&micromips_opcodes[i]))
2812 broken = 1;
2813
2814 if (micromips_insn_length (micromips_opcodes + i) == 2)
2815 micromips_nop_insn = &micromips_nop16_insn;
2816 else if (micromips_insn_length (micromips_opcodes + i) == 4)
2817 micromips_nop_insn = &micromips_nop32_insn;
2818 else
2819 continue;
2820
2821 if (micromips_nop_insn->insn_mo == NULL
2822 && strcmp (name, "nop") == 0)
2823 {
2824 create_insn (micromips_nop_insn, micromips_opcodes + i);
2825 micromips_nop_insn->fixed_p = 1;
2826 }
2827 }
2828 while (++i < bfd_micromips_num_opcodes
2829 && strcmp (micromips_opcodes[i].name, name) == 0);
2830 }
2831
2832 if (broken)
2833 as_fatal (_("Broken assembler. No assembly attempted."));
2834
2835 /* We add all the general register names to the symbol table. This
2836 helps us detect invalid uses of them. */
2837 for (i = 0; reg_names[i].name; i++)
2838 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
2839 reg_names[i].num, /* & RNUM_MASK, */
2840 &zero_address_frag));
2841 if (HAVE_NEWABI)
2842 for (i = 0; reg_names_n32n64[i].name; i++)
2843 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
2844 reg_names_n32n64[i].num, /* & RNUM_MASK, */
2845 &zero_address_frag));
2846 else
2847 for (i = 0; reg_names_o32[i].name; i++)
2848 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
2849 reg_names_o32[i].num, /* & RNUM_MASK, */
2850 &zero_address_frag));
2851
2852 mips_no_prev_insn ();
2853
2854 mips_gprmask = 0;
2855 mips_cprmask[0] = 0;
2856 mips_cprmask[1] = 0;
2857 mips_cprmask[2] = 0;
2858 mips_cprmask[3] = 0;
2859
2860 /* set the default alignment for the text section (2**2) */
2861 record_alignment (text_section, 2);
2862
2863 bfd_set_gp_size (stdoutput, g_switch_value);
2864
2865 /* On a native system other than VxWorks, sections must be aligned
2866 to 16 byte boundaries. When configured for an embedded ELF
2867 target, we don't bother. */
2868 if (strncmp (TARGET_OS, "elf", 3) != 0
2869 && strncmp (TARGET_OS, "vxworks", 7) != 0)
2870 {
2871 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
2872 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
2873 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
2874 }
2875
2876 /* Create a .reginfo section for register masks and a .mdebug
2877 section for debugging information. */
2878 {
2879 segT seg;
2880 subsegT subseg;
2881 flagword flags;
2882 segT sec;
2883
2884 seg = now_seg;
2885 subseg = now_subseg;
2886
2887 /* The ABI says this section should be loaded so that the
2888 running program can access it. However, we don't load it
2889 if we are configured for an embedded target */
2890 flags = SEC_READONLY | SEC_DATA;
2891 if (strncmp (TARGET_OS, "elf", 3) != 0)
2892 flags |= SEC_ALLOC | SEC_LOAD;
2893
2894 if (mips_abi != N64_ABI)
2895 {
2896 sec = subseg_new (".reginfo", (subsegT) 0);
2897
2898 bfd_set_section_flags (stdoutput, sec, flags);
2899 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
2900
2901 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
2902 }
2903 else
2904 {
2905 /* The 64-bit ABI uses a .MIPS.options section rather than
2906 .reginfo section. */
2907 sec = subseg_new (".MIPS.options", (subsegT) 0);
2908 bfd_set_section_flags (stdoutput, sec, flags);
2909 bfd_set_section_alignment (stdoutput, sec, 3);
2910
2911 /* Set up the option header. */
2912 {
2913 Elf_Internal_Options opthdr;
2914 char *f;
2915
2916 opthdr.kind = ODK_REGINFO;
2917 opthdr.size = (sizeof (Elf_External_Options)
2918 + sizeof (Elf64_External_RegInfo));
2919 opthdr.section = 0;
2920 opthdr.info = 0;
2921 f = frag_more (sizeof (Elf_External_Options));
2922 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2923 (Elf_External_Options *) f);
2924
2925 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2926 }
2927 }
2928
2929 if (ECOFF_DEBUGGING)
2930 {
2931 sec = subseg_new (".mdebug", (subsegT) 0);
2932 (void) bfd_set_section_flags (stdoutput, sec,
2933 SEC_HAS_CONTENTS | SEC_READONLY);
2934 (void) bfd_set_section_alignment (stdoutput, sec, 2);
2935 }
2936 else if (mips_flag_pdr)
2937 {
2938 pdr_seg = subseg_new (".pdr", (subsegT) 0);
2939 (void) bfd_set_section_flags (stdoutput, pdr_seg,
2940 SEC_READONLY | SEC_RELOC
2941 | SEC_DEBUGGING);
2942 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2943 }
2944
2945 subseg_set (seg, subseg);
2946 }
2947
2948 if (! ECOFF_DEBUGGING)
2949 md_obj_begin ();
2950
2951 if (mips_fix_vr4120)
2952 init_vr4120_conflicts ();
2953 }
2954
2955 void
2956 md_mips_end (void)
2957 {
2958 mips_emit_delays ();
2959 if (! ECOFF_DEBUGGING)
2960 md_obj_end ();
2961 }
2962
2963 void
2964 md_assemble (char *str)
2965 {
2966 struct mips_cl_insn insn;
2967 bfd_reloc_code_real_type unused_reloc[3]
2968 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
2969
2970 imm_expr.X_op = O_absent;
2971 imm2_expr.X_op = O_absent;
2972 offset_expr.X_op = O_absent;
2973 imm_reloc[0] = BFD_RELOC_UNUSED;
2974 imm_reloc[1] = BFD_RELOC_UNUSED;
2975 imm_reloc[2] = BFD_RELOC_UNUSED;
2976 offset_reloc[0] = BFD_RELOC_UNUSED;
2977 offset_reloc[1] = BFD_RELOC_UNUSED;
2978 offset_reloc[2] = BFD_RELOC_UNUSED;
2979
2980 mips_mark_labels ();
2981 mips_assembling_insn = TRUE;
2982
2983 if (mips_opts.mips16)
2984 mips16_ip (str, &insn);
2985 else
2986 {
2987 mips_ip (str, &insn);
2988 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2989 str, insn.insn_opcode));
2990 }
2991
2992 if (insn_error)
2993 as_bad ("%s `%s'", insn_error, str);
2994 else if (insn.insn_mo->pinfo == INSN_MACRO)
2995 {
2996 macro_start ();
2997 if (mips_opts.mips16)
2998 mips16_macro (&insn);
2999 else
3000 macro (&insn, str);
3001 macro_end ();
3002 }
3003 else
3004 {
3005 if (imm_expr.X_op != O_absent)
3006 append_insn (&insn, &imm_expr, imm_reloc, FALSE);
3007 else if (offset_expr.X_op != O_absent)
3008 append_insn (&insn, &offset_expr, offset_reloc, FALSE);
3009 else
3010 append_insn (&insn, NULL, unused_reloc, FALSE);
3011 }
3012
3013 mips_assembling_insn = FALSE;
3014 }
3015
3016 /* Convenience functions for abstracting away the differences between
3017 MIPS16 and non-MIPS16 relocations. */
3018
3019 static inline bfd_boolean
3020 mips16_reloc_p (bfd_reloc_code_real_type reloc)
3021 {
3022 switch (reloc)
3023 {
3024 case BFD_RELOC_MIPS16_JMP:
3025 case BFD_RELOC_MIPS16_GPREL:
3026 case BFD_RELOC_MIPS16_GOT16:
3027 case BFD_RELOC_MIPS16_CALL16:
3028 case BFD_RELOC_MIPS16_HI16_S:
3029 case BFD_RELOC_MIPS16_HI16:
3030 case BFD_RELOC_MIPS16_LO16:
3031 return TRUE;
3032
3033 default:
3034 return FALSE;
3035 }
3036 }
3037
3038 static inline bfd_boolean
3039 micromips_reloc_p (bfd_reloc_code_real_type reloc)
3040 {
3041 switch (reloc)
3042 {
3043 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
3044 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
3045 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
3046 case BFD_RELOC_MICROMIPS_GPREL16:
3047 case BFD_RELOC_MICROMIPS_JMP:
3048 case BFD_RELOC_MICROMIPS_HI16:
3049 case BFD_RELOC_MICROMIPS_HI16_S:
3050 case BFD_RELOC_MICROMIPS_LO16:
3051 case BFD_RELOC_MICROMIPS_LITERAL:
3052 case BFD_RELOC_MICROMIPS_GOT16:
3053 case BFD_RELOC_MICROMIPS_CALL16:
3054 case BFD_RELOC_MICROMIPS_GOT_HI16:
3055 case BFD_RELOC_MICROMIPS_GOT_LO16:
3056 case BFD_RELOC_MICROMIPS_CALL_HI16:
3057 case BFD_RELOC_MICROMIPS_CALL_LO16:
3058 case BFD_RELOC_MICROMIPS_SUB:
3059 case BFD_RELOC_MICROMIPS_GOT_PAGE:
3060 case BFD_RELOC_MICROMIPS_GOT_OFST:
3061 case BFD_RELOC_MICROMIPS_GOT_DISP:
3062 case BFD_RELOC_MICROMIPS_HIGHEST:
3063 case BFD_RELOC_MICROMIPS_HIGHER:
3064 case BFD_RELOC_MICROMIPS_SCN_DISP:
3065 case BFD_RELOC_MICROMIPS_JALR:
3066 return TRUE;
3067
3068 default:
3069 return FALSE;
3070 }
3071 }
3072
3073 static inline bfd_boolean
3074 jmp_reloc_p (bfd_reloc_code_real_type reloc)
3075 {
3076 return reloc == BFD_RELOC_MIPS_JMP || reloc == BFD_RELOC_MICROMIPS_JMP;
3077 }
3078
3079 static inline bfd_boolean
3080 got16_reloc_p (bfd_reloc_code_real_type reloc)
3081 {
3082 return (reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16
3083 || reloc == BFD_RELOC_MICROMIPS_GOT16);
3084 }
3085
3086 static inline bfd_boolean
3087 hi16_reloc_p (bfd_reloc_code_real_type reloc)
3088 {
3089 return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S
3090 || reloc == BFD_RELOC_MICROMIPS_HI16_S);
3091 }
3092
3093 static inline bfd_boolean
3094 lo16_reloc_p (bfd_reloc_code_real_type reloc)
3095 {
3096 return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16
3097 || reloc == BFD_RELOC_MICROMIPS_LO16);
3098 }
3099
3100 static inline bfd_boolean
3101 jalr_reloc_p (bfd_reloc_code_real_type reloc)
3102 {
3103 return reloc == BFD_RELOC_MIPS_JALR || reloc == BFD_RELOC_MICROMIPS_JALR;
3104 }
3105
3106 static inline bfd_boolean
3107 gprel16_reloc_p (bfd_reloc_code_real_type reloc)
3108 {
3109 return (reloc == BFD_RELOC_GPREL16 || reloc == BFD_RELOC_MIPS16_GPREL
3110 || reloc == BFD_RELOC_MICROMIPS_GPREL16);
3111 }
3112
3113 /* Return true if RELOC is a PC-relative relocation that does not have
3114 full address range. */
3115
3116 static inline bfd_boolean
3117 limited_pcrel_reloc_p (bfd_reloc_code_real_type reloc)
3118 {
3119 switch (reloc)
3120 {
3121 case BFD_RELOC_16_PCREL_S2:
3122 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
3123 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
3124 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
3125 return TRUE;
3126
3127 case BFD_RELOC_32_PCREL:
3128 return HAVE_64BIT_ADDRESSES;
3129
3130 default:
3131 return FALSE;
3132 }
3133 }
3134
3135 /* Return true if the given relocation might need a matching %lo().
3136 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
3137 need a matching %lo() when applied to local symbols. */
3138
3139 static inline bfd_boolean
3140 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
3141 {
3142 return (HAVE_IN_PLACE_ADDENDS
3143 && (hi16_reloc_p (reloc)
3144 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
3145 all GOT16 relocations evaluate to "G". */
3146 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
3147 }
3148
3149 /* Return the type of %lo() reloc needed by RELOC, given that
3150 reloc_needs_lo_p. */
3151
3152 static inline bfd_reloc_code_real_type
3153 matching_lo_reloc (bfd_reloc_code_real_type reloc)
3154 {
3155 return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16
3156 : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16
3157 : BFD_RELOC_LO16));
3158 }
3159
3160 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
3161 relocation. */
3162
3163 static inline bfd_boolean
3164 fixup_has_matching_lo_p (fixS *fixp)
3165 {
3166 return (fixp->fx_next != NULL
3167 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
3168 && fixp->fx_addsy == fixp->fx_next->fx_addsy
3169 && fixp->fx_offset == fixp->fx_next->fx_offset);
3170 }
3171
3172 /* This function returns true if modifying a register requires a
3173 delay. */
3174
3175 static int
3176 reg_needs_delay (unsigned int reg)
3177 {
3178 unsigned long prev_pinfo;
3179
3180 prev_pinfo = history[0].insn_mo->pinfo;
3181 if (! mips_opts.noreorder
3182 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
3183 && ! gpr_interlocks)
3184 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
3185 && ! cop_interlocks)))
3186 {
3187 /* A load from a coprocessor or from memory. All load delays
3188 delay the use of general register rt for one instruction. */
3189 /* Itbl support may require additional care here. */
3190 know (prev_pinfo & INSN_WRITE_GPR_T);
3191 if (reg == EXTRACT_OPERAND (mips_opts.micromips, RT, history[0]))
3192 return 1;
3193 }
3194
3195 return 0;
3196 }
3197
3198 /* Move all labels in LABELS to the current insertion point. TEXT_P
3199 says whether the labels refer to text or data. */
3200
3201 static void
3202 mips_move_labels (struct insn_label_list *labels, bfd_boolean text_p)
3203 {
3204 struct insn_label_list *l;
3205 valueT val;
3206
3207 for (l = labels; l != NULL; l = l->next)
3208 {
3209 gas_assert (S_GET_SEGMENT (l->label) == now_seg);
3210 symbol_set_frag (l->label, frag_now);
3211 val = (valueT) frag_now_fix ();
3212 /* MIPS16/microMIPS text labels are stored as odd. */
3213 if (text_p && HAVE_CODE_COMPRESSION)
3214 ++val;
3215 S_SET_VALUE (l->label, val);
3216 }
3217 }
3218
3219 /* Move all labels in insn_labels to the current insertion point
3220 and treat them as text labels. */
3221
3222 static void
3223 mips_move_text_labels (void)
3224 {
3225 mips_move_labels (seg_info (now_seg)->label_list, TRUE);
3226 }
3227
3228 static bfd_boolean
3229 s_is_linkonce (symbolS *sym, segT from_seg)
3230 {
3231 bfd_boolean linkonce = FALSE;
3232 segT symseg = S_GET_SEGMENT (sym);
3233
3234 if (symseg != from_seg && !S_IS_LOCAL (sym))
3235 {
3236 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
3237 linkonce = TRUE;
3238 /* The GNU toolchain uses an extension for ELF: a section
3239 beginning with the magic string .gnu.linkonce is a
3240 linkonce section. */
3241 if (strncmp (segment_name (symseg), ".gnu.linkonce",
3242 sizeof ".gnu.linkonce" - 1) == 0)
3243 linkonce = TRUE;
3244 }
3245 return linkonce;
3246 }
3247
3248 /* Mark MIPS16 or microMIPS instruction label LABEL. This permits the
3249 linker to handle them specially, such as generating jalx instructions
3250 when needed. We also make them odd for the duration of the assembly,
3251 in order to generate the right sort of code. We will make them even
3252 in the adjust_symtab routine, while leaving them marked. This is
3253 convenient for the debugger and the disassembler. The linker knows
3254 to make them odd again. */
3255
3256 static void
3257 mips_compressed_mark_label (symbolS *label)
3258 {
3259 gas_assert (HAVE_CODE_COMPRESSION);
3260
3261 if (mips_opts.mips16)
3262 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
3263 else
3264 S_SET_OTHER (label, ELF_ST_SET_MICROMIPS (S_GET_OTHER (label)));
3265 if ((S_GET_VALUE (label) & 1) == 0
3266 /* Don't adjust the address if the label is global or weak, or
3267 in a link-once section, since we'll be emitting symbol reloc
3268 references to it which will be patched up by the linker, and
3269 the final value of the symbol may or may not be MIPS16/microMIPS. */
3270 && !S_IS_WEAK (label)
3271 && !S_IS_EXTERNAL (label)
3272 && !s_is_linkonce (label, now_seg))
3273 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
3274 }
3275
3276 /* Mark preceding MIPS16 or microMIPS instruction labels. */
3277
3278 static void
3279 mips_compressed_mark_labels (void)
3280 {
3281 struct insn_label_list *l;
3282
3283 for (l = seg_info (now_seg)->label_list; l != NULL; l = l->next)
3284 mips_compressed_mark_label (l->label);
3285 }
3286
3287 /* End the current frag. Make it a variant frag and record the
3288 relaxation info. */
3289
3290 static void
3291 relax_close_frag (void)
3292 {
3293 mips_macro_warning.first_frag = frag_now;
3294 frag_var (rs_machine_dependent, 0, 0,
3295 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
3296 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
3297
3298 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
3299 mips_relax.first_fixup = 0;
3300 }
3301
3302 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
3303 See the comment above RELAX_ENCODE for more details. */
3304
3305 static void
3306 relax_start (symbolS *symbol)
3307 {
3308 gas_assert (mips_relax.sequence == 0);
3309 mips_relax.sequence = 1;
3310 mips_relax.symbol = symbol;
3311 }
3312
3313 /* Start generating the second version of a relaxable sequence.
3314 See the comment above RELAX_ENCODE for more details. */
3315
3316 static void
3317 relax_switch (void)
3318 {
3319 gas_assert (mips_relax.sequence == 1);
3320 mips_relax.sequence = 2;
3321 }
3322
3323 /* End the current relaxable sequence. */
3324
3325 static void
3326 relax_end (void)
3327 {
3328 gas_assert (mips_relax.sequence == 2);
3329 relax_close_frag ();
3330 mips_relax.sequence = 0;
3331 }
3332
3333 /* Return true if IP is a delayed branch or jump. */
3334
3335 static inline bfd_boolean
3336 delayed_branch_p (const struct mips_cl_insn *ip)
3337 {
3338 return (ip->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
3339 | INSN_COND_BRANCH_DELAY
3340 | INSN_COND_BRANCH_LIKELY)) != 0;
3341 }
3342
3343 /* Return true if IP is a compact branch or jump. */
3344
3345 static inline bfd_boolean
3346 compact_branch_p (const struct mips_cl_insn *ip)
3347 {
3348 if (mips_opts.mips16)
3349 return (ip->insn_mo->pinfo & (MIPS16_INSN_UNCOND_BRANCH
3350 | MIPS16_INSN_COND_BRANCH)) != 0;
3351 else
3352 return (ip->insn_mo->pinfo2 & (INSN2_UNCOND_BRANCH
3353 | INSN2_COND_BRANCH)) != 0;
3354 }
3355
3356 /* Return true if IP is an unconditional branch or jump. */
3357
3358 static inline bfd_boolean
3359 uncond_branch_p (const struct mips_cl_insn *ip)
3360 {
3361 return ((ip->insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY) != 0
3362 || (mips_opts.mips16
3363 ? (ip->insn_mo->pinfo & MIPS16_INSN_UNCOND_BRANCH) != 0
3364 : (ip->insn_mo->pinfo2 & INSN2_UNCOND_BRANCH) != 0));
3365 }
3366
3367 /* Return true if IP is a branch-likely instruction. */
3368
3369 static inline bfd_boolean
3370 branch_likely_p (const struct mips_cl_insn *ip)
3371 {
3372 return (ip->insn_mo->pinfo & INSN_COND_BRANCH_LIKELY) != 0;
3373 }
3374
3375 /* Return the type of nop that should be used to fill the delay slot
3376 of delayed branch IP. */
3377
3378 static struct mips_cl_insn *
3379 get_delay_slot_nop (const struct mips_cl_insn *ip)
3380 {
3381 if (mips_opts.micromips
3382 && (ip->insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
3383 return &micromips_nop32_insn;
3384 return NOP_INSN;
3385 }
3386
3387 /* Return the mask of core registers that IP reads or writes. */
3388
3389 static unsigned int
3390 gpr_mod_mask (const struct mips_cl_insn *ip)
3391 {
3392 unsigned long pinfo2;
3393 unsigned int mask;
3394
3395 mask = 0;
3396 pinfo2 = ip->insn_mo->pinfo2;
3397 if (mips_opts.micromips)
3398 {
3399 if (pinfo2 & INSN2_MOD_GPR_MD)
3400 mask |= 1 << micromips_to_32_reg_d_map[EXTRACT_OPERAND (1, MD, *ip)];
3401 if (pinfo2 & INSN2_MOD_GPR_MF)
3402 mask |= 1 << micromips_to_32_reg_f_map[EXTRACT_OPERAND (1, MF, *ip)];
3403 if (pinfo2 & INSN2_MOD_SP)
3404 mask |= 1 << SP;
3405 }
3406 return mask;
3407 }
3408
3409 /* Return the mask of core registers that IP reads. */
3410
3411 static unsigned int
3412 gpr_read_mask (const struct mips_cl_insn *ip)
3413 {
3414 unsigned long pinfo, pinfo2;
3415 unsigned int mask;
3416
3417 mask = gpr_mod_mask (ip);
3418 pinfo = ip->insn_mo->pinfo;
3419 pinfo2 = ip->insn_mo->pinfo2;
3420 if (mips_opts.mips16)
3421 {
3422 if (pinfo & MIPS16_INSN_READ_X)
3423 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
3424 if (pinfo & MIPS16_INSN_READ_Y)
3425 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
3426 if (pinfo & MIPS16_INSN_READ_T)
3427 mask |= 1 << TREG;
3428 if (pinfo & MIPS16_INSN_READ_SP)
3429 mask |= 1 << SP;
3430 if (pinfo & MIPS16_INSN_READ_31)
3431 mask |= 1 << RA;
3432 if (pinfo & MIPS16_INSN_READ_Z)
3433 mask |= 1 << (mips16_to_32_reg_map
3434 [MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]);
3435 if (pinfo & MIPS16_INSN_READ_GPR_X)
3436 mask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
3437 }
3438 else
3439 {
3440 if (pinfo2 & INSN2_READ_GPR_D)
3441 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
3442 if (pinfo & INSN_READ_GPR_T)
3443 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
3444 if (pinfo & INSN_READ_GPR_S)
3445 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
3446 if (pinfo2 & INSN2_READ_GP)
3447 mask |= 1 << GP;
3448 if (pinfo2 & INSN2_READ_GPR_31)
3449 mask |= 1 << RA;
3450 if (pinfo2 & INSN2_READ_GPR_Z)
3451 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
3452 }
3453 if (mips_opts.micromips)
3454 {
3455 if (pinfo2 & INSN2_READ_GPR_MC)
3456 mask |= 1 << micromips_to_32_reg_c_map[EXTRACT_OPERAND (1, MC, *ip)];
3457 if (pinfo2 & INSN2_READ_GPR_ME)
3458 mask |= 1 << micromips_to_32_reg_e_map[EXTRACT_OPERAND (1, ME, *ip)];
3459 if (pinfo2 & INSN2_READ_GPR_MG)
3460 mask |= 1 << micromips_to_32_reg_g_map[EXTRACT_OPERAND (1, MG, *ip)];
3461 if (pinfo2 & INSN2_READ_GPR_MJ)
3462 mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
3463 if (pinfo2 & INSN2_READ_GPR_MMN)
3464 {
3465 mask |= 1 << micromips_to_32_reg_m_map[EXTRACT_OPERAND (1, MM, *ip)];
3466 mask |= 1 << micromips_to_32_reg_n_map[EXTRACT_OPERAND (1, MN, *ip)];
3467 }
3468 if (pinfo2 & INSN2_READ_GPR_MP)
3469 mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
3470 if (pinfo2 & INSN2_READ_GPR_MQ)
3471 mask |= 1 << micromips_to_32_reg_q_map[EXTRACT_OPERAND (1, MQ, *ip)];
3472 }
3473 /* Don't include register 0. */
3474 return mask & ~1;
3475 }
3476
3477 /* Return the mask of core registers that IP writes. */
3478
3479 static unsigned int
3480 gpr_write_mask (const struct mips_cl_insn *ip)
3481 {
3482 unsigned long pinfo, pinfo2;
3483 unsigned int mask;
3484
3485 mask = gpr_mod_mask (ip);
3486 pinfo = ip->insn_mo->pinfo;
3487 pinfo2 = ip->insn_mo->pinfo2;
3488 if (mips_opts.mips16)
3489 {
3490 if (pinfo & MIPS16_INSN_WRITE_X)
3491 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
3492 if (pinfo & MIPS16_INSN_WRITE_Y)
3493 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
3494 if (pinfo & MIPS16_INSN_WRITE_Z)
3495 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RZ, *ip)];
3496 if (pinfo & MIPS16_INSN_WRITE_T)
3497 mask |= 1 << TREG;
3498 if (pinfo & MIPS16_INSN_WRITE_SP)
3499 mask |= 1 << SP;
3500 if (pinfo & MIPS16_INSN_WRITE_31)
3501 mask |= 1 << RA;
3502 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
3503 mask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
3504 }
3505 else
3506 {
3507 if (pinfo & INSN_WRITE_GPR_D)
3508 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
3509 if (pinfo & INSN_WRITE_GPR_T)
3510 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
3511 if (pinfo & INSN_WRITE_GPR_S)
3512 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
3513 if (pinfo & INSN_WRITE_GPR_31)
3514 mask |= 1 << RA;
3515 if (pinfo2 & INSN2_WRITE_GPR_Z)
3516 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
3517 }
3518 if (mips_opts.micromips)
3519 {
3520 if (pinfo2 & INSN2_WRITE_GPR_MB)
3521 mask |= 1 << micromips_to_32_reg_b_map[EXTRACT_OPERAND (1, MB, *ip)];
3522 if (pinfo2 & INSN2_WRITE_GPR_MH)
3523 {
3524 mask |= 1 << micromips_to_32_reg_h_map1[EXTRACT_OPERAND (1, MH, *ip)];
3525 mask |= 1 << micromips_to_32_reg_h_map2[EXTRACT_OPERAND (1, MH, *ip)];
3526 }
3527 if (pinfo2 & INSN2_WRITE_GPR_MJ)
3528 mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
3529 if (pinfo2 & INSN2_WRITE_GPR_MP)
3530 mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
3531 }
3532 /* Don't include register 0. */
3533 return mask & ~1;
3534 }
3535
3536 /* Return the mask of floating-point registers that IP reads. */
3537
3538 static unsigned int
3539 fpr_read_mask (const struct mips_cl_insn *ip)
3540 {
3541 unsigned long pinfo, pinfo2;
3542 unsigned int mask;
3543
3544 mask = 0;
3545 pinfo = ip->insn_mo->pinfo;
3546 pinfo2 = ip->insn_mo->pinfo2;
3547 if (!mips_opts.mips16)
3548 {
3549 if (pinfo2 & INSN2_READ_FPR_D)
3550 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
3551 if (pinfo & INSN_READ_FPR_S)
3552 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
3553 if (pinfo & INSN_READ_FPR_T)
3554 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
3555 if (pinfo & INSN_READ_FPR_R)
3556 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FR, *ip);
3557 if (pinfo2 & INSN2_READ_FPR_Z)
3558 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
3559 }
3560 /* Conservatively treat all operands to an FP_D instruction are doubles.
3561 (This is overly pessimistic for things like cvt.d.s.) */
3562 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
3563 mask |= mask << 1;
3564 return mask;
3565 }
3566
3567 /* Return the mask of floating-point registers that IP writes. */
3568
3569 static unsigned int
3570 fpr_write_mask (const struct mips_cl_insn *ip)
3571 {
3572 unsigned long pinfo, pinfo2;
3573 unsigned int mask;
3574
3575 mask = 0;
3576 pinfo = ip->insn_mo->pinfo;
3577 pinfo2 = ip->insn_mo->pinfo2;
3578 if (!mips_opts.mips16)
3579 {
3580 if (pinfo & INSN_WRITE_FPR_D)
3581 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
3582 if (pinfo & INSN_WRITE_FPR_S)
3583 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
3584 if (pinfo & INSN_WRITE_FPR_T)
3585 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
3586 if (pinfo2 & INSN2_WRITE_FPR_Z)
3587 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
3588 }
3589 /* Conservatively treat all operands to an FP_D instruction are doubles.
3590 (This is overly pessimistic for things like cvt.s.d.) */
3591 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
3592 mask |= mask << 1;
3593 return mask;
3594 }
3595
3596 /* Classify an instruction according to the FIX_VR4120_* enumeration.
3597 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
3598 by VR4120 errata. */
3599
3600 static unsigned int
3601 classify_vr4120_insn (const char *name)
3602 {
3603 if (strncmp (name, "macc", 4) == 0)
3604 return FIX_VR4120_MACC;
3605 if (strncmp (name, "dmacc", 5) == 0)
3606 return FIX_VR4120_DMACC;
3607 if (strncmp (name, "mult", 4) == 0)
3608 return FIX_VR4120_MULT;
3609 if (strncmp (name, "dmult", 5) == 0)
3610 return FIX_VR4120_DMULT;
3611 if (strstr (name, "div"))
3612 return FIX_VR4120_DIV;
3613 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
3614 return FIX_VR4120_MTHILO;
3615 return NUM_FIX_VR4120_CLASSES;
3616 }
3617
3618 #define INSN_ERET 0x42000018
3619 #define INSN_DERET 0x4200001f
3620
3621 /* Return the number of instructions that must separate INSN1 and INSN2,
3622 where INSN1 is the earlier instruction. Return the worst-case value
3623 for any INSN2 if INSN2 is null. */
3624
3625 static unsigned int
3626 insns_between (const struct mips_cl_insn *insn1,
3627 const struct mips_cl_insn *insn2)
3628 {
3629 unsigned long pinfo1, pinfo2;
3630 unsigned int mask;
3631
3632 /* This function needs to know which pinfo flags are set for INSN2
3633 and which registers INSN2 uses. The former is stored in PINFO2 and
3634 the latter is tested via INSN2_USES_GPR. If INSN2 is null, PINFO2
3635 will have every flag set and INSN2_USES_GPR will always return true. */
3636 pinfo1 = insn1->insn_mo->pinfo;
3637 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
3638
3639 #define INSN2_USES_GPR(REG) \
3640 (insn2 == NULL || (gpr_read_mask (insn2) & (1U << (REG))) != 0)
3641
3642 /* For most targets, write-after-read dependencies on the HI and LO
3643 registers must be separated by at least two instructions. */
3644 if (!hilo_interlocks)
3645 {
3646 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
3647 return 2;
3648 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
3649 return 2;
3650 }
3651
3652 /* If we're working around r7000 errata, there must be two instructions
3653 between an mfhi or mflo and any instruction that uses the result. */
3654 if (mips_7000_hilo_fix
3655 && !mips_opts.micromips
3656 && MF_HILO_INSN (pinfo1)
3657 && INSN2_USES_GPR (EXTRACT_OPERAND (0, RD, *insn1)))
3658 return 2;
3659
3660 /* If we're working around 24K errata, one instruction is required
3661 if an ERET or DERET is followed by a branch instruction. */
3662 if (mips_fix_24k && !mips_opts.micromips)
3663 {
3664 if (insn1->insn_opcode == INSN_ERET
3665 || insn1->insn_opcode == INSN_DERET)
3666 {
3667 if (insn2 == NULL
3668 || insn2->insn_opcode == INSN_ERET
3669 || insn2->insn_opcode == INSN_DERET
3670 || delayed_branch_p (insn2))
3671 return 1;
3672 }
3673 }
3674
3675 /* If working around VR4120 errata, check for combinations that need
3676 a single intervening instruction. */
3677 if (mips_fix_vr4120 && !mips_opts.micromips)
3678 {
3679 unsigned int class1, class2;
3680
3681 class1 = classify_vr4120_insn (insn1->insn_mo->name);
3682 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
3683 {
3684 if (insn2 == NULL)
3685 return 1;
3686 class2 = classify_vr4120_insn (insn2->insn_mo->name);
3687 if (vr4120_conflicts[class1] & (1 << class2))
3688 return 1;
3689 }
3690 }
3691
3692 if (!HAVE_CODE_COMPRESSION)
3693 {
3694 /* Check for GPR or coprocessor load delays. All such delays
3695 are on the RT register. */
3696 /* Itbl support may require additional care here. */
3697 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
3698 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
3699 {
3700 know (pinfo1 & INSN_WRITE_GPR_T);
3701 if (INSN2_USES_GPR (EXTRACT_OPERAND (0, RT, *insn1)))
3702 return 1;
3703 }
3704
3705 /* Check for generic coprocessor hazards.
3706
3707 This case is not handled very well. There is no special
3708 knowledge of CP0 handling, and the coprocessors other than
3709 the floating point unit are not distinguished at all. */
3710 /* Itbl support may require additional care here. FIXME!
3711 Need to modify this to include knowledge about
3712 user specified delays! */
3713 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
3714 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
3715 {
3716 /* Handle cases where INSN1 writes to a known general coprocessor
3717 register. There must be a one instruction delay before INSN2
3718 if INSN2 reads that register, otherwise no delay is needed. */
3719 mask = fpr_write_mask (insn1);
3720 if (mask != 0)
3721 {
3722 if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
3723 return 1;
3724 }
3725 else
3726 {
3727 /* Read-after-write dependencies on the control registers
3728 require a two-instruction gap. */
3729 if ((pinfo1 & INSN_WRITE_COND_CODE)
3730 && (pinfo2 & INSN_READ_COND_CODE))
3731 return 2;
3732
3733 /* We don't know exactly what INSN1 does. If INSN2 is
3734 also a coprocessor instruction, assume there must be
3735 a one instruction gap. */
3736 if (pinfo2 & INSN_COP)
3737 return 1;
3738 }
3739 }
3740
3741 /* Check for read-after-write dependencies on the coprocessor
3742 control registers in cases where INSN1 does not need a general
3743 coprocessor delay. This means that INSN1 is a floating point
3744 comparison instruction. */
3745 /* Itbl support may require additional care here. */
3746 else if (!cop_interlocks
3747 && (pinfo1 & INSN_WRITE_COND_CODE)
3748 && (pinfo2 & INSN_READ_COND_CODE))
3749 return 1;
3750 }
3751
3752 #undef INSN2_USES_GPR
3753
3754 return 0;
3755 }
3756
3757 /* Return the number of nops that would be needed to work around the
3758 VR4130 mflo/mfhi errata if instruction INSN immediately followed
3759 the MAX_VR4130_NOPS instructions described by HIST. Ignore hazards
3760 that are contained within the first IGNORE instructions of HIST. */
3761
3762 static int
3763 nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
3764 const struct mips_cl_insn *insn)
3765 {
3766 int i, j;
3767 unsigned int mask;
3768
3769 /* Check if the instruction writes to HI or LO. MTHI and MTLO
3770 are not affected by the errata. */
3771 if (insn != 0
3772 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
3773 || strcmp (insn->insn_mo->name, "mtlo") == 0
3774 || strcmp (insn->insn_mo->name, "mthi") == 0))
3775 return 0;
3776
3777 /* Search for the first MFLO or MFHI. */
3778 for (i = 0; i < MAX_VR4130_NOPS; i++)
3779 if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
3780 {
3781 /* Extract the destination register. */
3782 mask = gpr_write_mask (&hist[i]);
3783
3784 /* No nops are needed if INSN reads that register. */
3785 if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
3786 return 0;
3787
3788 /* ...or if any of the intervening instructions do. */
3789 for (j = 0; j < i; j++)
3790 if (gpr_read_mask (&hist[j]) & mask)
3791 return 0;
3792
3793 if (i >= ignore)
3794 return MAX_VR4130_NOPS - i;
3795 }
3796 return 0;
3797 }
3798
3799 #define BASE_REG_EQ(INSN1, INSN2) \
3800 ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
3801 == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
3802
3803 /* Return the minimum alignment for this store instruction. */
3804
3805 static int
3806 fix_24k_align_to (const struct mips_opcode *mo)
3807 {
3808 if (strcmp (mo->name, "sh") == 0)
3809 return 2;
3810
3811 if (strcmp (mo->name, "swc1") == 0
3812 || strcmp (mo->name, "swc2") == 0
3813 || strcmp (mo->name, "sw") == 0
3814 || strcmp (mo->name, "sc") == 0
3815 || strcmp (mo->name, "s.s") == 0)
3816 return 4;
3817
3818 if (strcmp (mo->name, "sdc1") == 0
3819 || strcmp (mo->name, "sdc2") == 0
3820 || strcmp (mo->name, "s.d") == 0)
3821 return 8;
3822
3823 /* sb, swl, swr */
3824 return 1;
3825 }
3826
3827 struct fix_24k_store_info
3828 {
3829 /* Immediate offset, if any, for this store instruction. */
3830 short off;
3831 /* Alignment required by this store instruction. */
3832 int align_to;
3833 /* True for register offsets. */
3834 int register_offset;
3835 };
3836
3837 /* Comparison function used by qsort. */
3838
3839 static int
3840 fix_24k_sort (const void *a, const void *b)
3841 {
3842 const struct fix_24k_store_info *pos1 = a;
3843 const struct fix_24k_store_info *pos2 = b;
3844
3845 return (pos1->off - pos2->off);
3846 }
3847
3848 /* INSN is a store instruction. Try to record the store information
3849 in STINFO. Return false if the information isn't known. */
3850
3851 static bfd_boolean
3852 fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
3853 const struct mips_cl_insn *insn)
3854 {
3855 /* The instruction must have a known offset. */
3856 if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
3857 return FALSE;
3858
3859 stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
3860 stinfo->align_to = fix_24k_align_to (insn->insn_mo);
3861 return TRUE;
3862 }
3863
3864 /* Return the number of nops that would be needed to work around the 24k
3865 "lost data on stores during refill" errata if instruction INSN
3866 immediately followed the 2 instructions described by HIST.
3867 Ignore hazards that are contained within the first IGNORE
3868 instructions of HIST.
3869
3870 Problem: The FSB (fetch store buffer) acts as an intermediate buffer
3871 for the data cache refills and store data. The following describes
3872 the scenario where the store data could be lost.
3873
3874 * A data cache miss, due to either a load or a store, causing fill
3875 data to be supplied by the memory subsystem
3876 * The first three doublewords of fill data are returned and written
3877 into the cache
3878 * A sequence of four stores occurs in consecutive cycles around the
3879 final doubleword of the fill:
3880 * Store A
3881 * Store B
3882 * Store C
3883 * Zero, One or more instructions
3884 * Store D
3885
3886 The four stores A-D must be to different doublewords of the line that
3887 is being filled. The fourth instruction in the sequence above permits
3888 the fill of the final doubleword to be transferred from the FSB into
3889 the cache. In the sequence above, the stores may be either integer
3890 (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
3891 swxc1, sdxc1, suxc1) stores, as long as the four stores are to
3892 different doublewords on the line. If the floating point unit is
3893 running in 1:2 mode, it is not possible to create the sequence above
3894 using only floating point store instructions.
3895
3896 In this case, the cache line being filled is incorrectly marked
3897 invalid, thereby losing the data from any store to the line that
3898 occurs between the original miss and the completion of the five
3899 cycle sequence shown above.
3900
3901 The workarounds are:
3902
3903 * Run the data cache in write-through mode.
3904 * Insert a non-store instruction between
3905 Store A and Store B or Store B and Store C. */
3906
3907 static int
3908 nops_for_24k (int ignore, const struct mips_cl_insn *hist,
3909 const struct mips_cl_insn *insn)
3910 {
3911 struct fix_24k_store_info pos[3];
3912 int align, i, base_offset;
3913
3914 if (ignore >= 2)
3915 return 0;
3916
3917 /* If the previous instruction wasn't a store, there's nothing to
3918 worry about. */
3919 if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
3920 return 0;
3921
3922 /* If the instructions after the previous one are unknown, we have
3923 to assume the worst. */
3924 if (!insn)
3925 return 1;
3926
3927 /* Check whether we are dealing with three consecutive stores. */
3928 if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
3929 || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
3930 return 0;
3931
3932 /* If we don't know the relationship between the store addresses,
3933 assume the worst. */
3934 if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
3935 || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
3936 return 1;
3937
3938 if (!fix_24k_record_store_info (&pos[0], insn)
3939 || !fix_24k_record_store_info (&pos[1], &hist[0])
3940 || !fix_24k_record_store_info (&pos[2], &hist[1]))
3941 return 1;
3942
3943 qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
3944
3945 /* Pick a value of ALIGN and X such that all offsets are adjusted by
3946 X bytes and such that the base register + X is known to be aligned
3947 to align bytes. */
3948
3949 if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
3950 align = 8;
3951 else
3952 {
3953 align = pos[0].align_to;
3954 base_offset = pos[0].off;
3955 for (i = 1; i < 3; i++)
3956 if (align < pos[i].align_to)
3957 {
3958 align = pos[i].align_to;
3959 base_offset = pos[i].off;
3960 }
3961 for (i = 0; i < 3; i++)
3962 pos[i].off -= base_offset;
3963 }
3964
3965 pos[0].off &= ~align + 1;
3966 pos[1].off &= ~align + 1;
3967 pos[2].off &= ~align + 1;
3968
3969 /* If any two stores write to the same chunk, they also write to the
3970 same doubleword. The offsets are still sorted at this point. */
3971 if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
3972 return 0;
3973
3974 /* A range of at least 9 bytes is needed for the stores to be in
3975 non-overlapping doublewords. */
3976 if (pos[2].off - pos[0].off <= 8)
3977 return 0;
3978
3979 if (pos[2].off - pos[1].off >= 24
3980 || pos[1].off - pos[0].off >= 24
3981 || pos[2].off - pos[0].off >= 32)
3982 return 0;
3983
3984 return 1;
3985 }
3986
3987 /* Return the number of nops that would be needed if instruction INSN
3988 immediately followed the MAX_NOPS instructions given by HIST,
3989 where HIST[0] is the most recent instruction. Ignore hazards
3990 between INSN and the first IGNORE instructions in HIST.
3991
3992 If INSN is null, return the worse-case number of nops for any
3993 instruction. */
3994
3995 static int
3996 nops_for_insn (int ignore, const struct mips_cl_insn *hist,
3997 const struct mips_cl_insn *insn)
3998 {
3999 int i, nops, tmp_nops;
4000
4001 nops = 0;
4002 for (i = ignore; i < MAX_DELAY_NOPS; i++)
4003 {
4004 tmp_nops = insns_between (hist + i, insn) - i;
4005 if (tmp_nops > nops)
4006 nops = tmp_nops;
4007 }
4008
4009 if (mips_fix_vr4130 && !mips_opts.micromips)
4010 {
4011 tmp_nops = nops_for_vr4130 (ignore, hist, insn);
4012 if (tmp_nops > nops)
4013 nops = tmp_nops;
4014 }
4015
4016 if (mips_fix_24k && !mips_opts.micromips)
4017 {
4018 tmp_nops = nops_for_24k (ignore, hist, insn);
4019 if (tmp_nops > nops)
4020 nops = tmp_nops;
4021 }
4022
4023 return nops;
4024 }
4025
4026 /* The variable arguments provide NUM_INSNS extra instructions that
4027 might be added to HIST. Return the largest number of nops that
4028 would be needed after the extended sequence, ignoring hazards
4029 in the first IGNORE instructions. */
4030
4031 static int
4032 nops_for_sequence (int num_insns, int ignore,
4033 const struct mips_cl_insn *hist, ...)
4034 {
4035 va_list args;
4036 struct mips_cl_insn buffer[MAX_NOPS];
4037 struct mips_cl_insn *cursor;
4038 int nops;
4039
4040 va_start (args, hist);
4041 cursor = buffer + num_insns;
4042 memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
4043 while (cursor > buffer)
4044 *--cursor = *va_arg (args, const struct mips_cl_insn *);
4045
4046 nops = nops_for_insn (ignore, buffer, NULL);
4047 va_end (args);
4048 return nops;
4049 }
4050
4051 /* Like nops_for_insn, but if INSN is a branch, take into account the
4052 worst-case delay for the branch target. */
4053
4054 static int
4055 nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
4056 const struct mips_cl_insn *insn)
4057 {
4058 int nops, tmp_nops;
4059
4060 nops = nops_for_insn (ignore, hist, insn);
4061 if (delayed_branch_p (insn))
4062 {
4063 tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
4064 hist, insn, get_delay_slot_nop (insn));
4065 if (tmp_nops > nops)
4066 nops = tmp_nops;
4067 }
4068 else if (compact_branch_p (insn))
4069 {
4070 tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
4071 if (tmp_nops > nops)
4072 nops = tmp_nops;
4073 }
4074 return nops;
4075 }
4076
4077 /* Fix NOP issue: Replace nops by "or at,at,zero". */
4078
4079 static void
4080 fix_loongson2f_nop (struct mips_cl_insn * ip)
4081 {
4082 gas_assert (!HAVE_CODE_COMPRESSION);
4083 if (strcmp (ip->insn_mo->name, "nop") == 0)
4084 ip->insn_opcode = LOONGSON2F_NOP_INSN;
4085 }
4086
4087 /* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
4088 jr target pc &= 'hffff_ffff_cfff_ffff. */
4089
4090 static void
4091 fix_loongson2f_jump (struct mips_cl_insn * ip)
4092 {
4093 gas_assert (!HAVE_CODE_COMPRESSION);
4094 if (strcmp (ip->insn_mo->name, "j") == 0
4095 || strcmp (ip->insn_mo->name, "jr") == 0
4096 || strcmp (ip->insn_mo->name, "jalr") == 0)
4097 {
4098 int sreg;
4099 expressionS ep;
4100
4101 if (! mips_opts.at)
4102 return;
4103
4104 sreg = EXTRACT_OPERAND (0, RS, *ip);
4105 if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
4106 return;
4107
4108 ep.X_op = O_constant;
4109 ep.X_add_number = 0xcfff0000;
4110 macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
4111 ep.X_add_number = 0xffff;
4112 macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
4113 macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
4114 }
4115 }
4116
4117 static void
4118 fix_loongson2f (struct mips_cl_insn * ip)
4119 {
4120 if (mips_fix_loongson2f_nop)
4121 fix_loongson2f_nop (ip);
4122
4123 if (mips_fix_loongson2f_jump)
4124 fix_loongson2f_jump (ip);
4125 }
4126
4127 /* IP is a branch that has a delay slot, and we need to fill it
4128 automatically. Return true if we can do that by swapping IP
4129 with the previous instruction.
4130 ADDRESS_EXPR is an operand of the instruction to be used with
4131 RELOC_TYPE. */
4132
4133 static bfd_boolean
4134 can_swap_branch_p (struct mips_cl_insn *ip, expressionS *address_expr,
4135 bfd_reloc_code_real_type *reloc_type)
4136 {
4137 unsigned long pinfo, pinfo2, prev_pinfo, prev_pinfo2;
4138 unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
4139
4140 /* -O2 and above is required for this optimization. */
4141 if (mips_optimize < 2)
4142 return FALSE;
4143
4144 /* If we have seen .set volatile or .set nomove, don't optimize. */
4145 if (mips_opts.nomove)
4146 return FALSE;
4147
4148 /* We can't swap if the previous instruction's position is fixed. */
4149 if (history[0].fixed_p)
4150 return FALSE;
4151
4152 /* If the previous previous insn was in a .set noreorder, we can't
4153 swap. Actually, the MIPS assembler will swap in this situation.
4154 However, gcc configured -with-gnu-as will generate code like
4155
4156 .set noreorder
4157 lw $4,XXX
4158 .set reorder
4159 INSN
4160 bne $4,$0,foo
4161
4162 in which we can not swap the bne and INSN. If gcc is not configured
4163 -with-gnu-as, it does not output the .set pseudo-ops. */
4164 if (history[1].noreorder_p)
4165 return FALSE;
4166
4167 /* If the previous instruction had a fixup in mips16 mode, we can not swap.
4168 This means that the previous instruction was a 4-byte one anyhow. */
4169 if (mips_opts.mips16 && history[0].fixp[0])
4170 return FALSE;
4171
4172 /* If the branch is itself the target of a branch, we can not swap.
4173 We cheat on this; all we check for is whether there is a label on
4174 this instruction. If there are any branches to anything other than
4175 a label, users must use .set noreorder. */
4176 if (seg_info (now_seg)->label_list)
4177 return FALSE;
4178
4179 /* If the previous instruction is in a variant frag other than this
4180 branch's one, we cannot do the swap. This does not apply to
4181 MIPS16 code, which uses variant frags for different purposes. */
4182 if (!mips_opts.mips16
4183 && history[0].frag
4184 && history[0].frag->fr_type == rs_machine_dependent)
4185 return FALSE;
4186
4187 /* We do not swap with instructions that cannot architecturally
4188 be placed in a branch delay slot, such as SYNC or ERET. We
4189 also refrain from swapping with a trap instruction, since it
4190 complicates trap handlers to have the trap instruction be in
4191 a delay slot. */
4192 prev_pinfo = history[0].insn_mo->pinfo;
4193 if (prev_pinfo & INSN_NO_DELAY_SLOT)
4194 return FALSE;
4195
4196 /* Check for conflicts between the branch and the instructions
4197 before the candidate delay slot. */
4198 if (nops_for_insn (0, history + 1, ip) > 0)
4199 return FALSE;
4200
4201 /* Check for conflicts between the swapped sequence and the
4202 target of the branch. */
4203 if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
4204 return FALSE;
4205
4206 /* If the branch reads a register that the previous
4207 instruction sets, we can not swap. */
4208 gpr_read = gpr_read_mask (ip);
4209 prev_gpr_write = gpr_write_mask (&history[0]);
4210 if (gpr_read & prev_gpr_write)
4211 return FALSE;
4212
4213 /* If the branch writes a register that the previous
4214 instruction sets, we can not swap. */
4215 gpr_write = gpr_write_mask (ip);
4216 if (gpr_write & prev_gpr_write)
4217 return FALSE;
4218
4219 /* If the branch writes a register that the previous
4220 instruction reads, we can not swap. */
4221 prev_gpr_read = gpr_read_mask (&history[0]);
4222 if (gpr_write & prev_gpr_read)
4223 return FALSE;
4224
4225 /* If one instruction sets a condition code and the
4226 other one uses a condition code, we can not swap. */
4227 pinfo = ip->insn_mo->pinfo;
4228 if ((pinfo & INSN_READ_COND_CODE)
4229 && (prev_pinfo & INSN_WRITE_COND_CODE))
4230 return FALSE;
4231 if ((pinfo & INSN_WRITE_COND_CODE)
4232 && (prev_pinfo & INSN_READ_COND_CODE))
4233 return FALSE;
4234
4235 /* If the previous instruction uses the PC, we can not swap. */
4236 prev_pinfo2 = history[0].insn_mo->pinfo2;
4237 if (mips_opts.mips16 && (prev_pinfo & MIPS16_INSN_READ_PC))
4238 return FALSE;
4239 if (mips_opts.micromips && (prev_pinfo2 & INSN2_READ_PC))
4240 return FALSE;
4241
4242 /* If the previous instruction has an incorrect size for a fixed
4243 branch delay slot in microMIPS mode, we cannot swap. */
4244 pinfo2 = ip->insn_mo->pinfo2;
4245 if (mips_opts.micromips
4246 && (pinfo2 & INSN2_BRANCH_DELAY_16BIT)
4247 && insn_length (history) != 2)
4248 return FALSE;
4249 if (mips_opts.micromips
4250 && (pinfo2 & INSN2_BRANCH_DELAY_32BIT)
4251 && insn_length (history) != 4)
4252 return FALSE;
4253
4254 /* On R5900 short loops need to be fixed by inserting a nop in
4255 the branch delay slots.
4256 A short loop can be terminated too early. */
4257 if (mips_opts.arch == CPU_R5900
4258 /* Check if instruction has a parameter, ignore "j $31". */
4259 && (address_expr != NULL)
4260 /* Parameter must be 16 bit. */
4261 && (*reloc_type == BFD_RELOC_16_PCREL_S2)
4262 /* Branch to same segment. */
4263 && (S_GET_SEGMENT(address_expr->X_add_symbol) == now_seg)
4264 /* Branch to same code fragment. */
4265 && (symbol_get_frag(address_expr->X_add_symbol) == frag_now)
4266 /* Can only calculate branch offset if value is known. */
4267 && symbol_constant_p(address_expr->X_add_symbol)
4268 /* Check if branch is really conditional. */
4269 && !((ip->insn_opcode & 0xffff0000) == 0x10000000 /* beq $0,$0 */
4270 || (ip->insn_opcode & 0xffff0000) == 0x04010000 /* bgez $0 */
4271 || (ip->insn_opcode & 0xffff0000) == 0x04110000)) /* bgezal $0 */
4272 {
4273 int distance;
4274 /* Check if loop is shorter than 6 instructions including
4275 branch and delay slot. */
4276 distance = frag_now_fix() - S_GET_VALUE(address_expr->X_add_symbol);
4277 if (distance <= 20)
4278 {
4279 int i;
4280 int rv;
4281
4282 rv = FALSE;
4283 /* When the loop includes branches or jumps,
4284 it is not a short loop. */
4285 for (i = 0; i < (distance / 4); i++)
4286 {
4287 if ((history[i].cleared_p)
4288 || delayed_branch_p(&history[i]))
4289 {
4290 rv = TRUE;
4291 break;
4292 }
4293 }
4294 if (rv == FALSE)
4295 {
4296 /* Insert nop after branch to fix short loop. */
4297 return FALSE;
4298 }
4299 }
4300 }
4301
4302 return TRUE;
4303 }
4304
4305 /* Decide how we should add IP to the instruction stream.
4306 ADDRESS_EXPR is an operand of the instruction to be used with
4307 RELOC_TYPE. */
4308
4309 static enum append_method
4310 get_append_method (struct mips_cl_insn *ip, expressionS *address_expr,
4311 bfd_reloc_code_real_type *reloc_type)
4312 {
4313 unsigned long pinfo;
4314
4315 /* The relaxed version of a macro sequence must be inherently
4316 hazard-free. */
4317 if (mips_relax.sequence == 2)
4318 return APPEND_ADD;
4319
4320 /* We must not dabble with instructions in a ".set norerorder" block. */
4321 if (mips_opts.noreorder)
4322 return APPEND_ADD;
4323
4324 /* Otherwise, it's our responsibility to fill branch delay slots. */
4325 if (delayed_branch_p (ip))
4326 {
4327 if (!branch_likely_p (ip)
4328 && can_swap_branch_p (ip, address_expr, reloc_type))
4329 return APPEND_SWAP;
4330
4331 pinfo = ip->insn_mo->pinfo;
4332 if (mips_opts.mips16
4333 && ISA_SUPPORTS_MIPS16E
4334 && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31)))
4335 return APPEND_ADD_COMPACT;
4336
4337 return APPEND_ADD_WITH_NOP;
4338 }
4339
4340 return APPEND_ADD;
4341 }
4342
4343 /* IP is a MIPS16 instruction whose opcode we have just changed.
4344 Point IP->insn_mo to the new opcode's definition. */
4345
4346 static void
4347 find_altered_mips16_opcode (struct mips_cl_insn *ip)
4348 {
4349 const struct mips_opcode *mo, *end;
4350
4351 end = &mips16_opcodes[bfd_mips16_num_opcodes];
4352 for (mo = ip->insn_mo; mo < end; mo++)
4353 if ((ip->insn_opcode & mo->mask) == mo->match)
4354 {
4355 ip->insn_mo = mo;
4356 return;
4357 }
4358 abort ();
4359 }
4360
4361 /* For microMIPS macros, we need to generate a local number label
4362 as the target of branches. */
4363 #define MICROMIPS_LABEL_CHAR '\037'
4364 static unsigned long micromips_target_label;
4365 static char micromips_target_name[32];
4366
4367 static char *
4368 micromips_label_name (void)
4369 {
4370 char *p = micromips_target_name;
4371 char symbol_name_temporary[24];
4372 unsigned long l;
4373 int i;
4374
4375 if (*p)
4376 return p;
4377
4378 i = 0;
4379 l = micromips_target_label;
4380 #ifdef LOCAL_LABEL_PREFIX
4381 *p++ = LOCAL_LABEL_PREFIX;
4382 #endif
4383 *p++ = 'L';
4384 *p++ = MICROMIPS_LABEL_CHAR;
4385 do
4386 {
4387 symbol_name_temporary[i++] = l % 10 + '0';
4388 l /= 10;
4389 }
4390 while (l != 0);
4391 while (i > 0)
4392 *p++ = symbol_name_temporary[--i];
4393 *p = '\0';
4394
4395 return micromips_target_name;
4396 }
4397
4398 static void
4399 micromips_label_expr (expressionS *label_expr)
4400 {
4401 label_expr->X_op = O_symbol;
4402 label_expr->X_add_symbol = symbol_find_or_make (micromips_label_name ());
4403 label_expr->X_add_number = 0;
4404 }
4405
4406 static void
4407 micromips_label_inc (void)
4408 {
4409 micromips_target_label++;
4410 *micromips_target_name = '\0';
4411 }
4412
4413 static void
4414 micromips_add_label (void)
4415 {
4416 symbolS *s;
4417
4418 s = colon (micromips_label_name ());
4419 micromips_label_inc ();
4420 S_SET_OTHER (s, ELF_ST_SET_MICROMIPS (S_GET_OTHER (s)));
4421 }
4422
4423 /* If assembling microMIPS code, then return the microMIPS reloc
4424 corresponding to the requested one if any. Otherwise return
4425 the reloc unchanged. */
4426
4427 static bfd_reloc_code_real_type
4428 micromips_map_reloc (bfd_reloc_code_real_type reloc)
4429 {
4430 static const bfd_reloc_code_real_type relocs[][2] =
4431 {
4432 /* Keep sorted incrementally by the left-hand key. */
4433 { BFD_RELOC_16_PCREL_S2, BFD_RELOC_MICROMIPS_16_PCREL_S1 },
4434 { BFD_RELOC_GPREL16, BFD_RELOC_MICROMIPS_GPREL16 },
4435 { BFD_RELOC_MIPS_JMP, BFD_RELOC_MICROMIPS_JMP },
4436 { BFD_RELOC_HI16, BFD_RELOC_MICROMIPS_HI16 },
4437 { BFD_RELOC_HI16_S, BFD_RELOC_MICROMIPS_HI16_S },
4438 { BFD_RELOC_LO16, BFD_RELOC_MICROMIPS_LO16 },
4439 { BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MICROMIPS_LITERAL },
4440 { BFD_RELOC_MIPS_GOT16, BFD_RELOC_MICROMIPS_GOT16 },
4441 { BFD_RELOC_MIPS_CALL16, BFD_RELOC_MICROMIPS_CALL16 },
4442 { BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MICROMIPS_GOT_HI16 },
4443 { BFD_RELOC_MIPS_GOT_LO16, BFD_RELOC_MICROMIPS_GOT_LO16 },
4444 { BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MICROMIPS_CALL_HI16 },
4445 { BFD_RELOC_MIPS_CALL_LO16, BFD_RELOC_MICROMIPS_CALL_LO16 },
4446 { BFD_RELOC_MIPS_SUB, BFD_RELOC_MICROMIPS_SUB },
4447 { BFD_RELOC_MIPS_GOT_PAGE, BFD_RELOC_MICROMIPS_GOT_PAGE },
4448 { BFD_RELOC_MIPS_GOT_OFST, BFD_RELOC_MICROMIPS_GOT_OFST },
4449 { BFD_RELOC_MIPS_GOT_DISP, BFD_RELOC_MICROMIPS_GOT_DISP },
4450 { BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MICROMIPS_HIGHEST },
4451 { BFD_RELOC_MIPS_HIGHER, BFD_RELOC_MICROMIPS_HIGHER },
4452 { BFD_RELOC_MIPS_SCN_DISP, BFD_RELOC_MICROMIPS_SCN_DISP },
4453 { BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MICROMIPS_TLS_GD },
4454 { BFD_RELOC_MIPS_TLS_LDM, BFD_RELOC_MICROMIPS_TLS_LDM },
4455 { BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 },
4456 { BFD_RELOC_MIPS_TLS_DTPREL_LO16, BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 },
4457 { BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MICROMIPS_TLS_GOTTPREL },
4458 { BFD_RELOC_MIPS_TLS_TPREL_HI16, BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 },
4459 { BFD_RELOC_MIPS_TLS_TPREL_LO16, BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 }
4460 };
4461 bfd_reloc_code_real_type r;
4462 size_t i;
4463
4464 if (!mips_opts.micromips)
4465 return reloc;
4466 for (i = 0; i < ARRAY_SIZE (relocs); i++)
4467 {
4468 r = relocs[i][0];
4469 if (r > reloc)
4470 return reloc;
4471 if (r == reloc)
4472 return relocs[i][1];
4473 }
4474 return reloc;
4475 }
4476
4477 /* Try to resolve relocation RELOC against constant OPERAND at assembly time.
4478 Return true on success, storing the resolved value in RESULT. */
4479
4480 static bfd_boolean
4481 calculate_reloc (bfd_reloc_code_real_type reloc, offsetT operand,
4482 offsetT *result)
4483 {
4484 switch (reloc)
4485 {
4486 case BFD_RELOC_MIPS_HIGHEST:
4487 case BFD_RELOC_MICROMIPS_HIGHEST:
4488 *result = ((operand + 0x800080008000ull) >> 48) & 0xffff;
4489 return TRUE;
4490
4491 case BFD_RELOC_MIPS_HIGHER:
4492 case BFD_RELOC_MICROMIPS_HIGHER:
4493 *result = ((operand + 0x80008000ull) >> 32) & 0xffff;
4494 return TRUE;
4495
4496 case BFD_RELOC_HI16_S:
4497 case BFD_RELOC_MICROMIPS_HI16_S:
4498 case BFD_RELOC_MIPS16_HI16_S:
4499 *result = ((operand + 0x8000) >> 16) & 0xffff;
4500 return TRUE;
4501
4502 case BFD_RELOC_HI16:
4503 case BFD_RELOC_MICROMIPS_HI16:
4504 case BFD_RELOC_MIPS16_HI16:
4505 *result = (operand >> 16) & 0xffff;
4506 return TRUE;
4507
4508 case BFD_RELOC_LO16:
4509 case BFD_RELOC_MICROMIPS_LO16:
4510 case BFD_RELOC_MIPS16_LO16:
4511 *result = operand & 0xffff;
4512 return TRUE;
4513
4514 case BFD_RELOC_UNUSED:
4515 *result = operand;
4516 return TRUE;
4517
4518 default:
4519 return FALSE;
4520 }
4521 }
4522
4523 /* Output an instruction. IP is the instruction information.
4524 ADDRESS_EXPR is an operand of the instruction to be used with
4525 RELOC_TYPE. EXPANSIONP is true if the instruction is part of
4526 a macro expansion. */
4527
4528 static void
4529 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
4530 bfd_reloc_code_real_type *reloc_type, bfd_boolean expansionp)
4531 {
4532 unsigned long prev_pinfo2, pinfo;
4533 bfd_boolean relaxed_branch = FALSE;
4534 enum append_method method;
4535 bfd_boolean relax32;
4536 int branch_disp;
4537
4538 if (mips_fix_loongson2f && !HAVE_CODE_COMPRESSION)
4539 fix_loongson2f (ip);
4540
4541 file_ase_mips16 |= mips_opts.mips16;
4542 file_ase_micromips |= mips_opts.micromips;
4543
4544 prev_pinfo2 = history[0].insn_mo->pinfo2;
4545 pinfo = ip->insn_mo->pinfo;
4546
4547 if (mips_opts.micromips
4548 && !expansionp
4549 && (((prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
4550 && micromips_insn_length (ip->insn_mo) != 2)
4551 || ((prev_pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
4552 && micromips_insn_length (ip->insn_mo) != 4)))
4553 as_warn (_("Wrong size instruction in a %u-bit branch delay slot"),
4554 (prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0 ? 16 : 32);
4555
4556 if (address_expr == NULL)
4557 ip->complete_p = 1;
4558 else if (reloc_type[0] <= BFD_RELOC_UNUSED
4559 && reloc_type[1] == BFD_RELOC_UNUSED
4560 && reloc_type[2] == BFD_RELOC_UNUSED
4561 && address_expr->X_op == O_constant)
4562 {
4563 switch (*reloc_type)
4564 {
4565 case BFD_RELOC_MIPS_JMP:
4566 {
4567 int shift;
4568
4569 shift = mips_opts.micromips ? 1 : 2;
4570 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
4571 as_bad (_("jump to misaligned address (0x%lx)"),
4572 (unsigned long) address_expr->X_add_number);
4573 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
4574 & 0x3ffffff);
4575 ip->complete_p = 1;
4576 }
4577 break;
4578
4579 case BFD_RELOC_MIPS16_JMP:
4580 if ((address_expr->X_add_number & 3) != 0)
4581 as_bad (_("jump to misaligned address (0x%lx)"),
4582 (unsigned long) address_expr->X_add_number);
4583 ip->insn_opcode |=
4584 (((address_expr->X_add_number & 0x7c0000) << 3)
4585 | ((address_expr->X_add_number & 0xf800000) >> 7)
4586 | ((address_expr->X_add_number & 0x3fffc) >> 2));
4587 ip->complete_p = 1;
4588 break;
4589
4590 case BFD_RELOC_16_PCREL_S2:
4591 {
4592 int shift;
4593
4594 shift = mips_opts.micromips ? 1 : 2;
4595 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
4596 as_bad (_("branch to misaligned address (0x%lx)"),
4597 (unsigned long) address_expr->X_add_number);
4598 if (!mips_relax_branch)
4599 {
4600 if ((address_expr->X_add_number + (1 << (shift + 15)))
4601 & ~((1 << (shift + 16)) - 1))
4602 as_bad (_("branch address range overflow (0x%lx)"),
4603 (unsigned long) address_expr->X_add_number);
4604 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
4605 & 0xffff);
4606 }
4607 }
4608 break;
4609
4610 default:
4611 {
4612 offsetT value;
4613
4614 if (calculate_reloc (*reloc_type, address_expr->X_add_number,
4615 &value))
4616 {
4617 ip->insn_opcode |= value & 0xffff;
4618 ip->complete_p = 1;
4619 }
4620 }
4621 break;
4622 }
4623 }
4624
4625 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
4626 {
4627 /* There are a lot of optimizations we could do that we don't.
4628 In particular, we do not, in general, reorder instructions.
4629 If you use gcc with optimization, it will reorder
4630 instructions and generally do much more optimization then we
4631 do here; repeating all that work in the assembler would only
4632 benefit hand written assembly code, and does not seem worth
4633 it. */
4634 int nops = (mips_optimize == 0
4635 ? nops_for_insn (0, history, NULL)
4636 : nops_for_insn_or_target (0, history, ip));
4637 if (nops > 0)
4638 {
4639 fragS *old_frag;
4640 unsigned long old_frag_offset;
4641 int i;
4642
4643 old_frag = frag_now;
4644 old_frag_offset = frag_now_fix ();
4645
4646 for (i = 0; i < nops; i++)
4647 add_fixed_insn (NOP_INSN);
4648 insert_into_history (0, nops, NOP_INSN);
4649
4650 if (listing)
4651 {
4652 listing_prev_line ();
4653 /* We may be at the start of a variant frag. In case we
4654 are, make sure there is enough space for the frag
4655 after the frags created by listing_prev_line. The
4656 argument to frag_grow here must be at least as large
4657 as the argument to all other calls to frag_grow in
4658 this file. We don't have to worry about being in the
4659 middle of a variant frag, because the variants insert
4660 all needed nop instructions themselves. */
4661 frag_grow (40);
4662 }
4663
4664 mips_move_text_labels ();
4665
4666 #ifndef NO_ECOFF_DEBUGGING
4667 if (ECOFF_DEBUGGING)
4668 ecoff_fix_loc (old_frag, old_frag_offset);
4669 #endif
4670 }
4671 }
4672 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
4673 {
4674 int nops;
4675
4676 /* Work out how many nops in prev_nop_frag are needed by IP,
4677 ignoring hazards generated by the first prev_nop_frag_since
4678 instructions. */
4679 nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
4680 gas_assert (nops <= prev_nop_frag_holds);
4681
4682 /* Enforce NOPS as a minimum. */
4683 if (nops > prev_nop_frag_required)
4684 prev_nop_frag_required = nops;
4685
4686 if (prev_nop_frag_holds == prev_nop_frag_required)
4687 {
4688 /* Settle for the current number of nops. Update the history
4689 accordingly (for the benefit of any future .set reorder code). */
4690 prev_nop_frag = NULL;
4691 insert_into_history (prev_nop_frag_since,
4692 prev_nop_frag_holds, NOP_INSN);
4693 }
4694 else
4695 {
4696 /* Allow this instruction to replace one of the nops that was
4697 tentatively added to prev_nop_frag. */
4698 prev_nop_frag->fr_fix -= NOP_INSN_SIZE;
4699 prev_nop_frag_holds--;
4700 prev_nop_frag_since++;
4701 }
4702 }
4703
4704 method = get_append_method (ip, address_expr, reloc_type);
4705 branch_disp = method == APPEND_SWAP ? insn_length (history) : 0;
4706
4707 dwarf2_emit_insn (0);
4708 /* We want MIPS16 and microMIPS debug info to use ISA-encoded addresses,
4709 so "move" the instruction address accordingly.
4710
4711 Also, it doesn't seem appropriate for the assembler to reorder .loc
4712 entries. If this instruction is a branch that we are going to swap
4713 with the previous instruction, the two instructions should be
4714 treated as a unit, and the debug information for both instructions
4715 should refer to the start of the branch sequence. Using the
4716 current position is certainly wrong when swapping a 32-bit branch
4717 and a 16-bit delay slot, since the current position would then be
4718 in the middle of a branch. */
4719 dwarf2_move_insn ((HAVE_CODE_COMPRESSION ? 1 : 0) - branch_disp);
4720
4721 relax32 = (mips_relax_branch
4722 /* Don't try branch relaxation within .set nomacro, or within
4723 .set noat if we use $at for PIC computations. If it turns
4724 out that the branch was out-of-range, we'll get an error. */
4725 && !mips_opts.warn_about_macros
4726 && (mips_opts.at || mips_pic == NO_PIC)
4727 /* Don't relax BPOSGE32/64 or BC1ANY2T/F and BC1ANY4T/F
4728 as they have no complementing branches. */
4729 && !(ip->insn_mo->ase & (ASE_MIPS3D | ASE_DSP64 | ASE_DSP)));
4730
4731 if (!HAVE_CODE_COMPRESSION
4732 && address_expr
4733 && relax32
4734 && *reloc_type == BFD_RELOC_16_PCREL_S2
4735 && delayed_branch_p (ip))
4736 {
4737 relaxed_branch = TRUE;
4738 add_relaxed_insn (ip, (relaxed_branch_length
4739 (NULL, NULL,
4740 uncond_branch_p (ip) ? -1
4741 : branch_likely_p (ip) ? 1
4742 : 0)), 4,
4743 RELAX_BRANCH_ENCODE
4744 (AT,
4745 uncond_branch_p (ip),
4746 branch_likely_p (ip),
4747 pinfo & INSN_WRITE_GPR_31,
4748 0),
4749 address_expr->X_add_symbol,
4750 address_expr->X_add_number);
4751 *reloc_type = BFD_RELOC_UNUSED;
4752 }
4753 else if (mips_opts.micromips
4754 && address_expr
4755 && ((relax32 && *reloc_type == BFD_RELOC_16_PCREL_S2)
4756 || *reloc_type > BFD_RELOC_UNUSED)
4757 && (delayed_branch_p (ip) || compact_branch_p (ip))
4758 /* Don't try branch relaxation when users specify
4759 16-bit/32-bit instructions. */
4760 && !forced_insn_length)
4761 {
4762 bfd_boolean relax16 = *reloc_type > BFD_RELOC_UNUSED;
4763 int type = relax16 ? *reloc_type - BFD_RELOC_UNUSED : 0;
4764 int uncond = uncond_branch_p (ip) ? -1 : 0;
4765 int compact = compact_branch_p (ip);
4766 int al = pinfo & INSN_WRITE_GPR_31;
4767 int length32;
4768
4769 gas_assert (address_expr != NULL);
4770 gas_assert (!mips_relax.sequence);
4771
4772 relaxed_branch = TRUE;
4773 length32 = relaxed_micromips_32bit_branch_length (NULL, NULL, uncond);
4774 add_relaxed_insn (ip, relax32 ? length32 : 4, relax16 ? 2 : 4,
4775 RELAX_MICROMIPS_ENCODE (type, AT, uncond, compact, al,
4776 relax32, 0, 0),
4777 address_expr->X_add_symbol,
4778 address_expr->X_add_number);
4779 *reloc_type = BFD_RELOC_UNUSED;
4780 }
4781 else if (mips_opts.mips16 && *reloc_type > BFD_RELOC_UNUSED)
4782 {
4783 /* We need to set up a variant frag. */
4784 gas_assert (address_expr != NULL);
4785 add_relaxed_insn (ip, 4, 0,
4786 RELAX_MIPS16_ENCODE
4787 (*reloc_type - BFD_RELOC_UNUSED,
4788 forced_insn_length == 2, forced_insn_length == 4,
4789 delayed_branch_p (&history[0]),
4790 history[0].mips16_absolute_jump_p),
4791 make_expr_symbol (address_expr), 0);
4792 }
4793 else if (mips_opts.mips16 && insn_length (ip) == 2)
4794 {
4795 if (!delayed_branch_p (ip))
4796 /* Make sure there is enough room to swap this instruction with
4797 a following jump instruction. */
4798 frag_grow (6);
4799 add_fixed_insn (ip);
4800 }
4801 else
4802 {
4803 if (mips_opts.mips16
4804 && mips_opts.noreorder
4805 && delayed_branch_p (&history[0]))
4806 as_warn (_("extended instruction in delay slot"));
4807
4808 if (mips_relax.sequence)
4809 {
4810 /* If we've reached the end of this frag, turn it into a variant
4811 frag and record the information for the instructions we've
4812 written so far. */
4813 if (frag_room () < 4)
4814 relax_close_frag ();
4815 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (ip);
4816 }
4817
4818 if (mips_relax.sequence != 2)
4819 {
4820 if (mips_macro_warning.first_insn_sizes[0] == 0)
4821 mips_macro_warning.first_insn_sizes[0] = insn_length (ip);
4822 mips_macro_warning.sizes[0] += insn_length (ip);
4823 mips_macro_warning.insns[0]++;
4824 }
4825 if (mips_relax.sequence != 1)
4826 {
4827 if (mips_macro_warning.first_insn_sizes[1] == 0)
4828 mips_macro_warning.first_insn_sizes[1] = insn_length (ip);
4829 mips_macro_warning.sizes[1] += insn_length (ip);
4830 mips_macro_warning.insns[1]++;
4831 }
4832
4833 if (mips_opts.mips16)
4834 {
4835 ip->fixed_p = 1;
4836 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
4837 }
4838 add_fixed_insn (ip);
4839 }
4840
4841 if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
4842 {
4843 bfd_reloc_code_real_type final_type[3];
4844 reloc_howto_type *howto0;
4845 reloc_howto_type *howto;
4846 int i;
4847
4848 /* Perform any necessary conversion to microMIPS relocations
4849 and find out how many relocations there actually are. */
4850 for (i = 0; i < 3 && reloc_type[i] != BFD_RELOC_UNUSED; i++)
4851 final_type[i] = micromips_map_reloc (reloc_type[i]);
4852
4853 /* In a compound relocation, it is the final (outermost)
4854 operator that determines the relocated field. */
4855 howto = howto0 = bfd_reloc_type_lookup (stdoutput, final_type[i - 1]);
4856 if (!howto)
4857 abort ();
4858
4859 if (i > 1)
4860 howto0 = bfd_reloc_type_lookup (stdoutput, final_type[0]);
4861 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
4862 bfd_get_reloc_size (howto),
4863 address_expr,
4864 howto0 && howto0->pc_relative,
4865 final_type[0]);
4866
4867 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
4868 if (final_type[0] == BFD_RELOC_MIPS16_JMP && ip->fixp[0]->fx_addsy)
4869 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
4870
4871 /* These relocations can have an addend that won't fit in
4872 4 octets for 64bit assembly. */
4873 if (HAVE_64BIT_GPRS
4874 && ! howto->partial_inplace
4875 && (reloc_type[0] == BFD_RELOC_16
4876 || reloc_type[0] == BFD_RELOC_32
4877 || reloc_type[0] == BFD_RELOC_MIPS_JMP
4878 || reloc_type[0] == BFD_RELOC_GPREL16
4879 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
4880 || reloc_type[0] == BFD_RELOC_GPREL32
4881 || reloc_type[0] == BFD_RELOC_64
4882 || reloc_type[0] == BFD_RELOC_CTOR
4883 || reloc_type[0] == BFD_RELOC_MIPS_SUB
4884 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
4885 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
4886 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
4887 || reloc_type[0] == BFD_RELOC_MIPS_REL16
4888 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
4889 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
4890 || hi16_reloc_p (reloc_type[0])
4891 || lo16_reloc_p (reloc_type[0])))
4892 ip->fixp[0]->fx_no_overflow = 1;
4893
4894 /* These relocations can have an addend that won't fit in 2 octets. */
4895 if (reloc_type[0] == BFD_RELOC_MICROMIPS_7_PCREL_S1
4896 || reloc_type[0] == BFD_RELOC_MICROMIPS_10_PCREL_S1)
4897 ip->fixp[0]->fx_no_overflow = 1;
4898
4899 if (mips_relax.sequence)
4900 {
4901 if (mips_relax.first_fixup == 0)
4902 mips_relax.first_fixup = ip->fixp[0];
4903 }
4904 else if (reloc_needs_lo_p (*reloc_type))
4905 {
4906 struct mips_hi_fixup *hi_fixup;
4907
4908 /* Reuse the last entry if it already has a matching %lo. */
4909 hi_fixup = mips_hi_fixup_list;
4910 if (hi_fixup == 0
4911 || !fixup_has_matching_lo_p (hi_fixup->fixp))
4912 {
4913 hi_fixup = ((struct mips_hi_fixup *)
4914 xmalloc (sizeof (struct mips_hi_fixup)));
4915 hi_fixup->next = mips_hi_fixup_list;
4916 mips_hi_fixup_list = hi_fixup;
4917 }
4918 hi_fixup->fixp = ip->fixp[0];
4919 hi_fixup->seg = now_seg;
4920 }
4921
4922 /* Add fixups for the second and third relocations, if given.
4923 Note that the ABI allows the second relocation to be
4924 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
4925 moment we only use RSS_UNDEF, but we could add support
4926 for the others if it ever becomes necessary. */
4927 for (i = 1; i < 3; i++)
4928 if (reloc_type[i] != BFD_RELOC_UNUSED)
4929 {
4930 ip->fixp[i] = fix_new (ip->frag, ip->where,
4931 ip->fixp[0]->fx_size, NULL, 0,
4932 FALSE, final_type[i]);
4933
4934 /* Use fx_tcbit to mark compound relocs. */
4935 ip->fixp[0]->fx_tcbit = 1;
4936 ip->fixp[i]->fx_tcbit = 1;
4937 }
4938 }
4939 install_insn (ip);
4940
4941 /* Update the register mask information. */
4942 mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
4943 mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
4944
4945 switch (method)
4946 {
4947 case APPEND_ADD:
4948 insert_into_history (0, 1, ip);
4949 break;
4950
4951 case APPEND_ADD_WITH_NOP:
4952 {
4953 struct mips_cl_insn *nop;
4954
4955 insert_into_history (0, 1, ip);
4956 nop = get_delay_slot_nop (ip);
4957 add_fixed_insn (nop);
4958 insert_into_history (0, 1, nop);
4959 if (mips_relax.sequence)
4960 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (nop);
4961 }
4962 break;
4963
4964 case APPEND_ADD_COMPACT:
4965 /* Convert MIPS16 jr/jalr into a "compact" jump. */
4966 gas_assert (mips_opts.mips16);
4967 ip->insn_opcode |= 0x0080;
4968 find_altered_mips16_opcode (ip);
4969 install_insn (ip);
4970 insert_into_history (0, 1, ip);
4971 break;
4972
4973 case APPEND_SWAP:
4974 {
4975 struct mips_cl_insn delay = history[0];
4976 if (mips_opts.mips16)
4977 {
4978 know (delay.frag == ip->frag);
4979 move_insn (ip, delay.frag, delay.where);
4980 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
4981 }
4982 else if (relaxed_branch || delay.frag != ip->frag)
4983 {
4984 /* Add the delay slot instruction to the end of the
4985 current frag and shrink the fixed part of the
4986 original frag. If the branch occupies the tail of
4987 the latter, move it backwards to cover the gap. */
4988 delay.frag->fr_fix -= branch_disp;
4989 if (delay.frag == ip->frag)
4990 move_insn (ip, ip->frag, ip->where - branch_disp);
4991 add_fixed_insn (&delay);
4992 }
4993 else
4994 {
4995 move_insn (&delay, ip->frag,
4996 ip->where - branch_disp + insn_length (ip));
4997 move_insn (ip, history[0].frag, history[0].where);
4998 }
4999 history[0] = *ip;
5000 delay.fixed_p = 1;
5001 insert_into_history (0, 1, &delay);
5002 }
5003 break;
5004 }
5005
5006 /* If we have just completed an unconditional branch, clear the history. */
5007 if ((delayed_branch_p (&history[1]) && uncond_branch_p (&history[1]))
5008 || (compact_branch_p (&history[0]) && uncond_branch_p (&history[0])))
5009 {
5010 unsigned int i;
5011
5012 mips_no_prev_insn ();
5013
5014 for (i = 0; i < ARRAY_SIZE (history); i++)
5015 history[i].cleared_p = 1;
5016 }
5017
5018 /* We need to emit a label at the end of branch-likely macros. */
5019 if (emit_branch_likely_macro)
5020 {
5021 emit_branch_likely_macro = FALSE;
5022 micromips_add_label ();
5023 }
5024
5025 /* We just output an insn, so the next one doesn't have a label. */
5026 mips_clear_insn_labels ();
5027 }
5028
5029 /* Forget that there was any previous instruction or label.
5030 When BRANCH is true, the branch history is also flushed. */
5031
5032 static void
5033 mips_no_prev_insn (void)
5034 {
5035 prev_nop_frag = NULL;
5036 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
5037 mips_clear_insn_labels ();
5038 }
5039
5040 /* This function must be called before we emit something other than
5041 instructions. It is like mips_no_prev_insn except that it inserts
5042 any NOPS that might be needed by previous instructions. */
5043
5044 void
5045 mips_emit_delays (void)
5046 {
5047 if (! mips_opts.noreorder)
5048 {
5049 int nops = nops_for_insn (0, history, NULL);
5050 if (nops > 0)
5051 {
5052 while (nops-- > 0)
5053 add_fixed_insn (NOP_INSN);
5054 mips_move_text_labels ();
5055 }
5056 }
5057 mips_no_prev_insn ();
5058 }
5059
5060 /* Start a (possibly nested) noreorder block. */
5061
5062 static void
5063 start_noreorder (void)
5064 {
5065 if (mips_opts.noreorder == 0)
5066 {
5067 unsigned int i;
5068 int nops;
5069
5070 /* None of the instructions before the .set noreorder can be moved. */
5071 for (i = 0; i < ARRAY_SIZE (history); i++)
5072 history[i].fixed_p = 1;
5073
5074 /* Insert any nops that might be needed between the .set noreorder
5075 block and the previous instructions. We will later remove any
5076 nops that turn out not to be needed. */
5077 nops = nops_for_insn (0, history, NULL);
5078 if (nops > 0)
5079 {
5080 if (mips_optimize != 0)
5081 {
5082 /* Record the frag which holds the nop instructions, so
5083 that we can remove them if we don't need them. */
5084 frag_grow (nops * NOP_INSN_SIZE);
5085 prev_nop_frag = frag_now;
5086 prev_nop_frag_holds = nops;
5087 prev_nop_frag_required = 0;
5088 prev_nop_frag_since = 0;
5089 }
5090
5091 for (; nops > 0; --nops)
5092 add_fixed_insn (NOP_INSN);
5093
5094 /* Move on to a new frag, so that it is safe to simply
5095 decrease the size of prev_nop_frag. */
5096 frag_wane (frag_now);
5097 frag_new (0);
5098 mips_move_text_labels ();
5099 }
5100 mips_mark_labels ();
5101 mips_clear_insn_labels ();
5102 }
5103 mips_opts.noreorder++;
5104 mips_any_noreorder = 1;
5105 }
5106
5107 /* End a nested noreorder block. */
5108
5109 static void
5110 end_noreorder (void)
5111 {
5112 mips_opts.noreorder--;
5113 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
5114 {
5115 /* Commit to inserting prev_nop_frag_required nops and go back to
5116 handling nop insertion the .set reorder way. */
5117 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
5118 * NOP_INSN_SIZE);
5119 insert_into_history (prev_nop_frag_since,
5120 prev_nop_frag_required, NOP_INSN);
5121 prev_nop_frag = NULL;
5122 }
5123 }
5124
5125 /* Set up global variables for the start of a new macro. */
5126
5127 static void
5128 macro_start (void)
5129 {
5130 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
5131 memset (&mips_macro_warning.first_insn_sizes, 0,
5132 sizeof (mips_macro_warning.first_insn_sizes));
5133 memset (&mips_macro_warning.insns, 0, sizeof (mips_macro_warning.insns));
5134 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
5135 && delayed_branch_p (&history[0]));
5136 switch (history[0].insn_mo->pinfo2
5137 & (INSN2_BRANCH_DELAY_32BIT | INSN2_BRANCH_DELAY_16BIT))
5138 {
5139 case INSN2_BRANCH_DELAY_32BIT:
5140 mips_macro_warning.delay_slot_length = 4;
5141 break;
5142 case INSN2_BRANCH_DELAY_16BIT:
5143 mips_macro_warning.delay_slot_length = 2;
5144 break;
5145 default:
5146 mips_macro_warning.delay_slot_length = 0;
5147 break;
5148 }
5149 mips_macro_warning.first_frag = NULL;
5150 }
5151
5152 /* Given that a macro is longer than one instruction or of the wrong size,
5153 return the appropriate warning for it. Return null if no warning is
5154 needed. SUBTYPE is a bitmask of RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT,
5155 RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND,
5156 and RELAX_NOMACRO. */
5157
5158 static const char *
5159 macro_warning (relax_substateT subtype)
5160 {
5161 if (subtype & RELAX_DELAY_SLOT)
5162 return _("Macro instruction expanded into multiple instructions"
5163 " in a branch delay slot");
5164 else if (subtype & RELAX_NOMACRO)
5165 return _("Macro instruction expanded into multiple instructions");
5166 else if (subtype & (RELAX_DELAY_SLOT_SIZE_FIRST
5167 | RELAX_DELAY_SLOT_SIZE_SECOND))
5168 return ((subtype & RELAX_DELAY_SLOT_16BIT)
5169 ? _("Macro instruction expanded into a wrong size instruction"
5170 " in a 16-bit branch delay slot")
5171 : _("Macro instruction expanded into a wrong size instruction"
5172 " in a 32-bit branch delay slot"));
5173 else
5174 return 0;
5175 }
5176
5177 /* Finish up a macro. Emit warnings as appropriate. */
5178
5179 static void
5180 macro_end (void)
5181 {
5182 /* Relaxation warning flags. */
5183 relax_substateT subtype = 0;
5184
5185 /* Check delay slot size requirements. */
5186 if (mips_macro_warning.delay_slot_length == 2)
5187 subtype |= RELAX_DELAY_SLOT_16BIT;
5188 if (mips_macro_warning.delay_slot_length != 0)
5189 {
5190 if (mips_macro_warning.delay_slot_length
5191 != mips_macro_warning.first_insn_sizes[0])
5192 subtype |= RELAX_DELAY_SLOT_SIZE_FIRST;
5193 if (mips_macro_warning.delay_slot_length
5194 != mips_macro_warning.first_insn_sizes[1])
5195 subtype |= RELAX_DELAY_SLOT_SIZE_SECOND;
5196 }
5197
5198 /* Check instruction count requirements. */
5199 if (mips_macro_warning.insns[0] > 1 || mips_macro_warning.insns[1] > 1)
5200 {
5201 if (mips_macro_warning.insns[1] > mips_macro_warning.insns[0])
5202 subtype |= RELAX_SECOND_LONGER;
5203 if (mips_opts.warn_about_macros)
5204 subtype |= RELAX_NOMACRO;
5205 if (mips_macro_warning.delay_slot_p)
5206 subtype |= RELAX_DELAY_SLOT;
5207 }
5208
5209 /* If both alternatives fail to fill a delay slot correctly,
5210 emit the warning now. */
5211 if ((subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0
5212 && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0)
5213 {
5214 relax_substateT s;
5215 const char *msg;
5216
5217 s = subtype & (RELAX_DELAY_SLOT_16BIT
5218 | RELAX_DELAY_SLOT_SIZE_FIRST
5219 | RELAX_DELAY_SLOT_SIZE_SECOND);
5220 msg = macro_warning (s);
5221 if (msg != NULL)
5222 as_warn ("%s", msg);
5223 subtype &= ~s;
5224 }
5225
5226 /* If both implementations are longer than 1 instruction, then emit the
5227 warning now. */
5228 if (mips_macro_warning.insns[0] > 1 && mips_macro_warning.insns[1] > 1)
5229 {
5230 relax_substateT s;
5231 const char *msg;
5232
5233 s = subtype & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT);
5234 msg = macro_warning (s);
5235 if (msg != NULL)
5236 as_warn ("%s", msg);
5237 subtype &= ~s;
5238 }
5239
5240 /* If any flags still set, then one implementation might need a warning
5241 and the other either will need one of a different kind or none at all.
5242 Pass any remaining flags over to relaxation. */
5243 if (mips_macro_warning.first_frag != NULL)
5244 mips_macro_warning.first_frag->fr_subtype |= subtype;
5245 }
5246
5247 /* Instruction operand formats used in macros that vary between
5248 standard MIPS and microMIPS code. */
5249
5250 static const char * const brk_fmt[2][2] = { { "c", "c" }, { "mF", "c" } };
5251 static const char * const cop12_fmt[2] = { "E,o(b)", "E,~(b)" };
5252 static const char * const jalr_fmt[2] = { "d,s", "t,s" };
5253 static const char * const lui_fmt[2] = { "t,u", "s,u" };
5254 static const char * const mem12_fmt[2] = { "t,o(b)", "t,~(b)" };
5255 static const char * const mfhl_fmt[2][2] = { { "d", "d" }, { "mj", "s" } };
5256 static const char * const shft_fmt[2] = { "d,w,<", "t,r,<" };
5257 static const char * const trap_fmt[2] = { "s,t,q", "s,t,|" };
5258
5259 #define BRK_FMT (brk_fmt[mips_opts.micromips][mips_opts.insn32])
5260 #define COP12_FMT (cop12_fmt[mips_opts.micromips])
5261 #define JALR_FMT (jalr_fmt[mips_opts.micromips])
5262 #define LUI_FMT (lui_fmt[mips_opts.micromips])
5263 #define MEM12_FMT (mem12_fmt[mips_opts.micromips])
5264 #define MFHL_FMT (mfhl_fmt[mips_opts.micromips][mips_opts.insn32])
5265 #define SHFT_FMT (shft_fmt[mips_opts.micromips])
5266 #define TRAP_FMT (trap_fmt[mips_opts.micromips])
5267
5268 /* Read a macro's relocation codes from *ARGS and store them in *R.
5269 The first argument in *ARGS will be either the code for a single
5270 relocation or -1 followed by the three codes that make up a
5271 composite relocation. */
5272
5273 static void
5274 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
5275 {
5276 int i, next;
5277
5278 next = va_arg (*args, int);
5279 if (next >= 0)
5280 r[0] = (bfd_reloc_code_real_type) next;
5281 else
5282 {
5283 for (i = 0; i < 3; i++)
5284 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
5285 /* This function is only used for 16-bit relocation fields.
5286 To make the macro code simpler, treat an unrelocated value
5287 in the same way as BFD_RELOC_LO16. */
5288 if (r[0] == BFD_RELOC_UNUSED)
5289 r[0] = BFD_RELOC_LO16;
5290 }
5291 }
5292
5293 /* Build an instruction created by a macro expansion. This is passed
5294 a pointer to the count of instructions created so far, an
5295 expression, the name of the instruction to build, an operand format
5296 string, and corresponding arguments. */
5297
5298 static void
5299 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
5300 {
5301 const struct mips_opcode *mo = NULL;
5302 bfd_reloc_code_real_type r[3];
5303 const struct mips_opcode *amo;
5304 struct hash_control *hash;
5305 struct mips_cl_insn insn;
5306 va_list args;
5307
5308 va_start (args, fmt);
5309
5310 if (mips_opts.mips16)
5311 {
5312 mips16_macro_build (ep, name, fmt, &args);
5313 va_end (args);
5314 return;
5315 }
5316
5317 r[0] = BFD_RELOC_UNUSED;
5318 r[1] = BFD_RELOC_UNUSED;
5319 r[2] = BFD_RELOC_UNUSED;
5320 hash = mips_opts.micromips ? micromips_op_hash : op_hash;
5321 amo = (struct mips_opcode *) hash_find (hash, name);
5322 gas_assert (amo);
5323 gas_assert (strcmp (name, amo->name) == 0);
5324
5325 do
5326 {
5327 /* Search until we get a match for NAME. It is assumed here that
5328 macros will never generate MDMX, MIPS-3D, or MT instructions.
5329 We try to match an instruction that fulfils the branch delay
5330 slot instruction length requirement (if any) of the previous
5331 instruction. While doing this we record the first instruction
5332 seen that matches all the other conditions and use it anyway
5333 if the requirement cannot be met; we will issue an appropriate
5334 warning later on. */
5335 if (strcmp (fmt, amo->args) == 0
5336 && amo->pinfo != INSN_MACRO
5337 && is_opcode_valid (amo)
5338 && is_size_valid (amo))
5339 {
5340 if (is_delay_slot_valid (amo))
5341 {
5342 mo = amo;
5343 break;
5344 }
5345 else if (!mo)
5346 mo = amo;
5347 }
5348
5349 ++amo;
5350 gas_assert (amo->name);
5351 }
5352 while (strcmp (name, amo->name) == 0);
5353
5354 gas_assert (mo);
5355 create_insn (&insn, mo);
5356 for (;;)
5357 {
5358 switch (*fmt++)
5359 {
5360 case '\0':
5361 break;
5362
5363 case ',':
5364 case '(':
5365 case ')':
5366 continue;
5367
5368 case '+':
5369 switch (*fmt++)
5370 {
5371 case 'A':
5372 case 'E':
5373 INSERT_OPERAND (mips_opts.micromips,
5374 EXTLSB, insn, va_arg (args, int));
5375 continue;
5376
5377 case 'B':
5378 case 'F':
5379 /* Note that in the macro case, these arguments are already
5380 in MSB form. (When handling the instruction in the
5381 non-macro case, these arguments are sizes from which
5382 MSB values must be calculated.) */
5383 INSERT_OPERAND (mips_opts.micromips,
5384 INSMSB, insn, va_arg (args, int));
5385 continue;
5386
5387 case 'J':
5388 gas_assert (!mips_opts.micromips);
5389 INSERT_OPERAND (0, CODE10, insn, va_arg (args, int));
5390 continue;
5391
5392 case 'C':
5393 case 'G':
5394 case 'H':
5395 /* Note that in the macro case, these arguments are already
5396 in MSBD form. (When handling the instruction in the
5397 non-macro case, these arguments are sizes from which
5398 MSBD values must be calculated.) */
5399 INSERT_OPERAND (mips_opts.micromips,
5400 EXTMSBD, insn, va_arg (args, int));
5401 continue;
5402
5403 case 'Q':
5404 gas_assert (!mips_opts.micromips);
5405 INSERT_OPERAND (0, SEQI, insn, va_arg (args, int));
5406 continue;
5407
5408 case 'j':
5409 INSERT_OPERAND (mips_opts.micromips, EVAOFFSET, insn, va_arg (args, int));
5410 continue;
5411
5412 default:
5413 abort ();
5414 }
5415 continue;
5416
5417 case '2':
5418 INSERT_OPERAND (mips_opts.micromips, BP, insn, va_arg (args, int));
5419 continue;
5420
5421 case 'n':
5422 gas_assert (mips_opts.micromips);
5423 case 't':
5424 case 'w':
5425 case 'E':
5426 INSERT_OPERAND (mips_opts.micromips, RT, insn, va_arg (args, int));
5427 continue;
5428
5429 case 'c':
5430 INSERT_OPERAND (mips_opts.micromips, CODE, insn, va_arg (args, int));
5431 continue;
5432
5433 case 'W':
5434 gas_assert (!mips_opts.micromips);
5435 case 'T':
5436 INSERT_OPERAND (mips_opts.micromips, FT, insn, va_arg (args, int));
5437 continue;
5438
5439 case 'G':
5440 if (mips_opts.micromips)
5441 INSERT_OPERAND (1, RS, insn, va_arg (args, int));
5442 else
5443 INSERT_OPERAND (0, RD, insn, va_arg (args, int));
5444 continue;
5445
5446 case 'K':
5447 gas_assert (!mips_opts.micromips);
5448 case 'd':
5449 INSERT_OPERAND (mips_opts.micromips, RD, insn, va_arg (args, int));
5450 continue;
5451
5452 case 'U':
5453 gas_assert (!mips_opts.micromips);
5454 {
5455 int tmp = va_arg (args, int);
5456
5457 INSERT_OPERAND (0, RT, insn, tmp);
5458 INSERT_OPERAND (0, RD, insn, tmp);
5459 }
5460 continue;
5461
5462 case 'V':
5463 case 'S':
5464 gas_assert (!mips_opts.micromips);
5465 INSERT_OPERAND (0, FS, insn, va_arg (args, int));
5466 continue;
5467
5468 case 'z':
5469 continue;
5470
5471 case '<':
5472 INSERT_OPERAND (mips_opts.micromips,
5473 SHAMT, insn, va_arg (args, int));
5474 continue;
5475
5476 case 'D':
5477 gas_assert (!mips_opts.micromips);
5478 INSERT_OPERAND (0, FD, insn, va_arg (args, int));
5479 continue;
5480
5481 case 'B':
5482 gas_assert (!mips_opts.micromips);
5483 INSERT_OPERAND (0, CODE20, insn, va_arg (args, int));
5484 continue;
5485
5486 case 'J':
5487 gas_assert (!mips_opts.micromips);
5488 INSERT_OPERAND (0, CODE19, insn, va_arg (args, int));
5489 continue;
5490
5491 case 'q':
5492 gas_assert (!mips_opts.micromips);
5493 INSERT_OPERAND (0, CODE2, insn, va_arg (args, int));
5494 continue;
5495
5496 case 'b':
5497 case 's':
5498 case 'r':
5499 case 'v':
5500 INSERT_OPERAND (mips_opts.micromips, RS, insn, va_arg (args, int));
5501 continue;
5502
5503 case 'i':
5504 case 'j':
5505 macro_read_relocs (&args, r);
5506 gas_assert (*r == BFD_RELOC_GPREL16
5507 || *r == BFD_RELOC_MIPS_HIGHER
5508 || *r == BFD_RELOC_HI16_S
5509 || *r == BFD_RELOC_LO16
5510 || *r == BFD_RELOC_MIPS_GOT_OFST);
5511 continue;
5512
5513 case 'o':
5514 macro_read_relocs (&args, r);
5515 continue;
5516
5517 case 'u':
5518 macro_read_relocs (&args, r);
5519 gas_assert (ep != NULL
5520 && (ep->X_op == O_constant
5521 || (ep->X_op == O_symbol
5522 && (*r == BFD_RELOC_MIPS_HIGHEST
5523 || *r == BFD_RELOC_HI16_S
5524 || *r == BFD_RELOC_HI16
5525 || *r == BFD_RELOC_GPREL16
5526 || *r == BFD_RELOC_MIPS_GOT_HI16
5527 || *r == BFD_RELOC_MIPS_CALL_HI16))));
5528 continue;
5529
5530 case 'p':
5531 gas_assert (ep != NULL);
5532
5533 /*
5534 * This allows macro() to pass an immediate expression for
5535 * creating short branches without creating a symbol.
5536 *
5537 * We don't allow branch relaxation for these branches, as
5538 * they should only appear in ".set nomacro" anyway.
5539 */
5540 if (ep->X_op == O_constant)
5541 {
5542 /* For microMIPS we always use relocations for branches.
5543 So we should not resolve immediate values. */
5544 gas_assert (!mips_opts.micromips);
5545
5546 if ((ep->X_add_number & 3) != 0)
5547 as_bad (_("branch to misaligned address (0x%lx)"),
5548 (unsigned long) ep->X_add_number);
5549 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
5550 as_bad (_("branch address range overflow (0x%lx)"),
5551 (unsigned long) ep->X_add_number);
5552 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
5553 ep = NULL;
5554 }
5555 else
5556 *r = BFD_RELOC_16_PCREL_S2;
5557 continue;
5558
5559 case 'a':
5560 gas_assert (ep != NULL);
5561 *r = BFD_RELOC_MIPS_JMP;
5562 continue;
5563
5564 case 'C':
5565 gas_assert (!mips_opts.micromips);
5566 INSERT_OPERAND (0, COPZ, insn, va_arg (args, unsigned long));
5567 continue;
5568
5569 case 'k':
5570 INSERT_OPERAND (mips_opts.micromips,
5571 CACHE, insn, va_arg (args, unsigned long));
5572 continue;
5573
5574 case '|':
5575 gas_assert (mips_opts.micromips);
5576 INSERT_OPERAND (1, TRAP, insn, va_arg (args, int));
5577 continue;
5578
5579 case '.':
5580 gas_assert (mips_opts.micromips);
5581 INSERT_OPERAND (1, OFFSET10, insn, va_arg (args, int));
5582 continue;
5583
5584 case '\\':
5585 INSERT_OPERAND (mips_opts.micromips,
5586 3BITPOS, insn, va_arg (args, unsigned int));
5587 continue;
5588
5589 case '~':
5590 INSERT_OPERAND (mips_opts.micromips,
5591 OFFSET12, insn, va_arg (args, unsigned long));
5592 continue;
5593
5594 case 'N':
5595 gas_assert (mips_opts.micromips);
5596 INSERT_OPERAND (1, BCC, insn, va_arg (args, int));
5597 continue;
5598
5599 case 'm': /* Opcode extension character. */
5600 gas_assert (mips_opts.micromips);
5601 switch (*fmt++)
5602 {
5603 case 'j':
5604 INSERT_OPERAND (1, MJ, insn, va_arg (args, int));
5605 break;
5606
5607 case 'p':
5608 INSERT_OPERAND (1, MP, insn, va_arg (args, int));
5609 break;
5610
5611 case 'F':
5612 INSERT_OPERAND (1, IMMF, insn, va_arg (args, int));
5613 break;
5614
5615 default:
5616 abort ();
5617 }
5618 continue;
5619
5620 default:
5621 abort ();
5622 }
5623 break;
5624 }
5625 va_end (args);
5626 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
5627
5628 append_insn (&insn, ep, r, TRUE);
5629 }
5630
5631 static void
5632 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
5633 va_list *args)
5634 {
5635 struct mips_opcode *mo;
5636 struct mips_cl_insn insn;
5637 bfd_reloc_code_real_type r[3]
5638 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
5639
5640 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
5641 gas_assert (mo);
5642 gas_assert (strcmp (name, mo->name) == 0);
5643
5644 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
5645 {
5646 ++mo;
5647 gas_assert (mo->name);
5648 gas_assert (strcmp (name, mo->name) == 0);
5649 }
5650
5651 create_insn (&insn, mo);
5652 for (;;)
5653 {
5654 int c;
5655
5656 c = *fmt++;
5657 switch (c)
5658 {
5659 case '\0':
5660 break;
5661
5662 case ',':
5663 case '(':
5664 case ')':
5665 continue;
5666
5667 case 'y':
5668 case 'w':
5669 MIPS16_INSERT_OPERAND (RY, insn, va_arg (*args, int));
5670 continue;
5671
5672 case 'x':
5673 case 'v':
5674 MIPS16_INSERT_OPERAND (RX, insn, va_arg (*args, int));
5675 continue;
5676
5677 case 'z':
5678 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (*args, int));
5679 continue;
5680
5681 case 'Z':
5682 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (*args, int));
5683 continue;
5684
5685 case '0':
5686 case 'S':
5687 case 'P':
5688 case 'R':
5689 continue;
5690
5691 case 'X':
5692 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (*args, int));
5693 continue;
5694
5695 case 'Y':
5696 {
5697 int regno;
5698
5699 regno = va_arg (*args, int);
5700 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
5701 MIPS16_INSERT_OPERAND (REG32R, insn, regno);
5702 }
5703 continue;
5704
5705 case '<':
5706 case '>':
5707 case '4':
5708 case '5':
5709 case 'H':
5710 case 'W':
5711 case 'D':
5712 case 'j':
5713 case '8':
5714 case 'V':
5715 case 'C':
5716 case 'U':
5717 case 'k':
5718 case 'K':
5719 case 'p':
5720 case 'q':
5721 {
5722 offsetT value;
5723
5724 gas_assert (ep != NULL);
5725
5726 if (ep->X_op != O_constant)
5727 *r = (int) BFD_RELOC_UNUSED + c;
5728 else if (calculate_reloc (*r, ep->X_add_number, &value))
5729 {
5730 mips16_immed (NULL, 0, c, *r, value, 0, &insn.insn_opcode);
5731 ep = NULL;
5732 *r = BFD_RELOC_UNUSED;
5733 }
5734 }
5735 continue;
5736
5737 case '6':
5738 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (*args, int));
5739 continue;
5740 }
5741
5742 break;
5743 }
5744
5745 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
5746
5747 append_insn (&insn, ep, r, TRUE);
5748 }
5749
5750 /*
5751 * Sign-extend 32-bit mode constants that have bit 31 set and all
5752 * higher bits unset.
5753 */
5754 static void
5755 normalize_constant_expr (expressionS *ex)
5756 {
5757 if (ex->X_op == O_constant
5758 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
5759 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
5760 - 0x80000000);
5761 }
5762
5763 /*
5764 * Sign-extend 32-bit mode address offsets that have bit 31 set and
5765 * all higher bits unset.
5766 */
5767 static void
5768 normalize_address_expr (expressionS *ex)
5769 {
5770 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
5771 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
5772 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
5773 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
5774 - 0x80000000);
5775 }
5776
5777 /*
5778 * Generate a "jalr" instruction with a relocation hint to the called
5779 * function. This occurs in NewABI PIC code.
5780 */
5781 static void
5782 macro_build_jalr (expressionS *ep, int cprestore)
5783 {
5784 static const bfd_reloc_code_real_type jalr_relocs[2]
5785 = { BFD_RELOC_MIPS_JALR, BFD_RELOC_MICROMIPS_JALR };
5786 bfd_reloc_code_real_type jalr_reloc = jalr_relocs[mips_opts.micromips];
5787 const char *jalr;
5788 char *f = NULL;
5789
5790 if (MIPS_JALR_HINT_P (ep))
5791 {
5792 frag_grow (8);
5793 f = frag_more (0);
5794 }
5795 if (mips_opts.micromips)
5796 {
5797 jalr = ((mips_opts.noreorder && !cprestore) || mips_opts.insn32
5798 ? "jalr" : "jalrs");
5799 if (MIPS_JALR_HINT_P (ep)
5800 || mips_opts.insn32
5801 || (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
5802 macro_build (NULL, jalr, "t,s", RA, PIC_CALL_REG);
5803 else
5804 macro_build (NULL, jalr, "mj", PIC_CALL_REG);
5805 }
5806 else
5807 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
5808 if (MIPS_JALR_HINT_P (ep))
5809 fix_new_exp (frag_now, f - frag_now->fr_literal, 4, ep, FALSE, jalr_reloc);
5810 }
5811
5812 /*
5813 * Generate a "lui" instruction.
5814 */
5815 static void
5816 macro_build_lui (expressionS *ep, int regnum)
5817 {
5818 gas_assert (! mips_opts.mips16);
5819
5820 if (ep->X_op != O_constant)
5821 {
5822 gas_assert (ep->X_op == O_symbol);
5823 /* _gp_disp is a special case, used from s_cpload.
5824 __gnu_local_gp is used if mips_no_shared. */
5825 gas_assert (mips_pic == NO_PIC
5826 || (! HAVE_NEWABI
5827 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
5828 || (! mips_in_shared
5829 && strcmp (S_GET_NAME (ep->X_add_symbol),
5830 "__gnu_local_gp") == 0));
5831 }
5832
5833 macro_build (ep, "lui", LUI_FMT, regnum, BFD_RELOC_HI16_S);
5834 }
5835
5836 /* Generate a sequence of instructions to do a load or store from a constant
5837 offset off of a base register (breg) into/from a target register (treg),
5838 using AT if necessary. */
5839 static void
5840 macro_build_ldst_constoffset (expressionS *ep, const char *op,
5841 int treg, int breg, int dbl)
5842 {
5843 gas_assert (ep->X_op == O_constant);
5844
5845 /* Sign-extending 32-bit constants makes their handling easier. */
5846 if (!dbl)
5847 normalize_constant_expr (ep);
5848
5849 /* Right now, this routine can only handle signed 32-bit constants. */
5850 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
5851 as_warn (_("operand overflow"));
5852
5853 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
5854 {
5855 /* Signed 16-bit offset will fit in the op. Easy! */
5856 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
5857 }
5858 else
5859 {
5860 /* 32-bit offset, need multiple instructions and AT, like:
5861 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
5862 addu $tempreg,$tempreg,$breg
5863 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
5864 to handle the complete offset. */
5865 macro_build_lui (ep, AT);
5866 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
5867 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
5868
5869 if (!mips_opts.at)
5870 as_bad (_("Macro used $at after \".set noat\""));
5871 }
5872 }
5873
5874 /* set_at()
5875 * Generates code to set the $at register to true (one)
5876 * if reg is less than the immediate expression.
5877 */
5878 static void
5879 set_at (int reg, int unsignedp)
5880 {
5881 if (imm_expr.X_op == O_constant
5882 && imm_expr.X_add_number >= -0x8000
5883 && imm_expr.X_add_number < 0x8000)
5884 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
5885 AT, reg, BFD_RELOC_LO16);
5886 else
5887 {
5888 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5889 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
5890 }
5891 }
5892
5893 /* Warn if an expression is not a constant. */
5894
5895 static void
5896 check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
5897 {
5898 if (ex->X_op == O_big)
5899 as_bad (_("unsupported large constant"));
5900 else if (ex->X_op != O_constant)
5901 as_bad (_("Instruction %s requires absolute expression"),
5902 ip->insn_mo->name);
5903
5904 if (HAVE_32BIT_GPRS)
5905 normalize_constant_expr (ex);
5906 }
5907
5908 /* Count the leading zeroes by performing a binary chop. This is a
5909 bulky bit of source, but performance is a LOT better for the
5910 majority of values than a simple loop to count the bits:
5911 for (lcnt = 0; (lcnt < 32); lcnt++)
5912 if ((v) & (1 << (31 - lcnt)))
5913 break;
5914 However it is not code size friendly, and the gain will drop a bit
5915 on certain cached systems.
5916 */
5917 #define COUNT_TOP_ZEROES(v) \
5918 (((v) & ~0xffff) == 0 \
5919 ? ((v) & ~0xff) == 0 \
5920 ? ((v) & ~0xf) == 0 \
5921 ? ((v) & ~0x3) == 0 \
5922 ? ((v) & ~0x1) == 0 \
5923 ? !(v) \
5924 ? 32 \
5925 : 31 \
5926 : 30 \
5927 : ((v) & ~0x7) == 0 \
5928 ? 29 \
5929 : 28 \
5930 : ((v) & ~0x3f) == 0 \
5931 ? ((v) & ~0x1f) == 0 \
5932 ? 27 \
5933 : 26 \
5934 : ((v) & ~0x7f) == 0 \
5935 ? 25 \
5936 : 24 \
5937 : ((v) & ~0xfff) == 0 \
5938 ? ((v) & ~0x3ff) == 0 \
5939 ? ((v) & ~0x1ff) == 0 \
5940 ? 23 \
5941 : 22 \
5942 : ((v) & ~0x7ff) == 0 \
5943 ? 21 \
5944 : 20 \
5945 : ((v) & ~0x3fff) == 0 \
5946 ? ((v) & ~0x1fff) == 0 \
5947 ? 19 \
5948 : 18 \
5949 : ((v) & ~0x7fff) == 0 \
5950 ? 17 \
5951 : 16 \
5952 : ((v) & ~0xffffff) == 0 \
5953 ? ((v) & ~0xfffff) == 0 \
5954 ? ((v) & ~0x3ffff) == 0 \
5955 ? ((v) & ~0x1ffff) == 0 \
5956 ? 15 \
5957 : 14 \
5958 : ((v) & ~0x7ffff) == 0 \
5959 ? 13 \
5960 : 12 \
5961 : ((v) & ~0x3fffff) == 0 \
5962 ? ((v) & ~0x1fffff) == 0 \
5963 ? 11 \
5964 : 10 \
5965 : ((v) & ~0x7fffff) == 0 \
5966 ? 9 \
5967 : 8 \
5968 : ((v) & ~0xfffffff) == 0 \
5969 ? ((v) & ~0x3ffffff) == 0 \
5970 ? ((v) & ~0x1ffffff) == 0 \
5971 ? 7 \
5972 : 6 \
5973 : ((v) & ~0x7ffffff) == 0 \
5974 ? 5 \
5975 : 4 \
5976 : ((v) & ~0x3fffffff) == 0 \
5977 ? ((v) & ~0x1fffffff) == 0 \
5978 ? 3 \
5979 : 2 \
5980 : ((v) & ~0x7fffffff) == 0 \
5981 ? 1 \
5982 : 0)
5983
5984 /* load_register()
5985 * This routine generates the least number of instructions necessary to load
5986 * an absolute expression value into a register.
5987 */
5988 static void
5989 load_register (int reg, expressionS *ep, int dbl)
5990 {
5991 int freg;
5992 expressionS hi32, lo32;
5993
5994 if (ep->X_op != O_big)
5995 {
5996 gas_assert (ep->X_op == O_constant);
5997
5998 /* Sign-extending 32-bit constants makes their handling easier. */
5999 if (!dbl)
6000 normalize_constant_expr (ep);
6001
6002 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
6003 {
6004 /* We can handle 16 bit signed values with an addiu to
6005 $zero. No need to ever use daddiu here, since $zero and
6006 the result are always correct in 32 bit mode. */
6007 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
6008 return;
6009 }
6010 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
6011 {
6012 /* We can handle 16 bit unsigned values with an ori to
6013 $zero. */
6014 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
6015 return;
6016 }
6017 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
6018 {
6019 /* 32 bit values require an lui. */
6020 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
6021 if ((ep->X_add_number & 0xffff) != 0)
6022 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
6023 return;
6024 }
6025 }
6026
6027 /* The value is larger than 32 bits. */
6028
6029 if (!dbl || HAVE_32BIT_GPRS)
6030 {
6031 char value[32];
6032
6033 sprintf_vma (value, ep->X_add_number);
6034 as_bad (_("Number (0x%s) larger than 32 bits"), value);
6035 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
6036 return;
6037 }
6038
6039 if (ep->X_op != O_big)
6040 {
6041 hi32 = *ep;
6042 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
6043 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
6044 hi32.X_add_number &= 0xffffffff;
6045 lo32 = *ep;
6046 lo32.X_add_number &= 0xffffffff;
6047 }
6048 else
6049 {
6050 gas_assert (ep->X_add_number > 2);
6051 if (ep->X_add_number == 3)
6052 generic_bignum[3] = 0;
6053 else if (ep->X_add_number > 4)
6054 as_bad (_("Number larger than 64 bits"));
6055 lo32.X_op = O_constant;
6056 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
6057 hi32.X_op = O_constant;
6058 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
6059 }
6060
6061 if (hi32.X_add_number == 0)
6062 freg = 0;
6063 else
6064 {
6065 int shift, bit;
6066 unsigned long hi, lo;
6067
6068 if (hi32.X_add_number == (offsetT) 0xffffffff)
6069 {
6070 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
6071 {
6072 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
6073 return;
6074 }
6075 if (lo32.X_add_number & 0x80000000)
6076 {
6077 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
6078 if (lo32.X_add_number & 0xffff)
6079 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
6080 return;
6081 }
6082 }
6083
6084 /* Check for 16bit shifted constant. We know that hi32 is
6085 non-zero, so start the mask on the first bit of the hi32
6086 value. */
6087 shift = 17;
6088 do
6089 {
6090 unsigned long himask, lomask;
6091
6092 if (shift < 32)
6093 {
6094 himask = 0xffff >> (32 - shift);
6095 lomask = (0xffff << shift) & 0xffffffff;
6096 }
6097 else
6098 {
6099 himask = 0xffff << (shift - 32);
6100 lomask = 0;
6101 }
6102 if ((hi32.X_add_number & ~(offsetT) himask) == 0
6103 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
6104 {
6105 expressionS tmp;
6106
6107 tmp.X_op = O_constant;
6108 if (shift < 32)
6109 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
6110 | (lo32.X_add_number >> shift));
6111 else
6112 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
6113 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
6114 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", SHFT_FMT,
6115 reg, reg, (shift >= 32) ? shift - 32 : shift);
6116 return;
6117 }
6118 ++shift;
6119 }
6120 while (shift <= (64 - 16));
6121
6122 /* Find the bit number of the lowest one bit, and store the
6123 shifted value in hi/lo. */
6124 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
6125 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
6126 if (lo != 0)
6127 {
6128 bit = 0;
6129 while ((lo & 1) == 0)
6130 {
6131 lo >>= 1;
6132 ++bit;
6133 }
6134 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
6135 hi >>= bit;
6136 }
6137 else
6138 {
6139 bit = 32;
6140 while ((hi & 1) == 0)
6141 {
6142 hi >>= 1;
6143 ++bit;
6144 }
6145 lo = hi;
6146 hi = 0;
6147 }
6148
6149 /* Optimize if the shifted value is a (power of 2) - 1. */
6150 if ((hi == 0 && ((lo + 1) & lo) == 0)
6151 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
6152 {
6153 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
6154 if (shift != 0)
6155 {
6156 expressionS tmp;
6157
6158 /* This instruction will set the register to be all
6159 ones. */
6160 tmp.X_op = O_constant;
6161 tmp.X_add_number = (offsetT) -1;
6162 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
6163 if (bit != 0)
6164 {
6165 bit += shift;
6166 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", SHFT_FMT,
6167 reg, reg, (bit >= 32) ? bit - 32 : bit);
6168 }
6169 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", SHFT_FMT,
6170 reg, reg, (shift >= 32) ? shift - 32 : shift);
6171 return;
6172 }
6173 }
6174
6175 /* Sign extend hi32 before calling load_register, because we can
6176 generally get better code when we load a sign extended value. */
6177 if ((hi32.X_add_number & 0x80000000) != 0)
6178 hi32.X_add_number |= ~(offsetT) 0xffffffff;
6179 load_register (reg, &hi32, 0);
6180 freg = reg;
6181 }
6182 if ((lo32.X_add_number & 0xffff0000) == 0)
6183 {
6184 if (freg != 0)
6185 {
6186 macro_build (NULL, "dsll32", SHFT_FMT, reg, freg, 0);
6187 freg = reg;
6188 }
6189 }
6190 else
6191 {
6192 expressionS mid16;
6193
6194 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
6195 {
6196 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
6197 macro_build (NULL, "dsrl32", SHFT_FMT, reg, reg, 0);
6198 return;
6199 }
6200
6201 if (freg != 0)
6202 {
6203 macro_build (NULL, "dsll", SHFT_FMT, reg, freg, 16);
6204 freg = reg;
6205 }
6206 mid16 = lo32;
6207 mid16.X_add_number >>= 16;
6208 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
6209 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
6210 freg = reg;
6211 }
6212 if ((lo32.X_add_number & 0xffff) != 0)
6213 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
6214 }
6215
6216 static inline void
6217 load_delay_nop (void)
6218 {
6219 if (!gpr_interlocks)
6220 macro_build (NULL, "nop", "");
6221 }
6222
6223 /* Load an address into a register. */
6224
6225 static void
6226 load_address (int reg, expressionS *ep, int *used_at)
6227 {
6228 if (ep->X_op != O_constant
6229 && ep->X_op != O_symbol)
6230 {
6231 as_bad (_("expression too complex"));
6232 ep->X_op = O_constant;
6233 }
6234
6235 if (ep->X_op == O_constant)
6236 {
6237 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
6238 return;
6239 }
6240
6241 if (mips_pic == NO_PIC)
6242 {
6243 /* If this is a reference to a GP relative symbol, we want
6244 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
6245 Otherwise we want
6246 lui $reg,<sym> (BFD_RELOC_HI16_S)
6247 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
6248 If we have an addend, we always use the latter form.
6249
6250 With 64bit address space and a usable $at we want
6251 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6252 lui $at,<sym> (BFD_RELOC_HI16_S)
6253 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
6254 daddiu $at,<sym> (BFD_RELOC_LO16)
6255 dsll32 $reg,0
6256 daddu $reg,$reg,$at
6257
6258 If $at is already in use, we use a path which is suboptimal
6259 on superscalar processors.
6260 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6261 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
6262 dsll $reg,16
6263 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
6264 dsll $reg,16
6265 daddiu $reg,<sym> (BFD_RELOC_LO16)
6266
6267 For GP relative symbols in 64bit address space we can use
6268 the same sequence as in 32bit address space. */
6269 if (HAVE_64BIT_SYMBOLS)
6270 {
6271 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6272 && !nopic_need_relax (ep->X_add_symbol, 1))
6273 {
6274 relax_start (ep->X_add_symbol);
6275 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
6276 mips_gp_register, BFD_RELOC_GPREL16);
6277 relax_switch ();
6278 }
6279
6280 if (*used_at == 0 && mips_opts.at)
6281 {
6282 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
6283 macro_build (ep, "lui", LUI_FMT, AT, BFD_RELOC_HI16_S);
6284 macro_build (ep, "daddiu", "t,r,j", reg, reg,
6285 BFD_RELOC_MIPS_HIGHER);
6286 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
6287 macro_build (NULL, "dsll32", SHFT_FMT, reg, reg, 0);
6288 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
6289 *used_at = 1;
6290 }
6291 else
6292 {
6293 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
6294 macro_build (ep, "daddiu", "t,r,j", reg, reg,
6295 BFD_RELOC_MIPS_HIGHER);
6296 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
6297 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
6298 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
6299 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
6300 }
6301
6302 if (mips_relax.sequence)
6303 relax_end ();
6304 }
6305 else
6306 {
6307 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6308 && !nopic_need_relax (ep->X_add_symbol, 1))
6309 {
6310 relax_start (ep->X_add_symbol);
6311 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
6312 mips_gp_register, BFD_RELOC_GPREL16);
6313 relax_switch ();
6314 }
6315 macro_build_lui (ep, reg);
6316 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
6317 reg, reg, BFD_RELOC_LO16);
6318 if (mips_relax.sequence)
6319 relax_end ();
6320 }
6321 }
6322 else if (!mips_big_got)
6323 {
6324 expressionS ex;
6325
6326 /* If this is a reference to an external symbol, we want
6327 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6328 Otherwise we want
6329 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6330 nop
6331 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
6332 If there is a constant, it must be added in after.
6333
6334 If we have NewABI, we want
6335 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
6336 unless we're referencing a global symbol with a non-zero
6337 offset, in which case cst must be added separately. */
6338 if (HAVE_NEWABI)
6339 {
6340 if (ep->X_add_number)
6341 {
6342 ex.X_add_number = ep->X_add_number;
6343 ep->X_add_number = 0;
6344 relax_start (ep->X_add_symbol);
6345 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6346 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6347 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6348 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6349 ex.X_op = O_constant;
6350 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
6351 reg, reg, BFD_RELOC_LO16);
6352 ep->X_add_number = ex.X_add_number;
6353 relax_switch ();
6354 }
6355 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6356 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6357 if (mips_relax.sequence)
6358 relax_end ();
6359 }
6360 else
6361 {
6362 ex.X_add_number = ep->X_add_number;
6363 ep->X_add_number = 0;
6364 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6365 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6366 load_delay_nop ();
6367 relax_start (ep->X_add_symbol);
6368 relax_switch ();
6369 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6370 BFD_RELOC_LO16);
6371 relax_end ();
6372
6373 if (ex.X_add_number != 0)
6374 {
6375 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6376 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6377 ex.X_op = O_constant;
6378 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
6379 reg, reg, BFD_RELOC_LO16);
6380 }
6381 }
6382 }
6383 else if (mips_big_got)
6384 {
6385 expressionS ex;
6386
6387 /* This is the large GOT case. If this is a reference to an
6388 external symbol, we want
6389 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6390 addu $reg,$reg,$gp
6391 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
6392
6393 Otherwise, for a reference to a local symbol in old ABI, we want
6394 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6395 nop
6396 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
6397 If there is a constant, it must be added in after.
6398
6399 In the NewABI, for local symbols, with or without offsets, we want:
6400 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6401 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
6402 */
6403 if (HAVE_NEWABI)
6404 {
6405 ex.X_add_number = ep->X_add_number;
6406 ep->X_add_number = 0;
6407 relax_start (ep->X_add_symbol);
6408 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
6409 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6410 reg, reg, mips_gp_register);
6411 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
6412 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
6413 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6414 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6415 else if (ex.X_add_number)
6416 {
6417 ex.X_op = O_constant;
6418 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6419 BFD_RELOC_LO16);
6420 }
6421
6422 ep->X_add_number = ex.X_add_number;
6423 relax_switch ();
6424 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6425 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6426 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6427 BFD_RELOC_MIPS_GOT_OFST);
6428 relax_end ();
6429 }
6430 else
6431 {
6432 ex.X_add_number = ep->X_add_number;
6433 ep->X_add_number = 0;
6434 relax_start (ep->X_add_symbol);
6435 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
6436 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6437 reg, reg, mips_gp_register);
6438 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
6439 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
6440 relax_switch ();
6441 if (reg_needs_delay (mips_gp_register))
6442 {
6443 /* We need a nop before loading from $gp. This special
6444 check is required because the lui which starts the main
6445 instruction stream does not refer to $gp, and so will not
6446 insert the nop which may be required. */
6447 macro_build (NULL, "nop", "");
6448 }
6449 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6450 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6451 load_delay_nop ();
6452 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6453 BFD_RELOC_LO16);
6454 relax_end ();
6455
6456 if (ex.X_add_number != 0)
6457 {
6458 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6459 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6460 ex.X_op = O_constant;
6461 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6462 BFD_RELOC_LO16);
6463 }
6464 }
6465 }
6466 else
6467 abort ();
6468
6469 if (!mips_opts.at && *used_at == 1)
6470 as_bad (_("Macro used $at after \".set noat\""));
6471 }
6472
6473 /* Move the contents of register SOURCE into register DEST. */
6474
6475 static void
6476 move_register (int dest, int source)
6477 {
6478 /* Prefer to use a 16-bit microMIPS instruction unless the previous
6479 instruction specifically requires a 32-bit one. */
6480 if (mips_opts.micromips
6481 && !mips_opts.insn32
6482 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
6483 macro_build (NULL, "move", "mp,mj", dest, source);
6484 else
6485 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
6486 dest, source, 0);
6487 }
6488
6489 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
6490 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
6491 The two alternatives are:
6492
6493 Global symbol Local sybmol
6494 ------------- ------------
6495 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
6496 ... ...
6497 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
6498
6499 load_got_offset emits the first instruction and add_got_offset
6500 emits the second for a 16-bit offset or add_got_offset_hilo emits
6501 a sequence to add a 32-bit offset using a scratch register. */
6502
6503 static void
6504 load_got_offset (int dest, expressionS *local)
6505 {
6506 expressionS global;
6507
6508 global = *local;
6509 global.X_add_number = 0;
6510
6511 relax_start (local->X_add_symbol);
6512 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
6513 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6514 relax_switch ();
6515 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
6516 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6517 relax_end ();
6518 }
6519
6520 static void
6521 add_got_offset (int dest, expressionS *local)
6522 {
6523 expressionS global;
6524
6525 global.X_op = O_constant;
6526 global.X_op_symbol = NULL;
6527 global.X_add_symbol = NULL;
6528 global.X_add_number = local->X_add_number;
6529
6530 relax_start (local->X_add_symbol);
6531 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
6532 dest, dest, BFD_RELOC_LO16);
6533 relax_switch ();
6534 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
6535 relax_end ();
6536 }
6537
6538 static void
6539 add_got_offset_hilo (int dest, expressionS *local, int tmp)
6540 {
6541 expressionS global;
6542 int hold_mips_optimize;
6543
6544 global.X_op = O_constant;
6545 global.X_op_symbol = NULL;
6546 global.X_add_symbol = NULL;
6547 global.X_add_number = local->X_add_number;
6548
6549 relax_start (local->X_add_symbol);
6550 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
6551 relax_switch ();
6552 /* Set mips_optimize around the lui instruction to avoid
6553 inserting an unnecessary nop after the lw. */
6554 hold_mips_optimize = mips_optimize;
6555 mips_optimize = 2;
6556 macro_build_lui (&global, tmp);
6557 mips_optimize = hold_mips_optimize;
6558 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
6559 relax_end ();
6560
6561 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
6562 }
6563
6564 /* Emit a sequence of instructions to emulate a branch likely operation.
6565 BR is an ordinary branch corresponding to one to be emulated. BRNEG
6566 is its complementing branch with the original condition negated.
6567 CALL is set if the original branch specified the link operation.
6568 EP, FMT, SREG and TREG specify the usual macro_build() parameters.
6569
6570 Code like this is produced in the noreorder mode:
6571
6572 BRNEG <args>, 1f
6573 nop
6574 b <sym>
6575 delay slot (executed only if branch taken)
6576 1:
6577
6578 or, if CALL is set:
6579
6580 BRNEG <args>, 1f
6581 nop
6582 bal <sym>
6583 delay slot (executed only if branch taken)
6584 1:
6585
6586 In the reorder mode the delay slot would be filled with a nop anyway,
6587 so code produced is simply:
6588
6589 BR <args>, <sym>
6590 nop
6591
6592 This function is used when producing code for the microMIPS ASE that
6593 does not implement branch likely instructions in hardware. */
6594
6595 static void
6596 macro_build_branch_likely (const char *br, const char *brneg,
6597 int call, expressionS *ep, const char *fmt,
6598 unsigned int sreg, unsigned int treg)
6599 {
6600 int noreorder = mips_opts.noreorder;
6601 expressionS expr1;
6602
6603 gas_assert (mips_opts.micromips);
6604 start_noreorder ();
6605 if (noreorder)
6606 {
6607 micromips_label_expr (&expr1);
6608 macro_build (&expr1, brneg, fmt, sreg, treg);
6609 macro_build (NULL, "nop", "");
6610 macro_build (ep, call ? "bal" : "b", "p");
6611
6612 /* Set to true so that append_insn adds a label. */
6613 emit_branch_likely_macro = TRUE;
6614 }
6615 else
6616 {
6617 macro_build (ep, br, fmt, sreg, treg);
6618 macro_build (NULL, "nop", "");
6619 }
6620 end_noreorder ();
6621 }
6622
6623 /* Emit a coprocessor branch-likely macro specified by TYPE, using CC as
6624 the condition code tested. EP specifies the branch target. */
6625
6626 static void
6627 macro_build_branch_ccl (int type, expressionS *ep, unsigned int cc)
6628 {
6629 const int call = 0;
6630 const char *brneg;
6631 const char *br;
6632
6633 switch (type)
6634 {
6635 case M_BC1FL:
6636 br = "bc1f";
6637 brneg = "bc1t";
6638 break;
6639 case M_BC1TL:
6640 br = "bc1t";
6641 brneg = "bc1f";
6642 break;
6643 case M_BC2FL:
6644 br = "bc2f";
6645 brneg = "bc2t";
6646 break;
6647 case M_BC2TL:
6648 br = "bc2t";
6649 brneg = "bc2f";
6650 break;
6651 default:
6652 abort ();
6653 }
6654 macro_build_branch_likely (br, brneg, call, ep, "N,p", cc, ZERO);
6655 }
6656
6657 /* Emit a two-argument branch macro specified by TYPE, using SREG as
6658 the register tested. EP specifies the branch target. */
6659
6660 static void
6661 macro_build_branch_rs (int type, expressionS *ep, unsigned int sreg)
6662 {
6663 const char *brneg = NULL;
6664 const char *br;
6665 int call = 0;
6666
6667 switch (type)
6668 {
6669 case M_BGEZ:
6670 br = "bgez";
6671 break;
6672 case M_BGEZL:
6673 br = mips_opts.micromips ? "bgez" : "bgezl";
6674 brneg = "bltz";
6675 break;
6676 case M_BGEZALL:
6677 gas_assert (mips_opts.micromips);
6678 br = mips_opts.insn32 ? "bgezal" : "bgezals";
6679 brneg = "bltz";
6680 call = 1;
6681 break;
6682 case M_BGTZ:
6683 br = "bgtz";
6684 break;
6685 case M_BGTZL:
6686 br = mips_opts.micromips ? "bgtz" : "bgtzl";
6687 brneg = "blez";
6688 break;
6689 case M_BLEZ:
6690 br = "blez";
6691 break;
6692 case M_BLEZL:
6693 br = mips_opts.micromips ? "blez" : "blezl";
6694 brneg = "bgtz";
6695 break;
6696 case M_BLTZ:
6697 br = "bltz";
6698 break;
6699 case M_BLTZL:
6700 br = mips_opts.micromips ? "bltz" : "bltzl";
6701 brneg = "bgez";
6702 break;
6703 case M_BLTZALL:
6704 gas_assert (mips_opts.micromips);
6705 br = mips_opts.insn32 ? "bltzal" : "bltzals";
6706 brneg = "bgez";
6707 call = 1;
6708 break;
6709 default:
6710 abort ();
6711 }
6712 if (mips_opts.micromips && brneg)
6713 macro_build_branch_likely (br, brneg, call, ep, "s,p", sreg, ZERO);
6714 else
6715 macro_build (ep, br, "s,p", sreg);
6716 }
6717
6718 /* Emit a three-argument branch macro specified by TYPE, using SREG and
6719 TREG as the registers tested. EP specifies the branch target. */
6720
6721 static void
6722 macro_build_branch_rsrt (int type, expressionS *ep,
6723 unsigned int sreg, unsigned int treg)
6724 {
6725 const char *brneg = NULL;
6726 const int call = 0;
6727 const char *br;
6728
6729 switch (type)
6730 {
6731 case M_BEQ:
6732 case M_BEQ_I:
6733 br = "beq";
6734 break;
6735 case M_BEQL:
6736 case M_BEQL_I:
6737 br = mips_opts.micromips ? "beq" : "beql";
6738 brneg = "bne";
6739 break;
6740 case M_BNE:
6741 case M_BNE_I:
6742 br = "bne";
6743 break;
6744 case M_BNEL:
6745 case M_BNEL_I:
6746 br = mips_opts.micromips ? "bne" : "bnel";
6747 brneg = "beq";
6748 break;
6749 default:
6750 abort ();
6751 }
6752 if (mips_opts.micromips && brneg)
6753 macro_build_branch_likely (br, brneg, call, ep, "s,t,p", sreg, treg);
6754 else
6755 macro_build (ep, br, "s,t,p", sreg, treg);
6756 }
6757
6758 /* Return the high part that should be loaded in order to make the low
6759 part of VALUE accessible using an offset of OFFBITS bits. */
6760
6761 static offsetT
6762 offset_high_part (offsetT value, unsigned int offbits)
6763 {
6764 offsetT bias;
6765 addressT low_mask;
6766
6767 if (offbits == 0)
6768 return value;
6769 bias = 1 << (offbits - 1);
6770 low_mask = bias * 2 - 1;
6771 return (value + bias) & ~low_mask;
6772 }
6773
6774 /* Return true if the value stored in offset_expr and offset_reloc
6775 fits into a signed offset of OFFBITS bits. RANGE is the maximum
6776 amount that the caller wants to add without inducing overflow
6777 and ALIGN is the known alignment of the value in bytes. */
6778
6779 static bfd_boolean
6780 small_offset_p (unsigned int range, unsigned int align, unsigned int offbits)
6781 {
6782 if (offbits == 16)
6783 {
6784 /* Accept any relocation operator if overflow isn't a concern. */
6785 if (range < align && *offset_reloc != BFD_RELOC_UNUSED)
6786 return TRUE;
6787
6788 /* These relocations are guaranteed not to overflow in correct links. */
6789 if (*offset_reloc == BFD_RELOC_MIPS_LITERAL
6790 || gprel16_reloc_p (*offset_reloc))
6791 return TRUE;
6792 }
6793 if (offset_expr.X_op == O_constant
6794 && offset_high_part (offset_expr.X_add_number, offbits) == 0
6795 && offset_high_part (offset_expr.X_add_number + range, offbits) == 0)
6796 return TRUE;
6797 return FALSE;
6798 }
6799
6800 /*
6801 * Build macros
6802 * This routine implements the seemingly endless macro or synthesized
6803 * instructions and addressing modes in the mips assembly language. Many
6804 * of these macros are simple and are similar to each other. These could
6805 * probably be handled by some kind of table or grammar approach instead of
6806 * this verbose method. Others are not simple macros but are more like
6807 * optimizing code generation.
6808 * One interesting optimization is when several store macros appear
6809 * consecutively that would load AT with the upper half of the same address.
6810 * The ensuing load upper instructions are ommited. This implies some kind
6811 * of global optimization. We currently only optimize within a single macro.
6812 * For many of the load and store macros if the address is specified as a
6813 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
6814 * first load register 'at' with zero and use it as the base register. The
6815 * mips assembler simply uses register $zero. Just one tiny optimization
6816 * we're missing.
6817 */
6818 static void
6819 macro (struct mips_cl_insn *ip, char *str)
6820 {
6821 unsigned int treg, sreg, dreg, breg;
6822 unsigned int tempreg;
6823 int mask;
6824 int used_at = 0;
6825 expressionS label_expr;
6826 expressionS expr1;
6827 expressionS *ep;
6828 const char *s;
6829 const char *s2;
6830 const char *fmt;
6831 int likely = 0;
6832 int coproc = 0;
6833 int offbits = 16;
6834 int call = 0;
6835 int jals = 0;
6836 int dbl = 0;
6837 int imm = 0;
6838 int ust = 0;
6839 int lp = 0;
6840 bfd_boolean large_offset;
6841 int off;
6842 int hold_mips_optimize;
6843 unsigned int align;
6844
6845 gas_assert (! mips_opts.mips16);
6846
6847 treg = EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
6848 dreg = EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
6849 sreg = breg = EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
6850 mask = ip->insn_mo->mask;
6851
6852 label_expr.X_op = O_constant;
6853 label_expr.X_op_symbol = NULL;
6854 label_expr.X_add_symbol = NULL;
6855 label_expr.X_add_number = 0;
6856
6857 expr1.X_op = O_constant;
6858 expr1.X_op_symbol = NULL;
6859 expr1.X_add_symbol = NULL;
6860 expr1.X_add_number = 1;
6861 align = 1;
6862
6863 switch (mask)
6864 {
6865 case M_DABS:
6866 dbl = 1;
6867 case M_ABS:
6868 /* bgez $a0,1f
6869 move v0,$a0
6870 sub v0,$zero,$a0
6871 1:
6872 */
6873
6874 start_noreorder ();
6875
6876 if (mips_opts.micromips)
6877 micromips_label_expr (&label_expr);
6878 else
6879 label_expr.X_add_number = 8;
6880 macro_build (&label_expr, "bgez", "s,p", sreg);
6881 if (dreg == sreg)
6882 macro_build (NULL, "nop", "");
6883 else
6884 move_register (dreg, sreg);
6885 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
6886 if (mips_opts.micromips)
6887 micromips_add_label ();
6888
6889 end_noreorder ();
6890 break;
6891
6892 case M_ADD_I:
6893 s = "addi";
6894 s2 = "add";
6895 goto do_addi;
6896 case M_ADDU_I:
6897 s = "addiu";
6898 s2 = "addu";
6899 goto do_addi;
6900 case M_DADD_I:
6901 dbl = 1;
6902 s = "daddi";
6903 s2 = "dadd";
6904 if (!mips_opts.micromips)
6905 goto do_addi;
6906 if (imm_expr.X_op == O_constant
6907 && imm_expr.X_add_number >= -0x200
6908 && imm_expr.X_add_number < 0x200)
6909 {
6910 macro_build (NULL, s, "t,r,.", treg, sreg, imm_expr.X_add_number);
6911 break;
6912 }
6913 goto do_addi_i;
6914 case M_DADDU_I:
6915 dbl = 1;
6916 s = "daddiu";
6917 s2 = "daddu";
6918 do_addi:
6919 if (imm_expr.X_op == O_constant
6920 && imm_expr.X_add_number >= -0x8000
6921 && imm_expr.X_add_number < 0x8000)
6922 {
6923 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
6924 break;
6925 }
6926 do_addi_i:
6927 used_at = 1;
6928 load_register (AT, &imm_expr, dbl);
6929 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
6930 break;
6931
6932 case M_AND_I:
6933 s = "andi";
6934 s2 = "and";
6935 goto do_bit;
6936 case M_OR_I:
6937 s = "ori";
6938 s2 = "or";
6939 goto do_bit;
6940 case M_NOR_I:
6941 s = "";
6942 s2 = "nor";
6943 goto do_bit;
6944 case M_XOR_I:
6945 s = "xori";
6946 s2 = "xor";
6947 do_bit:
6948 if (imm_expr.X_op == O_constant
6949 && imm_expr.X_add_number >= 0
6950 && imm_expr.X_add_number < 0x10000)
6951 {
6952 if (mask != M_NOR_I)
6953 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
6954 else
6955 {
6956 macro_build (&imm_expr, "ori", "t,r,i",
6957 treg, sreg, BFD_RELOC_LO16);
6958 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
6959 }
6960 break;
6961 }
6962
6963 used_at = 1;
6964 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
6965 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
6966 break;
6967
6968 case M_BALIGN:
6969 switch (imm_expr.X_add_number)
6970 {
6971 case 0:
6972 macro_build (NULL, "nop", "");
6973 break;
6974 case 2:
6975 macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
6976 break;
6977 case 1:
6978 case 3:
6979 macro_build (NULL, "balign", "t,s,2", treg, sreg,
6980 (int) imm_expr.X_add_number);
6981 break;
6982 default:
6983 as_bad (_("BALIGN immediate not 0, 1, 2 or 3 (%lu)"),
6984 (unsigned long) imm_expr.X_add_number);
6985 break;
6986 }
6987 break;
6988
6989 case M_BC1FL:
6990 case M_BC1TL:
6991 case M_BC2FL:
6992 case M_BC2TL:
6993 gas_assert (mips_opts.micromips);
6994 macro_build_branch_ccl (mask, &offset_expr,
6995 EXTRACT_OPERAND (1, BCC, *ip));
6996 break;
6997
6998 case M_BEQ_I:
6999 case M_BEQL_I:
7000 case M_BNE_I:
7001 case M_BNEL_I:
7002 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7003 treg = 0;
7004 else
7005 {
7006 treg = AT;
7007 used_at = 1;
7008 load_register (treg, &imm_expr, HAVE_64BIT_GPRS);
7009 }
7010 /* Fall through. */
7011 case M_BEQL:
7012 case M_BNEL:
7013 macro_build_branch_rsrt (mask, &offset_expr, sreg, treg);
7014 break;
7015
7016 case M_BGEL:
7017 likely = 1;
7018 case M_BGE:
7019 if (treg == 0)
7020 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, sreg);
7021 else if (sreg == 0)
7022 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, treg);
7023 else
7024 {
7025 used_at = 1;
7026 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
7027 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7028 &offset_expr, AT, ZERO);
7029 }
7030 break;
7031
7032 case M_BGEZL:
7033 case M_BGEZALL:
7034 case M_BGTZL:
7035 case M_BLEZL:
7036 case M_BLTZL:
7037 case M_BLTZALL:
7038 macro_build_branch_rs (mask, &offset_expr, sreg);
7039 break;
7040
7041 case M_BGTL_I:
7042 likely = 1;
7043 case M_BGT_I:
7044 /* Check for > max integer. */
7045 if (imm_expr.X_op == O_constant && imm_expr.X_add_number >= GPR_SMAX)
7046 {
7047 do_false:
7048 /* Result is always false. */
7049 if (! likely)
7050 macro_build (NULL, "nop", "");
7051 else
7052 macro_build_branch_rsrt (M_BNEL, &offset_expr, ZERO, ZERO);
7053 break;
7054 }
7055 if (imm_expr.X_op != O_constant)
7056 as_bad (_("Unsupported large constant"));
7057 ++imm_expr.X_add_number;
7058 /* FALLTHROUGH */
7059 case M_BGE_I:
7060 case M_BGEL_I:
7061 if (mask == M_BGEL_I)
7062 likely = 1;
7063 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7064 {
7065 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ,
7066 &offset_expr, sreg);
7067 break;
7068 }
7069 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7070 {
7071 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ,
7072 &offset_expr, sreg);
7073 break;
7074 }
7075 if (imm_expr.X_op == O_constant && imm_expr.X_add_number <= GPR_SMIN)
7076 {
7077 do_true:
7078 /* result is always true */
7079 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
7080 macro_build (&offset_expr, "b", "p");
7081 break;
7082 }
7083 used_at = 1;
7084 set_at (sreg, 0);
7085 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7086 &offset_expr, AT, ZERO);
7087 break;
7088
7089 case M_BGEUL:
7090 likely = 1;
7091 case M_BGEU:
7092 if (treg == 0)
7093 goto do_true;
7094 else if (sreg == 0)
7095 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7096 &offset_expr, ZERO, treg);
7097 else
7098 {
7099 used_at = 1;
7100 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
7101 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7102 &offset_expr, AT, ZERO);
7103 }
7104 break;
7105
7106 case M_BGTUL_I:
7107 likely = 1;
7108 case M_BGTU_I:
7109 if (sreg == 0
7110 || (HAVE_32BIT_GPRS
7111 && imm_expr.X_op == O_constant
7112 && imm_expr.X_add_number == -1))
7113 goto do_false;
7114 if (imm_expr.X_op != O_constant)
7115 as_bad (_("Unsupported large constant"));
7116 ++imm_expr.X_add_number;
7117 /* FALLTHROUGH */
7118 case M_BGEU_I:
7119 case M_BGEUL_I:
7120 if (mask == M_BGEUL_I)
7121 likely = 1;
7122 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7123 goto do_true;
7124 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7125 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7126 &offset_expr, sreg, ZERO);
7127 else
7128 {
7129 used_at = 1;
7130 set_at (sreg, 1);
7131 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7132 &offset_expr, AT, ZERO);
7133 }
7134 break;
7135
7136 case M_BGTL:
7137 likely = 1;
7138 case M_BGT:
7139 if (treg == 0)
7140 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, sreg);
7141 else if (sreg == 0)
7142 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, treg);
7143 else
7144 {
7145 used_at = 1;
7146 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
7147 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7148 &offset_expr, AT, ZERO);
7149 }
7150 break;
7151
7152 case M_BGTUL:
7153 likely = 1;
7154 case M_BGTU:
7155 if (treg == 0)
7156 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7157 &offset_expr, sreg, ZERO);
7158 else if (sreg == 0)
7159 goto do_false;
7160 else
7161 {
7162 used_at = 1;
7163 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
7164 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7165 &offset_expr, AT, ZERO);
7166 }
7167 break;
7168
7169 case M_BLEL:
7170 likely = 1;
7171 case M_BLE:
7172 if (treg == 0)
7173 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
7174 else if (sreg == 0)
7175 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, treg);
7176 else
7177 {
7178 used_at = 1;
7179 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
7180 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7181 &offset_expr, AT, ZERO);
7182 }
7183 break;
7184
7185 case M_BLEL_I:
7186 likely = 1;
7187 case M_BLE_I:
7188 if (imm_expr.X_op == O_constant && imm_expr.X_add_number >= GPR_SMAX)
7189 goto do_true;
7190 if (imm_expr.X_op != O_constant)
7191 as_bad (_("Unsupported large constant"));
7192 ++imm_expr.X_add_number;
7193 /* FALLTHROUGH */
7194 case M_BLT_I:
7195 case M_BLTL_I:
7196 if (mask == M_BLTL_I)
7197 likely = 1;
7198 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7199 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
7200 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7201 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
7202 else
7203 {
7204 used_at = 1;
7205 set_at (sreg, 0);
7206 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7207 &offset_expr, AT, ZERO);
7208 }
7209 break;
7210
7211 case M_BLEUL:
7212 likely = 1;
7213 case M_BLEU:
7214 if (treg == 0)
7215 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7216 &offset_expr, sreg, ZERO);
7217 else if (sreg == 0)
7218 goto do_true;
7219 else
7220 {
7221 used_at = 1;
7222 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
7223 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7224 &offset_expr, AT, ZERO);
7225 }
7226 break;
7227
7228 case M_BLEUL_I:
7229 likely = 1;
7230 case M_BLEU_I:
7231 if (sreg == 0
7232 || (HAVE_32BIT_GPRS
7233 && imm_expr.X_op == O_constant
7234 && imm_expr.X_add_number == -1))
7235 goto do_true;
7236 if (imm_expr.X_op != O_constant)
7237 as_bad (_("Unsupported large constant"));
7238 ++imm_expr.X_add_number;
7239 /* FALLTHROUGH */
7240 case M_BLTU_I:
7241 case M_BLTUL_I:
7242 if (mask == M_BLTUL_I)
7243 likely = 1;
7244 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7245 goto do_false;
7246 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7247 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7248 &offset_expr, sreg, ZERO);
7249 else
7250 {
7251 used_at = 1;
7252 set_at (sreg, 1);
7253 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7254 &offset_expr, AT, ZERO);
7255 }
7256 break;
7257
7258 case M_BLTL:
7259 likely = 1;
7260 case M_BLT:
7261 if (treg == 0)
7262 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
7263 else if (sreg == 0)
7264 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, treg);
7265 else
7266 {
7267 used_at = 1;
7268 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
7269 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7270 &offset_expr, AT, ZERO);
7271 }
7272 break;
7273
7274 case M_BLTUL:
7275 likely = 1;
7276 case M_BLTU:
7277 if (treg == 0)
7278 goto do_false;
7279 else if (sreg == 0)
7280 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7281 &offset_expr, ZERO, treg);
7282 else
7283 {
7284 used_at = 1;
7285 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
7286 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7287 &offset_expr, AT, ZERO);
7288 }
7289 break;
7290
7291 case M_DEXT:
7292 {
7293 /* Use unsigned arithmetic. */
7294 addressT pos;
7295 addressT size;
7296
7297 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
7298 {
7299 as_bad (_("Unsupported large constant"));
7300 pos = size = 1;
7301 }
7302 else
7303 {
7304 pos = imm_expr.X_add_number;
7305 size = imm2_expr.X_add_number;
7306 }
7307
7308 if (pos > 63)
7309 {
7310 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
7311 pos = 1;
7312 }
7313 if (size == 0 || size > 64 || (pos + size - 1) > 63)
7314 {
7315 as_bad (_("Improper extract size (%lu, position %lu)"),
7316 (unsigned long) size, (unsigned long) pos);
7317 size = 1;
7318 }
7319
7320 if (size <= 32 && pos < 32)
7321 {
7322 s = "dext";
7323 fmt = "t,r,+A,+C";
7324 }
7325 else if (size <= 32)
7326 {
7327 s = "dextu";
7328 fmt = "t,r,+E,+H";
7329 }
7330 else
7331 {
7332 s = "dextm";
7333 fmt = "t,r,+A,+G";
7334 }
7335 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
7336 (int) (size - 1));
7337 }
7338 break;
7339
7340 case M_DINS:
7341 {
7342 /* Use unsigned arithmetic. */
7343 addressT pos;
7344 addressT size;
7345
7346 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
7347 {
7348 as_bad (_("Unsupported large constant"));
7349 pos = size = 1;
7350 }
7351 else
7352 {
7353 pos = imm_expr.X_add_number;
7354 size = imm2_expr.X_add_number;
7355 }
7356
7357 if (pos > 63)
7358 {
7359 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
7360 pos = 1;
7361 }
7362 if (size == 0 || size > 64 || (pos + size - 1) > 63)
7363 {
7364 as_bad (_("Improper insert size (%lu, position %lu)"),
7365 (unsigned long) size, (unsigned long) pos);
7366 size = 1;
7367 }
7368
7369 if (pos < 32 && (pos + size - 1) < 32)
7370 {
7371 s = "dins";
7372 fmt = "t,r,+A,+B";
7373 }
7374 else if (pos >= 32)
7375 {
7376 s = "dinsu";
7377 fmt = "t,r,+E,+F";
7378 }
7379 else
7380 {
7381 s = "dinsm";
7382 fmt = "t,r,+A,+F";
7383 }
7384 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
7385 (int) (pos + size - 1));
7386 }
7387 break;
7388
7389 case M_DDIV_3:
7390 dbl = 1;
7391 case M_DIV_3:
7392 s = "mflo";
7393 goto do_div3;
7394 case M_DREM_3:
7395 dbl = 1;
7396 case M_REM_3:
7397 s = "mfhi";
7398 do_div3:
7399 if (treg == 0)
7400 {
7401 as_warn (_("Divide by zero."));
7402 if (mips_trap)
7403 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
7404 else
7405 macro_build (NULL, "break", BRK_FMT, 7);
7406 break;
7407 }
7408
7409 start_noreorder ();
7410 if (mips_trap)
7411 {
7412 macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
7413 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
7414 }
7415 else
7416 {
7417 if (mips_opts.micromips)
7418 micromips_label_expr (&label_expr);
7419 else
7420 label_expr.X_add_number = 8;
7421 macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
7422 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
7423 macro_build (NULL, "break", BRK_FMT, 7);
7424 if (mips_opts.micromips)
7425 micromips_add_label ();
7426 }
7427 expr1.X_add_number = -1;
7428 used_at = 1;
7429 load_register (AT, &expr1, dbl);
7430 if (mips_opts.micromips)
7431 micromips_label_expr (&label_expr);
7432 else
7433 label_expr.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
7434 macro_build (&label_expr, "bne", "s,t,p", treg, AT);
7435 if (dbl)
7436 {
7437 expr1.X_add_number = 1;
7438 load_register (AT, &expr1, dbl);
7439 macro_build (NULL, "dsll32", SHFT_FMT, AT, AT, 31);
7440 }
7441 else
7442 {
7443 expr1.X_add_number = 0x80000000;
7444 macro_build (&expr1, "lui", LUI_FMT, AT, BFD_RELOC_HI16);
7445 }
7446 if (mips_trap)
7447 {
7448 macro_build (NULL, "teq", TRAP_FMT, sreg, AT, 6);
7449 /* We want to close the noreorder block as soon as possible, so
7450 that later insns are available for delay slot filling. */
7451 end_noreorder ();
7452 }
7453 else
7454 {
7455 if (mips_opts.micromips)
7456 micromips_label_expr (&label_expr);
7457 else
7458 label_expr.X_add_number = 8;
7459 macro_build (&label_expr, "bne", "s,t,p", sreg, AT);
7460 macro_build (NULL, "nop", "");
7461
7462 /* We want to close the noreorder block as soon as possible, so
7463 that later insns are available for delay slot filling. */
7464 end_noreorder ();
7465
7466 macro_build (NULL, "break", BRK_FMT, 6);
7467 }
7468 if (mips_opts.micromips)
7469 micromips_add_label ();
7470 macro_build (NULL, s, MFHL_FMT, dreg);
7471 break;
7472
7473 case M_DIV_3I:
7474 s = "div";
7475 s2 = "mflo";
7476 goto do_divi;
7477 case M_DIVU_3I:
7478 s = "divu";
7479 s2 = "mflo";
7480 goto do_divi;
7481 case M_REM_3I:
7482 s = "div";
7483 s2 = "mfhi";
7484 goto do_divi;
7485 case M_REMU_3I:
7486 s = "divu";
7487 s2 = "mfhi";
7488 goto do_divi;
7489 case M_DDIV_3I:
7490 dbl = 1;
7491 s = "ddiv";
7492 s2 = "mflo";
7493 goto do_divi;
7494 case M_DDIVU_3I:
7495 dbl = 1;
7496 s = "ddivu";
7497 s2 = "mflo";
7498 goto do_divi;
7499 case M_DREM_3I:
7500 dbl = 1;
7501 s = "ddiv";
7502 s2 = "mfhi";
7503 goto do_divi;
7504 case M_DREMU_3I:
7505 dbl = 1;
7506 s = "ddivu";
7507 s2 = "mfhi";
7508 do_divi:
7509 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7510 {
7511 as_warn (_("Divide by zero."));
7512 if (mips_trap)
7513 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
7514 else
7515 macro_build (NULL, "break", BRK_FMT, 7);
7516 break;
7517 }
7518 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7519 {
7520 if (strcmp (s2, "mflo") == 0)
7521 move_register (dreg, sreg);
7522 else
7523 move_register (dreg, ZERO);
7524 break;
7525 }
7526 if (imm_expr.X_op == O_constant
7527 && imm_expr.X_add_number == -1
7528 && s[strlen (s) - 1] != 'u')
7529 {
7530 if (strcmp (s2, "mflo") == 0)
7531 {
7532 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
7533 }
7534 else
7535 move_register (dreg, ZERO);
7536 break;
7537 }
7538
7539 used_at = 1;
7540 load_register (AT, &imm_expr, dbl);
7541 macro_build (NULL, s, "z,s,t", sreg, AT);
7542 macro_build (NULL, s2, MFHL_FMT, dreg);
7543 break;
7544
7545 case M_DIVU_3:
7546 s = "divu";
7547 s2 = "mflo";
7548 goto do_divu3;
7549 case M_REMU_3:
7550 s = "divu";
7551 s2 = "mfhi";
7552 goto do_divu3;
7553 case M_DDIVU_3:
7554 s = "ddivu";
7555 s2 = "mflo";
7556 goto do_divu3;
7557 case M_DREMU_3:
7558 s = "ddivu";
7559 s2 = "mfhi";
7560 do_divu3:
7561 start_noreorder ();
7562 if (mips_trap)
7563 {
7564 macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
7565 macro_build (NULL, s, "z,s,t", sreg, treg);
7566 /* We want to close the noreorder block as soon as possible, so
7567 that later insns are available for delay slot filling. */
7568 end_noreorder ();
7569 }
7570 else
7571 {
7572 if (mips_opts.micromips)
7573 micromips_label_expr (&label_expr);
7574 else
7575 label_expr.X_add_number = 8;
7576 macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
7577 macro_build (NULL, s, "z,s,t", sreg, treg);
7578
7579 /* We want to close the noreorder block as soon as possible, so
7580 that later insns are available for delay slot filling. */
7581 end_noreorder ();
7582 macro_build (NULL, "break", BRK_FMT, 7);
7583 if (mips_opts.micromips)
7584 micromips_add_label ();
7585 }
7586 macro_build (NULL, s2, MFHL_FMT, dreg);
7587 break;
7588
7589 case M_DLCA_AB:
7590 dbl = 1;
7591 case M_LCA_AB:
7592 call = 1;
7593 goto do_la;
7594 case M_DLA_AB:
7595 dbl = 1;
7596 case M_LA_AB:
7597 do_la:
7598 /* Load the address of a symbol into a register. If breg is not
7599 zero, we then add a base register to it. */
7600
7601 if (dbl && HAVE_32BIT_GPRS)
7602 as_warn (_("dla used to load 32-bit register"));
7603
7604 if (!dbl && HAVE_64BIT_OBJECTS)
7605 as_warn (_("la used to load 64-bit address"));
7606
7607 if (small_offset_p (0, align, 16))
7608 {
7609 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", treg, breg,
7610 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2]);
7611 break;
7612 }
7613
7614 if (mips_opts.at && (treg == breg))
7615 {
7616 tempreg = AT;
7617 used_at = 1;
7618 }
7619 else
7620 {
7621 tempreg = treg;
7622 }
7623
7624 if (offset_expr.X_op != O_symbol
7625 && offset_expr.X_op != O_constant)
7626 {
7627 as_bad (_("Expression too complex"));
7628 offset_expr.X_op = O_constant;
7629 }
7630
7631 if (offset_expr.X_op == O_constant)
7632 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
7633 else if (mips_pic == NO_PIC)
7634 {
7635 /* If this is a reference to a GP relative symbol, we want
7636 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
7637 Otherwise we want
7638 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
7639 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7640 If we have a constant, we need two instructions anyhow,
7641 so we may as well always use the latter form.
7642
7643 With 64bit address space and a usable $at we want
7644 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
7645 lui $at,<sym> (BFD_RELOC_HI16_S)
7646 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
7647 daddiu $at,<sym> (BFD_RELOC_LO16)
7648 dsll32 $tempreg,0
7649 daddu $tempreg,$tempreg,$at
7650
7651 If $at is already in use, we use a path which is suboptimal
7652 on superscalar processors.
7653 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
7654 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
7655 dsll $tempreg,16
7656 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
7657 dsll $tempreg,16
7658 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
7659
7660 For GP relative symbols in 64bit address space we can use
7661 the same sequence as in 32bit address space. */
7662 if (HAVE_64BIT_SYMBOLS)
7663 {
7664 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7665 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7666 {
7667 relax_start (offset_expr.X_add_symbol);
7668 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7669 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
7670 relax_switch ();
7671 }
7672
7673 if (used_at == 0 && mips_opts.at)
7674 {
7675 macro_build (&offset_expr, "lui", LUI_FMT,
7676 tempreg, BFD_RELOC_MIPS_HIGHEST);
7677 macro_build (&offset_expr, "lui", LUI_FMT,
7678 AT, BFD_RELOC_HI16_S);
7679 macro_build (&offset_expr, "daddiu", "t,r,j",
7680 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
7681 macro_build (&offset_expr, "daddiu", "t,r,j",
7682 AT, AT, BFD_RELOC_LO16);
7683 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
7684 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
7685 used_at = 1;
7686 }
7687 else
7688 {
7689 macro_build (&offset_expr, "lui", LUI_FMT,
7690 tempreg, BFD_RELOC_MIPS_HIGHEST);
7691 macro_build (&offset_expr, "daddiu", "t,r,j",
7692 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
7693 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
7694 macro_build (&offset_expr, "daddiu", "t,r,j",
7695 tempreg, tempreg, BFD_RELOC_HI16_S);
7696 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
7697 macro_build (&offset_expr, "daddiu", "t,r,j",
7698 tempreg, tempreg, BFD_RELOC_LO16);
7699 }
7700
7701 if (mips_relax.sequence)
7702 relax_end ();
7703 }
7704 else
7705 {
7706 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7707 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7708 {
7709 relax_start (offset_expr.X_add_symbol);
7710 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7711 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
7712 relax_switch ();
7713 }
7714 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
7715 as_bad (_("Offset too large"));
7716 macro_build_lui (&offset_expr, tempreg);
7717 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7718 tempreg, tempreg, BFD_RELOC_LO16);
7719 if (mips_relax.sequence)
7720 relax_end ();
7721 }
7722 }
7723 else if (!mips_big_got && !HAVE_NEWABI)
7724 {
7725 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
7726
7727 /* If this is a reference to an external symbol, and there
7728 is no constant, we want
7729 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7730 or for lca or if tempreg is PIC_CALL_REG
7731 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
7732 For a local symbol, we want
7733 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7734 nop
7735 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7736
7737 If we have a small constant, and this is a reference to
7738 an external symbol, we want
7739 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7740 nop
7741 addiu $tempreg,$tempreg,<constant>
7742 For a local symbol, we want the same instruction
7743 sequence, but we output a BFD_RELOC_LO16 reloc on the
7744 addiu instruction.
7745
7746 If we have a large constant, and this is a reference to
7747 an external symbol, we want
7748 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7749 lui $at,<hiconstant>
7750 addiu $at,$at,<loconstant>
7751 addu $tempreg,$tempreg,$at
7752 For a local symbol, we want the same instruction
7753 sequence, but we output a BFD_RELOC_LO16 reloc on the
7754 addiu instruction.
7755 */
7756
7757 if (offset_expr.X_add_number == 0)
7758 {
7759 if (mips_pic == SVR4_PIC
7760 && breg == 0
7761 && (call || tempreg == PIC_CALL_REG))
7762 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
7763
7764 relax_start (offset_expr.X_add_symbol);
7765 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7766 lw_reloc_type, mips_gp_register);
7767 if (breg != 0)
7768 {
7769 /* We're going to put in an addu instruction using
7770 tempreg, so we may as well insert the nop right
7771 now. */
7772 load_delay_nop ();
7773 }
7774 relax_switch ();
7775 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7776 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
7777 load_delay_nop ();
7778 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7779 tempreg, tempreg, BFD_RELOC_LO16);
7780 relax_end ();
7781 /* FIXME: If breg == 0, and the next instruction uses
7782 $tempreg, then if this variant case is used an extra
7783 nop will be generated. */
7784 }
7785 else if (offset_expr.X_add_number >= -0x8000
7786 && offset_expr.X_add_number < 0x8000)
7787 {
7788 load_got_offset (tempreg, &offset_expr);
7789 load_delay_nop ();
7790 add_got_offset (tempreg, &offset_expr);
7791 }
7792 else
7793 {
7794 expr1.X_add_number = offset_expr.X_add_number;
7795 offset_expr.X_add_number =
7796 SEXT_16BIT (offset_expr.X_add_number);
7797 load_got_offset (tempreg, &offset_expr);
7798 offset_expr.X_add_number = expr1.X_add_number;
7799 /* If we are going to add in a base register, and the
7800 target register and the base register are the same,
7801 then we are using AT as a temporary register. Since
7802 we want to load the constant into AT, we add our
7803 current AT (from the global offset table) and the
7804 register into the register now, and pretend we were
7805 not using a base register. */
7806 if (breg == treg)
7807 {
7808 load_delay_nop ();
7809 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7810 treg, AT, breg);
7811 breg = 0;
7812 tempreg = treg;
7813 }
7814 add_got_offset_hilo (tempreg, &offset_expr, AT);
7815 used_at = 1;
7816 }
7817 }
7818 else if (!mips_big_got && HAVE_NEWABI)
7819 {
7820 int add_breg_early = 0;
7821
7822 /* If this is a reference to an external, and there is no
7823 constant, or local symbol (*), with or without a
7824 constant, we want
7825 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7826 or for lca or if tempreg is PIC_CALL_REG
7827 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
7828
7829 If we have a small constant, and this is a reference to
7830 an external symbol, we want
7831 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7832 addiu $tempreg,$tempreg,<constant>
7833
7834 If we have a large constant, and this is a reference to
7835 an external symbol, we want
7836 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7837 lui $at,<hiconstant>
7838 addiu $at,$at,<loconstant>
7839 addu $tempreg,$tempreg,$at
7840
7841 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
7842 local symbols, even though it introduces an additional
7843 instruction. */
7844
7845 if (offset_expr.X_add_number)
7846 {
7847 expr1.X_add_number = offset_expr.X_add_number;
7848 offset_expr.X_add_number = 0;
7849
7850 relax_start (offset_expr.X_add_symbol);
7851 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7852 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7853
7854 if (expr1.X_add_number >= -0x8000
7855 && expr1.X_add_number < 0x8000)
7856 {
7857 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
7858 tempreg, tempreg, BFD_RELOC_LO16);
7859 }
7860 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
7861 {
7862 /* If we are going to add in a base register, and the
7863 target register and the base register are the same,
7864 then we are using AT as a temporary register. Since
7865 we want to load the constant into AT, we add our
7866 current AT (from the global offset table) and the
7867 register into the register now, and pretend we were
7868 not using a base register. */
7869 if (breg != treg)
7870 dreg = tempreg;
7871 else
7872 {
7873 gas_assert (tempreg == AT);
7874 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7875 treg, AT, breg);
7876 dreg = treg;
7877 add_breg_early = 1;
7878 }
7879
7880 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
7881 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7882 dreg, dreg, AT);
7883
7884 used_at = 1;
7885 }
7886 else
7887 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
7888
7889 relax_switch ();
7890 offset_expr.X_add_number = expr1.X_add_number;
7891
7892 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7893 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7894 if (add_breg_early)
7895 {
7896 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7897 treg, tempreg, breg);
7898 breg = 0;
7899 tempreg = treg;
7900 }
7901 relax_end ();
7902 }
7903 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
7904 {
7905 relax_start (offset_expr.X_add_symbol);
7906 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7907 BFD_RELOC_MIPS_CALL16, mips_gp_register);
7908 relax_switch ();
7909 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7910 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7911 relax_end ();
7912 }
7913 else
7914 {
7915 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7916 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7917 }
7918 }
7919 else if (mips_big_got && !HAVE_NEWABI)
7920 {
7921 int gpdelay;
7922 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
7923 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
7924 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
7925
7926 /* This is the large GOT case. If this is a reference to an
7927 external symbol, and there is no constant, we want
7928 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7929 addu $tempreg,$tempreg,$gp
7930 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7931 or for lca or if tempreg is PIC_CALL_REG
7932 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
7933 addu $tempreg,$tempreg,$gp
7934 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
7935 For a local symbol, we want
7936 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7937 nop
7938 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7939
7940 If we have a small constant, and this is a reference to
7941 an external symbol, we want
7942 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7943 addu $tempreg,$tempreg,$gp
7944 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7945 nop
7946 addiu $tempreg,$tempreg,<constant>
7947 For a local symbol, we want
7948 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7949 nop
7950 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
7951
7952 If we have a large constant, and this is a reference to
7953 an external symbol, we want
7954 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7955 addu $tempreg,$tempreg,$gp
7956 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7957 lui $at,<hiconstant>
7958 addiu $at,$at,<loconstant>
7959 addu $tempreg,$tempreg,$at
7960 For a local symbol, we want
7961 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7962 lui $at,<hiconstant>
7963 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
7964 addu $tempreg,$tempreg,$at
7965 */
7966
7967 expr1.X_add_number = offset_expr.X_add_number;
7968 offset_expr.X_add_number = 0;
7969 relax_start (offset_expr.X_add_symbol);
7970 gpdelay = reg_needs_delay (mips_gp_register);
7971 if (expr1.X_add_number == 0 && breg == 0
7972 && (call || tempreg == PIC_CALL_REG))
7973 {
7974 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
7975 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
7976 }
7977 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
7978 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7979 tempreg, tempreg, mips_gp_register);
7980 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7981 tempreg, lw_reloc_type, tempreg);
7982 if (expr1.X_add_number == 0)
7983 {
7984 if (breg != 0)
7985 {
7986 /* We're going to put in an addu instruction using
7987 tempreg, so we may as well insert the nop right
7988 now. */
7989 load_delay_nop ();
7990 }
7991 }
7992 else if (expr1.X_add_number >= -0x8000
7993 && expr1.X_add_number < 0x8000)
7994 {
7995 load_delay_nop ();
7996 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
7997 tempreg, tempreg, BFD_RELOC_LO16);
7998 }
7999 else
8000 {
8001 /* If we are going to add in a base register, and the
8002 target register and the base register are the same,
8003 then we are using AT as a temporary register. Since
8004 we want to load the constant into AT, we add our
8005 current AT (from the global offset table) and the
8006 register into the register now, and pretend we were
8007 not using a base register. */
8008 if (breg != treg)
8009 dreg = tempreg;
8010 else
8011 {
8012 gas_assert (tempreg == AT);
8013 load_delay_nop ();
8014 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8015 treg, AT, breg);
8016 dreg = treg;
8017 }
8018
8019 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
8020 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
8021
8022 used_at = 1;
8023 }
8024 offset_expr.X_add_number = SEXT_16BIT (expr1.X_add_number);
8025 relax_switch ();
8026
8027 if (gpdelay)
8028 {
8029 /* This is needed because this instruction uses $gp, but
8030 the first instruction on the main stream does not. */
8031 macro_build (NULL, "nop", "");
8032 }
8033
8034 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8035 local_reloc_type, mips_gp_register);
8036 if (expr1.X_add_number >= -0x8000
8037 && expr1.X_add_number < 0x8000)
8038 {
8039 load_delay_nop ();
8040 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8041 tempreg, tempreg, BFD_RELOC_LO16);
8042 /* FIXME: If add_number is 0, and there was no base
8043 register, the external symbol case ended with a load,
8044 so if the symbol turns out to not be external, and
8045 the next instruction uses tempreg, an unnecessary nop
8046 will be inserted. */
8047 }
8048 else
8049 {
8050 if (breg == treg)
8051 {
8052 /* We must add in the base register now, as in the
8053 external symbol case. */
8054 gas_assert (tempreg == AT);
8055 load_delay_nop ();
8056 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8057 treg, AT, breg);
8058 tempreg = treg;
8059 /* We set breg to 0 because we have arranged to add
8060 it in in both cases. */
8061 breg = 0;
8062 }
8063
8064 macro_build_lui (&expr1, AT);
8065 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8066 AT, AT, BFD_RELOC_LO16);
8067 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8068 tempreg, tempreg, AT);
8069 used_at = 1;
8070 }
8071 relax_end ();
8072 }
8073 else if (mips_big_got && HAVE_NEWABI)
8074 {
8075 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
8076 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
8077 int add_breg_early = 0;
8078
8079 /* This is the large GOT case. If this is a reference to an
8080 external symbol, and there is no constant, we want
8081 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8082 add $tempreg,$tempreg,$gp
8083 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8084 or for lca or if tempreg is PIC_CALL_REG
8085 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
8086 add $tempreg,$tempreg,$gp
8087 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
8088
8089 If we have a small constant, and this is a reference to
8090 an external symbol, we want
8091 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8092 add $tempreg,$tempreg,$gp
8093 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8094 addi $tempreg,$tempreg,<constant>
8095
8096 If we have a large constant, and this is a reference to
8097 an external symbol, we want
8098 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8099 addu $tempreg,$tempreg,$gp
8100 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8101 lui $at,<hiconstant>
8102 addi $at,$at,<loconstant>
8103 add $tempreg,$tempreg,$at
8104
8105 If we have NewABI, and we know it's a local symbol, we want
8106 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
8107 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
8108 otherwise we have to resort to GOT_HI16/GOT_LO16. */
8109
8110 relax_start (offset_expr.X_add_symbol);
8111
8112 expr1.X_add_number = offset_expr.X_add_number;
8113 offset_expr.X_add_number = 0;
8114
8115 if (expr1.X_add_number == 0 && breg == 0
8116 && (call || tempreg == PIC_CALL_REG))
8117 {
8118 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
8119 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
8120 }
8121 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
8122 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8123 tempreg, tempreg, mips_gp_register);
8124 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8125 tempreg, lw_reloc_type, tempreg);
8126
8127 if (expr1.X_add_number == 0)
8128 ;
8129 else if (expr1.X_add_number >= -0x8000
8130 && expr1.X_add_number < 0x8000)
8131 {
8132 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
8133 tempreg, tempreg, BFD_RELOC_LO16);
8134 }
8135 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
8136 {
8137 /* If we are going to add in a base register, and the
8138 target register and the base register are the same,
8139 then we are using AT as a temporary register. Since
8140 we want to load the constant into AT, we add our
8141 current AT (from the global offset table) and the
8142 register into the register now, and pretend we were
8143 not using a base register. */
8144 if (breg != treg)
8145 dreg = tempreg;
8146 else
8147 {
8148 gas_assert (tempreg == AT);
8149 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8150 treg, AT, breg);
8151 dreg = treg;
8152 add_breg_early = 1;
8153 }
8154
8155 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
8156 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
8157
8158 used_at = 1;
8159 }
8160 else
8161 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
8162
8163 relax_switch ();
8164 offset_expr.X_add_number = expr1.X_add_number;
8165 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8166 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
8167 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
8168 tempreg, BFD_RELOC_MIPS_GOT_OFST);
8169 if (add_breg_early)
8170 {
8171 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8172 treg, tempreg, breg);
8173 breg = 0;
8174 tempreg = treg;
8175 }
8176 relax_end ();
8177 }
8178 else
8179 abort ();
8180
8181 if (breg != 0)
8182 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
8183 break;
8184
8185 case M_MSGSND:
8186 gas_assert (!mips_opts.micromips);
8187 {
8188 unsigned long temp = (treg << 16) | (0x01);
8189 macro_build (NULL, "c2", "C", temp);
8190 }
8191 break;
8192
8193 case M_MSGLD:
8194 gas_assert (!mips_opts.micromips);
8195 {
8196 unsigned long temp = (0x02);
8197 macro_build (NULL, "c2", "C", temp);
8198 }
8199 break;
8200
8201 case M_MSGLD_T:
8202 gas_assert (!mips_opts.micromips);
8203 {
8204 unsigned long temp = (treg << 16) | (0x02);
8205 macro_build (NULL, "c2", "C", temp);
8206 }
8207 break;
8208
8209 case M_MSGWAIT:
8210 gas_assert (!mips_opts.micromips);
8211 macro_build (NULL, "c2", "C", 3);
8212 break;
8213
8214 case M_MSGWAIT_T:
8215 gas_assert (!mips_opts.micromips);
8216 {
8217 unsigned long temp = (treg << 16) | 0x03;
8218 macro_build (NULL, "c2", "C", temp);
8219 }
8220 break;
8221
8222 case M_J_A:
8223 /* The j instruction may not be used in PIC code, since it
8224 requires an absolute address. We convert it to a b
8225 instruction. */
8226 if (mips_pic == NO_PIC)
8227 macro_build (&offset_expr, "j", "a");
8228 else
8229 macro_build (&offset_expr, "b", "p");
8230 break;
8231
8232 /* The jal instructions must be handled as macros because when
8233 generating PIC code they expand to multi-instruction
8234 sequences. Normally they are simple instructions. */
8235 case M_JALS_1:
8236 dreg = RA;
8237 /* Fall through. */
8238 case M_JALS_2:
8239 gas_assert (mips_opts.micromips);
8240 if (mips_opts.insn32)
8241 {
8242 as_bad (_("Opcode not supported in the `insn32' mode `%s'"), str);
8243 break;
8244 }
8245 jals = 1;
8246 goto jal;
8247 case M_JAL_1:
8248 dreg = RA;
8249 /* Fall through. */
8250 case M_JAL_2:
8251 jal:
8252 if (mips_pic == NO_PIC)
8253 {
8254 s = jals ? "jalrs" : "jalr";
8255 if (mips_opts.micromips
8256 && !mips_opts.insn32
8257 && dreg == RA
8258 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
8259 macro_build (NULL, s, "mj", sreg);
8260 else
8261 macro_build (NULL, s, JALR_FMT, dreg, sreg);
8262 }
8263 else
8264 {
8265 int cprestore = (mips_pic == SVR4_PIC && !HAVE_NEWABI
8266 && mips_cprestore_offset >= 0);
8267
8268 if (sreg != PIC_CALL_REG)
8269 as_warn (_("MIPS PIC call to register other than $25"));
8270
8271 s = ((mips_opts.micromips
8272 && !mips_opts.insn32
8273 && (!mips_opts.noreorder || cprestore))
8274 ? "jalrs" : "jalr");
8275 if (mips_opts.micromips
8276 && !mips_opts.insn32
8277 && dreg == RA
8278 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
8279 macro_build (NULL, s, "mj", sreg);
8280 else
8281 macro_build (NULL, s, JALR_FMT, dreg, sreg);
8282 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
8283 {
8284 if (mips_cprestore_offset < 0)
8285 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8286 else
8287 {
8288 if (!mips_frame_reg_valid)
8289 {
8290 as_warn (_("No .frame pseudo-op used in PIC code"));
8291 /* Quiet this warning. */
8292 mips_frame_reg_valid = 1;
8293 }
8294 if (!mips_cprestore_valid)
8295 {
8296 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8297 /* Quiet this warning. */
8298 mips_cprestore_valid = 1;
8299 }
8300 if (mips_opts.noreorder)
8301 macro_build (NULL, "nop", "");
8302 expr1.X_add_number = mips_cprestore_offset;
8303 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
8304 mips_gp_register,
8305 mips_frame_reg,
8306 HAVE_64BIT_ADDRESSES);
8307 }
8308 }
8309 }
8310
8311 break;
8312
8313 case M_JALS_A:
8314 gas_assert (mips_opts.micromips);
8315 if (mips_opts.insn32)
8316 {
8317 as_bad (_("Opcode not supported in the `insn32' mode `%s'"), str);
8318 break;
8319 }
8320 jals = 1;
8321 /* Fall through. */
8322 case M_JAL_A:
8323 if (mips_pic == NO_PIC)
8324 macro_build (&offset_expr, jals ? "jals" : "jal", "a");
8325 else if (mips_pic == SVR4_PIC)
8326 {
8327 /* If this is a reference to an external symbol, and we are
8328 using a small GOT, we want
8329 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
8330 nop
8331 jalr $ra,$25
8332 nop
8333 lw $gp,cprestore($sp)
8334 The cprestore value is set using the .cprestore
8335 pseudo-op. If we are using a big GOT, we want
8336 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
8337 addu $25,$25,$gp
8338 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
8339 nop
8340 jalr $ra,$25
8341 nop
8342 lw $gp,cprestore($sp)
8343 If the symbol is not external, we want
8344 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
8345 nop
8346 addiu $25,$25,<sym> (BFD_RELOC_LO16)
8347 jalr $ra,$25
8348 nop
8349 lw $gp,cprestore($sp)
8350
8351 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
8352 sequences above, minus nops, unless the symbol is local,
8353 which enables us to use GOT_PAGE/GOT_OFST (big got) or
8354 GOT_DISP. */
8355 if (HAVE_NEWABI)
8356 {
8357 if (!mips_big_got)
8358 {
8359 relax_start (offset_expr.X_add_symbol);
8360 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8361 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
8362 mips_gp_register);
8363 relax_switch ();
8364 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8365 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
8366 mips_gp_register);
8367 relax_end ();
8368 }
8369 else
8370 {
8371 relax_start (offset_expr.X_add_symbol);
8372 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
8373 BFD_RELOC_MIPS_CALL_HI16);
8374 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
8375 PIC_CALL_REG, mips_gp_register);
8376 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8377 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
8378 PIC_CALL_REG);
8379 relax_switch ();
8380 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8381 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
8382 mips_gp_register);
8383 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8384 PIC_CALL_REG, PIC_CALL_REG,
8385 BFD_RELOC_MIPS_GOT_OFST);
8386 relax_end ();
8387 }
8388
8389 macro_build_jalr (&offset_expr, 0);
8390 }
8391 else
8392 {
8393 relax_start (offset_expr.X_add_symbol);
8394 if (!mips_big_got)
8395 {
8396 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8397 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
8398 mips_gp_register);
8399 load_delay_nop ();
8400 relax_switch ();
8401 }
8402 else
8403 {
8404 int gpdelay;
8405
8406 gpdelay = reg_needs_delay (mips_gp_register);
8407 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
8408 BFD_RELOC_MIPS_CALL_HI16);
8409 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
8410 PIC_CALL_REG, mips_gp_register);
8411 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8412 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
8413 PIC_CALL_REG);
8414 load_delay_nop ();
8415 relax_switch ();
8416 if (gpdelay)
8417 macro_build (NULL, "nop", "");
8418 }
8419 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8420 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
8421 mips_gp_register);
8422 load_delay_nop ();
8423 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8424 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
8425 relax_end ();
8426 macro_build_jalr (&offset_expr, mips_cprestore_offset >= 0);
8427
8428 if (mips_cprestore_offset < 0)
8429 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8430 else
8431 {
8432 if (!mips_frame_reg_valid)
8433 {
8434 as_warn (_("No .frame pseudo-op used in PIC code"));
8435 /* Quiet this warning. */
8436 mips_frame_reg_valid = 1;
8437 }
8438 if (!mips_cprestore_valid)
8439 {
8440 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8441 /* Quiet this warning. */
8442 mips_cprestore_valid = 1;
8443 }
8444 if (mips_opts.noreorder)
8445 macro_build (NULL, "nop", "");
8446 expr1.X_add_number = mips_cprestore_offset;
8447 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
8448 mips_gp_register,
8449 mips_frame_reg,
8450 HAVE_64BIT_ADDRESSES);
8451 }
8452 }
8453 }
8454 else if (mips_pic == VXWORKS_PIC)
8455 as_bad (_("Non-PIC jump used in PIC library"));
8456 else
8457 abort ();
8458
8459 break;
8460
8461 case M_LBUE_AB:
8462 s = "lbue";
8463 fmt = "t,+j(b)";
8464 offbits = 9;
8465 goto ld_st;
8466 case M_LHUE_AB:
8467 s = "lhue";
8468 fmt = "t,+j(b)";
8469 offbits = 9;
8470 goto ld_st;
8471 case M_LBE_AB:
8472 s = "lbe";
8473 fmt = "t,+j(b)";
8474 offbits = 9;
8475 goto ld_st;
8476 case M_LHE_AB:
8477 s = "lhe";
8478 fmt = "t,+j(b)";
8479 offbits = 9;
8480 goto ld_st;
8481 case M_LLE_AB:
8482 s = "lle";
8483 fmt = "t,+j(b)";
8484 offbits = 9;
8485 goto ld_st;
8486 case M_LWE_AB:
8487 s = "lwe";
8488 fmt = "t,+j(b)";
8489 offbits = 9;
8490 goto ld_st;
8491 case M_LWLE_AB:
8492 s = "lwle";
8493 fmt = "t,+j(b)";
8494 offbits = 9;
8495 goto ld_st;
8496 case M_LWRE_AB:
8497 s = "lwre";
8498 fmt = "t,+j(b)";
8499 offbits = 9;
8500 goto ld_st;
8501 case M_SBE_AB:
8502 s = "sbe";
8503 fmt = "t,+j(b)";
8504 offbits = 9;
8505 goto ld_st;
8506 case M_SCE_AB:
8507 s = "sce";
8508 fmt = "t,+j(b)";
8509 offbits = 9;
8510 goto ld_st;
8511 case M_SHE_AB:
8512 s = "she";
8513 fmt = "t,+j(b)";
8514 offbits = 9;
8515 goto ld_st;
8516 case M_SWE_AB:
8517 s = "swe";
8518 fmt = "t,+j(b)";
8519 offbits = 9;
8520 goto ld_st;
8521 case M_SWLE_AB:
8522 s = "swle";
8523 fmt = "t,+j(b)";
8524 offbits = 9;
8525 goto ld_st;
8526 case M_SWRE_AB:
8527 s = "swre";
8528 fmt = "t,+j(b)";
8529 offbits = 9;
8530 goto ld_st;
8531 case M_ACLR_AB:
8532 s = "aclr";
8533 treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
8534 fmt = "\\,~(b)";
8535 offbits = 12;
8536 goto ld_st;
8537 case M_ASET_AB:
8538 s = "aset";
8539 treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
8540 fmt = "\\,~(b)";
8541 offbits = 12;
8542 goto ld_st;
8543 case M_LB_AB:
8544 s = "lb";
8545 fmt = "t,o(b)";
8546 goto ld;
8547 case M_LBU_AB:
8548 s = "lbu";
8549 fmt = "t,o(b)";
8550 goto ld;
8551 case M_LH_AB:
8552 s = "lh";
8553 fmt = "t,o(b)";
8554 goto ld;
8555 case M_LHU_AB:
8556 s = "lhu";
8557 fmt = "t,o(b)";
8558 goto ld;
8559 case M_LW_AB:
8560 s = "lw";
8561 fmt = "t,o(b)";
8562 goto ld;
8563 case M_LWC0_AB:
8564 gas_assert (!mips_opts.micromips);
8565 s = "lwc0";
8566 fmt = "E,o(b)";
8567 /* Itbl support may require additional care here. */
8568 coproc = 1;
8569 goto ld_st;
8570 case M_LWC1_AB:
8571 s = "lwc1";
8572 fmt = "T,o(b)";
8573 /* Itbl support may require additional care here. */
8574 coproc = 1;
8575 goto ld_st;
8576 case M_LWC2_AB:
8577 s = "lwc2";
8578 fmt = COP12_FMT;
8579 offbits = (mips_opts.micromips ? 12 : 16);
8580 /* Itbl support may require additional care here. */
8581 coproc = 1;
8582 goto ld_st;
8583 case M_LWC3_AB:
8584 gas_assert (!mips_opts.micromips);
8585 s = "lwc3";
8586 fmt = "E,o(b)";
8587 /* Itbl support may require additional care here. */
8588 coproc = 1;
8589 goto ld_st;
8590 case M_LWL_AB:
8591 s = "lwl";
8592 fmt = MEM12_FMT;
8593 offbits = (mips_opts.micromips ? 12 : 16);
8594 goto ld_st;
8595 case M_LWR_AB:
8596 s = "lwr";
8597 fmt = MEM12_FMT;
8598 offbits = (mips_opts.micromips ? 12 : 16);
8599 goto ld_st;
8600 case M_LDC1_AB:
8601 s = "ldc1";
8602 fmt = "T,o(b)";
8603 /* Itbl support may require additional care here. */
8604 coproc = 1;
8605 goto ld_st;
8606 case M_LDC2_AB:
8607 s = "ldc2";
8608 fmt = COP12_FMT;
8609 offbits = (mips_opts.micromips ? 12 : 16);
8610 /* Itbl support may require additional care here. */
8611 coproc = 1;
8612 goto ld_st;
8613 case M_LQC2_AB:
8614 s = "lqc2";
8615 fmt = "E,o(b)";
8616 /* Itbl support may require additional care here. */
8617 coproc = 1;
8618 goto ld_st;
8619 case M_LDC3_AB:
8620 s = "ldc3";
8621 fmt = "E,o(b)";
8622 /* Itbl support may require additional care here. */
8623 coproc = 1;
8624 goto ld_st;
8625 case M_LDL_AB:
8626 s = "ldl";
8627 fmt = MEM12_FMT;
8628 offbits = (mips_opts.micromips ? 12 : 16);
8629 goto ld_st;
8630 case M_LDR_AB:
8631 s = "ldr";
8632 fmt = MEM12_FMT;
8633 offbits = (mips_opts.micromips ? 12 : 16);
8634 goto ld_st;
8635 case M_LL_AB:
8636 s = "ll";
8637 fmt = MEM12_FMT;
8638 offbits = (mips_opts.micromips ? 12 : 16);
8639 goto ld;
8640 case M_LLD_AB:
8641 s = "lld";
8642 fmt = MEM12_FMT;
8643 offbits = (mips_opts.micromips ? 12 : 16);
8644 goto ld;
8645 case M_LWU_AB:
8646 s = "lwu";
8647 fmt = MEM12_FMT;
8648 offbits = (mips_opts.micromips ? 12 : 16);
8649 goto ld;
8650 case M_LWP_AB:
8651 gas_assert (mips_opts.micromips);
8652 s = "lwp";
8653 fmt = "t,~(b)";
8654 offbits = 12;
8655 lp = 1;
8656 goto ld;
8657 case M_LDP_AB:
8658 gas_assert (mips_opts.micromips);
8659 s = "ldp";
8660 fmt = "t,~(b)";
8661 offbits = 12;
8662 lp = 1;
8663 goto ld;
8664 case M_LWM_AB:
8665 gas_assert (mips_opts.micromips);
8666 s = "lwm";
8667 fmt = "n,~(b)";
8668 offbits = 12;
8669 goto ld_st;
8670 case M_LDM_AB:
8671 gas_assert (mips_opts.micromips);
8672 s = "ldm";
8673 fmt = "n,~(b)";
8674 offbits = 12;
8675 goto ld_st;
8676
8677 ld:
8678 /* We don't want to use $0 as tempreg. */
8679 if (breg == treg + lp || treg + lp == ZERO)
8680 goto ld_st;
8681 else
8682 tempreg = treg + lp;
8683 goto ld_noat;
8684
8685 case M_SB_AB:
8686 s = "sb";
8687 fmt = "t,o(b)";
8688 goto ld_st;
8689 case M_SH_AB:
8690 s = "sh";
8691 fmt = "t,o(b)";
8692 goto ld_st;
8693 case M_SW_AB:
8694 s = "sw";
8695 fmt = "t,o(b)";
8696 goto ld_st;
8697 case M_SWC0_AB:
8698 gas_assert (!mips_opts.micromips);
8699 s = "swc0";
8700 fmt = "E,o(b)";
8701 /* Itbl support may require additional care here. */
8702 coproc = 1;
8703 goto ld_st;
8704 case M_SWC1_AB:
8705 s = "swc1";
8706 fmt = "T,o(b)";
8707 /* Itbl support may require additional care here. */
8708 coproc = 1;
8709 goto ld_st;
8710 case M_SWC2_AB:
8711 s = "swc2";
8712 fmt = COP12_FMT;
8713 offbits = (mips_opts.micromips ? 12 : 16);
8714 /* Itbl support may require additional care here. */
8715 coproc = 1;
8716 goto ld_st;
8717 case M_SWC3_AB:
8718 gas_assert (!mips_opts.micromips);
8719 s = "swc3";
8720 fmt = "E,o(b)";
8721 /* Itbl support may require additional care here. */
8722 coproc = 1;
8723 goto ld_st;
8724 case M_SWL_AB:
8725 s = "swl";
8726 fmt = MEM12_FMT;
8727 offbits = (mips_opts.micromips ? 12 : 16);
8728 goto ld_st;
8729 case M_SWR_AB:
8730 s = "swr";
8731 fmt = MEM12_FMT;
8732 offbits = (mips_opts.micromips ? 12 : 16);
8733 goto ld_st;
8734 case M_SC_AB:
8735 s = "sc";
8736 fmt = MEM12_FMT;
8737 offbits = (mips_opts.micromips ? 12 : 16);
8738 goto ld_st;
8739 case M_SCD_AB:
8740 s = "scd";
8741 fmt = MEM12_FMT;
8742 offbits = (mips_opts.micromips ? 12 : 16);
8743 goto ld_st;
8744 case M_CACHE_AB:
8745 s = "cache";
8746 fmt = mips_opts.micromips ? "k,~(b)" : "k,o(b)";
8747 offbits = (mips_opts.micromips ? 12 : 16);
8748 goto ld_st;
8749 case M_CACHEE_AB:
8750 s = "cachee";
8751 fmt = "k,+j(b)";
8752 offbits = 9;
8753 goto ld_st;
8754 case M_PREF_AB:
8755 s = "pref";
8756 fmt = !mips_opts.micromips ? "k,o(b)" : "k,~(b)";
8757 offbits = (mips_opts.micromips ? 12 : 16);
8758 goto ld_st;
8759 case M_PREFE_AB:
8760 s = "prefe";
8761 fmt = "k,+j(b)";
8762 offbits = 9;
8763 goto ld_st;
8764 case M_SDC1_AB:
8765 s = "sdc1";
8766 fmt = "T,o(b)";
8767 coproc = 1;
8768 /* Itbl support may require additional care here. */
8769 goto ld_st;
8770 case M_SDC2_AB:
8771 s = "sdc2";
8772 fmt = COP12_FMT;
8773 offbits = (mips_opts.micromips ? 12 : 16);
8774 /* Itbl support may require additional care here. */
8775 coproc = 1;
8776 goto ld_st;
8777 case M_SQC2_AB:
8778 s = "sqc2";
8779 fmt = "E,o(b)";
8780 /* Itbl support may require additional care here. */
8781 coproc = 1;
8782 goto ld_st;
8783 case M_SDC3_AB:
8784 gas_assert (!mips_opts.micromips);
8785 s = "sdc3";
8786 fmt = "E,o(b)";
8787 /* Itbl support may require additional care here. */
8788 coproc = 1;
8789 goto ld_st;
8790 case M_SDL_AB:
8791 s = "sdl";
8792 fmt = MEM12_FMT;
8793 offbits = (mips_opts.micromips ? 12 : 16);
8794 goto ld_st;
8795 case M_SDR_AB:
8796 s = "sdr";
8797 fmt = MEM12_FMT;
8798 offbits = (mips_opts.micromips ? 12 : 16);
8799 goto ld_st;
8800 case M_SWP_AB:
8801 gas_assert (mips_opts.micromips);
8802 s = "swp";
8803 fmt = "t,~(b)";
8804 offbits = 12;
8805 goto ld_st;
8806 case M_SDP_AB:
8807 gas_assert (mips_opts.micromips);
8808 s = "sdp";
8809 fmt = "t,~(b)";
8810 offbits = 12;
8811 goto ld_st;
8812 case M_SWM_AB:
8813 gas_assert (mips_opts.micromips);
8814 s = "swm";
8815 fmt = "n,~(b)";
8816 offbits = 12;
8817 goto ld_st;
8818 case M_SDM_AB:
8819 gas_assert (mips_opts.micromips);
8820 s = "sdm";
8821 fmt = "n,~(b)";
8822 offbits = 12;
8823
8824 ld_st:
8825 tempreg = AT;
8826 ld_noat:
8827 if (small_offset_p (0, align, 16))
8828 {
8829 /* The first case exists for M_LD_AB and M_SD_AB, which are
8830 macros for o32 but which should act like normal instructions
8831 otherwise. */
8832 if (offbits == 16)
8833 macro_build (&offset_expr, s, fmt, treg, -1, offset_reloc[0],
8834 offset_reloc[1], offset_reloc[2], breg);
8835 else if (small_offset_p (0, align, offbits))
8836 {
8837 if (offbits == 0)
8838 macro_build (NULL, s, fmt, treg, breg);
8839 else
8840 macro_build (NULL, s, fmt, treg,
8841 (unsigned long) offset_expr.X_add_number, breg);
8842 }
8843 else
8844 {
8845 if (tempreg == AT)
8846 used_at = 1;
8847 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8848 tempreg, breg, -1, offset_reloc[0],
8849 offset_reloc[1], offset_reloc[2]);
8850 if (offbits == 0)
8851 macro_build (NULL, s, fmt, treg, tempreg);
8852 else
8853 macro_build (NULL, s, fmt, treg, 0L, tempreg);
8854 }
8855 break;
8856 }
8857
8858 if (tempreg == AT)
8859 used_at = 1;
8860
8861 if (offset_expr.X_op != O_constant
8862 && offset_expr.X_op != O_symbol)
8863 {
8864 as_bad (_("Expression too complex"));
8865 offset_expr.X_op = O_constant;
8866 }
8867
8868 if (HAVE_32BIT_ADDRESSES
8869 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
8870 {
8871 char value [32];
8872
8873 sprintf_vma (value, offset_expr.X_add_number);
8874 as_bad (_("Number (0x%s) larger than 32 bits"), value);
8875 }
8876
8877 /* A constant expression in PIC code can be handled just as it
8878 is in non PIC code. */
8879 if (offset_expr.X_op == O_constant)
8880 {
8881 expr1.X_add_number = offset_high_part (offset_expr.X_add_number,
8882 offbits == 0 ? 16 : offbits);
8883 offset_expr.X_add_number -= expr1.X_add_number;
8884
8885 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
8886 if (breg != 0)
8887 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8888 tempreg, tempreg, breg);
8889 if (offbits == 0)
8890 {
8891 if (offset_expr.X_add_number != 0)
8892 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
8893 "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
8894 macro_build (NULL, s, fmt, treg, tempreg);
8895 }
8896 else if (offbits == 16)
8897 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, tempreg);
8898 else
8899 macro_build (NULL, s, fmt, treg,
8900 (unsigned long) offset_expr.X_add_number, tempreg);
8901 }
8902 else if (offbits != 16)
8903 {
8904 /* The offset field is too narrow to be used for a low-part
8905 relocation, so load the whole address into the auxillary
8906 register. */
8907 load_address (tempreg, &offset_expr, &used_at);
8908 if (breg != 0)
8909 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8910 tempreg, tempreg, breg);
8911 if (offbits == 0)
8912 macro_build (NULL, s, fmt, treg, tempreg);
8913 else
8914 macro_build (NULL, s, fmt, treg, 0L, tempreg);
8915 }
8916 else if (mips_pic == NO_PIC)
8917 {
8918 /* If this is a reference to a GP relative symbol, and there
8919 is no base register, we want
8920 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
8921 Otherwise, if there is no base register, we want
8922 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
8923 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8924 If we have a constant, we need two instructions anyhow,
8925 so we always use the latter form.
8926
8927 If we have a base register, and this is a reference to a
8928 GP relative symbol, we want
8929 addu $tempreg,$breg,$gp
8930 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
8931 Otherwise we want
8932 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
8933 addu $tempreg,$tempreg,$breg
8934 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8935 With a constant we always use the latter case.
8936
8937 With 64bit address space and no base register and $at usable,
8938 we want
8939 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8940 lui $at,<sym> (BFD_RELOC_HI16_S)
8941 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8942 dsll32 $tempreg,0
8943 daddu $tempreg,$at
8944 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8945 If we have a base register, we want
8946 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8947 lui $at,<sym> (BFD_RELOC_HI16_S)
8948 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8949 daddu $at,$breg
8950 dsll32 $tempreg,0
8951 daddu $tempreg,$at
8952 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8953
8954 Without $at we can't generate the optimal path for superscalar
8955 processors here since this would require two temporary registers.
8956 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8957 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8958 dsll $tempreg,16
8959 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
8960 dsll $tempreg,16
8961 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8962 If we have a base register, we want
8963 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8964 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8965 dsll $tempreg,16
8966 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
8967 dsll $tempreg,16
8968 daddu $tempreg,$tempreg,$breg
8969 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8970
8971 For GP relative symbols in 64bit address space we can use
8972 the same sequence as in 32bit address space. */
8973 if (HAVE_64BIT_SYMBOLS)
8974 {
8975 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
8976 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
8977 {
8978 relax_start (offset_expr.X_add_symbol);
8979 if (breg == 0)
8980 {
8981 macro_build (&offset_expr, s, fmt, treg,
8982 BFD_RELOC_GPREL16, mips_gp_register);
8983 }
8984 else
8985 {
8986 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8987 tempreg, breg, mips_gp_register);
8988 macro_build (&offset_expr, s, fmt, treg,
8989 BFD_RELOC_GPREL16, tempreg);
8990 }
8991 relax_switch ();
8992 }
8993
8994 if (used_at == 0 && mips_opts.at)
8995 {
8996 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
8997 BFD_RELOC_MIPS_HIGHEST);
8998 macro_build (&offset_expr, "lui", LUI_FMT, AT,
8999 BFD_RELOC_HI16_S);
9000 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
9001 tempreg, BFD_RELOC_MIPS_HIGHER);
9002 if (breg != 0)
9003 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
9004 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
9005 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
9006 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
9007 tempreg);
9008 used_at = 1;
9009 }
9010 else
9011 {
9012 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
9013 BFD_RELOC_MIPS_HIGHEST);
9014 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
9015 tempreg, BFD_RELOC_MIPS_HIGHER);
9016 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
9017 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
9018 tempreg, BFD_RELOC_HI16_S);
9019 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
9020 if (breg != 0)
9021 macro_build (NULL, "daddu", "d,v,t",
9022 tempreg, tempreg, breg);
9023 macro_build (&offset_expr, s, fmt, treg,
9024 BFD_RELOC_LO16, tempreg);
9025 }
9026
9027 if (mips_relax.sequence)
9028 relax_end ();
9029 break;
9030 }
9031
9032 if (breg == 0)
9033 {
9034 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9035 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9036 {
9037 relax_start (offset_expr.X_add_symbol);
9038 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
9039 mips_gp_register);
9040 relax_switch ();
9041 }
9042 macro_build_lui (&offset_expr, tempreg);
9043 macro_build (&offset_expr, s, fmt, treg,
9044 BFD_RELOC_LO16, tempreg);
9045 if (mips_relax.sequence)
9046 relax_end ();
9047 }
9048 else
9049 {
9050 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9051 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9052 {
9053 relax_start (offset_expr.X_add_symbol);
9054 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9055 tempreg, breg, mips_gp_register);
9056 macro_build (&offset_expr, s, fmt, treg,
9057 BFD_RELOC_GPREL16, tempreg);
9058 relax_switch ();
9059 }
9060 macro_build_lui (&offset_expr, tempreg);
9061 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9062 tempreg, tempreg, breg);
9063 macro_build (&offset_expr, s, fmt, treg,
9064 BFD_RELOC_LO16, tempreg);
9065 if (mips_relax.sequence)
9066 relax_end ();
9067 }
9068 }
9069 else if (!mips_big_got)
9070 {
9071 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
9072
9073 /* If this is a reference to an external symbol, we want
9074 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9075 nop
9076 <op> $treg,0($tempreg)
9077 Otherwise we want
9078 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9079 nop
9080 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
9081 <op> $treg,0($tempreg)
9082
9083 For NewABI, we want
9084 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
9085 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
9086
9087 If there is a base register, we add it to $tempreg before
9088 the <op>. If there is a constant, we stick it in the
9089 <op> instruction. We don't handle constants larger than
9090 16 bits, because we have no way to load the upper 16 bits
9091 (actually, we could handle them for the subset of cases
9092 in which we are not using $at). */
9093 gas_assert (offset_expr.X_op == O_symbol);
9094 if (HAVE_NEWABI)
9095 {
9096 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9097 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
9098 if (breg != 0)
9099 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9100 tempreg, tempreg, breg);
9101 macro_build (&offset_expr, s, fmt, treg,
9102 BFD_RELOC_MIPS_GOT_OFST, tempreg);
9103 break;
9104 }
9105 expr1.X_add_number = offset_expr.X_add_number;
9106 offset_expr.X_add_number = 0;
9107 if (expr1.X_add_number < -0x8000
9108 || expr1.X_add_number >= 0x8000)
9109 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9110 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9111 lw_reloc_type, mips_gp_register);
9112 load_delay_nop ();
9113 relax_start (offset_expr.X_add_symbol);
9114 relax_switch ();
9115 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
9116 tempreg, BFD_RELOC_LO16);
9117 relax_end ();
9118 if (breg != 0)
9119 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9120 tempreg, tempreg, breg);
9121 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
9122 }
9123 else if (mips_big_got && !HAVE_NEWABI)
9124 {
9125 int gpdelay;
9126
9127 /* If this is a reference to an external symbol, we want
9128 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9129 addu $tempreg,$tempreg,$gp
9130 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
9131 <op> $treg,0($tempreg)
9132 Otherwise we want
9133 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9134 nop
9135 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
9136 <op> $treg,0($tempreg)
9137 If there is a base register, we add it to $tempreg before
9138 the <op>. If there is a constant, we stick it in the
9139 <op> instruction. We don't handle constants larger than
9140 16 bits, because we have no way to load the upper 16 bits
9141 (actually, we could handle them for the subset of cases
9142 in which we are not using $at). */
9143 gas_assert (offset_expr.X_op == O_symbol);
9144 expr1.X_add_number = offset_expr.X_add_number;
9145 offset_expr.X_add_number = 0;
9146 if (expr1.X_add_number < -0x8000
9147 || expr1.X_add_number >= 0x8000)
9148 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9149 gpdelay = reg_needs_delay (mips_gp_register);
9150 relax_start (offset_expr.X_add_symbol);
9151 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
9152 BFD_RELOC_MIPS_GOT_HI16);
9153 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
9154 mips_gp_register);
9155 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9156 BFD_RELOC_MIPS_GOT_LO16, tempreg);
9157 relax_switch ();
9158 if (gpdelay)
9159 macro_build (NULL, "nop", "");
9160 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9161 BFD_RELOC_MIPS_GOT16, mips_gp_register);
9162 load_delay_nop ();
9163 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
9164 tempreg, BFD_RELOC_LO16);
9165 relax_end ();
9166
9167 if (breg != 0)
9168 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9169 tempreg, tempreg, breg);
9170 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
9171 }
9172 else if (mips_big_got && HAVE_NEWABI)
9173 {
9174 /* If this is a reference to an external symbol, we want
9175 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9176 add $tempreg,$tempreg,$gp
9177 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
9178 <op> $treg,<ofst>($tempreg)
9179 Otherwise, for local symbols, we want:
9180 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
9181 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
9182 gas_assert (offset_expr.X_op == O_symbol);
9183 expr1.X_add_number = offset_expr.X_add_number;
9184 offset_expr.X_add_number = 0;
9185 if (expr1.X_add_number < -0x8000
9186 || expr1.X_add_number >= 0x8000)
9187 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9188 relax_start (offset_expr.X_add_symbol);
9189 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
9190 BFD_RELOC_MIPS_GOT_HI16);
9191 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
9192 mips_gp_register);
9193 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9194 BFD_RELOC_MIPS_GOT_LO16, tempreg);
9195 if (breg != 0)
9196 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9197 tempreg, tempreg, breg);
9198 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
9199
9200 relax_switch ();
9201 offset_expr.X_add_number = expr1.X_add_number;
9202 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9203 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
9204 if (breg != 0)
9205 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9206 tempreg, tempreg, breg);
9207 macro_build (&offset_expr, s, fmt, treg,
9208 BFD_RELOC_MIPS_GOT_OFST, tempreg);
9209 relax_end ();
9210 }
9211 else
9212 abort ();
9213
9214 break;
9215
9216 case M_JRADDIUSP:
9217 gas_assert (mips_opts.micromips);
9218 gas_assert (mips_opts.insn32);
9219 start_noreorder ();
9220 macro_build (NULL, "jr", "s", RA);
9221 expr1.X_add_number = EXTRACT_OPERAND (1, IMMP, *ip) << 2;
9222 macro_build (&expr1, "addiu", "t,r,j", SP, SP, BFD_RELOC_LO16);
9223 end_noreorder ();
9224 break;
9225
9226 case M_JRC:
9227 gas_assert (mips_opts.micromips);
9228 gas_assert (mips_opts.insn32);
9229 macro_build (NULL, "jr", "s", sreg);
9230 if (mips_opts.noreorder)
9231 macro_build (NULL, "nop", "");
9232 break;
9233
9234 case M_LI:
9235 case M_LI_S:
9236 load_register (treg, &imm_expr, 0);
9237 break;
9238
9239 case M_DLI:
9240 load_register (treg, &imm_expr, 1);
9241 break;
9242
9243 case M_LI_SS:
9244 if (imm_expr.X_op == O_constant)
9245 {
9246 used_at = 1;
9247 load_register (AT, &imm_expr, 0);
9248 macro_build (NULL, "mtc1", "t,G", AT, treg);
9249 break;
9250 }
9251 else
9252 {
9253 gas_assert (offset_expr.X_op == O_symbol
9254 && strcmp (segment_name (S_GET_SEGMENT
9255 (offset_expr.X_add_symbol)),
9256 ".lit4") == 0
9257 && offset_expr.X_add_number == 0);
9258 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
9259 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
9260 break;
9261 }
9262
9263 case M_LI_D:
9264 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
9265 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
9266 order 32 bits of the value and the low order 32 bits are either
9267 zero or in OFFSET_EXPR. */
9268 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
9269 {
9270 if (HAVE_64BIT_GPRS)
9271 load_register (treg, &imm_expr, 1);
9272 else
9273 {
9274 int hreg, lreg;
9275
9276 if (target_big_endian)
9277 {
9278 hreg = treg;
9279 lreg = treg + 1;
9280 }
9281 else
9282 {
9283 hreg = treg + 1;
9284 lreg = treg;
9285 }
9286
9287 if (hreg <= 31)
9288 load_register (hreg, &imm_expr, 0);
9289 if (lreg <= 31)
9290 {
9291 if (offset_expr.X_op == O_absent)
9292 move_register (lreg, 0);
9293 else
9294 {
9295 gas_assert (offset_expr.X_op == O_constant);
9296 load_register (lreg, &offset_expr, 0);
9297 }
9298 }
9299 }
9300 break;
9301 }
9302
9303 /* We know that sym is in the .rdata section. First we get the
9304 upper 16 bits of the address. */
9305 if (mips_pic == NO_PIC)
9306 {
9307 macro_build_lui (&offset_expr, AT);
9308 used_at = 1;
9309 }
9310 else
9311 {
9312 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9313 BFD_RELOC_MIPS_GOT16, mips_gp_register);
9314 used_at = 1;
9315 }
9316
9317 /* Now we load the register(s). */
9318 if (HAVE_64BIT_GPRS)
9319 {
9320 used_at = 1;
9321 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
9322 }
9323 else
9324 {
9325 used_at = 1;
9326 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
9327 if (treg != RA)
9328 {
9329 /* FIXME: How in the world do we deal with the possible
9330 overflow here? */
9331 offset_expr.X_add_number += 4;
9332 macro_build (&offset_expr, "lw", "t,o(b)",
9333 treg + 1, BFD_RELOC_LO16, AT);
9334 }
9335 }
9336 break;
9337
9338 case M_LI_DD:
9339 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
9340 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
9341 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
9342 the value and the low order 32 bits are either zero or in
9343 OFFSET_EXPR. */
9344 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
9345 {
9346 used_at = 1;
9347 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
9348 if (HAVE_64BIT_FPRS)
9349 {
9350 gas_assert (HAVE_64BIT_GPRS);
9351 macro_build (NULL, "dmtc1", "t,S", AT, treg);
9352 }
9353 else
9354 {
9355 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
9356 if (offset_expr.X_op == O_absent)
9357 macro_build (NULL, "mtc1", "t,G", 0, treg);
9358 else
9359 {
9360 gas_assert (offset_expr.X_op == O_constant);
9361 load_register (AT, &offset_expr, 0);
9362 macro_build (NULL, "mtc1", "t,G", AT, treg);
9363 }
9364 }
9365 break;
9366 }
9367
9368 gas_assert (offset_expr.X_op == O_symbol
9369 && offset_expr.X_add_number == 0);
9370 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
9371 if (strcmp (s, ".lit8") == 0)
9372 {
9373 breg = mips_gp_register;
9374 offset_reloc[0] = BFD_RELOC_MIPS_LITERAL;
9375 offset_reloc[1] = BFD_RELOC_UNUSED;
9376 offset_reloc[2] = BFD_RELOC_UNUSED;
9377 }
9378 else
9379 {
9380 gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
9381 used_at = 1;
9382 if (mips_pic != NO_PIC)
9383 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9384 BFD_RELOC_MIPS_GOT16, mips_gp_register);
9385 else
9386 {
9387 /* FIXME: This won't work for a 64 bit address. */
9388 macro_build_lui (&offset_expr, AT);
9389 }
9390
9391 breg = AT;
9392 offset_reloc[0] = BFD_RELOC_LO16;
9393 offset_reloc[1] = BFD_RELOC_UNUSED;
9394 offset_reloc[2] = BFD_RELOC_UNUSED;
9395 }
9396 align = 8;
9397 /* Fall through */
9398
9399 case M_L_DAB:
9400 /*
9401 * The MIPS assembler seems to check for X_add_number not
9402 * being double aligned and generating:
9403 * lui at,%hi(foo+1)
9404 * addu at,at,v1
9405 * addiu at,at,%lo(foo+1)
9406 * lwc1 f2,0(at)
9407 * lwc1 f3,4(at)
9408 * But, the resulting address is the same after relocation so why
9409 * generate the extra instruction?
9410 */
9411 /* Itbl support may require additional care here. */
9412 coproc = 1;
9413 fmt = "T,o(b)";
9414 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
9415 {
9416 s = "ldc1";
9417 goto ld_st;
9418 }
9419 s = "lwc1";
9420 goto ldd_std;
9421
9422 case M_S_DAB:
9423 gas_assert (!mips_opts.micromips);
9424 /* Itbl support may require additional care here. */
9425 coproc = 1;
9426 fmt = "T,o(b)";
9427 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
9428 {
9429 s = "sdc1";
9430 goto ld_st;
9431 }
9432 s = "swc1";
9433 goto ldd_std;
9434
9435 case M_LQ_AB:
9436 fmt = "t,o(b)";
9437 s = "lq";
9438 goto ld;
9439
9440 case M_SQ_AB:
9441 fmt = "t,o(b)";
9442 s = "sq";
9443 goto ld_st;
9444
9445 case M_LD_AB:
9446 fmt = "t,o(b)";
9447 if (HAVE_64BIT_GPRS)
9448 {
9449 s = "ld";
9450 goto ld;
9451 }
9452 s = "lw";
9453 goto ldd_std;
9454
9455 case M_SD_AB:
9456 fmt = "t,o(b)";
9457 if (HAVE_64BIT_GPRS)
9458 {
9459 s = "sd";
9460 goto ld_st;
9461 }
9462 s = "sw";
9463
9464 ldd_std:
9465 /* Even on a big endian machine $fn comes before $fn+1. We have
9466 to adjust when loading from memory. We set coproc if we must
9467 load $fn+1 first. */
9468 /* Itbl support may require additional care here. */
9469 if (!target_big_endian)
9470 coproc = 0;
9471
9472 if (small_offset_p (0, align, 16))
9473 {
9474 ep = &offset_expr;
9475 if (!small_offset_p (4, align, 16))
9476 {
9477 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", AT, breg,
9478 -1, offset_reloc[0], offset_reloc[1],
9479 offset_reloc[2]);
9480 expr1.X_add_number = 0;
9481 ep = &expr1;
9482 breg = AT;
9483 used_at = 1;
9484 offset_reloc[0] = BFD_RELOC_LO16;
9485 offset_reloc[1] = BFD_RELOC_UNUSED;
9486 offset_reloc[2] = BFD_RELOC_UNUSED;
9487 }
9488 if (strcmp (s, "lw") == 0 && treg == breg)
9489 {
9490 ep->X_add_number += 4;
9491 macro_build (ep, s, fmt, treg + 1, -1, offset_reloc[0],
9492 offset_reloc[1], offset_reloc[2], breg);
9493 ep->X_add_number -= 4;
9494 macro_build (ep, s, fmt, treg, -1, offset_reloc[0],
9495 offset_reloc[1], offset_reloc[2], breg);
9496 }
9497 else
9498 {
9499 macro_build (ep, s, fmt, coproc ? treg + 1 : treg, -1,
9500 offset_reloc[0], offset_reloc[1], offset_reloc[2],
9501 breg);
9502 ep->X_add_number += 4;
9503 macro_build (ep, s, fmt, coproc ? treg : treg + 1, -1,
9504 offset_reloc[0], offset_reloc[1], offset_reloc[2],
9505 breg);
9506 }
9507 break;
9508 }
9509
9510 if (offset_expr.X_op != O_symbol
9511 && offset_expr.X_op != O_constant)
9512 {
9513 as_bad (_("Expression too complex"));
9514 offset_expr.X_op = O_constant;
9515 }
9516
9517 if (HAVE_32BIT_ADDRESSES
9518 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
9519 {
9520 char value [32];
9521
9522 sprintf_vma (value, offset_expr.X_add_number);
9523 as_bad (_("Number (0x%s) larger than 32 bits"), value);
9524 }
9525
9526 if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
9527 {
9528 /* If this is a reference to a GP relative symbol, we want
9529 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
9530 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
9531 If we have a base register, we use this
9532 addu $at,$breg,$gp
9533 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
9534 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
9535 If this is not a GP relative symbol, we want
9536 lui $at,<sym> (BFD_RELOC_HI16_S)
9537 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9538 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9539 If there is a base register, we add it to $at after the
9540 lui instruction. If there is a constant, we always use
9541 the last case. */
9542 if (offset_expr.X_op == O_symbol
9543 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9544 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9545 {
9546 relax_start (offset_expr.X_add_symbol);
9547 if (breg == 0)
9548 {
9549 tempreg = mips_gp_register;
9550 }
9551 else
9552 {
9553 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9554 AT, breg, mips_gp_register);
9555 tempreg = AT;
9556 used_at = 1;
9557 }
9558
9559 /* Itbl support may require additional care here. */
9560 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9561 BFD_RELOC_GPREL16, tempreg);
9562 offset_expr.X_add_number += 4;
9563
9564 /* Set mips_optimize to 2 to avoid inserting an
9565 undesired nop. */
9566 hold_mips_optimize = mips_optimize;
9567 mips_optimize = 2;
9568 /* Itbl support may require additional care here. */
9569 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9570 BFD_RELOC_GPREL16, tempreg);
9571 mips_optimize = hold_mips_optimize;
9572
9573 relax_switch ();
9574
9575 offset_expr.X_add_number -= 4;
9576 }
9577 used_at = 1;
9578 if (offset_high_part (offset_expr.X_add_number, 16)
9579 != offset_high_part (offset_expr.X_add_number + 4, 16))
9580 {
9581 load_address (AT, &offset_expr, &used_at);
9582 offset_expr.X_op = O_constant;
9583 offset_expr.X_add_number = 0;
9584 }
9585 else
9586 macro_build_lui (&offset_expr, AT);
9587 if (breg != 0)
9588 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9589 /* Itbl support may require additional care here. */
9590 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9591 BFD_RELOC_LO16, AT);
9592 /* FIXME: How do we handle overflow here? */
9593 offset_expr.X_add_number += 4;
9594 /* Itbl support may require additional care here. */
9595 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9596 BFD_RELOC_LO16, AT);
9597 if (mips_relax.sequence)
9598 relax_end ();
9599 }
9600 else if (!mips_big_got)
9601 {
9602 /* If this is a reference to an external symbol, we want
9603 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9604 nop
9605 <op> $treg,0($at)
9606 <op> $treg+1,4($at)
9607 Otherwise we want
9608 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9609 nop
9610 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9611 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9612 If there is a base register we add it to $at before the
9613 lwc1 instructions. If there is a constant we include it
9614 in the lwc1 instructions. */
9615 used_at = 1;
9616 expr1.X_add_number = offset_expr.X_add_number;
9617 if (expr1.X_add_number < -0x8000
9618 || expr1.X_add_number >= 0x8000 - 4)
9619 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9620 load_got_offset (AT, &offset_expr);
9621 load_delay_nop ();
9622 if (breg != 0)
9623 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9624
9625 /* Set mips_optimize to 2 to avoid inserting an undesired
9626 nop. */
9627 hold_mips_optimize = mips_optimize;
9628 mips_optimize = 2;
9629
9630 /* Itbl support may require additional care here. */
9631 relax_start (offset_expr.X_add_symbol);
9632 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
9633 BFD_RELOC_LO16, AT);
9634 expr1.X_add_number += 4;
9635 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
9636 BFD_RELOC_LO16, AT);
9637 relax_switch ();
9638 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9639 BFD_RELOC_LO16, AT);
9640 offset_expr.X_add_number += 4;
9641 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9642 BFD_RELOC_LO16, AT);
9643 relax_end ();
9644
9645 mips_optimize = hold_mips_optimize;
9646 }
9647 else if (mips_big_got)
9648 {
9649 int gpdelay;
9650
9651 /* If this is a reference to an external symbol, we want
9652 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9653 addu $at,$at,$gp
9654 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
9655 nop
9656 <op> $treg,0($at)
9657 <op> $treg+1,4($at)
9658 Otherwise we want
9659 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9660 nop
9661 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9662 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9663 If there is a base register we add it to $at before the
9664 lwc1 instructions. If there is a constant we include it
9665 in the lwc1 instructions. */
9666 used_at = 1;
9667 expr1.X_add_number = offset_expr.X_add_number;
9668 offset_expr.X_add_number = 0;
9669 if (expr1.X_add_number < -0x8000
9670 || expr1.X_add_number >= 0x8000 - 4)
9671 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9672 gpdelay = reg_needs_delay (mips_gp_register);
9673 relax_start (offset_expr.X_add_symbol);
9674 macro_build (&offset_expr, "lui", LUI_FMT,
9675 AT, BFD_RELOC_MIPS_GOT_HI16);
9676 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9677 AT, AT, mips_gp_register);
9678 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
9679 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
9680 load_delay_nop ();
9681 if (breg != 0)
9682 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9683 /* Itbl support may require additional care here. */
9684 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
9685 BFD_RELOC_LO16, AT);
9686 expr1.X_add_number += 4;
9687
9688 /* Set mips_optimize to 2 to avoid inserting an undesired
9689 nop. */
9690 hold_mips_optimize = mips_optimize;
9691 mips_optimize = 2;
9692 /* Itbl support may require additional care here. */
9693 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
9694 BFD_RELOC_LO16, AT);
9695 mips_optimize = hold_mips_optimize;
9696 expr1.X_add_number -= 4;
9697
9698 relax_switch ();
9699 offset_expr.X_add_number = expr1.X_add_number;
9700 if (gpdelay)
9701 macro_build (NULL, "nop", "");
9702 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9703 BFD_RELOC_MIPS_GOT16, mips_gp_register);
9704 load_delay_nop ();
9705 if (breg != 0)
9706 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9707 /* Itbl support may require additional care here. */
9708 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9709 BFD_RELOC_LO16, AT);
9710 offset_expr.X_add_number += 4;
9711
9712 /* Set mips_optimize to 2 to avoid inserting an undesired
9713 nop. */
9714 hold_mips_optimize = mips_optimize;
9715 mips_optimize = 2;
9716 /* Itbl support may require additional care here. */
9717 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9718 BFD_RELOC_LO16, AT);
9719 mips_optimize = hold_mips_optimize;
9720 relax_end ();
9721 }
9722 else
9723 abort ();
9724
9725 break;
9726
9727 case M_SAA_AB:
9728 s = "saa";
9729 offbits = 0;
9730 fmt = "t,(b)";
9731 goto ld_st;
9732 case M_SAAD_AB:
9733 s = "saad";
9734 offbits = 0;
9735 fmt = "t,(b)";
9736 goto ld_st;
9737
9738 /* New code added to support COPZ instructions.
9739 This code builds table entries out of the macros in mip_opcodes.
9740 R4000 uses interlocks to handle coproc delays.
9741 Other chips (like the R3000) require nops to be inserted for delays.
9742
9743 FIXME: Currently, we require that the user handle delays.
9744 In order to fill delay slots for non-interlocked chips,
9745 we must have a way to specify delays based on the coprocessor.
9746 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
9747 What are the side-effects of the cop instruction?
9748 What cache support might we have and what are its effects?
9749 Both coprocessor & memory require delays. how long???
9750 What registers are read/set/modified?
9751
9752 If an itbl is provided to interpret cop instructions,
9753 this knowledge can be encoded in the itbl spec. */
9754
9755 case M_COP0:
9756 s = "c0";
9757 goto copz;
9758 case M_COP1:
9759 s = "c1";
9760 goto copz;
9761 case M_COP2:
9762 s = "c2";
9763 goto copz;
9764 case M_COP3:
9765 s = "c3";
9766 copz:
9767 gas_assert (!mips_opts.micromips);
9768 /* For now we just do C (same as Cz). The parameter will be
9769 stored in insn_opcode by mips_ip. */
9770 macro_build (NULL, s, "C", ip->insn_opcode);
9771 break;
9772
9773 case M_MOVE:
9774 move_register (dreg, sreg);
9775 break;
9776
9777 case M_MOVEP:
9778 gas_assert (mips_opts.micromips);
9779 gas_assert (mips_opts.insn32);
9780 dreg = micromips_to_32_reg_h_map1[EXTRACT_OPERAND (1, MH, *ip)];
9781 breg = micromips_to_32_reg_h_map2[EXTRACT_OPERAND (1, MH, *ip)];
9782 sreg = micromips_to_32_reg_m_map[EXTRACT_OPERAND (1, MM, *ip)];
9783 treg = micromips_to_32_reg_n_map[EXTRACT_OPERAND (1, MN, *ip)];
9784 move_register (dreg, sreg);
9785 move_register (breg, treg);
9786 break;
9787
9788 case M_DMUL:
9789 dbl = 1;
9790 case M_MUL:
9791 if (mips_opts.arch == CPU_R5900)
9792 {
9793 macro_build (NULL, dbl ? "dmultu" : "multu", "d,s,t", dreg, sreg, treg);
9794 }
9795 else
9796 {
9797 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
9798 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9799 }
9800 break;
9801
9802 case M_DMUL_I:
9803 dbl = 1;
9804 case M_MUL_I:
9805 /* The MIPS assembler some times generates shifts and adds. I'm
9806 not trying to be that fancy. GCC should do this for us
9807 anyway. */
9808 used_at = 1;
9809 load_register (AT, &imm_expr, dbl);
9810 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
9811 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9812 break;
9813
9814 case M_DMULO_I:
9815 dbl = 1;
9816 case M_MULO_I:
9817 imm = 1;
9818 goto do_mulo;
9819
9820 case M_DMULO:
9821 dbl = 1;
9822 case M_MULO:
9823 do_mulo:
9824 start_noreorder ();
9825 used_at = 1;
9826 if (imm)
9827 load_register (AT, &imm_expr, dbl);
9828 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
9829 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9830 macro_build (NULL, dbl ? "dsra32" : "sra", SHFT_FMT, dreg, dreg, RA);
9831 macro_build (NULL, "mfhi", MFHL_FMT, AT);
9832 if (mips_trap)
9833 macro_build (NULL, "tne", TRAP_FMT, dreg, AT, 6);
9834 else
9835 {
9836 if (mips_opts.micromips)
9837 micromips_label_expr (&label_expr);
9838 else
9839 label_expr.X_add_number = 8;
9840 macro_build (&label_expr, "beq", "s,t,p", dreg, AT);
9841 macro_build (NULL, "nop", "");
9842 macro_build (NULL, "break", BRK_FMT, 6);
9843 if (mips_opts.micromips)
9844 micromips_add_label ();
9845 }
9846 end_noreorder ();
9847 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9848 break;
9849
9850 case M_DMULOU_I:
9851 dbl = 1;
9852 case M_MULOU_I:
9853 imm = 1;
9854 goto do_mulou;
9855
9856 case M_DMULOU:
9857 dbl = 1;
9858 case M_MULOU:
9859 do_mulou:
9860 start_noreorder ();
9861 used_at = 1;
9862 if (imm)
9863 load_register (AT, &imm_expr, dbl);
9864 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
9865 sreg, imm ? AT : treg);
9866 macro_build (NULL, "mfhi", MFHL_FMT, AT);
9867 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9868 if (mips_trap)
9869 macro_build (NULL, "tne", TRAP_FMT, AT, ZERO, 6);
9870 else
9871 {
9872 if (mips_opts.micromips)
9873 micromips_label_expr (&label_expr);
9874 else
9875 label_expr.X_add_number = 8;
9876 macro_build (&label_expr, "beq", "s,t,p", AT, ZERO);
9877 macro_build (NULL, "nop", "");
9878 macro_build (NULL, "break", BRK_FMT, 6);
9879 if (mips_opts.micromips)
9880 micromips_add_label ();
9881 }
9882 end_noreorder ();
9883 break;
9884
9885 case M_DROL:
9886 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
9887 {
9888 if (dreg == sreg)
9889 {
9890 tempreg = AT;
9891 used_at = 1;
9892 }
9893 else
9894 {
9895 tempreg = dreg;
9896 }
9897 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
9898 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
9899 break;
9900 }
9901 used_at = 1;
9902 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
9903 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
9904 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
9905 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9906 break;
9907
9908 case M_ROL:
9909 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
9910 {
9911 if (dreg == sreg)
9912 {
9913 tempreg = AT;
9914 used_at = 1;
9915 }
9916 else
9917 {
9918 tempreg = dreg;
9919 }
9920 macro_build (NULL, "negu", "d,w", tempreg, treg);
9921 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
9922 break;
9923 }
9924 used_at = 1;
9925 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
9926 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
9927 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
9928 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9929 break;
9930
9931 case M_DROL_I:
9932 {
9933 unsigned int rot;
9934 char *l;
9935 char *rr;
9936
9937 if (imm_expr.X_op != O_constant)
9938 as_bad (_("Improper rotate count"));
9939 rot = imm_expr.X_add_number & 0x3f;
9940 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
9941 {
9942 rot = (64 - rot) & 0x3f;
9943 if (rot >= 32)
9944 macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
9945 else
9946 macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
9947 break;
9948 }
9949 if (rot == 0)
9950 {
9951 macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
9952 break;
9953 }
9954 l = (rot < 0x20) ? "dsll" : "dsll32";
9955 rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
9956 rot &= 0x1f;
9957 used_at = 1;
9958 macro_build (NULL, l, SHFT_FMT, AT, sreg, rot);
9959 macro_build (NULL, rr, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
9960 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9961 }
9962 break;
9963
9964 case M_ROL_I:
9965 {
9966 unsigned int rot;
9967
9968 if (imm_expr.X_op != O_constant)
9969 as_bad (_("Improper rotate count"));
9970 rot = imm_expr.X_add_number & 0x1f;
9971 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
9972 {
9973 macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, (32 - rot) & 0x1f);
9974 break;
9975 }
9976 if (rot == 0)
9977 {
9978 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
9979 break;
9980 }
9981 used_at = 1;
9982 macro_build (NULL, "sll", SHFT_FMT, AT, sreg, rot);
9983 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
9984 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9985 }
9986 break;
9987
9988 case M_DROR:
9989 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
9990 {
9991 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
9992 break;
9993 }
9994 used_at = 1;
9995 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
9996 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
9997 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
9998 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9999 break;
10000
10001 case M_ROR:
10002 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
10003 {
10004 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
10005 break;
10006 }
10007 used_at = 1;
10008 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
10009 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
10010 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
10011 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10012 break;
10013
10014 case M_DROR_I:
10015 {
10016 unsigned int rot;
10017 char *l;
10018 char *rr;
10019
10020 if (imm_expr.X_op != O_constant)
10021 as_bad (_("Improper rotate count"));
10022 rot = imm_expr.X_add_number & 0x3f;
10023 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
10024 {
10025 if (rot >= 32)
10026 macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
10027 else
10028 macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
10029 break;
10030 }
10031 if (rot == 0)
10032 {
10033 macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
10034 break;
10035 }
10036 rr = (rot < 0x20) ? "dsrl" : "dsrl32";
10037 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
10038 rot &= 0x1f;
10039 used_at = 1;
10040 macro_build (NULL, rr, SHFT_FMT, AT, sreg, rot);
10041 macro_build (NULL, l, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
10042 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10043 }
10044 break;
10045
10046 case M_ROR_I:
10047 {
10048 unsigned int rot;
10049
10050 if (imm_expr.X_op != O_constant)
10051 as_bad (_("Improper rotate count"));
10052 rot = imm_expr.X_add_number & 0x1f;
10053 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
10054 {
10055 macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, rot);
10056 break;
10057 }
10058 if (rot == 0)
10059 {
10060 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
10061 break;
10062 }
10063 used_at = 1;
10064 macro_build (NULL, "srl", SHFT_FMT, AT, sreg, rot);
10065 macro_build (NULL, "sll", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
10066 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10067 }
10068 break;
10069
10070 case M_SEQ:
10071 if (sreg == 0)
10072 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
10073 else if (treg == 0)
10074 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10075 else
10076 {
10077 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
10078 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
10079 }
10080 break;
10081
10082 case M_SEQ_I:
10083 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
10084 {
10085 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10086 break;
10087 }
10088 if (sreg == 0)
10089 {
10090 as_warn (_("Instruction %s: result is always false"),
10091 ip->insn_mo->name);
10092 move_register (dreg, 0);
10093 break;
10094 }
10095 if (CPU_HAS_SEQ (mips_opts.arch)
10096 && -512 <= imm_expr.X_add_number
10097 && imm_expr.X_add_number < 512)
10098 {
10099 macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
10100 (int) imm_expr.X_add_number);
10101 break;
10102 }
10103 if (imm_expr.X_op == O_constant
10104 && imm_expr.X_add_number >= 0
10105 && imm_expr.X_add_number < 0x10000)
10106 {
10107 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
10108 }
10109 else if (imm_expr.X_op == O_constant
10110 && imm_expr.X_add_number > -0x8000
10111 && imm_expr.X_add_number < 0)
10112 {
10113 imm_expr.X_add_number = -imm_expr.X_add_number;
10114 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
10115 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10116 }
10117 else if (CPU_HAS_SEQ (mips_opts.arch))
10118 {
10119 used_at = 1;
10120 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10121 macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
10122 break;
10123 }
10124 else
10125 {
10126 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10127 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
10128 used_at = 1;
10129 }
10130 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
10131 break;
10132
10133 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
10134 s = "slt";
10135 goto sge;
10136 case M_SGEU:
10137 s = "sltu";
10138 sge:
10139 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
10140 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
10141 break;
10142
10143 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
10144 case M_SGEU_I:
10145 if (imm_expr.X_op == O_constant
10146 && imm_expr.X_add_number >= -0x8000
10147 && imm_expr.X_add_number < 0x8000)
10148 {
10149 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
10150 dreg, sreg, BFD_RELOC_LO16);
10151 }
10152 else
10153 {
10154 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10155 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
10156 dreg, sreg, AT);
10157 used_at = 1;
10158 }
10159 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
10160 break;
10161
10162 case M_SGT: /* sreg > treg <==> treg < sreg */
10163 s = "slt";
10164 goto sgt;
10165 case M_SGTU:
10166 s = "sltu";
10167 sgt:
10168 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
10169 break;
10170
10171 case M_SGT_I: /* sreg > I <==> I < sreg */
10172 s = "slt";
10173 goto sgti;
10174 case M_SGTU_I:
10175 s = "sltu";
10176 sgti:
10177 used_at = 1;
10178 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10179 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
10180 break;
10181
10182 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
10183 s = "slt";
10184 goto sle;
10185 case M_SLEU:
10186 s = "sltu";
10187 sle:
10188 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
10189 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
10190 break;
10191
10192 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
10193 s = "slt";
10194 goto slei;
10195 case M_SLEU_I:
10196 s = "sltu";
10197 slei:
10198 used_at = 1;
10199 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10200 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
10201 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
10202 break;
10203
10204 case M_SLT_I:
10205 if (imm_expr.X_op == O_constant
10206 && imm_expr.X_add_number >= -0x8000
10207 && imm_expr.X_add_number < 0x8000)
10208 {
10209 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10210 break;
10211 }
10212 used_at = 1;
10213 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10214 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
10215 break;
10216
10217 case M_SLTU_I:
10218 if (imm_expr.X_op == O_constant
10219 && imm_expr.X_add_number >= -0x8000
10220 && imm_expr.X_add_number < 0x8000)
10221 {
10222 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
10223 BFD_RELOC_LO16);
10224 break;
10225 }
10226 used_at = 1;
10227 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10228 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
10229 break;
10230
10231 case M_SNE:
10232 if (sreg == 0)
10233 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
10234 else if (treg == 0)
10235 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
10236 else
10237 {
10238 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
10239 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
10240 }
10241 break;
10242
10243 case M_SNE_I:
10244 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
10245 {
10246 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
10247 break;
10248 }
10249 if (sreg == 0)
10250 {
10251 as_warn (_("Instruction %s: result is always true"),
10252 ip->insn_mo->name);
10253 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
10254 dreg, 0, BFD_RELOC_LO16);
10255 break;
10256 }
10257 if (CPU_HAS_SEQ (mips_opts.arch)
10258 && -512 <= imm_expr.X_add_number
10259 && imm_expr.X_add_number < 512)
10260 {
10261 macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
10262 (int) imm_expr.X_add_number);
10263 break;
10264 }
10265 if (imm_expr.X_op == O_constant
10266 && imm_expr.X_add_number >= 0
10267 && imm_expr.X_add_number < 0x10000)
10268 {
10269 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
10270 }
10271 else if (imm_expr.X_op == O_constant
10272 && imm_expr.X_add_number > -0x8000
10273 && imm_expr.X_add_number < 0)
10274 {
10275 imm_expr.X_add_number = -imm_expr.X_add_number;
10276 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
10277 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10278 }
10279 else if (CPU_HAS_SEQ (mips_opts.arch))
10280 {
10281 used_at = 1;
10282 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10283 macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
10284 break;
10285 }
10286 else
10287 {
10288 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10289 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
10290 used_at = 1;
10291 }
10292 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
10293 break;
10294
10295 case M_SUB_I:
10296 s = "addi";
10297 s2 = "sub";
10298 goto do_subi;
10299 case M_SUBU_I:
10300 s = "addiu";
10301 s2 = "subu";
10302 goto do_subi;
10303 case M_DSUB_I:
10304 dbl = 1;
10305 s = "daddi";
10306 s2 = "dsub";
10307 if (!mips_opts.micromips)
10308 goto do_subi;
10309 if (imm_expr.X_op == O_constant
10310 && imm_expr.X_add_number > -0x200
10311 && imm_expr.X_add_number <= 0x200)
10312 {
10313 macro_build (NULL, s, "t,r,.", dreg, sreg, -imm_expr.X_add_number);
10314 break;
10315 }
10316 goto do_subi_i;
10317 case M_DSUBU_I:
10318 dbl = 1;
10319 s = "daddiu";
10320 s2 = "dsubu";
10321 do_subi:
10322 if (imm_expr.X_op == O_constant
10323 && imm_expr.X_add_number > -0x8000
10324 && imm_expr.X_add_number <= 0x8000)
10325 {
10326 imm_expr.X_add_number = -imm_expr.X_add_number;
10327 macro_build (&imm_expr, s, "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10328 break;
10329 }
10330 do_subi_i:
10331 used_at = 1;
10332 load_register (AT, &imm_expr, dbl);
10333 macro_build (NULL, s2, "d,v,t", dreg, sreg, AT);
10334 break;
10335
10336 case M_TEQ_I:
10337 s = "teq";
10338 goto trap;
10339 case M_TGE_I:
10340 s = "tge";
10341 goto trap;
10342 case M_TGEU_I:
10343 s = "tgeu";
10344 goto trap;
10345 case M_TLT_I:
10346 s = "tlt";
10347 goto trap;
10348 case M_TLTU_I:
10349 s = "tltu";
10350 goto trap;
10351 case M_TNE_I:
10352 s = "tne";
10353 trap:
10354 used_at = 1;
10355 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10356 macro_build (NULL, s, "s,t", sreg, AT);
10357 break;
10358
10359 case M_TRUNCWS:
10360 case M_TRUNCWD:
10361 gas_assert (!mips_opts.micromips);
10362 gas_assert (mips_opts.isa == ISA_MIPS1);
10363 used_at = 1;
10364 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
10365 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
10366
10367 /*
10368 * Is the double cfc1 instruction a bug in the mips assembler;
10369 * or is there a reason for it?
10370 */
10371 start_noreorder ();
10372 macro_build (NULL, "cfc1", "t,G", treg, RA);
10373 macro_build (NULL, "cfc1", "t,G", treg, RA);
10374 macro_build (NULL, "nop", "");
10375 expr1.X_add_number = 3;
10376 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
10377 expr1.X_add_number = 2;
10378 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
10379 macro_build (NULL, "ctc1", "t,G", AT, RA);
10380 macro_build (NULL, "nop", "");
10381 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
10382 dreg, sreg);
10383 macro_build (NULL, "ctc1", "t,G", treg, RA);
10384 macro_build (NULL, "nop", "");
10385 end_noreorder ();
10386 break;
10387
10388 case M_ULH_AB:
10389 s = "lb";
10390 s2 = "lbu";
10391 off = 1;
10392 goto uld_st;
10393 case M_ULHU_AB:
10394 s = "lbu";
10395 s2 = "lbu";
10396 off = 1;
10397 goto uld_st;
10398 case M_ULW_AB:
10399 s = "lwl";
10400 s2 = "lwr";
10401 offbits = (mips_opts.micromips ? 12 : 16);
10402 off = 3;
10403 goto uld_st;
10404 case M_ULD_AB:
10405 s = "ldl";
10406 s2 = "ldr";
10407 offbits = (mips_opts.micromips ? 12 : 16);
10408 off = 7;
10409 goto uld_st;
10410 case M_USH_AB:
10411 s = "sb";
10412 s2 = "sb";
10413 off = 1;
10414 ust = 1;
10415 goto uld_st;
10416 case M_USW_AB:
10417 s = "swl";
10418 s2 = "swr";
10419 offbits = (mips_opts.micromips ? 12 : 16);
10420 off = 3;
10421 ust = 1;
10422 goto uld_st;
10423 case M_USD_AB:
10424 s = "sdl";
10425 s2 = "sdr";
10426 offbits = (mips_opts.micromips ? 12 : 16);
10427 off = 7;
10428 ust = 1;
10429
10430 uld_st:
10431 large_offset = !small_offset_p (off, align, offbits);
10432 ep = &offset_expr;
10433 expr1.X_add_number = 0;
10434 if (large_offset)
10435 {
10436 used_at = 1;
10437 tempreg = AT;
10438 if (small_offset_p (0, align, 16))
10439 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", tempreg, breg, -1,
10440 offset_reloc[0], offset_reloc[1], offset_reloc[2]);
10441 else
10442 {
10443 load_address (tempreg, ep, &used_at);
10444 if (breg != 0)
10445 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10446 tempreg, tempreg, breg);
10447 }
10448 offset_reloc[0] = BFD_RELOC_LO16;
10449 offset_reloc[1] = BFD_RELOC_UNUSED;
10450 offset_reloc[2] = BFD_RELOC_UNUSED;
10451 breg = tempreg;
10452 tempreg = treg;
10453 ep = &expr1;
10454 }
10455 else if (!ust && treg == breg)
10456 {
10457 used_at = 1;
10458 tempreg = AT;
10459 }
10460 else
10461 tempreg = treg;
10462
10463 if (off == 1)
10464 goto ulh_sh;
10465
10466 if (!target_big_endian)
10467 ep->X_add_number += off;
10468 if (offbits == 12)
10469 macro_build (NULL, s, "t,~(b)",
10470 tempreg, (unsigned long) ep->X_add_number, breg);
10471 else
10472 macro_build (ep, s, "t,o(b)", tempreg, -1,
10473 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
10474
10475 if (!target_big_endian)
10476 ep->X_add_number -= off;
10477 else
10478 ep->X_add_number += off;
10479 if (offbits == 12)
10480 macro_build (NULL, s2, "t,~(b)",
10481 tempreg, (unsigned long) ep->X_add_number, breg);
10482 else
10483 macro_build (ep, s2, "t,o(b)", tempreg, -1,
10484 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
10485
10486 /* If necessary, move the result in tempreg to the final destination. */
10487 if (!ust && treg != tempreg)
10488 {
10489 /* Protect second load's delay slot. */
10490 load_delay_nop ();
10491 move_register (treg, tempreg);
10492 }
10493 break;
10494
10495 ulh_sh:
10496 used_at = 1;
10497 if (target_big_endian == ust)
10498 ep->X_add_number += off;
10499 tempreg = ust || large_offset ? treg : AT;
10500 macro_build (ep, s, "t,o(b)", tempreg, -1,
10501 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
10502
10503 /* For halfword transfers we need a temporary register to shuffle
10504 bytes. Unfortunately for M_USH_A we have none available before
10505 the next store as AT holds the base address. We deal with this
10506 case by clobbering TREG and then restoring it as with ULH. */
10507 tempreg = ust == large_offset ? treg : AT;
10508 if (ust)
10509 macro_build (NULL, "srl", SHFT_FMT, tempreg, treg, 8);
10510
10511 if (target_big_endian == ust)
10512 ep->X_add_number -= off;
10513 else
10514 ep->X_add_number += off;
10515 macro_build (ep, s2, "t,o(b)", tempreg, -1,
10516 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
10517
10518 /* For M_USH_A re-retrieve the LSB. */
10519 if (ust && large_offset)
10520 {
10521 if (target_big_endian)
10522 ep->X_add_number += off;
10523 else
10524 ep->X_add_number -= off;
10525 macro_build (&expr1, "lbu", "t,o(b)", AT, -1,
10526 offset_reloc[0], offset_reloc[1], offset_reloc[2], AT);
10527 }
10528 /* For ULH and M_USH_A OR the LSB in. */
10529 if (!ust || large_offset)
10530 {
10531 tempreg = !large_offset ? AT : treg;
10532 macro_build (NULL, "sll", SHFT_FMT, tempreg, tempreg, 8);
10533 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
10534 }
10535 break;
10536
10537 default:
10538 /* FIXME: Check if this is one of the itbl macros, since they
10539 are added dynamically. */
10540 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
10541 break;
10542 }
10543 if (!mips_opts.at && used_at)
10544 as_bad (_("Macro used $at after \".set noat\""));
10545 }
10546
10547 /* Implement macros in mips16 mode. */
10548
10549 static void
10550 mips16_macro (struct mips_cl_insn *ip)
10551 {
10552 int mask;
10553 int xreg, yreg, zreg, tmp;
10554 expressionS expr1;
10555 int dbl;
10556 const char *s, *s2, *s3;
10557
10558 mask = ip->insn_mo->mask;
10559
10560 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
10561 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
10562 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
10563
10564 expr1.X_op = O_constant;
10565 expr1.X_op_symbol = NULL;
10566 expr1.X_add_symbol = NULL;
10567 expr1.X_add_number = 1;
10568
10569 dbl = 0;
10570
10571 switch (mask)
10572 {
10573 default:
10574 abort ();
10575
10576 case M_DDIV_3:
10577 dbl = 1;
10578 case M_DIV_3:
10579 s = "mflo";
10580 goto do_div3;
10581 case M_DREM_3:
10582 dbl = 1;
10583 case M_REM_3:
10584 s = "mfhi";
10585 do_div3:
10586 start_noreorder ();
10587 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
10588 expr1.X_add_number = 2;
10589 macro_build (&expr1, "bnez", "x,p", yreg);
10590 macro_build (NULL, "break", "6", 7);
10591
10592 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
10593 since that causes an overflow. We should do that as well,
10594 but I don't see how to do the comparisons without a temporary
10595 register. */
10596 end_noreorder ();
10597 macro_build (NULL, s, "x", zreg);
10598 break;
10599
10600 case M_DIVU_3:
10601 s = "divu";
10602 s2 = "mflo";
10603 goto do_divu3;
10604 case M_REMU_3:
10605 s = "divu";
10606 s2 = "mfhi";
10607 goto do_divu3;
10608 case M_DDIVU_3:
10609 s = "ddivu";
10610 s2 = "mflo";
10611 goto do_divu3;
10612 case M_DREMU_3:
10613 s = "ddivu";
10614 s2 = "mfhi";
10615 do_divu3:
10616 start_noreorder ();
10617 macro_build (NULL, s, "0,x,y", xreg, yreg);
10618 expr1.X_add_number = 2;
10619 macro_build (&expr1, "bnez", "x,p", yreg);
10620 macro_build (NULL, "break", "6", 7);
10621 end_noreorder ();
10622 macro_build (NULL, s2, "x", zreg);
10623 break;
10624
10625 case M_DMUL:
10626 dbl = 1;
10627 case M_MUL:
10628 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
10629 macro_build (NULL, "mflo", "x", zreg);
10630 break;
10631
10632 case M_DSUBU_I:
10633 dbl = 1;
10634 goto do_subu;
10635 case M_SUBU_I:
10636 do_subu:
10637 if (imm_expr.X_op != O_constant)
10638 as_bad (_("Unsupported large constant"));
10639 imm_expr.X_add_number = -imm_expr.X_add_number;
10640 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
10641 break;
10642
10643 case M_SUBU_I_2:
10644 if (imm_expr.X_op != O_constant)
10645 as_bad (_("Unsupported large constant"));
10646 imm_expr.X_add_number = -imm_expr.X_add_number;
10647 macro_build (&imm_expr, "addiu", "x,k", xreg);
10648 break;
10649
10650 case M_DSUBU_I_2:
10651 if (imm_expr.X_op != O_constant)
10652 as_bad (_("Unsupported large constant"));
10653 imm_expr.X_add_number = -imm_expr.X_add_number;
10654 macro_build (&imm_expr, "daddiu", "y,j", yreg);
10655 break;
10656
10657 case M_BEQ:
10658 s = "cmp";
10659 s2 = "bteqz";
10660 goto do_branch;
10661 case M_BNE:
10662 s = "cmp";
10663 s2 = "btnez";
10664 goto do_branch;
10665 case M_BLT:
10666 s = "slt";
10667 s2 = "btnez";
10668 goto do_branch;
10669 case M_BLTU:
10670 s = "sltu";
10671 s2 = "btnez";
10672 goto do_branch;
10673 case M_BLE:
10674 s = "slt";
10675 s2 = "bteqz";
10676 goto do_reverse_branch;
10677 case M_BLEU:
10678 s = "sltu";
10679 s2 = "bteqz";
10680 goto do_reverse_branch;
10681 case M_BGE:
10682 s = "slt";
10683 s2 = "bteqz";
10684 goto do_branch;
10685 case M_BGEU:
10686 s = "sltu";
10687 s2 = "bteqz";
10688 goto do_branch;
10689 case M_BGT:
10690 s = "slt";
10691 s2 = "btnez";
10692 goto do_reverse_branch;
10693 case M_BGTU:
10694 s = "sltu";
10695 s2 = "btnez";
10696
10697 do_reverse_branch:
10698 tmp = xreg;
10699 xreg = yreg;
10700 yreg = tmp;
10701
10702 do_branch:
10703 macro_build (NULL, s, "x,y", xreg, yreg);
10704 macro_build (&offset_expr, s2, "p");
10705 break;
10706
10707 case M_BEQ_I:
10708 s = "cmpi";
10709 s2 = "bteqz";
10710 s3 = "x,U";
10711 goto do_branch_i;
10712 case M_BNE_I:
10713 s = "cmpi";
10714 s2 = "btnez";
10715 s3 = "x,U";
10716 goto do_branch_i;
10717 case M_BLT_I:
10718 s = "slti";
10719 s2 = "btnez";
10720 s3 = "x,8";
10721 goto do_branch_i;
10722 case M_BLTU_I:
10723 s = "sltiu";
10724 s2 = "btnez";
10725 s3 = "x,8";
10726 goto do_branch_i;
10727 case M_BLE_I:
10728 s = "slti";
10729 s2 = "btnez";
10730 s3 = "x,8";
10731 goto do_addone_branch_i;
10732 case M_BLEU_I:
10733 s = "sltiu";
10734 s2 = "btnez";
10735 s3 = "x,8";
10736 goto do_addone_branch_i;
10737 case M_BGE_I:
10738 s = "slti";
10739 s2 = "bteqz";
10740 s3 = "x,8";
10741 goto do_branch_i;
10742 case M_BGEU_I:
10743 s = "sltiu";
10744 s2 = "bteqz";
10745 s3 = "x,8";
10746 goto do_branch_i;
10747 case M_BGT_I:
10748 s = "slti";
10749 s2 = "bteqz";
10750 s3 = "x,8";
10751 goto do_addone_branch_i;
10752 case M_BGTU_I:
10753 s = "sltiu";
10754 s2 = "bteqz";
10755 s3 = "x,8";
10756
10757 do_addone_branch_i:
10758 if (imm_expr.X_op != O_constant)
10759 as_bad (_("Unsupported large constant"));
10760 ++imm_expr.X_add_number;
10761
10762 do_branch_i:
10763 macro_build (&imm_expr, s, s3, xreg);
10764 macro_build (&offset_expr, s2, "p");
10765 break;
10766
10767 case M_ABS:
10768 expr1.X_add_number = 0;
10769 macro_build (&expr1, "slti", "x,8", yreg);
10770 if (xreg != yreg)
10771 move_register (xreg, yreg);
10772 expr1.X_add_number = 2;
10773 macro_build (&expr1, "bteqz", "p");
10774 macro_build (NULL, "neg", "x,w", xreg, xreg);
10775 }
10776 }
10777
10778 /* For consistency checking, verify that all bits are specified either
10779 by the match/mask part of the instruction definition, or by the
10780 operand list. */
10781 static int
10782 validate_mips_insn (const struct mips_opcode *opc)
10783 {
10784 const char *p = opc->args;
10785 char c;
10786 unsigned long used_bits = opc->mask;
10787
10788 if ((used_bits & opc->match) != opc->match)
10789 {
10790 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
10791 opc->name, opc->args);
10792 return 0;
10793 }
10794 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
10795 while (*p)
10796 switch (c = *p++)
10797 {
10798 case ',': break;
10799 case '(': break;
10800 case ')': break;
10801 case '+':
10802 switch (c = *p++)
10803 {
10804 case '1': USE_BITS (OP_MASK_UDI1, OP_SH_UDI1); break;
10805 case '2': USE_BITS (OP_MASK_UDI2, OP_SH_UDI2); break;
10806 case '3': USE_BITS (OP_MASK_UDI3, OP_SH_UDI3); break;
10807 case '4': USE_BITS (OP_MASK_UDI4, OP_SH_UDI4); break;
10808 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10809 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
10810 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10811 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10812 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
10813 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10814 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10815 case 'I': break;
10816 case 'J': USE_BITS (OP_MASK_CODE10, OP_SH_CODE10); break;
10817 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10818 case 'x': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
10819 case 'X': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
10820 case 'p': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
10821 case 'P': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
10822 case 'Q': USE_BITS (OP_MASK_SEQI, OP_SH_SEQI); break;
10823 case 's': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
10824 case 'S': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
10825 case 'z': USE_BITS (OP_MASK_RZ, OP_SH_RZ); break;
10826 case 'Z': USE_BITS (OP_MASK_FZ, OP_SH_FZ); break;
10827 case 'a': USE_BITS (OP_MASK_OFFSET_A, OP_SH_OFFSET_A); break;
10828 case 'b': USE_BITS (OP_MASK_OFFSET_B, OP_SH_OFFSET_B); break;
10829 case 'c': USE_BITS (OP_MASK_OFFSET_C, OP_SH_OFFSET_C); break;
10830 case 'i': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
10831 case 'j': USE_BITS (OP_MASK_EVAOFFSET, OP_SH_EVAOFFSET); break;
10832
10833 default:
10834 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
10835 c, opc->name, opc->args);
10836 return 0;
10837 }
10838 break;
10839 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10840 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10841 case 'A': break;
10842 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
10843 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
10844 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
10845 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10846 case 'F': break;
10847 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10848 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
10849 case 'I': break;
10850 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
10851 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10852 case 'L': break;
10853 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
10854 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
10855 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
10856 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
10857 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10858 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
10859 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10860 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10861 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10862 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10863 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
10864 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10865 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10866 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
10867 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10868 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
10869 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10870 case 'f': break;
10871 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
10872 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
10873 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10874 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
10875 case 'l': break;
10876 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10877 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10878 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
10879 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10880 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10881 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10882 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
10883 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10884 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10885 case 'x': break;
10886 case 'z': break;
10887 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
10888 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
10889 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10890 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
10891 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
10892 case '1': USE_BITS (OP_MASK_STYPE, OP_SH_STYPE); break;
10893 case '2': USE_BITS (OP_MASK_BP, OP_SH_BP); break;
10894 case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break;
10895 case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break;
10896 case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break;
10897 case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10898 case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break;
10899 case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break;
10900 case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break;
10901 case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break;
10902 case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break;
10903 case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break;
10904 case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break;
10905 case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break;
10906 case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break;
10907 case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break;
10908 case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break;
10909 case '\\': USE_BITS (OP_MASK_3BITPOS, OP_SH_3BITPOS); break;
10910 case '~': USE_BITS (OP_MASK_OFFSET12, OP_SH_OFFSET12); break;
10911 case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10912 default:
10913 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
10914 c, opc->name, opc->args);
10915 return 0;
10916 }
10917 #undef USE_BITS
10918 if (used_bits != 0xffffffff)
10919 {
10920 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
10921 ~used_bits & 0xffffffff, opc->name, opc->args);
10922 return 0;
10923 }
10924 return 1;
10925 }
10926
10927 /* For consistency checking, verify that the length implied matches the
10928 major opcode and that all bits are specified either by the match/mask
10929 part of the instruction definition, or by the operand list. */
10930
10931 static int
10932 validate_micromips_insn (const struct mips_opcode *opc)
10933 {
10934 unsigned long match = opc->match;
10935 unsigned long mask = opc->mask;
10936 const char *p = opc->args;
10937 unsigned long insn_bits;
10938 unsigned long used_bits;
10939 unsigned long major;
10940 unsigned int length;
10941 char e;
10942 char c;
10943
10944 if ((mask & match) != match)
10945 {
10946 as_bad (_("Internal error: bad microMIPS opcode (mask error): %s %s"),
10947 opc->name, opc->args);
10948 return 0;
10949 }
10950 length = micromips_insn_length (opc);
10951 if (length != 2 && length != 4)
10952 {
10953 as_bad (_("Internal error: bad microMIPS opcode (incorrect length: %u): "
10954 "%s %s"), length, opc->name, opc->args);
10955 return 0;
10956 }
10957 major = match >> (10 + 8 * (length - 2));
10958 if ((length == 2 && (major & 7) != 1 && (major & 6) != 2)
10959 || (length == 4 && (major & 7) != 0 && (major & 4) != 4))
10960 {
10961 as_bad (_("Internal error: bad microMIPS opcode "
10962 "(opcode/length mismatch): %s %s"), opc->name, opc->args);
10963 return 0;
10964 }
10965
10966 /* Shift piecewise to avoid an overflow where unsigned long is 32-bit. */
10967 insn_bits = 1 << 4 * length;
10968 insn_bits <<= 4 * length;
10969 insn_bits -= 1;
10970 used_bits = mask;
10971 #define USE_BITS(field) \
10972 (used_bits |= MICROMIPSOP_MASK_##field << MICROMIPSOP_SH_##field)
10973 while (*p)
10974 switch (c = *p++)
10975 {
10976 case ',': break;
10977 case '(': break;
10978 case ')': break;
10979 case '+':
10980 e = c;
10981 switch (c = *p++)
10982 {
10983 case 'A': USE_BITS (EXTLSB); break;
10984 case 'B': USE_BITS (INSMSB); break;
10985 case 'C': USE_BITS (EXTMSBD); break;
10986 case 'E': USE_BITS (EXTLSB); break;
10987 case 'F': USE_BITS (INSMSB); break;
10988 case 'G': USE_BITS (EXTMSBD); break;
10989 case 'H': USE_BITS (EXTMSBD); break;
10990 case 'i': USE_BITS (TARGET); break;
10991 case 'j': USE_BITS (EVAOFFSET); break;
10992 default:
10993 as_bad (_("Internal error: bad mips opcode "
10994 "(unknown extension operand type `%c%c'): %s %s"),
10995 e, c, opc->name, opc->args);
10996 return 0;
10997 }
10998 break;
10999 case 'm':
11000 e = c;
11001 switch (c = *p++)
11002 {
11003 case 'A': USE_BITS (IMMA); break;
11004 case 'B': USE_BITS (IMMB); break;
11005 case 'C': USE_BITS (IMMC); break;
11006 case 'D': USE_BITS (IMMD); break;
11007 case 'E': USE_BITS (IMME); break;
11008 case 'F': USE_BITS (IMMF); break;
11009 case 'G': USE_BITS (IMMG); break;
11010 case 'H': USE_BITS (IMMH); break;
11011 case 'I': USE_BITS (IMMI); break;
11012 case 'J': USE_BITS (IMMJ); break;
11013 case 'L': USE_BITS (IMML); break;
11014 case 'M': USE_BITS (IMMM); break;
11015 case 'N': USE_BITS (IMMN); break;
11016 case 'O': USE_BITS (IMMO); break;
11017 case 'P': USE_BITS (IMMP); break;
11018 case 'Q': USE_BITS (IMMQ); break;
11019 case 'U': USE_BITS (IMMU); break;
11020 case 'W': USE_BITS (IMMW); break;
11021 case 'X': USE_BITS (IMMX); break;
11022 case 'Y': USE_BITS (IMMY); break;
11023 case 'Z': break;
11024 case 'a': break;
11025 case 'b': USE_BITS (MB); break;
11026 case 'c': USE_BITS (MC); break;
11027 case 'd': USE_BITS (MD); break;
11028 case 'e': USE_BITS (ME); break;
11029 case 'f': USE_BITS (MF); break;
11030 case 'g': USE_BITS (MG); break;
11031 case 'h': USE_BITS (MH); break;
11032 case 'j': USE_BITS (MJ); break;
11033 case 'l': USE_BITS (ML); break;
11034 case 'm': USE_BITS (MM); break;
11035 case 'n': USE_BITS (MN); break;
11036 case 'p': USE_BITS (MP); break;
11037 case 'q': USE_BITS (MQ); break;
11038 case 'r': break;
11039 case 's': break;
11040 case 't': break;
11041 case 'x': break;
11042 case 'y': break;
11043 case 'z': break;
11044 default:
11045 as_bad (_("Internal error: bad mips opcode "
11046 "(unknown extension operand type `%c%c'): %s %s"),
11047 e, c, opc->name, opc->args);
11048 return 0;
11049 }
11050 break;
11051 case '.': USE_BITS (OFFSET10); break;
11052 case '1': USE_BITS (STYPE); break;
11053 case '2': USE_BITS (BP); break;
11054 case '3': USE_BITS (SA3); break;
11055 case '4': USE_BITS (SA4); break;
11056 case '5': USE_BITS (IMM8); break;
11057 case '6': USE_BITS (RS); break;
11058 case '7': USE_BITS (DSPACC); break;
11059 case '8': USE_BITS (WRDSP); break;
11060 case '0': USE_BITS (DSPSFT); break;
11061 case '<': USE_BITS (SHAMT); break;
11062 case '>': USE_BITS (SHAMT); break;
11063 case '@': USE_BITS (IMM10); break;
11064 case 'B': USE_BITS (CODE10); break;
11065 case 'C': USE_BITS (COPZ); break;
11066 case 'D': USE_BITS (FD); break;
11067 case 'E': USE_BITS (RT); break;
11068 case 'G': USE_BITS (RS); break;
11069 case 'H': USE_BITS (SEL); break;
11070 case 'K': USE_BITS (RS); break;
11071 case 'M': USE_BITS (CCC); break;
11072 case 'N': USE_BITS (BCC); break;
11073 case 'R': USE_BITS (FR); break;
11074 case 'S': USE_BITS (FS); break;
11075 case 'T': USE_BITS (FT); break;
11076 case 'V': USE_BITS (FS); break;
11077 case '\\': USE_BITS (3BITPOS); break;
11078 case '^': USE_BITS (RD); break;
11079 case 'a': USE_BITS (TARGET); break;
11080 case 'b': USE_BITS (RS); break;
11081 case 'c': USE_BITS (CODE); break;
11082 case 'd': USE_BITS (RD); break;
11083 case 'h': USE_BITS (PREFX); break;
11084 case 'i': USE_BITS (IMMEDIATE); break;
11085 case 'j': USE_BITS (DELTA); break;
11086 case 'k': USE_BITS (CACHE); break;
11087 case 'n': USE_BITS (RT); break;
11088 case 'o': USE_BITS (DELTA); break;
11089 case 'p': USE_BITS (DELTA); break;
11090 case 'q': USE_BITS (CODE2); break;
11091 case 'r': USE_BITS (RS); break;
11092 case 's': USE_BITS (RS); break;
11093 case 't': USE_BITS (RT); break;
11094 case 'u': USE_BITS (IMMEDIATE); break;
11095 case 'v': USE_BITS (RS); break;
11096 case 'w': USE_BITS (RT); break;
11097 case 'y': USE_BITS (RS3); break;
11098 case 'z': break;
11099 case '|': USE_BITS (TRAP); break;
11100 case '~': USE_BITS (OFFSET12); break;
11101 default:
11102 as_bad (_("Internal error: bad microMIPS opcode "
11103 "(unknown operand type `%c'): %s %s"),
11104 c, opc->name, opc->args);
11105 return 0;
11106 }
11107 #undef USE_BITS
11108 if (used_bits != insn_bits)
11109 {
11110 if (~used_bits & insn_bits)
11111 as_bad (_("Internal error: bad microMIPS opcode "
11112 "(bits 0x%lx undefined): %s %s"),
11113 ~used_bits & insn_bits, opc->name, opc->args);
11114 if (used_bits & ~insn_bits)
11115 as_bad (_("Internal error: bad microMIPS opcode "
11116 "(bits 0x%lx defined): %s %s"),
11117 used_bits & ~insn_bits, opc->name, opc->args);
11118 return 0;
11119 }
11120 return 1;
11121 }
11122
11123 /* UDI immediates. */
11124 struct mips_immed {
11125 char type;
11126 unsigned int shift;
11127 unsigned long mask;
11128 const char * desc;
11129 };
11130
11131 static const struct mips_immed mips_immed[] = {
11132 { '1', OP_SH_UDI1, OP_MASK_UDI1, 0},
11133 { '2', OP_SH_UDI2, OP_MASK_UDI2, 0},
11134 { '3', OP_SH_UDI3, OP_MASK_UDI3, 0},
11135 { '4', OP_SH_UDI4, OP_MASK_UDI4, 0},
11136 { 0,0,0,0 }
11137 };
11138
11139 /* Check whether an odd floating-point register is allowed. */
11140 static int
11141 mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
11142 {
11143 const char *s = insn->name;
11144
11145 if (insn->pinfo == INSN_MACRO)
11146 /* Let a macro pass, we'll catch it later when it is expanded. */
11147 return 1;
11148
11149 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa) || (mips_opts.arch == CPU_R5900))
11150 {
11151 /* Allow odd registers for single-precision ops. */
11152 switch (insn->pinfo & (FP_S | FP_D))
11153 {
11154 case FP_S:
11155 case 0:
11156 return 1; /* both single precision - ok */
11157 case FP_D:
11158 return 0; /* both double precision - fail */
11159 default:
11160 break;
11161 }
11162
11163 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
11164 s = strchr (insn->name, '.');
11165 if (argnum == 2)
11166 s = s != NULL ? strchr (s + 1, '.') : NULL;
11167 return (s != NULL && (s[1] == 'w' || s[1] == 's'));
11168 }
11169
11170 /* Single-precision coprocessor loads and moves are OK too. */
11171 if ((insn->pinfo & FP_S)
11172 && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
11173 | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
11174 return 1;
11175
11176 return 0;
11177 }
11178
11179 /* Check if EXPR is a constant between MIN (inclusive) and MAX (exclusive)
11180 taking bits from BIT up. */
11181 static int
11182 expr_const_in_range (expressionS *ep, offsetT min, offsetT max, int bit)
11183 {
11184 return (ep->X_op == O_constant
11185 && (ep->X_add_number & ((1 << bit) - 1)) == 0
11186 && ep->X_add_number >= min << bit
11187 && ep->X_add_number < max << bit);
11188 }
11189
11190 /* This routine assembles an instruction into its binary format. As a
11191 side effect, it sets one of the global variables imm_reloc or
11192 offset_reloc to the type of relocation to do if one of the operands
11193 is an address expression. */
11194
11195 static void
11196 mips_ip (char *str, struct mips_cl_insn *ip)
11197 {
11198 bfd_boolean wrong_delay_slot_insns = FALSE;
11199 bfd_boolean need_delay_slot_ok = TRUE;
11200 struct mips_opcode *firstinsn = NULL;
11201 const struct mips_opcode *past;
11202 struct hash_control *hash;
11203 char *s;
11204 const char *args;
11205 char c = 0;
11206 struct mips_opcode *insn;
11207 char *argsStart;
11208 unsigned int regno, regno2;
11209 unsigned int lastregno;
11210 unsigned int destregno = 0;
11211 unsigned int lastpos = 0;
11212 unsigned int limlo, limhi;
11213 int sizelo;
11214 char *s_reset;
11215 offsetT min_range, max_range;
11216 long opend;
11217 char *name;
11218 int argnum;
11219 unsigned int rtype;
11220 char *dot;
11221 long end;
11222
11223 insn_error = NULL;
11224
11225 if (mips_opts.micromips)
11226 {
11227 hash = micromips_op_hash;
11228 past = &micromips_opcodes[bfd_micromips_num_opcodes];
11229 }
11230 else
11231 {
11232 hash = op_hash;
11233 past = &mips_opcodes[NUMOPCODES];
11234 }
11235 forced_insn_length = 0;
11236 insn = NULL;
11237
11238 /* We first try to match an instruction up to a space or to the end. */
11239 for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
11240 continue;
11241
11242 /* Make a copy of the instruction so that we can fiddle with it. */
11243 name = alloca (end + 1);
11244 memcpy (name, str, end);
11245 name[end] = '\0';
11246
11247 for (;;)
11248 {
11249 insn = (struct mips_opcode *) hash_find (hash, name);
11250
11251 if (insn != NULL || !mips_opts.micromips)
11252 break;
11253 if (forced_insn_length)
11254 break;
11255
11256 /* See if there's an instruction size override suffix,
11257 either `16' or `32', at the end of the mnemonic proper,
11258 that defines the operation, i.e. before the first `.'
11259 character if any. Strip it and retry. */
11260 dot = strchr (name, '.');
11261 opend = dot != NULL ? dot - name : end;
11262 if (opend < 3)
11263 break;
11264 if (name[opend - 2] == '1' && name[opend - 1] == '6')
11265 forced_insn_length = 2;
11266 else if (name[opend - 2] == '3' && name[opend - 1] == '2')
11267 forced_insn_length = 4;
11268 else
11269 break;
11270 memcpy (name + opend - 2, name + opend, end - opend + 1);
11271 }
11272 if (insn == NULL)
11273 {
11274 insn_error = _("Unrecognized opcode");
11275 return;
11276 }
11277
11278 /* For microMIPS instructions placed in a fixed-length branch delay slot
11279 we make up to two passes over the relevant fragment of the opcode
11280 table. First we try instructions that meet the delay slot's length
11281 requirement. If none matched, then we retry with the remaining ones
11282 and if one matches, then we use it and then issue an appropriate
11283 warning later on. */
11284 argsStart = s = str + end;
11285 for (;;)
11286 {
11287 bfd_boolean delay_slot_ok;
11288 bfd_boolean size_ok;
11289 bfd_boolean ok;
11290
11291 gas_assert (strcmp (insn->name, name) == 0);
11292
11293 ok = is_opcode_valid (insn);
11294 size_ok = is_size_valid (insn);
11295 delay_slot_ok = is_delay_slot_valid (insn);
11296 if (!delay_slot_ok && !wrong_delay_slot_insns)
11297 {
11298 firstinsn = insn;
11299 wrong_delay_slot_insns = TRUE;
11300 }
11301 if (!ok || !size_ok || delay_slot_ok != need_delay_slot_ok)
11302 {
11303 static char buf[256];
11304
11305 if (insn + 1 < past && strcmp (insn->name, insn[1].name) == 0)
11306 {
11307 ++insn;
11308 continue;
11309 }
11310 if (wrong_delay_slot_insns && need_delay_slot_ok)
11311 {
11312 gas_assert (firstinsn);
11313 need_delay_slot_ok = FALSE;
11314 past = insn + 1;
11315 insn = firstinsn;
11316 continue;
11317 }
11318
11319 if (insn_error)
11320 return;
11321
11322 if (!ok)
11323 sprintf (buf, _("Opcode not supported on this processor: %s (%s)"),
11324 mips_cpu_info_from_arch (mips_opts.arch)->name,
11325 mips_cpu_info_from_isa (mips_opts.isa)->name);
11326 else if (mips_opts.insn32)
11327 sprintf (buf, _("Opcode not supported in the `insn32' mode"));
11328 else
11329 sprintf (buf, _("Unrecognized %u-bit version of microMIPS opcode"),
11330 8 * forced_insn_length);
11331 insn_error = buf;
11332
11333 return;
11334 }
11335
11336 imm_expr.X_op = O_absent;
11337 imm2_expr.X_op = O_absent;
11338 offset_expr.X_op = O_absent;
11339 imm_reloc[0] = BFD_RELOC_UNUSED;
11340 imm_reloc[1] = BFD_RELOC_UNUSED;
11341 imm_reloc[2] = BFD_RELOC_UNUSED;
11342 offset_reloc[0] = BFD_RELOC_UNUSED;
11343 offset_reloc[1] = BFD_RELOC_UNUSED;
11344 offset_reloc[2] = BFD_RELOC_UNUSED;
11345
11346 create_insn (ip, insn);
11347 insn_error = NULL;
11348 argnum = 1;
11349 lastregno = 0xffffffff;
11350 for (args = insn->args;; ++args)
11351 {
11352 int is_mdmx;
11353
11354 s += strspn (s, " \t");
11355 is_mdmx = 0;
11356 switch (*args)
11357 {
11358 case '\0': /* end of args */
11359 if (*s == '\0')
11360 return;
11361 break;
11362
11363 case '2':
11364 /* DSP 2-bit unsigned immediate in bit 11 (for standard MIPS
11365 code) or 14 (for microMIPS code). */
11366 my_getExpression (&imm_expr, s);
11367 check_absolute_expr (ip, &imm_expr);
11368 if ((unsigned long) imm_expr.X_add_number != 1
11369 && (unsigned long) imm_expr.X_add_number != 3)
11370 {
11371 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
11372 (unsigned long) imm_expr.X_add_number);
11373 }
11374 INSERT_OPERAND (mips_opts.micromips,
11375 BP, *ip, imm_expr.X_add_number);
11376 imm_expr.X_op = O_absent;
11377 s = expr_end;
11378 continue;
11379
11380 case '3':
11381 /* DSP 3-bit unsigned immediate in bit 21 (for standard MIPS
11382 code) or 13 (for microMIPS code). */
11383 {
11384 unsigned long mask = (mips_opts.micromips
11385 ? MICROMIPSOP_MASK_SA3 : OP_MASK_SA3);
11386
11387 my_getExpression (&imm_expr, s);
11388 check_absolute_expr (ip, &imm_expr);
11389 if ((unsigned long) imm_expr.X_add_number > mask)
11390 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11391 mask, (unsigned long) imm_expr.X_add_number);
11392 INSERT_OPERAND (mips_opts.micromips,
11393 SA3, *ip, imm_expr.X_add_number);
11394 imm_expr.X_op = O_absent;
11395 s = expr_end;
11396 }
11397 continue;
11398
11399 case '4':
11400 /* DSP 4-bit unsigned immediate in bit 21 (for standard MIPS
11401 code) or 12 (for microMIPS code). */
11402 {
11403 unsigned long mask = (mips_opts.micromips
11404 ? MICROMIPSOP_MASK_SA4 : OP_MASK_SA4);
11405
11406 my_getExpression (&imm_expr, s);
11407 check_absolute_expr (ip, &imm_expr);
11408 if ((unsigned long) imm_expr.X_add_number > mask)
11409 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11410 mask, (unsigned long) imm_expr.X_add_number);
11411 INSERT_OPERAND (mips_opts.micromips,
11412 SA4, *ip, imm_expr.X_add_number);
11413 imm_expr.X_op = O_absent;
11414 s = expr_end;
11415 }
11416 continue;
11417
11418 case '5':
11419 /* DSP 8-bit unsigned immediate in bit 16 (for standard MIPS
11420 code) or 13 (for microMIPS code). */
11421 {
11422 unsigned long mask = (mips_opts.micromips
11423 ? MICROMIPSOP_MASK_IMM8 : OP_MASK_IMM8);
11424
11425 my_getExpression (&imm_expr, s);
11426 check_absolute_expr (ip, &imm_expr);
11427 if ((unsigned long) imm_expr.X_add_number > mask)
11428 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11429 mask, (unsigned long) imm_expr.X_add_number);
11430 INSERT_OPERAND (mips_opts.micromips,
11431 IMM8, *ip, imm_expr.X_add_number);
11432 imm_expr.X_op = O_absent;
11433 s = expr_end;
11434 }
11435 continue;
11436
11437 case '6':
11438 /* DSP 5-bit unsigned immediate in bit 21 (for standard MIPS
11439 code) or 16 (for microMIPS code). */
11440 {
11441 unsigned long mask = (mips_opts.micromips
11442 ? MICROMIPSOP_MASK_RS : OP_MASK_RS);
11443
11444 my_getExpression (&imm_expr, s);
11445 check_absolute_expr (ip, &imm_expr);
11446 if ((unsigned long) imm_expr.X_add_number > mask)
11447 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11448 mask, (unsigned long) imm_expr.X_add_number);
11449 INSERT_OPERAND (mips_opts.micromips,
11450 RS, *ip, imm_expr.X_add_number);
11451 imm_expr.X_op = O_absent;
11452 s = expr_end;
11453 }
11454 continue;
11455
11456 case '7':
11457 /* Four DSP accumulators in bit 11 (for standard MIPS code)
11458 or 14 (for microMIPS code). */
11459 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c'
11460 && s[3] >= '0' && s[3] <= '3')
11461 {
11462 regno = s[3] - '0';
11463 s += 4;
11464 INSERT_OPERAND (mips_opts.micromips, DSPACC, *ip, regno);
11465 continue;
11466 }
11467 else
11468 as_bad (_("Invalid dsp acc register"));
11469 break;
11470
11471 case '8':
11472 /* DSP 6-bit unsigned immediate in bit 11 (for standard MIPS
11473 code) or 14 (for microMIPS code). */
11474 {
11475 unsigned long mask = (mips_opts.micromips
11476 ? MICROMIPSOP_MASK_WRDSP
11477 : OP_MASK_WRDSP);
11478
11479 my_getExpression (&imm_expr, s);
11480 check_absolute_expr (ip, &imm_expr);
11481 if ((unsigned long) imm_expr.X_add_number > mask)
11482 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11483 mask, (unsigned long) imm_expr.X_add_number);
11484 INSERT_OPERAND (mips_opts.micromips,
11485 WRDSP, *ip, imm_expr.X_add_number);
11486 imm_expr.X_op = O_absent;
11487 s = expr_end;
11488 }
11489 continue;
11490
11491 case '9': /* Four DSP accumulators in bits 21,22. */
11492 gas_assert (!mips_opts.micromips);
11493 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c'
11494 && s[3] >= '0' && s[3] <= '3')
11495 {
11496 regno = s[3] - '0';
11497 s += 4;
11498 INSERT_OPERAND (0, DSPACC_S, *ip, regno);
11499 continue;
11500 }
11501 else
11502 as_bad (_("Invalid dsp acc register"));
11503 break;
11504
11505 case '0':
11506 /* DSP 6-bit signed immediate in bit 20 (for standard MIPS
11507 code) or 16 (for microMIPS code). */
11508 {
11509 long mask = (mips_opts.micromips
11510 ? MICROMIPSOP_MASK_DSPSFT : OP_MASK_DSPSFT);
11511
11512 my_getExpression (&imm_expr, s);
11513 check_absolute_expr (ip, &imm_expr);
11514 min_range = -((mask + 1) >> 1);
11515 max_range = ((mask + 1) >> 1) - 1;
11516 if (imm_expr.X_add_number < min_range
11517 || imm_expr.X_add_number > max_range)
11518 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11519 (long) min_range, (long) max_range,
11520 (long) imm_expr.X_add_number);
11521 INSERT_OPERAND (mips_opts.micromips,
11522 DSPSFT, *ip, imm_expr.X_add_number);
11523 imm_expr.X_op = O_absent;
11524 s = expr_end;
11525 }
11526 continue;
11527
11528 case '\'': /* DSP 6-bit unsigned immediate in bit 16. */
11529 gas_assert (!mips_opts.micromips);
11530 my_getExpression (&imm_expr, s);
11531 check_absolute_expr (ip, &imm_expr);
11532 if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
11533 {
11534 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
11535 OP_MASK_RDDSP,
11536 (unsigned long) imm_expr.X_add_number);
11537 }
11538 INSERT_OPERAND (0, RDDSP, *ip, imm_expr.X_add_number);
11539 imm_expr.X_op = O_absent;
11540 s = expr_end;
11541 continue;
11542
11543 case ':': /* DSP 7-bit signed immediate in bit 19. */
11544 gas_assert (!mips_opts.micromips);
11545 my_getExpression (&imm_expr, s);
11546 check_absolute_expr (ip, &imm_expr);
11547 min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
11548 max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
11549 if (imm_expr.X_add_number < min_range ||
11550 imm_expr.X_add_number > max_range)
11551 {
11552 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11553 (long) min_range, (long) max_range,
11554 (long) imm_expr.X_add_number);
11555 }
11556 INSERT_OPERAND (0, DSPSFT_7, *ip, imm_expr.X_add_number);
11557 imm_expr.X_op = O_absent;
11558 s = expr_end;
11559 continue;
11560
11561 case '@': /* DSP 10-bit signed immediate in bit 16. */
11562 {
11563 long mask = (mips_opts.micromips
11564 ? MICROMIPSOP_MASK_IMM10 : OP_MASK_IMM10);
11565
11566 my_getExpression (&imm_expr, s);
11567 check_absolute_expr (ip, &imm_expr);
11568 min_range = -((mask + 1) >> 1);
11569 max_range = ((mask + 1) >> 1) - 1;
11570 if (imm_expr.X_add_number < min_range
11571 || imm_expr.X_add_number > max_range)
11572 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11573 (long) min_range, (long) max_range,
11574 (long) imm_expr.X_add_number);
11575 INSERT_OPERAND (mips_opts.micromips,
11576 IMM10, *ip, imm_expr.X_add_number);
11577 imm_expr.X_op = O_absent;
11578 s = expr_end;
11579 }
11580 continue;
11581
11582 case '^': /* DSP 5-bit unsigned immediate in bit 11. */
11583 gas_assert (mips_opts.micromips);
11584 my_getExpression (&imm_expr, s);
11585 check_absolute_expr (ip, &imm_expr);
11586 if (imm_expr.X_add_number & ~MICROMIPSOP_MASK_RD)
11587 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
11588 MICROMIPSOP_MASK_RD,
11589 (unsigned long) imm_expr.X_add_number);
11590 INSERT_OPERAND (1, RD, *ip, imm_expr.X_add_number);
11591 imm_expr.X_op = O_absent;
11592 s = expr_end;
11593 continue;
11594
11595 case '!': /* MT usermode flag bit. */
11596 gas_assert (!mips_opts.micromips);
11597 my_getExpression (&imm_expr, s);
11598 check_absolute_expr (ip, &imm_expr);
11599 if (imm_expr.X_add_number & ~OP_MASK_MT_U)
11600 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
11601 (unsigned long) imm_expr.X_add_number);
11602 INSERT_OPERAND (0, MT_U, *ip, imm_expr.X_add_number);
11603 imm_expr.X_op = O_absent;
11604 s = expr_end;
11605 continue;
11606
11607 case '$': /* MT load high flag bit. */
11608 gas_assert (!mips_opts.micromips);
11609 my_getExpression (&imm_expr, s);
11610 check_absolute_expr (ip, &imm_expr);
11611 if (imm_expr.X_add_number & ~OP_MASK_MT_H)
11612 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
11613 (unsigned long) imm_expr.X_add_number);
11614 INSERT_OPERAND (0, MT_H, *ip, imm_expr.X_add_number);
11615 imm_expr.X_op = O_absent;
11616 s = expr_end;
11617 continue;
11618
11619 case '*': /* Four DSP accumulators in bits 18,19. */
11620 gas_assert (!mips_opts.micromips);
11621 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
11622 s[3] >= '0' && s[3] <= '3')
11623 {
11624 regno = s[3] - '0';
11625 s += 4;
11626 INSERT_OPERAND (0, MTACC_T, *ip, regno);
11627 continue;
11628 }
11629 else
11630 as_bad (_("Invalid dsp/smartmips acc register"));
11631 break;
11632
11633 case '&': /* Four DSP accumulators in bits 13,14. */
11634 gas_assert (!mips_opts.micromips);
11635 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
11636 s[3] >= '0' && s[3] <= '3')
11637 {
11638 regno = s[3] - '0';
11639 s += 4;
11640 INSERT_OPERAND (0, MTACC_D, *ip, regno);
11641 continue;
11642 }
11643 else
11644 as_bad (_("Invalid dsp/smartmips acc register"));
11645 break;
11646
11647 case '\\': /* 3-bit bit position. */
11648 {
11649 unsigned long mask = (mips_opts.micromips
11650 ? MICROMIPSOP_MASK_3BITPOS
11651 : OP_MASK_3BITPOS);
11652
11653 my_getExpression (&imm_expr, s);
11654 check_absolute_expr (ip, &imm_expr);
11655 if ((unsigned long) imm_expr.X_add_number > mask)
11656 as_warn (_("Bit position for %s not in range 0..%lu (%lu)"),
11657 ip->insn_mo->name,
11658 mask, (unsigned long) imm_expr.X_add_number);
11659 INSERT_OPERAND (mips_opts.micromips,
11660 3BITPOS, *ip, imm_expr.X_add_number);
11661 imm_expr.X_op = O_absent;
11662 s = expr_end;
11663 }
11664 continue;
11665
11666 case ',':
11667 ++argnum;
11668 if (*s++ == *args)
11669 continue;
11670 s--;
11671 switch (*++args)
11672 {
11673 case 'r':
11674 case 'v':
11675 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
11676 continue;
11677
11678 case 'w':
11679 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
11680 continue;
11681
11682 case 'W':
11683 gas_assert (!mips_opts.micromips);
11684 INSERT_OPERAND (0, FT, *ip, lastregno);
11685 continue;
11686
11687 case 'V':
11688 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
11689 continue;
11690 }
11691 break;
11692
11693 case '(':
11694 /* Handle optional base register.
11695 Either the base register is omitted or
11696 we must have a left paren. */
11697 /* This is dependent on the next operand specifier
11698 is a base register specification. */
11699 gas_assert (args[1] == 'b'
11700 || (mips_opts.micromips
11701 && args[1] == 'm'
11702 && (args[2] == 'l' || args[2] == 'n'
11703 || args[2] == 's' || args[2] == 'a')));
11704 if (*s == '\0' && args[1] == 'b')
11705 return;
11706 /* Fall through. */
11707
11708 case ')': /* These must match exactly. */
11709 if (*s++ == *args)
11710 continue;
11711 break;
11712
11713 case '+': /* Opcode extension character. */
11714 switch (*++args)
11715 {
11716 case '1': /* UDI immediates. */
11717 case '2':
11718 case '3':
11719 case '4':
11720 gas_assert (!mips_opts.micromips);
11721 {
11722 const struct mips_immed *imm = mips_immed;
11723
11724 while (imm->type && imm->type != *args)
11725 ++imm;
11726 if (! imm->type)
11727 abort ();
11728 my_getExpression (&imm_expr, s);
11729 check_absolute_expr (ip, &imm_expr);
11730 if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
11731 {
11732 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
11733 imm->desc ? imm->desc : ip->insn_mo->name,
11734 (unsigned long) imm_expr.X_add_number,
11735 (unsigned long) imm_expr.X_add_number);
11736 imm_expr.X_add_number &= imm->mask;
11737 }
11738 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
11739 << imm->shift);
11740 imm_expr.X_op = O_absent;
11741 s = expr_end;
11742 }
11743 continue;
11744
11745 case 'J': /* 10-bit hypcall code. */
11746 gas_assert (!mips_opts.micromips);
11747 {
11748 unsigned long mask = OP_MASK_CODE10;
11749
11750 my_getExpression (&imm_expr, s);
11751 check_absolute_expr (ip, &imm_expr);
11752 if ((unsigned long) imm_expr.X_add_number > mask)
11753 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
11754 ip->insn_mo->name,
11755 mask, (unsigned long) imm_expr.X_add_number);
11756 INSERT_OPERAND (0, CODE10, *ip, imm_expr.X_add_number);
11757 imm_expr.X_op = O_absent;
11758 s = expr_end;
11759 }
11760 continue;
11761
11762 case 'A': /* ins/ext position, becomes LSB. */
11763 limlo = 0;
11764 limhi = 31;
11765 goto do_lsb;
11766 case 'E':
11767 limlo = 32;
11768 limhi = 63;
11769 goto do_lsb;
11770 do_lsb:
11771 my_getExpression (&imm_expr, s);
11772 check_absolute_expr (ip, &imm_expr);
11773 if ((unsigned long) imm_expr.X_add_number < limlo
11774 || (unsigned long) imm_expr.X_add_number > limhi)
11775 {
11776 as_bad (_("Improper position (%lu)"),
11777 (unsigned long) imm_expr.X_add_number);
11778 imm_expr.X_add_number = limlo;
11779 }
11780 lastpos = imm_expr.X_add_number;
11781 INSERT_OPERAND (mips_opts.micromips,
11782 EXTLSB, *ip, imm_expr.X_add_number);
11783 imm_expr.X_op = O_absent;
11784 s = expr_end;
11785 continue;
11786
11787 case 'B': /* ins size, becomes MSB. */
11788 limlo = 1;
11789 limhi = 32;
11790 goto do_msb;
11791 case 'F':
11792 limlo = 33;
11793 limhi = 64;
11794 goto do_msb;
11795 do_msb:
11796 my_getExpression (&imm_expr, s);
11797 check_absolute_expr (ip, &imm_expr);
11798 /* Check for negative input so that small negative numbers
11799 will not succeed incorrectly. The checks against
11800 (pos+size) transitively check "size" itself,
11801 assuming that "pos" is reasonable. */
11802 if ((long) imm_expr.X_add_number < 0
11803 || ((unsigned long) imm_expr.X_add_number
11804 + lastpos) < limlo
11805 || ((unsigned long) imm_expr.X_add_number
11806 + lastpos) > limhi)
11807 {
11808 as_bad (_("Improper insert size (%lu, position %lu)"),
11809 (unsigned long) imm_expr.X_add_number,
11810 (unsigned long) lastpos);
11811 imm_expr.X_add_number = limlo - lastpos;
11812 }
11813 INSERT_OPERAND (mips_opts.micromips, INSMSB, *ip,
11814 lastpos + imm_expr.X_add_number - 1);
11815 imm_expr.X_op = O_absent;
11816 s = expr_end;
11817 continue;
11818
11819 case 'C': /* ext size, becomes MSBD. */
11820 limlo = 1;
11821 limhi = 32;
11822 sizelo = 1;
11823 goto do_msbd;
11824 case 'G':
11825 limlo = 33;
11826 limhi = 64;
11827 sizelo = 33;
11828 goto do_msbd;
11829 case 'H':
11830 limlo = 33;
11831 limhi = 64;
11832 sizelo = 1;
11833 goto do_msbd;
11834 do_msbd:
11835 my_getExpression (&imm_expr, s);
11836 check_absolute_expr (ip, &imm_expr);
11837 /* The checks against (pos+size) don't transitively check
11838 "size" itself, assuming that "pos" is reasonable.
11839 We also need to check the lower bound of "size". */
11840 if ((long) imm_expr.X_add_number < sizelo
11841 || ((unsigned long) imm_expr.X_add_number
11842 + lastpos) < limlo
11843 || ((unsigned long) imm_expr.X_add_number
11844 + lastpos) > limhi)
11845 {
11846 as_bad (_("Improper extract size (%lu, position %lu)"),
11847 (unsigned long) imm_expr.X_add_number,
11848 (unsigned long) lastpos);
11849 imm_expr.X_add_number = limlo - lastpos;
11850 }
11851 INSERT_OPERAND (mips_opts.micromips,
11852 EXTMSBD, *ip, imm_expr.X_add_number - 1);
11853 imm_expr.X_op = O_absent;
11854 s = expr_end;
11855 continue;
11856
11857 case 'I':
11858 /* "+I" is like "I", except that imm2_expr is used. */
11859 my_getExpression (&imm2_expr, s);
11860 if (imm2_expr.X_op != O_big
11861 && imm2_expr.X_op != O_constant)
11862 insn_error = _("absolute expression required");
11863 if (HAVE_32BIT_GPRS)
11864 normalize_constant_expr (&imm2_expr);
11865 s = expr_end;
11866 continue;
11867
11868 case 't': /* Coprocessor register number. */
11869 gas_assert (!mips_opts.micromips);
11870 if (s[0] == '$' && ISDIGIT (s[1]))
11871 {
11872 ++s;
11873 regno = 0;
11874 do
11875 {
11876 regno *= 10;
11877 regno += *s - '0';
11878 ++s;
11879 }
11880 while (ISDIGIT (*s));
11881 if (regno > 31)
11882 as_bad (_("Invalid register number (%d)"), regno);
11883 else
11884 {
11885 INSERT_OPERAND (0, RT, *ip, regno);
11886 continue;
11887 }
11888 }
11889 else
11890 as_bad (_("Invalid coprocessor 0 register number"));
11891 break;
11892
11893 case 'x':
11894 /* bbit[01] and bbit[01]32 bit index. Give error if index
11895 is not in the valid range. */
11896 gas_assert (!mips_opts.micromips);
11897 my_getExpression (&imm_expr, s);
11898 check_absolute_expr (ip, &imm_expr);
11899 if ((unsigned) imm_expr.X_add_number > 31)
11900 {
11901 as_bad (_("Improper bit index (%lu)"),
11902 (unsigned long) imm_expr.X_add_number);
11903 imm_expr.X_add_number = 0;
11904 }
11905 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number);
11906 imm_expr.X_op = O_absent;
11907 s = expr_end;
11908 continue;
11909
11910 case 'X':
11911 /* bbit[01] bit index when bbit is used but we generate
11912 bbit[01]32 because the index is over 32. Move to the
11913 next candidate if index is not in the valid range. */
11914 gas_assert (!mips_opts.micromips);
11915 my_getExpression (&imm_expr, s);
11916 check_absolute_expr (ip, &imm_expr);
11917 if ((unsigned) imm_expr.X_add_number < 32
11918 || (unsigned) imm_expr.X_add_number > 63)
11919 break;
11920 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number - 32);
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. Give error
11927 if it's not in the valid range. */
11928 gas_assert (!mips_opts.micromips);
11929 my_getExpression (&imm_expr, s);
11930 check_absolute_expr (ip, &imm_expr);
11931 if ((unsigned) imm_expr.X_add_number > 31)
11932 {
11933 as_bad (_("Improper position (%lu)"),
11934 (unsigned long) imm_expr.X_add_number);
11935 imm_expr.X_add_number = 0;
11936 }
11937 lastpos = imm_expr.X_add_number;
11938 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number);
11939 imm_expr.X_op = O_absent;
11940 s = expr_end;
11941 continue;
11942
11943 case 'P':
11944 /* cins, cins32, exts and exts32 position field. Move to
11945 the next candidate if it's not in the valid range. */
11946 gas_assert (!mips_opts.micromips);
11947 my_getExpression (&imm_expr, s);
11948 check_absolute_expr (ip, &imm_expr);
11949 if ((unsigned) imm_expr.X_add_number < 32
11950 || (unsigned) imm_expr.X_add_number > 63)
11951 break;
11952 lastpos = imm_expr.X_add_number;
11953 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number - 32);
11954 imm_expr.X_op = O_absent;
11955 s = expr_end;
11956 continue;
11957
11958 case 's':
11959 /* cins32 and exts32 length-minus-one field. */
11960 gas_assert (!mips_opts.micromips);
11961 my_getExpression (&imm_expr, s);
11962 check_absolute_expr (ip, &imm_expr);
11963 if ((unsigned long) imm_expr.X_add_number > 31
11964 || (unsigned long) imm_expr.X_add_number + lastpos > 31)
11965 {
11966 as_bad (_("Improper size (%lu)"),
11967 (unsigned long) imm_expr.X_add_number);
11968 imm_expr.X_add_number = 0;
11969 }
11970 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
11971 imm_expr.X_op = O_absent;
11972 s = expr_end;
11973 continue;
11974
11975 case 'S':
11976 /* cins/exts length-minus-one field. */
11977 gas_assert (!mips_opts.micromips);
11978 my_getExpression (&imm_expr, s);
11979 check_absolute_expr (ip, &imm_expr);
11980 if ((unsigned long) imm_expr.X_add_number > 31
11981 || (unsigned long) imm_expr.X_add_number + lastpos > 63)
11982 {
11983 as_bad (_("Improper size (%lu)"),
11984 (unsigned long) imm_expr.X_add_number);
11985 imm_expr.X_add_number = 0;
11986 }
11987 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
11988 imm_expr.X_op = O_absent;
11989 s = expr_end;
11990 continue;
11991
11992 case 'Q':
11993 /* seqi/snei immediate field. */
11994 gas_assert (!mips_opts.micromips);
11995 my_getExpression (&imm_expr, s);
11996 check_absolute_expr (ip, &imm_expr);
11997 if ((long) imm_expr.X_add_number < -512
11998 || (long) imm_expr.X_add_number >= 512)
11999 {
12000 as_bad (_("Improper immediate (%ld)"),
12001 (long) imm_expr.X_add_number);
12002 imm_expr.X_add_number = 0;
12003 }
12004 INSERT_OPERAND (0, SEQI, *ip, imm_expr.X_add_number);
12005 imm_expr.X_op = O_absent;
12006 s = expr_end;
12007 continue;
12008
12009 case 'a': /* 8-bit signed offset in bit 6 */
12010 gas_assert (!mips_opts.micromips);
12011 my_getExpression (&imm_expr, s);
12012 check_absolute_expr (ip, &imm_expr);
12013 min_range = -((OP_MASK_OFFSET_A + 1) >> 1);
12014 max_range = ((OP_MASK_OFFSET_A + 1) >> 1) - 1;
12015 if (imm_expr.X_add_number < min_range
12016 || imm_expr.X_add_number > max_range)
12017 {
12018 as_bad (_("Offset not in range %ld..%ld (%ld)"),
12019 (long) min_range, (long) max_range,
12020 (long) imm_expr.X_add_number);
12021 }
12022 INSERT_OPERAND (0, OFFSET_A, *ip, imm_expr.X_add_number);
12023 imm_expr.X_op = O_absent;
12024 s = expr_end;
12025 continue;
12026
12027 case 'b': /* 8-bit signed offset in bit 3 */
12028 gas_assert (!mips_opts.micromips);
12029 my_getExpression (&imm_expr, s);
12030 check_absolute_expr (ip, &imm_expr);
12031 min_range = -((OP_MASK_OFFSET_B + 1) >> 1);
12032 max_range = ((OP_MASK_OFFSET_B + 1) >> 1) - 1;
12033 if (imm_expr.X_add_number < min_range
12034 || imm_expr.X_add_number > max_range)
12035 {
12036 as_bad (_("Offset not in range %ld..%ld (%ld)"),
12037 (long) min_range, (long) max_range,
12038 (long) imm_expr.X_add_number);
12039 }
12040 INSERT_OPERAND (0, OFFSET_B, *ip, imm_expr.X_add_number);
12041 imm_expr.X_op = O_absent;
12042 s = expr_end;
12043 continue;
12044
12045 case 'c': /* 9-bit signed offset in bit 6 */
12046 gas_assert (!mips_opts.micromips);
12047 my_getExpression (&imm_expr, s);
12048 check_absolute_expr (ip, &imm_expr);
12049 min_range = -((OP_MASK_OFFSET_C + 1) >> 1);
12050 max_range = ((OP_MASK_OFFSET_C + 1) >> 1) - 1;
12051 /* We check the offset range before adjusted. */
12052 min_range <<= 4;
12053 max_range <<= 4;
12054 if (imm_expr.X_add_number < min_range
12055 || imm_expr.X_add_number > max_range)
12056 {
12057 as_bad (_("Offset not in range %ld..%ld (%ld)"),
12058 (long) min_range, (long) max_range,
12059 (long) imm_expr.X_add_number);
12060 }
12061 if (imm_expr.X_add_number & 0xf)
12062 {
12063 as_bad (_("Offset not 16 bytes alignment (%ld)"),
12064 (long) imm_expr.X_add_number);
12065 }
12066 /* Right shift 4 bits to adjust the offset operand. */
12067 INSERT_OPERAND (0, OFFSET_C, *ip,
12068 imm_expr.X_add_number >> 4);
12069 imm_expr.X_op = O_absent;
12070 s = expr_end;
12071 continue;
12072
12073 case 'z':
12074 gas_assert (!mips_opts.micromips);
12075 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
12076 break;
12077 if (regno == AT && mips_opts.at)
12078 {
12079 if (mips_opts.at == ATREG)
12080 as_warn (_("used $at without \".set noat\""));
12081 else
12082 as_warn (_("used $%u with \".set at=$%u\""),
12083 regno, mips_opts.at);
12084 }
12085 INSERT_OPERAND (0, RZ, *ip, regno);
12086 continue;
12087
12088 case 'Z':
12089 gas_assert (!mips_opts.micromips);
12090 if (!reg_lookup (&s, RTYPE_FPU, &regno))
12091 break;
12092 INSERT_OPERAND (0, FZ, *ip, regno);
12093 continue;
12094
12095 case 'i':
12096 goto jump;
12097
12098 case 'j':
12099 {
12100 int shift = 8;
12101 size_t i;
12102 /* Check whether there is only a single bracketed expression
12103 left. If so, it must be the base register and the
12104 constant must be zero. */
12105 if (*s == '(' && strchr (s + 1, '(') == 0)
12106 continue;
12107
12108 /* If this value won't fit into the offset, then go find
12109 a macro that will generate a 16- or 32-bit offset code
12110 pattern. */
12111 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
12112 if ((i == 0 && (imm_expr.X_op != O_constant
12113 || imm_expr.X_add_number >= 1 << shift
12114 || imm_expr.X_add_number < -1 << shift))
12115 || i > 0)
12116 {
12117 imm_expr.X_op = O_absent;
12118 break;
12119 }
12120 INSERT_OPERAND (mips_opts.micromips, EVAOFFSET, *ip,
12121 imm_expr.X_add_number);
12122 imm_expr.X_op = O_absent;
12123 s = expr_end;
12124 }
12125 continue;
12126
12127 default:
12128 as_bad (_("Internal error: bad %s opcode "
12129 "(unknown extension operand type `+%c'): %s %s"),
12130 mips_opts.micromips ? "microMIPS" : "MIPS",
12131 *args, insn->name, insn->args);
12132 /* Further processing is fruitless. */
12133 return;
12134 }
12135 break;
12136
12137 case '.': /* 10-bit offset. */
12138 gas_assert (mips_opts.micromips);
12139 case '~': /* 12-bit offset. */
12140 {
12141 int shift = *args == '.' ? 9 : 11;
12142 size_t i;
12143
12144 /* Check whether there is only a single bracketed expression
12145 left. If so, it must be the base register and the
12146 constant must be zero. */
12147 if (*s == '(' && strchr (s + 1, '(') == 0)
12148 continue;
12149
12150 /* If this value won't fit into the offset, then go find
12151 a macro that will generate a 16- or 32-bit offset code
12152 pattern. */
12153 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
12154 if ((i == 0 && (imm_expr.X_op != O_constant
12155 || imm_expr.X_add_number >= 1 << shift
12156 || imm_expr.X_add_number < -1 << shift))
12157 || i > 0)
12158 {
12159 imm_expr.X_op = O_absent;
12160 break;
12161 }
12162 if (shift == 9)
12163 INSERT_OPERAND (1, OFFSET10, *ip, imm_expr.X_add_number);
12164 else
12165 INSERT_OPERAND (mips_opts.micromips,
12166 OFFSET12, *ip, imm_expr.X_add_number);
12167 imm_expr.X_op = O_absent;
12168 s = expr_end;
12169 }
12170 continue;
12171
12172 case '<': /* must be at least one digit */
12173 /*
12174 * According to the manual, if the shift amount is greater
12175 * than 31 or less than 0, then the shift amount should be
12176 * mod 32. In reality the mips assembler issues an error.
12177 * We issue a warning and mask out all but the low 5 bits.
12178 */
12179 my_getExpression (&imm_expr, s);
12180 check_absolute_expr (ip, &imm_expr);
12181 if ((unsigned long) imm_expr.X_add_number > 31)
12182 as_warn (_("Improper shift amount (%lu)"),
12183 (unsigned long) imm_expr.X_add_number);
12184 INSERT_OPERAND (mips_opts.micromips,
12185 SHAMT, *ip, imm_expr.X_add_number);
12186 imm_expr.X_op = O_absent;
12187 s = expr_end;
12188 continue;
12189
12190 case '>': /* shift amount minus 32 */
12191 my_getExpression (&imm_expr, s);
12192 check_absolute_expr (ip, &imm_expr);
12193 if ((unsigned long) imm_expr.X_add_number < 32
12194 || (unsigned long) imm_expr.X_add_number > 63)
12195 break;
12196 INSERT_OPERAND (mips_opts.micromips,
12197 SHAMT, *ip, imm_expr.X_add_number - 32);
12198 imm_expr.X_op = O_absent;
12199 s = expr_end;
12200 continue;
12201
12202 case 'k': /* CACHE code. */
12203 case 'h': /* PREFX code. */
12204 case '1': /* SYNC type. */
12205 my_getExpression (&imm_expr, s);
12206 check_absolute_expr (ip, &imm_expr);
12207 if ((unsigned long) imm_expr.X_add_number > 31)
12208 as_warn (_("Invalid value for `%s' (%lu)"),
12209 ip->insn_mo->name,
12210 (unsigned long) imm_expr.X_add_number);
12211 switch (*args)
12212 {
12213 case 'k':
12214 if (mips_fix_cn63xxp1
12215 && !mips_opts.micromips
12216 && strcmp ("pref", insn->name) == 0)
12217 switch (imm_expr.X_add_number)
12218 {
12219 case 5:
12220 case 25:
12221 case 26:
12222 case 27:
12223 case 28:
12224 case 29:
12225 case 30:
12226 case 31: /* These are ok. */
12227 break;
12228
12229 default: /* The rest must be changed to 28. */
12230 imm_expr.X_add_number = 28;
12231 break;
12232 }
12233 INSERT_OPERAND (mips_opts.micromips,
12234 CACHE, *ip, imm_expr.X_add_number);
12235 break;
12236 case 'h':
12237 INSERT_OPERAND (mips_opts.micromips,
12238 PREFX, *ip, imm_expr.X_add_number);
12239 break;
12240 case '1':
12241 INSERT_OPERAND (mips_opts.micromips,
12242 STYPE, *ip, imm_expr.X_add_number);
12243 break;
12244 }
12245 imm_expr.X_op = O_absent;
12246 s = expr_end;
12247 continue;
12248
12249 case 'c': /* BREAK code. */
12250 {
12251 unsigned long mask = (mips_opts.micromips
12252 ? MICROMIPSOP_MASK_CODE
12253 : OP_MASK_CODE);
12254
12255 my_getExpression (&imm_expr, s);
12256 check_absolute_expr (ip, &imm_expr);
12257 if ((unsigned long) imm_expr.X_add_number > mask)
12258 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
12259 ip->insn_mo->name,
12260 mask, (unsigned long) imm_expr.X_add_number);
12261 INSERT_OPERAND (mips_opts.micromips,
12262 CODE, *ip, imm_expr.X_add_number);
12263 imm_expr.X_op = O_absent;
12264 s = expr_end;
12265 }
12266 continue;
12267
12268 case 'q': /* Lower BREAK code. */
12269 {
12270 unsigned long mask = (mips_opts.micromips
12271 ? MICROMIPSOP_MASK_CODE2
12272 : OP_MASK_CODE2);
12273
12274 my_getExpression (&imm_expr, s);
12275 check_absolute_expr (ip, &imm_expr);
12276 if ((unsigned long) imm_expr.X_add_number > mask)
12277 as_warn (_("Lower code for %s not in range 0..%lu (%lu)"),
12278 ip->insn_mo->name,
12279 mask, (unsigned long) imm_expr.X_add_number);
12280 INSERT_OPERAND (mips_opts.micromips,
12281 CODE2, *ip, imm_expr.X_add_number);
12282 imm_expr.X_op = O_absent;
12283 s = expr_end;
12284 }
12285 continue;
12286
12287 case 'B': /* 20- or 10-bit syscall/break/wait code. */
12288 {
12289 unsigned long mask = (mips_opts.micromips
12290 ? MICROMIPSOP_MASK_CODE10
12291 : OP_MASK_CODE20);
12292
12293 my_getExpression (&imm_expr, s);
12294 check_absolute_expr (ip, &imm_expr);
12295 if ((unsigned long) imm_expr.X_add_number > mask)
12296 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
12297 ip->insn_mo->name,
12298 mask, (unsigned long) imm_expr.X_add_number);
12299 if (mips_opts.micromips)
12300 INSERT_OPERAND (1, CODE10, *ip, imm_expr.X_add_number);
12301 else
12302 INSERT_OPERAND (0, CODE20, *ip, imm_expr.X_add_number);
12303 imm_expr.X_op = O_absent;
12304 s = expr_end;
12305 }
12306 continue;
12307
12308 case 'C': /* 25- or 23-bit coprocessor code. */
12309 {
12310 unsigned long mask = (mips_opts.micromips
12311 ? MICROMIPSOP_MASK_COPZ
12312 : OP_MASK_COPZ);
12313
12314 my_getExpression (&imm_expr, s);
12315 check_absolute_expr (ip, &imm_expr);
12316 if ((unsigned long) imm_expr.X_add_number > mask)
12317 as_warn (_("Coproccesor code > %u bits (%lu)"),
12318 mips_opts.micromips ? 23U : 25U,
12319 (unsigned long) imm_expr.X_add_number);
12320 INSERT_OPERAND (mips_opts.micromips,
12321 COPZ, *ip, imm_expr.X_add_number);
12322 imm_expr.X_op = O_absent;
12323 s = expr_end;
12324 }
12325 continue;
12326
12327 case 'J': /* 19-bit WAIT code. */
12328 gas_assert (!mips_opts.micromips);
12329 my_getExpression (&imm_expr, s);
12330 check_absolute_expr (ip, &imm_expr);
12331 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
12332 {
12333 as_warn (_("Illegal 19-bit code (%lu)"),
12334 (unsigned long) imm_expr.X_add_number);
12335 imm_expr.X_add_number &= OP_MASK_CODE19;
12336 }
12337 INSERT_OPERAND (0, CODE19, *ip, imm_expr.X_add_number);
12338 imm_expr.X_op = O_absent;
12339 s = expr_end;
12340 continue;
12341
12342 case 'P': /* Performance register. */
12343 gas_assert (!mips_opts.micromips);
12344 my_getExpression (&imm_expr, s);
12345 check_absolute_expr (ip, &imm_expr);
12346 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
12347 as_warn (_("Invalid performance register (%lu)"),
12348 (unsigned long) imm_expr.X_add_number);
12349 if (imm_expr.X_add_number != 0 && mips_opts.arch == CPU_R5900
12350 && (!strcmp(insn->name,"mfps") || !strcmp(insn->name,"mtps")))
12351 as_warn (_("Invalid performance register (%lu)"),
12352 (unsigned long) imm_expr.X_add_number);
12353 INSERT_OPERAND (0, PERFREG, *ip, imm_expr.X_add_number);
12354 imm_expr.X_op = O_absent;
12355 s = expr_end;
12356 continue;
12357
12358 case 'G': /* Coprocessor destination register. */
12359 {
12360 unsigned long opcode = ip->insn_opcode;
12361 unsigned long mask;
12362 unsigned int types;
12363 int cop0;
12364
12365 if (mips_opts.micromips)
12366 {
12367 mask = ~((MICROMIPSOP_MASK_RT << MICROMIPSOP_SH_RT)
12368 | (MICROMIPSOP_MASK_RS << MICROMIPSOP_SH_RS)
12369 | (MICROMIPSOP_MASK_SEL << MICROMIPSOP_SH_SEL));
12370 opcode &= mask;
12371 switch (opcode)
12372 {
12373 case 0x000000fc: /* mfc0 */
12374 case 0x000002fc: /* mtc0 */
12375 case 0x580000fc: /* dmfc0 */
12376 case 0x580002fc: /* dmtc0 */
12377 cop0 = 1;
12378 break;
12379 default:
12380 cop0 = 0;
12381 break;
12382 }
12383 }
12384 else
12385 {
12386 opcode = (opcode >> OP_SH_OP) & OP_MASK_OP;
12387 cop0 = opcode == OP_OP_COP0;
12388 }
12389 types = RTYPE_NUM | (cop0 ? RTYPE_CP0 : RTYPE_GP);
12390 ok = reg_lookup (&s, types, &regno);
12391 if (mips_opts.micromips)
12392 INSERT_OPERAND (1, RS, *ip, regno);
12393 else
12394 INSERT_OPERAND (0, RD, *ip, regno);
12395 if (ok)
12396 {
12397 lastregno = regno;
12398 continue;
12399 }
12400 }
12401 break;
12402
12403 case 'y': /* ALNV.PS source register. */
12404 gas_assert (mips_opts.micromips);
12405 goto do_reg;
12406 case 'x': /* Ignore register name. */
12407 case 'U': /* Destination register (CLO/CLZ). */
12408 case 'g': /* Coprocessor destination register. */
12409 gas_assert (!mips_opts.micromips);
12410 case 'b': /* Base register. */
12411 case 'd': /* Destination register. */
12412 case 's': /* Source register. */
12413 case 't': /* Target register. */
12414 case 'r': /* Both target and source. */
12415 case 'v': /* Both dest and source. */
12416 case 'w': /* Both dest and target. */
12417 case 'E': /* Coprocessor target register. */
12418 case 'K': /* RDHWR destination register. */
12419 case 'z': /* Must be zero register. */
12420 do_reg:
12421 s_reset = s;
12422 if (*args == 'E' || *args == 'K')
12423 ok = reg_lookup (&s, RTYPE_NUM, &regno);
12424 else
12425 {
12426 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
12427 if (regno == AT && mips_opts.at)
12428 {
12429 if (mips_opts.at == ATREG)
12430 as_warn (_("Used $at without \".set noat\""));
12431 else
12432 as_warn (_("Used $%u with \".set at=$%u\""),
12433 regno, mips_opts.at);
12434 }
12435 }
12436 if (ok)
12437 {
12438 c = *args;
12439 if (*s == ' ')
12440 ++s;
12441 if (args[1] != *s)
12442 {
12443 if (c == 'r' || c == 'v' || c == 'w')
12444 {
12445 regno = lastregno;
12446 s = s_reset;
12447 ++args;
12448 }
12449 }
12450 /* 'z' only matches $0. */
12451 if (c == 'z' && regno != 0)
12452 break;
12453
12454 if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
12455 {
12456 if (regno == lastregno)
12457 {
12458 insn_error
12459 = _("Source and destination must be different");
12460 continue;
12461 }
12462 if (regno == 31 && lastregno == 0xffffffff)
12463 {
12464 insn_error
12465 = _("A destination register must be supplied");
12466 continue;
12467 }
12468 }
12469 /* Now that we have assembled one operand, we use the args
12470 string to figure out where it goes in the instruction. */
12471 switch (c)
12472 {
12473 case 'r':
12474 case 's':
12475 case 'v':
12476 case 'b':
12477 INSERT_OPERAND (mips_opts.micromips, RS, *ip, regno);
12478 break;
12479
12480 case 'K':
12481 if (mips_opts.micromips)
12482 INSERT_OPERAND (1, RS, *ip, regno);
12483 else
12484 INSERT_OPERAND (0, RD, *ip, regno);
12485 break;
12486
12487 case 'd':
12488 case 'g':
12489 INSERT_OPERAND (mips_opts.micromips, RD, *ip, regno);
12490 break;
12491
12492 case 'U':
12493 gas_assert (!mips_opts.micromips);
12494 INSERT_OPERAND (0, RD, *ip, regno);
12495 INSERT_OPERAND (0, RT, *ip, regno);
12496 break;
12497
12498 case 'w':
12499 case 't':
12500 case 'E':
12501 INSERT_OPERAND (mips_opts.micromips, RT, *ip, regno);
12502 break;
12503
12504 case 'y':
12505 gas_assert (mips_opts.micromips);
12506 INSERT_OPERAND (1, RS3, *ip, regno);
12507 break;
12508
12509 case 'x':
12510 /* This case exists because on the r3000 trunc
12511 expands into a macro which requires a gp
12512 register. On the r6000 or r4000 it is
12513 assembled into a single instruction which
12514 ignores the register. Thus the insn version
12515 is MIPS_ISA2 and uses 'x', and the macro
12516 version is MIPS_ISA1 and uses 't'. */
12517 break;
12518
12519 case 'z':
12520 /* This case is for the div instruction, which
12521 acts differently if the destination argument
12522 is $0. This only matches $0, and is checked
12523 outside the switch. */
12524 break;
12525 }
12526 lastregno = regno;
12527 continue;
12528 }
12529 switch (*args++)
12530 {
12531 case 'r':
12532 case 'v':
12533 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
12534 continue;
12535
12536 case 'w':
12537 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
12538 continue;
12539 }
12540 break;
12541
12542 case 'O': /* MDMX alignment immediate constant. */
12543 gas_assert (!mips_opts.micromips);
12544 my_getExpression (&imm_expr, s);
12545 check_absolute_expr (ip, &imm_expr);
12546 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
12547 as_warn (_("Improper align amount (%ld), using low bits"),
12548 (long) imm_expr.X_add_number);
12549 INSERT_OPERAND (0, ALN, *ip, imm_expr.X_add_number);
12550 imm_expr.X_op = O_absent;
12551 s = expr_end;
12552 continue;
12553
12554 case 'Q': /* MDMX vector, element sel, or const. */
12555 if (s[0] != '$')
12556 {
12557 /* MDMX Immediate. */
12558 gas_assert (!mips_opts.micromips);
12559 my_getExpression (&imm_expr, s);
12560 check_absolute_expr (ip, &imm_expr);
12561 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
12562 as_warn (_("Invalid MDMX Immediate (%ld)"),
12563 (long) imm_expr.X_add_number);
12564 INSERT_OPERAND (0, FT, *ip, imm_expr.X_add_number);
12565 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
12566 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
12567 else
12568 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
12569 imm_expr.X_op = O_absent;
12570 s = expr_end;
12571 continue;
12572 }
12573 /* Not MDMX Immediate. Fall through. */
12574 case 'X': /* MDMX destination register. */
12575 case 'Y': /* MDMX source register. */
12576 case 'Z': /* MDMX target register. */
12577 is_mdmx = !(insn->membership & INSN_5400);
12578 case 'W':
12579 gas_assert (!mips_opts.micromips);
12580 case 'D': /* Floating point destination register. */
12581 case 'S': /* Floating point source register. */
12582 case 'T': /* Floating point target register. */
12583 case 'R': /* Floating point source register. */
12584 case 'V':
12585 rtype = RTYPE_FPU;
12586 if (is_mdmx
12587 || ((mips_opts.ase & ASE_MDMX)
12588 && (ip->insn_mo->pinfo & FP_D)
12589 && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
12590 | INSN_COPROC_MEMORY_DELAY
12591 | INSN_LOAD_COPROC_DELAY
12592 | INSN_LOAD_MEMORY_DELAY
12593 | INSN_STORE_MEMORY))))
12594 rtype |= RTYPE_VEC;
12595 s_reset = s;
12596 if (reg_lookup (&s, rtype, &regno))
12597 {
12598 if ((regno & 1) != 0
12599 && HAVE_32BIT_FPRS
12600 && !mips_oddfpreg_ok (ip->insn_mo, argnum))
12601 as_warn (_("Float register should be even, was %d"),
12602 regno);
12603
12604 c = *args;
12605 if (*s == ' ')
12606 ++s;
12607 if (args[1] != *s)
12608 {
12609 if (c == 'V' || c == 'W')
12610 {
12611 regno = lastregno;
12612 s = s_reset;
12613 ++args;
12614 }
12615 }
12616 switch (c)
12617 {
12618 case 'D':
12619 case 'X':
12620 INSERT_OPERAND (mips_opts.micromips, FD, *ip, regno);
12621 break;
12622
12623 case 'V':
12624 case 'S':
12625 case 'Y':
12626 INSERT_OPERAND (mips_opts.micromips, FS, *ip, regno);
12627 break;
12628
12629 case 'Q':
12630 /* This is like 'Z', but also needs to fix the MDMX
12631 vector/scalar select bits. Note that the
12632 scalar immediate case is handled above. */
12633 if ((ip->insn_mo->membership & INSN_5400)
12634 && strcmp (insn->name, "rzu.ob") == 0)
12635 as_bad (_("Operand %d of `%s' must be an immediate"),
12636 argnum, ip->insn_mo->name);
12637
12638 if (*s == '[')
12639 {
12640 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
12641 int max_el = (is_qh ? 3 : 7);
12642 s++;
12643 my_getExpression(&imm_expr, s);
12644 check_absolute_expr (ip, &imm_expr);
12645 s = expr_end;
12646 if (imm_expr.X_add_number > max_el)
12647 as_bad (_("Bad element selector %ld"),
12648 (long) imm_expr.X_add_number);
12649 imm_expr.X_add_number &= max_el;
12650 ip->insn_opcode |= (imm_expr.X_add_number
12651 << (OP_SH_VSEL +
12652 (is_qh ? 2 : 1)));
12653 imm_expr.X_op = O_absent;
12654 if (*s != ']')
12655 as_warn (_("Expecting ']' found '%s'"), s);
12656 else
12657 s++;
12658 }
12659 else
12660 {
12661 if ((ip->insn_mo->membership & INSN_5400)
12662 && (strcmp (insn->name, "sll.ob") == 0
12663 || strcmp (insn->name, "srl.ob") == 0))
12664 as_bad (_("Operand %d of `%s' must be scalar"),
12665 argnum, ip->insn_mo->name);
12666
12667 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
12668 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
12669 << OP_SH_VSEL);
12670 else
12671 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
12672 OP_SH_VSEL);
12673 }
12674 /* Fall through. */
12675 case 'W':
12676 case 'T':
12677 case 'Z':
12678 INSERT_OPERAND (mips_opts.micromips, FT, *ip, regno);
12679 break;
12680
12681 case 'R':
12682 INSERT_OPERAND (mips_opts.micromips, FR, *ip, regno);
12683 break;
12684 }
12685 lastregno = regno;
12686 continue;
12687 }
12688
12689 switch (*args++)
12690 {
12691 case 'V':
12692 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
12693 continue;
12694
12695 case 'W':
12696 INSERT_OPERAND (mips_opts.micromips, FT, *ip, lastregno);
12697 continue;
12698 }
12699 break;
12700
12701 case 'I':
12702 my_getExpression (&imm_expr, s);
12703 if (imm_expr.X_op != O_big
12704 && imm_expr.X_op != O_constant)
12705 insn_error = _("absolute expression required");
12706 if (HAVE_32BIT_GPRS)
12707 normalize_constant_expr (&imm_expr);
12708 s = expr_end;
12709 continue;
12710
12711 case 'A':
12712 my_getSmallExpression (&offset_expr, offset_reloc, s);
12713 if (offset_expr.X_op == O_register)
12714 {
12715 /* Assume that the offset has been elided and that what
12716 we saw was a base register. The match will fail later
12717 if that assumption turns out to be wrong. */
12718 offset_expr.X_op = O_constant;
12719 offset_expr.X_add_number = 0;
12720 }
12721 else
12722 {
12723 normalize_address_expr (&offset_expr);
12724 s = expr_end;
12725 }
12726 continue;
12727
12728 case 'F':
12729 case 'L':
12730 case 'f':
12731 case 'l':
12732 {
12733 int f64;
12734 int using_gprs;
12735 char *save_in;
12736 char *err;
12737 unsigned char temp[8];
12738 int len;
12739 unsigned int length;
12740 segT seg;
12741 subsegT subseg;
12742 char *p;
12743
12744 /* These only appear as the last operand in an
12745 instruction, and every instruction that accepts
12746 them in any variant accepts them in all variants.
12747 This means we don't have to worry about backing out
12748 any changes if the instruction does not match.
12749
12750 The difference between them is the size of the
12751 floating point constant and where it goes. For 'F'
12752 and 'L' the constant is 64 bits; for 'f' and 'l' it
12753 is 32 bits. Where the constant is placed is based
12754 on how the MIPS assembler does things:
12755 F -- .rdata
12756 L -- .lit8
12757 f -- immediate value
12758 l -- .lit4
12759
12760 The .lit4 and .lit8 sections are only used if
12761 permitted by the -G argument.
12762
12763 The code below needs to know whether the target register
12764 is 32 or 64 bits wide. It relies on the fact 'f' and
12765 'F' are used with GPR-based instructions and 'l' and
12766 'L' are used with FPR-based instructions. */
12767
12768 f64 = *args == 'F' || *args == 'L';
12769 using_gprs = *args == 'F' || *args == 'f';
12770
12771 save_in = input_line_pointer;
12772 input_line_pointer = s;
12773 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
12774 length = len;
12775 s = input_line_pointer;
12776 input_line_pointer = save_in;
12777 if (err != NULL && *err != '\0')
12778 {
12779 as_bad (_("Bad floating point constant: %s"), err);
12780 memset (temp, '\0', sizeof temp);
12781 length = f64 ? 8 : 4;
12782 }
12783
12784 gas_assert (length == (unsigned) (f64 ? 8 : 4));
12785
12786 if (*args == 'f'
12787 || (*args == 'l'
12788 && (g_switch_value < 4
12789 || (temp[0] == 0 && temp[1] == 0)
12790 || (temp[2] == 0 && temp[3] == 0))))
12791 {
12792 imm_expr.X_op = O_constant;
12793 if (!target_big_endian)
12794 imm_expr.X_add_number = bfd_getl32 (temp);
12795 else
12796 imm_expr.X_add_number = bfd_getb32 (temp);
12797 }
12798 else if (length > 4
12799 && !mips_disable_float_construction
12800 /* Constants can only be constructed in GPRs and
12801 copied to FPRs if the GPRs are at least as wide
12802 as the FPRs. Force the constant into memory if
12803 we are using 64-bit FPRs but the GPRs are only
12804 32 bits wide. */
12805 && (using_gprs
12806 || !(HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
12807 && ((temp[0] == 0 && temp[1] == 0)
12808 || (temp[2] == 0 && temp[3] == 0))
12809 && ((temp[4] == 0 && temp[5] == 0)
12810 || (temp[6] == 0 && temp[7] == 0)))
12811 {
12812 /* The value is simple enough to load with a couple of
12813 instructions. If using 32-bit registers, set
12814 imm_expr to the high order 32 bits and offset_expr to
12815 the low order 32 bits. Otherwise, set imm_expr to
12816 the entire 64 bit constant. */
12817 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
12818 {
12819 imm_expr.X_op = O_constant;
12820 offset_expr.X_op = O_constant;
12821 if (!target_big_endian)
12822 {
12823 imm_expr.X_add_number = bfd_getl32 (temp + 4);
12824 offset_expr.X_add_number = bfd_getl32 (temp);
12825 }
12826 else
12827 {
12828 imm_expr.X_add_number = bfd_getb32 (temp);
12829 offset_expr.X_add_number = bfd_getb32 (temp + 4);
12830 }
12831 if (offset_expr.X_add_number == 0)
12832 offset_expr.X_op = O_absent;
12833 }
12834 else
12835 {
12836 imm_expr.X_op = O_constant;
12837 if (!target_big_endian)
12838 imm_expr.X_add_number = bfd_getl64 (temp);
12839 else
12840 imm_expr.X_add_number = bfd_getb64 (temp);
12841 }
12842 }
12843 else
12844 {
12845 const char *newname;
12846 segT new_seg;
12847
12848 /* Switch to the right section. */
12849 seg = now_seg;
12850 subseg = now_subseg;
12851 switch (*args)
12852 {
12853 default: /* unused default case avoids warnings. */
12854 case 'L':
12855 newname = RDATA_SECTION_NAME;
12856 if (g_switch_value >= 8)
12857 newname = ".lit8";
12858 break;
12859 case 'F':
12860 newname = RDATA_SECTION_NAME;
12861 break;
12862 case 'l':
12863 gas_assert (g_switch_value >= 4);
12864 newname = ".lit4";
12865 break;
12866 }
12867 new_seg = subseg_new (newname, (subsegT) 0);
12868 bfd_set_section_flags (stdoutput, new_seg,
12869 (SEC_ALLOC
12870 | SEC_LOAD
12871 | SEC_READONLY
12872 | SEC_DATA));
12873 frag_align (*args == 'l' ? 2 : 3, 0, 0);
12874 if (strncmp (TARGET_OS, "elf", 3) != 0)
12875 record_alignment (new_seg, 4);
12876 else
12877 record_alignment (new_seg, *args == 'l' ? 2 : 3);
12878 if (seg == now_seg)
12879 as_bad (_("Can't use floating point insn in this section"));
12880
12881 /* Set the argument to the current address in the
12882 section. */
12883 offset_expr.X_op = O_symbol;
12884 offset_expr.X_add_symbol = symbol_temp_new_now ();
12885 offset_expr.X_add_number = 0;
12886
12887 /* Put the floating point number into the section. */
12888 p = frag_more ((int) length);
12889 memcpy (p, temp, length);
12890
12891 /* Switch back to the original section. */
12892 subseg_set (seg, subseg);
12893 }
12894 }
12895 continue;
12896
12897 case 'i': /* 16-bit unsigned immediate. */
12898 case 'j': /* 16-bit signed immediate. */
12899 *imm_reloc = BFD_RELOC_LO16;
12900 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
12901 {
12902 int more;
12903 offsetT minval, maxval;
12904
12905 more = (insn + 1 < past
12906 && strcmp (insn->name, insn[1].name) == 0);
12907
12908 /* For compatibility with older assemblers, we accept
12909 0x8000-0xffff as signed 16-bit numbers when only
12910 signed numbers are allowed. */
12911 if (*args == 'i')
12912 minval = 0, maxval = 0xffff;
12913 else if (more)
12914 minval = -0x8000, maxval = 0x7fff;
12915 else
12916 minval = -0x8000, maxval = 0xffff;
12917
12918 if (imm_expr.X_op != O_constant
12919 || imm_expr.X_add_number < minval
12920 || imm_expr.X_add_number > maxval)
12921 {
12922 if (more)
12923 break;
12924 if (imm_expr.X_op == O_constant
12925 || imm_expr.X_op == O_big)
12926 as_bad (_("Expression out of range"));
12927 }
12928 }
12929 s = expr_end;
12930 continue;
12931
12932 case 'o': /* 16-bit offset. */
12933 offset_reloc[0] = BFD_RELOC_LO16;
12934 offset_reloc[1] = BFD_RELOC_UNUSED;
12935 offset_reloc[2] = BFD_RELOC_UNUSED;
12936
12937 /* Check whether there is only a single bracketed expression
12938 left. If so, it must be the base register and the
12939 constant must be zero. */
12940 if (*s == '(' && strchr (s + 1, '(') == 0)
12941 {
12942 offset_expr.X_op = O_constant;
12943 offset_expr.X_add_number = 0;
12944 continue;
12945 }
12946
12947 /* If this value won't fit into a 16 bit offset, then go
12948 find a macro that will generate the 32 bit offset
12949 code pattern. */
12950 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
12951 && (offset_expr.X_op != O_constant
12952 || offset_expr.X_add_number >= 0x8000
12953 || offset_expr.X_add_number < -0x8000))
12954 break;
12955
12956 s = expr_end;
12957 continue;
12958
12959 case 'p': /* PC-relative offset. */
12960 *offset_reloc = BFD_RELOC_16_PCREL_S2;
12961 my_getExpression (&offset_expr, s);
12962 s = expr_end;
12963 continue;
12964
12965 case 'u': /* Upper 16 bits. */
12966 *imm_reloc = BFD_RELOC_LO16;
12967 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
12968 && imm_expr.X_op == O_constant
12969 && (imm_expr.X_add_number < 0
12970 || imm_expr.X_add_number >= 0x10000))
12971 as_bad (_("lui expression (%lu) not in range 0..65535"),
12972 (unsigned long) imm_expr.X_add_number);
12973 s = expr_end;
12974 continue;
12975
12976 case 'a': /* 26-bit address. */
12977 jump:
12978 *offset_reloc = BFD_RELOC_MIPS_JMP;
12979 my_getExpression (&offset_expr, s);
12980 s = expr_end;
12981 continue;
12982
12983 case 'N': /* 3-bit branch condition code. */
12984 case 'M': /* 3-bit compare condition code. */
12985 rtype = RTYPE_CCC;
12986 if (ip->insn_mo->pinfo & (FP_D | FP_S))
12987 rtype |= RTYPE_FCC;
12988 if (!reg_lookup (&s, rtype, &regno))
12989 break;
12990 if ((strcmp (str + strlen (str) - 3, ".ps") == 0
12991 || strcmp (str + strlen (str) - 5, "any2f") == 0
12992 || strcmp (str + strlen (str) - 5, "any2t") == 0)
12993 && (regno & 1) != 0)
12994 as_warn (_("Condition code register should be even for %s, "
12995 "was %d"),
12996 str, regno);
12997 if ((strcmp (str + strlen (str) - 5, "any4f") == 0
12998 || strcmp (str + strlen (str) - 5, "any4t") == 0)
12999 && (regno & 3) != 0)
13000 as_warn (_("Condition code register should be 0 or 4 for %s, "
13001 "was %d"),
13002 str, regno);
13003 if (*args == 'N')
13004 INSERT_OPERAND (mips_opts.micromips, BCC, *ip, regno);
13005 else
13006 INSERT_OPERAND (mips_opts.micromips, CCC, *ip, regno);
13007 continue;
13008
13009 case 'H':
13010 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
13011 s += 2;
13012 if (ISDIGIT (*s))
13013 {
13014 c = 0;
13015 do
13016 {
13017 c *= 10;
13018 c += *s - '0';
13019 ++s;
13020 }
13021 while (ISDIGIT (*s));
13022 }
13023 else
13024 c = 8; /* Invalid sel value. */
13025
13026 if (c > 7)
13027 as_bad (_("Invalid coprocessor sub-selection value (0-7)"));
13028 INSERT_OPERAND (mips_opts.micromips, SEL, *ip, c);
13029 continue;
13030
13031 case 'e':
13032 gas_assert (!mips_opts.micromips);
13033 /* Must be at least one digit. */
13034 my_getExpression (&imm_expr, s);
13035 check_absolute_expr (ip, &imm_expr);
13036
13037 if ((unsigned long) imm_expr.X_add_number
13038 > (unsigned long) OP_MASK_VECBYTE)
13039 {
13040 as_bad (_("bad byte vector index (%ld)"),
13041 (long) imm_expr.X_add_number);
13042 imm_expr.X_add_number = 0;
13043 }
13044
13045 INSERT_OPERAND (0, VECBYTE, *ip, imm_expr.X_add_number);
13046 imm_expr.X_op = O_absent;
13047 s = expr_end;
13048 continue;
13049
13050 case '%':
13051 gas_assert (!mips_opts.micromips);
13052 my_getExpression (&imm_expr, s);
13053 check_absolute_expr (ip, &imm_expr);
13054
13055 if ((unsigned long) imm_expr.X_add_number
13056 > (unsigned long) OP_MASK_VECALIGN)
13057 {
13058 as_bad (_("bad byte vector index (%ld)"),
13059 (long) imm_expr.X_add_number);
13060 imm_expr.X_add_number = 0;
13061 }
13062
13063 INSERT_OPERAND (0, VECALIGN, *ip, imm_expr.X_add_number);
13064 imm_expr.X_op = O_absent;
13065 s = expr_end;
13066 continue;
13067
13068 case 'm': /* Opcode extension character. */
13069 gas_assert (mips_opts.micromips);
13070 c = *++args;
13071 switch (c)
13072 {
13073 case 'r':
13074 if (strncmp (s, "$pc", 3) == 0)
13075 {
13076 s += 3;
13077 continue;
13078 }
13079 break;
13080
13081 case 'a':
13082 case 'b':
13083 case 'c':
13084 case 'd':
13085 case 'e':
13086 case 'f':
13087 case 'g':
13088 case 'h':
13089 case 'j':
13090 case 'l':
13091 case 'm':
13092 case 'n':
13093 case 'p':
13094 case 'q':
13095 case 's':
13096 case 't':
13097 case 'x':
13098 case 'y':
13099 case 'z':
13100 s_reset = s;
13101 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
13102 if (regno == AT && mips_opts.at)
13103 {
13104 if (mips_opts.at == ATREG)
13105 as_warn (_("Used $at without \".set noat\""));
13106 else
13107 as_warn (_("Used $%u with \".set at=$%u\""),
13108 regno, mips_opts.at);
13109 }
13110 if (!ok)
13111 {
13112 if (c == 'c')
13113 {
13114 gas_assert (args[1] == ',');
13115 regno = lastregno;
13116 ++args;
13117 }
13118 else if (c == 't')
13119 {
13120 gas_assert (args[1] == ',');
13121 ++args;
13122 continue; /* Nothing to do. */
13123 }
13124 else
13125 break;
13126 }
13127
13128 if (c == 'j' && !strncmp (ip->insn_mo->name, "jalr", 4))
13129 {
13130 if (regno == lastregno)
13131 {
13132 insn_error
13133 = _("Source and destination must be different");
13134 continue;
13135 }
13136 if (regno == 31 && lastregno == 0xffffffff)
13137 {
13138 insn_error
13139 = _("A destination register must be supplied");
13140 continue;
13141 }
13142 }
13143
13144 if (*s == ' ')
13145 ++s;
13146 if (args[1] != *s)
13147 {
13148 if (c == 'e')
13149 {
13150 gas_assert (args[1] == ',');
13151 regno = lastregno;
13152 s = s_reset;
13153 ++args;
13154 }
13155 else if (c == 't')
13156 {
13157 gas_assert (args[1] == ',');
13158 s = s_reset;
13159 ++args;
13160 continue; /* Nothing to do. */
13161 }
13162 }
13163
13164 /* Make sure regno is the same as lastregno. */
13165 if (c == 't' && regno != lastregno)
13166 break;
13167
13168 /* Make sure regno is the same as destregno. */
13169 if (c == 'x' && regno != destregno)
13170 break;
13171
13172 /* We need to save regno, before regno maps to the
13173 microMIPS register encoding. */
13174 lastregno = regno;
13175
13176 if (c == 'f')
13177 destregno = regno;
13178
13179 switch (c)
13180 {
13181 case 'a':
13182 if (regno != GP)
13183 regno = ILLEGAL_REG;
13184 break;
13185
13186 case 'b':
13187 regno = mips32_to_micromips_reg_b_map[regno];
13188 break;
13189
13190 case 'c':
13191 regno = mips32_to_micromips_reg_c_map[regno];
13192 break;
13193
13194 case 'd':
13195 regno = mips32_to_micromips_reg_d_map[regno];
13196 break;
13197
13198 case 'e':
13199 regno = mips32_to_micromips_reg_e_map[regno];
13200 break;
13201
13202 case 'f':
13203 regno = mips32_to_micromips_reg_f_map[regno];
13204 break;
13205
13206 case 'g':
13207 regno = mips32_to_micromips_reg_g_map[regno];
13208 break;
13209
13210 case 'h':
13211 s += strspn (s, " \t");
13212 if (*s != ',')
13213 {
13214 regno = ILLEGAL_REG;
13215 break;
13216 }
13217 ++s;
13218 s += strspn (s, " \t");
13219 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno2);
13220 if (!ok)
13221 {
13222 regno = ILLEGAL_REG;
13223 break;
13224 }
13225 if (regno2 == AT && mips_opts.at)
13226 {
13227 if (mips_opts.at == ATREG)
13228 as_warn (_("Used $at without \".set noat\""));
13229 else
13230 as_warn (_("Used $%u with \".set at=$%u\""),
13231 regno2, mips_opts.at);
13232 }
13233 regno = (mips_lookup_reg_pair
13234 (regno, regno2,
13235 micromips_to_32_reg_h_map1,
13236 micromips_to_32_reg_h_map2, 8));
13237 break;
13238
13239 case 'l':
13240 regno = mips32_to_micromips_reg_l_map[regno];
13241 break;
13242
13243 case 'm':
13244 regno = mips32_to_micromips_reg_m_map[regno];
13245 break;
13246
13247 case 'n':
13248 regno = mips32_to_micromips_reg_n_map[regno];
13249 break;
13250
13251 case 'q':
13252 regno = mips32_to_micromips_reg_q_map[regno];
13253 break;
13254
13255 case 's':
13256 if (regno != SP)
13257 regno = ILLEGAL_REG;
13258 break;
13259
13260 case 'y':
13261 if (regno != 31)
13262 regno = ILLEGAL_REG;
13263 break;
13264
13265 case 'z':
13266 if (regno != ZERO)
13267 regno = ILLEGAL_REG;
13268 break;
13269
13270 case 'j': /* Do nothing. */
13271 case 'p':
13272 case 't':
13273 case 'x':
13274 break;
13275
13276 default:
13277 abort ();
13278 }
13279
13280 if (regno == ILLEGAL_REG)
13281 break;
13282
13283 switch (c)
13284 {
13285 case 'b':
13286 INSERT_OPERAND (1, MB, *ip, regno);
13287 break;
13288
13289 case 'c':
13290 INSERT_OPERAND (1, MC, *ip, regno);
13291 break;
13292
13293 case 'd':
13294 INSERT_OPERAND (1, MD, *ip, regno);
13295 break;
13296
13297 case 'e':
13298 INSERT_OPERAND (1, ME, *ip, regno);
13299 break;
13300
13301 case 'f':
13302 INSERT_OPERAND (1, MF, *ip, regno);
13303 break;
13304
13305 case 'g':
13306 INSERT_OPERAND (1, MG, *ip, regno);
13307 break;
13308
13309 case 'h':
13310 INSERT_OPERAND (1, MH, *ip, regno);
13311 break;
13312
13313 case 'j':
13314 INSERT_OPERAND (1, MJ, *ip, regno);
13315 break;
13316
13317 case 'l':
13318 INSERT_OPERAND (1, ML, *ip, regno);
13319 break;
13320
13321 case 'm':
13322 INSERT_OPERAND (1, MM, *ip, regno);
13323 break;
13324
13325 case 'n':
13326 INSERT_OPERAND (1, MN, *ip, regno);
13327 break;
13328
13329 case 'p':
13330 INSERT_OPERAND (1, MP, *ip, regno);
13331 break;
13332
13333 case 'q':
13334 INSERT_OPERAND (1, MQ, *ip, regno);
13335 break;
13336
13337 case 'a': /* Do nothing. */
13338 case 's': /* Do nothing. */
13339 case 't': /* Do nothing. */
13340 case 'x': /* Do nothing. */
13341 case 'y': /* Do nothing. */
13342 case 'z': /* Do nothing. */
13343 break;
13344
13345 default:
13346 abort ();
13347 }
13348 continue;
13349
13350 case 'A':
13351 {
13352 bfd_reloc_code_real_type r[3];
13353 expressionS ep;
13354 int imm;
13355
13356 /* Check whether there is only a single bracketed
13357 expression left. If so, it must be the base register
13358 and the constant must be zero. */
13359 if (*s == '(' && strchr (s + 1, '(') == 0)
13360 {
13361 INSERT_OPERAND (1, IMMA, *ip, 0);
13362 continue;
13363 }
13364
13365 if (my_getSmallExpression (&ep, r, s) > 0
13366 || !expr_const_in_range (&ep, -64, 64, 2))
13367 break;
13368
13369 imm = ep.X_add_number >> 2;
13370 INSERT_OPERAND (1, IMMA, *ip, imm);
13371 }
13372 s = expr_end;
13373 continue;
13374
13375 case 'B':
13376 {
13377 bfd_reloc_code_real_type r[3];
13378 expressionS ep;
13379 int imm;
13380
13381 if (my_getSmallExpression (&ep, r, s) > 0
13382 || ep.X_op != O_constant)
13383 break;
13384
13385 for (imm = 0; imm < 8; imm++)
13386 if (micromips_imm_b_map[imm] == ep.X_add_number)
13387 break;
13388 if (imm >= 8)
13389 break;
13390
13391 INSERT_OPERAND (1, IMMB, *ip, imm);
13392 }
13393 s = expr_end;
13394 continue;
13395
13396 case 'C':
13397 {
13398 bfd_reloc_code_real_type r[3];
13399 expressionS ep;
13400 int imm;
13401
13402 if (my_getSmallExpression (&ep, r, s) > 0
13403 || ep.X_op != O_constant)
13404 break;
13405
13406 for (imm = 0; imm < 16; imm++)
13407 if (micromips_imm_c_map[imm] == ep.X_add_number)
13408 break;
13409 if (imm >= 16)
13410 break;
13411
13412 INSERT_OPERAND (1, IMMC, *ip, imm);
13413 }
13414 s = expr_end;
13415 continue;
13416
13417 case 'D': /* pc relative offset */
13418 case 'E': /* pc relative offset */
13419 my_getExpression (&offset_expr, s);
13420 if (offset_expr.X_op == O_register)
13421 break;
13422
13423 if (!forced_insn_length)
13424 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
13425 else if (c == 'D')
13426 *offset_reloc = BFD_RELOC_MICROMIPS_10_PCREL_S1;
13427 else
13428 *offset_reloc = BFD_RELOC_MICROMIPS_7_PCREL_S1;
13429 s = expr_end;
13430 continue;
13431
13432 case 'F':
13433 {
13434 bfd_reloc_code_real_type r[3];
13435 expressionS ep;
13436 int imm;
13437
13438 if (my_getSmallExpression (&ep, r, s) > 0
13439 || !expr_const_in_range (&ep, 0, 16, 0))
13440 break;
13441
13442 imm = ep.X_add_number;
13443 INSERT_OPERAND (1, IMMF, *ip, imm);
13444 }
13445 s = expr_end;
13446 continue;
13447
13448 case 'G':
13449 {
13450 bfd_reloc_code_real_type r[3];
13451 expressionS ep;
13452 int imm;
13453
13454 /* Check whether there is only a single bracketed
13455 expression left. If so, it must be the base register
13456 and the constant must be zero. */
13457 if (*s == '(' && strchr (s + 1, '(') == 0)
13458 {
13459 INSERT_OPERAND (1, IMMG, *ip, 0);
13460 continue;
13461 }
13462
13463 if (my_getSmallExpression (&ep, r, s) > 0
13464 || !expr_const_in_range (&ep, -1, 15, 0))
13465 break;
13466
13467 imm = ep.X_add_number & 15;
13468 INSERT_OPERAND (1, IMMG, *ip, imm);
13469 }
13470 s = expr_end;
13471 continue;
13472
13473 case 'H':
13474 {
13475 bfd_reloc_code_real_type r[3];
13476 expressionS ep;
13477 int imm;
13478
13479 /* Check whether there is only a single bracketed
13480 expression left. If so, it must be the base register
13481 and the constant must be zero. */
13482 if (*s == '(' && strchr (s + 1, '(') == 0)
13483 {
13484 INSERT_OPERAND (1, IMMH, *ip, 0);
13485 continue;
13486 }
13487
13488 if (my_getSmallExpression (&ep, r, s) > 0
13489 || !expr_const_in_range (&ep, 0, 16, 1))
13490 break;
13491
13492 imm = ep.X_add_number >> 1;
13493 INSERT_OPERAND (1, IMMH, *ip, imm);
13494 }
13495 s = expr_end;
13496 continue;
13497
13498 case 'I':
13499 {
13500 bfd_reloc_code_real_type r[3];
13501 expressionS ep;
13502 int imm;
13503
13504 if (my_getSmallExpression (&ep, r, s) > 0
13505 || !expr_const_in_range (&ep, -1, 127, 0))
13506 break;
13507
13508 imm = ep.X_add_number & 127;
13509 INSERT_OPERAND (1, IMMI, *ip, imm);
13510 }
13511 s = expr_end;
13512 continue;
13513
13514 case 'J':
13515 {
13516 bfd_reloc_code_real_type r[3];
13517 expressionS ep;
13518 int imm;
13519
13520 /* Check whether there is only a single bracketed
13521 expression left. If so, it must be the base register
13522 and the constant must be zero. */
13523 if (*s == '(' && strchr (s + 1, '(') == 0)
13524 {
13525 INSERT_OPERAND (1, IMMJ, *ip, 0);
13526 continue;
13527 }
13528
13529 if (my_getSmallExpression (&ep, r, s) > 0
13530 || !expr_const_in_range (&ep, 0, 16, 2))
13531 break;
13532
13533 imm = ep.X_add_number >> 2;
13534 INSERT_OPERAND (1, IMMJ, *ip, imm);
13535 }
13536 s = expr_end;
13537 continue;
13538
13539 case 'L':
13540 {
13541 bfd_reloc_code_real_type r[3];
13542 expressionS ep;
13543 int imm;
13544
13545 /* Check whether there is only a single bracketed
13546 expression left. If so, it must be the base register
13547 and the constant must be zero. */
13548 if (*s == '(' && strchr (s + 1, '(') == 0)
13549 {
13550 INSERT_OPERAND (1, IMML, *ip, 0);
13551 continue;
13552 }
13553
13554 if (my_getSmallExpression (&ep, r, s) > 0
13555 || !expr_const_in_range (&ep, 0, 16, 0))
13556 break;
13557
13558 imm = ep.X_add_number;
13559 INSERT_OPERAND (1, IMML, *ip, imm);
13560 }
13561 s = expr_end;
13562 continue;
13563
13564 case 'M':
13565 {
13566 bfd_reloc_code_real_type r[3];
13567 expressionS ep;
13568 int imm;
13569
13570 if (my_getSmallExpression (&ep, r, s) > 0
13571 || !expr_const_in_range (&ep, 1, 9, 0))
13572 break;
13573
13574 imm = ep.X_add_number & 7;
13575 INSERT_OPERAND (1, IMMM, *ip, imm);
13576 }
13577 s = expr_end;
13578 continue;
13579
13580 case 'N': /* Register list for lwm and swm. */
13581 {
13582 /* A comma-separated list of registers and/or
13583 dash-separated contiguous ranges including
13584 both ra and a set of one or more registers
13585 starting at s0 up to s3 which have to be
13586 consecutive, e.g.:
13587
13588 s0, ra
13589 s0, s1, ra, s2, s3
13590 s0-s2, ra
13591
13592 and any permutations of these. */
13593 unsigned int reglist;
13594 int imm;
13595
13596 if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, &reglist))
13597 break;
13598
13599 if ((reglist & 0xfff1ffff) != 0x80010000)
13600 break;
13601
13602 reglist = (reglist >> 17) & 7;
13603 reglist += 1;
13604 if ((reglist & -reglist) != reglist)
13605 break;
13606
13607 imm = ffs (reglist) - 1;
13608 INSERT_OPERAND (1, IMMN, *ip, imm);
13609 }
13610 continue;
13611
13612 case 'O': /* sdbbp 4-bit code. */
13613 {
13614 bfd_reloc_code_real_type r[3];
13615 expressionS ep;
13616 int imm;
13617
13618 if (my_getSmallExpression (&ep, r, s) > 0
13619 || !expr_const_in_range (&ep, 0, 16, 0))
13620 break;
13621
13622 imm = ep.X_add_number;
13623 INSERT_OPERAND (1, IMMO, *ip, imm);
13624 }
13625 s = expr_end;
13626 continue;
13627
13628 case 'P':
13629 {
13630 bfd_reloc_code_real_type r[3];
13631 expressionS ep;
13632 int imm;
13633
13634 if (my_getSmallExpression (&ep, r, s) > 0
13635 || !expr_const_in_range (&ep, 0, 32, 2))
13636 break;
13637
13638 imm = ep.X_add_number >> 2;
13639 INSERT_OPERAND (1, IMMP, *ip, imm);
13640 }
13641 s = expr_end;
13642 continue;
13643
13644 case 'Q':
13645 {
13646 bfd_reloc_code_real_type r[3];
13647 expressionS ep;
13648 int imm;
13649
13650 if (my_getSmallExpression (&ep, r, s) > 0
13651 || !expr_const_in_range (&ep, -0x400000, 0x400000, 2))
13652 break;
13653
13654 imm = ep.X_add_number >> 2;
13655 INSERT_OPERAND (1, IMMQ, *ip, imm);
13656 }
13657 s = expr_end;
13658 continue;
13659
13660 case 'U':
13661 {
13662 bfd_reloc_code_real_type r[3];
13663 expressionS ep;
13664 int imm;
13665
13666 /* Check whether there is only a single bracketed
13667 expression left. If so, it must be the base register
13668 and the constant must be zero. */
13669 if (*s == '(' && strchr (s + 1, '(') == 0)
13670 {
13671 INSERT_OPERAND (1, IMMU, *ip, 0);
13672 continue;
13673 }
13674
13675 if (my_getSmallExpression (&ep, r, s) > 0
13676 || !expr_const_in_range (&ep, 0, 32, 2))
13677 break;
13678
13679 imm = ep.X_add_number >> 2;
13680 INSERT_OPERAND (1, IMMU, *ip, imm);
13681 }
13682 s = expr_end;
13683 continue;
13684
13685 case 'W':
13686 {
13687 bfd_reloc_code_real_type r[3];
13688 expressionS ep;
13689 int imm;
13690
13691 if (my_getSmallExpression (&ep, r, s) > 0
13692 || !expr_const_in_range (&ep, 0, 64, 2))
13693 break;
13694
13695 imm = ep.X_add_number >> 2;
13696 INSERT_OPERAND (1, IMMW, *ip, imm);
13697 }
13698 s = expr_end;
13699 continue;
13700
13701 case 'X':
13702 {
13703 bfd_reloc_code_real_type r[3];
13704 expressionS ep;
13705 int imm;
13706
13707 if (my_getSmallExpression (&ep, r, s) > 0
13708 || !expr_const_in_range (&ep, -8, 8, 0))
13709 break;
13710
13711 imm = ep.X_add_number;
13712 INSERT_OPERAND (1, IMMX, *ip, imm);
13713 }
13714 s = expr_end;
13715 continue;
13716
13717 case 'Y':
13718 {
13719 bfd_reloc_code_real_type r[3];
13720 expressionS ep;
13721 int imm;
13722
13723 if (my_getSmallExpression (&ep, r, s) > 0
13724 || expr_const_in_range (&ep, -2, 2, 2)
13725 || !expr_const_in_range (&ep, -258, 258, 2))
13726 break;
13727
13728 imm = ep.X_add_number >> 2;
13729 imm = ((imm >> 1) & ~0xff) | (imm & 0xff);
13730 INSERT_OPERAND (1, IMMY, *ip, imm);
13731 }
13732 s = expr_end;
13733 continue;
13734
13735 case 'Z':
13736 {
13737 bfd_reloc_code_real_type r[3];
13738 expressionS ep;
13739
13740 if (my_getSmallExpression (&ep, r, s) > 0
13741 || !expr_const_in_range (&ep, 0, 1, 0))
13742 break;
13743 }
13744 s = expr_end;
13745 continue;
13746
13747 default:
13748 as_bad (_("Internal error: bad microMIPS opcode "
13749 "(unknown extension operand type `m%c'): %s %s"),
13750 *args, insn->name, insn->args);
13751 /* Further processing is fruitless. */
13752 return;
13753 }
13754 break;
13755
13756 case 'n': /* Register list for 32-bit lwm and swm. */
13757 gas_assert (mips_opts.micromips);
13758 {
13759 /* A comma-separated list of registers and/or
13760 dash-separated contiguous ranges including
13761 at least one of ra and a set of one or more
13762 registers starting at s0 up to s7 and then
13763 s8 which have to be consecutive, e.g.:
13764
13765 ra
13766 s0
13767 ra, s0, s1, s2
13768 s0-s8
13769 s0-s5, ra
13770
13771 and any permutations of these. */
13772 unsigned int reglist;
13773 int imm;
13774 int ra;
13775
13776 if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, &reglist))
13777 break;
13778
13779 if ((reglist & 0x3f00ffff) != 0)
13780 break;
13781
13782 ra = (reglist >> 27) & 0x10;
13783 reglist = ((reglist >> 22) & 0x100) | ((reglist >> 16) & 0xff);
13784 reglist += 1;
13785 if ((reglist & -reglist) != reglist)
13786 break;
13787
13788 imm = (ffs (reglist) - 1) | ra;
13789 INSERT_OPERAND (1, RT, *ip, imm);
13790 imm_expr.X_op = O_absent;
13791 }
13792 continue;
13793
13794 case '|': /* 4-bit trap code. */
13795 gas_assert (mips_opts.micromips);
13796 my_getExpression (&imm_expr, s);
13797 check_absolute_expr (ip, &imm_expr);
13798 if ((unsigned long) imm_expr.X_add_number
13799 > MICROMIPSOP_MASK_TRAP)
13800 as_bad (_("Trap code (%lu) for %s not in 0..15 range"),
13801 (unsigned long) imm_expr.X_add_number,
13802 ip->insn_mo->name);
13803 INSERT_OPERAND (1, TRAP, *ip, imm_expr.X_add_number);
13804 imm_expr.X_op = O_absent;
13805 s = expr_end;
13806 continue;
13807
13808 default:
13809 as_bad (_("Bad char = '%c'\n"), *args);
13810 abort ();
13811 }
13812 break;
13813 }
13814 /* Args don't match. */
13815 s = argsStart;
13816 insn_error = _("Illegal operands");
13817 if (insn + 1 < past && !strcmp (insn->name, insn[1].name))
13818 {
13819 ++insn;
13820 continue;
13821 }
13822 else if (wrong_delay_slot_insns && need_delay_slot_ok)
13823 {
13824 gas_assert (firstinsn);
13825 need_delay_slot_ok = FALSE;
13826 past = insn + 1;
13827 insn = firstinsn;
13828 continue;
13829 }
13830 return;
13831 }
13832 }
13833
13834 #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
13835
13836 /* This routine assembles an instruction into its binary format when
13837 assembling for the mips16. As a side effect, it sets one of the
13838 global variables imm_reloc or offset_reloc to the type of relocation
13839 to do if one of the operands is an address expression. It also sets
13840 forced_insn_length to the resulting instruction size in bytes if the
13841 user explicitly requested a small or extended instruction. */
13842
13843 static void
13844 mips16_ip (char *str, struct mips_cl_insn *ip)
13845 {
13846 char *s;
13847 const char *args;
13848 struct mips_opcode *insn;
13849 char *argsstart;
13850 unsigned int regno;
13851 unsigned int lastregno = 0;
13852 char *s_reset;
13853 size_t i;
13854
13855 insn_error = NULL;
13856
13857 forced_insn_length = 0;
13858
13859 for (s = str; ISLOWER (*s); ++s)
13860 ;
13861 switch (*s)
13862 {
13863 case '\0':
13864 break;
13865
13866 case ' ':
13867 *s++ = '\0';
13868 break;
13869
13870 case '.':
13871 if (s[1] == 't' && s[2] == ' ')
13872 {
13873 *s = '\0';
13874 forced_insn_length = 2;
13875 s += 3;
13876 break;
13877 }
13878 else if (s[1] == 'e' && s[2] == ' ')
13879 {
13880 *s = '\0';
13881 forced_insn_length = 4;
13882 s += 3;
13883 break;
13884 }
13885 /* Fall through. */
13886 default:
13887 insn_error = _("unknown opcode");
13888 return;
13889 }
13890
13891 if (mips_opts.noautoextend && !forced_insn_length)
13892 forced_insn_length = 2;
13893
13894 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
13895 {
13896 insn_error = _("unrecognized opcode");
13897 return;
13898 }
13899
13900 argsstart = s;
13901 for (;;)
13902 {
13903 bfd_boolean ok;
13904
13905 gas_assert (strcmp (insn->name, str) == 0);
13906
13907 ok = is_opcode_valid_16 (insn);
13908 if (! ok)
13909 {
13910 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
13911 && strcmp (insn->name, insn[1].name) == 0)
13912 {
13913 ++insn;
13914 continue;
13915 }
13916 else
13917 {
13918 if (!insn_error)
13919 {
13920 static char buf[100];
13921 sprintf (buf,
13922 _("Opcode not supported on this processor: %s (%s)"),
13923 mips_cpu_info_from_arch (mips_opts.arch)->name,
13924 mips_cpu_info_from_isa (mips_opts.isa)->name);
13925 insn_error = buf;
13926 }
13927 return;
13928 }
13929 }
13930
13931 create_insn (ip, insn);
13932 imm_expr.X_op = O_absent;
13933 imm_reloc[0] = BFD_RELOC_UNUSED;
13934 imm_reloc[1] = BFD_RELOC_UNUSED;
13935 imm_reloc[2] = BFD_RELOC_UNUSED;
13936 imm2_expr.X_op = O_absent;
13937 offset_expr.X_op = O_absent;
13938 offset_reloc[0] = BFD_RELOC_UNUSED;
13939 offset_reloc[1] = BFD_RELOC_UNUSED;
13940 offset_reloc[2] = BFD_RELOC_UNUSED;
13941 for (args = insn->args; 1; ++args)
13942 {
13943 int c;
13944
13945 if (*s == ' ')
13946 ++s;
13947
13948 /* In this switch statement we call break if we did not find
13949 a match, continue if we did find a match, or return if we
13950 are done. */
13951
13952 c = *args;
13953 switch (c)
13954 {
13955 case '\0':
13956 if (*s == '\0')
13957 {
13958 offsetT value;
13959
13960 /* Stuff the immediate value in now, if we can. */
13961 if (imm_expr.X_op == O_constant
13962 && *imm_reloc > BFD_RELOC_UNUSED
13963 && insn->pinfo != INSN_MACRO
13964 && calculate_reloc (*offset_reloc,
13965 imm_expr.X_add_number, &value))
13966 {
13967 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
13968 *offset_reloc, value, forced_insn_length,
13969 &ip->insn_opcode);
13970 imm_expr.X_op = O_absent;
13971 *imm_reloc = BFD_RELOC_UNUSED;
13972 *offset_reloc = BFD_RELOC_UNUSED;
13973 }
13974
13975 return;
13976 }
13977 break;
13978
13979 case ',':
13980 if (*s++ == c)
13981 continue;
13982 s--;
13983 switch (*++args)
13984 {
13985 case 'v':
13986 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
13987 continue;
13988 case 'w':
13989 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
13990 continue;
13991 }
13992 break;
13993
13994 case '(':
13995 case ')':
13996 if (*s++ == c)
13997 continue;
13998 break;
13999
14000 case 'v':
14001 case 'w':
14002 if (s[0] != '$')
14003 {
14004 if (c == 'v')
14005 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
14006 else
14007 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
14008 ++args;
14009 continue;
14010 }
14011 /* Fall through. */
14012 case 'x':
14013 case 'y':
14014 case 'z':
14015 case 'Z':
14016 case '0':
14017 case 'S':
14018 case 'R':
14019 case 'X':
14020 case 'Y':
14021 s_reset = s;
14022 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
14023 {
14024 if (c == 'v' || c == 'w')
14025 {
14026 if (c == 'v')
14027 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
14028 else
14029 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
14030 ++args;
14031 continue;
14032 }
14033 break;
14034 }
14035
14036 if (*s == ' ')
14037 ++s;
14038 if (args[1] != *s)
14039 {
14040 if (c == 'v' || c == 'w')
14041 {
14042 regno = mips16_to_32_reg_map[lastregno];
14043 s = s_reset;
14044 ++args;
14045 }
14046 }
14047
14048 switch (c)
14049 {
14050 case 'x':
14051 case 'y':
14052 case 'z':
14053 case 'v':
14054 case 'w':
14055 case 'Z':
14056 regno = mips32_to_16_reg_map[regno];
14057 break;
14058
14059 case '0':
14060 if (regno != 0)
14061 regno = ILLEGAL_REG;
14062 break;
14063
14064 case 'S':
14065 if (regno != SP)
14066 regno = ILLEGAL_REG;
14067 break;
14068
14069 case 'R':
14070 if (regno != RA)
14071 regno = ILLEGAL_REG;
14072 break;
14073
14074 case 'X':
14075 case 'Y':
14076 if (regno == AT && mips_opts.at)
14077 {
14078 if (mips_opts.at == ATREG)
14079 as_warn (_("used $at without \".set noat\""));
14080 else
14081 as_warn (_("used $%u with \".set at=$%u\""),
14082 regno, mips_opts.at);
14083 }
14084 break;
14085
14086 default:
14087 abort ();
14088 }
14089
14090 if (regno == ILLEGAL_REG)
14091 break;
14092
14093 switch (c)
14094 {
14095 case 'x':
14096 case 'v':
14097 MIPS16_INSERT_OPERAND (RX, *ip, regno);
14098 break;
14099 case 'y':
14100 case 'w':
14101 MIPS16_INSERT_OPERAND (RY, *ip, regno);
14102 break;
14103 case 'z':
14104 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
14105 break;
14106 case 'Z':
14107 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
14108 case '0':
14109 case 'S':
14110 case 'R':
14111 break;
14112 case 'X':
14113 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
14114 break;
14115 case 'Y':
14116 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
14117 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
14118 break;
14119 default:
14120 abort ();
14121 }
14122
14123 lastregno = regno;
14124 continue;
14125
14126 case 'P':
14127 if (strncmp (s, "$pc", 3) == 0)
14128 {
14129 s += 3;
14130 continue;
14131 }
14132 break;
14133
14134 case '5':
14135 case 'H':
14136 case 'W':
14137 case 'D':
14138 case 'j':
14139 case 'V':
14140 case 'C':
14141 case 'U':
14142 case 'k':
14143 case 'K':
14144 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
14145 if (i > 0)
14146 {
14147 if (imm_expr.X_op != O_constant)
14148 {
14149 forced_insn_length = 4;
14150 ip->insn_opcode |= MIPS16_EXTEND;
14151 }
14152 else
14153 {
14154 /* We need to relax this instruction. */
14155 *offset_reloc = *imm_reloc;
14156 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
14157 }
14158 s = expr_end;
14159 continue;
14160 }
14161 *imm_reloc = BFD_RELOC_UNUSED;
14162 /* Fall through. */
14163 case '<':
14164 case '>':
14165 case '[':
14166 case ']':
14167 case '4':
14168 case '8':
14169 my_getExpression (&imm_expr, s);
14170 if (imm_expr.X_op == O_register)
14171 {
14172 /* What we thought was an expression turned out to
14173 be a register. */
14174
14175 if (s[0] == '(' && args[1] == '(')
14176 {
14177 /* It looks like the expression was omitted
14178 before a register indirection, which means
14179 that the expression is implicitly zero. We
14180 still set up imm_expr, so that we handle
14181 explicit extensions correctly. */
14182 imm_expr.X_op = O_constant;
14183 imm_expr.X_add_number = 0;
14184 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
14185 continue;
14186 }
14187
14188 break;
14189 }
14190
14191 /* We need to relax this instruction. */
14192 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
14193 s = expr_end;
14194 continue;
14195
14196 case 'p':
14197 case 'q':
14198 case 'A':
14199 case 'B':
14200 case 'E':
14201 /* We use offset_reloc rather than imm_reloc for the PC
14202 relative operands. This lets macros with both
14203 immediate and address operands work correctly. */
14204 my_getExpression (&offset_expr, s);
14205
14206 if (offset_expr.X_op == O_register)
14207 break;
14208
14209 /* We need to relax this instruction. */
14210 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
14211 s = expr_end;
14212 continue;
14213
14214 case '6': /* break code */
14215 my_getExpression (&imm_expr, s);
14216 check_absolute_expr (ip, &imm_expr);
14217 if ((unsigned long) imm_expr.X_add_number > 63)
14218 as_warn (_("Invalid value for `%s' (%lu)"),
14219 ip->insn_mo->name,
14220 (unsigned long) imm_expr.X_add_number);
14221 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
14222 imm_expr.X_op = O_absent;
14223 s = expr_end;
14224 continue;
14225
14226 case 'I':
14227 my_getExpression (&imm_expr, s);
14228 if (imm_expr.X_op != O_big
14229 && imm_expr.X_op != O_constant)
14230 insn_error = _("absolute expression required");
14231 if (HAVE_32BIT_GPRS)
14232 normalize_constant_expr (&imm_expr);
14233 s = expr_end;
14234 continue;
14235
14236 case 'a': /* 26 bit address */
14237 case 'i':
14238 my_getExpression (&offset_expr, s);
14239 s = expr_end;
14240 *offset_reloc = BFD_RELOC_MIPS16_JMP;
14241 ip->insn_opcode <<= 16;
14242 continue;
14243
14244 case 'l': /* register list for entry macro */
14245 case 'L': /* register list for exit macro */
14246 {
14247 int mask;
14248
14249 if (c == 'l')
14250 mask = 0;
14251 else
14252 mask = 7 << 3;
14253 while (*s != '\0')
14254 {
14255 unsigned int freg, reg1, reg2;
14256
14257 while (*s == ' ' || *s == ',')
14258 ++s;
14259 if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
14260 freg = 0;
14261 else if (reg_lookup (&s, RTYPE_FPU, &reg1))
14262 freg = 1;
14263 else
14264 {
14265 as_bad (_("can't parse register list"));
14266 break;
14267 }
14268 if (*s == ' ')
14269 ++s;
14270 if (*s != '-')
14271 reg2 = reg1;
14272 else
14273 {
14274 ++s;
14275 if (!reg_lookup (&s, freg ? RTYPE_FPU
14276 : (RTYPE_GP | RTYPE_NUM), &reg2))
14277 {
14278 as_bad (_("invalid register list"));
14279 break;
14280 }
14281 }
14282 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
14283 {
14284 mask &= ~ (7 << 3);
14285 mask |= 5 << 3;
14286 }
14287 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
14288 {
14289 mask &= ~ (7 << 3);
14290 mask |= 6 << 3;
14291 }
14292 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
14293 mask |= (reg2 - 3) << 3;
14294 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
14295 mask |= (reg2 - 15) << 1;
14296 else if (reg1 == RA && reg2 == RA)
14297 mask |= 1;
14298 else
14299 {
14300 as_bad (_("invalid register list"));
14301 break;
14302 }
14303 }
14304 /* The mask is filled in in the opcode table for the
14305 benefit of the disassembler. We remove it before
14306 applying the actual mask. */
14307 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
14308 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
14309 }
14310 continue;
14311
14312 case 'm': /* Register list for save insn. */
14313 case 'M': /* Register list for restore insn. */
14314 {
14315 int opcode = ip->insn_opcode;
14316 int framesz = 0, seen_framesz = 0;
14317 int nargs = 0, statics = 0, sregs = 0;
14318
14319 while (*s != '\0')
14320 {
14321 unsigned int reg1, reg2;
14322
14323 SKIP_SPACE_TABS (s);
14324 while (*s == ',')
14325 ++s;
14326 SKIP_SPACE_TABS (s);
14327
14328 my_getExpression (&imm_expr, s);
14329 if (imm_expr.X_op == O_constant)
14330 {
14331 /* Handle the frame size. */
14332 if (seen_framesz)
14333 {
14334 as_bad (_("more than one frame size in list"));
14335 break;
14336 }
14337 seen_framesz = 1;
14338 framesz = imm_expr.X_add_number;
14339 imm_expr.X_op = O_absent;
14340 s = expr_end;
14341 continue;
14342 }
14343
14344 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
14345 {
14346 as_bad (_("can't parse register list"));
14347 break;
14348 }
14349
14350 while (*s == ' ')
14351 ++s;
14352
14353 if (*s != '-')
14354 reg2 = reg1;
14355 else
14356 {
14357 ++s;
14358 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg2)
14359 || reg2 < reg1)
14360 {
14361 as_bad (_("can't parse register list"));
14362 break;
14363 }
14364 }
14365
14366 while (reg1 <= reg2)
14367 {
14368 if (reg1 >= 4 && reg1 <= 7)
14369 {
14370 if (!seen_framesz)
14371 /* args $a0-$a3 */
14372 nargs |= 1 << (reg1 - 4);
14373 else
14374 /* statics $a0-$a3 */
14375 statics |= 1 << (reg1 - 4);
14376 }
14377 else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
14378 {
14379 /* $s0-$s8 */
14380 sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
14381 }
14382 else if (reg1 == 31)
14383 {
14384 /* Add $ra to insn. */
14385 opcode |= 0x40;
14386 }
14387 else
14388 {
14389 as_bad (_("unexpected register in list"));
14390 break;
14391 }
14392 if (++reg1 == 24)
14393 reg1 = 30;
14394 }
14395 }
14396
14397 /* Encode args/statics combination. */
14398 if (nargs & statics)
14399 as_bad (_("arg/static registers overlap"));
14400 else if (nargs == 0xf)
14401 /* All $a0-$a3 are args. */
14402 opcode |= MIPS16_ALL_ARGS << 16;
14403 else if (statics == 0xf)
14404 /* All $a0-$a3 are statics. */
14405 opcode |= MIPS16_ALL_STATICS << 16;
14406 else
14407 {
14408 int narg = 0, nstat = 0;
14409
14410 /* Count arg registers. */
14411 while (nargs & 0x1)
14412 {
14413 nargs >>= 1;
14414 narg++;
14415 }
14416 if (nargs != 0)
14417 as_bad (_("invalid arg register list"));
14418
14419 /* Count static registers. */
14420 while (statics & 0x8)
14421 {
14422 statics = (statics << 1) & 0xf;
14423 nstat++;
14424 }
14425 if (statics != 0)
14426 as_bad (_("invalid static register list"));
14427
14428 /* Encode args/statics. */
14429 opcode |= ((narg << 2) | nstat) << 16;
14430 }
14431
14432 /* Encode $s0/$s1. */
14433 if (sregs & (1 << 0)) /* $s0 */
14434 opcode |= 0x20;
14435 if (sregs & (1 << 1)) /* $s1 */
14436 opcode |= 0x10;
14437 sregs >>= 2;
14438
14439 if (sregs != 0)
14440 {
14441 /* Count regs $s2-$s8. */
14442 int nsreg = 0;
14443 while (sregs & 1)
14444 {
14445 sregs >>= 1;
14446 nsreg++;
14447 }
14448 if (sregs != 0)
14449 as_bad (_("invalid static register list"));
14450 /* Encode $s2-$s8. */
14451 opcode |= nsreg << 24;
14452 }
14453
14454 /* Encode frame size. */
14455 if (!seen_framesz)
14456 as_bad (_("missing frame size"));
14457 else if ((framesz & 7) != 0 || framesz < 0
14458 || framesz > 0xff * 8)
14459 as_bad (_("invalid frame size"));
14460 else if (framesz != 128 || (opcode >> 16) != 0)
14461 {
14462 framesz /= 8;
14463 opcode |= (((framesz & 0xf0) << 16)
14464 | (framesz & 0x0f));
14465 }
14466
14467 /* Finally build the instruction. */
14468 if ((opcode >> 16) != 0 || framesz == 0)
14469 opcode |= MIPS16_EXTEND;
14470 ip->insn_opcode = opcode;
14471 }
14472 continue;
14473
14474 case 'e': /* extend code */
14475 my_getExpression (&imm_expr, s);
14476 check_absolute_expr (ip, &imm_expr);
14477 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
14478 {
14479 as_warn (_("Invalid value for `%s' (%lu)"),
14480 ip->insn_mo->name,
14481 (unsigned long) imm_expr.X_add_number);
14482 imm_expr.X_add_number &= 0x7ff;
14483 }
14484 ip->insn_opcode |= imm_expr.X_add_number;
14485 imm_expr.X_op = O_absent;
14486 s = expr_end;
14487 continue;
14488
14489 default:
14490 abort ();
14491 }
14492 break;
14493 }
14494
14495 /* Args don't match. */
14496 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
14497 strcmp (insn->name, insn[1].name) == 0)
14498 {
14499 ++insn;
14500 s = argsstart;
14501 continue;
14502 }
14503
14504 insn_error = _("illegal operands");
14505
14506 return;
14507 }
14508 }
14509
14510 /* This structure holds information we know about a mips16 immediate
14511 argument type. */
14512
14513 struct mips16_immed_operand
14514 {
14515 /* The type code used in the argument string in the opcode table. */
14516 int type;
14517 /* The number of bits in the short form of the opcode. */
14518 int nbits;
14519 /* The number of bits in the extended form of the opcode. */
14520 int extbits;
14521 /* The amount by which the short form is shifted when it is used;
14522 for example, the sw instruction has a shift count of 2. */
14523 int shift;
14524 /* The amount by which the short form is shifted when it is stored
14525 into the instruction code. */
14526 int op_shift;
14527 /* Non-zero if the short form is unsigned. */
14528 int unsp;
14529 /* Non-zero if the extended form is unsigned. */
14530 int extu;
14531 /* Non-zero if the value is PC relative. */
14532 int pcrel;
14533 };
14534
14535 /* The mips16 immediate operand types. */
14536
14537 static const struct mips16_immed_operand mips16_immed_operands[] =
14538 {
14539 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
14540 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
14541 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
14542 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
14543 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
14544 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
14545 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
14546 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
14547 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
14548 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
14549 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
14550 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
14551 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
14552 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
14553 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
14554 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
14555 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
14556 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
14557 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
14558 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
14559 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
14560 };
14561
14562 #define MIPS16_NUM_IMMED \
14563 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
14564
14565 /* Marshal immediate value VAL for an extended MIPS16 instruction.
14566 NBITS is the number of significant bits in VAL. */
14567
14568 static unsigned long
14569 mips16_immed_extend (offsetT val, unsigned int nbits)
14570 {
14571 int extval;
14572 if (nbits == 16)
14573 {
14574 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
14575 val &= 0x1f;
14576 }
14577 else if (nbits == 15)
14578 {
14579 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
14580 val &= 0xf;
14581 }
14582 else
14583 {
14584 extval = ((val & 0x1f) << 6) | (val & 0x20);
14585 val = 0;
14586 }
14587 return (extval << 16) | val;
14588 }
14589
14590 /* Install immediate value VAL into MIPS16 instruction *INSN,
14591 extending it if necessary. The instruction in *INSN may
14592 already be extended.
14593
14594 RELOC is the relocation that produced VAL, or BFD_RELOC_UNUSED
14595 if none. In the former case, VAL is a 16-bit number with no
14596 defined signedness.
14597
14598 TYPE is the type of the immediate field. USER_INSN_LENGTH
14599 is the length that the user requested, or 0 if none. */
14600
14601 static void
14602 mips16_immed (char *file, unsigned int line, int type,
14603 bfd_reloc_code_real_type reloc, offsetT val,
14604 unsigned int user_insn_length, unsigned long *insn)
14605 {
14606 const struct mips16_immed_operand *op;
14607 int mintiny, maxtiny;
14608
14609 op = mips16_immed_operands;
14610 while (op->type != type)
14611 {
14612 ++op;
14613 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
14614 }
14615
14616 if (op->unsp)
14617 {
14618 if (type == '<' || type == '>' || type == '[' || type == ']')
14619 {
14620 mintiny = 1;
14621 maxtiny = 1 << op->nbits;
14622 }
14623 else
14624 {
14625 mintiny = 0;
14626 maxtiny = (1 << op->nbits) - 1;
14627 }
14628 if (reloc != BFD_RELOC_UNUSED)
14629 val &= 0xffff;
14630 }
14631 else
14632 {
14633 mintiny = - (1 << (op->nbits - 1));
14634 maxtiny = (1 << (op->nbits - 1)) - 1;
14635 if (reloc != BFD_RELOC_UNUSED)
14636 val = SEXT_16BIT (val);
14637 }
14638
14639 /* Branch offsets have an implicit 0 in the lowest bit. */
14640 if (type == 'p' || type == 'q')
14641 val /= 2;
14642
14643 if ((val & ((1 << op->shift) - 1)) != 0
14644 || val < (mintiny << op->shift)
14645 || val > (maxtiny << op->shift))
14646 {
14647 /* We need an extended instruction. */
14648 if (user_insn_length == 2)
14649 as_bad_where (file, line, _("invalid unextended operand value"));
14650 else
14651 *insn |= MIPS16_EXTEND;
14652 }
14653 else if (user_insn_length == 4)
14654 {
14655 /* The operand doesn't force an unextended instruction to be extended.
14656 Warn if the user wanted an extended instruction anyway. */
14657 *insn |= MIPS16_EXTEND;
14658 as_warn_where (file, line,
14659 _("extended operand requested but not required"));
14660 }
14661
14662 if (mips16_opcode_length (*insn) == 2)
14663 {
14664 int insnval;
14665
14666 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
14667 insnval <<= op->op_shift;
14668 *insn |= insnval;
14669 }
14670 else
14671 {
14672 long minext, maxext;
14673
14674 if (reloc == BFD_RELOC_UNUSED)
14675 {
14676 if (op->extu)
14677 {
14678 minext = 0;
14679 maxext = (1 << op->extbits) - 1;
14680 }
14681 else
14682 {
14683 minext = - (1 << (op->extbits - 1));
14684 maxext = (1 << (op->extbits - 1)) - 1;
14685 }
14686 if (val < minext || val > maxext)
14687 as_bad_where (file, line,
14688 _("operand value out of range for instruction"));
14689 }
14690
14691 *insn |= mips16_immed_extend (val, op->extbits);
14692 }
14693 }
14694 \f
14695 struct percent_op_match
14696 {
14697 const char *str;
14698 bfd_reloc_code_real_type reloc;
14699 };
14700
14701 static const struct percent_op_match mips_percent_op[] =
14702 {
14703 {"%lo", BFD_RELOC_LO16},
14704 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
14705 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
14706 {"%call16", BFD_RELOC_MIPS_CALL16},
14707 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
14708 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
14709 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
14710 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
14711 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
14712 {"%got", BFD_RELOC_MIPS_GOT16},
14713 {"%gp_rel", BFD_RELOC_GPREL16},
14714 {"%half", BFD_RELOC_16},
14715 {"%highest", BFD_RELOC_MIPS_HIGHEST},
14716 {"%higher", BFD_RELOC_MIPS_HIGHER},
14717 {"%neg", BFD_RELOC_MIPS_SUB},
14718 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
14719 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
14720 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
14721 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
14722 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
14723 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
14724 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
14725 {"%hi", BFD_RELOC_HI16_S}
14726 };
14727
14728 static const struct percent_op_match mips16_percent_op[] =
14729 {
14730 {"%lo", BFD_RELOC_MIPS16_LO16},
14731 {"%gprel", BFD_RELOC_MIPS16_GPREL},
14732 {"%got", BFD_RELOC_MIPS16_GOT16},
14733 {"%call16", BFD_RELOC_MIPS16_CALL16},
14734 {"%hi", BFD_RELOC_MIPS16_HI16_S},
14735 {"%tlsgd", BFD_RELOC_MIPS16_TLS_GD},
14736 {"%tlsldm", BFD_RELOC_MIPS16_TLS_LDM},
14737 {"%dtprel_hi", BFD_RELOC_MIPS16_TLS_DTPREL_HI16},
14738 {"%dtprel_lo", BFD_RELOC_MIPS16_TLS_DTPREL_LO16},
14739 {"%tprel_hi", BFD_RELOC_MIPS16_TLS_TPREL_HI16},
14740 {"%tprel_lo", BFD_RELOC_MIPS16_TLS_TPREL_LO16},
14741 {"%gottprel", BFD_RELOC_MIPS16_TLS_GOTTPREL}
14742 };
14743
14744
14745 /* Return true if *STR points to a relocation operator. When returning true,
14746 move *STR over the operator and store its relocation code in *RELOC.
14747 Leave both *STR and *RELOC alone when returning false. */
14748
14749 static bfd_boolean
14750 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
14751 {
14752 const struct percent_op_match *percent_op;
14753 size_t limit, i;
14754
14755 if (mips_opts.mips16)
14756 {
14757 percent_op = mips16_percent_op;
14758 limit = ARRAY_SIZE (mips16_percent_op);
14759 }
14760 else
14761 {
14762 percent_op = mips_percent_op;
14763 limit = ARRAY_SIZE (mips_percent_op);
14764 }
14765
14766 for (i = 0; i < limit; i++)
14767 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
14768 {
14769 int len = strlen (percent_op[i].str);
14770
14771 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
14772 continue;
14773
14774 *str += strlen (percent_op[i].str);
14775 *reloc = percent_op[i].reloc;
14776
14777 /* Check whether the output BFD supports this relocation.
14778 If not, issue an error and fall back on something safe. */
14779 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
14780 {
14781 as_bad (_("relocation %s isn't supported by the current ABI"),
14782 percent_op[i].str);
14783 *reloc = BFD_RELOC_UNUSED;
14784 }
14785 return TRUE;
14786 }
14787 return FALSE;
14788 }
14789
14790
14791 /* Parse string STR as a 16-bit relocatable operand. Store the
14792 expression in *EP and the relocations in the array starting
14793 at RELOC. Return the number of relocation operators used.
14794
14795 On exit, EXPR_END points to the first character after the expression. */
14796
14797 static size_t
14798 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
14799 char *str)
14800 {
14801 bfd_reloc_code_real_type reversed_reloc[3];
14802 size_t reloc_index, i;
14803 int crux_depth, str_depth;
14804 char *crux;
14805
14806 /* Search for the start of the main expression, recoding relocations
14807 in REVERSED_RELOC. End the loop with CRUX pointing to the start
14808 of the main expression and with CRUX_DEPTH containing the number
14809 of open brackets at that point. */
14810 reloc_index = -1;
14811 str_depth = 0;
14812 do
14813 {
14814 reloc_index++;
14815 crux = str;
14816 crux_depth = str_depth;
14817
14818 /* Skip over whitespace and brackets, keeping count of the number
14819 of brackets. */
14820 while (*str == ' ' || *str == '\t' || *str == '(')
14821 if (*str++ == '(')
14822 str_depth++;
14823 }
14824 while (*str == '%'
14825 && reloc_index < (HAVE_NEWABI ? 3 : 1)
14826 && parse_relocation (&str, &reversed_reloc[reloc_index]));
14827
14828 my_getExpression (ep, crux);
14829 str = expr_end;
14830
14831 /* Match every open bracket. */
14832 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
14833 if (*str++ == ')')
14834 crux_depth--;
14835
14836 if (crux_depth > 0)
14837 as_bad (_("unclosed '('"));
14838
14839 expr_end = str;
14840
14841 if (reloc_index != 0)
14842 {
14843 prev_reloc_op_frag = frag_now;
14844 for (i = 0; i < reloc_index; i++)
14845 reloc[i] = reversed_reloc[reloc_index - 1 - i];
14846 }
14847
14848 return reloc_index;
14849 }
14850
14851 static void
14852 my_getExpression (expressionS *ep, char *str)
14853 {
14854 char *save_in;
14855
14856 save_in = input_line_pointer;
14857 input_line_pointer = str;
14858 expression (ep);
14859 expr_end = input_line_pointer;
14860 input_line_pointer = save_in;
14861 }
14862
14863 char *
14864 md_atof (int type, char *litP, int *sizeP)
14865 {
14866 return ieee_md_atof (type, litP, sizeP, target_big_endian);
14867 }
14868
14869 void
14870 md_number_to_chars (char *buf, valueT val, int n)
14871 {
14872 if (target_big_endian)
14873 number_to_chars_bigendian (buf, val, n);
14874 else
14875 number_to_chars_littleendian (buf, val, n);
14876 }
14877 \f
14878 static int support_64bit_objects(void)
14879 {
14880 const char **list, **l;
14881 int yes;
14882
14883 list = bfd_target_list ();
14884 for (l = list; *l != NULL; l++)
14885 if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
14886 || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
14887 break;
14888 yes = (*l != NULL);
14889 free (list);
14890 return yes;
14891 }
14892
14893 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
14894 NEW_VALUE. Warn if another value was already specified. Note:
14895 we have to defer parsing the -march and -mtune arguments in order
14896 to handle 'from-abi' correctly, since the ABI might be specified
14897 in a later argument. */
14898
14899 static void
14900 mips_set_option_string (const char **string_ptr, const char *new_value)
14901 {
14902 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
14903 as_warn (_("A different %s was already specified, is now %s"),
14904 string_ptr == &mips_arch_string ? "-march" : "-mtune",
14905 new_value);
14906
14907 *string_ptr = new_value;
14908 }
14909
14910 int
14911 md_parse_option (int c, char *arg)
14912 {
14913 unsigned int i;
14914
14915 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
14916 if (c == mips_ases[i].option_on || c == mips_ases[i].option_off)
14917 {
14918 file_ase_explicit |= mips_set_ase (&mips_ases[i],
14919 c == mips_ases[i].option_on);
14920 return 1;
14921 }
14922
14923 switch (c)
14924 {
14925 case OPTION_CONSTRUCT_FLOATS:
14926 mips_disable_float_construction = 0;
14927 break;
14928
14929 case OPTION_NO_CONSTRUCT_FLOATS:
14930 mips_disable_float_construction = 1;
14931 break;
14932
14933 case OPTION_TRAP:
14934 mips_trap = 1;
14935 break;
14936
14937 case OPTION_BREAK:
14938 mips_trap = 0;
14939 break;
14940
14941 case OPTION_EB:
14942 target_big_endian = 1;
14943 break;
14944
14945 case OPTION_EL:
14946 target_big_endian = 0;
14947 break;
14948
14949 case 'O':
14950 if (arg == NULL)
14951 mips_optimize = 1;
14952 else if (arg[0] == '0')
14953 mips_optimize = 0;
14954 else if (arg[0] == '1')
14955 mips_optimize = 1;
14956 else
14957 mips_optimize = 2;
14958 break;
14959
14960 case 'g':
14961 if (arg == NULL)
14962 mips_debug = 2;
14963 else
14964 mips_debug = atoi (arg);
14965 break;
14966
14967 case OPTION_MIPS1:
14968 file_mips_isa = ISA_MIPS1;
14969 break;
14970
14971 case OPTION_MIPS2:
14972 file_mips_isa = ISA_MIPS2;
14973 break;
14974
14975 case OPTION_MIPS3:
14976 file_mips_isa = ISA_MIPS3;
14977 break;
14978
14979 case OPTION_MIPS4:
14980 file_mips_isa = ISA_MIPS4;
14981 break;
14982
14983 case OPTION_MIPS5:
14984 file_mips_isa = ISA_MIPS5;
14985 break;
14986
14987 case OPTION_MIPS32:
14988 file_mips_isa = ISA_MIPS32;
14989 break;
14990
14991 case OPTION_MIPS32R2:
14992 file_mips_isa = ISA_MIPS32R2;
14993 break;
14994
14995 case OPTION_MIPS64R2:
14996 file_mips_isa = ISA_MIPS64R2;
14997 break;
14998
14999 case OPTION_MIPS64:
15000 file_mips_isa = ISA_MIPS64;
15001 break;
15002
15003 case OPTION_MTUNE:
15004 mips_set_option_string (&mips_tune_string, arg);
15005 break;
15006
15007 case OPTION_MARCH:
15008 mips_set_option_string (&mips_arch_string, arg);
15009 break;
15010
15011 case OPTION_M4650:
15012 mips_set_option_string (&mips_arch_string, "4650");
15013 mips_set_option_string (&mips_tune_string, "4650");
15014 break;
15015
15016 case OPTION_NO_M4650:
15017 break;
15018
15019 case OPTION_M4010:
15020 mips_set_option_string (&mips_arch_string, "4010");
15021 mips_set_option_string (&mips_tune_string, "4010");
15022 break;
15023
15024 case OPTION_NO_M4010:
15025 break;
15026
15027 case OPTION_M4100:
15028 mips_set_option_string (&mips_arch_string, "4100");
15029 mips_set_option_string (&mips_tune_string, "4100");
15030 break;
15031
15032 case OPTION_NO_M4100:
15033 break;
15034
15035 case OPTION_M3900:
15036 mips_set_option_string (&mips_arch_string, "3900");
15037 mips_set_option_string (&mips_tune_string, "3900");
15038 break;
15039
15040 case OPTION_NO_M3900:
15041 break;
15042
15043 case OPTION_MICROMIPS:
15044 if (mips_opts.mips16 == 1)
15045 {
15046 as_bad (_("-mmicromips cannot be used with -mips16"));
15047 return 0;
15048 }
15049 mips_opts.micromips = 1;
15050 mips_no_prev_insn ();
15051 break;
15052
15053 case OPTION_NO_MICROMIPS:
15054 mips_opts.micromips = 0;
15055 mips_no_prev_insn ();
15056 break;
15057
15058 case OPTION_MIPS16:
15059 if (mips_opts.micromips == 1)
15060 {
15061 as_bad (_("-mips16 cannot be used with -micromips"));
15062 return 0;
15063 }
15064 mips_opts.mips16 = 1;
15065 mips_no_prev_insn ();
15066 break;
15067
15068 case OPTION_NO_MIPS16:
15069 mips_opts.mips16 = 0;
15070 mips_no_prev_insn ();
15071 break;
15072
15073 case OPTION_FIX_24K:
15074 mips_fix_24k = 1;
15075 break;
15076
15077 case OPTION_NO_FIX_24K:
15078 mips_fix_24k = 0;
15079 break;
15080
15081 case OPTION_FIX_LOONGSON2F_JUMP:
15082 mips_fix_loongson2f_jump = TRUE;
15083 break;
15084
15085 case OPTION_NO_FIX_LOONGSON2F_JUMP:
15086 mips_fix_loongson2f_jump = FALSE;
15087 break;
15088
15089 case OPTION_FIX_LOONGSON2F_NOP:
15090 mips_fix_loongson2f_nop = TRUE;
15091 break;
15092
15093 case OPTION_NO_FIX_LOONGSON2F_NOP:
15094 mips_fix_loongson2f_nop = FALSE;
15095 break;
15096
15097 case OPTION_FIX_VR4120:
15098 mips_fix_vr4120 = 1;
15099 break;
15100
15101 case OPTION_NO_FIX_VR4120:
15102 mips_fix_vr4120 = 0;
15103 break;
15104
15105 case OPTION_FIX_VR4130:
15106 mips_fix_vr4130 = 1;
15107 break;
15108
15109 case OPTION_NO_FIX_VR4130:
15110 mips_fix_vr4130 = 0;
15111 break;
15112
15113 case OPTION_FIX_CN63XXP1:
15114 mips_fix_cn63xxp1 = TRUE;
15115 break;
15116
15117 case OPTION_NO_FIX_CN63XXP1:
15118 mips_fix_cn63xxp1 = FALSE;
15119 break;
15120
15121 case OPTION_RELAX_BRANCH:
15122 mips_relax_branch = 1;
15123 break;
15124
15125 case OPTION_NO_RELAX_BRANCH:
15126 mips_relax_branch = 0;
15127 break;
15128
15129 case OPTION_INSN32:
15130 mips_opts.insn32 = TRUE;
15131 break;
15132
15133 case OPTION_NO_INSN32:
15134 mips_opts.insn32 = FALSE;
15135 break;
15136
15137 case OPTION_MSHARED:
15138 mips_in_shared = TRUE;
15139 break;
15140
15141 case OPTION_MNO_SHARED:
15142 mips_in_shared = FALSE;
15143 break;
15144
15145 case OPTION_MSYM32:
15146 mips_opts.sym32 = TRUE;
15147 break;
15148
15149 case OPTION_MNO_SYM32:
15150 mips_opts.sym32 = FALSE;
15151 break;
15152
15153 /* When generating ELF code, we permit -KPIC and -call_shared to
15154 select SVR4_PIC, and -non_shared to select no PIC. This is
15155 intended to be compatible with Irix 5. */
15156 case OPTION_CALL_SHARED:
15157 mips_pic = SVR4_PIC;
15158 mips_abicalls = TRUE;
15159 break;
15160
15161 case OPTION_CALL_NONPIC:
15162 mips_pic = NO_PIC;
15163 mips_abicalls = TRUE;
15164 break;
15165
15166 case OPTION_NON_SHARED:
15167 mips_pic = NO_PIC;
15168 mips_abicalls = FALSE;
15169 break;
15170
15171 /* The -xgot option tells the assembler to use 32 bit offsets
15172 when accessing the got in SVR4_PIC mode. It is for Irix
15173 compatibility. */
15174 case OPTION_XGOT:
15175 mips_big_got = 1;
15176 break;
15177
15178 case 'G':
15179 g_switch_value = atoi (arg);
15180 g_switch_seen = 1;
15181 break;
15182
15183 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
15184 and -mabi=64. */
15185 case OPTION_32:
15186 mips_abi = O32_ABI;
15187 break;
15188
15189 case OPTION_N32:
15190 mips_abi = N32_ABI;
15191 break;
15192
15193 case OPTION_64:
15194 mips_abi = N64_ABI;
15195 if (!support_64bit_objects())
15196 as_fatal (_("No compiled in support for 64 bit object file format"));
15197 break;
15198
15199 case OPTION_GP32:
15200 file_mips_gp32 = 1;
15201 break;
15202
15203 case OPTION_GP64:
15204 file_mips_gp32 = 0;
15205 break;
15206
15207 case OPTION_FP32:
15208 file_mips_fp32 = 1;
15209 break;
15210
15211 case OPTION_FP64:
15212 file_mips_fp32 = 0;
15213 break;
15214
15215 case OPTION_SINGLE_FLOAT:
15216 file_mips_single_float = 1;
15217 break;
15218
15219 case OPTION_DOUBLE_FLOAT:
15220 file_mips_single_float = 0;
15221 break;
15222
15223 case OPTION_SOFT_FLOAT:
15224 file_mips_soft_float = 1;
15225 break;
15226
15227 case OPTION_HARD_FLOAT:
15228 file_mips_soft_float = 0;
15229 break;
15230
15231 case OPTION_MABI:
15232 if (strcmp (arg, "32") == 0)
15233 mips_abi = O32_ABI;
15234 else if (strcmp (arg, "o64") == 0)
15235 mips_abi = O64_ABI;
15236 else if (strcmp (arg, "n32") == 0)
15237 mips_abi = N32_ABI;
15238 else if (strcmp (arg, "64") == 0)
15239 {
15240 mips_abi = N64_ABI;
15241 if (! support_64bit_objects())
15242 as_fatal (_("No compiled in support for 64 bit object file "
15243 "format"));
15244 }
15245 else if (strcmp (arg, "eabi") == 0)
15246 mips_abi = EABI_ABI;
15247 else
15248 {
15249 as_fatal (_("invalid abi -mabi=%s"), arg);
15250 return 0;
15251 }
15252 break;
15253
15254 case OPTION_M7000_HILO_FIX:
15255 mips_7000_hilo_fix = TRUE;
15256 break;
15257
15258 case OPTION_MNO_7000_HILO_FIX:
15259 mips_7000_hilo_fix = FALSE;
15260 break;
15261
15262 case OPTION_MDEBUG:
15263 mips_flag_mdebug = TRUE;
15264 break;
15265
15266 case OPTION_NO_MDEBUG:
15267 mips_flag_mdebug = FALSE;
15268 break;
15269
15270 case OPTION_PDR:
15271 mips_flag_pdr = TRUE;
15272 break;
15273
15274 case OPTION_NO_PDR:
15275 mips_flag_pdr = FALSE;
15276 break;
15277
15278 case OPTION_MVXWORKS_PIC:
15279 mips_pic = VXWORKS_PIC;
15280 break;
15281
15282 case OPTION_NAN:
15283 if (strcmp (arg, "2008") == 0)
15284 mips_flag_nan2008 = TRUE;
15285 else if (strcmp (arg, "legacy") == 0)
15286 mips_flag_nan2008 = FALSE;
15287 else
15288 {
15289 as_fatal (_("Invalid NaN setting -mnan=%s"), arg);
15290 return 0;
15291 }
15292 break;
15293
15294 default:
15295 return 0;
15296 }
15297
15298 mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
15299
15300 return 1;
15301 }
15302 \f
15303 /* Set up globals to generate code for the ISA or processor
15304 described by INFO. */
15305
15306 static void
15307 mips_set_architecture (const struct mips_cpu_info *info)
15308 {
15309 if (info != 0)
15310 {
15311 file_mips_arch = info->cpu;
15312 mips_opts.arch = info->cpu;
15313 mips_opts.isa = info->isa;
15314 }
15315 }
15316
15317
15318 /* Likewise for tuning. */
15319
15320 static void
15321 mips_set_tune (const struct mips_cpu_info *info)
15322 {
15323 if (info != 0)
15324 mips_tune = info->cpu;
15325 }
15326
15327
15328 void
15329 mips_after_parse_args (void)
15330 {
15331 const struct mips_cpu_info *arch_info = 0;
15332 const struct mips_cpu_info *tune_info = 0;
15333
15334 /* GP relative stuff not working for PE */
15335 if (strncmp (TARGET_OS, "pe", 2) == 0)
15336 {
15337 if (g_switch_seen && g_switch_value != 0)
15338 as_bad (_("-G not supported in this configuration."));
15339 g_switch_value = 0;
15340 }
15341
15342 if (mips_abi == NO_ABI)
15343 mips_abi = MIPS_DEFAULT_ABI;
15344
15345 /* The following code determines the architecture and register size.
15346 Similar code was added to GCC 3.3 (see override_options() in
15347 config/mips/mips.c). The GAS and GCC code should be kept in sync
15348 as much as possible. */
15349
15350 if (mips_arch_string != 0)
15351 arch_info = mips_parse_cpu ("-march", mips_arch_string);
15352
15353 if (file_mips_isa != ISA_UNKNOWN)
15354 {
15355 /* Handle -mipsN. At this point, file_mips_isa contains the
15356 ISA level specified by -mipsN, while arch_info->isa contains
15357 the -march selection (if any). */
15358 if (arch_info != 0)
15359 {
15360 /* -march takes precedence over -mipsN, since it is more descriptive.
15361 There's no harm in specifying both as long as the ISA levels
15362 are the same. */
15363 if (file_mips_isa != arch_info->isa)
15364 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
15365 mips_cpu_info_from_isa (file_mips_isa)->name,
15366 mips_cpu_info_from_isa (arch_info->isa)->name);
15367 }
15368 else
15369 arch_info = mips_cpu_info_from_isa (file_mips_isa);
15370 }
15371
15372 if (arch_info == 0)
15373 {
15374 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
15375 gas_assert (arch_info);
15376 }
15377
15378 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
15379 as_bad (_("-march=%s is not compatible with the selected ABI"),
15380 arch_info->name);
15381
15382 mips_set_architecture (arch_info);
15383
15384 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
15385 if (mips_tune_string != 0)
15386 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
15387
15388 if (tune_info == 0)
15389 mips_set_tune (arch_info);
15390 else
15391 mips_set_tune (tune_info);
15392
15393 if (file_mips_gp32 >= 0)
15394 {
15395 /* The user specified the size of the integer registers. Make sure
15396 it agrees with the ABI and ISA. */
15397 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
15398 as_bad (_("-mgp64 used with a 32-bit processor"));
15399 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
15400 as_bad (_("-mgp32 used with a 64-bit ABI"));
15401 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
15402 as_bad (_("-mgp64 used with a 32-bit ABI"));
15403 }
15404 else
15405 {
15406 /* Infer the integer register size from the ABI and processor.
15407 Restrict ourselves to 32-bit registers if that's all the
15408 processor has, or if the ABI cannot handle 64-bit registers. */
15409 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
15410 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
15411 }
15412
15413 switch (file_mips_fp32)
15414 {
15415 default:
15416 case -1:
15417 /* No user specified float register size.
15418 ??? GAS treats single-float processors as though they had 64-bit
15419 float registers (although it complains when double-precision
15420 instructions are used). As things stand, saying they have 32-bit
15421 registers would lead to spurious "register must be even" messages.
15422 So here we assume float registers are never smaller than the
15423 integer ones. */
15424 if (file_mips_gp32 == 0)
15425 /* 64-bit integer registers implies 64-bit float registers. */
15426 file_mips_fp32 = 0;
15427 else if ((mips_opts.ase & FP64_ASES)
15428 && ISA_HAS_64BIT_FPRS (mips_opts.isa))
15429 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
15430 file_mips_fp32 = 0;
15431 else
15432 /* 32-bit float registers. */
15433 file_mips_fp32 = 1;
15434 break;
15435
15436 /* The user specified the size of the float registers. Check if it
15437 agrees with the ABI and ISA. */
15438 case 0:
15439 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
15440 as_bad (_("-mfp64 used with a 32-bit fpu"));
15441 else if (ABI_NEEDS_32BIT_REGS (mips_abi)
15442 && !ISA_HAS_MXHC1 (mips_opts.isa))
15443 as_warn (_("-mfp64 used with a 32-bit ABI"));
15444 break;
15445 case 1:
15446 if (ABI_NEEDS_64BIT_REGS (mips_abi))
15447 as_warn (_("-mfp32 used with a 64-bit ABI"));
15448 break;
15449 }
15450
15451 /* End of GCC-shared inference code. */
15452
15453 /* This flag is set when we have a 64-bit capable CPU but use only
15454 32-bit wide registers. Note that EABI does not use it. */
15455 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
15456 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
15457 || mips_abi == O32_ABI))
15458 mips_32bitmode = 1;
15459
15460 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
15461 as_bad (_("trap exception not supported at ISA 1"));
15462
15463 /* If the selected architecture includes support for ASEs, enable
15464 generation of code for them. */
15465 if (mips_opts.mips16 == -1)
15466 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
15467 if (mips_opts.micromips == -1)
15468 mips_opts.micromips = (CPU_HAS_MICROMIPS (file_mips_arch)) ? 1 : 0;
15469
15470 /* MIPS3D and MDMX require 64-bit FPRs, so -mfp32 should stop those
15471 ASEs from being selected implicitly. */
15472 if (file_mips_fp32 == 1)
15473 file_ase_explicit |= ASE_MIPS3D | ASE_MDMX;
15474
15475 /* If the user didn't explicitly select or deselect a particular ASE,
15476 use the default setting for the CPU. */
15477 mips_opts.ase |= (arch_info->ase & ~file_ase_explicit);
15478
15479 file_mips_isa = mips_opts.isa;
15480 file_ase = mips_opts.ase;
15481 mips_opts.gp32 = file_mips_gp32;
15482 mips_opts.fp32 = file_mips_fp32;
15483 mips_opts.soft_float = file_mips_soft_float;
15484 mips_opts.single_float = file_mips_single_float;
15485
15486 mips_check_isa_supports_ases ();
15487
15488 if (mips_flag_mdebug < 0)
15489 mips_flag_mdebug = 0;
15490 }
15491 \f
15492 void
15493 mips_init_after_args (void)
15494 {
15495 /* initialize opcodes */
15496 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
15497 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
15498 }
15499
15500 long
15501 md_pcrel_from (fixS *fixP)
15502 {
15503 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
15504 switch (fixP->fx_r_type)
15505 {
15506 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15507 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15508 /* Return the address of the delay slot. */
15509 return addr + 2;
15510
15511 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15512 case BFD_RELOC_MICROMIPS_JMP:
15513 case BFD_RELOC_16_PCREL_S2:
15514 case BFD_RELOC_MIPS_JMP:
15515 /* Return the address of the delay slot. */
15516 return addr + 4;
15517
15518 case BFD_RELOC_32_PCREL:
15519 return addr;
15520
15521 default:
15522 /* We have no relocation type for PC relative MIPS16 instructions. */
15523 if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
15524 as_bad_where (fixP->fx_file, fixP->fx_line,
15525 _("PC relative MIPS16 instruction references a different section"));
15526 return addr;
15527 }
15528 }
15529
15530 /* This is called before the symbol table is processed. In order to
15531 work with gcc when using mips-tfile, we must keep all local labels.
15532 However, in other cases, we want to discard them. If we were
15533 called with -g, but we didn't see any debugging information, it may
15534 mean that gcc is smuggling debugging information through to
15535 mips-tfile, in which case we must generate all local labels. */
15536
15537 void
15538 mips_frob_file_before_adjust (void)
15539 {
15540 #ifndef NO_ECOFF_DEBUGGING
15541 if (ECOFF_DEBUGGING
15542 && mips_debug != 0
15543 && ! ecoff_debugging_seen)
15544 flag_keep_locals = 1;
15545 #endif
15546 }
15547
15548 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
15549 the corresponding LO16 reloc. This is called before md_apply_fix and
15550 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
15551 relocation operators.
15552
15553 For our purposes, a %lo() expression matches a %got() or %hi()
15554 expression if:
15555
15556 (a) it refers to the same symbol; and
15557 (b) the offset applied in the %lo() expression is no lower than
15558 the offset applied in the %got() or %hi().
15559
15560 (b) allows us to cope with code like:
15561
15562 lui $4,%hi(foo)
15563 lh $4,%lo(foo+2)($4)
15564
15565 ...which is legal on RELA targets, and has a well-defined behaviour
15566 if the user knows that adding 2 to "foo" will not induce a carry to
15567 the high 16 bits.
15568
15569 When several %lo()s match a particular %got() or %hi(), we use the
15570 following rules to distinguish them:
15571
15572 (1) %lo()s with smaller offsets are a better match than %lo()s with
15573 higher offsets.
15574
15575 (2) %lo()s with no matching %got() or %hi() are better than those
15576 that already have a matching %got() or %hi().
15577
15578 (3) later %lo()s are better than earlier %lo()s.
15579
15580 These rules are applied in order.
15581
15582 (1) means, among other things, that %lo()s with identical offsets are
15583 chosen if they exist.
15584
15585 (2) means that we won't associate several high-part relocations with
15586 the same low-part relocation unless there's no alternative. Having
15587 several high parts for the same low part is a GNU extension; this rule
15588 allows careful users to avoid it.
15589
15590 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
15591 with the last high-part relocation being at the front of the list.
15592 It therefore makes sense to choose the last matching low-part
15593 relocation, all other things being equal. It's also easier
15594 to code that way. */
15595
15596 void
15597 mips_frob_file (void)
15598 {
15599 struct mips_hi_fixup *l;
15600 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
15601
15602 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
15603 {
15604 segment_info_type *seginfo;
15605 bfd_boolean matched_lo_p;
15606 fixS **hi_pos, **lo_pos, **pos;
15607
15608 gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
15609
15610 /* If a GOT16 relocation turns out to be against a global symbol,
15611 there isn't supposed to be a matching LO. Ignore %gots against
15612 constants; we'll report an error for those later. */
15613 if (got16_reloc_p (l->fixp->fx_r_type)
15614 && !(l->fixp->fx_addsy
15615 && pic_need_relax (l->fixp->fx_addsy, l->seg)))
15616 continue;
15617
15618 /* Check quickly whether the next fixup happens to be a matching %lo. */
15619 if (fixup_has_matching_lo_p (l->fixp))
15620 continue;
15621
15622 seginfo = seg_info (l->seg);
15623
15624 /* Set HI_POS to the position of this relocation in the chain.
15625 Set LO_POS to the position of the chosen low-part relocation.
15626 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
15627 relocation that matches an immediately-preceding high-part
15628 relocation. */
15629 hi_pos = NULL;
15630 lo_pos = NULL;
15631 matched_lo_p = FALSE;
15632 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
15633
15634 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
15635 {
15636 if (*pos == l->fixp)
15637 hi_pos = pos;
15638
15639 if ((*pos)->fx_r_type == looking_for_rtype
15640 && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
15641 && (*pos)->fx_offset >= l->fixp->fx_offset
15642 && (lo_pos == NULL
15643 || (*pos)->fx_offset < (*lo_pos)->fx_offset
15644 || (!matched_lo_p
15645 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
15646 lo_pos = pos;
15647
15648 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
15649 && fixup_has_matching_lo_p (*pos));
15650 }
15651
15652 /* If we found a match, remove the high-part relocation from its
15653 current position and insert it before the low-part relocation.
15654 Make the offsets match so that fixup_has_matching_lo_p()
15655 will return true.
15656
15657 We don't warn about unmatched high-part relocations since some
15658 versions of gcc have been known to emit dead "lui ...%hi(...)"
15659 instructions. */
15660 if (lo_pos != NULL)
15661 {
15662 l->fixp->fx_offset = (*lo_pos)->fx_offset;
15663 if (l->fixp->fx_next != *lo_pos)
15664 {
15665 *hi_pos = l->fixp->fx_next;
15666 l->fixp->fx_next = *lo_pos;
15667 *lo_pos = l->fixp;
15668 }
15669 }
15670 }
15671 }
15672
15673 int
15674 mips_force_relocation (fixS *fixp)
15675 {
15676 if (generic_force_reloc (fixp))
15677 return 1;
15678
15679 /* We want to keep BFD_RELOC_MICROMIPS_*_PCREL_S1 relocation,
15680 so that the linker relaxation can update targets. */
15681 if (fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
15682 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
15683 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1)
15684 return 1;
15685
15686 return 0;
15687 }
15688
15689 /* Read the instruction associated with RELOC from BUF. */
15690
15691 static unsigned int
15692 read_reloc_insn (char *buf, bfd_reloc_code_real_type reloc)
15693 {
15694 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
15695 return read_compressed_insn (buf, 4);
15696 else
15697 return read_insn (buf);
15698 }
15699
15700 /* Write instruction INSN to BUF, given that it has been relocated
15701 by RELOC. */
15702
15703 static void
15704 write_reloc_insn (char *buf, bfd_reloc_code_real_type reloc,
15705 unsigned long insn)
15706 {
15707 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
15708 write_compressed_insn (buf, insn, 4);
15709 else
15710 write_insn (buf, insn);
15711 }
15712
15713 /* Apply a fixup to the object file. */
15714
15715 void
15716 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
15717 {
15718 char *buf;
15719 unsigned long insn;
15720 reloc_howto_type *howto;
15721
15722 /* We ignore generic BFD relocations we don't know about. */
15723 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
15724 if (! howto)
15725 return;
15726
15727 gas_assert (fixP->fx_size == 2
15728 || fixP->fx_size == 4
15729 || fixP->fx_r_type == BFD_RELOC_16
15730 || fixP->fx_r_type == BFD_RELOC_64
15731 || fixP->fx_r_type == BFD_RELOC_CTOR
15732 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
15733 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_SUB
15734 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
15735 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
15736 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
15737
15738 buf = fixP->fx_frag->fr_literal + fixP->fx_where;
15739
15740 gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
15741 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
15742 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
15743 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
15744 || fixP->fx_r_type == BFD_RELOC_32_PCREL);
15745
15746 /* Don't treat parts of a composite relocation as done. There are two
15747 reasons for this:
15748
15749 (1) The second and third parts will be against 0 (RSS_UNDEF) but
15750 should nevertheless be emitted if the first part is.
15751
15752 (2) In normal usage, composite relocations are never assembly-time
15753 constants. The easiest way of dealing with the pathological
15754 exceptions is to generate a relocation against STN_UNDEF and
15755 leave everything up to the linker. */
15756 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
15757 fixP->fx_done = 1;
15758
15759 switch (fixP->fx_r_type)
15760 {
15761 case BFD_RELOC_MIPS_TLS_GD:
15762 case BFD_RELOC_MIPS_TLS_LDM:
15763 case BFD_RELOC_MIPS_TLS_DTPREL32:
15764 case BFD_RELOC_MIPS_TLS_DTPREL64:
15765 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
15766 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
15767 case BFD_RELOC_MIPS_TLS_GOTTPREL:
15768 case BFD_RELOC_MIPS_TLS_TPREL32:
15769 case BFD_RELOC_MIPS_TLS_TPREL64:
15770 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
15771 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
15772 case BFD_RELOC_MICROMIPS_TLS_GD:
15773 case BFD_RELOC_MICROMIPS_TLS_LDM:
15774 case BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16:
15775 case BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16:
15776 case BFD_RELOC_MICROMIPS_TLS_GOTTPREL:
15777 case BFD_RELOC_MICROMIPS_TLS_TPREL_HI16:
15778 case BFD_RELOC_MICROMIPS_TLS_TPREL_LO16:
15779 case BFD_RELOC_MIPS16_TLS_GD:
15780 case BFD_RELOC_MIPS16_TLS_LDM:
15781 case BFD_RELOC_MIPS16_TLS_DTPREL_HI16:
15782 case BFD_RELOC_MIPS16_TLS_DTPREL_LO16:
15783 case BFD_RELOC_MIPS16_TLS_GOTTPREL:
15784 case BFD_RELOC_MIPS16_TLS_TPREL_HI16:
15785 case BFD_RELOC_MIPS16_TLS_TPREL_LO16:
15786 if (!fixP->fx_addsy)
15787 {
15788 as_bad_where (fixP->fx_file, fixP->fx_line,
15789 _("TLS relocation against a constant"));
15790 break;
15791 }
15792 S_SET_THREAD_LOCAL (fixP->fx_addsy);
15793 /* fall through */
15794
15795 case BFD_RELOC_MIPS_JMP:
15796 case BFD_RELOC_MIPS_SHIFT5:
15797 case BFD_RELOC_MIPS_SHIFT6:
15798 case BFD_RELOC_MIPS_GOT_DISP:
15799 case BFD_RELOC_MIPS_GOT_PAGE:
15800 case BFD_RELOC_MIPS_GOT_OFST:
15801 case BFD_RELOC_MIPS_SUB:
15802 case BFD_RELOC_MIPS_INSERT_A:
15803 case BFD_RELOC_MIPS_INSERT_B:
15804 case BFD_RELOC_MIPS_DELETE:
15805 case BFD_RELOC_MIPS_HIGHEST:
15806 case BFD_RELOC_MIPS_HIGHER:
15807 case BFD_RELOC_MIPS_SCN_DISP:
15808 case BFD_RELOC_MIPS_REL16:
15809 case BFD_RELOC_MIPS_RELGOT:
15810 case BFD_RELOC_MIPS_JALR:
15811 case BFD_RELOC_HI16:
15812 case BFD_RELOC_HI16_S:
15813 case BFD_RELOC_LO16:
15814 case BFD_RELOC_GPREL16:
15815 case BFD_RELOC_MIPS_LITERAL:
15816 case BFD_RELOC_MIPS_CALL16:
15817 case BFD_RELOC_MIPS_GOT16:
15818 case BFD_RELOC_GPREL32:
15819 case BFD_RELOC_MIPS_GOT_HI16:
15820 case BFD_RELOC_MIPS_GOT_LO16:
15821 case BFD_RELOC_MIPS_CALL_HI16:
15822 case BFD_RELOC_MIPS_CALL_LO16:
15823 case BFD_RELOC_MIPS16_GPREL:
15824 case BFD_RELOC_MIPS16_GOT16:
15825 case BFD_RELOC_MIPS16_CALL16:
15826 case BFD_RELOC_MIPS16_HI16:
15827 case BFD_RELOC_MIPS16_HI16_S:
15828 case BFD_RELOC_MIPS16_LO16:
15829 case BFD_RELOC_MIPS16_JMP:
15830 case BFD_RELOC_MICROMIPS_JMP:
15831 case BFD_RELOC_MICROMIPS_GOT_DISP:
15832 case BFD_RELOC_MICROMIPS_GOT_PAGE:
15833 case BFD_RELOC_MICROMIPS_GOT_OFST:
15834 case BFD_RELOC_MICROMIPS_SUB:
15835 case BFD_RELOC_MICROMIPS_HIGHEST:
15836 case BFD_RELOC_MICROMIPS_HIGHER:
15837 case BFD_RELOC_MICROMIPS_SCN_DISP:
15838 case BFD_RELOC_MICROMIPS_JALR:
15839 case BFD_RELOC_MICROMIPS_HI16:
15840 case BFD_RELOC_MICROMIPS_HI16_S:
15841 case BFD_RELOC_MICROMIPS_LO16:
15842 case BFD_RELOC_MICROMIPS_GPREL16:
15843 case BFD_RELOC_MICROMIPS_LITERAL:
15844 case BFD_RELOC_MICROMIPS_CALL16:
15845 case BFD_RELOC_MICROMIPS_GOT16:
15846 case BFD_RELOC_MICROMIPS_GOT_HI16:
15847 case BFD_RELOC_MICROMIPS_GOT_LO16:
15848 case BFD_RELOC_MICROMIPS_CALL_HI16:
15849 case BFD_RELOC_MICROMIPS_CALL_LO16:
15850 case BFD_RELOC_MIPS_EH:
15851 if (fixP->fx_done)
15852 {
15853 offsetT value;
15854
15855 if (calculate_reloc (fixP->fx_r_type, *valP, &value))
15856 {
15857 insn = read_reloc_insn (buf, fixP->fx_r_type);
15858 if (mips16_reloc_p (fixP->fx_r_type))
15859 insn |= mips16_immed_extend (value, 16);
15860 else
15861 insn |= (value & 0xffff);
15862 write_reloc_insn (buf, fixP->fx_r_type, insn);
15863 }
15864 else
15865 as_bad_where (fixP->fx_file, fixP->fx_line,
15866 _("Unsupported constant in relocation"));
15867 }
15868 break;
15869
15870 case BFD_RELOC_64:
15871 /* This is handled like BFD_RELOC_32, but we output a sign
15872 extended value if we are only 32 bits. */
15873 if (fixP->fx_done)
15874 {
15875 if (8 <= sizeof (valueT))
15876 md_number_to_chars (buf, *valP, 8);
15877 else
15878 {
15879 valueT hiv;
15880
15881 if ((*valP & 0x80000000) != 0)
15882 hiv = 0xffffffff;
15883 else
15884 hiv = 0;
15885 md_number_to_chars (buf + (target_big_endian ? 4 : 0), *valP, 4);
15886 md_number_to_chars (buf + (target_big_endian ? 0 : 4), hiv, 4);
15887 }
15888 }
15889 break;
15890
15891 case BFD_RELOC_RVA:
15892 case BFD_RELOC_32:
15893 case BFD_RELOC_32_PCREL:
15894 case BFD_RELOC_16:
15895 /* If we are deleting this reloc entry, we must fill in the
15896 value now. This can happen if we have a .word which is not
15897 resolved when it appears but is later defined. */
15898 if (fixP->fx_done)
15899 md_number_to_chars (buf, *valP, fixP->fx_size);
15900 break;
15901
15902 case BFD_RELOC_16_PCREL_S2:
15903 if ((*valP & 0x3) != 0)
15904 as_bad_where (fixP->fx_file, fixP->fx_line,
15905 _("Branch to misaligned address (%lx)"), (long) *valP);
15906
15907 /* We need to save the bits in the instruction since fixup_segment()
15908 might be deleting the relocation entry (i.e., a branch within
15909 the current segment). */
15910 if (! fixP->fx_done)
15911 break;
15912
15913 /* Update old instruction data. */
15914 insn = read_insn (buf);
15915
15916 if (*valP + 0x20000 <= 0x3ffff)
15917 {
15918 insn |= (*valP >> 2) & 0xffff;
15919 write_insn (buf, insn);
15920 }
15921 else if (mips_pic == NO_PIC
15922 && fixP->fx_done
15923 && fixP->fx_frag->fr_address >= text_section->vma
15924 && (fixP->fx_frag->fr_address
15925 < text_section->vma + bfd_get_section_size (text_section))
15926 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
15927 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
15928 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
15929 {
15930 /* The branch offset is too large. If this is an
15931 unconditional branch, and we are not generating PIC code,
15932 we can convert it to an absolute jump instruction. */
15933 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
15934 insn = 0x0c000000; /* jal */
15935 else
15936 insn = 0x08000000; /* j */
15937 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
15938 fixP->fx_done = 0;
15939 fixP->fx_addsy = section_symbol (text_section);
15940 *valP += md_pcrel_from (fixP);
15941 write_insn (buf, insn);
15942 }
15943 else
15944 {
15945 /* If we got here, we have branch-relaxation disabled,
15946 and there's nothing we can do to fix this instruction
15947 without turning it into a longer sequence. */
15948 as_bad_where (fixP->fx_file, fixP->fx_line,
15949 _("Branch out of range"));
15950 }
15951 break;
15952
15953 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15954 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15955 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15956 /* We adjust the offset back to even. */
15957 if ((*valP & 0x1) != 0)
15958 --(*valP);
15959
15960 if (! fixP->fx_done)
15961 break;
15962
15963 /* Should never visit here, because we keep the relocation. */
15964 abort ();
15965 break;
15966
15967 case BFD_RELOC_VTABLE_INHERIT:
15968 fixP->fx_done = 0;
15969 if (fixP->fx_addsy
15970 && !S_IS_DEFINED (fixP->fx_addsy)
15971 && !S_IS_WEAK (fixP->fx_addsy))
15972 S_SET_WEAK (fixP->fx_addsy);
15973 break;
15974
15975 case BFD_RELOC_VTABLE_ENTRY:
15976 fixP->fx_done = 0;
15977 break;
15978
15979 default:
15980 abort ();
15981 }
15982
15983 /* Remember value for tc_gen_reloc. */
15984 fixP->fx_addnumber = *valP;
15985 }
15986
15987 static symbolS *
15988 get_symbol (void)
15989 {
15990 int c;
15991 char *name;
15992 symbolS *p;
15993
15994 name = input_line_pointer;
15995 c = get_symbol_end ();
15996 p = (symbolS *) symbol_find_or_make (name);
15997 *input_line_pointer = c;
15998 return p;
15999 }
16000
16001 /* Align the current frag to a given power of two. If a particular
16002 fill byte should be used, FILL points to an integer that contains
16003 that byte, otherwise FILL is null.
16004
16005 This function used to have the comment:
16006
16007 The MIPS assembler also automatically adjusts any preceding label.
16008
16009 The implementation therefore applied the adjustment to a maximum of
16010 one label. However, other label adjustments are applied to batches
16011 of labels, and adjusting just one caused problems when new labels
16012 were added for the sake of debugging or unwind information.
16013 We therefore adjust all preceding labels (given as LABELS) instead. */
16014
16015 static void
16016 mips_align (int to, int *fill, struct insn_label_list *labels)
16017 {
16018 mips_emit_delays ();
16019 mips_record_compressed_mode ();
16020 if (fill == NULL && subseg_text_p (now_seg))
16021 frag_align_code (to, 0);
16022 else
16023 frag_align (to, fill ? *fill : 0, 0);
16024 record_alignment (now_seg, to);
16025 mips_move_labels (labels, FALSE);
16026 }
16027
16028 /* Align to a given power of two. .align 0 turns off the automatic
16029 alignment used by the data creating pseudo-ops. */
16030
16031 static void
16032 s_align (int x ATTRIBUTE_UNUSED)
16033 {
16034 int temp, fill_value, *fill_ptr;
16035 long max_alignment = 28;
16036
16037 /* o Note that the assembler pulls down any immediately preceding label
16038 to the aligned address.
16039 o It's not documented but auto alignment is reinstated by
16040 a .align pseudo instruction.
16041 o Note also that after auto alignment is turned off the mips assembler
16042 issues an error on attempt to assemble an improperly aligned data item.
16043 We don't. */
16044
16045 temp = get_absolute_expression ();
16046 if (temp > max_alignment)
16047 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
16048 else if (temp < 0)
16049 {
16050 as_warn (_("Alignment negative: 0 assumed."));
16051 temp = 0;
16052 }
16053 if (*input_line_pointer == ',')
16054 {
16055 ++input_line_pointer;
16056 fill_value = get_absolute_expression ();
16057 fill_ptr = &fill_value;
16058 }
16059 else
16060 fill_ptr = 0;
16061 if (temp)
16062 {
16063 segment_info_type *si = seg_info (now_seg);
16064 struct insn_label_list *l = si->label_list;
16065 /* Auto alignment should be switched on by next section change. */
16066 auto_align = 1;
16067 mips_align (temp, fill_ptr, l);
16068 }
16069 else
16070 {
16071 auto_align = 0;
16072 }
16073
16074 demand_empty_rest_of_line ();
16075 }
16076
16077 static void
16078 s_change_sec (int sec)
16079 {
16080 segT seg;
16081
16082 /* The ELF backend needs to know that we are changing sections, so
16083 that .previous works correctly. We could do something like check
16084 for an obj_section_change_hook macro, but that might be confusing
16085 as it would not be appropriate to use it in the section changing
16086 functions in read.c, since obj-elf.c intercepts those. FIXME:
16087 This should be cleaner, somehow. */
16088 obj_elf_section_change_hook ();
16089
16090 mips_emit_delays ();
16091
16092 switch (sec)
16093 {
16094 case 't':
16095 s_text (0);
16096 break;
16097 case 'd':
16098 s_data (0);
16099 break;
16100 case 'b':
16101 subseg_set (bss_section, (subsegT) get_absolute_expression ());
16102 demand_empty_rest_of_line ();
16103 break;
16104
16105 case 'r':
16106 seg = subseg_new (RDATA_SECTION_NAME,
16107 (subsegT) get_absolute_expression ());
16108 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
16109 | SEC_READONLY | SEC_RELOC
16110 | SEC_DATA));
16111 if (strncmp (TARGET_OS, "elf", 3) != 0)
16112 record_alignment (seg, 4);
16113 demand_empty_rest_of_line ();
16114 break;
16115
16116 case 's':
16117 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
16118 bfd_set_section_flags (stdoutput, seg,
16119 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
16120 if (strncmp (TARGET_OS, "elf", 3) != 0)
16121 record_alignment (seg, 4);
16122 demand_empty_rest_of_line ();
16123 break;
16124
16125 case 'B':
16126 seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
16127 bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
16128 if (strncmp (TARGET_OS, "elf", 3) != 0)
16129 record_alignment (seg, 4);
16130 demand_empty_rest_of_line ();
16131 break;
16132 }
16133
16134 auto_align = 1;
16135 }
16136
16137 void
16138 s_change_section (int ignore ATTRIBUTE_UNUSED)
16139 {
16140 char *section_name;
16141 char c;
16142 char next_c = 0;
16143 int section_type;
16144 int section_flag;
16145 int section_entry_size;
16146 int section_alignment;
16147
16148 section_name = input_line_pointer;
16149 c = get_symbol_end ();
16150 if (c)
16151 next_c = *(input_line_pointer + 1);
16152
16153 /* Do we have .section Name<,"flags">? */
16154 if (c != ',' || (c == ',' && next_c == '"'))
16155 {
16156 /* just after name is now '\0'. */
16157 *input_line_pointer = c;
16158 input_line_pointer = section_name;
16159 obj_elf_section (ignore);
16160 return;
16161 }
16162 input_line_pointer++;
16163
16164 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
16165 if (c == ',')
16166 section_type = get_absolute_expression ();
16167 else
16168 section_type = 0;
16169 if (*input_line_pointer++ == ',')
16170 section_flag = get_absolute_expression ();
16171 else
16172 section_flag = 0;
16173 if (*input_line_pointer++ == ',')
16174 section_entry_size = get_absolute_expression ();
16175 else
16176 section_entry_size = 0;
16177 if (*input_line_pointer++ == ',')
16178 section_alignment = get_absolute_expression ();
16179 else
16180 section_alignment = 0;
16181 /* FIXME: really ignore? */
16182 (void) section_alignment;
16183
16184 section_name = xstrdup (section_name);
16185
16186 /* When using the generic form of .section (as implemented by obj-elf.c),
16187 there's no way to set the section type to SHT_MIPS_DWARF. Users have
16188 traditionally had to fall back on the more common @progbits instead.
16189
16190 There's nothing really harmful in this, since bfd will correct
16191 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
16192 means that, for backwards compatibility, the special_section entries
16193 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
16194
16195 Even so, we shouldn't force users of the MIPS .section syntax to
16196 incorrectly label the sections as SHT_PROGBITS. The best compromise
16197 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
16198 generic type-checking code. */
16199 if (section_type == SHT_MIPS_DWARF)
16200 section_type = SHT_PROGBITS;
16201
16202 obj_elf_change_section (section_name, section_type, section_flag,
16203 section_entry_size, 0, 0, 0);
16204
16205 if (now_seg->name != section_name)
16206 free (section_name);
16207 }
16208
16209 void
16210 mips_enable_auto_align (void)
16211 {
16212 auto_align = 1;
16213 }
16214
16215 static void
16216 s_cons (int log_size)
16217 {
16218 segment_info_type *si = seg_info (now_seg);
16219 struct insn_label_list *l = si->label_list;
16220
16221 mips_emit_delays ();
16222 if (log_size > 0 && auto_align)
16223 mips_align (log_size, 0, l);
16224 cons (1 << log_size);
16225 mips_clear_insn_labels ();
16226 }
16227
16228 static void
16229 s_float_cons (int type)
16230 {
16231 segment_info_type *si = seg_info (now_seg);
16232 struct insn_label_list *l = si->label_list;
16233
16234 mips_emit_delays ();
16235
16236 if (auto_align)
16237 {
16238 if (type == 'd')
16239 mips_align (3, 0, l);
16240 else
16241 mips_align (2, 0, l);
16242 }
16243
16244 float_cons (type);
16245 mips_clear_insn_labels ();
16246 }
16247
16248 /* Handle .globl. We need to override it because on Irix 5 you are
16249 permitted to say
16250 .globl foo .text
16251 where foo is an undefined symbol, to mean that foo should be
16252 considered to be the address of a function. */
16253
16254 static void
16255 s_mips_globl (int x ATTRIBUTE_UNUSED)
16256 {
16257 char *name;
16258 int c;
16259 symbolS *symbolP;
16260 flagword flag;
16261
16262 do
16263 {
16264 name = input_line_pointer;
16265 c = get_symbol_end ();
16266 symbolP = symbol_find_or_make (name);
16267 S_SET_EXTERNAL (symbolP);
16268
16269 *input_line_pointer = c;
16270 SKIP_WHITESPACE ();
16271
16272 /* On Irix 5, every global symbol that is not explicitly labelled as
16273 being a function is apparently labelled as being an object. */
16274 flag = BSF_OBJECT;
16275
16276 if (!is_end_of_line[(unsigned char) *input_line_pointer]
16277 && (*input_line_pointer != ','))
16278 {
16279 char *secname;
16280 asection *sec;
16281
16282 secname = input_line_pointer;
16283 c = get_symbol_end ();
16284 sec = bfd_get_section_by_name (stdoutput, secname);
16285 if (sec == NULL)
16286 as_bad (_("%s: no such section"), secname);
16287 *input_line_pointer = c;
16288
16289 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
16290 flag = BSF_FUNCTION;
16291 }
16292
16293 symbol_get_bfdsym (symbolP)->flags |= flag;
16294
16295 c = *input_line_pointer;
16296 if (c == ',')
16297 {
16298 input_line_pointer++;
16299 SKIP_WHITESPACE ();
16300 if (is_end_of_line[(unsigned char) *input_line_pointer])
16301 c = '\n';
16302 }
16303 }
16304 while (c == ',');
16305
16306 demand_empty_rest_of_line ();
16307 }
16308
16309 static void
16310 s_option (int x ATTRIBUTE_UNUSED)
16311 {
16312 char *opt;
16313 char c;
16314
16315 opt = input_line_pointer;
16316 c = get_symbol_end ();
16317
16318 if (*opt == 'O')
16319 {
16320 /* FIXME: What does this mean? */
16321 }
16322 else if (strncmp (opt, "pic", 3) == 0)
16323 {
16324 int i;
16325
16326 i = atoi (opt + 3);
16327 if (i == 0)
16328 mips_pic = NO_PIC;
16329 else if (i == 2)
16330 {
16331 mips_pic = SVR4_PIC;
16332 mips_abicalls = TRUE;
16333 }
16334 else
16335 as_bad (_(".option pic%d not supported"), i);
16336
16337 if (mips_pic == SVR4_PIC)
16338 {
16339 if (g_switch_seen && g_switch_value != 0)
16340 as_warn (_("-G may not be used with SVR4 PIC code"));
16341 g_switch_value = 0;
16342 bfd_set_gp_size (stdoutput, 0);
16343 }
16344 }
16345 else
16346 as_warn (_("Unrecognized option \"%s\""), opt);
16347
16348 *input_line_pointer = c;
16349 demand_empty_rest_of_line ();
16350 }
16351
16352 /* This structure is used to hold a stack of .set values. */
16353
16354 struct mips_option_stack
16355 {
16356 struct mips_option_stack *next;
16357 struct mips_set_options options;
16358 };
16359
16360 static struct mips_option_stack *mips_opts_stack;
16361
16362 /* Handle the .set pseudo-op. */
16363
16364 static void
16365 s_mipsset (int x ATTRIBUTE_UNUSED)
16366 {
16367 char *name = input_line_pointer, ch;
16368 const struct mips_ase *ase;
16369
16370 while (!is_end_of_line[(unsigned char) *input_line_pointer])
16371 ++input_line_pointer;
16372 ch = *input_line_pointer;
16373 *input_line_pointer = '\0';
16374
16375 if (strcmp (name, "reorder") == 0)
16376 {
16377 if (mips_opts.noreorder)
16378 end_noreorder ();
16379 }
16380 else if (strcmp (name, "noreorder") == 0)
16381 {
16382 if (!mips_opts.noreorder)
16383 start_noreorder ();
16384 }
16385 else if (strncmp (name, "at=", 3) == 0)
16386 {
16387 char *s = name + 3;
16388
16389 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
16390 as_bad (_("Unrecognized register name `%s'"), s);
16391 }
16392 else if (strcmp (name, "at") == 0)
16393 {
16394 mips_opts.at = ATREG;
16395 }
16396 else if (strcmp (name, "noat") == 0)
16397 {
16398 mips_opts.at = ZERO;
16399 }
16400 else if (strcmp (name, "macro") == 0)
16401 {
16402 mips_opts.warn_about_macros = 0;
16403 }
16404 else if (strcmp (name, "nomacro") == 0)
16405 {
16406 if (mips_opts.noreorder == 0)
16407 as_bad (_("`noreorder' must be set before `nomacro'"));
16408 mips_opts.warn_about_macros = 1;
16409 }
16410 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
16411 {
16412 mips_opts.nomove = 0;
16413 }
16414 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
16415 {
16416 mips_opts.nomove = 1;
16417 }
16418 else if (strcmp (name, "bopt") == 0)
16419 {
16420 mips_opts.nobopt = 0;
16421 }
16422 else if (strcmp (name, "nobopt") == 0)
16423 {
16424 mips_opts.nobopt = 1;
16425 }
16426 else if (strcmp (name, "gp=default") == 0)
16427 mips_opts.gp32 = file_mips_gp32;
16428 else if (strcmp (name, "gp=32") == 0)
16429 mips_opts.gp32 = 1;
16430 else if (strcmp (name, "gp=64") == 0)
16431 {
16432 if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
16433 as_warn (_("%s isa does not support 64-bit registers"),
16434 mips_cpu_info_from_isa (mips_opts.isa)->name);
16435 mips_opts.gp32 = 0;
16436 }
16437 else if (strcmp (name, "fp=default") == 0)
16438 mips_opts.fp32 = file_mips_fp32;
16439 else if (strcmp (name, "fp=32") == 0)
16440 mips_opts.fp32 = 1;
16441 else if (strcmp (name, "fp=64") == 0)
16442 {
16443 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
16444 as_warn (_("%s isa does not support 64-bit floating point registers"),
16445 mips_cpu_info_from_isa (mips_opts.isa)->name);
16446 mips_opts.fp32 = 0;
16447 }
16448 else if (strcmp (name, "softfloat") == 0)
16449 mips_opts.soft_float = 1;
16450 else if (strcmp (name, "hardfloat") == 0)
16451 mips_opts.soft_float = 0;
16452 else if (strcmp (name, "singlefloat") == 0)
16453 mips_opts.single_float = 1;
16454 else if (strcmp (name, "doublefloat") == 0)
16455 mips_opts.single_float = 0;
16456 else if (strcmp (name, "mips16") == 0
16457 || strcmp (name, "MIPS-16") == 0)
16458 {
16459 if (mips_opts.micromips == 1)
16460 as_fatal (_("`mips16' cannot be used with `micromips'"));
16461 mips_opts.mips16 = 1;
16462 }
16463 else if (strcmp (name, "nomips16") == 0
16464 || strcmp (name, "noMIPS-16") == 0)
16465 mips_opts.mips16 = 0;
16466 else if (strcmp (name, "micromips") == 0)
16467 {
16468 if (mips_opts.mips16 == 1)
16469 as_fatal (_("`micromips' cannot be used with `mips16'"));
16470 mips_opts.micromips = 1;
16471 }
16472 else if (strcmp (name, "nomicromips") == 0)
16473 mips_opts.micromips = 0;
16474 else if (name[0] == 'n'
16475 && name[1] == 'o'
16476 && (ase = mips_lookup_ase (name + 2)))
16477 mips_set_ase (ase, FALSE);
16478 else if ((ase = mips_lookup_ase (name)))
16479 mips_set_ase (ase, TRUE);
16480 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
16481 {
16482 int reset = 0;
16483
16484 /* Permit the user to change the ISA and architecture on the fly.
16485 Needless to say, misuse can cause serious problems. */
16486 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
16487 {
16488 reset = 1;
16489 mips_opts.isa = file_mips_isa;
16490 mips_opts.arch = file_mips_arch;
16491 }
16492 else if (strncmp (name, "arch=", 5) == 0)
16493 {
16494 const struct mips_cpu_info *p;
16495
16496 p = mips_parse_cpu("internal use", name + 5);
16497 if (!p)
16498 as_bad (_("unknown architecture %s"), name + 5);
16499 else
16500 {
16501 mips_opts.arch = p->cpu;
16502 mips_opts.isa = p->isa;
16503 }
16504 }
16505 else if (strncmp (name, "mips", 4) == 0)
16506 {
16507 const struct mips_cpu_info *p;
16508
16509 p = mips_parse_cpu("internal use", name);
16510 if (!p)
16511 as_bad (_("unknown ISA level %s"), name + 4);
16512 else
16513 {
16514 mips_opts.arch = p->cpu;
16515 mips_opts.isa = p->isa;
16516 }
16517 }
16518 else
16519 as_bad (_("unknown ISA or architecture %s"), name);
16520
16521 switch (mips_opts.isa)
16522 {
16523 case 0:
16524 break;
16525 case ISA_MIPS1:
16526 case ISA_MIPS2:
16527 case ISA_MIPS32:
16528 case ISA_MIPS32R2:
16529 mips_opts.gp32 = 1;
16530 mips_opts.fp32 = 1;
16531 break;
16532 case ISA_MIPS3:
16533 case ISA_MIPS4:
16534 case ISA_MIPS5:
16535 case ISA_MIPS64:
16536 case ISA_MIPS64R2:
16537 mips_opts.gp32 = 0;
16538 if (mips_opts.arch == CPU_R5900)
16539 {
16540 mips_opts.fp32 = 1;
16541 }
16542 else
16543 {
16544 mips_opts.fp32 = 0;
16545 }
16546 break;
16547 default:
16548 as_bad (_("unknown ISA level %s"), name + 4);
16549 break;
16550 }
16551 if (reset)
16552 {
16553 mips_opts.gp32 = file_mips_gp32;
16554 mips_opts.fp32 = file_mips_fp32;
16555 }
16556 }
16557 else if (strcmp (name, "autoextend") == 0)
16558 mips_opts.noautoextend = 0;
16559 else if (strcmp (name, "noautoextend") == 0)
16560 mips_opts.noautoextend = 1;
16561 else if (strcmp (name, "insn32") == 0)
16562 mips_opts.insn32 = TRUE;
16563 else if (strcmp (name, "noinsn32") == 0)
16564 mips_opts.insn32 = FALSE;
16565 else if (strcmp (name, "push") == 0)
16566 {
16567 struct mips_option_stack *s;
16568
16569 s = (struct mips_option_stack *) xmalloc (sizeof *s);
16570 s->next = mips_opts_stack;
16571 s->options = mips_opts;
16572 mips_opts_stack = s;
16573 }
16574 else if (strcmp (name, "pop") == 0)
16575 {
16576 struct mips_option_stack *s;
16577
16578 s = mips_opts_stack;
16579 if (s == NULL)
16580 as_bad (_(".set pop with no .set push"));
16581 else
16582 {
16583 /* If we're changing the reorder mode we need to handle
16584 delay slots correctly. */
16585 if (s->options.noreorder && ! mips_opts.noreorder)
16586 start_noreorder ();
16587 else if (! s->options.noreorder && mips_opts.noreorder)
16588 end_noreorder ();
16589
16590 mips_opts = s->options;
16591 mips_opts_stack = s->next;
16592 free (s);
16593 }
16594 }
16595 else if (strcmp (name, "sym32") == 0)
16596 mips_opts.sym32 = TRUE;
16597 else if (strcmp (name, "nosym32") == 0)
16598 mips_opts.sym32 = FALSE;
16599 else if (strchr (name, ','))
16600 {
16601 /* Generic ".set" directive; use the generic handler. */
16602 *input_line_pointer = ch;
16603 input_line_pointer = name;
16604 s_set (0);
16605 return;
16606 }
16607 else
16608 {
16609 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
16610 }
16611 mips_check_isa_supports_ases ();
16612 *input_line_pointer = ch;
16613 demand_empty_rest_of_line ();
16614 }
16615
16616 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
16617 .option pic2. It means to generate SVR4 PIC calls. */
16618
16619 static void
16620 s_abicalls (int ignore ATTRIBUTE_UNUSED)
16621 {
16622 mips_pic = SVR4_PIC;
16623 mips_abicalls = TRUE;
16624
16625 if (g_switch_seen && g_switch_value != 0)
16626 as_warn (_("-G may not be used with SVR4 PIC code"));
16627 g_switch_value = 0;
16628
16629 bfd_set_gp_size (stdoutput, 0);
16630 demand_empty_rest_of_line ();
16631 }
16632
16633 /* Handle the .cpload pseudo-op. This is used when generating SVR4
16634 PIC code. It sets the $gp register for the function based on the
16635 function address, which is in the register named in the argument.
16636 This uses a relocation against _gp_disp, which is handled specially
16637 by the linker. The result is:
16638 lui $gp,%hi(_gp_disp)
16639 addiu $gp,$gp,%lo(_gp_disp)
16640 addu $gp,$gp,.cpload argument
16641 The .cpload argument is normally $25 == $t9.
16642
16643 The -mno-shared option changes this to:
16644 lui $gp,%hi(__gnu_local_gp)
16645 addiu $gp,$gp,%lo(__gnu_local_gp)
16646 and the argument is ignored. This saves an instruction, but the
16647 resulting code is not position independent; it uses an absolute
16648 address for __gnu_local_gp. Thus code assembled with -mno-shared
16649 can go into an ordinary executable, but not into a shared library. */
16650
16651 static void
16652 s_cpload (int ignore ATTRIBUTE_UNUSED)
16653 {
16654 expressionS ex;
16655 int reg;
16656 int in_shared;
16657
16658 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
16659 .cpload is ignored. */
16660 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
16661 {
16662 s_ignore (0);
16663 return;
16664 }
16665
16666 if (mips_opts.mips16)
16667 {
16668 as_bad (_("%s not supported in MIPS16 mode"), ".cpload");
16669 ignore_rest_of_line ();
16670 return;
16671 }
16672
16673 /* .cpload should be in a .set noreorder section. */
16674 if (mips_opts.noreorder == 0)
16675 as_warn (_(".cpload not in noreorder section"));
16676
16677 reg = tc_get_register (0);
16678
16679 /* If we need to produce a 64-bit address, we are better off using
16680 the default instruction sequence. */
16681 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
16682
16683 ex.X_op = O_symbol;
16684 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
16685 "__gnu_local_gp");
16686 ex.X_op_symbol = NULL;
16687 ex.X_add_number = 0;
16688
16689 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
16690 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
16691
16692 mips_mark_labels ();
16693 mips_assembling_insn = TRUE;
16694
16695 macro_start ();
16696 macro_build_lui (&ex, mips_gp_register);
16697 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
16698 mips_gp_register, BFD_RELOC_LO16);
16699 if (in_shared)
16700 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
16701 mips_gp_register, reg);
16702 macro_end ();
16703
16704 mips_assembling_insn = FALSE;
16705 demand_empty_rest_of_line ();
16706 }
16707
16708 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
16709 .cpsetup $reg1, offset|$reg2, label
16710
16711 If offset is given, this results in:
16712 sd $gp, offset($sp)
16713 lui $gp, %hi(%neg(%gp_rel(label)))
16714 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
16715 daddu $gp, $gp, $reg1
16716
16717 If $reg2 is given, this results in:
16718 daddu $reg2, $gp, $0
16719 lui $gp, %hi(%neg(%gp_rel(label)))
16720 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
16721 daddu $gp, $gp, $reg1
16722 $reg1 is normally $25 == $t9.
16723
16724 The -mno-shared option replaces the last three instructions with
16725 lui $gp,%hi(_gp)
16726 addiu $gp,$gp,%lo(_gp) */
16727
16728 static void
16729 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
16730 {
16731 expressionS ex_off;
16732 expressionS ex_sym;
16733 int reg1;
16734
16735 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
16736 We also need NewABI support. */
16737 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16738 {
16739 s_ignore (0);
16740 return;
16741 }
16742
16743 if (mips_opts.mips16)
16744 {
16745 as_bad (_("%s not supported in MIPS16 mode"), ".cpsetup");
16746 ignore_rest_of_line ();
16747 return;
16748 }
16749
16750 reg1 = tc_get_register (0);
16751 SKIP_WHITESPACE ();
16752 if (*input_line_pointer != ',')
16753 {
16754 as_bad (_("missing argument separator ',' for .cpsetup"));
16755 return;
16756 }
16757 else
16758 ++input_line_pointer;
16759 SKIP_WHITESPACE ();
16760 if (*input_line_pointer == '$')
16761 {
16762 mips_cpreturn_register = tc_get_register (0);
16763 mips_cpreturn_offset = -1;
16764 }
16765 else
16766 {
16767 mips_cpreturn_offset = get_absolute_expression ();
16768 mips_cpreturn_register = -1;
16769 }
16770 SKIP_WHITESPACE ();
16771 if (*input_line_pointer != ',')
16772 {
16773 as_bad (_("missing argument separator ',' for .cpsetup"));
16774 return;
16775 }
16776 else
16777 ++input_line_pointer;
16778 SKIP_WHITESPACE ();
16779 expression (&ex_sym);
16780
16781 mips_mark_labels ();
16782 mips_assembling_insn = TRUE;
16783
16784 macro_start ();
16785 if (mips_cpreturn_register == -1)
16786 {
16787 ex_off.X_op = O_constant;
16788 ex_off.X_add_symbol = NULL;
16789 ex_off.X_op_symbol = NULL;
16790 ex_off.X_add_number = mips_cpreturn_offset;
16791
16792 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
16793 BFD_RELOC_LO16, SP);
16794 }
16795 else
16796 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
16797 mips_gp_register, 0);
16798
16799 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
16800 {
16801 macro_build (&ex_sym, "lui", LUI_FMT, mips_gp_register,
16802 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
16803 BFD_RELOC_HI16_S);
16804
16805 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
16806 mips_gp_register, -1, BFD_RELOC_GPREL16,
16807 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
16808
16809 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
16810 mips_gp_register, reg1);
16811 }
16812 else
16813 {
16814 expressionS ex;
16815
16816 ex.X_op = O_symbol;
16817 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
16818 ex.X_op_symbol = NULL;
16819 ex.X_add_number = 0;
16820
16821 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
16822 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
16823
16824 macro_build_lui (&ex, mips_gp_register);
16825 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
16826 mips_gp_register, BFD_RELOC_LO16);
16827 }
16828
16829 macro_end ();
16830
16831 mips_assembling_insn = FALSE;
16832 demand_empty_rest_of_line ();
16833 }
16834
16835 static void
16836 s_cplocal (int ignore ATTRIBUTE_UNUSED)
16837 {
16838 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
16839 .cplocal is ignored. */
16840 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16841 {
16842 s_ignore (0);
16843 return;
16844 }
16845
16846 if (mips_opts.mips16)
16847 {
16848 as_bad (_("%s not supported in MIPS16 mode"), ".cplocal");
16849 ignore_rest_of_line ();
16850 return;
16851 }
16852
16853 mips_gp_register = tc_get_register (0);
16854 demand_empty_rest_of_line ();
16855 }
16856
16857 /* Handle the .cprestore pseudo-op. This stores $gp into a given
16858 offset from $sp. The offset is remembered, and after making a PIC
16859 call $gp is restored from that location. */
16860
16861 static void
16862 s_cprestore (int ignore ATTRIBUTE_UNUSED)
16863 {
16864 expressionS ex;
16865
16866 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
16867 .cprestore is ignored. */
16868 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
16869 {
16870 s_ignore (0);
16871 return;
16872 }
16873
16874 if (mips_opts.mips16)
16875 {
16876 as_bad (_("%s not supported in MIPS16 mode"), ".cprestore");
16877 ignore_rest_of_line ();
16878 return;
16879 }
16880
16881 mips_cprestore_offset = get_absolute_expression ();
16882 mips_cprestore_valid = 1;
16883
16884 ex.X_op = O_constant;
16885 ex.X_add_symbol = NULL;
16886 ex.X_op_symbol = NULL;
16887 ex.X_add_number = mips_cprestore_offset;
16888
16889 mips_mark_labels ();
16890 mips_assembling_insn = TRUE;
16891
16892 macro_start ();
16893 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
16894 SP, HAVE_64BIT_ADDRESSES);
16895 macro_end ();
16896
16897 mips_assembling_insn = FALSE;
16898 demand_empty_rest_of_line ();
16899 }
16900
16901 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
16902 was given in the preceding .cpsetup, it results in:
16903 ld $gp, offset($sp)
16904
16905 If a register $reg2 was given there, it results in:
16906 daddu $gp, $reg2, $0 */
16907
16908 static void
16909 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
16910 {
16911 expressionS ex;
16912
16913 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
16914 We also need NewABI support. */
16915 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16916 {
16917 s_ignore (0);
16918 return;
16919 }
16920
16921 if (mips_opts.mips16)
16922 {
16923 as_bad (_("%s not supported in MIPS16 mode"), ".cpreturn");
16924 ignore_rest_of_line ();
16925 return;
16926 }
16927
16928 mips_mark_labels ();
16929 mips_assembling_insn = TRUE;
16930
16931 macro_start ();
16932 if (mips_cpreturn_register == -1)
16933 {
16934 ex.X_op = O_constant;
16935 ex.X_add_symbol = NULL;
16936 ex.X_op_symbol = NULL;
16937 ex.X_add_number = mips_cpreturn_offset;
16938
16939 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
16940 }
16941 else
16942 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
16943 mips_cpreturn_register, 0);
16944 macro_end ();
16945
16946 mips_assembling_insn = FALSE;
16947 demand_empty_rest_of_line ();
16948 }
16949
16950 /* Handle a .dtprelword, .dtpreldword, .tprelword, or .tpreldword
16951 pseudo-op; DIRSTR says which. The pseudo-op generates a BYTES-size
16952 DTP- or TP-relative relocation of type RTYPE, for use in either DWARF
16953 debug information or MIPS16 TLS. */
16954
16955 static void
16956 s_tls_rel_directive (const size_t bytes, const char *dirstr,
16957 bfd_reloc_code_real_type rtype)
16958 {
16959 expressionS ex;
16960 char *p;
16961
16962 expression (&ex);
16963
16964 if (ex.X_op != O_symbol)
16965 {
16966 as_bad (_("Unsupported use of %s"), dirstr);
16967 ignore_rest_of_line ();
16968 }
16969
16970 p = frag_more (bytes);
16971 md_number_to_chars (p, 0, bytes);
16972 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, rtype);
16973 demand_empty_rest_of_line ();
16974 mips_clear_insn_labels ();
16975 }
16976
16977 /* Handle .dtprelword. */
16978
16979 static void
16980 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
16981 {
16982 s_tls_rel_directive (4, ".dtprelword", BFD_RELOC_MIPS_TLS_DTPREL32);
16983 }
16984
16985 /* Handle .dtpreldword. */
16986
16987 static void
16988 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
16989 {
16990 s_tls_rel_directive (8, ".dtpreldword", BFD_RELOC_MIPS_TLS_DTPREL64);
16991 }
16992
16993 /* Handle .tprelword. */
16994
16995 static void
16996 s_tprelword (int ignore ATTRIBUTE_UNUSED)
16997 {
16998 s_tls_rel_directive (4, ".tprelword", BFD_RELOC_MIPS_TLS_TPREL32);
16999 }
17000
17001 /* Handle .tpreldword. */
17002
17003 static void
17004 s_tpreldword (int ignore ATTRIBUTE_UNUSED)
17005 {
17006 s_tls_rel_directive (8, ".tpreldword", BFD_RELOC_MIPS_TLS_TPREL64);
17007 }
17008
17009 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
17010 code. It sets the offset to use in gp_rel relocations. */
17011
17012 static void
17013 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
17014 {
17015 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
17016 We also need NewABI support. */
17017 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
17018 {
17019 s_ignore (0);
17020 return;
17021 }
17022
17023 mips_gprel_offset = get_absolute_expression ();
17024
17025 demand_empty_rest_of_line ();
17026 }
17027
17028 /* Handle the .gpword pseudo-op. This is used when generating PIC
17029 code. It generates a 32 bit GP relative reloc. */
17030
17031 static void
17032 s_gpword (int ignore ATTRIBUTE_UNUSED)
17033 {
17034 segment_info_type *si;
17035 struct insn_label_list *l;
17036 expressionS ex;
17037 char *p;
17038
17039 /* When not generating PIC code, this is treated as .word. */
17040 if (mips_pic != SVR4_PIC)
17041 {
17042 s_cons (2);
17043 return;
17044 }
17045
17046 si = seg_info (now_seg);
17047 l = si->label_list;
17048 mips_emit_delays ();
17049 if (auto_align)
17050 mips_align (2, 0, l);
17051
17052 expression (&ex);
17053 mips_clear_insn_labels ();
17054
17055 if (ex.X_op != O_symbol || ex.X_add_number != 0)
17056 {
17057 as_bad (_("Unsupported use of .gpword"));
17058 ignore_rest_of_line ();
17059 }
17060
17061 p = frag_more (4);
17062 md_number_to_chars (p, 0, 4);
17063 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
17064 BFD_RELOC_GPREL32);
17065
17066 demand_empty_rest_of_line ();
17067 }
17068
17069 static void
17070 s_gpdword (int ignore ATTRIBUTE_UNUSED)
17071 {
17072 segment_info_type *si;
17073 struct insn_label_list *l;
17074 expressionS ex;
17075 char *p;
17076
17077 /* When not generating PIC code, this is treated as .dword. */
17078 if (mips_pic != SVR4_PIC)
17079 {
17080 s_cons (3);
17081 return;
17082 }
17083
17084 si = seg_info (now_seg);
17085 l = si->label_list;
17086 mips_emit_delays ();
17087 if (auto_align)
17088 mips_align (3, 0, l);
17089
17090 expression (&ex);
17091 mips_clear_insn_labels ();
17092
17093 if (ex.X_op != O_symbol || ex.X_add_number != 0)
17094 {
17095 as_bad (_("Unsupported use of .gpdword"));
17096 ignore_rest_of_line ();
17097 }
17098
17099 p = frag_more (8);
17100 md_number_to_chars (p, 0, 8);
17101 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
17102 BFD_RELOC_GPREL32)->fx_tcbit = 1;
17103
17104 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
17105 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
17106 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
17107
17108 demand_empty_rest_of_line ();
17109 }
17110
17111 /* Handle the .ehword pseudo-op. This is used when generating unwinding
17112 tables. It generates a R_MIPS_EH reloc. */
17113
17114 static void
17115 s_ehword (int ignore ATTRIBUTE_UNUSED)
17116 {
17117 expressionS ex;
17118 char *p;
17119
17120 mips_emit_delays ();
17121
17122 expression (&ex);
17123 mips_clear_insn_labels ();
17124
17125 if (ex.X_op != O_symbol || ex.X_add_number != 0)
17126 {
17127 as_bad (_("Unsupported use of .ehword"));
17128 ignore_rest_of_line ();
17129 }
17130
17131 p = frag_more (4);
17132 md_number_to_chars (p, 0, 4);
17133 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
17134 BFD_RELOC_MIPS_EH);
17135
17136 demand_empty_rest_of_line ();
17137 }
17138
17139 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
17140 tables in SVR4 PIC code. */
17141
17142 static void
17143 s_cpadd (int ignore ATTRIBUTE_UNUSED)
17144 {
17145 int reg;
17146
17147 /* This is ignored when not generating SVR4 PIC code. */
17148 if (mips_pic != SVR4_PIC)
17149 {
17150 s_ignore (0);
17151 return;
17152 }
17153
17154 mips_mark_labels ();
17155 mips_assembling_insn = TRUE;
17156
17157 /* Add $gp to the register named as an argument. */
17158 macro_start ();
17159 reg = tc_get_register (0);
17160 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
17161 macro_end ();
17162
17163 mips_assembling_insn = FALSE;
17164 demand_empty_rest_of_line ();
17165 }
17166
17167 /* Handle the .insn pseudo-op. This marks instruction labels in
17168 mips16/micromips mode. This permits the linker to handle them specially,
17169 such as generating jalx instructions when needed. We also make
17170 them odd for the duration of the assembly, in order to generate the
17171 right sort of code. We will make them even in the adjust_symtab
17172 routine, while leaving them marked. This is convenient for the
17173 debugger and the disassembler. The linker knows to make them odd
17174 again. */
17175
17176 static void
17177 s_insn (int ignore ATTRIBUTE_UNUSED)
17178 {
17179 mips_mark_labels ();
17180
17181 demand_empty_rest_of_line ();
17182 }
17183
17184 /* Handle the .nan pseudo-op. */
17185
17186 static void
17187 s_nan (int ignore ATTRIBUTE_UNUSED)
17188 {
17189 static const char str_legacy[] = "legacy";
17190 static const char str_2008[] = "2008";
17191 size_t i;
17192
17193 for (i = 0; !is_end_of_line[(unsigned char) input_line_pointer[i]]; i++);
17194
17195 if (i == sizeof (str_2008) - 1
17196 && memcmp (input_line_pointer, str_2008, i) == 0)
17197 mips_flag_nan2008 = TRUE;
17198 else if (i == sizeof (str_legacy) - 1
17199 && memcmp (input_line_pointer, str_legacy, i) == 0)
17200 mips_flag_nan2008 = FALSE;
17201 else
17202 as_bad (_("Bad .nan directive"));
17203
17204 input_line_pointer += i;
17205 demand_empty_rest_of_line ();
17206 }
17207
17208 /* Handle a .stab[snd] directive. Ideally these directives would be
17209 implemented in a transparent way, so that removing them would not
17210 have any effect on the generated instructions. However, s_stab
17211 internally changes the section, so in practice we need to decide
17212 now whether the preceding label marks compressed code. We do not
17213 support changing the compression mode of a label after a .stab*
17214 directive, such as in:
17215
17216 foo:
17217 .stabs ...
17218 .set mips16
17219
17220 so the current mode wins. */
17221
17222 static void
17223 s_mips_stab (int type)
17224 {
17225 mips_mark_labels ();
17226 s_stab (type);
17227 }
17228
17229 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
17230
17231 static void
17232 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
17233 {
17234 char *name;
17235 int c;
17236 symbolS *symbolP;
17237 expressionS exp;
17238
17239 name = input_line_pointer;
17240 c = get_symbol_end ();
17241 symbolP = symbol_find_or_make (name);
17242 S_SET_WEAK (symbolP);
17243 *input_line_pointer = c;
17244
17245 SKIP_WHITESPACE ();
17246
17247 if (! is_end_of_line[(unsigned char) *input_line_pointer])
17248 {
17249 if (S_IS_DEFINED (symbolP))
17250 {
17251 as_bad (_("ignoring attempt to redefine symbol %s"),
17252 S_GET_NAME (symbolP));
17253 ignore_rest_of_line ();
17254 return;
17255 }
17256
17257 if (*input_line_pointer == ',')
17258 {
17259 ++input_line_pointer;
17260 SKIP_WHITESPACE ();
17261 }
17262
17263 expression (&exp);
17264 if (exp.X_op != O_symbol)
17265 {
17266 as_bad (_("bad .weakext directive"));
17267 ignore_rest_of_line ();
17268 return;
17269 }
17270 symbol_set_value_expression (symbolP, &exp);
17271 }
17272
17273 demand_empty_rest_of_line ();
17274 }
17275
17276 /* Parse a register string into a number. Called from the ECOFF code
17277 to parse .frame. The argument is non-zero if this is the frame
17278 register, so that we can record it in mips_frame_reg. */
17279
17280 int
17281 tc_get_register (int frame)
17282 {
17283 unsigned int reg;
17284
17285 SKIP_WHITESPACE ();
17286 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
17287 reg = 0;
17288 if (frame)
17289 {
17290 mips_frame_reg = reg != 0 ? reg : SP;
17291 mips_frame_reg_valid = 1;
17292 mips_cprestore_valid = 0;
17293 }
17294 return reg;
17295 }
17296
17297 valueT
17298 md_section_align (asection *seg, valueT addr)
17299 {
17300 int align = bfd_get_section_alignment (stdoutput, seg);
17301
17302 /* We don't need to align ELF sections to the full alignment.
17303 However, Irix 5 may prefer that we align them at least to a 16
17304 byte boundary. We don't bother to align the sections if we
17305 are targeted for an embedded system. */
17306 if (strncmp (TARGET_OS, "elf", 3) == 0)
17307 return addr;
17308 if (align > 4)
17309 align = 4;
17310
17311 return ((addr + (1 << align) - 1) & (-1 << align));
17312 }
17313
17314 /* Utility routine, called from above as well. If called while the
17315 input file is still being read, it's only an approximation. (For
17316 example, a symbol may later become defined which appeared to be
17317 undefined earlier.) */
17318
17319 static int
17320 nopic_need_relax (symbolS *sym, int before_relaxing)
17321 {
17322 if (sym == 0)
17323 return 0;
17324
17325 if (g_switch_value > 0)
17326 {
17327 const char *symname;
17328 int change;
17329
17330 /* Find out whether this symbol can be referenced off the $gp
17331 register. It can be if it is smaller than the -G size or if
17332 it is in the .sdata or .sbss section. Certain symbols can
17333 not be referenced off the $gp, although it appears as though
17334 they can. */
17335 symname = S_GET_NAME (sym);
17336 if (symname != (const char *) NULL
17337 && (strcmp (symname, "eprol") == 0
17338 || strcmp (symname, "etext") == 0
17339 || strcmp (symname, "_gp") == 0
17340 || strcmp (symname, "edata") == 0
17341 || strcmp (symname, "_fbss") == 0
17342 || strcmp (symname, "_fdata") == 0
17343 || strcmp (symname, "_ftext") == 0
17344 || strcmp (symname, "end") == 0
17345 || strcmp (symname, "_gp_disp") == 0))
17346 change = 1;
17347 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
17348 && (0
17349 #ifndef NO_ECOFF_DEBUGGING
17350 || (symbol_get_obj (sym)->ecoff_extern_size != 0
17351 && (symbol_get_obj (sym)->ecoff_extern_size
17352 <= g_switch_value))
17353 #endif
17354 /* We must defer this decision until after the whole
17355 file has been read, since there might be a .extern
17356 after the first use of this symbol. */
17357 || (before_relaxing
17358 #ifndef NO_ECOFF_DEBUGGING
17359 && symbol_get_obj (sym)->ecoff_extern_size == 0
17360 #endif
17361 && S_GET_VALUE (sym) == 0)
17362 || (S_GET_VALUE (sym) != 0
17363 && S_GET_VALUE (sym) <= g_switch_value)))
17364 change = 0;
17365 else
17366 {
17367 const char *segname;
17368
17369 segname = segment_name (S_GET_SEGMENT (sym));
17370 gas_assert (strcmp (segname, ".lit8") != 0
17371 && strcmp (segname, ".lit4") != 0);
17372 change = (strcmp (segname, ".sdata") != 0
17373 && strcmp (segname, ".sbss") != 0
17374 && strncmp (segname, ".sdata.", 7) != 0
17375 && strncmp (segname, ".sbss.", 6) != 0
17376 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
17377 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
17378 }
17379 return change;
17380 }
17381 else
17382 /* We are not optimizing for the $gp register. */
17383 return 1;
17384 }
17385
17386
17387 /* Return true if the given symbol should be considered local for SVR4 PIC. */
17388
17389 static bfd_boolean
17390 pic_need_relax (symbolS *sym, asection *segtype)
17391 {
17392 asection *symsec;
17393
17394 /* Handle the case of a symbol equated to another symbol. */
17395 while (symbol_equated_reloc_p (sym))
17396 {
17397 symbolS *n;
17398
17399 /* It's possible to get a loop here in a badly written program. */
17400 n = symbol_get_value_expression (sym)->X_add_symbol;
17401 if (n == sym)
17402 break;
17403 sym = n;
17404 }
17405
17406 if (symbol_section_p (sym))
17407 return TRUE;
17408
17409 symsec = S_GET_SEGMENT (sym);
17410
17411 /* This must duplicate the test in adjust_reloc_syms. */
17412 return (!bfd_is_und_section (symsec)
17413 && !bfd_is_abs_section (symsec)
17414 && !bfd_is_com_section (symsec)
17415 && !s_is_linkonce (sym, segtype)
17416 /* A global or weak symbol is treated as external. */
17417 && (!S_IS_WEAK (sym) && !S_IS_EXTERNAL (sym)));
17418 }
17419
17420
17421 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
17422 extended opcode. SEC is the section the frag is in. */
17423
17424 static int
17425 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
17426 {
17427 int type;
17428 const struct mips16_immed_operand *op;
17429 offsetT val;
17430 int mintiny, maxtiny;
17431 segT symsec;
17432 fragS *sym_frag;
17433
17434 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
17435 return 0;
17436 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
17437 return 1;
17438
17439 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
17440 op = mips16_immed_operands;
17441 while (op->type != type)
17442 {
17443 ++op;
17444 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
17445 }
17446
17447 if (op->unsp)
17448 {
17449 if (type == '<' || type == '>' || type == '[' || type == ']')
17450 {
17451 mintiny = 1;
17452 maxtiny = 1 << op->nbits;
17453 }
17454 else
17455 {
17456 mintiny = 0;
17457 maxtiny = (1 << op->nbits) - 1;
17458 }
17459 }
17460 else
17461 {
17462 mintiny = - (1 << (op->nbits - 1));
17463 maxtiny = (1 << (op->nbits - 1)) - 1;
17464 }
17465
17466 sym_frag = symbol_get_frag (fragp->fr_symbol);
17467 val = S_GET_VALUE (fragp->fr_symbol);
17468 symsec = S_GET_SEGMENT (fragp->fr_symbol);
17469
17470 if (op->pcrel)
17471 {
17472 addressT addr;
17473
17474 /* We won't have the section when we are called from
17475 mips_relax_frag. However, we will always have been called
17476 from md_estimate_size_before_relax first. If this is a
17477 branch to a different section, we mark it as such. If SEC is
17478 NULL, and the frag is not marked, then it must be a branch to
17479 the same section. */
17480 if (sec == NULL)
17481 {
17482 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
17483 return 1;
17484 }
17485 else
17486 {
17487 /* Must have been called from md_estimate_size_before_relax. */
17488 if (symsec != sec)
17489 {
17490 fragp->fr_subtype =
17491 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17492
17493 /* FIXME: We should support this, and let the linker
17494 catch branches and loads that are out of range. */
17495 as_bad_where (fragp->fr_file, fragp->fr_line,
17496 _("unsupported PC relative reference to different section"));
17497
17498 return 1;
17499 }
17500 if (fragp != sym_frag && sym_frag->fr_address == 0)
17501 /* Assume non-extended on the first relaxation pass.
17502 The address we have calculated will be bogus if this is
17503 a forward branch to another frag, as the forward frag
17504 will have fr_address == 0. */
17505 return 0;
17506 }
17507
17508 /* In this case, we know for sure that the symbol fragment is in
17509 the same section. If the relax_marker of the symbol fragment
17510 differs from the relax_marker of this fragment, we have not
17511 yet adjusted the symbol fragment fr_address. We want to add
17512 in STRETCH in order to get a better estimate of the address.
17513 This particularly matters because of the shift bits. */
17514 if (stretch != 0
17515 && sym_frag->relax_marker != fragp->relax_marker)
17516 {
17517 fragS *f;
17518
17519 /* Adjust stretch for any alignment frag. Note that if have
17520 been expanding the earlier code, the symbol may be
17521 defined in what appears to be an earlier frag. FIXME:
17522 This doesn't handle the fr_subtype field, which specifies
17523 a maximum number of bytes to skip when doing an
17524 alignment. */
17525 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
17526 {
17527 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
17528 {
17529 if (stretch < 0)
17530 stretch = - ((- stretch)
17531 & ~ ((1 << (int) f->fr_offset) - 1));
17532 else
17533 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
17534 if (stretch == 0)
17535 break;
17536 }
17537 }
17538 if (f != NULL)
17539 val += stretch;
17540 }
17541
17542 addr = fragp->fr_address + fragp->fr_fix;
17543
17544 /* The base address rules are complicated. The base address of
17545 a branch is the following instruction. The base address of a
17546 PC relative load or add is the instruction itself, but if it
17547 is in a delay slot (in which case it can not be extended) use
17548 the address of the instruction whose delay slot it is in. */
17549 if (type == 'p' || type == 'q')
17550 {
17551 addr += 2;
17552
17553 /* If we are currently assuming that this frag should be
17554 extended, then, the current address is two bytes
17555 higher. */
17556 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17557 addr += 2;
17558
17559 /* Ignore the low bit in the target, since it will be set
17560 for a text label. */
17561 if ((val & 1) != 0)
17562 --val;
17563 }
17564 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
17565 addr -= 4;
17566 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
17567 addr -= 2;
17568
17569 val -= addr & ~ ((1 << op->shift) - 1);
17570
17571 /* Branch offsets have an implicit 0 in the lowest bit. */
17572 if (type == 'p' || type == 'q')
17573 val /= 2;
17574
17575 /* If any of the shifted bits are set, we must use an extended
17576 opcode. If the address depends on the size of this
17577 instruction, this can lead to a loop, so we arrange to always
17578 use an extended opcode. We only check this when we are in
17579 the main relaxation loop, when SEC is NULL. */
17580 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
17581 {
17582 fragp->fr_subtype =
17583 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17584 return 1;
17585 }
17586
17587 /* If we are about to mark a frag as extended because the value
17588 is precisely maxtiny + 1, then there is a chance of an
17589 infinite loop as in the following code:
17590 la $4,foo
17591 .skip 1020
17592 .align 2
17593 foo:
17594 In this case when the la is extended, foo is 0x3fc bytes
17595 away, so the la can be shrunk, but then foo is 0x400 away, so
17596 the la must be extended. To avoid this loop, we mark the
17597 frag as extended if it was small, and is about to become
17598 extended with a value of maxtiny + 1. */
17599 if (val == ((maxtiny + 1) << op->shift)
17600 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
17601 && sec == NULL)
17602 {
17603 fragp->fr_subtype =
17604 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17605 return 1;
17606 }
17607 }
17608 else if (symsec != absolute_section && sec != NULL)
17609 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
17610
17611 if ((val & ((1 << op->shift) - 1)) != 0
17612 || val < (mintiny << op->shift)
17613 || val > (maxtiny << op->shift))
17614 return 1;
17615 else
17616 return 0;
17617 }
17618
17619 /* Compute the length of a branch sequence, and adjust the
17620 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
17621 worst-case length is computed, with UPDATE being used to indicate
17622 whether an unconditional (-1), branch-likely (+1) or regular (0)
17623 branch is to be computed. */
17624 static int
17625 relaxed_branch_length (fragS *fragp, asection *sec, int update)
17626 {
17627 bfd_boolean toofar;
17628 int length;
17629
17630 if (fragp
17631 && S_IS_DEFINED (fragp->fr_symbol)
17632 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17633 {
17634 addressT addr;
17635 offsetT val;
17636
17637 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17638
17639 addr = fragp->fr_address + fragp->fr_fix + 4;
17640
17641 val -= addr;
17642
17643 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
17644 }
17645 else if (fragp)
17646 /* If the symbol is not defined or it's in a different segment,
17647 assume the user knows what's going on and emit a short
17648 branch. */
17649 toofar = FALSE;
17650 else
17651 toofar = TRUE;
17652
17653 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
17654 fragp->fr_subtype
17655 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
17656 RELAX_BRANCH_UNCOND (fragp->fr_subtype),
17657 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
17658 RELAX_BRANCH_LINK (fragp->fr_subtype),
17659 toofar);
17660
17661 length = 4;
17662 if (toofar)
17663 {
17664 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
17665 length += 8;
17666
17667 if (mips_pic != NO_PIC)
17668 {
17669 /* Additional space for PIC loading of target address. */
17670 length += 8;
17671 if (mips_opts.isa == ISA_MIPS1)
17672 /* Additional space for $at-stabilizing nop. */
17673 length += 4;
17674 }
17675
17676 /* If branch is conditional. */
17677 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
17678 length += 8;
17679 }
17680
17681 return length;
17682 }
17683
17684 /* Compute the length of a branch sequence, and adjust the
17685 RELAX_MICROMIPS_TOOFAR32 bit accordingly. If FRAGP is NULL, the
17686 worst-case length is computed, with UPDATE being used to indicate
17687 whether an unconditional (-1), or regular (0) branch is to be
17688 computed. */
17689
17690 static int
17691 relaxed_micromips_32bit_branch_length (fragS *fragp, asection *sec, int update)
17692 {
17693 bfd_boolean toofar;
17694 int length;
17695
17696 if (fragp
17697 && S_IS_DEFINED (fragp->fr_symbol)
17698 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17699 {
17700 addressT addr;
17701 offsetT val;
17702
17703 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17704 /* Ignore the low bit in the target, since it will be set
17705 for a text label. */
17706 if ((val & 1) != 0)
17707 --val;
17708
17709 addr = fragp->fr_address + fragp->fr_fix + 4;
17710
17711 val -= addr;
17712
17713 toofar = val < - (0x8000 << 1) || val >= (0x8000 << 1);
17714 }
17715 else if (fragp)
17716 /* If the symbol is not defined or it's in a different segment,
17717 assume the user knows what's going on and emit a short
17718 branch. */
17719 toofar = FALSE;
17720 else
17721 toofar = TRUE;
17722
17723 if (fragp && update
17724 && toofar != RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17725 fragp->fr_subtype = (toofar
17726 ? RELAX_MICROMIPS_MARK_TOOFAR32 (fragp->fr_subtype)
17727 : RELAX_MICROMIPS_CLEAR_TOOFAR32 (fragp->fr_subtype));
17728
17729 length = 4;
17730 if (toofar)
17731 {
17732 bfd_boolean compact_known = fragp != NULL;
17733 bfd_boolean compact = FALSE;
17734 bfd_boolean uncond;
17735
17736 if (compact_known)
17737 compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
17738 if (fragp)
17739 uncond = RELAX_MICROMIPS_UNCOND (fragp->fr_subtype);
17740 else
17741 uncond = update < 0;
17742
17743 /* If label is out of range, we turn branch <br>:
17744
17745 <br> label # 4 bytes
17746 0:
17747
17748 into:
17749
17750 j label # 4 bytes
17751 nop # 2 bytes if compact && !PIC
17752 0:
17753 */
17754 if (mips_pic == NO_PIC && (!compact_known || compact))
17755 length += 2;
17756
17757 /* If assembling PIC code, we further turn:
17758
17759 j label # 4 bytes
17760
17761 into:
17762
17763 lw/ld at, %got(label)(gp) # 4 bytes
17764 d/addiu at, %lo(label) # 4 bytes
17765 jr/c at # 2 bytes
17766 */
17767 if (mips_pic != NO_PIC)
17768 length += 6;
17769
17770 /* If branch <br> is conditional, we prepend negated branch <brneg>:
17771
17772 <brneg> 0f # 4 bytes
17773 nop # 2 bytes if !compact
17774 */
17775 if (!uncond)
17776 length += (compact_known && compact) ? 4 : 6;
17777 }
17778
17779 return length;
17780 }
17781
17782 /* Compute the length of a branch, and adjust the RELAX_MICROMIPS_TOOFAR16
17783 bit accordingly. */
17784
17785 static int
17786 relaxed_micromips_16bit_branch_length (fragS *fragp, asection *sec, int update)
17787 {
17788 bfd_boolean toofar;
17789
17790 if (fragp
17791 && S_IS_DEFINED (fragp->fr_symbol)
17792 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17793 {
17794 addressT addr;
17795 offsetT val;
17796 int type;
17797
17798 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17799 /* Ignore the low bit in the target, since it will be set
17800 for a text label. */
17801 if ((val & 1) != 0)
17802 --val;
17803
17804 /* Assume this is a 2-byte branch. */
17805 addr = fragp->fr_address + fragp->fr_fix + 2;
17806
17807 /* We try to avoid the infinite loop by not adding 2 more bytes for
17808 long branches. */
17809
17810 val -= addr;
17811
17812 type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
17813 if (type == 'D')
17814 toofar = val < - (0x200 << 1) || val >= (0x200 << 1);
17815 else if (type == 'E')
17816 toofar = val < - (0x40 << 1) || val >= (0x40 << 1);
17817 else
17818 abort ();
17819 }
17820 else
17821 /* If the symbol is not defined or it's in a different segment,
17822 we emit a normal 32-bit branch. */
17823 toofar = TRUE;
17824
17825 if (fragp && update
17826 && toofar != RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
17827 fragp->fr_subtype
17828 = toofar ? RELAX_MICROMIPS_MARK_TOOFAR16 (fragp->fr_subtype)
17829 : RELAX_MICROMIPS_CLEAR_TOOFAR16 (fragp->fr_subtype);
17830
17831 if (toofar)
17832 return 4;
17833
17834 return 2;
17835 }
17836
17837 /* Estimate the size of a frag before relaxing. Unless this is the
17838 mips16, we are not really relaxing here, and the final size is
17839 encoded in the subtype information. For the mips16, we have to
17840 decide whether we are using an extended opcode or not. */
17841
17842 int
17843 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
17844 {
17845 int change;
17846
17847 if (RELAX_BRANCH_P (fragp->fr_subtype))
17848 {
17849
17850 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
17851
17852 return fragp->fr_var;
17853 }
17854
17855 if (RELAX_MIPS16_P (fragp->fr_subtype))
17856 /* We don't want to modify the EXTENDED bit here; it might get us
17857 into infinite loops. We change it only in mips_relax_frag(). */
17858 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
17859
17860 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17861 {
17862 int length = 4;
17863
17864 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17865 length = relaxed_micromips_16bit_branch_length (fragp, segtype, FALSE);
17866 if (length == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17867 length = relaxed_micromips_32bit_branch_length (fragp, segtype, FALSE);
17868 fragp->fr_var = length;
17869
17870 return length;
17871 }
17872
17873 if (mips_pic == NO_PIC)
17874 change = nopic_need_relax (fragp->fr_symbol, 0);
17875 else if (mips_pic == SVR4_PIC)
17876 change = pic_need_relax (fragp->fr_symbol, segtype);
17877 else if (mips_pic == VXWORKS_PIC)
17878 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
17879 change = 0;
17880 else
17881 abort ();
17882
17883 if (change)
17884 {
17885 fragp->fr_subtype |= RELAX_USE_SECOND;
17886 return -RELAX_FIRST (fragp->fr_subtype);
17887 }
17888 else
17889 return -RELAX_SECOND (fragp->fr_subtype);
17890 }
17891
17892 /* This is called to see whether a reloc against a defined symbol
17893 should be converted into a reloc against a section. */
17894
17895 int
17896 mips_fix_adjustable (fixS *fixp)
17897 {
17898 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
17899 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17900 return 0;
17901
17902 if (fixp->fx_addsy == NULL)
17903 return 1;
17904
17905 /* If symbol SYM is in a mergeable section, relocations of the form
17906 SYM + 0 can usually be made section-relative. The mergeable data
17907 is then identified by the section offset rather than by the symbol.
17908
17909 However, if we're generating REL LO16 relocations, the offset is split
17910 between the LO16 and parterning high part relocation. The linker will
17911 need to recalculate the complete offset in order to correctly identify
17912 the merge data.
17913
17914 The linker has traditionally not looked for the parterning high part
17915 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
17916 placed anywhere. Rather than break backwards compatibility by changing
17917 this, it seems better not to force the issue, and instead keep the
17918 original symbol. This will work with either linker behavior. */
17919 if ((lo16_reloc_p (fixp->fx_r_type)
17920 || reloc_needs_lo_p (fixp->fx_r_type))
17921 && HAVE_IN_PLACE_ADDENDS
17922 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
17923 return 0;
17924
17925 /* There is no place to store an in-place offset for JALR relocations.
17926 Likewise an in-range offset of limited PC-relative relocations may
17927 overflow the in-place relocatable field if recalculated against the
17928 start address of the symbol's containing section. */
17929 if (HAVE_IN_PLACE_ADDENDS
17930 && (limited_pcrel_reloc_p (fixp->fx_r_type)
17931 || jalr_reloc_p (fixp->fx_r_type)))
17932 return 0;
17933
17934 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
17935 to a floating-point stub. The same is true for non-R_MIPS16_26
17936 relocations against MIPS16 functions; in this case, the stub becomes
17937 the function's canonical address.
17938
17939 Floating-point stubs are stored in unique .mips16.call.* or
17940 .mips16.fn.* sections. If a stub T for function F is in section S,
17941 the first relocation in section S must be against F; this is how the
17942 linker determines the target function. All relocations that might
17943 resolve to T must also be against F. We therefore have the following
17944 restrictions, which are given in an intentionally-redundant way:
17945
17946 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
17947 symbols.
17948
17949 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
17950 if that stub might be used.
17951
17952 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
17953 symbols.
17954
17955 4. We cannot reduce a stub's relocations against MIPS16 symbols if
17956 that stub might be used.
17957
17958 There is a further restriction:
17959
17960 5. We cannot reduce jump relocations (R_MIPS_26, R_MIPS16_26 or
17961 R_MICROMIPS_26_S1) against MIPS16 or microMIPS symbols on
17962 targets with in-place addends; the relocation field cannot
17963 encode the low bit.
17964
17965 For simplicity, we deal with (3)-(4) by not reducing _any_ relocation
17966 against a MIPS16 symbol. We deal with (5) by by not reducing any
17967 such relocations on REL targets.
17968
17969 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
17970 relocation against some symbol R, no relocation against R may be
17971 reduced. (Note that this deals with (2) as well as (1) because
17972 relocations against global symbols will never be reduced on ELF
17973 targets.) This approach is a little simpler than trying to detect
17974 stub sections, and gives the "all or nothing" per-symbol consistency
17975 that we have for MIPS16 symbols. */
17976 if (fixp->fx_subsy == NULL
17977 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
17978 || *symbol_get_tc (fixp->fx_addsy)
17979 || (HAVE_IN_PLACE_ADDENDS
17980 && ELF_ST_IS_MICROMIPS (S_GET_OTHER (fixp->fx_addsy))
17981 && jmp_reloc_p (fixp->fx_r_type))))
17982 return 0;
17983
17984 return 1;
17985 }
17986
17987 /* Translate internal representation of relocation info to BFD target
17988 format. */
17989
17990 arelent **
17991 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
17992 {
17993 static arelent *retval[4];
17994 arelent *reloc;
17995 bfd_reloc_code_real_type code;
17996
17997 memset (retval, 0, sizeof(retval));
17998 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
17999 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
18000 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
18001 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
18002
18003 if (fixp->fx_pcrel)
18004 {
18005 gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
18006 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
18007 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
18008 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
18009 || fixp->fx_r_type == BFD_RELOC_32_PCREL);
18010
18011 /* At this point, fx_addnumber is "symbol offset - pcrel address".
18012 Relocations want only the symbol offset. */
18013 reloc->addend = fixp->fx_addnumber + reloc->address;
18014 }
18015 else
18016 reloc->addend = fixp->fx_addnumber;
18017
18018 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
18019 entry to be used in the relocation's section offset. */
18020 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
18021 {
18022 reloc->address = reloc->addend;
18023 reloc->addend = 0;
18024 }
18025
18026 code = fixp->fx_r_type;
18027
18028 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
18029 if (reloc->howto == NULL)
18030 {
18031 as_bad_where (fixp->fx_file, fixp->fx_line,
18032 _("Can not represent %s relocation in this object file format"),
18033 bfd_get_reloc_code_name (code));
18034 retval[0] = NULL;
18035 }
18036
18037 return retval;
18038 }
18039
18040 /* Relax a machine dependent frag. This returns the amount by which
18041 the current size of the frag should change. */
18042
18043 int
18044 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
18045 {
18046 if (RELAX_BRANCH_P (fragp->fr_subtype))
18047 {
18048 offsetT old_var = fragp->fr_var;
18049
18050 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
18051
18052 return fragp->fr_var - old_var;
18053 }
18054
18055 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
18056 {
18057 offsetT old_var = fragp->fr_var;
18058 offsetT new_var = 4;
18059
18060 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
18061 new_var = relaxed_micromips_16bit_branch_length (fragp, sec, TRUE);
18062 if (new_var == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
18063 new_var = relaxed_micromips_32bit_branch_length (fragp, sec, TRUE);
18064 fragp->fr_var = new_var;
18065
18066 return new_var - old_var;
18067 }
18068
18069 if (! RELAX_MIPS16_P (fragp->fr_subtype))
18070 return 0;
18071
18072 if (mips16_extended_frag (fragp, NULL, stretch))
18073 {
18074 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
18075 return 0;
18076 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
18077 return 2;
18078 }
18079 else
18080 {
18081 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
18082 return 0;
18083 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
18084 return -2;
18085 }
18086
18087 return 0;
18088 }
18089
18090 /* Convert a machine dependent frag. */
18091
18092 void
18093 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
18094 {
18095 if (RELAX_BRANCH_P (fragp->fr_subtype))
18096 {
18097 char *buf;
18098 unsigned long insn;
18099 expressionS exp;
18100 fixS *fixp;
18101
18102 buf = fragp->fr_literal + fragp->fr_fix;
18103 insn = read_insn (buf);
18104
18105 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
18106 {
18107 /* We generate a fixup instead of applying it right now
18108 because, if there are linker relaxations, we're going to
18109 need the relocations. */
18110 exp.X_op = O_symbol;
18111 exp.X_add_symbol = fragp->fr_symbol;
18112 exp.X_add_number = fragp->fr_offset;
18113
18114 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
18115 BFD_RELOC_16_PCREL_S2);
18116 fixp->fx_file = fragp->fr_file;
18117 fixp->fx_line = fragp->fr_line;
18118
18119 buf = write_insn (buf, insn);
18120 }
18121 else
18122 {
18123 int i;
18124
18125 as_warn_where (fragp->fr_file, fragp->fr_line,
18126 _("Relaxed out-of-range branch into a jump"));
18127
18128 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
18129 goto uncond;
18130
18131 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
18132 {
18133 /* Reverse the branch. */
18134 switch ((insn >> 28) & 0xf)
18135 {
18136 case 4:
18137 /* bc[0-3][tf]l? instructions can have the condition
18138 reversed by tweaking a single TF bit, and their
18139 opcodes all have 0x4???????. */
18140 gas_assert ((insn & 0xf3e00000) == 0x41000000);
18141 insn ^= 0x00010000;
18142 break;
18143
18144 case 0:
18145 /* bltz 0x04000000 bgez 0x04010000
18146 bltzal 0x04100000 bgezal 0x04110000 */
18147 gas_assert ((insn & 0xfc0e0000) == 0x04000000);
18148 insn ^= 0x00010000;
18149 break;
18150
18151 case 1:
18152 /* beq 0x10000000 bne 0x14000000
18153 blez 0x18000000 bgtz 0x1c000000 */
18154 insn ^= 0x04000000;
18155 break;
18156
18157 default:
18158 abort ();
18159 }
18160 }
18161
18162 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
18163 {
18164 /* Clear the and-link bit. */
18165 gas_assert ((insn & 0xfc1c0000) == 0x04100000);
18166
18167 /* bltzal 0x04100000 bgezal 0x04110000
18168 bltzall 0x04120000 bgezall 0x04130000 */
18169 insn &= ~0x00100000;
18170 }
18171
18172 /* Branch over the branch (if the branch was likely) or the
18173 full jump (not likely case). Compute the offset from the
18174 current instruction to branch to. */
18175 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
18176 i = 16;
18177 else
18178 {
18179 /* How many bytes in instructions we've already emitted? */
18180 i = buf - fragp->fr_literal - fragp->fr_fix;
18181 /* How many bytes in instructions from here to the end? */
18182 i = fragp->fr_var - i;
18183 }
18184 /* Convert to instruction count. */
18185 i >>= 2;
18186 /* Branch counts from the next instruction. */
18187 i--;
18188 insn |= i;
18189 /* Branch over the jump. */
18190 buf = write_insn (buf, insn);
18191
18192 /* nop */
18193 buf = write_insn (buf, 0);
18194
18195 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
18196 {
18197 /* beql $0, $0, 2f */
18198 insn = 0x50000000;
18199 /* Compute the PC offset from the current instruction to
18200 the end of the variable frag. */
18201 /* How many bytes in instructions we've already emitted? */
18202 i = buf - fragp->fr_literal - fragp->fr_fix;
18203 /* How many bytes in instructions from here to the end? */
18204 i = fragp->fr_var - i;
18205 /* Convert to instruction count. */
18206 i >>= 2;
18207 /* Don't decrement i, because we want to branch over the
18208 delay slot. */
18209 insn |= i;
18210
18211 buf = write_insn (buf, insn);
18212 buf = write_insn (buf, 0);
18213 }
18214
18215 uncond:
18216 if (mips_pic == NO_PIC)
18217 {
18218 /* j or jal. */
18219 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
18220 ? 0x0c000000 : 0x08000000);
18221 exp.X_op = O_symbol;
18222 exp.X_add_symbol = fragp->fr_symbol;
18223 exp.X_add_number = fragp->fr_offset;
18224
18225 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18226 FALSE, BFD_RELOC_MIPS_JMP);
18227 fixp->fx_file = fragp->fr_file;
18228 fixp->fx_line = fragp->fr_line;
18229
18230 buf = write_insn (buf, insn);
18231 }
18232 else
18233 {
18234 unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
18235
18236 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
18237 insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
18238 insn |= at << OP_SH_RT;
18239 exp.X_op = O_symbol;
18240 exp.X_add_symbol = fragp->fr_symbol;
18241 exp.X_add_number = fragp->fr_offset;
18242
18243 if (fragp->fr_offset)
18244 {
18245 exp.X_add_symbol = make_expr_symbol (&exp);
18246 exp.X_add_number = 0;
18247 }
18248
18249 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18250 FALSE, BFD_RELOC_MIPS_GOT16);
18251 fixp->fx_file = fragp->fr_file;
18252 fixp->fx_line = fragp->fr_line;
18253
18254 buf = write_insn (buf, insn);
18255
18256 if (mips_opts.isa == ISA_MIPS1)
18257 /* nop */
18258 buf = write_insn (buf, 0);
18259
18260 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
18261 insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
18262 insn |= at << OP_SH_RS | at << OP_SH_RT;
18263
18264 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18265 FALSE, BFD_RELOC_LO16);
18266 fixp->fx_file = fragp->fr_file;
18267 fixp->fx_line = fragp->fr_line;
18268
18269 buf = write_insn (buf, insn);
18270
18271 /* j(al)r $at. */
18272 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
18273 insn = 0x0000f809;
18274 else
18275 insn = 0x00000008;
18276 insn |= at << OP_SH_RS;
18277
18278 buf = write_insn (buf, insn);
18279 }
18280 }
18281
18282 fragp->fr_fix += fragp->fr_var;
18283 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
18284 return;
18285 }
18286
18287 /* Relax microMIPS branches. */
18288 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
18289 {
18290 char *buf = fragp->fr_literal + fragp->fr_fix;
18291 bfd_boolean compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
18292 bfd_boolean al = RELAX_MICROMIPS_LINK (fragp->fr_subtype);
18293 int type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
18294 bfd_boolean short_ds;
18295 unsigned long insn;
18296 expressionS exp;
18297 fixS *fixp;
18298
18299 exp.X_op = O_symbol;
18300 exp.X_add_symbol = fragp->fr_symbol;
18301 exp.X_add_number = fragp->fr_offset;
18302
18303 fragp->fr_fix += fragp->fr_var;
18304
18305 /* Handle 16-bit branches that fit or are forced to fit. */
18306 if (type != 0 && !RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
18307 {
18308 /* We generate a fixup instead of applying it right now,
18309 because if there is linker relaxation, we're going to
18310 need the relocations. */
18311 if (type == 'D')
18312 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
18313 BFD_RELOC_MICROMIPS_10_PCREL_S1);
18314 else if (type == 'E')
18315 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
18316 BFD_RELOC_MICROMIPS_7_PCREL_S1);
18317 else
18318 abort ();
18319
18320 fixp->fx_file = fragp->fr_file;
18321 fixp->fx_line = fragp->fr_line;
18322
18323 /* These relocations can have an addend that won't fit in
18324 2 octets. */
18325 fixp->fx_no_overflow = 1;
18326
18327 return;
18328 }
18329
18330 /* Handle 32-bit branches that fit or are forced to fit. */
18331 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
18332 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
18333 {
18334 /* We generate a fixup instead of applying it right now,
18335 because if there is linker relaxation, we're going to
18336 need the relocations. */
18337 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
18338 BFD_RELOC_MICROMIPS_16_PCREL_S1);
18339 fixp->fx_file = fragp->fr_file;
18340 fixp->fx_line = fragp->fr_line;
18341
18342 if (type == 0)
18343 return;
18344 }
18345
18346 /* Relax 16-bit branches to 32-bit branches. */
18347 if (type != 0)
18348 {
18349 insn = read_compressed_insn (buf, 2);
18350
18351 if ((insn & 0xfc00) == 0xcc00) /* b16 */
18352 insn = 0x94000000; /* beq */
18353 else if ((insn & 0xdc00) == 0x8c00) /* beqz16/bnez16 */
18354 {
18355 unsigned long regno;
18356
18357 regno = (insn >> MICROMIPSOP_SH_MD) & MICROMIPSOP_MASK_MD;
18358 regno = micromips_to_32_reg_d_map [regno];
18359 insn = ((insn & 0x2000) << 16) | 0x94000000; /* beq/bne */
18360 insn |= regno << MICROMIPSOP_SH_RS;
18361 }
18362 else
18363 abort ();
18364
18365 /* Nothing else to do, just write it out. */
18366 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
18367 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
18368 {
18369 buf = write_compressed_insn (buf, insn, 4);
18370 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
18371 return;
18372 }
18373 }
18374 else
18375 insn = read_compressed_insn (buf, 4);
18376
18377 /* Relax 32-bit branches to a sequence of instructions. */
18378 as_warn_where (fragp->fr_file, fragp->fr_line,
18379 _("Relaxed out-of-range branch into a jump"));
18380
18381 /* Set the short-delay-slot bit. */
18382 short_ds = al && (insn & 0x02000000) != 0;
18383
18384 if (!RELAX_MICROMIPS_UNCOND (fragp->fr_subtype))
18385 {
18386 symbolS *l;
18387
18388 /* Reverse the branch. */
18389 if ((insn & 0xfc000000) == 0x94000000 /* beq */
18390 || (insn & 0xfc000000) == 0xb4000000) /* bne */
18391 insn ^= 0x20000000;
18392 else if ((insn & 0xffe00000) == 0x40000000 /* bltz */
18393 || (insn & 0xffe00000) == 0x40400000 /* bgez */
18394 || (insn & 0xffe00000) == 0x40800000 /* blez */
18395 || (insn & 0xffe00000) == 0x40c00000 /* bgtz */
18396 || (insn & 0xffe00000) == 0x40a00000 /* bnezc */
18397 || (insn & 0xffe00000) == 0x40e00000 /* beqzc */
18398 || (insn & 0xffe00000) == 0x40200000 /* bltzal */
18399 || (insn & 0xffe00000) == 0x40600000 /* bgezal */
18400 || (insn & 0xffe00000) == 0x42200000 /* bltzals */
18401 || (insn & 0xffe00000) == 0x42600000) /* bgezals */
18402 insn ^= 0x00400000;
18403 else if ((insn & 0xffe30000) == 0x43800000 /* bc1f */
18404 || (insn & 0xffe30000) == 0x43a00000 /* bc1t */
18405 || (insn & 0xffe30000) == 0x42800000 /* bc2f */
18406 || (insn & 0xffe30000) == 0x42a00000) /* bc2t */
18407 insn ^= 0x00200000;
18408 else
18409 abort ();
18410
18411 if (al)
18412 {
18413 /* Clear the and-link and short-delay-slot bits. */
18414 gas_assert ((insn & 0xfda00000) == 0x40200000);
18415
18416 /* bltzal 0x40200000 bgezal 0x40600000 */
18417 /* bltzals 0x42200000 bgezals 0x42600000 */
18418 insn &= ~0x02200000;
18419 }
18420
18421 /* Make a label at the end for use with the branch. */
18422 l = symbol_new (micromips_label_name (), asec, fragp->fr_fix, fragp);
18423 micromips_label_inc ();
18424 S_SET_OTHER (l, ELF_ST_SET_MICROMIPS (S_GET_OTHER (l)));
18425
18426 /* Refer to it. */
18427 fixp = fix_new (fragp, buf - fragp->fr_literal, 4, l, 0, TRUE,
18428 BFD_RELOC_MICROMIPS_16_PCREL_S1);
18429 fixp->fx_file = fragp->fr_file;
18430 fixp->fx_line = fragp->fr_line;
18431
18432 /* Branch over the jump. */
18433 buf = write_compressed_insn (buf, insn, 4);
18434 if (!compact)
18435 /* nop */
18436 buf = write_compressed_insn (buf, 0x0c00, 2);
18437 }
18438
18439 if (mips_pic == NO_PIC)
18440 {
18441 unsigned long jal = short_ds ? 0x74000000 : 0xf4000000; /* jal/s */
18442
18443 /* j/jal/jals <sym> R_MICROMIPS_26_S1 */
18444 insn = al ? jal : 0xd4000000;
18445
18446 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18447 BFD_RELOC_MICROMIPS_JMP);
18448 fixp->fx_file = fragp->fr_file;
18449 fixp->fx_line = fragp->fr_line;
18450
18451 buf = write_compressed_insn (buf, insn, 4);
18452 if (compact)
18453 /* nop */
18454 buf = write_compressed_insn (buf, 0x0c00, 2);
18455 }
18456 else
18457 {
18458 unsigned long at = RELAX_MICROMIPS_AT (fragp->fr_subtype);
18459 unsigned long jalr = short_ds ? 0x45e0 : 0x45c0; /* jalr/s */
18460 unsigned long jr = compact ? 0x45a0 : 0x4580; /* jr/c */
18461
18462 /* lw/ld $at, <sym>($gp) R_MICROMIPS_GOT16 */
18463 insn = HAVE_64BIT_ADDRESSES ? 0xdc1c0000 : 0xfc1c0000;
18464 insn |= at << MICROMIPSOP_SH_RT;
18465
18466 if (exp.X_add_number)
18467 {
18468 exp.X_add_symbol = make_expr_symbol (&exp);
18469 exp.X_add_number = 0;
18470 }
18471
18472 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18473 BFD_RELOC_MICROMIPS_GOT16);
18474 fixp->fx_file = fragp->fr_file;
18475 fixp->fx_line = fragp->fr_line;
18476
18477 buf = write_compressed_insn (buf, insn, 4);
18478
18479 /* d/addiu $at, $at, <sym> R_MICROMIPS_LO16 */
18480 insn = HAVE_64BIT_ADDRESSES ? 0x5c000000 : 0x30000000;
18481 insn |= at << MICROMIPSOP_SH_RT | at << MICROMIPSOP_SH_RS;
18482
18483 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18484 BFD_RELOC_MICROMIPS_LO16);
18485 fixp->fx_file = fragp->fr_file;
18486 fixp->fx_line = fragp->fr_line;
18487
18488 buf = write_compressed_insn (buf, insn, 4);
18489
18490 /* jr/jrc/jalr/jalrs $at */
18491 insn = al ? jalr : jr;
18492 insn |= at << MICROMIPSOP_SH_MJ;
18493
18494 buf = write_compressed_insn (buf, insn, 2);
18495 }
18496
18497 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
18498 return;
18499 }
18500
18501 if (RELAX_MIPS16_P (fragp->fr_subtype))
18502 {
18503 int type;
18504 const struct mips16_immed_operand *op;
18505 offsetT val;
18506 char *buf;
18507 unsigned int user_length, length;
18508 unsigned long insn;
18509 bfd_boolean ext;
18510
18511 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
18512 op = mips16_immed_operands;
18513 while (op->type != type)
18514 ++op;
18515
18516 ext = RELAX_MIPS16_EXTENDED (fragp->fr_subtype);
18517 val = resolve_symbol_value (fragp->fr_symbol);
18518 if (op->pcrel)
18519 {
18520 addressT addr;
18521
18522 addr = fragp->fr_address + fragp->fr_fix;
18523
18524 /* The rules for the base address of a PC relative reloc are
18525 complicated; see mips16_extended_frag. */
18526 if (type == 'p' || type == 'q')
18527 {
18528 addr += 2;
18529 if (ext)
18530 addr += 2;
18531 /* Ignore the low bit in the target, since it will be
18532 set for a text label. */
18533 if ((val & 1) != 0)
18534 --val;
18535 }
18536 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
18537 addr -= 4;
18538 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
18539 addr -= 2;
18540
18541 addr &= ~ (addressT) ((1 << op->shift) - 1);
18542 val -= addr;
18543
18544 /* Make sure the section winds up with the alignment we have
18545 assumed. */
18546 if (op->shift > 0)
18547 record_alignment (asec, op->shift);
18548 }
18549
18550 if (ext
18551 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
18552 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
18553 as_warn_where (fragp->fr_file, fragp->fr_line,
18554 _("extended instruction in delay slot"));
18555
18556 buf = fragp->fr_literal + fragp->fr_fix;
18557
18558 insn = read_compressed_insn (buf, 2);
18559 if (ext)
18560 insn |= MIPS16_EXTEND;
18561
18562 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
18563 user_length = 4;
18564 else if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
18565 user_length = 2;
18566 else
18567 user_length = 0;
18568
18569 mips16_immed (fragp->fr_file, fragp->fr_line, type,
18570 BFD_RELOC_UNUSED, val, user_length, &insn);
18571
18572 length = (ext ? 4 : 2);
18573 gas_assert (mips16_opcode_length (insn) == length);
18574 write_compressed_insn (buf, insn, length);
18575 fragp->fr_fix += length;
18576 }
18577 else
18578 {
18579 relax_substateT subtype = fragp->fr_subtype;
18580 bfd_boolean second_longer = (subtype & RELAX_SECOND_LONGER) != 0;
18581 bfd_boolean use_second = (subtype & RELAX_USE_SECOND) != 0;
18582 int first, second;
18583 fixS *fixp;
18584
18585 first = RELAX_FIRST (subtype);
18586 second = RELAX_SECOND (subtype);
18587 fixp = (fixS *) fragp->fr_opcode;
18588
18589 /* If the delay slot chosen does not match the size of the instruction,
18590 then emit a warning. */
18591 if ((!use_second && (subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0)
18592 || (use_second && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0))
18593 {
18594 relax_substateT s;
18595 const char *msg;
18596
18597 s = subtype & (RELAX_DELAY_SLOT_16BIT
18598 | RELAX_DELAY_SLOT_SIZE_FIRST
18599 | RELAX_DELAY_SLOT_SIZE_SECOND);
18600 msg = macro_warning (s);
18601 if (msg != NULL)
18602 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
18603 subtype &= ~s;
18604 }
18605
18606 /* Possibly emit a warning if we've chosen the longer option. */
18607 if (use_second == second_longer)
18608 {
18609 relax_substateT s;
18610 const char *msg;
18611
18612 s = (subtype
18613 & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT));
18614 msg = macro_warning (s);
18615 if (msg != NULL)
18616 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
18617 subtype &= ~s;
18618 }
18619
18620 /* Go through all the fixups for the first sequence. Disable them
18621 (by marking them as done) if we're going to use the second
18622 sequence instead. */
18623 while (fixp
18624 && fixp->fx_frag == fragp
18625 && fixp->fx_where < fragp->fr_fix - second)
18626 {
18627 if (subtype & RELAX_USE_SECOND)
18628 fixp->fx_done = 1;
18629 fixp = fixp->fx_next;
18630 }
18631
18632 /* Go through the fixups for the second sequence. Disable them if
18633 we're going to use the first sequence, otherwise adjust their
18634 addresses to account for the relaxation. */
18635 while (fixp && fixp->fx_frag == fragp)
18636 {
18637 if (subtype & RELAX_USE_SECOND)
18638 fixp->fx_where -= first;
18639 else
18640 fixp->fx_done = 1;
18641 fixp = fixp->fx_next;
18642 }
18643
18644 /* Now modify the frag contents. */
18645 if (subtype & RELAX_USE_SECOND)
18646 {
18647 char *start;
18648
18649 start = fragp->fr_literal + fragp->fr_fix - first - second;
18650 memmove (start, start + first, second);
18651 fragp->fr_fix -= first;
18652 }
18653 else
18654 fragp->fr_fix -= second;
18655 }
18656 }
18657
18658 /* This function is called after the relocs have been generated.
18659 We've been storing mips16 text labels as odd. Here we convert them
18660 back to even for the convenience of the debugger. */
18661
18662 void
18663 mips_frob_file_after_relocs (void)
18664 {
18665 asymbol **syms;
18666 unsigned int count, i;
18667
18668 syms = bfd_get_outsymbols (stdoutput);
18669 count = bfd_get_symcount (stdoutput);
18670 for (i = 0; i < count; i++, syms++)
18671 if (ELF_ST_IS_COMPRESSED (elf_symbol (*syms)->internal_elf_sym.st_other)
18672 && ((*syms)->value & 1) != 0)
18673 {
18674 (*syms)->value &= ~1;
18675 /* If the symbol has an odd size, it was probably computed
18676 incorrectly, so adjust that as well. */
18677 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
18678 ++elf_symbol (*syms)->internal_elf_sym.st_size;
18679 }
18680 }
18681
18682 /* This function is called whenever a label is defined, including fake
18683 labels instantiated off the dot special symbol. It is used when
18684 handling branch delays; if a branch has a label, we assume we cannot
18685 move it. This also bumps the value of the symbol by 1 in compressed
18686 code. */
18687
18688 static void
18689 mips_record_label (symbolS *sym)
18690 {
18691 segment_info_type *si = seg_info (now_seg);
18692 struct insn_label_list *l;
18693
18694 if (free_insn_labels == NULL)
18695 l = (struct insn_label_list *) xmalloc (sizeof *l);
18696 else
18697 {
18698 l = free_insn_labels;
18699 free_insn_labels = l->next;
18700 }
18701
18702 l->label = sym;
18703 l->next = si->label_list;
18704 si->label_list = l;
18705 }
18706
18707 /* This function is called as tc_frob_label() whenever a label is defined
18708 and adds a DWARF-2 record we only want for true labels. */
18709
18710 void
18711 mips_define_label (symbolS *sym)
18712 {
18713 mips_record_label (sym);
18714 dwarf2_emit_label (sym);
18715 }
18716
18717 /* This function is called by tc_new_dot_label whenever a new dot symbol
18718 is defined. */
18719
18720 void
18721 mips_add_dot_label (symbolS *sym)
18722 {
18723 mips_record_label (sym);
18724 if (mips_assembling_insn && HAVE_CODE_COMPRESSION)
18725 mips_compressed_mark_label (sym);
18726 }
18727 \f
18728 /* Some special processing for a MIPS ELF file. */
18729
18730 void
18731 mips_elf_final_processing (void)
18732 {
18733 /* Write out the register information. */
18734 if (mips_abi != N64_ABI)
18735 {
18736 Elf32_RegInfo s;
18737
18738 s.ri_gprmask = mips_gprmask;
18739 s.ri_cprmask[0] = mips_cprmask[0];
18740 s.ri_cprmask[1] = mips_cprmask[1];
18741 s.ri_cprmask[2] = mips_cprmask[2];
18742 s.ri_cprmask[3] = mips_cprmask[3];
18743 /* The gp_value field is set by the MIPS ELF backend. */
18744
18745 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
18746 ((Elf32_External_RegInfo *)
18747 mips_regmask_frag));
18748 }
18749 else
18750 {
18751 Elf64_Internal_RegInfo s;
18752
18753 s.ri_gprmask = mips_gprmask;
18754 s.ri_pad = 0;
18755 s.ri_cprmask[0] = mips_cprmask[0];
18756 s.ri_cprmask[1] = mips_cprmask[1];
18757 s.ri_cprmask[2] = mips_cprmask[2];
18758 s.ri_cprmask[3] = mips_cprmask[3];
18759 /* The gp_value field is set by the MIPS ELF backend. */
18760
18761 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
18762 ((Elf64_External_RegInfo *)
18763 mips_regmask_frag));
18764 }
18765
18766 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
18767 sort of BFD interface for this. */
18768 if (mips_any_noreorder)
18769 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
18770 if (mips_pic != NO_PIC)
18771 {
18772 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
18773 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18774 }
18775 if (mips_abicalls)
18776 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18777
18778 /* Set MIPS ELF flags for ASEs. Note that not all ASEs have flags
18779 defined at present; this might need to change in future. */
18780 if (file_ase_mips16)
18781 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
18782 if (file_ase_micromips)
18783 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MICROMIPS;
18784 if (file_ase & ASE_MDMX)
18785 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
18786
18787 /* Set the MIPS ELF ABI flags. */
18788 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
18789 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
18790 else if (mips_abi == O64_ABI)
18791 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
18792 else if (mips_abi == EABI_ABI)
18793 {
18794 if (!file_mips_gp32)
18795 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
18796 else
18797 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
18798 }
18799 else if (mips_abi == N32_ABI)
18800 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
18801
18802 /* Nothing to do for N64_ABI. */
18803
18804 if (mips_32bitmode)
18805 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
18806
18807 if (mips_flag_nan2008)
18808 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NAN2008;
18809
18810 #if 0 /* XXX FIXME */
18811 /* 32 bit code with 64 bit FP registers. */
18812 if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
18813 elf_elfheader (stdoutput)->e_flags |= ???;
18814 #endif
18815 }
18816 \f
18817 typedef struct proc {
18818 symbolS *func_sym;
18819 symbolS *func_end_sym;
18820 unsigned long reg_mask;
18821 unsigned long reg_offset;
18822 unsigned long fpreg_mask;
18823 unsigned long fpreg_offset;
18824 unsigned long frame_offset;
18825 unsigned long frame_reg;
18826 unsigned long pc_reg;
18827 } procS;
18828
18829 static procS cur_proc;
18830 static procS *cur_proc_ptr;
18831 static int numprocs;
18832
18833 /* Implement NOP_OPCODE. We encode a MIPS16 nop as "1", a microMIPS nop
18834 as "2", and a normal nop as "0". */
18835
18836 #define NOP_OPCODE_MIPS 0
18837 #define NOP_OPCODE_MIPS16 1
18838 #define NOP_OPCODE_MICROMIPS 2
18839
18840 char
18841 mips_nop_opcode (void)
18842 {
18843 if (seg_info (now_seg)->tc_segment_info_data.micromips)
18844 return NOP_OPCODE_MICROMIPS;
18845 else if (seg_info (now_seg)->tc_segment_info_data.mips16)
18846 return NOP_OPCODE_MIPS16;
18847 else
18848 return NOP_OPCODE_MIPS;
18849 }
18850
18851 /* Fill in an rs_align_code fragment. Unlike elsewhere we want to use
18852 32-bit microMIPS NOPs here (if applicable). */
18853
18854 void
18855 mips_handle_align (fragS *fragp)
18856 {
18857 char nop_opcode;
18858 char *p;
18859 int bytes, size, excess;
18860 valueT opcode;
18861
18862 if (fragp->fr_type != rs_align_code)
18863 return;
18864
18865 p = fragp->fr_literal + fragp->fr_fix;
18866 nop_opcode = *p;
18867 switch (nop_opcode)
18868 {
18869 case NOP_OPCODE_MICROMIPS:
18870 opcode = micromips_nop32_insn.insn_opcode;
18871 size = 4;
18872 break;
18873 case NOP_OPCODE_MIPS16:
18874 opcode = mips16_nop_insn.insn_opcode;
18875 size = 2;
18876 break;
18877 case NOP_OPCODE_MIPS:
18878 default:
18879 opcode = nop_insn.insn_opcode;
18880 size = 4;
18881 break;
18882 }
18883
18884 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
18885 excess = bytes % size;
18886
18887 /* Handle the leading part if we're not inserting a whole number of
18888 instructions, and make it the end of the fixed part of the frag.
18889 Try to fit in a short microMIPS NOP if applicable and possible,
18890 and use zeroes otherwise. */
18891 gas_assert (excess < 4);
18892 fragp->fr_fix += excess;
18893 switch (excess)
18894 {
18895 case 3:
18896 *p++ = '\0';
18897 /* Fall through. */
18898 case 2:
18899 if (nop_opcode == NOP_OPCODE_MICROMIPS && !mips_opts.insn32)
18900 {
18901 p = write_compressed_insn (p, micromips_nop16_insn.insn_opcode, 2);
18902 break;
18903 }
18904 *p++ = '\0';
18905 /* Fall through. */
18906 case 1:
18907 *p++ = '\0';
18908 /* Fall through. */
18909 case 0:
18910 break;
18911 }
18912
18913 md_number_to_chars (p, opcode, size);
18914 fragp->fr_var = size;
18915 }
18916
18917 static void
18918 md_obj_begin (void)
18919 {
18920 }
18921
18922 static void
18923 md_obj_end (void)
18924 {
18925 /* Check for premature end, nesting errors, etc. */
18926 if (cur_proc_ptr)
18927 as_warn (_("missing .end at end of assembly"));
18928 }
18929
18930 static long
18931 get_number (void)
18932 {
18933 int negative = 0;
18934 long val = 0;
18935
18936 if (*input_line_pointer == '-')
18937 {
18938 ++input_line_pointer;
18939 negative = 1;
18940 }
18941 if (!ISDIGIT (*input_line_pointer))
18942 as_bad (_("expected simple number"));
18943 if (input_line_pointer[0] == '0')
18944 {
18945 if (input_line_pointer[1] == 'x')
18946 {
18947 input_line_pointer += 2;
18948 while (ISXDIGIT (*input_line_pointer))
18949 {
18950 val <<= 4;
18951 val |= hex_value (*input_line_pointer++);
18952 }
18953 return negative ? -val : val;
18954 }
18955 else
18956 {
18957 ++input_line_pointer;
18958 while (ISDIGIT (*input_line_pointer))
18959 {
18960 val <<= 3;
18961 val |= *input_line_pointer++ - '0';
18962 }
18963 return negative ? -val : val;
18964 }
18965 }
18966 if (!ISDIGIT (*input_line_pointer))
18967 {
18968 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
18969 *input_line_pointer, *input_line_pointer);
18970 as_warn (_("invalid number"));
18971 return -1;
18972 }
18973 while (ISDIGIT (*input_line_pointer))
18974 {
18975 val *= 10;
18976 val += *input_line_pointer++ - '0';
18977 }
18978 return negative ? -val : val;
18979 }
18980
18981 /* The .file directive; just like the usual .file directive, but there
18982 is an initial number which is the ECOFF file index. In the non-ECOFF
18983 case .file implies DWARF-2. */
18984
18985 static void
18986 s_mips_file (int x ATTRIBUTE_UNUSED)
18987 {
18988 static int first_file_directive = 0;
18989
18990 if (ECOFF_DEBUGGING)
18991 {
18992 get_number ();
18993 s_app_file (0);
18994 }
18995 else
18996 {
18997 char *filename;
18998
18999 filename = dwarf2_directive_file (0);
19000
19001 /* Versions of GCC up to 3.1 start files with a ".file"
19002 directive even for stabs output. Make sure that this
19003 ".file" is handled. Note that you need a version of GCC
19004 after 3.1 in order to support DWARF-2 on MIPS. */
19005 if (filename != NULL && ! first_file_directive)
19006 {
19007 (void) new_logical_line (filename, -1);
19008 s_app_file_string (filename, 0);
19009 }
19010 first_file_directive = 1;
19011 }
19012 }
19013
19014 /* The .loc directive, implying DWARF-2. */
19015
19016 static void
19017 s_mips_loc (int x ATTRIBUTE_UNUSED)
19018 {
19019 if (!ECOFF_DEBUGGING)
19020 dwarf2_directive_loc (0);
19021 }
19022
19023 /* The .end directive. */
19024
19025 static void
19026 s_mips_end (int x ATTRIBUTE_UNUSED)
19027 {
19028 symbolS *p;
19029
19030 /* Following functions need their own .frame and .cprestore directives. */
19031 mips_frame_reg_valid = 0;
19032 mips_cprestore_valid = 0;
19033
19034 if (!is_end_of_line[(unsigned char) *input_line_pointer])
19035 {
19036 p = get_symbol ();
19037 demand_empty_rest_of_line ();
19038 }
19039 else
19040 p = NULL;
19041
19042 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
19043 as_warn (_(".end not in text section"));
19044
19045 if (!cur_proc_ptr)
19046 {
19047 as_warn (_(".end directive without a preceding .ent directive."));
19048 demand_empty_rest_of_line ();
19049 return;
19050 }
19051
19052 if (p != NULL)
19053 {
19054 gas_assert (S_GET_NAME (p));
19055 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
19056 as_warn (_(".end symbol does not match .ent symbol."));
19057
19058 if (debug_type == DEBUG_STABS)
19059 stabs_generate_asm_endfunc (S_GET_NAME (p),
19060 S_GET_NAME (p));
19061 }
19062 else
19063 as_warn (_(".end directive missing or unknown symbol"));
19064
19065 /* Create an expression to calculate the size of the function. */
19066 if (p && cur_proc_ptr)
19067 {
19068 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
19069 expressionS *exp = xmalloc (sizeof (expressionS));
19070
19071 obj->size = exp;
19072 exp->X_op = O_subtract;
19073 exp->X_add_symbol = symbol_temp_new_now ();
19074 exp->X_op_symbol = p;
19075 exp->X_add_number = 0;
19076
19077 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
19078 }
19079
19080 /* Generate a .pdr section. */
19081 if (!ECOFF_DEBUGGING && mips_flag_pdr)
19082 {
19083 segT saved_seg = now_seg;
19084 subsegT saved_subseg = now_subseg;
19085 expressionS exp;
19086 char *fragp;
19087
19088 #ifdef md_flush_pending_output
19089 md_flush_pending_output ();
19090 #endif
19091
19092 gas_assert (pdr_seg);
19093 subseg_set (pdr_seg, 0);
19094
19095 /* Write the symbol. */
19096 exp.X_op = O_symbol;
19097 exp.X_add_symbol = p;
19098 exp.X_add_number = 0;
19099 emit_expr (&exp, 4);
19100
19101 fragp = frag_more (7 * 4);
19102
19103 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
19104 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
19105 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
19106 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
19107 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
19108 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
19109 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
19110
19111 subseg_set (saved_seg, saved_subseg);
19112 }
19113
19114 cur_proc_ptr = NULL;
19115 }
19116
19117 /* The .aent and .ent directives. */
19118
19119 static void
19120 s_mips_ent (int aent)
19121 {
19122 symbolS *symbolP;
19123
19124 symbolP = get_symbol ();
19125 if (*input_line_pointer == ',')
19126 ++input_line_pointer;
19127 SKIP_WHITESPACE ();
19128 if (ISDIGIT (*input_line_pointer)
19129 || *input_line_pointer == '-')
19130 get_number ();
19131
19132 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
19133 as_warn (_(".ent or .aent not in text section."));
19134
19135 if (!aent && cur_proc_ptr)
19136 as_warn (_("missing .end"));
19137
19138 if (!aent)
19139 {
19140 /* This function needs its own .frame and .cprestore directives. */
19141 mips_frame_reg_valid = 0;
19142 mips_cprestore_valid = 0;
19143
19144 cur_proc_ptr = &cur_proc;
19145 memset (cur_proc_ptr, '\0', sizeof (procS));
19146
19147 cur_proc_ptr->func_sym = symbolP;
19148
19149 ++numprocs;
19150
19151 if (debug_type == DEBUG_STABS)
19152 stabs_generate_asm_func (S_GET_NAME (symbolP),
19153 S_GET_NAME (symbolP));
19154 }
19155
19156 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
19157
19158 demand_empty_rest_of_line ();
19159 }
19160
19161 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
19162 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
19163 s_mips_frame is used so that we can set the PDR information correctly.
19164 We can't use the ecoff routines because they make reference to the ecoff
19165 symbol table (in the mdebug section). */
19166
19167 static void
19168 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
19169 {
19170 if (ECOFF_DEBUGGING)
19171 s_ignore (ignore);
19172 else
19173 {
19174 long val;
19175
19176 if (cur_proc_ptr == (procS *) NULL)
19177 {
19178 as_warn (_(".frame outside of .ent"));
19179 demand_empty_rest_of_line ();
19180 return;
19181 }
19182
19183 cur_proc_ptr->frame_reg = tc_get_register (1);
19184
19185 SKIP_WHITESPACE ();
19186 if (*input_line_pointer++ != ','
19187 || get_absolute_expression_and_terminator (&val) != ',')
19188 {
19189 as_warn (_("Bad .frame directive"));
19190 --input_line_pointer;
19191 demand_empty_rest_of_line ();
19192 return;
19193 }
19194
19195 cur_proc_ptr->frame_offset = val;
19196 cur_proc_ptr->pc_reg = tc_get_register (0);
19197
19198 demand_empty_rest_of_line ();
19199 }
19200 }
19201
19202 /* The .fmask and .mask directives. If the mdebug section is present
19203 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
19204 embedded targets, s_mips_mask is used so that we can set the PDR
19205 information correctly. We can't use the ecoff routines because they
19206 make reference to the ecoff symbol table (in the mdebug section). */
19207
19208 static void
19209 s_mips_mask (int reg_type)
19210 {
19211 if (ECOFF_DEBUGGING)
19212 s_ignore (reg_type);
19213 else
19214 {
19215 long mask, off;
19216
19217 if (cur_proc_ptr == (procS *) NULL)
19218 {
19219 as_warn (_(".mask/.fmask outside of .ent"));
19220 demand_empty_rest_of_line ();
19221 return;
19222 }
19223
19224 if (get_absolute_expression_and_terminator (&mask) != ',')
19225 {
19226 as_warn (_("Bad .mask/.fmask directive"));
19227 --input_line_pointer;
19228 demand_empty_rest_of_line ();
19229 return;
19230 }
19231
19232 off = get_absolute_expression ();
19233
19234 if (reg_type == 'F')
19235 {
19236 cur_proc_ptr->fpreg_mask = mask;
19237 cur_proc_ptr->fpreg_offset = off;
19238 }
19239 else
19240 {
19241 cur_proc_ptr->reg_mask = mask;
19242 cur_proc_ptr->reg_offset = off;
19243 }
19244
19245 demand_empty_rest_of_line ();
19246 }
19247 }
19248
19249 /* A table describing all the processors gas knows about. Names are
19250 matched in the order listed.
19251
19252 To ease comparison, please keep this table in the same order as
19253 gcc's mips_cpu_info_table[]. */
19254 static const struct mips_cpu_info mips_cpu_info_table[] =
19255 {
19256 /* Entries for generic ISAs */
19257 { "mips1", MIPS_CPU_IS_ISA, 0, ISA_MIPS1, CPU_R3000 },
19258 { "mips2", MIPS_CPU_IS_ISA, 0, ISA_MIPS2, CPU_R6000 },
19259 { "mips3", MIPS_CPU_IS_ISA, 0, ISA_MIPS3, CPU_R4000 },
19260 { "mips4", MIPS_CPU_IS_ISA, 0, ISA_MIPS4, CPU_R8000 },
19261 { "mips5", MIPS_CPU_IS_ISA, 0, ISA_MIPS5, CPU_MIPS5 },
19262 { "mips32", MIPS_CPU_IS_ISA, 0, ISA_MIPS32, CPU_MIPS32 },
19263 { "mips32r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19264 { "mips64", MIPS_CPU_IS_ISA, 0, ISA_MIPS64, CPU_MIPS64 },
19265 { "mips64r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS64R2, CPU_MIPS64R2 },
19266
19267 /* MIPS I */
19268 { "r3000", 0, 0, ISA_MIPS1, CPU_R3000 },
19269 { "r2000", 0, 0, ISA_MIPS1, CPU_R3000 },
19270 { "r3900", 0, 0, ISA_MIPS1, CPU_R3900 },
19271
19272 /* MIPS II */
19273 { "r6000", 0, 0, ISA_MIPS2, CPU_R6000 },
19274
19275 /* MIPS III */
19276 { "r4000", 0, 0, ISA_MIPS3, CPU_R4000 },
19277 { "r4010", 0, 0, ISA_MIPS2, CPU_R4010 },
19278 { "vr4100", 0, 0, ISA_MIPS3, CPU_VR4100 },
19279 { "vr4111", 0, 0, ISA_MIPS3, CPU_R4111 },
19280 { "vr4120", 0, 0, ISA_MIPS3, CPU_VR4120 },
19281 { "vr4130", 0, 0, ISA_MIPS3, CPU_VR4120 },
19282 { "vr4181", 0, 0, ISA_MIPS3, CPU_R4111 },
19283 { "vr4300", 0, 0, ISA_MIPS3, CPU_R4300 },
19284 { "r4400", 0, 0, ISA_MIPS3, CPU_R4400 },
19285 { "r4600", 0, 0, ISA_MIPS3, CPU_R4600 },
19286 { "orion", 0, 0, ISA_MIPS3, CPU_R4600 },
19287 { "r4650", 0, 0, ISA_MIPS3, CPU_R4650 },
19288 { "r5900", 0, 0, ISA_MIPS3, CPU_R5900 },
19289 /* ST Microelectronics Loongson 2E and 2F cores */
19290 { "loongson2e", 0, 0, ISA_MIPS3, CPU_LOONGSON_2E },
19291 { "loongson2f", 0, 0, ISA_MIPS3, CPU_LOONGSON_2F },
19292
19293 /* MIPS IV */
19294 { "r8000", 0, 0, ISA_MIPS4, CPU_R8000 },
19295 { "r10000", 0, 0, ISA_MIPS4, CPU_R10000 },
19296 { "r12000", 0, 0, ISA_MIPS4, CPU_R12000 },
19297 { "r14000", 0, 0, ISA_MIPS4, CPU_R14000 },
19298 { "r16000", 0, 0, ISA_MIPS4, CPU_R16000 },
19299 { "vr5000", 0, 0, ISA_MIPS4, CPU_R5000 },
19300 { "vr5400", 0, 0, ISA_MIPS4, CPU_VR5400 },
19301 { "vr5500", 0, 0, ISA_MIPS4, CPU_VR5500 },
19302 { "rm5200", 0, 0, ISA_MIPS4, CPU_R5000 },
19303 { "rm5230", 0, 0, ISA_MIPS4, CPU_R5000 },
19304 { "rm5231", 0, 0, ISA_MIPS4, CPU_R5000 },
19305 { "rm5261", 0, 0, ISA_MIPS4, CPU_R5000 },
19306 { "rm5721", 0, 0, ISA_MIPS4, CPU_R5000 },
19307 { "rm7000", 0, 0, ISA_MIPS4, CPU_RM7000 },
19308 { "rm9000", 0, 0, ISA_MIPS4, CPU_RM9000 },
19309
19310 /* MIPS 32 */
19311 { "4kc", 0, 0, ISA_MIPS32, CPU_MIPS32 },
19312 { "4km", 0, 0, ISA_MIPS32, CPU_MIPS32 },
19313 { "4kp", 0, 0, ISA_MIPS32, CPU_MIPS32 },
19314 { "4ksc", 0, ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
19315
19316 /* MIPS 32 Release 2 */
19317 { "4kec", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19318 { "4kem", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19319 { "4kep", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19320 { "4ksd", 0, ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
19321 { "m4k", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19322 { "m4kp", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19323 { "m14k", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
19324 { "m14kc", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
19325 { "m14ke", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
19326 ISA_MIPS32R2, CPU_MIPS32R2 },
19327 { "m14kec", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
19328 ISA_MIPS32R2, CPU_MIPS32R2 },
19329 { "24kc", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19330 { "24kf2_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19331 { "24kf", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19332 { "24kf1_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19333 /* Deprecated forms of the above. */
19334 { "24kfx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19335 { "24kx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19336 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
19337 { "24kec", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19338 { "24kef2_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19339 { "24kef", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19340 { "24kef1_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19341 /* Deprecated forms of the above. */
19342 { "24kefx", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19343 { "24kex", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19344 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
19345 { "34kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19346 { "34kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19347 { "34kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19348 { "34kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19349 /* Deprecated forms of the above. */
19350 { "34kfx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19351 { "34kx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19352 /* 34Kn is a 34kc without DSP. */
19353 { "34kn", 0, ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19354 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
19355 { "74kc", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19356 { "74kf2_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19357 { "74kf", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19358 { "74kf1_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19359 { "74kf3_2", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19360 /* Deprecated forms of the above. */
19361 { "74kfx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19362 { "74kx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19363 /* 1004K cores are multiprocessor versions of the 34K. */
19364 { "1004kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19365 { "1004kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19366 { "1004kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19367 { "1004kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19368
19369 /* MIPS 64 */
19370 { "5kc", 0, 0, ISA_MIPS64, CPU_MIPS64 },
19371 { "5kf", 0, 0, ISA_MIPS64, CPU_MIPS64 },
19372 { "20kc", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
19373 { "25kf", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
19374
19375 /* Broadcom SB-1 CPU core */
19376 { "sb1", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
19377 /* Broadcom SB-1A CPU core */
19378 { "sb1a", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
19379
19380 { "loongson3a", 0, 0, ISA_MIPS64, CPU_LOONGSON_3A },
19381
19382 /* MIPS 64 Release 2 */
19383
19384 /* Cavium Networks Octeon CPU core */
19385 { "octeon", 0, 0, ISA_MIPS64R2, CPU_OCTEON },
19386 { "octeon+", 0, 0, ISA_MIPS64R2, CPU_OCTEONP },
19387 { "octeon2", 0, 0, ISA_MIPS64R2, CPU_OCTEON2 },
19388
19389 /* RMI Xlr */
19390 { "xlr", 0, 0, ISA_MIPS64, CPU_XLR },
19391
19392 /* Broadcom XLP.
19393 XLP is mostly like XLR, with the prominent exception that it is
19394 MIPS64R2 rather than MIPS64. */
19395 { "xlp", 0, 0, ISA_MIPS64R2, CPU_XLR },
19396
19397 /* End marker */
19398 { NULL, 0, 0, 0, 0 }
19399 };
19400
19401
19402 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
19403 with a final "000" replaced by "k". Ignore case.
19404
19405 Note: this function is shared between GCC and GAS. */
19406
19407 static bfd_boolean
19408 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
19409 {
19410 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
19411 given++, canonical++;
19412
19413 return ((*given == 0 && *canonical == 0)
19414 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
19415 }
19416
19417
19418 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
19419 CPU name. We've traditionally allowed a lot of variation here.
19420
19421 Note: this function is shared between GCC and GAS. */
19422
19423 static bfd_boolean
19424 mips_matching_cpu_name_p (const char *canonical, const char *given)
19425 {
19426 /* First see if the name matches exactly, or with a final "000"
19427 turned into "k". */
19428 if (mips_strict_matching_cpu_name_p (canonical, given))
19429 return TRUE;
19430
19431 /* If not, try comparing based on numerical designation alone.
19432 See if GIVEN is an unadorned number, or 'r' followed by a number. */
19433 if (TOLOWER (*given) == 'r')
19434 given++;
19435 if (!ISDIGIT (*given))
19436 return FALSE;
19437
19438 /* Skip over some well-known prefixes in the canonical name,
19439 hoping to find a number there too. */
19440 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
19441 canonical += 2;
19442 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
19443 canonical += 2;
19444 else if (TOLOWER (canonical[0]) == 'r')
19445 canonical += 1;
19446
19447 return mips_strict_matching_cpu_name_p (canonical, given);
19448 }
19449
19450
19451 /* Parse an option that takes the name of a processor as its argument.
19452 OPTION is the name of the option and CPU_STRING is the argument.
19453 Return the corresponding processor enumeration if the CPU_STRING is
19454 recognized, otherwise report an error and return null.
19455
19456 A similar function exists in GCC. */
19457
19458 static const struct mips_cpu_info *
19459 mips_parse_cpu (const char *option, const char *cpu_string)
19460 {
19461 const struct mips_cpu_info *p;
19462
19463 /* 'from-abi' selects the most compatible architecture for the given
19464 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
19465 EABIs, we have to decide whether we're using the 32-bit or 64-bit
19466 version. Look first at the -mgp options, if given, otherwise base
19467 the choice on MIPS_DEFAULT_64BIT.
19468
19469 Treat NO_ABI like the EABIs. One reason to do this is that the
19470 plain 'mips' and 'mips64' configs have 'from-abi' as their default
19471 architecture. This code picks MIPS I for 'mips' and MIPS III for
19472 'mips64', just as we did in the days before 'from-abi'. */
19473 if (strcasecmp (cpu_string, "from-abi") == 0)
19474 {
19475 if (ABI_NEEDS_32BIT_REGS (mips_abi))
19476 return mips_cpu_info_from_isa (ISA_MIPS1);
19477
19478 if (ABI_NEEDS_64BIT_REGS (mips_abi))
19479 return mips_cpu_info_from_isa (ISA_MIPS3);
19480
19481 if (file_mips_gp32 >= 0)
19482 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
19483
19484 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
19485 ? ISA_MIPS3
19486 : ISA_MIPS1);
19487 }
19488
19489 /* 'default' has traditionally been a no-op. Probably not very useful. */
19490 if (strcasecmp (cpu_string, "default") == 0)
19491 return 0;
19492
19493 for (p = mips_cpu_info_table; p->name != 0; p++)
19494 if (mips_matching_cpu_name_p (p->name, cpu_string))
19495 return p;
19496
19497 as_bad (_("Bad value (%s) for %s"), cpu_string, option);
19498 return 0;
19499 }
19500
19501 /* Return the canonical processor information for ISA (a member of the
19502 ISA_MIPS* enumeration). */
19503
19504 static const struct mips_cpu_info *
19505 mips_cpu_info_from_isa (int isa)
19506 {
19507 int i;
19508
19509 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19510 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
19511 && isa == mips_cpu_info_table[i].isa)
19512 return (&mips_cpu_info_table[i]);
19513
19514 return NULL;
19515 }
19516
19517 static const struct mips_cpu_info *
19518 mips_cpu_info_from_arch (int arch)
19519 {
19520 int i;
19521
19522 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19523 if (arch == mips_cpu_info_table[i].cpu)
19524 return (&mips_cpu_info_table[i]);
19525
19526 return NULL;
19527 }
19528 \f
19529 static void
19530 show (FILE *stream, const char *string, int *col_p, int *first_p)
19531 {
19532 if (*first_p)
19533 {
19534 fprintf (stream, "%24s", "");
19535 *col_p = 24;
19536 }
19537 else
19538 {
19539 fprintf (stream, ", ");
19540 *col_p += 2;
19541 }
19542
19543 if (*col_p + strlen (string) > 72)
19544 {
19545 fprintf (stream, "\n%24s", "");
19546 *col_p = 24;
19547 }
19548
19549 fprintf (stream, "%s", string);
19550 *col_p += strlen (string);
19551
19552 *first_p = 0;
19553 }
19554
19555 void
19556 md_show_usage (FILE *stream)
19557 {
19558 int column, first;
19559 size_t i;
19560
19561 fprintf (stream, _("\
19562 MIPS options:\n\
19563 -EB generate big endian output\n\
19564 -EL generate little endian output\n\
19565 -g, -g2 do not remove unneeded NOPs or swap branches\n\
19566 -G NUM allow referencing objects up to NUM bytes\n\
19567 implicitly with the gp register [default 8]\n"));
19568 fprintf (stream, _("\
19569 -mips1 generate MIPS ISA I instructions\n\
19570 -mips2 generate MIPS ISA II instructions\n\
19571 -mips3 generate MIPS ISA III instructions\n\
19572 -mips4 generate MIPS ISA IV instructions\n\
19573 -mips5 generate MIPS ISA V instructions\n\
19574 -mips32 generate MIPS32 ISA instructions\n\
19575 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
19576 -mips64 generate MIPS64 ISA instructions\n\
19577 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
19578 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
19579
19580 first = 1;
19581
19582 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19583 show (stream, mips_cpu_info_table[i].name, &column, &first);
19584 show (stream, "from-abi", &column, &first);
19585 fputc ('\n', stream);
19586
19587 fprintf (stream, _("\
19588 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
19589 -no-mCPU don't generate code specific to CPU.\n\
19590 For -mCPU and -no-mCPU, CPU must be one of:\n"));
19591
19592 first = 1;
19593
19594 show (stream, "3900", &column, &first);
19595 show (stream, "4010", &column, &first);
19596 show (stream, "4100", &column, &first);
19597 show (stream, "4650", &column, &first);
19598 fputc ('\n', stream);
19599
19600 fprintf (stream, _("\
19601 -mips16 generate mips16 instructions\n\
19602 -no-mips16 do not generate mips16 instructions\n"));
19603 fprintf (stream, _("\
19604 -mmicromips generate microMIPS instructions\n\
19605 -mno-micromips do not generate microMIPS instructions\n"));
19606 fprintf (stream, _("\
19607 -msmartmips generate smartmips instructions\n\
19608 -mno-smartmips do not generate smartmips instructions\n"));
19609 fprintf (stream, _("\
19610 -mdsp generate DSP instructions\n\
19611 -mno-dsp do not generate DSP instructions\n"));
19612 fprintf (stream, _("\
19613 -mdspr2 generate DSP R2 instructions\n\
19614 -mno-dspr2 do not generate DSP R2 instructions\n"));
19615 fprintf (stream, _("\
19616 -mmt generate MT instructions\n\
19617 -mno-mt do not generate MT instructions\n"));
19618 fprintf (stream, _("\
19619 -mmcu generate MCU instructions\n\
19620 -mno-mcu do not generate MCU instructions\n"));
19621 fprintf (stream, _("\
19622 -mvirt generate Virtualization instructions\n\
19623 -mno-virt do not generate Virtualization instructions\n"));
19624 fprintf (stream, _("\
19625 -minsn32 only generate 32-bit microMIPS instructions\n\
19626 -mno-insn32 generate all microMIPS instructions\n"));
19627 fprintf (stream, _("\
19628 -mfix-loongson2f-jump work around Loongson2F JUMP instructions\n\
19629 -mfix-loongson2f-nop work around Loongson2F NOP errata\n\
19630 -mfix-vr4120 work around certain VR4120 errata\n\
19631 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
19632 -mfix-24k insert a nop after ERET and DERET instructions\n\
19633 -mfix-cn63xxp1 work around CN63XXP1 PREF errata\n\
19634 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
19635 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
19636 -msym32 assume all symbols have 32-bit values\n\
19637 -O0 remove unneeded NOPs, do not swap branches\n\
19638 -O remove unneeded NOPs and swap branches\n\
19639 --trap, --no-break trap exception on div by 0 and mult overflow\n\
19640 --break, --no-trap break exception on div by 0 and mult overflow\n"));
19641 fprintf (stream, _("\
19642 -mhard-float allow floating-point instructions\n\
19643 -msoft-float do not allow floating-point instructions\n\
19644 -msingle-float only allow 32-bit floating-point operations\n\
19645 -mdouble-float allow 32-bit and 64-bit floating-point operations\n\
19646 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
19647 --[no-]relax-branch [dis]allow out-of-range branches to be relaxed\n\
19648 -mnan=ENCODING select an IEEE 754 NaN encoding convention, either of:\n"));
19649
19650 first = 1;
19651
19652 show (stream, "legacy", &column, &first);
19653 show (stream, "2008", &column, &first);
19654
19655 fputc ('\n', stream);
19656
19657 fprintf (stream, _("\
19658 -KPIC, -call_shared generate SVR4 position independent code\n\
19659 -call_nonpic generate non-PIC code that can operate with DSOs\n\
19660 -mvxworks-pic generate VxWorks position independent code\n\
19661 -non_shared do not generate code that can operate with DSOs\n\
19662 -xgot assume a 32 bit GOT\n\
19663 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
19664 -mshared, -mno-shared disable/enable .cpload optimization for\n\
19665 position dependent (non shared) code\n\
19666 -mabi=ABI create ABI conformant object file for:\n"));
19667
19668 first = 1;
19669
19670 show (stream, "32", &column, &first);
19671 show (stream, "o64", &column, &first);
19672 show (stream, "n32", &column, &first);
19673 show (stream, "64", &column, &first);
19674 show (stream, "eabi", &column, &first);
19675
19676 fputc ('\n', stream);
19677
19678 fprintf (stream, _("\
19679 -32 create o32 ABI object file (default)\n\
19680 -n32 create n32 ABI object file\n\
19681 -64 create 64 ABI object file\n"));
19682 }
19683
19684 #ifdef TE_IRIX
19685 enum dwarf2_format
19686 mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
19687 {
19688 if (HAVE_64BIT_SYMBOLS)
19689 return dwarf2_format_64bit_irix;
19690 else
19691 return dwarf2_format_32bit;
19692 }
19693 #endif
19694
19695 int
19696 mips_dwarf2_addr_size (void)
19697 {
19698 if (HAVE_64BIT_OBJECTS)
19699 return 8;
19700 else
19701 return 4;
19702 }
19703
19704 /* Standard calling conventions leave the CFA at SP on entry. */
19705 void
19706 mips_cfi_frame_initial_instructions (void)
19707 {
19708 cfi_add_CFA_def_cfa_register (SP);
19709 }
19710
19711 int
19712 tc_mips_regname_to_dw2regnum (char *regname)
19713 {
19714 unsigned int regnum = -1;
19715 unsigned int reg;
19716
19717 if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
19718 regnum = reg;
19719
19720 return regnum;
19721 }