2012-11-09 Nick Clifton <nickc@redhat.com>
[deliverable/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
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 #ifdef DEBUG
38 #define DBG(x) printf x
39 #else
40 #define DBG(x)
41 #endif
42
43 #ifdef OBJ_MAYBE_ELF
44 /* Clean up namespace so we can include obj-elf.h too. */
45 static int mips_output_flavor (void);
46 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
47 #undef OBJ_PROCESS_STAB
48 #undef OUTPUT_FLAVOR
49 #undef S_GET_ALIGN
50 #undef S_GET_SIZE
51 #undef S_SET_ALIGN
52 #undef S_SET_SIZE
53 #undef obj_frob_file
54 #undef obj_frob_file_after_relocs
55 #undef obj_frob_symbol
56 #undef obj_pop_insert
57 #undef obj_sec_sym_ok_for_reloc
58 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
59
60 #include "obj-elf.h"
61 /* Fix any of them that we actually care about. */
62 #undef OUTPUT_FLAVOR
63 #define OUTPUT_FLAVOR mips_output_flavor()
64 #endif
65
66 #if defined (OBJ_ELF)
67 #include "elf/mips.h"
68 #endif
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 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
89 static char *mips_regmask_frag;
90 #endif
91
92 #define ZERO 0
93 #define ATREG 1
94 #define S0 16
95 #define S7 23
96 #define TREG 24
97 #define PIC_CALL_REG 25
98 #define KT0 26
99 #define KT1 27
100 #define GP 28
101 #define SP 29
102 #define FP 30
103 #define RA 31
104
105 #define ILLEGAL_REG (32)
106
107 #define AT mips_opts.at
108
109 /* Allow override of standard little-endian ECOFF format. */
110
111 #ifndef ECOFF_LITTLE_FORMAT
112 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
113 #endif
114
115 extern int target_big_endian;
116
117 /* The name of the readonly data section. */
118 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
119 ? ".rdata" \
120 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
121 ? ".rdata" \
122 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
123 ? ".rodata" \
124 : (abort (), ""))
125
126 /* Ways in which an instruction can be "appended" to the output. */
127 enum append_method {
128 /* Just add it normally. */
129 APPEND_ADD,
130
131 /* Add it normally and then add a nop. */
132 APPEND_ADD_WITH_NOP,
133
134 /* Turn an instruction with a delay slot into a "compact" version. */
135 APPEND_ADD_COMPACT,
136
137 /* Insert the instruction before the last one. */
138 APPEND_SWAP
139 };
140
141 /* Information about an instruction, including its format, operands
142 and fixups. */
143 struct mips_cl_insn
144 {
145 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
146 const struct mips_opcode *insn_mo;
147
148 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
149 a copy of INSN_MO->match with the operands filled in. If we have
150 decided to use an extended MIPS16 instruction, this includes the
151 extension. */
152 unsigned long insn_opcode;
153
154 /* The frag that contains the instruction. */
155 struct frag *frag;
156
157 /* The offset into FRAG of the first instruction byte. */
158 long where;
159
160 /* The relocs associated with the instruction, if any. */
161 fixS *fixp[3];
162
163 /* True if this entry cannot be moved from its current position. */
164 unsigned int fixed_p : 1;
165
166 /* True if this instruction occurred in a .set noreorder block. */
167 unsigned int noreorder_p : 1;
168
169 /* True for mips16 instructions that jump to an absolute address. */
170 unsigned int mips16_absolute_jump_p : 1;
171
172 /* True if this instruction is complete. */
173 unsigned int complete_p : 1;
174 };
175
176 /* The ABI to use. */
177 enum mips_abi_level
178 {
179 NO_ABI = 0,
180 O32_ABI,
181 O64_ABI,
182 N32_ABI,
183 N64_ABI,
184 EABI_ABI
185 };
186
187 /* MIPS ABI we are using for this output file. */
188 static enum mips_abi_level mips_abi = NO_ABI;
189
190 /* Whether or not we have code that can call pic code. */
191 int mips_abicalls = FALSE;
192
193 /* Whether or not we have code which can be put into a shared
194 library. */
195 static bfd_boolean mips_in_shared = TRUE;
196
197 /* This is the set of options which may be modified by the .set
198 pseudo-op. We use a struct so that .set push and .set pop are more
199 reliable. */
200
201 struct mips_set_options
202 {
203 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
204 if it has not been initialized. Changed by `.set mipsN', and the
205 -mipsN command line option, and the default CPU. */
206 int isa;
207 /* Enabled Application Specific Extensions (ASEs). These are set to -1
208 if they have not been initialized. Changed by `.set <asename>', by
209 command line options, and based on the default architecture. */
210 int ase_mips3d;
211 int ase_mdmx;
212 int ase_smartmips;
213 int ase_dsp;
214 int ase_dspr2;
215 int ase_mt;
216 int ase_mcu;
217 /* Whether we are assembling for the mips16 processor. 0 if we are
218 not, 1 if we are, and -1 if the value has not been initialized.
219 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
220 -nomips16 command line options, and the default CPU. */
221 int mips16;
222 /* Whether we are assembling for the mipsMIPS ASE. 0 if we are not,
223 1 if we are, and -1 if the value has not been initialized. Changed
224 by `.set micromips' and `.set nomicromips', and the -mmicromips
225 and -mno-micromips command line options, and the default CPU. */
226 int micromips;
227 /* Non-zero if we should not reorder instructions. Changed by `.set
228 reorder' and `.set noreorder'. */
229 int noreorder;
230 /* Non-zero if we should not permit the register designated "assembler
231 temporary" to be used in instructions. The value is the register
232 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
233 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
234 unsigned int at;
235 /* Non-zero if we should warn when a macro instruction expands into
236 more than one machine instruction. Changed by `.set nomacro' and
237 `.set macro'. */
238 int warn_about_macros;
239 /* Non-zero if we should not move instructions. Changed by `.set
240 move', `.set volatile', `.set nomove', and `.set novolatile'. */
241 int nomove;
242 /* Non-zero if we should not optimize branches by moving the target
243 of the branch into the delay slot. Actually, we don't perform
244 this optimization anyhow. Changed by `.set bopt' and `.set
245 nobopt'. */
246 int nobopt;
247 /* Non-zero if we should not autoextend mips16 instructions.
248 Changed by `.set autoextend' and `.set noautoextend'. */
249 int noautoextend;
250 /* Restrict general purpose registers and floating point registers
251 to 32 bit. This is initially determined when -mgp32 or -mfp32
252 is passed but can changed if the assembler code uses .set mipsN. */
253 int gp32;
254 int fp32;
255 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
256 command line option, and the default CPU. */
257 int arch;
258 /* True if ".set sym32" is in effect. */
259 bfd_boolean sym32;
260 /* True if floating-point operations are not allowed. Changed by .set
261 softfloat or .set hardfloat, by command line options -msoft-float or
262 -mhard-float. The default is false. */
263 bfd_boolean soft_float;
264
265 /* True if only single-precision floating-point operations are allowed.
266 Changed by .set singlefloat or .set doublefloat, command-line options
267 -msingle-float or -mdouble-float. The default is false. */
268 bfd_boolean single_float;
269 };
270
271 /* This is the struct we use to hold the current set of options. Note
272 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
273 -1 to indicate that they have not been initialized. */
274
275 /* True if -mgp32 was passed. */
276 static int file_mips_gp32 = -1;
277
278 /* True if -mfp32 was passed. */
279 static int file_mips_fp32 = -1;
280
281 /* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
282 static int file_mips_soft_float = 0;
283
284 /* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
285 static int file_mips_single_float = 0;
286
287 static struct mips_set_options mips_opts =
288 {
289 /* isa */ ISA_UNKNOWN, /* ase_mips3d */ -1, /* ase_mdmx */ -1,
290 /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1,
291 /* ase_mcu */ -1, /* mips16 */ -1, /* micromips */ -1, /* noreorder */ 0,
292 /* at */ ATREG, /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
293 /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN,
294 /* sym32 */ FALSE, /* soft_float */ FALSE, /* single_float */ FALSE
295 };
296
297 /* These variables are filled in with the masks of registers used.
298 The object format code reads them and puts them in the appropriate
299 place. */
300 unsigned long mips_gprmask;
301 unsigned long mips_cprmask[4];
302
303 /* MIPS ISA we are using for this output file. */
304 static int file_mips_isa = ISA_UNKNOWN;
305
306 /* True if any MIPS16 code was produced. */
307 static int file_ase_mips16;
308
309 #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \
310 || mips_opts.isa == ISA_MIPS32R2 \
311 || mips_opts.isa == ISA_MIPS64 \
312 || mips_opts.isa == ISA_MIPS64R2)
313
314 /* True if any microMIPS code was produced. */
315 static int file_ase_micromips;
316
317 /* True if we want to create R_MIPS_JALR for jalr $25. */
318 #ifdef TE_IRIX
319 #define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
320 #else
321 /* As a GNU extension, we use R_MIPS_JALR for o32 too. However,
322 because there's no place for any addend, the only acceptable
323 expression is a bare symbol. */
324 #define MIPS_JALR_HINT_P(EXPR) \
325 (!HAVE_IN_PLACE_ADDENDS \
326 || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
327 #endif
328
329 /* True if -mips3d was passed or implied by arguments passed on the
330 command line (e.g., by -march). */
331 static int file_ase_mips3d;
332
333 /* True if -mdmx was passed or implied by arguments passed on the
334 command line (e.g., by -march). */
335 static int file_ase_mdmx;
336
337 /* True if -msmartmips was passed or implied by arguments passed on the
338 command line (e.g., by -march). */
339 static int file_ase_smartmips;
340
341 #define ISA_SUPPORTS_SMARTMIPS (mips_opts.isa == ISA_MIPS32 \
342 || mips_opts.isa == ISA_MIPS32R2)
343
344 /* True if -mdsp was passed or implied by arguments passed on the
345 command line (e.g., by -march). */
346 static int file_ase_dsp;
347
348 #define ISA_SUPPORTS_DSP_ASE (mips_opts.isa == ISA_MIPS32R2 \
349 || mips_opts.isa == ISA_MIPS64R2 \
350 || mips_opts.micromips)
351
352 #define ISA_SUPPORTS_DSP64_ASE (mips_opts.isa == ISA_MIPS64R2)
353
354 /* True if -mdspr2 was passed or implied by arguments passed on the
355 command line (e.g., by -march). */
356 static int file_ase_dspr2;
357
358 #define ISA_SUPPORTS_DSPR2_ASE (mips_opts.isa == ISA_MIPS32R2 \
359 || mips_opts.isa == ISA_MIPS64R2 \
360 || mips_opts.micromips)
361
362 /* True if -mmt was passed or implied by arguments passed on the
363 command line (e.g., by -march). */
364 static int file_ase_mt;
365
366 #define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2 \
367 || mips_opts.isa == ISA_MIPS64R2)
368
369 #define ISA_SUPPORTS_MCU_ASE (mips_opts.isa == ISA_MIPS32R2 \
370 || mips_opts.isa == ISA_MIPS64R2 \
371 || mips_opts.micromips)
372
373 /* The argument of the -march= flag. The architecture we are assembling. */
374 static int file_mips_arch = CPU_UNKNOWN;
375 static const char *mips_arch_string;
376
377 /* The argument of the -mtune= flag. The architecture for which we
378 are optimizing. */
379 static int mips_tune = CPU_UNKNOWN;
380 static const char *mips_tune_string;
381
382 /* True when generating 32-bit code for a 64-bit processor. */
383 static int mips_32bitmode = 0;
384
385 /* True if the given ABI requires 32-bit registers. */
386 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
387
388 /* Likewise 64-bit registers. */
389 #define ABI_NEEDS_64BIT_REGS(ABI) \
390 ((ABI) == N32_ABI \
391 || (ABI) == N64_ABI \
392 || (ABI) == O64_ABI)
393
394 /* Return true if ISA supports 64 bit wide gp registers. */
395 #define ISA_HAS_64BIT_REGS(ISA) \
396 ((ISA) == ISA_MIPS3 \
397 || (ISA) == ISA_MIPS4 \
398 || (ISA) == ISA_MIPS5 \
399 || (ISA) == ISA_MIPS64 \
400 || (ISA) == ISA_MIPS64R2)
401
402 /* Return true if ISA supports 64 bit wide float registers. */
403 #define ISA_HAS_64BIT_FPRS(ISA) \
404 ((ISA) == ISA_MIPS3 \
405 || (ISA) == ISA_MIPS4 \
406 || (ISA) == ISA_MIPS5 \
407 || (ISA) == ISA_MIPS32R2 \
408 || (ISA) == ISA_MIPS64 \
409 || (ISA) == ISA_MIPS64R2)
410
411 /* Return true if ISA supports 64-bit right rotate (dror et al.)
412 instructions. */
413 #define ISA_HAS_DROR(ISA) \
414 ((ISA) == ISA_MIPS64R2 \
415 || (mips_opts.micromips \
416 && ISA_HAS_64BIT_REGS (ISA)) \
417 )
418
419 /* Return true if ISA supports 32-bit right rotate (ror et al.)
420 instructions. */
421 #define ISA_HAS_ROR(ISA) \
422 ((ISA) == ISA_MIPS32R2 \
423 || (ISA) == ISA_MIPS64R2 \
424 || mips_opts.ase_smartmips \
425 || mips_opts.micromips \
426 )
427
428 /* Return true if ISA supports single-precision floats in odd registers. */
429 #define ISA_HAS_ODD_SINGLE_FPR(ISA) \
430 ((ISA) == ISA_MIPS32 \
431 || (ISA) == ISA_MIPS32R2 \
432 || (ISA) == ISA_MIPS64 \
433 || (ISA) == ISA_MIPS64R2)
434
435 /* Return true if ISA supports move to/from high part of a 64-bit
436 floating-point register. */
437 #define ISA_HAS_MXHC1(ISA) \
438 ((ISA) == ISA_MIPS32R2 \
439 || (ISA) == ISA_MIPS64R2)
440
441 #define HAVE_32BIT_GPRS \
442 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
443
444 #define HAVE_32BIT_FPRS \
445 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
446
447 #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
448 #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
449
450 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
451
452 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
453
454 /* True if relocations are stored in-place. */
455 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
456
457 /* The ABI-derived address size. */
458 #define HAVE_64BIT_ADDRESSES \
459 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
460 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
461
462 /* The size of symbolic constants (i.e., expressions of the form
463 "SYMBOL" or "SYMBOL + OFFSET"). */
464 #define HAVE_32BIT_SYMBOLS \
465 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
466 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
467
468 /* Addresses are loaded in different ways, depending on the address size
469 in use. The n32 ABI Documentation also mandates the use of additions
470 with overflow checking, but existing implementations don't follow it. */
471 #define ADDRESS_ADD_INSN \
472 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
473
474 #define ADDRESS_ADDI_INSN \
475 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
476
477 #define ADDRESS_LOAD_INSN \
478 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
479
480 #define ADDRESS_STORE_INSN \
481 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
482
483 /* Return true if the given CPU supports the MIPS16 ASE. */
484 #define CPU_HAS_MIPS16(cpu) \
485 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
486 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
487
488 /* Return true if the given CPU supports the microMIPS ASE. */
489 #define CPU_HAS_MICROMIPS(cpu) 0
490
491 /* True if CPU has a dror instruction. */
492 #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
493
494 /* True if CPU has a ror instruction. */
495 #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
496
497 /* True if CPU is in the Octeon family */
498 #define CPU_IS_OCTEON(CPU) ((CPU) == CPU_OCTEON || (CPU) == CPU_OCTEONP || (CPU) == CPU_OCTEON2)
499
500 /* True if CPU has seq/sne and seqi/snei instructions. */
501 #define CPU_HAS_SEQ(CPU) (CPU_IS_OCTEON (CPU))
502
503 /* True if mflo and mfhi can be immediately followed by instructions
504 which write to the HI and LO registers.
505
506 According to MIPS specifications, MIPS ISAs I, II, and III need
507 (at least) two instructions between the reads of HI/LO and
508 instructions which write them, and later ISAs do not. Contradicting
509 the MIPS specifications, some MIPS IV processor user manuals (e.g.
510 the UM for the NEC Vr5000) document needing the instructions between
511 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
512 MIPS64 and later ISAs to have the interlocks, plus any specific
513 earlier-ISA CPUs for which CPU documentation declares that the
514 instructions are really interlocked. */
515 #define hilo_interlocks \
516 (mips_opts.isa == ISA_MIPS32 \
517 || mips_opts.isa == ISA_MIPS32R2 \
518 || mips_opts.isa == ISA_MIPS64 \
519 || mips_opts.isa == ISA_MIPS64R2 \
520 || mips_opts.arch == CPU_R4010 \
521 || mips_opts.arch == CPU_R10000 \
522 || mips_opts.arch == CPU_R12000 \
523 || mips_opts.arch == CPU_R14000 \
524 || mips_opts.arch == CPU_R16000 \
525 || mips_opts.arch == CPU_RM7000 \
526 || mips_opts.arch == CPU_VR5500 \
527 || mips_opts.micromips \
528 )
529
530 /* Whether the processor uses hardware interlocks to protect reads
531 from the GPRs after they are loaded from memory, and thus does not
532 require nops to be inserted. This applies to instructions marked
533 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
534 level I and microMIPS mode instructions are always interlocked. */
535 #define gpr_interlocks \
536 (mips_opts.isa != ISA_MIPS1 \
537 || mips_opts.arch == CPU_R3900 \
538 || mips_opts.micromips \
539 )
540
541 /* Whether the processor uses hardware interlocks to avoid delays
542 required by coprocessor instructions, and thus does not require
543 nops to be inserted. This applies to instructions marked
544 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
545 between instructions marked INSN_WRITE_COND_CODE and ones marked
546 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
547 levels I, II, and III and microMIPS mode instructions are always
548 interlocked. */
549 /* Itbl support may require additional care here. */
550 #define cop_interlocks \
551 ((mips_opts.isa != ISA_MIPS1 \
552 && mips_opts.isa != ISA_MIPS2 \
553 && mips_opts.isa != ISA_MIPS3) \
554 || mips_opts.arch == CPU_R4300 \
555 || mips_opts.micromips \
556 )
557
558 /* Whether the processor uses hardware interlocks to protect reads
559 from coprocessor registers after they are loaded from memory, and
560 thus does not require nops to be inserted. This applies to
561 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
562 requires at MIPS ISA level I and microMIPS mode instructions are
563 always interlocked. */
564 #define cop_mem_interlocks \
565 (mips_opts.isa != ISA_MIPS1 \
566 || mips_opts.micromips \
567 )
568
569 /* Is this a mfhi or mflo instruction? */
570 #define MF_HILO_INSN(PINFO) \
571 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
572
573 /* Whether code compression (either of the MIPS16 or the microMIPS ASEs)
574 has been selected. This implies, in particular, that addresses of text
575 labels have their LSB set. */
576 #define HAVE_CODE_COMPRESSION \
577 ((mips_opts.mips16 | mips_opts.micromips) != 0)
578
579 /* MIPS PIC level. */
580
581 enum mips_pic_level mips_pic;
582
583 /* 1 if we should generate 32 bit offsets from the $gp register in
584 SVR4_PIC mode. Currently has no meaning in other modes. */
585 static int mips_big_got = 0;
586
587 /* 1 if trap instructions should used for overflow rather than break
588 instructions. */
589 static int mips_trap = 0;
590
591 /* 1 if double width floating point constants should not be constructed
592 by assembling two single width halves into two single width floating
593 point registers which just happen to alias the double width destination
594 register. On some architectures this aliasing can be disabled by a bit
595 in the status register, and the setting of this bit cannot be determined
596 automatically at assemble time. */
597 static int mips_disable_float_construction;
598
599 /* Non-zero if any .set noreorder directives were used. */
600
601 static int mips_any_noreorder;
602
603 /* Non-zero if nops should be inserted when the register referenced in
604 an mfhi/mflo instruction is read in the next two instructions. */
605 static int mips_7000_hilo_fix;
606
607 /* The size of objects in the small data section. */
608 static unsigned int g_switch_value = 8;
609 /* Whether the -G option was used. */
610 static int g_switch_seen = 0;
611
612 #define N_RMASK 0xc4
613 #define N_VFP 0xd4
614
615 /* If we can determine in advance that GP optimization won't be
616 possible, we can skip the relaxation stuff that tries to produce
617 GP-relative references. This makes delay slot optimization work
618 better.
619
620 This function can only provide a guess, but it seems to work for
621 gcc output. It needs to guess right for gcc, otherwise gcc
622 will put what it thinks is a GP-relative instruction in a branch
623 delay slot.
624
625 I don't know if a fix is needed for the SVR4_PIC mode. I've only
626 fixed it for the non-PIC mode. KR 95/04/07 */
627 static int nopic_need_relax (symbolS *, int);
628
629 /* handle of the OPCODE hash table */
630 static struct hash_control *op_hash = NULL;
631
632 /* The opcode hash table we use for the mips16. */
633 static struct hash_control *mips16_op_hash = NULL;
634
635 /* The opcode hash table we use for the microMIPS ASE. */
636 static struct hash_control *micromips_op_hash = NULL;
637
638 /* This array holds the chars that always start a comment. If the
639 pre-processor is disabled, these aren't very useful */
640 const char comment_chars[] = "#";
641
642 /* This array holds the chars that only start a comment at the beginning of
643 a line. If the line seems to have the form '# 123 filename'
644 .line and .file directives will appear in the pre-processed output */
645 /* Note that input_file.c hand checks for '#' at the beginning of the
646 first line of the input file. This is because the compiler outputs
647 #NO_APP at the beginning of its output. */
648 /* Also note that C style comments are always supported. */
649 const char line_comment_chars[] = "#";
650
651 /* This array holds machine specific line separator characters. */
652 const char line_separator_chars[] = ";";
653
654 /* Chars that can be used to separate mant from exp in floating point nums */
655 const char EXP_CHARS[] = "eE";
656
657 /* Chars that mean this number is a floating point constant */
658 /* As in 0f12.456 */
659 /* or 0d1.2345e12 */
660 const char FLT_CHARS[] = "rRsSfFdDxXpP";
661
662 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
663 changed in read.c . Ideally it shouldn't have to know about it at all,
664 but nothing is ideal around here.
665 */
666
667 static char *insn_error;
668
669 static int auto_align = 1;
670
671 /* When outputting SVR4 PIC code, the assembler needs to know the
672 offset in the stack frame from which to restore the $gp register.
673 This is set by the .cprestore pseudo-op, and saved in this
674 variable. */
675 static offsetT mips_cprestore_offset = -1;
676
677 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
678 more optimizations, it can use a register value instead of a memory-saved
679 offset and even an other register than $gp as global pointer. */
680 static offsetT mips_cpreturn_offset = -1;
681 static int mips_cpreturn_register = -1;
682 static int mips_gp_register = GP;
683 static int mips_gprel_offset = 0;
684
685 /* Whether mips_cprestore_offset has been set in the current function
686 (or whether it has already been warned about, if not). */
687 static int mips_cprestore_valid = 0;
688
689 /* This is the register which holds the stack frame, as set by the
690 .frame pseudo-op. This is needed to implement .cprestore. */
691 static int mips_frame_reg = SP;
692
693 /* Whether mips_frame_reg has been set in the current function
694 (or whether it has already been warned about, if not). */
695 static int mips_frame_reg_valid = 0;
696
697 /* To output NOP instructions correctly, we need to keep information
698 about the previous two instructions. */
699
700 /* Whether we are optimizing. The default value of 2 means to remove
701 unneeded NOPs and swap branch instructions when possible. A value
702 of 1 means to not swap branches. A value of 0 means to always
703 insert NOPs. */
704 static int mips_optimize = 2;
705
706 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
707 equivalent to seeing no -g option at all. */
708 static int mips_debug = 0;
709
710 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
711 #define MAX_VR4130_NOPS 4
712
713 /* The maximum number of NOPs needed to fill delay slots. */
714 #define MAX_DELAY_NOPS 2
715
716 /* The maximum number of NOPs needed for any purpose. */
717 #define MAX_NOPS 4
718
719 /* A list of previous instructions, with index 0 being the most recent.
720 We need to look back MAX_NOPS instructions when filling delay slots
721 or working around processor errata. We need to look back one
722 instruction further if we're thinking about using history[0] to
723 fill a branch delay slot. */
724 static struct mips_cl_insn history[1 + MAX_NOPS];
725
726 /* Nop instructions used by emit_nop. */
727 static struct mips_cl_insn nop_insn;
728 static struct mips_cl_insn mips16_nop_insn;
729 static struct mips_cl_insn micromips_nop16_insn;
730 static struct mips_cl_insn micromips_nop32_insn;
731
732 /* The appropriate nop for the current mode. */
733 #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn \
734 : (mips_opts.micromips ? &micromips_nop16_insn : &nop_insn))
735
736 /* The size of NOP_INSN in bytes. */
737 #define NOP_INSN_SIZE (HAVE_CODE_COMPRESSION ? 2 : 4)
738
739 /* If this is set, it points to a frag holding nop instructions which
740 were inserted before the start of a noreorder section. If those
741 nops turn out to be unnecessary, the size of the frag can be
742 decreased. */
743 static fragS *prev_nop_frag;
744
745 /* The number of nop instructions we created in prev_nop_frag. */
746 static int prev_nop_frag_holds;
747
748 /* The number of nop instructions that we know we need in
749 prev_nop_frag. */
750 static int prev_nop_frag_required;
751
752 /* The number of instructions we've seen since prev_nop_frag. */
753 static int prev_nop_frag_since;
754
755 /* For ECOFF and ELF, relocations against symbols are done in two
756 parts, with a HI relocation and a LO relocation. Each relocation
757 has only 16 bits of space to store an addend. This means that in
758 order for the linker to handle carries correctly, it must be able
759 to locate both the HI and the LO relocation. This means that the
760 relocations must appear in order in the relocation table.
761
762 In order to implement this, we keep track of each unmatched HI
763 relocation. We then sort them so that they immediately precede the
764 corresponding LO relocation. */
765
766 struct mips_hi_fixup
767 {
768 /* Next HI fixup. */
769 struct mips_hi_fixup *next;
770 /* This fixup. */
771 fixS *fixp;
772 /* The section this fixup is in. */
773 segT seg;
774 };
775
776 /* The list of unmatched HI relocs. */
777
778 static struct mips_hi_fixup *mips_hi_fixup_list;
779
780 /* The frag containing the last explicit relocation operator.
781 Null if explicit relocations have not been used. */
782
783 static fragS *prev_reloc_op_frag;
784
785 /* Map normal MIPS register numbers to mips16 register numbers. */
786
787 #define X ILLEGAL_REG
788 static const int mips32_to_16_reg_map[] =
789 {
790 X, X, 2, 3, 4, 5, 6, 7,
791 X, X, X, X, X, X, X, X,
792 0, 1, X, X, X, X, X, X,
793 X, X, X, X, X, X, X, X
794 };
795 #undef X
796
797 /* Map mips16 register numbers to normal MIPS register numbers. */
798
799 static const unsigned int mips16_to_32_reg_map[] =
800 {
801 16, 17, 2, 3, 4, 5, 6, 7
802 };
803
804 /* Map normal MIPS register numbers to microMIPS register numbers. */
805
806 #define mips32_to_micromips_reg_b_map mips32_to_16_reg_map
807 #define mips32_to_micromips_reg_c_map mips32_to_16_reg_map
808 #define mips32_to_micromips_reg_d_map mips32_to_16_reg_map
809 #define mips32_to_micromips_reg_e_map mips32_to_16_reg_map
810 #define mips32_to_micromips_reg_f_map mips32_to_16_reg_map
811 #define mips32_to_micromips_reg_g_map mips32_to_16_reg_map
812 #define mips32_to_micromips_reg_l_map mips32_to_16_reg_map
813
814 #define X ILLEGAL_REG
815 /* reg type h: 4, 5, 6. */
816 static const int mips32_to_micromips_reg_h_map[] =
817 {
818 X, X, X, X, 4, 5, 6, X,
819 X, X, X, X, X, X, X, X,
820 X, X, X, X, X, X, X, X,
821 X, X, X, X, X, X, X, X
822 };
823
824 /* reg type m: 0, 17, 2, 3, 16, 18, 19, 20. */
825 static const int mips32_to_micromips_reg_m_map[] =
826 {
827 0, X, 2, 3, X, X, X, X,
828 X, X, X, X, X, X, X, X,
829 4, 1, 5, 6, 7, X, X, X,
830 X, X, X, X, X, X, X, X
831 };
832
833 /* reg type q: 0, 2-7. 17. */
834 static const int mips32_to_micromips_reg_q_map[] =
835 {
836 0, X, 2, 3, 4, 5, 6, 7,
837 X, X, X, X, X, X, X, X,
838 X, 1, X, X, X, X, X, X,
839 X, X, X, X, X, X, X, X
840 };
841
842 #define mips32_to_micromips_reg_n_map mips32_to_micromips_reg_m_map
843 #undef X
844
845 /* Map microMIPS register numbers to normal MIPS register numbers. */
846
847 #define micromips_to_32_reg_b_map mips16_to_32_reg_map
848 #define micromips_to_32_reg_c_map mips16_to_32_reg_map
849 #define micromips_to_32_reg_d_map mips16_to_32_reg_map
850 #define micromips_to_32_reg_e_map mips16_to_32_reg_map
851 #define micromips_to_32_reg_f_map mips16_to_32_reg_map
852 #define micromips_to_32_reg_g_map mips16_to_32_reg_map
853
854 /* The microMIPS registers with type h. */
855 static const unsigned int micromips_to_32_reg_h_map[] =
856 {
857 5, 5, 6, 4, 4, 4, 4, 4
858 };
859
860 /* The microMIPS registers with type i. */
861 static const unsigned int micromips_to_32_reg_i_map[] =
862 {
863 6, 7, 7, 21, 22, 5, 6, 7
864 };
865
866 #define micromips_to_32_reg_l_map mips16_to_32_reg_map
867
868 /* The microMIPS registers with type m. */
869 static const unsigned int micromips_to_32_reg_m_map[] =
870 {
871 0, 17, 2, 3, 16, 18, 19, 20
872 };
873
874 #define micromips_to_32_reg_n_map micromips_to_32_reg_m_map
875
876 /* The microMIPS registers with type q. */
877 static const unsigned int micromips_to_32_reg_q_map[] =
878 {
879 0, 17, 2, 3, 4, 5, 6, 7
880 };
881
882 /* microMIPS imm type B. */
883 static const int micromips_imm_b_map[] =
884 {
885 1, 4, 8, 12, 16, 20, 24, -1
886 };
887
888 /* microMIPS imm type C. */
889 static const int micromips_imm_c_map[] =
890 {
891 128, 1, 2, 3, 4, 7, 8, 15, 16, 31, 32, 63, 64, 255, 32768, 65535
892 };
893
894 /* Classifies the kind of instructions we're interested in when
895 implementing -mfix-vr4120. */
896 enum fix_vr4120_class
897 {
898 FIX_VR4120_MACC,
899 FIX_VR4120_DMACC,
900 FIX_VR4120_MULT,
901 FIX_VR4120_DMULT,
902 FIX_VR4120_DIV,
903 FIX_VR4120_MTHILO,
904 NUM_FIX_VR4120_CLASSES
905 };
906
907 /* ...likewise -mfix-loongson2f-jump. */
908 static bfd_boolean mips_fix_loongson2f_jump;
909
910 /* ...likewise -mfix-loongson2f-nop. */
911 static bfd_boolean mips_fix_loongson2f_nop;
912
913 /* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed. */
914 static bfd_boolean mips_fix_loongson2f;
915
916 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
917 there must be at least one other instruction between an instruction
918 of type X and an instruction of type Y. */
919 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
920
921 /* True if -mfix-vr4120 is in force. */
922 static int mips_fix_vr4120;
923
924 /* ...likewise -mfix-vr4130. */
925 static int mips_fix_vr4130;
926
927 /* ...likewise -mfix-24k. */
928 static int mips_fix_24k;
929
930 /* ...likewise -mfix-cn63xxp1 */
931 static bfd_boolean mips_fix_cn63xxp1;
932
933 /* We don't relax branches by default, since this causes us to expand
934 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
935 fail to compute the offset before expanding the macro to the most
936 efficient expansion. */
937
938 static int mips_relax_branch;
939 \f
940 /* The expansion of many macros depends on the type of symbol that
941 they refer to. For example, when generating position-dependent code,
942 a macro that refers to a symbol may have two different expansions,
943 one which uses GP-relative addresses and one which uses absolute
944 addresses. When generating SVR4-style PIC, a macro may have
945 different expansions for local and global symbols.
946
947 We handle these situations by generating both sequences and putting
948 them in variant frags. In position-dependent code, the first sequence
949 will be the GP-relative one and the second sequence will be the
950 absolute one. In SVR4 PIC, the first sequence will be for global
951 symbols and the second will be for local symbols.
952
953 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
954 SECOND are the lengths of the two sequences in bytes. These fields
955 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
956 the subtype has the following flags:
957
958 RELAX_USE_SECOND
959 Set if it has been decided that we should use the second
960 sequence instead of the first.
961
962 RELAX_SECOND_LONGER
963 Set in the first variant frag if the macro's second implementation
964 is longer than its first. This refers to the macro as a whole,
965 not an individual relaxation.
966
967 RELAX_NOMACRO
968 Set in the first variant frag if the macro appeared in a .set nomacro
969 block and if one alternative requires a warning but the other does not.
970
971 RELAX_DELAY_SLOT
972 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
973 delay slot.
974
975 RELAX_DELAY_SLOT_16BIT
976 Like RELAX_DELAY_SLOT, but indicates that the delay slot requires a
977 16-bit instruction.
978
979 RELAX_DELAY_SLOT_SIZE_FIRST
980 Like RELAX_DELAY_SLOT, but indicates that the first implementation of
981 the macro is of the wrong size for the branch delay slot.
982
983 RELAX_DELAY_SLOT_SIZE_SECOND
984 Like RELAX_DELAY_SLOT, but indicates that the second implementation of
985 the macro is of the wrong size for the branch delay slot.
986
987 The frag's "opcode" points to the first fixup for relaxable code.
988
989 Relaxable macros are generated using a sequence such as:
990
991 relax_start (SYMBOL);
992 ... generate first expansion ...
993 relax_switch ();
994 ... generate second expansion ...
995 relax_end ();
996
997 The code and fixups for the unwanted alternative are discarded
998 by md_convert_frag. */
999 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
1000
1001 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
1002 #define RELAX_SECOND(X) ((X) & 0xff)
1003 #define RELAX_USE_SECOND 0x10000
1004 #define RELAX_SECOND_LONGER 0x20000
1005 #define RELAX_NOMACRO 0x40000
1006 #define RELAX_DELAY_SLOT 0x80000
1007 #define RELAX_DELAY_SLOT_16BIT 0x100000
1008 #define RELAX_DELAY_SLOT_SIZE_FIRST 0x200000
1009 #define RELAX_DELAY_SLOT_SIZE_SECOND 0x400000
1010
1011 /* Branch without likely bit. If label is out of range, we turn:
1012
1013 beq reg1, reg2, label
1014 delay slot
1015
1016 into
1017
1018 bne reg1, reg2, 0f
1019 nop
1020 j label
1021 0: delay slot
1022
1023 with the following opcode replacements:
1024
1025 beq <-> bne
1026 blez <-> bgtz
1027 bltz <-> bgez
1028 bc1f <-> bc1t
1029
1030 bltzal <-> bgezal (with jal label instead of j label)
1031
1032 Even though keeping the delay slot instruction in the delay slot of
1033 the branch would be more efficient, it would be very tricky to do
1034 correctly, because we'd have to introduce a variable frag *after*
1035 the delay slot instruction, and expand that instead. Let's do it
1036 the easy way for now, even if the branch-not-taken case now costs
1037 one additional instruction. Out-of-range branches are not supposed
1038 to be common, anyway.
1039
1040 Branch likely. If label is out of range, we turn:
1041
1042 beql reg1, reg2, label
1043 delay slot (annulled if branch not taken)
1044
1045 into
1046
1047 beql reg1, reg2, 1f
1048 nop
1049 beql $0, $0, 2f
1050 nop
1051 1: j[al] label
1052 delay slot (executed only if branch taken)
1053 2:
1054
1055 It would be possible to generate a shorter sequence by losing the
1056 likely bit, generating something like:
1057
1058 bne reg1, reg2, 0f
1059 nop
1060 j[al] label
1061 delay slot (executed only if branch taken)
1062 0:
1063
1064 beql -> bne
1065 bnel -> beq
1066 blezl -> bgtz
1067 bgtzl -> blez
1068 bltzl -> bgez
1069 bgezl -> bltz
1070 bc1fl -> bc1t
1071 bc1tl -> bc1f
1072
1073 bltzall -> bgezal (with jal label instead of j label)
1074 bgezall -> bltzal (ditto)
1075
1076
1077 but it's not clear that it would actually improve performance. */
1078 #define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar) \
1079 ((relax_substateT) \
1080 (0xc0000000 \
1081 | ((at) & 0x1f) \
1082 | ((toofar) ? 0x20 : 0) \
1083 | ((link) ? 0x40 : 0) \
1084 | ((likely) ? 0x80 : 0) \
1085 | ((uncond) ? 0x100 : 0)))
1086 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
1087 #define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
1088 #define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
1089 #define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
1090 #define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
1091 #define RELAX_BRANCH_AT(i) ((i) & 0x1f)
1092
1093 /* For mips16 code, we use an entirely different form of relaxation.
1094 mips16 supports two versions of most instructions which take
1095 immediate values: a small one which takes some small value, and a
1096 larger one which takes a 16 bit value. Since branches also follow
1097 this pattern, relaxing these values is required.
1098
1099 We can assemble both mips16 and normal MIPS code in a single
1100 object. Therefore, we need to support this type of relaxation at
1101 the same time that we support the relaxation described above. We
1102 use the high bit of the subtype field to distinguish these cases.
1103
1104 The information we store for this type of relaxation is the
1105 argument code found in the opcode file for this relocation, whether
1106 the user explicitly requested a small or extended form, and whether
1107 the relocation is in a jump or jal delay slot. That tells us the
1108 size of the value, and how it should be stored. We also store
1109 whether the fragment is considered to be extended or not. We also
1110 store whether this is known to be a branch to a different section,
1111 whether we have tried to relax this frag yet, and whether we have
1112 ever extended a PC relative fragment because of a shift count. */
1113 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
1114 (0x80000000 \
1115 | ((type) & 0xff) \
1116 | ((small) ? 0x100 : 0) \
1117 | ((ext) ? 0x200 : 0) \
1118 | ((dslot) ? 0x400 : 0) \
1119 | ((jal_dslot) ? 0x800 : 0))
1120 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
1121 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
1122 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
1123 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
1124 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
1125 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
1126 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
1127 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
1128 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
1129 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
1130 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
1131 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
1132
1133 /* For microMIPS code, we use relaxation similar to one we use for
1134 MIPS16 code. Some instructions that take immediate values support
1135 two encodings: a small one which takes some small value, and a
1136 larger one which takes a 16 bit value. As some branches also follow
1137 this pattern, relaxing these values is required.
1138
1139 We can assemble both microMIPS and normal MIPS code in a single
1140 object. Therefore, we need to support this type of relaxation at
1141 the same time that we support the relaxation described above. We
1142 use one of the high bits of the subtype field to distinguish these
1143 cases.
1144
1145 The information we store for this type of relaxation is the argument
1146 code found in the opcode file for this relocation, the register
1147 selected as the assembler temporary, whether the branch is
1148 unconditional, whether it is compact, whether it stores the link
1149 address implicitly in $ra, whether relaxation of out-of-range 32-bit
1150 branches to a sequence of instructions is enabled, and whether the
1151 displacement of a branch is too large to fit as an immediate argument
1152 of a 16-bit and a 32-bit branch, respectively. */
1153 #define RELAX_MICROMIPS_ENCODE(type, at, uncond, compact, link, \
1154 relax32, toofar16, toofar32) \
1155 (0x40000000 \
1156 | ((type) & 0xff) \
1157 | (((at) & 0x1f) << 8) \
1158 | ((uncond) ? 0x2000 : 0) \
1159 | ((compact) ? 0x4000 : 0) \
1160 | ((link) ? 0x8000 : 0) \
1161 | ((relax32) ? 0x10000 : 0) \
1162 | ((toofar16) ? 0x20000 : 0) \
1163 | ((toofar32) ? 0x40000 : 0))
1164 #define RELAX_MICROMIPS_P(i) (((i) & 0xc0000000) == 0x40000000)
1165 #define RELAX_MICROMIPS_TYPE(i) ((i) & 0xff)
1166 #define RELAX_MICROMIPS_AT(i) (((i) >> 8) & 0x1f)
1167 #define RELAX_MICROMIPS_UNCOND(i) (((i) & 0x2000) != 0)
1168 #define RELAX_MICROMIPS_COMPACT(i) (((i) & 0x4000) != 0)
1169 #define RELAX_MICROMIPS_LINK(i) (((i) & 0x8000) != 0)
1170 #define RELAX_MICROMIPS_RELAX32(i) (((i) & 0x10000) != 0)
1171
1172 #define RELAX_MICROMIPS_TOOFAR16(i) (((i) & 0x20000) != 0)
1173 #define RELAX_MICROMIPS_MARK_TOOFAR16(i) ((i) | 0x20000)
1174 #define RELAX_MICROMIPS_CLEAR_TOOFAR16(i) ((i) & ~0x20000)
1175 #define RELAX_MICROMIPS_TOOFAR32(i) (((i) & 0x40000) != 0)
1176 #define RELAX_MICROMIPS_MARK_TOOFAR32(i) ((i) | 0x40000)
1177 #define RELAX_MICROMIPS_CLEAR_TOOFAR32(i) ((i) & ~0x40000)
1178
1179 /* Sign-extend 16-bit value X. */
1180 #define SEXT_16BIT(X) ((((X) + 0x8000) & 0xffff) - 0x8000)
1181
1182 /* Is the given value a sign-extended 32-bit value? */
1183 #define IS_SEXT_32BIT_NUM(x) \
1184 (((x) &~ (offsetT) 0x7fffffff) == 0 \
1185 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
1186
1187 /* Is the given value a sign-extended 16-bit value? */
1188 #define IS_SEXT_16BIT_NUM(x) \
1189 (((x) &~ (offsetT) 0x7fff) == 0 \
1190 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
1191
1192 /* Is the given value a sign-extended 12-bit value? */
1193 #define IS_SEXT_12BIT_NUM(x) \
1194 (((((x) & 0xfff) ^ 0x800LL) - 0x800LL) == (x))
1195
1196 /* Is the given value a zero-extended 32-bit value? Or a negated one? */
1197 #define IS_ZEXT_32BIT_NUM(x) \
1198 (((x) &~ (offsetT) 0xffffffff) == 0 \
1199 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
1200
1201 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
1202 VALUE << SHIFT. VALUE is evaluated exactly once. */
1203 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
1204 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
1205 | (((VALUE) & (MASK)) << (SHIFT)))
1206
1207 /* Extract bits MASK << SHIFT from STRUCT and shift them right
1208 SHIFT places. */
1209 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1210 (((STRUCT) >> (SHIFT)) & (MASK))
1211
1212 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
1213 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
1214
1215 include/opcode/mips.h specifies operand fields using the macros
1216 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
1217 with "MIPS16OP" instead of "OP". */
1218 #define INSERT_OPERAND(MICROMIPS, FIELD, INSN, VALUE) \
1219 do \
1220 if (!(MICROMIPS)) \
1221 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1222 OP_MASK_##FIELD, OP_SH_##FIELD); \
1223 else \
1224 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1225 MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD); \
1226 while (0)
1227 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
1228 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1229 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
1230
1231 /* Extract the operand given by FIELD from mips_cl_insn INSN. */
1232 #define EXTRACT_OPERAND(MICROMIPS, FIELD, INSN) \
1233 (!(MICROMIPS) \
1234 ? EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD) \
1235 : EXTRACT_BITS ((INSN).insn_opcode, \
1236 MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD))
1237 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1238 EXTRACT_BITS ((INSN).insn_opcode, \
1239 MIPS16OP_MASK_##FIELD, \
1240 MIPS16OP_SH_##FIELD)
1241
1242 /* The MIPS16 EXTEND opcode, shifted left 16 places. */
1243 #define MIPS16_EXTEND (0xf000U << 16)
1244 \f
1245 /* Whether or not we are emitting a branch-likely macro. */
1246 static bfd_boolean emit_branch_likely_macro = FALSE;
1247
1248 /* Global variables used when generating relaxable macros. See the
1249 comment above RELAX_ENCODE for more details about how relaxation
1250 is used. */
1251 static struct {
1252 /* 0 if we're not emitting a relaxable macro.
1253 1 if we're emitting the first of the two relaxation alternatives.
1254 2 if we're emitting the second alternative. */
1255 int sequence;
1256
1257 /* The first relaxable fixup in the current frag. (In other words,
1258 the first fixup that refers to relaxable code.) */
1259 fixS *first_fixup;
1260
1261 /* sizes[0] says how many bytes of the first alternative are stored in
1262 the current frag. Likewise sizes[1] for the second alternative. */
1263 unsigned int sizes[2];
1264
1265 /* The symbol on which the choice of sequence depends. */
1266 symbolS *symbol;
1267 } mips_relax;
1268 \f
1269 /* Global variables used to decide whether a macro needs a warning. */
1270 static struct {
1271 /* True if the macro is in a branch delay slot. */
1272 bfd_boolean delay_slot_p;
1273
1274 /* Set to the length in bytes required if the macro is in a delay slot
1275 that requires a specific length of instruction, otherwise zero. */
1276 unsigned int delay_slot_length;
1277
1278 /* For relaxable macros, sizes[0] is the length of the first alternative
1279 in bytes and sizes[1] is the length of the second alternative.
1280 For non-relaxable macros, both elements give the length of the
1281 macro in bytes. */
1282 unsigned int sizes[2];
1283
1284 /* For relaxable macros, first_insn_sizes[0] is the length of the first
1285 instruction of the first alternative in bytes and first_insn_sizes[1]
1286 is the length of the first instruction of the second alternative.
1287 For non-relaxable macros, both elements give the length of the first
1288 instruction in bytes.
1289
1290 Set to zero if we haven't yet seen the first instruction. */
1291 unsigned int first_insn_sizes[2];
1292
1293 /* For relaxable macros, insns[0] is the number of instructions for the
1294 first alternative and insns[1] is the number of instructions for the
1295 second alternative.
1296
1297 For non-relaxable macros, both elements give the number of
1298 instructions for the macro. */
1299 unsigned int insns[2];
1300
1301 /* The first variant frag for this macro. */
1302 fragS *first_frag;
1303 } mips_macro_warning;
1304 \f
1305 /* Prototypes for static functions. */
1306
1307 #define internalError() \
1308 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
1309
1310 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1311
1312 static void append_insn
1313 (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *,
1314 bfd_boolean expansionp);
1315 static void mips_no_prev_insn (void);
1316 static void macro_build (expressionS *, const char *, const char *, ...);
1317 static void mips16_macro_build
1318 (expressionS *, const char *, const char *, va_list *);
1319 static void load_register (int, expressionS *, int);
1320 static void macro_start (void);
1321 static void macro_end (void);
1322 static void macro (struct mips_cl_insn * ip);
1323 static void mips16_macro (struct mips_cl_insn * ip);
1324 static void mips_ip (char *str, struct mips_cl_insn * ip);
1325 static void mips16_ip (char *str, struct mips_cl_insn * ip);
1326 static void mips16_immed
1327 (char *, unsigned int, int, bfd_reloc_code_real_type, offsetT,
1328 unsigned int, unsigned long *);
1329 static size_t my_getSmallExpression
1330 (expressionS *, bfd_reloc_code_real_type *, char *);
1331 static void my_getExpression (expressionS *, char *);
1332 static void s_align (int);
1333 static void s_change_sec (int);
1334 static void s_change_section (int);
1335 static void s_cons (int);
1336 static void s_float_cons (int);
1337 static void s_mips_globl (int);
1338 static void s_option (int);
1339 static void s_mipsset (int);
1340 static void s_abicalls (int);
1341 static void s_cpload (int);
1342 static void s_cpsetup (int);
1343 static void s_cplocal (int);
1344 static void s_cprestore (int);
1345 static void s_cpreturn (int);
1346 static void s_dtprelword (int);
1347 static void s_dtpreldword (int);
1348 static void s_tprelword (int);
1349 static void s_tpreldword (int);
1350 static void s_gpvalue (int);
1351 static void s_gpword (int);
1352 static void s_gpdword (int);
1353 static void s_cpadd (int);
1354 static void s_insn (int);
1355 static void md_obj_begin (void);
1356 static void md_obj_end (void);
1357 static void s_mips_ent (int);
1358 static void s_mips_end (int);
1359 static void s_mips_frame (int);
1360 static void s_mips_mask (int reg_type);
1361 static void s_mips_stab (int);
1362 static void s_mips_weakext (int);
1363 static void s_mips_file (int);
1364 static void s_mips_loc (int);
1365 static bfd_boolean pic_need_relax (symbolS *, asection *);
1366 static int relaxed_branch_length (fragS *, asection *, int);
1367 static int validate_mips_insn (const struct mips_opcode *);
1368 static int validate_micromips_insn (const struct mips_opcode *);
1369 static int relaxed_micromips_16bit_branch_length (fragS *, asection *, int);
1370 static int relaxed_micromips_32bit_branch_length (fragS *, asection *, int);
1371
1372 /* Table and functions used to map between CPU/ISA names, and
1373 ISA levels, and CPU numbers. */
1374
1375 struct mips_cpu_info
1376 {
1377 const char *name; /* CPU or ISA name. */
1378 int flags; /* ASEs available, or ISA flag. */
1379 int isa; /* ISA level. */
1380 int cpu; /* CPU number (default CPU if ISA). */
1381 };
1382
1383 #define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1384 #define MIPS_CPU_ASE_SMARTMIPS 0x0002 /* CPU implements SmartMIPS ASE */
1385 #define MIPS_CPU_ASE_DSP 0x0004 /* CPU implements DSP ASE */
1386 #define MIPS_CPU_ASE_MT 0x0008 /* CPU implements MT ASE */
1387 #define MIPS_CPU_ASE_MIPS3D 0x0010 /* CPU implements MIPS-3D ASE */
1388 #define MIPS_CPU_ASE_MDMX 0x0020 /* CPU implements MDMX ASE */
1389 #define MIPS_CPU_ASE_DSPR2 0x0040 /* CPU implements DSP R2 ASE */
1390 #define MIPS_CPU_ASE_MCU 0x0080 /* CPU implements MCU ASE */
1391
1392 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1393 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1394 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1395 \f
1396 /* Pseudo-op table.
1397
1398 The following pseudo-ops from the Kane and Heinrich MIPS book
1399 should be defined here, but are currently unsupported: .alias,
1400 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1401
1402 The following pseudo-ops from the Kane and Heinrich MIPS book are
1403 specific to the type of debugging information being generated, and
1404 should be defined by the object format: .aent, .begin, .bend,
1405 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1406 .vreg.
1407
1408 The following pseudo-ops from the Kane and Heinrich MIPS book are
1409 not MIPS CPU specific, but are also not specific to the object file
1410 format. This file is probably the best place to define them, but
1411 they are not currently supported: .asm0, .endr, .lab, .struct. */
1412
1413 static const pseudo_typeS mips_pseudo_table[] =
1414 {
1415 /* MIPS specific pseudo-ops. */
1416 {"option", s_option, 0},
1417 {"set", s_mipsset, 0},
1418 {"rdata", s_change_sec, 'r'},
1419 {"sdata", s_change_sec, 's'},
1420 {"livereg", s_ignore, 0},
1421 {"abicalls", s_abicalls, 0},
1422 {"cpload", s_cpload, 0},
1423 {"cpsetup", s_cpsetup, 0},
1424 {"cplocal", s_cplocal, 0},
1425 {"cprestore", s_cprestore, 0},
1426 {"cpreturn", s_cpreturn, 0},
1427 {"dtprelword", s_dtprelword, 0},
1428 {"dtpreldword", s_dtpreldword, 0},
1429 {"tprelword", s_tprelword, 0},
1430 {"tpreldword", s_tpreldword, 0},
1431 {"gpvalue", s_gpvalue, 0},
1432 {"gpword", s_gpword, 0},
1433 {"gpdword", s_gpdword, 0},
1434 {"cpadd", s_cpadd, 0},
1435 {"insn", s_insn, 0},
1436
1437 /* Relatively generic pseudo-ops that happen to be used on MIPS
1438 chips. */
1439 {"asciiz", stringer, 8 + 1},
1440 {"bss", s_change_sec, 'b'},
1441 {"err", s_err, 0},
1442 {"half", s_cons, 1},
1443 {"dword", s_cons, 3},
1444 {"weakext", s_mips_weakext, 0},
1445 {"origin", s_org, 0},
1446 {"repeat", s_rept, 0},
1447
1448 /* For MIPS this is non-standard, but we define it for consistency. */
1449 {"sbss", s_change_sec, 'B'},
1450
1451 /* These pseudo-ops are defined in read.c, but must be overridden
1452 here for one reason or another. */
1453 {"align", s_align, 0},
1454 {"byte", s_cons, 0},
1455 {"data", s_change_sec, 'd'},
1456 {"double", s_float_cons, 'd'},
1457 {"float", s_float_cons, 'f'},
1458 {"globl", s_mips_globl, 0},
1459 {"global", s_mips_globl, 0},
1460 {"hword", s_cons, 1},
1461 {"int", s_cons, 2},
1462 {"long", s_cons, 2},
1463 {"octa", s_cons, 4},
1464 {"quad", s_cons, 3},
1465 {"section", s_change_section, 0},
1466 {"short", s_cons, 1},
1467 {"single", s_float_cons, 'f'},
1468 {"stabn", s_mips_stab, 'n'},
1469 {"text", s_change_sec, 't'},
1470 {"word", s_cons, 2},
1471
1472 { "extern", ecoff_directive_extern, 0},
1473
1474 { NULL, NULL, 0 },
1475 };
1476
1477 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1478 {
1479 /* These pseudo-ops should be defined by the object file format.
1480 However, a.out doesn't support them, so we have versions here. */
1481 {"aent", s_mips_ent, 1},
1482 {"bgnb", s_ignore, 0},
1483 {"end", s_mips_end, 0},
1484 {"endb", s_ignore, 0},
1485 {"ent", s_mips_ent, 0},
1486 {"file", s_mips_file, 0},
1487 {"fmask", s_mips_mask, 'F'},
1488 {"frame", s_mips_frame, 0},
1489 {"loc", s_mips_loc, 0},
1490 {"mask", s_mips_mask, 'R'},
1491 {"verstamp", s_ignore, 0},
1492 { NULL, NULL, 0 },
1493 };
1494
1495 /* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1496 purpose of the `.dc.a' internal pseudo-op. */
1497
1498 int
1499 mips_address_bytes (void)
1500 {
1501 return HAVE_64BIT_ADDRESSES ? 8 : 4;
1502 }
1503
1504 extern void pop_insert (const pseudo_typeS *);
1505
1506 void
1507 mips_pop_insert (void)
1508 {
1509 pop_insert (mips_pseudo_table);
1510 if (! ECOFF_DEBUGGING)
1511 pop_insert (mips_nonecoff_pseudo_table);
1512 }
1513 \f
1514 /* Symbols labelling the current insn. */
1515
1516 struct insn_label_list
1517 {
1518 struct insn_label_list *next;
1519 symbolS *label;
1520 };
1521
1522 static struct insn_label_list *free_insn_labels;
1523 #define label_list tc_segment_info_data.labels
1524
1525 static void mips_clear_insn_labels (void);
1526 static void mips_mark_labels (void);
1527 static void mips_compressed_mark_labels (void);
1528
1529 static inline void
1530 mips_clear_insn_labels (void)
1531 {
1532 register struct insn_label_list **pl;
1533 segment_info_type *si;
1534
1535 if (now_seg)
1536 {
1537 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1538 ;
1539
1540 si = seg_info (now_seg);
1541 *pl = si->label_list;
1542 si->label_list = NULL;
1543 }
1544 }
1545
1546 /* Mark instruction labels in MIPS16/microMIPS mode. */
1547
1548 static inline void
1549 mips_mark_labels (void)
1550 {
1551 if (HAVE_CODE_COMPRESSION)
1552 mips_compressed_mark_labels ();
1553 }
1554 \f
1555 static char *expr_end;
1556
1557 /* Expressions which appear in instructions. These are set by
1558 mips_ip. */
1559
1560 static expressionS imm_expr;
1561 static expressionS imm2_expr;
1562 static expressionS offset_expr;
1563
1564 /* Relocs associated with imm_expr and offset_expr. */
1565
1566 static bfd_reloc_code_real_type imm_reloc[3]
1567 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1568 static bfd_reloc_code_real_type offset_reloc[3]
1569 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1570
1571 /* This is set to the resulting size of the instruction to be produced
1572 by mips16_ip if an explicit extension is used or by mips_ip if an
1573 explicit size is supplied. */
1574
1575 static unsigned int forced_insn_length;
1576
1577 /* True if we are assembling an instruction. All dot symbols defined during
1578 this time should be treated as code labels. */
1579
1580 static bfd_boolean mips_assembling_insn;
1581
1582 #ifdef OBJ_ELF
1583 /* The pdr segment for per procedure frame/regmask info. Not used for
1584 ECOFF debugging. */
1585
1586 static segT pdr_seg;
1587 #endif
1588
1589 /* The default target format to use. */
1590
1591 #if defined (TE_FreeBSD)
1592 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1593 #elif defined (TE_TMIPS)
1594 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1595 #else
1596 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1597 #endif
1598
1599 const char *
1600 mips_target_format (void)
1601 {
1602 switch (OUTPUT_FLAVOR)
1603 {
1604 case bfd_target_ecoff_flavour:
1605 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1606 case bfd_target_coff_flavour:
1607 return "pe-mips";
1608 case bfd_target_elf_flavour:
1609 #ifdef TE_VXWORKS
1610 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1611 return (target_big_endian
1612 ? "elf32-bigmips-vxworks"
1613 : "elf32-littlemips-vxworks");
1614 #endif
1615 return (target_big_endian
1616 ? (HAVE_64BIT_OBJECTS
1617 ? ELF_TARGET ("elf64-", "big")
1618 : (HAVE_NEWABI
1619 ? ELF_TARGET ("elf32-n", "big")
1620 : ELF_TARGET ("elf32-", "big")))
1621 : (HAVE_64BIT_OBJECTS
1622 ? ELF_TARGET ("elf64-", "little")
1623 : (HAVE_NEWABI
1624 ? ELF_TARGET ("elf32-n", "little")
1625 : ELF_TARGET ("elf32-", "little"))));
1626 default:
1627 abort ();
1628 return NULL;
1629 }
1630 }
1631
1632 /* Return the length of a microMIPS instruction in bytes. If bits of
1633 the mask beyond the low 16 are 0, then it is a 16-bit instruction.
1634 Otherwise assume a 32-bit instruction; 48-bit instructions (0x1f
1635 major opcode) will require further modifications to the opcode
1636 table. */
1637
1638 static inline unsigned int
1639 micromips_insn_length (const struct mips_opcode *mo)
1640 {
1641 return (mo->mask >> 16) == 0 ? 2 : 4;
1642 }
1643
1644 /* Return the length of MIPS16 instruction OPCODE. */
1645
1646 static inline unsigned int
1647 mips16_opcode_length (unsigned long opcode)
1648 {
1649 return (opcode >> 16) == 0 ? 2 : 4;
1650 }
1651
1652 /* Return the length of instruction INSN. */
1653
1654 static inline unsigned int
1655 insn_length (const struct mips_cl_insn *insn)
1656 {
1657 if (mips_opts.micromips)
1658 return micromips_insn_length (insn->insn_mo);
1659 else if (mips_opts.mips16)
1660 return mips16_opcode_length (insn->insn_opcode);
1661 else
1662 return 4;
1663 }
1664
1665 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1666
1667 static void
1668 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1669 {
1670 size_t i;
1671
1672 insn->insn_mo = mo;
1673 insn->insn_opcode = mo->match;
1674 insn->frag = NULL;
1675 insn->where = 0;
1676 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1677 insn->fixp[i] = NULL;
1678 insn->fixed_p = (mips_opts.noreorder > 0);
1679 insn->noreorder_p = (mips_opts.noreorder > 0);
1680 insn->mips16_absolute_jump_p = 0;
1681 insn->complete_p = 0;
1682 }
1683
1684 /* Record the current MIPS16/microMIPS mode in now_seg. */
1685
1686 static void
1687 mips_record_compressed_mode (void)
1688 {
1689 segment_info_type *si;
1690
1691 si = seg_info (now_seg);
1692 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
1693 si->tc_segment_info_data.mips16 = mips_opts.mips16;
1694 if (si->tc_segment_info_data.micromips != mips_opts.micromips)
1695 si->tc_segment_info_data.micromips = mips_opts.micromips;
1696 }
1697
1698 /* Read a standard MIPS instruction from BUF. */
1699
1700 static unsigned long
1701 read_insn (char *buf)
1702 {
1703 if (target_big_endian)
1704 return bfd_getb32 ((bfd_byte *) buf);
1705 else
1706 return bfd_getl32 ((bfd_byte *) buf);
1707 }
1708
1709 /* Write standard MIPS instruction INSN to BUF. Return a pointer to
1710 the next byte. */
1711
1712 static char *
1713 write_insn (char *buf, unsigned int insn)
1714 {
1715 md_number_to_chars (buf, insn, 4);
1716 return buf + 4;
1717 }
1718
1719 /* Read a microMIPS or MIPS16 opcode from BUF, given that it
1720 has length LENGTH. */
1721
1722 static unsigned long
1723 read_compressed_insn (char *buf, unsigned int length)
1724 {
1725 unsigned long insn;
1726 unsigned int i;
1727
1728 insn = 0;
1729 for (i = 0; i < length; i += 2)
1730 {
1731 insn <<= 16;
1732 if (target_big_endian)
1733 insn |= bfd_getb16 ((char *) buf);
1734 else
1735 insn |= bfd_getl16 ((char *) buf);
1736 buf += 2;
1737 }
1738 return insn;
1739 }
1740
1741 /* Write microMIPS or MIPS16 instruction INSN to BUF, given that the
1742 instruction is LENGTH bytes long. Return a pointer to the next byte. */
1743
1744 static char *
1745 write_compressed_insn (char *buf, unsigned int insn, unsigned int length)
1746 {
1747 unsigned int i;
1748
1749 for (i = 0; i < length; i += 2)
1750 md_number_to_chars (buf + i, insn >> ((length - i - 2) * 8), 2);
1751 return buf + length;
1752 }
1753
1754 /* Install INSN at the location specified by its "frag" and "where" fields. */
1755
1756 static void
1757 install_insn (const struct mips_cl_insn *insn)
1758 {
1759 char *f = insn->frag->fr_literal + insn->where;
1760 if (HAVE_CODE_COMPRESSION)
1761 write_compressed_insn (f, insn->insn_opcode, insn_length (insn));
1762 else
1763 write_insn (f, insn->insn_opcode);
1764 mips_record_compressed_mode ();
1765 }
1766
1767 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1768 and install the opcode in the new location. */
1769
1770 static void
1771 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
1772 {
1773 size_t i;
1774
1775 insn->frag = frag;
1776 insn->where = where;
1777 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1778 if (insn->fixp[i] != NULL)
1779 {
1780 insn->fixp[i]->fx_frag = frag;
1781 insn->fixp[i]->fx_where = where;
1782 }
1783 install_insn (insn);
1784 }
1785
1786 /* Add INSN to the end of the output. */
1787
1788 static void
1789 add_fixed_insn (struct mips_cl_insn *insn)
1790 {
1791 char *f = frag_more (insn_length (insn));
1792 move_insn (insn, frag_now, f - frag_now->fr_literal);
1793 }
1794
1795 /* Start a variant frag and move INSN to the start of the variant part,
1796 marking it as fixed. The other arguments are as for frag_var. */
1797
1798 static void
1799 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
1800 relax_substateT subtype, symbolS *symbol, offsetT offset)
1801 {
1802 frag_grow (max_chars);
1803 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
1804 insn->fixed_p = 1;
1805 frag_var (rs_machine_dependent, max_chars, var,
1806 subtype, symbol, offset, NULL);
1807 }
1808
1809 /* Insert N copies of INSN into the history buffer, starting at
1810 position FIRST. Neither FIRST nor N need to be clipped. */
1811
1812 static void
1813 insert_into_history (unsigned int first, unsigned int n,
1814 const struct mips_cl_insn *insn)
1815 {
1816 if (mips_relax.sequence != 2)
1817 {
1818 unsigned int i;
1819
1820 for (i = ARRAY_SIZE (history); i-- > first;)
1821 if (i >= first + n)
1822 history[i] = history[i - n];
1823 else
1824 history[i] = *insn;
1825 }
1826 }
1827
1828 /* Initialize vr4120_conflicts. There is a bit of duplication here:
1829 the idea is to make it obvious at a glance that each errata is
1830 included. */
1831
1832 static void
1833 init_vr4120_conflicts (void)
1834 {
1835 #define CONFLICT(FIRST, SECOND) \
1836 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1837
1838 /* Errata 21 - [D]DIV[U] after [D]MACC */
1839 CONFLICT (MACC, DIV);
1840 CONFLICT (DMACC, DIV);
1841
1842 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1843 CONFLICT (DMULT, DMULT);
1844 CONFLICT (DMULT, DMACC);
1845 CONFLICT (DMACC, DMULT);
1846 CONFLICT (DMACC, DMACC);
1847
1848 /* Errata 24 - MT{LO,HI} after [D]MACC */
1849 CONFLICT (MACC, MTHILO);
1850 CONFLICT (DMACC, MTHILO);
1851
1852 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1853 instruction is executed immediately after a MACC or DMACC
1854 instruction, the result of [either instruction] is incorrect." */
1855 CONFLICT (MACC, MULT);
1856 CONFLICT (MACC, DMULT);
1857 CONFLICT (DMACC, MULT);
1858 CONFLICT (DMACC, DMULT);
1859
1860 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1861 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1862 DDIV or DDIVU instruction, the result of the MACC or
1863 DMACC instruction is incorrect.". */
1864 CONFLICT (DMULT, MACC);
1865 CONFLICT (DMULT, DMACC);
1866 CONFLICT (DIV, MACC);
1867 CONFLICT (DIV, DMACC);
1868
1869 #undef CONFLICT
1870 }
1871
1872 struct regname {
1873 const char *name;
1874 unsigned int num;
1875 };
1876
1877 #define RTYPE_MASK 0x1ff00
1878 #define RTYPE_NUM 0x00100
1879 #define RTYPE_FPU 0x00200
1880 #define RTYPE_FCC 0x00400
1881 #define RTYPE_VEC 0x00800
1882 #define RTYPE_GP 0x01000
1883 #define RTYPE_CP0 0x02000
1884 #define RTYPE_PC 0x04000
1885 #define RTYPE_ACC 0x08000
1886 #define RTYPE_CCC 0x10000
1887 #define RNUM_MASK 0x000ff
1888 #define RWARN 0x80000
1889
1890 #define GENERIC_REGISTER_NUMBERS \
1891 {"$0", RTYPE_NUM | 0}, \
1892 {"$1", RTYPE_NUM | 1}, \
1893 {"$2", RTYPE_NUM | 2}, \
1894 {"$3", RTYPE_NUM | 3}, \
1895 {"$4", RTYPE_NUM | 4}, \
1896 {"$5", RTYPE_NUM | 5}, \
1897 {"$6", RTYPE_NUM | 6}, \
1898 {"$7", RTYPE_NUM | 7}, \
1899 {"$8", RTYPE_NUM | 8}, \
1900 {"$9", RTYPE_NUM | 9}, \
1901 {"$10", RTYPE_NUM | 10}, \
1902 {"$11", RTYPE_NUM | 11}, \
1903 {"$12", RTYPE_NUM | 12}, \
1904 {"$13", RTYPE_NUM | 13}, \
1905 {"$14", RTYPE_NUM | 14}, \
1906 {"$15", RTYPE_NUM | 15}, \
1907 {"$16", RTYPE_NUM | 16}, \
1908 {"$17", RTYPE_NUM | 17}, \
1909 {"$18", RTYPE_NUM | 18}, \
1910 {"$19", RTYPE_NUM | 19}, \
1911 {"$20", RTYPE_NUM | 20}, \
1912 {"$21", RTYPE_NUM | 21}, \
1913 {"$22", RTYPE_NUM | 22}, \
1914 {"$23", RTYPE_NUM | 23}, \
1915 {"$24", RTYPE_NUM | 24}, \
1916 {"$25", RTYPE_NUM | 25}, \
1917 {"$26", RTYPE_NUM | 26}, \
1918 {"$27", RTYPE_NUM | 27}, \
1919 {"$28", RTYPE_NUM | 28}, \
1920 {"$29", RTYPE_NUM | 29}, \
1921 {"$30", RTYPE_NUM | 30}, \
1922 {"$31", RTYPE_NUM | 31}
1923
1924 #define FPU_REGISTER_NAMES \
1925 {"$f0", RTYPE_FPU | 0}, \
1926 {"$f1", RTYPE_FPU | 1}, \
1927 {"$f2", RTYPE_FPU | 2}, \
1928 {"$f3", RTYPE_FPU | 3}, \
1929 {"$f4", RTYPE_FPU | 4}, \
1930 {"$f5", RTYPE_FPU | 5}, \
1931 {"$f6", RTYPE_FPU | 6}, \
1932 {"$f7", RTYPE_FPU | 7}, \
1933 {"$f8", RTYPE_FPU | 8}, \
1934 {"$f9", RTYPE_FPU | 9}, \
1935 {"$f10", RTYPE_FPU | 10}, \
1936 {"$f11", RTYPE_FPU | 11}, \
1937 {"$f12", RTYPE_FPU | 12}, \
1938 {"$f13", RTYPE_FPU | 13}, \
1939 {"$f14", RTYPE_FPU | 14}, \
1940 {"$f15", RTYPE_FPU | 15}, \
1941 {"$f16", RTYPE_FPU | 16}, \
1942 {"$f17", RTYPE_FPU | 17}, \
1943 {"$f18", RTYPE_FPU | 18}, \
1944 {"$f19", RTYPE_FPU | 19}, \
1945 {"$f20", RTYPE_FPU | 20}, \
1946 {"$f21", RTYPE_FPU | 21}, \
1947 {"$f22", RTYPE_FPU | 22}, \
1948 {"$f23", RTYPE_FPU | 23}, \
1949 {"$f24", RTYPE_FPU | 24}, \
1950 {"$f25", RTYPE_FPU | 25}, \
1951 {"$f26", RTYPE_FPU | 26}, \
1952 {"$f27", RTYPE_FPU | 27}, \
1953 {"$f28", RTYPE_FPU | 28}, \
1954 {"$f29", RTYPE_FPU | 29}, \
1955 {"$f30", RTYPE_FPU | 30}, \
1956 {"$f31", RTYPE_FPU | 31}
1957
1958 #define FPU_CONDITION_CODE_NAMES \
1959 {"$fcc0", RTYPE_FCC | 0}, \
1960 {"$fcc1", RTYPE_FCC | 1}, \
1961 {"$fcc2", RTYPE_FCC | 2}, \
1962 {"$fcc3", RTYPE_FCC | 3}, \
1963 {"$fcc4", RTYPE_FCC | 4}, \
1964 {"$fcc5", RTYPE_FCC | 5}, \
1965 {"$fcc6", RTYPE_FCC | 6}, \
1966 {"$fcc7", RTYPE_FCC | 7}
1967
1968 #define COPROC_CONDITION_CODE_NAMES \
1969 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
1970 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
1971 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
1972 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
1973 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
1974 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
1975 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
1976 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
1977
1978 #define N32N64_SYMBOLIC_REGISTER_NAMES \
1979 {"$a4", RTYPE_GP | 8}, \
1980 {"$a5", RTYPE_GP | 9}, \
1981 {"$a6", RTYPE_GP | 10}, \
1982 {"$a7", RTYPE_GP | 11}, \
1983 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
1984 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
1985 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
1986 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
1987 {"$t0", RTYPE_GP | 12}, \
1988 {"$t1", RTYPE_GP | 13}, \
1989 {"$t2", RTYPE_GP | 14}, \
1990 {"$t3", RTYPE_GP | 15}
1991
1992 #define O32_SYMBOLIC_REGISTER_NAMES \
1993 {"$t0", RTYPE_GP | 8}, \
1994 {"$t1", RTYPE_GP | 9}, \
1995 {"$t2", RTYPE_GP | 10}, \
1996 {"$t3", RTYPE_GP | 11}, \
1997 {"$t4", RTYPE_GP | 12}, \
1998 {"$t5", RTYPE_GP | 13}, \
1999 {"$t6", RTYPE_GP | 14}, \
2000 {"$t7", RTYPE_GP | 15}, \
2001 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
2002 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
2003 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
2004 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
2005
2006 /* Remaining symbolic register names */
2007 #define SYMBOLIC_REGISTER_NAMES \
2008 {"$zero", RTYPE_GP | 0}, \
2009 {"$at", RTYPE_GP | 1}, \
2010 {"$AT", RTYPE_GP | 1}, \
2011 {"$v0", RTYPE_GP | 2}, \
2012 {"$v1", RTYPE_GP | 3}, \
2013 {"$a0", RTYPE_GP | 4}, \
2014 {"$a1", RTYPE_GP | 5}, \
2015 {"$a2", RTYPE_GP | 6}, \
2016 {"$a3", RTYPE_GP | 7}, \
2017 {"$s0", RTYPE_GP | 16}, \
2018 {"$s1", RTYPE_GP | 17}, \
2019 {"$s2", RTYPE_GP | 18}, \
2020 {"$s3", RTYPE_GP | 19}, \
2021 {"$s4", RTYPE_GP | 20}, \
2022 {"$s5", RTYPE_GP | 21}, \
2023 {"$s6", RTYPE_GP | 22}, \
2024 {"$s7", RTYPE_GP | 23}, \
2025 {"$t8", RTYPE_GP | 24}, \
2026 {"$t9", RTYPE_GP | 25}, \
2027 {"$k0", RTYPE_GP | 26}, \
2028 {"$kt0", RTYPE_GP | 26}, \
2029 {"$k1", RTYPE_GP | 27}, \
2030 {"$kt1", RTYPE_GP | 27}, \
2031 {"$gp", RTYPE_GP | 28}, \
2032 {"$sp", RTYPE_GP | 29}, \
2033 {"$s8", RTYPE_GP | 30}, \
2034 {"$fp", RTYPE_GP | 30}, \
2035 {"$ra", RTYPE_GP | 31}
2036
2037 #define MIPS16_SPECIAL_REGISTER_NAMES \
2038 {"$pc", RTYPE_PC | 0}
2039
2040 #define MDMX_VECTOR_REGISTER_NAMES \
2041 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
2042 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
2043 {"$v2", RTYPE_VEC | 2}, \
2044 {"$v3", RTYPE_VEC | 3}, \
2045 {"$v4", RTYPE_VEC | 4}, \
2046 {"$v5", RTYPE_VEC | 5}, \
2047 {"$v6", RTYPE_VEC | 6}, \
2048 {"$v7", RTYPE_VEC | 7}, \
2049 {"$v8", RTYPE_VEC | 8}, \
2050 {"$v9", RTYPE_VEC | 9}, \
2051 {"$v10", RTYPE_VEC | 10}, \
2052 {"$v11", RTYPE_VEC | 11}, \
2053 {"$v12", RTYPE_VEC | 12}, \
2054 {"$v13", RTYPE_VEC | 13}, \
2055 {"$v14", RTYPE_VEC | 14}, \
2056 {"$v15", RTYPE_VEC | 15}, \
2057 {"$v16", RTYPE_VEC | 16}, \
2058 {"$v17", RTYPE_VEC | 17}, \
2059 {"$v18", RTYPE_VEC | 18}, \
2060 {"$v19", RTYPE_VEC | 19}, \
2061 {"$v20", RTYPE_VEC | 20}, \
2062 {"$v21", RTYPE_VEC | 21}, \
2063 {"$v22", RTYPE_VEC | 22}, \
2064 {"$v23", RTYPE_VEC | 23}, \
2065 {"$v24", RTYPE_VEC | 24}, \
2066 {"$v25", RTYPE_VEC | 25}, \
2067 {"$v26", RTYPE_VEC | 26}, \
2068 {"$v27", RTYPE_VEC | 27}, \
2069 {"$v28", RTYPE_VEC | 28}, \
2070 {"$v29", RTYPE_VEC | 29}, \
2071 {"$v30", RTYPE_VEC | 30}, \
2072 {"$v31", RTYPE_VEC | 31}
2073
2074 #define MIPS_DSP_ACCUMULATOR_NAMES \
2075 {"$ac0", RTYPE_ACC | 0}, \
2076 {"$ac1", RTYPE_ACC | 1}, \
2077 {"$ac2", RTYPE_ACC | 2}, \
2078 {"$ac3", RTYPE_ACC | 3}
2079
2080 static const struct regname reg_names[] = {
2081 GENERIC_REGISTER_NUMBERS,
2082 FPU_REGISTER_NAMES,
2083 FPU_CONDITION_CODE_NAMES,
2084 COPROC_CONDITION_CODE_NAMES,
2085
2086 /* The $txx registers depends on the abi,
2087 these will be added later into the symbol table from
2088 one of the tables below once mips_abi is set after
2089 parsing of arguments from the command line. */
2090 SYMBOLIC_REGISTER_NAMES,
2091
2092 MIPS16_SPECIAL_REGISTER_NAMES,
2093 MDMX_VECTOR_REGISTER_NAMES,
2094 MIPS_DSP_ACCUMULATOR_NAMES,
2095 {0, 0}
2096 };
2097
2098 static const struct regname reg_names_o32[] = {
2099 O32_SYMBOLIC_REGISTER_NAMES,
2100 {0, 0}
2101 };
2102
2103 static const struct regname reg_names_n32n64[] = {
2104 N32N64_SYMBOLIC_REGISTER_NAMES,
2105 {0, 0}
2106 };
2107
2108 /* Check if S points at a valid register specifier according to TYPES.
2109 If so, then return 1, advance S to consume the specifier and store
2110 the register's number in REGNOP, otherwise return 0. */
2111
2112 static int
2113 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
2114 {
2115 symbolS *symbolP;
2116 char *e;
2117 char save_c;
2118 int reg = -1;
2119
2120 /* Find end of name. */
2121 e = *s;
2122 if (is_name_beginner (*e))
2123 ++e;
2124 while (is_part_of_name (*e))
2125 ++e;
2126
2127 /* Terminate name. */
2128 save_c = *e;
2129 *e = '\0';
2130
2131 /* Look for a register symbol. */
2132 if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
2133 {
2134 int r = S_GET_VALUE (symbolP);
2135 if (r & types)
2136 reg = r & RNUM_MASK;
2137 else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
2138 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
2139 reg = (r & RNUM_MASK) - 2;
2140 }
2141 /* Else see if this is a register defined in an itbl entry. */
2142 else if ((types & RTYPE_GP) && itbl_have_entries)
2143 {
2144 char *n = *s;
2145 unsigned long r;
2146
2147 if (*n == '$')
2148 ++n;
2149 if (itbl_get_reg_val (n, &r))
2150 reg = r & RNUM_MASK;
2151 }
2152
2153 /* Advance to next token if a register was recognised. */
2154 if (reg >= 0)
2155 *s = e;
2156 else if (types & RWARN)
2157 as_warn (_("Unrecognized register name `%s'"), *s);
2158
2159 *e = save_c;
2160 if (regnop)
2161 *regnop = reg;
2162 return reg >= 0;
2163 }
2164
2165 /* Check if S points at a valid register list according to TYPES.
2166 If so, then return 1, advance S to consume the list and store
2167 the registers present on the list as a bitmask of ones in REGLISTP,
2168 otherwise return 0. A valid list comprises a comma-separated
2169 enumeration of valid single registers and/or dash-separated
2170 contiguous register ranges as determined by their numbers.
2171
2172 As a special exception if one of s0-s7 registers is specified as
2173 the range's lower delimiter and s8 (fp) is its upper one, then no
2174 registers whose numbers place them between s7 and s8 (i.e. $24-$29)
2175 are selected; they have to be listed separately if needed. */
2176
2177 static int
2178 reglist_lookup (char **s, unsigned int types, unsigned int *reglistp)
2179 {
2180 unsigned int reglist = 0;
2181 unsigned int lastregno;
2182 bfd_boolean ok = TRUE;
2183 unsigned int regmask;
2184 char *s_endlist = *s;
2185 char *s_reset = *s;
2186 unsigned int regno;
2187
2188 while (reg_lookup (s, types, &regno))
2189 {
2190 lastregno = regno;
2191 if (**s == '-')
2192 {
2193 (*s)++;
2194 ok = reg_lookup (s, types, &lastregno);
2195 if (ok && lastregno < regno)
2196 ok = FALSE;
2197 if (!ok)
2198 break;
2199 }
2200
2201 if (lastregno == FP && regno >= S0 && regno <= S7)
2202 {
2203 lastregno = S7;
2204 reglist |= 1 << FP;
2205 }
2206 regmask = 1 << lastregno;
2207 regmask = (regmask << 1) - 1;
2208 regmask ^= (1 << regno) - 1;
2209 reglist |= regmask;
2210
2211 s_endlist = *s;
2212 if (**s != ',')
2213 break;
2214 (*s)++;
2215 }
2216
2217 if (ok)
2218 *s = s_endlist;
2219 else
2220 *s = s_reset;
2221 if (reglistp)
2222 *reglistp = reglist;
2223 return ok && reglist != 0;
2224 }
2225
2226 /* Return TRUE if opcode MO is valid on the currently selected ISA and
2227 architecture. Use is_opcode_valid_16 for MIPS16 opcodes. */
2228
2229 static bfd_boolean
2230 is_opcode_valid (const struct mips_opcode *mo)
2231 {
2232 int isa = mips_opts.isa;
2233 int fp_s, fp_d;
2234
2235 if (mips_opts.ase_mdmx)
2236 isa |= INSN_MDMX;
2237 if (mips_opts.ase_dsp)
2238 isa |= INSN_DSP;
2239 if (mips_opts.ase_dsp && ISA_SUPPORTS_DSP64_ASE)
2240 isa |= INSN_DSP64;
2241 if (mips_opts.ase_dspr2)
2242 isa |= INSN_DSPR2;
2243 if (mips_opts.ase_mt)
2244 isa |= INSN_MT;
2245 if (mips_opts.ase_mips3d)
2246 isa |= INSN_MIPS3D;
2247 if (mips_opts.ase_smartmips)
2248 isa |= INSN_SMARTMIPS;
2249 if (mips_opts.ase_mcu)
2250 isa |= INSN_MCU;
2251
2252 if (!opcode_is_member (mo, isa, mips_opts.arch))
2253 return FALSE;
2254
2255 /* Check whether the instruction or macro requires single-precision or
2256 double-precision floating-point support. Note that this information is
2257 stored differently in the opcode table for insns and macros. */
2258 if (mo->pinfo == INSN_MACRO)
2259 {
2260 fp_s = mo->pinfo2 & INSN2_M_FP_S;
2261 fp_d = mo->pinfo2 & INSN2_M_FP_D;
2262 }
2263 else
2264 {
2265 fp_s = mo->pinfo & FP_S;
2266 fp_d = mo->pinfo & FP_D;
2267 }
2268
2269 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
2270 return FALSE;
2271
2272 if (fp_s && mips_opts.soft_float)
2273 return FALSE;
2274
2275 return TRUE;
2276 }
2277
2278 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
2279 selected ISA and architecture. */
2280
2281 static bfd_boolean
2282 is_opcode_valid_16 (const struct mips_opcode *mo)
2283 {
2284 return opcode_is_member (mo, mips_opts.isa, mips_opts.arch);
2285 }
2286
2287 /* Return TRUE if the size of the microMIPS opcode MO matches one
2288 explicitly requested. Always TRUE in the standard MIPS mode. */
2289
2290 static bfd_boolean
2291 is_size_valid (const struct mips_opcode *mo)
2292 {
2293 if (!mips_opts.micromips)
2294 return TRUE;
2295
2296 if (!forced_insn_length)
2297 return TRUE;
2298 if (mo->pinfo == INSN_MACRO)
2299 return FALSE;
2300 return forced_insn_length == micromips_insn_length (mo);
2301 }
2302
2303 /* Return TRUE if the microMIPS opcode MO is valid for the delay slot
2304 of the preceding instruction. Always TRUE in the standard MIPS mode.
2305
2306 We don't accept macros in 16-bit delay slots to avoid a case where
2307 a macro expansion fails because it relies on a preceding 32-bit real
2308 instruction to have matched and does not handle the operands correctly.
2309 The only macros that may expand to 16-bit instructions are JAL that
2310 cannot be placed in a delay slot anyway, and corner cases of BALIGN
2311 and BGT (that likewise cannot be placed in a delay slot) that decay to
2312 a NOP. In all these cases the macros precede any corresponding real
2313 instruction definitions in the opcode table, so they will match in the
2314 second pass where the size of the delay slot is ignored and therefore
2315 produce correct code. */
2316
2317 static bfd_boolean
2318 is_delay_slot_valid (const struct mips_opcode *mo)
2319 {
2320 if (!mips_opts.micromips)
2321 return TRUE;
2322
2323 if (mo->pinfo == INSN_MACRO)
2324 return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;
2325 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
2326 && micromips_insn_length (mo) != 4)
2327 return FALSE;
2328 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
2329 && micromips_insn_length (mo) != 2)
2330 return FALSE;
2331
2332 return TRUE;
2333 }
2334
2335 /* This function is called once, at assembler startup time. It should set up
2336 all the tables, etc. that the MD part of the assembler will need. */
2337
2338 void
2339 md_begin (void)
2340 {
2341 const char *retval = NULL;
2342 int i = 0;
2343 int broken = 0;
2344
2345 if (mips_pic != NO_PIC)
2346 {
2347 if (g_switch_seen && g_switch_value != 0)
2348 as_bad (_("-G may not be used in position-independent code"));
2349 g_switch_value = 0;
2350 }
2351
2352 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
2353 as_warn (_("Could not set architecture and machine"));
2354
2355 op_hash = hash_new ();
2356
2357 for (i = 0; i < NUMOPCODES;)
2358 {
2359 const char *name = mips_opcodes[i].name;
2360
2361 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
2362 if (retval != NULL)
2363 {
2364 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
2365 mips_opcodes[i].name, retval);
2366 /* Probably a memory allocation problem? Give up now. */
2367 as_fatal (_("Broken assembler. No assembly attempted."));
2368 }
2369 do
2370 {
2371 if (mips_opcodes[i].pinfo != INSN_MACRO)
2372 {
2373 if (!validate_mips_insn (&mips_opcodes[i]))
2374 broken = 1;
2375 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
2376 {
2377 create_insn (&nop_insn, mips_opcodes + i);
2378 if (mips_fix_loongson2f_nop)
2379 nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
2380 nop_insn.fixed_p = 1;
2381 }
2382 }
2383 ++i;
2384 }
2385 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
2386 }
2387
2388 mips16_op_hash = hash_new ();
2389
2390 i = 0;
2391 while (i < bfd_mips16_num_opcodes)
2392 {
2393 const char *name = mips16_opcodes[i].name;
2394
2395 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
2396 if (retval != NULL)
2397 as_fatal (_("internal: can't hash `%s': %s"),
2398 mips16_opcodes[i].name, retval);
2399 do
2400 {
2401 if (mips16_opcodes[i].pinfo != INSN_MACRO
2402 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
2403 != mips16_opcodes[i].match))
2404 {
2405 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
2406 mips16_opcodes[i].name, mips16_opcodes[i].args);
2407 broken = 1;
2408 }
2409 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
2410 {
2411 create_insn (&mips16_nop_insn, mips16_opcodes + i);
2412 mips16_nop_insn.fixed_p = 1;
2413 }
2414 ++i;
2415 }
2416 while (i < bfd_mips16_num_opcodes
2417 && strcmp (mips16_opcodes[i].name, name) == 0);
2418 }
2419
2420 micromips_op_hash = hash_new ();
2421
2422 i = 0;
2423 while (i < bfd_micromips_num_opcodes)
2424 {
2425 const char *name = micromips_opcodes[i].name;
2426
2427 retval = hash_insert (micromips_op_hash, name,
2428 (void *) &micromips_opcodes[i]);
2429 if (retval != NULL)
2430 as_fatal (_("internal: can't hash `%s': %s"),
2431 micromips_opcodes[i].name, retval);
2432 do
2433 if (micromips_opcodes[i].pinfo != INSN_MACRO)
2434 {
2435 struct mips_cl_insn *micromips_nop_insn;
2436
2437 if (!validate_micromips_insn (&micromips_opcodes[i]))
2438 broken = 1;
2439
2440 if (micromips_insn_length (micromips_opcodes + i) == 2)
2441 micromips_nop_insn = &micromips_nop16_insn;
2442 else if (micromips_insn_length (micromips_opcodes + i) == 4)
2443 micromips_nop_insn = &micromips_nop32_insn;
2444 else
2445 continue;
2446
2447 if (micromips_nop_insn->insn_mo == NULL
2448 && strcmp (name, "nop") == 0)
2449 {
2450 create_insn (micromips_nop_insn, micromips_opcodes + i);
2451 micromips_nop_insn->fixed_p = 1;
2452 }
2453 }
2454 while (++i < bfd_micromips_num_opcodes
2455 && strcmp (micromips_opcodes[i].name, name) == 0);
2456 }
2457
2458 if (broken)
2459 as_fatal (_("Broken assembler. No assembly attempted."));
2460
2461 /* We add all the general register names to the symbol table. This
2462 helps us detect invalid uses of them. */
2463 for (i = 0; reg_names[i].name; i++)
2464 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
2465 reg_names[i].num, /* & RNUM_MASK, */
2466 &zero_address_frag));
2467 if (HAVE_NEWABI)
2468 for (i = 0; reg_names_n32n64[i].name; i++)
2469 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
2470 reg_names_n32n64[i].num, /* & RNUM_MASK, */
2471 &zero_address_frag));
2472 else
2473 for (i = 0; reg_names_o32[i].name; i++)
2474 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
2475 reg_names_o32[i].num, /* & RNUM_MASK, */
2476 &zero_address_frag));
2477
2478 mips_no_prev_insn ();
2479
2480 mips_gprmask = 0;
2481 mips_cprmask[0] = 0;
2482 mips_cprmask[1] = 0;
2483 mips_cprmask[2] = 0;
2484 mips_cprmask[3] = 0;
2485
2486 /* set the default alignment for the text section (2**2) */
2487 record_alignment (text_section, 2);
2488
2489 bfd_set_gp_size (stdoutput, g_switch_value);
2490
2491 #ifdef OBJ_ELF
2492 if (IS_ELF)
2493 {
2494 /* On a native system other than VxWorks, sections must be aligned
2495 to 16 byte boundaries. When configured for an embedded ELF
2496 target, we don't bother. */
2497 if (strncmp (TARGET_OS, "elf", 3) != 0
2498 && strncmp (TARGET_OS, "vxworks", 7) != 0)
2499 {
2500 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
2501 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
2502 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
2503 }
2504
2505 /* Create a .reginfo section for register masks and a .mdebug
2506 section for debugging information. */
2507 {
2508 segT seg;
2509 subsegT subseg;
2510 flagword flags;
2511 segT sec;
2512
2513 seg = now_seg;
2514 subseg = now_subseg;
2515
2516 /* The ABI says this section should be loaded so that the
2517 running program can access it. However, we don't load it
2518 if we are configured for an embedded target */
2519 flags = SEC_READONLY | SEC_DATA;
2520 if (strncmp (TARGET_OS, "elf", 3) != 0)
2521 flags |= SEC_ALLOC | SEC_LOAD;
2522
2523 if (mips_abi != N64_ABI)
2524 {
2525 sec = subseg_new (".reginfo", (subsegT) 0);
2526
2527 bfd_set_section_flags (stdoutput, sec, flags);
2528 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
2529
2530 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
2531 }
2532 else
2533 {
2534 /* The 64-bit ABI uses a .MIPS.options section rather than
2535 .reginfo section. */
2536 sec = subseg_new (".MIPS.options", (subsegT) 0);
2537 bfd_set_section_flags (stdoutput, sec, flags);
2538 bfd_set_section_alignment (stdoutput, sec, 3);
2539
2540 /* Set up the option header. */
2541 {
2542 Elf_Internal_Options opthdr;
2543 char *f;
2544
2545 opthdr.kind = ODK_REGINFO;
2546 opthdr.size = (sizeof (Elf_External_Options)
2547 + sizeof (Elf64_External_RegInfo));
2548 opthdr.section = 0;
2549 opthdr.info = 0;
2550 f = frag_more (sizeof (Elf_External_Options));
2551 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2552 (Elf_External_Options *) f);
2553
2554 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2555 }
2556 }
2557
2558 if (ECOFF_DEBUGGING)
2559 {
2560 sec = subseg_new (".mdebug", (subsegT) 0);
2561 (void) bfd_set_section_flags (stdoutput, sec,
2562 SEC_HAS_CONTENTS | SEC_READONLY);
2563 (void) bfd_set_section_alignment (stdoutput, sec, 2);
2564 }
2565 else if (mips_flag_pdr)
2566 {
2567 pdr_seg = subseg_new (".pdr", (subsegT) 0);
2568 (void) bfd_set_section_flags (stdoutput, pdr_seg,
2569 SEC_READONLY | SEC_RELOC
2570 | SEC_DEBUGGING);
2571 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2572 }
2573
2574 subseg_set (seg, subseg);
2575 }
2576 }
2577 #endif /* OBJ_ELF */
2578
2579 if (! ECOFF_DEBUGGING)
2580 md_obj_begin ();
2581
2582 if (mips_fix_vr4120)
2583 init_vr4120_conflicts ();
2584 }
2585
2586 void
2587 md_mips_end (void)
2588 {
2589 mips_emit_delays ();
2590 if (! ECOFF_DEBUGGING)
2591 md_obj_end ();
2592 }
2593
2594 void
2595 md_assemble (char *str)
2596 {
2597 struct mips_cl_insn insn;
2598 bfd_reloc_code_real_type unused_reloc[3]
2599 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
2600
2601 imm_expr.X_op = O_absent;
2602 imm2_expr.X_op = O_absent;
2603 offset_expr.X_op = O_absent;
2604 imm_reloc[0] = BFD_RELOC_UNUSED;
2605 imm_reloc[1] = BFD_RELOC_UNUSED;
2606 imm_reloc[2] = BFD_RELOC_UNUSED;
2607 offset_reloc[0] = BFD_RELOC_UNUSED;
2608 offset_reloc[1] = BFD_RELOC_UNUSED;
2609 offset_reloc[2] = BFD_RELOC_UNUSED;
2610
2611 mips_mark_labels ();
2612 mips_assembling_insn = TRUE;
2613
2614 if (mips_opts.mips16)
2615 mips16_ip (str, &insn);
2616 else
2617 {
2618 mips_ip (str, &insn);
2619 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2620 str, insn.insn_opcode));
2621 }
2622
2623 if (insn_error)
2624 as_bad ("%s `%s'", insn_error, str);
2625 else if (insn.insn_mo->pinfo == INSN_MACRO)
2626 {
2627 macro_start ();
2628 if (mips_opts.mips16)
2629 mips16_macro (&insn);
2630 else
2631 macro (&insn);
2632 macro_end ();
2633 }
2634 else
2635 {
2636 if (imm_expr.X_op != O_absent)
2637 append_insn (&insn, &imm_expr, imm_reloc, FALSE);
2638 else if (offset_expr.X_op != O_absent)
2639 append_insn (&insn, &offset_expr, offset_reloc, FALSE);
2640 else
2641 append_insn (&insn, NULL, unused_reloc, FALSE);
2642 }
2643
2644 mips_assembling_insn = FALSE;
2645 }
2646
2647 /* Convenience functions for abstracting away the differences between
2648 MIPS16 and non-MIPS16 relocations. */
2649
2650 static inline bfd_boolean
2651 mips16_reloc_p (bfd_reloc_code_real_type reloc)
2652 {
2653 switch (reloc)
2654 {
2655 case BFD_RELOC_MIPS16_JMP:
2656 case BFD_RELOC_MIPS16_GPREL:
2657 case BFD_RELOC_MIPS16_GOT16:
2658 case BFD_RELOC_MIPS16_CALL16:
2659 case BFD_RELOC_MIPS16_HI16_S:
2660 case BFD_RELOC_MIPS16_HI16:
2661 case BFD_RELOC_MIPS16_LO16:
2662 return TRUE;
2663
2664 default:
2665 return FALSE;
2666 }
2667 }
2668
2669 static inline bfd_boolean
2670 micromips_reloc_p (bfd_reloc_code_real_type reloc)
2671 {
2672 switch (reloc)
2673 {
2674 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
2675 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
2676 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
2677 case BFD_RELOC_MICROMIPS_GPREL16:
2678 case BFD_RELOC_MICROMIPS_JMP:
2679 case BFD_RELOC_MICROMIPS_HI16:
2680 case BFD_RELOC_MICROMIPS_HI16_S:
2681 case BFD_RELOC_MICROMIPS_LO16:
2682 case BFD_RELOC_MICROMIPS_LITERAL:
2683 case BFD_RELOC_MICROMIPS_GOT16:
2684 case BFD_RELOC_MICROMIPS_CALL16:
2685 case BFD_RELOC_MICROMIPS_GOT_HI16:
2686 case BFD_RELOC_MICROMIPS_GOT_LO16:
2687 case BFD_RELOC_MICROMIPS_CALL_HI16:
2688 case BFD_RELOC_MICROMIPS_CALL_LO16:
2689 case BFD_RELOC_MICROMIPS_SUB:
2690 case BFD_RELOC_MICROMIPS_GOT_PAGE:
2691 case BFD_RELOC_MICROMIPS_GOT_OFST:
2692 case BFD_RELOC_MICROMIPS_GOT_DISP:
2693 case BFD_RELOC_MICROMIPS_HIGHEST:
2694 case BFD_RELOC_MICROMIPS_HIGHER:
2695 case BFD_RELOC_MICROMIPS_SCN_DISP:
2696 case BFD_RELOC_MICROMIPS_JALR:
2697 return TRUE;
2698
2699 default:
2700 return FALSE;
2701 }
2702 }
2703
2704 static inline bfd_boolean
2705 jmp_reloc_p (bfd_reloc_code_real_type reloc)
2706 {
2707 return reloc == BFD_RELOC_MIPS_JMP || reloc == BFD_RELOC_MICROMIPS_JMP;
2708 }
2709
2710 static inline bfd_boolean
2711 got16_reloc_p (bfd_reloc_code_real_type reloc)
2712 {
2713 return (reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16
2714 || reloc == BFD_RELOC_MICROMIPS_GOT16);
2715 }
2716
2717 static inline bfd_boolean
2718 hi16_reloc_p (bfd_reloc_code_real_type reloc)
2719 {
2720 return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S
2721 || reloc == BFD_RELOC_MICROMIPS_HI16_S);
2722 }
2723
2724 static inline bfd_boolean
2725 lo16_reloc_p (bfd_reloc_code_real_type reloc)
2726 {
2727 return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16
2728 || reloc == BFD_RELOC_MICROMIPS_LO16);
2729 }
2730
2731 static inline bfd_boolean
2732 jalr_reloc_p (bfd_reloc_code_real_type reloc)
2733 {
2734 return reloc == BFD_RELOC_MIPS_JALR || reloc == BFD_RELOC_MICROMIPS_JALR;
2735 }
2736
2737 /* Return true if the given relocation might need a matching %lo().
2738 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
2739 need a matching %lo() when applied to local symbols. */
2740
2741 static inline bfd_boolean
2742 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
2743 {
2744 return (HAVE_IN_PLACE_ADDENDS
2745 && (hi16_reloc_p (reloc)
2746 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
2747 all GOT16 relocations evaluate to "G". */
2748 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
2749 }
2750
2751 /* Return the type of %lo() reloc needed by RELOC, given that
2752 reloc_needs_lo_p. */
2753
2754 static inline bfd_reloc_code_real_type
2755 matching_lo_reloc (bfd_reloc_code_real_type reloc)
2756 {
2757 return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16
2758 : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16
2759 : BFD_RELOC_LO16));
2760 }
2761
2762 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
2763 relocation. */
2764
2765 static inline bfd_boolean
2766 fixup_has_matching_lo_p (fixS *fixp)
2767 {
2768 return (fixp->fx_next != NULL
2769 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
2770 && fixp->fx_addsy == fixp->fx_next->fx_addsy
2771 && fixp->fx_offset == fixp->fx_next->fx_offset);
2772 }
2773
2774 /* This function returns true if modifying a register requires a
2775 delay. */
2776
2777 static int
2778 reg_needs_delay (unsigned int reg)
2779 {
2780 unsigned long prev_pinfo;
2781
2782 prev_pinfo = history[0].insn_mo->pinfo;
2783 if (! mips_opts.noreorder
2784 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
2785 && ! gpr_interlocks)
2786 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
2787 && ! cop_interlocks)))
2788 {
2789 /* A load from a coprocessor or from memory. All load delays
2790 delay the use of general register rt for one instruction. */
2791 /* Itbl support may require additional care here. */
2792 know (prev_pinfo & INSN_WRITE_GPR_T);
2793 if (reg == EXTRACT_OPERAND (mips_opts.micromips, RT, history[0]))
2794 return 1;
2795 }
2796
2797 return 0;
2798 }
2799
2800 /* Move all labels in LABELS to the current insertion point. TEXT_P
2801 says whether the labels refer to text or data. */
2802
2803 static void
2804 mips_move_labels (struct insn_label_list *labels, bfd_boolean text_p)
2805 {
2806 struct insn_label_list *l;
2807 valueT val;
2808
2809 for (l = labels; l != NULL; l = l->next)
2810 {
2811 gas_assert (S_GET_SEGMENT (l->label) == now_seg);
2812 symbol_set_frag (l->label, frag_now);
2813 val = (valueT) frag_now_fix ();
2814 /* MIPS16/microMIPS text labels are stored as odd. */
2815 if (text_p && HAVE_CODE_COMPRESSION)
2816 ++val;
2817 S_SET_VALUE (l->label, val);
2818 }
2819 }
2820
2821 /* Move all labels in insn_labels to the current insertion point
2822 and treat them as text labels. */
2823
2824 static void
2825 mips_move_text_labels (void)
2826 {
2827 mips_move_labels (seg_info (now_seg)->label_list, TRUE);
2828 }
2829
2830 static bfd_boolean
2831 s_is_linkonce (symbolS *sym, segT from_seg)
2832 {
2833 bfd_boolean linkonce = FALSE;
2834 segT symseg = S_GET_SEGMENT (sym);
2835
2836 if (symseg != from_seg && !S_IS_LOCAL (sym))
2837 {
2838 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
2839 linkonce = TRUE;
2840 #ifdef OBJ_ELF
2841 /* The GNU toolchain uses an extension for ELF: a section
2842 beginning with the magic string .gnu.linkonce is a
2843 linkonce section. */
2844 if (strncmp (segment_name (symseg), ".gnu.linkonce",
2845 sizeof ".gnu.linkonce" - 1) == 0)
2846 linkonce = TRUE;
2847 #endif
2848 }
2849 return linkonce;
2850 }
2851
2852 /* Mark MIPS16 or microMIPS instruction label LABEL. This permits the
2853 linker to handle them specially, such as generating jalx instructions
2854 when needed. We also make them odd for the duration of the assembly,
2855 in order to generate the right sort of code. We will make them even
2856 in the adjust_symtab routine, while leaving them marked. This is
2857 convenient for the debugger and the disassembler. The linker knows
2858 to make them odd again. */
2859
2860 static void
2861 mips_compressed_mark_label (symbolS *label)
2862 {
2863 gas_assert (HAVE_CODE_COMPRESSION);
2864
2865 #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
2866 if (IS_ELF)
2867 {
2868 if (mips_opts.mips16)
2869 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
2870 else
2871 S_SET_OTHER (label, ELF_ST_SET_MICROMIPS (S_GET_OTHER (label)));
2872 }
2873 #endif
2874 if ((S_GET_VALUE (label) & 1) == 0
2875 /* Don't adjust the address if the label is global or weak, or
2876 in a link-once section, since we'll be emitting symbol reloc
2877 references to it which will be patched up by the linker, and
2878 the final value of the symbol may or may not be MIPS16/microMIPS. */
2879 && !S_IS_WEAK (label)
2880 && !S_IS_EXTERNAL (label)
2881 && !s_is_linkonce (label, now_seg))
2882 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
2883 }
2884
2885 /* Mark preceding MIPS16 or microMIPS instruction labels. */
2886
2887 static void
2888 mips_compressed_mark_labels (void)
2889 {
2890 struct insn_label_list *l;
2891
2892 for (l = seg_info (now_seg)->label_list; l != NULL; l = l->next)
2893 mips_compressed_mark_label (l->label);
2894 }
2895
2896 /* End the current frag. Make it a variant frag and record the
2897 relaxation info. */
2898
2899 static void
2900 relax_close_frag (void)
2901 {
2902 mips_macro_warning.first_frag = frag_now;
2903 frag_var (rs_machine_dependent, 0, 0,
2904 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
2905 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
2906
2907 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
2908 mips_relax.first_fixup = 0;
2909 }
2910
2911 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
2912 See the comment above RELAX_ENCODE for more details. */
2913
2914 static void
2915 relax_start (symbolS *symbol)
2916 {
2917 gas_assert (mips_relax.sequence == 0);
2918 mips_relax.sequence = 1;
2919 mips_relax.symbol = symbol;
2920 }
2921
2922 /* Start generating the second version of a relaxable sequence.
2923 See the comment above RELAX_ENCODE for more details. */
2924
2925 static void
2926 relax_switch (void)
2927 {
2928 gas_assert (mips_relax.sequence == 1);
2929 mips_relax.sequence = 2;
2930 }
2931
2932 /* End the current relaxable sequence. */
2933
2934 static void
2935 relax_end (void)
2936 {
2937 gas_assert (mips_relax.sequence == 2);
2938 relax_close_frag ();
2939 mips_relax.sequence = 0;
2940 }
2941
2942 /* Return true if IP is a delayed branch or jump. */
2943
2944 static inline bfd_boolean
2945 delayed_branch_p (const struct mips_cl_insn *ip)
2946 {
2947 return (ip->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
2948 | INSN_COND_BRANCH_DELAY
2949 | INSN_COND_BRANCH_LIKELY)) != 0;
2950 }
2951
2952 /* Return true if IP is a compact branch or jump. */
2953
2954 static inline bfd_boolean
2955 compact_branch_p (const struct mips_cl_insn *ip)
2956 {
2957 if (mips_opts.mips16)
2958 return (ip->insn_mo->pinfo & (MIPS16_INSN_UNCOND_BRANCH
2959 | MIPS16_INSN_COND_BRANCH)) != 0;
2960 else
2961 return (ip->insn_mo->pinfo2 & (INSN2_UNCOND_BRANCH
2962 | INSN2_COND_BRANCH)) != 0;
2963 }
2964
2965 /* Return true if IP is an unconditional branch or jump. */
2966
2967 static inline bfd_boolean
2968 uncond_branch_p (const struct mips_cl_insn *ip)
2969 {
2970 return ((ip->insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY) != 0
2971 || (mips_opts.mips16
2972 ? (ip->insn_mo->pinfo & MIPS16_INSN_UNCOND_BRANCH) != 0
2973 : (ip->insn_mo->pinfo2 & INSN2_UNCOND_BRANCH) != 0));
2974 }
2975
2976 /* Return true if IP is a branch-likely instruction. */
2977
2978 static inline bfd_boolean
2979 branch_likely_p (const struct mips_cl_insn *ip)
2980 {
2981 return (ip->insn_mo->pinfo & INSN_COND_BRANCH_LIKELY) != 0;
2982 }
2983
2984 /* Return the type of nop that should be used to fill the delay slot
2985 of delayed branch IP. */
2986
2987 static struct mips_cl_insn *
2988 get_delay_slot_nop (const struct mips_cl_insn *ip)
2989 {
2990 if (mips_opts.micromips
2991 && (ip->insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
2992 return &micromips_nop32_insn;
2993 return NOP_INSN;
2994 }
2995
2996 /* Return the mask of core registers that IP reads or writes. */
2997
2998 static unsigned int
2999 gpr_mod_mask (const struct mips_cl_insn *ip)
3000 {
3001 unsigned long pinfo2;
3002 unsigned int mask;
3003
3004 mask = 0;
3005 pinfo2 = ip->insn_mo->pinfo2;
3006 if (mips_opts.micromips)
3007 {
3008 if (pinfo2 & INSN2_MOD_GPR_MD)
3009 mask |= 1 << micromips_to_32_reg_d_map[EXTRACT_OPERAND (1, MD, *ip)];
3010 if (pinfo2 & INSN2_MOD_GPR_MF)
3011 mask |= 1 << micromips_to_32_reg_f_map[EXTRACT_OPERAND (1, MF, *ip)];
3012 if (pinfo2 & INSN2_MOD_SP)
3013 mask |= 1 << SP;
3014 }
3015 return mask;
3016 }
3017
3018 /* Return the mask of core registers that IP reads. */
3019
3020 static unsigned int
3021 gpr_read_mask (const struct mips_cl_insn *ip)
3022 {
3023 unsigned long pinfo, pinfo2;
3024 unsigned int mask;
3025
3026 mask = gpr_mod_mask (ip);
3027 pinfo = ip->insn_mo->pinfo;
3028 pinfo2 = ip->insn_mo->pinfo2;
3029 if (mips_opts.mips16)
3030 {
3031 if (pinfo & MIPS16_INSN_READ_X)
3032 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
3033 if (pinfo & MIPS16_INSN_READ_Y)
3034 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
3035 if (pinfo & MIPS16_INSN_READ_T)
3036 mask |= 1 << TREG;
3037 if (pinfo & MIPS16_INSN_READ_SP)
3038 mask |= 1 << SP;
3039 if (pinfo & MIPS16_INSN_READ_31)
3040 mask |= 1 << RA;
3041 if (pinfo & MIPS16_INSN_READ_Z)
3042 mask |= 1 << (mips16_to_32_reg_map
3043 [MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]);
3044 if (pinfo & MIPS16_INSN_READ_GPR_X)
3045 mask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
3046 }
3047 else
3048 {
3049 if (pinfo2 & INSN2_READ_GPR_D)
3050 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
3051 if (pinfo & INSN_READ_GPR_T)
3052 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
3053 if (pinfo & INSN_READ_GPR_S)
3054 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
3055 if (pinfo2 & INSN2_READ_GP)
3056 mask |= 1 << GP;
3057 if (pinfo2 & INSN2_READ_GPR_31)
3058 mask |= 1 << RA;
3059 if (pinfo2 & INSN2_READ_GPR_Z)
3060 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
3061 }
3062 if (mips_opts.micromips)
3063 {
3064 if (pinfo2 & INSN2_READ_GPR_MC)
3065 mask |= 1 << micromips_to_32_reg_c_map[EXTRACT_OPERAND (1, MC, *ip)];
3066 if (pinfo2 & INSN2_READ_GPR_ME)
3067 mask |= 1 << micromips_to_32_reg_e_map[EXTRACT_OPERAND (1, ME, *ip)];
3068 if (pinfo2 & INSN2_READ_GPR_MG)
3069 mask |= 1 << micromips_to_32_reg_g_map[EXTRACT_OPERAND (1, MG, *ip)];
3070 if (pinfo2 & INSN2_READ_GPR_MJ)
3071 mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
3072 if (pinfo2 & INSN2_READ_GPR_MMN)
3073 {
3074 mask |= 1 << micromips_to_32_reg_m_map[EXTRACT_OPERAND (1, MM, *ip)];
3075 mask |= 1 << micromips_to_32_reg_n_map[EXTRACT_OPERAND (1, MN, *ip)];
3076 }
3077 if (pinfo2 & INSN2_READ_GPR_MP)
3078 mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
3079 if (pinfo2 & INSN2_READ_GPR_MQ)
3080 mask |= 1 << micromips_to_32_reg_q_map[EXTRACT_OPERAND (1, MQ, *ip)];
3081 }
3082 /* Don't include register 0. */
3083 return mask & ~1;
3084 }
3085
3086 /* Return the mask of core registers that IP writes. */
3087
3088 static unsigned int
3089 gpr_write_mask (const struct mips_cl_insn *ip)
3090 {
3091 unsigned long pinfo, pinfo2;
3092 unsigned int mask;
3093
3094 mask = gpr_mod_mask (ip);
3095 pinfo = ip->insn_mo->pinfo;
3096 pinfo2 = ip->insn_mo->pinfo2;
3097 if (mips_opts.mips16)
3098 {
3099 if (pinfo & MIPS16_INSN_WRITE_X)
3100 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
3101 if (pinfo & MIPS16_INSN_WRITE_Y)
3102 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
3103 if (pinfo & MIPS16_INSN_WRITE_Z)
3104 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RZ, *ip)];
3105 if (pinfo & MIPS16_INSN_WRITE_T)
3106 mask |= 1 << TREG;
3107 if (pinfo & MIPS16_INSN_WRITE_SP)
3108 mask |= 1 << SP;
3109 if (pinfo & MIPS16_INSN_WRITE_31)
3110 mask |= 1 << RA;
3111 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
3112 mask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
3113 }
3114 else
3115 {
3116 if (pinfo & INSN_WRITE_GPR_D)
3117 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
3118 if (pinfo & INSN_WRITE_GPR_T)
3119 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
3120 if (pinfo & INSN_WRITE_GPR_S)
3121 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
3122 if (pinfo & INSN_WRITE_GPR_31)
3123 mask |= 1 << RA;
3124 if (pinfo2 & INSN2_WRITE_GPR_Z)
3125 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
3126 }
3127 if (mips_opts.micromips)
3128 {
3129 if (pinfo2 & INSN2_WRITE_GPR_MB)
3130 mask |= 1 << micromips_to_32_reg_b_map[EXTRACT_OPERAND (1, MB, *ip)];
3131 if (pinfo2 & INSN2_WRITE_GPR_MHI)
3132 {
3133 mask |= 1 << micromips_to_32_reg_h_map[EXTRACT_OPERAND (1, MH, *ip)];
3134 mask |= 1 << micromips_to_32_reg_i_map[EXTRACT_OPERAND (1, MI, *ip)];
3135 }
3136 if (pinfo2 & INSN2_WRITE_GPR_MJ)
3137 mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
3138 if (pinfo2 & INSN2_WRITE_GPR_MP)
3139 mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
3140 }
3141 /* Don't include register 0. */
3142 return mask & ~1;
3143 }
3144
3145 /* Return the mask of floating-point registers that IP reads. */
3146
3147 static unsigned int
3148 fpr_read_mask (const struct mips_cl_insn *ip)
3149 {
3150 unsigned long pinfo, pinfo2;
3151 unsigned int mask;
3152
3153 mask = 0;
3154 pinfo = ip->insn_mo->pinfo;
3155 pinfo2 = ip->insn_mo->pinfo2;
3156 if (!mips_opts.mips16)
3157 {
3158 if (pinfo2 & INSN2_READ_FPR_D)
3159 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
3160 if (pinfo & INSN_READ_FPR_S)
3161 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
3162 if (pinfo & INSN_READ_FPR_T)
3163 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
3164 if (pinfo & INSN_READ_FPR_R)
3165 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FR, *ip);
3166 if (pinfo2 & INSN2_READ_FPR_Z)
3167 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
3168 }
3169 /* Conservatively treat all operands to an FP_D instruction are doubles.
3170 (This is overly pessimistic for things like cvt.d.s.) */
3171 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
3172 mask |= mask << 1;
3173 return mask;
3174 }
3175
3176 /* Return the mask of floating-point registers that IP writes. */
3177
3178 static unsigned int
3179 fpr_write_mask (const struct mips_cl_insn *ip)
3180 {
3181 unsigned long pinfo, pinfo2;
3182 unsigned int mask;
3183
3184 mask = 0;
3185 pinfo = ip->insn_mo->pinfo;
3186 pinfo2 = ip->insn_mo->pinfo2;
3187 if (!mips_opts.mips16)
3188 {
3189 if (pinfo & INSN_WRITE_FPR_D)
3190 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
3191 if (pinfo & INSN_WRITE_FPR_S)
3192 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
3193 if (pinfo & INSN_WRITE_FPR_T)
3194 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
3195 if (pinfo2 & INSN2_WRITE_FPR_Z)
3196 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
3197 }
3198 /* Conservatively treat all operands to an FP_D instruction are doubles.
3199 (This is overly pessimistic for things like cvt.s.d.) */
3200 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
3201 mask |= mask << 1;
3202 return mask;
3203 }
3204
3205 /* Classify an instruction according to the FIX_VR4120_* enumeration.
3206 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
3207 by VR4120 errata. */
3208
3209 static unsigned int
3210 classify_vr4120_insn (const char *name)
3211 {
3212 if (strncmp (name, "macc", 4) == 0)
3213 return FIX_VR4120_MACC;
3214 if (strncmp (name, "dmacc", 5) == 0)
3215 return FIX_VR4120_DMACC;
3216 if (strncmp (name, "mult", 4) == 0)
3217 return FIX_VR4120_MULT;
3218 if (strncmp (name, "dmult", 5) == 0)
3219 return FIX_VR4120_DMULT;
3220 if (strstr (name, "div"))
3221 return FIX_VR4120_DIV;
3222 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
3223 return FIX_VR4120_MTHILO;
3224 return NUM_FIX_VR4120_CLASSES;
3225 }
3226
3227 #define INSN_ERET 0x42000018
3228 #define INSN_DERET 0x4200001f
3229
3230 /* Return the number of instructions that must separate INSN1 and INSN2,
3231 where INSN1 is the earlier instruction. Return the worst-case value
3232 for any INSN2 if INSN2 is null. */
3233
3234 static unsigned int
3235 insns_between (const struct mips_cl_insn *insn1,
3236 const struct mips_cl_insn *insn2)
3237 {
3238 unsigned long pinfo1, pinfo2;
3239 unsigned int mask;
3240
3241 /* This function needs to know which pinfo flags are set for INSN2
3242 and which registers INSN2 uses. The former is stored in PINFO2 and
3243 the latter is tested via INSN2_USES_GPR. If INSN2 is null, PINFO2
3244 will have every flag set and INSN2_USES_GPR will always return true. */
3245 pinfo1 = insn1->insn_mo->pinfo;
3246 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
3247
3248 #define INSN2_USES_GPR(REG) \
3249 (insn2 == NULL || (gpr_read_mask (insn2) & (1U << (REG))) != 0)
3250
3251 /* For most targets, write-after-read dependencies on the HI and LO
3252 registers must be separated by at least two instructions. */
3253 if (!hilo_interlocks)
3254 {
3255 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
3256 return 2;
3257 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
3258 return 2;
3259 }
3260
3261 /* If we're working around r7000 errata, there must be two instructions
3262 between an mfhi or mflo and any instruction that uses the result. */
3263 if (mips_7000_hilo_fix
3264 && !mips_opts.micromips
3265 && MF_HILO_INSN (pinfo1)
3266 && INSN2_USES_GPR (EXTRACT_OPERAND (0, RD, *insn1)))
3267 return 2;
3268
3269 /* If we're working around 24K errata, one instruction is required
3270 if an ERET or DERET is followed by a branch instruction. */
3271 if (mips_fix_24k && !mips_opts.micromips)
3272 {
3273 if (insn1->insn_opcode == INSN_ERET
3274 || insn1->insn_opcode == INSN_DERET)
3275 {
3276 if (insn2 == NULL
3277 || insn2->insn_opcode == INSN_ERET
3278 || insn2->insn_opcode == INSN_DERET
3279 || delayed_branch_p (insn2))
3280 return 1;
3281 }
3282 }
3283
3284 /* If working around VR4120 errata, check for combinations that need
3285 a single intervening instruction. */
3286 if (mips_fix_vr4120 && !mips_opts.micromips)
3287 {
3288 unsigned int class1, class2;
3289
3290 class1 = classify_vr4120_insn (insn1->insn_mo->name);
3291 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
3292 {
3293 if (insn2 == NULL)
3294 return 1;
3295 class2 = classify_vr4120_insn (insn2->insn_mo->name);
3296 if (vr4120_conflicts[class1] & (1 << class2))
3297 return 1;
3298 }
3299 }
3300
3301 if (!HAVE_CODE_COMPRESSION)
3302 {
3303 /* Check for GPR or coprocessor load delays. All such delays
3304 are on the RT register. */
3305 /* Itbl support may require additional care here. */
3306 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
3307 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
3308 {
3309 know (pinfo1 & INSN_WRITE_GPR_T);
3310 if (INSN2_USES_GPR (EXTRACT_OPERAND (0, RT, *insn1)))
3311 return 1;
3312 }
3313
3314 /* Check for generic coprocessor hazards.
3315
3316 This case is not handled very well. There is no special
3317 knowledge of CP0 handling, and the coprocessors other than
3318 the floating point unit are not distinguished at all. */
3319 /* Itbl support may require additional care here. FIXME!
3320 Need to modify this to include knowledge about
3321 user specified delays! */
3322 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
3323 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
3324 {
3325 /* Handle cases where INSN1 writes to a known general coprocessor
3326 register. There must be a one instruction delay before INSN2
3327 if INSN2 reads that register, otherwise no delay is needed. */
3328 mask = fpr_write_mask (insn1);
3329 if (mask != 0)
3330 {
3331 if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
3332 return 1;
3333 }
3334 else
3335 {
3336 /* Read-after-write dependencies on the control registers
3337 require a two-instruction gap. */
3338 if ((pinfo1 & INSN_WRITE_COND_CODE)
3339 && (pinfo2 & INSN_READ_COND_CODE))
3340 return 2;
3341
3342 /* We don't know exactly what INSN1 does. If INSN2 is
3343 also a coprocessor instruction, assume there must be
3344 a one instruction gap. */
3345 if (pinfo2 & INSN_COP)
3346 return 1;
3347 }
3348 }
3349
3350 /* Check for read-after-write dependencies on the coprocessor
3351 control registers in cases where INSN1 does not need a general
3352 coprocessor delay. This means that INSN1 is a floating point
3353 comparison instruction. */
3354 /* Itbl support may require additional care here. */
3355 else if (!cop_interlocks
3356 && (pinfo1 & INSN_WRITE_COND_CODE)
3357 && (pinfo2 & INSN_READ_COND_CODE))
3358 return 1;
3359 }
3360
3361 #undef INSN2_USES_GPR
3362
3363 return 0;
3364 }
3365
3366 /* Return the number of nops that would be needed to work around the
3367 VR4130 mflo/mfhi errata if instruction INSN immediately followed
3368 the MAX_VR4130_NOPS instructions described by HIST. Ignore hazards
3369 that are contained within the first IGNORE instructions of HIST. */
3370
3371 static int
3372 nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
3373 const struct mips_cl_insn *insn)
3374 {
3375 int i, j;
3376 unsigned int mask;
3377
3378 /* Check if the instruction writes to HI or LO. MTHI and MTLO
3379 are not affected by the errata. */
3380 if (insn != 0
3381 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
3382 || strcmp (insn->insn_mo->name, "mtlo") == 0
3383 || strcmp (insn->insn_mo->name, "mthi") == 0))
3384 return 0;
3385
3386 /* Search for the first MFLO or MFHI. */
3387 for (i = 0; i < MAX_VR4130_NOPS; i++)
3388 if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
3389 {
3390 /* Extract the destination register. */
3391 mask = gpr_write_mask (&hist[i]);
3392
3393 /* No nops are needed if INSN reads that register. */
3394 if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
3395 return 0;
3396
3397 /* ...or if any of the intervening instructions do. */
3398 for (j = 0; j < i; j++)
3399 if (gpr_read_mask (&hist[j]) & mask)
3400 return 0;
3401
3402 if (i >= ignore)
3403 return MAX_VR4130_NOPS - i;
3404 }
3405 return 0;
3406 }
3407
3408 #define BASE_REG_EQ(INSN1, INSN2) \
3409 ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
3410 == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
3411
3412 /* Return the minimum alignment for this store instruction. */
3413
3414 static int
3415 fix_24k_align_to (const struct mips_opcode *mo)
3416 {
3417 if (strcmp (mo->name, "sh") == 0)
3418 return 2;
3419
3420 if (strcmp (mo->name, "swc1") == 0
3421 || strcmp (mo->name, "swc2") == 0
3422 || strcmp (mo->name, "sw") == 0
3423 || strcmp (mo->name, "sc") == 0
3424 || strcmp (mo->name, "s.s") == 0)
3425 return 4;
3426
3427 if (strcmp (mo->name, "sdc1") == 0
3428 || strcmp (mo->name, "sdc2") == 0
3429 || strcmp (mo->name, "s.d") == 0)
3430 return 8;
3431
3432 /* sb, swl, swr */
3433 return 1;
3434 }
3435
3436 struct fix_24k_store_info
3437 {
3438 /* Immediate offset, if any, for this store instruction. */
3439 short off;
3440 /* Alignment required by this store instruction. */
3441 int align_to;
3442 /* True for register offsets. */
3443 int register_offset;
3444 };
3445
3446 /* Comparison function used by qsort. */
3447
3448 static int
3449 fix_24k_sort (const void *a, const void *b)
3450 {
3451 const struct fix_24k_store_info *pos1 = a;
3452 const struct fix_24k_store_info *pos2 = b;
3453
3454 return (pos1->off - pos2->off);
3455 }
3456
3457 /* INSN is a store instruction. Try to record the store information
3458 in STINFO. Return false if the information isn't known. */
3459
3460 static bfd_boolean
3461 fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
3462 const struct mips_cl_insn *insn)
3463 {
3464 /* The instruction must have a known offset. */
3465 if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
3466 return FALSE;
3467
3468 stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
3469 stinfo->align_to = fix_24k_align_to (insn->insn_mo);
3470 return TRUE;
3471 }
3472
3473 /* Return the number of nops that would be needed to work around the 24k
3474 "lost data on stores during refill" errata if instruction INSN
3475 immediately followed the 2 instructions described by HIST.
3476 Ignore hazards that are contained within the first IGNORE
3477 instructions of HIST.
3478
3479 Problem: The FSB (fetch store buffer) acts as an intermediate buffer
3480 for the data cache refills and store data. The following describes
3481 the scenario where the store data could be lost.
3482
3483 * A data cache miss, due to either a load or a store, causing fill
3484 data to be supplied by the memory subsystem
3485 * The first three doublewords of fill data are returned and written
3486 into the cache
3487 * A sequence of four stores occurs in consecutive cycles around the
3488 final doubleword of the fill:
3489 * Store A
3490 * Store B
3491 * Store C
3492 * Zero, One or more instructions
3493 * Store D
3494
3495 The four stores A-D must be to different doublewords of the line that
3496 is being filled. The fourth instruction in the sequence above permits
3497 the fill of the final doubleword to be transferred from the FSB into
3498 the cache. In the sequence above, the stores may be either integer
3499 (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
3500 swxc1, sdxc1, suxc1) stores, as long as the four stores are to
3501 different doublewords on the line. If the floating point unit is
3502 running in 1:2 mode, it is not possible to create the sequence above
3503 using only floating point store instructions.
3504
3505 In this case, the cache line being filled is incorrectly marked
3506 invalid, thereby losing the data from any store to the line that
3507 occurs between the original miss and the completion of the five
3508 cycle sequence shown above.
3509
3510 The workarounds are:
3511
3512 * Run the data cache in write-through mode.
3513 * Insert a non-store instruction between
3514 Store A and Store B or Store B and Store C. */
3515
3516 static int
3517 nops_for_24k (int ignore, const struct mips_cl_insn *hist,
3518 const struct mips_cl_insn *insn)
3519 {
3520 struct fix_24k_store_info pos[3];
3521 int align, i, base_offset;
3522
3523 if (ignore >= 2)
3524 return 0;
3525
3526 /* If the previous instruction wasn't a store, there's nothing to
3527 worry about. */
3528 if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
3529 return 0;
3530
3531 /* If the instructions after the previous one are unknown, we have
3532 to assume the worst. */
3533 if (!insn)
3534 return 1;
3535
3536 /* Check whether we are dealing with three consecutive stores. */
3537 if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
3538 || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
3539 return 0;
3540
3541 /* If we don't know the relationship between the store addresses,
3542 assume the worst. */
3543 if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
3544 || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
3545 return 1;
3546
3547 if (!fix_24k_record_store_info (&pos[0], insn)
3548 || !fix_24k_record_store_info (&pos[1], &hist[0])
3549 || !fix_24k_record_store_info (&pos[2], &hist[1]))
3550 return 1;
3551
3552 qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
3553
3554 /* Pick a value of ALIGN and X such that all offsets are adjusted by
3555 X bytes and such that the base register + X is known to be aligned
3556 to align bytes. */
3557
3558 if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
3559 align = 8;
3560 else
3561 {
3562 align = pos[0].align_to;
3563 base_offset = pos[0].off;
3564 for (i = 1; i < 3; i++)
3565 if (align < pos[i].align_to)
3566 {
3567 align = pos[i].align_to;
3568 base_offset = pos[i].off;
3569 }
3570 for (i = 0; i < 3; i++)
3571 pos[i].off -= base_offset;
3572 }
3573
3574 pos[0].off &= ~align + 1;
3575 pos[1].off &= ~align + 1;
3576 pos[2].off &= ~align + 1;
3577
3578 /* If any two stores write to the same chunk, they also write to the
3579 same doubleword. The offsets are still sorted at this point. */
3580 if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
3581 return 0;
3582
3583 /* A range of at least 9 bytes is needed for the stores to be in
3584 non-overlapping doublewords. */
3585 if (pos[2].off - pos[0].off <= 8)
3586 return 0;
3587
3588 if (pos[2].off - pos[1].off >= 24
3589 || pos[1].off - pos[0].off >= 24
3590 || pos[2].off - pos[0].off >= 32)
3591 return 0;
3592
3593 return 1;
3594 }
3595
3596 /* Return the number of nops that would be needed if instruction INSN
3597 immediately followed the MAX_NOPS instructions given by HIST,
3598 where HIST[0] is the most recent instruction. Ignore hazards
3599 between INSN and the first IGNORE instructions in HIST.
3600
3601 If INSN is null, return the worse-case number of nops for any
3602 instruction. */
3603
3604 static int
3605 nops_for_insn (int ignore, const struct mips_cl_insn *hist,
3606 const struct mips_cl_insn *insn)
3607 {
3608 int i, nops, tmp_nops;
3609
3610 nops = 0;
3611 for (i = ignore; i < MAX_DELAY_NOPS; i++)
3612 {
3613 tmp_nops = insns_between (hist + i, insn) - i;
3614 if (tmp_nops > nops)
3615 nops = tmp_nops;
3616 }
3617
3618 if (mips_fix_vr4130 && !mips_opts.micromips)
3619 {
3620 tmp_nops = nops_for_vr4130 (ignore, hist, insn);
3621 if (tmp_nops > nops)
3622 nops = tmp_nops;
3623 }
3624
3625 if (mips_fix_24k && !mips_opts.micromips)
3626 {
3627 tmp_nops = nops_for_24k (ignore, hist, insn);
3628 if (tmp_nops > nops)
3629 nops = tmp_nops;
3630 }
3631
3632 return nops;
3633 }
3634
3635 /* The variable arguments provide NUM_INSNS extra instructions that
3636 might be added to HIST. Return the largest number of nops that
3637 would be needed after the extended sequence, ignoring hazards
3638 in the first IGNORE instructions. */
3639
3640 static int
3641 nops_for_sequence (int num_insns, int ignore,
3642 const struct mips_cl_insn *hist, ...)
3643 {
3644 va_list args;
3645 struct mips_cl_insn buffer[MAX_NOPS];
3646 struct mips_cl_insn *cursor;
3647 int nops;
3648
3649 va_start (args, hist);
3650 cursor = buffer + num_insns;
3651 memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
3652 while (cursor > buffer)
3653 *--cursor = *va_arg (args, const struct mips_cl_insn *);
3654
3655 nops = nops_for_insn (ignore, buffer, NULL);
3656 va_end (args);
3657 return nops;
3658 }
3659
3660 /* Like nops_for_insn, but if INSN is a branch, take into account the
3661 worst-case delay for the branch target. */
3662
3663 static int
3664 nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
3665 const struct mips_cl_insn *insn)
3666 {
3667 int nops, tmp_nops;
3668
3669 nops = nops_for_insn (ignore, hist, insn);
3670 if (delayed_branch_p (insn))
3671 {
3672 tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
3673 hist, insn, get_delay_slot_nop (insn));
3674 if (tmp_nops > nops)
3675 nops = tmp_nops;
3676 }
3677 else if (compact_branch_p (insn))
3678 {
3679 tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
3680 if (tmp_nops > nops)
3681 nops = tmp_nops;
3682 }
3683 return nops;
3684 }
3685
3686 /* Fix NOP issue: Replace nops by "or at,at,zero". */
3687
3688 static void
3689 fix_loongson2f_nop (struct mips_cl_insn * ip)
3690 {
3691 gas_assert (!HAVE_CODE_COMPRESSION);
3692 if (strcmp (ip->insn_mo->name, "nop") == 0)
3693 ip->insn_opcode = LOONGSON2F_NOP_INSN;
3694 }
3695
3696 /* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
3697 jr target pc &= 'hffff_ffff_cfff_ffff. */
3698
3699 static void
3700 fix_loongson2f_jump (struct mips_cl_insn * ip)
3701 {
3702 gas_assert (!HAVE_CODE_COMPRESSION);
3703 if (strcmp (ip->insn_mo->name, "j") == 0
3704 || strcmp (ip->insn_mo->name, "jr") == 0
3705 || strcmp (ip->insn_mo->name, "jalr") == 0)
3706 {
3707 int sreg;
3708 expressionS ep;
3709
3710 if (! mips_opts.at)
3711 return;
3712
3713 sreg = EXTRACT_OPERAND (0, RS, *ip);
3714 if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
3715 return;
3716
3717 ep.X_op = O_constant;
3718 ep.X_add_number = 0xcfff0000;
3719 macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
3720 ep.X_add_number = 0xffff;
3721 macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
3722 macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
3723 }
3724 }
3725
3726 static void
3727 fix_loongson2f (struct mips_cl_insn * ip)
3728 {
3729 if (mips_fix_loongson2f_nop)
3730 fix_loongson2f_nop (ip);
3731
3732 if (mips_fix_loongson2f_jump)
3733 fix_loongson2f_jump (ip);
3734 }
3735
3736 /* IP is a branch that has a delay slot, and we need to fill it
3737 automatically. Return true if we can do that by swapping IP
3738 with the previous instruction. */
3739
3740 static bfd_boolean
3741 can_swap_branch_p (struct mips_cl_insn *ip)
3742 {
3743 unsigned long pinfo, pinfo2, prev_pinfo, prev_pinfo2;
3744 unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
3745
3746 /* -O2 and above is required for this optimization. */
3747 if (mips_optimize < 2)
3748 return FALSE;
3749
3750 /* If we have seen .set volatile or .set nomove, don't optimize. */
3751 if (mips_opts.nomove)
3752 return FALSE;
3753
3754 /* We can't swap if the previous instruction's position is fixed. */
3755 if (history[0].fixed_p)
3756 return FALSE;
3757
3758 /* If the previous previous insn was in a .set noreorder, we can't
3759 swap. Actually, the MIPS assembler will swap in this situation.
3760 However, gcc configured -with-gnu-as will generate code like
3761
3762 .set noreorder
3763 lw $4,XXX
3764 .set reorder
3765 INSN
3766 bne $4,$0,foo
3767
3768 in which we can not swap the bne and INSN. If gcc is not configured
3769 -with-gnu-as, it does not output the .set pseudo-ops. */
3770 if (history[1].noreorder_p)
3771 return FALSE;
3772
3773 /* If the previous instruction had a fixup in mips16 mode, we can not swap.
3774 This means that the previous instruction was a 4-byte one anyhow. */
3775 if (mips_opts.mips16 && history[0].fixp[0])
3776 return FALSE;
3777
3778 /* If the branch is itself the target of a branch, we can not swap.
3779 We cheat on this; all we check for is whether there is a label on
3780 this instruction. If there are any branches to anything other than
3781 a label, users must use .set noreorder. */
3782 if (seg_info (now_seg)->label_list)
3783 return FALSE;
3784
3785 /* If the previous instruction is in a variant frag other than this
3786 branch's one, we cannot do the swap. This does not apply to
3787 MIPS16 code, which uses variant frags for different purposes. */
3788 if (!mips_opts.mips16
3789 && history[0].frag
3790 && history[0].frag->fr_type == rs_machine_dependent)
3791 return FALSE;
3792
3793 /* We do not swap with instructions that cannot architecturally
3794 be placed in a branch delay slot, such as SYNC or ERET. We
3795 also refrain from swapping with a trap instruction, since it
3796 complicates trap handlers to have the trap instruction be in
3797 a delay slot. */
3798 prev_pinfo = history[0].insn_mo->pinfo;
3799 if (prev_pinfo & INSN_NO_DELAY_SLOT)
3800 return FALSE;
3801
3802 /* Check for conflicts between the branch and the instructions
3803 before the candidate delay slot. */
3804 if (nops_for_insn (0, history + 1, ip) > 0)
3805 return FALSE;
3806
3807 /* Check for conflicts between the swapped sequence and the
3808 target of the branch. */
3809 if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
3810 return FALSE;
3811
3812 /* If the branch reads a register that the previous
3813 instruction sets, we can not swap. */
3814 gpr_read = gpr_read_mask (ip);
3815 prev_gpr_write = gpr_write_mask (&history[0]);
3816 if (gpr_read & prev_gpr_write)
3817 return FALSE;
3818
3819 /* If the branch writes a register that the previous
3820 instruction sets, we can not swap. */
3821 gpr_write = gpr_write_mask (ip);
3822 if (gpr_write & prev_gpr_write)
3823 return FALSE;
3824
3825 /* If the branch writes a register that the previous
3826 instruction reads, we can not swap. */
3827 prev_gpr_read = gpr_read_mask (&history[0]);
3828 if (gpr_write & prev_gpr_read)
3829 return FALSE;
3830
3831 /* If one instruction sets a condition code and the
3832 other one uses a condition code, we can not swap. */
3833 pinfo = ip->insn_mo->pinfo;
3834 if ((pinfo & INSN_READ_COND_CODE)
3835 && (prev_pinfo & INSN_WRITE_COND_CODE))
3836 return FALSE;
3837 if ((pinfo & INSN_WRITE_COND_CODE)
3838 && (prev_pinfo & INSN_READ_COND_CODE))
3839 return FALSE;
3840
3841 /* If the previous instruction uses the PC, we can not swap. */
3842 prev_pinfo2 = history[0].insn_mo->pinfo2;
3843 if (mips_opts.mips16 && (prev_pinfo & MIPS16_INSN_READ_PC))
3844 return FALSE;
3845 if (mips_opts.micromips && (prev_pinfo2 & INSN2_READ_PC))
3846 return FALSE;
3847
3848 /* If the previous instruction has an incorrect size for a fixed
3849 branch delay slot in microMIPS mode, we cannot swap. */
3850 pinfo2 = ip->insn_mo->pinfo2;
3851 if (mips_opts.micromips
3852 && (pinfo2 & INSN2_BRANCH_DELAY_16BIT)
3853 && insn_length (history) != 2)
3854 return FALSE;
3855 if (mips_opts.micromips
3856 && (pinfo2 & INSN2_BRANCH_DELAY_32BIT)
3857 && insn_length (history) != 4)
3858 return FALSE;
3859
3860 return TRUE;
3861 }
3862
3863 /* Decide how we should add IP to the instruction stream. */
3864
3865 static enum append_method
3866 get_append_method (struct mips_cl_insn *ip)
3867 {
3868 unsigned long pinfo;
3869
3870 /* The relaxed version of a macro sequence must be inherently
3871 hazard-free. */
3872 if (mips_relax.sequence == 2)
3873 return APPEND_ADD;
3874
3875 /* We must not dabble with instructions in a ".set norerorder" block. */
3876 if (mips_opts.noreorder)
3877 return APPEND_ADD;
3878
3879 /* Otherwise, it's our responsibility to fill branch delay slots. */
3880 if (delayed_branch_p (ip))
3881 {
3882 if (!branch_likely_p (ip) && can_swap_branch_p (ip))
3883 return APPEND_SWAP;
3884
3885 pinfo = ip->insn_mo->pinfo;
3886 if (mips_opts.mips16
3887 && ISA_SUPPORTS_MIPS16E
3888 && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31)))
3889 return APPEND_ADD_COMPACT;
3890
3891 return APPEND_ADD_WITH_NOP;
3892 }
3893
3894 return APPEND_ADD;
3895 }
3896
3897 /* IP is a MIPS16 instruction whose opcode we have just changed.
3898 Point IP->insn_mo to the new opcode's definition. */
3899
3900 static void
3901 find_altered_mips16_opcode (struct mips_cl_insn *ip)
3902 {
3903 const struct mips_opcode *mo, *end;
3904
3905 end = &mips16_opcodes[bfd_mips16_num_opcodes];
3906 for (mo = ip->insn_mo; mo < end; mo++)
3907 if ((ip->insn_opcode & mo->mask) == mo->match)
3908 {
3909 ip->insn_mo = mo;
3910 return;
3911 }
3912 abort ();
3913 }
3914
3915 /* For microMIPS macros, we need to generate a local number label
3916 as the target of branches. */
3917 #define MICROMIPS_LABEL_CHAR '\037'
3918 static unsigned long micromips_target_label;
3919 static char micromips_target_name[32];
3920
3921 static char *
3922 micromips_label_name (void)
3923 {
3924 char *p = micromips_target_name;
3925 char symbol_name_temporary[24];
3926 unsigned long l;
3927 int i;
3928
3929 if (*p)
3930 return p;
3931
3932 i = 0;
3933 l = micromips_target_label;
3934 #ifdef LOCAL_LABEL_PREFIX
3935 *p++ = LOCAL_LABEL_PREFIX;
3936 #endif
3937 *p++ = 'L';
3938 *p++ = MICROMIPS_LABEL_CHAR;
3939 do
3940 {
3941 symbol_name_temporary[i++] = l % 10 + '0';
3942 l /= 10;
3943 }
3944 while (l != 0);
3945 while (i > 0)
3946 *p++ = symbol_name_temporary[--i];
3947 *p = '\0';
3948
3949 return micromips_target_name;
3950 }
3951
3952 static void
3953 micromips_label_expr (expressionS *label_expr)
3954 {
3955 label_expr->X_op = O_symbol;
3956 label_expr->X_add_symbol = symbol_find_or_make (micromips_label_name ());
3957 label_expr->X_add_number = 0;
3958 }
3959
3960 static void
3961 micromips_label_inc (void)
3962 {
3963 micromips_target_label++;
3964 *micromips_target_name = '\0';
3965 }
3966
3967 static void
3968 micromips_add_label (void)
3969 {
3970 symbolS *s;
3971
3972 s = colon (micromips_label_name ());
3973 micromips_label_inc ();
3974 #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
3975 if (IS_ELF)
3976 S_SET_OTHER (s, ELF_ST_SET_MICROMIPS (S_GET_OTHER (s)));
3977 #else
3978 (void) s;
3979 #endif
3980 }
3981
3982 /* If assembling microMIPS code, then return the microMIPS reloc
3983 corresponding to the requested one if any. Otherwise return
3984 the reloc unchanged. */
3985
3986 static bfd_reloc_code_real_type
3987 micromips_map_reloc (bfd_reloc_code_real_type reloc)
3988 {
3989 static const bfd_reloc_code_real_type relocs[][2] =
3990 {
3991 /* Keep sorted incrementally by the left-hand key. */
3992 { BFD_RELOC_16_PCREL_S2, BFD_RELOC_MICROMIPS_16_PCREL_S1 },
3993 { BFD_RELOC_GPREL16, BFD_RELOC_MICROMIPS_GPREL16 },
3994 { BFD_RELOC_MIPS_JMP, BFD_RELOC_MICROMIPS_JMP },
3995 { BFD_RELOC_HI16, BFD_RELOC_MICROMIPS_HI16 },
3996 { BFD_RELOC_HI16_S, BFD_RELOC_MICROMIPS_HI16_S },
3997 { BFD_RELOC_LO16, BFD_RELOC_MICROMIPS_LO16 },
3998 { BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MICROMIPS_LITERAL },
3999 { BFD_RELOC_MIPS_GOT16, BFD_RELOC_MICROMIPS_GOT16 },
4000 { BFD_RELOC_MIPS_CALL16, BFD_RELOC_MICROMIPS_CALL16 },
4001 { BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MICROMIPS_GOT_HI16 },
4002 { BFD_RELOC_MIPS_GOT_LO16, BFD_RELOC_MICROMIPS_GOT_LO16 },
4003 { BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MICROMIPS_CALL_HI16 },
4004 { BFD_RELOC_MIPS_CALL_LO16, BFD_RELOC_MICROMIPS_CALL_LO16 },
4005 { BFD_RELOC_MIPS_SUB, BFD_RELOC_MICROMIPS_SUB },
4006 { BFD_RELOC_MIPS_GOT_PAGE, BFD_RELOC_MICROMIPS_GOT_PAGE },
4007 { BFD_RELOC_MIPS_GOT_OFST, BFD_RELOC_MICROMIPS_GOT_OFST },
4008 { BFD_RELOC_MIPS_GOT_DISP, BFD_RELOC_MICROMIPS_GOT_DISP },
4009 { BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MICROMIPS_HIGHEST },
4010 { BFD_RELOC_MIPS_HIGHER, BFD_RELOC_MICROMIPS_HIGHER },
4011 { BFD_RELOC_MIPS_SCN_DISP, BFD_RELOC_MICROMIPS_SCN_DISP },
4012 { BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MICROMIPS_TLS_GD },
4013 { BFD_RELOC_MIPS_TLS_LDM, BFD_RELOC_MICROMIPS_TLS_LDM },
4014 { BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 },
4015 { BFD_RELOC_MIPS_TLS_DTPREL_LO16, BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 },
4016 { BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MICROMIPS_TLS_GOTTPREL },
4017 { BFD_RELOC_MIPS_TLS_TPREL_HI16, BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 },
4018 { BFD_RELOC_MIPS_TLS_TPREL_LO16, BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 }
4019 };
4020 bfd_reloc_code_real_type r;
4021 size_t i;
4022
4023 if (!mips_opts.micromips)
4024 return reloc;
4025 for (i = 0; i < ARRAY_SIZE (relocs); i++)
4026 {
4027 r = relocs[i][0];
4028 if (r > reloc)
4029 return reloc;
4030 if (r == reloc)
4031 return relocs[i][1];
4032 }
4033 return reloc;
4034 }
4035
4036 /* Try to resolve relocation RELOC against constant OPERAND at assembly time.
4037 Return true on success, storing the resolved value in RESULT. */
4038
4039 static bfd_boolean
4040 calculate_reloc (bfd_reloc_code_real_type reloc, offsetT operand,
4041 offsetT *result)
4042 {
4043 switch (reloc)
4044 {
4045 case BFD_RELOC_MIPS_HIGHEST:
4046 case BFD_RELOC_MICROMIPS_HIGHEST:
4047 *result = ((operand + 0x800080008000ull) >> 48) & 0xffff;
4048 return TRUE;
4049
4050 case BFD_RELOC_MIPS_HIGHER:
4051 case BFD_RELOC_MICROMIPS_HIGHER:
4052 *result = ((operand + 0x80008000ull) >> 32) & 0xffff;
4053 return TRUE;
4054
4055 case BFD_RELOC_HI16_S:
4056 case BFD_RELOC_MICROMIPS_HI16_S:
4057 case BFD_RELOC_MIPS16_HI16_S:
4058 *result = ((operand + 0x8000) >> 16) & 0xffff;
4059 return TRUE;
4060
4061 case BFD_RELOC_HI16:
4062 case BFD_RELOC_MICROMIPS_HI16:
4063 case BFD_RELOC_MIPS16_HI16:
4064 *result = (operand >> 16) & 0xffff;
4065 return TRUE;
4066
4067 case BFD_RELOC_LO16:
4068 case BFD_RELOC_MICROMIPS_LO16:
4069 case BFD_RELOC_MIPS16_LO16:
4070 *result = operand & 0xffff;
4071 return TRUE;
4072
4073 case BFD_RELOC_UNUSED:
4074 *result = operand;
4075 return TRUE;
4076
4077 default:
4078 return FALSE;
4079 }
4080 }
4081
4082 /* Output an instruction. IP is the instruction information.
4083 ADDRESS_EXPR is an operand of the instruction to be used with
4084 RELOC_TYPE. EXPANSIONP is true if the instruction is part of
4085 a macro expansion. */
4086
4087 static void
4088 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
4089 bfd_reloc_code_real_type *reloc_type, bfd_boolean expansionp)
4090 {
4091 unsigned long prev_pinfo2, pinfo;
4092 bfd_boolean relaxed_branch = FALSE;
4093 enum append_method method;
4094 bfd_boolean relax32;
4095 int branch_disp;
4096
4097 if (mips_fix_loongson2f && !HAVE_CODE_COMPRESSION)
4098 fix_loongson2f (ip);
4099
4100 file_ase_mips16 |= mips_opts.mips16;
4101 file_ase_micromips |= mips_opts.micromips;
4102
4103 prev_pinfo2 = history[0].insn_mo->pinfo2;
4104 pinfo = ip->insn_mo->pinfo;
4105
4106 if (mips_opts.micromips
4107 && !expansionp
4108 && (((prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
4109 && micromips_insn_length (ip->insn_mo) != 2)
4110 || ((prev_pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
4111 && micromips_insn_length (ip->insn_mo) != 4)))
4112 as_warn (_("Wrong size instruction in a %u-bit branch delay slot"),
4113 (prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0 ? 16 : 32);
4114
4115 if (address_expr == NULL)
4116 ip->complete_p = 1;
4117 else if (reloc_type[0] <= BFD_RELOC_UNUSED
4118 && reloc_type[1] == BFD_RELOC_UNUSED
4119 && reloc_type[2] == BFD_RELOC_UNUSED
4120 && address_expr->X_op == O_constant)
4121 {
4122 switch (*reloc_type)
4123 {
4124 case BFD_RELOC_MIPS_JMP:
4125 {
4126 int shift;
4127
4128 shift = mips_opts.micromips ? 1 : 2;
4129 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
4130 as_bad (_("jump to misaligned address (0x%lx)"),
4131 (unsigned long) address_expr->X_add_number);
4132 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
4133 & 0x3ffffff);
4134 ip->complete_p = 1;
4135 }
4136 break;
4137
4138 case BFD_RELOC_MIPS16_JMP:
4139 if ((address_expr->X_add_number & 3) != 0)
4140 as_bad (_("jump to misaligned address (0x%lx)"),
4141 (unsigned long) address_expr->X_add_number);
4142 ip->insn_opcode |=
4143 (((address_expr->X_add_number & 0x7c0000) << 3)
4144 | ((address_expr->X_add_number & 0xf800000) >> 7)
4145 | ((address_expr->X_add_number & 0x3fffc) >> 2));
4146 ip->complete_p = 1;
4147 break;
4148
4149 case BFD_RELOC_16_PCREL_S2:
4150 {
4151 int shift;
4152
4153 shift = mips_opts.micromips ? 1 : 2;
4154 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
4155 as_bad (_("branch to misaligned address (0x%lx)"),
4156 (unsigned long) address_expr->X_add_number);
4157 if (!mips_relax_branch)
4158 {
4159 if ((address_expr->X_add_number + (1 << (shift + 15)))
4160 & ~((1 << (shift + 16)) - 1))
4161 as_bad (_("branch address range overflow (0x%lx)"),
4162 (unsigned long) address_expr->X_add_number);
4163 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
4164 & 0xffff);
4165 }
4166 }
4167 break;
4168
4169 default:
4170 {
4171 offsetT value;
4172
4173 if (calculate_reloc (*reloc_type, address_expr->X_add_number,
4174 &value))
4175 {
4176 ip->insn_opcode |= value & 0xffff;
4177 ip->complete_p = 1;
4178 }
4179 }
4180 break;
4181 }
4182 }
4183
4184 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
4185 {
4186 /* There are a lot of optimizations we could do that we don't.
4187 In particular, we do not, in general, reorder instructions.
4188 If you use gcc with optimization, it will reorder
4189 instructions and generally do much more optimization then we
4190 do here; repeating all that work in the assembler would only
4191 benefit hand written assembly code, and does not seem worth
4192 it. */
4193 int nops = (mips_optimize == 0
4194 ? nops_for_insn (0, history, NULL)
4195 : nops_for_insn_or_target (0, history, ip));
4196 if (nops > 0)
4197 {
4198 fragS *old_frag;
4199 unsigned long old_frag_offset;
4200 int i;
4201
4202 old_frag = frag_now;
4203 old_frag_offset = frag_now_fix ();
4204
4205 for (i = 0; i < nops; i++)
4206 add_fixed_insn (NOP_INSN);
4207 insert_into_history (0, nops, NOP_INSN);
4208
4209 if (listing)
4210 {
4211 listing_prev_line ();
4212 /* We may be at the start of a variant frag. In case we
4213 are, make sure there is enough space for the frag
4214 after the frags created by listing_prev_line. The
4215 argument to frag_grow here must be at least as large
4216 as the argument to all other calls to frag_grow in
4217 this file. We don't have to worry about being in the
4218 middle of a variant frag, because the variants insert
4219 all needed nop instructions themselves. */
4220 frag_grow (40);
4221 }
4222
4223 mips_move_text_labels ();
4224
4225 #ifndef NO_ECOFF_DEBUGGING
4226 if (ECOFF_DEBUGGING)
4227 ecoff_fix_loc (old_frag, old_frag_offset);
4228 #endif
4229 }
4230 }
4231 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
4232 {
4233 int nops;
4234
4235 /* Work out how many nops in prev_nop_frag are needed by IP,
4236 ignoring hazards generated by the first prev_nop_frag_since
4237 instructions. */
4238 nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
4239 gas_assert (nops <= prev_nop_frag_holds);
4240
4241 /* Enforce NOPS as a minimum. */
4242 if (nops > prev_nop_frag_required)
4243 prev_nop_frag_required = nops;
4244
4245 if (prev_nop_frag_holds == prev_nop_frag_required)
4246 {
4247 /* Settle for the current number of nops. Update the history
4248 accordingly (for the benefit of any future .set reorder code). */
4249 prev_nop_frag = NULL;
4250 insert_into_history (prev_nop_frag_since,
4251 prev_nop_frag_holds, NOP_INSN);
4252 }
4253 else
4254 {
4255 /* Allow this instruction to replace one of the nops that was
4256 tentatively added to prev_nop_frag. */
4257 prev_nop_frag->fr_fix -= NOP_INSN_SIZE;
4258 prev_nop_frag_holds--;
4259 prev_nop_frag_since++;
4260 }
4261 }
4262
4263 method = get_append_method (ip);
4264 branch_disp = method == APPEND_SWAP ? insn_length (history) : 0;
4265
4266 #ifdef OBJ_ELF
4267 /* The value passed to dwarf2_emit_insn is the distance between
4268 the beginning of the current instruction and the address that
4269 should be recorded in the debug tables. This is normally the
4270 current address.
4271
4272 For MIPS16/microMIPS debug info we want to use ISA-encoded
4273 addresses, so we use -1 for an address higher by one than the
4274 current one.
4275
4276 If the instruction produced is a branch that we will swap with
4277 the preceding instruction, then we add the displacement by which
4278 the branch will be moved backwards. This is more appropriate
4279 and for MIPS16/microMIPS code also prevents a debugger from
4280 placing a breakpoint in the middle of the branch (and corrupting
4281 code if software breakpoints are used). */
4282 dwarf2_emit_insn ((HAVE_CODE_COMPRESSION ? -1 : 0) + branch_disp);
4283 #endif
4284
4285 relax32 = (mips_relax_branch
4286 /* Don't try branch relaxation within .set nomacro, or within
4287 .set noat if we use $at for PIC computations. If it turns
4288 out that the branch was out-of-range, we'll get an error. */
4289 && !mips_opts.warn_about_macros
4290 && (mips_opts.at || mips_pic == NO_PIC)
4291 /* Don't relax BPOSGE32/64 as they have no complementing
4292 branches. */
4293 && !(ip->insn_mo->membership & (INSN_DSP64 | INSN_DSP)));
4294
4295 if (!HAVE_CODE_COMPRESSION
4296 && address_expr
4297 && relax32
4298 && *reloc_type == BFD_RELOC_16_PCREL_S2
4299 && delayed_branch_p (ip))
4300 {
4301 relaxed_branch = TRUE;
4302 add_relaxed_insn (ip, (relaxed_branch_length
4303 (NULL, NULL,
4304 uncond_branch_p (ip) ? -1
4305 : branch_likely_p (ip) ? 1
4306 : 0)), 4,
4307 RELAX_BRANCH_ENCODE
4308 (AT,
4309 uncond_branch_p (ip),
4310 branch_likely_p (ip),
4311 pinfo & INSN_WRITE_GPR_31,
4312 0),
4313 address_expr->X_add_symbol,
4314 address_expr->X_add_number);
4315 *reloc_type = BFD_RELOC_UNUSED;
4316 }
4317 else if (mips_opts.micromips
4318 && address_expr
4319 && ((relax32 && *reloc_type == BFD_RELOC_16_PCREL_S2)
4320 || *reloc_type > BFD_RELOC_UNUSED)
4321 && (delayed_branch_p (ip) || compact_branch_p (ip))
4322 /* Don't try branch relaxation when users specify
4323 16-bit/32-bit instructions. */
4324 && !forced_insn_length)
4325 {
4326 bfd_boolean relax16 = *reloc_type > BFD_RELOC_UNUSED;
4327 int type = relax16 ? *reloc_type - BFD_RELOC_UNUSED : 0;
4328 int uncond = uncond_branch_p (ip) ? -1 : 0;
4329 int compact = compact_branch_p (ip);
4330 int al = pinfo & INSN_WRITE_GPR_31;
4331 int length32;
4332
4333 gas_assert (address_expr != NULL);
4334 gas_assert (!mips_relax.sequence);
4335
4336 relaxed_branch = TRUE;
4337 length32 = relaxed_micromips_32bit_branch_length (NULL, NULL, uncond);
4338 add_relaxed_insn (ip, relax32 ? length32 : 4, relax16 ? 2 : 4,
4339 RELAX_MICROMIPS_ENCODE (type, AT, uncond, compact, al,
4340 relax32, 0, 0),
4341 address_expr->X_add_symbol,
4342 address_expr->X_add_number);
4343 *reloc_type = BFD_RELOC_UNUSED;
4344 }
4345 else if (mips_opts.mips16 && *reloc_type > BFD_RELOC_UNUSED)
4346 {
4347 /* We need to set up a variant frag. */
4348 gas_assert (address_expr != NULL);
4349 add_relaxed_insn (ip, 4, 0,
4350 RELAX_MIPS16_ENCODE
4351 (*reloc_type - BFD_RELOC_UNUSED,
4352 forced_insn_length == 2, forced_insn_length == 4,
4353 delayed_branch_p (&history[0]),
4354 history[0].mips16_absolute_jump_p),
4355 make_expr_symbol (address_expr), 0);
4356 }
4357 else if (mips_opts.mips16 && insn_length (ip) == 2)
4358 {
4359 if (!delayed_branch_p (ip))
4360 /* Make sure there is enough room to swap this instruction with
4361 a following jump instruction. */
4362 frag_grow (6);
4363 add_fixed_insn (ip);
4364 }
4365 else
4366 {
4367 if (mips_opts.mips16
4368 && mips_opts.noreorder
4369 && delayed_branch_p (&history[0]))
4370 as_warn (_("extended instruction in delay slot"));
4371
4372 if (mips_relax.sequence)
4373 {
4374 /* If we've reached the end of this frag, turn it into a variant
4375 frag and record the information for the instructions we've
4376 written so far. */
4377 if (frag_room () < 4)
4378 relax_close_frag ();
4379 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (ip);
4380 }
4381
4382 if (mips_relax.sequence != 2)
4383 {
4384 if (mips_macro_warning.first_insn_sizes[0] == 0)
4385 mips_macro_warning.first_insn_sizes[0] = insn_length (ip);
4386 mips_macro_warning.sizes[0] += insn_length (ip);
4387 mips_macro_warning.insns[0]++;
4388 }
4389 if (mips_relax.sequence != 1)
4390 {
4391 if (mips_macro_warning.first_insn_sizes[1] == 0)
4392 mips_macro_warning.first_insn_sizes[1] = insn_length (ip);
4393 mips_macro_warning.sizes[1] += insn_length (ip);
4394 mips_macro_warning.insns[1]++;
4395 }
4396
4397 if (mips_opts.mips16)
4398 {
4399 ip->fixed_p = 1;
4400 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
4401 }
4402 add_fixed_insn (ip);
4403 }
4404
4405 if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
4406 {
4407 bfd_reloc_code_real_type final_type[3];
4408 reloc_howto_type *howto0;
4409 reloc_howto_type *howto;
4410 int i;
4411
4412 /* Perform any necessary conversion to microMIPS relocations
4413 and find out how many relocations there actually are. */
4414 for (i = 0; i < 3 && reloc_type[i] != BFD_RELOC_UNUSED; i++)
4415 final_type[i] = micromips_map_reloc (reloc_type[i]);
4416
4417 /* In a compound relocation, it is the final (outermost)
4418 operator that determines the relocated field. */
4419 howto = howto0 = bfd_reloc_type_lookup (stdoutput, final_type[i - 1]);
4420
4421 if (howto == NULL)
4422 {
4423 /* To reproduce this failure try assembling gas/testsuites/
4424 gas/mips/mips16-intermix.s with a mips-ecoff targeted
4425 assembler. */
4426 as_bad (_("Unsupported MIPS relocation number %d"),
4427 final_type[i - 1]);
4428 howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16);
4429 }
4430
4431 if (i > 1)
4432 howto0 = bfd_reloc_type_lookup (stdoutput, final_type[0]);
4433 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
4434 bfd_get_reloc_size (howto),
4435 address_expr,
4436 howto0 && howto0->pc_relative,
4437 final_type[0]);
4438
4439 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
4440 if (final_type[0] == BFD_RELOC_MIPS16_JMP && ip->fixp[0]->fx_addsy)
4441 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
4442
4443 /* These relocations can have an addend that won't fit in
4444 4 octets for 64bit assembly. */
4445 if (HAVE_64BIT_GPRS
4446 && ! howto->partial_inplace
4447 && (reloc_type[0] == BFD_RELOC_16
4448 || reloc_type[0] == BFD_RELOC_32
4449 || reloc_type[0] == BFD_RELOC_MIPS_JMP
4450 || reloc_type[0] == BFD_RELOC_GPREL16
4451 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
4452 || reloc_type[0] == BFD_RELOC_GPREL32
4453 || reloc_type[0] == BFD_RELOC_64
4454 || reloc_type[0] == BFD_RELOC_CTOR
4455 || reloc_type[0] == BFD_RELOC_MIPS_SUB
4456 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
4457 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
4458 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
4459 || reloc_type[0] == BFD_RELOC_MIPS_REL16
4460 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
4461 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
4462 || hi16_reloc_p (reloc_type[0])
4463 || lo16_reloc_p (reloc_type[0])))
4464 ip->fixp[0]->fx_no_overflow = 1;
4465
4466 /* These relocations can have an addend that won't fit in 2 octets. */
4467 if (reloc_type[0] == BFD_RELOC_MICROMIPS_7_PCREL_S1
4468 || reloc_type[0] == BFD_RELOC_MICROMIPS_10_PCREL_S1)
4469 ip->fixp[0]->fx_no_overflow = 1;
4470
4471 if (mips_relax.sequence)
4472 {
4473 if (mips_relax.first_fixup == 0)
4474 mips_relax.first_fixup = ip->fixp[0];
4475 }
4476 else if (reloc_needs_lo_p (*reloc_type))
4477 {
4478 struct mips_hi_fixup *hi_fixup;
4479
4480 /* Reuse the last entry if it already has a matching %lo. */
4481 hi_fixup = mips_hi_fixup_list;
4482 if (hi_fixup == 0
4483 || !fixup_has_matching_lo_p (hi_fixup->fixp))
4484 {
4485 hi_fixup = ((struct mips_hi_fixup *)
4486 xmalloc (sizeof (struct mips_hi_fixup)));
4487 hi_fixup->next = mips_hi_fixup_list;
4488 mips_hi_fixup_list = hi_fixup;
4489 }
4490 hi_fixup->fixp = ip->fixp[0];
4491 hi_fixup->seg = now_seg;
4492 }
4493
4494 /* Add fixups for the second and third relocations, if given.
4495 Note that the ABI allows the second relocation to be
4496 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
4497 moment we only use RSS_UNDEF, but we could add support
4498 for the others if it ever becomes necessary. */
4499 for (i = 1; i < 3; i++)
4500 if (reloc_type[i] != BFD_RELOC_UNUSED)
4501 {
4502 ip->fixp[i] = fix_new (ip->frag, ip->where,
4503 ip->fixp[0]->fx_size, NULL, 0,
4504 FALSE, final_type[i]);
4505
4506 /* Use fx_tcbit to mark compound relocs. */
4507 ip->fixp[0]->fx_tcbit = 1;
4508 ip->fixp[i]->fx_tcbit = 1;
4509 }
4510 }
4511 install_insn (ip);
4512
4513 /* Update the register mask information. */
4514 mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
4515 mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
4516
4517 switch (method)
4518 {
4519 case APPEND_ADD:
4520 insert_into_history (0, 1, ip);
4521 break;
4522
4523 case APPEND_ADD_WITH_NOP:
4524 {
4525 struct mips_cl_insn *nop;
4526
4527 insert_into_history (0, 1, ip);
4528 nop = get_delay_slot_nop (ip);
4529 add_fixed_insn (nop);
4530 insert_into_history (0, 1, nop);
4531 if (mips_relax.sequence)
4532 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (nop);
4533 }
4534 break;
4535
4536 case APPEND_ADD_COMPACT:
4537 /* Convert MIPS16 jr/jalr into a "compact" jump. */
4538 gas_assert (mips_opts.mips16);
4539 ip->insn_opcode |= 0x0080;
4540 find_altered_mips16_opcode (ip);
4541 install_insn (ip);
4542 insert_into_history (0, 1, ip);
4543 break;
4544
4545 case APPEND_SWAP:
4546 {
4547 struct mips_cl_insn delay = history[0];
4548 if (mips_opts.mips16)
4549 {
4550 know (delay.frag == ip->frag);
4551 move_insn (ip, delay.frag, delay.where);
4552 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
4553 }
4554 else if (relaxed_branch || delay.frag != ip->frag)
4555 {
4556 /* Add the delay slot instruction to the end of the
4557 current frag and shrink the fixed part of the
4558 original frag. If the branch occupies the tail of
4559 the latter, move it backwards to cover the gap. */
4560 delay.frag->fr_fix -= branch_disp;
4561 if (delay.frag == ip->frag)
4562 move_insn (ip, ip->frag, ip->where - branch_disp);
4563 add_fixed_insn (&delay);
4564 }
4565 else
4566 {
4567 move_insn (&delay, ip->frag,
4568 ip->where - branch_disp + insn_length (ip));
4569 move_insn (ip, history[0].frag, history[0].where);
4570 }
4571 history[0] = *ip;
4572 delay.fixed_p = 1;
4573 insert_into_history (0, 1, &delay);
4574 }
4575 break;
4576 }
4577
4578 /* If we have just completed an unconditional branch, clear the history. */
4579 if ((delayed_branch_p (&history[1]) && uncond_branch_p (&history[1]))
4580 || (compact_branch_p (&history[0]) && uncond_branch_p (&history[0])))
4581 mips_no_prev_insn ();
4582
4583 /* We need to emit a label at the end of branch-likely macros. */
4584 if (emit_branch_likely_macro)
4585 {
4586 emit_branch_likely_macro = FALSE;
4587 micromips_add_label ();
4588 }
4589
4590 /* We just output an insn, so the next one doesn't have a label. */
4591 mips_clear_insn_labels ();
4592 }
4593
4594 /* Forget that there was any previous instruction or label. */
4595
4596 static void
4597 mips_no_prev_insn (void)
4598 {
4599 prev_nop_frag = NULL;
4600 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
4601 mips_clear_insn_labels ();
4602 }
4603
4604 /* This function must be called before we emit something other than
4605 instructions. It is like mips_no_prev_insn except that it inserts
4606 any NOPS that might be needed by previous instructions. */
4607
4608 void
4609 mips_emit_delays (void)
4610 {
4611 if (! mips_opts.noreorder)
4612 {
4613 int nops = nops_for_insn (0, history, NULL);
4614 if (nops > 0)
4615 {
4616 while (nops-- > 0)
4617 add_fixed_insn (NOP_INSN);
4618 mips_move_text_labels ();
4619 }
4620 }
4621 mips_no_prev_insn ();
4622 }
4623
4624 /* Start a (possibly nested) noreorder block. */
4625
4626 static void
4627 start_noreorder (void)
4628 {
4629 if (mips_opts.noreorder == 0)
4630 {
4631 unsigned int i;
4632 int nops;
4633
4634 /* None of the instructions before the .set noreorder can be moved. */
4635 for (i = 0; i < ARRAY_SIZE (history); i++)
4636 history[i].fixed_p = 1;
4637
4638 /* Insert any nops that might be needed between the .set noreorder
4639 block and the previous instructions. We will later remove any
4640 nops that turn out not to be needed. */
4641 nops = nops_for_insn (0, history, NULL);
4642 if (nops > 0)
4643 {
4644 if (mips_optimize != 0)
4645 {
4646 /* Record the frag which holds the nop instructions, so
4647 that we can remove them if we don't need them. */
4648 frag_grow (nops * NOP_INSN_SIZE);
4649 prev_nop_frag = frag_now;
4650 prev_nop_frag_holds = nops;
4651 prev_nop_frag_required = 0;
4652 prev_nop_frag_since = 0;
4653 }
4654
4655 for (; nops > 0; --nops)
4656 add_fixed_insn (NOP_INSN);
4657
4658 /* Move on to a new frag, so that it is safe to simply
4659 decrease the size of prev_nop_frag. */
4660 frag_wane (frag_now);
4661 frag_new (0);
4662 mips_move_text_labels ();
4663 }
4664 mips_mark_labels ();
4665 mips_clear_insn_labels ();
4666 }
4667 mips_opts.noreorder++;
4668 mips_any_noreorder = 1;
4669 }
4670
4671 /* End a nested noreorder block. */
4672
4673 static void
4674 end_noreorder (void)
4675 {
4676 mips_opts.noreorder--;
4677 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
4678 {
4679 /* Commit to inserting prev_nop_frag_required nops and go back to
4680 handling nop insertion the .set reorder way. */
4681 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
4682 * NOP_INSN_SIZE);
4683 insert_into_history (prev_nop_frag_since,
4684 prev_nop_frag_required, NOP_INSN);
4685 prev_nop_frag = NULL;
4686 }
4687 }
4688
4689 /* Set up global variables for the start of a new macro. */
4690
4691 static void
4692 macro_start (void)
4693 {
4694 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
4695 memset (&mips_macro_warning.first_insn_sizes, 0,
4696 sizeof (mips_macro_warning.first_insn_sizes));
4697 memset (&mips_macro_warning.insns, 0, sizeof (mips_macro_warning.insns));
4698 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
4699 && delayed_branch_p (&history[0]));
4700 switch (history[0].insn_mo->pinfo2
4701 & (INSN2_BRANCH_DELAY_32BIT | INSN2_BRANCH_DELAY_16BIT))
4702 {
4703 case INSN2_BRANCH_DELAY_32BIT:
4704 mips_macro_warning.delay_slot_length = 4;
4705 break;
4706 case INSN2_BRANCH_DELAY_16BIT:
4707 mips_macro_warning.delay_slot_length = 2;
4708 break;
4709 default:
4710 mips_macro_warning.delay_slot_length = 0;
4711 break;
4712 }
4713 mips_macro_warning.first_frag = NULL;
4714 }
4715
4716 /* Given that a macro is longer than one instruction or of the wrong size,
4717 return the appropriate warning for it. Return null if no warning is
4718 needed. SUBTYPE is a bitmask of RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT,
4719 RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND,
4720 and RELAX_NOMACRO. */
4721
4722 static const char *
4723 macro_warning (relax_substateT subtype)
4724 {
4725 if (subtype & RELAX_DELAY_SLOT)
4726 return _("Macro instruction expanded into multiple instructions"
4727 " in a branch delay slot");
4728 else if (subtype & RELAX_NOMACRO)
4729 return _("Macro instruction expanded into multiple instructions");
4730 else if (subtype & (RELAX_DELAY_SLOT_SIZE_FIRST
4731 | RELAX_DELAY_SLOT_SIZE_SECOND))
4732 return ((subtype & RELAX_DELAY_SLOT_16BIT)
4733 ? _("Macro instruction expanded into a wrong size instruction"
4734 " in a 16-bit branch delay slot")
4735 : _("Macro instruction expanded into a wrong size instruction"
4736 " in a 32-bit branch delay slot"));
4737 else
4738 return 0;
4739 }
4740
4741 /* Finish up a macro. Emit warnings as appropriate. */
4742
4743 static void
4744 macro_end (void)
4745 {
4746 /* Relaxation warning flags. */
4747 relax_substateT subtype = 0;
4748
4749 /* Check delay slot size requirements. */
4750 if (mips_macro_warning.delay_slot_length == 2)
4751 subtype |= RELAX_DELAY_SLOT_16BIT;
4752 if (mips_macro_warning.delay_slot_length != 0)
4753 {
4754 if (mips_macro_warning.delay_slot_length
4755 != mips_macro_warning.first_insn_sizes[0])
4756 subtype |= RELAX_DELAY_SLOT_SIZE_FIRST;
4757 if (mips_macro_warning.delay_slot_length
4758 != mips_macro_warning.first_insn_sizes[1])
4759 subtype |= RELAX_DELAY_SLOT_SIZE_SECOND;
4760 }
4761
4762 /* Check instruction count requirements. */
4763 if (mips_macro_warning.insns[0] > 1 || mips_macro_warning.insns[1] > 1)
4764 {
4765 if (mips_macro_warning.insns[1] > mips_macro_warning.insns[0])
4766 subtype |= RELAX_SECOND_LONGER;
4767 if (mips_opts.warn_about_macros)
4768 subtype |= RELAX_NOMACRO;
4769 if (mips_macro_warning.delay_slot_p)
4770 subtype |= RELAX_DELAY_SLOT;
4771 }
4772
4773 /* If both alternatives fail to fill a delay slot correctly,
4774 emit the warning now. */
4775 if ((subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0
4776 && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0)
4777 {
4778 relax_substateT s;
4779 const char *msg;
4780
4781 s = subtype & (RELAX_DELAY_SLOT_16BIT
4782 | RELAX_DELAY_SLOT_SIZE_FIRST
4783 | RELAX_DELAY_SLOT_SIZE_SECOND);
4784 msg = macro_warning (s);
4785 if (msg != NULL)
4786 as_warn ("%s", msg);
4787 subtype &= ~s;
4788 }
4789
4790 /* If both implementations are longer than 1 instruction, then emit the
4791 warning now. */
4792 if (mips_macro_warning.insns[0] > 1 && mips_macro_warning.insns[1] > 1)
4793 {
4794 relax_substateT s;
4795 const char *msg;
4796
4797 s = subtype & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT);
4798 msg = macro_warning (s);
4799 if (msg != NULL)
4800 as_warn ("%s", msg);
4801 subtype &= ~s;
4802 }
4803
4804 /* If any flags still set, then one implementation might need a warning
4805 and the other either will need one of a different kind or none at all.
4806 Pass any remaining flags over to relaxation. */
4807 if (mips_macro_warning.first_frag != NULL)
4808 mips_macro_warning.first_frag->fr_subtype |= subtype;
4809 }
4810
4811 /* Instruction operand formats used in macros that vary between
4812 standard MIPS and microMIPS code. */
4813
4814 static const char * const brk_fmt[2] = { "c", "mF" };
4815 static const char * const cop12_fmt[2] = { "E,o(b)", "E,~(b)" };
4816 static const char * const jalr_fmt[2] = { "d,s", "t,s" };
4817 static const char * const lui_fmt[2] = { "t,u", "s,u" };
4818 static const char * const mem12_fmt[2] = { "t,o(b)", "t,~(b)" };
4819 static const char * const mfhl_fmt[2] = { "d", "mj" };
4820 static const char * const shft_fmt[2] = { "d,w,<", "t,r,<" };
4821 static const char * const trap_fmt[2] = { "s,t,q", "s,t,|" };
4822
4823 #define BRK_FMT (brk_fmt[mips_opts.micromips])
4824 #define COP12_FMT (cop12_fmt[mips_opts.micromips])
4825 #define JALR_FMT (jalr_fmt[mips_opts.micromips])
4826 #define LUI_FMT (lui_fmt[mips_opts.micromips])
4827 #define MEM12_FMT (mem12_fmt[mips_opts.micromips])
4828 #define MFHL_FMT (mfhl_fmt[mips_opts.micromips])
4829 #define SHFT_FMT (shft_fmt[mips_opts.micromips])
4830 #define TRAP_FMT (trap_fmt[mips_opts.micromips])
4831
4832 /* Read a macro's relocation codes from *ARGS and store them in *R.
4833 The first argument in *ARGS will be either the code for a single
4834 relocation or -1 followed by the three codes that make up a
4835 composite relocation. */
4836
4837 static void
4838 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
4839 {
4840 int i, next;
4841
4842 next = va_arg (*args, int);
4843 if (next >= 0)
4844 r[0] = (bfd_reloc_code_real_type) next;
4845 else
4846 for (i = 0; i < 3; i++)
4847 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
4848 }
4849
4850 /* Build an instruction created by a macro expansion. This is passed
4851 a pointer to the count of instructions created so far, an
4852 expression, the name of the instruction to build, an operand format
4853 string, and corresponding arguments. */
4854
4855 static void
4856 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
4857 {
4858 const struct mips_opcode *mo = NULL;
4859 bfd_reloc_code_real_type r[3];
4860 const struct mips_opcode *amo;
4861 struct hash_control *hash;
4862 struct mips_cl_insn insn;
4863 va_list args;
4864
4865 va_start (args, fmt);
4866
4867 if (mips_opts.mips16)
4868 {
4869 mips16_macro_build (ep, name, fmt, &args);
4870 va_end (args);
4871 return;
4872 }
4873
4874 r[0] = BFD_RELOC_UNUSED;
4875 r[1] = BFD_RELOC_UNUSED;
4876 r[2] = BFD_RELOC_UNUSED;
4877 hash = mips_opts.micromips ? micromips_op_hash : op_hash;
4878 amo = (struct mips_opcode *) hash_find (hash, name);
4879 gas_assert (amo);
4880 gas_assert (strcmp (name, amo->name) == 0);
4881
4882 do
4883 {
4884 /* Search until we get a match for NAME. It is assumed here that
4885 macros will never generate MDMX, MIPS-3D, or MT instructions.
4886 We try to match an instruction that fulfils the branch delay
4887 slot instruction length requirement (if any) of the previous
4888 instruction. While doing this we record the first instruction
4889 seen that matches all the other conditions and use it anyway
4890 if the requirement cannot be met; we will issue an appropriate
4891 warning later on. */
4892 if (strcmp (fmt, amo->args) == 0
4893 && amo->pinfo != INSN_MACRO
4894 && is_opcode_valid (amo)
4895 && is_size_valid (amo))
4896 {
4897 if (is_delay_slot_valid (amo))
4898 {
4899 mo = amo;
4900 break;
4901 }
4902 else if (!mo)
4903 mo = amo;
4904 }
4905
4906 ++amo;
4907 gas_assert (amo->name);
4908 }
4909 while (strcmp (name, amo->name) == 0);
4910
4911 gas_assert (mo);
4912 create_insn (&insn, mo);
4913 for (;;)
4914 {
4915 switch (*fmt++)
4916 {
4917 case '\0':
4918 break;
4919
4920 case ',':
4921 case '(':
4922 case ')':
4923 continue;
4924
4925 case '+':
4926 switch (*fmt++)
4927 {
4928 case 'A':
4929 case 'E':
4930 INSERT_OPERAND (mips_opts.micromips,
4931 EXTLSB, insn, va_arg (args, int));
4932 continue;
4933
4934 case 'B':
4935 case 'F':
4936 /* Note that in the macro case, these arguments are already
4937 in MSB form. (When handling the instruction in the
4938 non-macro case, these arguments are sizes from which
4939 MSB values must be calculated.) */
4940 INSERT_OPERAND (mips_opts.micromips,
4941 INSMSB, insn, va_arg (args, int));
4942 continue;
4943
4944 case 'C':
4945 case 'G':
4946 case 'H':
4947 /* Note that in the macro case, these arguments are already
4948 in MSBD form. (When handling the instruction in the
4949 non-macro case, these arguments are sizes from which
4950 MSBD values must be calculated.) */
4951 INSERT_OPERAND (mips_opts.micromips,
4952 EXTMSBD, insn, va_arg (args, int));
4953 continue;
4954
4955 case 'Q':
4956 gas_assert (!mips_opts.micromips);
4957 INSERT_OPERAND (0, SEQI, insn, va_arg (args, int));
4958 continue;
4959
4960 default:
4961 internalError ();
4962 }
4963 continue;
4964
4965 case '2':
4966 INSERT_OPERAND (mips_opts.micromips, BP, insn, va_arg (args, int));
4967 continue;
4968
4969 case 'n':
4970 gas_assert (mips_opts.micromips);
4971 case 't':
4972 case 'w':
4973 case 'E':
4974 INSERT_OPERAND (mips_opts.micromips, RT, insn, va_arg (args, int));
4975 continue;
4976
4977 case 'c':
4978 gas_assert (!mips_opts.micromips);
4979 INSERT_OPERAND (0, CODE, insn, va_arg (args, int));
4980 continue;
4981
4982 case 'W':
4983 gas_assert (!mips_opts.micromips);
4984 case 'T':
4985 INSERT_OPERAND (mips_opts.micromips, FT, insn, va_arg (args, int));
4986 continue;
4987
4988 case 'G':
4989 if (mips_opts.micromips)
4990 INSERT_OPERAND (1, RS, insn, va_arg (args, int));
4991 else
4992 INSERT_OPERAND (0, RD, insn, va_arg (args, int));
4993 continue;
4994
4995 case 'K':
4996 gas_assert (!mips_opts.micromips);
4997 case 'd':
4998 INSERT_OPERAND (mips_opts.micromips, RD, insn, va_arg (args, int));
4999 continue;
5000
5001 case 'U':
5002 gas_assert (!mips_opts.micromips);
5003 {
5004 int tmp = va_arg (args, int);
5005
5006 INSERT_OPERAND (0, RT, insn, tmp);
5007 INSERT_OPERAND (0, RD, insn, tmp);
5008 }
5009 continue;
5010
5011 case 'V':
5012 case 'S':
5013 gas_assert (!mips_opts.micromips);
5014 INSERT_OPERAND (0, FS, insn, va_arg (args, int));
5015 continue;
5016
5017 case 'z':
5018 continue;
5019
5020 case '<':
5021 INSERT_OPERAND (mips_opts.micromips,
5022 SHAMT, insn, va_arg (args, int));
5023 continue;
5024
5025 case 'D':
5026 gas_assert (!mips_opts.micromips);
5027 INSERT_OPERAND (0, FD, insn, va_arg (args, int));
5028 continue;
5029
5030 case 'B':
5031 gas_assert (!mips_opts.micromips);
5032 INSERT_OPERAND (0, CODE20, insn, va_arg (args, int));
5033 continue;
5034
5035 case 'J':
5036 gas_assert (!mips_opts.micromips);
5037 INSERT_OPERAND (0, CODE19, insn, va_arg (args, int));
5038 continue;
5039
5040 case 'q':
5041 gas_assert (!mips_opts.micromips);
5042 INSERT_OPERAND (0, CODE2, insn, va_arg (args, int));
5043 continue;
5044
5045 case 'b':
5046 case 's':
5047 case 'r':
5048 case 'v':
5049 INSERT_OPERAND (mips_opts.micromips, RS, insn, va_arg (args, int));
5050 continue;
5051
5052 case 'i':
5053 case 'j':
5054 macro_read_relocs (&args, r);
5055 gas_assert (*r == BFD_RELOC_GPREL16
5056 || *r == BFD_RELOC_MIPS_HIGHER
5057 || *r == BFD_RELOC_HI16_S
5058 || *r == BFD_RELOC_LO16
5059 || *r == BFD_RELOC_MIPS_GOT_OFST);
5060 continue;
5061
5062 case 'o':
5063 macro_read_relocs (&args, r);
5064 continue;
5065
5066 case 'u':
5067 macro_read_relocs (&args, r);
5068 gas_assert (ep != NULL
5069 && (ep->X_op == O_constant
5070 || (ep->X_op == O_symbol
5071 && (*r == BFD_RELOC_MIPS_HIGHEST
5072 || *r == BFD_RELOC_HI16_S
5073 || *r == BFD_RELOC_HI16
5074 || *r == BFD_RELOC_GPREL16
5075 || *r == BFD_RELOC_MIPS_GOT_HI16
5076 || *r == BFD_RELOC_MIPS_CALL_HI16))));
5077 continue;
5078
5079 case 'p':
5080 gas_assert (ep != NULL);
5081
5082 /*
5083 * This allows macro() to pass an immediate expression for
5084 * creating short branches without creating a symbol.
5085 *
5086 * We don't allow branch relaxation for these branches, as
5087 * they should only appear in ".set nomacro" anyway.
5088 */
5089 if (ep->X_op == O_constant)
5090 {
5091 /* For microMIPS we always use relocations for branches.
5092 So we should not resolve immediate values. */
5093 gas_assert (!mips_opts.micromips);
5094
5095 if ((ep->X_add_number & 3) != 0)
5096 as_bad (_("branch to misaligned address (0x%lx)"),
5097 (unsigned long) ep->X_add_number);
5098 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
5099 as_bad (_("branch address range overflow (0x%lx)"),
5100 (unsigned long) ep->X_add_number);
5101 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
5102 ep = NULL;
5103 }
5104 else
5105 *r = BFD_RELOC_16_PCREL_S2;
5106 continue;
5107
5108 case 'a':
5109 gas_assert (ep != NULL);
5110 *r = BFD_RELOC_MIPS_JMP;
5111 continue;
5112
5113 case 'C':
5114 gas_assert (!mips_opts.micromips);
5115 INSERT_OPERAND (0, COPZ, insn, va_arg (args, unsigned long));
5116 continue;
5117
5118 case 'k':
5119 INSERT_OPERAND (mips_opts.micromips,
5120 CACHE, insn, va_arg (args, unsigned long));
5121 continue;
5122
5123 case '|':
5124 gas_assert (mips_opts.micromips);
5125 INSERT_OPERAND (1, TRAP, insn, va_arg (args, int));
5126 continue;
5127
5128 case '.':
5129 gas_assert (mips_opts.micromips);
5130 INSERT_OPERAND (1, OFFSET10, insn, va_arg (args, int));
5131 continue;
5132
5133 case '\\':
5134 INSERT_OPERAND (mips_opts.micromips,
5135 3BITPOS, insn, va_arg (args, unsigned int));
5136 continue;
5137
5138 case '~':
5139 INSERT_OPERAND (mips_opts.micromips,
5140 OFFSET12, insn, va_arg (args, unsigned long));
5141 continue;
5142
5143 case 'N':
5144 gas_assert (mips_opts.micromips);
5145 INSERT_OPERAND (1, BCC, insn, va_arg (args, int));
5146 continue;
5147
5148 case 'm': /* Opcode extension character. */
5149 gas_assert (mips_opts.micromips);
5150 switch (*fmt++)
5151 {
5152 case 'j':
5153 INSERT_OPERAND (1, MJ, insn, va_arg (args, int));
5154 break;
5155
5156 case 'p':
5157 INSERT_OPERAND (1, MP, insn, va_arg (args, int));
5158 break;
5159
5160 case 'F':
5161 INSERT_OPERAND (1, IMMF, insn, va_arg (args, int));
5162 break;
5163
5164 default:
5165 internalError ();
5166 }
5167 continue;
5168
5169 default:
5170 internalError ();
5171 }
5172 break;
5173 }
5174 va_end (args);
5175 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
5176
5177 append_insn (&insn, ep, r, TRUE);
5178 }
5179
5180 static void
5181 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
5182 va_list *args)
5183 {
5184 struct mips_opcode *mo;
5185 struct mips_cl_insn insn;
5186 bfd_reloc_code_real_type r[3]
5187 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
5188
5189 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
5190 gas_assert (mo);
5191 gas_assert (strcmp (name, mo->name) == 0);
5192
5193 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
5194 {
5195 ++mo;
5196 gas_assert (mo->name);
5197 gas_assert (strcmp (name, mo->name) == 0);
5198 }
5199
5200 create_insn (&insn, mo);
5201 for (;;)
5202 {
5203 int c;
5204
5205 c = *fmt++;
5206 switch (c)
5207 {
5208 case '\0':
5209 break;
5210
5211 case ',':
5212 case '(':
5213 case ')':
5214 continue;
5215
5216 case 'y':
5217 case 'w':
5218 MIPS16_INSERT_OPERAND (RY, insn, va_arg (*args, int));
5219 continue;
5220
5221 case 'x':
5222 case 'v':
5223 MIPS16_INSERT_OPERAND (RX, insn, va_arg (*args, int));
5224 continue;
5225
5226 case 'z':
5227 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (*args, int));
5228 continue;
5229
5230 case 'Z':
5231 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (*args, int));
5232 continue;
5233
5234 case '0':
5235 case 'S':
5236 case 'P':
5237 case 'R':
5238 continue;
5239
5240 case 'X':
5241 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (*args, int));
5242 continue;
5243
5244 case 'Y':
5245 {
5246 int regno;
5247
5248 regno = va_arg (*args, int);
5249 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
5250 MIPS16_INSERT_OPERAND (REG32R, insn, regno);
5251 }
5252 continue;
5253
5254 case '<':
5255 case '>':
5256 case '4':
5257 case '5':
5258 case 'H':
5259 case 'W':
5260 case 'D':
5261 case 'j':
5262 case '8':
5263 case 'V':
5264 case 'C':
5265 case 'U':
5266 case 'k':
5267 case 'K':
5268 case 'p':
5269 case 'q':
5270 {
5271 offsetT value;
5272
5273 gas_assert (ep != NULL);
5274
5275 if (ep->X_op != O_constant)
5276 *r = (int) BFD_RELOC_UNUSED + c;
5277 else if (calculate_reloc (*r, ep->X_add_number, &value))
5278 {
5279 mips16_immed (NULL, 0, c, *r, value, 0, &insn.insn_opcode);
5280 ep = NULL;
5281 *r = BFD_RELOC_UNUSED;
5282 }
5283 }
5284 continue;
5285
5286 case '6':
5287 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (*args, int));
5288 continue;
5289 }
5290
5291 break;
5292 }
5293
5294 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
5295
5296 append_insn (&insn, ep, r, TRUE);
5297 }
5298
5299 /*
5300 * Sign-extend 32-bit mode constants that have bit 31 set and all
5301 * higher bits unset.
5302 */
5303 static void
5304 normalize_constant_expr (expressionS *ex)
5305 {
5306 if (ex->X_op == O_constant
5307 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
5308 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
5309 - 0x80000000);
5310 }
5311
5312 /*
5313 * Sign-extend 32-bit mode address offsets that have bit 31 set and
5314 * all higher bits unset.
5315 */
5316 static void
5317 normalize_address_expr (expressionS *ex)
5318 {
5319 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
5320 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
5321 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
5322 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
5323 - 0x80000000);
5324 }
5325
5326 /*
5327 * Generate a "jalr" instruction with a relocation hint to the called
5328 * function. This occurs in NewABI PIC code.
5329 */
5330 static void
5331 macro_build_jalr (expressionS *ep, int cprestore)
5332 {
5333 static const bfd_reloc_code_real_type jalr_relocs[2]
5334 = { BFD_RELOC_MIPS_JALR, BFD_RELOC_MICROMIPS_JALR };
5335 bfd_reloc_code_real_type jalr_reloc = jalr_relocs[mips_opts.micromips];
5336 const char *jalr;
5337 char *f = NULL;
5338
5339 if (MIPS_JALR_HINT_P (ep))
5340 {
5341 frag_grow (8);
5342 f = frag_more (0);
5343 }
5344 if (mips_opts.micromips)
5345 {
5346 jalr = mips_opts.noreorder && !cprestore ? "jalr" : "jalrs";
5347 if (MIPS_JALR_HINT_P (ep)
5348 || (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
5349 macro_build (NULL, jalr, "t,s", RA, PIC_CALL_REG);
5350 else
5351 macro_build (NULL, jalr, "mj", PIC_CALL_REG);
5352 }
5353 else
5354 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
5355 if (MIPS_JALR_HINT_P (ep))
5356 fix_new_exp (frag_now, f - frag_now->fr_literal, 4, ep, FALSE, jalr_reloc);
5357 }
5358
5359 /*
5360 * Generate a "lui" instruction.
5361 */
5362 static void
5363 macro_build_lui (expressionS *ep, int regnum)
5364 {
5365 gas_assert (! mips_opts.mips16);
5366
5367 if (ep->X_op != O_constant)
5368 {
5369 gas_assert (ep->X_op == O_symbol);
5370 /* _gp_disp is a special case, used from s_cpload.
5371 __gnu_local_gp is used if mips_no_shared. */
5372 gas_assert (mips_pic == NO_PIC
5373 || (! HAVE_NEWABI
5374 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
5375 || (! mips_in_shared
5376 && strcmp (S_GET_NAME (ep->X_add_symbol),
5377 "__gnu_local_gp") == 0));
5378 }
5379
5380 macro_build (ep, "lui", LUI_FMT, regnum, BFD_RELOC_HI16_S);
5381 }
5382
5383 /* Generate a sequence of instructions to do a load or store from a constant
5384 offset off of a base register (breg) into/from a target register (treg),
5385 using AT if necessary. */
5386 static void
5387 macro_build_ldst_constoffset (expressionS *ep, const char *op,
5388 int treg, int breg, int dbl)
5389 {
5390 gas_assert (ep->X_op == O_constant);
5391
5392 /* Sign-extending 32-bit constants makes their handling easier. */
5393 if (!dbl)
5394 normalize_constant_expr (ep);
5395
5396 /* Right now, this routine can only handle signed 32-bit constants. */
5397 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
5398 as_warn (_("operand overflow"));
5399
5400 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
5401 {
5402 /* Signed 16-bit offset will fit in the op. Easy! */
5403 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
5404 }
5405 else
5406 {
5407 /* 32-bit offset, need multiple instructions and AT, like:
5408 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
5409 addu $tempreg,$tempreg,$breg
5410 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
5411 to handle the complete offset. */
5412 macro_build_lui (ep, AT);
5413 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
5414 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
5415
5416 if (!mips_opts.at)
5417 as_bad (_("Macro used $at after \".set noat\""));
5418 }
5419 }
5420
5421 /* set_at()
5422 * Generates code to set the $at register to true (one)
5423 * if reg is less than the immediate expression.
5424 */
5425 static void
5426 set_at (int reg, int unsignedp)
5427 {
5428 if (imm_expr.X_op == O_constant
5429 && imm_expr.X_add_number >= -0x8000
5430 && imm_expr.X_add_number < 0x8000)
5431 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
5432 AT, reg, BFD_RELOC_LO16);
5433 else
5434 {
5435 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5436 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
5437 }
5438 }
5439
5440 /* Warn if an expression is not a constant. */
5441
5442 static void
5443 check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
5444 {
5445 if (ex->X_op == O_big)
5446 as_bad (_("unsupported large constant"));
5447 else if (ex->X_op != O_constant)
5448 as_bad (_("Instruction %s requires absolute expression"),
5449 ip->insn_mo->name);
5450
5451 if (HAVE_32BIT_GPRS)
5452 normalize_constant_expr (ex);
5453 }
5454
5455 /* Count the leading zeroes by performing a binary chop. This is a
5456 bulky bit of source, but performance is a LOT better for the
5457 majority of values than a simple loop to count the bits:
5458 for (lcnt = 0; (lcnt < 32); lcnt++)
5459 if ((v) & (1 << (31 - lcnt)))
5460 break;
5461 However it is not code size friendly, and the gain will drop a bit
5462 on certain cached systems.
5463 */
5464 #define COUNT_TOP_ZEROES(v) \
5465 (((v) & ~0xffff) == 0 \
5466 ? ((v) & ~0xff) == 0 \
5467 ? ((v) & ~0xf) == 0 \
5468 ? ((v) & ~0x3) == 0 \
5469 ? ((v) & ~0x1) == 0 \
5470 ? !(v) \
5471 ? 32 \
5472 : 31 \
5473 : 30 \
5474 : ((v) & ~0x7) == 0 \
5475 ? 29 \
5476 : 28 \
5477 : ((v) & ~0x3f) == 0 \
5478 ? ((v) & ~0x1f) == 0 \
5479 ? 27 \
5480 : 26 \
5481 : ((v) & ~0x7f) == 0 \
5482 ? 25 \
5483 : 24 \
5484 : ((v) & ~0xfff) == 0 \
5485 ? ((v) & ~0x3ff) == 0 \
5486 ? ((v) & ~0x1ff) == 0 \
5487 ? 23 \
5488 : 22 \
5489 : ((v) & ~0x7ff) == 0 \
5490 ? 21 \
5491 : 20 \
5492 : ((v) & ~0x3fff) == 0 \
5493 ? ((v) & ~0x1fff) == 0 \
5494 ? 19 \
5495 : 18 \
5496 : ((v) & ~0x7fff) == 0 \
5497 ? 17 \
5498 : 16 \
5499 : ((v) & ~0xffffff) == 0 \
5500 ? ((v) & ~0xfffff) == 0 \
5501 ? ((v) & ~0x3ffff) == 0 \
5502 ? ((v) & ~0x1ffff) == 0 \
5503 ? 15 \
5504 : 14 \
5505 : ((v) & ~0x7ffff) == 0 \
5506 ? 13 \
5507 : 12 \
5508 : ((v) & ~0x3fffff) == 0 \
5509 ? ((v) & ~0x1fffff) == 0 \
5510 ? 11 \
5511 : 10 \
5512 : ((v) & ~0x7fffff) == 0 \
5513 ? 9 \
5514 : 8 \
5515 : ((v) & ~0xfffffff) == 0 \
5516 ? ((v) & ~0x3ffffff) == 0 \
5517 ? ((v) & ~0x1ffffff) == 0 \
5518 ? 7 \
5519 : 6 \
5520 : ((v) & ~0x7ffffff) == 0 \
5521 ? 5 \
5522 : 4 \
5523 : ((v) & ~0x3fffffff) == 0 \
5524 ? ((v) & ~0x1fffffff) == 0 \
5525 ? 3 \
5526 : 2 \
5527 : ((v) & ~0x7fffffff) == 0 \
5528 ? 1 \
5529 : 0)
5530
5531 /* load_register()
5532 * This routine generates the least number of instructions necessary to load
5533 * an absolute expression value into a register.
5534 */
5535 static void
5536 load_register (int reg, expressionS *ep, int dbl)
5537 {
5538 int freg;
5539 expressionS hi32, lo32;
5540
5541 if (ep->X_op != O_big)
5542 {
5543 gas_assert (ep->X_op == O_constant);
5544
5545 /* Sign-extending 32-bit constants makes their handling easier. */
5546 if (!dbl)
5547 normalize_constant_expr (ep);
5548
5549 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
5550 {
5551 /* We can handle 16 bit signed values with an addiu to
5552 $zero. No need to ever use daddiu here, since $zero and
5553 the result are always correct in 32 bit mode. */
5554 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
5555 return;
5556 }
5557 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
5558 {
5559 /* We can handle 16 bit unsigned values with an ori to
5560 $zero. */
5561 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
5562 return;
5563 }
5564 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
5565 {
5566 /* 32 bit values require an lui. */
5567 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
5568 if ((ep->X_add_number & 0xffff) != 0)
5569 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
5570 return;
5571 }
5572 }
5573
5574 /* The value is larger than 32 bits. */
5575
5576 if (!dbl || HAVE_32BIT_GPRS)
5577 {
5578 char value[32];
5579
5580 sprintf_vma (value, ep->X_add_number);
5581 as_bad (_("Number (0x%s) larger than 32 bits"), value);
5582 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
5583 return;
5584 }
5585
5586 if (ep->X_op != O_big)
5587 {
5588 hi32 = *ep;
5589 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
5590 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
5591 hi32.X_add_number &= 0xffffffff;
5592 lo32 = *ep;
5593 lo32.X_add_number &= 0xffffffff;
5594 }
5595 else
5596 {
5597 gas_assert (ep->X_add_number > 2);
5598 if (ep->X_add_number == 3)
5599 generic_bignum[3] = 0;
5600 else if (ep->X_add_number > 4)
5601 as_bad (_("Number larger than 64 bits"));
5602 lo32.X_op = O_constant;
5603 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
5604 hi32.X_op = O_constant;
5605 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
5606 }
5607
5608 if (hi32.X_add_number == 0)
5609 freg = 0;
5610 else
5611 {
5612 int shift, bit;
5613 unsigned long hi, lo;
5614
5615 if (hi32.X_add_number == (offsetT) 0xffffffff)
5616 {
5617 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
5618 {
5619 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
5620 return;
5621 }
5622 if (lo32.X_add_number & 0x80000000)
5623 {
5624 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
5625 if (lo32.X_add_number & 0xffff)
5626 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
5627 return;
5628 }
5629 }
5630
5631 /* Check for 16bit shifted constant. We know that hi32 is
5632 non-zero, so start the mask on the first bit of the hi32
5633 value. */
5634 shift = 17;
5635 do
5636 {
5637 unsigned long himask, lomask;
5638
5639 if (shift < 32)
5640 {
5641 himask = 0xffff >> (32 - shift);
5642 lomask = (0xffff << shift) & 0xffffffff;
5643 }
5644 else
5645 {
5646 himask = 0xffff << (shift - 32);
5647 lomask = 0;
5648 }
5649 if ((hi32.X_add_number & ~(offsetT) himask) == 0
5650 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
5651 {
5652 expressionS tmp;
5653
5654 tmp.X_op = O_constant;
5655 if (shift < 32)
5656 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
5657 | (lo32.X_add_number >> shift));
5658 else
5659 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
5660 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
5661 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", SHFT_FMT,
5662 reg, reg, (shift >= 32) ? shift - 32 : shift);
5663 return;
5664 }
5665 ++shift;
5666 }
5667 while (shift <= (64 - 16));
5668
5669 /* Find the bit number of the lowest one bit, and store the
5670 shifted value in hi/lo. */
5671 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
5672 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
5673 if (lo != 0)
5674 {
5675 bit = 0;
5676 while ((lo & 1) == 0)
5677 {
5678 lo >>= 1;
5679 ++bit;
5680 }
5681 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
5682 hi >>= bit;
5683 }
5684 else
5685 {
5686 bit = 32;
5687 while ((hi & 1) == 0)
5688 {
5689 hi >>= 1;
5690 ++bit;
5691 }
5692 lo = hi;
5693 hi = 0;
5694 }
5695
5696 /* Optimize if the shifted value is a (power of 2) - 1. */
5697 if ((hi == 0 && ((lo + 1) & lo) == 0)
5698 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
5699 {
5700 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
5701 if (shift != 0)
5702 {
5703 expressionS tmp;
5704
5705 /* This instruction will set the register to be all
5706 ones. */
5707 tmp.X_op = O_constant;
5708 tmp.X_add_number = (offsetT) -1;
5709 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
5710 if (bit != 0)
5711 {
5712 bit += shift;
5713 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", SHFT_FMT,
5714 reg, reg, (bit >= 32) ? bit - 32 : bit);
5715 }
5716 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", SHFT_FMT,
5717 reg, reg, (shift >= 32) ? shift - 32 : shift);
5718 return;
5719 }
5720 }
5721
5722 /* Sign extend hi32 before calling load_register, because we can
5723 generally get better code when we load a sign extended value. */
5724 if ((hi32.X_add_number & 0x80000000) != 0)
5725 hi32.X_add_number |= ~(offsetT) 0xffffffff;
5726 load_register (reg, &hi32, 0);
5727 freg = reg;
5728 }
5729 if ((lo32.X_add_number & 0xffff0000) == 0)
5730 {
5731 if (freg != 0)
5732 {
5733 macro_build (NULL, "dsll32", SHFT_FMT, reg, freg, 0);
5734 freg = reg;
5735 }
5736 }
5737 else
5738 {
5739 expressionS mid16;
5740
5741 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
5742 {
5743 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
5744 macro_build (NULL, "dsrl32", SHFT_FMT, reg, reg, 0);
5745 return;
5746 }
5747
5748 if (freg != 0)
5749 {
5750 macro_build (NULL, "dsll", SHFT_FMT, reg, freg, 16);
5751 freg = reg;
5752 }
5753 mid16 = lo32;
5754 mid16.X_add_number >>= 16;
5755 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
5756 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
5757 freg = reg;
5758 }
5759 if ((lo32.X_add_number & 0xffff) != 0)
5760 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
5761 }
5762
5763 static inline void
5764 load_delay_nop (void)
5765 {
5766 if (!gpr_interlocks)
5767 macro_build (NULL, "nop", "");
5768 }
5769
5770 /* Load an address into a register. */
5771
5772 static void
5773 load_address (int reg, expressionS *ep, int *used_at)
5774 {
5775 if (ep->X_op != O_constant
5776 && ep->X_op != O_symbol)
5777 {
5778 as_bad (_("expression too complex"));
5779 ep->X_op = O_constant;
5780 }
5781
5782 if (ep->X_op == O_constant)
5783 {
5784 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
5785 return;
5786 }
5787
5788 if (mips_pic == NO_PIC)
5789 {
5790 /* If this is a reference to a GP relative symbol, we want
5791 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
5792 Otherwise we want
5793 lui $reg,<sym> (BFD_RELOC_HI16_S)
5794 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
5795 If we have an addend, we always use the latter form.
5796
5797 With 64bit address space and a usable $at we want
5798 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5799 lui $at,<sym> (BFD_RELOC_HI16_S)
5800 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
5801 daddiu $at,<sym> (BFD_RELOC_LO16)
5802 dsll32 $reg,0
5803 daddu $reg,$reg,$at
5804
5805 If $at is already in use, we use a path which is suboptimal
5806 on superscalar processors.
5807 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5808 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
5809 dsll $reg,16
5810 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
5811 dsll $reg,16
5812 daddiu $reg,<sym> (BFD_RELOC_LO16)
5813
5814 For GP relative symbols in 64bit address space we can use
5815 the same sequence as in 32bit address space. */
5816 if (HAVE_64BIT_SYMBOLS)
5817 {
5818 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
5819 && !nopic_need_relax (ep->X_add_symbol, 1))
5820 {
5821 relax_start (ep->X_add_symbol);
5822 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
5823 mips_gp_register, BFD_RELOC_GPREL16);
5824 relax_switch ();
5825 }
5826
5827 if (*used_at == 0 && mips_opts.at)
5828 {
5829 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
5830 macro_build (ep, "lui", LUI_FMT, AT, BFD_RELOC_HI16_S);
5831 macro_build (ep, "daddiu", "t,r,j", reg, reg,
5832 BFD_RELOC_MIPS_HIGHER);
5833 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
5834 macro_build (NULL, "dsll32", SHFT_FMT, reg, reg, 0);
5835 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
5836 *used_at = 1;
5837 }
5838 else
5839 {
5840 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
5841 macro_build (ep, "daddiu", "t,r,j", reg, reg,
5842 BFD_RELOC_MIPS_HIGHER);
5843 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
5844 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
5845 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
5846 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
5847 }
5848
5849 if (mips_relax.sequence)
5850 relax_end ();
5851 }
5852 else
5853 {
5854 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
5855 && !nopic_need_relax (ep->X_add_symbol, 1))
5856 {
5857 relax_start (ep->X_add_symbol);
5858 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
5859 mips_gp_register, BFD_RELOC_GPREL16);
5860 relax_switch ();
5861 }
5862 macro_build_lui (ep, reg);
5863 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
5864 reg, reg, BFD_RELOC_LO16);
5865 if (mips_relax.sequence)
5866 relax_end ();
5867 }
5868 }
5869 else if (!mips_big_got)
5870 {
5871 expressionS ex;
5872
5873 /* If this is a reference to an external symbol, we want
5874 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5875 Otherwise we want
5876 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5877 nop
5878 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
5879 If there is a constant, it must be added in after.
5880
5881 If we have NewABI, we want
5882 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5883 unless we're referencing a global symbol with a non-zero
5884 offset, in which case cst must be added separately. */
5885 if (HAVE_NEWABI)
5886 {
5887 if (ep->X_add_number)
5888 {
5889 ex.X_add_number = ep->X_add_number;
5890 ep->X_add_number = 0;
5891 relax_start (ep->X_add_symbol);
5892 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
5893 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5894 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
5895 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
5896 ex.X_op = O_constant;
5897 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
5898 reg, reg, BFD_RELOC_LO16);
5899 ep->X_add_number = ex.X_add_number;
5900 relax_switch ();
5901 }
5902 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
5903 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5904 if (mips_relax.sequence)
5905 relax_end ();
5906 }
5907 else
5908 {
5909 ex.X_add_number = ep->X_add_number;
5910 ep->X_add_number = 0;
5911 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
5912 BFD_RELOC_MIPS_GOT16, mips_gp_register);
5913 load_delay_nop ();
5914 relax_start (ep->X_add_symbol);
5915 relax_switch ();
5916 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
5917 BFD_RELOC_LO16);
5918 relax_end ();
5919
5920 if (ex.X_add_number != 0)
5921 {
5922 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
5923 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
5924 ex.X_op = O_constant;
5925 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
5926 reg, reg, BFD_RELOC_LO16);
5927 }
5928 }
5929 }
5930 else if (mips_big_got)
5931 {
5932 expressionS ex;
5933
5934 /* This is the large GOT case. If this is a reference to an
5935 external symbol, we want
5936 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5937 addu $reg,$reg,$gp
5938 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
5939
5940 Otherwise, for a reference to a local symbol in old ABI, we want
5941 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5942 nop
5943 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
5944 If there is a constant, it must be added in after.
5945
5946 In the NewABI, for local symbols, with or without offsets, we want:
5947 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5948 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5949 */
5950 if (HAVE_NEWABI)
5951 {
5952 ex.X_add_number = ep->X_add_number;
5953 ep->X_add_number = 0;
5954 relax_start (ep->X_add_symbol);
5955 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
5956 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5957 reg, reg, mips_gp_register);
5958 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
5959 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
5960 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
5961 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
5962 else if (ex.X_add_number)
5963 {
5964 ex.X_op = O_constant;
5965 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
5966 BFD_RELOC_LO16);
5967 }
5968
5969 ep->X_add_number = ex.X_add_number;
5970 relax_switch ();
5971 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
5972 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
5973 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
5974 BFD_RELOC_MIPS_GOT_OFST);
5975 relax_end ();
5976 }
5977 else
5978 {
5979 ex.X_add_number = ep->X_add_number;
5980 ep->X_add_number = 0;
5981 relax_start (ep->X_add_symbol);
5982 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
5983 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5984 reg, reg, mips_gp_register);
5985 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
5986 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
5987 relax_switch ();
5988 if (reg_needs_delay (mips_gp_register))
5989 {
5990 /* We need a nop before loading from $gp. This special
5991 check is required because the lui which starts the main
5992 instruction stream does not refer to $gp, and so will not
5993 insert the nop which may be required. */
5994 macro_build (NULL, "nop", "");
5995 }
5996 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
5997 BFD_RELOC_MIPS_GOT16, mips_gp_register);
5998 load_delay_nop ();
5999 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6000 BFD_RELOC_LO16);
6001 relax_end ();
6002
6003 if (ex.X_add_number != 0)
6004 {
6005 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6006 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6007 ex.X_op = O_constant;
6008 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6009 BFD_RELOC_LO16);
6010 }
6011 }
6012 }
6013 else
6014 abort ();
6015
6016 if (!mips_opts.at && *used_at == 1)
6017 as_bad (_("Macro used $at after \".set noat\""));
6018 }
6019
6020 /* Move the contents of register SOURCE into register DEST. */
6021
6022 static void
6023 move_register (int dest, int source)
6024 {
6025 /* Prefer to use a 16-bit microMIPS instruction unless the previous
6026 instruction specifically requires a 32-bit one. */
6027 if (mips_opts.micromips
6028 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
6029 macro_build (NULL, "move", "mp,mj", dest, source);
6030 else
6031 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
6032 dest, source, 0);
6033 }
6034
6035 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
6036 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
6037 The two alternatives are:
6038
6039 Global symbol Local sybmol
6040 ------------- ------------
6041 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
6042 ... ...
6043 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
6044
6045 load_got_offset emits the first instruction and add_got_offset
6046 emits the second for a 16-bit offset or add_got_offset_hilo emits
6047 a sequence to add a 32-bit offset using a scratch register. */
6048
6049 static void
6050 load_got_offset (int dest, expressionS *local)
6051 {
6052 expressionS global;
6053
6054 global = *local;
6055 global.X_add_number = 0;
6056
6057 relax_start (local->X_add_symbol);
6058 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
6059 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6060 relax_switch ();
6061 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
6062 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6063 relax_end ();
6064 }
6065
6066 static void
6067 add_got_offset (int dest, expressionS *local)
6068 {
6069 expressionS global;
6070
6071 global.X_op = O_constant;
6072 global.X_op_symbol = NULL;
6073 global.X_add_symbol = NULL;
6074 global.X_add_number = local->X_add_number;
6075
6076 relax_start (local->X_add_symbol);
6077 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
6078 dest, dest, BFD_RELOC_LO16);
6079 relax_switch ();
6080 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
6081 relax_end ();
6082 }
6083
6084 static void
6085 add_got_offset_hilo (int dest, expressionS *local, int tmp)
6086 {
6087 expressionS global;
6088 int hold_mips_optimize;
6089
6090 global.X_op = O_constant;
6091 global.X_op_symbol = NULL;
6092 global.X_add_symbol = NULL;
6093 global.X_add_number = local->X_add_number;
6094
6095 relax_start (local->X_add_symbol);
6096 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
6097 relax_switch ();
6098 /* Set mips_optimize around the lui instruction to avoid
6099 inserting an unnecessary nop after the lw. */
6100 hold_mips_optimize = mips_optimize;
6101 mips_optimize = 2;
6102 macro_build_lui (&global, tmp);
6103 mips_optimize = hold_mips_optimize;
6104 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
6105 relax_end ();
6106
6107 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
6108 }
6109
6110 /* Emit a sequence of instructions to emulate a branch likely operation.
6111 BR is an ordinary branch corresponding to one to be emulated. BRNEG
6112 is its complementing branch with the original condition negated.
6113 CALL is set if the original branch specified the link operation.
6114 EP, FMT, SREG and TREG specify the usual macro_build() parameters.
6115
6116 Code like this is produced in the noreorder mode:
6117
6118 BRNEG <args>, 1f
6119 nop
6120 b <sym>
6121 delay slot (executed only if branch taken)
6122 1:
6123
6124 or, if CALL is set:
6125
6126 BRNEG <args>, 1f
6127 nop
6128 bal <sym>
6129 delay slot (executed only if branch taken)
6130 1:
6131
6132 In the reorder mode the delay slot would be filled with a nop anyway,
6133 so code produced is simply:
6134
6135 BR <args>, <sym>
6136 nop
6137
6138 This function is used when producing code for the microMIPS ASE that
6139 does not implement branch likely instructions in hardware. */
6140
6141 static void
6142 macro_build_branch_likely (const char *br, const char *brneg,
6143 int call, expressionS *ep, const char *fmt,
6144 unsigned int sreg, unsigned int treg)
6145 {
6146 int noreorder = mips_opts.noreorder;
6147 expressionS expr1;
6148
6149 gas_assert (mips_opts.micromips);
6150 start_noreorder ();
6151 if (noreorder)
6152 {
6153 micromips_label_expr (&expr1);
6154 macro_build (&expr1, brneg, fmt, sreg, treg);
6155 macro_build (NULL, "nop", "");
6156 macro_build (ep, call ? "bal" : "b", "p");
6157
6158 /* Set to true so that append_insn adds a label. */
6159 emit_branch_likely_macro = TRUE;
6160 }
6161 else
6162 {
6163 macro_build (ep, br, fmt, sreg, treg);
6164 macro_build (NULL, "nop", "");
6165 }
6166 end_noreorder ();
6167 }
6168
6169 /* Emit a coprocessor branch-likely macro specified by TYPE, using CC as
6170 the condition code tested. EP specifies the branch target. */
6171
6172 static void
6173 macro_build_branch_ccl (int type, expressionS *ep, unsigned int cc)
6174 {
6175 const int call = 0;
6176 const char *brneg;
6177 const char *br;
6178
6179 switch (type)
6180 {
6181 case M_BC1FL:
6182 br = "bc1f";
6183 brneg = "bc1t";
6184 break;
6185 case M_BC1TL:
6186 br = "bc1t";
6187 brneg = "bc1f";
6188 break;
6189 case M_BC2FL:
6190 br = "bc2f";
6191 brneg = "bc2t";
6192 break;
6193 case M_BC2TL:
6194 br = "bc2t";
6195 brneg = "bc2f";
6196 break;
6197 default:
6198 abort ();
6199 }
6200 macro_build_branch_likely (br, brneg, call, ep, "N,p", cc, ZERO);
6201 }
6202
6203 /* Emit a two-argument branch macro specified by TYPE, using SREG as
6204 the register tested. EP specifies the branch target. */
6205
6206 static void
6207 macro_build_branch_rs (int type, expressionS *ep, unsigned int sreg)
6208 {
6209 const char *brneg = NULL;
6210 const char *br;
6211 int call = 0;
6212
6213 switch (type)
6214 {
6215 case M_BGEZ:
6216 br = "bgez";
6217 break;
6218 case M_BGEZL:
6219 br = mips_opts.micromips ? "bgez" : "bgezl";
6220 brneg = "bltz";
6221 break;
6222 case M_BGEZALL:
6223 gas_assert (mips_opts.micromips);
6224 br = "bgezals";
6225 brneg = "bltz";
6226 call = 1;
6227 break;
6228 case M_BGTZ:
6229 br = "bgtz";
6230 break;
6231 case M_BGTZL:
6232 br = mips_opts.micromips ? "bgtz" : "bgtzl";
6233 brneg = "blez";
6234 break;
6235 case M_BLEZ:
6236 br = "blez";
6237 break;
6238 case M_BLEZL:
6239 br = mips_opts.micromips ? "blez" : "blezl";
6240 brneg = "bgtz";
6241 break;
6242 case M_BLTZ:
6243 br = "bltz";
6244 break;
6245 case M_BLTZL:
6246 br = mips_opts.micromips ? "bltz" : "bltzl";
6247 brneg = "bgez";
6248 break;
6249 case M_BLTZALL:
6250 gas_assert (mips_opts.micromips);
6251 br = "bltzals";
6252 brneg = "bgez";
6253 call = 1;
6254 break;
6255 default:
6256 abort ();
6257 }
6258 if (mips_opts.micromips && brneg)
6259 macro_build_branch_likely (br, brneg, call, ep, "s,p", sreg, ZERO);
6260 else
6261 macro_build (ep, br, "s,p", sreg);
6262 }
6263
6264 /* Emit a three-argument branch macro specified by TYPE, using SREG and
6265 TREG as the registers tested. EP specifies the branch target. */
6266
6267 static void
6268 macro_build_branch_rsrt (int type, expressionS *ep,
6269 unsigned int sreg, unsigned int treg)
6270 {
6271 const char *brneg = NULL;
6272 const int call = 0;
6273 const char *br;
6274
6275 switch (type)
6276 {
6277 case M_BEQ:
6278 case M_BEQ_I:
6279 br = "beq";
6280 break;
6281 case M_BEQL:
6282 case M_BEQL_I:
6283 br = mips_opts.micromips ? "beq" : "beql";
6284 brneg = "bne";
6285 break;
6286 case M_BNE:
6287 case M_BNE_I:
6288 br = "bne";
6289 break;
6290 case M_BNEL:
6291 case M_BNEL_I:
6292 br = mips_opts.micromips ? "bne" : "bnel";
6293 brneg = "beq";
6294 break;
6295 default:
6296 abort ();
6297 }
6298 if (mips_opts.micromips && brneg)
6299 macro_build_branch_likely (br, brneg, call, ep, "s,t,p", sreg, treg);
6300 else
6301 macro_build (ep, br, "s,t,p", sreg, treg);
6302 }
6303
6304 /*
6305 * Build macros
6306 * This routine implements the seemingly endless macro or synthesized
6307 * instructions and addressing modes in the mips assembly language. Many
6308 * of these macros are simple and are similar to each other. These could
6309 * probably be handled by some kind of table or grammar approach instead of
6310 * this verbose method. Others are not simple macros but are more like
6311 * optimizing code generation.
6312 * One interesting optimization is when several store macros appear
6313 * consecutively that would load AT with the upper half of the same address.
6314 * The ensuing load upper instructions are ommited. This implies some kind
6315 * of global optimization. We currently only optimize within a single macro.
6316 * For many of the load and store macros if the address is specified as a
6317 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
6318 * first load register 'at' with zero and use it as the base register. The
6319 * mips assembler simply uses register $zero. Just one tiny optimization
6320 * we're missing.
6321 */
6322 static void
6323 macro (struct mips_cl_insn *ip)
6324 {
6325 unsigned int treg, sreg, dreg, breg;
6326 unsigned int tempreg;
6327 int mask;
6328 int used_at = 0;
6329 expressionS label_expr;
6330 expressionS expr1;
6331 expressionS *ep;
6332 const char *s;
6333 const char *s2;
6334 const char *fmt;
6335 int likely = 0;
6336 int coproc = 0;
6337 int off12 = 0;
6338 int call = 0;
6339 int jals = 0;
6340 int dbl = 0;
6341 int imm = 0;
6342 int ust = 0;
6343 int lp = 0;
6344 int ab = 0;
6345 int off0 = 0;
6346 int off;
6347 offsetT maxnum;
6348 bfd_reloc_code_real_type r;
6349 int hold_mips_optimize;
6350
6351 gas_assert (! mips_opts.mips16);
6352
6353 treg = EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
6354 dreg = EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
6355 sreg = breg = EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
6356 mask = ip->insn_mo->mask;
6357
6358 label_expr.X_op = O_constant;
6359 label_expr.X_op_symbol = NULL;
6360 label_expr.X_add_symbol = NULL;
6361 label_expr.X_add_number = 0;
6362
6363 expr1.X_op = O_constant;
6364 expr1.X_op_symbol = NULL;
6365 expr1.X_add_symbol = NULL;
6366 expr1.X_add_number = 1;
6367
6368 switch (mask)
6369 {
6370 case M_DABS:
6371 dbl = 1;
6372 case M_ABS:
6373 /* bgez $a0,1f
6374 move v0,$a0
6375 sub v0,$zero,$a0
6376 1:
6377 */
6378
6379 start_noreorder ();
6380
6381 if (mips_opts.micromips)
6382 micromips_label_expr (&label_expr);
6383 else
6384 label_expr.X_add_number = 8;
6385 macro_build (&label_expr, "bgez", "s,p", sreg);
6386 if (dreg == sreg)
6387 macro_build (NULL, "nop", "");
6388 else
6389 move_register (dreg, sreg);
6390 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
6391 if (mips_opts.micromips)
6392 micromips_add_label ();
6393
6394 end_noreorder ();
6395 break;
6396
6397 case M_ADD_I:
6398 s = "addi";
6399 s2 = "add";
6400 goto do_addi;
6401 case M_ADDU_I:
6402 s = "addiu";
6403 s2 = "addu";
6404 goto do_addi;
6405 case M_DADD_I:
6406 dbl = 1;
6407 s = "daddi";
6408 s2 = "dadd";
6409 if (!mips_opts.micromips)
6410 goto do_addi;
6411 if (imm_expr.X_op == O_constant
6412 && imm_expr.X_add_number >= -0x200
6413 && imm_expr.X_add_number < 0x200)
6414 {
6415 macro_build (NULL, s, "t,r,.", treg, sreg, imm_expr.X_add_number);
6416 break;
6417 }
6418 goto do_addi_i;
6419 case M_DADDU_I:
6420 dbl = 1;
6421 s = "daddiu";
6422 s2 = "daddu";
6423 do_addi:
6424 if (imm_expr.X_op == O_constant
6425 && imm_expr.X_add_number >= -0x8000
6426 && imm_expr.X_add_number < 0x8000)
6427 {
6428 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
6429 break;
6430 }
6431 do_addi_i:
6432 used_at = 1;
6433 load_register (AT, &imm_expr, dbl);
6434 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
6435 break;
6436
6437 case M_AND_I:
6438 s = "andi";
6439 s2 = "and";
6440 goto do_bit;
6441 case M_OR_I:
6442 s = "ori";
6443 s2 = "or";
6444 goto do_bit;
6445 case M_NOR_I:
6446 s = "";
6447 s2 = "nor";
6448 goto do_bit;
6449 case M_XOR_I:
6450 s = "xori";
6451 s2 = "xor";
6452 do_bit:
6453 if (imm_expr.X_op == O_constant
6454 && imm_expr.X_add_number >= 0
6455 && imm_expr.X_add_number < 0x10000)
6456 {
6457 if (mask != M_NOR_I)
6458 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
6459 else
6460 {
6461 macro_build (&imm_expr, "ori", "t,r,i",
6462 treg, sreg, BFD_RELOC_LO16);
6463 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
6464 }
6465 break;
6466 }
6467
6468 used_at = 1;
6469 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
6470 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
6471 break;
6472
6473 case M_BALIGN:
6474 switch (imm_expr.X_add_number)
6475 {
6476 case 0:
6477 macro_build (NULL, "nop", "");
6478 break;
6479 case 2:
6480 macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
6481 break;
6482 case 1:
6483 case 3:
6484 macro_build (NULL, "balign", "t,s,2", treg, sreg,
6485 (int) imm_expr.X_add_number);
6486 break;
6487 default:
6488 as_bad (_("BALIGN immediate not 0, 1, 2 or 3 (%lu)"),
6489 (unsigned long) imm_expr.X_add_number);
6490 break;
6491 }
6492 break;
6493
6494 case M_BC1FL:
6495 case M_BC1TL:
6496 case M_BC2FL:
6497 case M_BC2TL:
6498 gas_assert (mips_opts.micromips);
6499 macro_build_branch_ccl (mask, &offset_expr,
6500 EXTRACT_OPERAND (1, BCC, *ip));
6501 break;
6502
6503 case M_BEQ_I:
6504 case M_BEQL_I:
6505 case M_BNE_I:
6506 case M_BNEL_I:
6507 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6508 treg = 0;
6509 else
6510 {
6511 treg = AT;
6512 used_at = 1;
6513 load_register (treg, &imm_expr, HAVE_64BIT_GPRS);
6514 }
6515 /* Fall through. */
6516 case M_BEQL:
6517 case M_BNEL:
6518 macro_build_branch_rsrt (mask, &offset_expr, sreg, treg);
6519 break;
6520
6521 case M_BGEL:
6522 likely = 1;
6523 case M_BGE:
6524 if (treg == 0)
6525 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, sreg);
6526 else if (sreg == 0)
6527 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, treg);
6528 else
6529 {
6530 used_at = 1;
6531 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
6532 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6533 &offset_expr, AT, ZERO);
6534 }
6535 break;
6536
6537 case M_BGEZL:
6538 case M_BGEZALL:
6539 case M_BGTZL:
6540 case M_BLEZL:
6541 case M_BLTZL:
6542 case M_BLTZALL:
6543 macro_build_branch_rs (mask, &offset_expr, sreg);
6544 break;
6545
6546 case M_BGTL_I:
6547 likely = 1;
6548 case M_BGT_I:
6549 /* Check for > max integer. */
6550 maxnum = 0x7fffffff;
6551 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
6552 {
6553 maxnum <<= 16;
6554 maxnum |= 0xffff;
6555 maxnum <<= 16;
6556 maxnum |= 0xffff;
6557 }
6558 if (imm_expr.X_op == O_constant
6559 && imm_expr.X_add_number >= maxnum
6560 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
6561 {
6562 do_false:
6563 /* Result is always false. */
6564 if (! likely)
6565 macro_build (NULL, "nop", "");
6566 else
6567 macro_build_branch_rsrt (M_BNEL, &offset_expr, ZERO, ZERO);
6568 break;
6569 }
6570 if (imm_expr.X_op != O_constant)
6571 as_bad (_("Unsupported large constant"));
6572 ++imm_expr.X_add_number;
6573 /* FALLTHROUGH */
6574 case M_BGE_I:
6575 case M_BGEL_I:
6576 if (mask == M_BGEL_I)
6577 likely = 1;
6578 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6579 {
6580 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ,
6581 &offset_expr, sreg);
6582 break;
6583 }
6584 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
6585 {
6586 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ,
6587 &offset_expr, sreg);
6588 break;
6589 }
6590 maxnum = 0x7fffffff;
6591 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
6592 {
6593 maxnum <<= 16;
6594 maxnum |= 0xffff;
6595 maxnum <<= 16;
6596 maxnum |= 0xffff;
6597 }
6598 maxnum = - maxnum - 1;
6599 if (imm_expr.X_op == O_constant
6600 && imm_expr.X_add_number <= maxnum
6601 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
6602 {
6603 do_true:
6604 /* result is always true */
6605 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
6606 macro_build (&offset_expr, "b", "p");
6607 break;
6608 }
6609 used_at = 1;
6610 set_at (sreg, 0);
6611 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6612 &offset_expr, AT, ZERO);
6613 break;
6614
6615 case M_BGEUL:
6616 likely = 1;
6617 case M_BGEU:
6618 if (treg == 0)
6619 goto do_true;
6620 else if (sreg == 0)
6621 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6622 &offset_expr, ZERO, treg);
6623 else
6624 {
6625 used_at = 1;
6626 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
6627 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6628 &offset_expr, AT, ZERO);
6629 }
6630 break;
6631
6632 case M_BGTUL_I:
6633 likely = 1;
6634 case M_BGTU_I:
6635 if (sreg == 0
6636 || (HAVE_32BIT_GPRS
6637 && imm_expr.X_op == O_constant
6638 && imm_expr.X_add_number == -1))
6639 goto do_false;
6640 if (imm_expr.X_op != O_constant)
6641 as_bad (_("Unsupported large constant"));
6642 ++imm_expr.X_add_number;
6643 /* FALLTHROUGH */
6644 case M_BGEU_I:
6645 case M_BGEUL_I:
6646 if (mask == M_BGEUL_I)
6647 likely = 1;
6648 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6649 goto do_true;
6650 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
6651 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
6652 &offset_expr, sreg, ZERO);
6653 else
6654 {
6655 used_at = 1;
6656 set_at (sreg, 1);
6657 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6658 &offset_expr, AT, ZERO);
6659 }
6660 break;
6661
6662 case M_BGTL:
6663 likely = 1;
6664 case M_BGT:
6665 if (treg == 0)
6666 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, sreg);
6667 else if (sreg == 0)
6668 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, treg);
6669 else
6670 {
6671 used_at = 1;
6672 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
6673 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
6674 &offset_expr, AT, ZERO);
6675 }
6676 break;
6677
6678 case M_BGTUL:
6679 likely = 1;
6680 case M_BGTU:
6681 if (treg == 0)
6682 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
6683 &offset_expr, sreg, ZERO);
6684 else if (sreg == 0)
6685 goto do_false;
6686 else
6687 {
6688 used_at = 1;
6689 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
6690 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
6691 &offset_expr, AT, ZERO);
6692 }
6693 break;
6694
6695 case M_BLEL:
6696 likely = 1;
6697 case M_BLE:
6698 if (treg == 0)
6699 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
6700 else if (sreg == 0)
6701 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, treg);
6702 else
6703 {
6704 used_at = 1;
6705 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
6706 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6707 &offset_expr, AT, ZERO);
6708 }
6709 break;
6710
6711 case M_BLEL_I:
6712 likely = 1;
6713 case M_BLE_I:
6714 maxnum = 0x7fffffff;
6715 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
6716 {
6717 maxnum <<= 16;
6718 maxnum |= 0xffff;
6719 maxnum <<= 16;
6720 maxnum |= 0xffff;
6721 }
6722 if (imm_expr.X_op == O_constant
6723 && imm_expr.X_add_number >= maxnum
6724 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
6725 goto do_true;
6726 if (imm_expr.X_op != O_constant)
6727 as_bad (_("Unsupported large constant"));
6728 ++imm_expr.X_add_number;
6729 /* FALLTHROUGH */
6730 case M_BLT_I:
6731 case M_BLTL_I:
6732 if (mask == M_BLTL_I)
6733 likely = 1;
6734 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6735 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
6736 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
6737 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
6738 else
6739 {
6740 used_at = 1;
6741 set_at (sreg, 0);
6742 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
6743 &offset_expr, AT, ZERO);
6744 }
6745 break;
6746
6747 case M_BLEUL:
6748 likely = 1;
6749 case M_BLEU:
6750 if (treg == 0)
6751 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6752 &offset_expr, sreg, ZERO);
6753 else if (sreg == 0)
6754 goto do_true;
6755 else
6756 {
6757 used_at = 1;
6758 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
6759 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6760 &offset_expr, AT, ZERO);
6761 }
6762 break;
6763
6764 case M_BLEUL_I:
6765 likely = 1;
6766 case M_BLEU_I:
6767 if (sreg == 0
6768 || (HAVE_32BIT_GPRS
6769 && imm_expr.X_op == O_constant
6770 && imm_expr.X_add_number == -1))
6771 goto do_true;
6772 if (imm_expr.X_op != O_constant)
6773 as_bad (_("Unsupported large constant"));
6774 ++imm_expr.X_add_number;
6775 /* FALLTHROUGH */
6776 case M_BLTU_I:
6777 case M_BLTUL_I:
6778 if (mask == M_BLTUL_I)
6779 likely = 1;
6780 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6781 goto do_false;
6782 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
6783 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6784 &offset_expr, sreg, ZERO);
6785 else
6786 {
6787 used_at = 1;
6788 set_at (sreg, 1);
6789 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
6790 &offset_expr, AT, ZERO);
6791 }
6792 break;
6793
6794 case M_BLTL:
6795 likely = 1;
6796 case M_BLT:
6797 if (treg == 0)
6798 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
6799 else if (sreg == 0)
6800 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, treg);
6801 else
6802 {
6803 used_at = 1;
6804 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
6805 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
6806 &offset_expr, AT, ZERO);
6807 }
6808 break;
6809
6810 case M_BLTUL:
6811 likely = 1;
6812 case M_BLTU:
6813 if (treg == 0)
6814 goto do_false;
6815 else if (sreg == 0)
6816 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
6817 &offset_expr, ZERO, treg);
6818 else
6819 {
6820 used_at = 1;
6821 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
6822 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
6823 &offset_expr, AT, ZERO);
6824 }
6825 break;
6826
6827 case M_DEXT:
6828 {
6829 /* Use unsigned arithmetic. */
6830 addressT pos;
6831 addressT size;
6832
6833 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
6834 {
6835 as_bad (_("Unsupported large constant"));
6836 pos = size = 1;
6837 }
6838 else
6839 {
6840 pos = imm_expr.X_add_number;
6841 size = imm2_expr.X_add_number;
6842 }
6843
6844 if (pos > 63)
6845 {
6846 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
6847 pos = 1;
6848 }
6849 if (size == 0 || size > 64 || (pos + size - 1) > 63)
6850 {
6851 as_bad (_("Improper extract size (%lu, position %lu)"),
6852 (unsigned long) size, (unsigned long) pos);
6853 size = 1;
6854 }
6855
6856 if (size <= 32 && pos < 32)
6857 {
6858 s = "dext";
6859 fmt = "t,r,+A,+C";
6860 }
6861 else if (size <= 32)
6862 {
6863 s = "dextu";
6864 fmt = "t,r,+E,+H";
6865 }
6866 else
6867 {
6868 s = "dextm";
6869 fmt = "t,r,+A,+G";
6870 }
6871 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
6872 (int) (size - 1));
6873 }
6874 break;
6875
6876 case M_DINS:
6877 {
6878 /* Use unsigned arithmetic. */
6879 addressT pos;
6880 addressT size;
6881
6882 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
6883 {
6884 as_bad (_("Unsupported large constant"));
6885 pos = size = 1;
6886 }
6887 else
6888 {
6889 pos = imm_expr.X_add_number;
6890 size = imm2_expr.X_add_number;
6891 }
6892
6893 if (pos > 63)
6894 {
6895 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
6896 pos = 1;
6897 }
6898 if (size == 0 || size > 64 || (pos + size - 1) > 63)
6899 {
6900 as_bad (_("Improper insert size (%lu, position %lu)"),
6901 (unsigned long) size, (unsigned long) pos);
6902 size = 1;
6903 }
6904
6905 if (pos < 32 && (pos + size - 1) < 32)
6906 {
6907 s = "dins";
6908 fmt = "t,r,+A,+B";
6909 }
6910 else if (pos >= 32)
6911 {
6912 s = "dinsu";
6913 fmt = "t,r,+E,+F";
6914 }
6915 else
6916 {
6917 s = "dinsm";
6918 fmt = "t,r,+A,+F";
6919 }
6920 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
6921 (int) (pos + size - 1));
6922 }
6923 break;
6924
6925 case M_DDIV_3:
6926 dbl = 1;
6927 case M_DIV_3:
6928 s = "mflo";
6929 goto do_div3;
6930 case M_DREM_3:
6931 dbl = 1;
6932 case M_REM_3:
6933 s = "mfhi";
6934 do_div3:
6935 if (treg == 0)
6936 {
6937 as_warn (_("Divide by zero."));
6938 if (mips_trap)
6939 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
6940 else
6941 macro_build (NULL, "break", BRK_FMT, 7);
6942 break;
6943 }
6944
6945 start_noreorder ();
6946 if (mips_trap)
6947 {
6948 macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
6949 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
6950 }
6951 else
6952 {
6953 if (mips_opts.micromips)
6954 micromips_label_expr (&label_expr);
6955 else
6956 label_expr.X_add_number = 8;
6957 macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
6958 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
6959 macro_build (NULL, "break", BRK_FMT, 7);
6960 if (mips_opts.micromips)
6961 micromips_add_label ();
6962 }
6963 expr1.X_add_number = -1;
6964 used_at = 1;
6965 load_register (AT, &expr1, dbl);
6966 if (mips_opts.micromips)
6967 micromips_label_expr (&label_expr);
6968 else
6969 label_expr.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
6970 macro_build (&label_expr, "bne", "s,t,p", treg, AT);
6971 if (dbl)
6972 {
6973 expr1.X_add_number = 1;
6974 load_register (AT, &expr1, dbl);
6975 macro_build (NULL, "dsll32", SHFT_FMT, AT, AT, 31);
6976 }
6977 else
6978 {
6979 expr1.X_add_number = 0x80000000;
6980 macro_build (&expr1, "lui", LUI_FMT, AT, BFD_RELOC_HI16);
6981 }
6982 if (mips_trap)
6983 {
6984 macro_build (NULL, "teq", TRAP_FMT, sreg, AT, 6);
6985 /* We want to close the noreorder block as soon as possible, so
6986 that later insns are available for delay slot filling. */
6987 end_noreorder ();
6988 }
6989 else
6990 {
6991 if (mips_opts.micromips)
6992 micromips_label_expr (&label_expr);
6993 else
6994 label_expr.X_add_number = 8;
6995 macro_build (&label_expr, "bne", "s,t,p", sreg, AT);
6996 macro_build (NULL, "nop", "");
6997
6998 /* We want to close the noreorder block as soon as possible, so
6999 that later insns are available for delay slot filling. */
7000 end_noreorder ();
7001
7002 macro_build (NULL, "break", BRK_FMT, 6);
7003 }
7004 if (mips_opts.micromips)
7005 micromips_add_label ();
7006 macro_build (NULL, s, MFHL_FMT, dreg);
7007 break;
7008
7009 case M_DIV_3I:
7010 s = "div";
7011 s2 = "mflo";
7012 goto do_divi;
7013 case M_DIVU_3I:
7014 s = "divu";
7015 s2 = "mflo";
7016 goto do_divi;
7017 case M_REM_3I:
7018 s = "div";
7019 s2 = "mfhi";
7020 goto do_divi;
7021 case M_REMU_3I:
7022 s = "divu";
7023 s2 = "mfhi";
7024 goto do_divi;
7025 case M_DDIV_3I:
7026 dbl = 1;
7027 s = "ddiv";
7028 s2 = "mflo";
7029 goto do_divi;
7030 case M_DDIVU_3I:
7031 dbl = 1;
7032 s = "ddivu";
7033 s2 = "mflo";
7034 goto do_divi;
7035 case M_DREM_3I:
7036 dbl = 1;
7037 s = "ddiv";
7038 s2 = "mfhi";
7039 goto do_divi;
7040 case M_DREMU_3I:
7041 dbl = 1;
7042 s = "ddivu";
7043 s2 = "mfhi";
7044 do_divi:
7045 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7046 {
7047 as_warn (_("Divide by zero."));
7048 if (mips_trap)
7049 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
7050 else
7051 macro_build (NULL, "break", BRK_FMT, 7);
7052 break;
7053 }
7054 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7055 {
7056 if (strcmp (s2, "mflo") == 0)
7057 move_register (dreg, sreg);
7058 else
7059 move_register (dreg, ZERO);
7060 break;
7061 }
7062 if (imm_expr.X_op == O_constant
7063 && imm_expr.X_add_number == -1
7064 && s[strlen (s) - 1] != 'u')
7065 {
7066 if (strcmp (s2, "mflo") == 0)
7067 {
7068 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
7069 }
7070 else
7071 move_register (dreg, ZERO);
7072 break;
7073 }
7074
7075 used_at = 1;
7076 load_register (AT, &imm_expr, dbl);
7077 macro_build (NULL, s, "z,s,t", sreg, AT);
7078 macro_build (NULL, s2, MFHL_FMT, dreg);
7079 break;
7080
7081 case M_DIVU_3:
7082 s = "divu";
7083 s2 = "mflo";
7084 goto do_divu3;
7085 case M_REMU_3:
7086 s = "divu";
7087 s2 = "mfhi";
7088 goto do_divu3;
7089 case M_DDIVU_3:
7090 s = "ddivu";
7091 s2 = "mflo";
7092 goto do_divu3;
7093 case M_DREMU_3:
7094 s = "ddivu";
7095 s2 = "mfhi";
7096 do_divu3:
7097 start_noreorder ();
7098 if (mips_trap)
7099 {
7100 macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
7101 macro_build (NULL, s, "z,s,t", sreg, treg);
7102 /* We want to close the noreorder block as soon as possible, so
7103 that later insns are available for delay slot filling. */
7104 end_noreorder ();
7105 }
7106 else
7107 {
7108 if (mips_opts.micromips)
7109 micromips_label_expr (&label_expr);
7110 else
7111 label_expr.X_add_number = 8;
7112 macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
7113 macro_build (NULL, s, "z,s,t", sreg, treg);
7114
7115 /* We want to close the noreorder block as soon as possible, so
7116 that later insns are available for delay slot filling. */
7117 end_noreorder ();
7118 macro_build (NULL, "break", BRK_FMT, 7);
7119 if (mips_opts.micromips)
7120 micromips_add_label ();
7121 }
7122 macro_build (NULL, s2, MFHL_FMT, dreg);
7123 break;
7124
7125 case M_DLCA_AB:
7126 dbl = 1;
7127 case M_LCA_AB:
7128 call = 1;
7129 goto do_la;
7130 case M_DLA_AB:
7131 dbl = 1;
7132 case M_LA_AB:
7133 do_la:
7134 /* Load the address of a symbol into a register. If breg is not
7135 zero, we then add a base register to it. */
7136
7137 if (dbl && HAVE_32BIT_GPRS)
7138 as_warn (_("dla used to load 32-bit register"));
7139
7140 if (!dbl && HAVE_64BIT_OBJECTS)
7141 as_warn (_("la used to load 64-bit address"));
7142
7143 if (offset_expr.X_op == O_constant
7144 && offset_expr.X_add_number >= -0x8000
7145 && offset_expr.X_add_number < 0x8000)
7146 {
7147 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
7148 "t,r,j", treg, sreg, BFD_RELOC_LO16);
7149 break;
7150 }
7151
7152 if (mips_opts.at && (treg == breg))
7153 {
7154 tempreg = AT;
7155 used_at = 1;
7156 }
7157 else
7158 {
7159 tempreg = treg;
7160 }
7161
7162 if (offset_expr.X_op != O_symbol
7163 && offset_expr.X_op != O_constant)
7164 {
7165 as_bad (_("Expression too complex"));
7166 offset_expr.X_op = O_constant;
7167 }
7168
7169 if (offset_expr.X_op == O_constant)
7170 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
7171 else if (mips_pic == NO_PIC)
7172 {
7173 /* If this is a reference to a GP relative symbol, we want
7174 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
7175 Otherwise we want
7176 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
7177 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7178 If we have a constant, we need two instructions anyhow,
7179 so we may as well always use the latter form.
7180
7181 With 64bit address space and a usable $at we want
7182 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
7183 lui $at,<sym> (BFD_RELOC_HI16_S)
7184 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
7185 daddiu $at,<sym> (BFD_RELOC_LO16)
7186 dsll32 $tempreg,0
7187 daddu $tempreg,$tempreg,$at
7188
7189 If $at is already in use, we use a path which is suboptimal
7190 on superscalar processors.
7191 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
7192 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
7193 dsll $tempreg,16
7194 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
7195 dsll $tempreg,16
7196 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
7197
7198 For GP relative symbols in 64bit address space we can use
7199 the same sequence as in 32bit address space. */
7200 if (HAVE_64BIT_SYMBOLS)
7201 {
7202 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7203 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7204 {
7205 relax_start (offset_expr.X_add_symbol);
7206 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7207 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
7208 relax_switch ();
7209 }
7210
7211 if (used_at == 0 && mips_opts.at)
7212 {
7213 macro_build (&offset_expr, "lui", LUI_FMT,
7214 tempreg, BFD_RELOC_MIPS_HIGHEST);
7215 macro_build (&offset_expr, "lui", LUI_FMT,
7216 AT, BFD_RELOC_HI16_S);
7217 macro_build (&offset_expr, "daddiu", "t,r,j",
7218 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
7219 macro_build (&offset_expr, "daddiu", "t,r,j",
7220 AT, AT, BFD_RELOC_LO16);
7221 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
7222 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
7223 used_at = 1;
7224 }
7225 else
7226 {
7227 macro_build (&offset_expr, "lui", LUI_FMT,
7228 tempreg, BFD_RELOC_MIPS_HIGHEST);
7229 macro_build (&offset_expr, "daddiu", "t,r,j",
7230 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
7231 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
7232 macro_build (&offset_expr, "daddiu", "t,r,j",
7233 tempreg, tempreg, BFD_RELOC_HI16_S);
7234 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
7235 macro_build (&offset_expr, "daddiu", "t,r,j",
7236 tempreg, tempreg, BFD_RELOC_LO16);
7237 }
7238
7239 if (mips_relax.sequence)
7240 relax_end ();
7241 }
7242 else
7243 {
7244 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7245 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7246 {
7247 relax_start (offset_expr.X_add_symbol);
7248 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7249 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
7250 relax_switch ();
7251 }
7252 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
7253 as_bad (_("Offset too large"));
7254 macro_build_lui (&offset_expr, tempreg);
7255 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7256 tempreg, tempreg, BFD_RELOC_LO16);
7257 if (mips_relax.sequence)
7258 relax_end ();
7259 }
7260 }
7261 else if (!mips_big_got && !HAVE_NEWABI)
7262 {
7263 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
7264
7265 /* If this is a reference to an external symbol, and there
7266 is no constant, we want
7267 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7268 or for lca or if tempreg is PIC_CALL_REG
7269 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
7270 For a local symbol, we want
7271 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7272 nop
7273 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7274
7275 If we have a small constant, and this is a reference to
7276 an external symbol, we want
7277 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7278 nop
7279 addiu $tempreg,$tempreg,<constant>
7280 For a local symbol, we want the same instruction
7281 sequence, but we output a BFD_RELOC_LO16 reloc on the
7282 addiu instruction.
7283
7284 If we have a large constant, and this is a reference to
7285 an external symbol, we want
7286 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7287 lui $at,<hiconstant>
7288 addiu $at,$at,<loconstant>
7289 addu $tempreg,$tempreg,$at
7290 For a local symbol, we want the same instruction
7291 sequence, but we output a BFD_RELOC_LO16 reloc on the
7292 addiu instruction.
7293 */
7294
7295 if (offset_expr.X_add_number == 0)
7296 {
7297 if (mips_pic == SVR4_PIC
7298 && breg == 0
7299 && (call || tempreg == PIC_CALL_REG))
7300 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
7301
7302 relax_start (offset_expr.X_add_symbol);
7303 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7304 lw_reloc_type, mips_gp_register);
7305 if (breg != 0)
7306 {
7307 /* We're going to put in an addu instruction using
7308 tempreg, so we may as well insert the nop right
7309 now. */
7310 load_delay_nop ();
7311 }
7312 relax_switch ();
7313 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7314 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
7315 load_delay_nop ();
7316 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7317 tempreg, tempreg, BFD_RELOC_LO16);
7318 relax_end ();
7319 /* FIXME: If breg == 0, and the next instruction uses
7320 $tempreg, then if this variant case is used an extra
7321 nop will be generated. */
7322 }
7323 else if (offset_expr.X_add_number >= -0x8000
7324 && offset_expr.X_add_number < 0x8000)
7325 {
7326 load_got_offset (tempreg, &offset_expr);
7327 load_delay_nop ();
7328 add_got_offset (tempreg, &offset_expr);
7329 }
7330 else
7331 {
7332 expr1.X_add_number = offset_expr.X_add_number;
7333 offset_expr.X_add_number =
7334 SEXT_16BIT (offset_expr.X_add_number);
7335 load_got_offset (tempreg, &offset_expr);
7336 offset_expr.X_add_number = expr1.X_add_number;
7337 /* If we are going to add in a base register, and the
7338 target register and the base register are the same,
7339 then we are using AT as a temporary register. Since
7340 we want to load the constant into AT, we add our
7341 current AT (from the global offset table) and the
7342 register into the register now, and pretend we were
7343 not using a base register. */
7344 if (breg == treg)
7345 {
7346 load_delay_nop ();
7347 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7348 treg, AT, breg);
7349 breg = 0;
7350 tempreg = treg;
7351 }
7352 add_got_offset_hilo (tempreg, &offset_expr, AT);
7353 used_at = 1;
7354 }
7355 }
7356 else if (!mips_big_got && HAVE_NEWABI)
7357 {
7358 int add_breg_early = 0;
7359
7360 /* If this is a reference to an external, and there is no
7361 constant, or local symbol (*), with or without a
7362 constant, we want
7363 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7364 or for lca or if tempreg is PIC_CALL_REG
7365 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
7366
7367 If we have a small constant, and this is a reference to
7368 an external symbol, we want
7369 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7370 addiu $tempreg,$tempreg,<constant>
7371
7372 If we have a large constant, and this is a reference to
7373 an external symbol, we want
7374 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7375 lui $at,<hiconstant>
7376 addiu $at,$at,<loconstant>
7377 addu $tempreg,$tempreg,$at
7378
7379 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
7380 local symbols, even though it introduces an additional
7381 instruction. */
7382
7383 if (offset_expr.X_add_number)
7384 {
7385 expr1.X_add_number = offset_expr.X_add_number;
7386 offset_expr.X_add_number = 0;
7387
7388 relax_start (offset_expr.X_add_symbol);
7389 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7390 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7391
7392 if (expr1.X_add_number >= -0x8000
7393 && expr1.X_add_number < 0x8000)
7394 {
7395 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
7396 tempreg, tempreg, BFD_RELOC_LO16);
7397 }
7398 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
7399 {
7400 /* If we are going to add in a base register, and the
7401 target register and the base register are the same,
7402 then we are using AT as a temporary register. Since
7403 we want to load the constant into AT, we add our
7404 current AT (from the global offset table) and the
7405 register into the register now, and pretend we were
7406 not using a base register. */
7407 if (breg != treg)
7408 dreg = tempreg;
7409 else
7410 {
7411 gas_assert (tempreg == AT);
7412 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7413 treg, AT, breg);
7414 dreg = treg;
7415 add_breg_early = 1;
7416 }
7417
7418 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
7419 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7420 dreg, dreg, AT);
7421
7422 used_at = 1;
7423 }
7424 else
7425 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
7426
7427 relax_switch ();
7428 offset_expr.X_add_number = expr1.X_add_number;
7429
7430 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7431 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7432 if (add_breg_early)
7433 {
7434 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7435 treg, tempreg, breg);
7436 breg = 0;
7437 tempreg = treg;
7438 }
7439 relax_end ();
7440 }
7441 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
7442 {
7443 relax_start (offset_expr.X_add_symbol);
7444 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7445 BFD_RELOC_MIPS_CALL16, mips_gp_register);
7446 relax_switch ();
7447 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7448 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7449 relax_end ();
7450 }
7451 else
7452 {
7453 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7454 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7455 }
7456 }
7457 else if (mips_big_got && !HAVE_NEWABI)
7458 {
7459 int gpdelay;
7460 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
7461 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
7462 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
7463
7464 /* This is the large GOT case. If this is a reference to an
7465 external symbol, and there is no constant, we want
7466 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7467 addu $tempreg,$tempreg,$gp
7468 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7469 or for lca or if tempreg is PIC_CALL_REG
7470 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
7471 addu $tempreg,$tempreg,$gp
7472 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
7473 For a local symbol, we want
7474 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7475 nop
7476 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7477
7478 If we have a small constant, and this is a reference to
7479 an external symbol, we want
7480 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7481 addu $tempreg,$tempreg,$gp
7482 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7483 nop
7484 addiu $tempreg,$tempreg,<constant>
7485 For a local symbol, we want
7486 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7487 nop
7488 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
7489
7490 If we have a large constant, and this is a reference to
7491 an external symbol, we want
7492 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7493 addu $tempreg,$tempreg,$gp
7494 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7495 lui $at,<hiconstant>
7496 addiu $at,$at,<loconstant>
7497 addu $tempreg,$tempreg,$at
7498 For a local symbol, we want
7499 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7500 lui $at,<hiconstant>
7501 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
7502 addu $tempreg,$tempreg,$at
7503 */
7504
7505 expr1.X_add_number = offset_expr.X_add_number;
7506 offset_expr.X_add_number = 0;
7507 relax_start (offset_expr.X_add_symbol);
7508 gpdelay = reg_needs_delay (mips_gp_register);
7509 if (expr1.X_add_number == 0 && breg == 0
7510 && (call || tempreg == PIC_CALL_REG))
7511 {
7512 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
7513 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
7514 }
7515 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
7516 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7517 tempreg, tempreg, mips_gp_register);
7518 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7519 tempreg, lw_reloc_type, tempreg);
7520 if (expr1.X_add_number == 0)
7521 {
7522 if (breg != 0)
7523 {
7524 /* We're going to put in an addu instruction using
7525 tempreg, so we may as well insert the nop right
7526 now. */
7527 load_delay_nop ();
7528 }
7529 }
7530 else if (expr1.X_add_number >= -0x8000
7531 && expr1.X_add_number < 0x8000)
7532 {
7533 load_delay_nop ();
7534 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
7535 tempreg, tempreg, BFD_RELOC_LO16);
7536 }
7537 else
7538 {
7539 /* If we are going to add in a base register, and the
7540 target register and the base register are the same,
7541 then we are using AT as a temporary register. Since
7542 we want to load the constant into AT, we add our
7543 current AT (from the global offset table) and the
7544 register into the register now, and pretend we were
7545 not using a base register. */
7546 if (breg != treg)
7547 dreg = tempreg;
7548 else
7549 {
7550 gas_assert (tempreg == AT);
7551 load_delay_nop ();
7552 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7553 treg, AT, breg);
7554 dreg = treg;
7555 }
7556
7557 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
7558 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
7559
7560 used_at = 1;
7561 }
7562 offset_expr.X_add_number = SEXT_16BIT (expr1.X_add_number);
7563 relax_switch ();
7564
7565 if (gpdelay)
7566 {
7567 /* This is needed because this instruction uses $gp, but
7568 the first instruction on the main stream does not. */
7569 macro_build (NULL, "nop", "");
7570 }
7571
7572 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7573 local_reloc_type, mips_gp_register);
7574 if (expr1.X_add_number >= -0x8000
7575 && expr1.X_add_number < 0x8000)
7576 {
7577 load_delay_nop ();
7578 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7579 tempreg, tempreg, BFD_RELOC_LO16);
7580 /* FIXME: If add_number is 0, and there was no base
7581 register, the external symbol case ended with a load,
7582 so if the symbol turns out to not be external, and
7583 the next instruction uses tempreg, an unnecessary nop
7584 will be inserted. */
7585 }
7586 else
7587 {
7588 if (breg == treg)
7589 {
7590 /* We must add in the base register now, as in the
7591 external symbol case. */
7592 gas_assert (tempreg == AT);
7593 load_delay_nop ();
7594 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7595 treg, AT, breg);
7596 tempreg = treg;
7597 /* We set breg to 0 because we have arranged to add
7598 it in in both cases. */
7599 breg = 0;
7600 }
7601
7602 macro_build_lui (&expr1, AT);
7603 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7604 AT, AT, BFD_RELOC_LO16);
7605 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7606 tempreg, tempreg, AT);
7607 used_at = 1;
7608 }
7609 relax_end ();
7610 }
7611 else if (mips_big_got && HAVE_NEWABI)
7612 {
7613 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
7614 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
7615 int add_breg_early = 0;
7616
7617 /* This is the large GOT case. If this is a reference to an
7618 external symbol, and there is no constant, we want
7619 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7620 add $tempreg,$tempreg,$gp
7621 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7622 or for lca or if tempreg is PIC_CALL_REG
7623 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
7624 add $tempreg,$tempreg,$gp
7625 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
7626
7627 If we have a small constant, and this is a reference to
7628 an external symbol, we want
7629 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7630 add $tempreg,$tempreg,$gp
7631 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7632 addi $tempreg,$tempreg,<constant>
7633
7634 If we have a large constant, and this is a reference to
7635 an external symbol, we want
7636 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7637 addu $tempreg,$tempreg,$gp
7638 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7639 lui $at,<hiconstant>
7640 addi $at,$at,<loconstant>
7641 add $tempreg,$tempreg,$at
7642
7643 If we have NewABI, and we know it's a local symbol, we want
7644 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
7645 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
7646 otherwise we have to resort to GOT_HI16/GOT_LO16. */
7647
7648 relax_start (offset_expr.X_add_symbol);
7649
7650 expr1.X_add_number = offset_expr.X_add_number;
7651 offset_expr.X_add_number = 0;
7652
7653 if (expr1.X_add_number == 0 && breg == 0
7654 && (call || tempreg == PIC_CALL_REG))
7655 {
7656 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
7657 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
7658 }
7659 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
7660 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7661 tempreg, tempreg, mips_gp_register);
7662 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7663 tempreg, lw_reloc_type, tempreg);
7664
7665 if (expr1.X_add_number == 0)
7666 ;
7667 else if (expr1.X_add_number >= -0x8000
7668 && expr1.X_add_number < 0x8000)
7669 {
7670 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
7671 tempreg, tempreg, BFD_RELOC_LO16);
7672 }
7673 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
7674 {
7675 /* If we are going to add in a base register, and the
7676 target register and the base register are the same,
7677 then we are using AT as a temporary register. Since
7678 we want to load the constant into AT, we add our
7679 current AT (from the global offset table) and the
7680 register into the register now, and pretend we were
7681 not using a base register. */
7682 if (breg != treg)
7683 dreg = tempreg;
7684 else
7685 {
7686 gas_assert (tempreg == AT);
7687 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7688 treg, AT, breg);
7689 dreg = treg;
7690 add_breg_early = 1;
7691 }
7692
7693 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
7694 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
7695
7696 used_at = 1;
7697 }
7698 else
7699 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
7700
7701 relax_switch ();
7702 offset_expr.X_add_number = expr1.X_add_number;
7703 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7704 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
7705 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
7706 tempreg, BFD_RELOC_MIPS_GOT_OFST);
7707 if (add_breg_early)
7708 {
7709 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7710 treg, tempreg, breg);
7711 breg = 0;
7712 tempreg = treg;
7713 }
7714 relax_end ();
7715 }
7716 else
7717 abort ();
7718
7719 if (breg != 0)
7720 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
7721 break;
7722
7723 case M_MSGSND:
7724 gas_assert (!mips_opts.micromips);
7725 {
7726 unsigned long temp = (treg << 16) | (0x01);
7727 macro_build (NULL, "c2", "C", temp);
7728 }
7729 break;
7730
7731 case M_MSGLD:
7732 gas_assert (!mips_opts.micromips);
7733 {
7734 unsigned long temp = (0x02);
7735 macro_build (NULL, "c2", "C", temp);
7736 }
7737 break;
7738
7739 case M_MSGLD_T:
7740 gas_assert (!mips_opts.micromips);
7741 {
7742 unsigned long temp = (treg << 16) | (0x02);
7743 macro_build (NULL, "c2", "C", temp);
7744 }
7745 break;
7746
7747 case M_MSGWAIT:
7748 gas_assert (!mips_opts.micromips);
7749 macro_build (NULL, "c2", "C", 3);
7750 break;
7751
7752 case M_MSGWAIT_T:
7753 gas_assert (!mips_opts.micromips);
7754 {
7755 unsigned long temp = (treg << 16) | 0x03;
7756 macro_build (NULL, "c2", "C", temp);
7757 }
7758 break;
7759
7760 case M_J_A:
7761 /* The j instruction may not be used in PIC code, since it
7762 requires an absolute address. We convert it to a b
7763 instruction. */
7764 if (mips_pic == NO_PIC)
7765 macro_build (&offset_expr, "j", "a");
7766 else
7767 macro_build (&offset_expr, "b", "p");
7768 break;
7769
7770 /* The jal instructions must be handled as macros because when
7771 generating PIC code they expand to multi-instruction
7772 sequences. Normally they are simple instructions. */
7773 case M_JALS_1:
7774 dreg = RA;
7775 /* Fall through. */
7776 case M_JALS_2:
7777 gas_assert (mips_opts.micromips);
7778 jals = 1;
7779 goto jal;
7780 case M_JAL_1:
7781 dreg = RA;
7782 /* Fall through. */
7783 case M_JAL_2:
7784 jal:
7785 if (mips_pic == NO_PIC)
7786 {
7787 s = jals ? "jalrs" : "jalr";
7788 if (mips_opts.micromips
7789 && dreg == RA
7790 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
7791 macro_build (NULL, s, "mj", sreg);
7792 else
7793 macro_build (NULL, s, JALR_FMT, dreg, sreg);
7794 }
7795 else
7796 {
7797 int cprestore = (mips_pic == SVR4_PIC && !HAVE_NEWABI
7798 && mips_cprestore_offset >= 0);
7799
7800 if (sreg != PIC_CALL_REG)
7801 as_warn (_("MIPS PIC call to register other than $25"));
7802
7803 s = (mips_opts.micromips && (!mips_opts.noreorder || cprestore)
7804 ? "jalrs" : "jalr");
7805 if (mips_opts.micromips
7806 && dreg == RA
7807 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
7808 macro_build (NULL, s, "mj", sreg);
7809 else
7810 macro_build (NULL, s, JALR_FMT, dreg, sreg);
7811 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
7812 {
7813 if (mips_cprestore_offset < 0)
7814 as_warn (_("No .cprestore pseudo-op used in PIC code"));
7815 else
7816 {
7817 if (!mips_frame_reg_valid)
7818 {
7819 as_warn (_("No .frame pseudo-op used in PIC code"));
7820 /* Quiet this warning. */
7821 mips_frame_reg_valid = 1;
7822 }
7823 if (!mips_cprestore_valid)
7824 {
7825 as_warn (_("No .cprestore pseudo-op used in PIC code"));
7826 /* Quiet this warning. */
7827 mips_cprestore_valid = 1;
7828 }
7829 if (mips_opts.noreorder)
7830 macro_build (NULL, "nop", "");
7831 expr1.X_add_number = mips_cprestore_offset;
7832 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
7833 mips_gp_register,
7834 mips_frame_reg,
7835 HAVE_64BIT_ADDRESSES);
7836 }
7837 }
7838 }
7839
7840 break;
7841
7842 case M_JALS_A:
7843 gas_assert (mips_opts.micromips);
7844 jals = 1;
7845 /* Fall through. */
7846 case M_JAL_A:
7847 if (mips_pic == NO_PIC)
7848 macro_build (&offset_expr, jals ? "jals" : "jal", "a");
7849 else if (mips_pic == SVR4_PIC)
7850 {
7851 /* If this is a reference to an external symbol, and we are
7852 using a small GOT, we want
7853 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
7854 nop
7855 jalr $ra,$25
7856 nop
7857 lw $gp,cprestore($sp)
7858 The cprestore value is set using the .cprestore
7859 pseudo-op. If we are using a big GOT, we want
7860 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
7861 addu $25,$25,$gp
7862 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
7863 nop
7864 jalr $ra,$25
7865 nop
7866 lw $gp,cprestore($sp)
7867 If the symbol is not external, we want
7868 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7869 nop
7870 addiu $25,$25,<sym> (BFD_RELOC_LO16)
7871 jalr $ra,$25
7872 nop
7873 lw $gp,cprestore($sp)
7874
7875 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
7876 sequences above, minus nops, unless the symbol is local,
7877 which enables us to use GOT_PAGE/GOT_OFST (big got) or
7878 GOT_DISP. */
7879 if (HAVE_NEWABI)
7880 {
7881 if (!mips_big_got)
7882 {
7883 relax_start (offset_expr.X_add_symbol);
7884 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7885 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
7886 mips_gp_register);
7887 relax_switch ();
7888 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7889 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
7890 mips_gp_register);
7891 relax_end ();
7892 }
7893 else
7894 {
7895 relax_start (offset_expr.X_add_symbol);
7896 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
7897 BFD_RELOC_MIPS_CALL_HI16);
7898 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
7899 PIC_CALL_REG, mips_gp_register);
7900 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7901 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
7902 PIC_CALL_REG);
7903 relax_switch ();
7904 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7905 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
7906 mips_gp_register);
7907 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7908 PIC_CALL_REG, PIC_CALL_REG,
7909 BFD_RELOC_MIPS_GOT_OFST);
7910 relax_end ();
7911 }
7912
7913 macro_build_jalr (&offset_expr, 0);
7914 }
7915 else
7916 {
7917 relax_start (offset_expr.X_add_symbol);
7918 if (!mips_big_got)
7919 {
7920 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7921 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
7922 mips_gp_register);
7923 load_delay_nop ();
7924 relax_switch ();
7925 }
7926 else
7927 {
7928 int gpdelay;
7929
7930 gpdelay = reg_needs_delay (mips_gp_register);
7931 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
7932 BFD_RELOC_MIPS_CALL_HI16);
7933 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
7934 PIC_CALL_REG, mips_gp_register);
7935 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7936 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
7937 PIC_CALL_REG);
7938 load_delay_nop ();
7939 relax_switch ();
7940 if (gpdelay)
7941 macro_build (NULL, "nop", "");
7942 }
7943 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7944 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
7945 mips_gp_register);
7946 load_delay_nop ();
7947 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7948 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
7949 relax_end ();
7950 macro_build_jalr (&offset_expr, mips_cprestore_offset >= 0);
7951
7952 if (mips_cprestore_offset < 0)
7953 as_warn (_("No .cprestore pseudo-op used in PIC code"));
7954 else
7955 {
7956 if (!mips_frame_reg_valid)
7957 {
7958 as_warn (_("No .frame pseudo-op used in PIC code"));
7959 /* Quiet this warning. */
7960 mips_frame_reg_valid = 1;
7961 }
7962 if (!mips_cprestore_valid)
7963 {
7964 as_warn (_("No .cprestore pseudo-op used in PIC code"));
7965 /* Quiet this warning. */
7966 mips_cprestore_valid = 1;
7967 }
7968 if (mips_opts.noreorder)
7969 macro_build (NULL, "nop", "");
7970 expr1.X_add_number = mips_cprestore_offset;
7971 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
7972 mips_gp_register,
7973 mips_frame_reg,
7974 HAVE_64BIT_ADDRESSES);
7975 }
7976 }
7977 }
7978 else if (mips_pic == VXWORKS_PIC)
7979 as_bad (_("Non-PIC jump used in PIC library"));
7980 else
7981 abort ();
7982
7983 break;
7984
7985 case M_ACLR_AB:
7986 ab = 1;
7987 case M_ACLR_OB:
7988 s = "aclr";
7989 treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
7990 fmt = "\\,~(b)";
7991 off12 = 1;
7992 goto ld_st;
7993 case M_ASET_AB:
7994 ab = 1;
7995 case M_ASET_OB:
7996 s = "aset";
7997 treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
7998 fmt = "\\,~(b)";
7999 off12 = 1;
8000 goto ld_st;
8001 case M_LB_AB:
8002 ab = 1;
8003 s = "lb";
8004 fmt = "t,o(b)";
8005 goto ld;
8006 case M_LBU_AB:
8007 ab = 1;
8008 s = "lbu";
8009 fmt = "t,o(b)";
8010 goto ld;
8011 case M_LH_AB:
8012 ab = 1;
8013 s = "lh";
8014 fmt = "t,o(b)";
8015 goto ld;
8016 case M_LHU_AB:
8017 ab = 1;
8018 s = "lhu";
8019 fmt = "t,o(b)";
8020 goto ld;
8021 case M_LW_AB:
8022 ab = 1;
8023 s = "lw";
8024 fmt = "t,o(b)";
8025 goto ld;
8026 case M_LWC0_AB:
8027 ab = 1;
8028 gas_assert (!mips_opts.micromips);
8029 s = "lwc0";
8030 fmt = "E,o(b)";
8031 /* Itbl support may require additional care here. */
8032 coproc = 1;
8033 goto ld_st;
8034 case M_LWC1_AB:
8035 ab = 1;
8036 s = "lwc1";
8037 fmt = "T,o(b)";
8038 /* Itbl support may require additional care here. */
8039 coproc = 1;
8040 goto ld_st;
8041 case M_LWC2_AB:
8042 ab = 1;
8043 case M_LWC2_OB:
8044 s = "lwc2";
8045 fmt = COP12_FMT;
8046 off12 = mips_opts.micromips;
8047 /* Itbl support may require additional care here. */
8048 coproc = 1;
8049 goto ld_st;
8050 case M_LWC3_AB:
8051 ab = 1;
8052 gas_assert (!mips_opts.micromips);
8053 s = "lwc3";
8054 fmt = "E,o(b)";
8055 /* Itbl support may require additional care here. */
8056 coproc = 1;
8057 goto ld_st;
8058 case M_LWL_AB:
8059 ab = 1;
8060 case M_LWL_OB:
8061 s = "lwl";
8062 fmt = MEM12_FMT;
8063 off12 = mips_opts.micromips;
8064 goto ld_st;
8065 case M_LWR_AB:
8066 ab = 1;
8067 case M_LWR_OB:
8068 s = "lwr";
8069 fmt = MEM12_FMT;
8070 off12 = mips_opts.micromips;
8071 goto ld_st;
8072 case M_LDC1_AB:
8073 ab = 1;
8074 s = "ldc1";
8075 fmt = "T,o(b)";
8076 /* Itbl support may require additional care here. */
8077 coproc = 1;
8078 goto ld_st;
8079 case M_LDC2_AB:
8080 ab = 1;
8081 case M_LDC2_OB:
8082 s = "ldc2";
8083 fmt = COP12_FMT;
8084 off12 = mips_opts.micromips;
8085 /* Itbl support may require additional care here. */
8086 coproc = 1;
8087 goto ld_st;
8088 case M_LDC3_AB:
8089 ab = 1;
8090 s = "ldc3";
8091 fmt = "E,o(b)";
8092 /* Itbl support may require additional care here. */
8093 coproc = 1;
8094 goto ld_st;
8095 case M_LDL_AB:
8096 ab = 1;
8097 case M_LDL_OB:
8098 s = "ldl";
8099 fmt = MEM12_FMT;
8100 off12 = mips_opts.micromips;
8101 goto ld_st;
8102 case M_LDR_AB:
8103 ab = 1;
8104 case M_LDR_OB:
8105 s = "ldr";
8106 fmt = MEM12_FMT;
8107 off12 = mips_opts.micromips;
8108 goto ld_st;
8109 case M_LL_AB:
8110 ab = 1;
8111 case M_LL_OB:
8112 s = "ll";
8113 fmt = MEM12_FMT;
8114 off12 = mips_opts.micromips;
8115 goto ld;
8116 case M_LLD_AB:
8117 ab = 1;
8118 case M_LLD_OB:
8119 s = "lld";
8120 fmt = MEM12_FMT;
8121 off12 = mips_opts.micromips;
8122 goto ld;
8123 case M_LWU_AB:
8124 ab = 1;
8125 case M_LWU_OB:
8126 s = "lwu";
8127 fmt = MEM12_FMT;
8128 off12 = mips_opts.micromips;
8129 goto ld;
8130 case M_LWP_AB:
8131 ab = 1;
8132 case M_LWP_OB:
8133 gas_assert (mips_opts.micromips);
8134 s = "lwp";
8135 fmt = "t,~(b)";
8136 off12 = 1;
8137 lp = 1;
8138 goto ld;
8139 case M_LDP_AB:
8140 ab = 1;
8141 case M_LDP_OB:
8142 gas_assert (mips_opts.micromips);
8143 s = "ldp";
8144 fmt = "t,~(b)";
8145 off12 = 1;
8146 lp = 1;
8147 goto ld;
8148 case M_LWM_AB:
8149 ab = 1;
8150 case M_LWM_OB:
8151 gas_assert (mips_opts.micromips);
8152 s = "lwm";
8153 fmt = "n,~(b)";
8154 off12 = 1;
8155 goto ld_st;
8156 case M_LDM_AB:
8157 ab = 1;
8158 case M_LDM_OB:
8159 gas_assert (mips_opts.micromips);
8160 s = "ldm";
8161 fmt = "n,~(b)";
8162 off12 = 1;
8163 goto ld_st;
8164
8165 ld:
8166 if (breg == treg + lp)
8167 goto ld_st;
8168 else
8169 tempreg = treg + lp;
8170 goto ld_noat;
8171
8172 case M_SB_AB:
8173 ab = 1;
8174 s = "sb";
8175 fmt = "t,o(b)";
8176 goto ld_st;
8177 case M_SH_AB:
8178 ab = 1;
8179 s = "sh";
8180 fmt = "t,o(b)";
8181 goto ld_st;
8182 case M_SW_AB:
8183 ab = 1;
8184 s = "sw";
8185 fmt = "t,o(b)";
8186 goto ld_st;
8187 case M_SWC0_AB:
8188 ab = 1;
8189 gas_assert (!mips_opts.micromips);
8190 s = "swc0";
8191 fmt = "E,o(b)";
8192 /* Itbl support may require additional care here. */
8193 coproc = 1;
8194 goto ld_st;
8195 case M_SWC1_AB:
8196 ab = 1;
8197 s = "swc1";
8198 fmt = "T,o(b)";
8199 /* Itbl support may require additional care here. */
8200 coproc = 1;
8201 goto ld_st;
8202 case M_SWC2_AB:
8203 ab = 1;
8204 case M_SWC2_OB:
8205 s = "swc2";
8206 fmt = COP12_FMT;
8207 off12 = mips_opts.micromips;
8208 /* Itbl support may require additional care here. */
8209 coproc = 1;
8210 goto ld_st;
8211 case M_SWC3_AB:
8212 ab = 1;
8213 gas_assert (!mips_opts.micromips);
8214 s = "swc3";
8215 fmt = "E,o(b)";
8216 /* Itbl support may require additional care here. */
8217 coproc = 1;
8218 goto ld_st;
8219 case M_SWL_AB:
8220 ab = 1;
8221 case M_SWL_OB:
8222 s = "swl";
8223 fmt = MEM12_FMT;
8224 off12 = mips_opts.micromips;
8225 goto ld_st;
8226 case M_SWR_AB:
8227 ab = 1;
8228 case M_SWR_OB:
8229 s = "swr";
8230 fmt = MEM12_FMT;
8231 off12 = mips_opts.micromips;
8232 goto ld_st;
8233 case M_SC_AB:
8234 ab = 1;
8235 case M_SC_OB:
8236 s = "sc";
8237 fmt = MEM12_FMT;
8238 off12 = mips_opts.micromips;
8239 goto ld_st;
8240 case M_SCD_AB:
8241 ab = 1;
8242 case M_SCD_OB:
8243 s = "scd";
8244 fmt = MEM12_FMT;
8245 off12 = mips_opts.micromips;
8246 goto ld_st;
8247 case M_CACHE_AB:
8248 ab = 1;
8249 case M_CACHE_OB:
8250 s = "cache";
8251 fmt = mips_opts.micromips ? "k,~(b)" : "k,o(b)";
8252 off12 = mips_opts.micromips;
8253 goto ld_st;
8254 case M_PREF_AB:
8255 ab = 1;
8256 case M_PREF_OB:
8257 s = "pref";
8258 fmt = !mips_opts.micromips ? "k,o(b)" : "k,~(b)";
8259 off12 = mips_opts.micromips;
8260 goto ld_st;
8261 case M_SDC1_AB:
8262 ab = 1;
8263 s = "sdc1";
8264 fmt = "T,o(b)";
8265 coproc = 1;
8266 /* Itbl support may require additional care here. */
8267 goto ld_st;
8268 case M_SDC2_AB:
8269 ab = 1;
8270 case M_SDC2_OB:
8271 s = "sdc2";
8272 fmt = COP12_FMT;
8273 off12 = mips_opts.micromips;
8274 /* Itbl support may require additional care here. */
8275 coproc = 1;
8276 goto ld_st;
8277 case M_SDC3_AB:
8278 ab = 1;
8279 gas_assert (!mips_opts.micromips);
8280 s = "sdc3";
8281 fmt = "E,o(b)";
8282 /* Itbl support may require additional care here. */
8283 coproc = 1;
8284 goto ld_st;
8285 case M_SDL_AB:
8286 ab = 1;
8287 case M_SDL_OB:
8288 s = "sdl";
8289 fmt = MEM12_FMT;
8290 off12 = mips_opts.micromips;
8291 goto ld_st;
8292 case M_SDR_AB:
8293 ab = 1;
8294 case M_SDR_OB:
8295 s = "sdr";
8296 fmt = MEM12_FMT;
8297 off12 = mips_opts.micromips;
8298 goto ld_st;
8299 case M_SWP_AB:
8300 ab = 1;
8301 case M_SWP_OB:
8302 gas_assert (mips_opts.micromips);
8303 s = "swp";
8304 fmt = "t,~(b)";
8305 off12 = 1;
8306 goto ld_st;
8307 case M_SDP_AB:
8308 ab = 1;
8309 case M_SDP_OB:
8310 gas_assert (mips_opts.micromips);
8311 s = "sdp";
8312 fmt = "t,~(b)";
8313 off12 = 1;
8314 goto ld_st;
8315 case M_SWM_AB:
8316 ab = 1;
8317 case M_SWM_OB:
8318 gas_assert (mips_opts.micromips);
8319 s = "swm";
8320 fmt = "n,~(b)";
8321 off12 = 1;
8322 goto ld_st;
8323 case M_SDM_AB:
8324 ab = 1;
8325 case M_SDM_OB:
8326 gas_assert (mips_opts.micromips);
8327 s = "sdm";
8328 fmt = "n,~(b)";
8329 off12 = 1;
8330
8331 ld_st:
8332 tempreg = AT;
8333 used_at = 1;
8334 ld_noat:
8335 if (offset_expr.X_op != O_constant
8336 && offset_expr.X_op != O_symbol)
8337 {
8338 as_bad (_("Expression too complex"));
8339 offset_expr.X_op = O_constant;
8340 }
8341
8342 if (HAVE_32BIT_ADDRESSES
8343 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
8344 {
8345 char value [32];
8346
8347 sprintf_vma (value, offset_expr.X_add_number);
8348 as_bad (_("Number (0x%s) larger than 32 bits"), value);
8349 }
8350
8351 /* A constant expression in PIC code can be handled just as it
8352 is in non PIC code. */
8353 if (offset_expr.X_op == O_constant)
8354 {
8355 int hipart = 0;
8356
8357 expr1.X_add_number = offset_expr.X_add_number;
8358 normalize_address_expr (&expr1);
8359 if (!off12 && !IS_SEXT_16BIT_NUM (expr1.X_add_number))
8360 {
8361 expr1.X_add_number = ((expr1.X_add_number + 0x8000)
8362 & ~(bfd_vma) 0xffff);
8363 hipart = 1;
8364 }
8365 else if (off12 && !IS_SEXT_12BIT_NUM (expr1.X_add_number))
8366 {
8367 expr1.X_add_number = ((expr1.X_add_number + 0x800)
8368 & ~(bfd_vma) 0xfff);
8369 hipart = 1;
8370 }
8371 if (hipart)
8372 {
8373 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
8374 if (breg != 0)
8375 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8376 tempreg, tempreg, breg);
8377 breg = tempreg;
8378 }
8379 if (off0)
8380 {
8381 if (offset_expr.X_add_number == 0)
8382 tempreg = breg;
8383 else
8384 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
8385 "t,r,j", tempreg, breg, BFD_RELOC_LO16);
8386 macro_build (NULL, s, fmt, treg, tempreg);
8387 }
8388 else if (!off12)
8389 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, breg);
8390 else
8391 macro_build (NULL, s, fmt,
8392 treg, (unsigned long) offset_expr.X_add_number, breg);
8393 }
8394 else if (off12 || off0)
8395 {
8396 /* A 12-bit or 0-bit offset field is too narrow to be used
8397 for a low-part relocation, so load the whole address into
8398 the auxillary register. In the case of "A(b)" addresses,
8399 we first load absolute address "A" into the register and
8400 then add base register "b". In the case of "o(b)" addresses,
8401 we simply need to add 16-bit offset "o" to base register "b", and
8402 offset_reloc already contains the relocations associated
8403 with "o". */
8404 if (ab)
8405 {
8406 load_address (tempreg, &offset_expr, &used_at);
8407 if (breg != 0)
8408 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8409 tempreg, tempreg, breg);
8410 }
8411 else
8412 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8413 tempreg, breg, -1,
8414 offset_reloc[0], offset_reloc[1], offset_reloc[2]);
8415 expr1.X_add_number = 0;
8416 if (off0)
8417 macro_build (NULL, s, fmt, treg, tempreg);
8418 else
8419 macro_build (NULL, s, fmt,
8420 treg, (unsigned long) expr1.X_add_number, tempreg);
8421 }
8422 else if (mips_pic == NO_PIC)
8423 {
8424 /* If this is a reference to a GP relative symbol, and there
8425 is no base register, we want
8426 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
8427 Otherwise, if there is no base register, we want
8428 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
8429 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8430 If we have a constant, we need two instructions anyhow,
8431 so we always use the latter form.
8432
8433 If we have a base register, and this is a reference to a
8434 GP relative symbol, we want
8435 addu $tempreg,$breg,$gp
8436 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
8437 Otherwise we want
8438 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
8439 addu $tempreg,$tempreg,$breg
8440 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8441 With a constant we always use the latter case.
8442
8443 With 64bit address space and no base register and $at usable,
8444 we want
8445 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8446 lui $at,<sym> (BFD_RELOC_HI16_S)
8447 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8448 dsll32 $tempreg,0
8449 daddu $tempreg,$at
8450 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8451 If we have a base register, we want
8452 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8453 lui $at,<sym> (BFD_RELOC_HI16_S)
8454 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8455 daddu $at,$breg
8456 dsll32 $tempreg,0
8457 daddu $tempreg,$at
8458 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8459
8460 Without $at we can't generate the optimal path for superscalar
8461 processors here since this would require two temporary registers.
8462 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8463 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8464 dsll $tempreg,16
8465 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
8466 dsll $tempreg,16
8467 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8468 If we have a base register, we want
8469 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8470 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8471 dsll $tempreg,16
8472 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
8473 dsll $tempreg,16
8474 daddu $tempreg,$tempreg,$breg
8475 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8476
8477 For GP relative symbols in 64bit address space we can use
8478 the same sequence as in 32bit address space. */
8479 if (HAVE_64BIT_SYMBOLS)
8480 {
8481 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
8482 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
8483 {
8484 relax_start (offset_expr.X_add_symbol);
8485 if (breg == 0)
8486 {
8487 macro_build (&offset_expr, s, fmt, treg,
8488 BFD_RELOC_GPREL16, mips_gp_register);
8489 }
8490 else
8491 {
8492 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8493 tempreg, breg, mips_gp_register);
8494 macro_build (&offset_expr, s, fmt, treg,
8495 BFD_RELOC_GPREL16, tempreg);
8496 }
8497 relax_switch ();
8498 }
8499
8500 if (used_at == 0 && mips_opts.at)
8501 {
8502 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
8503 BFD_RELOC_MIPS_HIGHEST);
8504 macro_build (&offset_expr, "lui", LUI_FMT, AT,
8505 BFD_RELOC_HI16_S);
8506 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
8507 tempreg, BFD_RELOC_MIPS_HIGHER);
8508 if (breg != 0)
8509 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
8510 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
8511 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
8512 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
8513 tempreg);
8514 used_at = 1;
8515 }
8516 else
8517 {
8518 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
8519 BFD_RELOC_MIPS_HIGHEST);
8520 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
8521 tempreg, BFD_RELOC_MIPS_HIGHER);
8522 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
8523 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
8524 tempreg, BFD_RELOC_HI16_S);
8525 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
8526 if (breg != 0)
8527 macro_build (NULL, "daddu", "d,v,t",
8528 tempreg, tempreg, breg);
8529 macro_build (&offset_expr, s, fmt, treg,
8530 BFD_RELOC_LO16, tempreg);
8531 }
8532
8533 if (mips_relax.sequence)
8534 relax_end ();
8535 break;
8536 }
8537
8538 if (breg == 0)
8539 {
8540 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
8541 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
8542 {
8543 relax_start (offset_expr.X_add_symbol);
8544 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
8545 mips_gp_register);
8546 relax_switch ();
8547 }
8548 macro_build_lui (&offset_expr, tempreg);
8549 macro_build (&offset_expr, s, fmt, treg,
8550 BFD_RELOC_LO16, tempreg);
8551 if (mips_relax.sequence)
8552 relax_end ();
8553 }
8554 else
8555 {
8556 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
8557 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
8558 {
8559 relax_start (offset_expr.X_add_symbol);
8560 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8561 tempreg, breg, mips_gp_register);
8562 macro_build (&offset_expr, s, fmt, treg,
8563 BFD_RELOC_GPREL16, tempreg);
8564 relax_switch ();
8565 }
8566 macro_build_lui (&offset_expr, tempreg);
8567 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8568 tempreg, tempreg, breg);
8569 macro_build (&offset_expr, s, fmt, treg,
8570 BFD_RELOC_LO16, tempreg);
8571 if (mips_relax.sequence)
8572 relax_end ();
8573 }
8574 }
8575 else if (!mips_big_got)
8576 {
8577 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
8578
8579 /* If this is a reference to an external symbol, we want
8580 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
8581 nop
8582 <op> $treg,0($tempreg)
8583 Otherwise we want
8584 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
8585 nop
8586 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
8587 <op> $treg,0($tempreg)
8588
8589 For NewABI, we want
8590 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
8591 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
8592
8593 If there is a base register, we add it to $tempreg before
8594 the <op>. If there is a constant, we stick it in the
8595 <op> instruction. We don't handle constants larger than
8596 16 bits, because we have no way to load the upper 16 bits
8597 (actually, we could handle them for the subset of cases
8598 in which we are not using $at). */
8599 gas_assert (offset_expr.X_op == O_symbol);
8600 if (HAVE_NEWABI)
8601 {
8602 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8603 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
8604 if (breg != 0)
8605 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8606 tempreg, tempreg, breg);
8607 macro_build (&offset_expr, s, fmt, treg,
8608 BFD_RELOC_MIPS_GOT_OFST, tempreg);
8609 break;
8610 }
8611 expr1.X_add_number = offset_expr.X_add_number;
8612 offset_expr.X_add_number = 0;
8613 if (expr1.X_add_number < -0x8000
8614 || expr1.X_add_number >= 0x8000)
8615 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
8616 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8617 lw_reloc_type, mips_gp_register);
8618 load_delay_nop ();
8619 relax_start (offset_expr.X_add_symbol);
8620 relax_switch ();
8621 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
8622 tempreg, BFD_RELOC_LO16);
8623 relax_end ();
8624 if (breg != 0)
8625 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8626 tempreg, tempreg, breg);
8627 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
8628 }
8629 else if (mips_big_got && !HAVE_NEWABI)
8630 {
8631 int gpdelay;
8632
8633 /* If this is a reference to an external symbol, we want
8634 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8635 addu $tempreg,$tempreg,$gp
8636 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8637 <op> $treg,0($tempreg)
8638 Otherwise we want
8639 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
8640 nop
8641 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
8642 <op> $treg,0($tempreg)
8643 If there is a base register, we add it to $tempreg before
8644 the <op>. If there is a constant, we stick it in the
8645 <op> instruction. We don't handle constants larger than
8646 16 bits, because we have no way to load the upper 16 bits
8647 (actually, we could handle them for the subset of cases
8648 in which we are not using $at). */
8649 gas_assert (offset_expr.X_op == O_symbol);
8650 expr1.X_add_number = offset_expr.X_add_number;
8651 offset_expr.X_add_number = 0;
8652 if (expr1.X_add_number < -0x8000
8653 || expr1.X_add_number >= 0x8000)
8654 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
8655 gpdelay = reg_needs_delay (mips_gp_register);
8656 relax_start (offset_expr.X_add_symbol);
8657 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
8658 BFD_RELOC_MIPS_GOT_HI16);
8659 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
8660 mips_gp_register);
8661 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8662 BFD_RELOC_MIPS_GOT_LO16, tempreg);
8663 relax_switch ();
8664 if (gpdelay)
8665 macro_build (NULL, "nop", "");
8666 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8667 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8668 load_delay_nop ();
8669 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
8670 tempreg, BFD_RELOC_LO16);
8671 relax_end ();
8672
8673 if (breg != 0)
8674 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8675 tempreg, tempreg, breg);
8676 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
8677 }
8678 else if (mips_big_got && HAVE_NEWABI)
8679 {
8680 /* If this is a reference to an external symbol, we want
8681 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8682 add $tempreg,$tempreg,$gp
8683 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8684 <op> $treg,<ofst>($tempreg)
8685 Otherwise, for local symbols, we want:
8686 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
8687 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
8688 gas_assert (offset_expr.X_op == O_symbol);
8689 expr1.X_add_number = offset_expr.X_add_number;
8690 offset_expr.X_add_number = 0;
8691 if (expr1.X_add_number < -0x8000
8692 || expr1.X_add_number >= 0x8000)
8693 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
8694 relax_start (offset_expr.X_add_symbol);
8695 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
8696 BFD_RELOC_MIPS_GOT_HI16);
8697 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
8698 mips_gp_register);
8699 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8700 BFD_RELOC_MIPS_GOT_LO16, tempreg);
8701 if (breg != 0)
8702 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8703 tempreg, tempreg, breg);
8704 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
8705
8706 relax_switch ();
8707 offset_expr.X_add_number = expr1.X_add_number;
8708 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8709 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
8710 if (breg != 0)
8711 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8712 tempreg, tempreg, breg);
8713 macro_build (&offset_expr, s, fmt, treg,
8714 BFD_RELOC_MIPS_GOT_OFST, tempreg);
8715 relax_end ();
8716 }
8717 else
8718 abort ();
8719
8720 break;
8721
8722 case M_LI:
8723 case M_LI_S:
8724 load_register (treg, &imm_expr, 0);
8725 break;
8726
8727 case M_DLI:
8728 load_register (treg, &imm_expr, 1);
8729 break;
8730
8731 case M_LI_SS:
8732 if (imm_expr.X_op == O_constant)
8733 {
8734 used_at = 1;
8735 load_register (AT, &imm_expr, 0);
8736 macro_build (NULL, "mtc1", "t,G", AT, treg);
8737 break;
8738 }
8739 else
8740 {
8741 gas_assert (offset_expr.X_op == O_symbol
8742 && strcmp (segment_name (S_GET_SEGMENT
8743 (offset_expr.X_add_symbol)),
8744 ".lit4") == 0
8745 && offset_expr.X_add_number == 0);
8746 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
8747 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8748 break;
8749 }
8750
8751 case M_LI_D:
8752 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
8753 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
8754 order 32 bits of the value and the low order 32 bits are either
8755 zero or in OFFSET_EXPR. */
8756 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
8757 {
8758 if (HAVE_64BIT_GPRS)
8759 load_register (treg, &imm_expr, 1);
8760 else
8761 {
8762 int hreg, lreg;
8763
8764 if (target_big_endian)
8765 {
8766 hreg = treg;
8767 lreg = treg + 1;
8768 }
8769 else
8770 {
8771 hreg = treg + 1;
8772 lreg = treg;
8773 }
8774
8775 if (hreg <= 31)
8776 load_register (hreg, &imm_expr, 0);
8777 if (lreg <= 31)
8778 {
8779 if (offset_expr.X_op == O_absent)
8780 move_register (lreg, 0);
8781 else
8782 {
8783 gas_assert (offset_expr.X_op == O_constant);
8784 load_register (lreg, &offset_expr, 0);
8785 }
8786 }
8787 }
8788 break;
8789 }
8790
8791 /* We know that sym is in the .rdata section. First we get the
8792 upper 16 bits of the address. */
8793 if (mips_pic == NO_PIC)
8794 {
8795 macro_build_lui (&offset_expr, AT);
8796 used_at = 1;
8797 }
8798 else
8799 {
8800 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
8801 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8802 used_at = 1;
8803 }
8804
8805 /* Now we load the register(s). */
8806 if (HAVE_64BIT_GPRS)
8807 {
8808 used_at = 1;
8809 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8810 }
8811 else
8812 {
8813 used_at = 1;
8814 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8815 if (treg != RA)
8816 {
8817 /* FIXME: How in the world do we deal with the possible
8818 overflow here? */
8819 offset_expr.X_add_number += 4;
8820 macro_build (&offset_expr, "lw", "t,o(b)",
8821 treg + 1, BFD_RELOC_LO16, AT);
8822 }
8823 }
8824 break;
8825
8826 case M_LI_DD:
8827 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
8828 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
8829 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
8830 the value and the low order 32 bits are either zero or in
8831 OFFSET_EXPR. */
8832 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
8833 {
8834 used_at = 1;
8835 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
8836 if (HAVE_64BIT_FPRS)
8837 {
8838 gas_assert (HAVE_64BIT_GPRS);
8839 macro_build (NULL, "dmtc1", "t,S", AT, treg);
8840 }
8841 else
8842 {
8843 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
8844 if (offset_expr.X_op == O_absent)
8845 macro_build (NULL, "mtc1", "t,G", 0, treg);
8846 else
8847 {
8848 gas_assert (offset_expr.X_op == O_constant);
8849 load_register (AT, &offset_expr, 0);
8850 macro_build (NULL, "mtc1", "t,G", AT, treg);
8851 }
8852 }
8853 break;
8854 }
8855
8856 gas_assert (offset_expr.X_op == O_symbol
8857 && offset_expr.X_add_number == 0);
8858 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
8859 if (strcmp (s, ".lit8") == 0)
8860 {
8861 if (mips_opts.isa != ISA_MIPS1 || mips_opts.micromips)
8862 {
8863 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
8864 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8865 break;
8866 }
8867 breg = mips_gp_register;
8868 r = BFD_RELOC_MIPS_LITERAL;
8869 goto dob;
8870 }
8871 else
8872 {
8873 gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
8874 used_at = 1;
8875 if (mips_pic != NO_PIC)
8876 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
8877 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8878 else
8879 {
8880 /* FIXME: This won't work for a 64 bit address. */
8881 macro_build_lui (&offset_expr, AT);
8882 }
8883
8884 if (mips_opts.isa != ISA_MIPS1 || mips_opts.micromips)
8885 {
8886 macro_build (&offset_expr, "ldc1", "T,o(b)",
8887 treg, BFD_RELOC_LO16, AT);
8888 break;
8889 }
8890 breg = AT;
8891 r = BFD_RELOC_LO16;
8892 goto dob;
8893 }
8894
8895 case M_L_DOB:
8896 /* Even on a big endian machine $fn comes before $fn+1. We have
8897 to adjust when loading from memory. */
8898 r = BFD_RELOC_LO16;
8899 dob:
8900 gas_assert (!mips_opts.micromips);
8901 gas_assert (mips_opts.isa == ISA_MIPS1);
8902 macro_build (&offset_expr, "lwc1", "T,o(b)",
8903 target_big_endian ? treg + 1 : treg, r, breg);
8904 /* FIXME: A possible overflow which I don't know how to deal
8905 with. */
8906 offset_expr.X_add_number += 4;
8907 macro_build (&offset_expr, "lwc1", "T,o(b)",
8908 target_big_endian ? treg : treg + 1, r, breg);
8909 break;
8910
8911 case M_S_DOB:
8912 gas_assert (!mips_opts.micromips);
8913 gas_assert (mips_opts.isa == ISA_MIPS1);
8914 /* Even on a big endian machine $fn comes before $fn+1. We have
8915 to adjust when storing to memory. */
8916 macro_build (&offset_expr, "swc1", "T,o(b)",
8917 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
8918 offset_expr.X_add_number += 4;
8919 macro_build (&offset_expr, "swc1", "T,o(b)",
8920 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
8921 break;
8922
8923 case M_L_DAB:
8924 gas_assert (!mips_opts.micromips);
8925 /*
8926 * The MIPS assembler seems to check for X_add_number not
8927 * being double aligned and generating:
8928 * lui at,%hi(foo+1)
8929 * addu at,at,v1
8930 * addiu at,at,%lo(foo+1)
8931 * lwc1 f2,0(at)
8932 * lwc1 f3,4(at)
8933 * But, the resulting address is the same after relocation so why
8934 * generate the extra instruction?
8935 */
8936 /* Itbl support may require additional care here. */
8937 coproc = 1;
8938 fmt = "T,o(b)";
8939 if (mips_opts.isa != ISA_MIPS1)
8940 {
8941 s = "ldc1";
8942 goto ld_st;
8943 }
8944 s = "lwc1";
8945 goto ldd_std;
8946
8947 case M_S_DAB:
8948 gas_assert (!mips_opts.micromips);
8949 /* Itbl support may require additional care here. */
8950 coproc = 1;
8951 fmt = "T,o(b)";
8952 if (mips_opts.isa != ISA_MIPS1)
8953 {
8954 s = "sdc1";
8955 goto ld_st;
8956 }
8957 s = "swc1";
8958 goto ldd_std;
8959
8960 case M_LD_AB:
8961 fmt = "t,o(b)";
8962 if (HAVE_64BIT_GPRS)
8963 {
8964 s = "ld";
8965 goto ld;
8966 }
8967 s = "lw";
8968 goto ldd_std;
8969
8970 case M_SD_AB:
8971 fmt = "t,o(b)";
8972 if (HAVE_64BIT_GPRS)
8973 {
8974 s = "sd";
8975 goto ld_st;
8976 }
8977 s = "sw";
8978
8979 ldd_std:
8980 if (offset_expr.X_op != O_symbol
8981 && offset_expr.X_op != O_constant)
8982 {
8983 as_bad (_("Expression too complex"));
8984 offset_expr.X_op = O_constant;
8985 }
8986
8987 if (HAVE_32BIT_ADDRESSES
8988 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
8989 {
8990 char value [32];
8991
8992 sprintf_vma (value, offset_expr.X_add_number);
8993 as_bad (_("Number (0x%s) larger than 32 bits"), value);
8994 }
8995
8996 /* Even on a big endian machine $fn comes before $fn+1. We have
8997 to adjust when loading from memory. We set coproc if we must
8998 load $fn+1 first. */
8999 /* Itbl support may require additional care here. */
9000 if (!target_big_endian)
9001 coproc = 0;
9002
9003 if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
9004 {
9005 /* If this is a reference to a GP relative symbol, we want
9006 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
9007 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
9008 If we have a base register, we use this
9009 addu $at,$breg,$gp
9010 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
9011 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
9012 If this is not a GP relative symbol, we want
9013 lui $at,<sym> (BFD_RELOC_HI16_S)
9014 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9015 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9016 If there is a base register, we add it to $at after the
9017 lui instruction. If there is a constant, we always use
9018 the last case. */
9019 if (offset_expr.X_op == O_symbol
9020 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9021 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9022 {
9023 relax_start (offset_expr.X_add_symbol);
9024 if (breg == 0)
9025 {
9026 tempreg = mips_gp_register;
9027 }
9028 else
9029 {
9030 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9031 AT, breg, mips_gp_register);
9032 tempreg = AT;
9033 used_at = 1;
9034 }
9035
9036 /* Itbl support may require additional care here. */
9037 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9038 BFD_RELOC_GPREL16, tempreg);
9039 offset_expr.X_add_number += 4;
9040
9041 /* Set mips_optimize to 2 to avoid inserting an
9042 undesired nop. */
9043 hold_mips_optimize = mips_optimize;
9044 mips_optimize = 2;
9045 /* Itbl support may require additional care here. */
9046 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9047 BFD_RELOC_GPREL16, tempreg);
9048 mips_optimize = hold_mips_optimize;
9049
9050 relax_switch ();
9051
9052 offset_expr.X_add_number -= 4;
9053 }
9054 used_at = 1;
9055 macro_build_lui (&offset_expr, AT);
9056 if (breg != 0)
9057 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9058 /* Itbl support may require additional care here. */
9059 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9060 BFD_RELOC_LO16, AT);
9061 /* FIXME: How do we handle overflow here? */
9062 offset_expr.X_add_number += 4;
9063 /* Itbl support may require additional care here. */
9064 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9065 BFD_RELOC_LO16, AT);
9066 if (mips_relax.sequence)
9067 relax_end ();
9068 }
9069 else if (!mips_big_got)
9070 {
9071 /* If this is a reference to an external symbol, we want
9072 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9073 nop
9074 <op> $treg,0($at)
9075 <op> $treg+1,4($at)
9076 Otherwise we want
9077 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9078 nop
9079 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9080 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9081 If there is a base register we add it to $at before the
9082 lwc1 instructions. If there is a constant we include it
9083 in the lwc1 instructions. */
9084 used_at = 1;
9085 expr1.X_add_number = offset_expr.X_add_number;
9086 if (expr1.X_add_number < -0x8000
9087 || expr1.X_add_number >= 0x8000 - 4)
9088 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9089 load_got_offset (AT, &offset_expr);
9090 load_delay_nop ();
9091 if (breg != 0)
9092 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9093
9094 /* Set mips_optimize to 2 to avoid inserting an undesired
9095 nop. */
9096 hold_mips_optimize = mips_optimize;
9097 mips_optimize = 2;
9098
9099 /* Itbl support may require additional care here. */
9100 relax_start (offset_expr.X_add_symbol);
9101 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
9102 BFD_RELOC_LO16, AT);
9103 expr1.X_add_number += 4;
9104 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
9105 BFD_RELOC_LO16, AT);
9106 relax_switch ();
9107 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9108 BFD_RELOC_LO16, AT);
9109 offset_expr.X_add_number += 4;
9110 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9111 BFD_RELOC_LO16, AT);
9112 relax_end ();
9113
9114 mips_optimize = hold_mips_optimize;
9115 }
9116 else if (mips_big_got)
9117 {
9118 int gpdelay;
9119
9120 /* If this is a reference to an external symbol, we want
9121 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9122 addu $at,$at,$gp
9123 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
9124 nop
9125 <op> $treg,0($at)
9126 <op> $treg+1,4($at)
9127 Otherwise we want
9128 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9129 nop
9130 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9131 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9132 If there is a base register we add it to $at before the
9133 lwc1 instructions. If there is a constant we include it
9134 in the lwc1 instructions. */
9135 used_at = 1;
9136 expr1.X_add_number = offset_expr.X_add_number;
9137 offset_expr.X_add_number = 0;
9138 if (expr1.X_add_number < -0x8000
9139 || expr1.X_add_number >= 0x8000 - 4)
9140 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9141 gpdelay = reg_needs_delay (mips_gp_register);
9142 relax_start (offset_expr.X_add_symbol);
9143 macro_build (&offset_expr, "lui", LUI_FMT,
9144 AT, BFD_RELOC_MIPS_GOT_HI16);
9145 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9146 AT, AT, mips_gp_register);
9147 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
9148 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
9149 load_delay_nop ();
9150 if (breg != 0)
9151 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9152 /* Itbl support may require additional care here. */
9153 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
9154 BFD_RELOC_LO16, AT);
9155 expr1.X_add_number += 4;
9156
9157 /* Set mips_optimize to 2 to avoid inserting an undesired
9158 nop. */
9159 hold_mips_optimize = mips_optimize;
9160 mips_optimize = 2;
9161 /* Itbl support may require additional care here. */
9162 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
9163 BFD_RELOC_LO16, AT);
9164 mips_optimize = hold_mips_optimize;
9165 expr1.X_add_number -= 4;
9166
9167 relax_switch ();
9168 offset_expr.X_add_number = expr1.X_add_number;
9169 if (gpdelay)
9170 macro_build (NULL, "nop", "");
9171 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9172 BFD_RELOC_MIPS_GOT16, mips_gp_register);
9173 load_delay_nop ();
9174 if (breg != 0)
9175 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9176 /* Itbl support may require additional care here. */
9177 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9178 BFD_RELOC_LO16, AT);
9179 offset_expr.X_add_number += 4;
9180
9181 /* Set mips_optimize to 2 to avoid inserting an undesired
9182 nop. */
9183 hold_mips_optimize = mips_optimize;
9184 mips_optimize = 2;
9185 /* Itbl support may require additional care here. */
9186 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9187 BFD_RELOC_LO16, AT);
9188 mips_optimize = hold_mips_optimize;
9189 relax_end ();
9190 }
9191 else
9192 abort ();
9193
9194 break;
9195
9196 case M_LD_OB:
9197 s = HAVE_64BIT_GPRS ? "ld" : "lw";
9198 goto sd_ob;
9199 case M_SD_OB:
9200 s = HAVE_64BIT_GPRS ? "sd" : "sw";
9201 sd_ob:
9202 macro_build (&offset_expr, s, "t,o(b)", treg,
9203 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
9204 breg);
9205 if (!HAVE_64BIT_GPRS)
9206 {
9207 offset_expr.X_add_number += 4;
9208 macro_build (&offset_expr, s, "t,o(b)", treg + 1,
9209 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
9210 breg);
9211 }
9212 break;
9213
9214
9215 case M_SAA_AB:
9216 ab = 1;
9217 case M_SAA_OB:
9218 s = "saa";
9219 off0 = 1;
9220 fmt = "t,(b)";
9221 goto ld_st;
9222 case M_SAAD_AB:
9223 ab = 1;
9224 case M_SAAD_OB:
9225 s = "saad";
9226 off0 = 1;
9227 fmt = "t,(b)";
9228 goto ld_st;
9229
9230 /* New code added to support COPZ instructions.
9231 This code builds table entries out of the macros in mip_opcodes.
9232 R4000 uses interlocks to handle coproc delays.
9233 Other chips (like the R3000) require nops to be inserted for delays.
9234
9235 FIXME: Currently, we require that the user handle delays.
9236 In order to fill delay slots for non-interlocked chips,
9237 we must have a way to specify delays based on the coprocessor.
9238 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
9239 What are the side-effects of the cop instruction?
9240 What cache support might we have and what are its effects?
9241 Both coprocessor & memory require delays. how long???
9242 What registers are read/set/modified?
9243
9244 If an itbl is provided to interpret cop instructions,
9245 this knowledge can be encoded in the itbl spec. */
9246
9247 case M_COP0:
9248 s = "c0";
9249 goto copz;
9250 case M_COP1:
9251 s = "c1";
9252 goto copz;
9253 case M_COP2:
9254 s = "c2";
9255 goto copz;
9256 case M_COP3:
9257 s = "c3";
9258 copz:
9259 gas_assert (!mips_opts.micromips);
9260 /* For now we just do C (same as Cz). The parameter will be
9261 stored in insn_opcode by mips_ip. */
9262 macro_build (NULL, s, "C", ip->insn_opcode);
9263 break;
9264
9265 case M_MOVE:
9266 move_register (dreg, sreg);
9267 break;
9268
9269 case M_DMUL:
9270 dbl = 1;
9271 case M_MUL:
9272 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
9273 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9274 break;
9275
9276 case M_DMUL_I:
9277 dbl = 1;
9278 case M_MUL_I:
9279 /* The MIPS assembler some times generates shifts and adds. I'm
9280 not trying to be that fancy. GCC should do this for us
9281 anyway. */
9282 used_at = 1;
9283 load_register (AT, &imm_expr, dbl);
9284 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
9285 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9286 break;
9287
9288 case M_DMULO_I:
9289 dbl = 1;
9290 case M_MULO_I:
9291 imm = 1;
9292 goto do_mulo;
9293
9294 case M_DMULO:
9295 dbl = 1;
9296 case M_MULO:
9297 do_mulo:
9298 start_noreorder ();
9299 used_at = 1;
9300 if (imm)
9301 load_register (AT, &imm_expr, dbl);
9302 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
9303 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9304 macro_build (NULL, dbl ? "dsra32" : "sra", SHFT_FMT, dreg, dreg, RA);
9305 macro_build (NULL, "mfhi", MFHL_FMT, AT);
9306 if (mips_trap)
9307 macro_build (NULL, "tne", TRAP_FMT, dreg, AT, 6);
9308 else
9309 {
9310 if (mips_opts.micromips)
9311 micromips_label_expr (&label_expr);
9312 else
9313 label_expr.X_add_number = 8;
9314 macro_build (&label_expr, "beq", "s,t,p", dreg, AT);
9315 macro_build (NULL, "nop", "");
9316 macro_build (NULL, "break", BRK_FMT, 6);
9317 if (mips_opts.micromips)
9318 micromips_add_label ();
9319 }
9320 end_noreorder ();
9321 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9322 break;
9323
9324 case M_DMULOU_I:
9325 dbl = 1;
9326 case M_MULOU_I:
9327 imm = 1;
9328 goto do_mulou;
9329
9330 case M_DMULOU:
9331 dbl = 1;
9332 case M_MULOU:
9333 do_mulou:
9334 start_noreorder ();
9335 used_at = 1;
9336 if (imm)
9337 load_register (AT, &imm_expr, dbl);
9338 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
9339 sreg, imm ? AT : treg);
9340 macro_build (NULL, "mfhi", MFHL_FMT, AT);
9341 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9342 if (mips_trap)
9343 macro_build (NULL, "tne", TRAP_FMT, AT, ZERO, 6);
9344 else
9345 {
9346 if (mips_opts.micromips)
9347 micromips_label_expr (&label_expr);
9348 else
9349 label_expr.X_add_number = 8;
9350 macro_build (&label_expr, "beq", "s,t,p", AT, ZERO);
9351 macro_build (NULL, "nop", "");
9352 macro_build (NULL, "break", BRK_FMT, 6);
9353 if (mips_opts.micromips)
9354 micromips_add_label ();
9355 }
9356 end_noreorder ();
9357 break;
9358
9359 case M_DROL:
9360 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
9361 {
9362 if (dreg == sreg)
9363 {
9364 tempreg = AT;
9365 used_at = 1;
9366 }
9367 else
9368 {
9369 tempreg = dreg;
9370 }
9371 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
9372 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
9373 break;
9374 }
9375 used_at = 1;
9376 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
9377 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
9378 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
9379 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9380 break;
9381
9382 case M_ROL:
9383 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
9384 {
9385 if (dreg == sreg)
9386 {
9387 tempreg = AT;
9388 used_at = 1;
9389 }
9390 else
9391 {
9392 tempreg = dreg;
9393 }
9394 macro_build (NULL, "negu", "d,w", tempreg, treg);
9395 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
9396 break;
9397 }
9398 used_at = 1;
9399 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
9400 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
9401 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
9402 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9403 break;
9404
9405 case M_DROL_I:
9406 {
9407 unsigned int rot;
9408 char *l;
9409 char *rr;
9410
9411 if (imm_expr.X_op != O_constant)
9412 as_bad (_("Improper rotate count"));
9413 rot = imm_expr.X_add_number & 0x3f;
9414 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
9415 {
9416 rot = (64 - rot) & 0x3f;
9417 if (rot >= 32)
9418 macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
9419 else
9420 macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
9421 break;
9422 }
9423 if (rot == 0)
9424 {
9425 macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
9426 break;
9427 }
9428 l = (rot < 0x20) ? "dsll" : "dsll32";
9429 rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
9430 rot &= 0x1f;
9431 used_at = 1;
9432 macro_build (NULL, l, SHFT_FMT, AT, sreg, rot);
9433 macro_build (NULL, rr, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
9434 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9435 }
9436 break;
9437
9438 case M_ROL_I:
9439 {
9440 unsigned int rot;
9441
9442 if (imm_expr.X_op != O_constant)
9443 as_bad (_("Improper rotate count"));
9444 rot = imm_expr.X_add_number & 0x1f;
9445 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
9446 {
9447 macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, (32 - rot) & 0x1f);
9448 break;
9449 }
9450 if (rot == 0)
9451 {
9452 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
9453 break;
9454 }
9455 used_at = 1;
9456 macro_build (NULL, "sll", SHFT_FMT, AT, sreg, rot);
9457 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
9458 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9459 }
9460 break;
9461
9462 case M_DROR:
9463 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
9464 {
9465 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
9466 break;
9467 }
9468 used_at = 1;
9469 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
9470 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
9471 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
9472 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9473 break;
9474
9475 case M_ROR:
9476 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
9477 {
9478 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
9479 break;
9480 }
9481 used_at = 1;
9482 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
9483 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
9484 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
9485 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9486 break;
9487
9488 case M_DROR_I:
9489 {
9490 unsigned int rot;
9491 char *l;
9492 char *rr;
9493
9494 if (imm_expr.X_op != O_constant)
9495 as_bad (_("Improper rotate count"));
9496 rot = imm_expr.X_add_number & 0x3f;
9497 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
9498 {
9499 if (rot >= 32)
9500 macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
9501 else
9502 macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
9503 break;
9504 }
9505 if (rot == 0)
9506 {
9507 macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
9508 break;
9509 }
9510 rr = (rot < 0x20) ? "dsrl" : "dsrl32";
9511 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
9512 rot &= 0x1f;
9513 used_at = 1;
9514 macro_build (NULL, rr, SHFT_FMT, AT, sreg, rot);
9515 macro_build (NULL, l, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
9516 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9517 }
9518 break;
9519
9520 case M_ROR_I:
9521 {
9522 unsigned int rot;
9523
9524 if (imm_expr.X_op != O_constant)
9525 as_bad (_("Improper rotate count"));
9526 rot = imm_expr.X_add_number & 0x1f;
9527 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
9528 {
9529 macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, rot);
9530 break;
9531 }
9532 if (rot == 0)
9533 {
9534 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
9535 break;
9536 }
9537 used_at = 1;
9538 macro_build (NULL, "srl", SHFT_FMT, AT, sreg, rot);
9539 macro_build (NULL, "sll", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
9540 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9541 }
9542 break;
9543
9544 case M_SEQ:
9545 if (sreg == 0)
9546 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
9547 else if (treg == 0)
9548 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
9549 else
9550 {
9551 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
9552 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
9553 }
9554 break;
9555
9556 case M_SEQ_I:
9557 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
9558 {
9559 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
9560 break;
9561 }
9562 if (sreg == 0)
9563 {
9564 as_warn (_("Instruction %s: result is always false"),
9565 ip->insn_mo->name);
9566 move_register (dreg, 0);
9567 break;
9568 }
9569 if (CPU_HAS_SEQ (mips_opts.arch)
9570 && -512 <= imm_expr.X_add_number
9571 && imm_expr.X_add_number < 512)
9572 {
9573 macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
9574 (int) imm_expr.X_add_number);
9575 break;
9576 }
9577 if (imm_expr.X_op == O_constant
9578 && imm_expr.X_add_number >= 0
9579 && imm_expr.X_add_number < 0x10000)
9580 {
9581 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
9582 }
9583 else if (imm_expr.X_op == O_constant
9584 && imm_expr.X_add_number > -0x8000
9585 && imm_expr.X_add_number < 0)
9586 {
9587 imm_expr.X_add_number = -imm_expr.X_add_number;
9588 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
9589 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
9590 }
9591 else if (CPU_HAS_SEQ (mips_opts.arch))
9592 {
9593 used_at = 1;
9594 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9595 macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
9596 break;
9597 }
9598 else
9599 {
9600 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9601 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
9602 used_at = 1;
9603 }
9604 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
9605 break;
9606
9607 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
9608 s = "slt";
9609 goto sge;
9610 case M_SGEU:
9611 s = "sltu";
9612 sge:
9613 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
9614 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
9615 break;
9616
9617 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
9618 case M_SGEU_I:
9619 if (imm_expr.X_op == O_constant
9620 && imm_expr.X_add_number >= -0x8000
9621 && imm_expr.X_add_number < 0x8000)
9622 {
9623 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
9624 dreg, sreg, BFD_RELOC_LO16);
9625 }
9626 else
9627 {
9628 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9629 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
9630 dreg, sreg, AT);
9631 used_at = 1;
9632 }
9633 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
9634 break;
9635
9636 case M_SGT: /* sreg > treg <==> treg < sreg */
9637 s = "slt";
9638 goto sgt;
9639 case M_SGTU:
9640 s = "sltu";
9641 sgt:
9642 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
9643 break;
9644
9645 case M_SGT_I: /* sreg > I <==> I < sreg */
9646 s = "slt";
9647 goto sgti;
9648 case M_SGTU_I:
9649 s = "sltu";
9650 sgti:
9651 used_at = 1;
9652 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9653 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
9654 break;
9655
9656 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
9657 s = "slt";
9658 goto sle;
9659 case M_SLEU:
9660 s = "sltu";
9661 sle:
9662 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
9663 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
9664 break;
9665
9666 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
9667 s = "slt";
9668 goto slei;
9669 case M_SLEU_I:
9670 s = "sltu";
9671 slei:
9672 used_at = 1;
9673 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9674 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
9675 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
9676 break;
9677
9678 case M_SLT_I:
9679 if (imm_expr.X_op == O_constant
9680 && imm_expr.X_add_number >= -0x8000
9681 && imm_expr.X_add_number < 0x8000)
9682 {
9683 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
9684 break;
9685 }
9686 used_at = 1;
9687 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9688 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
9689 break;
9690
9691 case M_SLTU_I:
9692 if (imm_expr.X_op == O_constant
9693 && imm_expr.X_add_number >= -0x8000
9694 && imm_expr.X_add_number < 0x8000)
9695 {
9696 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
9697 BFD_RELOC_LO16);
9698 break;
9699 }
9700 used_at = 1;
9701 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9702 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
9703 break;
9704
9705 case M_SNE:
9706 if (sreg == 0)
9707 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
9708 else if (treg == 0)
9709 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
9710 else
9711 {
9712 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
9713 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
9714 }
9715 break;
9716
9717 case M_SNE_I:
9718 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
9719 {
9720 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
9721 break;
9722 }
9723 if (sreg == 0)
9724 {
9725 as_warn (_("Instruction %s: result is always true"),
9726 ip->insn_mo->name);
9727 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
9728 dreg, 0, BFD_RELOC_LO16);
9729 break;
9730 }
9731 if (CPU_HAS_SEQ (mips_opts.arch)
9732 && -512 <= imm_expr.X_add_number
9733 && imm_expr.X_add_number < 512)
9734 {
9735 macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
9736 (int) imm_expr.X_add_number);
9737 break;
9738 }
9739 if (imm_expr.X_op == O_constant
9740 && imm_expr.X_add_number >= 0
9741 && imm_expr.X_add_number < 0x10000)
9742 {
9743 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
9744 }
9745 else if (imm_expr.X_op == O_constant
9746 && imm_expr.X_add_number > -0x8000
9747 && imm_expr.X_add_number < 0)
9748 {
9749 imm_expr.X_add_number = -imm_expr.X_add_number;
9750 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
9751 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
9752 }
9753 else if (CPU_HAS_SEQ (mips_opts.arch))
9754 {
9755 used_at = 1;
9756 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9757 macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
9758 break;
9759 }
9760 else
9761 {
9762 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9763 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
9764 used_at = 1;
9765 }
9766 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
9767 break;
9768
9769 case M_SUB_I:
9770 s = "addi";
9771 s2 = "sub";
9772 goto do_subi;
9773 case M_SUBU_I:
9774 s = "addiu";
9775 s2 = "subu";
9776 goto do_subi;
9777 case M_DSUB_I:
9778 dbl = 1;
9779 s = "daddi";
9780 s2 = "dsub";
9781 if (!mips_opts.micromips)
9782 goto do_subi;
9783 if (imm_expr.X_op == O_constant
9784 && imm_expr.X_add_number > -0x200
9785 && imm_expr.X_add_number <= 0x200)
9786 {
9787 macro_build (NULL, s, "t,r,.", dreg, sreg, -imm_expr.X_add_number);
9788 break;
9789 }
9790 goto do_subi_i;
9791 case M_DSUBU_I:
9792 dbl = 1;
9793 s = "daddiu";
9794 s2 = "dsubu";
9795 do_subi:
9796 if (imm_expr.X_op == O_constant
9797 && imm_expr.X_add_number > -0x8000
9798 && imm_expr.X_add_number <= 0x8000)
9799 {
9800 imm_expr.X_add_number = -imm_expr.X_add_number;
9801 macro_build (&imm_expr, s, "t,r,j", dreg, sreg, BFD_RELOC_LO16);
9802 break;
9803 }
9804 do_subi_i:
9805 used_at = 1;
9806 load_register (AT, &imm_expr, dbl);
9807 macro_build (NULL, s2, "d,v,t", dreg, sreg, AT);
9808 break;
9809
9810 case M_TEQ_I:
9811 s = "teq";
9812 goto trap;
9813 case M_TGE_I:
9814 s = "tge";
9815 goto trap;
9816 case M_TGEU_I:
9817 s = "tgeu";
9818 goto trap;
9819 case M_TLT_I:
9820 s = "tlt";
9821 goto trap;
9822 case M_TLTU_I:
9823 s = "tltu";
9824 goto trap;
9825 case M_TNE_I:
9826 s = "tne";
9827 trap:
9828 used_at = 1;
9829 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9830 macro_build (NULL, s, "s,t", sreg, AT);
9831 break;
9832
9833 case M_TRUNCWS:
9834 case M_TRUNCWD:
9835 gas_assert (!mips_opts.micromips);
9836 gas_assert (mips_opts.isa == ISA_MIPS1);
9837 used_at = 1;
9838 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
9839 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
9840
9841 /*
9842 * Is the double cfc1 instruction a bug in the mips assembler;
9843 * or is there a reason for it?
9844 */
9845 start_noreorder ();
9846 macro_build (NULL, "cfc1", "t,G", treg, RA);
9847 macro_build (NULL, "cfc1", "t,G", treg, RA);
9848 macro_build (NULL, "nop", "");
9849 expr1.X_add_number = 3;
9850 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
9851 expr1.X_add_number = 2;
9852 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
9853 macro_build (NULL, "ctc1", "t,G", AT, RA);
9854 macro_build (NULL, "nop", "");
9855 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
9856 dreg, sreg);
9857 macro_build (NULL, "ctc1", "t,G", treg, RA);
9858 macro_build (NULL, "nop", "");
9859 end_noreorder ();
9860 break;
9861
9862 case M_ULH_A:
9863 ab = 1;
9864 case M_ULH:
9865 s = "lb";
9866 s2 = "lbu";
9867 off = 1;
9868 goto uld_st;
9869 case M_ULHU_A:
9870 ab = 1;
9871 case M_ULHU:
9872 s = "lbu";
9873 s2 = "lbu";
9874 off = 1;
9875 goto uld_st;
9876 case M_ULW_A:
9877 ab = 1;
9878 case M_ULW:
9879 s = "lwl";
9880 s2 = "lwr";
9881 off12 = mips_opts.micromips;
9882 off = 3;
9883 goto uld_st;
9884 case M_ULD_A:
9885 ab = 1;
9886 case M_ULD:
9887 s = "ldl";
9888 s2 = "ldr";
9889 off12 = mips_opts.micromips;
9890 off = 7;
9891 goto uld_st;
9892 case M_USH_A:
9893 ab = 1;
9894 case M_USH:
9895 s = "sb";
9896 s2 = "sb";
9897 off = 1;
9898 ust = 1;
9899 goto uld_st;
9900 case M_USW_A:
9901 ab = 1;
9902 case M_USW:
9903 s = "swl";
9904 s2 = "swr";
9905 off12 = mips_opts.micromips;
9906 off = 3;
9907 ust = 1;
9908 goto uld_st;
9909 case M_USD_A:
9910 ab = 1;
9911 case M_USD:
9912 s = "sdl";
9913 s2 = "sdr";
9914 off12 = mips_opts.micromips;
9915 off = 7;
9916 ust = 1;
9917
9918 uld_st:
9919 if (!ab && offset_expr.X_add_number >= 0x8000 - off)
9920 as_bad (_("Operand overflow"));
9921
9922 ep = &offset_expr;
9923 expr1.X_add_number = 0;
9924 if (ab)
9925 {
9926 used_at = 1;
9927 tempreg = AT;
9928 load_address (tempreg, ep, &used_at);
9929 if (breg != 0)
9930 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9931 tempreg, tempreg, breg);
9932 breg = tempreg;
9933 tempreg = treg;
9934 ep = &expr1;
9935 }
9936 else if (off12
9937 && (offset_expr.X_op != O_constant
9938 || !IS_SEXT_12BIT_NUM (offset_expr.X_add_number)
9939 || !IS_SEXT_12BIT_NUM (offset_expr.X_add_number + off)))
9940 {
9941 used_at = 1;
9942 tempreg = AT;
9943 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", tempreg, breg,
9944 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2]);
9945 breg = tempreg;
9946 tempreg = treg;
9947 ep = &expr1;
9948 }
9949 else if (!ust && treg == breg)
9950 {
9951 used_at = 1;
9952 tempreg = AT;
9953 }
9954 else
9955 tempreg = treg;
9956
9957 if (off == 1)
9958 goto ulh_sh;
9959
9960 if (!target_big_endian)
9961 ep->X_add_number += off;
9962 if (!off12)
9963 macro_build (ep, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
9964 else
9965 macro_build (NULL, s, "t,~(b)",
9966 tempreg, (unsigned long) ep->X_add_number, breg);
9967
9968 if (!target_big_endian)
9969 ep->X_add_number -= off;
9970 else
9971 ep->X_add_number += off;
9972 if (!off12)
9973 macro_build (ep, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
9974 else
9975 macro_build (NULL, s2, "t,~(b)",
9976 tempreg, (unsigned long) ep->X_add_number, breg);
9977
9978 /* If necessary, move the result in tempreg to the final destination. */
9979 if (!ust && treg != tempreg)
9980 {
9981 /* Protect second load's delay slot. */
9982 load_delay_nop ();
9983 move_register (treg, tempreg);
9984 }
9985 break;
9986
9987 ulh_sh:
9988 used_at = 1;
9989 if (target_big_endian == ust)
9990 ep->X_add_number += off;
9991 tempreg = ust || ab ? treg : AT;
9992 macro_build (ep, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
9993
9994 /* For halfword transfers we need a temporary register to shuffle
9995 bytes. Unfortunately for M_USH_A we have none available before
9996 the next store as AT holds the base address. We deal with this
9997 case by clobbering TREG and then restoring it as with ULH. */
9998 tempreg = ust == ab ? treg : AT;
9999 if (ust)
10000 macro_build (NULL, "srl", SHFT_FMT, tempreg, treg, 8);
10001
10002 if (target_big_endian == ust)
10003 ep->X_add_number -= off;
10004 else
10005 ep->X_add_number += off;
10006 macro_build (ep, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
10007
10008 /* For M_USH_A re-retrieve the LSB. */
10009 if (ust && ab)
10010 {
10011 if (target_big_endian)
10012 ep->X_add_number += off;
10013 else
10014 ep->X_add_number -= off;
10015 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
10016 }
10017 /* For ULH and M_USH_A OR the LSB in. */
10018 if (!ust || ab)
10019 {
10020 tempreg = !ab ? AT : treg;
10021 macro_build (NULL, "sll", SHFT_FMT, tempreg, tempreg, 8);
10022 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
10023 }
10024 break;
10025
10026 default:
10027 /* FIXME: Check if this is one of the itbl macros, since they
10028 are added dynamically. */
10029 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
10030 break;
10031 }
10032 if (!mips_opts.at && used_at)
10033 as_bad (_("Macro used $at after \".set noat\""));
10034 }
10035
10036 /* Implement macros in mips16 mode. */
10037
10038 static void
10039 mips16_macro (struct mips_cl_insn *ip)
10040 {
10041 int mask;
10042 int xreg, yreg, zreg, tmp;
10043 expressionS expr1;
10044 int dbl;
10045 const char *s, *s2, *s3;
10046
10047 mask = ip->insn_mo->mask;
10048
10049 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
10050 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
10051 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
10052
10053 expr1.X_op = O_constant;
10054 expr1.X_op_symbol = NULL;
10055 expr1.X_add_symbol = NULL;
10056 expr1.X_add_number = 1;
10057
10058 dbl = 0;
10059
10060 switch (mask)
10061 {
10062 default:
10063 internalError ();
10064
10065 case M_DDIV_3:
10066 dbl = 1;
10067 case M_DIV_3:
10068 s = "mflo";
10069 goto do_div3;
10070 case M_DREM_3:
10071 dbl = 1;
10072 case M_REM_3:
10073 s = "mfhi";
10074 do_div3:
10075 start_noreorder ();
10076 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
10077 expr1.X_add_number = 2;
10078 macro_build (&expr1, "bnez", "x,p", yreg);
10079 macro_build (NULL, "break", "6", 7);
10080
10081 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
10082 since that causes an overflow. We should do that as well,
10083 but I don't see how to do the comparisons without a temporary
10084 register. */
10085 end_noreorder ();
10086 macro_build (NULL, s, "x", zreg);
10087 break;
10088
10089 case M_DIVU_3:
10090 s = "divu";
10091 s2 = "mflo";
10092 goto do_divu3;
10093 case M_REMU_3:
10094 s = "divu";
10095 s2 = "mfhi";
10096 goto do_divu3;
10097 case M_DDIVU_3:
10098 s = "ddivu";
10099 s2 = "mflo";
10100 goto do_divu3;
10101 case M_DREMU_3:
10102 s = "ddivu";
10103 s2 = "mfhi";
10104 do_divu3:
10105 start_noreorder ();
10106 macro_build (NULL, s, "0,x,y", xreg, yreg);
10107 expr1.X_add_number = 2;
10108 macro_build (&expr1, "bnez", "x,p", yreg);
10109 macro_build (NULL, "break", "6", 7);
10110 end_noreorder ();
10111 macro_build (NULL, s2, "x", zreg);
10112 break;
10113
10114 case M_DMUL:
10115 dbl = 1;
10116 case M_MUL:
10117 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
10118 macro_build (NULL, "mflo", "x", zreg);
10119 break;
10120
10121 case M_DSUBU_I:
10122 dbl = 1;
10123 goto do_subu;
10124 case M_SUBU_I:
10125 do_subu:
10126 if (imm_expr.X_op != O_constant)
10127 as_bad (_("Unsupported large constant"));
10128 imm_expr.X_add_number = -imm_expr.X_add_number;
10129 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
10130 break;
10131
10132 case M_SUBU_I_2:
10133 if (imm_expr.X_op != O_constant)
10134 as_bad (_("Unsupported large constant"));
10135 imm_expr.X_add_number = -imm_expr.X_add_number;
10136 macro_build (&imm_expr, "addiu", "x,k", xreg);
10137 break;
10138
10139 case M_DSUBU_I_2:
10140 if (imm_expr.X_op != O_constant)
10141 as_bad (_("Unsupported large constant"));
10142 imm_expr.X_add_number = -imm_expr.X_add_number;
10143 macro_build (&imm_expr, "daddiu", "y,j", yreg);
10144 break;
10145
10146 case M_BEQ:
10147 s = "cmp";
10148 s2 = "bteqz";
10149 goto do_branch;
10150 case M_BNE:
10151 s = "cmp";
10152 s2 = "btnez";
10153 goto do_branch;
10154 case M_BLT:
10155 s = "slt";
10156 s2 = "btnez";
10157 goto do_branch;
10158 case M_BLTU:
10159 s = "sltu";
10160 s2 = "btnez";
10161 goto do_branch;
10162 case M_BLE:
10163 s = "slt";
10164 s2 = "bteqz";
10165 goto do_reverse_branch;
10166 case M_BLEU:
10167 s = "sltu";
10168 s2 = "bteqz";
10169 goto do_reverse_branch;
10170 case M_BGE:
10171 s = "slt";
10172 s2 = "bteqz";
10173 goto do_branch;
10174 case M_BGEU:
10175 s = "sltu";
10176 s2 = "bteqz";
10177 goto do_branch;
10178 case M_BGT:
10179 s = "slt";
10180 s2 = "btnez";
10181 goto do_reverse_branch;
10182 case M_BGTU:
10183 s = "sltu";
10184 s2 = "btnez";
10185
10186 do_reverse_branch:
10187 tmp = xreg;
10188 xreg = yreg;
10189 yreg = tmp;
10190
10191 do_branch:
10192 macro_build (NULL, s, "x,y", xreg, yreg);
10193 macro_build (&offset_expr, s2, "p");
10194 break;
10195
10196 case M_BEQ_I:
10197 s = "cmpi";
10198 s2 = "bteqz";
10199 s3 = "x,U";
10200 goto do_branch_i;
10201 case M_BNE_I:
10202 s = "cmpi";
10203 s2 = "btnez";
10204 s3 = "x,U";
10205 goto do_branch_i;
10206 case M_BLT_I:
10207 s = "slti";
10208 s2 = "btnez";
10209 s3 = "x,8";
10210 goto do_branch_i;
10211 case M_BLTU_I:
10212 s = "sltiu";
10213 s2 = "btnez";
10214 s3 = "x,8";
10215 goto do_branch_i;
10216 case M_BLE_I:
10217 s = "slti";
10218 s2 = "btnez";
10219 s3 = "x,8";
10220 goto do_addone_branch_i;
10221 case M_BLEU_I:
10222 s = "sltiu";
10223 s2 = "btnez";
10224 s3 = "x,8";
10225 goto do_addone_branch_i;
10226 case M_BGE_I:
10227 s = "slti";
10228 s2 = "bteqz";
10229 s3 = "x,8";
10230 goto do_branch_i;
10231 case M_BGEU_I:
10232 s = "sltiu";
10233 s2 = "bteqz";
10234 s3 = "x,8";
10235 goto do_branch_i;
10236 case M_BGT_I:
10237 s = "slti";
10238 s2 = "bteqz";
10239 s3 = "x,8";
10240 goto do_addone_branch_i;
10241 case M_BGTU_I:
10242 s = "sltiu";
10243 s2 = "bteqz";
10244 s3 = "x,8";
10245
10246 do_addone_branch_i:
10247 if (imm_expr.X_op != O_constant)
10248 as_bad (_("Unsupported large constant"));
10249 ++imm_expr.X_add_number;
10250
10251 do_branch_i:
10252 macro_build (&imm_expr, s, s3, xreg);
10253 macro_build (&offset_expr, s2, "p");
10254 break;
10255
10256 case M_ABS:
10257 expr1.X_add_number = 0;
10258 macro_build (&expr1, "slti", "x,8", yreg);
10259 if (xreg != yreg)
10260 move_register (xreg, yreg);
10261 expr1.X_add_number = 2;
10262 macro_build (&expr1, "bteqz", "p");
10263 macro_build (NULL, "neg", "x,w", xreg, xreg);
10264 }
10265 }
10266
10267 /* For consistency checking, verify that all bits are specified either
10268 by the match/mask part of the instruction definition, or by the
10269 operand list. */
10270 static int
10271 validate_mips_insn (const struct mips_opcode *opc)
10272 {
10273 const char *p = opc->args;
10274 char c;
10275 unsigned long used_bits = opc->mask;
10276
10277 if ((used_bits & opc->match) != opc->match)
10278 {
10279 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
10280 opc->name, opc->args);
10281 return 0;
10282 }
10283 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
10284 while (*p)
10285 switch (c = *p++)
10286 {
10287 case ',': break;
10288 case '(': break;
10289 case ')': break;
10290 case '+':
10291 switch (c = *p++)
10292 {
10293 case '1': USE_BITS (OP_MASK_UDI1, OP_SH_UDI1); break;
10294 case '2': USE_BITS (OP_MASK_UDI2, OP_SH_UDI2); break;
10295 case '3': USE_BITS (OP_MASK_UDI3, OP_SH_UDI3); break;
10296 case '4': USE_BITS (OP_MASK_UDI4, OP_SH_UDI4); break;
10297 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10298 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
10299 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10300 case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD);
10301 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
10302 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10303 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
10304 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10305 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10306 case 'I': break;
10307 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10308 case 'T': USE_BITS (OP_MASK_RT, OP_SH_RT);
10309 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
10310 case 'x': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
10311 case 'X': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
10312 case 'p': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
10313 case 'P': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
10314 case 'Q': USE_BITS (OP_MASK_SEQI, OP_SH_SEQI); break;
10315 case 's': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
10316 case 'S': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
10317 case 'z': USE_BITS (OP_MASK_RZ, OP_SH_RZ); break;
10318 case 'Z': USE_BITS (OP_MASK_FZ, OP_SH_FZ); break;
10319 case 'a': USE_BITS (OP_MASK_OFFSET_A, OP_SH_OFFSET_A); break;
10320 case 'b': USE_BITS (OP_MASK_OFFSET_B, OP_SH_OFFSET_B); break;
10321 case 'c': USE_BITS (OP_MASK_OFFSET_C, OP_SH_OFFSET_C); break;
10322
10323 default:
10324 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
10325 c, opc->name, opc->args);
10326 return 0;
10327 }
10328 break;
10329 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10330 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10331 case 'A': break;
10332 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
10333 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
10334 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
10335 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10336 case 'F': break;
10337 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10338 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
10339 case 'I': break;
10340 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
10341 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10342 case 'L': break;
10343 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
10344 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
10345 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
10346 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
10347 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10348 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
10349 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10350 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10351 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10352 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10353 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
10354 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10355 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10356 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
10357 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10358 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
10359 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10360 case 'f': break;
10361 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
10362 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
10363 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10364 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
10365 case 'l': break;
10366 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10367 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10368 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
10369 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10370 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10371 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10372 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
10373 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10374 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10375 case 'x': break;
10376 case 'z': break;
10377 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
10378 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
10379 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10380 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
10381 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
10382 case '[': break;
10383 case ']': break;
10384 case '1': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10385 case '2': USE_BITS (OP_MASK_BP, OP_SH_BP); break;
10386 case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break;
10387 case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break;
10388 case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break;
10389 case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10390 case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break;
10391 case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break;
10392 case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break;
10393 case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break;
10394 case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break;
10395 case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break;
10396 case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break;
10397 case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break;
10398 case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break;
10399 case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break;
10400 case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break;
10401 case '\\': USE_BITS (OP_MASK_3BITPOS, OP_SH_3BITPOS); break;
10402 case '~': USE_BITS (OP_MASK_OFFSET12, OP_SH_OFFSET12); break;
10403 case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10404 default:
10405 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
10406 c, opc->name, opc->args);
10407 return 0;
10408 }
10409 #undef USE_BITS
10410 if (used_bits != 0xffffffff)
10411 {
10412 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
10413 ~used_bits & 0xffffffff, opc->name, opc->args);
10414 return 0;
10415 }
10416 return 1;
10417 }
10418
10419 /* For consistency checking, verify that the length implied matches the
10420 major opcode and that all bits are specified either by the match/mask
10421 part of the instruction definition, or by the operand list. */
10422
10423 static int
10424 validate_micromips_insn (const struct mips_opcode *opc)
10425 {
10426 unsigned long match = opc->match;
10427 unsigned long mask = opc->mask;
10428 const char *p = opc->args;
10429 unsigned long insn_bits;
10430 unsigned long used_bits;
10431 unsigned long major;
10432 unsigned int length;
10433 char e;
10434 char c;
10435
10436 if ((mask & match) != match)
10437 {
10438 as_bad (_("Internal error: bad microMIPS opcode (mask error): %s %s"),
10439 opc->name, opc->args);
10440 return 0;
10441 }
10442 length = micromips_insn_length (opc);
10443 if (length != 2 && length != 4)
10444 {
10445 as_bad (_("Internal error: bad microMIPS opcode (incorrect length: %u): "
10446 "%s %s"), length, opc->name, opc->args);
10447 return 0;
10448 }
10449 major = match >> (10 + 8 * (length - 2));
10450 if ((length == 2 && (major & 7) != 1 && (major & 6) != 2)
10451 || (length == 4 && (major & 7) != 0 && (major & 4) != 4))
10452 {
10453 as_bad (_("Internal error: bad microMIPS opcode "
10454 "(opcode/length mismatch): %s %s"), opc->name, opc->args);
10455 return 0;
10456 }
10457
10458 /* Shift piecewise to avoid an overflow where unsigned long is 32-bit. */
10459 insn_bits = 1 << 4 * length;
10460 insn_bits <<= 4 * length;
10461 insn_bits -= 1;
10462 used_bits = mask;
10463 #define USE_BITS(field) \
10464 (used_bits |= MICROMIPSOP_MASK_##field << MICROMIPSOP_SH_##field)
10465 while (*p)
10466 switch (c = *p++)
10467 {
10468 case ',': break;
10469 case '(': break;
10470 case ')': break;
10471 case '+':
10472 e = c;
10473 switch (c = *p++)
10474 {
10475 case 'A': USE_BITS (EXTLSB); break;
10476 case 'B': USE_BITS (INSMSB); break;
10477 case 'C': USE_BITS (EXTMSBD); break;
10478 case 'D': USE_BITS (RS); USE_BITS (SEL); break;
10479 case 'E': USE_BITS (EXTLSB); break;
10480 case 'F': USE_BITS (INSMSB); break;
10481 case 'G': USE_BITS (EXTMSBD); break;
10482 case 'H': USE_BITS (EXTMSBD); break;
10483 default:
10484 as_bad (_("Internal error: bad mips opcode "
10485 "(unknown extension operand type `%c%c'): %s %s"),
10486 e, c, opc->name, opc->args);
10487 return 0;
10488 }
10489 break;
10490 case 'm':
10491 e = c;
10492 switch (c = *p++)
10493 {
10494 case 'A': USE_BITS (IMMA); break;
10495 case 'B': USE_BITS (IMMB); break;
10496 case 'C': USE_BITS (IMMC); break;
10497 case 'D': USE_BITS (IMMD); break;
10498 case 'E': USE_BITS (IMME); break;
10499 case 'F': USE_BITS (IMMF); break;
10500 case 'G': USE_BITS (IMMG); break;
10501 case 'H': USE_BITS (IMMH); break;
10502 case 'I': USE_BITS (IMMI); break;
10503 case 'J': USE_BITS (IMMJ); break;
10504 case 'L': USE_BITS (IMML); break;
10505 case 'M': USE_BITS (IMMM); break;
10506 case 'N': USE_BITS (IMMN); break;
10507 case 'O': USE_BITS (IMMO); break;
10508 case 'P': USE_BITS (IMMP); break;
10509 case 'Q': USE_BITS (IMMQ); break;
10510 case 'U': USE_BITS (IMMU); break;
10511 case 'W': USE_BITS (IMMW); break;
10512 case 'X': USE_BITS (IMMX); break;
10513 case 'Y': USE_BITS (IMMY); break;
10514 case 'Z': break;
10515 case 'a': break;
10516 case 'b': USE_BITS (MB); break;
10517 case 'c': USE_BITS (MC); break;
10518 case 'd': USE_BITS (MD); break;
10519 case 'e': USE_BITS (ME); break;
10520 case 'f': USE_BITS (MF); break;
10521 case 'g': USE_BITS (MG); break;
10522 case 'h': USE_BITS (MH); break;
10523 case 'i': USE_BITS (MI); break;
10524 case 'j': USE_BITS (MJ); break;
10525 case 'l': USE_BITS (ML); break;
10526 case 'm': USE_BITS (MM); break;
10527 case 'n': USE_BITS (MN); break;
10528 case 'p': USE_BITS (MP); break;
10529 case 'q': USE_BITS (MQ); break;
10530 case 'r': break;
10531 case 's': break;
10532 case 't': break;
10533 case 'x': break;
10534 case 'y': break;
10535 case 'z': break;
10536 default:
10537 as_bad (_("Internal error: bad mips opcode "
10538 "(unknown extension operand type `%c%c'): %s %s"),
10539 e, c, opc->name, opc->args);
10540 return 0;
10541 }
10542 break;
10543 case '.': USE_BITS (OFFSET10); break;
10544 case '1': USE_BITS (STYPE); break;
10545 case '2': USE_BITS (BP); break;
10546 case '3': USE_BITS (SA3); break;
10547 case '4': USE_BITS (SA4); break;
10548 case '5': USE_BITS (IMM8); break;
10549 case '6': USE_BITS (RS); break;
10550 case '7': USE_BITS (DSPACC); break;
10551 case '8': USE_BITS (WRDSP); break;
10552 case '0': USE_BITS (DSPSFT); break;
10553 case '<': USE_BITS (SHAMT); break;
10554 case '>': USE_BITS (SHAMT); break;
10555 case '@': USE_BITS (IMM10); break;
10556 case 'B': USE_BITS (CODE10); break;
10557 case 'C': USE_BITS (COPZ); break;
10558 case 'D': USE_BITS (FD); break;
10559 case 'E': USE_BITS (RT); break;
10560 case 'G': USE_BITS (RS); break;
10561 case 'H': USE_BITS (SEL); break;
10562 case 'K': USE_BITS (RS); break;
10563 case 'M': USE_BITS (CCC); break;
10564 case 'N': USE_BITS (BCC); break;
10565 case 'R': USE_BITS (FR); break;
10566 case 'S': USE_BITS (FS); break;
10567 case 'T': USE_BITS (FT); break;
10568 case 'V': USE_BITS (FS); break;
10569 case '\\': USE_BITS (3BITPOS); break;
10570 case '^': USE_BITS (RD); break;
10571 case 'a': USE_BITS (TARGET); break;
10572 case 'b': USE_BITS (RS); break;
10573 case 'c': USE_BITS (CODE); break;
10574 case 'd': USE_BITS (RD); break;
10575 case 'h': USE_BITS (PREFX); break;
10576 case 'i': USE_BITS (IMMEDIATE); break;
10577 case 'j': USE_BITS (DELTA); break;
10578 case 'k': USE_BITS (CACHE); break;
10579 case 'n': USE_BITS (RT); break;
10580 case 'o': USE_BITS (DELTA); break;
10581 case 'p': USE_BITS (DELTA); break;
10582 case 'q': USE_BITS (CODE2); break;
10583 case 'r': USE_BITS (RS); break;
10584 case 's': USE_BITS (RS); break;
10585 case 't': USE_BITS (RT); break;
10586 case 'u': USE_BITS (IMMEDIATE); break;
10587 case 'v': USE_BITS (RS); break;
10588 case 'w': USE_BITS (RT); break;
10589 case 'y': USE_BITS (RS3); break;
10590 case 'z': break;
10591 case '|': USE_BITS (TRAP); break;
10592 case '~': USE_BITS (OFFSET12); break;
10593 default:
10594 as_bad (_("Internal error: bad microMIPS opcode "
10595 "(unknown operand type `%c'): %s %s"),
10596 c, opc->name, opc->args);
10597 return 0;
10598 }
10599 #undef USE_BITS
10600 if (used_bits != insn_bits)
10601 {
10602 if (~used_bits & insn_bits)
10603 as_bad (_("Internal error: bad microMIPS opcode "
10604 "(bits 0x%lx undefined): %s %s"),
10605 ~used_bits & insn_bits, opc->name, opc->args);
10606 if (used_bits & ~insn_bits)
10607 as_bad (_("Internal error: bad microMIPS opcode "
10608 "(bits 0x%lx defined): %s %s"),
10609 used_bits & ~insn_bits, opc->name, opc->args);
10610 return 0;
10611 }
10612 return 1;
10613 }
10614
10615 /* UDI immediates. */
10616 struct mips_immed {
10617 char type;
10618 unsigned int shift;
10619 unsigned long mask;
10620 const char * desc;
10621 };
10622
10623 static const struct mips_immed mips_immed[] = {
10624 { '1', OP_SH_UDI1, OP_MASK_UDI1, 0},
10625 { '2', OP_SH_UDI2, OP_MASK_UDI2, 0},
10626 { '3', OP_SH_UDI3, OP_MASK_UDI3, 0},
10627 { '4', OP_SH_UDI4, OP_MASK_UDI4, 0},
10628 { 0,0,0,0 }
10629 };
10630
10631 /* Check whether an odd floating-point register is allowed. */
10632 static int
10633 mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
10634 {
10635 const char *s = insn->name;
10636
10637 if (insn->pinfo == INSN_MACRO)
10638 /* Let a macro pass, we'll catch it later when it is expanded. */
10639 return 1;
10640
10641 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa))
10642 {
10643 /* Allow odd registers for single-precision ops. */
10644 switch (insn->pinfo & (FP_S | FP_D))
10645 {
10646 case FP_S:
10647 case 0:
10648 return 1; /* both single precision - ok */
10649 case FP_D:
10650 return 0; /* both double precision - fail */
10651 default:
10652 break;
10653 }
10654
10655 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
10656 s = strchr (insn->name, '.');
10657 if (argnum == 2)
10658 s = s != NULL ? strchr (s + 1, '.') : NULL;
10659 return (s != NULL && (s[1] == 'w' || s[1] == 's'));
10660 }
10661
10662 /* Single-precision coprocessor loads and moves are OK too. */
10663 if ((insn->pinfo & FP_S)
10664 && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
10665 | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
10666 return 1;
10667
10668 return 0;
10669 }
10670
10671 /* Check if EXPR is a constant between MIN (inclusive) and MAX (exclusive)
10672 taking bits from BIT up. */
10673 static int
10674 expr_const_in_range (expressionS *ep, offsetT min, offsetT max, int bit)
10675 {
10676 return (ep->X_op == O_constant
10677 && (ep->X_add_number & ((1 << bit) - 1)) == 0
10678 && ep->X_add_number >= min << bit
10679 && ep->X_add_number < max << bit);
10680 }
10681
10682 /* This routine assembles an instruction into its binary format. As a
10683 side effect, it sets one of the global variables imm_reloc or
10684 offset_reloc to the type of relocation to do if one of the operands
10685 is an address expression. */
10686
10687 static void
10688 mips_ip (char *str, struct mips_cl_insn *ip)
10689 {
10690 bfd_boolean wrong_delay_slot_insns = FALSE;
10691 bfd_boolean need_delay_slot_ok = TRUE;
10692 struct mips_opcode *firstinsn = NULL;
10693 const struct mips_opcode *past;
10694 struct hash_control *hash;
10695 char *s;
10696 const char *args;
10697 char c = 0;
10698 struct mips_opcode *insn;
10699 char *argsStart;
10700 unsigned int regno;
10701 unsigned int lastregno;
10702 unsigned int destregno = 0;
10703 unsigned int lastpos = 0;
10704 unsigned int limlo, limhi;
10705 char *s_reset;
10706 offsetT min_range, max_range;
10707 long opend;
10708 char *name;
10709 int argnum;
10710 unsigned int rtype;
10711 char *dot;
10712 long end;
10713
10714 insn_error = NULL;
10715
10716 if (mips_opts.micromips)
10717 {
10718 hash = micromips_op_hash;
10719 past = &micromips_opcodes[bfd_micromips_num_opcodes];
10720 }
10721 else
10722 {
10723 hash = op_hash;
10724 past = &mips_opcodes[NUMOPCODES];
10725 }
10726 forced_insn_length = 0;
10727 insn = NULL;
10728
10729 /* We first try to match an instruction up to a space or to the end. */
10730 for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
10731 continue;
10732
10733 /* Make a copy of the instruction so that we can fiddle with it. */
10734 name = alloca (end + 1);
10735 memcpy (name, str, end);
10736 name[end] = '\0';
10737
10738 for (;;)
10739 {
10740 insn = (struct mips_opcode *) hash_find (hash, name);
10741
10742 if (insn != NULL || !mips_opts.micromips)
10743 break;
10744 if (forced_insn_length)
10745 break;
10746
10747 /* See if there's an instruction size override suffix,
10748 either `16' or `32', at the end of the mnemonic proper,
10749 that defines the operation, i.e. before the first `.'
10750 character if any. Strip it and retry. */
10751 dot = strchr (name, '.');
10752 opend = dot != NULL ? dot - name : end;
10753 if (opend < 3)
10754 break;
10755 if (name[opend - 2] == '1' && name[opend - 1] == '6')
10756 forced_insn_length = 2;
10757 else if (name[opend - 2] == '3' && name[opend - 1] == '2')
10758 forced_insn_length = 4;
10759 else
10760 break;
10761 memcpy (name + opend - 2, name + opend, end - opend + 1);
10762 }
10763 if (insn == NULL)
10764 {
10765 insn_error = _("Unrecognized opcode");
10766 return;
10767 }
10768
10769 /* For microMIPS instructions placed in a fixed-length branch delay slot
10770 we make up to two passes over the relevant fragment of the opcode
10771 table. First we try instructions that meet the delay slot's length
10772 requirement. If none matched, then we retry with the remaining ones
10773 and if one matches, then we use it and then issue an appropriate
10774 warning later on. */
10775 argsStart = s = str + end;
10776 for (;;)
10777 {
10778 bfd_boolean delay_slot_ok;
10779 bfd_boolean size_ok;
10780 bfd_boolean ok;
10781
10782 gas_assert (strcmp (insn->name, name) == 0);
10783
10784 ok = is_opcode_valid (insn);
10785 size_ok = is_size_valid (insn);
10786 delay_slot_ok = is_delay_slot_valid (insn);
10787 if (!delay_slot_ok && !wrong_delay_slot_insns)
10788 {
10789 firstinsn = insn;
10790 wrong_delay_slot_insns = TRUE;
10791 }
10792 if (!ok || !size_ok || delay_slot_ok != need_delay_slot_ok)
10793 {
10794 static char buf[256];
10795
10796 if (insn + 1 < past && strcmp (insn->name, insn[1].name) == 0)
10797 {
10798 ++insn;
10799 continue;
10800 }
10801 if (wrong_delay_slot_insns && need_delay_slot_ok)
10802 {
10803 gas_assert (firstinsn);
10804 need_delay_slot_ok = FALSE;
10805 past = insn + 1;
10806 insn = firstinsn;
10807 continue;
10808 }
10809
10810 if (insn_error)
10811 return;
10812
10813 if (!ok)
10814 sprintf (buf, _("Opcode not supported on this processor: %s (%s)"),
10815 mips_cpu_info_from_arch (mips_opts.arch)->name,
10816 mips_cpu_info_from_isa (mips_opts.isa)->name);
10817 else
10818 sprintf (buf, _("Unrecognized %u-bit version of microMIPS opcode"),
10819 8 * forced_insn_length);
10820 insn_error = buf;
10821
10822 return;
10823 }
10824
10825 create_insn (ip, insn);
10826 insn_error = NULL;
10827 argnum = 1;
10828 lastregno = 0xffffffff;
10829 for (args = insn->args;; ++args)
10830 {
10831 int is_mdmx;
10832
10833 s += strspn (s, " \t");
10834 is_mdmx = 0;
10835 switch (*args)
10836 {
10837 case '\0': /* end of args */
10838 if (*s == '\0')
10839 return;
10840 break;
10841
10842 case '2':
10843 /* DSP 2-bit unsigned immediate in bit 11 (for standard MIPS
10844 code) or 14 (for microMIPS code). */
10845 my_getExpression (&imm_expr, s);
10846 check_absolute_expr (ip, &imm_expr);
10847 if ((unsigned long) imm_expr.X_add_number != 1
10848 && (unsigned long) imm_expr.X_add_number != 3)
10849 {
10850 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
10851 (unsigned long) imm_expr.X_add_number);
10852 }
10853 INSERT_OPERAND (mips_opts.micromips,
10854 BP, *ip, imm_expr.X_add_number);
10855 imm_expr.X_op = O_absent;
10856 s = expr_end;
10857 continue;
10858
10859 case '3':
10860 /* DSP 3-bit unsigned immediate in bit 13 (for standard MIPS
10861 code) or 21 (for microMIPS code). */
10862 {
10863 unsigned long mask = (mips_opts.micromips
10864 ? MICROMIPSOP_MASK_SA3 : OP_MASK_SA3);
10865
10866 my_getExpression (&imm_expr, s);
10867 check_absolute_expr (ip, &imm_expr);
10868 if ((unsigned long) imm_expr.X_add_number > mask)
10869 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
10870 mask, (unsigned long) imm_expr.X_add_number);
10871 INSERT_OPERAND (mips_opts.micromips,
10872 SA3, *ip, imm_expr.X_add_number);
10873 imm_expr.X_op = O_absent;
10874 s = expr_end;
10875 }
10876 continue;
10877
10878 case '4':
10879 /* DSP 4-bit unsigned immediate in bit 12 (for standard MIPS
10880 code) or 21 (for microMIPS code). */
10881 {
10882 unsigned long mask = (mips_opts.micromips
10883 ? MICROMIPSOP_MASK_SA4 : OP_MASK_SA4);
10884
10885 my_getExpression (&imm_expr, s);
10886 check_absolute_expr (ip, &imm_expr);
10887 if ((unsigned long) imm_expr.X_add_number > mask)
10888 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
10889 mask, (unsigned long) imm_expr.X_add_number);
10890 INSERT_OPERAND (mips_opts.micromips,
10891 SA4, *ip, imm_expr.X_add_number);
10892 imm_expr.X_op = O_absent;
10893 s = expr_end;
10894 }
10895 continue;
10896
10897 case '5':
10898 /* DSP 8-bit unsigned immediate in bit 13 (for standard MIPS
10899 code) or 16 (for microMIPS code). */
10900 {
10901 unsigned long mask = (mips_opts.micromips
10902 ? MICROMIPSOP_MASK_IMM8 : OP_MASK_IMM8);
10903
10904 my_getExpression (&imm_expr, s);
10905 check_absolute_expr (ip, &imm_expr);
10906 if ((unsigned long) imm_expr.X_add_number > mask)
10907 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
10908 mask, (unsigned long) imm_expr.X_add_number);
10909 INSERT_OPERAND (mips_opts.micromips,
10910 IMM8, *ip, imm_expr.X_add_number);
10911 imm_expr.X_op = O_absent;
10912 s = expr_end;
10913 }
10914 continue;
10915
10916 case '6':
10917 /* DSP 5-bit unsigned immediate in bit 16 (for standard MIPS
10918 code) or 21 (for microMIPS code). */
10919 {
10920 unsigned long mask = (mips_opts.micromips
10921 ? MICROMIPSOP_MASK_RS : OP_MASK_RS);
10922
10923 my_getExpression (&imm_expr, s);
10924 check_absolute_expr (ip, &imm_expr);
10925 if ((unsigned long) imm_expr.X_add_number > mask)
10926 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
10927 mask, (unsigned long) imm_expr.X_add_number);
10928 INSERT_OPERAND (mips_opts.micromips,
10929 RS, *ip, imm_expr.X_add_number);
10930 imm_expr.X_op = O_absent;
10931 s = expr_end;
10932 }
10933 continue;
10934
10935 case '7': /* Four DSP accumulators in bits 11,12. */
10936 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c'
10937 && s[3] >= '0' && s[3] <= '3')
10938 {
10939 regno = s[3] - '0';
10940 s += 4;
10941 INSERT_OPERAND (mips_opts.micromips, DSPACC, *ip, regno);
10942 continue;
10943 }
10944 else
10945 as_bad (_("Invalid dsp acc register"));
10946 break;
10947
10948 case '8':
10949 /* DSP 6-bit unsigned immediate in bit 11 (for standard MIPS
10950 code) or 14 (for microMIPS code). */
10951 {
10952 unsigned long mask = (mips_opts.micromips
10953 ? MICROMIPSOP_MASK_WRDSP
10954 : OP_MASK_WRDSP);
10955
10956 my_getExpression (&imm_expr, s);
10957 check_absolute_expr (ip, &imm_expr);
10958 if ((unsigned long) imm_expr.X_add_number > mask)
10959 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
10960 mask, (unsigned long) imm_expr.X_add_number);
10961 INSERT_OPERAND (mips_opts.micromips,
10962 WRDSP, *ip, imm_expr.X_add_number);
10963 imm_expr.X_op = O_absent;
10964 s = expr_end;
10965 }
10966 continue;
10967
10968 case '9': /* Four DSP accumulators in bits 21,22. */
10969 gas_assert (!mips_opts.micromips);
10970 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c'
10971 && s[3] >= '0' && s[3] <= '3')
10972 {
10973 regno = s[3] - '0';
10974 s += 4;
10975 INSERT_OPERAND (0, DSPACC_S, *ip, regno);
10976 continue;
10977 }
10978 else
10979 as_bad (_("Invalid dsp acc register"));
10980 break;
10981
10982 case '0':
10983 /* DSP 6-bit signed immediate in bit 16 (for standard MIPS
10984 code) or 20 (for microMIPS code). */
10985 {
10986 long mask = (mips_opts.micromips
10987 ? MICROMIPSOP_MASK_DSPSFT : OP_MASK_DSPSFT);
10988
10989 my_getExpression (&imm_expr, s);
10990 check_absolute_expr (ip, &imm_expr);
10991 min_range = -((mask + 1) >> 1);
10992 max_range = ((mask + 1) >> 1) - 1;
10993 if (imm_expr.X_add_number < min_range
10994 || imm_expr.X_add_number > max_range)
10995 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
10996 (long) min_range, (long) max_range,
10997 (long) imm_expr.X_add_number);
10998 INSERT_OPERAND (mips_opts.micromips,
10999 DSPSFT, *ip, imm_expr.X_add_number);
11000 imm_expr.X_op = O_absent;
11001 s = expr_end;
11002 }
11003 continue;
11004
11005 case '\'': /* DSP 6-bit unsigned immediate in bit 16. */
11006 gas_assert (!mips_opts.micromips);
11007 my_getExpression (&imm_expr, s);
11008 check_absolute_expr (ip, &imm_expr);
11009 if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
11010 {
11011 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
11012 OP_MASK_RDDSP,
11013 (unsigned long) imm_expr.X_add_number);
11014 }
11015 INSERT_OPERAND (0, RDDSP, *ip, imm_expr.X_add_number);
11016 imm_expr.X_op = O_absent;
11017 s = expr_end;
11018 continue;
11019
11020 case ':': /* DSP 7-bit signed immediate in bit 19. */
11021 gas_assert (!mips_opts.micromips);
11022 my_getExpression (&imm_expr, s);
11023 check_absolute_expr (ip, &imm_expr);
11024 min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
11025 max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
11026 if (imm_expr.X_add_number < min_range ||
11027 imm_expr.X_add_number > max_range)
11028 {
11029 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11030 (long) min_range, (long) max_range,
11031 (long) imm_expr.X_add_number);
11032 }
11033 INSERT_OPERAND (0, DSPSFT_7, *ip, imm_expr.X_add_number);
11034 imm_expr.X_op = O_absent;
11035 s = expr_end;
11036 continue;
11037
11038 case '@': /* DSP 10-bit signed immediate in bit 16. */
11039 {
11040 long mask = (mips_opts.micromips
11041 ? MICROMIPSOP_MASK_IMM10 : OP_MASK_IMM10);
11042
11043 my_getExpression (&imm_expr, s);
11044 check_absolute_expr (ip, &imm_expr);
11045 min_range = -((mask + 1) >> 1);
11046 max_range = ((mask + 1) >> 1) - 1;
11047 if (imm_expr.X_add_number < min_range
11048 || imm_expr.X_add_number > max_range)
11049 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11050 (long) min_range, (long) max_range,
11051 (long) imm_expr.X_add_number);
11052 INSERT_OPERAND (mips_opts.micromips,
11053 IMM10, *ip, imm_expr.X_add_number);
11054 imm_expr.X_op = O_absent;
11055 s = expr_end;
11056 }
11057 continue;
11058
11059 case '^': /* DSP 5-bit unsigned immediate in bit 11. */
11060 gas_assert (mips_opts.micromips);
11061 my_getExpression (&imm_expr, s);
11062 check_absolute_expr (ip, &imm_expr);
11063 if (imm_expr.X_add_number & ~MICROMIPSOP_MASK_RD)
11064 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
11065 MICROMIPSOP_MASK_RD,
11066 (unsigned long) imm_expr.X_add_number);
11067 INSERT_OPERAND (1, RD, *ip, imm_expr.X_add_number);
11068 imm_expr.X_op = O_absent;
11069 s = expr_end;
11070 continue;
11071
11072 case '!': /* MT usermode flag bit. */
11073 gas_assert (!mips_opts.micromips);
11074 my_getExpression (&imm_expr, s);
11075 check_absolute_expr (ip, &imm_expr);
11076 if (imm_expr.X_add_number & ~OP_MASK_MT_U)
11077 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
11078 (unsigned long) imm_expr.X_add_number);
11079 INSERT_OPERAND (0, MT_U, *ip, imm_expr.X_add_number);
11080 imm_expr.X_op = O_absent;
11081 s = expr_end;
11082 continue;
11083
11084 case '$': /* MT load high flag bit. */
11085 gas_assert (!mips_opts.micromips);
11086 my_getExpression (&imm_expr, s);
11087 check_absolute_expr (ip, &imm_expr);
11088 if (imm_expr.X_add_number & ~OP_MASK_MT_H)
11089 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
11090 (unsigned long) imm_expr.X_add_number);
11091 INSERT_OPERAND (0, MT_H, *ip, imm_expr.X_add_number);
11092 imm_expr.X_op = O_absent;
11093 s = expr_end;
11094 continue;
11095
11096 case '*': /* Four DSP accumulators in bits 18,19. */
11097 gas_assert (!mips_opts.micromips);
11098 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
11099 s[3] >= '0' && s[3] <= '3')
11100 {
11101 regno = s[3] - '0';
11102 s += 4;
11103 INSERT_OPERAND (0, MTACC_T, *ip, regno);
11104 continue;
11105 }
11106 else
11107 as_bad (_("Invalid dsp/smartmips acc register"));
11108 break;
11109
11110 case '&': /* Four DSP accumulators in bits 13,14. */
11111 gas_assert (!mips_opts.micromips);
11112 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
11113 s[3] >= '0' && s[3] <= '3')
11114 {
11115 regno = s[3] - '0';
11116 s += 4;
11117 INSERT_OPERAND (0, MTACC_D, *ip, regno);
11118 continue;
11119 }
11120 else
11121 as_bad (_("Invalid dsp/smartmips acc register"));
11122 break;
11123
11124 case '\\': /* 3-bit bit position. */
11125 {
11126 unsigned long mask = (mips_opts.micromips
11127 ? MICROMIPSOP_MASK_3BITPOS
11128 : OP_MASK_3BITPOS);
11129
11130 my_getExpression (&imm_expr, s);
11131 check_absolute_expr (ip, &imm_expr);
11132 if ((unsigned long) imm_expr.X_add_number > mask)
11133 as_warn (_("Bit position for %s not in range 0..%lu (%lu)"),
11134 ip->insn_mo->name,
11135 mask, (unsigned long) imm_expr.X_add_number);
11136 INSERT_OPERAND (mips_opts.micromips,
11137 3BITPOS, *ip, imm_expr.X_add_number);
11138 imm_expr.X_op = O_absent;
11139 s = expr_end;
11140 }
11141 continue;
11142
11143 case ',':
11144 ++argnum;
11145 if (*s++ == *args)
11146 continue;
11147 s--;
11148 switch (*++args)
11149 {
11150 case 'r':
11151 case 'v':
11152 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
11153 continue;
11154
11155 case 'w':
11156 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
11157 continue;
11158
11159 case 'W':
11160 gas_assert (!mips_opts.micromips);
11161 INSERT_OPERAND (0, FT, *ip, lastregno);
11162 continue;
11163
11164 case 'V':
11165 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
11166 continue;
11167 }
11168 break;
11169
11170 case '(':
11171 /* Handle optional base register.
11172 Either the base register is omitted or
11173 we must have a left paren. */
11174 /* This is dependent on the next operand specifier
11175 is a base register specification. */
11176 gas_assert (args[1] == 'b'
11177 || (mips_opts.micromips
11178 && args[1] == 'm'
11179 && (args[2] == 'l' || args[2] == 'n'
11180 || args[2] == 's' || args[2] == 'a')));
11181 if (*s == '\0' && args[1] == 'b')
11182 return;
11183 /* Fall through. */
11184
11185 case ')': /* These must match exactly. */
11186 if (*s++ == *args)
11187 continue;
11188 break;
11189
11190 case '[': /* These must match exactly. */
11191 case ']':
11192 gas_assert (!mips_opts.micromips);
11193 if (*s++ == *args)
11194 continue;
11195 break;
11196
11197 case '+': /* Opcode extension character. */
11198 switch (*++args)
11199 {
11200 case '1': /* UDI immediates. */
11201 case '2':
11202 case '3':
11203 case '4':
11204 gas_assert (!mips_opts.micromips);
11205 {
11206 const struct mips_immed *imm = mips_immed;
11207
11208 while (imm->type && imm->type != *args)
11209 ++imm;
11210 if (! imm->type)
11211 internalError ();
11212 my_getExpression (&imm_expr, s);
11213 check_absolute_expr (ip, &imm_expr);
11214 if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
11215 {
11216 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
11217 imm->desc ? imm->desc : ip->insn_mo->name,
11218 (unsigned long) imm_expr.X_add_number,
11219 (unsigned long) imm_expr.X_add_number);
11220 imm_expr.X_add_number &= imm->mask;
11221 }
11222 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
11223 << imm->shift);
11224 imm_expr.X_op = O_absent;
11225 s = expr_end;
11226 }
11227 continue;
11228
11229 case 'A': /* ins/ext position, becomes LSB. */
11230 limlo = 0;
11231 limhi = 31;
11232 goto do_lsb;
11233 case 'E':
11234 limlo = 32;
11235 limhi = 63;
11236 goto do_lsb;
11237 do_lsb:
11238 my_getExpression (&imm_expr, s);
11239 check_absolute_expr (ip, &imm_expr);
11240 if ((unsigned long) imm_expr.X_add_number < limlo
11241 || (unsigned long) imm_expr.X_add_number > limhi)
11242 {
11243 as_bad (_("Improper position (%lu)"),
11244 (unsigned long) imm_expr.X_add_number);
11245 imm_expr.X_add_number = limlo;
11246 }
11247 lastpos = imm_expr.X_add_number;
11248 INSERT_OPERAND (mips_opts.micromips,
11249 EXTLSB, *ip, imm_expr.X_add_number);
11250 imm_expr.X_op = O_absent;
11251 s = expr_end;
11252 continue;
11253
11254 case 'B': /* ins size, becomes MSB. */
11255 limlo = 1;
11256 limhi = 32;
11257 goto do_msb;
11258 case 'F':
11259 limlo = 33;
11260 limhi = 64;
11261 goto do_msb;
11262 do_msb:
11263 my_getExpression (&imm_expr, s);
11264 check_absolute_expr (ip, &imm_expr);
11265 /* Check for negative input so that small negative numbers
11266 will not succeed incorrectly. The checks against
11267 (pos+size) transitively check "size" itself,
11268 assuming that "pos" is reasonable. */
11269 if ((long) imm_expr.X_add_number < 0
11270 || ((unsigned long) imm_expr.X_add_number
11271 + lastpos) < limlo
11272 || ((unsigned long) imm_expr.X_add_number
11273 + lastpos) > limhi)
11274 {
11275 as_bad (_("Improper insert size (%lu, position %lu)"),
11276 (unsigned long) imm_expr.X_add_number,
11277 (unsigned long) lastpos);
11278 imm_expr.X_add_number = limlo - lastpos;
11279 }
11280 INSERT_OPERAND (mips_opts.micromips, INSMSB, *ip,
11281 lastpos + imm_expr.X_add_number - 1);
11282 imm_expr.X_op = O_absent;
11283 s = expr_end;
11284 continue;
11285
11286 case 'C': /* ext size, becomes MSBD. */
11287 limlo = 1;
11288 limhi = 32;
11289 goto do_msbd;
11290 case 'G':
11291 limlo = 33;
11292 limhi = 64;
11293 goto do_msbd;
11294 case 'H':
11295 limlo = 33;
11296 limhi = 64;
11297 goto do_msbd;
11298 do_msbd:
11299 my_getExpression (&imm_expr, s);
11300 check_absolute_expr (ip, &imm_expr);
11301 /* Check for negative input so that small negative numbers
11302 will not succeed incorrectly. The checks against
11303 (pos+size) transitively check "size" itself,
11304 assuming that "pos" is reasonable. */
11305 if ((long) imm_expr.X_add_number < 0
11306 || ((unsigned long) imm_expr.X_add_number
11307 + lastpos) < limlo
11308 || ((unsigned long) imm_expr.X_add_number
11309 + lastpos) > limhi)
11310 {
11311 as_bad (_("Improper extract size (%lu, position %lu)"),
11312 (unsigned long) imm_expr.X_add_number,
11313 (unsigned long) lastpos);
11314 imm_expr.X_add_number = limlo - lastpos;
11315 }
11316 INSERT_OPERAND (mips_opts.micromips,
11317 EXTMSBD, *ip, imm_expr.X_add_number - 1);
11318 imm_expr.X_op = O_absent;
11319 s = expr_end;
11320 continue;
11321
11322 case 'D':
11323 /* +D is for disassembly only; never match. */
11324 break;
11325
11326 case 'I':
11327 /* "+I" is like "I", except that imm2_expr is used. */
11328 my_getExpression (&imm2_expr, s);
11329 if (imm2_expr.X_op != O_big
11330 && imm2_expr.X_op != O_constant)
11331 insn_error = _("absolute expression required");
11332 if (HAVE_32BIT_GPRS)
11333 normalize_constant_expr (&imm2_expr);
11334 s = expr_end;
11335 continue;
11336
11337 case 'T': /* Coprocessor register. */
11338 gas_assert (!mips_opts.micromips);
11339 /* +T is for disassembly only; never match. */
11340 break;
11341
11342 case 't': /* Coprocessor register number. */
11343 gas_assert (!mips_opts.micromips);
11344 if (s[0] == '$' && ISDIGIT (s[1]))
11345 {
11346 ++s;
11347 regno = 0;
11348 do
11349 {
11350 regno *= 10;
11351 regno += *s - '0';
11352 ++s;
11353 }
11354 while (ISDIGIT (*s));
11355 if (regno > 31)
11356 as_bad (_("Invalid register number (%d)"), regno);
11357 else
11358 {
11359 INSERT_OPERAND (0, RT, *ip, regno);
11360 continue;
11361 }
11362 }
11363 else
11364 as_bad (_("Invalid coprocessor 0 register number"));
11365 break;
11366
11367 case 'x':
11368 /* bbit[01] and bbit[01]32 bit index. Give error if index
11369 is not in the valid range. */
11370 gas_assert (!mips_opts.micromips);
11371 my_getExpression (&imm_expr, s);
11372 check_absolute_expr (ip, &imm_expr);
11373 if ((unsigned) imm_expr.X_add_number > 31)
11374 {
11375 as_bad (_("Improper bit index (%lu)"),
11376 (unsigned long) imm_expr.X_add_number);
11377 imm_expr.X_add_number = 0;
11378 }
11379 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number);
11380 imm_expr.X_op = O_absent;
11381 s = expr_end;
11382 continue;
11383
11384 case 'X':
11385 /* bbit[01] bit index when bbit is used but we generate
11386 bbit[01]32 because the index is over 32. Move to the
11387 next candidate if index is not in the valid range. */
11388 gas_assert (!mips_opts.micromips);
11389 my_getExpression (&imm_expr, s);
11390 check_absolute_expr (ip, &imm_expr);
11391 if ((unsigned) imm_expr.X_add_number < 32
11392 || (unsigned) imm_expr.X_add_number > 63)
11393 break;
11394 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number - 32);
11395 imm_expr.X_op = O_absent;
11396 s = expr_end;
11397 continue;
11398
11399 case 'p':
11400 /* cins, cins32, exts and exts32 position field. Give error
11401 if it's not in the valid range. */
11402 gas_assert (!mips_opts.micromips);
11403 my_getExpression (&imm_expr, s);
11404 check_absolute_expr (ip, &imm_expr);
11405 if ((unsigned) imm_expr.X_add_number > 31)
11406 {
11407 as_bad (_("Improper position (%lu)"),
11408 (unsigned long) imm_expr.X_add_number);
11409 imm_expr.X_add_number = 0;
11410 }
11411 /* Make the pos explicit to simplify +S. */
11412 lastpos = imm_expr.X_add_number + 32;
11413 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number);
11414 imm_expr.X_op = O_absent;
11415 s = expr_end;
11416 continue;
11417
11418 case 'P':
11419 /* cins, cins32, exts and exts32 position field. Move to
11420 the next candidate if it's not in the valid range. */
11421 gas_assert (!mips_opts.micromips);
11422 my_getExpression (&imm_expr, s);
11423 check_absolute_expr (ip, &imm_expr);
11424 if ((unsigned) imm_expr.X_add_number < 32
11425 || (unsigned) imm_expr.X_add_number > 63)
11426 break;
11427 lastpos = imm_expr.X_add_number;
11428 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number - 32);
11429 imm_expr.X_op = O_absent;
11430 s = expr_end;
11431 continue;
11432
11433 case 's':
11434 /* cins and exts length-minus-one field. */
11435 gas_assert (!mips_opts.micromips);
11436 my_getExpression (&imm_expr, s);
11437 check_absolute_expr (ip, &imm_expr);
11438 if ((unsigned long) imm_expr.X_add_number > 31)
11439 {
11440 as_bad (_("Improper size (%lu)"),
11441 (unsigned long) imm_expr.X_add_number);
11442 imm_expr.X_add_number = 0;
11443 }
11444 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
11445 imm_expr.X_op = O_absent;
11446 s = expr_end;
11447 continue;
11448
11449 case 'S':
11450 /* cins32/exts32 and cins/exts aliasing cint32/exts32
11451 length-minus-one field. */
11452 gas_assert (!mips_opts.micromips);
11453 my_getExpression (&imm_expr, s);
11454 check_absolute_expr (ip, &imm_expr);
11455 if ((long) imm_expr.X_add_number < 0
11456 || (unsigned long) imm_expr.X_add_number + lastpos > 63)
11457 {
11458 as_bad (_("Improper size (%lu)"),
11459 (unsigned long) imm_expr.X_add_number);
11460 imm_expr.X_add_number = 0;
11461 }
11462 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
11463 imm_expr.X_op = O_absent;
11464 s = expr_end;
11465 continue;
11466
11467 case 'Q':
11468 /* seqi/snei immediate field. */
11469 gas_assert (!mips_opts.micromips);
11470 my_getExpression (&imm_expr, s);
11471 check_absolute_expr (ip, &imm_expr);
11472 if ((long) imm_expr.X_add_number < -512
11473 || (long) imm_expr.X_add_number >= 512)
11474 {
11475 as_bad (_("Improper immediate (%ld)"),
11476 (long) imm_expr.X_add_number);
11477 imm_expr.X_add_number = 0;
11478 }
11479 INSERT_OPERAND (0, SEQI, *ip, imm_expr.X_add_number);
11480 imm_expr.X_op = O_absent;
11481 s = expr_end;
11482 continue;
11483
11484 case 'a': /* 8-bit signed offset in bit 6 */
11485 gas_assert (!mips_opts.micromips);
11486 my_getExpression (&imm_expr, s);
11487 check_absolute_expr (ip, &imm_expr);
11488 min_range = -((OP_MASK_OFFSET_A + 1) >> 1);
11489 max_range = ((OP_MASK_OFFSET_A + 1) >> 1) - 1;
11490 if (imm_expr.X_add_number < min_range
11491 || imm_expr.X_add_number > max_range)
11492 {
11493 as_bad (_("Offset not in range %ld..%ld (%ld)"),
11494 (long) min_range, (long) max_range,
11495 (long) imm_expr.X_add_number);
11496 }
11497 INSERT_OPERAND (0, OFFSET_A, *ip, imm_expr.X_add_number);
11498 imm_expr.X_op = O_absent;
11499 s = expr_end;
11500 continue;
11501
11502 case 'b': /* 8-bit signed offset in bit 3 */
11503 gas_assert (!mips_opts.micromips);
11504 my_getExpression (&imm_expr, s);
11505 check_absolute_expr (ip, &imm_expr);
11506 min_range = -((OP_MASK_OFFSET_B + 1) >> 1);
11507 max_range = ((OP_MASK_OFFSET_B + 1) >> 1) - 1;
11508 if (imm_expr.X_add_number < min_range
11509 || imm_expr.X_add_number > max_range)
11510 {
11511 as_bad (_("Offset not in range %ld..%ld (%ld)"),
11512 (long) min_range, (long) max_range,
11513 (long) imm_expr.X_add_number);
11514 }
11515 INSERT_OPERAND (0, OFFSET_B, *ip, imm_expr.X_add_number);
11516 imm_expr.X_op = O_absent;
11517 s = expr_end;
11518 continue;
11519
11520 case 'c': /* 9-bit signed offset in bit 6 */
11521 gas_assert (!mips_opts.micromips);
11522 my_getExpression (&imm_expr, s);
11523 check_absolute_expr (ip, &imm_expr);
11524 min_range = -((OP_MASK_OFFSET_C + 1) >> 1);
11525 max_range = ((OP_MASK_OFFSET_C + 1) >> 1) - 1;
11526 /* We check the offset range before adjusted. */
11527 min_range <<= 4;
11528 max_range <<= 4;
11529 if (imm_expr.X_add_number < min_range
11530 || imm_expr.X_add_number > max_range)
11531 {
11532 as_bad (_("Offset not in range %ld..%ld (%ld)"),
11533 (long) min_range, (long) max_range,
11534 (long) imm_expr.X_add_number);
11535 }
11536 if (imm_expr.X_add_number & 0xf)
11537 {
11538 as_bad (_("Offset not 16 bytes alignment (%ld)"),
11539 (long) imm_expr.X_add_number);
11540 }
11541 /* Right shift 4 bits to adjust the offset operand. */
11542 INSERT_OPERAND (0, OFFSET_C, *ip,
11543 imm_expr.X_add_number >> 4);
11544 imm_expr.X_op = O_absent;
11545 s = expr_end;
11546 continue;
11547
11548 case 'z':
11549 gas_assert (!mips_opts.micromips);
11550 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
11551 break;
11552 if (regno == AT && mips_opts.at)
11553 {
11554 if (mips_opts.at == ATREG)
11555 as_warn (_("used $at without \".set noat\""));
11556 else
11557 as_warn (_("used $%u with \".set at=$%u\""),
11558 regno, mips_opts.at);
11559 }
11560 INSERT_OPERAND (0, RZ, *ip, regno);
11561 continue;
11562
11563 case 'Z':
11564 gas_assert (!mips_opts.micromips);
11565 if (!reg_lookup (&s, RTYPE_FPU, &regno))
11566 break;
11567 INSERT_OPERAND (0, FZ, *ip, regno);
11568 continue;
11569
11570 default:
11571 as_bad (_("Internal error: bad %s opcode "
11572 "(unknown extension operand type `+%c'): %s %s"),
11573 mips_opts.micromips ? "microMIPS" : "MIPS",
11574 *args, insn->name, insn->args);
11575 /* Further processing is fruitless. */
11576 return;
11577 }
11578 break;
11579
11580 case '.': /* 10-bit offset. */
11581 gas_assert (mips_opts.micromips);
11582 case '~': /* 12-bit offset. */
11583 {
11584 int shift = *args == '.' ? 9 : 11;
11585 size_t i;
11586
11587 /* Check whether there is only a single bracketed expression
11588 left. If so, it must be the base register and the
11589 constant must be zero. */
11590 if (*s == '(' && strchr (s + 1, '(') == 0)
11591 continue;
11592
11593 /* If this value won't fit into the offset, then go find
11594 a macro that will generate a 16- or 32-bit offset code
11595 pattern. */
11596 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
11597 if ((i == 0 && (imm_expr.X_op != O_constant
11598 || imm_expr.X_add_number >= 1 << shift
11599 || imm_expr.X_add_number < -1 << shift))
11600 || i > 0)
11601 {
11602 imm_expr.X_op = O_absent;
11603 break;
11604 }
11605 if (shift == 9)
11606 INSERT_OPERAND (1, OFFSET10, *ip, imm_expr.X_add_number);
11607 else
11608 INSERT_OPERAND (mips_opts.micromips,
11609 OFFSET12, *ip, imm_expr.X_add_number);
11610 imm_expr.X_op = O_absent;
11611 s = expr_end;
11612 }
11613 continue;
11614
11615 case '<': /* must be at least one digit */
11616 /*
11617 * According to the manual, if the shift amount is greater
11618 * than 31 or less than 0, then the shift amount should be
11619 * mod 32. In reality the mips assembler issues an error.
11620 * We issue a warning and mask out all but the low 5 bits.
11621 */
11622 my_getExpression (&imm_expr, s);
11623 check_absolute_expr (ip, &imm_expr);
11624 if ((unsigned long) imm_expr.X_add_number > 31)
11625 as_warn (_("Improper shift amount (%lu)"),
11626 (unsigned long) imm_expr.X_add_number);
11627 INSERT_OPERAND (mips_opts.micromips,
11628 SHAMT, *ip, imm_expr.X_add_number);
11629 imm_expr.X_op = O_absent;
11630 s = expr_end;
11631 continue;
11632
11633 case '>': /* shift amount minus 32 */
11634 my_getExpression (&imm_expr, s);
11635 check_absolute_expr (ip, &imm_expr);
11636 if ((unsigned long) imm_expr.X_add_number < 32
11637 || (unsigned long) imm_expr.X_add_number > 63)
11638 break;
11639 INSERT_OPERAND (mips_opts.micromips,
11640 SHAMT, *ip, imm_expr.X_add_number - 32);
11641 imm_expr.X_op = O_absent;
11642 s = expr_end;
11643 continue;
11644
11645 case 'k': /* CACHE code. */
11646 case 'h': /* PREFX code. */
11647 case '1': /* SYNC type. */
11648 my_getExpression (&imm_expr, s);
11649 check_absolute_expr (ip, &imm_expr);
11650 if ((unsigned long) imm_expr.X_add_number > 31)
11651 as_warn (_("Invalid value for `%s' (%lu)"),
11652 ip->insn_mo->name,
11653 (unsigned long) imm_expr.X_add_number);
11654 switch (*args)
11655 {
11656 case 'k':
11657 if (mips_fix_cn63xxp1
11658 && !mips_opts.micromips
11659 && strcmp ("pref", insn->name) == 0)
11660 switch (imm_expr.X_add_number)
11661 {
11662 case 5:
11663 case 25:
11664 case 26:
11665 case 27:
11666 case 28:
11667 case 29:
11668 case 30:
11669 case 31: /* These are ok. */
11670 break;
11671
11672 default: /* The rest must be changed to 28. */
11673 imm_expr.X_add_number = 28;
11674 break;
11675 }
11676 INSERT_OPERAND (mips_opts.micromips,
11677 CACHE, *ip, imm_expr.X_add_number);
11678 break;
11679 case 'h':
11680 INSERT_OPERAND (mips_opts.micromips,
11681 PREFX, *ip, imm_expr.X_add_number);
11682 break;
11683 case '1':
11684 INSERT_OPERAND (mips_opts.micromips,
11685 STYPE, *ip, imm_expr.X_add_number);
11686 break;
11687 }
11688 imm_expr.X_op = O_absent;
11689 s = expr_end;
11690 continue;
11691
11692 case 'c': /* BREAK code. */
11693 {
11694 unsigned long mask = (mips_opts.micromips
11695 ? MICROMIPSOP_MASK_CODE
11696 : OP_MASK_CODE);
11697
11698 my_getExpression (&imm_expr, s);
11699 check_absolute_expr (ip, &imm_expr);
11700 if ((unsigned long) imm_expr.X_add_number > mask)
11701 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
11702 ip->insn_mo->name,
11703 mask, (unsigned long) imm_expr.X_add_number);
11704 INSERT_OPERAND (mips_opts.micromips,
11705 CODE, *ip, imm_expr.X_add_number);
11706 imm_expr.X_op = O_absent;
11707 s = expr_end;
11708 }
11709 continue;
11710
11711 case 'q': /* Lower BREAK code. */
11712 {
11713 unsigned long mask = (mips_opts.micromips
11714 ? MICROMIPSOP_MASK_CODE2
11715 : OP_MASK_CODE2);
11716
11717 my_getExpression (&imm_expr, s);
11718 check_absolute_expr (ip, &imm_expr);
11719 if ((unsigned long) imm_expr.X_add_number > mask)
11720 as_warn (_("Lower code for %s not in range 0..%lu (%lu)"),
11721 ip->insn_mo->name,
11722 mask, (unsigned long) imm_expr.X_add_number);
11723 INSERT_OPERAND (mips_opts.micromips,
11724 CODE2, *ip, imm_expr.X_add_number);
11725 imm_expr.X_op = O_absent;
11726 s = expr_end;
11727 }
11728 continue;
11729
11730 case 'B': /* 20- or 10-bit syscall/break/wait code. */
11731 {
11732 unsigned long mask = (mips_opts.micromips
11733 ? MICROMIPSOP_MASK_CODE10
11734 : OP_MASK_CODE20);
11735
11736 my_getExpression (&imm_expr, s);
11737 check_absolute_expr (ip, &imm_expr);
11738 if ((unsigned long) imm_expr.X_add_number > mask)
11739 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
11740 ip->insn_mo->name,
11741 mask, (unsigned long) imm_expr.X_add_number);
11742 if (mips_opts.micromips)
11743 INSERT_OPERAND (1, CODE10, *ip, imm_expr.X_add_number);
11744 else
11745 INSERT_OPERAND (0, CODE20, *ip, imm_expr.X_add_number);
11746 imm_expr.X_op = O_absent;
11747 s = expr_end;
11748 }
11749 continue;
11750
11751 case 'C': /* 25- or 23-bit coprocessor code. */
11752 {
11753 unsigned long mask = (mips_opts.micromips
11754 ? MICROMIPSOP_MASK_COPZ
11755 : OP_MASK_COPZ);
11756
11757 my_getExpression (&imm_expr, s);
11758 check_absolute_expr (ip, &imm_expr);
11759 if ((unsigned long) imm_expr.X_add_number > mask)
11760 as_warn (_("Coproccesor code > %u bits (%lu)"),
11761 mips_opts.micromips ? 23U : 25U,
11762 (unsigned long) imm_expr.X_add_number);
11763 INSERT_OPERAND (mips_opts.micromips,
11764 COPZ, *ip, imm_expr.X_add_number);
11765 imm_expr.X_op = O_absent;
11766 s = expr_end;
11767 }
11768 continue;
11769
11770 case 'J': /* 19-bit WAIT code. */
11771 gas_assert (!mips_opts.micromips);
11772 my_getExpression (&imm_expr, s);
11773 check_absolute_expr (ip, &imm_expr);
11774 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
11775 {
11776 as_warn (_("Illegal 19-bit code (%lu)"),
11777 (unsigned long) imm_expr.X_add_number);
11778 imm_expr.X_add_number &= OP_MASK_CODE19;
11779 }
11780 INSERT_OPERAND (0, CODE19, *ip, imm_expr.X_add_number);
11781 imm_expr.X_op = O_absent;
11782 s = expr_end;
11783 continue;
11784
11785 case 'P': /* Performance register. */
11786 gas_assert (!mips_opts.micromips);
11787 my_getExpression (&imm_expr, s);
11788 check_absolute_expr (ip, &imm_expr);
11789 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
11790 as_warn (_("Invalid performance register (%lu)"),
11791 (unsigned long) imm_expr.X_add_number);
11792 INSERT_OPERAND (0, PERFREG, *ip, imm_expr.X_add_number);
11793 imm_expr.X_op = O_absent;
11794 s = expr_end;
11795 continue;
11796
11797 case 'G': /* Coprocessor destination register. */
11798 {
11799 unsigned long opcode = ip->insn_opcode;
11800 unsigned long mask;
11801 unsigned int types;
11802 int cop0;
11803
11804 if (mips_opts.micromips)
11805 {
11806 mask = ~((MICROMIPSOP_MASK_RT << MICROMIPSOP_SH_RT)
11807 | (MICROMIPSOP_MASK_RS << MICROMIPSOP_SH_RS)
11808 | (MICROMIPSOP_MASK_SEL << MICROMIPSOP_SH_SEL));
11809 opcode &= mask;
11810 switch (opcode)
11811 {
11812 case 0x000000fc: /* mfc0 */
11813 case 0x000002fc: /* mtc0 */
11814 case 0x580000fc: /* dmfc0 */
11815 case 0x580002fc: /* dmtc0 */
11816 cop0 = 1;
11817 break;
11818 default:
11819 cop0 = 0;
11820 break;
11821 }
11822 }
11823 else
11824 {
11825 opcode = (opcode >> OP_SH_OP) & OP_MASK_OP;
11826 cop0 = opcode == OP_OP_COP0;
11827 }
11828 types = RTYPE_NUM | (cop0 ? RTYPE_CP0 : RTYPE_GP);
11829 ok = reg_lookup (&s, types, &regno);
11830 if (mips_opts.micromips)
11831 INSERT_OPERAND (1, RS, *ip, regno);
11832 else
11833 INSERT_OPERAND (0, RD, *ip, regno);
11834 if (ok)
11835 {
11836 lastregno = regno;
11837 continue;
11838 }
11839 }
11840 break;
11841
11842 case 'y': /* ALNV.PS source register. */
11843 gas_assert (mips_opts.micromips);
11844 goto do_reg;
11845 case 'x': /* Ignore register name. */
11846 case 'U': /* Destination register (CLO/CLZ). */
11847 case 'g': /* Coprocessor destination register. */
11848 gas_assert (!mips_opts.micromips);
11849 case 'b': /* Base register. */
11850 case 'd': /* Destination register. */
11851 case 's': /* Source register. */
11852 case 't': /* Target register. */
11853 case 'r': /* Both target and source. */
11854 case 'v': /* Both dest and source. */
11855 case 'w': /* Both dest and target. */
11856 case 'E': /* Coprocessor target register. */
11857 case 'K': /* RDHWR destination register. */
11858 case 'z': /* Must be zero register. */
11859 do_reg:
11860 s_reset = s;
11861 if (*args == 'E' || *args == 'K')
11862 ok = reg_lookup (&s, RTYPE_NUM, &regno);
11863 else
11864 {
11865 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
11866 if (regno == AT && mips_opts.at)
11867 {
11868 if (mips_opts.at == ATREG)
11869 as_warn (_("Used $at without \".set noat\""));
11870 else
11871 as_warn (_("Used $%u with \".set at=$%u\""),
11872 regno, mips_opts.at);
11873 }
11874 }
11875 if (ok)
11876 {
11877 c = *args;
11878 if (*s == ' ')
11879 ++s;
11880 if (args[1] != *s)
11881 {
11882 if (c == 'r' || c == 'v' || c == 'w')
11883 {
11884 regno = lastregno;
11885 s = s_reset;
11886 ++args;
11887 }
11888 }
11889 /* 'z' only matches $0. */
11890 if (c == 'z' && regno != 0)
11891 break;
11892
11893 if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
11894 {
11895 if (regno == lastregno)
11896 {
11897 insn_error
11898 = _("Source and destination must be different");
11899 continue;
11900 }
11901 if (regno == 31 && lastregno == 0xffffffff)
11902 {
11903 insn_error
11904 = _("A destination register must be supplied");
11905 continue;
11906 }
11907 }
11908 /* Now that we have assembled one operand, we use the args
11909 string to figure out where it goes in the instruction. */
11910 switch (c)
11911 {
11912 case 'r':
11913 case 's':
11914 case 'v':
11915 case 'b':
11916 INSERT_OPERAND (mips_opts.micromips, RS, *ip, regno);
11917 break;
11918
11919 case 'K':
11920 if (mips_opts.micromips)
11921 INSERT_OPERAND (1, RS, *ip, regno);
11922 else
11923 INSERT_OPERAND (0, RD, *ip, regno);
11924 break;
11925
11926 case 'd':
11927 case 'g':
11928 INSERT_OPERAND (mips_opts.micromips, RD, *ip, regno);
11929 break;
11930
11931 case 'U':
11932 gas_assert (!mips_opts.micromips);
11933 INSERT_OPERAND (0, RD, *ip, regno);
11934 INSERT_OPERAND (0, RT, *ip, regno);
11935 break;
11936
11937 case 'w':
11938 case 't':
11939 case 'E':
11940 INSERT_OPERAND (mips_opts.micromips, RT, *ip, regno);
11941 break;
11942
11943 case 'y':
11944 gas_assert (mips_opts.micromips);
11945 INSERT_OPERAND (1, RS3, *ip, regno);
11946 break;
11947
11948 case 'x':
11949 /* This case exists because on the r3000 trunc
11950 expands into a macro which requires a gp
11951 register. On the r6000 or r4000 it is
11952 assembled into a single instruction which
11953 ignores the register. Thus the insn version
11954 is MIPS_ISA2 and uses 'x', and the macro
11955 version is MIPS_ISA1 and uses 't'. */
11956 break;
11957
11958 case 'z':
11959 /* This case is for the div instruction, which
11960 acts differently if the destination argument
11961 is $0. This only matches $0, and is checked
11962 outside the switch. */
11963 break;
11964 }
11965 lastregno = regno;
11966 continue;
11967 }
11968 switch (*args++)
11969 {
11970 case 'r':
11971 case 'v':
11972 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
11973 continue;
11974
11975 case 'w':
11976 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
11977 continue;
11978 }
11979 break;
11980
11981 case 'O': /* MDMX alignment immediate constant. */
11982 gas_assert (!mips_opts.micromips);
11983 my_getExpression (&imm_expr, s);
11984 check_absolute_expr (ip, &imm_expr);
11985 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
11986 as_warn (_("Improper align amount (%ld), using low bits"),
11987 (long) imm_expr.X_add_number);
11988 INSERT_OPERAND (0, ALN, *ip, imm_expr.X_add_number);
11989 imm_expr.X_op = O_absent;
11990 s = expr_end;
11991 continue;
11992
11993 case 'Q': /* MDMX vector, element sel, or const. */
11994 if (s[0] != '$')
11995 {
11996 /* MDMX Immediate. */
11997 gas_assert (!mips_opts.micromips);
11998 my_getExpression (&imm_expr, s);
11999 check_absolute_expr (ip, &imm_expr);
12000 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
12001 as_warn (_("Invalid MDMX Immediate (%ld)"),
12002 (long) imm_expr.X_add_number);
12003 INSERT_OPERAND (0, FT, *ip, imm_expr.X_add_number);
12004 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
12005 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
12006 else
12007 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
12008 imm_expr.X_op = O_absent;
12009 s = expr_end;
12010 continue;
12011 }
12012 /* Not MDMX Immediate. Fall through. */
12013 case 'X': /* MDMX destination register. */
12014 case 'Y': /* MDMX source register. */
12015 case 'Z': /* MDMX target register. */
12016 is_mdmx = 1;
12017 case 'W':
12018 gas_assert (!mips_opts.micromips);
12019 case 'D': /* Floating point destination register. */
12020 case 'S': /* Floating point source register. */
12021 case 'T': /* Floating point target register. */
12022 case 'R': /* Floating point source register. */
12023 case 'V':
12024 rtype = RTYPE_FPU;
12025 if (is_mdmx
12026 || (mips_opts.ase_mdmx
12027 && (ip->insn_mo->pinfo & FP_D)
12028 && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
12029 | INSN_COPROC_MEMORY_DELAY
12030 | INSN_LOAD_COPROC_DELAY
12031 | INSN_LOAD_MEMORY_DELAY
12032 | INSN_STORE_MEMORY))))
12033 rtype |= RTYPE_VEC;
12034 s_reset = s;
12035 if (reg_lookup (&s, rtype, &regno))
12036 {
12037 if ((regno & 1) != 0
12038 && HAVE_32BIT_FPRS
12039 && !mips_oddfpreg_ok (ip->insn_mo, argnum))
12040 as_warn (_("Float register should be even, was %d"),
12041 regno);
12042
12043 c = *args;
12044 if (*s == ' ')
12045 ++s;
12046 if (args[1] != *s)
12047 {
12048 if (c == 'V' || c == 'W')
12049 {
12050 regno = lastregno;
12051 s = s_reset;
12052 ++args;
12053 }
12054 }
12055 switch (c)
12056 {
12057 case 'D':
12058 case 'X':
12059 INSERT_OPERAND (mips_opts.micromips, FD, *ip, regno);
12060 break;
12061
12062 case 'V':
12063 case 'S':
12064 case 'Y':
12065 INSERT_OPERAND (mips_opts.micromips, FS, *ip, regno);
12066 break;
12067
12068 case 'Q':
12069 /* This is like 'Z', but also needs to fix the MDMX
12070 vector/scalar select bits. Note that the
12071 scalar immediate case is handled above. */
12072 if (*s == '[')
12073 {
12074 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
12075 int max_el = (is_qh ? 3 : 7);
12076 s++;
12077 my_getExpression(&imm_expr, s);
12078 check_absolute_expr (ip, &imm_expr);
12079 s = expr_end;
12080 if (imm_expr.X_add_number > max_el)
12081 as_bad (_("Bad element selector %ld"),
12082 (long) imm_expr.X_add_number);
12083 imm_expr.X_add_number &= max_el;
12084 ip->insn_opcode |= (imm_expr.X_add_number
12085 << (OP_SH_VSEL +
12086 (is_qh ? 2 : 1)));
12087 imm_expr.X_op = O_absent;
12088 if (*s != ']')
12089 as_warn (_("Expecting ']' found '%s'"), s);
12090 else
12091 s++;
12092 }
12093 else
12094 {
12095 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
12096 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
12097 << OP_SH_VSEL);
12098 else
12099 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
12100 OP_SH_VSEL);
12101 }
12102 /* Fall through. */
12103 case 'W':
12104 case 'T':
12105 case 'Z':
12106 INSERT_OPERAND (mips_opts.micromips, FT, *ip, regno);
12107 break;
12108
12109 case 'R':
12110 INSERT_OPERAND (mips_opts.micromips, FR, *ip, regno);
12111 break;
12112 }
12113 lastregno = regno;
12114 continue;
12115 }
12116
12117 switch (*args++)
12118 {
12119 case 'V':
12120 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
12121 continue;
12122
12123 case 'W':
12124 INSERT_OPERAND (mips_opts.micromips, FT, *ip, lastregno);
12125 continue;
12126 }
12127 break;
12128
12129 case 'I':
12130 my_getExpression (&imm_expr, s);
12131 if (imm_expr.X_op != O_big
12132 && imm_expr.X_op != O_constant)
12133 insn_error = _("absolute expression required");
12134 if (HAVE_32BIT_GPRS)
12135 normalize_constant_expr (&imm_expr);
12136 s = expr_end;
12137 continue;
12138
12139 case 'A':
12140 my_getExpression (&offset_expr, s);
12141 normalize_address_expr (&offset_expr);
12142 *imm_reloc = BFD_RELOC_32;
12143 s = expr_end;
12144 continue;
12145
12146 case 'F':
12147 case 'L':
12148 case 'f':
12149 case 'l':
12150 {
12151 int f64;
12152 int using_gprs;
12153 char *save_in;
12154 char *err;
12155 unsigned char temp[8];
12156 int len;
12157 unsigned int length;
12158 segT seg;
12159 subsegT subseg;
12160 char *p;
12161
12162 /* These only appear as the last operand in an
12163 instruction, and every instruction that accepts
12164 them in any variant accepts them in all variants.
12165 This means we don't have to worry about backing out
12166 any changes if the instruction does not match.
12167
12168 The difference between them is the size of the
12169 floating point constant and where it goes. For 'F'
12170 and 'L' the constant is 64 bits; for 'f' and 'l' it
12171 is 32 bits. Where the constant is placed is based
12172 on how the MIPS assembler does things:
12173 F -- .rdata
12174 L -- .lit8
12175 f -- immediate value
12176 l -- .lit4
12177
12178 The .lit4 and .lit8 sections are only used if
12179 permitted by the -G argument.
12180
12181 The code below needs to know whether the target register
12182 is 32 or 64 bits wide. It relies on the fact 'f' and
12183 'F' are used with GPR-based instructions and 'l' and
12184 'L' are used with FPR-based instructions. */
12185
12186 f64 = *args == 'F' || *args == 'L';
12187 using_gprs = *args == 'F' || *args == 'f';
12188
12189 save_in = input_line_pointer;
12190 input_line_pointer = s;
12191 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
12192 length = len;
12193 s = input_line_pointer;
12194 input_line_pointer = save_in;
12195 if (err != NULL && *err != '\0')
12196 {
12197 as_bad (_("Bad floating point constant: %s"), err);
12198 memset (temp, '\0', sizeof temp);
12199 length = f64 ? 8 : 4;
12200 }
12201
12202 gas_assert (length == (unsigned) (f64 ? 8 : 4));
12203
12204 if (*args == 'f'
12205 || (*args == 'l'
12206 && (g_switch_value < 4
12207 || (temp[0] == 0 && temp[1] == 0)
12208 || (temp[2] == 0 && temp[3] == 0))))
12209 {
12210 imm_expr.X_op = O_constant;
12211 if (!target_big_endian)
12212 imm_expr.X_add_number = bfd_getl32 (temp);
12213 else
12214 imm_expr.X_add_number = bfd_getb32 (temp);
12215 }
12216 else if (length > 4
12217 && !mips_disable_float_construction
12218 /* Constants can only be constructed in GPRs and
12219 copied to FPRs if the GPRs are at least as wide
12220 as the FPRs. Force the constant into memory if
12221 we are using 64-bit FPRs but the GPRs are only
12222 32 bits wide. */
12223 && (using_gprs
12224 || !(HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
12225 && ((temp[0] == 0 && temp[1] == 0)
12226 || (temp[2] == 0 && temp[3] == 0))
12227 && ((temp[4] == 0 && temp[5] == 0)
12228 || (temp[6] == 0 && temp[7] == 0)))
12229 {
12230 /* The value is simple enough to load with a couple of
12231 instructions. If using 32-bit registers, set
12232 imm_expr to the high order 32 bits and offset_expr to
12233 the low order 32 bits. Otherwise, set imm_expr to
12234 the entire 64 bit constant. */
12235 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
12236 {
12237 imm_expr.X_op = O_constant;
12238 offset_expr.X_op = O_constant;
12239 if (!target_big_endian)
12240 {
12241 imm_expr.X_add_number = bfd_getl32 (temp + 4);
12242 offset_expr.X_add_number = bfd_getl32 (temp);
12243 }
12244 else
12245 {
12246 imm_expr.X_add_number = bfd_getb32 (temp);
12247 offset_expr.X_add_number = bfd_getb32 (temp + 4);
12248 }
12249 if (offset_expr.X_add_number == 0)
12250 offset_expr.X_op = O_absent;
12251 }
12252 else if (sizeof (imm_expr.X_add_number) > 4)
12253 {
12254 imm_expr.X_op = O_constant;
12255 if (!target_big_endian)
12256 imm_expr.X_add_number = bfd_getl64 (temp);
12257 else
12258 imm_expr.X_add_number = bfd_getb64 (temp);
12259 }
12260 else
12261 {
12262 imm_expr.X_op = O_big;
12263 imm_expr.X_add_number = 4;
12264 if (!target_big_endian)
12265 {
12266 generic_bignum[0] = bfd_getl16 (temp);
12267 generic_bignum[1] = bfd_getl16 (temp + 2);
12268 generic_bignum[2] = bfd_getl16 (temp + 4);
12269 generic_bignum[3] = bfd_getl16 (temp + 6);
12270 }
12271 else
12272 {
12273 generic_bignum[0] = bfd_getb16 (temp + 6);
12274 generic_bignum[1] = bfd_getb16 (temp + 4);
12275 generic_bignum[2] = bfd_getb16 (temp + 2);
12276 generic_bignum[3] = bfd_getb16 (temp);
12277 }
12278 }
12279 }
12280 else
12281 {
12282 const char *newname;
12283 segT new_seg;
12284
12285 /* Switch to the right section. */
12286 seg = now_seg;
12287 subseg = now_subseg;
12288 switch (*args)
12289 {
12290 default: /* unused default case avoids warnings. */
12291 case 'L':
12292 newname = RDATA_SECTION_NAME;
12293 if (g_switch_value >= 8)
12294 newname = ".lit8";
12295 break;
12296 case 'F':
12297 newname = RDATA_SECTION_NAME;
12298 break;
12299 case 'l':
12300 gas_assert (g_switch_value >= 4);
12301 newname = ".lit4";
12302 break;
12303 }
12304 new_seg = subseg_new (newname, (subsegT) 0);
12305 if (IS_ELF)
12306 bfd_set_section_flags (stdoutput, new_seg,
12307 (SEC_ALLOC
12308 | SEC_LOAD
12309 | SEC_READONLY
12310 | SEC_DATA));
12311 frag_align (*args == 'l' ? 2 : 3, 0, 0);
12312 if (IS_ELF && strncmp (TARGET_OS, "elf", 3) != 0)
12313 record_alignment (new_seg, 4);
12314 else
12315 record_alignment (new_seg, *args == 'l' ? 2 : 3);
12316 if (seg == now_seg)
12317 as_bad (_("Can't use floating point insn in this section"));
12318
12319 /* Set the argument to the current address in the
12320 section. */
12321 offset_expr.X_op = O_symbol;
12322 offset_expr.X_add_symbol = symbol_temp_new_now ();
12323 offset_expr.X_add_number = 0;
12324
12325 /* Put the floating point number into the section. */
12326 p = frag_more ((int) length);
12327 memcpy (p, temp, length);
12328
12329 /* Switch back to the original section. */
12330 subseg_set (seg, subseg);
12331 }
12332 }
12333 continue;
12334
12335 case 'i': /* 16-bit unsigned immediate. */
12336 case 'j': /* 16-bit signed immediate. */
12337 *imm_reloc = BFD_RELOC_LO16;
12338 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
12339 {
12340 int more;
12341 offsetT minval, maxval;
12342
12343 more = (insn + 1 < past
12344 && strcmp (insn->name, insn[1].name) == 0);
12345
12346 /* If the expression was written as an unsigned number,
12347 only treat it as signed if there are no more
12348 alternatives. */
12349 if (more
12350 && *args == 'j'
12351 && sizeof (imm_expr.X_add_number) <= 4
12352 && imm_expr.X_op == O_constant
12353 && imm_expr.X_add_number < 0
12354 && imm_expr.X_unsigned
12355 && HAVE_64BIT_GPRS)
12356 break;
12357
12358 /* For compatibility with older assemblers, we accept
12359 0x8000-0xffff as signed 16-bit numbers when only
12360 signed numbers are allowed. */
12361 if (*args == 'i')
12362 minval = 0, maxval = 0xffff;
12363 else if (more)
12364 minval = -0x8000, maxval = 0x7fff;
12365 else
12366 minval = -0x8000, maxval = 0xffff;
12367
12368 if (imm_expr.X_op != O_constant
12369 || imm_expr.X_add_number < minval
12370 || imm_expr.X_add_number > maxval)
12371 {
12372 if (more)
12373 break;
12374 if (imm_expr.X_op == O_constant
12375 || imm_expr.X_op == O_big)
12376 as_bad (_("Expression out of range"));
12377 }
12378 }
12379 s = expr_end;
12380 continue;
12381
12382 case 'o': /* 16-bit offset. */
12383 offset_reloc[0] = BFD_RELOC_LO16;
12384 offset_reloc[1] = BFD_RELOC_UNUSED;
12385 offset_reloc[2] = BFD_RELOC_UNUSED;
12386
12387 /* Check whether there is only a single bracketed expression
12388 left. If so, it must be the base register and the
12389 constant must be zero. */
12390 if (*s == '(' && strchr (s + 1, '(') == 0)
12391 {
12392 offset_expr.X_op = O_constant;
12393 offset_expr.X_add_number = 0;
12394 continue;
12395 }
12396
12397 /* If this value won't fit into a 16 bit offset, then go
12398 find a macro that will generate the 32 bit offset
12399 code pattern. */
12400 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
12401 && (offset_expr.X_op != O_constant
12402 || offset_expr.X_add_number >= 0x8000
12403 || offset_expr.X_add_number < -0x8000))
12404 break;
12405
12406 s = expr_end;
12407 continue;
12408
12409 case 'p': /* PC-relative offset. */
12410 *offset_reloc = BFD_RELOC_16_PCREL_S2;
12411 my_getExpression (&offset_expr, s);
12412 s = expr_end;
12413 continue;
12414
12415 case 'u': /* Upper 16 bits. */
12416 *imm_reloc = BFD_RELOC_LO16;
12417 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
12418 && imm_expr.X_op == O_constant
12419 && (imm_expr.X_add_number < 0
12420 || imm_expr.X_add_number >= 0x10000))
12421 as_bad (_("lui expression (%lu) not in range 0..65535"),
12422 (unsigned long) imm_expr.X_add_number);
12423 s = expr_end;
12424 continue;
12425
12426 case 'a': /* 26-bit address. */
12427 *offset_reloc = BFD_RELOC_MIPS_JMP;
12428 my_getExpression (&offset_expr, s);
12429 s = expr_end;
12430 continue;
12431
12432 case 'N': /* 3-bit branch condition code. */
12433 case 'M': /* 3-bit compare condition code. */
12434 rtype = RTYPE_CCC;
12435 if (ip->insn_mo->pinfo & (FP_D | FP_S))
12436 rtype |= RTYPE_FCC;
12437 if (!reg_lookup (&s, rtype, &regno))
12438 break;
12439 if ((strcmp (str + strlen (str) - 3, ".ps") == 0
12440 || strcmp (str + strlen (str) - 5, "any2f") == 0
12441 || strcmp (str + strlen (str) - 5, "any2t") == 0)
12442 && (regno & 1) != 0)
12443 as_warn (_("Condition code register should be even for %s, "
12444 "was %d"),
12445 str, regno);
12446 if ((strcmp (str + strlen (str) - 5, "any4f") == 0
12447 || strcmp (str + strlen (str) - 5, "any4t") == 0)
12448 && (regno & 3) != 0)
12449 as_warn (_("Condition code register should be 0 or 4 for %s, "
12450 "was %d"),
12451 str, regno);
12452 if (*args == 'N')
12453 INSERT_OPERAND (mips_opts.micromips, BCC, *ip, regno);
12454 else
12455 INSERT_OPERAND (mips_opts.micromips, CCC, *ip, regno);
12456 continue;
12457
12458 case 'H':
12459 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
12460 s += 2;
12461 if (ISDIGIT (*s))
12462 {
12463 c = 0;
12464 do
12465 {
12466 c *= 10;
12467 c += *s - '0';
12468 ++s;
12469 }
12470 while (ISDIGIT (*s));
12471 }
12472 else
12473 c = 8; /* Invalid sel value. */
12474
12475 if (c > 7)
12476 as_bad (_("Invalid coprocessor sub-selection value (0-7)"));
12477 INSERT_OPERAND (mips_opts.micromips, SEL, *ip, c);
12478 continue;
12479
12480 case 'e':
12481 gas_assert (!mips_opts.micromips);
12482 /* Must be at least one digit. */
12483 my_getExpression (&imm_expr, s);
12484 check_absolute_expr (ip, &imm_expr);
12485
12486 if ((unsigned long) imm_expr.X_add_number
12487 > (unsigned long) OP_MASK_VECBYTE)
12488 {
12489 as_bad (_("bad byte vector index (%ld)"),
12490 (long) imm_expr.X_add_number);
12491 imm_expr.X_add_number = 0;
12492 }
12493
12494 INSERT_OPERAND (0, VECBYTE, *ip, imm_expr.X_add_number);
12495 imm_expr.X_op = O_absent;
12496 s = expr_end;
12497 continue;
12498
12499 case '%':
12500 gas_assert (!mips_opts.micromips);
12501 my_getExpression (&imm_expr, s);
12502 check_absolute_expr (ip, &imm_expr);
12503
12504 if ((unsigned long) imm_expr.X_add_number
12505 > (unsigned long) OP_MASK_VECALIGN)
12506 {
12507 as_bad (_("bad byte vector index (%ld)"),
12508 (long) imm_expr.X_add_number);
12509 imm_expr.X_add_number = 0;
12510 }
12511
12512 INSERT_OPERAND (0, VECALIGN, *ip, imm_expr.X_add_number);
12513 imm_expr.X_op = O_absent;
12514 s = expr_end;
12515 continue;
12516
12517 case 'm': /* Opcode extension character. */
12518 gas_assert (mips_opts.micromips);
12519 c = *++args;
12520 switch (c)
12521 {
12522 case 'r':
12523 if (strncmp (s, "$pc", 3) == 0)
12524 {
12525 s += 3;
12526 continue;
12527 }
12528 break;
12529
12530 case 'a':
12531 case 'b':
12532 case 'c':
12533 case 'd':
12534 case 'e':
12535 case 'f':
12536 case 'g':
12537 case 'h':
12538 case 'i':
12539 case 'j':
12540 case 'l':
12541 case 'm':
12542 case 'n':
12543 case 'p':
12544 case 'q':
12545 case 's':
12546 case 't':
12547 case 'x':
12548 case 'y':
12549 case 'z':
12550 s_reset = s;
12551 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
12552 if (regno == AT && mips_opts.at)
12553 {
12554 if (mips_opts.at == ATREG)
12555 as_warn (_("Used $at without \".set noat\""));
12556 else
12557 as_warn (_("Used $%u with \".set at=$%u\""),
12558 regno, mips_opts.at);
12559 }
12560 if (!ok)
12561 {
12562 if (c == 'c')
12563 {
12564 gas_assert (args[1] == ',');
12565 regno = lastregno;
12566 ++args;
12567 }
12568 else if (c == 't')
12569 {
12570 gas_assert (args[1] == ',');
12571 ++args;
12572 continue; /* Nothing to do. */
12573 }
12574 else
12575 break;
12576 }
12577
12578 if (c == 'j' && !strncmp (ip->insn_mo->name, "jalr", 4))
12579 {
12580 if (regno == lastregno)
12581 {
12582 insn_error
12583 = _("Source and destination must be different");
12584 continue;
12585 }
12586 if (regno == 31 && lastregno == 0xffffffff)
12587 {
12588 insn_error
12589 = _("A destination register must be supplied");
12590 continue;
12591 }
12592 }
12593
12594 if (*s == ' ')
12595 ++s;
12596 if (args[1] != *s)
12597 {
12598 if (c == 'e')
12599 {
12600 gas_assert (args[1] == ',');
12601 regno = lastregno;
12602 s = s_reset;
12603 ++args;
12604 }
12605 else if (c == 't')
12606 {
12607 gas_assert (args[1] == ',');
12608 s = s_reset;
12609 ++args;
12610 continue; /* Nothing to do. */
12611 }
12612 }
12613
12614 /* Make sure regno is the same as lastregno. */
12615 if (c == 't' && regno != lastregno)
12616 break;
12617
12618 /* Make sure regno is the same as destregno. */
12619 if (c == 'x' && regno != destregno)
12620 break;
12621
12622 /* We need to save regno, before regno maps to the
12623 microMIPS register encoding. */
12624 lastregno = regno;
12625
12626 if (c == 'f')
12627 destregno = regno;
12628
12629 switch (c)
12630 {
12631 case 'a':
12632 if (regno != GP)
12633 regno = ILLEGAL_REG;
12634 break;
12635
12636 case 'b':
12637 regno = mips32_to_micromips_reg_b_map[regno];
12638 break;
12639
12640 case 'c':
12641 regno = mips32_to_micromips_reg_c_map[regno];
12642 break;
12643
12644 case 'd':
12645 regno = mips32_to_micromips_reg_d_map[regno];
12646 break;
12647
12648 case 'e':
12649 regno = mips32_to_micromips_reg_e_map[regno];
12650 break;
12651
12652 case 'f':
12653 regno = mips32_to_micromips_reg_f_map[regno];
12654 break;
12655
12656 case 'g':
12657 regno = mips32_to_micromips_reg_g_map[regno];
12658 break;
12659
12660 case 'h':
12661 regno = mips32_to_micromips_reg_h_map[regno];
12662 break;
12663
12664 case 'i':
12665 switch (EXTRACT_OPERAND (1, MI, *ip))
12666 {
12667 case 4:
12668 if (regno == 21)
12669 regno = 3;
12670 else if (regno == 22)
12671 regno = 4;
12672 else if (regno == 5)
12673 regno = 5;
12674 else if (regno == 6)
12675 regno = 6;
12676 else if (regno == 7)
12677 regno = 7;
12678 else
12679 regno = ILLEGAL_REG;
12680 break;
12681
12682 case 5:
12683 if (regno == 6)
12684 regno = 0;
12685 else if (regno == 7)
12686 regno = 1;
12687 else
12688 regno = ILLEGAL_REG;
12689 break;
12690
12691 case 6:
12692 if (regno == 7)
12693 regno = 2;
12694 else
12695 regno = ILLEGAL_REG;
12696 break;
12697
12698 default:
12699 regno = ILLEGAL_REG;
12700 break;
12701 }
12702 break;
12703
12704 case 'l':
12705 regno = mips32_to_micromips_reg_l_map[regno];
12706 break;
12707
12708 case 'm':
12709 regno = mips32_to_micromips_reg_m_map[regno];
12710 break;
12711
12712 case 'n':
12713 regno = mips32_to_micromips_reg_n_map[regno];
12714 break;
12715
12716 case 'q':
12717 regno = mips32_to_micromips_reg_q_map[regno];
12718 break;
12719
12720 case 's':
12721 if (regno != SP)
12722 regno = ILLEGAL_REG;
12723 break;
12724
12725 case 'y':
12726 if (regno != 31)
12727 regno = ILLEGAL_REG;
12728 break;
12729
12730 case 'z':
12731 if (regno != ZERO)
12732 regno = ILLEGAL_REG;
12733 break;
12734
12735 case 'j': /* Do nothing. */
12736 case 'p':
12737 case 't':
12738 case 'x':
12739 break;
12740
12741 default:
12742 internalError ();
12743 }
12744
12745 if (regno == ILLEGAL_REG)
12746 break;
12747
12748 switch (c)
12749 {
12750 case 'b':
12751 INSERT_OPERAND (1, MB, *ip, regno);
12752 break;
12753
12754 case 'c':
12755 INSERT_OPERAND (1, MC, *ip, regno);
12756 break;
12757
12758 case 'd':
12759 INSERT_OPERAND (1, MD, *ip, regno);
12760 break;
12761
12762 case 'e':
12763 INSERT_OPERAND (1, ME, *ip, regno);
12764 break;
12765
12766 case 'f':
12767 INSERT_OPERAND (1, MF, *ip, regno);
12768 break;
12769
12770 case 'g':
12771 INSERT_OPERAND (1, MG, *ip, regno);
12772 break;
12773
12774 case 'h':
12775 INSERT_OPERAND (1, MH, *ip, regno);
12776 break;
12777
12778 case 'i':
12779 INSERT_OPERAND (1, MI, *ip, regno);
12780 break;
12781
12782 case 'j':
12783 INSERT_OPERAND (1, MJ, *ip, regno);
12784 break;
12785
12786 case 'l':
12787 INSERT_OPERAND (1, ML, *ip, regno);
12788 break;
12789
12790 case 'm':
12791 INSERT_OPERAND (1, MM, *ip, regno);
12792 break;
12793
12794 case 'n':
12795 INSERT_OPERAND (1, MN, *ip, regno);
12796 break;
12797
12798 case 'p':
12799 INSERT_OPERAND (1, MP, *ip, regno);
12800 break;
12801
12802 case 'q':
12803 INSERT_OPERAND (1, MQ, *ip, regno);
12804 break;
12805
12806 case 'a': /* Do nothing. */
12807 case 's': /* Do nothing. */
12808 case 't': /* Do nothing. */
12809 case 'x': /* Do nothing. */
12810 case 'y': /* Do nothing. */
12811 case 'z': /* Do nothing. */
12812 break;
12813
12814 default:
12815 internalError ();
12816 }
12817 continue;
12818
12819 case 'A':
12820 {
12821 bfd_reloc_code_real_type r[3];
12822 expressionS ep;
12823 int imm;
12824
12825 /* Check whether there is only a single bracketed
12826 expression left. If so, it must be the base register
12827 and the constant must be zero. */
12828 if (*s == '(' && strchr (s + 1, '(') == 0)
12829 {
12830 INSERT_OPERAND (1, IMMA, *ip, 0);
12831 continue;
12832 }
12833
12834 if (my_getSmallExpression (&ep, r, s) > 0
12835 || !expr_const_in_range (&ep, -64, 64, 2))
12836 break;
12837
12838 imm = ep.X_add_number >> 2;
12839 INSERT_OPERAND (1, IMMA, *ip, imm);
12840 }
12841 s = expr_end;
12842 continue;
12843
12844 case 'B':
12845 {
12846 bfd_reloc_code_real_type r[3];
12847 expressionS ep;
12848 int imm;
12849
12850 if (my_getSmallExpression (&ep, r, s) > 0
12851 || ep.X_op != O_constant)
12852 break;
12853
12854 for (imm = 0; imm < 8; imm++)
12855 if (micromips_imm_b_map[imm] == ep.X_add_number)
12856 break;
12857 if (imm >= 8)
12858 break;
12859
12860 INSERT_OPERAND (1, IMMB, *ip, imm);
12861 }
12862 s = expr_end;
12863 continue;
12864
12865 case 'C':
12866 {
12867 bfd_reloc_code_real_type r[3];
12868 expressionS ep;
12869 int imm;
12870
12871 if (my_getSmallExpression (&ep, r, s) > 0
12872 || ep.X_op != O_constant)
12873 break;
12874
12875 for (imm = 0; imm < 16; imm++)
12876 if (micromips_imm_c_map[imm] == ep.X_add_number)
12877 break;
12878 if (imm >= 16)
12879 break;
12880
12881 INSERT_OPERAND (1, IMMC, *ip, imm);
12882 }
12883 s = expr_end;
12884 continue;
12885
12886 case 'D': /* pc relative offset */
12887 case 'E': /* pc relative offset */
12888 my_getExpression (&offset_expr, s);
12889 if (offset_expr.X_op == O_register)
12890 break;
12891
12892 if (!forced_insn_length)
12893 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
12894 else if (c == 'D')
12895 *offset_reloc = BFD_RELOC_MICROMIPS_10_PCREL_S1;
12896 else
12897 *offset_reloc = BFD_RELOC_MICROMIPS_7_PCREL_S1;
12898 s = expr_end;
12899 continue;
12900
12901 case 'F':
12902 {
12903 bfd_reloc_code_real_type r[3];
12904 expressionS ep;
12905 int imm;
12906
12907 if (my_getSmallExpression (&ep, r, s) > 0
12908 || !expr_const_in_range (&ep, 0, 16, 0))
12909 break;
12910
12911 imm = ep.X_add_number;
12912 INSERT_OPERAND (1, IMMF, *ip, imm);
12913 }
12914 s = expr_end;
12915 continue;
12916
12917 case 'G':
12918 {
12919 bfd_reloc_code_real_type r[3];
12920 expressionS ep;
12921 int imm;
12922
12923 /* Check whether there is only a single bracketed
12924 expression left. If so, it must be the base register
12925 and the constant must be zero. */
12926 if (*s == '(' && strchr (s + 1, '(') == 0)
12927 {
12928 INSERT_OPERAND (1, IMMG, *ip, 0);
12929 continue;
12930 }
12931
12932 if (my_getSmallExpression (&ep, r, s) > 0
12933 || !expr_const_in_range (&ep, -1, 15, 0))
12934 break;
12935
12936 imm = ep.X_add_number & 15;
12937 INSERT_OPERAND (1, IMMG, *ip, imm);
12938 }
12939 s = expr_end;
12940 continue;
12941
12942 case 'H':
12943 {
12944 bfd_reloc_code_real_type r[3];
12945 expressionS ep;
12946 int imm;
12947
12948 /* Check whether there is only a single bracketed
12949 expression left. If so, it must be the base register
12950 and the constant must be zero. */
12951 if (*s == '(' && strchr (s + 1, '(') == 0)
12952 {
12953 INSERT_OPERAND (1, IMMH, *ip, 0);
12954 continue;
12955 }
12956
12957 if (my_getSmallExpression (&ep, r, s) > 0
12958 || !expr_const_in_range (&ep, 0, 16, 1))
12959 break;
12960
12961 imm = ep.X_add_number >> 1;
12962 INSERT_OPERAND (1, IMMH, *ip, imm);
12963 }
12964 s = expr_end;
12965 continue;
12966
12967 case 'I':
12968 {
12969 bfd_reloc_code_real_type r[3];
12970 expressionS ep;
12971 int imm;
12972
12973 if (my_getSmallExpression (&ep, r, s) > 0
12974 || !expr_const_in_range (&ep, -1, 127, 0))
12975 break;
12976
12977 imm = ep.X_add_number & 127;
12978 INSERT_OPERAND (1, IMMI, *ip, imm);
12979 }
12980 s = expr_end;
12981 continue;
12982
12983 case 'J':
12984 {
12985 bfd_reloc_code_real_type r[3];
12986 expressionS ep;
12987 int imm;
12988
12989 /* Check whether there is only a single bracketed
12990 expression left. If so, it must be the base register
12991 and the constant must be zero. */
12992 if (*s == '(' && strchr (s + 1, '(') == 0)
12993 {
12994 INSERT_OPERAND (1, IMMJ, *ip, 0);
12995 continue;
12996 }
12997
12998 if (my_getSmallExpression (&ep, r, s) > 0
12999 || !expr_const_in_range (&ep, 0, 16, 2))
13000 break;
13001
13002 imm = ep.X_add_number >> 2;
13003 INSERT_OPERAND (1, IMMJ, *ip, imm);
13004 }
13005 s = expr_end;
13006 continue;
13007
13008 case 'L':
13009 {
13010 bfd_reloc_code_real_type r[3];
13011 expressionS ep;
13012 int imm;
13013
13014 /* Check whether there is only a single bracketed
13015 expression left. If so, it must be the base register
13016 and the constant must be zero. */
13017 if (*s == '(' && strchr (s + 1, '(') == 0)
13018 {
13019 INSERT_OPERAND (1, IMML, *ip, 0);
13020 continue;
13021 }
13022
13023 if (my_getSmallExpression (&ep, r, s) > 0
13024 || !expr_const_in_range (&ep, 0, 16, 0))
13025 break;
13026
13027 imm = ep.X_add_number;
13028 INSERT_OPERAND (1, IMML, *ip, imm);
13029 }
13030 s = expr_end;
13031 continue;
13032
13033 case 'M':
13034 {
13035 bfd_reloc_code_real_type r[3];
13036 expressionS ep;
13037 int imm;
13038
13039 if (my_getSmallExpression (&ep, r, s) > 0
13040 || !expr_const_in_range (&ep, 1, 9, 0))
13041 break;
13042
13043 imm = ep.X_add_number & 7;
13044 INSERT_OPERAND (1, IMMM, *ip, imm);
13045 }
13046 s = expr_end;
13047 continue;
13048
13049 case 'N': /* Register list for lwm and swm. */
13050 {
13051 /* A comma-separated list of registers and/or
13052 dash-separated contiguous ranges including
13053 both ra and a set of one or more registers
13054 starting at s0 up to s3 which have to be
13055 consecutive, e.g.:
13056
13057 s0, ra
13058 s0, s1, ra, s2, s3
13059 s0-s2, ra
13060
13061 and any permutations of these. */
13062 unsigned int reglist;
13063 int imm;
13064
13065 if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, &reglist))
13066 break;
13067
13068 if ((reglist & 0xfff1ffff) != 0x80010000)
13069 break;
13070
13071 reglist = (reglist >> 17) & 7;
13072 reglist += 1;
13073 if ((reglist & -reglist) != reglist)
13074 break;
13075
13076 imm = ffs (reglist) - 1;
13077 INSERT_OPERAND (1, IMMN, *ip, imm);
13078 }
13079 continue;
13080
13081 case 'O': /* sdbbp 4-bit code. */
13082 {
13083 bfd_reloc_code_real_type r[3];
13084 expressionS ep;
13085 int imm;
13086
13087 if (my_getSmallExpression (&ep, r, s) > 0
13088 || !expr_const_in_range (&ep, 0, 16, 0))
13089 break;
13090
13091 imm = ep.X_add_number;
13092 INSERT_OPERAND (1, IMMO, *ip, imm);
13093 }
13094 s = expr_end;
13095 continue;
13096
13097 case 'P':
13098 {
13099 bfd_reloc_code_real_type r[3];
13100 expressionS ep;
13101 int imm;
13102
13103 if (my_getSmallExpression (&ep, r, s) > 0
13104 || !expr_const_in_range (&ep, 0, 32, 2))
13105 break;
13106
13107 imm = ep.X_add_number >> 2;
13108 INSERT_OPERAND (1, IMMP, *ip, imm);
13109 }
13110 s = expr_end;
13111 continue;
13112
13113 case 'Q':
13114 {
13115 bfd_reloc_code_real_type r[3];
13116 expressionS ep;
13117 int imm;
13118
13119 if (my_getSmallExpression (&ep, r, s) > 0
13120 || !expr_const_in_range (&ep, -0x400000, 0x400000, 2))
13121 break;
13122
13123 imm = ep.X_add_number >> 2;
13124 INSERT_OPERAND (1, IMMQ, *ip, imm);
13125 }
13126 s = expr_end;
13127 continue;
13128
13129 case 'U':
13130 {
13131 bfd_reloc_code_real_type r[3];
13132 expressionS ep;
13133 int imm;
13134
13135 /* Check whether there is only a single bracketed
13136 expression left. If so, it must be the base register
13137 and the constant must be zero. */
13138 if (*s == '(' && strchr (s + 1, '(') == 0)
13139 {
13140 INSERT_OPERAND (1, IMMU, *ip, 0);
13141 continue;
13142 }
13143
13144 if (my_getSmallExpression (&ep, r, s) > 0
13145 || !expr_const_in_range (&ep, 0, 32, 2))
13146 break;
13147
13148 imm = ep.X_add_number >> 2;
13149 INSERT_OPERAND (1, IMMU, *ip, imm);
13150 }
13151 s = expr_end;
13152 continue;
13153
13154 case 'W':
13155 {
13156 bfd_reloc_code_real_type r[3];
13157 expressionS ep;
13158 int imm;
13159
13160 if (my_getSmallExpression (&ep, r, s) > 0
13161 || !expr_const_in_range (&ep, 0, 64, 2))
13162 break;
13163
13164 imm = ep.X_add_number >> 2;
13165 INSERT_OPERAND (1, IMMW, *ip, imm);
13166 }
13167 s = expr_end;
13168 continue;
13169
13170 case 'X':
13171 {
13172 bfd_reloc_code_real_type r[3];
13173 expressionS ep;
13174 int imm;
13175
13176 if (my_getSmallExpression (&ep, r, s) > 0
13177 || !expr_const_in_range (&ep, -8, 8, 0))
13178 break;
13179
13180 imm = ep.X_add_number;
13181 INSERT_OPERAND (1, IMMX, *ip, imm);
13182 }
13183 s = expr_end;
13184 continue;
13185
13186 case 'Y':
13187 {
13188 bfd_reloc_code_real_type r[3];
13189 expressionS ep;
13190 int imm;
13191
13192 if (my_getSmallExpression (&ep, r, s) > 0
13193 || expr_const_in_range (&ep, -2, 2, 2)
13194 || !expr_const_in_range (&ep, -258, 258, 2))
13195 break;
13196
13197 imm = ep.X_add_number >> 2;
13198 imm = ((imm >> 1) & ~0xff) | (imm & 0xff);
13199 INSERT_OPERAND (1, IMMY, *ip, imm);
13200 }
13201 s = expr_end;
13202 continue;
13203
13204 case 'Z':
13205 {
13206 bfd_reloc_code_real_type r[3];
13207 expressionS ep;
13208
13209 if (my_getSmallExpression (&ep, r, s) > 0
13210 || !expr_const_in_range (&ep, 0, 1, 0))
13211 break;
13212 }
13213 s = expr_end;
13214 continue;
13215
13216 default:
13217 as_bad (_("Internal error: bad microMIPS opcode "
13218 "(unknown extension operand type `m%c'): %s %s"),
13219 *args, insn->name, insn->args);
13220 /* Further processing is fruitless. */
13221 return;
13222 }
13223 break;
13224
13225 case 'n': /* Register list for 32-bit lwm and swm. */
13226 gas_assert (mips_opts.micromips);
13227 {
13228 /* A comma-separated list of registers and/or
13229 dash-separated contiguous ranges including
13230 at least one of ra and a set of one or more
13231 registers starting at s0 up to s7 and then
13232 s8 which have to be consecutive, e.g.:
13233
13234 ra
13235 s0
13236 ra, s0, s1, s2
13237 s0-s8
13238 s0-s5, ra
13239
13240 and any permutations of these. */
13241 unsigned int reglist;
13242 int imm;
13243 int ra;
13244
13245 if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, &reglist))
13246 break;
13247
13248 if ((reglist & 0x3f00ffff) != 0)
13249 break;
13250
13251 ra = (reglist >> 27) & 0x10;
13252 reglist = ((reglist >> 22) & 0x100) | ((reglist >> 16) & 0xff);
13253 reglist += 1;
13254 if ((reglist & -reglist) != reglist)
13255 break;
13256
13257 imm = (ffs (reglist) - 1) | ra;
13258 INSERT_OPERAND (1, RT, *ip, imm);
13259 imm_expr.X_op = O_absent;
13260 }
13261 continue;
13262
13263 case '|': /* 4-bit trap code. */
13264 gas_assert (mips_opts.micromips);
13265 my_getExpression (&imm_expr, s);
13266 check_absolute_expr (ip, &imm_expr);
13267 if ((unsigned long) imm_expr.X_add_number
13268 > MICROMIPSOP_MASK_TRAP)
13269 as_bad (_("Trap code (%lu) for %s not in 0..15 range"),
13270 (unsigned long) imm_expr.X_add_number,
13271 ip->insn_mo->name);
13272 INSERT_OPERAND (1, TRAP, *ip, imm_expr.X_add_number);
13273 imm_expr.X_op = O_absent;
13274 s = expr_end;
13275 continue;
13276
13277 default:
13278 as_bad (_("Bad char = '%c'\n"), *args);
13279 internalError ();
13280 }
13281 break;
13282 }
13283 /* Args don't match. */
13284 s = argsStart;
13285 insn_error = _("Illegal operands");
13286 if (insn + 1 < past && !strcmp (insn->name, insn[1].name))
13287 {
13288 ++insn;
13289 continue;
13290 }
13291 else if (wrong_delay_slot_insns && need_delay_slot_ok)
13292 {
13293 gas_assert (firstinsn);
13294 need_delay_slot_ok = FALSE;
13295 past = insn + 1;
13296 insn = firstinsn;
13297 continue;
13298 }
13299 return;
13300 }
13301 }
13302
13303 #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
13304
13305 /* This routine assembles an instruction into its binary format when
13306 assembling for the mips16. As a side effect, it sets one of the
13307 global variables imm_reloc or offset_reloc to the type of relocation
13308 to do if one of the operands is an address expression. It also sets
13309 forced_insn_length to the resulting instruction size in bytes if the
13310 user explicitly requested a small or extended instruction. */
13311
13312 static void
13313 mips16_ip (char *str, struct mips_cl_insn *ip)
13314 {
13315 char *s;
13316 const char *args;
13317 struct mips_opcode *insn;
13318 char *argsstart;
13319 unsigned int regno;
13320 unsigned int lastregno = 0;
13321 char *s_reset;
13322 size_t i;
13323
13324 insn_error = NULL;
13325
13326 forced_insn_length = 0;
13327
13328 for (s = str; ISLOWER (*s); ++s)
13329 ;
13330 switch (*s)
13331 {
13332 case '\0':
13333 break;
13334
13335 case ' ':
13336 *s++ = '\0';
13337 break;
13338
13339 case '.':
13340 if (s[1] == 't' && s[2] == ' ')
13341 {
13342 *s = '\0';
13343 forced_insn_length = 2;
13344 s += 3;
13345 break;
13346 }
13347 else if (s[1] == 'e' && s[2] == ' ')
13348 {
13349 *s = '\0';
13350 forced_insn_length = 4;
13351 s += 3;
13352 break;
13353 }
13354 /* Fall through. */
13355 default:
13356 insn_error = _("unknown opcode");
13357 return;
13358 }
13359
13360 if (mips_opts.noautoextend && !forced_insn_length)
13361 forced_insn_length = 2;
13362
13363 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
13364 {
13365 insn_error = _("unrecognized opcode");
13366 return;
13367 }
13368
13369 argsstart = s;
13370 for (;;)
13371 {
13372 bfd_boolean ok;
13373
13374 gas_assert (strcmp (insn->name, str) == 0);
13375
13376 ok = is_opcode_valid_16 (insn);
13377 if (! ok)
13378 {
13379 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
13380 && strcmp (insn->name, insn[1].name) == 0)
13381 {
13382 ++insn;
13383 continue;
13384 }
13385 else
13386 {
13387 if (!insn_error)
13388 {
13389 static char buf[100];
13390 sprintf (buf,
13391 _("Opcode not supported on this processor: %s (%s)"),
13392 mips_cpu_info_from_arch (mips_opts.arch)->name,
13393 mips_cpu_info_from_isa (mips_opts.isa)->name);
13394 insn_error = buf;
13395 }
13396 return;
13397 }
13398 }
13399
13400 create_insn (ip, insn);
13401 imm_expr.X_op = O_absent;
13402 imm_reloc[0] = BFD_RELOC_UNUSED;
13403 imm_reloc[1] = BFD_RELOC_UNUSED;
13404 imm_reloc[2] = BFD_RELOC_UNUSED;
13405 imm2_expr.X_op = O_absent;
13406 offset_expr.X_op = O_absent;
13407 offset_reloc[0] = BFD_RELOC_UNUSED;
13408 offset_reloc[1] = BFD_RELOC_UNUSED;
13409 offset_reloc[2] = BFD_RELOC_UNUSED;
13410 for (args = insn->args; 1; ++args)
13411 {
13412 int c;
13413
13414 if (*s == ' ')
13415 ++s;
13416
13417 /* In this switch statement we call break if we did not find
13418 a match, continue if we did find a match, or return if we
13419 are done. */
13420
13421 c = *args;
13422 switch (c)
13423 {
13424 case '\0':
13425 if (*s == '\0')
13426 {
13427 offsetT value;
13428
13429 /* Stuff the immediate value in now, if we can. */
13430 if (imm_expr.X_op == O_constant
13431 && *imm_reloc > BFD_RELOC_UNUSED
13432 && insn->pinfo != INSN_MACRO
13433 && calculate_reloc (*offset_reloc,
13434 imm_expr.X_add_number, &value))
13435 {
13436 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
13437 *offset_reloc, value, forced_insn_length,
13438 &ip->insn_opcode);
13439 imm_expr.X_op = O_absent;
13440 *imm_reloc = BFD_RELOC_UNUSED;
13441 *offset_reloc = BFD_RELOC_UNUSED;
13442 }
13443
13444 return;
13445 }
13446 break;
13447
13448 case ',':
13449 if (*s++ == c)
13450 continue;
13451 s--;
13452 switch (*++args)
13453 {
13454 case 'v':
13455 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
13456 continue;
13457 case 'w':
13458 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
13459 continue;
13460 }
13461 break;
13462
13463 case '(':
13464 case ')':
13465 if (*s++ == c)
13466 continue;
13467 break;
13468
13469 case 'v':
13470 case 'w':
13471 if (s[0] != '$')
13472 {
13473 if (c == 'v')
13474 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
13475 else
13476 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
13477 ++args;
13478 continue;
13479 }
13480 /* Fall through. */
13481 case 'x':
13482 case 'y':
13483 case 'z':
13484 case 'Z':
13485 case '0':
13486 case 'S':
13487 case 'R':
13488 case 'X':
13489 case 'Y':
13490 s_reset = s;
13491 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
13492 {
13493 if (c == 'v' || c == 'w')
13494 {
13495 if (c == 'v')
13496 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
13497 else
13498 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
13499 ++args;
13500 continue;
13501 }
13502 break;
13503 }
13504
13505 if (*s == ' ')
13506 ++s;
13507 if (args[1] != *s)
13508 {
13509 if (c == 'v' || c == 'w')
13510 {
13511 regno = mips16_to_32_reg_map[lastregno];
13512 s = s_reset;
13513 ++args;
13514 }
13515 }
13516
13517 switch (c)
13518 {
13519 case 'x':
13520 case 'y':
13521 case 'z':
13522 case 'v':
13523 case 'w':
13524 case 'Z':
13525 regno = mips32_to_16_reg_map[regno];
13526 break;
13527
13528 case '0':
13529 if (regno != 0)
13530 regno = ILLEGAL_REG;
13531 break;
13532
13533 case 'S':
13534 if (regno != SP)
13535 regno = ILLEGAL_REG;
13536 break;
13537
13538 case 'R':
13539 if (regno != RA)
13540 regno = ILLEGAL_REG;
13541 break;
13542
13543 case 'X':
13544 case 'Y':
13545 if (regno == AT && mips_opts.at)
13546 {
13547 if (mips_opts.at == ATREG)
13548 as_warn (_("used $at without \".set noat\""));
13549 else
13550 as_warn (_("used $%u with \".set at=$%u\""),
13551 regno, mips_opts.at);
13552 }
13553 break;
13554
13555 default:
13556 internalError ();
13557 }
13558
13559 if (regno == ILLEGAL_REG)
13560 break;
13561
13562 switch (c)
13563 {
13564 case 'x':
13565 case 'v':
13566 MIPS16_INSERT_OPERAND (RX, *ip, regno);
13567 break;
13568 case 'y':
13569 case 'w':
13570 MIPS16_INSERT_OPERAND (RY, *ip, regno);
13571 break;
13572 case 'z':
13573 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
13574 break;
13575 case 'Z':
13576 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
13577 case '0':
13578 case 'S':
13579 case 'R':
13580 break;
13581 case 'X':
13582 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
13583 break;
13584 case 'Y':
13585 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
13586 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
13587 break;
13588 default:
13589 internalError ();
13590 }
13591
13592 lastregno = regno;
13593 continue;
13594
13595 case 'P':
13596 if (strncmp (s, "$pc", 3) == 0)
13597 {
13598 s += 3;
13599 continue;
13600 }
13601 break;
13602
13603 case '5':
13604 case 'H':
13605 case 'W':
13606 case 'D':
13607 case 'j':
13608 case 'V':
13609 case 'C':
13610 case 'U':
13611 case 'k':
13612 case 'K':
13613 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
13614 if (i > 0)
13615 {
13616 if (imm_expr.X_op != O_constant)
13617 {
13618 forced_insn_length = 4;
13619 ip->insn_opcode |= MIPS16_EXTEND;
13620 }
13621 else
13622 {
13623 /* We need to relax this instruction. */
13624 *offset_reloc = *imm_reloc;
13625 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
13626 }
13627 s = expr_end;
13628 continue;
13629 }
13630 *imm_reloc = BFD_RELOC_UNUSED;
13631 /* Fall through. */
13632 case '<':
13633 case '>':
13634 case '[':
13635 case ']':
13636 case '4':
13637 case '8':
13638 my_getExpression (&imm_expr, s);
13639 if (imm_expr.X_op == O_register)
13640 {
13641 /* What we thought was an expression turned out to
13642 be a register. */
13643
13644 if (s[0] == '(' && args[1] == '(')
13645 {
13646 /* It looks like the expression was omitted
13647 before a register indirection, which means
13648 that the expression is implicitly zero. We
13649 still set up imm_expr, so that we handle
13650 explicit extensions correctly. */
13651 imm_expr.X_op = O_constant;
13652 imm_expr.X_add_number = 0;
13653 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
13654 continue;
13655 }
13656
13657 break;
13658 }
13659
13660 /* We need to relax this instruction. */
13661 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
13662 s = expr_end;
13663 continue;
13664
13665 case 'p':
13666 case 'q':
13667 case 'A':
13668 case 'B':
13669 case 'E':
13670 /* We use offset_reloc rather than imm_reloc for the PC
13671 relative operands. This lets macros with both
13672 immediate and address operands work correctly. */
13673 my_getExpression (&offset_expr, s);
13674
13675 if (offset_expr.X_op == O_register)
13676 break;
13677
13678 /* We need to relax this instruction. */
13679 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
13680 s = expr_end;
13681 continue;
13682
13683 case '6': /* break code */
13684 my_getExpression (&imm_expr, s);
13685 check_absolute_expr (ip, &imm_expr);
13686 if ((unsigned long) imm_expr.X_add_number > 63)
13687 as_warn (_("Invalid value for `%s' (%lu)"),
13688 ip->insn_mo->name,
13689 (unsigned long) imm_expr.X_add_number);
13690 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
13691 imm_expr.X_op = O_absent;
13692 s = expr_end;
13693 continue;
13694
13695 case 'a': /* 26 bit address */
13696 my_getExpression (&offset_expr, s);
13697 s = expr_end;
13698 *offset_reloc = BFD_RELOC_MIPS16_JMP;
13699 ip->insn_opcode <<= 16;
13700 continue;
13701
13702 case 'l': /* register list for entry macro */
13703 case 'L': /* register list for exit macro */
13704 {
13705 int mask;
13706
13707 if (c == 'l')
13708 mask = 0;
13709 else
13710 mask = 7 << 3;
13711 while (*s != '\0')
13712 {
13713 unsigned int freg, reg1, reg2;
13714
13715 while (*s == ' ' || *s == ',')
13716 ++s;
13717 if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
13718 freg = 0;
13719 else if (reg_lookup (&s, RTYPE_FPU, &reg1))
13720 freg = 1;
13721 else
13722 {
13723 as_bad (_("can't parse register list"));
13724 break;
13725 }
13726 if (*s == ' ')
13727 ++s;
13728 if (*s != '-')
13729 reg2 = reg1;
13730 else
13731 {
13732 ++s;
13733 if (!reg_lookup (&s, freg ? RTYPE_FPU
13734 : (RTYPE_GP | RTYPE_NUM), &reg2))
13735 {
13736 as_bad (_("invalid register list"));
13737 break;
13738 }
13739 }
13740 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
13741 {
13742 mask &= ~ (7 << 3);
13743 mask |= 5 << 3;
13744 }
13745 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
13746 {
13747 mask &= ~ (7 << 3);
13748 mask |= 6 << 3;
13749 }
13750 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
13751 mask |= (reg2 - 3) << 3;
13752 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
13753 mask |= (reg2 - 15) << 1;
13754 else if (reg1 == RA && reg2 == RA)
13755 mask |= 1;
13756 else
13757 {
13758 as_bad (_("invalid register list"));
13759 break;
13760 }
13761 }
13762 /* The mask is filled in in the opcode table for the
13763 benefit of the disassembler. We remove it before
13764 applying the actual mask. */
13765 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
13766 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
13767 }
13768 continue;
13769
13770 case 'm': /* Register list for save insn. */
13771 case 'M': /* Register list for restore insn. */
13772 {
13773 int opcode = ip->insn_opcode;
13774 int framesz = 0, seen_framesz = 0;
13775 int nargs = 0, statics = 0, sregs = 0;
13776
13777 while (*s != '\0')
13778 {
13779 unsigned int reg1, reg2;
13780
13781 SKIP_SPACE_TABS (s);
13782 while (*s == ',')
13783 ++s;
13784 SKIP_SPACE_TABS (s);
13785
13786 my_getExpression (&imm_expr, s);
13787 if (imm_expr.X_op == O_constant)
13788 {
13789 /* Handle the frame size. */
13790 if (seen_framesz)
13791 {
13792 as_bad (_("more than one frame size in list"));
13793 break;
13794 }
13795 seen_framesz = 1;
13796 framesz = imm_expr.X_add_number;
13797 imm_expr.X_op = O_absent;
13798 s = expr_end;
13799 continue;
13800 }
13801
13802 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
13803 {
13804 as_bad (_("can't parse register list"));
13805 break;
13806 }
13807
13808 while (*s == ' ')
13809 ++s;
13810
13811 if (*s != '-')
13812 reg2 = reg1;
13813 else
13814 {
13815 ++s;
13816 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg2)
13817 || reg2 < reg1)
13818 {
13819 as_bad (_("can't parse register list"));
13820 break;
13821 }
13822 }
13823
13824 while (reg1 <= reg2)
13825 {
13826 if (reg1 >= 4 && reg1 <= 7)
13827 {
13828 if (!seen_framesz)
13829 /* args $a0-$a3 */
13830 nargs |= 1 << (reg1 - 4);
13831 else
13832 /* statics $a0-$a3 */
13833 statics |= 1 << (reg1 - 4);
13834 }
13835 else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
13836 {
13837 /* $s0-$s8 */
13838 sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
13839 }
13840 else if (reg1 == 31)
13841 {
13842 /* Add $ra to insn. */
13843 opcode |= 0x40;
13844 }
13845 else
13846 {
13847 as_bad (_("unexpected register in list"));
13848 break;
13849 }
13850 if (++reg1 == 24)
13851 reg1 = 30;
13852 }
13853 }
13854
13855 /* Encode args/statics combination. */
13856 if (nargs & statics)
13857 as_bad (_("arg/static registers overlap"));
13858 else if (nargs == 0xf)
13859 /* All $a0-$a3 are args. */
13860 opcode |= MIPS16_ALL_ARGS << 16;
13861 else if (statics == 0xf)
13862 /* All $a0-$a3 are statics. */
13863 opcode |= MIPS16_ALL_STATICS << 16;
13864 else
13865 {
13866 int narg = 0, nstat = 0;
13867
13868 /* Count arg registers. */
13869 while (nargs & 0x1)
13870 {
13871 nargs >>= 1;
13872 narg++;
13873 }
13874 if (nargs != 0)
13875 as_bad (_("invalid arg register list"));
13876
13877 /* Count static registers. */
13878 while (statics & 0x8)
13879 {
13880 statics = (statics << 1) & 0xf;
13881 nstat++;
13882 }
13883 if (statics != 0)
13884 as_bad (_("invalid static register list"));
13885
13886 /* Encode args/statics. */
13887 opcode |= ((narg << 2) | nstat) << 16;
13888 }
13889
13890 /* Encode $s0/$s1. */
13891 if (sregs & (1 << 0)) /* $s0 */
13892 opcode |= 0x20;
13893 if (sregs & (1 << 1)) /* $s1 */
13894 opcode |= 0x10;
13895 sregs >>= 2;
13896
13897 if (sregs != 0)
13898 {
13899 /* Count regs $s2-$s8. */
13900 int nsreg = 0;
13901 while (sregs & 1)
13902 {
13903 sregs >>= 1;
13904 nsreg++;
13905 }
13906 if (sregs != 0)
13907 as_bad (_("invalid static register list"));
13908 /* Encode $s2-$s8. */
13909 opcode |= nsreg << 24;
13910 }
13911
13912 /* Encode frame size. */
13913 if (!seen_framesz)
13914 as_bad (_("missing frame size"));
13915 else if ((framesz & 7) != 0 || framesz < 0
13916 || framesz > 0xff * 8)
13917 as_bad (_("invalid frame size"));
13918 else if (framesz != 128 || (opcode >> 16) != 0)
13919 {
13920 framesz /= 8;
13921 opcode |= (((framesz & 0xf0) << 16)
13922 | (framesz & 0x0f));
13923 }
13924
13925 /* Finally build the instruction. */
13926 if ((opcode >> 16) != 0 || framesz == 0)
13927 opcode |= MIPS16_EXTEND;
13928 ip->insn_opcode = opcode;
13929 }
13930 continue;
13931
13932 case 'e': /* extend code */
13933 my_getExpression (&imm_expr, s);
13934 check_absolute_expr (ip, &imm_expr);
13935 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
13936 {
13937 as_warn (_("Invalid value for `%s' (%lu)"),
13938 ip->insn_mo->name,
13939 (unsigned long) imm_expr.X_add_number);
13940 imm_expr.X_add_number &= 0x7ff;
13941 }
13942 ip->insn_opcode |= imm_expr.X_add_number;
13943 imm_expr.X_op = O_absent;
13944 s = expr_end;
13945 continue;
13946
13947 default:
13948 internalError ();
13949 }
13950 break;
13951 }
13952
13953 /* Args don't match. */
13954 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
13955 strcmp (insn->name, insn[1].name) == 0)
13956 {
13957 ++insn;
13958 s = argsstart;
13959 continue;
13960 }
13961
13962 insn_error = _("illegal operands");
13963
13964 return;
13965 }
13966 }
13967
13968 /* This structure holds information we know about a mips16 immediate
13969 argument type. */
13970
13971 struct mips16_immed_operand
13972 {
13973 /* The type code used in the argument string in the opcode table. */
13974 int type;
13975 /* The number of bits in the short form of the opcode. */
13976 int nbits;
13977 /* The number of bits in the extended form of the opcode. */
13978 int extbits;
13979 /* The amount by which the short form is shifted when it is used;
13980 for example, the sw instruction has a shift count of 2. */
13981 int shift;
13982 /* The amount by which the short form is shifted when it is stored
13983 into the instruction code. */
13984 int op_shift;
13985 /* Non-zero if the short form is unsigned. */
13986 int unsp;
13987 /* Non-zero if the extended form is unsigned. */
13988 int extu;
13989 /* Non-zero if the value is PC relative. */
13990 int pcrel;
13991 };
13992
13993 /* The mips16 immediate operand types. */
13994
13995 static const struct mips16_immed_operand mips16_immed_operands[] =
13996 {
13997 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
13998 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
13999 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
14000 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
14001 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
14002 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
14003 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
14004 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
14005 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
14006 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
14007 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
14008 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
14009 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
14010 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
14011 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
14012 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
14013 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
14014 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
14015 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
14016 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
14017 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
14018 };
14019
14020 #define MIPS16_NUM_IMMED \
14021 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
14022
14023 /* Marshal immediate value VAL for an extended MIPS16 instruction.
14024 NBITS is the number of significant bits in VAL. */
14025
14026 static unsigned long
14027 mips16_immed_extend (offsetT val, unsigned int nbits)
14028 {
14029 int extval;
14030 if (nbits == 16)
14031 {
14032 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
14033 val &= 0x1f;
14034 }
14035 else if (nbits == 15)
14036 {
14037 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
14038 val &= 0xf;
14039 }
14040 else
14041 {
14042 extval = ((val & 0x1f) << 6) | (val & 0x20);
14043 val = 0;
14044 }
14045 return (extval << 16) | val;
14046 }
14047
14048 /* Install immediate value VAL into MIPS16 instruction *INSN,
14049 extending it if necessary. The instruction in *INSN may
14050 already be extended.
14051
14052 RELOC is the relocation that produced VAL, or BFD_RELOC_UNUSED
14053 if none. In the former case, VAL is a 16-bit number with no
14054 defined signedness.
14055
14056 TYPE is the type of the immediate field. USER_INSN_LENGTH
14057 is the length that the user requested, or 0 if none. */
14058
14059 static void
14060 mips16_immed (char *file, unsigned int line, int type,
14061 bfd_reloc_code_real_type reloc, offsetT val,
14062 unsigned int user_insn_length, unsigned long *insn)
14063 {
14064 const struct mips16_immed_operand *op;
14065 int mintiny, maxtiny;
14066
14067 op = mips16_immed_operands;
14068 while (op->type != type)
14069 {
14070 ++op;
14071 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
14072 }
14073
14074 if (op->unsp)
14075 {
14076 if (type == '<' || type == '>' || type == '[' || type == ']')
14077 {
14078 mintiny = 1;
14079 maxtiny = 1 << op->nbits;
14080 }
14081 else
14082 {
14083 mintiny = 0;
14084 maxtiny = (1 << op->nbits) - 1;
14085 }
14086 if (reloc != BFD_RELOC_UNUSED)
14087 val &= 0xffff;
14088 }
14089 else
14090 {
14091 mintiny = - (1 << (op->nbits - 1));
14092 maxtiny = (1 << (op->nbits - 1)) - 1;
14093 if (reloc != BFD_RELOC_UNUSED)
14094 val = SEXT_16BIT (val);
14095 }
14096
14097 /* Branch offsets have an implicit 0 in the lowest bit. */
14098 if (type == 'p' || type == 'q')
14099 val /= 2;
14100
14101 if ((val & ((1 << op->shift) - 1)) != 0
14102 || val < (mintiny << op->shift)
14103 || val > (maxtiny << op->shift))
14104 {
14105 /* We need an extended instruction. */
14106 if (user_insn_length == 2)
14107 as_bad_where (file, line, _("invalid unextended operand value"));
14108 else
14109 *insn |= MIPS16_EXTEND;
14110 }
14111 else if (user_insn_length == 4)
14112 {
14113 /* The operand doesn't force an unextended instruction to be extended.
14114 Warn if the user wanted an extended instruction anyway. */
14115 *insn |= MIPS16_EXTEND;
14116 as_warn_where (file, line,
14117 _("extended operand requested but not required"));
14118 }
14119
14120 if (mips16_opcode_length (*insn) == 2)
14121 {
14122 int insnval;
14123
14124 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
14125 insnval <<= op->op_shift;
14126 *insn |= insnval;
14127 }
14128 else
14129 {
14130 long minext, maxext;
14131
14132 if (reloc == BFD_RELOC_UNUSED)
14133 {
14134 if (op->extu)
14135 {
14136 minext = 0;
14137 maxext = (1 << op->extbits) - 1;
14138 }
14139 else
14140 {
14141 minext = - (1 << (op->extbits - 1));
14142 maxext = (1 << (op->extbits - 1)) - 1;
14143 }
14144 if (val < minext || val > maxext)
14145 as_bad_where (file, line,
14146 _("operand value out of range for instruction"));
14147 }
14148
14149 *insn |= mips16_immed_extend (val, op->extbits);
14150 }
14151 }
14152 \f
14153 struct percent_op_match
14154 {
14155 const char *str;
14156 bfd_reloc_code_real_type reloc;
14157 };
14158
14159 static const struct percent_op_match mips_percent_op[] =
14160 {
14161 {"%lo", BFD_RELOC_LO16},
14162 #ifdef OBJ_ELF
14163 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
14164 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
14165 {"%call16", BFD_RELOC_MIPS_CALL16},
14166 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
14167 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
14168 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
14169 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
14170 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
14171 {"%got", BFD_RELOC_MIPS_GOT16},
14172 {"%gp_rel", BFD_RELOC_GPREL16},
14173 {"%half", BFD_RELOC_16},
14174 {"%highest", BFD_RELOC_MIPS_HIGHEST},
14175 {"%higher", BFD_RELOC_MIPS_HIGHER},
14176 {"%neg", BFD_RELOC_MIPS_SUB},
14177 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
14178 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
14179 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
14180 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
14181 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
14182 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
14183 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
14184 #endif
14185 {"%hi", BFD_RELOC_HI16_S}
14186 };
14187
14188 static const struct percent_op_match mips16_percent_op[] =
14189 {
14190 {"%lo", BFD_RELOC_MIPS16_LO16},
14191 {"%gprel", BFD_RELOC_MIPS16_GPREL},
14192 {"%got", BFD_RELOC_MIPS16_GOT16},
14193 {"%call16", BFD_RELOC_MIPS16_CALL16},
14194 {"%hi", BFD_RELOC_MIPS16_HI16_S},
14195 {"%tlsgd", BFD_RELOC_MIPS16_TLS_GD},
14196 {"%tlsldm", BFD_RELOC_MIPS16_TLS_LDM},
14197 {"%dtprel_hi", BFD_RELOC_MIPS16_TLS_DTPREL_HI16},
14198 {"%dtprel_lo", BFD_RELOC_MIPS16_TLS_DTPREL_LO16},
14199 {"%tprel_hi", BFD_RELOC_MIPS16_TLS_TPREL_HI16},
14200 {"%tprel_lo", BFD_RELOC_MIPS16_TLS_TPREL_LO16},
14201 {"%gottprel", BFD_RELOC_MIPS16_TLS_GOTTPREL}
14202 };
14203
14204
14205 /* Return true if *STR points to a relocation operator. When returning true,
14206 move *STR over the operator and store its relocation code in *RELOC.
14207 Leave both *STR and *RELOC alone when returning false. */
14208
14209 static bfd_boolean
14210 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
14211 {
14212 const struct percent_op_match *percent_op;
14213 size_t limit, i;
14214
14215 if (mips_opts.mips16)
14216 {
14217 percent_op = mips16_percent_op;
14218 limit = ARRAY_SIZE (mips16_percent_op);
14219 }
14220 else
14221 {
14222 percent_op = mips_percent_op;
14223 limit = ARRAY_SIZE (mips_percent_op);
14224 }
14225
14226 for (i = 0; i < limit; i++)
14227 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
14228 {
14229 int len = strlen (percent_op[i].str);
14230
14231 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
14232 continue;
14233
14234 *str += strlen (percent_op[i].str);
14235 *reloc = percent_op[i].reloc;
14236
14237 /* Check whether the output BFD supports this relocation.
14238 If not, issue an error and fall back on something safe. */
14239 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
14240 {
14241 as_bad (_("relocation %s isn't supported by the current ABI"),
14242 percent_op[i].str);
14243 *reloc = BFD_RELOC_UNUSED;
14244 }
14245 return TRUE;
14246 }
14247 return FALSE;
14248 }
14249
14250
14251 /* Parse string STR as a 16-bit relocatable operand. Store the
14252 expression in *EP and the relocations in the array starting
14253 at RELOC. Return the number of relocation operators used.
14254
14255 On exit, EXPR_END points to the first character after the expression. */
14256
14257 static size_t
14258 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
14259 char *str)
14260 {
14261 bfd_reloc_code_real_type reversed_reloc[3];
14262 size_t reloc_index, i;
14263 int crux_depth, str_depth;
14264 char *crux;
14265
14266 /* Search for the start of the main expression, recoding relocations
14267 in REVERSED_RELOC. End the loop with CRUX pointing to the start
14268 of the main expression and with CRUX_DEPTH containing the number
14269 of open brackets at that point. */
14270 reloc_index = -1;
14271 str_depth = 0;
14272 do
14273 {
14274 reloc_index++;
14275 crux = str;
14276 crux_depth = str_depth;
14277
14278 /* Skip over whitespace and brackets, keeping count of the number
14279 of brackets. */
14280 while (*str == ' ' || *str == '\t' || *str == '(')
14281 if (*str++ == '(')
14282 str_depth++;
14283 }
14284 while (*str == '%'
14285 && reloc_index < (HAVE_NEWABI ? 3 : 1)
14286 && parse_relocation (&str, &reversed_reloc[reloc_index]));
14287
14288 my_getExpression (ep, crux);
14289 str = expr_end;
14290
14291 /* Match every open bracket. */
14292 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
14293 if (*str++ == ')')
14294 crux_depth--;
14295
14296 if (crux_depth > 0)
14297 as_bad (_("unclosed '('"));
14298
14299 expr_end = str;
14300
14301 if (reloc_index != 0)
14302 {
14303 prev_reloc_op_frag = frag_now;
14304 for (i = 0; i < reloc_index; i++)
14305 reloc[i] = reversed_reloc[reloc_index - 1 - i];
14306 }
14307
14308 return reloc_index;
14309 }
14310
14311 static void
14312 my_getExpression (expressionS *ep, char *str)
14313 {
14314 char *save_in;
14315
14316 save_in = input_line_pointer;
14317 input_line_pointer = str;
14318 expression (ep);
14319 expr_end = input_line_pointer;
14320 input_line_pointer = save_in;
14321 }
14322
14323 char *
14324 md_atof (int type, char *litP, int *sizeP)
14325 {
14326 return ieee_md_atof (type, litP, sizeP, target_big_endian);
14327 }
14328
14329 void
14330 md_number_to_chars (char *buf, valueT val, int n)
14331 {
14332 if (target_big_endian)
14333 number_to_chars_bigendian (buf, val, n);
14334 else
14335 number_to_chars_littleendian (buf, val, n);
14336 }
14337 \f
14338 #ifdef OBJ_ELF
14339 static int support_64bit_objects(void)
14340 {
14341 const char **list, **l;
14342 int yes;
14343
14344 list = bfd_target_list ();
14345 for (l = list; *l != NULL; l++)
14346 if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
14347 || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
14348 break;
14349 yes = (*l != NULL);
14350 free (list);
14351 return yes;
14352 }
14353 #endif /* OBJ_ELF */
14354
14355 const char *md_shortopts = "O::g::G:";
14356
14357 enum options
14358 {
14359 OPTION_MARCH = OPTION_MD_BASE,
14360 OPTION_MTUNE,
14361 OPTION_MIPS1,
14362 OPTION_MIPS2,
14363 OPTION_MIPS3,
14364 OPTION_MIPS4,
14365 OPTION_MIPS5,
14366 OPTION_MIPS32,
14367 OPTION_MIPS64,
14368 OPTION_MIPS32R2,
14369 OPTION_MIPS64R2,
14370 OPTION_MIPS16,
14371 OPTION_NO_MIPS16,
14372 OPTION_MIPS3D,
14373 OPTION_NO_MIPS3D,
14374 OPTION_MDMX,
14375 OPTION_NO_MDMX,
14376 OPTION_DSP,
14377 OPTION_NO_DSP,
14378 OPTION_MT,
14379 OPTION_NO_MT,
14380 OPTION_SMARTMIPS,
14381 OPTION_NO_SMARTMIPS,
14382 OPTION_DSPR2,
14383 OPTION_NO_DSPR2,
14384 OPTION_MICROMIPS,
14385 OPTION_NO_MICROMIPS,
14386 OPTION_MCU,
14387 OPTION_NO_MCU,
14388 OPTION_COMPAT_ARCH_BASE,
14389 OPTION_M4650,
14390 OPTION_NO_M4650,
14391 OPTION_M4010,
14392 OPTION_NO_M4010,
14393 OPTION_M4100,
14394 OPTION_NO_M4100,
14395 OPTION_M3900,
14396 OPTION_NO_M3900,
14397 OPTION_M7000_HILO_FIX,
14398 OPTION_MNO_7000_HILO_FIX,
14399 OPTION_FIX_24K,
14400 OPTION_NO_FIX_24K,
14401 OPTION_FIX_LOONGSON2F_JUMP,
14402 OPTION_NO_FIX_LOONGSON2F_JUMP,
14403 OPTION_FIX_LOONGSON2F_NOP,
14404 OPTION_NO_FIX_LOONGSON2F_NOP,
14405 OPTION_FIX_VR4120,
14406 OPTION_NO_FIX_VR4120,
14407 OPTION_FIX_VR4130,
14408 OPTION_NO_FIX_VR4130,
14409 OPTION_FIX_CN63XXP1,
14410 OPTION_NO_FIX_CN63XXP1,
14411 OPTION_TRAP,
14412 OPTION_BREAK,
14413 OPTION_EB,
14414 OPTION_EL,
14415 OPTION_FP32,
14416 OPTION_GP32,
14417 OPTION_CONSTRUCT_FLOATS,
14418 OPTION_NO_CONSTRUCT_FLOATS,
14419 OPTION_FP64,
14420 OPTION_GP64,
14421 OPTION_RELAX_BRANCH,
14422 OPTION_NO_RELAX_BRANCH,
14423 OPTION_MSHARED,
14424 OPTION_MNO_SHARED,
14425 OPTION_MSYM32,
14426 OPTION_MNO_SYM32,
14427 OPTION_SOFT_FLOAT,
14428 OPTION_HARD_FLOAT,
14429 OPTION_SINGLE_FLOAT,
14430 OPTION_DOUBLE_FLOAT,
14431 OPTION_32,
14432 #ifdef OBJ_ELF
14433 OPTION_CALL_SHARED,
14434 OPTION_CALL_NONPIC,
14435 OPTION_NON_SHARED,
14436 OPTION_XGOT,
14437 OPTION_MABI,
14438 OPTION_N32,
14439 OPTION_64,
14440 OPTION_MDEBUG,
14441 OPTION_NO_MDEBUG,
14442 OPTION_PDR,
14443 OPTION_NO_PDR,
14444 OPTION_MVXWORKS_PIC,
14445 #endif /* OBJ_ELF */
14446 OPTION_END_OF_ENUM
14447 };
14448
14449 struct option md_longopts[] =
14450 {
14451 /* Options which specify architecture. */
14452 {"march", required_argument, NULL, OPTION_MARCH},
14453 {"mtune", required_argument, NULL, OPTION_MTUNE},
14454 {"mips0", no_argument, NULL, OPTION_MIPS1},
14455 {"mips1", no_argument, NULL, OPTION_MIPS1},
14456 {"mips2", no_argument, NULL, OPTION_MIPS2},
14457 {"mips3", no_argument, NULL, OPTION_MIPS3},
14458 {"mips4", no_argument, NULL, OPTION_MIPS4},
14459 {"mips5", no_argument, NULL, OPTION_MIPS5},
14460 {"mips32", no_argument, NULL, OPTION_MIPS32},
14461 {"mips64", no_argument, NULL, OPTION_MIPS64},
14462 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
14463 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
14464
14465 /* Options which specify Application Specific Extensions (ASEs). */
14466 {"mips16", no_argument, NULL, OPTION_MIPS16},
14467 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
14468 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
14469 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
14470 {"mdmx", no_argument, NULL, OPTION_MDMX},
14471 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
14472 {"mdsp", no_argument, NULL, OPTION_DSP},
14473 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
14474 {"mmt", no_argument, NULL, OPTION_MT},
14475 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
14476 {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
14477 {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
14478 {"mdspr2", no_argument, NULL, OPTION_DSPR2},
14479 {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
14480 {"mmicromips", no_argument, NULL, OPTION_MICROMIPS},
14481 {"mno-micromips", no_argument, NULL, OPTION_NO_MICROMIPS},
14482 {"mmcu", no_argument, NULL, OPTION_MCU},
14483 {"mno-mcu", no_argument, NULL, OPTION_NO_MCU},
14484
14485 /* Old-style architecture options. Don't add more of these. */
14486 {"m4650", no_argument, NULL, OPTION_M4650},
14487 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
14488 {"m4010", no_argument, NULL, OPTION_M4010},
14489 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
14490 {"m4100", no_argument, NULL, OPTION_M4100},
14491 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
14492 {"m3900", no_argument, NULL, OPTION_M3900},
14493 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
14494
14495 /* Options which enable bug fixes. */
14496 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
14497 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
14498 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
14499 {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
14500 {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
14501 {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
14502 {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
14503 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
14504 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
14505 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
14506 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
14507 {"mfix-24k", no_argument, NULL, OPTION_FIX_24K},
14508 {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
14509 {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
14510 {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
14511
14512 /* Miscellaneous options. */
14513 {"trap", no_argument, NULL, OPTION_TRAP},
14514 {"no-break", no_argument, NULL, OPTION_TRAP},
14515 {"break", no_argument, NULL, OPTION_BREAK},
14516 {"no-trap", no_argument, NULL, OPTION_BREAK},
14517 {"EB", no_argument, NULL, OPTION_EB},
14518 {"EL", no_argument, NULL, OPTION_EL},
14519 {"mfp32", no_argument, NULL, OPTION_FP32},
14520 {"mgp32", no_argument, NULL, OPTION_GP32},
14521 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
14522 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
14523 {"mfp64", no_argument, NULL, OPTION_FP64},
14524 {"mgp64", no_argument, NULL, OPTION_GP64},
14525 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
14526 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
14527 {"mshared", no_argument, NULL, OPTION_MSHARED},
14528 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
14529 {"msym32", no_argument, NULL, OPTION_MSYM32},
14530 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
14531 {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
14532 {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
14533 {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
14534 {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
14535
14536 /* Strictly speaking this next option is ELF specific,
14537 but we allow it for other ports as well in order to
14538 make testing easier. */
14539 {"32", no_argument, NULL, OPTION_32},
14540
14541 /* ELF-specific options. */
14542 #ifdef OBJ_ELF
14543 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
14544 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
14545 {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
14546 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
14547 {"xgot", no_argument, NULL, OPTION_XGOT},
14548 {"mabi", required_argument, NULL, OPTION_MABI},
14549 {"n32", no_argument, NULL, OPTION_N32},
14550 {"64", no_argument, NULL, OPTION_64},
14551 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
14552 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
14553 {"mpdr", no_argument, NULL, OPTION_PDR},
14554 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
14555 {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
14556 #endif /* OBJ_ELF */
14557
14558 {NULL, no_argument, NULL, 0}
14559 };
14560 size_t md_longopts_size = sizeof (md_longopts);
14561
14562 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
14563 NEW_VALUE. Warn if another value was already specified. Note:
14564 we have to defer parsing the -march and -mtune arguments in order
14565 to handle 'from-abi' correctly, since the ABI might be specified
14566 in a later argument. */
14567
14568 static void
14569 mips_set_option_string (const char **string_ptr, const char *new_value)
14570 {
14571 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
14572 as_warn (_("A different %s was already specified, is now %s"),
14573 string_ptr == &mips_arch_string ? "-march" : "-mtune",
14574 new_value);
14575
14576 *string_ptr = new_value;
14577 }
14578
14579 int
14580 md_parse_option (int c, char *arg)
14581 {
14582 switch (c)
14583 {
14584 case OPTION_CONSTRUCT_FLOATS:
14585 mips_disable_float_construction = 0;
14586 break;
14587
14588 case OPTION_NO_CONSTRUCT_FLOATS:
14589 mips_disable_float_construction = 1;
14590 break;
14591
14592 case OPTION_TRAP:
14593 mips_trap = 1;
14594 break;
14595
14596 case OPTION_BREAK:
14597 mips_trap = 0;
14598 break;
14599
14600 case OPTION_EB:
14601 target_big_endian = 1;
14602 break;
14603
14604 case OPTION_EL:
14605 target_big_endian = 0;
14606 break;
14607
14608 case 'O':
14609 if (arg == NULL)
14610 mips_optimize = 1;
14611 else if (arg[0] == '0')
14612 mips_optimize = 0;
14613 else if (arg[0] == '1')
14614 mips_optimize = 1;
14615 else
14616 mips_optimize = 2;
14617 break;
14618
14619 case 'g':
14620 if (arg == NULL)
14621 mips_debug = 2;
14622 else
14623 mips_debug = atoi (arg);
14624 break;
14625
14626 case OPTION_MIPS1:
14627 file_mips_isa = ISA_MIPS1;
14628 break;
14629
14630 case OPTION_MIPS2:
14631 file_mips_isa = ISA_MIPS2;
14632 break;
14633
14634 case OPTION_MIPS3:
14635 file_mips_isa = ISA_MIPS3;
14636 break;
14637
14638 case OPTION_MIPS4:
14639 file_mips_isa = ISA_MIPS4;
14640 break;
14641
14642 case OPTION_MIPS5:
14643 file_mips_isa = ISA_MIPS5;
14644 break;
14645
14646 case OPTION_MIPS32:
14647 file_mips_isa = ISA_MIPS32;
14648 break;
14649
14650 case OPTION_MIPS32R2:
14651 file_mips_isa = ISA_MIPS32R2;
14652 break;
14653
14654 case OPTION_MIPS64R2:
14655 file_mips_isa = ISA_MIPS64R2;
14656 break;
14657
14658 case OPTION_MIPS64:
14659 file_mips_isa = ISA_MIPS64;
14660 break;
14661
14662 case OPTION_MTUNE:
14663 mips_set_option_string (&mips_tune_string, arg);
14664 break;
14665
14666 case OPTION_MARCH:
14667 mips_set_option_string (&mips_arch_string, arg);
14668 break;
14669
14670 case OPTION_M4650:
14671 mips_set_option_string (&mips_arch_string, "4650");
14672 mips_set_option_string (&mips_tune_string, "4650");
14673 break;
14674
14675 case OPTION_NO_M4650:
14676 break;
14677
14678 case OPTION_M4010:
14679 mips_set_option_string (&mips_arch_string, "4010");
14680 mips_set_option_string (&mips_tune_string, "4010");
14681 break;
14682
14683 case OPTION_NO_M4010:
14684 break;
14685
14686 case OPTION_M4100:
14687 mips_set_option_string (&mips_arch_string, "4100");
14688 mips_set_option_string (&mips_tune_string, "4100");
14689 break;
14690
14691 case OPTION_NO_M4100:
14692 break;
14693
14694 case OPTION_M3900:
14695 mips_set_option_string (&mips_arch_string, "3900");
14696 mips_set_option_string (&mips_tune_string, "3900");
14697 break;
14698
14699 case OPTION_NO_M3900:
14700 break;
14701
14702 case OPTION_MDMX:
14703 mips_opts.ase_mdmx = 1;
14704 break;
14705
14706 case OPTION_NO_MDMX:
14707 mips_opts.ase_mdmx = 0;
14708 break;
14709
14710 case OPTION_DSP:
14711 mips_opts.ase_dsp = 1;
14712 mips_opts.ase_dspr2 = 0;
14713 break;
14714
14715 case OPTION_NO_DSP:
14716 mips_opts.ase_dsp = 0;
14717 mips_opts.ase_dspr2 = 0;
14718 break;
14719
14720 case OPTION_DSPR2:
14721 mips_opts.ase_dspr2 = 1;
14722 mips_opts.ase_dsp = 1;
14723 break;
14724
14725 case OPTION_NO_DSPR2:
14726 mips_opts.ase_dspr2 = 0;
14727 mips_opts.ase_dsp = 0;
14728 break;
14729
14730 case OPTION_MT:
14731 mips_opts.ase_mt = 1;
14732 break;
14733
14734 case OPTION_NO_MT:
14735 mips_opts.ase_mt = 0;
14736 break;
14737
14738 case OPTION_MCU:
14739 mips_opts.ase_mcu = 1;
14740 break;
14741
14742 case OPTION_NO_MCU:
14743 mips_opts.ase_mcu = 0;
14744 break;
14745
14746 case OPTION_MICROMIPS:
14747 if (mips_opts.mips16 == 1)
14748 {
14749 as_bad (_("-mmicromips cannot be used with -mips16"));
14750 return 0;
14751 }
14752 mips_opts.micromips = 1;
14753 mips_no_prev_insn ();
14754 break;
14755
14756 case OPTION_NO_MICROMIPS:
14757 mips_opts.micromips = 0;
14758 mips_no_prev_insn ();
14759 break;
14760
14761 case OPTION_MIPS16:
14762 if (mips_opts.micromips == 1)
14763 {
14764 as_bad (_("-mips16 cannot be used with -micromips"));
14765 return 0;
14766 }
14767 mips_opts.mips16 = 1;
14768 mips_no_prev_insn ();
14769 break;
14770
14771 case OPTION_NO_MIPS16:
14772 mips_opts.mips16 = 0;
14773 mips_no_prev_insn ();
14774 break;
14775
14776 case OPTION_MIPS3D:
14777 mips_opts.ase_mips3d = 1;
14778 break;
14779
14780 case OPTION_NO_MIPS3D:
14781 mips_opts.ase_mips3d = 0;
14782 break;
14783
14784 case OPTION_SMARTMIPS:
14785 mips_opts.ase_smartmips = 1;
14786 break;
14787
14788 case OPTION_NO_SMARTMIPS:
14789 mips_opts.ase_smartmips = 0;
14790 break;
14791
14792 case OPTION_FIX_24K:
14793 mips_fix_24k = 1;
14794 break;
14795
14796 case OPTION_NO_FIX_24K:
14797 mips_fix_24k = 0;
14798 break;
14799
14800 case OPTION_FIX_LOONGSON2F_JUMP:
14801 mips_fix_loongson2f_jump = TRUE;
14802 break;
14803
14804 case OPTION_NO_FIX_LOONGSON2F_JUMP:
14805 mips_fix_loongson2f_jump = FALSE;
14806 break;
14807
14808 case OPTION_FIX_LOONGSON2F_NOP:
14809 mips_fix_loongson2f_nop = TRUE;
14810 break;
14811
14812 case OPTION_NO_FIX_LOONGSON2F_NOP:
14813 mips_fix_loongson2f_nop = FALSE;
14814 break;
14815
14816 case OPTION_FIX_VR4120:
14817 mips_fix_vr4120 = 1;
14818 break;
14819
14820 case OPTION_NO_FIX_VR4120:
14821 mips_fix_vr4120 = 0;
14822 break;
14823
14824 case OPTION_FIX_VR4130:
14825 mips_fix_vr4130 = 1;
14826 break;
14827
14828 case OPTION_NO_FIX_VR4130:
14829 mips_fix_vr4130 = 0;
14830 break;
14831
14832 case OPTION_FIX_CN63XXP1:
14833 mips_fix_cn63xxp1 = TRUE;
14834 break;
14835
14836 case OPTION_NO_FIX_CN63XXP1:
14837 mips_fix_cn63xxp1 = FALSE;
14838 break;
14839
14840 case OPTION_RELAX_BRANCH:
14841 mips_relax_branch = 1;
14842 break;
14843
14844 case OPTION_NO_RELAX_BRANCH:
14845 mips_relax_branch = 0;
14846 break;
14847
14848 case OPTION_MSHARED:
14849 mips_in_shared = TRUE;
14850 break;
14851
14852 case OPTION_MNO_SHARED:
14853 mips_in_shared = FALSE;
14854 break;
14855
14856 case OPTION_MSYM32:
14857 mips_opts.sym32 = TRUE;
14858 break;
14859
14860 case OPTION_MNO_SYM32:
14861 mips_opts.sym32 = FALSE;
14862 break;
14863
14864 #ifdef OBJ_ELF
14865 /* When generating ELF code, we permit -KPIC and -call_shared to
14866 select SVR4_PIC, and -non_shared to select no PIC. This is
14867 intended to be compatible with Irix 5. */
14868 case OPTION_CALL_SHARED:
14869 if (!IS_ELF)
14870 {
14871 as_bad (_("-call_shared is supported only for ELF format"));
14872 return 0;
14873 }
14874 mips_pic = SVR4_PIC;
14875 mips_abicalls = TRUE;
14876 break;
14877
14878 case OPTION_CALL_NONPIC:
14879 if (!IS_ELF)
14880 {
14881 as_bad (_("-call_nonpic is supported only for ELF format"));
14882 return 0;
14883 }
14884 mips_pic = NO_PIC;
14885 mips_abicalls = TRUE;
14886 break;
14887
14888 case OPTION_NON_SHARED:
14889 if (!IS_ELF)
14890 {
14891 as_bad (_("-non_shared is supported only for ELF format"));
14892 return 0;
14893 }
14894 mips_pic = NO_PIC;
14895 mips_abicalls = FALSE;
14896 break;
14897
14898 /* The -xgot option tells the assembler to use 32 bit offsets
14899 when accessing the got in SVR4_PIC mode. It is for Irix
14900 compatibility. */
14901 case OPTION_XGOT:
14902 mips_big_got = 1;
14903 break;
14904 #endif /* OBJ_ELF */
14905
14906 case 'G':
14907 g_switch_value = atoi (arg);
14908 g_switch_seen = 1;
14909 break;
14910
14911 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
14912 and -mabi=64. */
14913 case OPTION_32:
14914 if (IS_ELF)
14915 mips_abi = O32_ABI;
14916 /* We silently ignore -32 for non-ELF targets. This greatly
14917 simplifies the construction of the MIPS GAS test cases. */
14918 break;
14919
14920 #ifdef OBJ_ELF
14921 case OPTION_N32:
14922 if (!IS_ELF)
14923 {
14924 as_bad (_("-n32 is supported for ELF format only"));
14925 return 0;
14926 }
14927 mips_abi = N32_ABI;
14928 break;
14929
14930 case OPTION_64:
14931 if (!IS_ELF)
14932 {
14933 as_bad (_("-64 is supported for ELF format only"));
14934 return 0;
14935 }
14936 mips_abi = N64_ABI;
14937 if (!support_64bit_objects())
14938 as_fatal (_("No compiled in support for 64 bit object file format"));
14939 break;
14940 #endif /* OBJ_ELF */
14941
14942 case OPTION_GP32:
14943 file_mips_gp32 = 1;
14944 break;
14945
14946 case OPTION_GP64:
14947 file_mips_gp32 = 0;
14948 break;
14949
14950 case OPTION_FP32:
14951 file_mips_fp32 = 1;
14952 break;
14953
14954 case OPTION_FP64:
14955 file_mips_fp32 = 0;
14956 break;
14957
14958 case OPTION_SINGLE_FLOAT:
14959 file_mips_single_float = 1;
14960 break;
14961
14962 case OPTION_DOUBLE_FLOAT:
14963 file_mips_single_float = 0;
14964 break;
14965
14966 case OPTION_SOFT_FLOAT:
14967 file_mips_soft_float = 1;
14968 break;
14969
14970 case OPTION_HARD_FLOAT:
14971 file_mips_soft_float = 0;
14972 break;
14973
14974 #ifdef OBJ_ELF
14975 case OPTION_MABI:
14976 if (!IS_ELF)
14977 {
14978 as_bad (_("-mabi is supported for ELF format only"));
14979 return 0;
14980 }
14981 if (strcmp (arg, "32") == 0)
14982 mips_abi = O32_ABI;
14983 else if (strcmp (arg, "o64") == 0)
14984 mips_abi = O64_ABI;
14985 else if (strcmp (arg, "n32") == 0)
14986 mips_abi = N32_ABI;
14987 else if (strcmp (arg, "64") == 0)
14988 {
14989 mips_abi = N64_ABI;
14990 if (! support_64bit_objects())
14991 as_fatal (_("No compiled in support for 64 bit object file "
14992 "format"));
14993 }
14994 else if (strcmp (arg, "eabi") == 0)
14995 mips_abi = EABI_ABI;
14996 else
14997 {
14998 as_fatal (_("invalid abi -mabi=%s"), arg);
14999 return 0;
15000 }
15001 break;
15002 #endif /* OBJ_ELF */
15003
15004 case OPTION_M7000_HILO_FIX:
15005 mips_7000_hilo_fix = TRUE;
15006 break;
15007
15008 case OPTION_MNO_7000_HILO_FIX:
15009 mips_7000_hilo_fix = FALSE;
15010 break;
15011
15012 #ifdef OBJ_ELF
15013 case OPTION_MDEBUG:
15014 mips_flag_mdebug = TRUE;
15015 break;
15016
15017 case OPTION_NO_MDEBUG:
15018 mips_flag_mdebug = FALSE;
15019 break;
15020
15021 case OPTION_PDR:
15022 mips_flag_pdr = TRUE;
15023 break;
15024
15025 case OPTION_NO_PDR:
15026 mips_flag_pdr = FALSE;
15027 break;
15028
15029 case OPTION_MVXWORKS_PIC:
15030 mips_pic = VXWORKS_PIC;
15031 break;
15032 #endif /* OBJ_ELF */
15033
15034 default:
15035 return 0;
15036 }
15037
15038 mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
15039
15040 return 1;
15041 }
15042 \f
15043 /* Set up globals to generate code for the ISA or processor
15044 described by INFO. */
15045
15046 static void
15047 mips_set_architecture (const struct mips_cpu_info *info)
15048 {
15049 if (info != 0)
15050 {
15051 file_mips_arch = info->cpu;
15052 mips_opts.arch = info->cpu;
15053 mips_opts.isa = info->isa;
15054 }
15055 }
15056
15057
15058 /* Likewise for tuning. */
15059
15060 static void
15061 mips_set_tune (const struct mips_cpu_info *info)
15062 {
15063 if (info != 0)
15064 mips_tune = info->cpu;
15065 }
15066
15067
15068 void
15069 mips_after_parse_args (void)
15070 {
15071 const struct mips_cpu_info *arch_info = 0;
15072 const struct mips_cpu_info *tune_info = 0;
15073
15074 /* GP relative stuff not working for PE */
15075 if (strncmp (TARGET_OS, "pe", 2) == 0)
15076 {
15077 if (g_switch_seen && g_switch_value != 0)
15078 as_bad (_("-G not supported in this configuration."));
15079 g_switch_value = 0;
15080 }
15081
15082 if (mips_abi == NO_ABI)
15083 mips_abi = MIPS_DEFAULT_ABI;
15084
15085 /* The following code determines the architecture and register size.
15086 Similar code was added to GCC 3.3 (see override_options() in
15087 config/mips/mips.c). The GAS and GCC code should be kept in sync
15088 as much as possible. */
15089
15090 if (mips_arch_string != 0)
15091 arch_info = mips_parse_cpu ("-march", mips_arch_string);
15092
15093 if (file_mips_isa != ISA_UNKNOWN)
15094 {
15095 /* Handle -mipsN. At this point, file_mips_isa contains the
15096 ISA level specified by -mipsN, while arch_info->isa contains
15097 the -march selection (if any). */
15098 if (arch_info != 0)
15099 {
15100 /* -march takes precedence over -mipsN, since it is more descriptive.
15101 There's no harm in specifying both as long as the ISA levels
15102 are the same. */
15103 if (file_mips_isa != arch_info->isa)
15104 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
15105 mips_cpu_info_from_isa (file_mips_isa)->name,
15106 mips_cpu_info_from_isa (arch_info->isa)->name);
15107 }
15108 else
15109 arch_info = mips_cpu_info_from_isa (file_mips_isa);
15110 }
15111
15112 if (arch_info == 0)
15113 {
15114 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
15115 gas_assert (arch_info);
15116 }
15117
15118 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
15119 as_bad (_("-march=%s is not compatible with the selected ABI"),
15120 arch_info->name);
15121
15122 mips_set_architecture (arch_info);
15123
15124 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
15125 if (mips_tune_string != 0)
15126 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
15127
15128 if (tune_info == 0)
15129 mips_set_tune (arch_info);
15130 else
15131 mips_set_tune (tune_info);
15132
15133 if (file_mips_gp32 >= 0)
15134 {
15135 /* The user specified the size of the integer registers. Make sure
15136 it agrees with the ABI and ISA. */
15137 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
15138 as_bad (_("-mgp64 used with a 32-bit processor"));
15139 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
15140 as_bad (_("-mgp32 used with a 64-bit ABI"));
15141 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
15142 as_bad (_("-mgp64 used with a 32-bit ABI"));
15143 }
15144 else
15145 {
15146 /* Infer the integer register size from the ABI and processor.
15147 Restrict ourselves to 32-bit registers if that's all the
15148 processor has, or if the ABI cannot handle 64-bit registers. */
15149 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
15150 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
15151 }
15152
15153 switch (file_mips_fp32)
15154 {
15155 default:
15156 case -1:
15157 /* No user specified float register size.
15158 ??? GAS treats single-float processors as though they had 64-bit
15159 float registers (although it complains when double-precision
15160 instructions are used). As things stand, saying they have 32-bit
15161 registers would lead to spurious "register must be even" messages.
15162 So here we assume float registers are never smaller than the
15163 integer ones. */
15164 if (file_mips_gp32 == 0)
15165 /* 64-bit integer registers implies 64-bit float registers. */
15166 file_mips_fp32 = 0;
15167 else if ((mips_opts.ase_mips3d > 0 || mips_opts.ase_mdmx > 0)
15168 && ISA_HAS_64BIT_FPRS (mips_opts.isa))
15169 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
15170 file_mips_fp32 = 0;
15171 else
15172 /* 32-bit float registers. */
15173 file_mips_fp32 = 1;
15174 break;
15175
15176 /* The user specified the size of the float registers. Check if it
15177 agrees with the ABI and ISA. */
15178 case 0:
15179 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
15180 as_bad (_("-mfp64 used with a 32-bit fpu"));
15181 else if (ABI_NEEDS_32BIT_REGS (mips_abi)
15182 && !ISA_HAS_MXHC1 (mips_opts.isa))
15183 as_warn (_("-mfp64 used with a 32-bit ABI"));
15184 break;
15185 case 1:
15186 if (ABI_NEEDS_64BIT_REGS (mips_abi))
15187 as_warn (_("-mfp32 used with a 64-bit ABI"));
15188 break;
15189 }
15190
15191 /* End of GCC-shared inference code. */
15192
15193 /* This flag is set when we have a 64-bit capable CPU but use only
15194 32-bit wide registers. Note that EABI does not use it. */
15195 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
15196 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
15197 || mips_abi == O32_ABI))
15198 mips_32bitmode = 1;
15199
15200 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
15201 as_bad (_("trap exception not supported at ISA 1"));
15202
15203 /* If the selected architecture includes support for ASEs, enable
15204 generation of code for them. */
15205 if (mips_opts.mips16 == -1)
15206 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
15207 if (mips_opts.micromips == -1)
15208 mips_opts.micromips = (CPU_HAS_MICROMIPS (file_mips_arch)) ? 1 : 0;
15209 if (mips_opts.ase_mips3d == -1)
15210 mips_opts.ase_mips3d = ((arch_info->flags & MIPS_CPU_ASE_MIPS3D)
15211 && file_mips_fp32 == 0) ? 1 : 0;
15212 if (mips_opts.ase_mips3d && file_mips_fp32 == 1)
15213 as_bad (_("-mfp32 used with -mips3d"));
15214
15215 if (mips_opts.ase_mdmx == -1)
15216 mips_opts.ase_mdmx = ((arch_info->flags & MIPS_CPU_ASE_MDMX)
15217 && file_mips_fp32 == 0) ? 1 : 0;
15218 if (mips_opts.ase_mdmx && file_mips_fp32 == 1)
15219 as_bad (_("-mfp32 used with -mdmx"));
15220
15221 if (mips_opts.ase_smartmips == -1)
15222 mips_opts.ase_smartmips = (arch_info->flags & MIPS_CPU_ASE_SMARTMIPS) ? 1 : 0;
15223 if (mips_opts.ase_smartmips && !ISA_SUPPORTS_SMARTMIPS)
15224 as_warn (_("%s ISA does not support SmartMIPS"),
15225 mips_cpu_info_from_isa (mips_opts.isa)->name);
15226
15227 if (mips_opts.ase_dsp == -1)
15228 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
15229 if (mips_opts.ase_dsp && !ISA_SUPPORTS_DSP_ASE)
15230 as_warn (_("%s ISA does not support DSP ASE"),
15231 mips_cpu_info_from_isa (mips_opts.isa)->name);
15232
15233 if (mips_opts.ase_dspr2 == -1)
15234 {
15235 mips_opts.ase_dspr2 = (arch_info->flags & MIPS_CPU_ASE_DSPR2) ? 1 : 0;
15236 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
15237 }
15238 if (mips_opts.ase_dspr2 && !ISA_SUPPORTS_DSPR2_ASE)
15239 as_warn (_("%s ISA does not support DSP R2 ASE"),
15240 mips_cpu_info_from_isa (mips_opts.isa)->name);
15241
15242 if (mips_opts.ase_mt == -1)
15243 mips_opts.ase_mt = (arch_info->flags & MIPS_CPU_ASE_MT) ? 1 : 0;
15244 if (mips_opts.ase_mt && !ISA_SUPPORTS_MT_ASE)
15245 as_warn (_("%s ISA does not support MT ASE"),
15246 mips_cpu_info_from_isa (mips_opts.isa)->name);
15247
15248 if (mips_opts.ase_mcu == -1)
15249 mips_opts.ase_mcu = (arch_info->flags & MIPS_CPU_ASE_MCU) ? 1 : 0;
15250 if (mips_opts.ase_mcu && !ISA_SUPPORTS_MCU_ASE)
15251 as_warn (_("%s ISA does not support MCU ASE"),
15252 mips_cpu_info_from_isa (mips_opts.isa)->name);
15253
15254 file_mips_isa = mips_opts.isa;
15255 file_ase_mips3d = mips_opts.ase_mips3d;
15256 file_ase_mdmx = mips_opts.ase_mdmx;
15257 file_ase_smartmips = mips_opts.ase_smartmips;
15258 file_ase_dsp = mips_opts.ase_dsp;
15259 file_ase_dspr2 = mips_opts.ase_dspr2;
15260 file_ase_mt = mips_opts.ase_mt;
15261 mips_opts.gp32 = file_mips_gp32;
15262 mips_opts.fp32 = file_mips_fp32;
15263 mips_opts.soft_float = file_mips_soft_float;
15264 mips_opts.single_float = file_mips_single_float;
15265
15266 if (mips_flag_mdebug < 0)
15267 {
15268 #ifdef OBJ_MAYBE_ECOFF
15269 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
15270 mips_flag_mdebug = 1;
15271 else
15272 #endif /* OBJ_MAYBE_ECOFF */
15273 mips_flag_mdebug = 0;
15274 }
15275 }
15276 \f
15277 void
15278 mips_init_after_args (void)
15279 {
15280 /* initialize opcodes */
15281 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
15282 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
15283 }
15284
15285 long
15286 md_pcrel_from (fixS *fixP)
15287 {
15288 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
15289 switch (fixP->fx_r_type)
15290 {
15291 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15292 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15293 /* Return the address of the delay slot. */
15294 return addr + 2;
15295
15296 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15297 case BFD_RELOC_MICROMIPS_JMP:
15298 case BFD_RELOC_16_PCREL_S2:
15299 case BFD_RELOC_MIPS_JMP:
15300 /* Return the address of the delay slot. */
15301 return addr + 4;
15302
15303 default:
15304 /* We have no relocation type for PC relative MIPS16 instructions. */
15305 if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
15306 as_bad_where (fixP->fx_file, fixP->fx_line,
15307 _("PC relative MIPS16 instruction references a different section"));
15308 return addr;
15309 }
15310 }
15311
15312 /* This is called before the symbol table is processed. In order to
15313 work with gcc when using mips-tfile, we must keep all local labels.
15314 However, in other cases, we want to discard them. If we were
15315 called with -g, but we didn't see any debugging information, it may
15316 mean that gcc is smuggling debugging information through to
15317 mips-tfile, in which case we must generate all local labels. */
15318
15319 void
15320 mips_frob_file_before_adjust (void)
15321 {
15322 #ifndef NO_ECOFF_DEBUGGING
15323 if (ECOFF_DEBUGGING
15324 && mips_debug != 0
15325 && ! ecoff_debugging_seen)
15326 flag_keep_locals = 1;
15327 #endif
15328 }
15329
15330 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
15331 the corresponding LO16 reloc. This is called before md_apply_fix and
15332 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
15333 relocation operators.
15334
15335 For our purposes, a %lo() expression matches a %got() or %hi()
15336 expression if:
15337
15338 (a) it refers to the same symbol; and
15339 (b) the offset applied in the %lo() expression is no lower than
15340 the offset applied in the %got() or %hi().
15341
15342 (b) allows us to cope with code like:
15343
15344 lui $4,%hi(foo)
15345 lh $4,%lo(foo+2)($4)
15346
15347 ...which is legal on RELA targets, and has a well-defined behaviour
15348 if the user knows that adding 2 to "foo" will not induce a carry to
15349 the high 16 bits.
15350
15351 When several %lo()s match a particular %got() or %hi(), we use the
15352 following rules to distinguish them:
15353
15354 (1) %lo()s with smaller offsets are a better match than %lo()s with
15355 higher offsets.
15356
15357 (2) %lo()s with no matching %got() or %hi() are better than those
15358 that already have a matching %got() or %hi().
15359
15360 (3) later %lo()s are better than earlier %lo()s.
15361
15362 These rules are applied in order.
15363
15364 (1) means, among other things, that %lo()s with identical offsets are
15365 chosen if they exist.
15366
15367 (2) means that we won't associate several high-part relocations with
15368 the same low-part relocation unless there's no alternative. Having
15369 several high parts for the same low part is a GNU extension; this rule
15370 allows careful users to avoid it.
15371
15372 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
15373 with the last high-part relocation being at the front of the list.
15374 It therefore makes sense to choose the last matching low-part
15375 relocation, all other things being equal. It's also easier
15376 to code that way. */
15377
15378 void
15379 mips_frob_file (void)
15380 {
15381 struct mips_hi_fixup *l;
15382 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
15383
15384 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
15385 {
15386 segment_info_type *seginfo;
15387 bfd_boolean matched_lo_p;
15388 fixS **hi_pos, **lo_pos, **pos;
15389
15390 gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
15391
15392 /* If a GOT16 relocation turns out to be against a global symbol,
15393 there isn't supposed to be a matching LO. Ignore %gots against
15394 constants; we'll report an error for those later. */
15395 if (got16_reloc_p (l->fixp->fx_r_type)
15396 && !(l->fixp->fx_addsy
15397 && pic_need_relax (l->fixp->fx_addsy, l->seg)))
15398 continue;
15399
15400 /* Check quickly whether the next fixup happens to be a matching %lo. */
15401 if (fixup_has_matching_lo_p (l->fixp))
15402 continue;
15403
15404 seginfo = seg_info (l->seg);
15405
15406 /* Set HI_POS to the position of this relocation in the chain.
15407 Set LO_POS to the position of the chosen low-part relocation.
15408 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
15409 relocation that matches an immediately-preceding high-part
15410 relocation. */
15411 hi_pos = NULL;
15412 lo_pos = NULL;
15413 matched_lo_p = FALSE;
15414 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
15415
15416 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
15417 {
15418 if (*pos == l->fixp)
15419 hi_pos = pos;
15420
15421 if ((*pos)->fx_r_type == looking_for_rtype
15422 && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
15423 && (*pos)->fx_offset >= l->fixp->fx_offset
15424 && (lo_pos == NULL
15425 || (*pos)->fx_offset < (*lo_pos)->fx_offset
15426 || (!matched_lo_p
15427 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
15428 lo_pos = pos;
15429
15430 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
15431 && fixup_has_matching_lo_p (*pos));
15432 }
15433
15434 /* If we found a match, remove the high-part relocation from its
15435 current position and insert it before the low-part relocation.
15436 Make the offsets match so that fixup_has_matching_lo_p()
15437 will return true.
15438
15439 We don't warn about unmatched high-part relocations since some
15440 versions of gcc have been known to emit dead "lui ...%hi(...)"
15441 instructions. */
15442 if (lo_pos != NULL)
15443 {
15444 l->fixp->fx_offset = (*lo_pos)->fx_offset;
15445 if (l->fixp->fx_next != *lo_pos)
15446 {
15447 *hi_pos = l->fixp->fx_next;
15448 l->fixp->fx_next = *lo_pos;
15449 *lo_pos = l->fixp;
15450 }
15451 }
15452 }
15453 }
15454
15455 int
15456 mips_force_relocation (fixS *fixp)
15457 {
15458 if (generic_force_reloc (fixp))
15459 return 1;
15460
15461 /* We want to keep BFD_RELOC_MICROMIPS_*_PCREL_S1 relocation,
15462 so that the linker relaxation can update targets. */
15463 if (fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
15464 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
15465 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1)
15466 return 1;
15467
15468 return 0;
15469 }
15470
15471 /* Read the instruction associated with RELOC from BUF. */
15472
15473 static unsigned int
15474 read_reloc_insn (char *buf, bfd_reloc_code_real_type reloc)
15475 {
15476 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
15477 return read_compressed_insn (buf, 4);
15478 else
15479 return read_insn (buf);
15480 }
15481
15482 /* Write instruction INSN to BUF, given that it has been relocated
15483 by RELOC. */
15484
15485 static void
15486 write_reloc_insn (char *buf, bfd_reloc_code_real_type reloc,
15487 unsigned long insn)
15488 {
15489 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
15490 write_compressed_insn (buf, insn, 4);
15491 else
15492 write_insn (buf, insn);
15493 }
15494
15495 /* Apply a fixup to the object file. */
15496
15497 void
15498 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
15499 {
15500 char *buf;
15501 unsigned long insn;
15502 reloc_howto_type *howto;
15503
15504 /* We ignore generic BFD relocations we don't know about. */
15505 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
15506 if (! howto)
15507 return;
15508
15509 gas_assert (fixP->fx_size == 2
15510 || fixP->fx_size == 4
15511 || fixP->fx_r_type == BFD_RELOC_16
15512 || fixP->fx_r_type == BFD_RELOC_64
15513 || fixP->fx_r_type == BFD_RELOC_CTOR
15514 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
15515 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_SUB
15516 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
15517 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
15518 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
15519
15520 buf = fixP->fx_frag->fr_literal + fixP->fx_where;
15521
15522 gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
15523 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
15524 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
15525 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1);
15526
15527 /* Don't treat parts of a composite relocation as done. There are two
15528 reasons for this:
15529
15530 (1) The second and third parts will be against 0 (RSS_UNDEF) but
15531 should nevertheless be emitted if the first part is.
15532
15533 (2) In normal usage, composite relocations are never assembly-time
15534 constants. The easiest way of dealing with the pathological
15535 exceptions is to generate a relocation against STN_UNDEF and
15536 leave everything up to the linker. */
15537 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
15538 fixP->fx_done = 1;
15539
15540 switch (fixP->fx_r_type)
15541 {
15542 case BFD_RELOC_MIPS_TLS_GD:
15543 case BFD_RELOC_MIPS_TLS_LDM:
15544 case BFD_RELOC_MIPS_TLS_DTPREL32:
15545 case BFD_RELOC_MIPS_TLS_DTPREL64:
15546 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
15547 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
15548 case BFD_RELOC_MIPS_TLS_GOTTPREL:
15549 case BFD_RELOC_MIPS_TLS_TPREL32:
15550 case BFD_RELOC_MIPS_TLS_TPREL64:
15551 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
15552 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
15553 case BFD_RELOC_MICROMIPS_TLS_GD:
15554 case BFD_RELOC_MICROMIPS_TLS_LDM:
15555 case BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16:
15556 case BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16:
15557 case BFD_RELOC_MICROMIPS_TLS_GOTTPREL:
15558 case BFD_RELOC_MICROMIPS_TLS_TPREL_HI16:
15559 case BFD_RELOC_MICROMIPS_TLS_TPREL_LO16:
15560 case BFD_RELOC_MIPS16_TLS_GD:
15561 case BFD_RELOC_MIPS16_TLS_LDM:
15562 case BFD_RELOC_MIPS16_TLS_DTPREL_HI16:
15563 case BFD_RELOC_MIPS16_TLS_DTPREL_LO16:
15564 case BFD_RELOC_MIPS16_TLS_GOTTPREL:
15565 case BFD_RELOC_MIPS16_TLS_TPREL_HI16:
15566 case BFD_RELOC_MIPS16_TLS_TPREL_LO16:
15567 if (!fixP->fx_addsy)
15568 {
15569 as_bad_where (fixP->fx_file, fixP->fx_line,
15570 _("TLS relocation against a constant"));
15571 break;
15572 }
15573 S_SET_THREAD_LOCAL (fixP->fx_addsy);
15574 /* fall through */
15575
15576 case BFD_RELOC_MIPS_JMP:
15577 case BFD_RELOC_MIPS_SHIFT5:
15578 case BFD_RELOC_MIPS_SHIFT6:
15579 case BFD_RELOC_MIPS_GOT_DISP:
15580 case BFD_RELOC_MIPS_GOT_PAGE:
15581 case BFD_RELOC_MIPS_GOT_OFST:
15582 case BFD_RELOC_MIPS_SUB:
15583 case BFD_RELOC_MIPS_INSERT_A:
15584 case BFD_RELOC_MIPS_INSERT_B:
15585 case BFD_RELOC_MIPS_DELETE:
15586 case BFD_RELOC_MIPS_HIGHEST:
15587 case BFD_RELOC_MIPS_HIGHER:
15588 case BFD_RELOC_MIPS_SCN_DISP:
15589 case BFD_RELOC_MIPS_REL16:
15590 case BFD_RELOC_MIPS_RELGOT:
15591 case BFD_RELOC_MIPS_JALR:
15592 case BFD_RELOC_HI16:
15593 case BFD_RELOC_HI16_S:
15594 case BFD_RELOC_LO16:
15595 case BFD_RELOC_GPREL16:
15596 case BFD_RELOC_MIPS_LITERAL:
15597 case BFD_RELOC_MIPS_CALL16:
15598 case BFD_RELOC_MIPS_GOT16:
15599 case BFD_RELOC_GPREL32:
15600 case BFD_RELOC_MIPS_GOT_HI16:
15601 case BFD_RELOC_MIPS_GOT_LO16:
15602 case BFD_RELOC_MIPS_CALL_HI16:
15603 case BFD_RELOC_MIPS_CALL_LO16:
15604 case BFD_RELOC_MIPS16_GPREL:
15605 case BFD_RELOC_MIPS16_GOT16:
15606 case BFD_RELOC_MIPS16_CALL16:
15607 case BFD_RELOC_MIPS16_HI16:
15608 case BFD_RELOC_MIPS16_HI16_S:
15609 case BFD_RELOC_MIPS16_LO16:
15610 case BFD_RELOC_MIPS16_JMP:
15611 case BFD_RELOC_MICROMIPS_JMP:
15612 case BFD_RELOC_MICROMIPS_GOT_DISP:
15613 case BFD_RELOC_MICROMIPS_GOT_PAGE:
15614 case BFD_RELOC_MICROMIPS_GOT_OFST:
15615 case BFD_RELOC_MICROMIPS_SUB:
15616 case BFD_RELOC_MICROMIPS_HIGHEST:
15617 case BFD_RELOC_MICROMIPS_HIGHER:
15618 case BFD_RELOC_MICROMIPS_SCN_DISP:
15619 case BFD_RELOC_MICROMIPS_JALR:
15620 case BFD_RELOC_MICROMIPS_HI16:
15621 case BFD_RELOC_MICROMIPS_HI16_S:
15622 case BFD_RELOC_MICROMIPS_LO16:
15623 case BFD_RELOC_MICROMIPS_GPREL16:
15624 case BFD_RELOC_MICROMIPS_LITERAL:
15625 case BFD_RELOC_MICROMIPS_CALL16:
15626 case BFD_RELOC_MICROMIPS_GOT16:
15627 case BFD_RELOC_MICROMIPS_GOT_HI16:
15628 case BFD_RELOC_MICROMIPS_GOT_LO16:
15629 case BFD_RELOC_MICROMIPS_CALL_HI16:
15630 case BFD_RELOC_MICROMIPS_CALL_LO16:
15631 if (fixP->fx_done)
15632 {
15633 offsetT value;
15634
15635 if (calculate_reloc (fixP->fx_r_type, *valP, &value))
15636 {
15637 insn = read_reloc_insn (buf, fixP->fx_r_type);
15638 if (mips16_reloc_p (fixP->fx_r_type))
15639 insn |= mips16_immed_extend (value, 16);
15640 else
15641 insn |= (value & 0xffff);
15642 write_reloc_insn (buf, fixP->fx_r_type, insn);
15643 }
15644 else
15645 as_bad_where (fixP->fx_file, fixP->fx_line,
15646 _("Unsupported constant in relocation"));
15647 }
15648 break;
15649
15650 case BFD_RELOC_64:
15651 /* This is handled like BFD_RELOC_32, but we output a sign
15652 extended value if we are only 32 bits. */
15653 if (fixP->fx_done)
15654 {
15655 if (8 <= sizeof (valueT))
15656 md_number_to_chars (buf, *valP, 8);
15657 else
15658 {
15659 valueT hiv;
15660
15661 if ((*valP & 0x80000000) != 0)
15662 hiv = 0xffffffff;
15663 else
15664 hiv = 0;
15665 md_number_to_chars (buf + (target_big_endian ? 4 : 0), *valP, 4);
15666 md_number_to_chars (buf + (target_big_endian ? 0 : 4), hiv, 4);
15667 }
15668 }
15669 break;
15670
15671 case BFD_RELOC_RVA:
15672 case BFD_RELOC_32:
15673 case BFD_RELOC_16:
15674 /* If we are deleting this reloc entry, we must fill in the
15675 value now. This can happen if we have a .word which is not
15676 resolved when it appears but is later defined. */
15677 if (fixP->fx_done)
15678 md_number_to_chars (buf, *valP, fixP->fx_size);
15679 break;
15680
15681 case BFD_RELOC_16_PCREL_S2:
15682 if ((*valP & 0x3) != 0)
15683 as_bad_where (fixP->fx_file, fixP->fx_line,
15684 _("Branch to misaligned address (%lx)"), (long) *valP);
15685
15686 /* We need to save the bits in the instruction since fixup_segment()
15687 might be deleting the relocation entry (i.e., a branch within
15688 the current segment). */
15689 if (! fixP->fx_done)
15690 break;
15691
15692 /* Update old instruction data. */
15693 insn = read_insn (buf);
15694
15695 if (*valP + 0x20000 <= 0x3ffff)
15696 {
15697 insn |= (*valP >> 2) & 0xffff;
15698 write_insn (buf, insn);
15699 }
15700 else if (mips_pic == NO_PIC
15701 && fixP->fx_done
15702 && fixP->fx_frag->fr_address >= text_section->vma
15703 && (fixP->fx_frag->fr_address
15704 < text_section->vma + bfd_get_section_size (text_section))
15705 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
15706 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
15707 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
15708 {
15709 /* The branch offset is too large. If this is an
15710 unconditional branch, and we are not generating PIC code,
15711 we can convert it to an absolute jump instruction. */
15712 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
15713 insn = 0x0c000000; /* jal */
15714 else
15715 insn = 0x08000000; /* j */
15716 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
15717 fixP->fx_done = 0;
15718 fixP->fx_addsy = section_symbol (text_section);
15719 *valP += md_pcrel_from (fixP);
15720 write_insn (buf, insn);
15721 }
15722 else
15723 {
15724 /* If we got here, we have branch-relaxation disabled,
15725 and there's nothing we can do to fix this instruction
15726 without turning it into a longer sequence. */
15727 as_bad_where (fixP->fx_file, fixP->fx_line,
15728 _("Branch out of range"));
15729 }
15730 break;
15731
15732 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15733 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15734 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15735 /* We adjust the offset back to even. */
15736 if ((*valP & 0x1) != 0)
15737 --(*valP);
15738
15739 if (! fixP->fx_done)
15740 break;
15741
15742 /* Should never visit here, because we keep the relocation. */
15743 abort ();
15744 break;
15745
15746 case BFD_RELOC_VTABLE_INHERIT:
15747 fixP->fx_done = 0;
15748 if (fixP->fx_addsy
15749 && !S_IS_DEFINED (fixP->fx_addsy)
15750 && !S_IS_WEAK (fixP->fx_addsy))
15751 S_SET_WEAK (fixP->fx_addsy);
15752 break;
15753
15754 case BFD_RELOC_VTABLE_ENTRY:
15755 fixP->fx_done = 0;
15756 break;
15757
15758 default:
15759 internalError ();
15760 }
15761
15762 /* Remember value for tc_gen_reloc. */
15763 fixP->fx_addnumber = *valP;
15764 }
15765
15766 static symbolS *
15767 get_symbol (void)
15768 {
15769 int c;
15770 char *name;
15771 symbolS *p;
15772
15773 name = input_line_pointer;
15774 c = get_symbol_end ();
15775 p = (symbolS *) symbol_find_or_make (name);
15776 *input_line_pointer = c;
15777 return p;
15778 }
15779
15780 /* Align the current frag to a given power of two. If a particular
15781 fill byte should be used, FILL points to an integer that contains
15782 that byte, otherwise FILL is null.
15783
15784 This function used to have the comment:
15785
15786 The MIPS assembler also automatically adjusts any preceding label.
15787
15788 The implementation therefore applied the adjustment to a maximum of
15789 one label. However, other label adjustments are applied to batches
15790 of labels, and adjusting just one caused problems when new labels
15791 were added for the sake of debugging or unwind information.
15792 We therefore adjust all preceding labels (given as LABELS) instead. */
15793
15794 static void
15795 mips_align (int to, int *fill, struct insn_label_list *labels)
15796 {
15797 mips_emit_delays ();
15798 mips_record_compressed_mode ();
15799 if (fill == NULL && subseg_text_p (now_seg))
15800 frag_align_code (to, 0);
15801 else
15802 frag_align (to, fill ? *fill : 0, 0);
15803 record_alignment (now_seg, to);
15804 mips_move_labels (labels, FALSE);
15805 }
15806
15807 /* Align to a given power of two. .align 0 turns off the automatic
15808 alignment used by the data creating pseudo-ops. */
15809
15810 static void
15811 s_align (int x ATTRIBUTE_UNUSED)
15812 {
15813 int temp, fill_value, *fill_ptr;
15814 long max_alignment = 28;
15815
15816 /* o Note that the assembler pulls down any immediately preceding label
15817 to the aligned address.
15818 o It's not documented but auto alignment is reinstated by
15819 a .align pseudo instruction.
15820 o Note also that after auto alignment is turned off the mips assembler
15821 issues an error on attempt to assemble an improperly aligned data item.
15822 We don't. */
15823
15824 temp = get_absolute_expression ();
15825 if (temp > max_alignment)
15826 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
15827 else if (temp < 0)
15828 {
15829 as_warn (_("Alignment negative: 0 assumed."));
15830 temp = 0;
15831 }
15832 if (*input_line_pointer == ',')
15833 {
15834 ++input_line_pointer;
15835 fill_value = get_absolute_expression ();
15836 fill_ptr = &fill_value;
15837 }
15838 else
15839 fill_ptr = 0;
15840 if (temp)
15841 {
15842 segment_info_type *si = seg_info (now_seg);
15843 struct insn_label_list *l = si->label_list;
15844 /* Auto alignment should be switched on by next section change. */
15845 auto_align = 1;
15846 mips_align (temp, fill_ptr, l);
15847 }
15848 else
15849 {
15850 auto_align = 0;
15851 }
15852
15853 demand_empty_rest_of_line ();
15854 }
15855
15856 static void
15857 s_change_sec (int sec)
15858 {
15859 segT seg;
15860
15861 #ifdef OBJ_ELF
15862 /* The ELF backend needs to know that we are changing sections, so
15863 that .previous works correctly. We could do something like check
15864 for an obj_section_change_hook macro, but that might be confusing
15865 as it would not be appropriate to use it in the section changing
15866 functions in read.c, since obj-elf.c intercepts those. FIXME:
15867 This should be cleaner, somehow. */
15868 if (IS_ELF)
15869 obj_elf_section_change_hook ();
15870 #endif
15871
15872 mips_emit_delays ();
15873
15874 switch (sec)
15875 {
15876 case 't':
15877 s_text (0);
15878 break;
15879 case 'd':
15880 s_data (0);
15881 break;
15882 case 'b':
15883 subseg_set (bss_section, (subsegT) get_absolute_expression ());
15884 demand_empty_rest_of_line ();
15885 break;
15886
15887 case 'r':
15888 seg = subseg_new (RDATA_SECTION_NAME,
15889 (subsegT) get_absolute_expression ());
15890 if (IS_ELF)
15891 {
15892 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
15893 | SEC_READONLY | SEC_RELOC
15894 | SEC_DATA));
15895 if (strncmp (TARGET_OS, "elf", 3) != 0)
15896 record_alignment (seg, 4);
15897 }
15898 demand_empty_rest_of_line ();
15899 break;
15900
15901 case 's':
15902 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
15903 if (IS_ELF)
15904 {
15905 bfd_set_section_flags (stdoutput, seg,
15906 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
15907 if (strncmp (TARGET_OS, "elf", 3) != 0)
15908 record_alignment (seg, 4);
15909 }
15910 demand_empty_rest_of_line ();
15911 break;
15912
15913 case 'B':
15914 seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
15915 if (IS_ELF)
15916 {
15917 bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
15918 if (strncmp (TARGET_OS, "elf", 3) != 0)
15919 record_alignment (seg, 4);
15920 }
15921 demand_empty_rest_of_line ();
15922 break;
15923 }
15924
15925 auto_align = 1;
15926 }
15927
15928 void
15929 s_change_section (int ignore ATTRIBUTE_UNUSED)
15930 {
15931 #ifdef OBJ_ELF
15932 char *section_name;
15933 char c;
15934 char next_c = 0;
15935 int section_type;
15936 int section_flag;
15937 int section_entry_size;
15938 int section_alignment;
15939
15940 if (!IS_ELF)
15941 return;
15942
15943 section_name = input_line_pointer;
15944 c = get_symbol_end ();
15945 if (c)
15946 next_c = *(input_line_pointer + 1);
15947
15948 /* Do we have .section Name<,"flags">? */
15949 if (c != ',' || (c == ',' && next_c == '"'))
15950 {
15951 /* just after name is now '\0'. */
15952 *input_line_pointer = c;
15953 input_line_pointer = section_name;
15954 obj_elf_section (ignore);
15955 return;
15956 }
15957 input_line_pointer++;
15958
15959 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
15960 if (c == ',')
15961 section_type = get_absolute_expression ();
15962 else
15963 section_type = 0;
15964 if (*input_line_pointer++ == ',')
15965 section_flag = get_absolute_expression ();
15966 else
15967 section_flag = 0;
15968 if (*input_line_pointer++ == ',')
15969 section_entry_size = get_absolute_expression ();
15970 else
15971 section_entry_size = 0;
15972 if (*input_line_pointer++ == ',')
15973 section_alignment = get_absolute_expression ();
15974 else
15975 section_alignment = 0;
15976 /* FIXME: really ignore? */
15977 (void) section_alignment;
15978
15979 section_name = xstrdup (section_name);
15980
15981 /* When using the generic form of .section (as implemented by obj-elf.c),
15982 there's no way to set the section type to SHT_MIPS_DWARF. Users have
15983 traditionally had to fall back on the more common @progbits instead.
15984
15985 There's nothing really harmful in this, since bfd will correct
15986 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
15987 means that, for backwards compatibility, the special_section entries
15988 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
15989
15990 Even so, we shouldn't force users of the MIPS .section syntax to
15991 incorrectly label the sections as SHT_PROGBITS. The best compromise
15992 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
15993 generic type-checking code. */
15994 if (section_type == SHT_MIPS_DWARF)
15995 section_type = SHT_PROGBITS;
15996
15997 obj_elf_change_section (section_name, section_type, section_flag,
15998 section_entry_size, 0, 0, 0);
15999
16000 if (now_seg->name != section_name)
16001 free (section_name);
16002 #endif /* OBJ_ELF */
16003 }
16004
16005 void
16006 mips_enable_auto_align (void)
16007 {
16008 auto_align = 1;
16009 }
16010
16011 static void
16012 s_cons (int log_size)
16013 {
16014 segment_info_type *si = seg_info (now_seg);
16015 struct insn_label_list *l = si->label_list;
16016
16017 mips_emit_delays ();
16018 if (log_size > 0 && auto_align)
16019 mips_align (log_size, 0, l);
16020 cons (1 << log_size);
16021 mips_clear_insn_labels ();
16022 }
16023
16024 static void
16025 s_float_cons (int type)
16026 {
16027 segment_info_type *si = seg_info (now_seg);
16028 struct insn_label_list *l = si->label_list;
16029
16030 mips_emit_delays ();
16031
16032 if (auto_align)
16033 {
16034 if (type == 'd')
16035 mips_align (3, 0, l);
16036 else
16037 mips_align (2, 0, l);
16038 }
16039
16040 float_cons (type);
16041 mips_clear_insn_labels ();
16042 }
16043
16044 /* Handle .globl. We need to override it because on Irix 5 you are
16045 permitted to say
16046 .globl foo .text
16047 where foo is an undefined symbol, to mean that foo should be
16048 considered to be the address of a function. */
16049
16050 static void
16051 s_mips_globl (int x ATTRIBUTE_UNUSED)
16052 {
16053 char *name;
16054 int c;
16055 symbolS *symbolP;
16056 flagword flag;
16057
16058 do
16059 {
16060 name = input_line_pointer;
16061 c = get_symbol_end ();
16062 symbolP = symbol_find_or_make (name);
16063 S_SET_EXTERNAL (symbolP);
16064
16065 *input_line_pointer = c;
16066 SKIP_WHITESPACE ();
16067
16068 /* On Irix 5, every global symbol that is not explicitly labelled as
16069 being a function is apparently labelled as being an object. */
16070 flag = BSF_OBJECT;
16071
16072 if (!is_end_of_line[(unsigned char) *input_line_pointer]
16073 && (*input_line_pointer != ','))
16074 {
16075 char *secname;
16076 asection *sec;
16077
16078 secname = input_line_pointer;
16079 c = get_symbol_end ();
16080 sec = bfd_get_section_by_name (stdoutput, secname);
16081 if (sec == NULL)
16082 as_bad (_("%s: no such section"), secname);
16083 *input_line_pointer = c;
16084
16085 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
16086 flag = BSF_FUNCTION;
16087 }
16088
16089 symbol_get_bfdsym (symbolP)->flags |= flag;
16090
16091 c = *input_line_pointer;
16092 if (c == ',')
16093 {
16094 input_line_pointer++;
16095 SKIP_WHITESPACE ();
16096 if (is_end_of_line[(unsigned char) *input_line_pointer])
16097 c = '\n';
16098 }
16099 }
16100 while (c == ',');
16101
16102 demand_empty_rest_of_line ();
16103 }
16104
16105 static void
16106 s_option (int x ATTRIBUTE_UNUSED)
16107 {
16108 char *opt;
16109 char c;
16110
16111 opt = input_line_pointer;
16112 c = get_symbol_end ();
16113
16114 if (*opt == 'O')
16115 {
16116 /* FIXME: What does this mean? */
16117 }
16118 else if (strncmp (opt, "pic", 3) == 0)
16119 {
16120 int i;
16121
16122 i = atoi (opt + 3);
16123 if (i == 0)
16124 mips_pic = NO_PIC;
16125 else if (i == 2)
16126 {
16127 mips_pic = SVR4_PIC;
16128 mips_abicalls = TRUE;
16129 }
16130 else
16131 as_bad (_(".option pic%d not supported"), i);
16132
16133 if (mips_pic == SVR4_PIC)
16134 {
16135 if (g_switch_seen && g_switch_value != 0)
16136 as_warn (_("-G may not be used with SVR4 PIC code"));
16137 g_switch_value = 0;
16138 bfd_set_gp_size (stdoutput, 0);
16139 }
16140 }
16141 else
16142 as_warn (_("Unrecognized option \"%s\""), opt);
16143
16144 *input_line_pointer = c;
16145 demand_empty_rest_of_line ();
16146 }
16147
16148 /* This structure is used to hold a stack of .set values. */
16149
16150 struct mips_option_stack
16151 {
16152 struct mips_option_stack *next;
16153 struct mips_set_options options;
16154 };
16155
16156 static struct mips_option_stack *mips_opts_stack;
16157
16158 /* Handle the .set pseudo-op. */
16159
16160 static void
16161 s_mipsset (int x ATTRIBUTE_UNUSED)
16162 {
16163 char *name = input_line_pointer, ch;
16164
16165 while (!is_end_of_line[(unsigned char) *input_line_pointer])
16166 ++input_line_pointer;
16167 ch = *input_line_pointer;
16168 *input_line_pointer = '\0';
16169
16170 if (strcmp (name, "reorder") == 0)
16171 {
16172 if (mips_opts.noreorder)
16173 end_noreorder ();
16174 }
16175 else if (strcmp (name, "noreorder") == 0)
16176 {
16177 if (!mips_opts.noreorder)
16178 start_noreorder ();
16179 }
16180 else if (strncmp (name, "at=", 3) == 0)
16181 {
16182 char *s = name + 3;
16183
16184 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
16185 as_bad (_("Unrecognized register name `%s'"), s);
16186 }
16187 else if (strcmp (name, "at") == 0)
16188 {
16189 mips_opts.at = ATREG;
16190 }
16191 else if (strcmp (name, "noat") == 0)
16192 {
16193 mips_opts.at = ZERO;
16194 }
16195 else if (strcmp (name, "macro") == 0)
16196 {
16197 mips_opts.warn_about_macros = 0;
16198 }
16199 else if (strcmp (name, "nomacro") == 0)
16200 {
16201 if (mips_opts.noreorder == 0)
16202 as_bad (_("`noreorder' must be set before `nomacro'"));
16203 mips_opts.warn_about_macros = 1;
16204 }
16205 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
16206 {
16207 mips_opts.nomove = 0;
16208 }
16209 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
16210 {
16211 mips_opts.nomove = 1;
16212 }
16213 else if (strcmp (name, "bopt") == 0)
16214 {
16215 mips_opts.nobopt = 0;
16216 }
16217 else if (strcmp (name, "nobopt") == 0)
16218 {
16219 mips_opts.nobopt = 1;
16220 }
16221 else if (strcmp (name, "gp=default") == 0)
16222 mips_opts.gp32 = file_mips_gp32;
16223 else if (strcmp (name, "gp=32") == 0)
16224 mips_opts.gp32 = 1;
16225 else if (strcmp (name, "gp=64") == 0)
16226 {
16227 if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
16228 as_warn (_("%s isa does not support 64-bit registers"),
16229 mips_cpu_info_from_isa (mips_opts.isa)->name);
16230 mips_opts.gp32 = 0;
16231 }
16232 else if (strcmp (name, "fp=default") == 0)
16233 mips_opts.fp32 = file_mips_fp32;
16234 else if (strcmp (name, "fp=32") == 0)
16235 mips_opts.fp32 = 1;
16236 else if (strcmp (name, "fp=64") == 0)
16237 {
16238 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
16239 as_warn (_("%s isa does not support 64-bit floating point registers"),
16240 mips_cpu_info_from_isa (mips_opts.isa)->name);
16241 mips_opts.fp32 = 0;
16242 }
16243 else if (strcmp (name, "softfloat") == 0)
16244 mips_opts.soft_float = 1;
16245 else if (strcmp (name, "hardfloat") == 0)
16246 mips_opts.soft_float = 0;
16247 else if (strcmp (name, "singlefloat") == 0)
16248 mips_opts.single_float = 1;
16249 else if (strcmp (name, "doublefloat") == 0)
16250 mips_opts.single_float = 0;
16251 else if (strcmp (name, "mips16") == 0
16252 || strcmp (name, "MIPS-16") == 0)
16253 {
16254 if (mips_opts.micromips == 1)
16255 as_fatal (_("`mips16' cannot be used with `micromips'"));
16256 mips_opts.mips16 = 1;
16257 }
16258 else if (strcmp (name, "nomips16") == 0
16259 || strcmp (name, "noMIPS-16") == 0)
16260 mips_opts.mips16 = 0;
16261 else if (strcmp (name, "micromips") == 0)
16262 {
16263 if (mips_opts.mips16 == 1)
16264 as_fatal (_("`micromips' cannot be used with `mips16'"));
16265 mips_opts.micromips = 1;
16266 }
16267 else if (strcmp (name, "nomicromips") == 0)
16268 mips_opts.micromips = 0;
16269 else if (strcmp (name, "smartmips") == 0)
16270 {
16271 if (!ISA_SUPPORTS_SMARTMIPS)
16272 as_warn (_("%s ISA does not support SmartMIPS ASE"),
16273 mips_cpu_info_from_isa (mips_opts.isa)->name);
16274 mips_opts.ase_smartmips = 1;
16275 }
16276 else if (strcmp (name, "nosmartmips") == 0)
16277 mips_opts.ase_smartmips = 0;
16278 else if (strcmp (name, "mips3d") == 0)
16279 mips_opts.ase_mips3d = 1;
16280 else if (strcmp (name, "nomips3d") == 0)
16281 mips_opts.ase_mips3d = 0;
16282 else if (strcmp (name, "mdmx") == 0)
16283 mips_opts.ase_mdmx = 1;
16284 else if (strcmp (name, "nomdmx") == 0)
16285 mips_opts.ase_mdmx = 0;
16286 else if (strcmp (name, "dsp") == 0)
16287 {
16288 if (!ISA_SUPPORTS_DSP_ASE)
16289 as_warn (_("%s ISA does not support DSP ASE"),
16290 mips_cpu_info_from_isa (mips_opts.isa)->name);
16291 mips_opts.ase_dsp = 1;
16292 mips_opts.ase_dspr2 = 0;
16293 }
16294 else if (strcmp (name, "nodsp") == 0)
16295 {
16296 mips_opts.ase_dsp = 0;
16297 mips_opts.ase_dspr2 = 0;
16298 }
16299 else if (strcmp (name, "dspr2") == 0)
16300 {
16301 if (!ISA_SUPPORTS_DSPR2_ASE)
16302 as_warn (_("%s ISA does not support DSP R2 ASE"),
16303 mips_cpu_info_from_isa (mips_opts.isa)->name);
16304 mips_opts.ase_dspr2 = 1;
16305 mips_opts.ase_dsp = 1;
16306 }
16307 else if (strcmp (name, "nodspr2") == 0)
16308 {
16309 mips_opts.ase_dspr2 = 0;
16310 mips_opts.ase_dsp = 0;
16311 }
16312 else if (strcmp (name, "mt") == 0)
16313 {
16314 if (!ISA_SUPPORTS_MT_ASE)
16315 as_warn (_("%s ISA does not support MT ASE"),
16316 mips_cpu_info_from_isa (mips_opts.isa)->name);
16317 mips_opts.ase_mt = 1;
16318 }
16319 else if (strcmp (name, "nomt") == 0)
16320 mips_opts.ase_mt = 0;
16321 else if (strcmp (name, "mcu") == 0)
16322 mips_opts.ase_mcu = 1;
16323 else if (strcmp (name, "nomcu") == 0)
16324 mips_opts.ase_mcu = 0;
16325 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
16326 {
16327 int reset = 0;
16328
16329 /* Permit the user to change the ISA and architecture on the fly.
16330 Needless to say, misuse can cause serious problems. */
16331 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
16332 {
16333 reset = 1;
16334 mips_opts.isa = file_mips_isa;
16335 mips_opts.arch = file_mips_arch;
16336 }
16337 else if (strncmp (name, "arch=", 5) == 0)
16338 {
16339 const struct mips_cpu_info *p;
16340
16341 p = mips_parse_cpu("internal use", name + 5);
16342 if (!p)
16343 as_bad (_("unknown architecture %s"), name + 5);
16344 else
16345 {
16346 mips_opts.arch = p->cpu;
16347 mips_opts.isa = p->isa;
16348 }
16349 }
16350 else if (strncmp (name, "mips", 4) == 0)
16351 {
16352 const struct mips_cpu_info *p;
16353
16354 p = mips_parse_cpu("internal use", name);
16355 if (!p)
16356 as_bad (_("unknown ISA level %s"), name + 4);
16357 else
16358 {
16359 mips_opts.arch = p->cpu;
16360 mips_opts.isa = p->isa;
16361 }
16362 }
16363 else
16364 as_bad (_("unknown ISA or architecture %s"), name);
16365
16366 switch (mips_opts.isa)
16367 {
16368 case 0:
16369 break;
16370 case ISA_MIPS1:
16371 case ISA_MIPS2:
16372 case ISA_MIPS32:
16373 case ISA_MIPS32R2:
16374 mips_opts.gp32 = 1;
16375 mips_opts.fp32 = 1;
16376 break;
16377 case ISA_MIPS3:
16378 case ISA_MIPS4:
16379 case ISA_MIPS5:
16380 case ISA_MIPS64:
16381 case ISA_MIPS64R2:
16382 mips_opts.gp32 = 0;
16383 mips_opts.fp32 = 0;
16384 break;
16385 default:
16386 as_bad (_("unknown ISA level %s"), name + 4);
16387 break;
16388 }
16389 if (reset)
16390 {
16391 mips_opts.gp32 = file_mips_gp32;
16392 mips_opts.fp32 = file_mips_fp32;
16393 }
16394 }
16395 else if (strcmp (name, "autoextend") == 0)
16396 mips_opts.noautoextend = 0;
16397 else if (strcmp (name, "noautoextend") == 0)
16398 mips_opts.noautoextend = 1;
16399 else if (strcmp (name, "push") == 0)
16400 {
16401 struct mips_option_stack *s;
16402
16403 s = (struct mips_option_stack *) xmalloc (sizeof *s);
16404 s->next = mips_opts_stack;
16405 s->options = mips_opts;
16406 mips_opts_stack = s;
16407 }
16408 else if (strcmp (name, "pop") == 0)
16409 {
16410 struct mips_option_stack *s;
16411
16412 s = mips_opts_stack;
16413 if (s == NULL)
16414 as_bad (_(".set pop with no .set push"));
16415 else
16416 {
16417 /* If we're changing the reorder mode we need to handle
16418 delay slots correctly. */
16419 if (s->options.noreorder && ! mips_opts.noreorder)
16420 start_noreorder ();
16421 else if (! s->options.noreorder && mips_opts.noreorder)
16422 end_noreorder ();
16423
16424 mips_opts = s->options;
16425 mips_opts_stack = s->next;
16426 free (s);
16427 }
16428 }
16429 else if (strcmp (name, "sym32") == 0)
16430 mips_opts.sym32 = TRUE;
16431 else if (strcmp (name, "nosym32") == 0)
16432 mips_opts.sym32 = FALSE;
16433 else if (strchr (name, ','))
16434 {
16435 /* Generic ".set" directive; use the generic handler. */
16436 *input_line_pointer = ch;
16437 input_line_pointer = name;
16438 s_set (0);
16439 return;
16440 }
16441 else
16442 {
16443 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
16444 }
16445 *input_line_pointer = ch;
16446 demand_empty_rest_of_line ();
16447 }
16448
16449 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
16450 .option pic2. It means to generate SVR4 PIC calls. */
16451
16452 static void
16453 s_abicalls (int ignore ATTRIBUTE_UNUSED)
16454 {
16455 mips_pic = SVR4_PIC;
16456 mips_abicalls = TRUE;
16457
16458 if (g_switch_seen && g_switch_value != 0)
16459 as_warn (_("-G may not be used with SVR4 PIC code"));
16460 g_switch_value = 0;
16461
16462 bfd_set_gp_size (stdoutput, 0);
16463 demand_empty_rest_of_line ();
16464 }
16465
16466 /* Handle the .cpload pseudo-op. This is used when generating SVR4
16467 PIC code. It sets the $gp register for the function based on the
16468 function address, which is in the register named in the argument.
16469 This uses a relocation against _gp_disp, which is handled specially
16470 by the linker. The result is:
16471 lui $gp,%hi(_gp_disp)
16472 addiu $gp,$gp,%lo(_gp_disp)
16473 addu $gp,$gp,.cpload argument
16474 The .cpload argument is normally $25 == $t9.
16475
16476 The -mno-shared option changes this to:
16477 lui $gp,%hi(__gnu_local_gp)
16478 addiu $gp,$gp,%lo(__gnu_local_gp)
16479 and the argument is ignored. This saves an instruction, but the
16480 resulting code is not position independent; it uses an absolute
16481 address for __gnu_local_gp. Thus code assembled with -mno-shared
16482 can go into an ordinary executable, but not into a shared library. */
16483
16484 static void
16485 s_cpload (int ignore ATTRIBUTE_UNUSED)
16486 {
16487 expressionS ex;
16488 int reg;
16489 int in_shared;
16490
16491 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
16492 .cpload is ignored. */
16493 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
16494 {
16495 s_ignore (0);
16496 return;
16497 }
16498
16499 if (mips_opts.mips16)
16500 {
16501 as_bad (_("%s not supported in MIPS16 mode"), ".cpload");
16502 ignore_rest_of_line ();
16503 return;
16504 }
16505
16506 /* .cpload should be in a .set noreorder section. */
16507 if (mips_opts.noreorder == 0)
16508 as_warn (_(".cpload not in noreorder section"));
16509
16510 reg = tc_get_register (0);
16511
16512 /* If we need to produce a 64-bit address, we are better off using
16513 the default instruction sequence. */
16514 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
16515
16516 ex.X_op = O_symbol;
16517 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
16518 "__gnu_local_gp");
16519 ex.X_op_symbol = NULL;
16520 ex.X_add_number = 0;
16521
16522 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
16523 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
16524
16525 macro_start ();
16526 macro_build_lui (&ex, mips_gp_register);
16527 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
16528 mips_gp_register, BFD_RELOC_LO16);
16529 if (in_shared)
16530 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
16531 mips_gp_register, reg);
16532 macro_end ();
16533
16534 demand_empty_rest_of_line ();
16535 }
16536
16537 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
16538 .cpsetup $reg1, offset|$reg2, label
16539
16540 If offset is given, this results in:
16541 sd $gp, offset($sp)
16542 lui $gp, %hi(%neg(%gp_rel(label)))
16543 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
16544 daddu $gp, $gp, $reg1
16545
16546 If $reg2 is given, this results in:
16547 daddu $reg2, $gp, $0
16548 lui $gp, %hi(%neg(%gp_rel(label)))
16549 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
16550 daddu $gp, $gp, $reg1
16551 $reg1 is normally $25 == $t9.
16552
16553 The -mno-shared option replaces the last three instructions with
16554 lui $gp,%hi(_gp)
16555 addiu $gp,$gp,%lo(_gp) */
16556
16557 static void
16558 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
16559 {
16560 expressionS ex_off;
16561 expressionS ex_sym;
16562 int reg1;
16563
16564 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
16565 We also need NewABI support. */
16566 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16567 {
16568 s_ignore (0);
16569 return;
16570 }
16571
16572 if (mips_opts.mips16)
16573 {
16574 as_bad (_("%s not supported in MIPS16 mode"), ".cpsetup");
16575 ignore_rest_of_line ();
16576 return;
16577 }
16578
16579 reg1 = tc_get_register (0);
16580 SKIP_WHITESPACE ();
16581 if (*input_line_pointer != ',')
16582 {
16583 as_bad (_("missing argument separator ',' for .cpsetup"));
16584 return;
16585 }
16586 else
16587 ++input_line_pointer;
16588 SKIP_WHITESPACE ();
16589 if (*input_line_pointer == '$')
16590 {
16591 mips_cpreturn_register = tc_get_register (0);
16592 mips_cpreturn_offset = -1;
16593 }
16594 else
16595 {
16596 mips_cpreturn_offset = get_absolute_expression ();
16597 mips_cpreturn_register = -1;
16598 }
16599 SKIP_WHITESPACE ();
16600 if (*input_line_pointer != ',')
16601 {
16602 as_bad (_("missing argument separator ',' for .cpsetup"));
16603 return;
16604 }
16605 else
16606 ++input_line_pointer;
16607 SKIP_WHITESPACE ();
16608 expression (&ex_sym);
16609
16610 macro_start ();
16611 if (mips_cpreturn_register == -1)
16612 {
16613 ex_off.X_op = O_constant;
16614 ex_off.X_add_symbol = NULL;
16615 ex_off.X_op_symbol = NULL;
16616 ex_off.X_add_number = mips_cpreturn_offset;
16617
16618 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
16619 BFD_RELOC_LO16, SP);
16620 }
16621 else
16622 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
16623 mips_gp_register, 0);
16624
16625 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
16626 {
16627 macro_build (&ex_sym, "lui", LUI_FMT, mips_gp_register,
16628 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
16629 BFD_RELOC_HI16_S);
16630
16631 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
16632 mips_gp_register, -1, BFD_RELOC_GPREL16,
16633 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
16634
16635 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
16636 mips_gp_register, reg1);
16637 }
16638 else
16639 {
16640 expressionS ex;
16641
16642 ex.X_op = O_symbol;
16643 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
16644 ex.X_op_symbol = NULL;
16645 ex.X_add_number = 0;
16646
16647 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
16648 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
16649
16650 macro_build_lui (&ex, mips_gp_register);
16651 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
16652 mips_gp_register, BFD_RELOC_LO16);
16653 }
16654
16655 macro_end ();
16656
16657 demand_empty_rest_of_line ();
16658 }
16659
16660 static void
16661 s_cplocal (int ignore ATTRIBUTE_UNUSED)
16662 {
16663 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
16664 .cplocal is ignored. */
16665 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16666 {
16667 s_ignore (0);
16668 return;
16669 }
16670
16671 if (mips_opts.mips16)
16672 {
16673 as_bad (_("%s not supported in MIPS16 mode"), ".cplocal");
16674 ignore_rest_of_line ();
16675 return;
16676 }
16677
16678 mips_gp_register = tc_get_register (0);
16679 demand_empty_rest_of_line ();
16680 }
16681
16682 /* Handle the .cprestore pseudo-op. This stores $gp into a given
16683 offset from $sp. The offset is remembered, and after making a PIC
16684 call $gp is restored from that location. */
16685
16686 static void
16687 s_cprestore (int ignore ATTRIBUTE_UNUSED)
16688 {
16689 expressionS ex;
16690
16691 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
16692 .cprestore is ignored. */
16693 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
16694 {
16695 s_ignore (0);
16696 return;
16697 }
16698
16699 if (mips_opts.mips16)
16700 {
16701 as_bad (_("%s not supported in MIPS16 mode"), ".cprestore");
16702 ignore_rest_of_line ();
16703 return;
16704 }
16705
16706 mips_cprestore_offset = get_absolute_expression ();
16707 mips_cprestore_valid = 1;
16708
16709 ex.X_op = O_constant;
16710 ex.X_add_symbol = NULL;
16711 ex.X_op_symbol = NULL;
16712 ex.X_add_number = mips_cprestore_offset;
16713
16714 macro_start ();
16715 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
16716 SP, HAVE_64BIT_ADDRESSES);
16717 macro_end ();
16718
16719 demand_empty_rest_of_line ();
16720 }
16721
16722 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
16723 was given in the preceding .cpsetup, it results in:
16724 ld $gp, offset($sp)
16725
16726 If a register $reg2 was given there, it results in:
16727 daddu $gp, $reg2, $0 */
16728
16729 static void
16730 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
16731 {
16732 expressionS ex;
16733
16734 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
16735 We also need NewABI support. */
16736 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16737 {
16738 s_ignore (0);
16739 return;
16740 }
16741
16742 if (mips_opts.mips16)
16743 {
16744 as_bad (_("%s not supported in MIPS16 mode"), ".cpreturn");
16745 ignore_rest_of_line ();
16746 return;
16747 }
16748
16749 macro_start ();
16750 if (mips_cpreturn_register == -1)
16751 {
16752 ex.X_op = O_constant;
16753 ex.X_add_symbol = NULL;
16754 ex.X_op_symbol = NULL;
16755 ex.X_add_number = mips_cpreturn_offset;
16756
16757 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
16758 }
16759 else
16760 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
16761 mips_cpreturn_register, 0);
16762 macro_end ();
16763
16764 demand_empty_rest_of_line ();
16765 }
16766
16767 /* Handle a .dtprelword, .dtpreldword, .tprelword, or .tpreldword
16768 pseudo-op; DIRSTR says which. The pseudo-op generates a BYTES-size
16769 DTP- or TP-relative relocation of type RTYPE, for use in either DWARF
16770 debug information or MIPS16 TLS. */
16771
16772 static void
16773 s_tls_rel_directive (const size_t bytes, const char *dirstr,
16774 bfd_reloc_code_real_type rtype)
16775 {
16776 expressionS ex;
16777 char *p;
16778
16779 expression (&ex);
16780
16781 if (ex.X_op != O_symbol)
16782 {
16783 as_bad (_("Unsupported use of %s"), dirstr);
16784 ignore_rest_of_line ();
16785 }
16786
16787 p = frag_more (bytes);
16788 md_number_to_chars (p, 0, bytes);
16789 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, rtype);
16790 demand_empty_rest_of_line ();
16791 mips_clear_insn_labels ();
16792 }
16793
16794 /* Handle .dtprelword. */
16795
16796 static void
16797 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
16798 {
16799 s_tls_rel_directive (4, ".dtprelword", BFD_RELOC_MIPS_TLS_DTPREL32);
16800 }
16801
16802 /* Handle .dtpreldword. */
16803
16804 static void
16805 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
16806 {
16807 s_tls_rel_directive (8, ".dtpreldword", BFD_RELOC_MIPS_TLS_DTPREL64);
16808 }
16809
16810 /* Handle .tprelword. */
16811
16812 static void
16813 s_tprelword (int ignore ATTRIBUTE_UNUSED)
16814 {
16815 s_tls_rel_directive (4, ".tprelword", BFD_RELOC_MIPS_TLS_TPREL32);
16816 }
16817
16818 /* Handle .tpreldword. */
16819
16820 static void
16821 s_tpreldword (int ignore ATTRIBUTE_UNUSED)
16822 {
16823 s_tls_rel_directive (8, ".tpreldword", BFD_RELOC_MIPS_TLS_TPREL64);
16824 }
16825
16826 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
16827 code. It sets the offset to use in gp_rel relocations. */
16828
16829 static void
16830 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
16831 {
16832 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
16833 We also need NewABI support. */
16834 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16835 {
16836 s_ignore (0);
16837 return;
16838 }
16839
16840 mips_gprel_offset = get_absolute_expression ();
16841
16842 demand_empty_rest_of_line ();
16843 }
16844
16845 /* Handle the .gpword pseudo-op. This is used when generating PIC
16846 code. It generates a 32 bit GP relative reloc. */
16847
16848 static void
16849 s_gpword (int ignore ATTRIBUTE_UNUSED)
16850 {
16851 segment_info_type *si;
16852 struct insn_label_list *l;
16853 expressionS ex;
16854 char *p;
16855
16856 /* When not generating PIC code, this is treated as .word. */
16857 if (mips_pic != SVR4_PIC)
16858 {
16859 s_cons (2);
16860 return;
16861 }
16862
16863 si = seg_info (now_seg);
16864 l = si->label_list;
16865 mips_emit_delays ();
16866 if (auto_align)
16867 mips_align (2, 0, l);
16868
16869 expression (&ex);
16870 mips_clear_insn_labels ();
16871
16872 if (ex.X_op != O_symbol || ex.X_add_number != 0)
16873 {
16874 as_bad (_("Unsupported use of .gpword"));
16875 ignore_rest_of_line ();
16876 }
16877
16878 p = frag_more (4);
16879 md_number_to_chars (p, 0, 4);
16880 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
16881 BFD_RELOC_GPREL32);
16882
16883 demand_empty_rest_of_line ();
16884 }
16885
16886 static void
16887 s_gpdword (int ignore ATTRIBUTE_UNUSED)
16888 {
16889 segment_info_type *si;
16890 struct insn_label_list *l;
16891 expressionS ex;
16892 char *p;
16893
16894 /* When not generating PIC code, this is treated as .dword. */
16895 if (mips_pic != SVR4_PIC)
16896 {
16897 s_cons (3);
16898 return;
16899 }
16900
16901 si = seg_info (now_seg);
16902 l = si->label_list;
16903 mips_emit_delays ();
16904 if (auto_align)
16905 mips_align (3, 0, l);
16906
16907 expression (&ex);
16908 mips_clear_insn_labels ();
16909
16910 if (ex.X_op != O_symbol || ex.X_add_number != 0)
16911 {
16912 as_bad (_("Unsupported use of .gpdword"));
16913 ignore_rest_of_line ();
16914 }
16915
16916 p = frag_more (8);
16917 md_number_to_chars (p, 0, 8);
16918 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
16919 BFD_RELOC_GPREL32)->fx_tcbit = 1;
16920
16921 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
16922 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
16923 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
16924
16925 demand_empty_rest_of_line ();
16926 }
16927
16928 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
16929 tables in SVR4 PIC code. */
16930
16931 static void
16932 s_cpadd (int ignore ATTRIBUTE_UNUSED)
16933 {
16934 int reg;
16935
16936 /* This is ignored when not generating SVR4 PIC code. */
16937 if (mips_pic != SVR4_PIC)
16938 {
16939 s_ignore (0);
16940 return;
16941 }
16942
16943 /* Add $gp to the register named as an argument. */
16944 macro_start ();
16945 reg = tc_get_register (0);
16946 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
16947 macro_end ();
16948
16949 demand_empty_rest_of_line ();
16950 }
16951
16952 /* Handle the .insn pseudo-op. This marks instruction labels in
16953 mips16/micromips mode. This permits the linker to handle them specially,
16954 such as generating jalx instructions when needed. We also make
16955 them odd for the duration of the assembly, in order to generate the
16956 right sort of code. We will make them even in the adjust_symtab
16957 routine, while leaving them marked. This is convenient for the
16958 debugger and the disassembler. The linker knows to make them odd
16959 again. */
16960
16961 static void
16962 s_insn (int ignore ATTRIBUTE_UNUSED)
16963 {
16964 mips_mark_labels ();
16965
16966 demand_empty_rest_of_line ();
16967 }
16968
16969 /* Handle a .stabn directive. We need these in order to mark a label
16970 as being a mips16 text label correctly. Sometimes the compiler
16971 will emit a label, followed by a .stabn, and then switch sections.
16972 If the label and .stabn are in mips16 mode, then the label is
16973 really a mips16 text label. */
16974
16975 static void
16976 s_mips_stab (int type)
16977 {
16978 if (type == 'n')
16979 mips_mark_labels ();
16980
16981 s_stab (type);
16982 }
16983
16984 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
16985
16986 static void
16987 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
16988 {
16989 char *name;
16990 int c;
16991 symbolS *symbolP;
16992 expressionS exp;
16993
16994 name = input_line_pointer;
16995 c = get_symbol_end ();
16996 symbolP = symbol_find_or_make (name);
16997 S_SET_WEAK (symbolP);
16998 *input_line_pointer = c;
16999
17000 SKIP_WHITESPACE ();
17001
17002 if (! is_end_of_line[(unsigned char) *input_line_pointer])
17003 {
17004 if (S_IS_DEFINED (symbolP))
17005 {
17006 as_bad (_("ignoring attempt to redefine symbol %s"),
17007 S_GET_NAME (symbolP));
17008 ignore_rest_of_line ();
17009 return;
17010 }
17011
17012 if (*input_line_pointer == ',')
17013 {
17014 ++input_line_pointer;
17015 SKIP_WHITESPACE ();
17016 }
17017
17018 expression (&exp);
17019 if (exp.X_op != O_symbol)
17020 {
17021 as_bad (_("bad .weakext directive"));
17022 ignore_rest_of_line ();
17023 return;
17024 }
17025 symbol_set_value_expression (symbolP, &exp);
17026 }
17027
17028 demand_empty_rest_of_line ();
17029 }
17030
17031 /* Parse a register string into a number. Called from the ECOFF code
17032 to parse .frame. The argument is non-zero if this is the frame
17033 register, so that we can record it in mips_frame_reg. */
17034
17035 int
17036 tc_get_register (int frame)
17037 {
17038 unsigned int reg;
17039
17040 SKIP_WHITESPACE ();
17041 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
17042 reg = 0;
17043 if (frame)
17044 {
17045 mips_frame_reg = reg != 0 ? reg : SP;
17046 mips_frame_reg_valid = 1;
17047 mips_cprestore_valid = 0;
17048 }
17049 return reg;
17050 }
17051
17052 valueT
17053 md_section_align (asection *seg, valueT addr)
17054 {
17055 int align = bfd_get_section_alignment (stdoutput, seg);
17056
17057 if (IS_ELF)
17058 {
17059 /* We don't need to align ELF sections to the full alignment.
17060 However, Irix 5 may prefer that we align them at least to a 16
17061 byte boundary. We don't bother to align the sections if we
17062 are targeted for an embedded system. */
17063 if (strncmp (TARGET_OS, "elf", 3) == 0)
17064 return addr;
17065 if (align > 4)
17066 align = 4;
17067 }
17068
17069 return ((addr + (1 << align) - 1) & (-1 << align));
17070 }
17071
17072 /* Utility routine, called from above as well. If called while the
17073 input file is still being read, it's only an approximation. (For
17074 example, a symbol may later become defined which appeared to be
17075 undefined earlier.) */
17076
17077 static int
17078 nopic_need_relax (symbolS *sym, int before_relaxing)
17079 {
17080 if (sym == 0)
17081 return 0;
17082
17083 if (g_switch_value > 0)
17084 {
17085 const char *symname;
17086 int change;
17087
17088 /* Find out whether this symbol can be referenced off the $gp
17089 register. It can be if it is smaller than the -G size or if
17090 it is in the .sdata or .sbss section. Certain symbols can
17091 not be referenced off the $gp, although it appears as though
17092 they can. */
17093 symname = S_GET_NAME (sym);
17094 if (symname != (const char *) NULL
17095 && (strcmp (symname, "eprol") == 0
17096 || strcmp (symname, "etext") == 0
17097 || strcmp (symname, "_gp") == 0
17098 || strcmp (symname, "edata") == 0
17099 || strcmp (symname, "_fbss") == 0
17100 || strcmp (symname, "_fdata") == 0
17101 || strcmp (symname, "_ftext") == 0
17102 || strcmp (symname, "end") == 0
17103 || strcmp (symname, "_gp_disp") == 0))
17104 change = 1;
17105 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
17106 && (0
17107 #ifndef NO_ECOFF_DEBUGGING
17108 || (symbol_get_obj (sym)->ecoff_extern_size != 0
17109 && (symbol_get_obj (sym)->ecoff_extern_size
17110 <= g_switch_value))
17111 #endif
17112 /* We must defer this decision until after the whole
17113 file has been read, since there might be a .extern
17114 after the first use of this symbol. */
17115 || (before_relaxing
17116 #ifndef NO_ECOFF_DEBUGGING
17117 && symbol_get_obj (sym)->ecoff_extern_size == 0
17118 #endif
17119 && S_GET_VALUE (sym) == 0)
17120 || (S_GET_VALUE (sym) != 0
17121 && S_GET_VALUE (sym) <= g_switch_value)))
17122 change = 0;
17123 else
17124 {
17125 const char *segname;
17126
17127 segname = segment_name (S_GET_SEGMENT (sym));
17128 gas_assert (strcmp (segname, ".lit8") != 0
17129 && strcmp (segname, ".lit4") != 0);
17130 change = (strcmp (segname, ".sdata") != 0
17131 && strcmp (segname, ".sbss") != 0
17132 && strncmp (segname, ".sdata.", 7) != 0
17133 && strncmp (segname, ".sbss.", 6) != 0
17134 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
17135 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
17136 }
17137 return change;
17138 }
17139 else
17140 /* We are not optimizing for the $gp register. */
17141 return 1;
17142 }
17143
17144
17145 /* Return true if the given symbol should be considered local for SVR4 PIC. */
17146
17147 static bfd_boolean
17148 pic_need_relax (symbolS *sym, asection *segtype)
17149 {
17150 asection *symsec;
17151
17152 /* Handle the case of a symbol equated to another symbol. */
17153 while (symbol_equated_reloc_p (sym))
17154 {
17155 symbolS *n;
17156
17157 /* It's possible to get a loop here in a badly written program. */
17158 n = symbol_get_value_expression (sym)->X_add_symbol;
17159 if (n == sym)
17160 break;
17161 sym = n;
17162 }
17163
17164 if (symbol_section_p (sym))
17165 return TRUE;
17166
17167 symsec = S_GET_SEGMENT (sym);
17168
17169 /* This must duplicate the test in adjust_reloc_syms. */
17170 return (!bfd_is_und_section (symsec)
17171 && !bfd_is_abs_section (symsec)
17172 && !bfd_is_com_section (symsec)
17173 && !s_is_linkonce (sym, segtype)
17174 #ifdef OBJ_ELF
17175 /* A global or weak symbol is treated as external. */
17176 && (!IS_ELF || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
17177 #endif
17178 );
17179 }
17180
17181
17182 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
17183 extended opcode. SEC is the section the frag is in. */
17184
17185 static int
17186 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
17187 {
17188 int type;
17189 const struct mips16_immed_operand *op;
17190 offsetT val;
17191 int mintiny, maxtiny;
17192 segT symsec;
17193 fragS *sym_frag;
17194
17195 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
17196 return 0;
17197 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
17198 return 1;
17199
17200 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
17201 op = mips16_immed_operands;
17202 while (op->type != type)
17203 {
17204 ++op;
17205 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
17206 }
17207
17208 if (op->unsp)
17209 {
17210 if (type == '<' || type == '>' || type == '[' || type == ']')
17211 {
17212 mintiny = 1;
17213 maxtiny = 1 << op->nbits;
17214 }
17215 else
17216 {
17217 mintiny = 0;
17218 maxtiny = (1 << op->nbits) - 1;
17219 }
17220 }
17221 else
17222 {
17223 mintiny = - (1 << (op->nbits - 1));
17224 maxtiny = (1 << (op->nbits - 1)) - 1;
17225 }
17226
17227 sym_frag = symbol_get_frag (fragp->fr_symbol);
17228 val = S_GET_VALUE (fragp->fr_symbol);
17229 symsec = S_GET_SEGMENT (fragp->fr_symbol);
17230
17231 if (op->pcrel)
17232 {
17233 addressT addr;
17234
17235 /* We won't have the section when we are called from
17236 mips_relax_frag. However, we will always have been called
17237 from md_estimate_size_before_relax first. If this is a
17238 branch to a different section, we mark it as such. If SEC is
17239 NULL, and the frag is not marked, then it must be a branch to
17240 the same section. */
17241 if (sec == NULL)
17242 {
17243 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
17244 return 1;
17245 }
17246 else
17247 {
17248 /* Must have been called from md_estimate_size_before_relax. */
17249 if (symsec != sec)
17250 {
17251 fragp->fr_subtype =
17252 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17253
17254 /* FIXME: We should support this, and let the linker
17255 catch branches and loads that are out of range. */
17256 as_bad_where (fragp->fr_file, fragp->fr_line,
17257 _("unsupported PC relative reference to different section"));
17258
17259 return 1;
17260 }
17261 if (fragp != sym_frag && sym_frag->fr_address == 0)
17262 /* Assume non-extended on the first relaxation pass.
17263 The address we have calculated will be bogus if this is
17264 a forward branch to another frag, as the forward frag
17265 will have fr_address == 0. */
17266 return 0;
17267 }
17268
17269 /* In this case, we know for sure that the symbol fragment is in
17270 the same section. If the relax_marker of the symbol fragment
17271 differs from the relax_marker of this fragment, we have not
17272 yet adjusted the symbol fragment fr_address. We want to add
17273 in STRETCH in order to get a better estimate of the address.
17274 This particularly matters because of the shift bits. */
17275 if (stretch != 0
17276 && sym_frag->relax_marker != fragp->relax_marker)
17277 {
17278 fragS *f;
17279
17280 /* Adjust stretch for any alignment frag. Note that if have
17281 been expanding the earlier code, the symbol may be
17282 defined in what appears to be an earlier frag. FIXME:
17283 This doesn't handle the fr_subtype field, which specifies
17284 a maximum number of bytes to skip when doing an
17285 alignment. */
17286 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
17287 {
17288 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
17289 {
17290 if (stretch < 0)
17291 stretch = - ((- stretch)
17292 & ~ ((1 << (int) f->fr_offset) - 1));
17293 else
17294 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
17295 if (stretch == 0)
17296 break;
17297 }
17298 }
17299 if (f != NULL)
17300 val += stretch;
17301 }
17302
17303 addr = fragp->fr_address + fragp->fr_fix;
17304
17305 /* The base address rules are complicated. The base address of
17306 a branch is the following instruction. The base address of a
17307 PC relative load or add is the instruction itself, but if it
17308 is in a delay slot (in which case it can not be extended) use
17309 the address of the instruction whose delay slot it is in. */
17310 if (type == 'p' || type == 'q')
17311 {
17312 addr += 2;
17313
17314 /* If we are currently assuming that this frag should be
17315 extended, then, the current address is two bytes
17316 higher. */
17317 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17318 addr += 2;
17319
17320 /* Ignore the low bit in the target, since it will be set
17321 for a text label. */
17322 if ((val & 1) != 0)
17323 --val;
17324 }
17325 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
17326 addr -= 4;
17327 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
17328 addr -= 2;
17329
17330 val -= addr & ~ ((1 << op->shift) - 1);
17331
17332 /* Branch offsets have an implicit 0 in the lowest bit. */
17333 if (type == 'p' || type == 'q')
17334 val /= 2;
17335
17336 /* If any of the shifted bits are set, we must use an extended
17337 opcode. If the address depends on the size of this
17338 instruction, this can lead to a loop, so we arrange to always
17339 use an extended opcode. We only check this when we are in
17340 the main relaxation loop, when SEC is NULL. */
17341 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
17342 {
17343 fragp->fr_subtype =
17344 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17345 return 1;
17346 }
17347
17348 /* If we are about to mark a frag as extended because the value
17349 is precisely maxtiny + 1, then there is a chance of an
17350 infinite loop as in the following code:
17351 la $4,foo
17352 .skip 1020
17353 .align 2
17354 foo:
17355 In this case when the la is extended, foo is 0x3fc bytes
17356 away, so the la can be shrunk, but then foo is 0x400 away, so
17357 the la must be extended. To avoid this loop, we mark the
17358 frag as extended if it was small, and is about to become
17359 extended with a value of maxtiny + 1. */
17360 if (val == ((maxtiny + 1) << op->shift)
17361 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
17362 && sec == NULL)
17363 {
17364 fragp->fr_subtype =
17365 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17366 return 1;
17367 }
17368 }
17369 else if (symsec != absolute_section && sec != NULL)
17370 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
17371
17372 if ((val & ((1 << op->shift) - 1)) != 0
17373 || val < (mintiny << op->shift)
17374 || val > (maxtiny << op->shift))
17375 return 1;
17376 else
17377 return 0;
17378 }
17379
17380 /* Compute the length of a branch sequence, and adjust the
17381 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
17382 worst-case length is computed, with UPDATE being used to indicate
17383 whether an unconditional (-1), branch-likely (+1) or regular (0)
17384 branch is to be computed. */
17385 static int
17386 relaxed_branch_length (fragS *fragp, asection *sec, int update)
17387 {
17388 bfd_boolean toofar;
17389 int length;
17390
17391 if (fragp
17392 && S_IS_DEFINED (fragp->fr_symbol)
17393 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17394 {
17395 addressT addr;
17396 offsetT val;
17397
17398 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17399
17400 addr = fragp->fr_address + fragp->fr_fix + 4;
17401
17402 val -= addr;
17403
17404 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
17405 }
17406 else if (fragp)
17407 /* If the symbol is not defined or it's in a different segment,
17408 assume the user knows what's going on and emit a short
17409 branch. */
17410 toofar = FALSE;
17411 else
17412 toofar = TRUE;
17413
17414 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
17415 fragp->fr_subtype
17416 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
17417 RELAX_BRANCH_UNCOND (fragp->fr_subtype),
17418 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
17419 RELAX_BRANCH_LINK (fragp->fr_subtype),
17420 toofar);
17421
17422 length = 4;
17423 if (toofar)
17424 {
17425 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
17426 length += 8;
17427
17428 if (mips_pic != NO_PIC)
17429 {
17430 /* Additional space for PIC loading of target address. */
17431 length += 8;
17432 if (mips_opts.isa == ISA_MIPS1)
17433 /* Additional space for $at-stabilizing nop. */
17434 length += 4;
17435 }
17436
17437 /* If branch is conditional. */
17438 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
17439 length += 8;
17440 }
17441
17442 return length;
17443 }
17444
17445 /* Compute the length of a branch sequence, and adjust the
17446 RELAX_MICROMIPS_TOOFAR32 bit accordingly. If FRAGP is NULL, the
17447 worst-case length is computed, with UPDATE being used to indicate
17448 whether an unconditional (-1), or regular (0) branch is to be
17449 computed. */
17450
17451 static int
17452 relaxed_micromips_32bit_branch_length (fragS *fragp, asection *sec, int update)
17453 {
17454 bfd_boolean toofar;
17455 int length;
17456
17457 if (fragp
17458 && S_IS_DEFINED (fragp->fr_symbol)
17459 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17460 {
17461 addressT addr;
17462 offsetT val;
17463
17464 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17465 /* Ignore the low bit in the target, since it will be set
17466 for a text label. */
17467 if ((val & 1) != 0)
17468 --val;
17469
17470 addr = fragp->fr_address + fragp->fr_fix + 4;
17471
17472 val -= addr;
17473
17474 toofar = val < - (0x8000 << 1) || val >= (0x8000 << 1);
17475 }
17476 else if (fragp)
17477 /* If the symbol is not defined or it's in a different segment,
17478 assume the user knows what's going on and emit a short
17479 branch. */
17480 toofar = FALSE;
17481 else
17482 toofar = TRUE;
17483
17484 if (fragp && update
17485 && toofar != RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17486 fragp->fr_subtype = (toofar
17487 ? RELAX_MICROMIPS_MARK_TOOFAR32 (fragp->fr_subtype)
17488 : RELAX_MICROMIPS_CLEAR_TOOFAR32 (fragp->fr_subtype));
17489
17490 length = 4;
17491 if (toofar)
17492 {
17493 bfd_boolean compact_known = fragp != NULL;
17494 bfd_boolean compact = FALSE;
17495 bfd_boolean uncond;
17496
17497 if (compact_known)
17498 compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
17499 if (fragp)
17500 uncond = RELAX_MICROMIPS_UNCOND (fragp->fr_subtype);
17501 else
17502 uncond = update < 0;
17503
17504 /* If label is out of range, we turn branch <br>:
17505
17506 <br> label # 4 bytes
17507 0:
17508
17509 into:
17510
17511 j label # 4 bytes
17512 nop # 2 bytes if compact && !PIC
17513 0:
17514 */
17515 if (mips_pic == NO_PIC && (!compact_known || compact))
17516 length += 2;
17517
17518 /* If assembling PIC code, we further turn:
17519
17520 j label # 4 bytes
17521
17522 into:
17523
17524 lw/ld at, %got(label)(gp) # 4 bytes
17525 d/addiu at, %lo(label) # 4 bytes
17526 jr/c at # 2 bytes
17527 */
17528 if (mips_pic != NO_PIC)
17529 length += 6;
17530
17531 /* If branch <br> is conditional, we prepend negated branch <brneg>:
17532
17533 <brneg> 0f # 4 bytes
17534 nop # 2 bytes if !compact
17535 */
17536 if (!uncond)
17537 length += (compact_known && compact) ? 4 : 6;
17538 }
17539
17540 return length;
17541 }
17542
17543 /* Compute the length of a branch, and adjust the RELAX_MICROMIPS_TOOFAR16
17544 bit accordingly. */
17545
17546 static int
17547 relaxed_micromips_16bit_branch_length (fragS *fragp, asection *sec, int update)
17548 {
17549 bfd_boolean toofar;
17550
17551 if (fragp
17552 && S_IS_DEFINED (fragp->fr_symbol)
17553 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17554 {
17555 addressT addr;
17556 offsetT val;
17557 int type;
17558
17559 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17560 /* Ignore the low bit in the target, since it will be set
17561 for a text label. */
17562 if ((val & 1) != 0)
17563 --val;
17564
17565 /* Assume this is a 2-byte branch. */
17566 addr = fragp->fr_address + fragp->fr_fix + 2;
17567
17568 /* We try to avoid the infinite loop by not adding 2 more bytes for
17569 long branches. */
17570
17571 val -= addr;
17572
17573 type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
17574 if (type == 'D')
17575 toofar = val < - (0x200 << 1) || val >= (0x200 << 1);
17576 else if (type == 'E')
17577 toofar = val < - (0x40 << 1) || val >= (0x40 << 1);
17578 else
17579 abort ();
17580 }
17581 else
17582 /* If the symbol is not defined or it's in a different segment,
17583 we emit a normal 32-bit branch. */
17584 toofar = TRUE;
17585
17586 if (fragp && update
17587 && toofar != RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
17588 fragp->fr_subtype
17589 = toofar ? RELAX_MICROMIPS_MARK_TOOFAR16 (fragp->fr_subtype)
17590 : RELAX_MICROMIPS_CLEAR_TOOFAR16 (fragp->fr_subtype);
17591
17592 if (toofar)
17593 return 4;
17594
17595 return 2;
17596 }
17597
17598 /* Estimate the size of a frag before relaxing. Unless this is the
17599 mips16, we are not really relaxing here, and the final size is
17600 encoded in the subtype information. For the mips16, we have to
17601 decide whether we are using an extended opcode or not. */
17602
17603 int
17604 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
17605 {
17606 int change;
17607
17608 if (RELAX_BRANCH_P (fragp->fr_subtype))
17609 {
17610
17611 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
17612
17613 return fragp->fr_var;
17614 }
17615
17616 if (RELAX_MIPS16_P (fragp->fr_subtype))
17617 /* We don't want to modify the EXTENDED bit here; it might get us
17618 into infinite loops. We change it only in mips_relax_frag(). */
17619 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
17620
17621 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17622 {
17623 int length = 4;
17624
17625 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17626 length = relaxed_micromips_16bit_branch_length (fragp, segtype, FALSE);
17627 if (length == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17628 length = relaxed_micromips_32bit_branch_length (fragp, segtype, FALSE);
17629 fragp->fr_var = length;
17630
17631 return length;
17632 }
17633
17634 if (mips_pic == NO_PIC)
17635 change = nopic_need_relax (fragp->fr_symbol, 0);
17636 else if (mips_pic == SVR4_PIC)
17637 change = pic_need_relax (fragp->fr_symbol, segtype);
17638 else if (mips_pic == VXWORKS_PIC)
17639 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
17640 change = 0;
17641 else
17642 abort ();
17643
17644 if (change)
17645 {
17646 fragp->fr_subtype |= RELAX_USE_SECOND;
17647 return -RELAX_FIRST (fragp->fr_subtype);
17648 }
17649 else
17650 return -RELAX_SECOND (fragp->fr_subtype);
17651 }
17652
17653 /* This is called to see whether a reloc against a defined symbol
17654 should be converted into a reloc against a section. */
17655
17656 int
17657 mips_fix_adjustable (fixS *fixp)
17658 {
17659 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
17660 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17661 return 0;
17662
17663 if (fixp->fx_addsy == NULL)
17664 return 1;
17665
17666 /* If symbol SYM is in a mergeable section, relocations of the form
17667 SYM + 0 can usually be made section-relative. The mergeable data
17668 is then identified by the section offset rather than by the symbol.
17669
17670 However, if we're generating REL LO16 relocations, the offset is split
17671 between the LO16 and parterning high part relocation. The linker will
17672 need to recalculate the complete offset in order to correctly identify
17673 the merge data.
17674
17675 The linker has traditionally not looked for the parterning high part
17676 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
17677 placed anywhere. Rather than break backwards compatibility by changing
17678 this, it seems better not to force the issue, and instead keep the
17679 original symbol. This will work with either linker behavior. */
17680 if ((lo16_reloc_p (fixp->fx_r_type)
17681 || reloc_needs_lo_p (fixp->fx_r_type))
17682 && HAVE_IN_PLACE_ADDENDS
17683 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
17684 return 0;
17685
17686 /* There is no place to store an in-place offset for JALR relocations.
17687 Likewise an in-range offset of PC-relative relocations may overflow
17688 the in-place relocatable field if recalculated against the start
17689 address of the symbol's containing section. */
17690 if (HAVE_IN_PLACE_ADDENDS
17691 && (fixp->fx_pcrel || jalr_reloc_p (fixp->fx_r_type)))
17692 return 0;
17693
17694 #ifdef OBJ_ELF
17695 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
17696 to a floating-point stub. The same is true for non-R_MIPS16_26
17697 relocations against MIPS16 functions; in this case, the stub becomes
17698 the function's canonical address.
17699
17700 Floating-point stubs are stored in unique .mips16.call.* or
17701 .mips16.fn.* sections. If a stub T for function F is in section S,
17702 the first relocation in section S must be against F; this is how the
17703 linker determines the target function. All relocations that might
17704 resolve to T must also be against F. We therefore have the following
17705 restrictions, which are given in an intentionally-redundant way:
17706
17707 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
17708 symbols.
17709
17710 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
17711 if that stub might be used.
17712
17713 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
17714 symbols.
17715
17716 4. We cannot reduce a stub's relocations against MIPS16 symbols if
17717 that stub might be used.
17718
17719 There is a further restriction:
17720
17721 5. We cannot reduce jump relocations (R_MIPS_26, R_MIPS16_26 or
17722 R_MICROMIPS_26_S1) against MIPS16 or microMIPS symbols on
17723 targets with in-place addends; the relocation field cannot
17724 encode the low bit.
17725
17726 For simplicity, we deal with (3)-(4) by not reducing _any_ relocation
17727 against a MIPS16 symbol. We deal with (5) by by not reducing any
17728 such relocations on REL targets.
17729
17730 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
17731 relocation against some symbol R, no relocation against R may be
17732 reduced. (Note that this deals with (2) as well as (1) because
17733 relocations against global symbols will never be reduced on ELF
17734 targets.) This approach is a little simpler than trying to detect
17735 stub sections, and gives the "all or nothing" per-symbol consistency
17736 that we have for MIPS16 symbols. */
17737 if (IS_ELF
17738 && fixp->fx_subsy == NULL
17739 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
17740 || *symbol_get_tc (fixp->fx_addsy)
17741 || (HAVE_IN_PLACE_ADDENDS
17742 && ELF_ST_IS_MICROMIPS (S_GET_OTHER (fixp->fx_addsy))
17743 && jmp_reloc_p (fixp->fx_r_type))))
17744 return 0;
17745 #endif
17746
17747 return 1;
17748 }
17749
17750 /* Translate internal representation of relocation info to BFD target
17751 format. */
17752
17753 arelent **
17754 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
17755 {
17756 static arelent *retval[4];
17757 arelent *reloc;
17758 bfd_reloc_code_real_type code;
17759
17760 memset (retval, 0, sizeof(retval));
17761 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
17762 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
17763 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
17764 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
17765
17766 if (fixp->fx_pcrel)
17767 {
17768 gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
17769 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
17770 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
17771 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1);
17772
17773 /* At this point, fx_addnumber is "symbol offset - pcrel address".
17774 Relocations want only the symbol offset. */
17775 reloc->addend = fixp->fx_addnumber + reloc->address;
17776 if (!IS_ELF)
17777 {
17778 /* A gruesome hack which is a result of the gruesome gas
17779 reloc handling. What's worse, for COFF (as opposed to
17780 ECOFF), we might need yet another copy of reloc->address.
17781 See bfd_install_relocation. */
17782 reloc->addend += reloc->address;
17783 }
17784 }
17785 else
17786 reloc->addend = fixp->fx_addnumber;
17787
17788 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
17789 entry to be used in the relocation's section offset. */
17790 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17791 {
17792 reloc->address = reloc->addend;
17793 reloc->addend = 0;
17794 }
17795
17796 code = fixp->fx_r_type;
17797
17798 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
17799 if (reloc->howto == NULL)
17800 {
17801 as_bad_where (fixp->fx_file, fixp->fx_line,
17802 _("Can not represent %s relocation in this object file format"),
17803 bfd_get_reloc_code_name (code));
17804 retval[0] = NULL;
17805 }
17806
17807 return retval;
17808 }
17809
17810 /* Relax a machine dependent frag. This returns the amount by which
17811 the current size of the frag should change. */
17812
17813 int
17814 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
17815 {
17816 if (RELAX_BRANCH_P (fragp->fr_subtype))
17817 {
17818 offsetT old_var = fragp->fr_var;
17819
17820 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
17821
17822 return fragp->fr_var - old_var;
17823 }
17824
17825 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17826 {
17827 offsetT old_var = fragp->fr_var;
17828 offsetT new_var = 4;
17829
17830 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17831 new_var = relaxed_micromips_16bit_branch_length (fragp, sec, TRUE);
17832 if (new_var == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17833 new_var = relaxed_micromips_32bit_branch_length (fragp, sec, TRUE);
17834 fragp->fr_var = new_var;
17835
17836 return new_var - old_var;
17837 }
17838
17839 if (! RELAX_MIPS16_P (fragp->fr_subtype))
17840 return 0;
17841
17842 if (mips16_extended_frag (fragp, NULL, stretch))
17843 {
17844 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17845 return 0;
17846 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
17847 return 2;
17848 }
17849 else
17850 {
17851 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17852 return 0;
17853 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
17854 return -2;
17855 }
17856
17857 return 0;
17858 }
17859
17860 /* Convert a machine dependent frag. */
17861
17862 void
17863 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
17864 {
17865 if (RELAX_BRANCH_P (fragp->fr_subtype))
17866 {
17867 char *buf;
17868 unsigned long insn;
17869 expressionS exp;
17870 fixS *fixp;
17871
17872 buf = fragp->fr_literal + fragp->fr_fix;
17873 insn = read_insn (buf);
17874
17875 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
17876 {
17877 /* We generate a fixup instead of applying it right now
17878 because, if there are linker relaxations, we're going to
17879 need the relocations. */
17880 exp.X_op = O_symbol;
17881 exp.X_add_symbol = fragp->fr_symbol;
17882 exp.X_add_number = fragp->fr_offset;
17883
17884 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
17885 BFD_RELOC_16_PCREL_S2);
17886 fixp->fx_file = fragp->fr_file;
17887 fixp->fx_line = fragp->fr_line;
17888
17889 buf = write_insn (buf, insn);
17890 }
17891 else
17892 {
17893 int i;
17894
17895 as_warn_where (fragp->fr_file, fragp->fr_line,
17896 _("Relaxed out-of-range branch into a jump"));
17897
17898 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
17899 goto uncond;
17900
17901 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17902 {
17903 /* Reverse the branch. */
17904 switch ((insn >> 28) & 0xf)
17905 {
17906 case 4:
17907 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
17908 have the condition reversed by tweaking a single
17909 bit, and their opcodes all have 0x4???????. */
17910 gas_assert ((insn & 0xf1000000) == 0x41000000);
17911 insn ^= 0x00010000;
17912 break;
17913
17914 case 0:
17915 /* bltz 0x04000000 bgez 0x04010000
17916 bltzal 0x04100000 bgezal 0x04110000 */
17917 gas_assert ((insn & 0xfc0e0000) == 0x04000000);
17918 insn ^= 0x00010000;
17919 break;
17920
17921 case 1:
17922 /* beq 0x10000000 bne 0x14000000
17923 blez 0x18000000 bgtz 0x1c000000 */
17924 insn ^= 0x04000000;
17925 break;
17926
17927 default:
17928 abort ();
17929 }
17930 }
17931
17932 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
17933 {
17934 /* Clear the and-link bit. */
17935 gas_assert ((insn & 0xfc1c0000) == 0x04100000);
17936
17937 /* bltzal 0x04100000 bgezal 0x04110000
17938 bltzall 0x04120000 bgezall 0x04130000 */
17939 insn &= ~0x00100000;
17940 }
17941
17942 /* Branch over the branch (if the branch was likely) or the
17943 full jump (not likely case). Compute the offset from the
17944 current instruction to branch to. */
17945 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17946 i = 16;
17947 else
17948 {
17949 /* How many bytes in instructions we've already emitted? */
17950 i = buf - fragp->fr_literal - fragp->fr_fix;
17951 /* How many bytes in instructions from here to the end? */
17952 i = fragp->fr_var - i;
17953 }
17954 /* Convert to instruction count. */
17955 i >>= 2;
17956 /* Branch counts from the next instruction. */
17957 i--;
17958 insn |= i;
17959 /* Branch over the jump. */
17960 buf = write_insn (buf, insn);
17961
17962 /* nop */
17963 buf = write_insn (buf, 0);
17964
17965 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
17966 {
17967 /* beql $0, $0, 2f */
17968 insn = 0x50000000;
17969 /* Compute the PC offset from the current instruction to
17970 the end of the variable frag. */
17971 /* How many bytes in instructions we've already emitted? */
17972 i = buf - fragp->fr_literal - fragp->fr_fix;
17973 /* How many bytes in instructions from here to the end? */
17974 i = fragp->fr_var - i;
17975 /* Convert to instruction count. */
17976 i >>= 2;
17977 /* Don't decrement i, because we want to branch over the
17978 delay slot. */
17979 insn |= i;
17980
17981 buf = write_insn (buf, insn);
17982 buf = write_insn (buf, 0);
17983 }
17984
17985 uncond:
17986 if (mips_pic == NO_PIC)
17987 {
17988 /* j or jal. */
17989 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
17990 ? 0x0c000000 : 0x08000000);
17991 exp.X_op = O_symbol;
17992 exp.X_add_symbol = fragp->fr_symbol;
17993 exp.X_add_number = fragp->fr_offset;
17994
17995 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
17996 FALSE, BFD_RELOC_MIPS_JMP);
17997 fixp->fx_file = fragp->fr_file;
17998 fixp->fx_line = fragp->fr_line;
17999
18000 buf = write_insn (buf, insn);
18001 }
18002 else
18003 {
18004 unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
18005
18006 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
18007 insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
18008 insn |= at << OP_SH_RT;
18009 exp.X_op = O_symbol;
18010 exp.X_add_symbol = fragp->fr_symbol;
18011 exp.X_add_number = fragp->fr_offset;
18012
18013 if (fragp->fr_offset)
18014 {
18015 exp.X_add_symbol = make_expr_symbol (&exp);
18016 exp.X_add_number = 0;
18017 }
18018
18019 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18020 FALSE, BFD_RELOC_MIPS_GOT16);
18021 fixp->fx_file = fragp->fr_file;
18022 fixp->fx_line = fragp->fr_line;
18023
18024 buf = write_insn (buf, insn);
18025
18026 if (mips_opts.isa == ISA_MIPS1)
18027 /* nop */
18028 buf = write_insn (buf, 0);
18029
18030 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
18031 insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
18032 insn |= at << OP_SH_RS | at << OP_SH_RT;
18033
18034 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18035 FALSE, BFD_RELOC_LO16);
18036 fixp->fx_file = fragp->fr_file;
18037 fixp->fx_line = fragp->fr_line;
18038
18039 buf = write_insn (buf, insn);
18040
18041 /* j(al)r $at. */
18042 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
18043 insn = 0x0000f809;
18044 else
18045 insn = 0x00000008;
18046 insn |= at << OP_SH_RS;
18047
18048 buf = write_insn (buf, insn);
18049 }
18050 }
18051
18052 fragp->fr_fix += fragp->fr_var;
18053 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
18054 return;
18055 }
18056
18057 /* Relax microMIPS branches. */
18058 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
18059 {
18060 char *buf = fragp->fr_literal + fragp->fr_fix;
18061 bfd_boolean compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
18062 bfd_boolean al = RELAX_MICROMIPS_LINK (fragp->fr_subtype);
18063 int type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
18064 bfd_boolean short_ds;
18065 unsigned long insn;
18066 expressionS exp;
18067 fixS *fixp;
18068
18069 exp.X_op = O_symbol;
18070 exp.X_add_symbol = fragp->fr_symbol;
18071 exp.X_add_number = fragp->fr_offset;
18072
18073 fragp->fr_fix += fragp->fr_var;
18074
18075 /* Handle 16-bit branches that fit or are forced to fit. */
18076 if (type != 0 && !RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
18077 {
18078 /* We generate a fixup instead of applying it right now,
18079 because if there is linker relaxation, we're going to
18080 need the relocations. */
18081 if (type == 'D')
18082 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
18083 BFD_RELOC_MICROMIPS_10_PCREL_S1);
18084 else if (type == 'E')
18085 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
18086 BFD_RELOC_MICROMIPS_7_PCREL_S1);
18087 else
18088 abort ();
18089
18090 fixp->fx_file = fragp->fr_file;
18091 fixp->fx_line = fragp->fr_line;
18092
18093 /* These relocations can have an addend that won't fit in
18094 2 octets. */
18095 fixp->fx_no_overflow = 1;
18096
18097 return;
18098 }
18099
18100 /* Handle 32-bit branches that fit or are forced to fit. */
18101 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
18102 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
18103 {
18104 /* We generate a fixup instead of applying it right now,
18105 because if there is linker relaxation, we're going to
18106 need the relocations. */
18107 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
18108 BFD_RELOC_MICROMIPS_16_PCREL_S1);
18109 fixp->fx_file = fragp->fr_file;
18110 fixp->fx_line = fragp->fr_line;
18111
18112 if (type == 0)
18113 return;
18114 }
18115
18116 /* Relax 16-bit branches to 32-bit branches. */
18117 if (type != 0)
18118 {
18119 insn = read_compressed_insn (buf, 2);
18120
18121 if ((insn & 0xfc00) == 0xcc00) /* b16 */
18122 insn = 0x94000000; /* beq */
18123 else if ((insn & 0xdc00) == 0x8c00) /* beqz16/bnez16 */
18124 {
18125 unsigned long regno;
18126
18127 regno = (insn >> MICROMIPSOP_SH_MD) & MICROMIPSOP_MASK_MD;
18128 regno = micromips_to_32_reg_d_map [regno];
18129 insn = ((insn & 0x2000) << 16) | 0x94000000; /* beq/bne */
18130 insn |= regno << MICROMIPSOP_SH_RS;
18131 }
18132 else
18133 abort ();
18134
18135 /* Nothing else to do, just write it out. */
18136 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
18137 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
18138 {
18139 buf = write_compressed_insn (buf, insn, 4);
18140 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
18141 return;
18142 }
18143 }
18144 else
18145 insn = read_compressed_insn (buf, 4);
18146
18147 /* Relax 32-bit branches to a sequence of instructions. */
18148 as_warn_where (fragp->fr_file, fragp->fr_line,
18149 _("Relaxed out-of-range branch into a jump"));
18150
18151 /* Set the short-delay-slot bit. */
18152 short_ds = al && (insn & 0x02000000) != 0;
18153
18154 if (!RELAX_MICROMIPS_UNCOND (fragp->fr_subtype))
18155 {
18156 symbolS *l;
18157
18158 /* Reverse the branch. */
18159 if ((insn & 0xfc000000) == 0x94000000 /* beq */
18160 || (insn & 0xfc000000) == 0xb4000000) /* bne */
18161 insn ^= 0x20000000;
18162 else if ((insn & 0xffe00000) == 0x40000000 /* bltz */
18163 || (insn & 0xffe00000) == 0x40400000 /* bgez */
18164 || (insn & 0xffe00000) == 0x40800000 /* blez */
18165 || (insn & 0xffe00000) == 0x40c00000 /* bgtz */
18166 || (insn & 0xffe00000) == 0x40a00000 /* bnezc */
18167 || (insn & 0xffe00000) == 0x40e00000 /* beqzc */
18168 || (insn & 0xffe00000) == 0x40200000 /* bltzal */
18169 || (insn & 0xffe00000) == 0x40600000 /* bgezal */
18170 || (insn & 0xffe00000) == 0x42200000 /* bltzals */
18171 || (insn & 0xffe00000) == 0x42600000) /* bgezals */
18172 insn ^= 0x00400000;
18173 else if ((insn & 0xffe30000) == 0x43800000 /* bc1f */
18174 || (insn & 0xffe30000) == 0x43a00000 /* bc1t */
18175 || (insn & 0xffe30000) == 0x42800000 /* bc2f */
18176 || (insn & 0xffe30000) == 0x42a00000) /* bc2t */
18177 insn ^= 0x00200000;
18178 else
18179 abort ();
18180
18181 if (al)
18182 {
18183 /* Clear the and-link and short-delay-slot bits. */
18184 gas_assert ((insn & 0xfda00000) == 0x40200000);
18185
18186 /* bltzal 0x40200000 bgezal 0x40600000 */
18187 /* bltzals 0x42200000 bgezals 0x42600000 */
18188 insn &= ~0x02200000;
18189 }
18190
18191 /* Make a label at the end for use with the branch. */
18192 l = symbol_new (micromips_label_name (), asec, fragp->fr_fix, fragp);
18193 micromips_label_inc ();
18194 #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
18195 if (IS_ELF)
18196 S_SET_OTHER (l, ELF_ST_SET_MICROMIPS (S_GET_OTHER (l)));
18197 #endif
18198
18199 /* Refer to it. */
18200 fixp = fix_new (fragp, buf - fragp->fr_literal, 4, l, 0, TRUE,
18201 BFD_RELOC_MICROMIPS_16_PCREL_S1);
18202 fixp->fx_file = fragp->fr_file;
18203 fixp->fx_line = fragp->fr_line;
18204
18205 /* Branch over the jump. */
18206 buf = write_compressed_insn (buf, insn, 4);
18207 if (!compact)
18208 /* nop */
18209 buf = write_compressed_insn (buf, 0x0c00, 2);
18210 }
18211
18212 if (mips_pic == NO_PIC)
18213 {
18214 unsigned long jal = short_ds ? 0x74000000 : 0xf4000000; /* jal/s */
18215
18216 /* j/jal/jals <sym> R_MICROMIPS_26_S1 */
18217 insn = al ? jal : 0xd4000000;
18218
18219 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18220 BFD_RELOC_MICROMIPS_JMP);
18221 fixp->fx_file = fragp->fr_file;
18222 fixp->fx_line = fragp->fr_line;
18223
18224 buf = write_compressed_insn (buf, insn, 4);
18225 if (compact)
18226 /* nop */
18227 buf = write_compressed_insn (buf, 0x0c00, 2);
18228 }
18229 else
18230 {
18231 unsigned long at = RELAX_MICROMIPS_AT (fragp->fr_subtype);
18232 unsigned long jalr = short_ds ? 0x45e0 : 0x45c0; /* jalr/s */
18233 unsigned long jr = compact ? 0x45a0 : 0x4580; /* jr/c */
18234
18235 /* lw/ld $at, <sym>($gp) R_MICROMIPS_GOT16 */
18236 insn = HAVE_64BIT_ADDRESSES ? 0xdc1c0000 : 0xfc1c0000;
18237 insn |= at << MICROMIPSOP_SH_RT;
18238
18239 if (exp.X_add_number)
18240 {
18241 exp.X_add_symbol = make_expr_symbol (&exp);
18242 exp.X_add_number = 0;
18243 }
18244
18245 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18246 BFD_RELOC_MICROMIPS_GOT16);
18247 fixp->fx_file = fragp->fr_file;
18248 fixp->fx_line = fragp->fr_line;
18249
18250 buf = write_compressed_insn (buf, insn, 4);
18251
18252 /* d/addiu $at, $at, <sym> R_MICROMIPS_LO16 */
18253 insn = HAVE_64BIT_ADDRESSES ? 0x5c000000 : 0x30000000;
18254 insn |= at << MICROMIPSOP_SH_RT | at << MICROMIPSOP_SH_RS;
18255
18256 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18257 BFD_RELOC_MICROMIPS_LO16);
18258 fixp->fx_file = fragp->fr_file;
18259 fixp->fx_line = fragp->fr_line;
18260
18261 buf = write_compressed_insn (buf, insn, 4);
18262
18263 /* jr/jrc/jalr/jalrs $at */
18264 insn = al ? jalr : jr;
18265 insn |= at << MICROMIPSOP_SH_MJ;
18266
18267 buf = write_compressed_insn (buf, insn, 2);
18268 }
18269
18270 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
18271 return;
18272 }
18273
18274 if (RELAX_MIPS16_P (fragp->fr_subtype))
18275 {
18276 int type;
18277 const struct mips16_immed_operand *op;
18278 offsetT val;
18279 char *buf;
18280 unsigned int user_length, length;
18281 unsigned long insn;
18282 bfd_boolean ext;
18283
18284 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
18285 op = mips16_immed_operands;
18286 while (op->type != type)
18287 ++op;
18288
18289 ext = RELAX_MIPS16_EXTENDED (fragp->fr_subtype);
18290 val = resolve_symbol_value (fragp->fr_symbol);
18291 if (op->pcrel)
18292 {
18293 addressT addr;
18294
18295 addr = fragp->fr_address + fragp->fr_fix;
18296
18297 /* The rules for the base address of a PC relative reloc are
18298 complicated; see mips16_extended_frag. */
18299 if (type == 'p' || type == 'q')
18300 {
18301 addr += 2;
18302 if (ext)
18303 addr += 2;
18304 /* Ignore the low bit in the target, since it will be
18305 set for a text label. */
18306 if ((val & 1) != 0)
18307 --val;
18308 }
18309 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
18310 addr -= 4;
18311 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
18312 addr -= 2;
18313
18314 addr &= ~ (addressT) ((1 << op->shift) - 1);
18315 val -= addr;
18316
18317 /* Make sure the section winds up with the alignment we have
18318 assumed. */
18319 if (op->shift > 0)
18320 record_alignment (asec, op->shift);
18321 }
18322
18323 if (ext
18324 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
18325 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
18326 as_warn_where (fragp->fr_file, fragp->fr_line,
18327 _("extended instruction in delay slot"));
18328
18329 buf = fragp->fr_literal + fragp->fr_fix;
18330
18331 insn = read_compressed_insn (buf, 2);
18332 if (ext)
18333 insn |= MIPS16_EXTEND;
18334
18335 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
18336 user_length = 4;
18337 else if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
18338 user_length = 2;
18339 else
18340 user_length = 0;
18341
18342 mips16_immed (fragp->fr_file, fragp->fr_line, type,
18343 BFD_RELOC_UNUSED, val, user_length, &insn);
18344
18345 length = (ext ? 4 : 2);
18346 gas_assert (mips16_opcode_length (insn) == length);
18347 write_compressed_insn (buf, insn, length);
18348 fragp->fr_fix += length;
18349 }
18350 else
18351 {
18352 relax_substateT subtype = fragp->fr_subtype;
18353 bfd_boolean second_longer = (subtype & RELAX_SECOND_LONGER) != 0;
18354 bfd_boolean use_second = (subtype & RELAX_USE_SECOND) != 0;
18355 int first, second;
18356 fixS *fixp;
18357
18358 first = RELAX_FIRST (subtype);
18359 second = RELAX_SECOND (subtype);
18360 fixp = (fixS *) fragp->fr_opcode;
18361
18362 /* If the delay slot chosen does not match the size of the instruction,
18363 then emit a warning. */
18364 if ((!use_second && (subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0)
18365 || (use_second && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0))
18366 {
18367 relax_substateT s;
18368 const char *msg;
18369
18370 s = subtype & (RELAX_DELAY_SLOT_16BIT
18371 | RELAX_DELAY_SLOT_SIZE_FIRST
18372 | RELAX_DELAY_SLOT_SIZE_SECOND);
18373 msg = macro_warning (s);
18374 if (msg != NULL)
18375 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
18376 subtype &= ~s;
18377 }
18378
18379 /* Possibly emit a warning if we've chosen the longer option. */
18380 if (use_second == second_longer)
18381 {
18382 relax_substateT s;
18383 const char *msg;
18384
18385 s = (subtype
18386 & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT));
18387 msg = macro_warning (s);
18388 if (msg != NULL)
18389 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
18390 subtype &= ~s;
18391 }
18392
18393 /* Go through all the fixups for the first sequence. Disable them
18394 (by marking them as done) if we're going to use the second
18395 sequence instead. */
18396 while (fixp
18397 && fixp->fx_frag == fragp
18398 && fixp->fx_where < fragp->fr_fix - second)
18399 {
18400 if (subtype & RELAX_USE_SECOND)
18401 fixp->fx_done = 1;
18402 fixp = fixp->fx_next;
18403 }
18404
18405 /* Go through the fixups for the second sequence. Disable them if
18406 we're going to use the first sequence, otherwise adjust their
18407 addresses to account for the relaxation. */
18408 while (fixp && fixp->fx_frag == fragp)
18409 {
18410 if (subtype & RELAX_USE_SECOND)
18411 fixp->fx_where -= first;
18412 else
18413 fixp->fx_done = 1;
18414 fixp = fixp->fx_next;
18415 }
18416
18417 /* Now modify the frag contents. */
18418 if (subtype & RELAX_USE_SECOND)
18419 {
18420 char *start;
18421
18422 start = fragp->fr_literal + fragp->fr_fix - first - second;
18423 memmove (start, start + first, second);
18424 fragp->fr_fix -= first;
18425 }
18426 else
18427 fragp->fr_fix -= second;
18428 }
18429 }
18430
18431 #ifdef OBJ_ELF
18432
18433 /* This function is called after the relocs have been generated.
18434 We've been storing mips16 text labels as odd. Here we convert them
18435 back to even for the convenience of the debugger. */
18436
18437 void
18438 mips_frob_file_after_relocs (void)
18439 {
18440 asymbol **syms;
18441 unsigned int count, i;
18442
18443 if (!IS_ELF)
18444 return;
18445
18446 syms = bfd_get_outsymbols (stdoutput);
18447 count = bfd_get_symcount (stdoutput);
18448 for (i = 0; i < count; i++, syms++)
18449 if (ELF_ST_IS_COMPRESSED (elf_symbol (*syms)->internal_elf_sym.st_other)
18450 && ((*syms)->value & 1) != 0)
18451 {
18452 (*syms)->value &= ~1;
18453 /* If the symbol has an odd size, it was probably computed
18454 incorrectly, so adjust that as well. */
18455 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
18456 ++elf_symbol (*syms)->internal_elf_sym.st_size;
18457 }
18458 }
18459
18460 #endif
18461
18462 /* This function is called whenever a label is defined, including fake
18463 labels instantiated off the dot special symbol. It is used when
18464 handling branch delays; if a branch has a label, we assume we cannot
18465 move it. This also bumps the value of the symbol by 1 in compressed
18466 code. */
18467
18468 static void
18469 mips_record_label (symbolS *sym)
18470 {
18471 segment_info_type *si = seg_info (now_seg);
18472 struct insn_label_list *l;
18473
18474 if (free_insn_labels == NULL)
18475 l = (struct insn_label_list *) xmalloc (sizeof *l);
18476 else
18477 {
18478 l = free_insn_labels;
18479 free_insn_labels = l->next;
18480 }
18481
18482 l->label = sym;
18483 l->next = si->label_list;
18484 si->label_list = l;
18485 }
18486
18487 /* This function is called as tc_frob_label() whenever a label is defined
18488 and adds a DWARF-2 record we only want for true labels. */
18489
18490 void
18491 mips_define_label (symbolS *sym)
18492 {
18493 mips_record_label (sym);
18494 #ifdef OBJ_ELF
18495 dwarf2_emit_label (sym);
18496 #endif
18497 }
18498
18499 /* This function is called by tc_new_dot_label whenever a new dot symbol
18500 is defined. */
18501
18502 void
18503 mips_add_dot_label (symbolS *sym)
18504 {
18505 mips_record_label (sym);
18506 if (mips_assembling_insn && HAVE_CODE_COMPRESSION)
18507 mips_compressed_mark_label (sym);
18508 }
18509 \f
18510 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
18511
18512 /* Some special processing for a MIPS ELF file. */
18513
18514 void
18515 mips_elf_final_processing (void)
18516 {
18517 /* Write out the register information. */
18518 if (mips_abi != N64_ABI)
18519 {
18520 Elf32_RegInfo s;
18521
18522 s.ri_gprmask = mips_gprmask;
18523 s.ri_cprmask[0] = mips_cprmask[0];
18524 s.ri_cprmask[1] = mips_cprmask[1];
18525 s.ri_cprmask[2] = mips_cprmask[2];
18526 s.ri_cprmask[3] = mips_cprmask[3];
18527 /* The gp_value field is set by the MIPS ELF backend. */
18528
18529 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
18530 ((Elf32_External_RegInfo *)
18531 mips_regmask_frag));
18532 }
18533 else
18534 {
18535 Elf64_Internal_RegInfo s;
18536
18537 s.ri_gprmask = mips_gprmask;
18538 s.ri_pad = 0;
18539 s.ri_cprmask[0] = mips_cprmask[0];
18540 s.ri_cprmask[1] = mips_cprmask[1];
18541 s.ri_cprmask[2] = mips_cprmask[2];
18542 s.ri_cprmask[3] = mips_cprmask[3];
18543 /* The gp_value field is set by the MIPS ELF backend. */
18544
18545 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
18546 ((Elf64_External_RegInfo *)
18547 mips_regmask_frag));
18548 }
18549
18550 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
18551 sort of BFD interface for this. */
18552 if (mips_any_noreorder)
18553 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
18554 if (mips_pic != NO_PIC)
18555 {
18556 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
18557 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18558 }
18559 if (mips_abicalls)
18560 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18561
18562 /* Set MIPS ELF flags for ASEs. */
18563 /* We may need to define a new flag for DSP ASE, and set this flag when
18564 file_ase_dsp is true. */
18565 /* Same for DSP R2. */
18566 /* We may need to define a new flag for MT ASE, and set this flag when
18567 file_ase_mt is true. */
18568 if (file_ase_mips16)
18569 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
18570 if (file_ase_micromips)
18571 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MICROMIPS;
18572 #if 0 /* XXX FIXME */
18573 if (file_ase_mips3d)
18574 elf_elfheader (stdoutput)->e_flags |= ???;
18575 #endif
18576 if (file_ase_mdmx)
18577 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
18578
18579 /* Set the MIPS ELF ABI flags. */
18580 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
18581 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
18582 else if (mips_abi == O64_ABI)
18583 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
18584 else if (mips_abi == EABI_ABI)
18585 {
18586 if (!file_mips_gp32)
18587 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
18588 else
18589 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
18590 }
18591 else if (mips_abi == N32_ABI)
18592 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
18593
18594 /* Nothing to do for N64_ABI. */
18595
18596 if (mips_32bitmode)
18597 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
18598
18599 #if 0 /* XXX FIXME */
18600 /* 32 bit code with 64 bit FP registers. */
18601 if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
18602 elf_elfheader (stdoutput)->e_flags |= ???;
18603 #endif
18604 }
18605
18606 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
18607 \f
18608 typedef struct proc {
18609 symbolS *func_sym;
18610 symbolS *func_end_sym;
18611 unsigned long reg_mask;
18612 unsigned long reg_offset;
18613 unsigned long fpreg_mask;
18614 unsigned long fpreg_offset;
18615 unsigned long frame_offset;
18616 unsigned long frame_reg;
18617 unsigned long pc_reg;
18618 } procS;
18619
18620 static procS cur_proc;
18621 static procS *cur_proc_ptr;
18622 static int numprocs;
18623
18624 /* Implement NOP_OPCODE. We encode a MIPS16 nop as "1", a microMIPS nop
18625 as "2", and a normal nop as "0". */
18626
18627 #define NOP_OPCODE_MIPS 0
18628 #define NOP_OPCODE_MIPS16 1
18629 #define NOP_OPCODE_MICROMIPS 2
18630
18631 char
18632 mips_nop_opcode (void)
18633 {
18634 if (seg_info (now_seg)->tc_segment_info_data.micromips)
18635 return NOP_OPCODE_MICROMIPS;
18636 else if (seg_info (now_seg)->tc_segment_info_data.mips16)
18637 return NOP_OPCODE_MIPS16;
18638 else
18639 return NOP_OPCODE_MIPS;
18640 }
18641
18642 /* Fill in an rs_align_code fragment. Unlike elsewhere we want to use
18643 32-bit microMIPS NOPs here (if applicable). */
18644
18645 void
18646 mips_handle_align (fragS *fragp)
18647 {
18648 char nop_opcode;
18649 char *p;
18650 int bytes, size, excess;
18651 valueT opcode;
18652
18653 if (fragp->fr_type != rs_align_code)
18654 return;
18655
18656 p = fragp->fr_literal + fragp->fr_fix;
18657 nop_opcode = *p;
18658 switch (nop_opcode)
18659 {
18660 case NOP_OPCODE_MICROMIPS:
18661 opcode = micromips_nop32_insn.insn_opcode;
18662 size = 4;
18663 break;
18664 case NOP_OPCODE_MIPS16:
18665 opcode = mips16_nop_insn.insn_opcode;
18666 size = 2;
18667 break;
18668 case NOP_OPCODE_MIPS:
18669 default:
18670 opcode = nop_insn.insn_opcode;
18671 size = 4;
18672 break;
18673 }
18674
18675 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
18676 excess = bytes % size;
18677
18678 /* Handle the leading part if we're not inserting a whole number of
18679 instructions, and make it the end of the fixed part of the frag.
18680 Try to fit in a short microMIPS NOP if applicable and possible,
18681 and use zeroes otherwise. */
18682 gas_assert (excess < 4);
18683 fragp->fr_fix += excess;
18684 switch (excess)
18685 {
18686 case 3:
18687 *p++ = '\0';
18688 /* Fall through. */
18689 case 2:
18690 if (nop_opcode == NOP_OPCODE_MICROMIPS)
18691 {
18692 p = write_compressed_insn (p, micromips_nop16_insn.insn_opcode, 2);
18693 break;
18694 }
18695 *p++ = '\0';
18696 /* Fall through. */
18697 case 1:
18698 *p++ = '\0';
18699 /* Fall through. */
18700 case 0:
18701 break;
18702 }
18703
18704 md_number_to_chars (p, opcode, size);
18705 fragp->fr_var = size;
18706 }
18707
18708 static void
18709 md_obj_begin (void)
18710 {
18711 }
18712
18713 static void
18714 md_obj_end (void)
18715 {
18716 /* Check for premature end, nesting errors, etc. */
18717 if (cur_proc_ptr)
18718 as_warn (_("missing .end at end of assembly"));
18719 }
18720
18721 static long
18722 get_number (void)
18723 {
18724 int negative = 0;
18725 long val = 0;
18726
18727 if (*input_line_pointer == '-')
18728 {
18729 ++input_line_pointer;
18730 negative = 1;
18731 }
18732 if (!ISDIGIT (*input_line_pointer))
18733 as_bad (_("expected simple number"));
18734 if (input_line_pointer[0] == '0')
18735 {
18736 if (input_line_pointer[1] == 'x')
18737 {
18738 input_line_pointer += 2;
18739 while (ISXDIGIT (*input_line_pointer))
18740 {
18741 val <<= 4;
18742 val |= hex_value (*input_line_pointer++);
18743 }
18744 return negative ? -val : val;
18745 }
18746 else
18747 {
18748 ++input_line_pointer;
18749 while (ISDIGIT (*input_line_pointer))
18750 {
18751 val <<= 3;
18752 val |= *input_line_pointer++ - '0';
18753 }
18754 return negative ? -val : val;
18755 }
18756 }
18757 if (!ISDIGIT (*input_line_pointer))
18758 {
18759 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
18760 *input_line_pointer, *input_line_pointer);
18761 as_warn (_("invalid number"));
18762 return -1;
18763 }
18764 while (ISDIGIT (*input_line_pointer))
18765 {
18766 val *= 10;
18767 val += *input_line_pointer++ - '0';
18768 }
18769 return negative ? -val : val;
18770 }
18771
18772 /* The .file directive; just like the usual .file directive, but there
18773 is an initial number which is the ECOFF file index. In the non-ECOFF
18774 case .file implies DWARF-2. */
18775
18776 static void
18777 s_mips_file (int x ATTRIBUTE_UNUSED)
18778 {
18779 static int first_file_directive = 0;
18780
18781 if (ECOFF_DEBUGGING)
18782 {
18783 get_number ();
18784 s_app_file (0);
18785 }
18786 else
18787 {
18788 char *filename;
18789
18790 filename = dwarf2_directive_file (0);
18791
18792 /* Versions of GCC up to 3.1 start files with a ".file"
18793 directive even for stabs output. Make sure that this
18794 ".file" is handled. Note that you need a version of GCC
18795 after 3.1 in order to support DWARF-2 on MIPS. */
18796 if (filename != NULL && ! first_file_directive)
18797 {
18798 (void) new_logical_line (filename, -1);
18799 s_app_file_string (filename, 0);
18800 }
18801 first_file_directive = 1;
18802 }
18803 }
18804
18805 /* The .loc directive, implying DWARF-2. */
18806
18807 static void
18808 s_mips_loc (int x ATTRIBUTE_UNUSED)
18809 {
18810 if (!ECOFF_DEBUGGING)
18811 dwarf2_directive_loc (0);
18812 }
18813
18814 /* The .end directive. */
18815
18816 static void
18817 s_mips_end (int x ATTRIBUTE_UNUSED)
18818 {
18819 symbolS *p;
18820
18821 /* Following functions need their own .frame and .cprestore directives. */
18822 mips_frame_reg_valid = 0;
18823 mips_cprestore_valid = 0;
18824
18825 if (!is_end_of_line[(unsigned char) *input_line_pointer])
18826 {
18827 p = get_symbol ();
18828 demand_empty_rest_of_line ();
18829 }
18830 else
18831 p = NULL;
18832
18833 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
18834 as_warn (_(".end not in text section"));
18835
18836 if (!cur_proc_ptr)
18837 {
18838 as_warn (_(".end directive without a preceding .ent directive."));
18839 demand_empty_rest_of_line ();
18840 return;
18841 }
18842
18843 if (p != NULL)
18844 {
18845 gas_assert (S_GET_NAME (p));
18846 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
18847 as_warn (_(".end symbol does not match .ent symbol."));
18848
18849 if (debug_type == DEBUG_STABS)
18850 stabs_generate_asm_endfunc (S_GET_NAME (p),
18851 S_GET_NAME (p));
18852 }
18853 else
18854 as_warn (_(".end directive missing or unknown symbol"));
18855
18856 #ifdef OBJ_ELF
18857 /* Create an expression to calculate the size of the function. */
18858 if (p && cur_proc_ptr)
18859 {
18860 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
18861 expressionS *exp = xmalloc (sizeof (expressionS));
18862
18863 obj->size = exp;
18864 exp->X_op = O_subtract;
18865 exp->X_add_symbol = symbol_temp_new_now ();
18866 exp->X_op_symbol = p;
18867 exp->X_add_number = 0;
18868
18869 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
18870 }
18871
18872 /* Generate a .pdr section. */
18873 if (IS_ELF && !ECOFF_DEBUGGING && mips_flag_pdr)
18874 {
18875 segT saved_seg = now_seg;
18876 subsegT saved_subseg = now_subseg;
18877 expressionS exp;
18878 char *fragp;
18879
18880 #ifdef md_flush_pending_output
18881 md_flush_pending_output ();
18882 #endif
18883
18884 gas_assert (pdr_seg);
18885 subseg_set (pdr_seg, 0);
18886
18887 /* Write the symbol. */
18888 exp.X_op = O_symbol;
18889 exp.X_add_symbol = p;
18890 exp.X_add_number = 0;
18891 emit_expr (&exp, 4);
18892
18893 fragp = frag_more (7 * 4);
18894
18895 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
18896 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
18897 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
18898 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
18899 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
18900 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
18901 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
18902
18903 subseg_set (saved_seg, saved_subseg);
18904 }
18905 #endif /* OBJ_ELF */
18906
18907 cur_proc_ptr = NULL;
18908 }
18909
18910 /* The .aent and .ent directives. */
18911
18912 static void
18913 s_mips_ent (int aent)
18914 {
18915 symbolS *symbolP;
18916
18917 symbolP = get_symbol ();
18918 if (*input_line_pointer == ',')
18919 ++input_line_pointer;
18920 SKIP_WHITESPACE ();
18921 if (ISDIGIT (*input_line_pointer)
18922 || *input_line_pointer == '-')
18923 get_number ();
18924
18925 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
18926 as_warn (_(".ent or .aent not in text section."));
18927
18928 if (!aent && cur_proc_ptr)
18929 as_warn (_("missing .end"));
18930
18931 if (!aent)
18932 {
18933 /* This function needs its own .frame and .cprestore directives. */
18934 mips_frame_reg_valid = 0;
18935 mips_cprestore_valid = 0;
18936
18937 cur_proc_ptr = &cur_proc;
18938 memset (cur_proc_ptr, '\0', sizeof (procS));
18939
18940 cur_proc_ptr->func_sym = symbolP;
18941
18942 ++numprocs;
18943
18944 if (debug_type == DEBUG_STABS)
18945 stabs_generate_asm_func (S_GET_NAME (symbolP),
18946 S_GET_NAME (symbolP));
18947 }
18948
18949 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
18950
18951 demand_empty_rest_of_line ();
18952 }
18953
18954 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
18955 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
18956 s_mips_frame is used so that we can set the PDR information correctly.
18957 We can't use the ecoff routines because they make reference to the ecoff
18958 symbol table (in the mdebug section). */
18959
18960 static void
18961 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
18962 {
18963 #ifdef OBJ_ELF
18964 if (IS_ELF && !ECOFF_DEBUGGING)
18965 {
18966 long val;
18967
18968 if (cur_proc_ptr == (procS *) NULL)
18969 {
18970 as_warn (_(".frame outside of .ent"));
18971 demand_empty_rest_of_line ();
18972 return;
18973 }
18974
18975 cur_proc_ptr->frame_reg = tc_get_register (1);
18976
18977 SKIP_WHITESPACE ();
18978 if (*input_line_pointer++ != ','
18979 || get_absolute_expression_and_terminator (&val) != ',')
18980 {
18981 as_warn (_("Bad .frame directive"));
18982 --input_line_pointer;
18983 demand_empty_rest_of_line ();
18984 return;
18985 }
18986
18987 cur_proc_ptr->frame_offset = val;
18988 cur_proc_ptr->pc_reg = tc_get_register (0);
18989
18990 demand_empty_rest_of_line ();
18991 }
18992 else
18993 #endif /* OBJ_ELF */
18994 s_ignore (ignore);
18995 }
18996
18997 /* The .fmask and .mask directives. If the mdebug section is present
18998 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
18999 embedded targets, s_mips_mask is used so that we can set the PDR
19000 information correctly. We can't use the ecoff routines because they
19001 make reference to the ecoff symbol table (in the mdebug section). */
19002
19003 static void
19004 s_mips_mask (int reg_type)
19005 {
19006 #ifdef OBJ_ELF
19007 if (IS_ELF && !ECOFF_DEBUGGING)
19008 {
19009 long mask, off;
19010
19011 if (cur_proc_ptr == (procS *) NULL)
19012 {
19013 as_warn (_(".mask/.fmask outside of .ent"));
19014 demand_empty_rest_of_line ();
19015 return;
19016 }
19017
19018 if (get_absolute_expression_and_terminator (&mask) != ',')
19019 {
19020 as_warn (_("Bad .mask/.fmask directive"));
19021 --input_line_pointer;
19022 demand_empty_rest_of_line ();
19023 return;
19024 }
19025
19026 off = get_absolute_expression ();
19027
19028 if (reg_type == 'F')
19029 {
19030 cur_proc_ptr->fpreg_mask = mask;
19031 cur_proc_ptr->fpreg_offset = off;
19032 }
19033 else
19034 {
19035 cur_proc_ptr->reg_mask = mask;
19036 cur_proc_ptr->reg_offset = off;
19037 }
19038
19039 demand_empty_rest_of_line ();
19040 }
19041 else
19042 #endif /* OBJ_ELF */
19043 s_ignore (reg_type);
19044 }
19045
19046 /* A table describing all the processors gas knows about. Names are
19047 matched in the order listed.
19048
19049 To ease comparison, please keep this table in the same order as
19050 gcc's mips_cpu_info_table[]. */
19051 static const struct mips_cpu_info mips_cpu_info_table[] =
19052 {
19053 /* Entries for generic ISAs */
19054 { "mips1", MIPS_CPU_IS_ISA, ISA_MIPS1, CPU_R3000 },
19055 { "mips2", MIPS_CPU_IS_ISA, ISA_MIPS2, CPU_R6000 },
19056 { "mips3", MIPS_CPU_IS_ISA, ISA_MIPS3, CPU_R4000 },
19057 { "mips4", MIPS_CPU_IS_ISA, ISA_MIPS4, CPU_R8000 },
19058 { "mips5", MIPS_CPU_IS_ISA, ISA_MIPS5, CPU_MIPS5 },
19059 { "mips32", MIPS_CPU_IS_ISA, ISA_MIPS32, CPU_MIPS32 },
19060 { "mips32r2", MIPS_CPU_IS_ISA, ISA_MIPS32R2, CPU_MIPS32R2 },
19061 { "mips64", MIPS_CPU_IS_ISA, ISA_MIPS64, CPU_MIPS64 },
19062 { "mips64r2", MIPS_CPU_IS_ISA, ISA_MIPS64R2, CPU_MIPS64R2 },
19063
19064 /* MIPS I */
19065 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
19066 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
19067 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
19068
19069 /* MIPS II */
19070 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
19071
19072 /* MIPS III */
19073 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
19074 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
19075 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
19076 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
19077 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
19078 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
19079 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
19080 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
19081 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
19082 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
19083 { "orion", 0, ISA_MIPS3, CPU_R4600 },
19084 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
19085 /* ST Microelectronics Loongson 2E and 2F cores */
19086 { "loongson2e", 0, ISA_MIPS3, CPU_LOONGSON_2E },
19087 { "loongson2f", 0, ISA_MIPS3, CPU_LOONGSON_2F },
19088
19089 /* MIPS IV */
19090 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
19091 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
19092 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
19093 { "r14000", 0, ISA_MIPS4, CPU_R14000 },
19094 { "r16000", 0, ISA_MIPS4, CPU_R16000 },
19095 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
19096 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
19097 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
19098 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
19099 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
19100 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
19101 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
19102 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
19103 { "rm7000", 0, ISA_MIPS4, CPU_RM7000 },
19104 { "rm9000", 0, ISA_MIPS4, CPU_RM9000 },
19105
19106 /* MIPS 32 */
19107 { "4kc", 0, ISA_MIPS32, CPU_MIPS32 },
19108 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
19109 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
19110 { "4ksc", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
19111
19112 /* MIPS 32 Release 2 */
19113 { "4kec", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19114 { "4kem", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19115 { "4kep", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19116 { "4ksd", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
19117 { "m4k", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19118 { "m4kp", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19119 { "m14k", MIPS_CPU_ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
19120 { "m14kc", MIPS_CPU_ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
19121 { "m14ke", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2 | MIPS_CPU_ASE_MCU,
19122 ISA_MIPS32R2, CPU_MIPS32R2 },
19123 { "m14kec", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2 | MIPS_CPU_ASE_MCU,
19124 ISA_MIPS32R2, CPU_MIPS32R2 },
19125 { "24kc", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19126 { "24kf2_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19127 { "24kf", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19128 { "24kf1_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19129 /* Deprecated forms of the above. */
19130 { "24kfx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19131 { "24kx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19132 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
19133 { "24kec", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19134 { "24kef2_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19135 { "24kef", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19136 { "24kef1_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19137 /* Deprecated forms of the above. */
19138 { "24kefx", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19139 { "24kex", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19140 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
19141 { "34kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19142 ISA_MIPS32R2, CPU_MIPS32R2 },
19143 { "34kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19144 ISA_MIPS32R2, CPU_MIPS32R2 },
19145 { "34kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19146 ISA_MIPS32R2, CPU_MIPS32R2 },
19147 { "34kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19148 ISA_MIPS32R2, CPU_MIPS32R2 },
19149 /* Deprecated forms of the above. */
19150 { "34kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19151 ISA_MIPS32R2, CPU_MIPS32R2 },
19152 { "34kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19153 ISA_MIPS32R2, CPU_MIPS32R2 },
19154 /* 34Kn is a 34kc without DSP. */
19155 { "34kn", MIPS_CPU_ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19156 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
19157 { "74kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
19158 ISA_MIPS32R2, CPU_MIPS32R2 },
19159 { "74kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
19160 ISA_MIPS32R2, CPU_MIPS32R2 },
19161 { "74kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
19162 ISA_MIPS32R2, CPU_MIPS32R2 },
19163 { "74kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
19164 ISA_MIPS32R2, CPU_MIPS32R2 },
19165 { "74kf3_2", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
19166 ISA_MIPS32R2, CPU_MIPS32R2 },
19167 /* Deprecated forms of the above. */
19168 { "74kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
19169 ISA_MIPS32R2, CPU_MIPS32R2 },
19170 { "74kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
19171 ISA_MIPS32R2, CPU_MIPS32R2 },
19172 /* 1004K cores are multiprocessor versions of the 34K. */
19173 { "1004kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19174 ISA_MIPS32R2, CPU_MIPS32R2 },
19175 { "1004kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19176 ISA_MIPS32R2, CPU_MIPS32R2 },
19177 { "1004kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19178 ISA_MIPS32R2, CPU_MIPS32R2 },
19179 { "1004kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
19180 ISA_MIPS32R2, CPU_MIPS32R2 },
19181
19182 /* MIPS 64 */
19183 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
19184 { "5kf", 0, ISA_MIPS64, CPU_MIPS64 },
19185 { "20kc", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
19186 { "25kf", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
19187
19188 /* Broadcom SB-1 CPU core */
19189 { "sb1", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
19190 ISA_MIPS64, CPU_SB1 },
19191 /* Broadcom SB-1A CPU core */
19192 { "sb1a", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
19193 ISA_MIPS64, CPU_SB1 },
19194
19195 { "loongson3a", 0, ISA_MIPS64, CPU_LOONGSON_3A },
19196
19197 /* MIPS 64 Release 2 */
19198
19199 /* Cavium Networks Octeon CPU core */
19200 { "octeon", 0, ISA_MIPS64R2, CPU_OCTEON },
19201 { "octeon+", 0, ISA_MIPS64R2, CPU_OCTEONP },
19202 { "octeon2", 0, ISA_MIPS64R2, CPU_OCTEON2 },
19203
19204 /* RMI Xlr */
19205 { "xlr", 0, ISA_MIPS64, CPU_XLR },
19206
19207 /* Broadcom XLP.
19208 XLP is mostly like XLR, with the prominent exception that it is
19209 MIPS64R2 rather than MIPS64. */
19210 { "xlp", 0, ISA_MIPS64R2, CPU_XLR },
19211
19212 /* End marker */
19213 { NULL, 0, 0, 0 }
19214 };
19215
19216
19217 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
19218 with a final "000" replaced by "k". Ignore case.
19219
19220 Note: this function is shared between GCC and GAS. */
19221
19222 static bfd_boolean
19223 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
19224 {
19225 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
19226 given++, canonical++;
19227
19228 return ((*given == 0 && *canonical == 0)
19229 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
19230 }
19231
19232
19233 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
19234 CPU name. We've traditionally allowed a lot of variation here.
19235
19236 Note: this function is shared between GCC and GAS. */
19237
19238 static bfd_boolean
19239 mips_matching_cpu_name_p (const char *canonical, const char *given)
19240 {
19241 /* First see if the name matches exactly, or with a final "000"
19242 turned into "k". */
19243 if (mips_strict_matching_cpu_name_p (canonical, given))
19244 return TRUE;
19245
19246 /* If not, try comparing based on numerical designation alone.
19247 See if GIVEN is an unadorned number, or 'r' followed by a number. */
19248 if (TOLOWER (*given) == 'r')
19249 given++;
19250 if (!ISDIGIT (*given))
19251 return FALSE;
19252
19253 /* Skip over some well-known prefixes in the canonical name,
19254 hoping to find a number there too. */
19255 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
19256 canonical += 2;
19257 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
19258 canonical += 2;
19259 else if (TOLOWER (canonical[0]) == 'r')
19260 canonical += 1;
19261
19262 return mips_strict_matching_cpu_name_p (canonical, given);
19263 }
19264
19265
19266 /* Parse an option that takes the name of a processor as its argument.
19267 OPTION is the name of the option and CPU_STRING is the argument.
19268 Return the corresponding processor enumeration if the CPU_STRING is
19269 recognized, otherwise report an error and return null.
19270
19271 A similar function exists in GCC. */
19272
19273 static const struct mips_cpu_info *
19274 mips_parse_cpu (const char *option, const char *cpu_string)
19275 {
19276 const struct mips_cpu_info *p;
19277
19278 /* 'from-abi' selects the most compatible architecture for the given
19279 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
19280 EABIs, we have to decide whether we're using the 32-bit or 64-bit
19281 version. Look first at the -mgp options, if given, otherwise base
19282 the choice on MIPS_DEFAULT_64BIT.
19283
19284 Treat NO_ABI like the EABIs. One reason to do this is that the
19285 plain 'mips' and 'mips64' configs have 'from-abi' as their default
19286 architecture. This code picks MIPS I for 'mips' and MIPS III for
19287 'mips64', just as we did in the days before 'from-abi'. */
19288 if (strcasecmp (cpu_string, "from-abi") == 0)
19289 {
19290 if (ABI_NEEDS_32BIT_REGS (mips_abi))
19291 return mips_cpu_info_from_isa (ISA_MIPS1);
19292
19293 if (ABI_NEEDS_64BIT_REGS (mips_abi))
19294 return mips_cpu_info_from_isa (ISA_MIPS3);
19295
19296 if (file_mips_gp32 >= 0)
19297 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
19298
19299 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
19300 ? ISA_MIPS3
19301 : ISA_MIPS1);
19302 }
19303
19304 /* 'default' has traditionally been a no-op. Probably not very useful. */
19305 if (strcasecmp (cpu_string, "default") == 0)
19306 return 0;
19307
19308 for (p = mips_cpu_info_table; p->name != 0; p++)
19309 if (mips_matching_cpu_name_p (p->name, cpu_string))
19310 return p;
19311
19312 as_bad (_("Bad value (%s) for %s"), cpu_string, option);
19313 return 0;
19314 }
19315
19316 /* Return the canonical processor information for ISA (a member of the
19317 ISA_MIPS* enumeration). */
19318
19319 static const struct mips_cpu_info *
19320 mips_cpu_info_from_isa (int isa)
19321 {
19322 int i;
19323
19324 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19325 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
19326 && isa == mips_cpu_info_table[i].isa)
19327 return (&mips_cpu_info_table[i]);
19328
19329 return NULL;
19330 }
19331
19332 static const struct mips_cpu_info *
19333 mips_cpu_info_from_arch (int arch)
19334 {
19335 int i;
19336
19337 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19338 if (arch == mips_cpu_info_table[i].cpu)
19339 return (&mips_cpu_info_table[i]);
19340
19341 return NULL;
19342 }
19343 \f
19344 static void
19345 show (FILE *stream, const char *string, int *col_p, int *first_p)
19346 {
19347 if (*first_p)
19348 {
19349 fprintf (stream, "%24s", "");
19350 *col_p = 24;
19351 }
19352 else
19353 {
19354 fprintf (stream, ", ");
19355 *col_p += 2;
19356 }
19357
19358 if (*col_p + strlen (string) > 72)
19359 {
19360 fprintf (stream, "\n%24s", "");
19361 *col_p = 24;
19362 }
19363
19364 fprintf (stream, "%s", string);
19365 *col_p += strlen (string);
19366
19367 *first_p = 0;
19368 }
19369
19370 void
19371 md_show_usage (FILE *stream)
19372 {
19373 int column, first;
19374 size_t i;
19375
19376 fprintf (stream, _("\
19377 MIPS options:\n\
19378 -EB generate big endian output\n\
19379 -EL generate little endian output\n\
19380 -g, -g2 do not remove unneeded NOPs or swap branches\n\
19381 -G NUM allow referencing objects up to NUM bytes\n\
19382 implicitly with the gp register [default 8]\n"));
19383 fprintf (stream, _("\
19384 -mips1 generate MIPS ISA I instructions\n\
19385 -mips2 generate MIPS ISA II instructions\n\
19386 -mips3 generate MIPS ISA III instructions\n\
19387 -mips4 generate MIPS ISA IV instructions\n\
19388 -mips5 generate MIPS ISA V instructions\n\
19389 -mips32 generate MIPS32 ISA instructions\n\
19390 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
19391 -mips64 generate MIPS64 ISA instructions\n\
19392 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
19393 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
19394
19395 first = 1;
19396
19397 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19398 show (stream, mips_cpu_info_table[i].name, &column, &first);
19399 show (stream, "from-abi", &column, &first);
19400 fputc ('\n', stream);
19401
19402 fprintf (stream, _("\
19403 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
19404 -no-mCPU don't generate code specific to CPU.\n\
19405 For -mCPU and -no-mCPU, CPU must be one of:\n"));
19406
19407 first = 1;
19408
19409 show (stream, "3900", &column, &first);
19410 show (stream, "4010", &column, &first);
19411 show (stream, "4100", &column, &first);
19412 show (stream, "4650", &column, &first);
19413 fputc ('\n', stream);
19414
19415 fprintf (stream, _("\
19416 -mips16 generate mips16 instructions\n\
19417 -no-mips16 do not generate mips16 instructions\n"));
19418 fprintf (stream, _("\
19419 -mmicromips generate microMIPS instructions\n\
19420 -mno-micromips do not generate microMIPS instructions\n"));
19421 fprintf (stream, _("\
19422 -msmartmips generate smartmips instructions\n\
19423 -mno-smartmips do not generate smartmips instructions\n"));
19424 fprintf (stream, _("\
19425 -mdsp generate DSP instructions\n\
19426 -mno-dsp do not generate DSP instructions\n"));
19427 fprintf (stream, _("\
19428 -mdspr2 generate DSP R2 instructions\n\
19429 -mno-dspr2 do not generate DSP R2 instructions\n"));
19430 fprintf (stream, _("\
19431 -mmt generate MT instructions\n\
19432 -mno-mt do not generate MT instructions\n"));
19433 fprintf (stream, _("\
19434 -mmcu generate MCU instructions\n\
19435 -mno-mcu do not generate MCU instructions\n"));
19436 fprintf (stream, _("\
19437 -mfix-loongson2f-jump work around Loongson2F JUMP instructions\n\
19438 -mfix-loongson2f-nop work around Loongson2F NOP errata\n\
19439 -mfix-vr4120 work around certain VR4120 errata\n\
19440 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
19441 -mfix-24k insert a nop after ERET and DERET instructions\n\
19442 -mfix-cn63xxp1 work around CN63XXP1 PREF errata\n\
19443 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
19444 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
19445 -msym32 assume all symbols have 32-bit values\n\
19446 -O0 remove unneeded NOPs, do not swap branches\n\
19447 -O remove unneeded NOPs and swap branches\n\
19448 --trap, --no-break trap exception on div by 0 and mult overflow\n\
19449 --break, --no-trap break exception on div by 0 and mult overflow\n"));
19450 fprintf (stream, _("\
19451 -mhard-float allow floating-point instructions\n\
19452 -msoft-float do not allow floating-point instructions\n\
19453 -msingle-float only allow 32-bit floating-point operations\n\
19454 -mdouble-float allow 32-bit and 64-bit floating-point operations\n\
19455 --[no-]construct-floats [dis]allow floating point values to be constructed\n"
19456 ));
19457 #ifdef OBJ_ELF
19458 fprintf (stream, _("\
19459 -KPIC, -call_shared generate SVR4 position independent code\n\
19460 -call_nonpic generate non-PIC code that can operate with DSOs\n\
19461 -mvxworks-pic generate VxWorks position independent code\n\
19462 -non_shared do not generate code that can operate with DSOs\n\
19463 -xgot assume a 32 bit GOT\n\
19464 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
19465 -mshared, -mno-shared disable/enable .cpload optimization for\n\
19466 position dependent (non shared) code\n\
19467 -mabi=ABI create ABI conformant object file for:\n"));
19468
19469 first = 1;
19470
19471 show (stream, "32", &column, &first);
19472 show (stream, "o64", &column, &first);
19473 show (stream, "n32", &column, &first);
19474 show (stream, "64", &column, &first);
19475 show (stream, "eabi", &column, &first);
19476
19477 fputc ('\n', stream);
19478
19479 fprintf (stream, _("\
19480 -32 create o32 ABI object file (default)\n\
19481 -n32 create n32 ABI object file\n\
19482 -64 create 64 ABI object file\n"));
19483 #endif
19484 }
19485
19486 #ifdef TE_IRIX
19487 enum dwarf2_format
19488 mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
19489 {
19490 if (HAVE_64BIT_SYMBOLS)
19491 return dwarf2_format_64bit_irix;
19492 else
19493 return dwarf2_format_32bit;
19494 }
19495 #endif
19496
19497 int
19498 mips_dwarf2_addr_size (void)
19499 {
19500 if (HAVE_64BIT_OBJECTS)
19501 return 8;
19502 else
19503 return 4;
19504 }
19505
19506 /* Standard calling conventions leave the CFA at SP on entry. */
19507 void
19508 mips_cfi_frame_initial_instructions (void)
19509 {
19510 cfi_add_CFA_def_cfa_register (SP);
19511 }
19512
19513 int
19514 tc_mips_regname_to_dw2regnum (char *regname)
19515 {
19516 unsigned int regnum = -1;
19517 unsigned int reg;
19518
19519 if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
19520 regnum = reg;
19521
19522 return regnum;
19523 }
This page took 0.479089 seconds and 4 git commands to generate.