1 /* tc-mips.c -- assemble code for a MIPS chip.
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
4 Free Software Foundation, Inc.
5 Contributed by the OSF and Ralph Campbell.
6 Written by Keith Knowles and Ralph Campbell, working independently.
7 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
10 This file is part of GAS.
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)
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.
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
30 #include "safe-ctype.h"
32 #include "opcode/mips.h"
34 #include "dwarf2dbg.h"
35 #include "dw2gencfi.h"
37 /* Check assumptions made in this file. */
38 typedef char static_assert1[sizeof (offsetT) < 8 ? -1 : 1];
39 typedef char static_assert2[sizeof (valueT) < 8 ? -1 : 1];
42 #define DBG(x) printf x
47 /* Clean up namespace so we can include obj-elf.h too. */
48 static int mips_output_flavor (void);
49 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
50 #undef OBJ_PROCESS_STAB
57 #undef obj_frob_file_after_relocs
58 #undef obj_frob_symbol
60 #undef obj_sec_sym_ok_for_reloc
61 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
64 /* Fix any of them that we actually care about. */
66 #define OUTPUT_FLAVOR mips_output_flavor()
70 #ifndef ECOFF_DEBUGGING
71 #define NO_ECOFF_DEBUGGING
72 #define ECOFF_DEBUGGING 0
75 int mips_flag_mdebug = -1;
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. */
81 int mips_flag_pdr = FALSE;
83 int mips_flag_pdr = TRUE;
88 static char *mips_regmask_frag;
95 #define PIC_CALL_REG 25
103 #define ILLEGAL_REG (32)
105 #define AT mips_opts.at
107 extern int target_big_endian;
109 /* The name of the readonly data section. */
110 #define RDATA_SECTION_NAME ".rodata"
112 /* Ways in which an instruction can be "appended" to the output. */
114 /* Just add it normally. */
117 /* Add it normally and then add a nop. */
120 /* Turn an instruction with a delay slot into a "compact" version. */
123 /* Insert the instruction before the last one. */
127 /* Information about an instruction, including its format, operands
131 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
132 const struct mips_opcode *insn_mo;
134 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
135 a copy of INSN_MO->match with the operands filled in. If we have
136 decided to use an extended MIPS16 instruction, this includes the
138 unsigned long insn_opcode;
140 /* The frag that contains the instruction. */
143 /* The offset into FRAG of the first instruction byte. */
146 /* The relocs associated with the instruction, if any. */
149 /* True if this entry cannot be moved from its current position. */
150 unsigned int fixed_p : 1;
152 /* True if this instruction occurred in a .set noreorder block. */
153 unsigned int noreorder_p : 1;
155 /* True for mips16 instructions that jump to an absolute address. */
156 unsigned int mips16_absolute_jump_p : 1;
158 /* True if this instruction is complete. */
159 unsigned int complete_p : 1;
161 /* True if this instruction is cleared from history by unconditional
163 unsigned int cleared_p : 1;
166 /* The ABI to use. */
177 /* MIPS ABI we are using for this output file. */
178 static enum mips_abi_level mips_abi = NO_ABI;
180 /* Whether or not we have code that can call pic code. */
181 int mips_abicalls = FALSE;
183 /* Whether or not we have code which can be put into a shared
185 static bfd_boolean mips_in_shared = TRUE;
187 /* This is the set of options which may be modified by the .set
188 pseudo-op. We use a struct so that .set push and .set pop are more
191 struct mips_set_options
193 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
194 if it has not been initialized. Changed by `.set mipsN', and the
195 -mipsN command line option, and the default CPU. */
197 /* Enabled Application Specific Extensions (ASEs). Changed by `.set
198 <asename>', by command line options, and based on the default
201 /* Whether we are assembling for the mips16 processor. 0 if we are
202 not, 1 if we are, and -1 if the value has not been initialized.
203 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
204 -nomips16 command line options, and the default CPU. */
206 /* Whether we are assembling for the mipsMIPS ASE. 0 if we are not,
207 1 if we are, and -1 if the value has not been initialized. Changed
208 by `.set micromips' and `.set nomicromips', and the -mmicromips
209 and -mno-micromips command line options, and the default CPU. */
211 /* Non-zero if we should not reorder instructions. Changed by `.set
212 reorder' and `.set noreorder'. */
214 /* Non-zero if we should not permit the register designated "assembler
215 temporary" to be used in instructions. The value is the register
216 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
217 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
219 /* Non-zero if we should warn when a macro instruction expands into
220 more than one machine instruction. Changed by `.set nomacro' and
222 int warn_about_macros;
223 /* Non-zero if we should not move instructions. Changed by `.set
224 move', `.set volatile', `.set nomove', and `.set novolatile'. */
226 /* Non-zero if we should not optimize branches by moving the target
227 of the branch into the delay slot. Actually, we don't perform
228 this optimization anyhow. Changed by `.set bopt' and `.set
231 /* Non-zero if we should not autoextend mips16 instructions.
232 Changed by `.set autoextend' and `.set noautoextend'. */
234 /* True if we should only emit 32-bit microMIPS instructions.
235 Changed by `.set insn32' and `.set noinsn32', and the -minsn32
236 and -mno-insn32 command line options. */
238 /* Restrict general purpose registers and floating point registers
239 to 32 bit. This is initially determined when -mgp32 or -mfp32
240 is passed but can changed if the assembler code uses .set mipsN. */
243 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
244 command line option, and the default CPU. */
246 /* True if ".set sym32" is in effect. */
248 /* True if floating-point operations are not allowed. Changed by .set
249 softfloat or .set hardfloat, by command line options -msoft-float or
250 -mhard-float. The default is false. */
251 bfd_boolean soft_float;
253 /* True if only single-precision floating-point operations are allowed.
254 Changed by .set singlefloat or .set doublefloat, command-line options
255 -msingle-float or -mdouble-float. The default is false. */
256 bfd_boolean single_float;
259 /* This is the struct we use to hold the current set of options. Note
260 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
261 -1 to indicate that they have not been initialized. */
263 /* True if -mgp32 was passed. */
264 static int file_mips_gp32 = -1;
266 /* True if -mfp32 was passed. */
267 static int file_mips_fp32 = -1;
269 /* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
270 static int file_mips_soft_float = 0;
272 /* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
273 static int file_mips_single_float = 0;
275 static struct mips_set_options mips_opts =
277 /* isa */ ISA_UNKNOWN, /* ase */ 0, /* mips16 */ -1, /* micromips */ -1,
278 /* noreorder */ 0, /* at */ ATREG, /* warn_about_macros */ 0,
279 /* nomove */ 0, /* nobopt */ 0, /* noautoextend */ 0, /* insn32 */ FALSE,
280 /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN, /* sym32 */ FALSE,
281 /* soft_float */ FALSE, /* single_float */ FALSE
284 /* The set of ASEs that were selected on the command line, either
285 explicitly via ASE options or implicitly through things like -march. */
286 static unsigned int file_ase;
288 /* Which bits of file_ase were explicitly set or cleared by ASE options. */
289 static unsigned int file_ase_explicit;
291 /* These variables are filled in with the masks of registers used.
292 The object format code reads them and puts them in the appropriate
294 unsigned long mips_gprmask;
295 unsigned long mips_cprmask[4];
297 /* MIPS ISA we are using for this output file. */
298 static int file_mips_isa = ISA_UNKNOWN;
300 /* True if any MIPS16 code was produced. */
301 static int file_ase_mips16;
303 #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \
304 || mips_opts.isa == ISA_MIPS32R2 \
305 || mips_opts.isa == ISA_MIPS64 \
306 || mips_opts.isa == ISA_MIPS64R2)
308 /* True if any microMIPS code was produced. */
309 static int file_ase_micromips;
311 /* True if we want to create R_MIPS_JALR for jalr $25. */
313 #define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
315 /* As a GNU extension, we use R_MIPS_JALR for o32 too. However,
316 because there's no place for any addend, the only acceptable
317 expression is a bare symbol. */
318 #define MIPS_JALR_HINT_P(EXPR) \
319 (!HAVE_IN_PLACE_ADDENDS \
320 || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
323 /* The argument of the -march= flag. The architecture we are assembling. */
324 static int file_mips_arch = CPU_UNKNOWN;
325 static const char *mips_arch_string;
327 /* The argument of the -mtune= flag. The architecture for which we
329 static int mips_tune = CPU_UNKNOWN;
330 static const char *mips_tune_string;
332 /* True when generating 32-bit code for a 64-bit processor. */
333 static int mips_32bitmode = 0;
335 /* True if the given ABI requires 32-bit registers. */
336 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
338 /* Likewise 64-bit registers. */
339 #define ABI_NEEDS_64BIT_REGS(ABI) \
341 || (ABI) == N64_ABI \
344 /* Return true if ISA supports 64 bit wide gp registers. */
345 #define ISA_HAS_64BIT_REGS(ISA) \
346 ((ISA) == ISA_MIPS3 \
347 || (ISA) == ISA_MIPS4 \
348 || (ISA) == ISA_MIPS5 \
349 || (ISA) == ISA_MIPS64 \
350 || (ISA) == ISA_MIPS64R2)
352 /* Return true if ISA supports 64 bit wide float registers. */
353 #define ISA_HAS_64BIT_FPRS(ISA) \
354 ((ISA) == ISA_MIPS3 \
355 || (ISA) == ISA_MIPS4 \
356 || (ISA) == ISA_MIPS5 \
357 || (ISA) == ISA_MIPS32R2 \
358 || (ISA) == ISA_MIPS64 \
359 || (ISA) == ISA_MIPS64R2)
361 /* Return true if ISA supports 64-bit right rotate (dror et al.)
363 #define ISA_HAS_DROR(ISA) \
364 ((ISA) == ISA_MIPS64R2 \
365 || (mips_opts.micromips \
366 && ISA_HAS_64BIT_REGS (ISA)) \
369 /* Return true if ISA supports 32-bit right rotate (ror et al.)
371 #define ISA_HAS_ROR(ISA) \
372 ((ISA) == ISA_MIPS32R2 \
373 || (ISA) == ISA_MIPS64R2 \
374 || (mips_opts.ase & ASE_SMARTMIPS) \
375 || mips_opts.micromips \
378 /* Return true if ISA supports single-precision floats in odd registers. */
379 #define ISA_HAS_ODD_SINGLE_FPR(ISA) \
380 ((ISA) == ISA_MIPS32 \
381 || (ISA) == ISA_MIPS32R2 \
382 || (ISA) == ISA_MIPS64 \
383 || (ISA) == ISA_MIPS64R2)
385 /* Return true if ISA supports move to/from high part of a 64-bit
386 floating-point register. */
387 #define ISA_HAS_MXHC1(ISA) \
388 ((ISA) == ISA_MIPS32R2 \
389 || (ISA) == ISA_MIPS64R2)
391 #define HAVE_32BIT_GPRS \
392 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
394 #define HAVE_32BIT_FPRS \
395 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
397 #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
398 #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
400 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
402 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
404 /* True if relocations are stored in-place. */
405 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
407 /* The ABI-derived address size. */
408 #define HAVE_64BIT_ADDRESSES \
409 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
410 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
412 /* The size of symbolic constants (i.e., expressions of the form
413 "SYMBOL" or "SYMBOL + OFFSET"). */
414 #define HAVE_32BIT_SYMBOLS \
415 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
416 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
418 /* Addresses are loaded in different ways, depending on the address size
419 in use. The n32 ABI Documentation also mandates the use of additions
420 with overflow checking, but existing implementations don't follow it. */
421 #define ADDRESS_ADD_INSN \
422 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
424 #define ADDRESS_ADDI_INSN \
425 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
427 #define ADDRESS_LOAD_INSN \
428 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
430 #define ADDRESS_STORE_INSN \
431 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
433 /* Return true if the given CPU supports the MIPS16 ASE. */
434 #define CPU_HAS_MIPS16(cpu) \
435 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
436 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
438 /* Return true if the given CPU supports the microMIPS ASE. */
439 #define CPU_HAS_MICROMIPS(cpu) 0
441 /* True if CPU has a dror instruction. */
442 #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
444 /* True if CPU has a ror instruction. */
445 #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
447 /* True if CPU is in the Octeon family */
448 #define CPU_IS_OCTEON(CPU) ((CPU) == CPU_OCTEON || (CPU) == CPU_OCTEONP || (CPU) == CPU_OCTEON2)
450 /* True if CPU has seq/sne and seqi/snei instructions. */
451 #define CPU_HAS_SEQ(CPU) (CPU_IS_OCTEON (CPU))
453 /* True, if CPU has support for ldc1 and sdc1. */
454 #define CPU_HAS_LDC1_SDC1(CPU) \
455 ((mips_opts.isa != ISA_MIPS1) && ((CPU) != CPU_R5900))
457 /* True if mflo and mfhi can be immediately followed by instructions
458 which write to the HI and LO registers.
460 According to MIPS specifications, MIPS ISAs I, II, and III need
461 (at least) two instructions between the reads of HI/LO and
462 instructions which write them, and later ISAs do not. Contradicting
463 the MIPS specifications, some MIPS IV processor user manuals (e.g.
464 the UM for the NEC Vr5000) document needing the instructions between
465 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
466 MIPS64 and later ISAs to have the interlocks, plus any specific
467 earlier-ISA CPUs for which CPU documentation declares that the
468 instructions are really interlocked. */
469 #define hilo_interlocks \
470 (mips_opts.isa == ISA_MIPS32 \
471 || mips_opts.isa == ISA_MIPS32R2 \
472 || mips_opts.isa == ISA_MIPS64 \
473 || mips_opts.isa == ISA_MIPS64R2 \
474 || mips_opts.arch == CPU_R4010 \
475 || mips_opts.arch == CPU_R5900 \
476 || mips_opts.arch == CPU_R10000 \
477 || mips_opts.arch == CPU_R12000 \
478 || mips_opts.arch == CPU_R14000 \
479 || mips_opts.arch == CPU_R16000 \
480 || mips_opts.arch == CPU_RM7000 \
481 || mips_opts.arch == CPU_VR5500 \
482 || mips_opts.micromips \
485 /* Whether the processor uses hardware interlocks to protect reads
486 from the GPRs after they are loaded from memory, and thus does not
487 require nops to be inserted. This applies to instructions marked
488 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
489 level I and microMIPS mode instructions are always interlocked. */
490 #define gpr_interlocks \
491 (mips_opts.isa != ISA_MIPS1 \
492 || mips_opts.arch == CPU_R3900 \
493 || mips_opts.arch == CPU_R5900 \
494 || mips_opts.micromips \
497 /* Whether the processor uses hardware interlocks to avoid delays
498 required by coprocessor instructions, and thus does not require
499 nops to be inserted. This applies to instructions marked
500 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
501 between instructions marked INSN_WRITE_COND_CODE and ones marked
502 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
503 levels I, II, and III and microMIPS mode instructions are always
505 /* Itbl support may require additional care here. */
506 #define cop_interlocks \
507 ((mips_opts.isa != ISA_MIPS1 \
508 && mips_opts.isa != ISA_MIPS2 \
509 && mips_opts.isa != ISA_MIPS3) \
510 || mips_opts.arch == CPU_R4300 \
511 || mips_opts.micromips \
514 /* Whether the processor uses hardware interlocks to protect reads
515 from coprocessor registers after they are loaded from memory, and
516 thus does not require nops to be inserted. This applies to
517 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
518 requires at MIPS ISA level I and microMIPS mode instructions are
519 always interlocked. */
520 #define cop_mem_interlocks \
521 (mips_opts.isa != ISA_MIPS1 \
522 || mips_opts.micromips \
525 /* Is this a mfhi or mflo instruction? */
526 #define MF_HILO_INSN(PINFO) \
527 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
529 /* Whether code compression (either of the MIPS16 or the microMIPS ASEs)
530 has been selected. This implies, in particular, that addresses of text
531 labels have their LSB set. */
532 #define HAVE_CODE_COMPRESSION \
533 ((mips_opts.mips16 | mips_opts.micromips) != 0)
535 /* The minimum and maximum signed values that can be stored in a GPR. */
536 #define GPR_SMAX ((offsetT) (((valueT) 1 << (HAVE_64BIT_GPRS ? 63 : 31)) - 1))
537 #define GPR_SMIN (-GPR_SMAX - 1)
539 /* MIPS PIC level. */
541 enum mips_pic_level mips_pic;
543 /* 1 if we should generate 32 bit offsets from the $gp register in
544 SVR4_PIC mode. Currently has no meaning in other modes. */
545 static int mips_big_got = 0;
547 /* 1 if trap instructions should used for overflow rather than break
549 static int mips_trap = 0;
551 /* 1 if double width floating point constants should not be constructed
552 by assembling two single width halves into two single width floating
553 point registers which just happen to alias the double width destination
554 register. On some architectures this aliasing can be disabled by a bit
555 in the status register, and the setting of this bit cannot be determined
556 automatically at assemble time. */
557 static int mips_disable_float_construction;
559 /* Non-zero if any .set noreorder directives were used. */
561 static int mips_any_noreorder;
563 /* Non-zero if nops should be inserted when the register referenced in
564 an mfhi/mflo instruction is read in the next two instructions. */
565 static int mips_7000_hilo_fix;
567 /* The size of objects in the small data section. */
568 static unsigned int g_switch_value = 8;
569 /* Whether the -G option was used. */
570 static int g_switch_seen = 0;
575 /* If we can determine in advance that GP optimization won't be
576 possible, we can skip the relaxation stuff that tries to produce
577 GP-relative references. This makes delay slot optimization work
580 This function can only provide a guess, but it seems to work for
581 gcc output. It needs to guess right for gcc, otherwise gcc
582 will put what it thinks is a GP-relative instruction in a branch
585 I don't know if a fix is needed for the SVR4_PIC mode. I've only
586 fixed it for the non-PIC mode. KR 95/04/07 */
587 static int nopic_need_relax (symbolS *, int);
589 /* handle of the OPCODE hash table */
590 static struct hash_control *op_hash = NULL;
592 /* The opcode hash table we use for the mips16. */
593 static struct hash_control *mips16_op_hash = NULL;
595 /* The opcode hash table we use for the microMIPS ASE. */
596 static struct hash_control *micromips_op_hash = NULL;
598 /* This array holds the chars that always start a comment. If the
599 pre-processor is disabled, these aren't very useful */
600 const char comment_chars[] = "#";
602 /* This array holds the chars that only start a comment at the beginning of
603 a line. If the line seems to have the form '# 123 filename'
604 .line and .file directives will appear in the pre-processed output */
605 /* Note that input_file.c hand checks for '#' at the beginning of the
606 first line of the input file. This is because the compiler outputs
607 #NO_APP at the beginning of its output. */
608 /* Also note that C style comments are always supported. */
609 const char line_comment_chars[] = "#";
611 /* This array holds machine specific line separator characters. */
612 const char line_separator_chars[] = ";";
614 /* Chars that can be used to separate mant from exp in floating point nums */
615 const char EXP_CHARS[] = "eE";
617 /* Chars that mean this number is a floating point constant */
620 const char FLT_CHARS[] = "rRsSfFdDxXpP";
622 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
623 changed in read.c . Ideally it shouldn't have to know about it at all,
624 but nothing is ideal around here.
627 static char *insn_error;
629 static int auto_align = 1;
631 /* When outputting SVR4 PIC code, the assembler needs to know the
632 offset in the stack frame from which to restore the $gp register.
633 This is set by the .cprestore pseudo-op, and saved in this
635 static offsetT mips_cprestore_offset = -1;
637 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
638 more optimizations, it can use a register value instead of a memory-saved
639 offset and even an other register than $gp as global pointer. */
640 static offsetT mips_cpreturn_offset = -1;
641 static int mips_cpreturn_register = -1;
642 static int mips_gp_register = GP;
643 static int mips_gprel_offset = 0;
645 /* Whether mips_cprestore_offset has been set in the current function
646 (or whether it has already been warned about, if not). */
647 static int mips_cprestore_valid = 0;
649 /* This is the register which holds the stack frame, as set by the
650 .frame pseudo-op. This is needed to implement .cprestore. */
651 static int mips_frame_reg = SP;
653 /* Whether mips_frame_reg has been set in the current function
654 (or whether it has already been warned about, if not). */
655 static int mips_frame_reg_valid = 0;
657 /* To output NOP instructions correctly, we need to keep information
658 about the previous two instructions. */
660 /* Whether we are optimizing. The default value of 2 means to remove
661 unneeded NOPs and swap branch instructions when possible. A value
662 of 1 means to not swap branches. A value of 0 means to always
664 static int mips_optimize = 2;
666 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
667 equivalent to seeing no -g option at all. */
668 static int mips_debug = 0;
670 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
671 #define MAX_VR4130_NOPS 4
673 /* The maximum number of NOPs needed to fill delay slots. */
674 #define MAX_DELAY_NOPS 2
676 /* The maximum number of NOPs needed for any purpose. */
679 /* A list of previous instructions, with index 0 being the most recent.
680 We need to look back MAX_NOPS instructions when filling delay slots
681 or working around processor errata. We need to look back one
682 instruction further if we're thinking about using history[0] to
683 fill a branch delay slot. */
684 static struct mips_cl_insn history[1 + MAX_NOPS];
686 /* Nop instructions used by emit_nop. */
687 static struct mips_cl_insn nop_insn;
688 static struct mips_cl_insn mips16_nop_insn;
689 static struct mips_cl_insn micromips_nop16_insn;
690 static struct mips_cl_insn micromips_nop32_insn;
692 /* The appropriate nop for the current mode. */
693 #define NOP_INSN (mips_opts.mips16 \
695 : (mips_opts.micromips \
696 ? (mips_opts.insn32 \
697 ? µmips_nop32_insn \
698 : µmips_nop16_insn) \
701 /* The size of NOP_INSN in bytes. */
702 #define NOP_INSN_SIZE ((mips_opts.mips16 \
703 || (mips_opts.micromips && !mips_opts.insn32)) \
706 /* If this is set, it points to a frag holding nop instructions which
707 were inserted before the start of a noreorder section. If those
708 nops turn out to be unnecessary, the size of the frag can be
710 static fragS *prev_nop_frag;
712 /* The number of nop instructions we created in prev_nop_frag. */
713 static int prev_nop_frag_holds;
715 /* The number of nop instructions that we know we need in
717 static int prev_nop_frag_required;
719 /* The number of instructions we've seen since prev_nop_frag. */
720 static int prev_nop_frag_since;
722 /* Relocations against symbols are sometimes done in two parts, with a HI
723 relocation and a LO relocation. Each relocation has only 16 bits of
724 space to store an addend. This means that in order for the linker to
725 handle carries correctly, it must be able to locate both the HI and
726 the LO relocation. This means that the relocations must appear in
727 order in the relocation table.
729 In order to implement this, we keep track of each unmatched HI
730 relocation. We then sort them so that they immediately precede the
731 corresponding LO relocation. */
736 struct mips_hi_fixup *next;
739 /* The section this fixup is in. */
743 /* The list of unmatched HI relocs. */
745 static struct mips_hi_fixup *mips_hi_fixup_list;
747 /* The frag containing the last explicit relocation operator.
748 Null if explicit relocations have not been used. */
750 static fragS *prev_reloc_op_frag;
752 /* Map normal MIPS register numbers to mips16 register numbers. */
754 #define X ILLEGAL_REG
755 static const int mips32_to_16_reg_map[] =
757 X, X, 2, 3, 4, 5, 6, 7,
758 X, X, X, X, X, X, X, X,
759 0, 1, X, X, X, X, X, X,
760 X, X, X, X, X, X, X, X
764 /* Map mips16 register numbers to normal MIPS register numbers. */
766 static const unsigned int mips16_to_32_reg_map[] =
768 16, 17, 2, 3, 4, 5, 6, 7
771 /* Map normal MIPS register numbers to microMIPS register numbers. */
773 #define mips32_to_micromips_reg_b_map mips32_to_16_reg_map
774 #define mips32_to_micromips_reg_c_map mips32_to_16_reg_map
775 #define mips32_to_micromips_reg_d_map mips32_to_16_reg_map
776 #define mips32_to_micromips_reg_e_map mips32_to_16_reg_map
777 #define mips32_to_micromips_reg_f_map mips32_to_16_reg_map
778 #define mips32_to_micromips_reg_g_map mips32_to_16_reg_map
779 #define mips32_to_micromips_reg_l_map mips32_to_16_reg_map
781 #define X ILLEGAL_REG
782 /* reg type h: 4, 5, 6. */
783 static const int mips32_to_micromips_reg_h_map[] =
785 X, X, X, X, 4, 5, 6, X,
786 X, X, X, X, X, X, X, X,
787 X, X, X, X, X, X, X, X,
788 X, X, X, X, X, X, X, X
791 /* reg type m: 0, 17, 2, 3, 16, 18, 19, 20. */
792 static const int mips32_to_micromips_reg_m_map[] =
794 0, X, 2, 3, X, X, X, X,
795 X, X, X, X, X, X, X, X,
796 4, 1, 5, 6, 7, X, X, X,
797 X, X, X, X, X, X, X, X
800 /* reg type q: 0, 2-7. 17. */
801 static const int mips32_to_micromips_reg_q_map[] =
803 0, X, 2, 3, 4, 5, 6, 7,
804 X, X, X, X, X, X, X, X,
805 X, 1, X, X, X, X, X, X,
806 X, X, X, X, X, X, X, X
809 #define mips32_to_micromips_reg_n_map mips32_to_micromips_reg_m_map
812 /* Map microMIPS register numbers to normal MIPS register numbers. */
814 #define micromips_to_32_reg_b_map mips16_to_32_reg_map
815 #define micromips_to_32_reg_c_map mips16_to_32_reg_map
816 #define micromips_to_32_reg_d_map mips16_to_32_reg_map
817 #define micromips_to_32_reg_e_map mips16_to_32_reg_map
818 #define micromips_to_32_reg_f_map mips16_to_32_reg_map
819 #define micromips_to_32_reg_g_map mips16_to_32_reg_map
821 /* The microMIPS registers with type h. */
822 static const unsigned int micromips_to_32_reg_h_map[] =
824 5, 5, 6, 4, 4, 4, 4, 4
827 /* The microMIPS registers with type i. */
828 static const unsigned int micromips_to_32_reg_i_map[] =
830 6, 7, 7, 21, 22, 5, 6, 7
833 #define micromips_to_32_reg_l_map mips16_to_32_reg_map
835 /* The microMIPS registers with type m. */
836 static const unsigned int micromips_to_32_reg_m_map[] =
838 0, 17, 2, 3, 16, 18, 19, 20
841 #define micromips_to_32_reg_n_map micromips_to_32_reg_m_map
843 /* The microMIPS registers with type q. */
844 static const unsigned int micromips_to_32_reg_q_map[] =
846 0, 17, 2, 3, 4, 5, 6, 7
849 /* microMIPS imm type B. */
850 static const int micromips_imm_b_map[] =
852 1, 4, 8, 12, 16, 20, 24, -1
855 /* microMIPS imm type C. */
856 static const int micromips_imm_c_map[] =
858 128, 1, 2, 3, 4, 7, 8, 15, 16, 31, 32, 63, 64, 255, 32768, 65535
861 /* Classifies the kind of instructions we're interested in when
862 implementing -mfix-vr4120. */
863 enum fix_vr4120_class
871 NUM_FIX_VR4120_CLASSES
874 /* ...likewise -mfix-loongson2f-jump. */
875 static bfd_boolean mips_fix_loongson2f_jump;
877 /* ...likewise -mfix-loongson2f-nop. */
878 static bfd_boolean mips_fix_loongson2f_nop;
880 /* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed. */
881 static bfd_boolean mips_fix_loongson2f;
883 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
884 there must be at least one other instruction between an instruction
885 of type X and an instruction of type Y. */
886 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
888 /* True if -mfix-vr4120 is in force. */
889 static int mips_fix_vr4120;
891 /* ...likewise -mfix-vr4130. */
892 static int mips_fix_vr4130;
894 /* ...likewise -mfix-24k. */
895 static int mips_fix_24k;
897 /* ...likewise -mfix-cn63xxp1 */
898 static bfd_boolean mips_fix_cn63xxp1;
900 /* We don't relax branches by default, since this causes us to expand
901 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
902 fail to compute the offset before expanding the macro to the most
903 efficient expansion. */
905 static int mips_relax_branch;
907 /* The expansion of many macros depends on the type of symbol that
908 they refer to. For example, when generating position-dependent code,
909 a macro that refers to a symbol may have two different expansions,
910 one which uses GP-relative addresses and one which uses absolute
911 addresses. When generating SVR4-style PIC, a macro may have
912 different expansions for local and global symbols.
914 We handle these situations by generating both sequences and putting
915 them in variant frags. In position-dependent code, the first sequence
916 will be the GP-relative one and the second sequence will be the
917 absolute one. In SVR4 PIC, the first sequence will be for global
918 symbols and the second will be for local symbols.
920 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
921 SECOND are the lengths of the two sequences in bytes. These fields
922 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
923 the subtype has the following flags:
926 Set if it has been decided that we should use the second
927 sequence instead of the first.
930 Set in the first variant frag if the macro's second implementation
931 is longer than its first. This refers to the macro as a whole,
932 not an individual relaxation.
935 Set in the first variant frag if the macro appeared in a .set nomacro
936 block and if one alternative requires a warning but the other does not.
939 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
942 RELAX_DELAY_SLOT_16BIT
943 Like RELAX_DELAY_SLOT, but indicates that the delay slot requires a
946 RELAX_DELAY_SLOT_SIZE_FIRST
947 Like RELAX_DELAY_SLOT, but indicates that the first implementation of
948 the macro is of the wrong size for the branch delay slot.
950 RELAX_DELAY_SLOT_SIZE_SECOND
951 Like RELAX_DELAY_SLOT, but indicates that the second implementation of
952 the macro is of the wrong size for the branch delay slot.
954 The frag's "opcode" points to the first fixup for relaxable code.
956 Relaxable macros are generated using a sequence such as:
958 relax_start (SYMBOL);
959 ... generate first expansion ...
961 ... generate second expansion ...
964 The code and fixups for the unwanted alternative are discarded
965 by md_convert_frag. */
966 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
968 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
969 #define RELAX_SECOND(X) ((X) & 0xff)
970 #define RELAX_USE_SECOND 0x10000
971 #define RELAX_SECOND_LONGER 0x20000
972 #define RELAX_NOMACRO 0x40000
973 #define RELAX_DELAY_SLOT 0x80000
974 #define RELAX_DELAY_SLOT_16BIT 0x100000
975 #define RELAX_DELAY_SLOT_SIZE_FIRST 0x200000
976 #define RELAX_DELAY_SLOT_SIZE_SECOND 0x400000
978 /* Branch without likely bit. If label is out of range, we turn:
980 beq reg1, reg2, label
990 with the following opcode replacements:
997 bltzal <-> bgezal (with jal label instead of j label)
999 Even though keeping the delay slot instruction in the delay slot of
1000 the branch would be more efficient, it would be very tricky to do
1001 correctly, because we'd have to introduce a variable frag *after*
1002 the delay slot instruction, and expand that instead. Let's do it
1003 the easy way for now, even if the branch-not-taken case now costs
1004 one additional instruction. Out-of-range branches are not supposed
1005 to be common, anyway.
1007 Branch likely. If label is out of range, we turn:
1009 beql reg1, reg2, label
1010 delay slot (annulled if branch not taken)
1019 delay slot (executed only if branch taken)
1022 It would be possible to generate a shorter sequence by losing the
1023 likely bit, generating something like:
1028 delay slot (executed only if branch taken)
1040 bltzall -> bgezal (with jal label instead of j label)
1041 bgezall -> bltzal (ditto)
1044 but it's not clear that it would actually improve performance. */
1045 #define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar) \
1046 ((relax_substateT) \
1049 | ((toofar) ? 0x20 : 0) \
1050 | ((link) ? 0x40 : 0) \
1051 | ((likely) ? 0x80 : 0) \
1052 | ((uncond) ? 0x100 : 0)))
1053 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
1054 #define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
1055 #define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
1056 #define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
1057 #define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
1058 #define RELAX_BRANCH_AT(i) ((i) & 0x1f)
1060 /* For mips16 code, we use an entirely different form of relaxation.
1061 mips16 supports two versions of most instructions which take
1062 immediate values: a small one which takes some small value, and a
1063 larger one which takes a 16 bit value. Since branches also follow
1064 this pattern, relaxing these values is required.
1066 We can assemble both mips16 and normal MIPS code in a single
1067 object. Therefore, we need to support this type of relaxation at
1068 the same time that we support the relaxation described above. We
1069 use the high bit of the subtype field to distinguish these cases.
1071 The information we store for this type of relaxation is the
1072 argument code found in the opcode file for this relocation, whether
1073 the user explicitly requested a small or extended form, and whether
1074 the relocation is in a jump or jal delay slot. That tells us the
1075 size of the value, and how it should be stored. We also store
1076 whether the fragment is considered to be extended or not. We also
1077 store whether this is known to be a branch to a different section,
1078 whether we have tried to relax this frag yet, and whether we have
1079 ever extended a PC relative fragment because of a shift count. */
1080 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
1083 | ((small) ? 0x100 : 0) \
1084 | ((ext) ? 0x200 : 0) \
1085 | ((dslot) ? 0x400 : 0) \
1086 | ((jal_dslot) ? 0x800 : 0))
1087 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
1088 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
1089 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
1090 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
1091 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
1092 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
1093 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
1094 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
1095 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
1096 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
1097 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
1098 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
1100 /* For microMIPS code, we use relaxation similar to one we use for
1101 MIPS16 code. Some instructions that take immediate values support
1102 two encodings: a small one which takes some small value, and a
1103 larger one which takes a 16 bit value. As some branches also follow
1104 this pattern, relaxing these values is required.
1106 We can assemble both microMIPS and normal MIPS code in a single
1107 object. Therefore, we need to support this type of relaxation at
1108 the same time that we support the relaxation described above. We
1109 use one of the high bits of the subtype field to distinguish these
1112 The information we store for this type of relaxation is the argument
1113 code found in the opcode file for this relocation, the register
1114 selected as the assembler temporary, whether the branch is
1115 unconditional, whether it is compact, whether it stores the link
1116 address implicitly in $ra, whether relaxation of out-of-range 32-bit
1117 branches to a sequence of instructions is enabled, and whether the
1118 displacement of a branch is too large to fit as an immediate argument
1119 of a 16-bit and a 32-bit branch, respectively. */
1120 #define RELAX_MICROMIPS_ENCODE(type, at, uncond, compact, link, \
1121 relax32, toofar16, toofar32) \
1124 | (((at) & 0x1f) << 8) \
1125 | ((uncond) ? 0x2000 : 0) \
1126 | ((compact) ? 0x4000 : 0) \
1127 | ((link) ? 0x8000 : 0) \
1128 | ((relax32) ? 0x10000 : 0) \
1129 | ((toofar16) ? 0x20000 : 0) \
1130 | ((toofar32) ? 0x40000 : 0))
1131 #define RELAX_MICROMIPS_P(i) (((i) & 0xc0000000) == 0x40000000)
1132 #define RELAX_MICROMIPS_TYPE(i) ((i) & 0xff)
1133 #define RELAX_MICROMIPS_AT(i) (((i) >> 8) & 0x1f)
1134 #define RELAX_MICROMIPS_UNCOND(i) (((i) & 0x2000) != 0)
1135 #define RELAX_MICROMIPS_COMPACT(i) (((i) & 0x4000) != 0)
1136 #define RELAX_MICROMIPS_LINK(i) (((i) & 0x8000) != 0)
1137 #define RELAX_MICROMIPS_RELAX32(i) (((i) & 0x10000) != 0)
1139 #define RELAX_MICROMIPS_TOOFAR16(i) (((i) & 0x20000) != 0)
1140 #define RELAX_MICROMIPS_MARK_TOOFAR16(i) ((i) | 0x20000)
1141 #define RELAX_MICROMIPS_CLEAR_TOOFAR16(i) ((i) & ~0x20000)
1142 #define RELAX_MICROMIPS_TOOFAR32(i) (((i) & 0x40000) != 0)
1143 #define RELAX_MICROMIPS_MARK_TOOFAR32(i) ((i) | 0x40000)
1144 #define RELAX_MICROMIPS_CLEAR_TOOFAR32(i) ((i) & ~0x40000)
1146 /* Sign-extend 16-bit value X. */
1147 #define SEXT_16BIT(X) ((((X) + 0x8000) & 0xffff) - 0x8000)
1149 /* Is the given value a sign-extended 32-bit value? */
1150 #define IS_SEXT_32BIT_NUM(x) \
1151 (((x) &~ (offsetT) 0x7fffffff) == 0 \
1152 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
1154 /* Is the given value a sign-extended 16-bit value? */
1155 #define IS_SEXT_16BIT_NUM(x) \
1156 (((x) &~ (offsetT) 0x7fff) == 0 \
1157 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
1159 /* Is the given value a sign-extended 12-bit value? */
1160 #define IS_SEXT_12BIT_NUM(x) \
1161 (((((x) & 0xfff) ^ 0x800LL) - 0x800LL) == (x))
1163 /* Is the given value a sign-extended 9-bit value? */
1164 #define IS_SEXT_9BIT_NUM(x) \
1165 (((((x) & 0x1ff) ^ 0x100LL) - 0x100LL) == (x))
1167 /* Is the given value a zero-extended 32-bit value? Or a negated one? */
1168 #define IS_ZEXT_32BIT_NUM(x) \
1169 (((x) &~ (offsetT) 0xffffffff) == 0 \
1170 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
1172 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
1173 VALUE << SHIFT. VALUE is evaluated exactly once. */
1174 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
1175 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
1176 | (((VALUE) & (MASK)) << (SHIFT)))
1178 /* Extract bits MASK << SHIFT from STRUCT and shift them right
1180 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1181 (((STRUCT) >> (SHIFT)) & (MASK))
1183 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
1184 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
1186 include/opcode/mips.h specifies operand fields using the macros
1187 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
1188 with "MIPS16OP" instead of "OP". */
1189 #define INSERT_OPERAND(MICROMIPS, FIELD, INSN, VALUE) \
1192 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1193 OP_MASK_##FIELD, OP_SH_##FIELD); \
1195 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1196 MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD); \
1198 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
1199 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1200 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
1202 /* Extract the operand given by FIELD from mips_cl_insn INSN. */
1203 #define EXTRACT_OPERAND(MICROMIPS, FIELD, INSN) \
1205 ? EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD) \
1206 : EXTRACT_BITS ((INSN).insn_opcode, \
1207 MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD))
1208 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1209 EXTRACT_BITS ((INSN).insn_opcode, \
1210 MIPS16OP_MASK_##FIELD, \
1211 MIPS16OP_SH_##FIELD)
1213 /* The MIPS16 EXTEND opcode, shifted left 16 places. */
1214 #define MIPS16_EXTEND (0xf000U << 16)
1216 /* Whether or not we are emitting a branch-likely macro. */
1217 static bfd_boolean emit_branch_likely_macro = FALSE;
1219 /* Global variables used when generating relaxable macros. See the
1220 comment above RELAX_ENCODE for more details about how relaxation
1223 /* 0 if we're not emitting a relaxable macro.
1224 1 if we're emitting the first of the two relaxation alternatives.
1225 2 if we're emitting the second alternative. */
1228 /* The first relaxable fixup in the current frag. (In other words,
1229 the first fixup that refers to relaxable code.) */
1232 /* sizes[0] says how many bytes of the first alternative are stored in
1233 the current frag. Likewise sizes[1] for the second alternative. */
1234 unsigned int sizes[2];
1236 /* The symbol on which the choice of sequence depends. */
1240 /* Global variables used to decide whether a macro needs a warning. */
1242 /* True if the macro is in a branch delay slot. */
1243 bfd_boolean delay_slot_p;
1245 /* Set to the length in bytes required if the macro is in a delay slot
1246 that requires a specific length of instruction, otherwise zero. */
1247 unsigned int delay_slot_length;
1249 /* For relaxable macros, sizes[0] is the length of the first alternative
1250 in bytes and sizes[1] is the length of the second alternative.
1251 For non-relaxable macros, both elements give the length of the
1253 unsigned int sizes[2];
1255 /* For relaxable macros, first_insn_sizes[0] is the length of the first
1256 instruction of the first alternative in bytes and first_insn_sizes[1]
1257 is the length of the first instruction of the second alternative.
1258 For non-relaxable macros, both elements give the length of the first
1259 instruction in bytes.
1261 Set to zero if we haven't yet seen the first instruction. */
1262 unsigned int first_insn_sizes[2];
1264 /* For relaxable macros, insns[0] is the number of instructions for the
1265 first alternative and insns[1] is the number of instructions for the
1268 For non-relaxable macros, both elements give the number of
1269 instructions for the macro. */
1270 unsigned int insns[2];
1272 /* The first variant frag for this macro. */
1274 } mips_macro_warning;
1276 /* Prototypes for static functions. */
1278 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1280 static void append_insn
1281 (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *,
1282 bfd_boolean expansionp);
1283 static void mips_no_prev_insn (void);
1284 static void macro_build (expressionS *, const char *, const char *, ...);
1285 static void mips16_macro_build
1286 (expressionS *, const char *, const char *, va_list *);
1287 static void load_register (int, expressionS *, int);
1288 static void macro_start (void);
1289 static void macro_end (void);
1290 static void macro (struct mips_cl_insn *ip, char *str);
1291 static void mips16_macro (struct mips_cl_insn * ip);
1292 static void mips_ip (char *str, struct mips_cl_insn * ip);
1293 static void mips16_ip (char *str, struct mips_cl_insn * ip);
1294 static void mips16_immed
1295 (char *, unsigned int, int, bfd_reloc_code_real_type, offsetT,
1296 unsigned int, unsigned long *);
1297 static size_t my_getSmallExpression
1298 (expressionS *, bfd_reloc_code_real_type *, char *);
1299 static void my_getExpression (expressionS *, char *);
1300 static void s_align (int);
1301 static void s_change_sec (int);
1302 static void s_change_section (int);
1303 static void s_cons (int);
1304 static void s_float_cons (int);
1305 static void s_mips_globl (int);
1306 static void s_option (int);
1307 static void s_mipsset (int);
1308 static void s_abicalls (int);
1309 static void s_cpload (int);
1310 static void s_cpsetup (int);
1311 static void s_cplocal (int);
1312 static void s_cprestore (int);
1313 static void s_cpreturn (int);
1314 static void s_dtprelword (int);
1315 static void s_dtpreldword (int);
1316 static void s_tprelword (int);
1317 static void s_tpreldword (int);
1318 static void s_gpvalue (int);
1319 static void s_gpword (int);
1320 static void s_gpdword (int);
1321 static void s_ehword (int);
1322 static void s_cpadd (int);
1323 static void s_insn (int);
1324 static void md_obj_begin (void);
1325 static void md_obj_end (void);
1326 static void s_mips_ent (int);
1327 static void s_mips_end (int);
1328 static void s_mips_frame (int);
1329 static void s_mips_mask (int reg_type);
1330 static void s_mips_stab (int);
1331 static void s_mips_weakext (int);
1332 static void s_mips_file (int);
1333 static void s_mips_loc (int);
1334 static bfd_boolean pic_need_relax (symbolS *, asection *);
1335 static int relaxed_branch_length (fragS *, asection *, int);
1336 static int validate_mips_insn (const struct mips_opcode *);
1337 static int validate_micromips_insn (const struct mips_opcode *);
1338 static int relaxed_micromips_16bit_branch_length (fragS *, asection *, int);
1339 static int relaxed_micromips_32bit_branch_length (fragS *, asection *, int);
1341 /* Table and functions used to map between CPU/ISA names, and
1342 ISA levels, and CPU numbers. */
1344 struct mips_cpu_info
1346 const char *name; /* CPU or ISA name. */
1347 int flags; /* MIPS_CPU_* flags. */
1348 int ase; /* Set of ASEs implemented by the CPU. */
1349 int isa; /* ISA level. */
1350 int cpu; /* CPU number (default CPU if ISA). */
1353 #define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1355 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1356 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1357 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1359 /* Command-line options. */
1360 const char *md_shortopts = "O::g::G:";
1364 OPTION_MARCH = OPTION_MD_BASE,
1388 OPTION_NO_SMARTMIPS,
1394 OPTION_NO_MICROMIPS,
1397 OPTION_COMPAT_ARCH_BASE,
1406 OPTION_M7000_HILO_FIX,
1407 OPTION_MNO_7000_HILO_FIX,
1410 OPTION_FIX_LOONGSON2F_JUMP,
1411 OPTION_NO_FIX_LOONGSON2F_JUMP,
1412 OPTION_FIX_LOONGSON2F_NOP,
1413 OPTION_NO_FIX_LOONGSON2F_NOP,
1415 OPTION_NO_FIX_VR4120,
1417 OPTION_NO_FIX_VR4130,
1418 OPTION_FIX_CN63XXP1,
1419 OPTION_NO_FIX_CN63XXP1,
1426 OPTION_CONSTRUCT_FLOATS,
1427 OPTION_NO_CONSTRUCT_FLOATS,
1430 OPTION_RELAX_BRANCH,
1431 OPTION_NO_RELAX_BRANCH,
1440 OPTION_SINGLE_FLOAT,
1441 OPTION_DOUBLE_FLOAT,
1454 OPTION_MVXWORKS_PIC,
1458 struct option md_longopts[] =
1460 /* Options which specify architecture. */
1461 {"march", required_argument, NULL, OPTION_MARCH},
1462 {"mtune", required_argument, NULL, OPTION_MTUNE},
1463 {"mips0", no_argument, NULL, OPTION_MIPS1},
1464 {"mips1", no_argument, NULL, OPTION_MIPS1},
1465 {"mips2", no_argument, NULL, OPTION_MIPS2},
1466 {"mips3", no_argument, NULL, OPTION_MIPS3},
1467 {"mips4", no_argument, NULL, OPTION_MIPS4},
1468 {"mips5", no_argument, NULL, OPTION_MIPS5},
1469 {"mips32", no_argument, NULL, OPTION_MIPS32},
1470 {"mips64", no_argument, NULL, OPTION_MIPS64},
1471 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
1472 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
1474 /* Options which specify Application Specific Extensions (ASEs). */
1475 {"mips16", no_argument, NULL, OPTION_MIPS16},
1476 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
1477 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
1478 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
1479 {"mdmx", no_argument, NULL, OPTION_MDMX},
1480 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
1481 {"mdsp", no_argument, NULL, OPTION_DSP},
1482 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
1483 {"mmt", no_argument, NULL, OPTION_MT},
1484 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
1485 {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
1486 {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
1487 {"mdspr2", no_argument, NULL, OPTION_DSPR2},
1488 {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
1489 {"meva", no_argument, NULL, OPTION_EVA},
1490 {"mno-eva", no_argument, NULL, OPTION_NO_EVA},
1491 {"mmicromips", no_argument, NULL, OPTION_MICROMIPS},
1492 {"mno-micromips", no_argument, NULL, OPTION_NO_MICROMIPS},
1493 {"mmcu", no_argument, NULL, OPTION_MCU},
1494 {"mno-mcu", no_argument, NULL, OPTION_NO_MCU},
1495 {"mvirt", no_argument, NULL, OPTION_VIRT},
1496 {"mno-virt", no_argument, NULL, OPTION_NO_VIRT},
1498 /* Old-style architecture options. Don't add more of these. */
1499 {"m4650", no_argument, NULL, OPTION_M4650},
1500 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
1501 {"m4010", no_argument, NULL, OPTION_M4010},
1502 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
1503 {"m4100", no_argument, NULL, OPTION_M4100},
1504 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
1505 {"m3900", no_argument, NULL, OPTION_M3900},
1506 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
1508 /* Options which enable bug fixes. */
1509 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
1510 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1511 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1512 {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
1513 {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
1514 {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
1515 {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
1516 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
1517 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
1518 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
1519 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
1520 {"mfix-24k", no_argument, NULL, OPTION_FIX_24K},
1521 {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
1522 {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
1523 {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
1525 /* Miscellaneous options. */
1526 {"trap", no_argument, NULL, OPTION_TRAP},
1527 {"no-break", no_argument, NULL, OPTION_TRAP},
1528 {"break", no_argument, NULL, OPTION_BREAK},
1529 {"no-trap", no_argument, NULL, OPTION_BREAK},
1530 {"EB", no_argument, NULL, OPTION_EB},
1531 {"EL", no_argument, NULL, OPTION_EL},
1532 {"mfp32", no_argument, NULL, OPTION_FP32},
1533 {"mgp32", no_argument, NULL, OPTION_GP32},
1534 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
1535 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
1536 {"mfp64", no_argument, NULL, OPTION_FP64},
1537 {"mgp64", no_argument, NULL, OPTION_GP64},
1538 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
1539 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
1540 {"minsn32", no_argument, NULL, OPTION_INSN32},
1541 {"mno-insn32", no_argument, NULL, OPTION_NO_INSN32},
1542 {"mshared", no_argument, NULL, OPTION_MSHARED},
1543 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
1544 {"msym32", no_argument, NULL, OPTION_MSYM32},
1545 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
1546 {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
1547 {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
1548 {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
1549 {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
1551 /* Strictly speaking this next option is ELF specific,
1552 but we allow it for other ports as well in order to
1553 make testing easier. */
1554 {"32", no_argument, NULL, OPTION_32},
1556 /* ELF-specific options. */
1557 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
1558 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
1559 {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
1560 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
1561 {"xgot", no_argument, NULL, OPTION_XGOT},
1562 {"mabi", required_argument, NULL, OPTION_MABI},
1563 {"n32", no_argument, NULL, OPTION_N32},
1564 {"64", no_argument, NULL, OPTION_64},
1565 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
1566 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
1567 {"mpdr", no_argument, NULL, OPTION_PDR},
1568 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
1569 {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
1571 {NULL, no_argument, NULL, 0}
1573 size_t md_longopts_size = sizeof (md_longopts);
1575 /* Information about either an Application Specific Extension or an
1576 optional architecture feature that, for simplicity, we treat in the
1577 same way as an ASE. */
1580 /* The name of the ASE, used in both the command-line and .set options. */
1583 /* The associated ASE_* flags. If the ASE is available on both 32-bit
1584 and 64-bit architectures, the flags here refer to the subset that
1585 is available on both. */
1588 /* The ASE_* flag used for instructions that are available on 64-bit
1589 architectures but that are not included in FLAGS. */
1590 unsigned int flags64;
1592 /* The command-line options that turn the ASE on and off. */
1596 /* The minimum required architecture revisions for MIPS32, MIPS64,
1597 microMIPS32 and microMIPS64, or -1 if the extension isn't supported. */
1600 int micromips32_rev;
1601 int micromips64_rev;
1604 /* A table of all supported ASEs. */
1605 static const struct mips_ase mips_ases[] = {
1606 { "dsp", ASE_DSP, ASE_DSP64,
1607 OPTION_DSP, OPTION_NO_DSP,
1610 { "dspr2", ASE_DSP | ASE_DSPR2, 0,
1611 OPTION_DSPR2, OPTION_NO_DSPR2,
1614 { "eva", ASE_EVA, 0,
1615 OPTION_EVA, OPTION_NO_EVA,
1618 { "mcu", ASE_MCU, 0,
1619 OPTION_MCU, OPTION_NO_MCU,
1622 /* Deprecated in MIPS64r5, but we don't implement that yet. */
1623 { "mdmx", ASE_MDMX, 0,
1624 OPTION_MDMX, OPTION_NO_MDMX,
1627 /* Requires 64-bit FPRs, so the minimum MIPS32 revision is 2. */
1628 { "mips3d", ASE_MIPS3D, 0,
1629 OPTION_MIPS3D, OPTION_NO_MIPS3D,
1633 OPTION_MT, OPTION_NO_MT,
1636 { "smartmips", ASE_SMARTMIPS, 0,
1637 OPTION_SMARTMIPS, OPTION_NO_SMARTMIPS,
1640 { "virt", ASE_VIRT, ASE_VIRT64,
1641 OPTION_VIRT, OPTION_NO_VIRT,
1645 /* The set of ASEs that require -mfp64. */
1646 #define FP64_ASES (ASE_MIPS3D | ASE_MDMX)
1648 /* Groups of ASE_* flags that represent different revisions of an ASE. */
1649 static const unsigned int mips_ase_groups[] = {
1655 The following pseudo-ops from the Kane and Heinrich MIPS book
1656 should be defined here, but are currently unsupported: .alias,
1657 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1659 The following pseudo-ops from the Kane and Heinrich MIPS book are
1660 specific to the type of debugging information being generated, and
1661 should be defined by the object format: .aent, .begin, .bend,
1662 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1665 The following pseudo-ops from the Kane and Heinrich MIPS book are
1666 not MIPS CPU specific, but are also not specific to the object file
1667 format. This file is probably the best place to define them, but
1668 they are not currently supported: .asm0, .endr, .lab, .struct. */
1670 static const pseudo_typeS mips_pseudo_table[] =
1672 /* MIPS specific pseudo-ops. */
1673 {"option", s_option, 0},
1674 {"set", s_mipsset, 0},
1675 {"rdata", s_change_sec, 'r'},
1676 {"sdata", s_change_sec, 's'},
1677 {"livereg", s_ignore, 0},
1678 {"abicalls", s_abicalls, 0},
1679 {"cpload", s_cpload, 0},
1680 {"cpsetup", s_cpsetup, 0},
1681 {"cplocal", s_cplocal, 0},
1682 {"cprestore", s_cprestore, 0},
1683 {"cpreturn", s_cpreturn, 0},
1684 {"dtprelword", s_dtprelword, 0},
1685 {"dtpreldword", s_dtpreldword, 0},
1686 {"tprelword", s_tprelword, 0},
1687 {"tpreldword", s_tpreldword, 0},
1688 {"gpvalue", s_gpvalue, 0},
1689 {"gpword", s_gpword, 0},
1690 {"gpdword", s_gpdword, 0},
1691 {"ehword", s_ehword, 0},
1692 {"cpadd", s_cpadd, 0},
1693 {"insn", s_insn, 0},
1695 /* Relatively generic pseudo-ops that happen to be used on MIPS
1697 {"asciiz", stringer, 8 + 1},
1698 {"bss", s_change_sec, 'b'},
1700 {"half", s_cons, 1},
1701 {"dword", s_cons, 3},
1702 {"weakext", s_mips_weakext, 0},
1703 {"origin", s_org, 0},
1704 {"repeat", s_rept, 0},
1706 /* For MIPS this is non-standard, but we define it for consistency. */
1707 {"sbss", s_change_sec, 'B'},
1709 /* These pseudo-ops are defined in read.c, but must be overridden
1710 here for one reason or another. */
1711 {"align", s_align, 0},
1712 {"byte", s_cons, 0},
1713 {"data", s_change_sec, 'd'},
1714 {"double", s_float_cons, 'd'},
1715 {"float", s_float_cons, 'f'},
1716 {"globl", s_mips_globl, 0},
1717 {"global", s_mips_globl, 0},
1718 {"hword", s_cons, 1},
1720 {"long", s_cons, 2},
1721 {"octa", s_cons, 4},
1722 {"quad", s_cons, 3},
1723 {"section", s_change_section, 0},
1724 {"short", s_cons, 1},
1725 {"single", s_float_cons, 'f'},
1726 {"stabd", s_mips_stab, 'd'},
1727 {"stabn", s_mips_stab, 'n'},
1728 {"stabs", s_mips_stab, 's'},
1729 {"text", s_change_sec, 't'},
1730 {"word", s_cons, 2},
1732 { "extern", ecoff_directive_extern, 0},
1737 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1739 /* These pseudo-ops should be defined by the object file format.
1740 However, a.out doesn't support them, so we have versions here. */
1741 {"aent", s_mips_ent, 1},
1742 {"bgnb", s_ignore, 0},
1743 {"end", s_mips_end, 0},
1744 {"endb", s_ignore, 0},
1745 {"ent", s_mips_ent, 0},
1746 {"file", s_mips_file, 0},
1747 {"fmask", s_mips_mask, 'F'},
1748 {"frame", s_mips_frame, 0},
1749 {"loc", s_mips_loc, 0},
1750 {"mask", s_mips_mask, 'R'},
1751 {"verstamp", s_ignore, 0},
1755 /* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1756 purpose of the `.dc.a' internal pseudo-op. */
1759 mips_address_bytes (void)
1761 return HAVE_64BIT_ADDRESSES ? 8 : 4;
1764 extern void pop_insert (const pseudo_typeS *);
1767 mips_pop_insert (void)
1769 pop_insert (mips_pseudo_table);
1770 if (! ECOFF_DEBUGGING)
1771 pop_insert (mips_nonecoff_pseudo_table);
1774 /* Symbols labelling the current insn. */
1776 struct insn_label_list
1778 struct insn_label_list *next;
1782 static struct insn_label_list *free_insn_labels;
1783 #define label_list tc_segment_info_data.labels
1785 static void mips_clear_insn_labels (void);
1786 static void mips_mark_labels (void);
1787 static void mips_compressed_mark_labels (void);
1790 mips_clear_insn_labels (void)
1792 register struct insn_label_list **pl;
1793 segment_info_type *si;
1797 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1800 si = seg_info (now_seg);
1801 *pl = si->label_list;
1802 si->label_list = NULL;
1806 /* Mark instruction labels in MIPS16/microMIPS mode. */
1809 mips_mark_labels (void)
1811 if (HAVE_CODE_COMPRESSION)
1812 mips_compressed_mark_labels ();
1815 static char *expr_end;
1817 /* Expressions which appear in instructions. These are set by
1820 static expressionS imm_expr;
1821 static expressionS imm2_expr;
1822 static expressionS offset_expr;
1824 /* Relocs associated with imm_expr and offset_expr. */
1826 static bfd_reloc_code_real_type imm_reloc[3]
1827 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1828 static bfd_reloc_code_real_type offset_reloc[3]
1829 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1831 /* This is set to the resulting size of the instruction to be produced
1832 by mips16_ip if an explicit extension is used or by mips_ip if an
1833 explicit size is supplied. */
1835 static unsigned int forced_insn_length;
1837 /* True if we are assembling an instruction. All dot symbols defined during
1838 this time should be treated as code labels. */
1840 static bfd_boolean mips_assembling_insn;
1842 /* The pdr segment for per procedure frame/regmask info. Not used for
1845 static segT pdr_seg;
1847 /* The default target format to use. */
1849 #if defined (TE_FreeBSD)
1850 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1851 #elif defined (TE_TMIPS)
1852 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1854 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1858 mips_target_format (void)
1860 switch (OUTPUT_FLAVOR)
1862 case bfd_target_elf_flavour:
1864 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1865 return (target_big_endian
1866 ? "elf32-bigmips-vxworks"
1867 : "elf32-littlemips-vxworks");
1869 return (target_big_endian
1870 ? (HAVE_64BIT_OBJECTS
1871 ? ELF_TARGET ("elf64-", "big")
1873 ? ELF_TARGET ("elf32-n", "big")
1874 : ELF_TARGET ("elf32-", "big")))
1875 : (HAVE_64BIT_OBJECTS
1876 ? ELF_TARGET ("elf64-", "little")
1878 ? ELF_TARGET ("elf32-n", "little")
1879 : ELF_TARGET ("elf32-", "little"))));
1886 /* Return the ISA revision that is currently in use, or 0 if we are
1887 generating code for MIPS V or below. */
1892 if (mips_opts.isa == ISA_MIPS32R2 || mips_opts.isa == ISA_MIPS64R2)
1895 /* microMIPS implies revision 2 or above. */
1896 if (mips_opts.micromips)
1899 if (mips_opts.isa == ISA_MIPS32 || mips_opts.isa == ISA_MIPS64)
1905 /* Return the mask of all ASEs that are revisions of those in FLAGS. */
1908 mips_ase_mask (unsigned int flags)
1912 for (i = 0; i < ARRAY_SIZE (mips_ase_groups); i++)
1913 if (flags & mips_ase_groups[i])
1914 flags |= mips_ase_groups[i];
1918 /* Check whether the current ISA supports ASE. Issue a warning if
1922 mips_check_isa_supports_ase (const struct mips_ase *ase)
1926 static unsigned int warned_isa;
1927 static unsigned int warned_fp32;
1929 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
1930 min_rev = mips_opts.micromips ? ase->micromips64_rev : ase->mips64_rev;
1932 min_rev = mips_opts.micromips ? ase->micromips32_rev : ase->mips32_rev;
1933 if ((min_rev < 0 || mips_isa_rev () < min_rev)
1934 && (warned_isa & ase->flags) != ase->flags)
1936 warned_isa |= ase->flags;
1937 base = mips_opts.micromips ? "microMIPS" : "MIPS";
1938 size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
1940 as_warn (_("The %d-bit %s architecture does not support the"
1941 " `%s' extension"), size, base, ase->name);
1943 as_warn (_("The `%s' extension requires %s%d revision %d or greater"),
1944 ase->name, base, size, min_rev);
1946 if ((ase->flags & FP64_ASES)
1948 && (warned_fp32 & ase->flags) != ase->flags)
1950 warned_fp32 |= ase->flags;
1951 as_warn (_("The `%s' extension requires 64-bit FPRs"), ase->name);
1955 /* Check all enabled ASEs to see whether they are supported by the
1956 chosen architecture. */
1959 mips_check_isa_supports_ases (void)
1961 unsigned int i, mask;
1963 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
1965 mask = mips_ase_mask (mips_ases[i].flags);
1966 if ((mips_opts.ase & mask) == mips_ases[i].flags)
1967 mips_check_isa_supports_ase (&mips_ases[i]);
1971 /* Set the state of ASE to ENABLED_P. Return the mask of ASE_* flags
1972 that were affected. */
1975 mips_set_ase (const struct mips_ase *ase, bfd_boolean enabled_p)
1979 mask = mips_ase_mask (ase->flags);
1980 mips_opts.ase &= ~mask;
1982 mips_opts.ase |= ase->flags;
1986 /* Return the ASE called NAME, or null if none. */
1988 static const struct mips_ase *
1989 mips_lookup_ase (const char *name)
1993 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
1994 if (strcmp (name, mips_ases[i].name) == 0)
1995 return &mips_ases[i];
1999 /* Return the length of a microMIPS instruction in bytes. If bits of
2000 the mask beyond the low 16 are 0, then it is a 16-bit instruction.
2001 Otherwise assume a 32-bit instruction; 48-bit instructions (0x1f
2002 major opcode) will require further modifications to the opcode
2005 static inline unsigned int
2006 micromips_insn_length (const struct mips_opcode *mo)
2008 return (mo->mask >> 16) == 0 ? 2 : 4;
2011 /* Return the length of MIPS16 instruction OPCODE. */
2013 static inline unsigned int
2014 mips16_opcode_length (unsigned long opcode)
2016 return (opcode >> 16) == 0 ? 2 : 4;
2019 /* Return the length of instruction INSN. */
2021 static inline unsigned int
2022 insn_length (const struct mips_cl_insn *insn)
2024 if (mips_opts.micromips)
2025 return micromips_insn_length (insn->insn_mo);
2026 else if (mips_opts.mips16)
2027 return mips16_opcode_length (insn->insn_opcode);
2032 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
2035 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
2040 insn->insn_opcode = mo->match;
2043 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2044 insn->fixp[i] = NULL;
2045 insn->fixed_p = (mips_opts.noreorder > 0);
2046 insn->noreorder_p = (mips_opts.noreorder > 0);
2047 insn->mips16_absolute_jump_p = 0;
2048 insn->complete_p = 0;
2049 insn->cleared_p = 0;
2052 /* Record the current MIPS16/microMIPS mode in now_seg. */
2055 mips_record_compressed_mode (void)
2057 segment_info_type *si;
2059 si = seg_info (now_seg);
2060 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
2061 si->tc_segment_info_data.mips16 = mips_opts.mips16;
2062 if (si->tc_segment_info_data.micromips != mips_opts.micromips)
2063 si->tc_segment_info_data.micromips = mips_opts.micromips;
2066 /* Read a standard MIPS instruction from BUF. */
2068 static unsigned long
2069 read_insn (char *buf)
2071 if (target_big_endian)
2072 return bfd_getb32 ((bfd_byte *) buf);
2074 return bfd_getl32 ((bfd_byte *) buf);
2077 /* Write standard MIPS instruction INSN to BUF. Return a pointer to
2081 write_insn (char *buf, unsigned int insn)
2083 md_number_to_chars (buf, insn, 4);
2087 /* Read a microMIPS or MIPS16 opcode from BUF, given that it
2088 has length LENGTH. */
2090 static unsigned long
2091 read_compressed_insn (char *buf, unsigned int length)
2097 for (i = 0; i < length; i += 2)
2100 if (target_big_endian)
2101 insn |= bfd_getb16 ((char *) buf);
2103 insn |= bfd_getl16 ((char *) buf);
2109 /* Write microMIPS or MIPS16 instruction INSN to BUF, given that the
2110 instruction is LENGTH bytes long. Return a pointer to the next byte. */
2113 write_compressed_insn (char *buf, unsigned int insn, unsigned int length)
2117 for (i = 0; i < length; i += 2)
2118 md_number_to_chars (buf + i, insn >> ((length - i - 2) * 8), 2);
2119 return buf + length;
2122 /* Install INSN at the location specified by its "frag" and "where" fields. */
2125 install_insn (const struct mips_cl_insn *insn)
2127 char *f = insn->frag->fr_literal + insn->where;
2128 if (HAVE_CODE_COMPRESSION)
2129 write_compressed_insn (f, insn->insn_opcode, insn_length (insn));
2131 write_insn (f, insn->insn_opcode);
2132 mips_record_compressed_mode ();
2135 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
2136 and install the opcode in the new location. */
2139 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
2144 insn->where = where;
2145 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2146 if (insn->fixp[i] != NULL)
2148 insn->fixp[i]->fx_frag = frag;
2149 insn->fixp[i]->fx_where = where;
2151 install_insn (insn);
2154 /* Add INSN to the end of the output. */
2157 add_fixed_insn (struct mips_cl_insn *insn)
2159 char *f = frag_more (insn_length (insn));
2160 move_insn (insn, frag_now, f - frag_now->fr_literal);
2163 /* Start a variant frag and move INSN to the start of the variant part,
2164 marking it as fixed. The other arguments are as for frag_var. */
2167 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
2168 relax_substateT subtype, symbolS *symbol, offsetT offset)
2170 frag_grow (max_chars);
2171 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
2173 frag_var (rs_machine_dependent, max_chars, var,
2174 subtype, symbol, offset, NULL);
2177 /* Insert N copies of INSN into the history buffer, starting at
2178 position FIRST. Neither FIRST nor N need to be clipped. */
2181 insert_into_history (unsigned int first, unsigned int n,
2182 const struct mips_cl_insn *insn)
2184 if (mips_relax.sequence != 2)
2188 for (i = ARRAY_SIZE (history); i-- > first;)
2190 history[i] = history[i - n];
2196 /* Initialize vr4120_conflicts. There is a bit of duplication here:
2197 the idea is to make it obvious at a glance that each errata is
2201 init_vr4120_conflicts (void)
2203 #define CONFLICT(FIRST, SECOND) \
2204 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
2206 /* Errata 21 - [D]DIV[U] after [D]MACC */
2207 CONFLICT (MACC, DIV);
2208 CONFLICT (DMACC, DIV);
2210 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
2211 CONFLICT (DMULT, DMULT);
2212 CONFLICT (DMULT, DMACC);
2213 CONFLICT (DMACC, DMULT);
2214 CONFLICT (DMACC, DMACC);
2216 /* Errata 24 - MT{LO,HI} after [D]MACC */
2217 CONFLICT (MACC, MTHILO);
2218 CONFLICT (DMACC, MTHILO);
2220 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
2221 instruction is executed immediately after a MACC or DMACC
2222 instruction, the result of [either instruction] is incorrect." */
2223 CONFLICT (MACC, MULT);
2224 CONFLICT (MACC, DMULT);
2225 CONFLICT (DMACC, MULT);
2226 CONFLICT (DMACC, DMULT);
2228 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
2229 executed immediately after a DMULT, DMULTU, DIV, DIVU,
2230 DDIV or DDIVU instruction, the result of the MACC or
2231 DMACC instruction is incorrect.". */
2232 CONFLICT (DMULT, MACC);
2233 CONFLICT (DMULT, DMACC);
2234 CONFLICT (DIV, MACC);
2235 CONFLICT (DIV, DMACC);
2245 #define RTYPE_MASK 0x1ff00
2246 #define RTYPE_NUM 0x00100
2247 #define RTYPE_FPU 0x00200
2248 #define RTYPE_FCC 0x00400
2249 #define RTYPE_VEC 0x00800
2250 #define RTYPE_GP 0x01000
2251 #define RTYPE_CP0 0x02000
2252 #define RTYPE_PC 0x04000
2253 #define RTYPE_ACC 0x08000
2254 #define RTYPE_CCC 0x10000
2255 #define RNUM_MASK 0x000ff
2256 #define RWARN 0x80000
2258 #define GENERIC_REGISTER_NUMBERS \
2259 {"$0", RTYPE_NUM | 0}, \
2260 {"$1", RTYPE_NUM | 1}, \
2261 {"$2", RTYPE_NUM | 2}, \
2262 {"$3", RTYPE_NUM | 3}, \
2263 {"$4", RTYPE_NUM | 4}, \
2264 {"$5", RTYPE_NUM | 5}, \
2265 {"$6", RTYPE_NUM | 6}, \
2266 {"$7", RTYPE_NUM | 7}, \
2267 {"$8", RTYPE_NUM | 8}, \
2268 {"$9", RTYPE_NUM | 9}, \
2269 {"$10", RTYPE_NUM | 10}, \
2270 {"$11", RTYPE_NUM | 11}, \
2271 {"$12", RTYPE_NUM | 12}, \
2272 {"$13", RTYPE_NUM | 13}, \
2273 {"$14", RTYPE_NUM | 14}, \
2274 {"$15", RTYPE_NUM | 15}, \
2275 {"$16", RTYPE_NUM | 16}, \
2276 {"$17", RTYPE_NUM | 17}, \
2277 {"$18", RTYPE_NUM | 18}, \
2278 {"$19", RTYPE_NUM | 19}, \
2279 {"$20", RTYPE_NUM | 20}, \
2280 {"$21", RTYPE_NUM | 21}, \
2281 {"$22", RTYPE_NUM | 22}, \
2282 {"$23", RTYPE_NUM | 23}, \
2283 {"$24", RTYPE_NUM | 24}, \
2284 {"$25", RTYPE_NUM | 25}, \
2285 {"$26", RTYPE_NUM | 26}, \
2286 {"$27", RTYPE_NUM | 27}, \
2287 {"$28", RTYPE_NUM | 28}, \
2288 {"$29", RTYPE_NUM | 29}, \
2289 {"$30", RTYPE_NUM | 30}, \
2290 {"$31", RTYPE_NUM | 31}
2292 #define FPU_REGISTER_NAMES \
2293 {"$f0", RTYPE_FPU | 0}, \
2294 {"$f1", RTYPE_FPU | 1}, \
2295 {"$f2", RTYPE_FPU | 2}, \
2296 {"$f3", RTYPE_FPU | 3}, \
2297 {"$f4", RTYPE_FPU | 4}, \
2298 {"$f5", RTYPE_FPU | 5}, \
2299 {"$f6", RTYPE_FPU | 6}, \
2300 {"$f7", RTYPE_FPU | 7}, \
2301 {"$f8", RTYPE_FPU | 8}, \
2302 {"$f9", RTYPE_FPU | 9}, \
2303 {"$f10", RTYPE_FPU | 10}, \
2304 {"$f11", RTYPE_FPU | 11}, \
2305 {"$f12", RTYPE_FPU | 12}, \
2306 {"$f13", RTYPE_FPU | 13}, \
2307 {"$f14", RTYPE_FPU | 14}, \
2308 {"$f15", RTYPE_FPU | 15}, \
2309 {"$f16", RTYPE_FPU | 16}, \
2310 {"$f17", RTYPE_FPU | 17}, \
2311 {"$f18", RTYPE_FPU | 18}, \
2312 {"$f19", RTYPE_FPU | 19}, \
2313 {"$f20", RTYPE_FPU | 20}, \
2314 {"$f21", RTYPE_FPU | 21}, \
2315 {"$f22", RTYPE_FPU | 22}, \
2316 {"$f23", RTYPE_FPU | 23}, \
2317 {"$f24", RTYPE_FPU | 24}, \
2318 {"$f25", RTYPE_FPU | 25}, \
2319 {"$f26", RTYPE_FPU | 26}, \
2320 {"$f27", RTYPE_FPU | 27}, \
2321 {"$f28", RTYPE_FPU | 28}, \
2322 {"$f29", RTYPE_FPU | 29}, \
2323 {"$f30", RTYPE_FPU | 30}, \
2324 {"$f31", RTYPE_FPU | 31}
2326 #define FPU_CONDITION_CODE_NAMES \
2327 {"$fcc0", RTYPE_FCC | 0}, \
2328 {"$fcc1", RTYPE_FCC | 1}, \
2329 {"$fcc2", RTYPE_FCC | 2}, \
2330 {"$fcc3", RTYPE_FCC | 3}, \
2331 {"$fcc4", RTYPE_FCC | 4}, \
2332 {"$fcc5", RTYPE_FCC | 5}, \
2333 {"$fcc6", RTYPE_FCC | 6}, \
2334 {"$fcc7", RTYPE_FCC | 7}
2336 #define COPROC_CONDITION_CODE_NAMES \
2337 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
2338 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
2339 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
2340 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
2341 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
2342 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
2343 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
2344 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
2346 #define N32N64_SYMBOLIC_REGISTER_NAMES \
2347 {"$a4", RTYPE_GP | 8}, \
2348 {"$a5", RTYPE_GP | 9}, \
2349 {"$a6", RTYPE_GP | 10}, \
2350 {"$a7", RTYPE_GP | 11}, \
2351 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
2352 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
2353 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
2354 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
2355 {"$t0", RTYPE_GP | 12}, \
2356 {"$t1", RTYPE_GP | 13}, \
2357 {"$t2", RTYPE_GP | 14}, \
2358 {"$t3", RTYPE_GP | 15}
2360 #define O32_SYMBOLIC_REGISTER_NAMES \
2361 {"$t0", RTYPE_GP | 8}, \
2362 {"$t1", RTYPE_GP | 9}, \
2363 {"$t2", RTYPE_GP | 10}, \
2364 {"$t3", RTYPE_GP | 11}, \
2365 {"$t4", RTYPE_GP | 12}, \
2366 {"$t5", RTYPE_GP | 13}, \
2367 {"$t6", RTYPE_GP | 14}, \
2368 {"$t7", RTYPE_GP | 15}, \
2369 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
2370 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
2371 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
2372 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
2374 /* Remaining symbolic register names */
2375 #define SYMBOLIC_REGISTER_NAMES \
2376 {"$zero", RTYPE_GP | 0}, \
2377 {"$at", RTYPE_GP | 1}, \
2378 {"$AT", RTYPE_GP | 1}, \
2379 {"$v0", RTYPE_GP | 2}, \
2380 {"$v1", RTYPE_GP | 3}, \
2381 {"$a0", RTYPE_GP | 4}, \
2382 {"$a1", RTYPE_GP | 5}, \
2383 {"$a2", RTYPE_GP | 6}, \
2384 {"$a3", RTYPE_GP | 7}, \
2385 {"$s0", RTYPE_GP | 16}, \
2386 {"$s1", RTYPE_GP | 17}, \
2387 {"$s2", RTYPE_GP | 18}, \
2388 {"$s3", RTYPE_GP | 19}, \
2389 {"$s4", RTYPE_GP | 20}, \
2390 {"$s5", RTYPE_GP | 21}, \
2391 {"$s6", RTYPE_GP | 22}, \
2392 {"$s7", RTYPE_GP | 23}, \
2393 {"$t8", RTYPE_GP | 24}, \
2394 {"$t9", RTYPE_GP | 25}, \
2395 {"$k0", RTYPE_GP | 26}, \
2396 {"$kt0", RTYPE_GP | 26}, \
2397 {"$k1", RTYPE_GP | 27}, \
2398 {"$kt1", RTYPE_GP | 27}, \
2399 {"$gp", RTYPE_GP | 28}, \
2400 {"$sp", RTYPE_GP | 29}, \
2401 {"$s8", RTYPE_GP | 30}, \
2402 {"$fp", RTYPE_GP | 30}, \
2403 {"$ra", RTYPE_GP | 31}
2405 #define MIPS16_SPECIAL_REGISTER_NAMES \
2406 {"$pc", RTYPE_PC | 0}
2408 #define MDMX_VECTOR_REGISTER_NAMES \
2409 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
2410 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
2411 {"$v2", RTYPE_VEC | 2}, \
2412 {"$v3", RTYPE_VEC | 3}, \
2413 {"$v4", RTYPE_VEC | 4}, \
2414 {"$v5", RTYPE_VEC | 5}, \
2415 {"$v6", RTYPE_VEC | 6}, \
2416 {"$v7", RTYPE_VEC | 7}, \
2417 {"$v8", RTYPE_VEC | 8}, \
2418 {"$v9", RTYPE_VEC | 9}, \
2419 {"$v10", RTYPE_VEC | 10}, \
2420 {"$v11", RTYPE_VEC | 11}, \
2421 {"$v12", RTYPE_VEC | 12}, \
2422 {"$v13", RTYPE_VEC | 13}, \
2423 {"$v14", RTYPE_VEC | 14}, \
2424 {"$v15", RTYPE_VEC | 15}, \
2425 {"$v16", RTYPE_VEC | 16}, \
2426 {"$v17", RTYPE_VEC | 17}, \
2427 {"$v18", RTYPE_VEC | 18}, \
2428 {"$v19", RTYPE_VEC | 19}, \
2429 {"$v20", RTYPE_VEC | 20}, \
2430 {"$v21", RTYPE_VEC | 21}, \
2431 {"$v22", RTYPE_VEC | 22}, \
2432 {"$v23", RTYPE_VEC | 23}, \
2433 {"$v24", RTYPE_VEC | 24}, \
2434 {"$v25", RTYPE_VEC | 25}, \
2435 {"$v26", RTYPE_VEC | 26}, \
2436 {"$v27", RTYPE_VEC | 27}, \
2437 {"$v28", RTYPE_VEC | 28}, \
2438 {"$v29", RTYPE_VEC | 29}, \
2439 {"$v30", RTYPE_VEC | 30}, \
2440 {"$v31", RTYPE_VEC | 31}
2442 #define MIPS_DSP_ACCUMULATOR_NAMES \
2443 {"$ac0", RTYPE_ACC | 0}, \
2444 {"$ac1", RTYPE_ACC | 1}, \
2445 {"$ac2", RTYPE_ACC | 2}, \
2446 {"$ac3", RTYPE_ACC | 3}
2448 static const struct regname reg_names[] = {
2449 GENERIC_REGISTER_NUMBERS,
2451 FPU_CONDITION_CODE_NAMES,
2452 COPROC_CONDITION_CODE_NAMES,
2454 /* The $txx registers depends on the abi,
2455 these will be added later into the symbol table from
2456 one of the tables below once mips_abi is set after
2457 parsing of arguments from the command line. */
2458 SYMBOLIC_REGISTER_NAMES,
2460 MIPS16_SPECIAL_REGISTER_NAMES,
2461 MDMX_VECTOR_REGISTER_NAMES,
2462 MIPS_DSP_ACCUMULATOR_NAMES,
2466 static const struct regname reg_names_o32[] = {
2467 O32_SYMBOLIC_REGISTER_NAMES,
2471 static const struct regname reg_names_n32n64[] = {
2472 N32N64_SYMBOLIC_REGISTER_NAMES,
2476 /* Check if S points at a valid register specifier according to TYPES.
2477 If so, then return 1, advance S to consume the specifier and store
2478 the register's number in REGNOP, otherwise return 0. */
2481 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
2488 /* Find end of name. */
2490 if (is_name_beginner (*e))
2492 while (is_part_of_name (*e))
2495 /* Terminate name. */
2499 /* Look for a register symbol. */
2500 if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
2502 int r = S_GET_VALUE (symbolP);
2504 reg = r & RNUM_MASK;
2505 else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
2506 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
2507 reg = (r & RNUM_MASK) - 2;
2509 /* Else see if this is a register defined in an itbl entry. */
2510 else if ((types & RTYPE_GP) && itbl_have_entries)
2517 if (itbl_get_reg_val (n, &r))
2518 reg = r & RNUM_MASK;
2521 /* Advance to next token if a register was recognised. */
2524 else if (types & RWARN)
2525 as_warn (_("Unrecognized register name `%s'"), *s);
2533 /* Check if S points at a valid register list according to TYPES.
2534 If so, then return 1, advance S to consume the list and store
2535 the registers present on the list as a bitmask of ones in REGLISTP,
2536 otherwise return 0. A valid list comprises a comma-separated
2537 enumeration of valid single registers and/or dash-separated
2538 contiguous register ranges as determined by their numbers.
2540 As a special exception if one of s0-s7 registers is specified as
2541 the range's lower delimiter and s8 (fp) is its upper one, then no
2542 registers whose numbers place them between s7 and s8 (i.e. $24-$29)
2543 are selected; they have to be listed separately if needed. */
2546 reglist_lookup (char **s, unsigned int types, unsigned int *reglistp)
2548 unsigned int reglist = 0;
2549 unsigned int lastregno;
2550 bfd_boolean ok = TRUE;
2551 unsigned int regmask;
2552 char *s_endlist = *s;
2556 while (reg_lookup (s, types, ®no))
2562 ok = reg_lookup (s, types, &lastregno);
2563 if (ok && lastregno < regno)
2569 if (lastregno == FP && regno >= S0 && regno <= S7)
2574 regmask = 1 << lastregno;
2575 regmask = (regmask << 1) - 1;
2576 regmask ^= (1 << regno) - 1;
2590 *reglistp = reglist;
2591 return ok && reglist != 0;
2594 /* Return TRUE if opcode MO is valid on the currently selected ISA, ASE
2595 and architecture. Use is_opcode_valid_16 for MIPS16 opcodes. */
2598 is_opcode_valid (const struct mips_opcode *mo)
2600 int isa = mips_opts.isa;
2601 int ase = mips_opts.ase;
2605 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
2606 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
2607 if ((ase & mips_ases[i].flags) == mips_ases[i].flags)
2608 ase |= mips_ases[i].flags64;
2610 if (!opcode_is_member (mo, isa, ase, mips_opts.arch))
2613 /* Check whether the instruction or macro requires single-precision or
2614 double-precision floating-point support. Note that this information is
2615 stored differently in the opcode table for insns and macros. */
2616 if (mo->pinfo == INSN_MACRO)
2618 fp_s = mo->pinfo2 & INSN2_M_FP_S;
2619 fp_d = mo->pinfo2 & INSN2_M_FP_D;
2623 fp_s = mo->pinfo & FP_S;
2624 fp_d = mo->pinfo & FP_D;
2627 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
2630 if (fp_s && mips_opts.soft_float)
2636 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
2637 selected ISA and architecture. */
2640 is_opcode_valid_16 (const struct mips_opcode *mo)
2642 return opcode_is_member (mo, mips_opts.isa, 0, mips_opts.arch);
2645 /* Return TRUE if the size of the microMIPS opcode MO matches one
2646 explicitly requested. Always TRUE in the standard MIPS mode. */
2649 is_size_valid (const struct mips_opcode *mo)
2651 if (!mips_opts.micromips)
2654 if (mips_opts.insn32)
2656 if (mo->pinfo != INSN_MACRO && micromips_insn_length (mo) != 4)
2658 if ((mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0)
2661 if (!forced_insn_length)
2663 if (mo->pinfo == INSN_MACRO)
2665 return forced_insn_length == micromips_insn_length (mo);
2668 /* Return TRUE if the microMIPS opcode MO is valid for the delay slot
2669 of the preceding instruction. Always TRUE in the standard MIPS mode.
2671 We don't accept macros in 16-bit delay slots to avoid a case where
2672 a macro expansion fails because it relies on a preceding 32-bit real
2673 instruction to have matched and does not handle the operands correctly.
2674 The only macros that may expand to 16-bit instructions are JAL that
2675 cannot be placed in a delay slot anyway, and corner cases of BALIGN
2676 and BGT (that likewise cannot be placed in a delay slot) that decay to
2677 a NOP. In all these cases the macros precede any corresponding real
2678 instruction definitions in the opcode table, so they will match in the
2679 second pass where the size of the delay slot is ignored and therefore
2680 produce correct code. */
2683 is_delay_slot_valid (const struct mips_opcode *mo)
2685 if (!mips_opts.micromips)
2688 if (mo->pinfo == INSN_MACRO)
2689 return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;
2690 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
2691 && micromips_insn_length (mo) != 4)
2693 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
2694 && micromips_insn_length (mo) != 2)
2700 /* This function is called once, at assembler startup time. It should set up
2701 all the tables, etc. that the MD part of the assembler will need. */
2706 const char *retval = NULL;
2710 if (mips_pic != NO_PIC)
2712 if (g_switch_seen && g_switch_value != 0)
2713 as_bad (_("-G may not be used in position-independent code"));
2717 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
2718 as_warn (_("Could not set architecture and machine"));
2720 op_hash = hash_new ();
2722 for (i = 0; i < NUMOPCODES;)
2724 const char *name = mips_opcodes[i].name;
2726 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
2729 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
2730 mips_opcodes[i].name, retval);
2731 /* Probably a memory allocation problem? Give up now. */
2732 as_fatal (_("Broken assembler. No assembly attempted."));
2736 if (mips_opcodes[i].pinfo != INSN_MACRO)
2738 if (!validate_mips_insn (&mips_opcodes[i]))
2740 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
2742 create_insn (&nop_insn, mips_opcodes + i);
2743 if (mips_fix_loongson2f_nop)
2744 nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
2745 nop_insn.fixed_p = 1;
2750 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
2753 mips16_op_hash = hash_new ();
2756 while (i < bfd_mips16_num_opcodes)
2758 const char *name = mips16_opcodes[i].name;
2760 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
2762 as_fatal (_("internal: can't hash `%s': %s"),
2763 mips16_opcodes[i].name, retval);
2766 if (mips16_opcodes[i].pinfo != INSN_MACRO
2767 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
2768 != mips16_opcodes[i].match))
2770 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
2771 mips16_opcodes[i].name, mips16_opcodes[i].args);
2774 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
2776 create_insn (&mips16_nop_insn, mips16_opcodes + i);
2777 mips16_nop_insn.fixed_p = 1;
2781 while (i < bfd_mips16_num_opcodes
2782 && strcmp (mips16_opcodes[i].name, name) == 0);
2785 micromips_op_hash = hash_new ();
2788 while (i < bfd_micromips_num_opcodes)
2790 const char *name = micromips_opcodes[i].name;
2792 retval = hash_insert (micromips_op_hash, name,
2793 (void *) µmips_opcodes[i]);
2795 as_fatal (_("internal: can't hash `%s': %s"),
2796 micromips_opcodes[i].name, retval);
2798 if (micromips_opcodes[i].pinfo != INSN_MACRO)
2800 struct mips_cl_insn *micromips_nop_insn;
2802 if (!validate_micromips_insn (µmips_opcodes[i]))
2805 if (micromips_insn_length (micromips_opcodes + i) == 2)
2806 micromips_nop_insn = µmips_nop16_insn;
2807 else if (micromips_insn_length (micromips_opcodes + i) == 4)
2808 micromips_nop_insn = µmips_nop32_insn;
2812 if (micromips_nop_insn->insn_mo == NULL
2813 && strcmp (name, "nop") == 0)
2815 create_insn (micromips_nop_insn, micromips_opcodes + i);
2816 micromips_nop_insn->fixed_p = 1;
2819 while (++i < bfd_micromips_num_opcodes
2820 && strcmp (micromips_opcodes[i].name, name) == 0);
2824 as_fatal (_("Broken assembler. No assembly attempted."));
2826 /* We add all the general register names to the symbol table. This
2827 helps us detect invalid uses of them. */
2828 for (i = 0; reg_names[i].name; i++)
2829 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
2830 reg_names[i].num, /* & RNUM_MASK, */
2831 &zero_address_frag));
2833 for (i = 0; reg_names_n32n64[i].name; i++)
2834 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
2835 reg_names_n32n64[i].num, /* & RNUM_MASK, */
2836 &zero_address_frag));
2838 for (i = 0; reg_names_o32[i].name; i++)
2839 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
2840 reg_names_o32[i].num, /* & RNUM_MASK, */
2841 &zero_address_frag));
2843 mips_no_prev_insn ();
2846 mips_cprmask[0] = 0;
2847 mips_cprmask[1] = 0;
2848 mips_cprmask[2] = 0;
2849 mips_cprmask[3] = 0;
2851 /* set the default alignment for the text section (2**2) */
2852 record_alignment (text_section, 2);
2854 bfd_set_gp_size (stdoutput, g_switch_value);
2856 /* On a native system other than VxWorks, sections must be aligned
2857 to 16 byte boundaries. When configured for an embedded ELF
2858 target, we don't bother. */
2859 if (strncmp (TARGET_OS, "elf", 3) != 0
2860 && strncmp (TARGET_OS, "vxworks", 7) != 0)
2862 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
2863 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
2864 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
2867 /* Create a .reginfo section for register masks and a .mdebug
2868 section for debugging information. */
2876 subseg = now_subseg;
2878 /* The ABI says this section should be loaded so that the
2879 running program can access it. However, we don't load it
2880 if we are configured for an embedded target */
2881 flags = SEC_READONLY | SEC_DATA;
2882 if (strncmp (TARGET_OS, "elf", 3) != 0)
2883 flags |= SEC_ALLOC | SEC_LOAD;
2885 if (mips_abi != N64_ABI)
2887 sec = subseg_new (".reginfo", (subsegT) 0);
2889 bfd_set_section_flags (stdoutput, sec, flags);
2890 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
2892 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
2896 /* The 64-bit ABI uses a .MIPS.options section rather than
2897 .reginfo section. */
2898 sec = subseg_new (".MIPS.options", (subsegT) 0);
2899 bfd_set_section_flags (stdoutput, sec, flags);
2900 bfd_set_section_alignment (stdoutput, sec, 3);
2902 /* Set up the option header. */
2904 Elf_Internal_Options opthdr;
2907 opthdr.kind = ODK_REGINFO;
2908 opthdr.size = (sizeof (Elf_External_Options)
2909 + sizeof (Elf64_External_RegInfo));
2912 f = frag_more (sizeof (Elf_External_Options));
2913 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2914 (Elf_External_Options *) f);
2916 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2920 if (ECOFF_DEBUGGING)
2922 sec = subseg_new (".mdebug", (subsegT) 0);
2923 (void) bfd_set_section_flags (stdoutput, sec,
2924 SEC_HAS_CONTENTS | SEC_READONLY);
2925 (void) bfd_set_section_alignment (stdoutput, sec, 2);
2927 else if (mips_flag_pdr)
2929 pdr_seg = subseg_new (".pdr", (subsegT) 0);
2930 (void) bfd_set_section_flags (stdoutput, pdr_seg,
2931 SEC_READONLY | SEC_RELOC
2933 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2936 subseg_set (seg, subseg);
2939 if (! ECOFF_DEBUGGING)
2942 if (mips_fix_vr4120)
2943 init_vr4120_conflicts ();
2949 mips_emit_delays ();
2950 if (! ECOFF_DEBUGGING)
2955 md_assemble (char *str)
2957 struct mips_cl_insn insn;
2958 bfd_reloc_code_real_type unused_reloc[3]
2959 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
2961 imm_expr.X_op = O_absent;
2962 imm2_expr.X_op = O_absent;
2963 offset_expr.X_op = O_absent;
2964 imm_reloc[0] = BFD_RELOC_UNUSED;
2965 imm_reloc[1] = BFD_RELOC_UNUSED;
2966 imm_reloc[2] = BFD_RELOC_UNUSED;
2967 offset_reloc[0] = BFD_RELOC_UNUSED;
2968 offset_reloc[1] = BFD_RELOC_UNUSED;
2969 offset_reloc[2] = BFD_RELOC_UNUSED;
2971 mips_mark_labels ();
2972 mips_assembling_insn = TRUE;
2974 if (mips_opts.mips16)
2975 mips16_ip (str, &insn);
2978 mips_ip (str, &insn);
2979 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2980 str, insn.insn_opcode));
2984 as_bad ("%s `%s'", insn_error, str);
2985 else if (insn.insn_mo->pinfo == INSN_MACRO)
2988 if (mips_opts.mips16)
2989 mips16_macro (&insn);
2996 if (imm_expr.X_op != O_absent)
2997 append_insn (&insn, &imm_expr, imm_reloc, FALSE);
2998 else if (offset_expr.X_op != O_absent)
2999 append_insn (&insn, &offset_expr, offset_reloc, FALSE);
3001 append_insn (&insn, NULL, unused_reloc, FALSE);
3004 mips_assembling_insn = FALSE;
3007 /* Convenience functions for abstracting away the differences between
3008 MIPS16 and non-MIPS16 relocations. */
3010 static inline bfd_boolean
3011 mips16_reloc_p (bfd_reloc_code_real_type reloc)
3015 case BFD_RELOC_MIPS16_JMP:
3016 case BFD_RELOC_MIPS16_GPREL:
3017 case BFD_RELOC_MIPS16_GOT16:
3018 case BFD_RELOC_MIPS16_CALL16:
3019 case BFD_RELOC_MIPS16_HI16_S:
3020 case BFD_RELOC_MIPS16_HI16:
3021 case BFD_RELOC_MIPS16_LO16:
3029 static inline bfd_boolean
3030 micromips_reloc_p (bfd_reloc_code_real_type reloc)
3034 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
3035 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
3036 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
3037 case BFD_RELOC_MICROMIPS_GPREL16:
3038 case BFD_RELOC_MICROMIPS_JMP:
3039 case BFD_RELOC_MICROMIPS_HI16:
3040 case BFD_RELOC_MICROMIPS_HI16_S:
3041 case BFD_RELOC_MICROMIPS_LO16:
3042 case BFD_RELOC_MICROMIPS_LITERAL:
3043 case BFD_RELOC_MICROMIPS_GOT16:
3044 case BFD_RELOC_MICROMIPS_CALL16:
3045 case BFD_RELOC_MICROMIPS_GOT_HI16:
3046 case BFD_RELOC_MICROMIPS_GOT_LO16:
3047 case BFD_RELOC_MICROMIPS_CALL_HI16:
3048 case BFD_RELOC_MICROMIPS_CALL_LO16:
3049 case BFD_RELOC_MICROMIPS_SUB:
3050 case BFD_RELOC_MICROMIPS_GOT_PAGE:
3051 case BFD_RELOC_MICROMIPS_GOT_OFST:
3052 case BFD_RELOC_MICROMIPS_GOT_DISP:
3053 case BFD_RELOC_MICROMIPS_HIGHEST:
3054 case BFD_RELOC_MICROMIPS_HIGHER:
3055 case BFD_RELOC_MICROMIPS_SCN_DISP:
3056 case BFD_RELOC_MICROMIPS_JALR:
3064 static inline bfd_boolean
3065 jmp_reloc_p (bfd_reloc_code_real_type reloc)
3067 return reloc == BFD_RELOC_MIPS_JMP || reloc == BFD_RELOC_MICROMIPS_JMP;
3070 static inline bfd_boolean
3071 got16_reloc_p (bfd_reloc_code_real_type reloc)
3073 return (reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16
3074 || reloc == BFD_RELOC_MICROMIPS_GOT16);
3077 static inline bfd_boolean
3078 hi16_reloc_p (bfd_reloc_code_real_type reloc)
3080 return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S
3081 || reloc == BFD_RELOC_MICROMIPS_HI16_S);
3084 static inline bfd_boolean
3085 lo16_reloc_p (bfd_reloc_code_real_type reloc)
3087 return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16
3088 || reloc == BFD_RELOC_MICROMIPS_LO16);
3091 static inline bfd_boolean
3092 jalr_reloc_p (bfd_reloc_code_real_type reloc)
3094 return reloc == BFD_RELOC_MIPS_JALR || reloc == BFD_RELOC_MICROMIPS_JALR;
3097 /* Return true if RELOC is a PC-relative relocation that does not have
3098 full address range. */
3100 static inline bfd_boolean
3101 limited_pcrel_reloc_p (bfd_reloc_code_real_type reloc)
3105 case BFD_RELOC_16_PCREL_S2:
3106 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
3107 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
3108 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
3111 case BFD_RELOC_32_PCREL:
3112 return HAVE_64BIT_ADDRESSES;
3119 /* Return true if the given relocation might need a matching %lo().
3120 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
3121 need a matching %lo() when applied to local symbols. */
3123 static inline bfd_boolean
3124 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
3126 return (HAVE_IN_PLACE_ADDENDS
3127 && (hi16_reloc_p (reloc)
3128 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
3129 all GOT16 relocations evaluate to "G". */
3130 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
3133 /* Return the type of %lo() reloc needed by RELOC, given that
3134 reloc_needs_lo_p. */
3136 static inline bfd_reloc_code_real_type
3137 matching_lo_reloc (bfd_reloc_code_real_type reloc)
3139 return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16
3140 : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16
3144 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
3147 static inline bfd_boolean
3148 fixup_has_matching_lo_p (fixS *fixp)
3150 return (fixp->fx_next != NULL
3151 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
3152 && fixp->fx_addsy == fixp->fx_next->fx_addsy
3153 && fixp->fx_offset == fixp->fx_next->fx_offset);
3156 /* This function returns true if modifying a register requires a
3160 reg_needs_delay (unsigned int reg)
3162 unsigned long prev_pinfo;
3164 prev_pinfo = history[0].insn_mo->pinfo;
3165 if (! mips_opts.noreorder
3166 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
3167 && ! gpr_interlocks)
3168 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
3169 && ! cop_interlocks)))
3171 /* A load from a coprocessor or from memory. All load delays
3172 delay the use of general register rt for one instruction. */
3173 /* Itbl support may require additional care here. */
3174 know (prev_pinfo & INSN_WRITE_GPR_T);
3175 if (reg == EXTRACT_OPERAND (mips_opts.micromips, RT, history[0]))
3182 /* Move all labels in LABELS to the current insertion point. TEXT_P
3183 says whether the labels refer to text or data. */
3186 mips_move_labels (struct insn_label_list *labels, bfd_boolean text_p)
3188 struct insn_label_list *l;
3191 for (l = labels; l != NULL; l = l->next)
3193 gas_assert (S_GET_SEGMENT (l->label) == now_seg);
3194 symbol_set_frag (l->label, frag_now);
3195 val = (valueT) frag_now_fix ();
3196 /* MIPS16/microMIPS text labels are stored as odd. */
3197 if (text_p && HAVE_CODE_COMPRESSION)
3199 S_SET_VALUE (l->label, val);
3203 /* Move all labels in insn_labels to the current insertion point
3204 and treat them as text labels. */
3207 mips_move_text_labels (void)
3209 mips_move_labels (seg_info (now_seg)->label_list, TRUE);
3213 s_is_linkonce (symbolS *sym, segT from_seg)
3215 bfd_boolean linkonce = FALSE;
3216 segT symseg = S_GET_SEGMENT (sym);
3218 if (symseg != from_seg && !S_IS_LOCAL (sym))
3220 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
3222 /* The GNU toolchain uses an extension for ELF: a section
3223 beginning with the magic string .gnu.linkonce is a
3224 linkonce section. */
3225 if (strncmp (segment_name (symseg), ".gnu.linkonce",
3226 sizeof ".gnu.linkonce" - 1) == 0)
3232 /* Mark MIPS16 or microMIPS instruction label LABEL. This permits the
3233 linker to handle them specially, such as generating jalx instructions
3234 when needed. We also make them odd for the duration of the assembly,
3235 in order to generate the right sort of code. We will make them even
3236 in the adjust_symtab routine, while leaving them marked. This is
3237 convenient for the debugger and the disassembler. The linker knows
3238 to make them odd again. */
3241 mips_compressed_mark_label (symbolS *label)
3243 gas_assert (HAVE_CODE_COMPRESSION);
3245 if (mips_opts.mips16)
3246 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
3248 S_SET_OTHER (label, ELF_ST_SET_MICROMIPS (S_GET_OTHER (label)));
3249 if ((S_GET_VALUE (label) & 1) == 0
3250 /* Don't adjust the address if the label is global or weak, or
3251 in a link-once section, since we'll be emitting symbol reloc
3252 references to it which will be patched up by the linker, and
3253 the final value of the symbol may or may not be MIPS16/microMIPS. */
3254 && !S_IS_WEAK (label)
3255 && !S_IS_EXTERNAL (label)
3256 && !s_is_linkonce (label, now_seg))
3257 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
3260 /* Mark preceding MIPS16 or microMIPS instruction labels. */
3263 mips_compressed_mark_labels (void)
3265 struct insn_label_list *l;
3267 for (l = seg_info (now_seg)->label_list; l != NULL; l = l->next)
3268 mips_compressed_mark_label (l->label);
3271 /* End the current frag. Make it a variant frag and record the
3275 relax_close_frag (void)
3277 mips_macro_warning.first_frag = frag_now;
3278 frag_var (rs_machine_dependent, 0, 0,
3279 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
3280 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
3282 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
3283 mips_relax.first_fixup = 0;
3286 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
3287 See the comment above RELAX_ENCODE for more details. */
3290 relax_start (symbolS *symbol)
3292 gas_assert (mips_relax.sequence == 0);
3293 mips_relax.sequence = 1;
3294 mips_relax.symbol = symbol;
3297 /* Start generating the second version of a relaxable sequence.
3298 See the comment above RELAX_ENCODE for more details. */
3303 gas_assert (mips_relax.sequence == 1);
3304 mips_relax.sequence = 2;
3307 /* End the current relaxable sequence. */
3312 gas_assert (mips_relax.sequence == 2);
3313 relax_close_frag ();
3314 mips_relax.sequence = 0;
3317 /* Return true if IP is a delayed branch or jump. */
3319 static inline bfd_boolean
3320 delayed_branch_p (const struct mips_cl_insn *ip)
3322 return (ip->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
3323 | INSN_COND_BRANCH_DELAY
3324 | INSN_COND_BRANCH_LIKELY)) != 0;
3327 /* Return true if IP is a compact branch or jump. */
3329 static inline bfd_boolean
3330 compact_branch_p (const struct mips_cl_insn *ip)
3332 if (mips_opts.mips16)
3333 return (ip->insn_mo->pinfo & (MIPS16_INSN_UNCOND_BRANCH
3334 | MIPS16_INSN_COND_BRANCH)) != 0;
3336 return (ip->insn_mo->pinfo2 & (INSN2_UNCOND_BRANCH
3337 | INSN2_COND_BRANCH)) != 0;
3340 /* Return true if IP is an unconditional branch or jump. */
3342 static inline bfd_boolean
3343 uncond_branch_p (const struct mips_cl_insn *ip)
3345 return ((ip->insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY) != 0
3346 || (mips_opts.mips16
3347 ? (ip->insn_mo->pinfo & MIPS16_INSN_UNCOND_BRANCH) != 0
3348 : (ip->insn_mo->pinfo2 & INSN2_UNCOND_BRANCH) != 0));
3351 /* Return true if IP is a branch-likely instruction. */
3353 static inline bfd_boolean
3354 branch_likely_p (const struct mips_cl_insn *ip)
3356 return (ip->insn_mo->pinfo & INSN_COND_BRANCH_LIKELY) != 0;
3359 /* Return the type of nop that should be used to fill the delay slot
3360 of delayed branch IP. */
3362 static struct mips_cl_insn *
3363 get_delay_slot_nop (const struct mips_cl_insn *ip)
3365 if (mips_opts.micromips
3366 && (ip->insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
3367 return µmips_nop32_insn;
3371 /* Return the mask of core registers that IP reads or writes. */
3374 gpr_mod_mask (const struct mips_cl_insn *ip)
3376 unsigned long pinfo2;
3380 pinfo2 = ip->insn_mo->pinfo2;
3381 if (mips_opts.micromips)
3383 if (pinfo2 & INSN2_MOD_GPR_MD)
3384 mask |= 1 << micromips_to_32_reg_d_map[EXTRACT_OPERAND (1, MD, *ip)];
3385 if (pinfo2 & INSN2_MOD_GPR_MF)
3386 mask |= 1 << micromips_to_32_reg_f_map[EXTRACT_OPERAND (1, MF, *ip)];
3387 if (pinfo2 & INSN2_MOD_SP)
3393 /* Return the mask of core registers that IP reads. */
3396 gpr_read_mask (const struct mips_cl_insn *ip)
3398 unsigned long pinfo, pinfo2;
3401 mask = gpr_mod_mask (ip);
3402 pinfo = ip->insn_mo->pinfo;
3403 pinfo2 = ip->insn_mo->pinfo2;
3404 if (mips_opts.mips16)
3406 if (pinfo & MIPS16_INSN_READ_X)
3407 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
3408 if (pinfo & MIPS16_INSN_READ_Y)
3409 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
3410 if (pinfo & MIPS16_INSN_READ_T)
3412 if (pinfo & MIPS16_INSN_READ_SP)
3414 if (pinfo & MIPS16_INSN_READ_31)
3416 if (pinfo & MIPS16_INSN_READ_Z)
3417 mask |= 1 << (mips16_to_32_reg_map
3418 [MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]);
3419 if (pinfo & MIPS16_INSN_READ_GPR_X)
3420 mask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
3424 if (pinfo2 & INSN2_READ_GPR_D)
3425 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
3426 if (pinfo & INSN_READ_GPR_T)
3427 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
3428 if (pinfo & INSN_READ_GPR_S)
3429 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
3430 if (pinfo2 & INSN2_READ_GP)
3432 if (pinfo2 & INSN2_READ_GPR_31)
3434 if (pinfo2 & INSN2_READ_GPR_Z)
3435 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
3437 if (mips_opts.micromips)
3439 if (pinfo2 & INSN2_READ_GPR_MC)
3440 mask |= 1 << micromips_to_32_reg_c_map[EXTRACT_OPERAND (1, MC, *ip)];
3441 if (pinfo2 & INSN2_READ_GPR_ME)
3442 mask |= 1 << micromips_to_32_reg_e_map[EXTRACT_OPERAND (1, ME, *ip)];
3443 if (pinfo2 & INSN2_READ_GPR_MG)
3444 mask |= 1 << micromips_to_32_reg_g_map[EXTRACT_OPERAND (1, MG, *ip)];
3445 if (pinfo2 & INSN2_READ_GPR_MJ)
3446 mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
3447 if (pinfo2 & INSN2_READ_GPR_MMN)
3449 mask |= 1 << micromips_to_32_reg_m_map[EXTRACT_OPERAND (1, MM, *ip)];
3450 mask |= 1 << micromips_to_32_reg_n_map[EXTRACT_OPERAND (1, MN, *ip)];
3452 if (pinfo2 & INSN2_READ_GPR_MP)
3453 mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
3454 if (pinfo2 & INSN2_READ_GPR_MQ)
3455 mask |= 1 << micromips_to_32_reg_q_map[EXTRACT_OPERAND (1, MQ, *ip)];
3457 /* Don't include register 0. */
3461 /* Return the mask of core registers that IP writes. */
3464 gpr_write_mask (const struct mips_cl_insn *ip)
3466 unsigned long pinfo, pinfo2;
3469 mask = gpr_mod_mask (ip);
3470 pinfo = ip->insn_mo->pinfo;
3471 pinfo2 = ip->insn_mo->pinfo2;
3472 if (mips_opts.mips16)
3474 if (pinfo & MIPS16_INSN_WRITE_X)
3475 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)];
3476 if (pinfo & MIPS16_INSN_WRITE_Y)
3477 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)];
3478 if (pinfo & MIPS16_INSN_WRITE_Z)
3479 mask |= 1 << mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RZ, *ip)];
3480 if (pinfo & MIPS16_INSN_WRITE_T)
3482 if (pinfo & MIPS16_INSN_WRITE_SP)
3484 if (pinfo & MIPS16_INSN_WRITE_31)
3486 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
3487 mask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
3491 if (pinfo & INSN_WRITE_GPR_D)
3492 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
3493 if (pinfo & INSN_WRITE_GPR_T)
3494 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
3495 if (pinfo & INSN_WRITE_GPR_S)
3496 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
3497 if (pinfo & INSN_WRITE_GPR_31)
3499 if (pinfo2 & INSN2_WRITE_GPR_Z)
3500 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RZ, *ip);
3502 if (mips_opts.micromips)
3504 if (pinfo2 & INSN2_WRITE_GPR_MB)
3505 mask |= 1 << micromips_to_32_reg_b_map[EXTRACT_OPERAND (1, MB, *ip)];
3506 if (pinfo2 & INSN2_WRITE_GPR_MHI)
3508 mask |= 1 << micromips_to_32_reg_h_map[EXTRACT_OPERAND (1, MH, *ip)];
3509 mask |= 1 << micromips_to_32_reg_i_map[EXTRACT_OPERAND (1, MI, *ip)];
3511 if (pinfo2 & INSN2_WRITE_GPR_MJ)
3512 mask |= 1 << EXTRACT_OPERAND (1, MJ, *ip);
3513 if (pinfo2 & INSN2_WRITE_GPR_MP)
3514 mask |= 1 << EXTRACT_OPERAND (1, MP, *ip);
3516 /* Don't include register 0. */
3520 /* Return the mask of floating-point registers that IP reads. */
3523 fpr_read_mask (const struct mips_cl_insn *ip)
3525 unsigned long pinfo, pinfo2;
3529 pinfo = ip->insn_mo->pinfo;
3530 pinfo2 = ip->insn_mo->pinfo2;
3531 if (!mips_opts.mips16)
3533 if (pinfo2 & INSN2_READ_FPR_D)
3534 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
3535 if (pinfo & INSN_READ_FPR_S)
3536 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
3537 if (pinfo & INSN_READ_FPR_T)
3538 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
3539 if (pinfo & INSN_READ_FPR_R)
3540 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FR, *ip);
3541 if (pinfo2 & INSN2_READ_FPR_Z)
3542 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
3544 /* Conservatively treat all operands to an FP_D instruction are doubles.
3545 (This is overly pessimistic for things like cvt.d.s.) */
3546 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
3551 /* Return the mask of floating-point registers that IP writes. */
3554 fpr_write_mask (const struct mips_cl_insn *ip)
3556 unsigned long pinfo, pinfo2;
3560 pinfo = ip->insn_mo->pinfo;
3561 pinfo2 = ip->insn_mo->pinfo2;
3562 if (!mips_opts.mips16)
3564 if (pinfo & INSN_WRITE_FPR_D)
3565 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FD, *ip);
3566 if (pinfo & INSN_WRITE_FPR_S)
3567 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FS, *ip);
3568 if (pinfo & INSN_WRITE_FPR_T)
3569 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FT, *ip);
3570 if (pinfo2 & INSN2_WRITE_FPR_Z)
3571 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, FZ, *ip);
3573 /* Conservatively treat all operands to an FP_D instruction are doubles.
3574 (This is overly pessimistic for things like cvt.s.d.) */
3575 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
3580 /* Classify an instruction according to the FIX_VR4120_* enumeration.
3581 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
3582 by VR4120 errata. */
3585 classify_vr4120_insn (const char *name)
3587 if (strncmp (name, "macc", 4) == 0)
3588 return FIX_VR4120_MACC;
3589 if (strncmp (name, "dmacc", 5) == 0)
3590 return FIX_VR4120_DMACC;
3591 if (strncmp (name, "mult", 4) == 0)
3592 return FIX_VR4120_MULT;
3593 if (strncmp (name, "dmult", 5) == 0)
3594 return FIX_VR4120_DMULT;
3595 if (strstr (name, "div"))
3596 return FIX_VR4120_DIV;
3597 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
3598 return FIX_VR4120_MTHILO;
3599 return NUM_FIX_VR4120_CLASSES;
3602 #define INSN_ERET 0x42000018
3603 #define INSN_DERET 0x4200001f
3605 /* Return the number of instructions that must separate INSN1 and INSN2,
3606 where INSN1 is the earlier instruction. Return the worst-case value
3607 for any INSN2 if INSN2 is null. */
3610 insns_between (const struct mips_cl_insn *insn1,
3611 const struct mips_cl_insn *insn2)
3613 unsigned long pinfo1, pinfo2;
3616 /* This function needs to know which pinfo flags are set for INSN2
3617 and which registers INSN2 uses. The former is stored in PINFO2 and
3618 the latter is tested via INSN2_USES_GPR. If INSN2 is null, PINFO2
3619 will have every flag set and INSN2_USES_GPR will always return true. */
3620 pinfo1 = insn1->insn_mo->pinfo;
3621 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
3623 #define INSN2_USES_GPR(REG) \
3624 (insn2 == NULL || (gpr_read_mask (insn2) & (1U << (REG))) != 0)
3626 /* For most targets, write-after-read dependencies on the HI and LO
3627 registers must be separated by at least two instructions. */
3628 if (!hilo_interlocks)
3630 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
3632 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
3636 /* If we're working around r7000 errata, there must be two instructions
3637 between an mfhi or mflo and any instruction that uses the result. */
3638 if (mips_7000_hilo_fix
3639 && !mips_opts.micromips
3640 && MF_HILO_INSN (pinfo1)
3641 && INSN2_USES_GPR (EXTRACT_OPERAND (0, RD, *insn1)))
3644 /* If we're working around 24K errata, one instruction is required
3645 if an ERET or DERET is followed by a branch instruction. */
3646 if (mips_fix_24k && !mips_opts.micromips)
3648 if (insn1->insn_opcode == INSN_ERET
3649 || insn1->insn_opcode == INSN_DERET)
3652 || insn2->insn_opcode == INSN_ERET
3653 || insn2->insn_opcode == INSN_DERET
3654 || delayed_branch_p (insn2))
3659 /* If working around VR4120 errata, check for combinations that need
3660 a single intervening instruction. */
3661 if (mips_fix_vr4120 && !mips_opts.micromips)
3663 unsigned int class1, class2;
3665 class1 = classify_vr4120_insn (insn1->insn_mo->name);
3666 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
3670 class2 = classify_vr4120_insn (insn2->insn_mo->name);
3671 if (vr4120_conflicts[class1] & (1 << class2))
3676 if (!HAVE_CODE_COMPRESSION)
3678 /* Check for GPR or coprocessor load delays. All such delays
3679 are on the RT register. */
3680 /* Itbl support may require additional care here. */
3681 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
3682 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
3684 know (pinfo1 & INSN_WRITE_GPR_T);
3685 if (INSN2_USES_GPR (EXTRACT_OPERAND (0, RT, *insn1)))
3689 /* Check for generic coprocessor hazards.
3691 This case is not handled very well. There is no special
3692 knowledge of CP0 handling, and the coprocessors other than
3693 the floating point unit are not distinguished at all. */
3694 /* Itbl support may require additional care here. FIXME!
3695 Need to modify this to include knowledge about
3696 user specified delays! */
3697 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
3698 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
3700 /* Handle cases where INSN1 writes to a known general coprocessor
3701 register. There must be a one instruction delay before INSN2
3702 if INSN2 reads that register, otherwise no delay is needed. */
3703 mask = fpr_write_mask (insn1);
3706 if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
3711 /* Read-after-write dependencies on the control registers
3712 require a two-instruction gap. */
3713 if ((pinfo1 & INSN_WRITE_COND_CODE)
3714 && (pinfo2 & INSN_READ_COND_CODE))
3717 /* We don't know exactly what INSN1 does. If INSN2 is
3718 also a coprocessor instruction, assume there must be
3719 a one instruction gap. */
3720 if (pinfo2 & INSN_COP)
3725 /* Check for read-after-write dependencies on the coprocessor
3726 control registers in cases where INSN1 does not need a general
3727 coprocessor delay. This means that INSN1 is a floating point
3728 comparison instruction. */
3729 /* Itbl support may require additional care here. */
3730 else if (!cop_interlocks
3731 && (pinfo1 & INSN_WRITE_COND_CODE)
3732 && (pinfo2 & INSN_READ_COND_CODE))
3736 #undef INSN2_USES_GPR
3741 /* Return the number of nops that would be needed to work around the
3742 VR4130 mflo/mfhi errata if instruction INSN immediately followed
3743 the MAX_VR4130_NOPS instructions described by HIST. Ignore hazards
3744 that are contained within the first IGNORE instructions of HIST. */
3747 nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
3748 const struct mips_cl_insn *insn)
3753 /* Check if the instruction writes to HI or LO. MTHI and MTLO
3754 are not affected by the errata. */
3756 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
3757 || strcmp (insn->insn_mo->name, "mtlo") == 0
3758 || strcmp (insn->insn_mo->name, "mthi") == 0))
3761 /* Search for the first MFLO or MFHI. */
3762 for (i = 0; i < MAX_VR4130_NOPS; i++)
3763 if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
3765 /* Extract the destination register. */
3766 mask = gpr_write_mask (&hist[i]);
3768 /* No nops are needed if INSN reads that register. */
3769 if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
3772 /* ...or if any of the intervening instructions do. */
3773 for (j = 0; j < i; j++)
3774 if (gpr_read_mask (&hist[j]) & mask)
3778 return MAX_VR4130_NOPS - i;
3783 #define BASE_REG_EQ(INSN1, INSN2) \
3784 ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
3785 == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
3787 /* Return the minimum alignment for this store instruction. */
3790 fix_24k_align_to (const struct mips_opcode *mo)
3792 if (strcmp (mo->name, "sh") == 0)
3795 if (strcmp (mo->name, "swc1") == 0
3796 || strcmp (mo->name, "swc2") == 0
3797 || strcmp (mo->name, "sw") == 0
3798 || strcmp (mo->name, "sc") == 0
3799 || strcmp (mo->name, "s.s") == 0)
3802 if (strcmp (mo->name, "sdc1") == 0
3803 || strcmp (mo->name, "sdc2") == 0
3804 || strcmp (mo->name, "s.d") == 0)
3811 struct fix_24k_store_info
3813 /* Immediate offset, if any, for this store instruction. */
3815 /* Alignment required by this store instruction. */
3817 /* True for register offsets. */
3818 int register_offset;
3821 /* Comparison function used by qsort. */
3824 fix_24k_sort (const void *a, const void *b)
3826 const struct fix_24k_store_info *pos1 = a;
3827 const struct fix_24k_store_info *pos2 = b;
3829 return (pos1->off - pos2->off);
3832 /* INSN is a store instruction. Try to record the store information
3833 in STINFO. Return false if the information isn't known. */
3836 fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
3837 const struct mips_cl_insn *insn)
3839 /* The instruction must have a known offset. */
3840 if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
3843 stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
3844 stinfo->align_to = fix_24k_align_to (insn->insn_mo);
3848 /* Return the number of nops that would be needed to work around the 24k
3849 "lost data on stores during refill" errata if instruction INSN
3850 immediately followed the 2 instructions described by HIST.
3851 Ignore hazards that are contained within the first IGNORE
3852 instructions of HIST.
3854 Problem: The FSB (fetch store buffer) acts as an intermediate buffer
3855 for the data cache refills and store data. The following describes
3856 the scenario where the store data could be lost.
3858 * A data cache miss, due to either a load or a store, causing fill
3859 data to be supplied by the memory subsystem
3860 * The first three doublewords of fill data are returned and written
3862 * A sequence of four stores occurs in consecutive cycles around the
3863 final doubleword of the fill:
3867 * Zero, One or more instructions
3870 The four stores A-D must be to different doublewords of the line that
3871 is being filled. The fourth instruction in the sequence above permits
3872 the fill of the final doubleword to be transferred from the FSB into
3873 the cache. In the sequence above, the stores may be either integer
3874 (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
3875 swxc1, sdxc1, suxc1) stores, as long as the four stores are to
3876 different doublewords on the line. If the floating point unit is
3877 running in 1:2 mode, it is not possible to create the sequence above
3878 using only floating point store instructions.
3880 In this case, the cache line being filled is incorrectly marked
3881 invalid, thereby losing the data from any store to the line that
3882 occurs between the original miss and the completion of the five
3883 cycle sequence shown above.
3885 The workarounds are:
3887 * Run the data cache in write-through mode.
3888 * Insert a non-store instruction between
3889 Store A and Store B or Store B and Store C. */
3892 nops_for_24k (int ignore, const struct mips_cl_insn *hist,
3893 const struct mips_cl_insn *insn)
3895 struct fix_24k_store_info pos[3];
3896 int align, i, base_offset;
3901 /* If the previous instruction wasn't a store, there's nothing to
3903 if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
3906 /* If the instructions after the previous one are unknown, we have
3907 to assume the worst. */
3911 /* Check whether we are dealing with three consecutive stores. */
3912 if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
3913 || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
3916 /* If we don't know the relationship between the store addresses,
3917 assume the worst. */
3918 if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
3919 || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
3922 if (!fix_24k_record_store_info (&pos[0], insn)
3923 || !fix_24k_record_store_info (&pos[1], &hist[0])
3924 || !fix_24k_record_store_info (&pos[2], &hist[1]))
3927 qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
3929 /* Pick a value of ALIGN and X such that all offsets are adjusted by
3930 X bytes and such that the base register + X is known to be aligned
3933 if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
3937 align = pos[0].align_to;
3938 base_offset = pos[0].off;
3939 for (i = 1; i < 3; i++)
3940 if (align < pos[i].align_to)
3942 align = pos[i].align_to;
3943 base_offset = pos[i].off;
3945 for (i = 0; i < 3; i++)
3946 pos[i].off -= base_offset;
3949 pos[0].off &= ~align + 1;
3950 pos[1].off &= ~align + 1;
3951 pos[2].off &= ~align + 1;
3953 /* If any two stores write to the same chunk, they also write to the
3954 same doubleword. The offsets are still sorted at this point. */
3955 if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
3958 /* A range of at least 9 bytes is needed for the stores to be in
3959 non-overlapping doublewords. */
3960 if (pos[2].off - pos[0].off <= 8)
3963 if (pos[2].off - pos[1].off >= 24
3964 || pos[1].off - pos[0].off >= 24
3965 || pos[2].off - pos[0].off >= 32)
3971 /* Return the number of nops that would be needed if instruction INSN
3972 immediately followed the MAX_NOPS instructions given by HIST,
3973 where HIST[0] is the most recent instruction. Ignore hazards
3974 between INSN and the first IGNORE instructions in HIST.
3976 If INSN is null, return the worse-case number of nops for any
3980 nops_for_insn (int ignore, const struct mips_cl_insn *hist,
3981 const struct mips_cl_insn *insn)
3983 int i, nops, tmp_nops;
3986 for (i = ignore; i < MAX_DELAY_NOPS; i++)
3988 tmp_nops = insns_between (hist + i, insn) - i;
3989 if (tmp_nops > nops)
3993 if (mips_fix_vr4130 && !mips_opts.micromips)
3995 tmp_nops = nops_for_vr4130 (ignore, hist, insn);
3996 if (tmp_nops > nops)
4000 if (mips_fix_24k && !mips_opts.micromips)
4002 tmp_nops = nops_for_24k (ignore, hist, insn);
4003 if (tmp_nops > nops)
4010 /* The variable arguments provide NUM_INSNS extra instructions that
4011 might be added to HIST. Return the largest number of nops that
4012 would be needed after the extended sequence, ignoring hazards
4013 in the first IGNORE instructions. */
4016 nops_for_sequence (int num_insns, int ignore,
4017 const struct mips_cl_insn *hist, ...)
4020 struct mips_cl_insn buffer[MAX_NOPS];
4021 struct mips_cl_insn *cursor;
4024 va_start (args, hist);
4025 cursor = buffer + num_insns;
4026 memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
4027 while (cursor > buffer)
4028 *--cursor = *va_arg (args, const struct mips_cl_insn *);
4030 nops = nops_for_insn (ignore, buffer, NULL);
4035 /* Like nops_for_insn, but if INSN is a branch, take into account the
4036 worst-case delay for the branch target. */
4039 nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
4040 const struct mips_cl_insn *insn)
4044 nops = nops_for_insn (ignore, hist, insn);
4045 if (delayed_branch_p (insn))
4047 tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
4048 hist, insn, get_delay_slot_nop (insn));
4049 if (tmp_nops > nops)
4052 else if (compact_branch_p (insn))
4054 tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
4055 if (tmp_nops > nops)
4061 /* Fix NOP issue: Replace nops by "or at,at,zero". */
4064 fix_loongson2f_nop (struct mips_cl_insn * ip)
4066 gas_assert (!HAVE_CODE_COMPRESSION);
4067 if (strcmp (ip->insn_mo->name, "nop") == 0)
4068 ip->insn_opcode = LOONGSON2F_NOP_INSN;
4071 /* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
4072 jr target pc &= 'hffff_ffff_cfff_ffff. */
4075 fix_loongson2f_jump (struct mips_cl_insn * ip)
4077 gas_assert (!HAVE_CODE_COMPRESSION);
4078 if (strcmp (ip->insn_mo->name, "j") == 0
4079 || strcmp (ip->insn_mo->name, "jr") == 0
4080 || strcmp (ip->insn_mo->name, "jalr") == 0)
4088 sreg = EXTRACT_OPERAND (0, RS, *ip);
4089 if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
4092 ep.X_op = O_constant;
4093 ep.X_add_number = 0xcfff0000;
4094 macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
4095 ep.X_add_number = 0xffff;
4096 macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
4097 macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
4102 fix_loongson2f (struct mips_cl_insn * ip)
4104 if (mips_fix_loongson2f_nop)
4105 fix_loongson2f_nop (ip);
4107 if (mips_fix_loongson2f_jump)
4108 fix_loongson2f_jump (ip);
4111 /* IP is a branch that has a delay slot, and we need to fill it
4112 automatically. Return true if we can do that by swapping IP
4113 with the previous instruction.
4114 ADDRESS_EXPR is an operand of the instruction to be used with
4118 can_swap_branch_p (struct mips_cl_insn *ip, expressionS *address_expr,
4119 bfd_reloc_code_real_type *reloc_type)
4121 unsigned long pinfo, pinfo2, prev_pinfo, prev_pinfo2;
4122 unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
4124 /* -O2 and above is required for this optimization. */
4125 if (mips_optimize < 2)
4128 /* If we have seen .set volatile or .set nomove, don't optimize. */
4129 if (mips_opts.nomove)
4132 /* We can't swap if the previous instruction's position is fixed. */
4133 if (history[0].fixed_p)
4136 /* If the previous previous insn was in a .set noreorder, we can't
4137 swap. Actually, the MIPS assembler will swap in this situation.
4138 However, gcc configured -with-gnu-as will generate code like
4146 in which we can not swap the bne and INSN. If gcc is not configured
4147 -with-gnu-as, it does not output the .set pseudo-ops. */
4148 if (history[1].noreorder_p)
4151 /* If the previous instruction had a fixup in mips16 mode, we can not swap.
4152 This means that the previous instruction was a 4-byte one anyhow. */
4153 if (mips_opts.mips16 && history[0].fixp[0])
4156 /* If the branch is itself the target of a branch, we can not swap.
4157 We cheat on this; all we check for is whether there is a label on
4158 this instruction. If there are any branches to anything other than
4159 a label, users must use .set noreorder. */
4160 if (seg_info (now_seg)->label_list)
4163 /* If the previous instruction is in a variant frag other than this
4164 branch's one, we cannot do the swap. This does not apply to
4165 MIPS16 code, which uses variant frags for different purposes. */
4166 if (!mips_opts.mips16
4168 && history[0].frag->fr_type == rs_machine_dependent)
4171 /* We do not swap with instructions that cannot architecturally
4172 be placed in a branch delay slot, such as SYNC or ERET. We
4173 also refrain from swapping with a trap instruction, since it
4174 complicates trap handlers to have the trap instruction be in
4176 prev_pinfo = history[0].insn_mo->pinfo;
4177 if (prev_pinfo & INSN_NO_DELAY_SLOT)
4180 /* Check for conflicts between the branch and the instructions
4181 before the candidate delay slot. */
4182 if (nops_for_insn (0, history + 1, ip) > 0)
4185 /* Check for conflicts between the swapped sequence and the
4186 target of the branch. */
4187 if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
4190 /* If the branch reads a register that the previous
4191 instruction sets, we can not swap. */
4192 gpr_read = gpr_read_mask (ip);
4193 prev_gpr_write = gpr_write_mask (&history[0]);
4194 if (gpr_read & prev_gpr_write)
4197 /* If the branch writes a register that the previous
4198 instruction sets, we can not swap. */
4199 gpr_write = gpr_write_mask (ip);
4200 if (gpr_write & prev_gpr_write)
4203 /* If the branch writes a register that the previous
4204 instruction reads, we can not swap. */
4205 prev_gpr_read = gpr_read_mask (&history[0]);
4206 if (gpr_write & prev_gpr_read)
4209 /* If one instruction sets a condition code and the
4210 other one uses a condition code, we can not swap. */
4211 pinfo = ip->insn_mo->pinfo;
4212 if ((pinfo & INSN_READ_COND_CODE)
4213 && (prev_pinfo & INSN_WRITE_COND_CODE))
4215 if ((pinfo & INSN_WRITE_COND_CODE)
4216 && (prev_pinfo & INSN_READ_COND_CODE))
4219 /* If the previous instruction uses the PC, we can not swap. */
4220 prev_pinfo2 = history[0].insn_mo->pinfo2;
4221 if (mips_opts.mips16 && (prev_pinfo & MIPS16_INSN_READ_PC))
4223 if (mips_opts.micromips && (prev_pinfo2 & INSN2_READ_PC))
4226 /* If the previous instruction has an incorrect size for a fixed
4227 branch delay slot in microMIPS mode, we cannot swap. */
4228 pinfo2 = ip->insn_mo->pinfo2;
4229 if (mips_opts.micromips
4230 && (pinfo2 & INSN2_BRANCH_DELAY_16BIT)
4231 && insn_length (history) != 2)
4233 if (mips_opts.micromips
4234 && (pinfo2 & INSN2_BRANCH_DELAY_32BIT)
4235 && insn_length (history) != 4)
4238 /* On R5900 short loops need to be fixed by inserting a nop in
4239 the branch delay slots.
4240 A short loop can be terminated too early. */
4241 if (mips_opts.arch == CPU_R5900
4242 /* Check if instruction has a parameter, ignore "j $31". */
4243 && (address_expr != NULL)
4244 /* Parameter must be 16 bit. */
4245 && (*reloc_type == BFD_RELOC_16_PCREL_S2)
4246 /* Branch to same segment. */
4247 && (S_GET_SEGMENT(address_expr->X_add_symbol) == now_seg)
4248 /* Branch to same code fragment. */
4249 && (symbol_get_frag(address_expr->X_add_symbol) == frag_now)
4250 /* Can only calculate branch offset if value is known. */
4251 && symbol_constant_p(address_expr->X_add_symbol)
4252 /* Check if branch is really conditional. */
4253 && !((ip->insn_opcode & 0xffff0000) == 0x10000000 /* beq $0,$0 */
4254 || (ip->insn_opcode & 0xffff0000) == 0x04010000 /* bgez $0 */
4255 || (ip->insn_opcode & 0xffff0000) == 0x04110000)) /* bgezal $0 */
4258 /* Check if loop is shorter than 6 instructions including
4259 branch and delay slot. */
4260 distance = frag_now_fix() - S_GET_VALUE(address_expr->X_add_symbol);
4267 /* When the loop includes branches or jumps,
4268 it is not a short loop. */
4269 for (i = 0; i < (distance / 4); i++)
4271 if ((history[i].cleared_p)
4272 || delayed_branch_p(&history[i]))
4280 /* Insert nop after branch to fix short loop. */
4289 /* Decide how we should add IP to the instruction stream.
4290 ADDRESS_EXPR is an operand of the instruction to be used with
4293 static enum append_method
4294 get_append_method (struct mips_cl_insn *ip, expressionS *address_expr,
4295 bfd_reloc_code_real_type *reloc_type)
4297 unsigned long pinfo;
4299 /* The relaxed version of a macro sequence must be inherently
4301 if (mips_relax.sequence == 2)
4304 /* We must not dabble with instructions in a ".set norerorder" block. */
4305 if (mips_opts.noreorder)
4308 /* Otherwise, it's our responsibility to fill branch delay slots. */
4309 if (delayed_branch_p (ip))
4311 if (!branch_likely_p (ip)
4312 && can_swap_branch_p (ip, address_expr, reloc_type))
4315 pinfo = ip->insn_mo->pinfo;
4316 if (mips_opts.mips16
4317 && ISA_SUPPORTS_MIPS16E
4318 && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31)))
4319 return APPEND_ADD_COMPACT;
4321 return APPEND_ADD_WITH_NOP;
4327 /* IP is a MIPS16 instruction whose opcode we have just changed.
4328 Point IP->insn_mo to the new opcode's definition. */
4331 find_altered_mips16_opcode (struct mips_cl_insn *ip)
4333 const struct mips_opcode *mo, *end;
4335 end = &mips16_opcodes[bfd_mips16_num_opcodes];
4336 for (mo = ip->insn_mo; mo < end; mo++)
4337 if ((ip->insn_opcode & mo->mask) == mo->match)
4345 /* For microMIPS macros, we need to generate a local number label
4346 as the target of branches. */
4347 #define MICROMIPS_LABEL_CHAR '\037'
4348 static unsigned long micromips_target_label;
4349 static char micromips_target_name[32];
4352 micromips_label_name (void)
4354 char *p = micromips_target_name;
4355 char symbol_name_temporary[24];
4363 l = micromips_target_label;
4364 #ifdef LOCAL_LABEL_PREFIX
4365 *p++ = LOCAL_LABEL_PREFIX;
4368 *p++ = MICROMIPS_LABEL_CHAR;
4371 symbol_name_temporary[i++] = l % 10 + '0';
4376 *p++ = symbol_name_temporary[--i];
4379 return micromips_target_name;
4383 micromips_label_expr (expressionS *label_expr)
4385 label_expr->X_op = O_symbol;
4386 label_expr->X_add_symbol = symbol_find_or_make (micromips_label_name ());
4387 label_expr->X_add_number = 0;
4391 micromips_label_inc (void)
4393 micromips_target_label++;
4394 *micromips_target_name = '\0';
4398 micromips_add_label (void)
4402 s = colon (micromips_label_name ());
4403 micromips_label_inc ();
4404 S_SET_OTHER (s, ELF_ST_SET_MICROMIPS (S_GET_OTHER (s)));
4407 /* If assembling microMIPS code, then return the microMIPS reloc
4408 corresponding to the requested one if any. Otherwise return
4409 the reloc unchanged. */
4411 static bfd_reloc_code_real_type
4412 micromips_map_reloc (bfd_reloc_code_real_type reloc)
4414 static const bfd_reloc_code_real_type relocs[][2] =
4416 /* Keep sorted incrementally by the left-hand key. */
4417 { BFD_RELOC_16_PCREL_S2, BFD_RELOC_MICROMIPS_16_PCREL_S1 },
4418 { BFD_RELOC_GPREL16, BFD_RELOC_MICROMIPS_GPREL16 },
4419 { BFD_RELOC_MIPS_JMP, BFD_RELOC_MICROMIPS_JMP },
4420 { BFD_RELOC_HI16, BFD_RELOC_MICROMIPS_HI16 },
4421 { BFD_RELOC_HI16_S, BFD_RELOC_MICROMIPS_HI16_S },
4422 { BFD_RELOC_LO16, BFD_RELOC_MICROMIPS_LO16 },
4423 { BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MICROMIPS_LITERAL },
4424 { BFD_RELOC_MIPS_GOT16, BFD_RELOC_MICROMIPS_GOT16 },
4425 { BFD_RELOC_MIPS_CALL16, BFD_RELOC_MICROMIPS_CALL16 },
4426 { BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MICROMIPS_GOT_HI16 },
4427 { BFD_RELOC_MIPS_GOT_LO16, BFD_RELOC_MICROMIPS_GOT_LO16 },
4428 { BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MICROMIPS_CALL_HI16 },
4429 { BFD_RELOC_MIPS_CALL_LO16, BFD_RELOC_MICROMIPS_CALL_LO16 },
4430 { BFD_RELOC_MIPS_SUB, BFD_RELOC_MICROMIPS_SUB },
4431 { BFD_RELOC_MIPS_GOT_PAGE, BFD_RELOC_MICROMIPS_GOT_PAGE },
4432 { BFD_RELOC_MIPS_GOT_OFST, BFD_RELOC_MICROMIPS_GOT_OFST },
4433 { BFD_RELOC_MIPS_GOT_DISP, BFD_RELOC_MICROMIPS_GOT_DISP },
4434 { BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MICROMIPS_HIGHEST },
4435 { BFD_RELOC_MIPS_HIGHER, BFD_RELOC_MICROMIPS_HIGHER },
4436 { BFD_RELOC_MIPS_SCN_DISP, BFD_RELOC_MICROMIPS_SCN_DISP },
4437 { BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MICROMIPS_TLS_GD },
4438 { BFD_RELOC_MIPS_TLS_LDM, BFD_RELOC_MICROMIPS_TLS_LDM },
4439 { BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 },
4440 { BFD_RELOC_MIPS_TLS_DTPREL_LO16, BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 },
4441 { BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MICROMIPS_TLS_GOTTPREL },
4442 { BFD_RELOC_MIPS_TLS_TPREL_HI16, BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 },
4443 { BFD_RELOC_MIPS_TLS_TPREL_LO16, BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 }
4445 bfd_reloc_code_real_type r;
4448 if (!mips_opts.micromips)
4450 for (i = 0; i < ARRAY_SIZE (relocs); i++)
4456 return relocs[i][1];
4461 /* Try to resolve relocation RELOC against constant OPERAND at assembly time.
4462 Return true on success, storing the resolved value in RESULT. */
4465 calculate_reloc (bfd_reloc_code_real_type reloc, offsetT operand,
4470 case BFD_RELOC_MIPS_HIGHEST:
4471 case BFD_RELOC_MICROMIPS_HIGHEST:
4472 *result = ((operand + 0x800080008000ull) >> 48) & 0xffff;
4475 case BFD_RELOC_MIPS_HIGHER:
4476 case BFD_RELOC_MICROMIPS_HIGHER:
4477 *result = ((operand + 0x80008000ull) >> 32) & 0xffff;
4480 case BFD_RELOC_HI16_S:
4481 case BFD_RELOC_MICROMIPS_HI16_S:
4482 case BFD_RELOC_MIPS16_HI16_S:
4483 *result = ((operand + 0x8000) >> 16) & 0xffff;
4486 case BFD_RELOC_HI16:
4487 case BFD_RELOC_MICROMIPS_HI16:
4488 case BFD_RELOC_MIPS16_HI16:
4489 *result = (operand >> 16) & 0xffff;
4492 case BFD_RELOC_LO16:
4493 case BFD_RELOC_MICROMIPS_LO16:
4494 case BFD_RELOC_MIPS16_LO16:
4495 *result = operand & 0xffff;
4498 case BFD_RELOC_UNUSED:
4507 /* Output an instruction. IP is the instruction information.
4508 ADDRESS_EXPR is an operand of the instruction to be used with
4509 RELOC_TYPE. EXPANSIONP is true if the instruction is part of
4510 a macro expansion. */
4513 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
4514 bfd_reloc_code_real_type *reloc_type, bfd_boolean expansionp)
4516 unsigned long prev_pinfo2, pinfo;
4517 bfd_boolean relaxed_branch = FALSE;
4518 enum append_method method;
4519 bfd_boolean relax32;
4522 if (mips_fix_loongson2f && !HAVE_CODE_COMPRESSION)
4523 fix_loongson2f (ip);
4525 file_ase_mips16 |= mips_opts.mips16;
4526 file_ase_micromips |= mips_opts.micromips;
4528 prev_pinfo2 = history[0].insn_mo->pinfo2;
4529 pinfo = ip->insn_mo->pinfo;
4531 if (mips_opts.micromips
4533 && (((prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
4534 && micromips_insn_length (ip->insn_mo) != 2)
4535 || ((prev_pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
4536 && micromips_insn_length (ip->insn_mo) != 4)))
4537 as_warn (_("Wrong size instruction in a %u-bit branch delay slot"),
4538 (prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0 ? 16 : 32);
4540 if (address_expr == NULL)
4542 else if (reloc_type[0] <= BFD_RELOC_UNUSED
4543 && reloc_type[1] == BFD_RELOC_UNUSED
4544 && reloc_type[2] == BFD_RELOC_UNUSED
4545 && address_expr->X_op == O_constant)
4547 switch (*reloc_type)
4549 case BFD_RELOC_MIPS_JMP:
4553 shift = mips_opts.micromips ? 1 : 2;
4554 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
4555 as_bad (_("jump to misaligned address (0x%lx)"),
4556 (unsigned long) address_expr->X_add_number);
4557 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
4563 case BFD_RELOC_MIPS16_JMP:
4564 if ((address_expr->X_add_number & 3) != 0)
4565 as_bad (_("jump to misaligned address (0x%lx)"),
4566 (unsigned long) address_expr->X_add_number);
4568 (((address_expr->X_add_number & 0x7c0000) << 3)
4569 | ((address_expr->X_add_number & 0xf800000) >> 7)
4570 | ((address_expr->X_add_number & 0x3fffc) >> 2));
4574 case BFD_RELOC_16_PCREL_S2:
4578 shift = mips_opts.micromips ? 1 : 2;
4579 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
4580 as_bad (_("branch to misaligned address (0x%lx)"),
4581 (unsigned long) address_expr->X_add_number);
4582 if (!mips_relax_branch)
4584 if ((address_expr->X_add_number + (1 << (shift + 15)))
4585 & ~((1 << (shift + 16)) - 1))
4586 as_bad (_("branch address range overflow (0x%lx)"),
4587 (unsigned long) address_expr->X_add_number);
4588 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
4598 if (calculate_reloc (*reloc_type, address_expr->X_add_number,
4601 ip->insn_opcode |= value & 0xffff;
4609 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
4611 /* There are a lot of optimizations we could do that we don't.
4612 In particular, we do not, in general, reorder instructions.
4613 If you use gcc with optimization, it will reorder
4614 instructions and generally do much more optimization then we
4615 do here; repeating all that work in the assembler would only
4616 benefit hand written assembly code, and does not seem worth
4618 int nops = (mips_optimize == 0
4619 ? nops_for_insn (0, history, NULL)
4620 : nops_for_insn_or_target (0, history, ip));
4624 unsigned long old_frag_offset;
4627 old_frag = frag_now;
4628 old_frag_offset = frag_now_fix ();
4630 for (i = 0; i < nops; i++)
4631 add_fixed_insn (NOP_INSN);
4632 insert_into_history (0, nops, NOP_INSN);
4636 listing_prev_line ();
4637 /* We may be at the start of a variant frag. In case we
4638 are, make sure there is enough space for the frag
4639 after the frags created by listing_prev_line. The
4640 argument to frag_grow here must be at least as large
4641 as the argument to all other calls to frag_grow in
4642 this file. We don't have to worry about being in the
4643 middle of a variant frag, because the variants insert
4644 all needed nop instructions themselves. */
4648 mips_move_text_labels ();
4650 #ifndef NO_ECOFF_DEBUGGING
4651 if (ECOFF_DEBUGGING)
4652 ecoff_fix_loc (old_frag, old_frag_offset);
4656 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
4660 /* Work out how many nops in prev_nop_frag are needed by IP,
4661 ignoring hazards generated by the first prev_nop_frag_since
4663 nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
4664 gas_assert (nops <= prev_nop_frag_holds);
4666 /* Enforce NOPS as a minimum. */
4667 if (nops > prev_nop_frag_required)
4668 prev_nop_frag_required = nops;
4670 if (prev_nop_frag_holds == prev_nop_frag_required)
4672 /* Settle for the current number of nops. Update the history
4673 accordingly (for the benefit of any future .set reorder code). */
4674 prev_nop_frag = NULL;
4675 insert_into_history (prev_nop_frag_since,
4676 prev_nop_frag_holds, NOP_INSN);
4680 /* Allow this instruction to replace one of the nops that was
4681 tentatively added to prev_nop_frag. */
4682 prev_nop_frag->fr_fix -= NOP_INSN_SIZE;
4683 prev_nop_frag_holds--;
4684 prev_nop_frag_since++;
4688 method = get_append_method (ip, address_expr, reloc_type);
4689 branch_disp = method == APPEND_SWAP ? insn_length (history) : 0;
4691 dwarf2_emit_insn (0);
4692 /* We want MIPS16 and microMIPS debug info to use ISA-encoded addresses,
4693 so "move" the instruction address accordingly.
4695 Also, it doesn't seem appropriate for the assembler to reorder .loc
4696 entries. If this instruction is a branch that we are going to swap
4697 with the previous instruction, the two instructions should be
4698 treated as a unit, and the debug information for both instructions
4699 should refer to the start of the branch sequence. Using the
4700 current position is certainly wrong when swapping a 32-bit branch
4701 and a 16-bit delay slot, since the current position would then be
4702 in the middle of a branch. */
4703 dwarf2_move_insn ((HAVE_CODE_COMPRESSION ? 1 : 0) - branch_disp);
4705 relax32 = (mips_relax_branch
4706 /* Don't try branch relaxation within .set nomacro, or within
4707 .set noat if we use $at for PIC computations. If it turns
4708 out that the branch was out-of-range, we'll get an error. */
4709 && !mips_opts.warn_about_macros
4710 && (mips_opts.at || mips_pic == NO_PIC)
4711 /* Don't relax BPOSGE32/64 or BC1ANY2T/F and BC1ANY4T/F
4712 as they have no complementing branches. */
4713 && !(ip->insn_mo->ase & (ASE_MIPS3D | ASE_DSP64 | ASE_DSP)));
4715 if (!HAVE_CODE_COMPRESSION
4718 && *reloc_type == BFD_RELOC_16_PCREL_S2
4719 && delayed_branch_p (ip))
4721 relaxed_branch = TRUE;
4722 add_relaxed_insn (ip, (relaxed_branch_length
4724 uncond_branch_p (ip) ? -1
4725 : branch_likely_p (ip) ? 1
4729 uncond_branch_p (ip),
4730 branch_likely_p (ip),
4731 pinfo & INSN_WRITE_GPR_31,
4733 address_expr->X_add_symbol,
4734 address_expr->X_add_number);
4735 *reloc_type = BFD_RELOC_UNUSED;
4737 else if (mips_opts.micromips
4739 && ((relax32 && *reloc_type == BFD_RELOC_16_PCREL_S2)
4740 || *reloc_type > BFD_RELOC_UNUSED)
4741 && (delayed_branch_p (ip) || compact_branch_p (ip))
4742 /* Don't try branch relaxation when users specify
4743 16-bit/32-bit instructions. */
4744 && !forced_insn_length)
4746 bfd_boolean relax16 = *reloc_type > BFD_RELOC_UNUSED;
4747 int type = relax16 ? *reloc_type - BFD_RELOC_UNUSED : 0;
4748 int uncond = uncond_branch_p (ip) ? -1 : 0;
4749 int compact = compact_branch_p (ip);
4750 int al = pinfo & INSN_WRITE_GPR_31;
4753 gas_assert (address_expr != NULL);
4754 gas_assert (!mips_relax.sequence);
4756 relaxed_branch = TRUE;
4757 length32 = relaxed_micromips_32bit_branch_length (NULL, NULL, uncond);
4758 add_relaxed_insn (ip, relax32 ? length32 : 4, relax16 ? 2 : 4,
4759 RELAX_MICROMIPS_ENCODE (type, AT, uncond, compact, al,
4761 address_expr->X_add_symbol,
4762 address_expr->X_add_number);
4763 *reloc_type = BFD_RELOC_UNUSED;
4765 else if (mips_opts.mips16 && *reloc_type > BFD_RELOC_UNUSED)
4767 /* We need to set up a variant frag. */
4768 gas_assert (address_expr != NULL);
4769 add_relaxed_insn (ip, 4, 0,
4771 (*reloc_type - BFD_RELOC_UNUSED,
4772 forced_insn_length == 2, forced_insn_length == 4,
4773 delayed_branch_p (&history[0]),
4774 history[0].mips16_absolute_jump_p),
4775 make_expr_symbol (address_expr), 0);
4777 else if (mips_opts.mips16 && insn_length (ip) == 2)
4779 if (!delayed_branch_p (ip))
4780 /* Make sure there is enough room to swap this instruction with
4781 a following jump instruction. */
4783 add_fixed_insn (ip);
4787 if (mips_opts.mips16
4788 && mips_opts.noreorder
4789 && delayed_branch_p (&history[0]))
4790 as_warn (_("extended instruction in delay slot"));
4792 if (mips_relax.sequence)
4794 /* If we've reached the end of this frag, turn it into a variant
4795 frag and record the information for the instructions we've
4797 if (frag_room () < 4)
4798 relax_close_frag ();
4799 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (ip);
4802 if (mips_relax.sequence != 2)
4804 if (mips_macro_warning.first_insn_sizes[0] == 0)
4805 mips_macro_warning.first_insn_sizes[0] = insn_length (ip);
4806 mips_macro_warning.sizes[0] += insn_length (ip);
4807 mips_macro_warning.insns[0]++;
4809 if (mips_relax.sequence != 1)
4811 if (mips_macro_warning.first_insn_sizes[1] == 0)
4812 mips_macro_warning.first_insn_sizes[1] = insn_length (ip);
4813 mips_macro_warning.sizes[1] += insn_length (ip);
4814 mips_macro_warning.insns[1]++;
4817 if (mips_opts.mips16)
4820 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
4822 add_fixed_insn (ip);
4825 if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
4827 bfd_reloc_code_real_type final_type[3];
4828 reloc_howto_type *howto0;
4829 reloc_howto_type *howto;
4832 /* Perform any necessary conversion to microMIPS relocations
4833 and find out how many relocations there actually are. */
4834 for (i = 0; i < 3 && reloc_type[i] != BFD_RELOC_UNUSED; i++)
4835 final_type[i] = micromips_map_reloc (reloc_type[i]);
4837 /* In a compound relocation, it is the final (outermost)
4838 operator that determines the relocated field. */
4839 howto = howto0 = bfd_reloc_type_lookup (stdoutput, final_type[i - 1]);
4844 howto0 = bfd_reloc_type_lookup (stdoutput, final_type[0]);
4845 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
4846 bfd_get_reloc_size (howto),
4848 howto0 && howto0->pc_relative,
4851 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
4852 if (final_type[0] == BFD_RELOC_MIPS16_JMP && ip->fixp[0]->fx_addsy)
4853 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
4855 /* These relocations can have an addend that won't fit in
4856 4 octets for 64bit assembly. */
4858 && ! howto->partial_inplace
4859 && (reloc_type[0] == BFD_RELOC_16
4860 || reloc_type[0] == BFD_RELOC_32
4861 || reloc_type[0] == BFD_RELOC_MIPS_JMP
4862 || reloc_type[0] == BFD_RELOC_GPREL16
4863 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
4864 || reloc_type[0] == BFD_RELOC_GPREL32
4865 || reloc_type[0] == BFD_RELOC_64
4866 || reloc_type[0] == BFD_RELOC_CTOR
4867 || reloc_type[0] == BFD_RELOC_MIPS_SUB
4868 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
4869 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
4870 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
4871 || reloc_type[0] == BFD_RELOC_MIPS_REL16
4872 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
4873 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
4874 || hi16_reloc_p (reloc_type[0])
4875 || lo16_reloc_p (reloc_type[0])))
4876 ip->fixp[0]->fx_no_overflow = 1;
4878 /* These relocations can have an addend that won't fit in 2 octets. */
4879 if (reloc_type[0] == BFD_RELOC_MICROMIPS_7_PCREL_S1
4880 || reloc_type[0] == BFD_RELOC_MICROMIPS_10_PCREL_S1)
4881 ip->fixp[0]->fx_no_overflow = 1;
4883 if (mips_relax.sequence)
4885 if (mips_relax.first_fixup == 0)
4886 mips_relax.first_fixup = ip->fixp[0];
4888 else if (reloc_needs_lo_p (*reloc_type))
4890 struct mips_hi_fixup *hi_fixup;
4892 /* Reuse the last entry if it already has a matching %lo. */
4893 hi_fixup = mips_hi_fixup_list;
4895 || !fixup_has_matching_lo_p (hi_fixup->fixp))
4897 hi_fixup = ((struct mips_hi_fixup *)
4898 xmalloc (sizeof (struct mips_hi_fixup)));
4899 hi_fixup->next = mips_hi_fixup_list;
4900 mips_hi_fixup_list = hi_fixup;
4902 hi_fixup->fixp = ip->fixp[0];
4903 hi_fixup->seg = now_seg;
4906 /* Add fixups for the second and third relocations, if given.
4907 Note that the ABI allows the second relocation to be
4908 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
4909 moment we only use RSS_UNDEF, but we could add support
4910 for the others if it ever becomes necessary. */
4911 for (i = 1; i < 3; i++)
4912 if (reloc_type[i] != BFD_RELOC_UNUSED)
4914 ip->fixp[i] = fix_new (ip->frag, ip->where,
4915 ip->fixp[0]->fx_size, NULL, 0,
4916 FALSE, final_type[i]);
4918 /* Use fx_tcbit to mark compound relocs. */
4919 ip->fixp[0]->fx_tcbit = 1;
4920 ip->fixp[i]->fx_tcbit = 1;
4925 /* Update the register mask information. */
4926 mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
4927 mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
4932 insert_into_history (0, 1, ip);
4935 case APPEND_ADD_WITH_NOP:
4937 struct mips_cl_insn *nop;
4939 insert_into_history (0, 1, ip);
4940 nop = get_delay_slot_nop (ip);
4941 add_fixed_insn (nop);
4942 insert_into_history (0, 1, nop);
4943 if (mips_relax.sequence)
4944 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (nop);
4948 case APPEND_ADD_COMPACT:
4949 /* Convert MIPS16 jr/jalr into a "compact" jump. */
4950 gas_assert (mips_opts.mips16);
4951 ip->insn_opcode |= 0x0080;
4952 find_altered_mips16_opcode (ip);
4954 insert_into_history (0, 1, ip);
4959 struct mips_cl_insn delay = history[0];
4960 if (mips_opts.mips16)
4962 know (delay.frag == ip->frag);
4963 move_insn (ip, delay.frag, delay.where);
4964 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
4966 else if (relaxed_branch || delay.frag != ip->frag)
4968 /* Add the delay slot instruction to the end of the
4969 current frag and shrink the fixed part of the
4970 original frag. If the branch occupies the tail of
4971 the latter, move it backwards to cover the gap. */
4972 delay.frag->fr_fix -= branch_disp;
4973 if (delay.frag == ip->frag)
4974 move_insn (ip, ip->frag, ip->where - branch_disp);
4975 add_fixed_insn (&delay);
4979 move_insn (&delay, ip->frag,
4980 ip->where - branch_disp + insn_length (ip));
4981 move_insn (ip, history[0].frag, history[0].where);
4985 insert_into_history (0, 1, &delay);
4990 /* If we have just completed an unconditional branch, clear the history. */
4991 if ((delayed_branch_p (&history[1]) && uncond_branch_p (&history[1]))
4992 || (compact_branch_p (&history[0]) && uncond_branch_p (&history[0])))
4996 mips_no_prev_insn ();
4998 for (i = 0; i < ARRAY_SIZE (history); i++)
4999 history[i].cleared_p = 1;
5002 /* We need to emit a label at the end of branch-likely macros. */
5003 if (emit_branch_likely_macro)
5005 emit_branch_likely_macro = FALSE;
5006 micromips_add_label ();
5009 /* We just output an insn, so the next one doesn't have a label. */
5010 mips_clear_insn_labels ();
5013 /* Forget that there was any previous instruction or label.
5014 When BRANCH is true, the branch history is also flushed. */
5017 mips_no_prev_insn (void)
5019 prev_nop_frag = NULL;
5020 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
5021 mips_clear_insn_labels ();
5024 /* This function must be called before we emit something other than
5025 instructions. It is like mips_no_prev_insn except that it inserts
5026 any NOPS that might be needed by previous instructions. */
5029 mips_emit_delays (void)
5031 if (! mips_opts.noreorder)
5033 int nops = nops_for_insn (0, history, NULL);
5037 add_fixed_insn (NOP_INSN);
5038 mips_move_text_labels ();
5041 mips_no_prev_insn ();
5044 /* Start a (possibly nested) noreorder block. */
5047 start_noreorder (void)
5049 if (mips_opts.noreorder == 0)
5054 /* None of the instructions before the .set noreorder can be moved. */
5055 for (i = 0; i < ARRAY_SIZE (history); i++)
5056 history[i].fixed_p = 1;
5058 /* Insert any nops that might be needed between the .set noreorder
5059 block and the previous instructions. We will later remove any
5060 nops that turn out not to be needed. */
5061 nops = nops_for_insn (0, history, NULL);
5064 if (mips_optimize != 0)
5066 /* Record the frag which holds the nop instructions, so
5067 that we can remove them if we don't need them. */
5068 frag_grow (nops * NOP_INSN_SIZE);
5069 prev_nop_frag = frag_now;
5070 prev_nop_frag_holds = nops;
5071 prev_nop_frag_required = 0;
5072 prev_nop_frag_since = 0;
5075 for (; nops > 0; --nops)
5076 add_fixed_insn (NOP_INSN);
5078 /* Move on to a new frag, so that it is safe to simply
5079 decrease the size of prev_nop_frag. */
5080 frag_wane (frag_now);
5082 mips_move_text_labels ();
5084 mips_mark_labels ();
5085 mips_clear_insn_labels ();
5087 mips_opts.noreorder++;
5088 mips_any_noreorder = 1;
5091 /* End a nested noreorder block. */
5094 end_noreorder (void)
5096 mips_opts.noreorder--;
5097 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
5099 /* Commit to inserting prev_nop_frag_required nops and go back to
5100 handling nop insertion the .set reorder way. */
5101 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
5103 insert_into_history (prev_nop_frag_since,
5104 prev_nop_frag_required, NOP_INSN);
5105 prev_nop_frag = NULL;
5109 /* Set up global variables for the start of a new macro. */
5114 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
5115 memset (&mips_macro_warning.first_insn_sizes, 0,
5116 sizeof (mips_macro_warning.first_insn_sizes));
5117 memset (&mips_macro_warning.insns, 0, sizeof (mips_macro_warning.insns));
5118 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
5119 && delayed_branch_p (&history[0]));
5120 switch (history[0].insn_mo->pinfo2
5121 & (INSN2_BRANCH_DELAY_32BIT | INSN2_BRANCH_DELAY_16BIT))
5123 case INSN2_BRANCH_DELAY_32BIT:
5124 mips_macro_warning.delay_slot_length = 4;
5126 case INSN2_BRANCH_DELAY_16BIT:
5127 mips_macro_warning.delay_slot_length = 2;
5130 mips_macro_warning.delay_slot_length = 0;
5133 mips_macro_warning.first_frag = NULL;
5136 /* Given that a macro is longer than one instruction or of the wrong size,
5137 return the appropriate warning for it. Return null if no warning is
5138 needed. SUBTYPE is a bitmask of RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT,
5139 RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND,
5140 and RELAX_NOMACRO. */
5143 macro_warning (relax_substateT subtype)
5145 if (subtype & RELAX_DELAY_SLOT)
5146 return _("Macro instruction expanded into multiple instructions"
5147 " in a branch delay slot");
5148 else if (subtype & RELAX_NOMACRO)
5149 return _("Macro instruction expanded into multiple instructions");
5150 else if (subtype & (RELAX_DELAY_SLOT_SIZE_FIRST
5151 | RELAX_DELAY_SLOT_SIZE_SECOND))
5152 return ((subtype & RELAX_DELAY_SLOT_16BIT)
5153 ? _("Macro instruction expanded into a wrong size instruction"
5154 " in a 16-bit branch delay slot")
5155 : _("Macro instruction expanded into a wrong size instruction"
5156 " in a 32-bit branch delay slot"));
5161 /* Finish up a macro. Emit warnings as appropriate. */
5166 /* Relaxation warning flags. */
5167 relax_substateT subtype = 0;
5169 /* Check delay slot size requirements. */
5170 if (mips_macro_warning.delay_slot_length == 2)
5171 subtype |= RELAX_DELAY_SLOT_16BIT;
5172 if (mips_macro_warning.delay_slot_length != 0)
5174 if (mips_macro_warning.delay_slot_length
5175 != mips_macro_warning.first_insn_sizes[0])
5176 subtype |= RELAX_DELAY_SLOT_SIZE_FIRST;
5177 if (mips_macro_warning.delay_slot_length
5178 != mips_macro_warning.first_insn_sizes[1])
5179 subtype |= RELAX_DELAY_SLOT_SIZE_SECOND;
5182 /* Check instruction count requirements. */
5183 if (mips_macro_warning.insns[0] > 1 || mips_macro_warning.insns[1] > 1)
5185 if (mips_macro_warning.insns[1] > mips_macro_warning.insns[0])
5186 subtype |= RELAX_SECOND_LONGER;
5187 if (mips_opts.warn_about_macros)
5188 subtype |= RELAX_NOMACRO;
5189 if (mips_macro_warning.delay_slot_p)
5190 subtype |= RELAX_DELAY_SLOT;
5193 /* If both alternatives fail to fill a delay slot correctly,
5194 emit the warning now. */
5195 if ((subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0
5196 && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0)
5201 s = subtype & (RELAX_DELAY_SLOT_16BIT
5202 | RELAX_DELAY_SLOT_SIZE_FIRST
5203 | RELAX_DELAY_SLOT_SIZE_SECOND);
5204 msg = macro_warning (s);
5206 as_warn ("%s", msg);
5210 /* If both implementations are longer than 1 instruction, then emit the
5212 if (mips_macro_warning.insns[0] > 1 && mips_macro_warning.insns[1] > 1)
5217 s = subtype & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT);
5218 msg = macro_warning (s);
5220 as_warn ("%s", msg);
5224 /* If any flags still set, then one implementation might need a warning
5225 and the other either will need one of a different kind or none at all.
5226 Pass any remaining flags over to relaxation. */
5227 if (mips_macro_warning.first_frag != NULL)
5228 mips_macro_warning.first_frag->fr_subtype |= subtype;
5231 /* Instruction operand formats used in macros that vary between
5232 standard MIPS and microMIPS code. */
5234 static const char * const brk_fmt[2][2] = { { "c", "c" }, { "mF", "c" } };
5235 static const char * const cop12_fmt[2] = { "E,o(b)", "E,~(b)" };
5236 static const char * const jalr_fmt[2] = { "d,s", "t,s" };
5237 static const char * const lui_fmt[2] = { "t,u", "s,u" };
5238 static const char * const mem12_fmt[2] = { "t,o(b)", "t,~(b)" };
5239 static const char * const mfhl_fmt[2][2] = { { "d", "d" }, { "mj", "s" } };
5240 static const char * const shft_fmt[2] = { "d,w,<", "t,r,<" };
5241 static const char * const trap_fmt[2] = { "s,t,q", "s,t,|" };
5243 #define BRK_FMT (brk_fmt[mips_opts.micromips][mips_opts.insn32])
5244 #define COP12_FMT (cop12_fmt[mips_opts.micromips])
5245 #define JALR_FMT (jalr_fmt[mips_opts.micromips])
5246 #define LUI_FMT (lui_fmt[mips_opts.micromips])
5247 #define MEM12_FMT (mem12_fmt[mips_opts.micromips])
5248 #define MFHL_FMT (mfhl_fmt[mips_opts.micromips][mips_opts.insn32])
5249 #define SHFT_FMT (shft_fmt[mips_opts.micromips])
5250 #define TRAP_FMT (trap_fmt[mips_opts.micromips])
5252 /* Read a macro's relocation codes from *ARGS and store them in *R.
5253 The first argument in *ARGS will be either the code for a single
5254 relocation or -1 followed by the three codes that make up a
5255 composite relocation. */
5258 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
5262 next = va_arg (*args, int);
5264 r[0] = (bfd_reloc_code_real_type) next;
5266 for (i = 0; i < 3; i++)
5267 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
5270 /* Build an instruction created by a macro expansion. This is passed
5271 a pointer to the count of instructions created so far, an
5272 expression, the name of the instruction to build, an operand format
5273 string, and corresponding arguments. */
5276 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
5278 const struct mips_opcode *mo = NULL;
5279 bfd_reloc_code_real_type r[3];
5280 const struct mips_opcode *amo;
5281 struct hash_control *hash;
5282 struct mips_cl_insn insn;
5285 va_start (args, fmt);
5287 if (mips_opts.mips16)
5289 mips16_macro_build (ep, name, fmt, &args);
5294 r[0] = BFD_RELOC_UNUSED;
5295 r[1] = BFD_RELOC_UNUSED;
5296 r[2] = BFD_RELOC_UNUSED;
5297 hash = mips_opts.micromips ? micromips_op_hash : op_hash;
5298 amo = (struct mips_opcode *) hash_find (hash, name);
5300 gas_assert (strcmp (name, amo->name) == 0);
5304 /* Search until we get a match for NAME. It is assumed here that
5305 macros will never generate MDMX, MIPS-3D, or MT instructions.
5306 We try to match an instruction that fulfils the branch delay
5307 slot instruction length requirement (if any) of the previous
5308 instruction. While doing this we record the first instruction
5309 seen that matches all the other conditions and use it anyway
5310 if the requirement cannot be met; we will issue an appropriate
5311 warning later on. */
5312 if (strcmp (fmt, amo->args) == 0
5313 && amo->pinfo != INSN_MACRO
5314 && is_opcode_valid (amo)
5315 && is_size_valid (amo))
5317 if (is_delay_slot_valid (amo))
5327 gas_assert (amo->name);
5329 while (strcmp (name, amo->name) == 0);
5332 create_insn (&insn, mo);
5350 INSERT_OPERAND (mips_opts.micromips,
5351 EXTLSB, insn, va_arg (args, int));
5356 /* Note that in the macro case, these arguments are already
5357 in MSB form. (When handling the instruction in the
5358 non-macro case, these arguments are sizes from which
5359 MSB values must be calculated.) */
5360 INSERT_OPERAND (mips_opts.micromips,
5361 INSMSB, insn, va_arg (args, int));
5365 gas_assert (!mips_opts.micromips);
5366 INSERT_OPERAND (0, CODE10, insn, va_arg (args, int));
5372 /* Note that in the macro case, these arguments are already
5373 in MSBD form. (When handling the instruction in the
5374 non-macro case, these arguments are sizes from which
5375 MSBD values must be calculated.) */
5376 INSERT_OPERAND (mips_opts.micromips,
5377 EXTMSBD, insn, va_arg (args, int));
5381 gas_assert (!mips_opts.micromips);
5382 INSERT_OPERAND (0, SEQI, insn, va_arg (args, int));
5386 INSERT_OPERAND (mips_opts.micromips, EVAOFFSET, insn, va_arg (args, int));
5395 INSERT_OPERAND (mips_opts.micromips, BP, insn, va_arg (args, int));
5399 gas_assert (mips_opts.micromips);
5403 INSERT_OPERAND (mips_opts.micromips, RT, insn, va_arg (args, int));
5407 INSERT_OPERAND (mips_opts.micromips, CODE, insn, va_arg (args, int));
5411 gas_assert (!mips_opts.micromips);
5413 INSERT_OPERAND (mips_opts.micromips, FT, insn, va_arg (args, int));
5417 if (mips_opts.micromips)
5418 INSERT_OPERAND (1, RS, insn, va_arg (args, int));
5420 INSERT_OPERAND (0, RD, insn, va_arg (args, int));
5424 gas_assert (!mips_opts.micromips);
5426 INSERT_OPERAND (mips_opts.micromips, RD, insn, va_arg (args, int));
5430 gas_assert (!mips_opts.micromips);
5432 int tmp = va_arg (args, int);
5434 INSERT_OPERAND (0, RT, insn, tmp);
5435 INSERT_OPERAND (0, RD, insn, tmp);
5441 gas_assert (!mips_opts.micromips);
5442 INSERT_OPERAND (0, FS, insn, va_arg (args, int));
5449 INSERT_OPERAND (mips_opts.micromips,
5450 SHAMT, insn, va_arg (args, int));
5454 gas_assert (!mips_opts.micromips);
5455 INSERT_OPERAND (0, FD, insn, va_arg (args, int));
5459 gas_assert (!mips_opts.micromips);
5460 INSERT_OPERAND (0, CODE20, insn, va_arg (args, int));
5464 gas_assert (!mips_opts.micromips);
5465 INSERT_OPERAND (0, CODE19, insn, va_arg (args, int));
5469 gas_assert (!mips_opts.micromips);
5470 INSERT_OPERAND (0, CODE2, insn, va_arg (args, int));
5477 INSERT_OPERAND (mips_opts.micromips, RS, insn, va_arg (args, int));
5482 macro_read_relocs (&args, r);
5483 gas_assert (*r == BFD_RELOC_GPREL16
5484 || *r == BFD_RELOC_MIPS_HIGHER
5485 || *r == BFD_RELOC_HI16_S
5486 || *r == BFD_RELOC_LO16
5487 || *r == BFD_RELOC_MIPS_GOT_OFST);
5491 macro_read_relocs (&args, r);
5495 macro_read_relocs (&args, r);
5496 gas_assert (ep != NULL
5497 && (ep->X_op == O_constant
5498 || (ep->X_op == O_symbol
5499 && (*r == BFD_RELOC_MIPS_HIGHEST
5500 || *r == BFD_RELOC_HI16_S
5501 || *r == BFD_RELOC_HI16
5502 || *r == BFD_RELOC_GPREL16
5503 || *r == BFD_RELOC_MIPS_GOT_HI16
5504 || *r == BFD_RELOC_MIPS_CALL_HI16))));
5508 gas_assert (ep != NULL);
5511 * This allows macro() to pass an immediate expression for
5512 * creating short branches without creating a symbol.
5514 * We don't allow branch relaxation for these branches, as
5515 * they should only appear in ".set nomacro" anyway.
5517 if (ep->X_op == O_constant)
5519 /* For microMIPS we always use relocations for branches.
5520 So we should not resolve immediate values. */
5521 gas_assert (!mips_opts.micromips);
5523 if ((ep->X_add_number & 3) != 0)
5524 as_bad (_("branch to misaligned address (0x%lx)"),
5525 (unsigned long) ep->X_add_number);
5526 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
5527 as_bad (_("branch address range overflow (0x%lx)"),
5528 (unsigned long) ep->X_add_number);
5529 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
5533 *r = BFD_RELOC_16_PCREL_S2;
5537 gas_assert (ep != NULL);
5538 *r = BFD_RELOC_MIPS_JMP;
5542 gas_assert (!mips_opts.micromips);
5543 INSERT_OPERAND (0, COPZ, insn, va_arg (args, unsigned long));
5547 INSERT_OPERAND (mips_opts.micromips,
5548 CACHE, insn, va_arg (args, unsigned long));
5552 gas_assert (mips_opts.micromips);
5553 INSERT_OPERAND (1, TRAP, insn, va_arg (args, int));
5557 gas_assert (mips_opts.micromips);
5558 INSERT_OPERAND (1, OFFSET10, insn, va_arg (args, int));
5562 INSERT_OPERAND (mips_opts.micromips,
5563 3BITPOS, insn, va_arg (args, unsigned int));
5567 INSERT_OPERAND (mips_opts.micromips,
5568 OFFSET12, insn, va_arg (args, unsigned long));
5572 gas_assert (mips_opts.micromips);
5573 INSERT_OPERAND (1, BCC, insn, va_arg (args, int));
5576 case 'm': /* Opcode extension character. */
5577 gas_assert (mips_opts.micromips);
5581 INSERT_OPERAND (1, MJ, insn, va_arg (args, int));
5585 INSERT_OPERAND (1, MP, insn, va_arg (args, int));
5589 INSERT_OPERAND (1, IMMF, insn, va_arg (args, int));
5603 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
5605 append_insn (&insn, ep, r, TRUE);
5609 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
5612 struct mips_opcode *mo;
5613 struct mips_cl_insn insn;
5614 bfd_reloc_code_real_type r[3]
5615 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
5617 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
5619 gas_assert (strcmp (name, mo->name) == 0);
5621 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
5624 gas_assert (mo->name);
5625 gas_assert (strcmp (name, mo->name) == 0);
5628 create_insn (&insn, mo);
5646 MIPS16_INSERT_OPERAND (RY, insn, va_arg (*args, int));
5651 MIPS16_INSERT_OPERAND (RX, insn, va_arg (*args, int));
5655 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (*args, int));
5659 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (*args, int));
5669 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (*args, int));
5676 regno = va_arg (*args, int);
5677 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
5678 MIPS16_INSERT_OPERAND (REG32R, insn, regno);
5701 gas_assert (ep != NULL);
5703 if (ep->X_op != O_constant)
5704 *r = (int) BFD_RELOC_UNUSED + c;
5705 else if (calculate_reloc (*r, ep->X_add_number, &value))
5707 mips16_immed (NULL, 0, c, *r, value, 0, &insn.insn_opcode);
5709 *r = BFD_RELOC_UNUSED;
5715 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (*args, int));
5722 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
5724 append_insn (&insn, ep, r, TRUE);
5728 * Sign-extend 32-bit mode constants that have bit 31 set and all
5729 * higher bits unset.
5732 normalize_constant_expr (expressionS *ex)
5734 if (ex->X_op == O_constant
5735 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
5736 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
5741 * Sign-extend 32-bit mode address offsets that have bit 31 set and
5742 * all higher bits unset.
5745 normalize_address_expr (expressionS *ex)
5747 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
5748 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
5749 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
5750 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
5755 * Generate a "jalr" instruction with a relocation hint to the called
5756 * function. This occurs in NewABI PIC code.
5759 macro_build_jalr (expressionS *ep, int cprestore)
5761 static const bfd_reloc_code_real_type jalr_relocs[2]
5762 = { BFD_RELOC_MIPS_JALR, BFD_RELOC_MICROMIPS_JALR };
5763 bfd_reloc_code_real_type jalr_reloc = jalr_relocs[mips_opts.micromips];
5767 if (MIPS_JALR_HINT_P (ep))
5772 if (mips_opts.micromips)
5774 jalr = ((mips_opts.noreorder && !cprestore) || mips_opts.insn32
5775 ? "jalr" : "jalrs");
5776 if (MIPS_JALR_HINT_P (ep)
5778 || (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
5779 macro_build (NULL, jalr, "t,s", RA, PIC_CALL_REG);
5781 macro_build (NULL, jalr, "mj", PIC_CALL_REG);
5784 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
5785 if (MIPS_JALR_HINT_P (ep))
5786 fix_new_exp (frag_now, f - frag_now->fr_literal, 4, ep, FALSE, jalr_reloc);
5790 * Generate a "lui" instruction.
5793 macro_build_lui (expressionS *ep, int regnum)
5795 gas_assert (! mips_opts.mips16);
5797 if (ep->X_op != O_constant)
5799 gas_assert (ep->X_op == O_symbol);
5800 /* _gp_disp is a special case, used from s_cpload.
5801 __gnu_local_gp is used if mips_no_shared. */
5802 gas_assert (mips_pic == NO_PIC
5804 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
5805 || (! mips_in_shared
5806 && strcmp (S_GET_NAME (ep->X_add_symbol),
5807 "__gnu_local_gp") == 0));
5810 macro_build (ep, "lui", LUI_FMT, regnum, BFD_RELOC_HI16_S);
5813 /* Generate a sequence of instructions to do a load or store from a constant
5814 offset off of a base register (breg) into/from a target register (treg),
5815 using AT if necessary. */
5817 macro_build_ldst_constoffset (expressionS *ep, const char *op,
5818 int treg, int breg, int dbl)
5820 gas_assert (ep->X_op == O_constant);
5822 /* Sign-extending 32-bit constants makes their handling easier. */
5824 normalize_constant_expr (ep);
5826 /* Right now, this routine can only handle signed 32-bit constants. */
5827 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
5828 as_warn (_("operand overflow"));
5830 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
5832 /* Signed 16-bit offset will fit in the op. Easy! */
5833 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
5837 /* 32-bit offset, need multiple instructions and AT, like:
5838 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
5839 addu $tempreg,$tempreg,$breg
5840 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
5841 to handle the complete offset. */
5842 macro_build_lui (ep, AT);
5843 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
5844 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
5847 as_bad (_("Macro used $at after \".set noat\""));
5852 * Generates code to set the $at register to true (one)
5853 * if reg is less than the immediate expression.
5856 set_at (int reg, int unsignedp)
5858 if (imm_expr.X_op == O_constant
5859 && imm_expr.X_add_number >= -0x8000
5860 && imm_expr.X_add_number < 0x8000)
5861 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
5862 AT, reg, BFD_RELOC_LO16);
5865 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
5866 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
5870 /* Warn if an expression is not a constant. */
5873 check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
5875 if (ex->X_op == O_big)
5876 as_bad (_("unsupported large constant"));
5877 else if (ex->X_op != O_constant)
5878 as_bad (_("Instruction %s requires absolute expression"),
5881 if (HAVE_32BIT_GPRS)
5882 normalize_constant_expr (ex);
5885 /* Count the leading zeroes by performing a binary chop. This is a
5886 bulky bit of source, but performance is a LOT better for the
5887 majority of values than a simple loop to count the bits:
5888 for (lcnt = 0; (lcnt < 32); lcnt++)
5889 if ((v) & (1 << (31 - lcnt)))
5891 However it is not code size friendly, and the gain will drop a bit
5892 on certain cached systems.
5894 #define COUNT_TOP_ZEROES(v) \
5895 (((v) & ~0xffff) == 0 \
5896 ? ((v) & ~0xff) == 0 \
5897 ? ((v) & ~0xf) == 0 \
5898 ? ((v) & ~0x3) == 0 \
5899 ? ((v) & ~0x1) == 0 \
5904 : ((v) & ~0x7) == 0 \
5907 : ((v) & ~0x3f) == 0 \
5908 ? ((v) & ~0x1f) == 0 \
5911 : ((v) & ~0x7f) == 0 \
5914 : ((v) & ~0xfff) == 0 \
5915 ? ((v) & ~0x3ff) == 0 \
5916 ? ((v) & ~0x1ff) == 0 \
5919 : ((v) & ~0x7ff) == 0 \
5922 : ((v) & ~0x3fff) == 0 \
5923 ? ((v) & ~0x1fff) == 0 \
5926 : ((v) & ~0x7fff) == 0 \
5929 : ((v) & ~0xffffff) == 0 \
5930 ? ((v) & ~0xfffff) == 0 \
5931 ? ((v) & ~0x3ffff) == 0 \
5932 ? ((v) & ~0x1ffff) == 0 \
5935 : ((v) & ~0x7ffff) == 0 \
5938 : ((v) & ~0x3fffff) == 0 \
5939 ? ((v) & ~0x1fffff) == 0 \
5942 : ((v) & ~0x7fffff) == 0 \
5945 : ((v) & ~0xfffffff) == 0 \
5946 ? ((v) & ~0x3ffffff) == 0 \
5947 ? ((v) & ~0x1ffffff) == 0 \
5950 : ((v) & ~0x7ffffff) == 0 \
5953 : ((v) & ~0x3fffffff) == 0 \
5954 ? ((v) & ~0x1fffffff) == 0 \
5957 : ((v) & ~0x7fffffff) == 0 \
5962 * This routine generates the least number of instructions necessary to load
5963 * an absolute expression value into a register.
5966 load_register (int reg, expressionS *ep, int dbl)
5969 expressionS hi32, lo32;
5971 if (ep->X_op != O_big)
5973 gas_assert (ep->X_op == O_constant);
5975 /* Sign-extending 32-bit constants makes their handling easier. */
5977 normalize_constant_expr (ep);
5979 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
5981 /* We can handle 16 bit signed values with an addiu to
5982 $zero. No need to ever use daddiu here, since $zero and
5983 the result are always correct in 32 bit mode. */
5984 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
5987 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
5989 /* We can handle 16 bit unsigned values with an ori to
5991 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
5994 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
5996 /* 32 bit values require an lui. */
5997 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
5998 if ((ep->X_add_number & 0xffff) != 0)
5999 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
6004 /* The value is larger than 32 bits. */
6006 if (!dbl || HAVE_32BIT_GPRS)
6010 sprintf_vma (value, ep->X_add_number);
6011 as_bad (_("Number (0x%s) larger than 32 bits"), value);
6012 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
6016 if (ep->X_op != O_big)
6019 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
6020 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
6021 hi32.X_add_number &= 0xffffffff;
6023 lo32.X_add_number &= 0xffffffff;
6027 gas_assert (ep->X_add_number > 2);
6028 if (ep->X_add_number == 3)
6029 generic_bignum[3] = 0;
6030 else if (ep->X_add_number > 4)
6031 as_bad (_("Number larger than 64 bits"));
6032 lo32.X_op = O_constant;
6033 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
6034 hi32.X_op = O_constant;
6035 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
6038 if (hi32.X_add_number == 0)
6043 unsigned long hi, lo;
6045 if (hi32.X_add_number == (offsetT) 0xffffffff)
6047 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
6049 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
6052 if (lo32.X_add_number & 0x80000000)
6054 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
6055 if (lo32.X_add_number & 0xffff)
6056 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
6061 /* Check for 16bit shifted constant. We know that hi32 is
6062 non-zero, so start the mask on the first bit of the hi32
6067 unsigned long himask, lomask;
6071 himask = 0xffff >> (32 - shift);
6072 lomask = (0xffff << shift) & 0xffffffff;
6076 himask = 0xffff << (shift - 32);
6079 if ((hi32.X_add_number & ~(offsetT) himask) == 0
6080 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
6084 tmp.X_op = O_constant;
6086 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
6087 | (lo32.X_add_number >> shift));
6089 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
6090 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
6091 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", SHFT_FMT,
6092 reg, reg, (shift >= 32) ? shift - 32 : shift);
6097 while (shift <= (64 - 16));
6099 /* Find the bit number of the lowest one bit, and store the
6100 shifted value in hi/lo. */
6101 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
6102 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
6106 while ((lo & 1) == 0)
6111 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
6117 while ((hi & 1) == 0)
6126 /* Optimize if the shifted value is a (power of 2) - 1. */
6127 if ((hi == 0 && ((lo + 1) & lo) == 0)
6128 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
6130 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
6135 /* This instruction will set the register to be all
6137 tmp.X_op = O_constant;
6138 tmp.X_add_number = (offsetT) -1;
6139 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
6143 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", SHFT_FMT,
6144 reg, reg, (bit >= 32) ? bit - 32 : bit);
6146 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", SHFT_FMT,
6147 reg, reg, (shift >= 32) ? shift - 32 : shift);
6152 /* Sign extend hi32 before calling load_register, because we can
6153 generally get better code when we load a sign extended value. */
6154 if ((hi32.X_add_number & 0x80000000) != 0)
6155 hi32.X_add_number |= ~(offsetT) 0xffffffff;
6156 load_register (reg, &hi32, 0);
6159 if ((lo32.X_add_number & 0xffff0000) == 0)
6163 macro_build (NULL, "dsll32", SHFT_FMT, reg, freg, 0);
6171 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
6173 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
6174 macro_build (NULL, "dsrl32", SHFT_FMT, reg, reg, 0);
6180 macro_build (NULL, "dsll", SHFT_FMT, reg, freg, 16);
6184 mid16.X_add_number >>= 16;
6185 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
6186 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
6189 if ((lo32.X_add_number & 0xffff) != 0)
6190 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
6194 load_delay_nop (void)
6196 if (!gpr_interlocks)
6197 macro_build (NULL, "nop", "");
6200 /* Load an address into a register. */
6203 load_address (int reg, expressionS *ep, int *used_at)
6205 if (ep->X_op != O_constant
6206 && ep->X_op != O_symbol)
6208 as_bad (_("expression too complex"));
6209 ep->X_op = O_constant;
6212 if (ep->X_op == O_constant)
6214 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
6218 if (mips_pic == NO_PIC)
6220 /* If this is a reference to a GP relative symbol, we want
6221 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
6223 lui $reg,<sym> (BFD_RELOC_HI16_S)
6224 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
6225 If we have an addend, we always use the latter form.
6227 With 64bit address space and a usable $at we want
6228 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6229 lui $at,<sym> (BFD_RELOC_HI16_S)
6230 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
6231 daddiu $at,<sym> (BFD_RELOC_LO16)
6235 If $at is already in use, we use a path which is suboptimal
6236 on superscalar processors.
6237 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6238 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
6240 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
6242 daddiu $reg,<sym> (BFD_RELOC_LO16)
6244 For GP relative symbols in 64bit address space we can use
6245 the same sequence as in 32bit address space. */
6246 if (HAVE_64BIT_SYMBOLS)
6248 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6249 && !nopic_need_relax (ep->X_add_symbol, 1))
6251 relax_start (ep->X_add_symbol);
6252 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
6253 mips_gp_register, BFD_RELOC_GPREL16);
6257 if (*used_at == 0 && mips_opts.at)
6259 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
6260 macro_build (ep, "lui", LUI_FMT, AT, BFD_RELOC_HI16_S);
6261 macro_build (ep, "daddiu", "t,r,j", reg, reg,
6262 BFD_RELOC_MIPS_HIGHER);
6263 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
6264 macro_build (NULL, "dsll32", SHFT_FMT, reg, reg, 0);
6265 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
6270 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
6271 macro_build (ep, "daddiu", "t,r,j", reg, reg,
6272 BFD_RELOC_MIPS_HIGHER);
6273 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
6274 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
6275 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
6276 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
6279 if (mips_relax.sequence)
6284 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6285 && !nopic_need_relax (ep->X_add_symbol, 1))
6287 relax_start (ep->X_add_symbol);
6288 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
6289 mips_gp_register, BFD_RELOC_GPREL16);
6292 macro_build_lui (ep, reg);
6293 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
6294 reg, reg, BFD_RELOC_LO16);
6295 if (mips_relax.sequence)
6299 else if (!mips_big_got)
6303 /* If this is a reference to an external symbol, we want
6304 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6306 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6308 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
6309 If there is a constant, it must be added in after.
6311 If we have NewABI, we want
6312 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
6313 unless we're referencing a global symbol with a non-zero
6314 offset, in which case cst must be added separately. */
6317 if (ep->X_add_number)
6319 ex.X_add_number = ep->X_add_number;
6320 ep->X_add_number = 0;
6321 relax_start (ep->X_add_symbol);
6322 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6323 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6324 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6325 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6326 ex.X_op = O_constant;
6327 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
6328 reg, reg, BFD_RELOC_LO16);
6329 ep->X_add_number = ex.X_add_number;
6332 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6333 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
6334 if (mips_relax.sequence)
6339 ex.X_add_number = ep->X_add_number;
6340 ep->X_add_number = 0;
6341 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6342 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6344 relax_start (ep->X_add_symbol);
6346 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6350 if (ex.X_add_number != 0)
6352 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6353 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6354 ex.X_op = O_constant;
6355 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
6356 reg, reg, BFD_RELOC_LO16);
6360 else if (mips_big_got)
6364 /* This is the large GOT case. If this is a reference to an
6365 external symbol, we want
6366 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6368 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
6370 Otherwise, for a reference to a local symbol in old ABI, we want
6371 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6373 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
6374 If there is a constant, it must be added in after.
6376 In the NewABI, for local symbols, with or without offsets, we want:
6377 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6378 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
6382 ex.X_add_number = ep->X_add_number;
6383 ep->X_add_number = 0;
6384 relax_start (ep->X_add_symbol);
6385 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
6386 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6387 reg, reg, mips_gp_register);
6388 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
6389 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
6390 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6391 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6392 else if (ex.X_add_number)
6394 ex.X_op = O_constant;
6395 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6399 ep->X_add_number = ex.X_add_number;
6401 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6402 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6403 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6404 BFD_RELOC_MIPS_GOT_OFST);
6409 ex.X_add_number = ep->X_add_number;
6410 ep->X_add_number = 0;
6411 relax_start (ep->X_add_symbol);
6412 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
6413 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6414 reg, reg, mips_gp_register);
6415 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
6416 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
6418 if (reg_needs_delay (mips_gp_register))
6420 /* We need a nop before loading from $gp. This special
6421 check is required because the lui which starts the main
6422 instruction stream does not refer to $gp, and so will not
6423 insert the nop which may be required. */
6424 macro_build (NULL, "nop", "");
6426 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
6427 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6429 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6433 if (ex.X_add_number != 0)
6435 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
6436 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6437 ex.X_op = O_constant;
6438 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
6446 if (!mips_opts.at && *used_at == 1)
6447 as_bad (_("Macro used $at after \".set noat\""));
6450 /* Move the contents of register SOURCE into register DEST. */
6453 move_register (int dest, int source)
6455 /* Prefer to use a 16-bit microMIPS instruction unless the previous
6456 instruction specifically requires a 32-bit one. */
6457 if (mips_opts.micromips
6458 && !mips_opts.insn32
6459 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
6460 macro_build (NULL, "move", "mp,mj", dest, source);
6462 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
6466 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
6467 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
6468 The two alternatives are:
6470 Global symbol Local sybmol
6471 ------------- ------------
6472 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
6474 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
6476 load_got_offset emits the first instruction and add_got_offset
6477 emits the second for a 16-bit offset or add_got_offset_hilo emits
6478 a sequence to add a 32-bit offset using a scratch register. */
6481 load_got_offset (int dest, expressionS *local)
6486 global.X_add_number = 0;
6488 relax_start (local->X_add_symbol);
6489 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
6490 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6492 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
6493 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6498 add_got_offset (int dest, expressionS *local)
6502 global.X_op = O_constant;
6503 global.X_op_symbol = NULL;
6504 global.X_add_symbol = NULL;
6505 global.X_add_number = local->X_add_number;
6507 relax_start (local->X_add_symbol);
6508 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
6509 dest, dest, BFD_RELOC_LO16);
6511 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
6516 add_got_offset_hilo (int dest, expressionS *local, int tmp)
6519 int hold_mips_optimize;
6521 global.X_op = O_constant;
6522 global.X_op_symbol = NULL;
6523 global.X_add_symbol = NULL;
6524 global.X_add_number = local->X_add_number;
6526 relax_start (local->X_add_symbol);
6527 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
6529 /* Set mips_optimize around the lui instruction to avoid
6530 inserting an unnecessary nop after the lw. */
6531 hold_mips_optimize = mips_optimize;
6533 macro_build_lui (&global, tmp);
6534 mips_optimize = hold_mips_optimize;
6535 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
6538 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
6541 /* Emit a sequence of instructions to emulate a branch likely operation.
6542 BR is an ordinary branch corresponding to one to be emulated. BRNEG
6543 is its complementing branch with the original condition negated.
6544 CALL is set if the original branch specified the link operation.
6545 EP, FMT, SREG and TREG specify the usual macro_build() parameters.
6547 Code like this is produced in the noreorder mode:
6552 delay slot (executed only if branch taken)
6560 delay slot (executed only if branch taken)
6563 In the reorder mode the delay slot would be filled with a nop anyway,
6564 so code produced is simply:
6569 This function is used when producing code for the microMIPS ASE that
6570 does not implement branch likely instructions in hardware. */
6573 macro_build_branch_likely (const char *br, const char *brneg,
6574 int call, expressionS *ep, const char *fmt,
6575 unsigned int sreg, unsigned int treg)
6577 int noreorder = mips_opts.noreorder;
6580 gas_assert (mips_opts.micromips);
6584 micromips_label_expr (&expr1);
6585 macro_build (&expr1, brneg, fmt, sreg, treg);
6586 macro_build (NULL, "nop", "");
6587 macro_build (ep, call ? "bal" : "b", "p");
6589 /* Set to true so that append_insn adds a label. */
6590 emit_branch_likely_macro = TRUE;
6594 macro_build (ep, br, fmt, sreg, treg);
6595 macro_build (NULL, "nop", "");
6600 /* Emit a coprocessor branch-likely macro specified by TYPE, using CC as
6601 the condition code tested. EP specifies the branch target. */
6604 macro_build_branch_ccl (int type, expressionS *ep, unsigned int cc)
6631 macro_build_branch_likely (br, brneg, call, ep, "N,p", cc, ZERO);
6634 /* Emit a two-argument branch macro specified by TYPE, using SREG as
6635 the register tested. EP specifies the branch target. */
6638 macro_build_branch_rs (int type, expressionS *ep, unsigned int sreg)
6640 const char *brneg = NULL;
6650 br = mips_opts.micromips ? "bgez" : "bgezl";
6654 gas_assert (mips_opts.micromips);
6655 br = mips_opts.insn32 ? "bgezal" : "bgezals";
6663 br = mips_opts.micromips ? "bgtz" : "bgtzl";
6670 br = mips_opts.micromips ? "blez" : "blezl";
6677 br = mips_opts.micromips ? "bltz" : "bltzl";
6681 gas_assert (mips_opts.micromips);
6682 br = mips_opts.insn32 ? "bltzal" : "bltzals";
6689 if (mips_opts.micromips && brneg)
6690 macro_build_branch_likely (br, brneg, call, ep, "s,p", sreg, ZERO);
6692 macro_build (ep, br, "s,p", sreg);
6695 /* Emit a three-argument branch macro specified by TYPE, using SREG and
6696 TREG as the registers tested. EP specifies the branch target. */
6699 macro_build_branch_rsrt (int type, expressionS *ep,
6700 unsigned int sreg, unsigned int treg)
6702 const char *brneg = NULL;
6714 br = mips_opts.micromips ? "beq" : "beql";
6723 br = mips_opts.micromips ? "bne" : "bnel";
6729 if (mips_opts.micromips && brneg)
6730 macro_build_branch_likely (br, brneg, call, ep, "s,t,p", sreg, treg);
6732 macro_build (ep, br, "s,t,p", sreg, treg);
6737 * This routine implements the seemingly endless macro or synthesized
6738 * instructions and addressing modes in the mips assembly language. Many
6739 * of these macros are simple and are similar to each other. These could
6740 * probably be handled by some kind of table or grammar approach instead of
6741 * this verbose method. Others are not simple macros but are more like
6742 * optimizing code generation.
6743 * One interesting optimization is when several store macros appear
6744 * consecutively that would load AT with the upper half of the same address.
6745 * The ensuing load upper instructions are ommited. This implies some kind
6746 * of global optimization. We currently only optimize within a single macro.
6747 * For many of the load and store macros if the address is specified as a
6748 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
6749 * first load register 'at' with zero and use it as the base register. The
6750 * mips assembler simply uses register $zero. Just one tiny optimization
6754 macro (struct mips_cl_insn *ip, char *str)
6756 unsigned int treg, sreg, dreg, breg;
6757 unsigned int tempreg;
6760 expressionS label_expr;
6777 bfd_reloc_code_real_type r;
6778 int hold_mips_optimize;
6780 gas_assert (! mips_opts.mips16);
6782 treg = EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
6783 dreg = EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
6784 sreg = breg = EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
6785 mask = ip->insn_mo->mask;
6787 label_expr.X_op = O_constant;
6788 label_expr.X_op_symbol = NULL;
6789 label_expr.X_add_symbol = NULL;
6790 label_expr.X_add_number = 0;
6792 expr1.X_op = O_constant;
6793 expr1.X_op_symbol = NULL;
6794 expr1.X_add_symbol = NULL;
6795 expr1.X_add_number = 1;
6810 if (mips_opts.micromips)
6811 micromips_label_expr (&label_expr);
6813 label_expr.X_add_number = 8;
6814 macro_build (&label_expr, "bgez", "s,p", sreg);
6816 macro_build (NULL, "nop", "");
6818 move_register (dreg, sreg);
6819 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
6820 if (mips_opts.micromips)
6821 micromips_add_label ();
6838 if (!mips_opts.micromips)
6840 if (imm_expr.X_op == O_constant
6841 && imm_expr.X_add_number >= -0x200
6842 && imm_expr.X_add_number < 0x200)
6844 macro_build (NULL, s, "t,r,.", treg, sreg, imm_expr.X_add_number);
6853 if (imm_expr.X_op == O_constant
6854 && imm_expr.X_add_number >= -0x8000
6855 && imm_expr.X_add_number < 0x8000)
6857 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
6862 load_register (AT, &imm_expr, dbl);
6863 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
6882 if (imm_expr.X_op == O_constant
6883 && imm_expr.X_add_number >= 0
6884 && imm_expr.X_add_number < 0x10000)
6886 if (mask != M_NOR_I)
6887 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
6890 macro_build (&imm_expr, "ori", "t,r,i",
6891 treg, sreg, BFD_RELOC_LO16);
6892 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
6898 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
6899 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
6903 switch (imm_expr.X_add_number)
6906 macro_build (NULL, "nop", "");
6909 macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
6913 macro_build (NULL, "balign", "t,s,2", treg, sreg,
6914 (int) imm_expr.X_add_number);
6917 as_bad (_("BALIGN immediate not 0, 1, 2 or 3 (%lu)"),
6918 (unsigned long) imm_expr.X_add_number);
6927 gas_assert (mips_opts.micromips);
6928 macro_build_branch_ccl (mask, &offset_expr,
6929 EXTRACT_OPERAND (1, BCC, *ip));
6936 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6942 load_register (treg, &imm_expr, HAVE_64BIT_GPRS);
6947 macro_build_branch_rsrt (mask, &offset_expr, sreg, treg);
6954 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, sreg);
6956 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, treg);
6960 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
6961 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
6962 &offset_expr, AT, ZERO);
6972 macro_build_branch_rs (mask, &offset_expr, sreg);
6978 /* Check for > max integer. */
6979 if (imm_expr.X_op == O_constant && imm_expr.X_add_number >= GPR_SMAX)
6982 /* Result is always false. */
6984 macro_build (NULL, "nop", "");
6986 macro_build_branch_rsrt (M_BNEL, &offset_expr, ZERO, ZERO);
6989 if (imm_expr.X_op != O_constant)
6990 as_bad (_("Unsupported large constant"));
6991 ++imm_expr.X_add_number;
6995 if (mask == M_BGEL_I)
6997 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6999 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ,
7000 &offset_expr, sreg);
7003 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7005 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ,
7006 &offset_expr, sreg);
7009 if (imm_expr.X_op == O_constant && imm_expr.X_add_number <= GPR_SMIN)
7012 /* result is always true */
7013 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
7014 macro_build (&offset_expr, "b", "p");
7019 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7020 &offset_expr, AT, ZERO);
7029 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7030 &offset_expr, ZERO, treg);
7034 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
7035 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7036 &offset_expr, AT, ZERO);
7045 && imm_expr.X_op == O_constant
7046 && imm_expr.X_add_number == -1))
7048 if (imm_expr.X_op != O_constant)
7049 as_bad (_("Unsupported large constant"));
7050 ++imm_expr.X_add_number;
7054 if (mask == M_BGEUL_I)
7056 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7058 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7059 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7060 &offset_expr, sreg, ZERO);
7065 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7066 &offset_expr, AT, ZERO);
7074 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, sreg);
7076 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, treg);
7080 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
7081 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7082 &offset_expr, AT, ZERO);
7090 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7091 &offset_expr, sreg, ZERO);
7097 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
7098 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7099 &offset_expr, AT, ZERO);
7107 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
7109 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, treg);
7113 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
7114 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7115 &offset_expr, AT, ZERO);
7122 if (imm_expr.X_op == O_constant && imm_expr.X_add_number >= GPR_SMAX)
7124 if (imm_expr.X_op != O_constant)
7125 as_bad (_("Unsupported large constant"));
7126 ++imm_expr.X_add_number;
7130 if (mask == M_BLTL_I)
7132 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7133 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
7134 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7135 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, sreg);
7140 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7141 &offset_expr, AT, ZERO);
7149 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7150 &offset_expr, sreg, ZERO);
7156 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
7157 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7158 &offset_expr, AT, ZERO);
7167 && imm_expr.X_op == O_constant
7168 && imm_expr.X_add_number == -1))
7170 if (imm_expr.X_op != O_constant)
7171 as_bad (_("Unsupported large constant"));
7172 ++imm_expr.X_add_number;
7176 if (mask == M_BLTUL_I)
7178 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7180 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7181 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
7182 &offset_expr, sreg, ZERO);
7187 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7188 &offset_expr, AT, ZERO);
7196 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, sreg);
7198 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, treg);
7202 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
7203 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7204 &offset_expr, AT, ZERO);
7214 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7215 &offset_expr, ZERO, treg);
7219 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
7220 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
7221 &offset_expr, AT, ZERO);
7227 /* Use unsigned arithmetic. */
7231 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
7233 as_bad (_("Unsupported large constant"));
7238 pos = imm_expr.X_add_number;
7239 size = imm2_expr.X_add_number;
7244 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
7247 if (size == 0 || size > 64 || (pos + size - 1) > 63)
7249 as_bad (_("Improper extract size (%lu, position %lu)"),
7250 (unsigned long) size, (unsigned long) pos);
7254 if (size <= 32 && pos < 32)
7259 else if (size <= 32)
7269 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
7276 /* Use unsigned arithmetic. */
7280 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
7282 as_bad (_("Unsupported large constant"));
7287 pos = imm_expr.X_add_number;
7288 size = imm2_expr.X_add_number;
7293 as_bad (_("Improper position (%lu)"), (unsigned long) pos);
7296 if (size == 0 || size > 64 || (pos + size - 1) > 63)
7298 as_bad (_("Improper insert size (%lu, position %lu)"),
7299 (unsigned long) size, (unsigned long) pos);
7303 if (pos < 32 && (pos + size - 1) < 32)
7318 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
7319 (int) (pos + size - 1));
7335 as_warn (_("Divide by zero."));
7337 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
7339 macro_build (NULL, "break", BRK_FMT, 7);
7346 macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
7347 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
7351 if (mips_opts.micromips)
7352 micromips_label_expr (&label_expr);
7354 label_expr.X_add_number = 8;
7355 macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
7356 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
7357 macro_build (NULL, "break", BRK_FMT, 7);
7358 if (mips_opts.micromips)
7359 micromips_add_label ();
7361 expr1.X_add_number = -1;
7363 load_register (AT, &expr1, dbl);
7364 if (mips_opts.micromips)
7365 micromips_label_expr (&label_expr);
7367 label_expr.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
7368 macro_build (&label_expr, "bne", "s,t,p", treg, AT);
7371 expr1.X_add_number = 1;
7372 load_register (AT, &expr1, dbl);
7373 macro_build (NULL, "dsll32", SHFT_FMT, AT, AT, 31);
7377 expr1.X_add_number = 0x80000000;
7378 macro_build (&expr1, "lui", LUI_FMT, AT, BFD_RELOC_HI16);
7382 macro_build (NULL, "teq", TRAP_FMT, sreg, AT, 6);
7383 /* We want to close the noreorder block as soon as possible, so
7384 that later insns are available for delay slot filling. */
7389 if (mips_opts.micromips)
7390 micromips_label_expr (&label_expr);
7392 label_expr.X_add_number = 8;
7393 macro_build (&label_expr, "bne", "s,t,p", sreg, AT);
7394 macro_build (NULL, "nop", "");
7396 /* We want to close the noreorder block as soon as possible, so
7397 that later insns are available for delay slot filling. */
7400 macro_build (NULL, "break", BRK_FMT, 6);
7402 if (mips_opts.micromips)
7403 micromips_add_label ();
7404 macro_build (NULL, s, MFHL_FMT, dreg);
7443 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7445 as_warn (_("Divide by zero."));
7447 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
7449 macro_build (NULL, "break", BRK_FMT, 7);
7452 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
7454 if (strcmp (s2, "mflo") == 0)
7455 move_register (dreg, sreg);
7457 move_register (dreg, ZERO);
7460 if (imm_expr.X_op == O_constant
7461 && imm_expr.X_add_number == -1
7462 && s[strlen (s) - 1] != 'u')
7464 if (strcmp (s2, "mflo") == 0)
7466 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
7469 move_register (dreg, ZERO);
7474 load_register (AT, &imm_expr, dbl);
7475 macro_build (NULL, s, "z,s,t", sreg, AT);
7476 macro_build (NULL, s2, MFHL_FMT, dreg);
7498 macro_build (NULL, "teq", TRAP_FMT, treg, ZERO, 7);
7499 macro_build (NULL, s, "z,s,t", sreg, treg);
7500 /* We want to close the noreorder block as soon as possible, so
7501 that later insns are available for delay slot filling. */
7506 if (mips_opts.micromips)
7507 micromips_label_expr (&label_expr);
7509 label_expr.X_add_number = 8;
7510 macro_build (&label_expr, "bne", "s,t,p", treg, ZERO);
7511 macro_build (NULL, s, "z,s,t", sreg, treg);
7513 /* We want to close the noreorder block as soon as possible, so
7514 that later insns are available for delay slot filling. */
7516 macro_build (NULL, "break", BRK_FMT, 7);
7517 if (mips_opts.micromips)
7518 micromips_add_label ();
7520 macro_build (NULL, s2, MFHL_FMT, dreg);
7532 /* Load the address of a symbol into a register. If breg is not
7533 zero, we then add a base register to it. */
7535 if (dbl && HAVE_32BIT_GPRS)
7536 as_warn (_("dla used to load 32-bit register"));
7538 if (!dbl && HAVE_64BIT_OBJECTS)
7539 as_warn (_("la used to load 64-bit address"));
7541 if (offset_expr.X_op == O_constant
7542 && offset_expr.X_add_number >= -0x8000
7543 && offset_expr.X_add_number < 0x8000)
7545 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
7546 "t,r,j", treg, sreg, BFD_RELOC_LO16);
7550 if (mips_opts.at && (treg == breg))
7560 if (offset_expr.X_op != O_symbol
7561 && offset_expr.X_op != O_constant)
7563 as_bad (_("Expression too complex"));
7564 offset_expr.X_op = O_constant;
7567 if (offset_expr.X_op == O_constant)
7568 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
7569 else if (mips_pic == NO_PIC)
7571 /* If this is a reference to a GP relative symbol, we want
7572 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
7574 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
7575 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7576 If we have a constant, we need two instructions anyhow,
7577 so we may as well always use the latter form.
7579 With 64bit address space and a usable $at we want
7580 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
7581 lui $at,<sym> (BFD_RELOC_HI16_S)
7582 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
7583 daddiu $at,<sym> (BFD_RELOC_LO16)
7585 daddu $tempreg,$tempreg,$at
7587 If $at is already in use, we use a path which is suboptimal
7588 on superscalar processors.
7589 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
7590 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
7592 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
7594 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
7596 For GP relative symbols in 64bit address space we can use
7597 the same sequence as in 32bit address space. */
7598 if (HAVE_64BIT_SYMBOLS)
7600 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7601 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7603 relax_start (offset_expr.X_add_symbol);
7604 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7605 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
7609 if (used_at == 0 && mips_opts.at)
7611 macro_build (&offset_expr, "lui", LUI_FMT,
7612 tempreg, BFD_RELOC_MIPS_HIGHEST);
7613 macro_build (&offset_expr, "lui", LUI_FMT,
7614 AT, BFD_RELOC_HI16_S);
7615 macro_build (&offset_expr, "daddiu", "t,r,j",
7616 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
7617 macro_build (&offset_expr, "daddiu", "t,r,j",
7618 AT, AT, BFD_RELOC_LO16);
7619 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
7620 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
7625 macro_build (&offset_expr, "lui", LUI_FMT,
7626 tempreg, BFD_RELOC_MIPS_HIGHEST);
7627 macro_build (&offset_expr, "daddiu", "t,r,j",
7628 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
7629 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
7630 macro_build (&offset_expr, "daddiu", "t,r,j",
7631 tempreg, tempreg, BFD_RELOC_HI16_S);
7632 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
7633 macro_build (&offset_expr, "daddiu", "t,r,j",
7634 tempreg, tempreg, BFD_RELOC_LO16);
7637 if (mips_relax.sequence)
7642 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7643 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7645 relax_start (offset_expr.X_add_symbol);
7646 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7647 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
7650 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
7651 as_bad (_("Offset too large"));
7652 macro_build_lui (&offset_expr, tempreg);
7653 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7654 tempreg, tempreg, BFD_RELOC_LO16);
7655 if (mips_relax.sequence)
7659 else if (!mips_big_got && !HAVE_NEWABI)
7661 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
7663 /* If this is a reference to an external symbol, and there
7664 is no constant, we want
7665 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7666 or for lca or if tempreg is PIC_CALL_REG
7667 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
7668 For a local symbol, we want
7669 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7671 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7673 If we have a small constant, and this is a reference to
7674 an external symbol, we want
7675 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7677 addiu $tempreg,$tempreg,<constant>
7678 For a local symbol, we want the same instruction
7679 sequence, but we output a BFD_RELOC_LO16 reloc on the
7682 If we have a large constant, and this is a reference to
7683 an external symbol, we want
7684 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7685 lui $at,<hiconstant>
7686 addiu $at,$at,<loconstant>
7687 addu $tempreg,$tempreg,$at
7688 For a local symbol, we want the same instruction
7689 sequence, but we output a BFD_RELOC_LO16 reloc on the
7693 if (offset_expr.X_add_number == 0)
7695 if (mips_pic == SVR4_PIC
7697 && (call || tempreg == PIC_CALL_REG))
7698 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
7700 relax_start (offset_expr.X_add_symbol);
7701 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7702 lw_reloc_type, mips_gp_register);
7705 /* We're going to put in an addu instruction using
7706 tempreg, so we may as well insert the nop right
7711 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7712 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
7714 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7715 tempreg, tempreg, BFD_RELOC_LO16);
7717 /* FIXME: If breg == 0, and the next instruction uses
7718 $tempreg, then if this variant case is used an extra
7719 nop will be generated. */
7721 else if (offset_expr.X_add_number >= -0x8000
7722 && offset_expr.X_add_number < 0x8000)
7724 load_got_offset (tempreg, &offset_expr);
7726 add_got_offset (tempreg, &offset_expr);
7730 expr1.X_add_number = offset_expr.X_add_number;
7731 offset_expr.X_add_number =
7732 SEXT_16BIT (offset_expr.X_add_number);
7733 load_got_offset (tempreg, &offset_expr);
7734 offset_expr.X_add_number = expr1.X_add_number;
7735 /* If we are going to add in a base register, and the
7736 target register and the base register are the same,
7737 then we are using AT as a temporary register. Since
7738 we want to load the constant into AT, we add our
7739 current AT (from the global offset table) and the
7740 register into the register now, and pretend we were
7741 not using a base register. */
7745 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7750 add_got_offset_hilo (tempreg, &offset_expr, AT);
7754 else if (!mips_big_got && HAVE_NEWABI)
7756 int add_breg_early = 0;
7758 /* If this is a reference to an external, and there is no
7759 constant, or local symbol (*), with or without a
7761 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7762 or for lca or if tempreg is PIC_CALL_REG
7763 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
7765 If we have a small constant, and this is a reference to
7766 an external symbol, we want
7767 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7768 addiu $tempreg,$tempreg,<constant>
7770 If we have a large constant, and this is a reference to
7771 an external symbol, we want
7772 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
7773 lui $at,<hiconstant>
7774 addiu $at,$at,<loconstant>
7775 addu $tempreg,$tempreg,$at
7777 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
7778 local symbols, even though it introduces an additional
7781 if (offset_expr.X_add_number)
7783 expr1.X_add_number = offset_expr.X_add_number;
7784 offset_expr.X_add_number = 0;
7786 relax_start (offset_expr.X_add_symbol);
7787 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7788 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7790 if (expr1.X_add_number >= -0x8000
7791 && expr1.X_add_number < 0x8000)
7793 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
7794 tempreg, tempreg, BFD_RELOC_LO16);
7796 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
7798 /* If we are going to add in a base register, and the
7799 target register and the base register are the same,
7800 then we are using AT as a temporary register. Since
7801 we want to load the constant into AT, we add our
7802 current AT (from the global offset table) and the
7803 register into the register now, and pretend we were
7804 not using a base register. */
7809 gas_assert (tempreg == AT);
7810 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7816 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
7817 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7823 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
7826 offset_expr.X_add_number = expr1.X_add_number;
7828 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7829 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7832 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7833 treg, tempreg, breg);
7839 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
7841 relax_start (offset_expr.X_add_symbol);
7842 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7843 BFD_RELOC_MIPS_CALL16, mips_gp_register);
7845 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7846 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7851 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7852 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
7855 else if (mips_big_got && !HAVE_NEWABI)
7858 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
7859 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
7860 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
7862 /* This is the large GOT case. If this is a reference to an
7863 external symbol, and there is no constant, we want
7864 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7865 addu $tempreg,$tempreg,$gp
7866 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7867 or for lca or if tempreg is PIC_CALL_REG
7868 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
7869 addu $tempreg,$tempreg,$gp
7870 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
7871 For a local symbol, we want
7872 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7874 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
7876 If we have a small constant, and this is a reference to
7877 an external symbol, we want
7878 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7879 addu $tempreg,$tempreg,$gp
7880 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7882 addiu $tempreg,$tempreg,<constant>
7883 For a local symbol, we want
7884 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7886 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
7888 If we have a large constant, and this is a reference to
7889 an external symbol, we want
7890 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7891 addu $tempreg,$tempreg,$gp
7892 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
7893 lui $at,<hiconstant>
7894 addiu $at,$at,<loconstant>
7895 addu $tempreg,$tempreg,$at
7896 For a local symbol, we want
7897 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7898 lui $at,<hiconstant>
7899 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
7900 addu $tempreg,$tempreg,$at
7903 expr1.X_add_number = offset_expr.X_add_number;
7904 offset_expr.X_add_number = 0;
7905 relax_start (offset_expr.X_add_symbol);
7906 gpdelay = reg_needs_delay (mips_gp_register);
7907 if (expr1.X_add_number == 0 && breg == 0
7908 && (call || tempreg == PIC_CALL_REG))
7910 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
7911 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
7913 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
7914 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7915 tempreg, tempreg, mips_gp_register);
7916 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7917 tempreg, lw_reloc_type, tempreg);
7918 if (expr1.X_add_number == 0)
7922 /* We're going to put in an addu instruction using
7923 tempreg, so we may as well insert the nop right
7928 else if (expr1.X_add_number >= -0x8000
7929 && expr1.X_add_number < 0x8000)
7932 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
7933 tempreg, tempreg, BFD_RELOC_LO16);
7937 /* If we are going to add in a base register, and the
7938 target register and the base register are the same,
7939 then we are using AT as a temporary register. Since
7940 we want to load the constant into AT, we add our
7941 current AT (from the global offset table) and the
7942 register into the register now, and pretend we were
7943 not using a base register. */
7948 gas_assert (tempreg == AT);
7950 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7955 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
7956 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
7960 offset_expr.X_add_number = SEXT_16BIT (expr1.X_add_number);
7965 /* This is needed because this instruction uses $gp, but
7966 the first instruction on the main stream does not. */
7967 macro_build (NULL, "nop", "");
7970 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
7971 local_reloc_type, mips_gp_register);
7972 if (expr1.X_add_number >= -0x8000
7973 && expr1.X_add_number < 0x8000)
7976 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
7977 tempreg, tempreg, BFD_RELOC_LO16);
7978 /* FIXME: If add_number is 0, and there was no base
7979 register, the external symbol case ended with a load,
7980 so if the symbol turns out to not be external, and
7981 the next instruction uses tempreg, an unnecessary nop
7982 will be inserted. */
7988 /* We must add in the base register now, as in the
7989 external symbol case. */
7990 gas_assert (tempreg == AT);
7992 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7995 /* We set breg to 0 because we have arranged to add
7996 it in in both cases. */
8000 macro_build_lui (&expr1, AT);
8001 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8002 AT, AT, BFD_RELOC_LO16);
8003 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8004 tempreg, tempreg, AT);
8009 else if (mips_big_got && HAVE_NEWABI)
8011 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
8012 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
8013 int add_breg_early = 0;
8015 /* This is the large GOT case. If this is a reference to an
8016 external symbol, and there is no constant, we want
8017 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8018 add $tempreg,$tempreg,$gp
8019 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8020 or for lca or if tempreg is PIC_CALL_REG
8021 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
8022 add $tempreg,$tempreg,$gp
8023 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
8025 If we have a small constant, and this is a reference to
8026 an external symbol, we want
8027 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8028 add $tempreg,$tempreg,$gp
8029 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8030 addi $tempreg,$tempreg,<constant>
8032 If we have a large constant, and this is a reference to
8033 an external symbol, we want
8034 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8035 addu $tempreg,$tempreg,$gp
8036 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
8037 lui $at,<hiconstant>
8038 addi $at,$at,<loconstant>
8039 add $tempreg,$tempreg,$at
8041 If we have NewABI, and we know it's a local symbol, we want
8042 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
8043 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
8044 otherwise we have to resort to GOT_HI16/GOT_LO16. */
8046 relax_start (offset_expr.X_add_symbol);
8048 expr1.X_add_number = offset_expr.X_add_number;
8049 offset_expr.X_add_number = 0;
8051 if (expr1.X_add_number == 0 && breg == 0
8052 && (call || tempreg == PIC_CALL_REG))
8054 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
8055 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
8057 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
8058 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8059 tempreg, tempreg, mips_gp_register);
8060 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8061 tempreg, lw_reloc_type, tempreg);
8063 if (expr1.X_add_number == 0)
8065 else if (expr1.X_add_number >= -0x8000
8066 && expr1.X_add_number < 0x8000)
8068 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
8069 tempreg, tempreg, BFD_RELOC_LO16);
8071 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
8073 /* If we are going to add in a base register, and the
8074 target register and the base register are the same,
8075 then we are using AT as a temporary register. Since
8076 we want to load the constant into AT, we add our
8077 current AT (from the global offset table) and the
8078 register into the register now, and pretend we were
8079 not using a base register. */
8084 gas_assert (tempreg == AT);
8085 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8091 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
8092 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
8097 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
8100 offset_expr.X_add_number = expr1.X_add_number;
8101 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
8102 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
8103 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
8104 tempreg, BFD_RELOC_MIPS_GOT_OFST);
8107 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8108 treg, tempreg, breg);
8118 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
8122 gas_assert (!mips_opts.micromips);
8124 unsigned long temp = (treg << 16) | (0x01);
8125 macro_build (NULL, "c2", "C", temp);
8130 gas_assert (!mips_opts.micromips);
8132 unsigned long temp = (0x02);
8133 macro_build (NULL, "c2", "C", temp);
8138 gas_assert (!mips_opts.micromips);
8140 unsigned long temp = (treg << 16) | (0x02);
8141 macro_build (NULL, "c2", "C", temp);
8146 gas_assert (!mips_opts.micromips);
8147 macro_build (NULL, "c2", "C", 3);
8151 gas_assert (!mips_opts.micromips);
8153 unsigned long temp = (treg << 16) | 0x03;
8154 macro_build (NULL, "c2", "C", temp);
8159 /* The j instruction may not be used in PIC code, since it
8160 requires an absolute address. We convert it to a b
8162 if (mips_pic == NO_PIC)
8163 macro_build (&offset_expr, "j", "a");
8165 macro_build (&offset_expr, "b", "p");
8168 /* The jal instructions must be handled as macros because when
8169 generating PIC code they expand to multi-instruction
8170 sequences. Normally they are simple instructions. */
8175 gas_assert (mips_opts.micromips);
8176 if (mips_opts.insn32)
8178 as_bad (_("Opcode not supported in the `insn32' mode `%s'"), str);
8188 if (mips_pic == NO_PIC)
8190 s = jals ? "jalrs" : "jalr";
8191 if (mips_opts.micromips
8192 && !mips_opts.insn32
8194 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
8195 macro_build (NULL, s, "mj", sreg);
8197 macro_build (NULL, s, JALR_FMT, dreg, sreg);
8201 int cprestore = (mips_pic == SVR4_PIC && !HAVE_NEWABI
8202 && mips_cprestore_offset >= 0);
8204 if (sreg != PIC_CALL_REG)
8205 as_warn (_("MIPS PIC call to register other than $25"));
8207 s = ((mips_opts.micromips
8208 && !mips_opts.insn32
8209 && (!mips_opts.noreorder || cprestore))
8210 ? "jalrs" : "jalr");
8211 if (mips_opts.micromips
8212 && !mips_opts.insn32
8214 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
8215 macro_build (NULL, s, "mj", sreg);
8217 macro_build (NULL, s, JALR_FMT, dreg, sreg);
8218 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
8220 if (mips_cprestore_offset < 0)
8221 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8224 if (!mips_frame_reg_valid)
8226 as_warn (_("No .frame pseudo-op used in PIC code"));
8227 /* Quiet this warning. */
8228 mips_frame_reg_valid = 1;
8230 if (!mips_cprestore_valid)
8232 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8233 /* Quiet this warning. */
8234 mips_cprestore_valid = 1;
8236 if (mips_opts.noreorder)
8237 macro_build (NULL, "nop", "");
8238 expr1.X_add_number = mips_cprestore_offset;
8239 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
8242 HAVE_64BIT_ADDRESSES);
8250 gas_assert (mips_opts.micromips);
8251 if (mips_opts.insn32)
8253 as_bad (_("Opcode not supported in the `insn32' mode `%s'"), str);
8259 if (mips_pic == NO_PIC)
8260 macro_build (&offset_expr, jals ? "jals" : "jal", "a");
8261 else if (mips_pic == SVR4_PIC)
8263 /* If this is a reference to an external symbol, and we are
8264 using a small GOT, we want
8265 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
8269 lw $gp,cprestore($sp)
8270 The cprestore value is set using the .cprestore
8271 pseudo-op. If we are using a big GOT, we want
8272 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
8274 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
8278 lw $gp,cprestore($sp)
8279 If the symbol is not external, we want
8280 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
8282 addiu $25,$25,<sym> (BFD_RELOC_LO16)
8285 lw $gp,cprestore($sp)
8287 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
8288 sequences above, minus nops, unless the symbol is local,
8289 which enables us to use GOT_PAGE/GOT_OFST (big got) or
8295 relax_start (offset_expr.X_add_symbol);
8296 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8297 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
8300 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8301 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
8307 relax_start (offset_expr.X_add_symbol);
8308 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
8309 BFD_RELOC_MIPS_CALL_HI16);
8310 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
8311 PIC_CALL_REG, mips_gp_register);
8312 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8313 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
8316 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8317 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
8319 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8320 PIC_CALL_REG, PIC_CALL_REG,
8321 BFD_RELOC_MIPS_GOT_OFST);
8325 macro_build_jalr (&offset_expr, 0);
8329 relax_start (offset_expr.X_add_symbol);
8332 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8333 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
8342 gpdelay = reg_needs_delay (mips_gp_register);
8343 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
8344 BFD_RELOC_MIPS_CALL_HI16);
8345 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
8346 PIC_CALL_REG, mips_gp_register);
8347 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8348 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
8353 macro_build (NULL, "nop", "");
8355 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
8356 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
8359 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8360 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
8362 macro_build_jalr (&offset_expr, mips_cprestore_offset >= 0);
8364 if (mips_cprestore_offset < 0)
8365 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8368 if (!mips_frame_reg_valid)
8370 as_warn (_("No .frame pseudo-op used in PIC code"));
8371 /* Quiet this warning. */
8372 mips_frame_reg_valid = 1;
8374 if (!mips_cprestore_valid)
8376 as_warn (_("No .cprestore pseudo-op used in PIC code"));
8377 /* Quiet this warning. */
8378 mips_cprestore_valid = 1;
8380 if (mips_opts.noreorder)
8381 macro_build (NULL, "nop", "");
8382 expr1.X_add_number = mips_cprestore_offset;
8383 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
8386 HAVE_64BIT_ADDRESSES);
8390 else if (mips_pic == VXWORKS_PIC)
8391 as_bad (_("Non-PIC jump used in PIC library"));
8499 treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
8507 treg = EXTRACT_OPERAND (mips_opts.micromips, 3BITPOS, *ip);
8538 gas_assert (!mips_opts.micromips);
8541 /* Itbl support may require additional care here. */
8548 /* Itbl support may require additional care here. */
8556 offbits = (mips_opts.micromips ? 12 : 16);
8557 /* Itbl support may require additional care here. */
8562 gas_assert (!mips_opts.micromips);
8565 /* Itbl support may require additional care here. */
8573 offbits = (mips_opts.micromips ? 12 : 16);
8580 offbits = (mips_opts.micromips ? 12 : 16);
8586 /* Itbl support may require additional care here. */
8594 offbits = (mips_opts.micromips ? 12 : 16);
8595 /* Itbl support may require additional care here. */
8602 /* Itbl support may require additional care here. */
8609 /* Itbl support may require additional care here. */
8617 offbits = (mips_opts.micromips ? 12 : 16);
8624 offbits = (mips_opts.micromips ? 12 : 16);
8631 offbits = (mips_opts.micromips ? 12 : 16);
8638 offbits = (mips_opts.micromips ? 12 : 16);
8645 offbits = (mips_opts.micromips ? 12 : 16);
8650 gas_assert (mips_opts.micromips);
8659 gas_assert (mips_opts.micromips);
8668 gas_assert (mips_opts.micromips);
8676 gas_assert (mips_opts.micromips);
8683 /* We don't want to use $0 as tempreg. */
8684 if (breg == treg + lp || treg + lp == ZERO)
8687 tempreg = treg + lp;
8707 gas_assert (!mips_opts.micromips);
8710 /* Itbl support may require additional care here. */
8717 /* Itbl support may require additional care here. */
8725 offbits = (mips_opts.micromips ? 12 : 16);
8726 /* Itbl support may require additional care here. */
8731 gas_assert (!mips_opts.micromips);
8734 /* Itbl support may require additional care here. */
8742 offbits = (mips_opts.micromips ? 12 : 16);
8749 offbits = (mips_opts.micromips ? 12 : 16);
8756 offbits = (mips_opts.micromips ? 12 : 16);
8763 offbits = (mips_opts.micromips ? 12 : 16);
8769 fmt = mips_opts.micromips ? "k,~(b)" : "k,o(b)";
8770 offbits = (mips_opts.micromips ? 12 : 16);
8783 fmt = !mips_opts.micromips ? "k,o(b)" : "k,~(b)";
8784 offbits = (mips_opts.micromips ? 12 : 16);
8798 /* Itbl support may require additional care here. */
8805 offbits = (mips_opts.micromips ? 12 : 16);
8806 /* Itbl support may require additional care here. */
8813 /* Itbl support may require additional care here. */
8818 gas_assert (!mips_opts.micromips);
8821 /* Itbl support may require additional care here. */
8829 offbits = (mips_opts.micromips ? 12 : 16);
8836 offbits = (mips_opts.micromips ? 12 : 16);
8841 gas_assert (mips_opts.micromips);
8849 gas_assert (mips_opts.micromips);
8857 gas_assert (mips_opts.micromips);
8865 gas_assert (mips_opts.micromips);
8874 if (offset_expr.X_op != O_constant
8875 && offset_expr.X_op != O_symbol)
8877 as_bad (_("Expression too complex"));
8878 offset_expr.X_op = O_constant;
8881 if (HAVE_32BIT_ADDRESSES
8882 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
8886 sprintf_vma (value, offset_expr.X_add_number);
8887 as_bad (_("Number (0x%s) larger than 32 bits"), value);
8890 /* A constant expression in PIC code can be handled just as it
8891 is in non PIC code. */
8892 if (offset_expr.X_op == O_constant)
8896 expr1.X_add_number = offset_expr.X_add_number;
8897 normalize_address_expr (&expr1);
8898 if ((offbits == 0 || offbits == 16)
8899 && !IS_SEXT_16BIT_NUM (expr1.X_add_number))
8901 expr1.X_add_number = ((expr1.X_add_number + 0x8000)
8902 & ~(bfd_vma) 0xffff);
8905 else if (offbits == 12 && !IS_SEXT_12BIT_NUM (expr1.X_add_number))
8907 expr1.X_add_number = ((expr1.X_add_number + 0x800)
8908 & ~(bfd_vma) 0xfff);
8911 else if (offbits == 9 && !IS_SEXT_9BIT_NUM (expr1.X_add_number))
8913 expr1.X_add_number = ((expr1.X_add_number + 0x100)
8914 & ~(bfd_vma) 0x1ff);
8919 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
8921 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8922 tempreg, tempreg, breg);
8927 if (offset_expr.X_add_number == 0)
8930 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
8931 "t,r,j", tempreg, breg, BFD_RELOC_LO16);
8932 macro_build (NULL, s, fmt, treg, tempreg);
8934 else if (offbits == 16)
8935 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, breg);
8937 macro_build (NULL, s, fmt,
8938 treg, (unsigned long) offset_expr.X_add_number, breg);
8940 else if (offbits != 16)
8942 /* The offset field is too narrow to be used for a low-part
8943 relocation, so load the whole address into the auxillary
8944 register. In the case of "A(b)" addresses, we first load
8945 absolute address "A" into the register and then add base
8946 register "b". In the case of "o(b)" addresses, we simply
8947 need to add 16-bit offset "o" to base register "b", and
8948 offset_reloc already contains the relocations associated
8952 load_address (tempreg, &offset_expr, &used_at);
8954 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8955 tempreg, tempreg, breg);
8958 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
8960 offset_reloc[0], offset_reloc[1], offset_reloc[2]);
8961 expr1.X_add_number = 0;
8963 macro_build (NULL, s, fmt, treg, tempreg);
8965 macro_build (NULL, s, fmt,
8966 treg, (unsigned long) expr1.X_add_number, tempreg);
8968 else if (mips_pic == NO_PIC)
8970 /* If this is a reference to a GP relative symbol, and there
8971 is no base register, we want
8972 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
8973 Otherwise, if there is no base register, we want
8974 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
8975 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8976 If we have a constant, we need two instructions anyhow,
8977 so we always use the latter form.
8979 If we have a base register, and this is a reference to a
8980 GP relative symbol, we want
8981 addu $tempreg,$breg,$gp
8982 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
8984 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
8985 addu $tempreg,$tempreg,$breg
8986 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8987 With a constant we always use the latter case.
8989 With 64bit address space and no base register and $at usable,
8991 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8992 lui $at,<sym> (BFD_RELOC_HI16_S)
8993 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
8996 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
8997 If we have a base register, we want
8998 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8999 lui $at,<sym> (BFD_RELOC_HI16_S)
9000 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
9004 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
9006 Without $at we can't generate the optimal path for superscalar
9007 processors here since this would require two temporary registers.
9008 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
9009 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
9011 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
9013 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
9014 If we have a base register, we want
9015 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
9016 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
9018 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
9020 daddu $tempreg,$tempreg,$breg
9021 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
9023 For GP relative symbols in 64bit address space we can use
9024 the same sequence as in 32bit address space. */
9025 if (HAVE_64BIT_SYMBOLS)
9027 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9028 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9030 relax_start (offset_expr.X_add_symbol);
9033 macro_build (&offset_expr, s, fmt, treg,
9034 BFD_RELOC_GPREL16, mips_gp_register);
9038 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9039 tempreg, breg, mips_gp_register);
9040 macro_build (&offset_expr, s, fmt, treg,
9041 BFD_RELOC_GPREL16, tempreg);
9046 if (used_at == 0 && mips_opts.at)
9048 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
9049 BFD_RELOC_MIPS_HIGHEST);
9050 macro_build (&offset_expr, "lui", LUI_FMT, AT,
9052 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
9053 tempreg, BFD_RELOC_MIPS_HIGHER);
9055 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
9056 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
9057 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
9058 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
9064 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
9065 BFD_RELOC_MIPS_HIGHEST);
9066 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
9067 tempreg, BFD_RELOC_MIPS_HIGHER);
9068 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
9069 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
9070 tempreg, BFD_RELOC_HI16_S);
9071 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
9073 macro_build (NULL, "daddu", "d,v,t",
9074 tempreg, tempreg, breg);
9075 macro_build (&offset_expr, s, fmt, treg,
9076 BFD_RELOC_LO16, tempreg);
9079 if (mips_relax.sequence)
9086 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9087 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9089 relax_start (offset_expr.X_add_symbol);
9090 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
9094 macro_build_lui (&offset_expr, tempreg);
9095 macro_build (&offset_expr, s, fmt, treg,
9096 BFD_RELOC_LO16, tempreg);
9097 if (mips_relax.sequence)
9102 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9103 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9105 relax_start (offset_expr.X_add_symbol);
9106 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9107 tempreg, breg, mips_gp_register);
9108 macro_build (&offset_expr, s, fmt, treg,
9109 BFD_RELOC_GPREL16, tempreg);
9112 macro_build_lui (&offset_expr, tempreg);
9113 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9114 tempreg, tempreg, breg);
9115 macro_build (&offset_expr, s, fmt, treg,
9116 BFD_RELOC_LO16, tempreg);
9117 if (mips_relax.sequence)
9121 else if (!mips_big_got)
9123 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
9125 /* If this is a reference to an external symbol, we want
9126 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9128 <op> $treg,0($tempreg)
9130 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9132 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
9133 <op> $treg,0($tempreg)
9136 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
9137 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
9139 If there is a base register, we add it to $tempreg before
9140 the <op>. If there is a constant, we stick it in the
9141 <op> instruction. We don't handle constants larger than
9142 16 bits, because we have no way to load the upper 16 bits
9143 (actually, we could handle them for the subset of cases
9144 in which we are not using $at). */
9145 gas_assert (offset_expr.X_op == O_symbol);
9148 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9149 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
9151 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9152 tempreg, tempreg, breg);
9153 macro_build (&offset_expr, s, fmt, treg,
9154 BFD_RELOC_MIPS_GOT_OFST, tempreg);
9157 expr1.X_add_number = offset_expr.X_add_number;
9158 offset_expr.X_add_number = 0;
9159 if (expr1.X_add_number < -0x8000
9160 || expr1.X_add_number >= 0x8000)
9161 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9162 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9163 lw_reloc_type, mips_gp_register);
9165 relax_start (offset_expr.X_add_symbol);
9167 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
9168 tempreg, BFD_RELOC_LO16);
9171 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9172 tempreg, tempreg, breg);
9173 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
9175 else if (mips_big_got && !HAVE_NEWABI)
9179 /* If this is a reference to an external symbol, we want
9180 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9181 addu $tempreg,$tempreg,$gp
9182 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
9183 <op> $treg,0($tempreg)
9185 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9187 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
9188 <op> $treg,0($tempreg)
9189 If there is a base register, we add it to $tempreg before
9190 the <op>. If there is a constant, we stick it in the
9191 <op> instruction. We don't handle constants larger than
9192 16 bits, because we have no way to load the upper 16 bits
9193 (actually, we could handle them for the subset of cases
9194 in which we are not using $at). */
9195 gas_assert (offset_expr.X_op == O_symbol);
9196 expr1.X_add_number = offset_expr.X_add_number;
9197 offset_expr.X_add_number = 0;
9198 if (expr1.X_add_number < -0x8000
9199 || expr1.X_add_number >= 0x8000)
9200 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9201 gpdelay = reg_needs_delay (mips_gp_register);
9202 relax_start (offset_expr.X_add_symbol);
9203 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
9204 BFD_RELOC_MIPS_GOT_HI16);
9205 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
9207 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9208 BFD_RELOC_MIPS_GOT_LO16, tempreg);
9211 macro_build (NULL, "nop", "");
9212 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9213 BFD_RELOC_MIPS_GOT16, mips_gp_register);
9215 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
9216 tempreg, BFD_RELOC_LO16);
9220 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9221 tempreg, tempreg, breg);
9222 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
9224 else if (mips_big_got && HAVE_NEWABI)
9226 /* If this is a reference to an external symbol, we want
9227 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9228 add $tempreg,$tempreg,$gp
9229 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
9230 <op> $treg,<ofst>($tempreg)
9231 Otherwise, for local symbols, we want:
9232 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
9233 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
9234 gas_assert (offset_expr.X_op == O_symbol);
9235 expr1.X_add_number = offset_expr.X_add_number;
9236 offset_expr.X_add_number = 0;
9237 if (expr1.X_add_number < -0x8000
9238 || expr1.X_add_number >= 0x8000)
9239 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9240 relax_start (offset_expr.X_add_symbol);
9241 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
9242 BFD_RELOC_MIPS_GOT_HI16);
9243 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
9245 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9246 BFD_RELOC_MIPS_GOT_LO16, tempreg);
9248 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9249 tempreg, tempreg, breg);
9250 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
9253 offset_expr.X_add_number = expr1.X_add_number;
9254 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9255 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
9257 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9258 tempreg, tempreg, breg);
9259 macro_build (&offset_expr, s, fmt, treg,
9260 BFD_RELOC_MIPS_GOT_OFST, tempreg);
9269 gas_assert (mips_opts.micromips);
9270 gas_assert (mips_opts.insn32);
9272 macro_build (NULL, "jr", "s", RA);
9273 expr1.X_add_number = EXTRACT_OPERAND (1, IMMP, *ip) << 2;
9274 macro_build (&expr1, "addiu", "t,r,j", SP, SP, BFD_RELOC_LO16);
9279 gas_assert (mips_opts.micromips);
9280 gas_assert (mips_opts.insn32);
9281 macro_build (NULL, "jr", "s", sreg);
9282 if (mips_opts.noreorder)
9283 macro_build (NULL, "nop", "");
9288 load_register (treg, &imm_expr, 0);
9292 load_register (treg, &imm_expr, 1);
9296 if (imm_expr.X_op == O_constant)
9299 load_register (AT, &imm_expr, 0);
9300 macro_build (NULL, "mtc1", "t,G", AT, treg);
9305 gas_assert (offset_expr.X_op == O_symbol
9306 && strcmp (segment_name (S_GET_SEGMENT
9307 (offset_expr.X_add_symbol)),
9309 && offset_expr.X_add_number == 0);
9310 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
9311 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
9316 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
9317 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
9318 order 32 bits of the value and the low order 32 bits are either
9319 zero or in OFFSET_EXPR. */
9320 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
9322 if (HAVE_64BIT_GPRS)
9323 load_register (treg, &imm_expr, 1);
9328 if (target_big_endian)
9340 load_register (hreg, &imm_expr, 0);
9343 if (offset_expr.X_op == O_absent)
9344 move_register (lreg, 0);
9347 gas_assert (offset_expr.X_op == O_constant);
9348 load_register (lreg, &offset_expr, 0);
9355 /* We know that sym is in the .rdata section. First we get the
9356 upper 16 bits of the address. */
9357 if (mips_pic == NO_PIC)
9359 macro_build_lui (&offset_expr, AT);
9364 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9365 BFD_RELOC_MIPS_GOT16, mips_gp_register);
9369 /* Now we load the register(s). */
9370 if (HAVE_64BIT_GPRS)
9373 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
9378 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
9381 /* FIXME: How in the world do we deal with the possible
9383 offset_expr.X_add_number += 4;
9384 macro_build (&offset_expr, "lw", "t,o(b)",
9385 treg + 1, BFD_RELOC_LO16, AT);
9391 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
9392 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
9393 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
9394 the value and the low order 32 bits are either zero or in
9396 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
9399 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
9400 if (HAVE_64BIT_FPRS)
9402 gas_assert (HAVE_64BIT_GPRS);
9403 macro_build (NULL, "dmtc1", "t,S", AT, treg);
9407 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
9408 if (offset_expr.X_op == O_absent)
9409 macro_build (NULL, "mtc1", "t,G", 0, treg);
9412 gas_assert (offset_expr.X_op == O_constant);
9413 load_register (AT, &offset_expr, 0);
9414 macro_build (NULL, "mtc1", "t,G", AT, treg);
9420 gas_assert (offset_expr.X_op == O_symbol
9421 && offset_expr.X_add_number == 0);
9422 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
9423 if (strcmp (s, ".lit8") == 0)
9425 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch) || mips_opts.micromips)
9427 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
9428 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
9431 breg = mips_gp_register;
9432 r = BFD_RELOC_MIPS_LITERAL;
9437 gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
9439 if (mips_pic != NO_PIC)
9440 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9441 BFD_RELOC_MIPS_GOT16, mips_gp_register);
9444 /* FIXME: This won't work for a 64 bit address. */
9445 macro_build_lui (&offset_expr, AT);
9448 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch) || mips_opts.micromips)
9450 macro_build (&offset_expr, "ldc1", "T,o(b)",
9451 treg, BFD_RELOC_LO16, AT);
9460 /* Even on a big endian machine $fn comes before $fn+1. We have
9461 to adjust when loading from memory. */
9464 gas_assert (!mips_opts.micromips);
9465 gas_assert (!CPU_HAS_LDC1_SDC1 (mips_opts.arch));
9466 macro_build (&offset_expr, "lwc1", "T,o(b)",
9467 target_big_endian ? treg + 1 : treg, r, breg);
9468 /* FIXME: A possible overflow which I don't know how to deal
9470 offset_expr.X_add_number += 4;
9471 macro_build (&offset_expr, "lwc1", "T,o(b)",
9472 target_big_endian ? treg : treg + 1, r, breg);
9476 gas_assert (!mips_opts.micromips);
9477 gas_assert (!CPU_HAS_LDC1_SDC1 (mips_opts.arch));
9478 /* Even on a big endian machine $fn comes before $fn+1. We have
9479 to adjust when storing to memory. */
9480 macro_build (&offset_expr, "swc1", "T,o(b)",
9481 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
9482 offset_expr.X_add_number += 4;
9483 macro_build (&offset_expr, "swc1", "T,o(b)",
9484 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
9488 gas_assert (!mips_opts.micromips);
9490 * The MIPS assembler seems to check for X_add_number not
9491 * being double aligned and generating:
9494 * addiu at,at,%lo(foo+1)
9497 * But, the resulting address is the same after relocation so why
9498 * generate the extra instruction?
9500 /* Itbl support may require additional care here. */
9503 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
9512 gas_assert (!mips_opts.micromips);
9513 /* Itbl support may require additional care here. */
9516 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
9536 if (HAVE_64BIT_GPRS)
9546 if (HAVE_64BIT_GPRS)
9554 if (offset_expr.X_op != O_symbol
9555 && offset_expr.X_op != O_constant)
9557 as_bad (_("Expression too complex"));
9558 offset_expr.X_op = O_constant;
9561 if (HAVE_32BIT_ADDRESSES
9562 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
9566 sprintf_vma (value, offset_expr.X_add_number);
9567 as_bad (_("Number (0x%s) larger than 32 bits"), value);
9570 /* Even on a big endian machine $fn comes before $fn+1. We have
9571 to adjust when loading from memory. We set coproc if we must
9572 load $fn+1 first. */
9573 /* Itbl support may require additional care here. */
9574 if (!target_big_endian)
9577 if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
9579 /* If this is a reference to a GP relative symbol, we want
9580 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
9581 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
9582 If we have a base register, we use this
9584 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
9585 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
9586 If this is not a GP relative symbol, we want
9587 lui $at,<sym> (BFD_RELOC_HI16_S)
9588 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9589 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9590 If there is a base register, we add it to $at after the
9591 lui instruction. If there is a constant, we always use
9593 if (offset_expr.X_op == O_symbol
9594 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9595 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9597 relax_start (offset_expr.X_add_symbol);
9600 tempreg = mips_gp_register;
9604 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9605 AT, breg, mips_gp_register);
9610 /* Itbl support may require additional care here. */
9611 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9612 BFD_RELOC_GPREL16, tempreg);
9613 offset_expr.X_add_number += 4;
9615 /* Set mips_optimize to 2 to avoid inserting an
9617 hold_mips_optimize = mips_optimize;
9619 /* Itbl support may require additional care here. */
9620 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9621 BFD_RELOC_GPREL16, tempreg);
9622 mips_optimize = hold_mips_optimize;
9626 offset_expr.X_add_number -= 4;
9629 macro_build_lui (&offset_expr, AT);
9631 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9632 /* Itbl support may require additional care here. */
9633 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9634 BFD_RELOC_LO16, AT);
9635 /* FIXME: How do we handle overflow here? */
9636 offset_expr.X_add_number += 4;
9637 /* Itbl support may require additional care here. */
9638 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9639 BFD_RELOC_LO16, AT);
9640 if (mips_relax.sequence)
9643 else if (!mips_big_got)
9645 /* If this is a reference to an external symbol, we want
9646 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9651 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9653 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9654 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9655 If there is a base register we add it to $at before the
9656 lwc1 instructions. If there is a constant we include it
9657 in the lwc1 instructions. */
9659 expr1.X_add_number = offset_expr.X_add_number;
9660 if (expr1.X_add_number < -0x8000
9661 || expr1.X_add_number >= 0x8000 - 4)
9662 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9663 load_got_offset (AT, &offset_expr);
9666 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9668 /* Set mips_optimize to 2 to avoid inserting an undesired
9670 hold_mips_optimize = mips_optimize;
9673 /* Itbl support may require additional care here. */
9674 relax_start (offset_expr.X_add_symbol);
9675 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
9676 BFD_RELOC_LO16, AT);
9677 expr1.X_add_number += 4;
9678 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
9679 BFD_RELOC_LO16, AT);
9681 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9682 BFD_RELOC_LO16, AT);
9683 offset_expr.X_add_number += 4;
9684 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9685 BFD_RELOC_LO16, AT);
9688 mips_optimize = hold_mips_optimize;
9690 else if (mips_big_got)
9694 /* If this is a reference to an external symbol, we want
9695 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
9697 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
9702 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9704 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
9705 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
9706 If there is a base register we add it to $at before the
9707 lwc1 instructions. If there is a constant we include it
9708 in the lwc1 instructions. */
9710 expr1.X_add_number = offset_expr.X_add_number;
9711 offset_expr.X_add_number = 0;
9712 if (expr1.X_add_number < -0x8000
9713 || expr1.X_add_number >= 0x8000 - 4)
9714 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
9715 gpdelay = reg_needs_delay (mips_gp_register);
9716 relax_start (offset_expr.X_add_symbol);
9717 macro_build (&offset_expr, "lui", LUI_FMT,
9718 AT, BFD_RELOC_MIPS_GOT_HI16);
9719 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9720 AT, AT, mips_gp_register);
9721 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
9722 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
9725 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9726 /* Itbl support may require additional care here. */
9727 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
9728 BFD_RELOC_LO16, AT);
9729 expr1.X_add_number += 4;
9731 /* Set mips_optimize to 2 to avoid inserting an undesired
9733 hold_mips_optimize = mips_optimize;
9735 /* Itbl support may require additional care here. */
9736 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
9737 BFD_RELOC_LO16, AT);
9738 mips_optimize = hold_mips_optimize;
9739 expr1.X_add_number -= 4;
9742 offset_expr.X_add_number = expr1.X_add_number;
9744 macro_build (NULL, "nop", "");
9745 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
9746 BFD_RELOC_MIPS_GOT16, mips_gp_register);
9749 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
9750 /* Itbl support may require additional care here. */
9751 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
9752 BFD_RELOC_LO16, AT);
9753 offset_expr.X_add_number += 4;
9755 /* Set mips_optimize to 2 to avoid inserting an undesired
9757 hold_mips_optimize = mips_optimize;
9759 /* Itbl support may require additional care here. */
9760 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
9761 BFD_RELOC_LO16, AT);
9762 mips_optimize = hold_mips_optimize;
9771 s = HAVE_64BIT_GPRS ? "ld" : "lw";
9774 s = HAVE_64BIT_GPRS ? "sd" : "sw";
9776 macro_build (&offset_expr, s, "t,o(b)", treg,
9777 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
9779 if (!HAVE_64BIT_GPRS)
9781 offset_expr.X_add_number += 4;
9782 macro_build (&offset_expr, s, "t,o(b)", treg + 1,
9783 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2],
9804 /* New code added to support COPZ instructions.
9805 This code builds table entries out of the macros in mip_opcodes.
9806 R4000 uses interlocks to handle coproc delays.
9807 Other chips (like the R3000) require nops to be inserted for delays.
9809 FIXME: Currently, we require that the user handle delays.
9810 In order to fill delay slots for non-interlocked chips,
9811 we must have a way to specify delays based on the coprocessor.
9812 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
9813 What are the side-effects of the cop instruction?
9814 What cache support might we have and what are its effects?
9815 Both coprocessor & memory require delays. how long???
9816 What registers are read/set/modified?
9818 If an itbl is provided to interpret cop instructions,
9819 this knowledge can be encoded in the itbl spec. */
9833 gas_assert (!mips_opts.micromips);
9834 /* For now we just do C (same as Cz). The parameter will be
9835 stored in insn_opcode by mips_ip. */
9836 macro_build (NULL, s, "C", ip->insn_opcode);
9840 move_register (dreg, sreg);
9844 gas_assert (mips_opts.micromips);
9845 gas_assert (mips_opts.insn32);
9846 dreg = micromips_to_32_reg_h_map[EXTRACT_OPERAND (1, MH, *ip)];
9847 breg = micromips_to_32_reg_i_map[EXTRACT_OPERAND (1, MI, *ip)];
9848 sreg = micromips_to_32_reg_m_map[EXTRACT_OPERAND (1, MM, *ip)];
9849 treg = micromips_to_32_reg_n_map[EXTRACT_OPERAND (1, MN, *ip)];
9850 move_register (dreg, sreg);
9851 move_register (breg, treg);
9857 if (mips_opts.arch == CPU_R5900)
9859 macro_build (NULL, dbl ? "dmultu" : "multu", "d,s,t", dreg, sreg, treg);
9863 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
9864 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9871 /* The MIPS assembler some times generates shifts and adds. I'm
9872 not trying to be that fancy. GCC should do this for us
9875 load_register (AT, &imm_expr, dbl);
9876 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
9877 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9893 load_register (AT, &imm_expr, dbl);
9894 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
9895 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9896 macro_build (NULL, dbl ? "dsra32" : "sra", SHFT_FMT, dreg, dreg, RA);
9897 macro_build (NULL, "mfhi", MFHL_FMT, AT);
9899 macro_build (NULL, "tne", TRAP_FMT, dreg, AT, 6);
9902 if (mips_opts.micromips)
9903 micromips_label_expr (&label_expr);
9905 label_expr.X_add_number = 8;
9906 macro_build (&label_expr, "beq", "s,t,p", dreg, AT);
9907 macro_build (NULL, "nop", "");
9908 macro_build (NULL, "break", BRK_FMT, 6);
9909 if (mips_opts.micromips)
9910 micromips_add_label ();
9913 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9929 load_register (AT, &imm_expr, dbl);
9930 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
9931 sreg, imm ? AT : treg);
9932 macro_build (NULL, "mfhi", MFHL_FMT, AT);
9933 macro_build (NULL, "mflo", MFHL_FMT, dreg);
9935 macro_build (NULL, "tne", TRAP_FMT, AT, ZERO, 6);
9938 if (mips_opts.micromips)
9939 micromips_label_expr (&label_expr);
9941 label_expr.X_add_number = 8;
9942 macro_build (&label_expr, "beq", "s,t,p", AT, ZERO);
9943 macro_build (NULL, "nop", "");
9944 macro_build (NULL, "break", BRK_FMT, 6);
9945 if (mips_opts.micromips)
9946 micromips_add_label ();
9952 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
9963 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
9964 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
9968 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
9969 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
9970 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
9971 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
9975 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
9986 macro_build (NULL, "negu", "d,w", tempreg, treg);
9987 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
9991 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
9992 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
9993 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
9994 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10003 if (imm_expr.X_op != O_constant)
10004 as_bad (_("Improper rotate count"));
10005 rot = imm_expr.X_add_number & 0x3f;
10006 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
10008 rot = (64 - rot) & 0x3f;
10010 macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
10012 macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
10017 macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
10020 l = (rot < 0x20) ? "dsll" : "dsll32";
10021 rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
10024 macro_build (NULL, l, SHFT_FMT, AT, sreg, rot);
10025 macro_build (NULL, rr, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
10026 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10034 if (imm_expr.X_op != O_constant)
10035 as_bad (_("Improper rotate count"));
10036 rot = imm_expr.X_add_number & 0x1f;
10037 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
10039 macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, (32 - rot) & 0x1f);
10044 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
10048 macro_build (NULL, "sll", SHFT_FMT, AT, sreg, rot);
10049 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
10050 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10055 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
10057 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
10061 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, treg);
10062 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
10063 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
10064 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10068 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
10070 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
10074 macro_build (NULL, "subu", "d,v,t", AT, ZERO, treg);
10075 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
10076 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
10077 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10086 if (imm_expr.X_op != O_constant)
10087 as_bad (_("Improper rotate count"));
10088 rot = imm_expr.X_add_number & 0x3f;
10089 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
10092 macro_build (NULL, "dror32", SHFT_FMT, dreg, sreg, rot - 32);
10094 macro_build (NULL, "dror", SHFT_FMT, dreg, sreg, rot);
10099 macro_build (NULL, "dsrl", SHFT_FMT, dreg, sreg, 0);
10102 rr = (rot < 0x20) ? "dsrl" : "dsrl32";
10103 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
10106 macro_build (NULL, rr, SHFT_FMT, AT, sreg, rot);
10107 macro_build (NULL, l, SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
10108 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10116 if (imm_expr.X_op != O_constant)
10117 as_bad (_("Improper rotate count"));
10118 rot = imm_expr.X_add_number & 0x1f;
10119 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
10121 macro_build (NULL, "ror", SHFT_FMT, dreg, sreg, rot);
10126 macro_build (NULL, "srl", SHFT_FMT, dreg, sreg, 0);
10130 macro_build (NULL, "srl", SHFT_FMT, AT, sreg, rot);
10131 macro_build (NULL, "sll", SHFT_FMT, dreg, sreg, (0x20 - rot) & 0x1f);
10132 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
10138 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
10139 else if (treg == 0)
10140 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10143 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
10144 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
10149 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
10151 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10156 as_warn (_("Instruction %s: result is always false"),
10157 ip->insn_mo->name);
10158 move_register (dreg, 0);
10161 if (CPU_HAS_SEQ (mips_opts.arch)
10162 && -512 <= imm_expr.X_add_number
10163 && imm_expr.X_add_number < 512)
10165 macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
10166 (int) imm_expr.X_add_number);
10169 if (imm_expr.X_op == O_constant
10170 && imm_expr.X_add_number >= 0
10171 && imm_expr.X_add_number < 0x10000)
10173 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
10175 else if (imm_expr.X_op == O_constant
10176 && imm_expr.X_add_number > -0x8000
10177 && imm_expr.X_add_number < 0)
10179 imm_expr.X_add_number = -imm_expr.X_add_number;
10180 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
10181 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10183 else if (CPU_HAS_SEQ (mips_opts.arch))
10186 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10187 macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
10192 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10193 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
10196 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
10199 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
10205 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
10206 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
10209 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
10211 if (imm_expr.X_op == O_constant
10212 && imm_expr.X_add_number >= -0x8000
10213 && imm_expr.X_add_number < 0x8000)
10215 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
10216 dreg, sreg, BFD_RELOC_LO16);
10220 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10221 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
10225 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
10228 case M_SGT: /* sreg > treg <==> treg < sreg */
10234 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
10237 case M_SGT_I: /* sreg > I <==> I < sreg */
10244 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10245 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
10248 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
10254 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
10255 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
10258 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
10265 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10266 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
10267 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
10271 if (imm_expr.X_op == O_constant
10272 && imm_expr.X_add_number >= -0x8000
10273 && imm_expr.X_add_number < 0x8000)
10275 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10279 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10280 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
10284 if (imm_expr.X_op == O_constant
10285 && imm_expr.X_add_number >= -0x8000
10286 && imm_expr.X_add_number < 0x8000)
10288 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
10293 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10294 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
10299 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
10300 else if (treg == 0)
10301 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
10304 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
10305 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
10310 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
10312 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
10317 as_warn (_("Instruction %s: result is always true"),
10318 ip->insn_mo->name);
10319 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
10320 dreg, 0, BFD_RELOC_LO16);
10323 if (CPU_HAS_SEQ (mips_opts.arch)
10324 && -512 <= imm_expr.X_add_number
10325 && imm_expr.X_add_number < 512)
10327 macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
10328 (int) imm_expr.X_add_number);
10331 if (imm_expr.X_op == O_constant
10332 && imm_expr.X_add_number >= 0
10333 && imm_expr.X_add_number < 0x10000)
10335 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
10337 else if (imm_expr.X_op == O_constant
10338 && imm_expr.X_add_number > -0x8000
10339 && imm_expr.X_add_number < 0)
10341 imm_expr.X_add_number = -imm_expr.X_add_number;
10342 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
10343 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10345 else if (CPU_HAS_SEQ (mips_opts.arch))
10348 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10349 macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
10354 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10355 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
10358 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
10373 if (!mips_opts.micromips)
10375 if (imm_expr.X_op == O_constant
10376 && imm_expr.X_add_number > -0x200
10377 && imm_expr.X_add_number <= 0x200)
10379 macro_build (NULL, s, "t,r,.", dreg, sreg, -imm_expr.X_add_number);
10388 if (imm_expr.X_op == O_constant
10389 && imm_expr.X_add_number > -0x8000
10390 && imm_expr.X_add_number <= 0x8000)
10392 imm_expr.X_add_number = -imm_expr.X_add_number;
10393 macro_build (&imm_expr, s, "t,r,j", dreg, sreg, BFD_RELOC_LO16);
10398 load_register (AT, &imm_expr, dbl);
10399 macro_build (NULL, s2, "d,v,t", dreg, sreg, AT);
10421 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
10422 macro_build (NULL, s, "s,t", sreg, AT);
10427 gas_assert (!mips_opts.micromips);
10428 gas_assert (mips_opts.isa == ISA_MIPS1);
10430 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
10431 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
10434 * Is the double cfc1 instruction a bug in the mips assembler;
10435 * or is there a reason for it?
10437 start_noreorder ();
10438 macro_build (NULL, "cfc1", "t,G", treg, RA);
10439 macro_build (NULL, "cfc1", "t,G", treg, RA);
10440 macro_build (NULL, "nop", "");
10441 expr1.X_add_number = 3;
10442 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
10443 expr1.X_add_number = 2;
10444 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
10445 macro_build (NULL, "ctc1", "t,G", AT, RA);
10446 macro_build (NULL, "nop", "");
10447 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
10449 macro_build (NULL, "ctc1", "t,G", treg, RA);
10450 macro_build (NULL, "nop", "");
10473 offbits = (mips_opts.micromips ? 12 : 16);
10481 offbits = (mips_opts.micromips ? 12 : 16);
10497 offbits = (mips_opts.micromips ? 12 : 16);
10506 offbits = (mips_opts.micromips ? 12 : 16);
10511 if (!ab && offset_expr.X_add_number >= 0x8000 - off)
10512 as_bad (_("Operand overflow"));
10515 expr1.X_add_number = 0;
10520 load_address (tempreg, ep, &used_at);
10522 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10523 tempreg, tempreg, breg);
10528 else if (offbits == 12
10529 && (offset_expr.X_op != O_constant
10530 || !IS_SEXT_12BIT_NUM (offset_expr.X_add_number)
10531 || !IS_SEXT_12BIT_NUM (offset_expr.X_add_number + off)))
10535 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", tempreg, breg,
10536 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2]);
10541 else if (!ust && treg == breg)
10552 if (!target_big_endian)
10553 ep->X_add_number += off;
10555 macro_build (ep, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
10557 macro_build (NULL, s, "t,~(b)",
10558 tempreg, (unsigned long) ep->X_add_number, breg);
10560 if (!target_big_endian)
10561 ep->X_add_number -= off;
10563 ep->X_add_number += off;
10565 macro_build (ep, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
10567 macro_build (NULL, s2, "t,~(b)",
10568 tempreg, (unsigned long) ep->X_add_number, breg);
10570 /* If necessary, move the result in tempreg to the final destination. */
10571 if (!ust && treg != tempreg)
10573 /* Protect second load's delay slot. */
10575 move_register (treg, tempreg);
10581 if (target_big_endian == ust)
10582 ep->X_add_number += off;
10583 tempreg = ust || ab ? treg : AT;
10584 macro_build (ep, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
10586 /* For halfword transfers we need a temporary register to shuffle
10587 bytes. Unfortunately for M_USH_A we have none available before
10588 the next store as AT holds the base address. We deal with this
10589 case by clobbering TREG and then restoring it as with ULH. */
10590 tempreg = ust == ab ? treg : AT;
10592 macro_build (NULL, "srl", SHFT_FMT, tempreg, treg, 8);
10594 if (target_big_endian == ust)
10595 ep->X_add_number -= off;
10597 ep->X_add_number += off;
10598 macro_build (ep, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
10600 /* For M_USH_A re-retrieve the LSB. */
10603 if (target_big_endian)
10604 ep->X_add_number += off;
10606 ep->X_add_number -= off;
10607 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
10609 /* For ULH and M_USH_A OR the LSB in. */
10612 tempreg = !ab ? AT : treg;
10613 macro_build (NULL, "sll", SHFT_FMT, tempreg, tempreg, 8);
10614 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
10619 /* FIXME: Check if this is one of the itbl macros, since they
10620 are added dynamically. */
10621 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
10624 if (!mips_opts.at && used_at)
10625 as_bad (_("Macro used $at after \".set noat\""));
10628 /* Implement macros in mips16 mode. */
10631 mips16_macro (struct mips_cl_insn *ip)
10634 int xreg, yreg, zreg, tmp;
10637 const char *s, *s2, *s3;
10639 mask = ip->insn_mo->mask;
10641 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
10642 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
10643 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
10645 expr1.X_op = O_constant;
10646 expr1.X_op_symbol = NULL;
10647 expr1.X_add_symbol = NULL;
10648 expr1.X_add_number = 1;
10667 start_noreorder ();
10668 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
10669 expr1.X_add_number = 2;
10670 macro_build (&expr1, "bnez", "x,p", yreg);
10671 macro_build (NULL, "break", "6", 7);
10673 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
10674 since that causes an overflow. We should do that as well,
10675 but I don't see how to do the comparisons without a temporary
10678 macro_build (NULL, s, "x", zreg);
10697 start_noreorder ();
10698 macro_build (NULL, s, "0,x,y", xreg, yreg);
10699 expr1.X_add_number = 2;
10700 macro_build (&expr1, "bnez", "x,p", yreg);
10701 macro_build (NULL, "break", "6", 7);
10703 macro_build (NULL, s2, "x", zreg);
10709 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
10710 macro_build (NULL, "mflo", "x", zreg);
10718 if (imm_expr.X_op != O_constant)
10719 as_bad (_("Unsupported large constant"));
10720 imm_expr.X_add_number = -imm_expr.X_add_number;
10721 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
10725 if (imm_expr.X_op != O_constant)
10726 as_bad (_("Unsupported large constant"));
10727 imm_expr.X_add_number = -imm_expr.X_add_number;
10728 macro_build (&imm_expr, "addiu", "x,k", xreg);
10732 if (imm_expr.X_op != O_constant)
10733 as_bad (_("Unsupported large constant"));
10734 imm_expr.X_add_number = -imm_expr.X_add_number;
10735 macro_build (&imm_expr, "daddiu", "y,j", yreg);
10757 goto do_reverse_branch;
10761 goto do_reverse_branch;
10773 goto do_reverse_branch;
10784 macro_build (NULL, s, "x,y", xreg, yreg);
10785 macro_build (&offset_expr, s2, "p");
10812 goto do_addone_branch_i;
10817 goto do_addone_branch_i;
10832 goto do_addone_branch_i;
10838 do_addone_branch_i:
10839 if (imm_expr.X_op != O_constant)
10840 as_bad (_("Unsupported large constant"));
10841 ++imm_expr.X_add_number;
10844 macro_build (&imm_expr, s, s3, xreg);
10845 macro_build (&offset_expr, s2, "p");
10849 expr1.X_add_number = 0;
10850 macro_build (&expr1, "slti", "x,8", yreg);
10852 move_register (xreg, yreg);
10853 expr1.X_add_number = 2;
10854 macro_build (&expr1, "bteqz", "p");
10855 macro_build (NULL, "neg", "x,w", xreg, xreg);
10859 /* For consistency checking, verify that all bits are specified either
10860 by the match/mask part of the instruction definition, or by the
10863 validate_mips_insn (const struct mips_opcode *opc)
10865 const char *p = opc->args;
10867 unsigned long used_bits = opc->mask;
10869 if ((used_bits & opc->match) != opc->match)
10871 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
10872 opc->name, opc->args);
10875 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
10885 case '1': USE_BITS (OP_MASK_UDI1, OP_SH_UDI1); break;
10886 case '2': USE_BITS (OP_MASK_UDI2, OP_SH_UDI2); break;
10887 case '3': USE_BITS (OP_MASK_UDI3, OP_SH_UDI3); break;
10888 case '4': USE_BITS (OP_MASK_UDI4, OP_SH_UDI4); break;
10889 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10890 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
10891 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10892 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10893 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
10894 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10895 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
10897 case 'J': USE_BITS (OP_MASK_CODE10, OP_SH_CODE10); break;
10898 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10899 case 'x': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
10900 case 'X': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
10901 case 'p': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
10902 case 'P': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
10903 case 'Q': USE_BITS (OP_MASK_SEQI, OP_SH_SEQI); break;
10904 case 's': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
10905 case 'S': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
10906 case 'z': USE_BITS (OP_MASK_RZ, OP_SH_RZ); break;
10907 case 'Z': USE_BITS (OP_MASK_FZ, OP_SH_FZ); break;
10908 case 'a': USE_BITS (OP_MASK_OFFSET_A, OP_SH_OFFSET_A); break;
10909 case 'b': USE_BITS (OP_MASK_OFFSET_B, OP_SH_OFFSET_B); break;
10910 case 'c': USE_BITS (OP_MASK_OFFSET_C, OP_SH_OFFSET_C); break;
10911 case 'j': USE_BITS (OP_MASK_EVAOFFSET, OP_SH_EVAOFFSET); break;
10914 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
10915 c, opc->name, opc->args);
10919 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10920 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
10922 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
10923 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
10924 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
10925 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10927 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10928 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
10930 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
10931 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10933 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
10934 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
10935 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
10936 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
10937 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10938 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
10939 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10940 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10941 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10942 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10943 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
10944 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
10945 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
10946 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
10947 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10948 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
10949 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10951 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
10952 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
10953 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10954 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
10956 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10957 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
10958 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
10959 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10960 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10961 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10962 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
10963 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10964 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10967 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
10968 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
10969 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
10970 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
10971 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
10974 case '1': USE_BITS (OP_MASK_STYPE, OP_SH_STYPE); break;
10975 case '2': USE_BITS (OP_MASK_BP, OP_SH_BP); break;
10976 case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break;
10977 case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break;
10978 case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break;
10979 case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
10980 case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break;
10981 case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break;
10982 case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break;
10983 case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break;
10984 case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break;
10985 case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break;
10986 case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break;
10987 case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break;
10988 case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break;
10989 case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break;
10990 case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break;
10991 case '\\': USE_BITS (OP_MASK_3BITPOS, OP_SH_3BITPOS); break;
10992 case '~': USE_BITS (OP_MASK_OFFSET12, OP_SH_OFFSET12); break;
10993 case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
10995 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
10996 c, opc->name, opc->args);
11000 if (used_bits != 0xffffffff)
11002 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
11003 ~used_bits & 0xffffffff, opc->name, opc->args);
11009 /* For consistency checking, verify that the length implied matches the
11010 major opcode and that all bits are specified either by the match/mask
11011 part of the instruction definition, or by the operand list. */
11014 validate_micromips_insn (const struct mips_opcode *opc)
11016 unsigned long match = opc->match;
11017 unsigned long mask = opc->mask;
11018 const char *p = opc->args;
11019 unsigned long insn_bits;
11020 unsigned long used_bits;
11021 unsigned long major;
11022 unsigned int length;
11026 if ((mask & match) != match)
11028 as_bad (_("Internal error: bad microMIPS opcode (mask error): %s %s"),
11029 opc->name, opc->args);
11032 length = micromips_insn_length (opc);
11033 if (length != 2 && length != 4)
11035 as_bad (_("Internal error: bad microMIPS opcode (incorrect length: %u): "
11036 "%s %s"), length, opc->name, opc->args);
11039 major = match >> (10 + 8 * (length - 2));
11040 if ((length == 2 && (major & 7) != 1 && (major & 6) != 2)
11041 || (length == 4 && (major & 7) != 0 && (major & 4) != 4))
11043 as_bad (_("Internal error: bad microMIPS opcode "
11044 "(opcode/length mismatch): %s %s"), opc->name, opc->args);
11048 /* Shift piecewise to avoid an overflow where unsigned long is 32-bit. */
11049 insn_bits = 1 << 4 * length;
11050 insn_bits <<= 4 * length;
11053 #define USE_BITS(field) \
11054 (used_bits |= MICROMIPSOP_MASK_##field << MICROMIPSOP_SH_##field)
11065 case 'A': USE_BITS (EXTLSB); break;
11066 case 'B': USE_BITS (INSMSB); break;
11067 case 'C': USE_BITS (EXTMSBD); break;
11068 case 'E': USE_BITS (EXTLSB); break;
11069 case 'F': USE_BITS (INSMSB); break;
11070 case 'G': USE_BITS (EXTMSBD); break;
11071 case 'H': USE_BITS (EXTMSBD); break;
11072 case 'j': USE_BITS (EVAOFFSET); break;
11074 as_bad (_("Internal error: bad mips opcode "
11075 "(unknown extension operand type `%c%c'): %s %s"),
11076 e, c, opc->name, opc->args);
11084 case 'A': USE_BITS (IMMA); break;
11085 case 'B': USE_BITS (IMMB); break;
11086 case 'C': USE_BITS (IMMC); break;
11087 case 'D': USE_BITS (IMMD); break;
11088 case 'E': USE_BITS (IMME); break;
11089 case 'F': USE_BITS (IMMF); break;
11090 case 'G': USE_BITS (IMMG); break;
11091 case 'H': USE_BITS (IMMH); break;
11092 case 'I': USE_BITS (IMMI); break;
11093 case 'J': USE_BITS (IMMJ); break;
11094 case 'L': USE_BITS (IMML); break;
11095 case 'M': USE_BITS (IMMM); break;
11096 case 'N': USE_BITS (IMMN); break;
11097 case 'O': USE_BITS (IMMO); break;
11098 case 'P': USE_BITS (IMMP); break;
11099 case 'Q': USE_BITS (IMMQ); break;
11100 case 'U': USE_BITS (IMMU); break;
11101 case 'W': USE_BITS (IMMW); break;
11102 case 'X': USE_BITS (IMMX); break;
11103 case 'Y': USE_BITS (IMMY); break;
11106 case 'b': USE_BITS (MB); break;
11107 case 'c': USE_BITS (MC); break;
11108 case 'd': USE_BITS (MD); break;
11109 case 'e': USE_BITS (ME); break;
11110 case 'f': USE_BITS (MF); break;
11111 case 'g': USE_BITS (MG); break;
11112 case 'h': USE_BITS (MH); break;
11113 case 'i': USE_BITS (MI); break;
11114 case 'j': USE_BITS (MJ); break;
11115 case 'l': USE_BITS (ML); break;
11116 case 'm': USE_BITS (MM); break;
11117 case 'n': USE_BITS (MN); break;
11118 case 'p': USE_BITS (MP); break;
11119 case 'q': USE_BITS (MQ); break;
11127 as_bad (_("Internal error: bad mips opcode "
11128 "(unknown extension operand type `%c%c'): %s %s"),
11129 e, c, opc->name, opc->args);
11133 case '.': USE_BITS (OFFSET10); break;
11134 case '1': USE_BITS (STYPE); break;
11135 case '2': USE_BITS (BP); break;
11136 case '3': USE_BITS (SA3); break;
11137 case '4': USE_BITS (SA4); break;
11138 case '5': USE_BITS (IMM8); break;
11139 case '6': USE_BITS (RS); break;
11140 case '7': USE_BITS (DSPACC); break;
11141 case '8': USE_BITS (WRDSP); break;
11142 case '0': USE_BITS (DSPSFT); break;
11143 case '<': USE_BITS (SHAMT); break;
11144 case '>': USE_BITS (SHAMT); break;
11145 case '@': USE_BITS (IMM10); break;
11146 case 'B': USE_BITS (CODE10); break;
11147 case 'C': USE_BITS (COPZ); break;
11148 case 'D': USE_BITS (FD); break;
11149 case 'E': USE_BITS (RT); break;
11150 case 'G': USE_BITS (RS); break;
11151 case 'H': USE_BITS (SEL); break;
11152 case 'K': USE_BITS (RS); break;
11153 case 'M': USE_BITS (CCC); break;
11154 case 'N': USE_BITS (BCC); break;
11155 case 'R': USE_BITS (FR); break;
11156 case 'S': USE_BITS (FS); break;
11157 case 'T': USE_BITS (FT); break;
11158 case 'V': USE_BITS (FS); break;
11159 case '\\': USE_BITS (3BITPOS); break;
11160 case '^': USE_BITS (RD); break;
11161 case 'a': USE_BITS (TARGET); break;
11162 case 'b': USE_BITS (RS); break;
11163 case 'c': USE_BITS (CODE); break;
11164 case 'd': USE_BITS (RD); break;
11165 case 'h': USE_BITS (PREFX); break;
11166 case 'i': USE_BITS (IMMEDIATE); break;
11167 case 'j': USE_BITS (DELTA); break;
11168 case 'k': USE_BITS (CACHE); break;
11169 case 'n': USE_BITS (RT); break;
11170 case 'o': USE_BITS (DELTA); break;
11171 case 'p': USE_BITS (DELTA); break;
11172 case 'q': USE_BITS (CODE2); break;
11173 case 'r': USE_BITS (RS); break;
11174 case 's': USE_BITS (RS); break;
11175 case 't': USE_BITS (RT); break;
11176 case 'u': USE_BITS (IMMEDIATE); break;
11177 case 'v': USE_BITS (RS); break;
11178 case 'w': USE_BITS (RT); break;
11179 case 'y': USE_BITS (RS3); break;
11181 case '|': USE_BITS (TRAP); break;
11182 case '~': USE_BITS (OFFSET12); break;
11184 as_bad (_("Internal error: bad microMIPS opcode "
11185 "(unknown operand type `%c'): %s %s"),
11186 c, opc->name, opc->args);
11190 if (used_bits != insn_bits)
11192 if (~used_bits & insn_bits)
11193 as_bad (_("Internal error: bad microMIPS opcode "
11194 "(bits 0x%lx undefined): %s %s"),
11195 ~used_bits & insn_bits, opc->name, opc->args);
11196 if (used_bits & ~insn_bits)
11197 as_bad (_("Internal error: bad microMIPS opcode "
11198 "(bits 0x%lx defined): %s %s"),
11199 used_bits & ~insn_bits, opc->name, opc->args);
11205 /* UDI immediates. */
11206 struct mips_immed {
11208 unsigned int shift;
11209 unsigned long mask;
11213 static const struct mips_immed mips_immed[] = {
11214 { '1', OP_SH_UDI1, OP_MASK_UDI1, 0},
11215 { '2', OP_SH_UDI2, OP_MASK_UDI2, 0},
11216 { '3', OP_SH_UDI3, OP_MASK_UDI3, 0},
11217 { '4', OP_SH_UDI4, OP_MASK_UDI4, 0},
11221 /* Check whether an odd floating-point register is allowed. */
11223 mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
11225 const char *s = insn->name;
11227 if (insn->pinfo == INSN_MACRO)
11228 /* Let a macro pass, we'll catch it later when it is expanded. */
11231 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa) || (mips_opts.arch == CPU_R5900))
11233 /* Allow odd registers for single-precision ops. */
11234 switch (insn->pinfo & (FP_S | FP_D))
11238 return 1; /* both single precision - ok */
11240 return 0; /* both double precision - fail */
11245 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
11246 s = strchr (insn->name, '.');
11248 s = s != NULL ? strchr (s + 1, '.') : NULL;
11249 return (s != NULL && (s[1] == 'w' || s[1] == 's'));
11252 /* Single-precision coprocessor loads and moves are OK too. */
11253 if ((insn->pinfo & FP_S)
11254 && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
11255 | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
11261 /* Check if EXPR is a constant between MIN (inclusive) and MAX (exclusive)
11262 taking bits from BIT up. */
11264 expr_const_in_range (expressionS *ep, offsetT min, offsetT max, int bit)
11266 return (ep->X_op == O_constant
11267 && (ep->X_add_number & ((1 << bit) - 1)) == 0
11268 && ep->X_add_number >= min << bit
11269 && ep->X_add_number < max << bit);
11272 /* This routine assembles an instruction into its binary format. As a
11273 side effect, it sets one of the global variables imm_reloc or
11274 offset_reloc to the type of relocation to do if one of the operands
11275 is an address expression. */
11278 mips_ip (char *str, struct mips_cl_insn *ip)
11280 bfd_boolean wrong_delay_slot_insns = FALSE;
11281 bfd_boolean need_delay_slot_ok = TRUE;
11282 struct mips_opcode *firstinsn = NULL;
11283 const struct mips_opcode *past;
11284 struct hash_control *hash;
11288 struct mips_opcode *insn;
11290 unsigned int regno;
11291 unsigned int lastregno;
11292 unsigned int destregno = 0;
11293 unsigned int lastpos = 0;
11294 unsigned int limlo, limhi;
11297 offsetT min_range, max_range;
11301 unsigned int rtype;
11307 if (mips_opts.micromips)
11309 hash = micromips_op_hash;
11310 past = µmips_opcodes[bfd_micromips_num_opcodes];
11315 past = &mips_opcodes[NUMOPCODES];
11317 forced_insn_length = 0;
11320 /* We first try to match an instruction up to a space or to the end. */
11321 for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
11324 /* Make a copy of the instruction so that we can fiddle with it. */
11325 name = alloca (end + 1);
11326 memcpy (name, str, end);
11331 insn = (struct mips_opcode *) hash_find (hash, name);
11333 if (insn != NULL || !mips_opts.micromips)
11335 if (forced_insn_length)
11338 /* See if there's an instruction size override suffix,
11339 either `16' or `32', at the end of the mnemonic proper,
11340 that defines the operation, i.e. before the first `.'
11341 character if any. Strip it and retry. */
11342 dot = strchr (name, '.');
11343 opend = dot != NULL ? dot - name : end;
11346 if (name[opend - 2] == '1' && name[opend - 1] == '6')
11347 forced_insn_length = 2;
11348 else if (name[opend - 2] == '3' && name[opend - 1] == '2')
11349 forced_insn_length = 4;
11352 memcpy (name + opend - 2, name + opend, end - opend + 1);
11356 insn_error = _("Unrecognized opcode");
11360 /* For microMIPS instructions placed in a fixed-length branch delay slot
11361 we make up to two passes over the relevant fragment of the opcode
11362 table. First we try instructions that meet the delay slot's length
11363 requirement. If none matched, then we retry with the remaining ones
11364 and if one matches, then we use it and then issue an appropriate
11365 warning later on. */
11366 argsStart = s = str + end;
11369 bfd_boolean delay_slot_ok;
11370 bfd_boolean size_ok;
11373 gas_assert (strcmp (insn->name, name) == 0);
11375 ok = is_opcode_valid (insn);
11376 size_ok = is_size_valid (insn);
11377 delay_slot_ok = is_delay_slot_valid (insn);
11378 if (!delay_slot_ok && !wrong_delay_slot_insns)
11381 wrong_delay_slot_insns = TRUE;
11383 if (!ok || !size_ok || delay_slot_ok != need_delay_slot_ok)
11385 static char buf[256];
11387 if (insn + 1 < past && strcmp (insn->name, insn[1].name) == 0)
11392 if (wrong_delay_slot_insns && need_delay_slot_ok)
11394 gas_assert (firstinsn);
11395 need_delay_slot_ok = FALSE;
11405 sprintf (buf, _("Opcode not supported on this processor: %s (%s)"),
11406 mips_cpu_info_from_arch (mips_opts.arch)->name,
11407 mips_cpu_info_from_isa (mips_opts.isa)->name);
11408 else if (mips_opts.insn32)
11409 sprintf (buf, _("Opcode not supported in the `insn32' mode"));
11411 sprintf (buf, _("Unrecognized %u-bit version of microMIPS opcode"),
11412 8 * forced_insn_length);
11418 create_insn (ip, insn);
11421 lastregno = 0xffffffff;
11422 for (args = insn->args;; ++args)
11426 s += strspn (s, " \t");
11430 case '\0': /* end of args */
11436 /* DSP 2-bit unsigned immediate in bit 11 (for standard MIPS
11437 code) or 14 (for microMIPS code). */
11438 my_getExpression (&imm_expr, s);
11439 check_absolute_expr (ip, &imm_expr);
11440 if ((unsigned long) imm_expr.X_add_number != 1
11441 && (unsigned long) imm_expr.X_add_number != 3)
11443 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
11444 (unsigned long) imm_expr.X_add_number);
11446 INSERT_OPERAND (mips_opts.micromips,
11447 BP, *ip, imm_expr.X_add_number);
11448 imm_expr.X_op = O_absent;
11453 /* DSP 3-bit unsigned immediate in bit 21 (for standard MIPS
11454 code) or 13 (for microMIPS code). */
11456 unsigned long mask = (mips_opts.micromips
11457 ? MICROMIPSOP_MASK_SA3 : OP_MASK_SA3);
11459 my_getExpression (&imm_expr, s);
11460 check_absolute_expr (ip, &imm_expr);
11461 if ((unsigned long) imm_expr.X_add_number > mask)
11462 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11463 mask, (unsigned long) imm_expr.X_add_number);
11464 INSERT_OPERAND (mips_opts.micromips,
11465 SA3, *ip, imm_expr.X_add_number);
11466 imm_expr.X_op = O_absent;
11472 /* DSP 4-bit unsigned immediate in bit 21 (for standard MIPS
11473 code) or 12 (for microMIPS code). */
11475 unsigned long mask = (mips_opts.micromips
11476 ? MICROMIPSOP_MASK_SA4 : OP_MASK_SA4);
11478 my_getExpression (&imm_expr, s);
11479 check_absolute_expr (ip, &imm_expr);
11480 if ((unsigned long) imm_expr.X_add_number > mask)
11481 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11482 mask, (unsigned long) imm_expr.X_add_number);
11483 INSERT_OPERAND (mips_opts.micromips,
11484 SA4, *ip, imm_expr.X_add_number);
11485 imm_expr.X_op = O_absent;
11491 /* DSP 8-bit unsigned immediate in bit 16 (for standard MIPS
11492 code) or 13 (for microMIPS code). */
11494 unsigned long mask = (mips_opts.micromips
11495 ? MICROMIPSOP_MASK_IMM8 : OP_MASK_IMM8);
11497 my_getExpression (&imm_expr, s);
11498 check_absolute_expr (ip, &imm_expr);
11499 if ((unsigned long) imm_expr.X_add_number > mask)
11500 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11501 mask, (unsigned long) imm_expr.X_add_number);
11502 INSERT_OPERAND (mips_opts.micromips,
11503 IMM8, *ip, imm_expr.X_add_number);
11504 imm_expr.X_op = O_absent;
11510 /* DSP 5-bit unsigned immediate in bit 21 (for standard MIPS
11511 code) or 16 (for microMIPS code). */
11513 unsigned long mask = (mips_opts.micromips
11514 ? MICROMIPSOP_MASK_RS : OP_MASK_RS);
11516 my_getExpression (&imm_expr, s);
11517 check_absolute_expr (ip, &imm_expr);
11518 if ((unsigned long) imm_expr.X_add_number > mask)
11519 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11520 mask, (unsigned long) imm_expr.X_add_number);
11521 INSERT_OPERAND (mips_opts.micromips,
11522 RS, *ip, imm_expr.X_add_number);
11523 imm_expr.X_op = O_absent;
11529 /* Four DSP accumulators in bit 11 (for standard MIPS code)
11530 or 14 (for microMIPS code). */
11531 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c'
11532 && s[3] >= '0' && s[3] <= '3')
11534 regno = s[3] - '0';
11536 INSERT_OPERAND (mips_opts.micromips, DSPACC, *ip, regno);
11540 as_bad (_("Invalid dsp acc register"));
11544 /* DSP 6-bit unsigned immediate in bit 11 (for standard MIPS
11545 code) or 14 (for microMIPS code). */
11547 unsigned long mask = (mips_opts.micromips
11548 ? MICROMIPSOP_MASK_WRDSP
11551 my_getExpression (&imm_expr, s);
11552 check_absolute_expr (ip, &imm_expr);
11553 if ((unsigned long) imm_expr.X_add_number > mask)
11554 as_bad (_("DSP immediate not in range 0..%lu (%lu)"),
11555 mask, (unsigned long) imm_expr.X_add_number);
11556 INSERT_OPERAND (mips_opts.micromips,
11557 WRDSP, *ip, imm_expr.X_add_number);
11558 imm_expr.X_op = O_absent;
11563 case '9': /* Four DSP accumulators in bits 21,22. */
11564 gas_assert (!mips_opts.micromips);
11565 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c'
11566 && s[3] >= '0' && s[3] <= '3')
11568 regno = s[3] - '0';
11570 INSERT_OPERAND (0, DSPACC_S, *ip, regno);
11574 as_bad (_("Invalid dsp acc register"));
11578 /* DSP 6-bit signed immediate in bit 20 (for standard MIPS
11579 code) or 16 (for microMIPS code). */
11581 long mask = (mips_opts.micromips
11582 ? MICROMIPSOP_MASK_DSPSFT : OP_MASK_DSPSFT);
11584 my_getExpression (&imm_expr, s);
11585 check_absolute_expr (ip, &imm_expr);
11586 min_range = -((mask + 1) >> 1);
11587 max_range = ((mask + 1) >> 1) - 1;
11588 if (imm_expr.X_add_number < min_range
11589 || imm_expr.X_add_number > max_range)
11590 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11591 (long) min_range, (long) max_range,
11592 (long) imm_expr.X_add_number);
11593 INSERT_OPERAND (mips_opts.micromips,
11594 DSPSFT, *ip, imm_expr.X_add_number);
11595 imm_expr.X_op = O_absent;
11600 case '\'': /* DSP 6-bit unsigned immediate in bit 16. */
11601 gas_assert (!mips_opts.micromips);
11602 my_getExpression (&imm_expr, s);
11603 check_absolute_expr (ip, &imm_expr);
11604 if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
11606 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
11608 (unsigned long) imm_expr.X_add_number);
11610 INSERT_OPERAND (0, RDDSP, *ip, imm_expr.X_add_number);
11611 imm_expr.X_op = O_absent;
11615 case ':': /* DSP 7-bit signed immediate in bit 19. */
11616 gas_assert (!mips_opts.micromips);
11617 my_getExpression (&imm_expr, s);
11618 check_absolute_expr (ip, &imm_expr);
11619 min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
11620 max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
11621 if (imm_expr.X_add_number < min_range ||
11622 imm_expr.X_add_number > max_range)
11624 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11625 (long) min_range, (long) max_range,
11626 (long) imm_expr.X_add_number);
11628 INSERT_OPERAND (0, DSPSFT_7, *ip, imm_expr.X_add_number);
11629 imm_expr.X_op = O_absent;
11633 case '@': /* DSP 10-bit signed immediate in bit 16. */
11635 long mask = (mips_opts.micromips
11636 ? MICROMIPSOP_MASK_IMM10 : OP_MASK_IMM10);
11638 my_getExpression (&imm_expr, s);
11639 check_absolute_expr (ip, &imm_expr);
11640 min_range = -((mask + 1) >> 1);
11641 max_range = ((mask + 1) >> 1) - 1;
11642 if (imm_expr.X_add_number < min_range
11643 || imm_expr.X_add_number > max_range)
11644 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
11645 (long) min_range, (long) max_range,
11646 (long) imm_expr.X_add_number);
11647 INSERT_OPERAND (mips_opts.micromips,
11648 IMM10, *ip, imm_expr.X_add_number);
11649 imm_expr.X_op = O_absent;
11654 case '^': /* DSP 5-bit unsigned immediate in bit 11. */
11655 gas_assert (mips_opts.micromips);
11656 my_getExpression (&imm_expr, s);
11657 check_absolute_expr (ip, &imm_expr);
11658 if (imm_expr.X_add_number & ~MICROMIPSOP_MASK_RD)
11659 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
11660 MICROMIPSOP_MASK_RD,
11661 (unsigned long) imm_expr.X_add_number);
11662 INSERT_OPERAND (1, RD, *ip, imm_expr.X_add_number);
11663 imm_expr.X_op = O_absent;
11667 case '!': /* MT usermode flag bit. */
11668 gas_assert (!mips_opts.micromips);
11669 my_getExpression (&imm_expr, s);
11670 check_absolute_expr (ip, &imm_expr);
11671 if (imm_expr.X_add_number & ~OP_MASK_MT_U)
11672 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
11673 (unsigned long) imm_expr.X_add_number);
11674 INSERT_OPERAND (0, MT_U, *ip, imm_expr.X_add_number);
11675 imm_expr.X_op = O_absent;
11679 case '$': /* MT load high flag bit. */
11680 gas_assert (!mips_opts.micromips);
11681 my_getExpression (&imm_expr, s);
11682 check_absolute_expr (ip, &imm_expr);
11683 if (imm_expr.X_add_number & ~OP_MASK_MT_H)
11684 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
11685 (unsigned long) imm_expr.X_add_number);
11686 INSERT_OPERAND (0, MT_H, *ip, imm_expr.X_add_number);
11687 imm_expr.X_op = O_absent;
11691 case '*': /* Four DSP accumulators in bits 18,19. */
11692 gas_assert (!mips_opts.micromips);
11693 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
11694 s[3] >= '0' && s[3] <= '3')
11696 regno = s[3] - '0';
11698 INSERT_OPERAND (0, MTACC_T, *ip, regno);
11702 as_bad (_("Invalid dsp/smartmips acc register"));
11705 case '&': /* Four DSP accumulators in bits 13,14. */
11706 gas_assert (!mips_opts.micromips);
11707 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
11708 s[3] >= '0' && s[3] <= '3')
11710 regno = s[3] - '0';
11712 INSERT_OPERAND (0, MTACC_D, *ip, regno);
11716 as_bad (_("Invalid dsp/smartmips acc register"));
11719 case '\\': /* 3-bit bit position. */
11721 unsigned long mask = (mips_opts.micromips
11722 ? MICROMIPSOP_MASK_3BITPOS
11723 : OP_MASK_3BITPOS);
11725 my_getExpression (&imm_expr, s);
11726 check_absolute_expr (ip, &imm_expr);
11727 if ((unsigned long) imm_expr.X_add_number > mask)
11728 as_warn (_("Bit position for %s not in range 0..%lu (%lu)"),
11730 mask, (unsigned long) imm_expr.X_add_number);
11731 INSERT_OPERAND (mips_opts.micromips,
11732 3BITPOS, *ip, imm_expr.X_add_number);
11733 imm_expr.X_op = O_absent;
11747 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
11751 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
11755 gas_assert (!mips_opts.micromips);
11756 INSERT_OPERAND (0, FT, *ip, lastregno);
11760 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
11766 /* Handle optional base register.
11767 Either the base register is omitted or
11768 we must have a left paren. */
11769 /* This is dependent on the next operand specifier
11770 is a base register specification. */
11771 gas_assert (args[1] == 'b'
11772 || (mips_opts.micromips
11774 && (args[2] == 'l' || args[2] == 'n'
11775 || args[2] == 's' || args[2] == 'a')));
11776 if (*s == '\0' && args[1] == 'b')
11778 /* Fall through. */
11780 case ')': /* These must match exactly. */
11785 case '[': /* These must match exactly. */
11787 gas_assert (!mips_opts.micromips);
11792 case '+': /* Opcode extension character. */
11795 case '1': /* UDI immediates. */
11799 gas_assert (!mips_opts.micromips);
11801 const struct mips_immed *imm = mips_immed;
11803 while (imm->type && imm->type != *args)
11807 my_getExpression (&imm_expr, s);
11808 check_absolute_expr (ip, &imm_expr);
11809 if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
11811 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
11812 imm->desc ? imm->desc : ip->insn_mo->name,
11813 (unsigned long) imm_expr.X_add_number,
11814 (unsigned long) imm_expr.X_add_number);
11815 imm_expr.X_add_number &= imm->mask;
11817 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
11819 imm_expr.X_op = O_absent;
11824 case 'J': /* 10-bit hypcall code. */
11825 gas_assert (!mips_opts.micromips);
11827 unsigned long mask = OP_MASK_CODE10;
11829 my_getExpression (&imm_expr, s);
11830 check_absolute_expr (ip, &imm_expr);
11831 if ((unsigned long) imm_expr.X_add_number > mask)
11832 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
11834 mask, (unsigned long) imm_expr.X_add_number);
11835 INSERT_OPERAND (0, CODE10, *ip, imm_expr.X_add_number);
11836 imm_expr.X_op = O_absent;
11841 case 'A': /* ins/ext position, becomes LSB. */
11850 my_getExpression (&imm_expr, s);
11851 check_absolute_expr (ip, &imm_expr);
11852 if ((unsigned long) imm_expr.X_add_number < limlo
11853 || (unsigned long) imm_expr.X_add_number > limhi)
11855 as_bad (_("Improper position (%lu)"),
11856 (unsigned long) imm_expr.X_add_number);
11857 imm_expr.X_add_number = limlo;
11859 lastpos = imm_expr.X_add_number;
11860 INSERT_OPERAND (mips_opts.micromips,
11861 EXTLSB, *ip, imm_expr.X_add_number);
11862 imm_expr.X_op = O_absent;
11866 case 'B': /* ins size, becomes MSB. */
11875 my_getExpression (&imm_expr, s);
11876 check_absolute_expr (ip, &imm_expr);
11877 /* Check for negative input so that small negative numbers
11878 will not succeed incorrectly. The checks against
11879 (pos+size) transitively check "size" itself,
11880 assuming that "pos" is reasonable. */
11881 if ((long) imm_expr.X_add_number < 0
11882 || ((unsigned long) imm_expr.X_add_number
11884 || ((unsigned long) imm_expr.X_add_number
11885 + lastpos) > limhi)
11887 as_bad (_("Improper insert size (%lu, position %lu)"),
11888 (unsigned long) imm_expr.X_add_number,
11889 (unsigned long) lastpos);
11890 imm_expr.X_add_number = limlo - lastpos;
11892 INSERT_OPERAND (mips_opts.micromips, INSMSB, *ip,
11893 lastpos + imm_expr.X_add_number - 1);
11894 imm_expr.X_op = O_absent;
11898 case 'C': /* ext size, becomes MSBD. */
11914 my_getExpression (&imm_expr, s);
11915 check_absolute_expr (ip, &imm_expr);
11916 /* The checks against (pos+size) don't transitively check
11917 "size" itself, assuming that "pos" is reasonable.
11918 We also need to check the lower bound of "size". */
11919 if ((long) imm_expr.X_add_number < sizelo
11920 || ((unsigned long) imm_expr.X_add_number
11922 || ((unsigned long) imm_expr.X_add_number
11923 + lastpos) > limhi)
11925 as_bad (_("Improper extract size (%lu, position %lu)"),
11926 (unsigned long) imm_expr.X_add_number,
11927 (unsigned long) lastpos);
11928 imm_expr.X_add_number = limlo - lastpos;
11930 INSERT_OPERAND (mips_opts.micromips,
11931 EXTMSBD, *ip, imm_expr.X_add_number - 1);
11932 imm_expr.X_op = O_absent;
11937 /* "+I" is like "I", except that imm2_expr is used. */
11938 my_getExpression (&imm2_expr, s);
11939 if (imm2_expr.X_op != O_big
11940 && imm2_expr.X_op != O_constant)
11941 insn_error = _("absolute expression required");
11942 if (HAVE_32BIT_GPRS)
11943 normalize_constant_expr (&imm2_expr);
11947 case 't': /* Coprocessor register number. */
11948 gas_assert (!mips_opts.micromips);
11949 if (s[0] == '$' && ISDIGIT (s[1]))
11959 while (ISDIGIT (*s));
11961 as_bad (_("Invalid register number (%d)"), regno);
11964 INSERT_OPERAND (0, RT, *ip, regno);
11969 as_bad (_("Invalid coprocessor 0 register number"));
11973 /* bbit[01] and bbit[01]32 bit index. Give error if index
11974 is not in the valid range. */
11975 gas_assert (!mips_opts.micromips);
11976 my_getExpression (&imm_expr, s);
11977 check_absolute_expr (ip, &imm_expr);
11978 if ((unsigned) imm_expr.X_add_number > 31)
11980 as_bad (_("Improper bit index (%lu)"),
11981 (unsigned long) imm_expr.X_add_number);
11982 imm_expr.X_add_number = 0;
11984 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number);
11985 imm_expr.X_op = O_absent;
11990 /* bbit[01] bit index when bbit is used but we generate
11991 bbit[01]32 because the index is over 32. Move to the
11992 next candidate if index is not in the valid range. */
11993 gas_assert (!mips_opts.micromips);
11994 my_getExpression (&imm_expr, s);
11995 check_absolute_expr (ip, &imm_expr);
11996 if ((unsigned) imm_expr.X_add_number < 32
11997 || (unsigned) imm_expr.X_add_number > 63)
11999 INSERT_OPERAND (0, BBITIND, *ip, imm_expr.X_add_number - 32);
12000 imm_expr.X_op = O_absent;
12005 /* cins, cins32, exts and exts32 position field. Give error
12006 if it's not in the valid range. */
12007 gas_assert (!mips_opts.micromips);
12008 my_getExpression (&imm_expr, s);
12009 check_absolute_expr (ip, &imm_expr);
12010 if ((unsigned) imm_expr.X_add_number > 31)
12012 as_bad (_("Improper position (%lu)"),
12013 (unsigned long) imm_expr.X_add_number);
12014 imm_expr.X_add_number = 0;
12016 /* Make the pos explicit to simplify +S. */
12017 lastpos = imm_expr.X_add_number + 32;
12018 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number);
12019 imm_expr.X_op = O_absent;
12024 /* cins, cins32, exts and exts32 position field. Move to
12025 the next candidate if it's not in the valid range. */
12026 gas_assert (!mips_opts.micromips);
12027 my_getExpression (&imm_expr, s);
12028 check_absolute_expr (ip, &imm_expr);
12029 if ((unsigned) imm_expr.X_add_number < 32
12030 || (unsigned) imm_expr.X_add_number > 63)
12032 lastpos = imm_expr.X_add_number;
12033 INSERT_OPERAND (0, CINSPOS, *ip, imm_expr.X_add_number - 32);
12034 imm_expr.X_op = O_absent;
12039 /* cins and exts length-minus-one field. */
12040 gas_assert (!mips_opts.micromips);
12041 my_getExpression (&imm_expr, s);
12042 check_absolute_expr (ip, &imm_expr);
12043 if ((unsigned long) imm_expr.X_add_number > 31)
12045 as_bad (_("Improper size (%lu)"),
12046 (unsigned long) imm_expr.X_add_number);
12047 imm_expr.X_add_number = 0;
12049 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
12050 imm_expr.X_op = O_absent;
12055 /* cins32/exts32 and cins/exts aliasing cint32/exts32
12056 length-minus-one field. */
12057 gas_assert (!mips_opts.micromips);
12058 my_getExpression (&imm_expr, s);
12059 check_absolute_expr (ip, &imm_expr);
12060 if ((long) imm_expr.X_add_number < 0
12061 || (unsigned long) imm_expr.X_add_number + lastpos > 63)
12063 as_bad (_("Improper size (%lu)"),
12064 (unsigned long) imm_expr.X_add_number);
12065 imm_expr.X_add_number = 0;
12067 INSERT_OPERAND (0, CINSLM1, *ip, imm_expr.X_add_number);
12068 imm_expr.X_op = O_absent;
12073 /* seqi/snei immediate field. */
12074 gas_assert (!mips_opts.micromips);
12075 my_getExpression (&imm_expr, s);
12076 check_absolute_expr (ip, &imm_expr);
12077 if ((long) imm_expr.X_add_number < -512
12078 || (long) imm_expr.X_add_number >= 512)
12080 as_bad (_("Improper immediate (%ld)"),
12081 (long) imm_expr.X_add_number);
12082 imm_expr.X_add_number = 0;
12084 INSERT_OPERAND (0, SEQI, *ip, imm_expr.X_add_number);
12085 imm_expr.X_op = O_absent;
12089 case 'a': /* 8-bit signed offset in bit 6 */
12090 gas_assert (!mips_opts.micromips);
12091 my_getExpression (&imm_expr, s);
12092 check_absolute_expr (ip, &imm_expr);
12093 min_range = -((OP_MASK_OFFSET_A + 1) >> 1);
12094 max_range = ((OP_MASK_OFFSET_A + 1) >> 1) - 1;
12095 if (imm_expr.X_add_number < min_range
12096 || imm_expr.X_add_number > max_range)
12098 as_bad (_("Offset not in range %ld..%ld (%ld)"),
12099 (long) min_range, (long) max_range,
12100 (long) imm_expr.X_add_number);
12102 INSERT_OPERAND (0, OFFSET_A, *ip, imm_expr.X_add_number);
12103 imm_expr.X_op = O_absent;
12107 case 'b': /* 8-bit signed offset in bit 3 */
12108 gas_assert (!mips_opts.micromips);
12109 my_getExpression (&imm_expr, s);
12110 check_absolute_expr (ip, &imm_expr);
12111 min_range = -((OP_MASK_OFFSET_B + 1) >> 1);
12112 max_range = ((OP_MASK_OFFSET_B + 1) >> 1) - 1;
12113 if (imm_expr.X_add_number < min_range
12114 || imm_expr.X_add_number > max_range)
12116 as_bad (_("Offset not in range %ld..%ld (%ld)"),
12117 (long) min_range, (long) max_range,
12118 (long) imm_expr.X_add_number);
12120 INSERT_OPERAND (0, OFFSET_B, *ip, imm_expr.X_add_number);
12121 imm_expr.X_op = O_absent;
12125 case 'c': /* 9-bit signed offset in bit 6 */
12126 gas_assert (!mips_opts.micromips);
12127 my_getExpression (&imm_expr, s);
12128 check_absolute_expr (ip, &imm_expr);
12129 min_range = -((OP_MASK_OFFSET_C + 1) >> 1);
12130 max_range = ((OP_MASK_OFFSET_C + 1) >> 1) - 1;
12131 /* We check the offset range before adjusted. */
12134 if (imm_expr.X_add_number < min_range
12135 || imm_expr.X_add_number > max_range)
12137 as_bad (_("Offset not in range %ld..%ld (%ld)"),
12138 (long) min_range, (long) max_range,
12139 (long) imm_expr.X_add_number);
12141 if (imm_expr.X_add_number & 0xf)
12143 as_bad (_("Offset not 16 bytes alignment (%ld)"),
12144 (long) imm_expr.X_add_number);
12146 /* Right shift 4 bits to adjust the offset operand. */
12147 INSERT_OPERAND (0, OFFSET_C, *ip,
12148 imm_expr.X_add_number >> 4);
12149 imm_expr.X_op = O_absent;
12154 gas_assert (!mips_opts.micromips);
12155 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, ®no))
12157 if (regno == AT && mips_opts.at)
12159 if (mips_opts.at == ATREG)
12160 as_warn (_("used $at without \".set noat\""));
12162 as_warn (_("used $%u with \".set at=$%u\""),
12163 regno, mips_opts.at);
12165 INSERT_OPERAND (0, RZ, *ip, regno);
12169 gas_assert (!mips_opts.micromips);
12170 if (!reg_lookup (&s, RTYPE_FPU, ®no))
12172 INSERT_OPERAND (0, FZ, *ip, regno);
12179 /* Check whether there is only a single bracketed expression
12180 left. If so, it must be the base register and the
12181 constant must be zero. */
12182 if (*s == '(' && strchr (s + 1, '(') == 0)
12185 /* If this value won't fit into the offset, then go find
12186 a macro that will generate a 16- or 32-bit offset code
12188 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
12189 if ((i == 0 && (imm_expr.X_op != O_constant
12190 || imm_expr.X_add_number >= 1 << shift
12191 || imm_expr.X_add_number < -1 << shift))
12194 imm_expr.X_op = O_absent;
12197 INSERT_OPERAND (mips_opts.micromips, EVAOFFSET, *ip,
12198 imm_expr.X_add_number);
12199 imm_expr.X_op = O_absent;
12205 as_bad (_("Internal error: bad %s opcode "
12206 "(unknown extension operand type `+%c'): %s %s"),
12207 mips_opts.micromips ? "microMIPS" : "MIPS",
12208 *args, insn->name, insn->args);
12209 /* Further processing is fruitless. */
12214 case '.': /* 10-bit offset. */
12215 gas_assert (mips_opts.micromips);
12216 case '~': /* 12-bit offset. */
12218 int shift = *args == '.' ? 9 : 11;
12221 /* Check whether there is only a single bracketed expression
12222 left. If so, it must be the base register and the
12223 constant must be zero. */
12224 if (*s == '(' && strchr (s + 1, '(') == 0)
12227 /* If this value won't fit into the offset, then go find
12228 a macro that will generate a 16- or 32-bit offset code
12230 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
12231 if ((i == 0 && (imm_expr.X_op != O_constant
12232 || imm_expr.X_add_number >= 1 << shift
12233 || imm_expr.X_add_number < -1 << shift))
12236 imm_expr.X_op = O_absent;
12240 INSERT_OPERAND (1, OFFSET10, *ip, imm_expr.X_add_number);
12242 INSERT_OPERAND (mips_opts.micromips,
12243 OFFSET12, *ip, imm_expr.X_add_number);
12244 imm_expr.X_op = O_absent;
12249 case '<': /* must be at least one digit */
12251 * According to the manual, if the shift amount is greater
12252 * than 31 or less than 0, then the shift amount should be
12253 * mod 32. In reality the mips assembler issues an error.
12254 * We issue a warning and mask out all but the low 5 bits.
12256 my_getExpression (&imm_expr, s);
12257 check_absolute_expr (ip, &imm_expr);
12258 if ((unsigned long) imm_expr.X_add_number > 31)
12259 as_warn (_("Improper shift amount (%lu)"),
12260 (unsigned long) imm_expr.X_add_number);
12261 INSERT_OPERAND (mips_opts.micromips,
12262 SHAMT, *ip, imm_expr.X_add_number);
12263 imm_expr.X_op = O_absent;
12267 case '>': /* shift amount minus 32 */
12268 my_getExpression (&imm_expr, s);
12269 check_absolute_expr (ip, &imm_expr);
12270 if ((unsigned long) imm_expr.X_add_number < 32
12271 || (unsigned long) imm_expr.X_add_number > 63)
12273 INSERT_OPERAND (mips_opts.micromips,
12274 SHAMT, *ip, imm_expr.X_add_number - 32);
12275 imm_expr.X_op = O_absent;
12279 case 'k': /* CACHE code. */
12280 case 'h': /* PREFX code. */
12281 case '1': /* SYNC type. */
12282 my_getExpression (&imm_expr, s);
12283 check_absolute_expr (ip, &imm_expr);
12284 if ((unsigned long) imm_expr.X_add_number > 31)
12285 as_warn (_("Invalid value for `%s' (%lu)"),
12287 (unsigned long) imm_expr.X_add_number);
12291 if (mips_fix_cn63xxp1
12292 && !mips_opts.micromips
12293 && strcmp ("pref", insn->name) == 0)
12294 switch (imm_expr.X_add_number)
12303 case 31: /* These are ok. */
12306 default: /* The rest must be changed to 28. */
12307 imm_expr.X_add_number = 28;
12310 INSERT_OPERAND (mips_opts.micromips,
12311 CACHE, *ip, imm_expr.X_add_number);
12314 INSERT_OPERAND (mips_opts.micromips,
12315 PREFX, *ip, imm_expr.X_add_number);
12318 INSERT_OPERAND (mips_opts.micromips,
12319 STYPE, *ip, imm_expr.X_add_number);
12322 imm_expr.X_op = O_absent;
12326 case 'c': /* BREAK code. */
12328 unsigned long mask = (mips_opts.micromips
12329 ? MICROMIPSOP_MASK_CODE
12332 my_getExpression (&imm_expr, s);
12333 check_absolute_expr (ip, &imm_expr);
12334 if ((unsigned long) imm_expr.X_add_number > mask)
12335 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
12337 mask, (unsigned long) imm_expr.X_add_number);
12338 INSERT_OPERAND (mips_opts.micromips,
12339 CODE, *ip, imm_expr.X_add_number);
12340 imm_expr.X_op = O_absent;
12345 case 'q': /* Lower BREAK code. */
12347 unsigned long mask = (mips_opts.micromips
12348 ? MICROMIPSOP_MASK_CODE2
12351 my_getExpression (&imm_expr, s);
12352 check_absolute_expr (ip, &imm_expr);
12353 if ((unsigned long) imm_expr.X_add_number > mask)
12354 as_warn (_("Lower code for %s not in range 0..%lu (%lu)"),
12356 mask, (unsigned long) imm_expr.X_add_number);
12357 INSERT_OPERAND (mips_opts.micromips,
12358 CODE2, *ip, imm_expr.X_add_number);
12359 imm_expr.X_op = O_absent;
12364 case 'B': /* 20- or 10-bit syscall/break/wait code. */
12366 unsigned long mask = (mips_opts.micromips
12367 ? MICROMIPSOP_MASK_CODE10
12370 my_getExpression (&imm_expr, s);
12371 check_absolute_expr (ip, &imm_expr);
12372 if ((unsigned long) imm_expr.X_add_number > mask)
12373 as_warn (_("Code for %s not in range 0..%lu (%lu)"),
12375 mask, (unsigned long) imm_expr.X_add_number);
12376 if (mips_opts.micromips)
12377 INSERT_OPERAND (1, CODE10, *ip, imm_expr.X_add_number);
12379 INSERT_OPERAND (0, CODE20, *ip, imm_expr.X_add_number);
12380 imm_expr.X_op = O_absent;
12385 case 'C': /* 25- or 23-bit coprocessor code. */
12387 unsigned long mask = (mips_opts.micromips
12388 ? MICROMIPSOP_MASK_COPZ
12391 my_getExpression (&imm_expr, s);
12392 check_absolute_expr (ip, &imm_expr);
12393 if ((unsigned long) imm_expr.X_add_number > mask)
12394 as_warn (_("Coproccesor code > %u bits (%lu)"),
12395 mips_opts.micromips ? 23U : 25U,
12396 (unsigned long) imm_expr.X_add_number);
12397 INSERT_OPERAND (mips_opts.micromips,
12398 COPZ, *ip, imm_expr.X_add_number);
12399 imm_expr.X_op = O_absent;
12404 case 'J': /* 19-bit WAIT code. */
12405 gas_assert (!mips_opts.micromips);
12406 my_getExpression (&imm_expr, s);
12407 check_absolute_expr (ip, &imm_expr);
12408 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
12410 as_warn (_("Illegal 19-bit code (%lu)"),
12411 (unsigned long) imm_expr.X_add_number);
12412 imm_expr.X_add_number &= OP_MASK_CODE19;
12414 INSERT_OPERAND (0, CODE19, *ip, imm_expr.X_add_number);
12415 imm_expr.X_op = O_absent;
12419 case 'P': /* Performance register. */
12420 gas_assert (!mips_opts.micromips);
12421 my_getExpression (&imm_expr, s);
12422 check_absolute_expr (ip, &imm_expr);
12423 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
12424 as_warn (_("Invalid performance register (%lu)"),
12425 (unsigned long) imm_expr.X_add_number);
12426 if (imm_expr.X_add_number != 0 && mips_opts.arch == CPU_R5900
12427 && (!strcmp(insn->name,"mfps") || !strcmp(insn->name,"mtps")))
12428 as_warn (_("Invalid performance register (%lu)"),
12429 (unsigned long) imm_expr.X_add_number);
12430 INSERT_OPERAND (0, PERFREG, *ip, imm_expr.X_add_number);
12431 imm_expr.X_op = O_absent;
12435 case 'G': /* Coprocessor destination register. */
12437 unsigned long opcode = ip->insn_opcode;
12438 unsigned long mask;
12439 unsigned int types;
12442 if (mips_opts.micromips)
12444 mask = ~((MICROMIPSOP_MASK_RT << MICROMIPSOP_SH_RT)
12445 | (MICROMIPSOP_MASK_RS << MICROMIPSOP_SH_RS)
12446 | (MICROMIPSOP_MASK_SEL << MICROMIPSOP_SH_SEL));
12450 case 0x000000fc: /* mfc0 */
12451 case 0x000002fc: /* mtc0 */
12452 case 0x580000fc: /* dmfc0 */
12453 case 0x580002fc: /* dmtc0 */
12463 opcode = (opcode >> OP_SH_OP) & OP_MASK_OP;
12464 cop0 = opcode == OP_OP_COP0;
12466 types = RTYPE_NUM | (cop0 ? RTYPE_CP0 : RTYPE_GP);
12467 ok = reg_lookup (&s, types, ®no);
12468 if (mips_opts.micromips)
12469 INSERT_OPERAND (1, RS, *ip, regno);
12471 INSERT_OPERAND (0, RD, *ip, regno);
12480 case 'y': /* ALNV.PS source register. */
12481 gas_assert (mips_opts.micromips);
12483 case 'x': /* Ignore register name. */
12484 case 'U': /* Destination register (CLO/CLZ). */
12485 case 'g': /* Coprocessor destination register. */
12486 gas_assert (!mips_opts.micromips);
12487 case 'b': /* Base register. */
12488 case 'd': /* Destination register. */
12489 case 's': /* Source register. */
12490 case 't': /* Target register. */
12491 case 'r': /* Both target and source. */
12492 case 'v': /* Both dest and source. */
12493 case 'w': /* Both dest and target. */
12494 case 'E': /* Coprocessor target register. */
12495 case 'K': /* RDHWR destination register. */
12496 case 'z': /* Must be zero register. */
12499 if (*args == 'E' || *args == 'K')
12500 ok = reg_lookup (&s, RTYPE_NUM, ®no);
12503 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, ®no);
12504 if (regno == AT && mips_opts.at)
12506 if (mips_opts.at == ATREG)
12507 as_warn (_("Used $at without \".set noat\""));
12509 as_warn (_("Used $%u with \".set at=$%u\""),
12510 regno, mips_opts.at);
12520 if (c == 'r' || c == 'v' || c == 'w')
12527 /* 'z' only matches $0. */
12528 if (c == 'z' && regno != 0)
12531 if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
12533 if (regno == lastregno)
12536 = _("Source and destination must be different");
12539 if (regno == 31 && lastregno == 0xffffffff)
12542 = _("A destination register must be supplied");
12546 /* Now that we have assembled one operand, we use the args
12547 string to figure out where it goes in the instruction. */
12554 INSERT_OPERAND (mips_opts.micromips, RS, *ip, regno);
12558 if (mips_opts.micromips)
12559 INSERT_OPERAND (1, RS, *ip, regno);
12561 INSERT_OPERAND (0, RD, *ip, regno);
12566 INSERT_OPERAND (mips_opts.micromips, RD, *ip, regno);
12570 gas_assert (!mips_opts.micromips);
12571 INSERT_OPERAND (0, RD, *ip, regno);
12572 INSERT_OPERAND (0, RT, *ip, regno);
12578 INSERT_OPERAND (mips_opts.micromips, RT, *ip, regno);
12582 gas_assert (mips_opts.micromips);
12583 INSERT_OPERAND (1, RS3, *ip, regno);
12587 /* This case exists because on the r3000 trunc
12588 expands into a macro which requires a gp
12589 register. On the r6000 or r4000 it is
12590 assembled into a single instruction which
12591 ignores the register. Thus the insn version
12592 is MIPS_ISA2 and uses 'x', and the macro
12593 version is MIPS_ISA1 and uses 't'. */
12597 /* This case is for the div instruction, which
12598 acts differently if the destination argument
12599 is $0. This only matches $0, and is checked
12600 outside the switch. */
12610 INSERT_OPERAND (mips_opts.micromips, RS, *ip, lastregno);
12614 INSERT_OPERAND (mips_opts.micromips, RT, *ip, lastregno);
12619 case 'O': /* MDMX alignment immediate constant. */
12620 gas_assert (!mips_opts.micromips);
12621 my_getExpression (&imm_expr, s);
12622 check_absolute_expr (ip, &imm_expr);
12623 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
12624 as_warn (_("Improper align amount (%ld), using low bits"),
12625 (long) imm_expr.X_add_number);
12626 INSERT_OPERAND (0, ALN, *ip, imm_expr.X_add_number);
12627 imm_expr.X_op = O_absent;
12631 case 'Q': /* MDMX vector, element sel, or const. */
12634 /* MDMX Immediate. */
12635 gas_assert (!mips_opts.micromips);
12636 my_getExpression (&imm_expr, s);
12637 check_absolute_expr (ip, &imm_expr);
12638 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
12639 as_warn (_("Invalid MDMX Immediate (%ld)"),
12640 (long) imm_expr.X_add_number);
12641 INSERT_OPERAND (0, FT, *ip, imm_expr.X_add_number);
12642 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
12643 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
12645 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
12646 imm_expr.X_op = O_absent;
12650 /* Not MDMX Immediate. Fall through. */
12651 case 'X': /* MDMX destination register. */
12652 case 'Y': /* MDMX source register. */
12653 case 'Z': /* MDMX target register. */
12656 gas_assert (!mips_opts.micromips);
12657 case 'D': /* Floating point destination register. */
12658 case 'S': /* Floating point source register. */
12659 case 'T': /* Floating point target register. */
12660 case 'R': /* Floating point source register. */
12664 || ((mips_opts.ase & ASE_MDMX)
12665 && (ip->insn_mo->pinfo & FP_D)
12666 && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
12667 | INSN_COPROC_MEMORY_DELAY
12668 | INSN_LOAD_COPROC_DELAY
12669 | INSN_LOAD_MEMORY_DELAY
12670 | INSN_STORE_MEMORY))))
12671 rtype |= RTYPE_VEC;
12673 if (reg_lookup (&s, rtype, ®no))
12675 if ((regno & 1) != 0
12677 && !mips_oddfpreg_ok (ip->insn_mo, argnum))
12678 as_warn (_("Float register should be even, was %d"),
12686 if (c == 'V' || c == 'W')
12697 INSERT_OPERAND (mips_opts.micromips, FD, *ip, regno);
12703 INSERT_OPERAND (mips_opts.micromips, FS, *ip, regno);
12707 /* This is like 'Z', but also needs to fix the MDMX
12708 vector/scalar select bits. Note that the
12709 scalar immediate case is handled above. */
12712 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
12713 int max_el = (is_qh ? 3 : 7);
12715 my_getExpression(&imm_expr, s);
12716 check_absolute_expr (ip, &imm_expr);
12718 if (imm_expr.X_add_number > max_el)
12719 as_bad (_("Bad element selector %ld"),
12720 (long) imm_expr.X_add_number);
12721 imm_expr.X_add_number &= max_el;
12722 ip->insn_opcode |= (imm_expr.X_add_number
12725 imm_expr.X_op = O_absent;
12727 as_warn (_("Expecting ']' found '%s'"), s);
12733 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
12734 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
12737 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
12740 /* Fall through. */
12744 INSERT_OPERAND (mips_opts.micromips, FT, *ip, regno);
12748 INSERT_OPERAND (mips_opts.micromips, FR, *ip, regno);
12758 INSERT_OPERAND (mips_opts.micromips, FS, *ip, lastregno);
12762 INSERT_OPERAND (mips_opts.micromips, FT, *ip, lastregno);
12768 my_getExpression (&imm_expr, s);
12769 if (imm_expr.X_op != O_big
12770 && imm_expr.X_op != O_constant)
12771 insn_error = _("absolute expression required");
12772 if (HAVE_32BIT_GPRS)
12773 normalize_constant_expr (&imm_expr);
12778 my_getExpression (&offset_expr, s);
12779 normalize_address_expr (&offset_expr);
12780 *imm_reloc = BFD_RELOC_32;
12793 unsigned char temp[8];
12795 unsigned int length;
12800 /* These only appear as the last operand in an
12801 instruction, and every instruction that accepts
12802 them in any variant accepts them in all variants.
12803 This means we don't have to worry about backing out
12804 any changes if the instruction does not match.
12806 The difference between them is the size of the
12807 floating point constant and where it goes. For 'F'
12808 and 'L' the constant is 64 bits; for 'f' and 'l' it
12809 is 32 bits. Where the constant is placed is based
12810 on how the MIPS assembler does things:
12813 f -- immediate value
12816 The .lit4 and .lit8 sections are only used if
12817 permitted by the -G argument.
12819 The code below needs to know whether the target register
12820 is 32 or 64 bits wide. It relies on the fact 'f' and
12821 'F' are used with GPR-based instructions and 'l' and
12822 'L' are used with FPR-based instructions. */
12824 f64 = *args == 'F' || *args == 'L';
12825 using_gprs = *args == 'F' || *args == 'f';
12827 save_in = input_line_pointer;
12828 input_line_pointer = s;
12829 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
12831 s = input_line_pointer;
12832 input_line_pointer = save_in;
12833 if (err != NULL && *err != '\0')
12835 as_bad (_("Bad floating point constant: %s"), err);
12836 memset (temp, '\0', sizeof temp);
12837 length = f64 ? 8 : 4;
12840 gas_assert (length == (unsigned) (f64 ? 8 : 4));
12844 && (g_switch_value < 4
12845 || (temp[0] == 0 && temp[1] == 0)
12846 || (temp[2] == 0 && temp[3] == 0))))
12848 imm_expr.X_op = O_constant;
12849 if (!target_big_endian)
12850 imm_expr.X_add_number = bfd_getl32 (temp);
12852 imm_expr.X_add_number = bfd_getb32 (temp);
12854 else if (length > 4
12855 && !mips_disable_float_construction
12856 /* Constants can only be constructed in GPRs and
12857 copied to FPRs if the GPRs are at least as wide
12858 as the FPRs. Force the constant into memory if
12859 we are using 64-bit FPRs but the GPRs are only
12862 || !(HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
12863 && ((temp[0] == 0 && temp[1] == 0)
12864 || (temp[2] == 0 && temp[3] == 0))
12865 && ((temp[4] == 0 && temp[5] == 0)
12866 || (temp[6] == 0 && temp[7] == 0)))
12868 /* The value is simple enough to load with a couple of
12869 instructions. If using 32-bit registers, set
12870 imm_expr to the high order 32 bits and offset_expr to
12871 the low order 32 bits. Otherwise, set imm_expr to
12872 the entire 64 bit constant. */
12873 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
12875 imm_expr.X_op = O_constant;
12876 offset_expr.X_op = O_constant;
12877 if (!target_big_endian)
12879 imm_expr.X_add_number = bfd_getl32 (temp + 4);
12880 offset_expr.X_add_number = bfd_getl32 (temp);
12884 imm_expr.X_add_number = bfd_getb32 (temp);
12885 offset_expr.X_add_number = bfd_getb32 (temp + 4);
12887 if (offset_expr.X_add_number == 0)
12888 offset_expr.X_op = O_absent;
12892 imm_expr.X_op = O_constant;
12893 if (!target_big_endian)
12894 imm_expr.X_add_number = bfd_getl64 (temp);
12896 imm_expr.X_add_number = bfd_getb64 (temp);
12901 const char *newname;
12904 /* Switch to the right section. */
12906 subseg = now_subseg;
12909 default: /* unused default case avoids warnings. */
12911 newname = RDATA_SECTION_NAME;
12912 if (g_switch_value >= 8)
12916 newname = RDATA_SECTION_NAME;
12919 gas_assert (g_switch_value >= 4);
12923 new_seg = subseg_new (newname, (subsegT) 0);
12924 bfd_set_section_flags (stdoutput, new_seg,
12929 frag_align (*args == 'l' ? 2 : 3, 0, 0);
12930 if (strncmp (TARGET_OS, "elf", 3) != 0)
12931 record_alignment (new_seg, 4);
12933 record_alignment (new_seg, *args == 'l' ? 2 : 3);
12934 if (seg == now_seg)
12935 as_bad (_("Can't use floating point insn in this section"));
12937 /* Set the argument to the current address in the
12939 offset_expr.X_op = O_symbol;
12940 offset_expr.X_add_symbol = symbol_temp_new_now ();
12941 offset_expr.X_add_number = 0;
12943 /* Put the floating point number into the section. */
12944 p = frag_more ((int) length);
12945 memcpy (p, temp, length);
12947 /* Switch back to the original section. */
12948 subseg_set (seg, subseg);
12953 case 'i': /* 16-bit unsigned immediate. */
12954 case 'j': /* 16-bit signed immediate. */
12955 *imm_reloc = BFD_RELOC_LO16;
12956 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
12959 offsetT minval, maxval;
12961 more = (insn + 1 < past
12962 && strcmp (insn->name, insn[1].name) == 0);
12964 /* For compatibility with older assemblers, we accept
12965 0x8000-0xffff as signed 16-bit numbers when only
12966 signed numbers are allowed. */
12968 minval = 0, maxval = 0xffff;
12970 minval = -0x8000, maxval = 0x7fff;
12972 minval = -0x8000, maxval = 0xffff;
12974 if (imm_expr.X_op != O_constant
12975 || imm_expr.X_add_number < minval
12976 || imm_expr.X_add_number > maxval)
12980 if (imm_expr.X_op == O_constant
12981 || imm_expr.X_op == O_big)
12982 as_bad (_("Expression out of range"));
12988 case 'o': /* 16-bit offset. */
12989 offset_reloc[0] = BFD_RELOC_LO16;
12990 offset_reloc[1] = BFD_RELOC_UNUSED;
12991 offset_reloc[2] = BFD_RELOC_UNUSED;
12993 /* Check whether there is only a single bracketed expression
12994 left. If so, it must be the base register and the
12995 constant must be zero. */
12996 if (*s == '(' && strchr (s + 1, '(') == 0)
12998 offset_expr.X_op = O_constant;
12999 offset_expr.X_add_number = 0;
13003 /* If this value won't fit into a 16 bit offset, then go
13004 find a macro that will generate the 32 bit offset
13006 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
13007 && (offset_expr.X_op != O_constant
13008 || offset_expr.X_add_number >= 0x8000
13009 || offset_expr.X_add_number < -0x8000))
13015 case 'p': /* PC-relative offset. */
13016 *offset_reloc = BFD_RELOC_16_PCREL_S2;
13017 my_getExpression (&offset_expr, s);
13021 case 'u': /* Upper 16 bits. */
13022 *imm_reloc = BFD_RELOC_LO16;
13023 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
13024 && imm_expr.X_op == O_constant
13025 && (imm_expr.X_add_number < 0
13026 || imm_expr.X_add_number >= 0x10000))
13027 as_bad (_("lui expression (%lu) not in range 0..65535"),
13028 (unsigned long) imm_expr.X_add_number);
13032 case 'a': /* 26-bit address. */
13033 *offset_reloc = BFD_RELOC_MIPS_JMP;
13034 my_getExpression (&offset_expr, s);
13038 case 'N': /* 3-bit branch condition code. */
13039 case 'M': /* 3-bit compare condition code. */
13041 if (ip->insn_mo->pinfo & (FP_D | FP_S))
13042 rtype |= RTYPE_FCC;
13043 if (!reg_lookup (&s, rtype, ®no))
13045 if ((strcmp (str + strlen (str) - 3, ".ps") == 0
13046 || strcmp (str + strlen (str) - 5, "any2f") == 0
13047 || strcmp (str + strlen (str) - 5, "any2t") == 0)
13048 && (regno & 1) != 0)
13049 as_warn (_("Condition code register should be even for %s, "
13052 if ((strcmp (str + strlen (str) - 5, "any4f") == 0
13053 || strcmp (str + strlen (str) - 5, "any4t") == 0)
13054 && (regno & 3) != 0)
13055 as_warn (_("Condition code register should be 0 or 4 for %s, "
13059 INSERT_OPERAND (mips_opts.micromips, BCC, *ip, regno);
13061 INSERT_OPERAND (mips_opts.micromips, CCC, *ip, regno);
13065 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
13076 while (ISDIGIT (*s));
13079 c = 8; /* Invalid sel value. */
13082 as_bad (_("Invalid coprocessor sub-selection value (0-7)"));
13083 INSERT_OPERAND (mips_opts.micromips, SEL, *ip, c);
13087 gas_assert (!mips_opts.micromips);
13088 /* Must be at least one digit. */
13089 my_getExpression (&imm_expr, s);
13090 check_absolute_expr (ip, &imm_expr);
13092 if ((unsigned long) imm_expr.X_add_number
13093 > (unsigned long) OP_MASK_VECBYTE)
13095 as_bad (_("bad byte vector index (%ld)"),
13096 (long) imm_expr.X_add_number);
13097 imm_expr.X_add_number = 0;
13100 INSERT_OPERAND (0, VECBYTE, *ip, imm_expr.X_add_number);
13101 imm_expr.X_op = O_absent;
13106 gas_assert (!mips_opts.micromips);
13107 my_getExpression (&imm_expr, s);
13108 check_absolute_expr (ip, &imm_expr);
13110 if ((unsigned long) imm_expr.X_add_number
13111 > (unsigned long) OP_MASK_VECALIGN)
13113 as_bad (_("bad byte vector index (%ld)"),
13114 (long) imm_expr.X_add_number);
13115 imm_expr.X_add_number = 0;
13118 INSERT_OPERAND (0, VECALIGN, *ip, imm_expr.X_add_number);
13119 imm_expr.X_op = O_absent;
13123 case 'm': /* Opcode extension character. */
13124 gas_assert (mips_opts.micromips);
13129 if (strncmp (s, "$pc", 3) == 0)
13157 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, ®no);
13158 if (regno == AT && mips_opts.at)
13160 if (mips_opts.at == ATREG)
13161 as_warn (_("Used $at without \".set noat\""));
13163 as_warn (_("Used $%u with \".set at=$%u\""),
13164 regno, mips_opts.at);
13170 gas_assert (args[1] == ',');
13176 gas_assert (args[1] == ',');
13178 continue; /* Nothing to do. */
13184 if (c == 'j' && !strncmp (ip->insn_mo->name, "jalr", 4))
13186 if (regno == lastregno)
13189 = _("Source and destination must be different");
13192 if (regno == 31 && lastregno == 0xffffffff)
13195 = _("A destination register must be supplied");
13206 gas_assert (args[1] == ',');
13213 gas_assert (args[1] == ',');
13216 continue; /* Nothing to do. */
13220 /* Make sure regno is the same as lastregno. */
13221 if (c == 't' && regno != lastregno)
13224 /* Make sure regno is the same as destregno. */
13225 if (c == 'x' && regno != destregno)
13228 /* We need to save regno, before regno maps to the
13229 microMIPS register encoding. */
13239 regno = ILLEGAL_REG;
13243 regno = mips32_to_micromips_reg_b_map[regno];
13247 regno = mips32_to_micromips_reg_c_map[regno];
13251 regno = mips32_to_micromips_reg_d_map[regno];
13255 regno = mips32_to_micromips_reg_e_map[regno];
13259 regno = mips32_to_micromips_reg_f_map[regno];
13263 regno = mips32_to_micromips_reg_g_map[regno];
13267 regno = mips32_to_micromips_reg_h_map[regno];
13271 switch (EXTRACT_OPERAND (1, MI, *ip))
13276 else if (regno == 22)
13278 else if (regno == 5)
13280 else if (regno == 6)
13282 else if (regno == 7)
13285 regno = ILLEGAL_REG;
13291 else if (regno == 7)
13294 regno = ILLEGAL_REG;
13301 regno = ILLEGAL_REG;
13305 regno = ILLEGAL_REG;
13311 regno = mips32_to_micromips_reg_l_map[regno];
13315 regno = mips32_to_micromips_reg_m_map[regno];
13319 regno = mips32_to_micromips_reg_n_map[regno];
13323 regno = mips32_to_micromips_reg_q_map[regno];
13328 regno = ILLEGAL_REG;
13333 regno = ILLEGAL_REG;
13338 regno = ILLEGAL_REG;
13341 case 'j': /* Do nothing. */
13351 if (regno == ILLEGAL_REG)
13357 INSERT_OPERAND (1, MB, *ip, regno);
13361 INSERT_OPERAND (1, MC, *ip, regno);
13365 INSERT_OPERAND (1, MD, *ip, regno);
13369 INSERT_OPERAND (1, ME, *ip, regno);
13373 INSERT_OPERAND (1, MF, *ip, regno);
13377 INSERT_OPERAND (1, MG, *ip, regno);
13381 INSERT_OPERAND (1, MH, *ip, regno);
13385 INSERT_OPERAND (1, MI, *ip, regno);
13389 INSERT_OPERAND (1, MJ, *ip, regno);
13393 INSERT_OPERAND (1, ML, *ip, regno);
13397 INSERT_OPERAND (1, MM, *ip, regno);
13401 INSERT_OPERAND (1, MN, *ip, regno);
13405 INSERT_OPERAND (1, MP, *ip, regno);
13409 INSERT_OPERAND (1, MQ, *ip, regno);
13412 case 'a': /* Do nothing. */
13413 case 's': /* Do nothing. */
13414 case 't': /* Do nothing. */
13415 case 'x': /* Do nothing. */
13416 case 'y': /* Do nothing. */
13417 case 'z': /* Do nothing. */
13427 bfd_reloc_code_real_type r[3];
13431 /* Check whether there is only a single bracketed
13432 expression left. If so, it must be the base register
13433 and the constant must be zero. */
13434 if (*s == '(' && strchr (s + 1, '(') == 0)
13436 INSERT_OPERAND (1, IMMA, *ip, 0);
13440 if (my_getSmallExpression (&ep, r, s) > 0
13441 || !expr_const_in_range (&ep, -64, 64, 2))
13444 imm = ep.X_add_number >> 2;
13445 INSERT_OPERAND (1, IMMA, *ip, imm);
13452 bfd_reloc_code_real_type r[3];
13456 if (my_getSmallExpression (&ep, r, s) > 0
13457 || ep.X_op != O_constant)
13460 for (imm = 0; imm < 8; imm++)
13461 if (micromips_imm_b_map[imm] == ep.X_add_number)
13466 INSERT_OPERAND (1, IMMB, *ip, imm);
13473 bfd_reloc_code_real_type r[3];
13477 if (my_getSmallExpression (&ep, r, s) > 0
13478 || ep.X_op != O_constant)
13481 for (imm = 0; imm < 16; imm++)
13482 if (micromips_imm_c_map[imm] == ep.X_add_number)
13487 INSERT_OPERAND (1, IMMC, *ip, imm);
13492 case 'D': /* pc relative offset */
13493 case 'E': /* pc relative offset */
13494 my_getExpression (&offset_expr, s);
13495 if (offset_expr.X_op == O_register)
13498 if (!forced_insn_length)
13499 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
13501 *offset_reloc = BFD_RELOC_MICROMIPS_10_PCREL_S1;
13503 *offset_reloc = BFD_RELOC_MICROMIPS_7_PCREL_S1;
13509 bfd_reloc_code_real_type r[3];
13513 if (my_getSmallExpression (&ep, r, s) > 0
13514 || !expr_const_in_range (&ep, 0, 16, 0))
13517 imm = ep.X_add_number;
13518 INSERT_OPERAND (1, IMMF, *ip, imm);
13525 bfd_reloc_code_real_type r[3];
13529 /* Check whether there is only a single bracketed
13530 expression left. If so, it must be the base register
13531 and the constant must be zero. */
13532 if (*s == '(' && strchr (s + 1, '(') == 0)
13534 INSERT_OPERAND (1, IMMG, *ip, 0);
13538 if (my_getSmallExpression (&ep, r, s) > 0
13539 || !expr_const_in_range (&ep, -1, 15, 0))
13542 imm = ep.X_add_number & 15;
13543 INSERT_OPERAND (1, IMMG, *ip, imm);
13550 bfd_reloc_code_real_type r[3];
13554 /* Check whether there is only a single bracketed
13555 expression left. If so, it must be the base register
13556 and the constant must be zero. */
13557 if (*s == '(' && strchr (s + 1, '(') == 0)
13559 INSERT_OPERAND (1, IMMH, *ip, 0);
13563 if (my_getSmallExpression (&ep, r, s) > 0
13564 || !expr_const_in_range (&ep, 0, 16, 1))
13567 imm = ep.X_add_number >> 1;
13568 INSERT_OPERAND (1, IMMH, *ip, imm);
13575 bfd_reloc_code_real_type r[3];
13579 if (my_getSmallExpression (&ep, r, s) > 0
13580 || !expr_const_in_range (&ep, -1, 127, 0))
13583 imm = ep.X_add_number & 127;
13584 INSERT_OPERAND (1, IMMI, *ip, imm);
13591 bfd_reloc_code_real_type r[3];
13595 /* Check whether there is only a single bracketed
13596 expression left. If so, it must be the base register
13597 and the constant must be zero. */
13598 if (*s == '(' && strchr (s + 1, '(') == 0)
13600 INSERT_OPERAND (1, IMMJ, *ip, 0);
13604 if (my_getSmallExpression (&ep, r, s) > 0
13605 || !expr_const_in_range (&ep, 0, 16, 2))
13608 imm = ep.X_add_number >> 2;
13609 INSERT_OPERAND (1, IMMJ, *ip, imm);
13616 bfd_reloc_code_real_type r[3];
13620 /* Check whether there is only a single bracketed
13621 expression left. If so, it must be the base register
13622 and the constant must be zero. */
13623 if (*s == '(' && strchr (s + 1, '(') == 0)
13625 INSERT_OPERAND (1, IMML, *ip, 0);
13629 if (my_getSmallExpression (&ep, r, s) > 0
13630 || !expr_const_in_range (&ep, 0, 16, 0))
13633 imm = ep.X_add_number;
13634 INSERT_OPERAND (1, IMML, *ip, imm);
13641 bfd_reloc_code_real_type r[3];
13645 if (my_getSmallExpression (&ep, r, s) > 0
13646 || !expr_const_in_range (&ep, 1, 9, 0))
13649 imm = ep.X_add_number & 7;
13650 INSERT_OPERAND (1, IMMM, *ip, imm);
13655 case 'N': /* Register list for lwm and swm. */
13657 /* A comma-separated list of registers and/or
13658 dash-separated contiguous ranges including
13659 both ra and a set of one or more registers
13660 starting at s0 up to s3 which have to be
13667 and any permutations of these. */
13668 unsigned int reglist;
13671 if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, ®list))
13674 if ((reglist & 0xfff1ffff) != 0x80010000)
13677 reglist = (reglist >> 17) & 7;
13679 if ((reglist & -reglist) != reglist)
13682 imm = ffs (reglist) - 1;
13683 INSERT_OPERAND (1, IMMN, *ip, imm);
13687 case 'O': /* sdbbp 4-bit code. */
13689 bfd_reloc_code_real_type r[3];
13693 if (my_getSmallExpression (&ep, r, s) > 0
13694 || !expr_const_in_range (&ep, 0, 16, 0))
13697 imm = ep.X_add_number;
13698 INSERT_OPERAND (1, IMMO, *ip, imm);
13705 bfd_reloc_code_real_type r[3];
13709 if (my_getSmallExpression (&ep, r, s) > 0
13710 || !expr_const_in_range (&ep, 0, 32, 2))
13713 imm = ep.X_add_number >> 2;
13714 INSERT_OPERAND (1, IMMP, *ip, imm);
13721 bfd_reloc_code_real_type r[3];
13725 if (my_getSmallExpression (&ep, r, s) > 0
13726 || !expr_const_in_range (&ep, -0x400000, 0x400000, 2))
13729 imm = ep.X_add_number >> 2;
13730 INSERT_OPERAND (1, IMMQ, *ip, imm);
13737 bfd_reloc_code_real_type r[3];
13741 /* Check whether there is only a single bracketed
13742 expression left. If so, it must be the base register
13743 and the constant must be zero. */
13744 if (*s == '(' && strchr (s + 1, '(') == 0)
13746 INSERT_OPERAND (1, IMMU, *ip, 0);
13750 if (my_getSmallExpression (&ep, r, s) > 0
13751 || !expr_const_in_range (&ep, 0, 32, 2))
13754 imm = ep.X_add_number >> 2;
13755 INSERT_OPERAND (1, IMMU, *ip, imm);
13762 bfd_reloc_code_real_type r[3];
13766 if (my_getSmallExpression (&ep, r, s) > 0
13767 || !expr_const_in_range (&ep, 0, 64, 2))
13770 imm = ep.X_add_number >> 2;
13771 INSERT_OPERAND (1, IMMW, *ip, imm);
13778 bfd_reloc_code_real_type r[3];
13782 if (my_getSmallExpression (&ep, r, s) > 0
13783 || !expr_const_in_range (&ep, -8, 8, 0))
13786 imm = ep.X_add_number;
13787 INSERT_OPERAND (1, IMMX, *ip, imm);
13794 bfd_reloc_code_real_type r[3];
13798 if (my_getSmallExpression (&ep, r, s) > 0
13799 || expr_const_in_range (&ep, -2, 2, 2)
13800 || !expr_const_in_range (&ep, -258, 258, 2))
13803 imm = ep.X_add_number >> 2;
13804 imm = ((imm >> 1) & ~0xff) | (imm & 0xff);
13805 INSERT_OPERAND (1, IMMY, *ip, imm);
13812 bfd_reloc_code_real_type r[3];
13815 if (my_getSmallExpression (&ep, r, s) > 0
13816 || !expr_const_in_range (&ep, 0, 1, 0))
13823 as_bad (_("Internal error: bad microMIPS opcode "
13824 "(unknown extension operand type `m%c'): %s %s"),
13825 *args, insn->name, insn->args);
13826 /* Further processing is fruitless. */
13831 case 'n': /* Register list for 32-bit lwm and swm. */
13832 gas_assert (mips_opts.micromips);
13834 /* A comma-separated list of registers and/or
13835 dash-separated contiguous ranges including
13836 at least one of ra and a set of one or more
13837 registers starting at s0 up to s7 and then
13838 s8 which have to be consecutive, e.g.:
13846 and any permutations of these. */
13847 unsigned int reglist;
13851 if (!reglist_lookup (&s, RTYPE_NUM | RTYPE_GP, ®list))
13854 if ((reglist & 0x3f00ffff) != 0)
13857 ra = (reglist >> 27) & 0x10;
13858 reglist = ((reglist >> 22) & 0x100) | ((reglist >> 16) & 0xff);
13860 if ((reglist & -reglist) != reglist)
13863 imm = (ffs (reglist) - 1) | ra;
13864 INSERT_OPERAND (1, RT, *ip, imm);
13865 imm_expr.X_op = O_absent;
13869 case '|': /* 4-bit trap code. */
13870 gas_assert (mips_opts.micromips);
13871 my_getExpression (&imm_expr, s);
13872 check_absolute_expr (ip, &imm_expr);
13873 if ((unsigned long) imm_expr.X_add_number
13874 > MICROMIPSOP_MASK_TRAP)
13875 as_bad (_("Trap code (%lu) for %s not in 0..15 range"),
13876 (unsigned long) imm_expr.X_add_number,
13877 ip->insn_mo->name);
13878 INSERT_OPERAND (1, TRAP, *ip, imm_expr.X_add_number);
13879 imm_expr.X_op = O_absent;
13884 as_bad (_("Bad char = '%c'\n"), *args);
13889 /* Args don't match. */
13891 insn_error = _("Illegal operands");
13892 if (insn + 1 < past && !strcmp (insn->name, insn[1].name))
13897 else if (wrong_delay_slot_insns && need_delay_slot_ok)
13899 gas_assert (firstinsn);
13900 need_delay_slot_ok = FALSE;
13909 #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
13911 /* This routine assembles an instruction into its binary format when
13912 assembling for the mips16. As a side effect, it sets one of the
13913 global variables imm_reloc or offset_reloc to the type of relocation
13914 to do if one of the operands is an address expression. It also sets
13915 forced_insn_length to the resulting instruction size in bytes if the
13916 user explicitly requested a small or extended instruction. */
13919 mips16_ip (char *str, struct mips_cl_insn *ip)
13923 struct mips_opcode *insn;
13925 unsigned int regno;
13926 unsigned int lastregno = 0;
13932 forced_insn_length = 0;
13934 for (s = str; ISLOWER (*s); ++s)
13946 if (s[1] == 't' && s[2] == ' ')
13949 forced_insn_length = 2;
13953 else if (s[1] == 'e' && s[2] == ' ')
13956 forced_insn_length = 4;
13960 /* Fall through. */
13962 insn_error = _("unknown opcode");
13966 if (mips_opts.noautoextend && !forced_insn_length)
13967 forced_insn_length = 2;
13969 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
13971 insn_error = _("unrecognized opcode");
13980 gas_assert (strcmp (insn->name, str) == 0);
13982 ok = is_opcode_valid_16 (insn);
13985 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
13986 && strcmp (insn->name, insn[1].name) == 0)
13995 static char buf[100];
13997 _("Opcode not supported on this processor: %s (%s)"),
13998 mips_cpu_info_from_arch (mips_opts.arch)->name,
13999 mips_cpu_info_from_isa (mips_opts.isa)->name);
14006 create_insn (ip, insn);
14007 imm_expr.X_op = O_absent;
14008 imm_reloc[0] = BFD_RELOC_UNUSED;
14009 imm_reloc[1] = BFD_RELOC_UNUSED;
14010 imm_reloc[2] = BFD_RELOC_UNUSED;
14011 imm2_expr.X_op = O_absent;
14012 offset_expr.X_op = O_absent;
14013 offset_reloc[0] = BFD_RELOC_UNUSED;
14014 offset_reloc[1] = BFD_RELOC_UNUSED;
14015 offset_reloc[2] = BFD_RELOC_UNUSED;
14016 for (args = insn->args; 1; ++args)
14023 /* In this switch statement we call break if we did not find
14024 a match, continue if we did find a match, or return if we
14035 /* Stuff the immediate value in now, if we can. */
14036 if (imm_expr.X_op == O_constant
14037 && *imm_reloc > BFD_RELOC_UNUSED
14038 && insn->pinfo != INSN_MACRO
14039 && calculate_reloc (*offset_reloc,
14040 imm_expr.X_add_number, &value))
14042 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
14043 *offset_reloc, value, forced_insn_length,
14045 imm_expr.X_op = O_absent;
14046 *imm_reloc = BFD_RELOC_UNUSED;
14047 *offset_reloc = BFD_RELOC_UNUSED;
14061 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
14064 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
14080 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
14082 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
14086 /* Fall through. */
14097 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, ®no))
14099 if (c == 'v' || c == 'w')
14102 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
14104 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
14115 if (c == 'v' || c == 'w')
14117 regno = mips16_to_32_reg_map[lastregno];
14131 regno = mips32_to_16_reg_map[regno];
14136 regno = ILLEGAL_REG;
14141 regno = ILLEGAL_REG;
14146 regno = ILLEGAL_REG;
14151 if (regno == AT && mips_opts.at)
14153 if (mips_opts.at == ATREG)
14154 as_warn (_("used $at without \".set noat\""));
14156 as_warn (_("used $%u with \".set at=$%u\""),
14157 regno, mips_opts.at);
14165 if (regno == ILLEGAL_REG)
14172 MIPS16_INSERT_OPERAND (RX, *ip, regno);
14176 MIPS16_INSERT_OPERAND (RY, *ip, regno);
14179 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
14182 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
14188 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
14191 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
14192 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
14202 if (strncmp (s, "$pc", 3) == 0)
14219 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
14222 if (imm_expr.X_op != O_constant)
14224 forced_insn_length = 4;
14225 ip->insn_opcode |= MIPS16_EXTEND;
14229 /* We need to relax this instruction. */
14230 *offset_reloc = *imm_reloc;
14231 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
14236 *imm_reloc = BFD_RELOC_UNUSED;
14237 /* Fall through. */
14244 my_getExpression (&imm_expr, s);
14245 if (imm_expr.X_op == O_register)
14247 /* What we thought was an expression turned out to
14250 if (s[0] == '(' && args[1] == '(')
14252 /* It looks like the expression was omitted
14253 before a register indirection, which means
14254 that the expression is implicitly zero. We
14255 still set up imm_expr, so that we handle
14256 explicit extensions correctly. */
14257 imm_expr.X_op = O_constant;
14258 imm_expr.X_add_number = 0;
14259 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
14266 /* We need to relax this instruction. */
14267 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
14276 /* We use offset_reloc rather than imm_reloc for the PC
14277 relative operands. This lets macros with both
14278 immediate and address operands work correctly. */
14279 my_getExpression (&offset_expr, s);
14281 if (offset_expr.X_op == O_register)
14284 /* We need to relax this instruction. */
14285 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
14289 case '6': /* break code */
14290 my_getExpression (&imm_expr, s);
14291 check_absolute_expr (ip, &imm_expr);
14292 if ((unsigned long) imm_expr.X_add_number > 63)
14293 as_warn (_("Invalid value for `%s' (%lu)"),
14295 (unsigned long) imm_expr.X_add_number);
14296 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
14297 imm_expr.X_op = O_absent;
14301 case 'a': /* 26 bit address */
14302 my_getExpression (&offset_expr, s);
14304 *offset_reloc = BFD_RELOC_MIPS16_JMP;
14305 ip->insn_opcode <<= 16;
14308 case 'l': /* register list for entry macro */
14309 case 'L': /* register list for exit macro */
14319 unsigned int freg, reg1, reg2;
14321 while (*s == ' ' || *s == ',')
14323 if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, ®1))
14325 else if (reg_lookup (&s, RTYPE_FPU, ®1))
14329 as_bad (_("can't parse register list"));
14339 if (!reg_lookup (&s, freg ? RTYPE_FPU
14340 : (RTYPE_GP | RTYPE_NUM), ®2))
14342 as_bad (_("invalid register list"));
14346 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
14348 mask &= ~ (7 << 3);
14351 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
14353 mask &= ~ (7 << 3);
14356 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
14357 mask |= (reg2 - 3) << 3;
14358 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
14359 mask |= (reg2 - 15) << 1;
14360 else if (reg1 == RA && reg2 == RA)
14364 as_bad (_("invalid register list"));
14368 /* The mask is filled in in the opcode table for the
14369 benefit of the disassembler. We remove it before
14370 applying the actual mask. */
14371 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
14372 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
14376 case 'm': /* Register list for save insn. */
14377 case 'M': /* Register list for restore insn. */
14379 int opcode = ip->insn_opcode;
14380 int framesz = 0, seen_framesz = 0;
14381 int nargs = 0, statics = 0, sregs = 0;
14385 unsigned int reg1, reg2;
14387 SKIP_SPACE_TABS (s);
14390 SKIP_SPACE_TABS (s);
14392 my_getExpression (&imm_expr, s);
14393 if (imm_expr.X_op == O_constant)
14395 /* Handle the frame size. */
14398 as_bad (_("more than one frame size in list"));
14402 framesz = imm_expr.X_add_number;
14403 imm_expr.X_op = O_absent;
14408 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, ®1))
14410 as_bad (_("can't parse register list"));
14422 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, ®2)
14425 as_bad (_("can't parse register list"));
14430 while (reg1 <= reg2)
14432 if (reg1 >= 4 && reg1 <= 7)
14436 nargs |= 1 << (reg1 - 4);
14438 /* statics $a0-$a3 */
14439 statics |= 1 << (reg1 - 4);
14441 else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
14444 sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
14446 else if (reg1 == 31)
14448 /* Add $ra to insn. */
14453 as_bad (_("unexpected register in list"));
14461 /* Encode args/statics combination. */
14462 if (nargs & statics)
14463 as_bad (_("arg/static registers overlap"));
14464 else if (nargs == 0xf)
14465 /* All $a0-$a3 are args. */
14466 opcode |= MIPS16_ALL_ARGS << 16;
14467 else if (statics == 0xf)
14468 /* All $a0-$a3 are statics. */
14469 opcode |= MIPS16_ALL_STATICS << 16;
14472 int narg = 0, nstat = 0;
14474 /* Count arg registers. */
14475 while (nargs & 0x1)
14481 as_bad (_("invalid arg register list"));
14483 /* Count static registers. */
14484 while (statics & 0x8)
14486 statics = (statics << 1) & 0xf;
14490 as_bad (_("invalid static register list"));
14492 /* Encode args/statics. */
14493 opcode |= ((narg << 2) | nstat) << 16;
14496 /* Encode $s0/$s1. */
14497 if (sregs & (1 << 0)) /* $s0 */
14499 if (sregs & (1 << 1)) /* $s1 */
14505 /* Count regs $s2-$s8. */
14513 as_bad (_("invalid static register list"));
14514 /* Encode $s2-$s8. */
14515 opcode |= nsreg << 24;
14518 /* Encode frame size. */
14520 as_bad (_("missing frame size"));
14521 else if ((framesz & 7) != 0 || framesz < 0
14522 || framesz > 0xff * 8)
14523 as_bad (_("invalid frame size"));
14524 else if (framesz != 128 || (opcode >> 16) != 0)
14527 opcode |= (((framesz & 0xf0) << 16)
14528 | (framesz & 0x0f));
14531 /* Finally build the instruction. */
14532 if ((opcode >> 16) != 0 || framesz == 0)
14533 opcode |= MIPS16_EXTEND;
14534 ip->insn_opcode = opcode;
14538 case 'e': /* extend code */
14539 my_getExpression (&imm_expr, s);
14540 check_absolute_expr (ip, &imm_expr);
14541 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
14543 as_warn (_("Invalid value for `%s' (%lu)"),
14545 (unsigned long) imm_expr.X_add_number);
14546 imm_expr.X_add_number &= 0x7ff;
14548 ip->insn_opcode |= imm_expr.X_add_number;
14549 imm_expr.X_op = O_absent;
14559 /* Args don't match. */
14560 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
14561 strcmp (insn->name, insn[1].name) == 0)
14568 insn_error = _("illegal operands");
14574 /* This structure holds information we know about a mips16 immediate
14577 struct mips16_immed_operand
14579 /* The type code used in the argument string in the opcode table. */
14581 /* The number of bits in the short form of the opcode. */
14583 /* The number of bits in the extended form of the opcode. */
14585 /* The amount by which the short form is shifted when it is used;
14586 for example, the sw instruction has a shift count of 2. */
14588 /* The amount by which the short form is shifted when it is stored
14589 into the instruction code. */
14591 /* Non-zero if the short form is unsigned. */
14593 /* Non-zero if the extended form is unsigned. */
14595 /* Non-zero if the value is PC relative. */
14599 /* The mips16 immediate operand types. */
14601 static const struct mips16_immed_operand mips16_immed_operands[] =
14603 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
14604 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
14605 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
14606 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
14607 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
14608 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
14609 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
14610 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
14611 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
14612 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
14613 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
14614 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
14615 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
14616 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
14617 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
14618 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
14619 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
14620 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
14621 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
14622 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
14623 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
14626 #define MIPS16_NUM_IMMED \
14627 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
14629 /* Marshal immediate value VAL for an extended MIPS16 instruction.
14630 NBITS is the number of significant bits in VAL. */
14632 static unsigned long
14633 mips16_immed_extend (offsetT val, unsigned int nbits)
14638 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
14641 else if (nbits == 15)
14643 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
14648 extval = ((val & 0x1f) << 6) | (val & 0x20);
14651 return (extval << 16) | val;
14654 /* Install immediate value VAL into MIPS16 instruction *INSN,
14655 extending it if necessary. The instruction in *INSN may
14656 already be extended.
14658 RELOC is the relocation that produced VAL, or BFD_RELOC_UNUSED
14659 if none. In the former case, VAL is a 16-bit number with no
14660 defined signedness.
14662 TYPE is the type of the immediate field. USER_INSN_LENGTH
14663 is the length that the user requested, or 0 if none. */
14666 mips16_immed (char *file, unsigned int line, int type,
14667 bfd_reloc_code_real_type reloc, offsetT val,
14668 unsigned int user_insn_length, unsigned long *insn)
14670 const struct mips16_immed_operand *op;
14671 int mintiny, maxtiny;
14673 op = mips16_immed_operands;
14674 while (op->type != type)
14677 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
14682 if (type == '<' || type == '>' || type == '[' || type == ']')
14685 maxtiny = 1 << op->nbits;
14690 maxtiny = (1 << op->nbits) - 1;
14692 if (reloc != BFD_RELOC_UNUSED)
14697 mintiny = - (1 << (op->nbits - 1));
14698 maxtiny = (1 << (op->nbits - 1)) - 1;
14699 if (reloc != BFD_RELOC_UNUSED)
14700 val = SEXT_16BIT (val);
14703 /* Branch offsets have an implicit 0 in the lowest bit. */
14704 if (type == 'p' || type == 'q')
14707 if ((val & ((1 << op->shift) - 1)) != 0
14708 || val < (mintiny << op->shift)
14709 || val > (maxtiny << op->shift))
14711 /* We need an extended instruction. */
14712 if (user_insn_length == 2)
14713 as_bad_where (file, line, _("invalid unextended operand value"));
14715 *insn |= MIPS16_EXTEND;
14717 else if (user_insn_length == 4)
14719 /* The operand doesn't force an unextended instruction to be extended.
14720 Warn if the user wanted an extended instruction anyway. */
14721 *insn |= MIPS16_EXTEND;
14722 as_warn_where (file, line,
14723 _("extended operand requested but not required"));
14726 if (mips16_opcode_length (*insn) == 2)
14730 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
14731 insnval <<= op->op_shift;
14736 long minext, maxext;
14738 if (reloc == BFD_RELOC_UNUSED)
14743 maxext = (1 << op->extbits) - 1;
14747 minext = - (1 << (op->extbits - 1));
14748 maxext = (1 << (op->extbits - 1)) - 1;
14750 if (val < minext || val > maxext)
14751 as_bad_where (file, line,
14752 _("operand value out of range for instruction"));
14755 *insn |= mips16_immed_extend (val, op->extbits);
14759 struct percent_op_match
14762 bfd_reloc_code_real_type reloc;
14765 static const struct percent_op_match mips_percent_op[] =
14767 {"%lo", BFD_RELOC_LO16},
14768 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
14769 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
14770 {"%call16", BFD_RELOC_MIPS_CALL16},
14771 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
14772 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
14773 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
14774 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
14775 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
14776 {"%got", BFD_RELOC_MIPS_GOT16},
14777 {"%gp_rel", BFD_RELOC_GPREL16},
14778 {"%half", BFD_RELOC_16},
14779 {"%highest", BFD_RELOC_MIPS_HIGHEST},
14780 {"%higher", BFD_RELOC_MIPS_HIGHER},
14781 {"%neg", BFD_RELOC_MIPS_SUB},
14782 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
14783 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
14784 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
14785 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
14786 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
14787 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
14788 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
14789 {"%hi", BFD_RELOC_HI16_S}
14792 static const struct percent_op_match mips16_percent_op[] =
14794 {"%lo", BFD_RELOC_MIPS16_LO16},
14795 {"%gprel", BFD_RELOC_MIPS16_GPREL},
14796 {"%got", BFD_RELOC_MIPS16_GOT16},
14797 {"%call16", BFD_RELOC_MIPS16_CALL16},
14798 {"%hi", BFD_RELOC_MIPS16_HI16_S},
14799 {"%tlsgd", BFD_RELOC_MIPS16_TLS_GD},
14800 {"%tlsldm", BFD_RELOC_MIPS16_TLS_LDM},
14801 {"%dtprel_hi", BFD_RELOC_MIPS16_TLS_DTPREL_HI16},
14802 {"%dtprel_lo", BFD_RELOC_MIPS16_TLS_DTPREL_LO16},
14803 {"%tprel_hi", BFD_RELOC_MIPS16_TLS_TPREL_HI16},
14804 {"%tprel_lo", BFD_RELOC_MIPS16_TLS_TPREL_LO16},
14805 {"%gottprel", BFD_RELOC_MIPS16_TLS_GOTTPREL}
14809 /* Return true if *STR points to a relocation operator. When returning true,
14810 move *STR over the operator and store its relocation code in *RELOC.
14811 Leave both *STR and *RELOC alone when returning false. */
14814 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
14816 const struct percent_op_match *percent_op;
14819 if (mips_opts.mips16)
14821 percent_op = mips16_percent_op;
14822 limit = ARRAY_SIZE (mips16_percent_op);
14826 percent_op = mips_percent_op;
14827 limit = ARRAY_SIZE (mips_percent_op);
14830 for (i = 0; i < limit; i++)
14831 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
14833 int len = strlen (percent_op[i].str);
14835 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
14838 *str += strlen (percent_op[i].str);
14839 *reloc = percent_op[i].reloc;
14841 /* Check whether the output BFD supports this relocation.
14842 If not, issue an error and fall back on something safe. */
14843 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
14845 as_bad (_("relocation %s isn't supported by the current ABI"),
14846 percent_op[i].str);
14847 *reloc = BFD_RELOC_UNUSED;
14855 /* Parse string STR as a 16-bit relocatable operand. Store the
14856 expression in *EP and the relocations in the array starting
14857 at RELOC. Return the number of relocation operators used.
14859 On exit, EXPR_END points to the first character after the expression. */
14862 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
14865 bfd_reloc_code_real_type reversed_reloc[3];
14866 size_t reloc_index, i;
14867 int crux_depth, str_depth;
14870 /* Search for the start of the main expression, recoding relocations
14871 in REVERSED_RELOC. End the loop with CRUX pointing to the start
14872 of the main expression and with CRUX_DEPTH containing the number
14873 of open brackets at that point. */
14880 crux_depth = str_depth;
14882 /* Skip over whitespace and brackets, keeping count of the number
14884 while (*str == ' ' || *str == '\t' || *str == '(')
14889 && reloc_index < (HAVE_NEWABI ? 3 : 1)
14890 && parse_relocation (&str, &reversed_reloc[reloc_index]));
14892 my_getExpression (ep, crux);
14895 /* Match every open bracket. */
14896 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
14900 if (crux_depth > 0)
14901 as_bad (_("unclosed '('"));
14905 if (reloc_index != 0)
14907 prev_reloc_op_frag = frag_now;
14908 for (i = 0; i < reloc_index; i++)
14909 reloc[i] = reversed_reloc[reloc_index - 1 - i];
14912 return reloc_index;
14916 my_getExpression (expressionS *ep, char *str)
14920 save_in = input_line_pointer;
14921 input_line_pointer = str;
14923 expr_end = input_line_pointer;
14924 input_line_pointer = save_in;
14928 md_atof (int type, char *litP, int *sizeP)
14930 return ieee_md_atof (type, litP, sizeP, target_big_endian);
14934 md_number_to_chars (char *buf, valueT val, int n)
14936 if (target_big_endian)
14937 number_to_chars_bigendian (buf, val, n);
14939 number_to_chars_littleendian (buf, val, n);
14942 static int support_64bit_objects(void)
14944 const char **list, **l;
14947 list = bfd_target_list ();
14948 for (l = list; *l != NULL; l++)
14949 if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
14950 || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
14952 yes = (*l != NULL);
14957 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
14958 NEW_VALUE. Warn if another value was already specified. Note:
14959 we have to defer parsing the -march and -mtune arguments in order
14960 to handle 'from-abi' correctly, since the ABI might be specified
14961 in a later argument. */
14964 mips_set_option_string (const char **string_ptr, const char *new_value)
14966 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
14967 as_warn (_("A different %s was already specified, is now %s"),
14968 string_ptr == &mips_arch_string ? "-march" : "-mtune",
14971 *string_ptr = new_value;
14975 md_parse_option (int c, char *arg)
14979 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
14980 if (c == mips_ases[i].option_on || c == mips_ases[i].option_off)
14982 file_ase_explicit |= mips_set_ase (&mips_ases[i],
14983 c == mips_ases[i].option_on);
14989 case OPTION_CONSTRUCT_FLOATS:
14990 mips_disable_float_construction = 0;
14993 case OPTION_NO_CONSTRUCT_FLOATS:
14994 mips_disable_float_construction = 1;
15006 target_big_endian = 1;
15010 target_big_endian = 0;
15016 else if (arg[0] == '0')
15018 else if (arg[0] == '1')
15028 mips_debug = atoi (arg);
15032 file_mips_isa = ISA_MIPS1;
15036 file_mips_isa = ISA_MIPS2;
15040 file_mips_isa = ISA_MIPS3;
15044 file_mips_isa = ISA_MIPS4;
15048 file_mips_isa = ISA_MIPS5;
15051 case OPTION_MIPS32:
15052 file_mips_isa = ISA_MIPS32;
15055 case OPTION_MIPS32R2:
15056 file_mips_isa = ISA_MIPS32R2;
15059 case OPTION_MIPS64R2:
15060 file_mips_isa = ISA_MIPS64R2;
15063 case OPTION_MIPS64:
15064 file_mips_isa = ISA_MIPS64;
15068 mips_set_option_string (&mips_tune_string, arg);
15072 mips_set_option_string (&mips_arch_string, arg);
15076 mips_set_option_string (&mips_arch_string, "4650");
15077 mips_set_option_string (&mips_tune_string, "4650");
15080 case OPTION_NO_M4650:
15084 mips_set_option_string (&mips_arch_string, "4010");
15085 mips_set_option_string (&mips_tune_string, "4010");
15088 case OPTION_NO_M4010:
15092 mips_set_option_string (&mips_arch_string, "4100");
15093 mips_set_option_string (&mips_tune_string, "4100");
15096 case OPTION_NO_M4100:
15100 mips_set_option_string (&mips_arch_string, "3900");
15101 mips_set_option_string (&mips_tune_string, "3900");
15104 case OPTION_NO_M3900:
15107 case OPTION_MICROMIPS:
15108 if (mips_opts.mips16 == 1)
15110 as_bad (_("-mmicromips cannot be used with -mips16"));
15113 mips_opts.micromips = 1;
15114 mips_no_prev_insn ();
15117 case OPTION_NO_MICROMIPS:
15118 mips_opts.micromips = 0;
15119 mips_no_prev_insn ();
15122 case OPTION_MIPS16:
15123 if (mips_opts.micromips == 1)
15125 as_bad (_("-mips16 cannot be used with -micromips"));
15128 mips_opts.mips16 = 1;
15129 mips_no_prev_insn ();
15132 case OPTION_NO_MIPS16:
15133 mips_opts.mips16 = 0;
15134 mips_no_prev_insn ();
15137 case OPTION_FIX_24K:
15141 case OPTION_NO_FIX_24K:
15145 case OPTION_FIX_LOONGSON2F_JUMP:
15146 mips_fix_loongson2f_jump = TRUE;
15149 case OPTION_NO_FIX_LOONGSON2F_JUMP:
15150 mips_fix_loongson2f_jump = FALSE;
15153 case OPTION_FIX_LOONGSON2F_NOP:
15154 mips_fix_loongson2f_nop = TRUE;
15157 case OPTION_NO_FIX_LOONGSON2F_NOP:
15158 mips_fix_loongson2f_nop = FALSE;
15161 case OPTION_FIX_VR4120:
15162 mips_fix_vr4120 = 1;
15165 case OPTION_NO_FIX_VR4120:
15166 mips_fix_vr4120 = 0;
15169 case OPTION_FIX_VR4130:
15170 mips_fix_vr4130 = 1;
15173 case OPTION_NO_FIX_VR4130:
15174 mips_fix_vr4130 = 0;
15177 case OPTION_FIX_CN63XXP1:
15178 mips_fix_cn63xxp1 = TRUE;
15181 case OPTION_NO_FIX_CN63XXP1:
15182 mips_fix_cn63xxp1 = FALSE;
15185 case OPTION_RELAX_BRANCH:
15186 mips_relax_branch = 1;
15189 case OPTION_NO_RELAX_BRANCH:
15190 mips_relax_branch = 0;
15193 case OPTION_INSN32:
15194 mips_opts.insn32 = TRUE;
15197 case OPTION_NO_INSN32:
15198 mips_opts.insn32 = FALSE;
15201 case OPTION_MSHARED:
15202 mips_in_shared = TRUE;
15205 case OPTION_MNO_SHARED:
15206 mips_in_shared = FALSE;
15209 case OPTION_MSYM32:
15210 mips_opts.sym32 = TRUE;
15213 case OPTION_MNO_SYM32:
15214 mips_opts.sym32 = FALSE;
15217 /* When generating ELF code, we permit -KPIC and -call_shared to
15218 select SVR4_PIC, and -non_shared to select no PIC. This is
15219 intended to be compatible with Irix 5. */
15220 case OPTION_CALL_SHARED:
15221 mips_pic = SVR4_PIC;
15222 mips_abicalls = TRUE;
15225 case OPTION_CALL_NONPIC:
15227 mips_abicalls = TRUE;
15230 case OPTION_NON_SHARED:
15232 mips_abicalls = FALSE;
15235 /* The -xgot option tells the assembler to use 32 bit offsets
15236 when accessing the got in SVR4_PIC mode. It is for Irix
15243 g_switch_value = atoi (arg);
15247 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
15250 mips_abi = O32_ABI;
15254 mips_abi = N32_ABI;
15258 mips_abi = N64_ABI;
15259 if (!support_64bit_objects())
15260 as_fatal (_("No compiled in support for 64 bit object file format"));
15264 file_mips_gp32 = 1;
15268 file_mips_gp32 = 0;
15272 file_mips_fp32 = 1;
15276 file_mips_fp32 = 0;
15279 case OPTION_SINGLE_FLOAT:
15280 file_mips_single_float = 1;
15283 case OPTION_DOUBLE_FLOAT:
15284 file_mips_single_float = 0;
15287 case OPTION_SOFT_FLOAT:
15288 file_mips_soft_float = 1;
15291 case OPTION_HARD_FLOAT:
15292 file_mips_soft_float = 0;
15296 if (strcmp (arg, "32") == 0)
15297 mips_abi = O32_ABI;
15298 else if (strcmp (arg, "o64") == 0)
15299 mips_abi = O64_ABI;
15300 else if (strcmp (arg, "n32") == 0)
15301 mips_abi = N32_ABI;
15302 else if (strcmp (arg, "64") == 0)
15304 mips_abi = N64_ABI;
15305 if (! support_64bit_objects())
15306 as_fatal (_("No compiled in support for 64 bit object file "
15309 else if (strcmp (arg, "eabi") == 0)
15310 mips_abi = EABI_ABI;
15313 as_fatal (_("invalid abi -mabi=%s"), arg);
15318 case OPTION_M7000_HILO_FIX:
15319 mips_7000_hilo_fix = TRUE;
15322 case OPTION_MNO_7000_HILO_FIX:
15323 mips_7000_hilo_fix = FALSE;
15326 case OPTION_MDEBUG:
15327 mips_flag_mdebug = TRUE;
15330 case OPTION_NO_MDEBUG:
15331 mips_flag_mdebug = FALSE;
15335 mips_flag_pdr = TRUE;
15338 case OPTION_NO_PDR:
15339 mips_flag_pdr = FALSE;
15342 case OPTION_MVXWORKS_PIC:
15343 mips_pic = VXWORKS_PIC;
15350 mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
15355 /* Set up globals to generate code for the ISA or processor
15356 described by INFO. */
15359 mips_set_architecture (const struct mips_cpu_info *info)
15363 file_mips_arch = info->cpu;
15364 mips_opts.arch = info->cpu;
15365 mips_opts.isa = info->isa;
15370 /* Likewise for tuning. */
15373 mips_set_tune (const struct mips_cpu_info *info)
15376 mips_tune = info->cpu;
15381 mips_after_parse_args (void)
15383 const struct mips_cpu_info *arch_info = 0;
15384 const struct mips_cpu_info *tune_info = 0;
15386 /* GP relative stuff not working for PE */
15387 if (strncmp (TARGET_OS, "pe", 2) == 0)
15389 if (g_switch_seen && g_switch_value != 0)
15390 as_bad (_("-G not supported in this configuration."));
15391 g_switch_value = 0;
15394 if (mips_abi == NO_ABI)
15395 mips_abi = MIPS_DEFAULT_ABI;
15397 /* The following code determines the architecture and register size.
15398 Similar code was added to GCC 3.3 (see override_options() in
15399 config/mips/mips.c). The GAS and GCC code should be kept in sync
15400 as much as possible. */
15402 if (mips_arch_string != 0)
15403 arch_info = mips_parse_cpu ("-march", mips_arch_string);
15405 if (file_mips_isa != ISA_UNKNOWN)
15407 /* Handle -mipsN. At this point, file_mips_isa contains the
15408 ISA level specified by -mipsN, while arch_info->isa contains
15409 the -march selection (if any). */
15410 if (arch_info != 0)
15412 /* -march takes precedence over -mipsN, since it is more descriptive.
15413 There's no harm in specifying both as long as the ISA levels
15415 if (file_mips_isa != arch_info->isa)
15416 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
15417 mips_cpu_info_from_isa (file_mips_isa)->name,
15418 mips_cpu_info_from_isa (arch_info->isa)->name);
15421 arch_info = mips_cpu_info_from_isa (file_mips_isa);
15424 if (arch_info == 0)
15426 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
15427 gas_assert (arch_info);
15430 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
15431 as_bad (_("-march=%s is not compatible with the selected ABI"),
15434 mips_set_architecture (arch_info);
15436 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
15437 if (mips_tune_string != 0)
15438 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
15440 if (tune_info == 0)
15441 mips_set_tune (arch_info);
15443 mips_set_tune (tune_info);
15445 if (file_mips_gp32 >= 0)
15447 /* The user specified the size of the integer registers. Make sure
15448 it agrees with the ABI and ISA. */
15449 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
15450 as_bad (_("-mgp64 used with a 32-bit processor"));
15451 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
15452 as_bad (_("-mgp32 used with a 64-bit ABI"));
15453 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
15454 as_bad (_("-mgp64 used with a 32-bit ABI"));
15458 /* Infer the integer register size from the ABI and processor.
15459 Restrict ourselves to 32-bit registers if that's all the
15460 processor has, or if the ABI cannot handle 64-bit registers. */
15461 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
15462 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
15465 switch (file_mips_fp32)
15469 /* No user specified float register size.
15470 ??? GAS treats single-float processors as though they had 64-bit
15471 float registers (although it complains when double-precision
15472 instructions are used). As things stand, saying they have 32-bit
15473 registers would lead to spurious "register must be even" messages.
15474 So here we assume float registers are never smaller than the
15476 if (file_mips_gp32 == 0)
15477 /* 64-bit integer registers implies 64-bit float registers. */
15478 file_mips_fp32 = 0;
15479 else if ((mips_opts.ase & FP64_ASES)
15480 && ISA_HAS_64BIT_FPRS (mips_opts.isa))
15481 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
15482 file_mips_fp32 = 0;
15484 /* 32-bit float registers. */
15485 file_mips_fp32 = 1;
15488 /* The user specified the size of the float registers. Check if it
15489 agrees with the ABI and ISA. */
15491 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
15492 as_bad (_("-mfp64 used with a 32-bit fpu"));
15493 else if (ABI_NEEDS_32BIT_REGS (mips_abi)
15494 && !ISA_HAS_MXHC1 (mips_opts.isa))
15495 as_warn (_("-mfp64 used with a 32-bit ABI"));
15498 if (ABI_NEEDS_64BIT_REGS (mips_abi))
15499 as_warn (_("-mfp32 used with a 64-bit ABI"));
15503 /* End of GCC-shared inference code. */
15505 /* This flag is set when we have a 64-bit capable CPU but use only
15506 32-bit wide registers. Note that EABI does not use it. */
15507 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
15508 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
15509 || mips_abi == O32_ABI))
15510 mips_32bitmode = 1;
15512 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
15513 as_bad (_("trap exception not supported at ISA 1"));
15515 /* If the selected architecture includes support for ASEs, enable
15516 generation of code for them. */
15517 if (mips_opts.mips16 == -1)
15518 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
15519 if (mips_opts.micromips == -1)
15520 mips_opts.micromips = (CPU_HAS_MICROMIPS (file_mips_arch)) ? 1 : 0;
15522 /* MIPS3D and MDMX require 64-bit FPRs, so -mfp32 should stop those
15523 ASEs from being selected implicitly. */
15524 if (file_mips_fp32 == 1)
15525 file_ase_explicit |= ASE_MIPS3D | ASE_MDMX;
15527 /* If the user didn't explicitly select or deselect a particular ASE,
15528 use the default setting for the CPU. */
15529 mips_opts.ase |= (arch_info->ase & ~file_ase_explicit);
15531 file_mips_isa = mips_opts.isa;
15532 file_ase = mips_opts.ase;
15533 mips_opts.gp32 = file_mips_gp32;
15534 mips_opts.fp32 = file_mips_fp32;
15535 mips_opts.soft_float = file_mips_soft_float;
15536 mips_opts.single_float = file_mips_single_float;
15538 mips_check_isa_supports_ases ();
15540 if (mips_flag_mdebug < 0)
15541 mips_flag_mdebug = 0;
15545 mips_init_after_args (void)
15547 /* initialize opcodes */
15548 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
15549 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
15553 md_pcrel_from (fixS *fixP)
15555 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
15556 switch (fixP->fx_r_type)
15558 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
15559 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
15560 /* Return the address of the delay slot. */
15563 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
15564 case BFD_RELOC_MICROMIPS_JMP:
15565 case BFD_RELOC_16_PCREL_S2:
15566 case BFD_RELOC_MIPS_JMP:
15567 /* Return the address of the delay slot. */
15570 case BFD_RELOC_32_PCREL:
15574 /* We have no relocation type for PC relative MIPS16 instructions. */
15575 if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
15576 as_bad_where (fixP->fx_file, fixP->fx_line,
15577 _("PC relative MIPS16 instruction references a different section"));
15582 /* This is called before the symbol table is processed. In order to
15583 work with gcc when using mips-tfile, we must keep all local labels.
15584 However, in other cases, we want to discard them. If we were
15585 called with -g, but we didn't see any debugging information, it may
15586 mean that gcc is smuggling debugging information through to
15587 mips-tfile, in which case we must generate all local labels. */
15590 mips_frob_file_before_adjust (void)
15592 #ifndef NO_ECOFF_DEBUGGING
15593 if (ECOFF_DEBUGGING
15595 && ! ecoff_debugging_seen)
15596 flag_keep_locals = 1;
15600 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
15601 the corresponding LO16 reloc. This is called before md_apply_fix and
15602 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
15603 relocation operators.
15605 For our purposes, a %lo() expression matches a %got() or %hi()
15608 (a) it refers to the same symbol; and
15609 (b) the offset applied in the %lo() expression is no lower than
15610 the offset applied in the %got() or %hi().
15612 (b) allows us to cope with code like:
15615 lh $4,%lo(foo+2)($4)
15617 ...which is legal on RELA targets, and has a well-defined behaviour
15618 if the user knows that adding 2 to "foo" will not induce a carry to
15621 When several %lo()s match a particular %got() or %hi(), we use the
15622 following rules to distinguish them:
15624 (1) %lo()s with smaller offsets are a better match than %lo()s with
15627 (2) %lo()s with no matching %got() or %hi() are better than those
15628 that already have a matching %got() or %hi().
15630 (3) later %lo()s are better than earlier %lo()s.
15632 These rules are applied in order.
15634 (1) means, among other things, that %lo()s with identical offsets are
15635 chosen if they exist.
15637 (2) means that we won't associate several high-part relocations with
15638 the same low-part relocation unless there's no alternative. Having
15639 several high parts for the same low part is a GNU extension; this rule
15640 allows careful users to avoid it.
15642 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
15643 with the last high-part relocation being at the front of the list.
15644 It therefore makes sense to choose the last matching low-part
15645 relocation, all other things being equal. It's also easier
15646 to code that way. */
15649 mips_frob_file (void)
15651 struct mips_hi_fixup *l;
15652 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
15654 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
15656 segment_info_type *seginfo;
15657 bfd_boolean matched_lo_p;
15658 fixS **hi_pos, **lo_pos, **pos;
15660 gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
15662 /* If a GOT16 relocation turns out to be against a global symbol,
15663 there isn't supposed to be a matching LO. Ignore %gots against
15664 constants; we'll report an error for those later. */
15665 if (got16_reloc_p (l->fixp->fx_r_type)
15666 && !(l->fixp->fx_addsy
15667 && pic_need_relax (l->fixp->fx_addsy, l->seg)))
15670 /* Check quickly whether the next fixup happens to be a matching %lo. */
15671 if (fixup_has_matching_lo_p (l->fixp))
15674 seginfo = seg_info (l->seg);
15676 /* Set HI_POS to the position of this relocation in the chain.
15677 Set LO_POS to the position of the chosen low-part relocation.
15678 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
15679 relocation that matches an immediately-preceding high-part
15683 matched_lo_p = FALSE;
15684 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
15686 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
15688 if (*pos == l->fixp)
15691 if ((*pos)->fx_r_type == looking_for_rtype
15692 && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
15693 && (*pos)->fx_offset >= l->fixp->fx_offset
15695 || (*pos)->fx_offset < (*lo_pos)->fx_offset
15697 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
15700 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
15701 && fixup_has_matching_lo_p (*pos));
15704 /* If we found a match, remove the high-part relocation from its
15705 current position and insert it before the low-part relocation.
15706 Make the offsets match so that fixup_has_matching_lo_p()
15709 We don't warn about unmatched high-part relocations since some
15710 versions of gcc have been known to emit dead "lui ...%hi(...)"
15712 if (lo_pos != NULL)
15714 l->fixp->fx_offset = (*lo_pos)->fx_offset;
15715 if (l->fixp->fx_next != *lo_pos)
15717 *hi_pos = l->fixp->fx_next;
15718 l->fixp->fx_next = *lo_pos;
15726 mips_force_relocation (fixS *fixp)
15728 if (generic_force_reloc (fixp))
15731 /* We want to keep BFD_RELOC_MICROMIPS_*_PCREL_S1 relocation,
15732 so that the linker relaxation can update targets. */
15733 if (fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
15734 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
15735 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1)
15741 /* Read the instruction associated with RELOC from BUF. */
15743 static unsigned int
15744 read_reloc_insn (char *buf, bfd_reloc_code_real_type reloc)
15746 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
15747 return read_compressed_insn (buf, 4);
15749 return read_insn (buf);
15752 /* Write instruction INSN to BUF, given that it has been relocated
15756 write_reloc_insn (char *buf, bfd_reloc_code_real_type reloc,
15757 unsigned long insn)
15759 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
15760 write_compressed_insn (buf, insn, 4);
15762 write_insn (buf, insn);
15765 /* Apply a fixup to the object file. */
15768 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
15771 unsigned long insn;
15772 reloc_howto_type *howto;
15774 /* We ignore generic BFD relocations we don't know about. */
15775 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
15779 gas_assert (fixP->fx_size == 2
15780 || fixP->fx_size == 4
15781 || fixP->fx_r_type == BFD_RELOC_16
15782 || fixP->fx_r_type == BFD_RELOC_64
15783 || fixP->fx_r_type == BFD_RELOC_CTOR
15784 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
15785 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_SUB
15786 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
15787 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
15788 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
15790 buf = fixP->fx_frag->fr_literal + fixP->fx_where;
15792 gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
15793 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
15794 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
15795 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
15796 || fixP->fx_r_type == BFD_RELOC_32_PCREL);
15798 /* Don't treat parts of a composite relocation as done. There are two
15801 (1) The second and third parts will be against 0 (RSS_UNDEF) but
15802 should nevertheless be emitted if the first part is.
15804 (2) In normal usage, composite relocations are never assembly-time
15805 constants. The easiest way of dealing with the pathological
15806 exceptions is to generate a relocation against STN_UNDEF and
15807 leave everything up to the linker. */
15808 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
15811 switch (fixP->fx_r_type)
15813 case BFD_RELOC_MIPS_TLS_GD:
15814 case BFD_RELOC_MIPS_TLS_LDM:
15815 case BFD_RELOC_MIPS_TLS_DTPREL32:
15816 case BFD_RELOC_MIPS_TLS_DTPREL64:
15817 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
15818 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
15819 case BFD_RELOC_MIPS_TLS_GOTTPREL:
15820 case BFD_RELOC_MIPS_TLS_TPREL32:
15821 case BFD_RELOC_MIPS_TLS_TPREL64:
15822 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
15823 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
15824 case BFD_RELOC_MICROMIPS_TLS_GD:
15825 case BFD_RELOC_MICROMIPS_TLS_LDM:
15826 case BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16:
15827 case BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16:
15828 case BFD_RELOC_MICROMIPS_TLS_GOTTPREL:
15829 case BFD_RELOC_MICROMIPS_TLS_TPREL_HI16:
15830 case BFD_RELOC_MICROMIPS_TLS_TPREL_LO16:
15831 case BFD_RELOC_MIPS16_TLS_GD:
15832 case BFD_RELOC_MIPS16_TLS_LDM:
15833 case BFD_RELOC_MIPS16_TLS_DTPREL_HI16:
15834 case BFD_RELOC_MIPS16_TLS_DTPREL_LO16:
15835 case BFD_RELOC_MIPS16_TLS_GOTTPREL:
15836 case BFD_RELOC_MIPS16_TLS_TPREL_HI16:
15837 case BFD_RELOC_MIPS16_TLS_TPREL_LO16:
15838 if (!fixP->fx_addsy)
15840 as_bad_where (fixP->fx_file, fixP->fx_line,
15841 _("TLS relocation against a constant"));
15844 S_SET_THREAD_LOCAL (fixP->fx_addsy);
15847 case BFD_RELOC_MIPS_JMP:
15848 case BFD_RELOC_MIPS_SHIFT5:
15849 case BFD_RELOC_MIPS_SHIFT6:
15850 case BFD_RELOC_MIPS_GOT_DISP:
15851 case BFD_RELOC_MIPS_GOT_PAGE:
15852 case BFD_RELOC_MIPS_GOT_OFST:
15853 case BFD_RELOC_MIPS_SUB:
15854 case BFD_RELOC_MIPS_INSERT_A:
15855 case BFD_RELOC_MIPS_INSERT_B:
15856 case BFD_RELOC_MIPS_DELETE:
15857 case BFD_RELOC_MIPS_HIGHEST:
15858 case BFD_RELOC_MIPS_HIGHER:
15859 case BFD_RELOC_MIPS_SCN_DISP:
15860 case BFD_RELOC_MIPS_REL16:
15861 case BFD_RELOC_MIPS_RELGOT:
15862 case BFD_RELOC_MIPS_JALR:
15863 case BFD_RELOC_HI16:
15864 case BFD_RELOC_HI16_S:
15865 case BFD_RELOC_LO16:
15866 case BFD_RELOC_GPREL16:
15867 case BFD_RELOC_MIPS_LITERAL:
15868 case BFD_RELOC_MIPS_CALL16:
15869 case BFD_RELOC_MIPS_GOT16:
15870 case BFD_RELOC_GPREL32:
15871 case BFD_RELOC_MIPS_GOT_HI16:
15872 case BFD_RELOC_MIPS_GOT_LO16:
15873 case BFD_RELOC_MIPS_CALL_HI16:
15874 case BFD_RELOC_MIPS_CALL_LO16:
15875 case BFD_RELOC_MIPS16_GPREL:
15876 case BFD_RELOC_MIPS16_GOT16:
15877 case BFD_RELOC_MIPS16_CALL16:
15878 case BFD_RELOC_MIPS16_HI16:
15879 case BFD_RELOC_MIPS16_HI16_S:
15880 case BFD_RELOC_MIPS16_LO16:
15881 case BFD_RELOC_MIPS16_JMP:
15882 case BFD_RELOC_MICROMIPS_JMP:
15883 case BFD_RELOC_MICROMIPS_GOT_DISP:
15884 case BFD_RELOC_MICROMIPS_GOT_PAGE:
15885 case BFD_RELOC_MICROMIPS_GOT_OFST:
15886 case BFD_RELOC_MICROMIPS_SUB:
15887 case BFD_RELOC_MICROMIPS_HIGHEST:
15888 case BFD_RELOC_MICROMIPS_HIGHER:
15889 case BFD_RELOC_MICROMIPS_SCN_DISP:
15890 case BFD_RELOC_MICROMIPS_JALR:
15891 case BFD_RELOC_MICROMIPS_HI16:
15892 case BFD_RELOC_MICROMIPS_HI16_S:
15893 case BFD_RELOC_MICROMIPS_LO16:
15894 case BFD_RELOC_MICROMIPS_GPREL16:
15895 case BFD_RELOC_MICROMIPS_LITERAL:
15896 case BFD_RELOC_MICROMIPS_CALL16:
15897 case BFD_RELOC_MICROMIPS_GOT16:
15898 case BFD_RELOC_MICROMIPS_GOT_HI16:
15899 case BFD_RELOC_MICROMIPS_GOT_LO16:
15900 case BFD_RELOC_MICROMIPS_CALL_HI16:
15901 case BFD_RELOC_MICROMIPS_CALL_LO16:
15902 case BFD_RELOC_MIPS_EH:
15907 if (calculate_reloc (fixP->fx_r_type, *valP, &value))
15909 insn = read_reloc_insn (buf, fixP->fx_r_type);
15910 if (mips16_reloc_p (fixP->fx_r_type))
15911 insn |= mips16_immed_extend (value, 16);
15913 insn |= (value & 0xffff);
15914 write_reloc_insn (buf, fixP->fx_r_type, insn);
15917 as_bad_where (fixP->fx_file, fixP->fx_line,
15918 _("Unsupported constant in relocation"));
15923 /* This is handled like BFD_RELOC_32, but we output a sign
15924 extended value if we are only 32 bits. */
15927 if (8 <= sizeof (valueT))
15928 md_number_to_chars (buf, *valP, 8);
15933 if ((*valP & 0x80000000) != 0)
15937 md_number_to_chars (buf + (target_big_endian ? 4 : 0), *valP, 4);
15938 md_number_to_chars (buf + (target_big_endian ? 0 : 4), hiv, 4);
15943 case BFD_RELOC_RVA:
15945 case BFD_RELOC_32_PCREL:
15947 /* If we are deleting this reloc entry, we must fill in the
15948 value now. This can happen if we have a .word which is not
15949 resolved when it appears but is later defined. */
15951 md_number_to_chars (buf, *valP, fixP->fx_size);
15954 case BFD_RELOC_16_PCREL_S2:
15955 if ((*valP & 0x3) != 0)
15956 as_bad_where (fixP->fx_file, fixP->fx_line,
15957 _("Branch to misaligned address (%lx)"), (long) *valP);
15959 /* We need to save the bits in the instruction since fixup_segment()
15960 might be deleting the relocation entry (i.e., a branch within
15961 the current segment). */
15962 if (! fixP->fx_done)
15965 /* Update old instruction data. */
15966 insn = read_insn (buf);
15968 if (*valP + 0x20000 <= 0x3ffff)
15970 insn |= (*valP >> 2) & 0xffff;
15971 write_insn (buf, insn);
15973 else if (mips_pic == NO_PIC
15975 && fixP->fx_frag->fr_address >= text_section->vma
15976 && (fixP->fx_frag->fr_address
15977 < text_section->vma + bfd_get_section_size (text_section))
15978 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
15979 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
15980 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
15982 /* The branch offset is too large. If this is an
15983 unconditional branch, and we are not generating PIC code,
15984 we can convert it to an absolute jump instruction. */
15985 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
15986 insn = 0x0c000000; /* jal */
15988 insn = 0x08000000; /* j */
15989 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
15991 fixP->fx_addsy = section_symbol (text_section);
15992 *valP += md_pcrel_from (fixP);
15993 write_insn (buf, insn);
15997 /* If we got here, we have branch-relaxation disabled,
15998 and there's nothing we can do to fix this instruction
15999 without turning it into a longer sequence. */
16000 as_bad_where (fixP->fx_file, fixP->fx_line,
16001 _("Branch out of range"));
16005 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
16006 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
16007 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
16008 /* We adjust the offset back to even. */
16009 if ((*valP & 0x1) != 0)
16012 if (! fixP->fx_done)
16015 /* Should never visit here, because we keep the relocation. */
16019 case BFD_RELOC_VTABLE_INHERIT:
16022 && !S_IS_DEFINED (fixP->fx_addsy)
16023 && !S_IS_WEAK (fixP->fx_addsy))
16024 S_SET_WEAK (fixP->fx_addsy);
16027 case BFD_RELOC_VTABLE_ENTRY:
16035 /* Remember value for tc_gen_reloc. */
16036 fixP->fx_addnumber = *valP;
16046 name = input_line_pointer;
16047 c = get_symbol_end ();
16048 p = (symbolS *) symbol_find_or_make (name);
16049 *input_line_pointer = c;
16053 /* Align the current frag to a given power of two. If a particular
16054 fill byte should be used, FILL points to an integer that contains
16055 that byte, otherwise FILL is null.
16057 This function used to have the comment:
16059 The MIPS assembler also automatically adjusts any preceding label.
16061 The implementation therefore applied the adjustment to a maximum of
16062 one label. However, other label adjustments are applied to batches
16063 of labels, and adjusting just one caused problems when new labels
16064 were added for the sake of debugging or unwind information.
16065 We therefore adjust all preceding labels (given as LABELS) instead. */
16068 mips_align (int to, int *fill, struct insn_label_list *labels)
16070 mips_emit_delays ();
16071 mips_record_compressed_mode ();
16072 if (fill == NULL && subseg_text_p (now_seg))
16073 frag_align_code (to, 0);
16075 frag_align (to, fill ? *fill : 0, 0);
16076 record_alignment (now_seg, to);
16077 mips_move_labels (labels, FALSE);
16080 /* Align to a given power of two. .align 0 turns off the automatic
16081 alignment used by the data creating pseudo-ops. */
16084 s_align (int x ATTRIBUTE_UNUSED)
16086 int temp, fill_value, *fill_ptr;
16087 long max_alignment = 28;
16089 /* o Note that the assembler pulls down any immediately preceding label
16090 to the aligned address.
16091 o It's not documented but auto alignment is reinstated by
16092 a .align pseudo instruction.
16093 o Note also that after auto alignment is turned off the mips assembler
16094 issues an error on attempt to assemble an improperly aligned data item.
16097 temp = get_absolute_expression ();
16098 if (temp > max_alignment)
16099 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
16102 as_warn (_("Alignment negative: 0 assumed."));
16105 if (*input_line_pointer == ',')
16107 ++input_line_pointer;
16108 fill_value = get_absolute_expression ();
16109 fill_ptr = &fill_value;
16115 segment_info_type *si = seg_info (now_seg);
16116 struct insn_label_list *l = si->label_list;
16117 /* Auto alignment should be switched on by next section change. */
16119 mips_align (temp, fill_ptr, l);
16126 demand_empty_rest_of_line ();
16130 s_change_sec (int sec)
16134 /* The ELF backend needs to know that we are changing sections, so
16135 that .previous works correctly. We could do something like check
16136 for an obj_section_change_hook macro, but that might be confusing
16137 as it would not be appropriate to use it in the section changing
16138 functions in read.c, since obj-elf.c intercepts those. FIXME:
16139 This should be cleaner, somehow. */
16140 obj_elf_section_change_hook ();
16142 mips_emit_delays ();
16153 subseg_set (bss_section, (subsegT) get_absolute_expression ());
16154 demand_empty_rest_of_line ();
16158 seg = subseg_new (RDATA_SECTION_NAME,
16159 (subsegT) get_absolute_expression ());
16160 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
16161 | SEC_READONLY | SEC_RELOC
16163 if (strncmp (TARGET_OS, "elf", 3) != 0)
16164 record_alignment (seg, 4);
16165 demand_empty_rest_of_line ();
16169 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
16170 bfd_set_section_flags (stdoutput, seg,
16171 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
16172 if (strncmp (TARGET_OS, "elf", 3) != 0)
16173 record_alignment (seg, 4);
16174 demand_empty_rest_of_line ();
16178 seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
16179 bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
16180 if (strncmp (TARGET_OS, "elf", 3) != 0)
16181 record_alignment (seg, 4);
16182 demand_empty_rest_of_line ();
16190 s_change_section (int ignore ATTRIBUTE_UNUSED)
16192 char *section_name;
16197 int section_entry_size;
16198 int section_alignment;
16200 section_name = input_line_pointer;
16201 c = get_symbol_end ();
16203 next_c = *(input_line_pointer + 1);
16205 /* Do we have .section Name<,"flags">? */
16206 if (c != ',' || (c == ',' && next_c == '"'))
16208 /* just after name is now '\0'. */
16209 *input_line_pointer = c;
16210 input_line_pointer = section_name;
16211 obj_elf_section (ignore);
16214 input_line_pointer++;
16216 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
16218 section_type = get_absolute_expression ();
16221 if (*input_line_pointer++ == ',')
16222 section_flag = get_absolute_expression ();
16225 if (*input_line_pointer++ == ',')
16226 section_entry_size = get_absolute_expression ();
16228 section_entry_size = 0;
16229 if (*input_line_pointer++ == ',')
16230 section_alignment = get_absolute_expression ();
16232 section_alignment = 0;
16233 /* FIXME: really ignore? */
16234 (void) section_alignment;
16236 section_name = xstrdup (section_name);
16238 /* When using the generic form of .section (as implemented by obj-elf.c),
16239 there's no way to set the section type to SHT_MIPS_DWARF. Users have
16240 traditionally had to fall back on the more common @progbits instead.
16242 There's nothing really harmful in this, since bfd will correct
16243 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
16244 means that, for backwards compatibility, the special_section entries
16245 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
16247 Even so, we shouldn't force users of the MIPS .section syntax to
16248 incorrectly label the sections as SHT_PROGBITS. The best compromise
16249 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
16250 generic type-checking code. */
16251 if (section_type == SHT_MIPS_DWARF)
16252 section_type = SHT_PROGBITS;
16254 obj_elf_change_section (section_name, section_type, section_flag,
16255 section_entry_size, 0, 0, 0);
16257 if (now_seg->name != section_name)
16258 free (section_name);
16262 mips_enable_auto_align (void)
16268 s_cons (int log_size)
16270 segment_info_type *si = seg_info (now_seg);
16271 struct insn_label_list *l = si->label_list;
16273 mips_emit_delays ();
16274 if (log_size > 0 && auto_align)
16275 mips_align (log_size, 0, l);
16276 cons (1 << log_size);
16277 mips_clear_insn_labels ();
16281 s_float_cons (int type)
16283 segment_info_type *si = seg_info (now_seg);
16284 struct insn_label_list *l = si->label_list;
16286 mips_emit_delays ();
16291 mips_align (3, 0, l);
16293 mips_align (2, 0, l);
16297 mips_clear_insn_labels ();
16300 /* Handle .globl. We need to override it because on Irix 5 you are
16303 where foo is an undefined symbol, to mean that foo should be
16304 considered to be the address of a function. */
16307 s_mips_globl (int x ATTRIBUTE_UNUSED)
16316 name = input_line_pointer;
16317 c = get_symbol_end ();
16318 symbolP = symbol_find_or_make (name);
16319 S_SET_EXTERNAL (symbolP);
16321 *input_line_pointer = c;
16322 SKIP_WHITESPACE ();
16324 /* On Irix 5, every global symbol that is not explicitly labelled as
16325 being a function is apparently labelled as being an object. */
16328 if (!is_end_of_line[(unsigned char) *input_line_pointer]
16329 && (*input_line_pointer != ','))
16334 secname = input_line_pointer;
16335 c = get_symbol_end ();
16336 sec = bfd_get_section_by_name (stdoutput, secname);
16338 as_bad (_("%s: no such section"), secname);
16339 *input_line_pointer = c;
16341 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
16342 flag = BSF_FUNCTION;
16345 symbol_get_bfdsym (symbolP)->flags |= flag;
16347 c = *input_line_pointer;
16350 input_line_pointer++;
16351 SKIP_WHITESPACE ();
16352 if (is_end_of_line[(unsigned char) *input_line_pointer])
16358 demand_empty_rest_of_line ();
16362 s_option (int x ATTRIBUTE_UNUSED)
16367 opt = input_line_pointer;
16368 c = get_symbol_end ();
16372 /* FIXME: What does this mean? */
16374 else if (strncmp (opt, "pic", 3) == 0)
16378 i = atoi (opt + 3);
16383 mips_pic = SVR4_PIC;
16384 mips_abicalls = TRUE;
16387 as_bad (_(".option pic%d not supported"), i);
16389 if (mips_pic == SVR4_PIC)
16391 if (g_switch_seen && g_switch_value != 0)
16392 as_warn (_("-G may not be used with SVR4 PIC code"));
16393 g_switch_value = 0;
16394 bfd_set_gp_size (stdoutput, 0);
16398 as_warn (_("Unrecognized option \"%s\""), opt);
16400 *input_line_pointer = c;
16401 demand_empty_rest_of_line ();
16404 /* This structure is used to hold a stack of .set values. */
16406 struct mips_option_stack
16408 struct mips_option_stack *next;
16409 struct mips_set_options options;
16412 static struct mips_option_stack *mips_opts_stack;
16414 /* Handle the .set pseudo-op. */
16417 s_mipsset (int x ATTRIBUTE_UNUSED)
16419 char *name = input_line_pointer, ch;
16420 const struct mips_ase *ase;
16422 while (!is_end_of_line[(unsigned char) *input_line_pointer])
16423 ++input_line_pointer;
16424 ch = *input_line_pointer;
16425 *input_line_pointer = '\0';
16427 if (strcmp (name, "reorder") == 0)
16429 if (mips_opts.noreorder)
16432 else if (strcmp (name, "noreorder") == 0)
16434 if (!mips_opts.noreorder)
16435 start_noreorder ();
16437 else if (strncmp (name, "at=", 3) == 0)
16439 char *s = name + 3;
16441 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
16442 as_bad (_("Unrecognized register name `%s'"), s);
16444 else if (strcmp (name, "at") == 0)
16446 mips_opts.at = ATREG;
16448 else if (strcmp (name, "noat") == 0)
16450 mips_opts.at = ZERO;
16452 else if (strcmp (name, "macro") == 0)
16454 mips_opts.warn_about_macros = 0;
16456 else if (strcmp (name, "nomacro") == 0)
16458 if (mips_opts.noreorder == 0)
16459 as_bad (_("`noreorder' must be set before `nomacro'"));
16460 mips_opts.warn_about_macros = 1;
16462 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
16464 mips_opts.nomove = 0;
16466 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
16468 mips_opts.nomove = 1;
16470 else if (strcmp (name, "bopt") == 0)
16472 mips_opts.nobopt = 0;
16474 else if (strcmp (name, "nobopt") == 0)
16476 mips_opts.nobopt = 1;
16478 else if (strcmp (name, "gp=default") == 0)
16479 mips_opts.gp32 = file_mips_gp32;
16480 else if (strcmp (name, "gp=32") == 0)
16481 mips_opts.gp32 = 1;
16482 else if (strcmp (name, "gp=64") == 0)
16484 if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
16485 as_warn (_("%s isa does not support 64-bit registers"),
16486 mips_cpu_info_from_isa (mips_opts.isa)->name);
16487 mips_opts.gp32 = 0;
16489 else if (strcmp (name, "fp=default") == 0)
16490 mips_opts.fp32 = file_mips_fp32;
16491 else if (strcmp (name, "fp=32") == 0)
16492 mips_opts.fp32 = 1;
16493 else if (strcmp (name, "fp=64") == 0)
16495 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
16496 as_warn (_("%s isa does not support 64-bit floating point registers"),
16497 mips_cpu_info_from_isa (mips_opts.isa)->name);
16498 mips_opts.fp32 = 0;
16500 else if (strcmp (name, "softfloat") == 0)
16501 mips_opts.soft_float = 1;
16502 else if (strcmp (name, "hardfloat") == 0)
16503 mips_opts.soft_float = 0;
16504 else if (strcmp (name, "singlefloat") == 0)
16505 mips_opts.single_float = 1;
16506 else if (strcmp (name, "doublefloat") == 0)
16507 mips_opts.single_float = 0;
16508 else if (strcmp (name, "mips16") == 0
16509 || strcmp (name, "MIPS-16") == 0)
16511 if (mips_opts.micromips == 1)
16512 as_fatal (_("`mips16' cannot be used with `micromips'"));
16513 mips_opts.mips16 = 1;
16515 else if (strcmp (name, "nomips16") == 0
16516 || strcmp (name, "noMIPS-16") == 0)
16517 mips_opts.mips16 = 0;
16518 else if (strcmp (name, "micromips") == 0)
16520 if (mips_opts.mips16 == 1)
16521 as_fatal (_("`micromips' cannot be used with `mips16'"));
16522 mips_opts.micromips = 1;
16524 else if (strcmp (name, "nomicromips") == 0)
16525 mips_opts.micromips = 0;
16526 else if (name[0] == 'n'
16528 && (ase = mips_lookup_ase (name + 2)))
16529 mips_set_ase (ase, FALSE);
16530 else if ((ase = mips_lookup_ase (name)))
16531 mips_set_ase (ase, TRUE);
16532 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
16536 /* Permit the user to change the ISA and architecture on the fly.
16537 Needless to say, misuse can cause serious problems. */
16538 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
16541 mips_opts.isa = file_mips_isa;
16542 mips_opts.arch = file_mips_arch;
16544 else if (strncmp (name, "arch=", 5) == 0)
16546 const struct mips_cpu_info *p;
16548 p = mips_parse_cpu("internal use", name + 5);
16550 as_bad (_("unknown architecture %s"), name + 5);
16553 mips_opts.arch = p->cpu;
16554 mips_opts.isa = p->isa;
16557 else if (strncmp (name, "mips", 4) == 0)
16559 const struct mips_cpu_info *p;
16561 p = mips_parse_cpu("internal use", name);
16563 as_bad (_("unknown ISA level %s"), name + 4);
16566 mips_opts.arch = p->cpu;
16567 mips_opts.isa = p->isa;
16571 as_bad (_("unknown ISA or architecture %s"), name);
16573 switch (mips_opts.isa)
16581 mips_opts.gp32 = 1;
16582 mips_opts.fp32 = 1;
16589 mips_opts.gp32 = 0;
16590 if (mips_opts.arch == CPU_R5900)
16592 mips_opts.fp32 = 1;
16596 mips_opts.fp32 = 0;
16600 as_bad (_("unknown ISA level %s"), name + 4);
16605 mips_opts.gp32 = file_mips_gp32;
16606 mips_opts.fp32 = file_mips_fp32;
16609 else if (strcmp (name, "autoextend") == 0)
16610 mips_opts.noautoextend = 0;
16611 else if (strcmp (name, "noautoextend") == 0)
16612 mips_opts.noautoextend = 1;
16613 else if (strcmp (name, "insn32") == 0)
16614 mips_opts.insn32 = TRUE;
16615 else if (strcmp (name, "noinsn32") == 0)
16616 mips_opts.insn32 = FALSE;
16617 else if (strcmp (name, "push") == 0)
16619 struct mips_option_stack *s;
16621 s = (struct mips_option_stack *) xmalloc (sizeof *s);
16622 s->next = mips_opts_stack;
16623 s->options = mips_opts;
16624 mips_opts_stack = s;
16626 else if (strcmp (name, "pop") == 0)
16628 struct mips_option_stack *s;
16630 s = mips_opts_stack;
16632 as_bad (_(".set pop with no .set push"));
16635 /* If we're changing the reorder mode we need to handle
16636 delay slots correctly. */
16637 if (s->options.noreorder && ! mips_opts.noreorder)
16638 start_noreorder ();
16639 else if (! s->options.noreorder && mips_opts.noreorder)
16642 mips_opts = s->options;
16643 mips_opts_stack = s->next;
16647 else if (strcmp (name, "sym32") == 0)
16648 mips_opts.sym32 = TRUE;
16649 else if (strcmp (name, "nosym32") == 0)
16650 mips_opts.sym32 = FALSE;
16651 else if (strchr (name, ','))
16653 /* Generic ".set" directive; use the generic handler. */
16654 *input_line_pointer = ch;
16655 input_line_pointer = name;
16661 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
16663 mips_check_isa_supports_ases ();
16664 *input_line_pointer = ch;
16665 demand_empty_rest_of_line ();
16668 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
16669 .option pic2. It means to generate SVR4 PIC calls. */
16672 s_abicalls (int ignore ATTRIBUTE_UNUSED)
16674 mips_pic = SVR4_PIC;
16675 mips_abicalls = TRUE;
16677 if (g_switch_seen && g_switch_value != 0)
16678 as_warn (_("-G may not be used with SVR4 PIC code"));
16679 g_switch_value = 0;
16681 bfd_set_gp_size (stdoutput, 0);
16682 demand_empty_rest_of_line ();
16685 /* Handle the .cpload pseudo-op. This is used when generating SVR4
16686 PIC code. It sets the $gp register for the function based on the
16687 function address, which is in the register named in the argument.
16688 This uses a relocation against _gp_disp, which is handled specially
16689 by the linker. The result is:
16690 lui $gp,%hi(_gp_disp)
16691 addiu $gp,$gp,%lo(_gp_disp)
16692 addu $gp,$gp,.cpload argument
16693 The .cpload argument is normally $25 == $t9.
16695 The -mno-shared option changes this to:
16696 lui $gp,%hi(__gnu_local_gp)
16697 addiu $gp,$gp,%lo(__gnu_local_gp)
16698 and the argument is ignored. This saves an instruction, but the
16699 resulting code is not position independent; it uses an absolute
16700 address for __gnu_local_gp. Thus code assembled with -mno-shared
16701 can go into an ordinary executable, but not into a shared library. */
16704 s_cpload (int ignore ATTRIBUTE_UNUSED)
16710 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
16711 .cpload is ignored. */
16712 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
16718 if (mips_opts.mips16)
16720 as_bad (_("%s not supported in MIPS16 mode"), ".cpload");
16721 ignore_rest_of_line ();
16725 /* .cpload should be in a .set noreorder section. */
16726 if (mips_opts.noreorder == 0)
16727 as_warn (_(".cpload not in noreorder section"));
16729 reg = tc_get_register (0);
16731 /* If we need to produce a 64-bit address, we are better off using
16732 the default instruction sequence. */
16733 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
16735 ex.X_op = O_symbol;
16736 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
16738 ex.X_op_symbol = NULL;
16739 ex.X_add_number = 0;
16741 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
16742 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
16744 mips_mark_labels ();
16745 mips_assembling_insn = TRUE;
16748 macro_build_lui (&ex, mips_gp_register);
16749 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
16750 mips_gp_register, BFD_RELOC_LO16);
16752 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
16753 mips_gp_register, reg);
16756 mips_assembling_insn = FALSE;
16757 demand_empty_rest_of_line ();
16760 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
16761 .cpsetup $reg1, offset|$reg2, label
16763 If offset is given, this results in:
16764 sd $gp, offset($sp)
16765 lui $gp, %hi(%neg(%gp_rel(label)))
16766 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
16767 daddu $gp, $gp, $reg1
16769 If $reg2 is given, this results in:
16770 daddu $reg2, $gp, $0
16771 lui $gp, %hi(%neg(%gp_rel(label)))
16772 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
16773 daddu $gp, $gp, $reg1
16774 $reg1 is normally $25 == $t9.
16776 The -mno-shared option replaces the last three instructions with
16778 addiu $gp,$gp,%lo(_gp) */
16781 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
16783 expressionS ex_off;
16784 expressionS ex_sym;
16787 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
16788 We also need NewABI support. */
16789 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16795 if (mips_opts.mips16)
16797 as_bad (_("%s not supported in MIPS16 mode"), ".cpsetup");
16798 ignore_rest_of_line ();
16802 reg1 = tc_get_register (0);
16803 SKIP_WHITESPACE ();
16804 if (*input_line_pointer != ',')
16806 as_bad (_("missing argument separator ',' for .cpsetup"));
16810 ++input_line_pointer;
16811 SKIP_WHITESPACE ();
16812 if (*input_line_pointer == '$')
16814 mips_cpreturn_register = tc_get_register (0);
16815 mips_cpreturn_offset = -1;
16819 mips_cpreturn_offset = get_absolute_expression ();
16820 mips_cpreturn_register = -1;
16822 SKIP_WHITESPACE ();
16823 if (*input_line_pointer != ',')
16825 as_bad (_("missing argument separator ',' for .cpsetup"));
16829 ++input_line_pointer;
16830 SKIP_WHITESPACE ();
16831 expression (&ex_sym);
16833 mips_mark_labels ();
16834 mips_assembling_insn = TRUE;
16837 if (mips_cpreturn_register == -1)
16839 ex_off.X_op = O_constant;
16840 ex_off.X_add_symbol = NULL;
16841 ex_off.X_op_symbol = NULL;
16842 ex_off.X_add_number = mips_cpreturn_offset;
16844 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
16845 BFD_RELOC_LO16, SP);
16848 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
16849 mips_gp_register, 0);
16851 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
16853 macro_build (&ex_sym, "lui", LUI_FMT, mips_gp_register,
16854 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
16857 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
16858 mips_gp_register, -1, BFD_RELOC_GPREL16,
16859 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
16861 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
16862 mips_gp_register, reg1);
16868 ex.X_op = O_symbol;
16869 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
16870 ex.X_op_symbol = NULL;
16871 ex.X_add_number = 0;
16873 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
16874 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
16876 macro_build_lui (&ex, mips_gp_register);
16877 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
16878 mips_gp_register, BFD_RELOC_LO16);
16883 mips_assembling_insn = FALSE;
16884 demand_empty_rest_of_line ();
16888 s_cplocal (int ignore ATTRIBUTE_UNUSED)
16890 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
16891 .cplocal is ignored. */
16892 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16898 if (mips_opts.mips16)
16900 as_bad (_("%s not supported in MIPS16 mode"), ".cplocal");
16901 ignore_rest_of_line ();
16905 mips_gp_register = tc_get_register (0);
16906 demand_empty_rest_of_line ();
16909 /* Handle the .cprestore pseudo-op. This stores $gp into a given
16910 offset from $sp. The offset is remembered, and after making a PIC
16911 call $gp is restored from that location. */
16914 s_cprestore (int ignore ATTRIBUTE_UNUSED)
16918 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
16919 .cprestore is ignored. */
16920 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
16926 if (mips_opts.mips16)
16928 as_bad (_("%s not supported in MIPS16 mode"), ".cprestore");
16929 ignore_rest_of_line ();
16933 mips_cprestore_offset = get_absolute_expression ();
16934 mips_cprestore_valid = 1;
16936 ex.X_op = O_constant;
16937 ex.X_add_symbol = NULL;
16938 ex.X_op_symbol = NULL;
16939 ex.X_add_number = mips_cprestore_offset;
16941 mips_mark_labels ();
16942 mips_assembling_insn = TRUE;
16945 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
16946 SP, HAVE_64BIT_ADDRESSES);
16949 mips_assembling_insn = FALSE;
16950 demand_empty_rest_of_line ();
16953 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
16954 was given in the preceding .cpsetup, it results in:
16955 ld $gp, offset($sp)
16957 If a register $reg2 was given there, it results in:
16958 daddu $gp, $reg2, $0 */
16961 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
16965 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
16966 We also need NewABI support. */
16967 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
16973 if (mips_opts.mips16)
16975 as_bad (_("%s not supported in MIPS16 mode"), ".cpreturn");
16976 ignore_rest_of_line ();
16980 mips_mark_labels ();
16981 mips_assembling_insn = TRUE;
16984 if (mips_cpreturn_register == -1)
16986 ex.X_op = O_constant;
16987 ex.X_add_symbol = NULL;
16988 ex.X_op_symbol = NULL;
16989 ex.X_add_number = mips_cpreturn_offset;
16991 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
16994 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
16995 mips_cpreturn_register, 0);
16998 mips_assembling_insn = FALSE;
16999 demand_empty_rest_of_line ();
17002 /* Handle a .dtprelword, .dtpreldword, .tprelword, or .tpreldword
17003 pseudo-op; DIRSTR says which. The pseudo-op generates a BYTES-size
17004 DTP- or TP-relative relocation of type RTYPE, for use in either DWARF
17005 debug information or MIPS16 TLS. */
17008 s_tls_rel_directive (const size_t bytes, const char *dirstr,
17009 bfd_reloc_code_real_type rtype)
17016 if (ex.X_op != O_symbol)
17018 as_bad (_("Unsupported use of %s"), dirstr);
17019 ignore_rest_of_line ();
17022 p = frag_more (bytes);
17023 md_number_to_chars (p, 0, bytes);
17024 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, rtype);
17025 demand_empty_rest_of_line ();
17026 mips_clear_insn_labels ();
17029 /* Handle .dtprelword. */
17032 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
17034 s_tls_rel_directive (4, ".dtprelword", BFD_RELOC_MIPS_TLS_DTPREL32);
17037 /* Handle .dtpreldword. */
17040 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
17042 s_tls_rel_directive (8, ".dtpreldword", BFD_RELOC_MIPS_TLS_DTPREL64);
17045 /* Handle .tprelword. */
17048 s_tprelword (int ignore ATTRIBUTE_UNUSED)
17050 s_tls_rel_directive (4, ".tprelword", BFD_RELOC_MIPS_TLS_TPREL32);
17053 /* Handle .tpreldword. */
17056 s_tpreldword (int ignore ATTRIBUTE_UNUSED)
17058 s_tls_rel_directive (8, ".tpreldword", BFD_RELOC_MIPS_TLS_TPREL64);
17061 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
17062 code. It sets the offset to use in gp_rel relocations. */
17065 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
17067 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
17068 We also need NewABI support. */
17069 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
17075 mips_gprel_offset = get_absolute_expression ();
17077 demand_empty_rest_of_line ();
17080 /* Handle the .gpword pseudo-op. This is used when generating PIC
17081 code. It generates a 32 bit GP relative reloc. */
17084 s_gpword (int ignore ATTRIBUTE_UNUSED)
17086 segment_info_type *si;
17087 struct insn_label_list *l;
17091 /* When not generating PIC code, this is treated as .word. */
17092 if (mips_pic != SVR4_PIC)
17098 si = seg_info (now_seg);
17099 l = si->label_list;
17100 mips_emit_delays ();
17102 mips_align (2, 0, l);
17105 mips_clear_insn_labels ();
17107 if (ex.X_op != O_symbol || ex.X_add_number != 0)
17109 as_bad (_("Unsupported use of .gpword"));
17110 ignore_rest_of_line ();
17114 md_number_to_chars (p, 0, 4);
17115 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
17116 BFD_RELOC_GPREL32);
17118 demand_empty_rest_of_line ();
17122 s_gpdword (int ignore ATTRIBUTE_UNUSED)
17124 segment_info_type *si;
17125 struct insn_label_list *l;
17129 /* When not generating PIC code, this is treated as .dword. */
17130 if (mips_pic != SVR4_PIC)
17136 si = seg_info (now_seg);
17137 l = si->label_list;
17138 mips_emit_delays ();
17140 mips_align (3, 0, l);
17143 mips_clear_insn_labels ();
17145 if (ex.X_op != O_symbol || ex.X_add_number != 0)
17147 as_bad (_("Unsupported use of .gpdword"));
17148 ignore_rest_of_line ();
17152 md_number_to_chars (p, 0, 8);
17153 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
17154 BFD_RELOC_GPREL32)->fx_tcbit = 1;
17156 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
17157 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
17158 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
17160 demand_empty_rest_of_line ();
17163 /* Handle the .ehword pseudo-op. This is used when generating unwinding
17164 tables. It generates a R_MIPS_EH reloc. */
17167 s_ehword (int ignore ATTRIBUTE_UNUSED)
17172 mips_emit_delays ();
17175 mips_clear_insn_labels ();
17177 if (ex.X_op != O_symbol || ex.X_add_number != 0)
17179 as_bad (_("Unsupported use of .ehword"));
17180 ignore_rest_of_line ();
17184 md_number_to_chars (p, 0, 4);
17185 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
17186 BFD_RELOC_MIPS_EH);
17188 demand_empty_rest_of_line ();
17191 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
17192 tables in SVR4 PIC code. */
17195 s_cpadd (int ignore ATTRIBUTE_UNUSED)
17199 /* This is ignored when not generating SVR4 PIC code. */
17200 if (mips_pic != SVR4_PIC)
17206 mips_mark_labels ();
17207 mips_assembling_insn = TRUE;
17209 /* Add $gp to the register named as an argument. */
17211 reg = tc_get_register (0);
17212 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
17215 mips_assembling_insn = FALSE;
17216 demand_empty_rest_of_line ();
17219 /* Handle the .insn pseudo-op. This marks instruction labels in
17220 mips16/micromips mode. This permits the linker to handle them specially,
17221 such as generating jalx instructions when needed. We also make
17222 them odd for the duration of the assembly, in order to generate the
17223 right sort of code. We will make them even in the adjust_symtab
17224 routine, while leaving them marked. This is convenient for the
17225 debugger and the disassembler. The linker knows to make them odd
17229 s_insn (int ignore ATTRIBUTE_UNUSED)
17231 mips_mark_labels ();
17233 demand_empty_rest_of_line ();
17236 /* Handle a .stab[snd] directive. Ideally these directives would be
17237 implemented in a transparent way, so that removing them would not
17238 have any effect on the generated instructions. However, s_stab
17239 internally changes the section, so in practice we need to decide
17240 now whether the preceding label marks compressed code. We do not
17241 support changing the compression mode of a label after a .stab*
17242 directive, such as in:
17248 so the current mode wins. */
17251 s_mips_stab (int type)
17253 mips_mark_labels ();
17257 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
17260 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
17267 name = input_line_pointer;
17268 c = get_symbol_end ();
17269 symbolP = symbol_find_or_make (name);
17270 S_SET_WEAK (symbolP);
17271 *input_line_pointer = c;
17273 SKIP_WHITESPACE ();
17275 if (! is_end_of_line[(unsigned char) *input_line_pointer])
17277 if (S_IS_DEFINED (symbolP))
17279 as_bad (_("ignoring attempt to redefine symbol %s"),
17280 S_GET_NAME (symbolP));
17281 ignore_rest_of_line ();
17285 if (*input_line_pointer == ',')
17287 ++input_line_pointer;
17288 SKIP_WHITESPACE ();
17292 if (exp.X_op != O_symbol)
17294 as_bad (_("bad .weakext directive"));
17295 ignore_rest_of_line ();
17298 symbol_set_value_expression (symbolP, &exp);
17301 demand_empty_rest_of_line ();
17304 /* Parse a register string into a number. Called from the ECOFF code
17305 to parse .frame. The argument is non-zero if this is the frame
17306 register, so that we can record it in mips_frame_reg. */
17309 tc_get_register (int frame)
17313 SKIP_WHITESPACE ();
17314 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, ®))
17318 mips_frame_reg = reg != 0 ? reg : SP;
17319 mips_frame_reg_valid = 1;
17320 mips_cprestore_valid = 0;
17326 md_section_align (asection *seg, valueT addr)
17328 int align = bfd_get_section_alignment (stdoutput, seg);
17330 /* We don't need to align ELF sections to the full alignment.
17331 However, Irix 5 may prefer that we align them at least to a 16
17332 byte boundary. We don't bother to align the sections if we
17333 are targeted for an embedded system. */
17334 if (strncmp (TARGET_OS, "elf", 3) == 0)
17339 return ((addr + (1 << align) - 1) & (-1 << align));
17342 /* Utility routine, called from above as well. If called while the
17343 input file is still being read, it's only an approximation. (For
17344 example, a symbol may later become defined which appeared to be
17345 undefined earlier.) */
17348 nopic_need_relax (symbolS *sym, int before_relaxing)
17353 if (g_switch_value > 0)
17355 const char *symname;
17358 /* Find out whether this symbol can be referenced off the $gp
17359 register. It can be if it is smaller than the -G size or if
17360 it is in the .sdata or .sbss section. Certain symbols can
17361 not be referenced off the $gp, although it appears as though
17363 symname = S_GET_NAME (sym);
17364 if (symname != (const char *) NULL
17365 && (strcmp (symname, "eprol") == 0
17366 || strcmp (symname, "etext") == 0
17367 || strcmp (symname, "_gp") == 0
17368 || strcmp (symname, "edata") == 0
17369 || strcmp (symname, "_fbss") == 0
17370 || strcmp (symname, "_fdata") == 0
17371 || strcmp (symname, "_ftext") == 0
17372 || strcmp (symname, "end") == 0
17373 || strcmp (symname, "_gp_disp") == 0))
17375 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
17377 #ifndef NO_ECOFF_DEBUGGING
17378 || (symbol_get_obj (sym)->ecoff_extern_size != 0
17379 && (symbol_get_obj (sym)->ecoff_extern_size
17380 <= g_switch_value))
17382 /* We must defer this decision until after the whole
17383 file has been read, since there might be a .extern
17384 after the first use of this symbol. */
17385 || (before_relaxing
17386 #ifndef NO_ECOFF_DEBUGGING
17387 && symbol_get_obj (sym)->ecoff_extern_size == 0
17389 && S_GET_VALUE (sym) == 0)
17390 || (S_GET_VALUE (sym) != 0
17391 && S_GET_VALUE (sym) <= g_switch_value)))
17395 const char *segname;
17397 segname = segment_name (S_GET_SEGMENT (sym));
17398 gas_assert (strcmp (segname, ".lit8") != 0
17399 && strcmp (segname, ".lit4") != 0);
17400 change = (strcmp (segname, ".sdata") != 0
17401 && strcmp (segname, ".sbss") != 0
17402 && strncmp (segname, ".sdata.", 7) != 0
17403 && strncmp (segname, ".sbss.", 6) != 0
17404 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
17405 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
17410 /* We are not optimizing for the $gp register. */
17415 /* Return true if the given symbol should be considered local for SVR4 PIC. */
17418 pic_need_relax (symbolS *sym, asection *segtype)
17422 /* Handle the case of a symbol equated to another symbol. */
17423 while (symbol_equated_reloc_p (sym))
17427 /* It's possible to get a loop here in a badly written program. */
17428 n = symbol_get_value_expression (sym)->X_add_symbol;
17434 if (symbol_section_p (sym))
17437 symsec = S_GET_SEGMENT (sym);
17439 /* This must duplicate the test in adjust_reloc_syms. */
17440 return (!bfd_is_und_section (symsec)
17441 && !bfd_is_abs_section (symsec)
17442 && !bfd_is_com_section (symsec)
17443 && !s_is_linkonce (sym, segtype)
17444 /* A global or weak symbol is treated as external. */
17445 && (!S_IS_WEAK (sym) && !S_IS_EXTERNAL (sym)));
17449 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
17450 extended opcode. SEC is the section the frag is in. */
17453 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
17456 const struct mips16_immed_operand *op;
17458 int mintiny, maxtiny;
17462 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
17464 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
17467 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
17468 op = mips16_immed_operands;
17469 while (op->type != type)
17472 gas_assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
17477 if (type == '<' || type == '>' || type == '[' || type == ']')
17480 maxtiny = 1 << op->nbits;
17485 maxtiny = (1 << op->nbits) - 1;
17490 mintiny = - (1 << (op->nbits - 1));
17491 maxtiny = (1 << (op->nbits - 1)) - 1;
17494 sym_frag = symbol_get_frag (fragp->fr_symbol);
17495 val = S_GET_VALUE (fragp->fr_symbol);
17496 symsec = S_GET_SEGMENT (fragp->fr_symbol);
17502 /* We won't have the section when we are called from
17503 mips_relax_frag. However, we will always have been called
17504 from md_estimate_size_before_relax first. If this is a
17505 branch to a different section, we mark it as such. If SEC is
17506 NULL, and the frag is not marked, then it must be a branch to
17507 the same section. */
17510 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
17515 /* Must have been called from md_estimate_size_before_relax. */
17518 fragp->fr_subtype =
17519 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17521 /* FIXME: We should support this, and let the linker
17522 catch branches and loads that are out of range. */
17523 as_bad_where (fragp->fr_file, fragp->fr_line,
17524 _("unsupported PC relative reference to different section"));
17528 if (fragp != sym_frag && sym_frag->fr_address == 0)
17529 /* Assume non-extended on the first relaxation pass.
17530 The address we have calculated will be bogus if this is
17531 a forward branch to another frag, as the forward frag
17532 will have fr_address == 0. */
17536 /* In this case, we know for sure that the symbol fragment is in
17537 the same section. If the relax_marker of the symbol fragment
17538 differs from the relax_marker of this fragment, we have not
17539 yet adjusted the symbol fragment fr_address. We want to add
17540 in STRETCH in order to get a better estimate of the address.
17541 This particularly matters because of the shift bits. */
17543 && sym_frag->relax_marker != fragp->relax_marker)
17547 /* Adjust stretch for any alignment frag. Note that if have
17548 been expanding the earlier code, the symbol may be
17549 defined in what appears to be an earlier frag. FIXME:
17550 This doesn't handle the fr_subtype field, which specifies
17551 a maximum number of bytes to skip when doing an
17553 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
17555 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
17558 stretch = - ((- stretch)
17559 & ~ ((1 << (int) f->fr_offset) - 1));
17561 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
17570 addr = fragp->fr_address + fragp->fr_fix;
17572 /* The base address rules are complicated. The base address of
17573 a branch is the following instruction. The base address of a
17574 PC relative load or add is the instruction itself, but if it
17575 is in a delay slot (in which case it can not be extended) use
17576 the address of the instruction whose delay slot it is in. */
17577 if (type == 'p' || type == 'q')
17581 /* If we are currently assuming that this frag should be
17582 extended, then, the current address is two bytes
17584 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
17587 /* Ignore the low bit in the target, since it will be set
17588 for a text label. */
17589 if ((val & 1) != 0)
17592 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
17594 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
17597 val -= addr & ~ ((1 << op->shift) - 1);
17599 /* Branch offsets have an implicit 0 in the lowest bit. */
17600 if (type == 'p' || type == 'q')
17603 /* If any of the shifted bits are set, we must use an extended
17604 opcode. If the address depends on the size of this
17605 instruction, this can lead to a loop, so we arrange to always
17606 use an extended opcode. We only check this when we are in
17607 the main relaxation loop, when SEC is NULL. */
17608 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
17610 fragp->fr_subtype =
17611 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17615 /* If we are about to mark a frag as extended because the value
17616 is precisely maxtiny + 1, then there is a chance of an
17617 infinite loop as in the following code:
17622 In this case when the la is extended, foo is 0x3fc bytes
17623 away, so the la can be shrunk, but then foo is 0x400 away, so
17624 the la must be extended. To avoid this loop, we mark the
17625 frag as extended if it was small, and is about to become
17626 extended with a value of maxtiny + 1. */
17627 if (val == ((maxtiny + 1) << op->shift)
17628 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
17631 fragp->fr_subtype =
17632 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
17636 else if (symsec != absolute_section && sec != NULL)
17637 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
17639 if ((val & ((1 << op->shift) - 1)) != 0
17640 || val < (mintiny << op->shift)
17641 || val > (maxtiny << op->shift))
17647 /* Compute the length of a branch sequence, and adjust the
17648 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
17649 worst-case length is computed, with UPDATE being used to indicate
17650 whether an unconditional (-1), branch-likely (+1) or regular (0)
17651 branch is to be computed. */
17653 relaxed_branch_length (fragS *fragp, asection *sec, int update)
17655 bfd_boolean toofar;
17659 && S_IS_DEFINED (fragp->fr_symbol)
17660 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17665 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17667 addr = fragp->fr_address + fragp->fr_fix + 4;
17671 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
17674 /* If the symbol is not defined or it's in a different segment,
17675 assume the user knows what's going on and emit a short
17681 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
17683 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
17684 RELAX_BRANCH_UNCOND (fragp->fr_subtype),
17685 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
17686 RELAX_BRANCH_LINK (fragp->fr_subtype),
17692 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
17695 if (mips_pic != NO_PIC)
17697 /* Additional space for PIC loading of target address. */
17699 if (mips_opts.isa == ISA_MIPS1)
17700 /* Additional space for $at-stabilizing nop. */
17704 /* If branch is conditional. */
17705 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
17712 /* Compute the length of a branch sequence, and adjust the
17713 RELAX_MICROMIPS_TOOFAR32 bit accordingly. If FRAGP is NULL, the
17714 worst-case length is computed, with UPDATE being used to indicate
17715 whether an unconditional (-1), or regular (0) branch is to be
17719 relaxed_micromips_32bit_branch_length (fragS *fragp, asection *sec, int update)
17721 bfd_boolean toofar;
17725 && S_IS_DEFINED (fragp->fr_symbol)
17726 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17731 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17732 /* Ignore the low bit in the target, since it will be set
17733 for a text label. */
17734 if ((val & 1) != 0)
17737 addr = fragp->fr_address + fragp->fr_fix + 4;
17741 toofar = val < - (0x8000 << 1) || val >= (0x8000 << 1);
17744 /* If the symbol is not defined or it's in a different segment,
17745 assume the user knows what's going on and emit a short
17751 if (fragp && update
17752 && toofar != RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17753 fragp->fr_subtype = (toofar
17754 ? RELAX_MICROMIPS_MARK_TOOFAR32 (fragp->fr_subtype)
17755 : RELAX_MICROMIPS_CLEAR_TOOFAR32 (fragp->fr_subtype));
17760 bfd_boolean compact_known = fragp != NULL;
17761 bfd_boolean compact = FALSE;
17762 bfd_boolean uncond;
17765 compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
17767 uncond = RELAX_MICROMIPS_UNCOND (fragp->fr_subtype);
17769 uncond = update < 0;
17771 /* If label is out of range, we turn branch <br>:
17773 <br> label # 4 bytes
17779 nop # 2 bytes if compact && !PIC
17782 if (mips_pic == NO_PIC && (!compact_known || compact))
17785 /* If assembling PIC code, we further turn:
17791 lw/ld at, %got(label)(gp) # 4 bytes
17792 d/addiu at, %lo(label) # 4 bytes
17795 if (mips_pic != NO_PIC)
17798 /* If branch <br> is conditional, we prepend negated branch <brneg>:
17800 <brneg> 0f # 4 bytes
17801 nop # 2 bytes if !compact
17804 length += (compact_known && compact) ? 4 : 6;
17810 /* Compute the length of a branch, and adjust the RELAX_MICROMIPS_TOOFAR16
17811 bit accordingly. */
17814 relaxed_micromips_16bit_branch_length (fragS *fragp, asection *sec, int update)
17816 bfd_boolean toofar;
17819 && S_IS_DEFINED (fragp->fr_symbol)
17820 && sec == S_GET_SEGMENT (fragp->fr_symbol))
17826 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
17827 /* Ignore the low bit in the target, since it will be set
17828 for a text label. */
17829 if ((val & 1) != 0)
17832 /* Assume this is a 2-byte branch. */
17833 addr = fragp->fr_address + fragp->fr_fix + 2;
17835 /* We try to avoid the infinite loop by not adding 2 more bytes for
17840 type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
17842 toofar = val < - (0x200 << 1) || val >= (0x200 << 1);
17843 else if (type == 'E')
17844 toofar = val < - (0x40 << 1) || val >= (0x40 << 1);
17849 /* If the symbol is not defined or it's in a different segment,
17850 we emit a normal 32-bit branch. */
17853 if (fragp && update
17854 && toofar != RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
17856 = toofar ? RELAX_MICROMIPS_MARK_TOOFAR16 (fragp->fr_subtype)
17857 : RELAX_MICROMIPS_CLEAR_TOOFAR16 (fragp->fr_subtype);
17865 /* Estimate the size of a frag before relaxing. Unless this is the
17866 mips16, we are not really relaxing here, and the final size is
17867 encoded in the subtype information. For the mips16, we have to
17868 decide whether we are using an extended opcode or not. */
17871 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
17875 if (RELAX_BRANCH_P (fragp->fr_subtype))
17878 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
17880 return fragp->fr_var;
17883 if (RELAX_MIPS16_P (fragp->fr_subtype))
17884 /* We don't want to modify the EXTENDED bit here; it might get us
17885 into infinite loops. We change it only in mips_relax_frag(). */
17886 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
17888 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
17892 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
17893 length = relaxed_micromips_16bit_branch_length (fragp, segtype, FALSE);
17894 if (length == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
17895 length = relaxed_micromips_32bit_branch_length (fragp, segtype, FALSE);
17896 fragp->fr_var = length;
17901 if (mips_pic == NO_PIC)
17902 change = nopic_need_relax (fragp->fr_symbol, 0);
17903 else if (mips_pic == SVR4_PIC)
17904 change = pic_need_relax (fragp->fr_symbol, segtype);
17905 else if (mips_pic == VXWORKS_PIC)
17906 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
17913 fragp->fr_subtype |= RELAX_USE_SECOND;
17914 return -RELAX_FIRST (fragp->fr_subtype);
17917 return -RELAX_SECOND (fragp->fr_subtype);
17920 /* This is called to see whether a reloc against a defined symbol
17921 should be converted into a reloc against a section. */
17924 mips_fix_adjustable (fixS *fixp)
17926 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
17927 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
17930 if (fixp->fx_addsy == NULL)
17933 /* If symbol SYM is in a mergeable section, relocations of the form
17934 SYM + 0 can usually be made section-relative. The mergeable data
17935 is then identified by the section offset rather than by the symbol.
17937 However, if we're generating REL LO16 relocations, the offset is split
17938 between the LO16 and parterning high part relocation. The linker will
17939 need to recalculate the complete offset in order to correctly identify
17942 The linker has traditionally not looked for the parterning high part
17943 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
17944 placed anywhere. Rather than break backwards compatibility by changing
17945 this, it seems better not to force the issue, and instead keep the
17946 original symbol. This will work with either linker behavior. */
17947 if ((lo16_reloc_p (fixp->fx_r_type)
17948 || reloc_needs_lo_p (fixp->fx_r_type))
17949 && HAVE_IN_PLACE_ADDENDS
17950 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
17953 /* There is no place to store an in-place offset for JALR relocations.
17954 Likewise an in-range offset of limited PC-relative relocations may
17955 overflow the in-place relocatable field if recalculated against the
17956 start address of the symbol's containing section. */
17957 if (HAVE_IN_PLACE_ADDENDS
17958 && (limited_pcrel_reloc_p (fixp->fx_r_type)
17959 || jalr_reloc_p (fixp->fx_r_type)))
17962 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
17963 to a floating-point stub. The same is true for non-R_MIPS16_26
17964 relocations against MIPS16 functions; in this case, the stub becomes
17965 the function's canonical address.
17967 Floating-point stubs are stored in unique .mips16.call.* or
17968 .mips16.fn.* sections. If a stub T for function F is in section S,
17969 the first relocation in section S must be against F; this is how the
17970 linker determines the target function. All relocations that might
17971 resolve to T must also be against F. We therefore have the following
17972 restrictions, which are given in an intentionally-redundant way:
17974 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
17977 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
17978 if that stub might be used.
17980 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
17983 4. We cannot reduce a stub's relocations against MIPS16 symbols if
17984 that stub might be used.
17986 There is a further restriction:
17988 5. We cannot reduce jump relocations (R_MIPS_26, R_MIPS16_26 or
17989 R_MICROMIPS_26_S1) against MIPS16 or microMIPS symbols on
17990 targets with in-place addends; the relocation field cannot
17991 encode the low bit.
17993 For simplicity, we deal with (3)-(4) by not reducing _any_ relocation
17994 against a MIPS16 symbol. We deal with (5) by by not reducing any
17995 such relocations on REL targets.
17997 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
17998 relocation against some symbol R, no relocation against R may be
17999 reduced. (Note that this deals with (2) as well as (1) because
18000 relocations against global symbols will never be reduced on ELF
18001 targets.) This approach is a little simpler than trying to detect
18002 stub sections, and gives the "all or nothing" per-symbol consistency
18003 that we have for MIPS16 symbols. */
18004 if (fixp->fx_subsy == NULL
18005 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
18006 || *symbol_get_tc (fixp->fx_addsy)
18007 || (HAVE_IN_PLACE_ADDENDS
18008 && ELF_ST_IS_MICROMIPS (S_GET_OTHER (fixp->fx_addsy))
18009 && jmp_reloc_p (fixp->fx_r_type))))
18015 /* Translate internal representation of relocation info to BFD target
18019 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
18021 static arelent *retval[4];
18023 bfd_reloc_code_real_type code;
18025 memset (retval, 0, sizeof(retval));
18026 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
18027 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
18028 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
18029 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
18031 if (fixp->fx_pcrel)
18033 gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
18034 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
18035 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
18036 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
18037 || fixp->fx_r_type == BFD_RELOC_32_PCREL);
18039 /* At this point, fx_addnumber is "symbol offset - pcrel address".
18040 Relocations want only the symbol offset. */
18041 reloc->addend = fixp->fx_addnumber + reloc->address;
18044 reloc->addend = fixp->fx_addnumber;
18046 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
18047 entry to be used in the relocation's section offset. */
18048 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
18050 reloc->address = reloc->addend;
18054 code = fixp->fx_r_type;
18056 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
18057 if (reloc->howto == NULL)
18059 as_bad_where (fixp->fx_file, fixp->fx_line,
18060 _("Can not represent %s relocation in this object file format"),
18061 bfd_get_reloc_code_name (code));
18068 /* Relax a machine dependent frag. This returns the amount by which
18069 the current size of the frag should change. */
18072 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
18074 if (RELAX_BRANCH_P (fragp->fr_subtype))
18076 offsetT old_var = fragp->fr_var;
18078 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
18080 return fragp->fr_var - old_var;
18083 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
18085 offsetT old_var = fragp->fr_var;
18086 offsetT new_var = 4;
18088 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
18089 new_var = relaxed_micromips_16bit_branch_length (fragp, sec, TRUE);
18090 if (new_var == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
18091 new_var = relaxed_micromips_32bit_branch_length (fragp, sec, TRUE);
18092 fragp->fr_var = new_var;
18094 return new_var - old_var;
18097 if (! RELAX_MIPS16_P (fragp->fr_subtype))
18100 if (mips16_extended_frag (fragp, NULL, stretch))
18102 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
18104 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
18109 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
18111 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
18118 /* Convert a machine dependent frag. */
18121 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
18123 if (RELAX_BRANCH_P (fragp->fr_subtype))
18126 unsigned long insn;
18130 buf = fragp->fr_literal + fragp->fr_fix;
18131 insn = read_insn (buf);
18133 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
18135 /* We generate a fixup instead of applying it right now
18136 because, if there are linker relaxations, we're going to
18137 need the relocations. */
18138 exp.X_op = O_symbol;
18139 exp.X_add_symbol = fragp->fr_symbol;
18140 exp.X_add_number = fragp->fr_offset;
18142 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
18143 BFD_RELOC_16_PCREL_S2);
18144 fixp->fx_file = fragp->fr_file;
18145 fixp->fx_line = fragp->fr_line;
18147 buf = write_insn (buf, insn);
18153 as_warn_where (fragp->fr_file, fragp->fr_line,
18154 _("Relaxed out-of-range branch into a jump"));
18156 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
18159 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
18161 /* Reverse the branch. */
18162 switch ((insn >> 28) & 0xf)
18165 /* bc[0-3][tf]l? instructions can have the condition
18166 reversed by tweaking a single TF bit, and their
18167 opcodes all have 0x4???????. */
18168 gas_assert ((insn & 0xf3e00000) == 0x41000000);
18169 insn ^= 0x00010000;
18173 /* bltz 0x04000000 bgez 0x04010000
18174 bltzal 0x04100000 bgezal 0x04110000 */
18175 gas_assert ((insn & 0xfc0e0000) == 0x04000000);
18176 insn ^= 0x00010000;
18180 /* beq 0x10000000 bne 0x14000000
18181 blez 0x18000000 bgtz 0x1c000000 */
18182 insn ^= 0x04000000;
18190 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
18192 /* Clear the and-link bit. */
18193 gas_assert ((insn & 0xfc1c0000) == 0x04100000);
18195 /* bltzal 0x04100000 bgezal 0x04110000
18196 bltzall 0x04120000 bgezall 0x04130000 */
18197 insn &= ~0x00100000;
18200 /* Branch over the branch (if the branch was likely) or the
18201 full jump (not likely case). Compute the offset from the
18202 current instruction to branch to. */
18203 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
18207 /* How many bytes in instructions we've already emitted? */
18208 i = buf - fragp->fr_literal - fragp->fr_fix;
18209 /* How many bytes in instructions from here to the end? */
18210 i = fragp->fr_var - i;
18212 /* Convert to instruction count. */
18214 /* Branch counts from the next instruction. */
18217 /* Branch over the jump. */
18218 buf = write_insn (buf, insn);
18221 buf = write_insn (buf, 0);
18223 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
18225 /* beql $0, $0, 2f */
18227 /* Compute the PC offset from the current instruction to
18228 the end of the variable frag. */
18229 /* How many bytes in instructions we've already emitted? */
18230 i = buf - fragp->fr_literal - fragp->fr_fix;
18231 /* How many bytes in instructions from here to the end? */
18232 i = fragp->fr_var - i;
18233 /* Convert to instruction count. */
18235 /* Don't decrement i, because we want to branch over the
18239 buf = write_insn (buf, insn);
18240 buf = write_insn (buf, 0);
18244 if (mips_pic == NO_PIC)
18247 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
18248 ? 0x0c000000 : 0x08000000);
18249 exp.X_op = O_symbol;
18250 exp.X_add_symbol = fragp->fr_symbol;
18251 exp.X_add_number = fragp->fr_offset;
18253 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18254 FALSE, BFD_RELOC_MIPS_JMP);
18255 fixp->fx_file = fragp->fr_file;
18256 fixp->fx_line = fragp->fr_line;
18258 buf = write_insn (buf, insn);
18262 unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
18264 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
18265 insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
18266 insn |= at << OP_SH_RT;
18267 exp.X_op = O_symbol;
18268 exp.X_add_symbol = fragp->fr_symbol;
18269 exp.X_add_number = fragp->fr_offset;
18271 if (fragp->fr_offset)
18273 exp.X_add_symbol = make_expr_symbol (&exp);
18274 exp.X_add_number = 0;
18277 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18278 FALSE, BFD_RELOC_MIPS_GOT16);
18279 fixp->fx_file = fragp->fr_file;
18280 fixp->fx_line = fragp->fr_line;
18282 buf = write_insn (buf, insn);
18284 if (mips_opts.isa == ISA_MIPS1)
18286 buf = write_insn (buf, 0);
18288 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
18289 insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
18290 insn |= at << OP_SH_RS | at << OP_SH_RT;
18292 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
18293 FALSE, BFD_RELOC_LO16);
18294 fixp->fx_file = fragp->fr_file;
18295 fixp->fx_line = fragp->fr_line;
18297 buf = write_insn (buf, insn);
18300 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
18304 insn |= at << OP_SH_RS;
18306 buf = write_insn (buf, insn);
18310 fragp->fr_fix += fragp->fr_var;
18311 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
18315 /* Relax microMIPS branches. */
18316 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
18318 char *buf = fragp->fr_literal + fragp->fr_fix;
18319 bfd_boolean compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
18320 bfd_boolean al = RELAX_MICROMIPS_LINK (fragp->fr_subtype);
18321 int type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
18322 bfd_boolean short_ds;
18323 unsigned long insn;
18327 exp.X_op = O_symbol;
18328 exp.X_add_symbol = fragp->fr_symbol;
18329 exp.X_add_number = fragp->fr_offset;
18331 fragp->fr_fix += fragp->fr_var;
18333 /* Handle 16-bit branches that fit or are forced to fit. */
18334 if (type != 0 && !RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
18336 /* We generate a fixup instead of applying it right now,
18337 because if there is linker relaxation, we're going to
18338 need the relocations. */
18340 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
18341 BFD_RELOC_MICROMIPS_10_PCREL_S1);
18342 else if (type == 'E')
18343 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
18344 BFD_RELOC_MICROMIPS_7_PCREL_S1);
18348 fixp->fx_file = fragp->fr_file;
18349 fixp->fx_line = fragp->fr_line;
18351 /* These relocations can have an addend that won't fit in
18353 fixp->fx_no_overflow = 1;
18358 /* Handle 32-bit branches that fit or are forced to fit. */
18359 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
18360 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
18362 /* We generate a fixup instead of applying it right now,
18363 because if there is linker relaxation, we're going to
18364 need the relocations. */
18365 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
18366 BFD_RELOC_MICROMIPS_16_PCREL_S1);
18367 fixp->fx_file = fragp->fr_file;
18368 fixp->fx_line = fragp->fr_line;
18374 /* Relax 16-bit branches to 32-bit branches. */
18377 insn = read_compressed_insn (buf, 2);
18379 if ((insn & 0xfc00) == 0xcc00) /* b16 */
18380 insn = 0x94000000; /* beq */
18381 else if ((insn & 0xdc00) == 0x8c00) /* beqz16/bnez16 */
18383 unsigned long regno;
18385 regno = (insn >> MICROMIPSOP_SH_MD) & MICROMIPSOP_MASK_MD;
18386 regno = micromips_to_32_reg_d_map [regno];
18387 insn = ((insn & 0x2000) << 16) | 0x94000000; /* beq/bne */
18388 insn |= regno << MICROMIPSOP_SH_RS;
18393 /* Nothing else to do, just write it out. */
18394 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
18395 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
18397 buf = write_compressed_insn (buf, insn, 4);
18398 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
18403 insn = read_compressed_insn (buf, 4);
18405 /* Relax 32-bit branches to a sequence of instructions. */
18406 as_warn_where (fragp->fr_file, fragp->fr_line,
18407 _("Relaxed out-of-range branch into a jump"));
18409 /* Set the short-delay-slot bit. */
18410 short_ds = al && (insn & 0x02000000) != 0;
18412 if (!RELAX_MICROMIPS_UNCOND (fragp->fr_subtype))
18416 /* Reverse the branch. */
18417 if ((insn & 0xfc000000) == 0x94000000 /* beq */
18418 || (insn & 0xfc000000) == 0xb4000000) /* bne */
18419 insn ^= 0x20000000;
18420 else if ((insn & 0xffe00000) == 0x40000000 /* bltz */
18421 || (insn & 0xffe00000) == 0x40400000 /* bgez */
18422 || (insn & 0xffe00000) == 0x40800000 /* blez */
18423 || (insn & 0xffe00000) == 0x40c00000 /* bgtz */
18424 || (insn & 0xffe00000) == 0x40a00000 /* bnezc */
18425 || (insn & 0xffe00000) == 0x40e00000 /* beqzc */
18426 || (insn & 0xffe00000) == 0x40200000 /* bltzal */
18427 || (insn & 0xffe00000) == 0x40600000 /* bgezal */
18428 || (insn & 0xffe00000) == 0x42200000 /* bltzals */
18429 || (insn & 0xffe00000) == 0x42600000) /* bgezals */
18430 insn ^= 0x00400000;
18431 else if ((insn & 0xffe30000) == 0x43800000 /* bc1f */
18432 || (insn & 0xffe30000) == 0x43a00000 /* bc1t */
18433 || (insn & 0xffe30000) == 0x42800000 /* bc2f */
18434 || (insn & 0xffe30000) == 0x42a00000) /* bc2t */
18435 insn ^= 0x00200000;
18441 /* Clear the and-link and short-delay-slot bits. */
18442 gas_assert ((insn & 0xfda00000) == 0x40200000);
18444 /* bltzal 0x40200000 bgezal 0x40600000 */
18445 /* bltzals 0x42200000 bgezals 0x42600000 */
18446 insn &= ~0x02200000;
18449 /* Make a label at the end for use with the branch. */
18450 l = symbol_new (micromips_label_name (), asec, fragp->fr_fix, fragp);
18451 micromips_label_inc ();
18452 S_SET_OTHER (l, ELF_ST_SET_MICROMIPS (S_GET_OTHER (l)));
18455 fixp = fix_new (fragp, buf - fragp->fr_literal, 4, l, 0, TRUE,
18456 BFD_RELOC_MICROMIPS_16_PCREL_S1);
18457 fixp->fx_file = fragp->fr_file;
18458 fixp->fx_line = fragp->fr_line;
18460 /* Branch over the jump. */
18461 buf = write_compressed_insn (buf, insn, 4);
18464 buf = write_compressed_insn (buf, 0x0c00, 2);
18467 if (mips_pic == NO_PIC)
18469 unsigned long jal = short_ds ? 0x74000000 : 0xf4000000; /* jal/s */
18471 /* j/jal/jals <sym> R_MICROMIPS_26_S1 */
18472 insn = al ? jal : 0xd4000000;
18474 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18475 BFD_RELOC_MICROMIPS_JMP);
18476 fixp->fx_file = fragp->fr_file;
18477 fixp->fx_line = fragp->fr_line;
18479 buf = write_compressed_insn (buf, insn, 4);
18482 buf = write_compressed_insn (buf, 0x0c00, 2);
18486 unsigned long at = RELAX_MICROMIPS_AT (fragp->fr_subtype);
18487 unsigned long jalr = short_ds ? 0x45e0 : 0x45c0; /* jalr/s */
18488 unsigned long jr = compact ? 0x45a0 : 0x4580; /* jr/c */
18490 /* lw/ld $at, <sym>($gp) R_MICROMIPS_GOT16 */
18491 insn = HAVE_64BIT_ADDRESSES ? 0xdc1c0000 : 0xfc1c0000;
18492 insn |= at << MICROMIPSOP_SH_RT;
18494 if (exp.X_add_number)
18496 exp.X_add_symbol = make_expr_symbol (&exp);
18497 exp.X_add_number = 0;
18500 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18501 BFD_RELOC_MICROMIPS_GOT16);
18502 fixp->fx_file = fragp->fr_file;
18503 fixp->fx_line = fragp->fr_line;
18505 buf = write_compressed_insn (buf, insn, 4);
18507 /* d/addiu $at, $at, <sym> R_MICROMIPS_LO16 */
18508 insn = HAVE_64BIT_ADDRESSES ? 0x5c000000 : 0x30000000;
18509 insn |= at << MICROMIPSOP_SH_RT | at << MICROMIPSOP_SH_RS;
18511 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
18512 BFD_RELOC_MICROMIPS_LO16);
18513 fixp->fx_file = fragp->fr_file;
18514 fixp->fx_line = fragp->fr_line;
18516 buf = write_compressed_insn (buf, insn, 4);
18518 /* jr/jrc/jalr/jalrs $at */
18519 insn = al ? jalr : jr;
18520 insn |= at << MICROMIPSOP_SH_MJ;
18522 buf = write_compressed_insn (buf, insn, 2);
18525 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
18529 if (RELAX_MIPS16_P (fragp->fr_subtype))
18532 const struct mips16_immed_operand *op;
18535 unsigned int user_length, length;
18536 unsigned long insn;
18539 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
18540 op = mips16_immed_operands;
18541 while (op->type != type)
18544 ext = RELAX_MIPS16_EXTENDED (fragp->fr_subtype);
18545 val = resolve_symbol_value (fragp->fr_symbol);
18550 addr = fragp->fr_address + fragp->fr_fix;
18552 /* The rules for the base address of a PC relative reloc are
18553 complicated; see mips16_extended_frag. */
18554 if (type == 'p' || type == 'q')
18559 /* Ignore the low bit in the target, since it will be
18560 set for a text label. */
18561 if ((val & 1) != 0)
18564 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
18566 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
18569 addr &= ~ (addressT) ((1 << op->shift) - 1);
18572 /* Make sure the section winds up with the alignment we have
18575 record_alignment (asec, op->shift);
18579 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
18580 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
18581 as_warn_where (fragp->fr_file, fragp->fr_line,
18582 _("extended instruction in delay slot"));
18584 buf = fragp->fr_literal + fragp->fr_fix;
18586 insn = read_compressed_insn (buf, 2);
18588 insn |= MIPS16_EXTEND;
18590 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
18592 else if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
18597 mips16_immed (fragp->fr_file, fragp->fr_line, type,
18598 BFD_RELOC_UNUSED, val, user_length, &insn);
18600 length = (ext ? 4 : 2);
18601 gas_assert (mips16_opcode_length (insn) == length);
18602 write_compressed_insn (buf, insn, length);
18603 fragp->fr_fix += length;
18607 relax_substateT subtype = fragp->fr_subtype;
18608 bfd_boolean second_longer = (subtype & RELAX_SECOND_LONGER) != 0;
18609 bfd_boolean use_second = (subtype & RELAX_USE_SECOND) != 0;
18613 first = RELAX_FIRST (subtype);
18614 second = RELAX_SECOND (subtype);
18615 fixp = (fixS *) fragp->fr_opcode;
18617 /* If the delay slot chosen does not match the size of the instruction,
18618 then emit a warning. */
18619 if ((!use_second && (subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0)
18620 || (use_second && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0))
18625 s = subtype & (RELAX_DELAY_SLOT_16BIT
18626 | RELAX_DELAY_SLOT_SIZE_FIRST
18627 | RELAX_DELAY_SLOT_SIZE_SECOND);
18628 msg = macro_warning (s);
18630 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
18634 /* Possibly emit a warning if we've chosen the longer option. */
18635 if (use_second == second_longer)
18641 & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT));
18642 msg = macro_warning (s);
18644 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
18648 /* Go through all the fixups for the first sequence. Disable them
18649 (by marking them as done) if we're going to use the second
18650 sequence instead. */
18652 && fixp->fx_frag == fragp
18653 && fixp->fx_where < fragp->fr_fix - second)
18655 if (subtype & RELAX_USE_SECOND)
18657 fixp = fixp->fx_next;
18660 /* Go through the fixups for the second sequence. Disable them if
18661 we're going to use the first sequence, otherwise adjust their
18662 addresses to account for the relaxation. */
18663 while (fixp && fixp->fx_frag == fragp)
18665 if (subtype & RELAX_USE_SECOND)
18666 fixp->fx_where -= first;
18669 fixp = fixp->fx_next;
18672 /* Now modify the frag contents. */
18673 if (subtype & RELAX_USE_SECOND)
18677 start = fragp->fr_literal + fragp->fr_fix - first - second;
18678 memmove (start, start + first, second);
18679 fragp->fr_fix -= first;
18682 fragp->fr_fix -= second;
18686 /* This function is called after the relocs have been generated.
18687 We've been storing mips16 text labels as odd. Here we convert them
18688 back to even for the convenience of the debugger. */
18691 mips_frob_file_after_relocs (void)
18694 unsigned int count, i;
18696 syms = bfd_get_outsymbols (stdoutput);
18697 count = bfd_get_symcount (stdoutput);
18698 for (i = 0; i < count; i++, syms++)
18699 if (ELF_ST_IS_COMPRESSED (elf_symbol (*syms)->internal_elf_sym.st_other)
18700 && ((*syms)->value & 1) != 0)
18702 (*syms)->value &= ~1;
18703 /* If the symbol has an odd size, it was probably computed
18704 incorrectly, so adjust that as well. */
18705 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
18706 ++elf_symbol (*syms)->internal_elf_sym.st_size;
18710 /* This function is called whenever a label is defined, including fake
18711 labels instantiated off the dot special symbol. It is used when
18712 handling branch delays; if a branch has a label, we assume we cannot
18713 move it. This also bumps the value of the symbol by 1 in compressed
18717 mips_record_label (symbolS *sym)
18719 segment_info_type *si = seg_info (now_seg);
18720 struct insn_label_list *l;
18722 if (free_insn_labels == NULL)
18723 l = (struct insn_label_list *) xmalloc (sizeof *l);
18726 l = free_insn_labels;
18727 free_insn_labels = l->next;
18731 l->next = si->label_list;
18732 si->label_list = l;
18735 /* This function is called as tc_frob_label() whenever a label is defined
18736 and adds a DWARF-2 record we only want for true labels. */
18739 mips_define_label (symbolS *sym)
18741 mips_record_label (sym);
18742 dwarf2_emit_label (sym);
18745 /* This function is called by tc_new_dot_label whenever a new dot symbol
18749 mips_add_dot_label (symbolS *sym)
18751 mips_record_label (sym);
18752 if (mips_assembling_insn && HAVE_CODE_COMPRESSION)
18753 mips_compressed_mark_label (sym);
18756 /* Some special processing for a MIPS ELF file. */
18759 mips_elf_final_processing (void)
18761 /* Write out the register information. */
18762 if (mips_abi != N64_ABI)
18766 s.ri_gprmask = mips_gprmask;
18767 s.ri_cprmask[0] = mips_cprmask[0];
18768 s.ri_cprmask[1] = mips_cprmask[1];
18769 s.ri_cprmask[2] = mips_cprmask[2];
18770 s.ri_cprmask[3] = mips_cprmask[3];
18771 /* The gp_value field is set by the MIPS ELF backend. */
18773 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
18774 ((Elf32_External_RegInfo *)
18775 mips_regmask_frag));
18779 Elf64_Internal_RegInfo s;
18781 s.ri_gprmask = mips_gprmask;
18783 s.ri_cprmask[0] = mips_cprmask[0];
18784 s.ri_cprmask[1] = mips_cprmask[1];
18785 s.ri_cprmask[2] = mips_cprmask[2];
18786 s.ri_cprmask[3] = mips_cprmask[3];
18787 /* The gp_value field is set by the MIPS ELF backend. */
18789 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
18790 ((Elf64_External_RegInfo *)
18791 mips_regmask_frag));
18794 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
18795 sort of BFD interface for this. */
18796 if (mips_any_noreorder)
18797 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
18798 if (mips_pic != NO_PIC)
18800 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
18801 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18804 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
18806 /* Set MIPS ELF flags for ASEs. Note that not all ASEs have flags
18807 defined at present; this might need to change in future. */
18808 if (file_ase_mips16)
18809 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
18810 if (file_ase_micromips)
18811 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MICROMIPS;
18812 if (file_ase & ASE_MDMX)
18813 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
18815 /* Set the MIPS ELF ABI flags. */
18816 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
18817 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
18818 else if (mips_abi == O64_ABI)
18819 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
18820 else if (mips_abi == EABI_ABI)
18822 if (!file_mips_gp32)
18823 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
18825 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
18827 else if (mips_abi == N32_ABI)
18828 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
18830 /* Nothing to do for N64_ABI. */
18832 if (mips_32bitmode)
18833 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
18835 #if 0 /* XXX FIXME */
18836 /* 32 bit code with 64 bit FP registers. */
18837 if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
18838 elf_elfheader (stdoutput)->e_flags |= ???;
18842 typedef struct proc {
18844 symbolS *func_end_sym;
18845 unsigned long reg_mask;
18846 unsigned long reg_offset;
18847 unsigned long fpreg_mask;
18848 unsigned long fpreg_offset;
18849 unsigned long frame_offset;
18850 unsigned long frame_reg;
18851 unsigned long pc_reg;
18854 static procS cur_proc;
18855 static procS *cur_proc_ptr;
18856 static int numprocs;
18858 /* Implement NOP_OPCODE. We encode a MIPS16 nop as "1", a microMIPS nop
18859 as "2", and a normal nop as "0". */
18861 #define NOP_OPCODE_MIPS 0
18862 #define NOP_OPCODE_MIPS16 1
18863 #define NOP_OPCODE_MICROMIPS 2
18866 mips_nop_opcode (void)
18868 if (seg_info (now_seg)->tc_segment_info_data.micromips)
18869 return NOP_OPCODE_MICROMIPS;
18870 else if (seg_info (now_seg)->tc_segment_info_data.mips16)
18871 return NOP_OPCODE_MIPS16;
18873 return NOP_OPCODE_MIPS;
18876 /* Fill in an rs_align_code fragment. Unlike elsewhere we want to use
18877 32-bit microMIPS NOPs here (if applicable). */
18880 mips_handle_align (fragS *fragp)
18884 int bytes, size, excess;
18887 if (fragp->fr_type != rs_align_code)
18890 p = fragp->fr_literal + fragp->fr_fix;
18892 switch (nop_opcode)
18894 case NOP_OPCODE_MICROMIPS:
18895 opcode = micromips_nop32_insn.insn_opcode;
18898 case NOP_OPCODE_MIPS16:
18899 opcode = mips16_nop_insn.insn_opcode;
18902 case NOP_OPCODE_MIPS:
18904 opcode = nop_insn.insn_opcode;
18909 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
18910 excess = bytes % size;
18912 /* Handle the leading part if we're not inserting a whole number of
18913 instructions, and make it the end of the fixed part of the frag.
18914 Try to fit in a short microMIPS NOP if applicable and possible,
18915 and use zeroes otherwise. */
18916 gas_assert (excess < 4);
18917 fragp->fr_fix += excess;
18922 /* Fall through. */
18924 if (nop_opcode == NOP_OPCODE_MICROMIPS && !mips_opts.insn32)
18926 p = write_compressed_insn (p, micromips_nop16_insn.insn_opcode, 2);
18930 /* Fall through. */
18933 /* Fall through. */
18938 md_number_to_chars (p, opcode, size);
18939 fragp->fr_var = size;
18943 md_obj_begin (void)
18950 /* Check for premature end, nesting errors, etc. */
18952 as_warn (_("missing .end at end of assembly"));
18961 if (*input_line_pointer == '-')
18963 ++input_line_pointer;
18966 if (!ISDIGIT (*input_line_pointer))
18967 as_bad (_("expected simple number"));
18968 if (input_line_pointer[0] == '0')
18970 if (input_line_pointer[1] == 'x')
18972 input_line_pointer += 2;
18973 while (ISXDIGIT (*input_line_pointer))
18976 val |= hex_value (*input_line_pointer++);
18978 return negative ? -val : val;
18982 ++input_line_pointer;
18983 while (ISDIGIT (*input_line_pointer))
18986 val |= *input_line_pointer++ - '0';
18988 return negative ? -val : val;
18991 if (!ISDIGIT (*input_line_pointer))
18993 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
18994 *input_line_pointer, *input_line_pointer);
18995 as_warn (_("invalid number"));
18998 while (ISDIGIT (*input_line_pointer))
19001 val += *input_line_pointer++ - '0';
19003 return negative ? -val : val;
19006 /* The .file directive; just like the usual .file directive, but there
19007 is an initial number which is the ECOFF file index. In the non-ECOFF
19008 case .file implies DWARF-2. */
19011 s_mips_file (int x ATTRIBUTE_UNUSED)
19013 static int first_file_directive = 0;
19015 if (ECOFF_DEBUGGING)
19024 filename = dwarf2_directive_file (0);
19026 /* Versions of GCC up to 3.1 start files with a ".file"
19027 directive even for stabs output. Make sure that this
19028 ".file" is handled. Note that you need a version of GCC
19029 after 3.1 in order to support DWARF-2 on MIPS. */
19030 if (filename != NULL && ! first_file_directive)
19032 (void) new_logical_line (filename, -1);
19033 s_app_file_string (filename, 0);
19035 first_file_directive = 1;
19039 /* The .loc directive, implying DWARF-2. */
19042 s_mips_loc (int x ATTRIBUTE_UNUSED)
19044 if (!ECOFF_DEBUGGING)
19045 dwarf2_directive_loc (0);
19048 /* The .end directive. */
19051 s_mips_end (int x ATTRIBUTE_UNUSED)
19055 /* Following functions need their own .frame and .cprestore directives. */
19056 mips_frame_reg_valid = 0;
19057 mips_cprestore_valid = 0;
19059 if (!is_end_of_line[(unsigned char) *input_line_pointer])
19062 demand_empty_rest_of_line ();
19067 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
19068 as_warn (_(".end not in text section"));
19072 as_warn (_(".end directive without a preceding .ent directive."));
19073 demand_empty_rest_of_line ();
19079 gas_assert (S_GET_NAME (p));
19080 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
19081 as_warn (_(".end symbol does not match .ent symbol."));
19083 if (debug_type == DEBUG_STABS)
19084 stabs_generate_asm_endfunc (S_GET_NAME (p),
19088 as_warn (_(".end directive missing or unknown symbol"));
19090 /* Create an expression to calculate the size of the function. */
19091 if (p && cur_proc_ptr)
19093 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
19094 expressionS *exp = xmalloc (sizeof (expressionS));
19097 exp->X_op = O_subtract;
19098 exp->X_add_symbol = symbol_temp_new_now ();
19099 exp->X_op_symbol = p;
19100 exp->X_add_number = 0;
19102 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
19105 /* Generate a .pdr section. */
19106 if (!ECOFF_DEBUGGING && mips_flag_pdr)
19108 segT saved_seg = now_seg;
19109 subsegT saved_subseg = now_subseg;
19113 #ifdef md_flush_pending_output
19114 md_flush_pending_output ();
19117 gas_assert (pdr_seg);
19118 subseg_set (pdr_seg, 0);
19120 /* Write the symbol. */
19121 exp.X_op = O_symbol;
19122 exp.X_add_symbol = p;
19123 exp.X_add_number = 0;
19124 emit_expr (&exp, 4);
19126 fragp = frag_more (7 * 4);
19128 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
19129 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
19130 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
19131 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
19132 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
19133 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
19134 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
19136 subseg_set (saved_seg, saved_subseg);
19139 cur_proc_ptr = NULL;
19142 /* The .aent and .ent directives. */
19145 s_mips_ent (int aent)
19149 symbolP = get_symbol ();
19150 if (*input_line_pointer == ',')
19151 ++input_line_pointer;
19152 SKIP_WHITESPACE ();
19153 if (ISDIGIT (*input_line_pointer)
19154 || *input_line_pointer == '-')
19157 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
19158 as_warn (_(".ent or .aent not in text section."));
19160 if (!aent && cur_proc_ptr)
19161 as_warn (_("missing .end"));
19165 /* This function needs its own .frame and .cprestore directives. */
19166 mips_frame_reg_valid = 0;
19167 mips_cprestore_valid = 0;
19169 cur_proc_ptr = &cur_proc;
19170 memset (cur_proc_ptr, '\0', sizeof (procS));
19172 cur_proc_ptr->func_sym = symbolP;
19176 if (debug_type == DEBUG_STABS)
19177 stabs_generate_asm_func (S_GET_NAME (symbolP),
19178 S_GET_NAME (symbolP));
19181 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
19183 demand_empty_rest_of_line ();
19186 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
19187 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
19188 s_mips_frame is used so that we can set the PDR information correctly.
19189 We can't use the ecoff routines because they make reference to the ecoff
19190 symbol table (in the mdebug section). */
19193 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
19195 if (ECOFF_DEBUGGING)
19201 if (cur_proc_ptr == (procS *) NULL)
19203 as_warn (_(".frame outside of .ent"));
19204 demand_empty_rest_of_line ();
19208 cur_proc_ptr->frame_reg = tc_get_register (1);
19210 SKIP_WHITESPACE ();
19211 if (*input_line_pointer++ != ','
19212 || get_absolute_expression_and_terminator (&val) != ',')
19214 as_warn (_("Bad .frame directive"));
19215 --input_line_pointer;
19216 demand_empty_rest_of_line ();
19220 cur_proc_ptr->frame_offset = val;
19221 cur_proc_ptr->pc_reg = tc_get_register (0);
19223 demand_empty_rest_of_line ();
19227 /* The .fmask and .mask directives. If the mdebug section is present
19228 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
19229 embedded targets, s_mips_mask is used so that we can set the PDR
19230 information correctly. We can't use the ecoff routines because they
19231 make reference to the ecoff symbol table (in the mdebug section). */
19234 s_mips_mask (int reg_type)
19236 if (ECOFF_DEBUGGING)
19237 s_ignore (reg_type);
19242 if (cur_proc_ptr == (procS *) NULL)
19244 as_warn (_(".mask/.fmask outside of .ent"));
19245 demand_empty_rest_of_line ();
19249 if (get_absolute_expression_and_terminator (&mask) != ',')
19251 as_warn (_("Bad .mask/.fmask directive"));
19252 --input_line_pointer;
19253 demand_empty_rest_of_line ();
19257 off = get_absolute_expression ();
19259 if (reg_type == 'F')
19261 cur_proc_ptr->fpreg_mask = mask;
19262 cur_proc_ptr->fpreg_offset = off;
19266 cur_proc_ptr->reg_mask = mask;
19267 cur_proc_ptr->reg_offset = off;
19270 demand_empty_rest_of_line ();
19274 /* A table describing all the processors gas knows about. Names are
19275 matched in the order listed.
19277 To ease comparison, please keep this table in the same order as
19278 gcc's mips_cpu_info_table[]. */
19279 static const struct mips_cpu_info mips_cpu_info_table[] =
19281 /* Entries for generic ISAs */
19282 { "mips1", MIPS_CPU_IS_ISA, 0, ISA_MIPS1, CPU_R3000 },
19283 { "mips2", MIPS_CPU_IS_ISA, 0, ISA_MIPS2, CPU_R6000 },
19284 { "mips3", MIPS_CPU_IS_ISA, 0, ISA_MIPS3, CPU_R4000 },
19285 { "mips4", MIPS_CPU_IS_ISA, 0, ISA_MIPS4, CPU_R8000 },
19286 { "mips5", MIPS_CPU_IS_ISA, 0, ISA_MIPS5, CPU_MIPS5 },
19287 { "mips32", MIPS_CPU_IS_ISA, 0, ISA_MIPS32, CPU_MIPS32 },
19288 { "mips32r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19289 { "mips64", MIPS_CPU_IS_ISA, 0, ISA_MIPS64, CPU_MIPS64 },
19290 { "mips64r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS64R2, CPU_MIPS64R2 },
19293 { "r3000", 0, 0, ISA_MIPS1, CPU_R3000 },
19294 { "r2000", 0, 0, ISA_MIPS1, CPU_R3000 },
19295 { "r3900", 0, 0, ISA_MIPS1, CPU_R3900 },
19298 { "r6000", 0, 0, ISA_MIPS2, CPU_R6000 },
19301 { "r4000", 0, 0, ISA_MIPS3, CPU_R4000 },
19302 { "r4010", 0, 0, ISA_MIPS2, CPU_R4010 },
19303 { "vr4100", 0, 0, ISA_MIPS3, CPU_VR4100 },
19304 { "vr4111", 0, 0, ISA_MIPS3, CPU_R4111 },
19305 { "vr4120", 0, 0, ISA_MIPS3, CPU_VR4120 },
19306 { "vr4130", 0, 0, ISA_MIPS3, CPU_VR4120 },
19307 { "vr4181", 0, 0, ISA_MIPS3, CPU_R4111 },
19308 { "vr4300", 0, 0, ISA_MIPS3, CPU_R4300 },
19309 { "r4400", 0, 0, ISA_MIPS3, CPU_R4400 },
19310 { "r4600", 0, 0, ISA_MIPS3, CPU_R4600 },
19311 { "orion", 0, 0, ISA_MIPS3, CPU_R4600 },
19312 { "r4650", 0, 0, ISA_MIPS3, CPU_R4650 },
19313 { "r5900", 0, 0, ISA_MIPS3, CPU_R5900 },
19314 /* ST Microelectronics Loongson 2E and 2F cores */
19315 { "loongson2e", 0, 0, ISA_MIPS3, CPU_LOONGSON_2E },
19316 { "loongson2f", 0, 0, ISA_MIPS3, CPU_LOONGSON_2F },
19319 { "r8000", 0, 0, ISA_MIPS4, CPU_R8000 },
19320 { "r10000", 0, 0, ISA_MIPS4, CPU_R10000 },
19321 { "r12000", 0, 0, ISA_MIPS4, CPU_R12000 },
19322 { "r14000", 0, 0, ISA_MIPS4, CPU_R14000 },
19323 { "r16000", 0, 0, ISA_MIPS4, CPU_R16000 },
19324 { "vr5000", 0, 0, ISA_MIPS4, CPU_R5000 },
19325 { "vr5400", 0, 0, ISA_MIPS4, CPU_VR5400 },
19326 { "vr5500", 0, 0, ISA_MIPS4, CPU_VR5500 },
19327 { "rm5200", 0, 0, ISA_MIPS4, CPU_R5000 },
19328 { "rm5230", 0, 0, ISA_MIPS4, CPU_R5000 },
19329 { "rm5231", 0, 0, ISA_MIPS4, CPU_R5000 },
19330 { "rm5261", 0, 0, ISA_MIPS4, CPU_R5000 },
19331 { "rm5721", 0, 0, ISA_MIPS4, CPU_R5000 },
19332 { "rm7000", 0, 0, ISA_MIPS4, CPU_RM7000 },
19333 { "rm9000", 0, 0, ISA_MIPS4, CPU_RM9000 },
19336 { "4kc", 0, 0, ISA_MIPS32, CPU_MIPS32 },
19337 { "4km", 0, 0, ISA_MIPS32, CPU_MIPS32 },
19338 { "4kp", 0, 0, ISA_MIPS32, CPU_MIPS32 },
19339 { "4ksc", 0, ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
19341 /* MIPS 32 Release 2 */
19342 { "4kec", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19343 { "4kem", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19344 { "4kep", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19345 { "4ksd", 0, ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
19346 { "m4k", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19347 { "m4kp", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19348 { "m14k", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
19349 { "m14kc", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
19350 { "m14ke", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
19351 ISA_MIPS32R2, CPU_MIPS32R2 },
19352 { "m14kec", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
19353 ISA_MIPS32R2, CPU_MIPS32R2 },
19354 { "24kc", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19355 { "24kf2_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19356 { "24kf", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19357 { "24kf1_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19358 /* Deprecated forms of the above. */
19359 { "24kfx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19360 { "24kx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
19361 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
19362 { "24kec", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19363 { "24kef2_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19364 { "24kef", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19365 { "24kef1_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19366 /* Deprecated forms of the above. */
19367 { "24kefx", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19368 { "24kex", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
19369 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
19370 { "34kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19371 { "34kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19372 { "34kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19373 { "34kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19374 /* Deprecated forms of the above. */
19375 { "34kfx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19376 { "34kx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19377 /* 34Kn is a 34kc without DSP. */
19378 { "34kn", 0, ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19379 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
19380 { "74kc", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19381 { "74kf2_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19382 { "74kf", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19383 { "74kf1_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19384 { "74kf3_2", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19385 /* Deprecated forms of the above. */
19386 { "74kfx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19387 { "74kx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
19388 /* 1004K cores are multiprocessor versions of the 34K. */
19389 { "1004kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19390 { "1004kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19391 { "1004kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19392 { "1004kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
19395 { "5kc", 0, 0, ISA_MIPS64, CPU_MIPS64 },
19396 { "5kf", 0, 0, ISA_MIPS64, CPU_MIPS64 },
19397 { "20kc", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
19398 { "25kf", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
19400 /* Broadcom SB-1 CPU core */
19401 { "sb1", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
19402 /* Broadcom SB-1A CPU core */
19403 { "sb1a", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
19405 { "loongson3a", 0, 0, ISA_MIPS64, CPU_LOONGSON_3A },
19407 /* MIPS 64 Release 2 */
19409 /* Cavium Networks Octeon CPU core */
19410 { "octeon", 0, 0, ISA_MIPS64R2, CPU_OCTEON },
19411 { "octeon+", 0, 0, ISA_MIPS64R2, CPU_OCTEONP },
19412 { "octeon2", 0, 0, ISA_MIPS64R2, CPU_OCTEON2 },
19415 { "xlr", 0, 0, ISA_MIPS64, CPU_XLR },
19418 XLP is mostly like XLR, with the prominent exception that it is
19419 MIPS64R2 rather than MIPS64. */
19420 { "xlp", 0, 0, ISA_MIPS64R2, CPU_XLR },
19423 { NULL, 0, 0, 0, 0 }
19427 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
19428 with a final "000" replaced by "k". Ignore case.
19430 Note: this function is shared between GCC and GAS. */
19433 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
19435 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
19436 given++, canonical++;
19438 return ((*given == 0 && *canonical == 0)
19439 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
19443 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
19444 CPU name. We've traditionally allowed a lot of variation here.
19446 Note: this function is shared between GCC and GAS. */
19449 mips_matching_cpu_name_p (const char *canonical, const char *given)
19451 /* First see if the name matches exactly, or with a final "000"
19452 turned into "k". */
19453 if (mips_strict_matching_cpu_name_p (canonical, given))
19456 /* If not, try comparing based on numerical designation alone.
19457 See if GIVEN is an unadorned number, or 'r' followed by a number. */
19458 if (TOLOWER (*given) == 'r')
19460 if (!ISDIGIT (*given))
19463 /* Skip over some well-known prefixes in the canonical name,
19464 hoping to find a number there too. */
19465 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
19467 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
19469 else if (TOLOWER (canonical[0]) == 'r')
19472 return mips_strict_matching_cpu_name_p (canonical, given);
19476 /* Parse an option that takes the name of a processor as its argument.
19477 OPTION is the name of the option and CPU_STRING is the argument.
19478 Return the corresponding processor enumeration if the CPU_STRING is
19479 recognized, otherwise report an error and return null.
19481 A similar function exists in GCC. */
19483 static const struct mips_cpu_info *
19484 mips_parse_cpu (const char *option, const char *cpu_string)
19486 const struct mips_cpu_info *p;
19488 /* 'from-abi' selects the most compatible architecture for the given
19489 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
19490 EABIs, we have to decide whether we're using the 32-bit or 64-bit
19491 version. Look first at the -mgp options, if given, otherwise base
19492 the choice on MIPS_DEFAULT_64BIT.
19494 Treat NO_ABI like the EABIs. One reason to do this is that the
19495 plain 'mips' and 'mips64' configs have 'from-abi' as their default
19496 architecture. This code picks MIPS I for 'mips' and MIPS III for
19497 'mips64', just as we did in the days before 'from-abi'. */
19498 if (strcasecmp (cpu_string, "from-abi") == 0)
19500 if (ABI_NEEDS_32BIT_REGS (mips_abi))
19501 return mips_cpu_info_from_isa (ISA_MIPS1);
19503 if (ABI_NEEDS_64BIT_REGS (mips_abi))
19504 return mips_cpu_info_from_isa (ISA_MIPS3);
19506 if (file_mips_gp32 >= 0)
19507 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
19509 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
19514 /* 'default' has traditionally been a no-op. Probably not very useful. */
19515 if (strcasecmp (cpu_string, "default") == 0)
19518 for (p = mips_cpu_info_table; p->name != 0; p++)
19519 if (mips_matching_cpu_name_p (p->name, cpu_string))
19522 as_bad (_("Bad value (%s) for %s"), cpu_string, option);
19526 /* Return the canonical processor information for ISA (a member of the
19527 ISA_MIPS* enumeration). */
19529 static const struct mips_cpu_info *
19530 mips_cpu_info_from_isa (int isa)
19534 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19535 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
19536 && isa == mips_cpu_info_table[i].isa)
19537 return (&mips_cpu_info_table[i]);
19542 static const struct mips_cpu_info *
19543 mips_cpu_info_from_arch (int arch)
19547 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19548 if (arch == mips_cpu_info_table[i].cpu)
19549 return (&mips_cpu_info_table[i]);
19555 show (FILE *stream, const char *string, int *col_p, int *first_p)
19559 fprintf (stream, "%24s", "");
19564 fprintf (stream, ", ");
19568 if (*col_p + strlen (string) > 72)
19570 fprintf (stream, "\n%24s", "");
19574 fprintf (stream, "%s", string);
19575 *col_p += strlen (string);
19581 md_show_usage (FILE *stream)
19586 fprintf (stream, _("\
19588 -EB generate big endian output\n\
19589 -EL generate little endian output\n\
19590 -g, -g2 do not remove unneeded NOPs or swap branches\n\
19591 -G NUM allow referencing objects up to NUM bytes\n\
19592 implicitly with the gp register [default 8]\n"));
19593 fprintf (stream, _("\
19594 -mips1 generate MIPS ISA I instructions\n\
19595 -mips2 generate MIPS ISA II instructions\n\
19596 -mips3 generate MIPS ISA III instructions\n\
19597 -mips4 generate MIPS ISA IV instructions\n\
19598 -mips5 generate MIPS ISA V instructions\n\
19599 -mips32 generate MIPS32 ISA instructions\n\
19600 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
19601 -mips64 generate MIPS64 ISA instructions\n\
19602 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
19603 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
19607 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
19608 show (stream, mips_cpu_info_table[i].name, &column, &first);
19609 show (stream, "from-abi", &column, &first);
19610 fputc ('\n', stream);
19612 fprintf (stream, _("\
19613 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
19614 -no-mCPU don't generate code specific to CPU.\n\
19615 For -mCPU and -no-mCPU, CPU must be one of:\n"));
19619 show (stream, "3900", &column, &first);
19620 show (stream, "4010", &column, &first);
19621 show (stream, "4100", &column, &first);
19622 show (stream, "4650", &column, &first);
19623 fputc ('\n', stream);
19625 fprintf (stream, _("\
19626 -mips16 generate mips16 instructions\n\
19627 -no-mips16 do not generate mips16 instructions\n"));
19628 fprintf (stream, _("\
19629 -mmicromips generate microMIPS instructions\n\
19630 -mno-micromips do not generate microMIPS instructions\n"));
19631 fprintf (stream, _("\
19632 -msmartmips generate smartmips instructions\n\
19633 -mno-smartmips do not generate smartmips instructions\n"));
19634 fprintf (stream, _("\
19635 -mdsp generate DSP instructions\n\
19636 -mno-dsp do not generate DSP instructions\n"));
19637 fprintf (stream, _("\
19638 -mdspr2 generate DSP R2 instructions\n\
19639 -mno-dspr2 do not generate DSP R2 instructions\n"));
19640 fprintf (stream, _("\
19641 -mmt generate MT instructions\n\
19642 -mno-mt do not generate MT instructions\n"));
19643 fprintf (stream, _("\
19644 -mmcu generate MCU instructions\n\
19645 -mno-mcu do not generate MCU instructions\n"));
19646 fprintf (stream, _("\
19647 -mvirt generate Virtualization instructions\n\
19648 -mno-virt do not generate Virtualization instructions\n"));
19649 fprintf (stream, _("\
19650 -minsn32 only generate 32-bit microMIPS instructions\n\
19651 -mno-insn32 generate all microMIPS instructions\n"));
19652 fprintf (stream, _("\
19653 -mfix-loongson2f-jump work around Loongson2F JUMP instructions\n\
19654 -mfix-loongson2f-nop work around Loongson2F NOP errata\n\
19655 -mfix-vr4120 work around certain VR4120 errata\n\
19656 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
19657 -mfix-24k insert a nop after ERET and DERET instructions\n\
19658 -mfix-cn63xxp1 work around CN63XXP1 PREF errata\n\
19659 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
19660 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
19661 -msym32 assume all symbols have 32-bit values\n\
19662 -O0 remove unneeded NOPs, do not swap branches\n\
19663 -O remove unneeded NOPs and swap branches\n\
19664 --trap, --no-break trap exception on div by 0 and mult overflow\n\
19665 --break, --no-trap break exception on div by 0 and mult overflow\n"));
19666 fprintf (stream, _("\
19667 -mhard-float allow floating-point instructions\n\
19668 -msoft-float do not allow floating-point instructions\n\
19669 -msingle-float only allow 32-bit floating-point operations\n\
19670 -mdouble-float allow 32-bit and 64-bit floating-point operations\n\
19671 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
19672 --[no-]relax-branch [dis]allow out-of-range branches to be relaxed\n"
19674 fprintf (stream, _("\
19675 -KPIC, -call_shared generate SVR4 position independent code\n\
19676 -call_nonpic generate non-PIC code that can operate with DSOs\n\
19677 -mvxworks-pic generate VxWorks position independent code\n\
19678 -non_shared do not generate code that can operate with DSOs\n\
19679 -xgot assume a 32 bit GOT\n\
19680 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
19681 -mshared, -mno-shared disable/enable .cpload optimization for\n\
19682 position dependent (non shared) code\n\
19683 -mabi=ABI create ABI conformant object file for:\n"));
19687 show (stream, "32", &column, &first);
19688 show (stream, "o64", &column, &first);
19689 show (stream, "n32", &column, &first);
19690 show (stream, "64", &column, &first);
19691 show (stream, "eabi", &column, &first);
19693 fputc ('\n', stream);
19695 fprintf (stream, _("\
19696 -32 create o32 ABI object file (default)\n\
19697 -n32 create n32 ABI object file\n\
19698 -64 create 64 ABI object file\n"));
19703 mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
19705 if (HAVE_64BIT_SYMBOLS)
19706 return dwarf2_format_64bit_irix;
19708 return dwarf2_format_32bit;
19713 mips_dwarf2_addr_size (void)
19715 if (HAVE_64BIT_OBJECTS)
19721 /* Standard calling conventions leave the CFA at SP on entry. */
19723 mips_cfi_frame_initial_instructions (void)
19725 cfi_add_CFA_def_cfa_register (SP);
19729 tc_mips_regname_to_dw2regnum (char *regname)
19731 unsigned int regnum = -1;
19734 if (reg_lookup (®name, RTYPE_GP | RTYPE_NUM, ®))