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 Free Software Foundation, Inc.
4 Contributed by the OSF and Ralph Campbell.
5 Written by Keith Knowles and Ralph Campbell, working independently.
6 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
9 This file is part of GAS.
11 GAS is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3, or (at your option)
16 GAS is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with GAS; see the file COPYING. If not, write to the Free
23 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
29 #include "safe-ctype.h"
31 #include "opcode/mips.h"
33 #include "dwarf2dbg.h"
34 #include "dw2gencfi.h"
37 #define DBG(x) printf x
43 /* Clean up namespace so we can include obj-elf.h too. */
44 static int mips_output_flavor (void);
45 static int mips_output_flavor (void) { return OUTPUT_FLAVOR
; }
46 #undef OBJ_PROCESS_STAB
53 #undef obj_frob_file_after_relocs
54 #undef obj_frob_symbol
56 #undef obj_sec_sym_ok_for_reloc
57 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
60 /* Fix any of them that we actually care about. */
62 #define OUTPUT_FLAVOR mips_output_flavor()
69 #ifndef ECOFF_DEBUGGING
70 #define NO_ECOFF_DEBUGGING
71 #define ECOFF_DEBUGGING 0
74 int mips_flag_mdebug
= -1;
76 /* Control generation of .pdr sections. Off by default on IRIX: the native
77 linker doesn't know about and discards them, but relocations against them
78 remain, leading to rld crashes. */
80 int mips_flag_pdr
= FALSE
;
82 int mips_flag_pdr
= TRUE
;
87 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
88 static char *mips_regmask_frag
;
94 #define PIC_CALL_REG 25
102 #define ILLEGAL_REG (32)
104 #define AT mips_opts.at
106 /* Allow override of standard little-endian ECOFF format. */
108 #ifndef ECOFF_LITTLE_FORMAT
109 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
112 extern int target_big_endian
;
114 /* The name of the readonly data section. */
115 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
117 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
119 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
123 /* Information about an instruction, including its format, operands
127 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
128 const struct mips_opcode
*insn_mo
;
130 /* True if this is a mips16 instruction and if we want the extended
132 bfd_boolean use_extend
;
134 /* The 16-bit extension instruction to use when USE_EXTEND is true. */
135 unsigned short extend
;
137 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
138 a copy of INSN_MO->match with the operands filled in. */
139 unsigned long insn_opcode
;
141 /* The frag that contains the instruction. */
144 /* The offset into FRAG of the first instruction byte. */
147 /* The relocs associated with the instruction, if any. */
150 /* True if this entry cannot be moved from its current position. */
151 unsigned int fixed_p
: 1;
153 /* True if this instruction occurred in a .set noreorder block. */
154 unsigned int noreorder_p
: 1;
156 /* True for mips16 instructions that jump to an absolute address. */
157 unsigned int mips16_absolute_jump_p
: 1;
160 /* The ABI to use. */
171 /* MIPS ABI we are using for this output file. */
172 static enum mips_abi_level mips_abi
= NO_ABI
;
174 /* Whether or not we have code that can call pic code. */
175 int mips_abicalls
= FALSE
;
177 /* Whether or not we have code which can be put into a shared
179 static bfd_boolean mips_in_shared
= TRUE
;
181 /* This is the set of options which may be modified by the .set
182 pseudo-op. We use a struct so that .set push and .set pop are more
185 struct mips_set_options
187 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
188 if it has not been initialized. Changed by `.set mipsN', and the
189 -mipsN command line option, and the default CPU. */
191 /* Enabled Application Specific Extensions (ASEs). These are set to -1
192 if they have not been initialized. Changed by `.set <asename>', by
193 command line options, and based on the default architecture. */
200 /* Whether we are assembling for the mips16 processor. 0 if we are
201 not, 1 if we are, and -1 if the value has not been initialized.
202 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
203 -nomips16 command line options, and the default CPU. */
205 /* Non-zero if we should not reorder instructions. Changed by `.set
206 reorder' and `.set noreorder'. */
208 /* Non-zero if we should not permit the register designated "assembler
209 temporary" to be used in instructions. The value is the register
210 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
211 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
213 /* Non-zero if we should warn when a macro instruction expands into
214 more than one machine instruction. Changed by `.set nomacro' and
216 int warn_about_macros
;
217 /* Non-zero if we should not move instructions. Changed by `.set
218 move', `.set volatile', `.set nomove', and `.set novolatile'. */
220 /* Non-zero if we should not optimize branches by moving the target
221 of the branch into the delay slot. Actually, we don't perform
222 this optimization anyhow. Changed by `.set bopt' and `.set
225 /* Non-zero if we should not autoextend mips16 instructions.
226 Changed by `.set autoextend' and `.set noautoextend'. */
228 /* Restrict general purpose registers and floating point registers
229 to 32 bit. This is initially determined when -mgp32 or -mfp32
230 is passed but can changed if the assembler code uses .set mipsN. */
233 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
234 command line option, and the default CPU. */
236 /* True if ".set sym32" is in effect. */
238 /* True if floating-point operations are not allowed. Changed by .set
239 softfloat or .set hardfloat, by command line options -msoft-float or
240 -mhard-float. The default is false. */
241 bfd_boolean soft_float
;
243 /* True if only single-precision floating-point operations are allowed.
244 Changed by .set singlefloat or .set doublefloat, command-line options
245 -msingle-float or -mdouble-float. The default is false. */
246 bfd_boolean single_float
;
249 /* This is the struct we use to hold the current set of options. Note
250 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
251 -1 to indicate that they have not been initialized. */
253 /* True if -mgp32 was passed. */
254 static int file_mips_gp32
= -1;
256 /* True if -mfp32 was passed. */
257 static int file_mips_fp32
= -1;
259 /* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
260 static int file_mips_soft_float
= 0;
262 /* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
263 static int file_mips_single_float
= 0;
265 static struct mips_set_options mips_opts
=
267 /* isa */ ISA_UNKNOWN
, /* ase_mips3d */ -1, /* ase_mdmx */ -1,
268 /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1,
269 /* mips16 */ -1, /* noreorder */ 0, /* at */ ATREG
,
270 /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
271 /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN
,
272 /* sym32 */ FALSE
, /* soft_float */ FALSE
, /* single_float */ FALSE
275 /* These variables are filled in with the masks of registers used.
276 The object format code reads them and puts them in the appropriate
278 unsigned long mips_gprmask
;
279 unsigned long mips_cprmask
[4];
281 /* MIPS ISA we are using for this output file. */
282 static int file_mips_isa
= ISA_UNKNOWN
;
284 /* True if -mips16 was passed or implied by arguments passed on the
285 command line (e.g., by -march). */
286 static int file_ase_mips16
;
288 #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \
289 || mips_opts.isa == ISA_MIPS32R2 \
290 || mips_opts.isa == ISA_MIPS64 \
291 || mips_opts.isa == ISA_MIPS64R2)
293 /* True if -mips3d was passed or implied by arguments passed on the
294 command line (e.g., by -march). */
295 static int file_ase_mips3d
;
297 /* True if -mdmx was passed or implied by arguments passed on the
298 command line (e.g., by -march). */
299 static int file_ase_mdmx
;
301 /* True if -msmartmips was passed or implied by arguments passed on the
302 command line (e.g., by -march). */
303 static int file_ase_smartmips
;
305 #define ISA_SUPPORTS_SMARTMIPS (mips_opts.isa == ISA_MIPS32 \
306 || mips_opts.isa == ISA_MIPS32R2)
308 /* True if -mdsp was passed or implied by arguments passed on the
309 command line (e.g., by -march). */
310 static int file_ase_dsp
;
312 #define ISA_SUPPORTS_DSP_ASE (mips_opts.isa == ISA_MIPS32R2 \
313 || mips_opts.isa == ISA_MIPS64R2)
315 #define ISA_SUPPORTS_DSP64_ASE (mips_opts.isa == ISA_MIPS64R2)
317 /* True if -mdspr2 was passed or implied by arguments passed on the
318 command line (e.g., by -march). */
319 static int file_ase_dspr2
;
321 #define ISA_SUPPORTS_DSPR2_ASE (mips_opts.isa == ISA_MIPS32R2 \
322 || mips_opts.isa == ISA_MIPS64R2)
324 /* True if -mmt was passed or implied by arguments passed on the
325 command line (e.g., by -march). */
326 static int file_ase_mt
;
328 #define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2 \
329 || mips_opts.isa == ISA_MIPS64R2)
331 /* The argument of the -march= flag. The architecture we are assembling. */
332 static int file_mips_arch
= CPU_UNKNOWN
;
333 static const char *mips_arch_string
;
335 /* The argument of the -mtune= flag. The architecture for which we
337 static int mips_tune
= CPU_UNKNOWN
;
338 static const char *mips_tune_string
;
340 /* True when generating 32-bit code for a 64-bit processor. */
341 static int mips_32bitmode
= 0;
343 /* True if the given ABI requires 32-bit registers. */
344 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
346 /* Likewise 64-bit registers. */
347 #define ABI_NEEDS_64BIT_REGS(ABI) \
349 || (ABI) == N64_ABI \
352 /* Return true if ISA supports 64 bit wide gp registers. */
353 #define ISA_HAS_64BIT_REGS(ISA) \
354 ((ISA) == ISA_MIPS3 \
355 || (ISA) == ISA_MIPS4 \
356 || (ISA) == ISA_MIPS5 \
357 || (ISA) == ISA_MIPS64 \
358 || (ISA) == ISA_MIPS64R2)
360 /* Return true if ISA supports 64 bit wide float registers. */
361 #define ISA_HAS_64BIT_FPRS(ISA) \
362 ((ISA) == ISA_MIPS3 \
363 || (ISA) == ISA_MIPS4 \
364 || (ISA) == ISA_MIPS5 \
365 || (ISA) == ISA_MIPS32R2 \
366 || (ISA) == ISA_MIPS64 \
367 || (ISA) == ISA_MIPS64R2)
369 /* Return true if ISA supports 64-bit right rotate (dror et al.)
371 #define ISA_HAS_DROR(ISA) \
372 ((ISA) == ISA_MIPS64R2)
374 /* Return true if ISA supports 32-bit right rotate (ror et al.)
376 #define ISA_HAS_ROR(ISA) \
377 ((ISA) == ISA_MIPS32R2 \
378 || (ISA) == ISA_MIPS64R2 \
379 || mips_opts.ase_smartmips)
381 /* Return true if ISA supports single-precision floats in odd registers. */
382 #define ISA_HAS_ODD_SINGLE_FPR(ISA) \
383 ((ISA) == ISA_MIPS32 \
384 || (ISA) == ISA_MIPS32R2 \
385 || (ISA) == ISA_MIPS64 \
386 || (ISA) == ISA_MIPS64R2)
388 /* Return true if ISA supports move to/from high part of a 64-bit
389 floating-point register. */
390 #define ISA_HAS_MXHC1(ISA) \
391 ((ISA) == ISA_MIPS32R2 \
392 || (ISA) == ISA_MIPS64R2)
394 #define HAVE_32BIT_GPRS \
395 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
397 #define HAVE_32BIT_FPRS \
398 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
400 #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
401 #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
403 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
405 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
407 /* True if relocations are stored in-place. */
408 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
410 /* The ABI-derived address size. */
411 #define HAVE_64BIT_ADDRESSES \
412 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
413 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
415 /* The size of symbolic constants (i.e., expressions of the form
416 "SYMBOL" or "SYMBOL + OFFSET"). */
417 #define HAVE_32BIT_SYMBOLS \
418 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
419 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
421 /* Addresses are loaded in different ways, depending on the address size
422 in use. The n32 ABI Documentation also mandates the use of additions
423 with overflow checking, but existing implementations don't follow it. */
424 #define ADDRESS_ADD_INSN \
425 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
427 #define ADDRESS_ADDI_INSN \
428 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
430 #define ADDRESS_LOAD_INSN \
431 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
433 #define ADDRESS_STORE_INSN \
434 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
436 /* Return true if the given CPU supports the MIPS16 ASE. */
437 #define CPU_HAS_MIPS16(cpu) \
438 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
439 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
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 has seq/sne and seqi/snei instructions. */
448 #define CPU_HAS_SEQ(CPU) ((CPU) == CPU_OCTEON)
450 /* True if CPU does not implement the all the coprocessor insns. For these
451 CPUs only those COP insns are accepted that are explicitly marked to be
452 available on the CPU. ISA membership for COP insns is ignored. */
453 #define NO_ISA_COP(CPU) ((CPU) == CPU_OCTEON)
455 /* True if mflo and mfhi can be immediately followed by instructions
456 which write to the HI and LO registers.
458 According to MIPS specifications, MIPS ISAs I, II, and III need
459 (at least) two instructions between the reads of HI/LO and
460 instructions which write them, and later ISAs do not. Contradicting
461 the MIPS specifications, some MIPS IV processor user manuals (e.g.
462 the UM for the NEC Vr5000) document needing the instructions between
463 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
464 MIPS64 and later ISAs to have the interlocks, plus any specific
465 earlier-ISA CPUs for which CPU documentation declares that the
466 instructions are really interlocked. */
467 #define hilo_interlocks \
468 (mips_opts.isa == ISA_MIPS32 \
469 || mips_opts.isa == ISA_MIPS32R2 \
470 || mips_opts.isa == ISA_MIPS64 \
471 || mips_opts.isa == ISA_MIPS64R2 \
472 || mips_opts.arch == CPU_R4010 \
473 || mips_opts.arch == CPU_R10000 \
474 || mips_opts.arch == CPU_R12000 \
475 || mips_opts.arch == CPU_RM7000 \
476 || mips_opts.arch == CPU_VR5500 \
479 /* Whether the processor uses hardware interlocks to protect reads
480 from the GPRs after they are loaded from memory, and thus does not
481 require nops to be inserted. This applies to instructions marked
482 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
484 #define gpr_interlocks \
485 (mips_opts.isa != ISA_MIPS1 \
486 || mips_opts.arch == CPU_R3900)
488 /* Whether the processor uses hardware interlocks to avoid delays
489 required by coprocessor instructions, and thus does not require
490 nops to be inserted. This applies to instructions marked
491 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
492 between instructions marked INSN_WRITE_COND_CODE and ones marked
493 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
494 levels I, II, and III. */
495 /* Itbl support may require additional care here. */
496 #define cop_interlocks \
497 ((mips_opts.isa != ISA_MIPS1 \
498 && mips_opts.isa != ISA_MIPS2 \
499 && mips_opts.isa != ISA_MIPS3) \
500 || mips_opts.arch == CPU_R4300 \
503 /* Whether the processor uses hardware interlocks to protect reads
504 from coprocessor registers after they are loaded from memory, and
505 thus does not require nops to be inserted. This applies to
506 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
507 requires at MIPS ISA level I. */
508 #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
510 /* Is this a mfhi or mflo instruction? */
511 #define MF_HILO_INSN(PINFO) \
512 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
514 /* Returns true for a (non floating-point) coprocessor instruction. Reading
515 or writing the condition code is only possible on the coprocessors and
516 these insns are not marked with INSN_COP. Thus for these insns use the
517 condition-code flags unless this is the floating-point coprocessor. */
518 #define COP_INSN(PINFO) \
519 (PINFO != INSN_MACRO \
520 && (((PINFO) & INSN_COP) \
521 || ((PINFO) & (INSN_READ_COND_CODE | INSN_WRITE_COND_CODE) \
522 && ((PINFO) & (FP_S | FP_D)) == 0)))
524 /* MIPS PIC level. */
526 enum mips_pic_level mips_pic
;
528 /* 1 if we should generate 32 bit offsets from the $gp register in
529 SVR4_PIC mode. Currently has no meaning in other modes. */
530 static int mips_big_got
= 0;
532 /* 1 if trap instructions should used for overflow rather than break
534 static int mips_trap
= 0;
536 /* 1 if double width floating point constants should not be constructed
537 by assembling two single width halves into two single width floating
538 point registers which just happen to alias the double width destination
539 register. On some architectures this aliasing can be disabled by a bit
540 in the status register, and the setting of this bit cannot be determined
541 automatically at assemble time. */
542 static int mips_disable_float_construction
;
544 /* Non-zero if any .set noreorder directives were used. */
546 static int mips_any_noreorder
;
548 /* Non-zero if nops should be inserted when the register referenced in
549 an mfhi/mflo instruction is read in the next two instructions. */
550 static int mips_7000_hilo_fix
;
552 /* The size of objects in the small data section. */
553 static unsigned int g_switch_value
= 8;
554 /* Whether the -G option was used. */
555 static int g_switch_seen
= 0;
560 /* If we can determine in advance that GP optimization won't be
561 possible, we can skip the relaxation stuff that tries to produce
562 GP-relative references. This makes delay slot optimization work
565 This function can only provide a guess, but it seems to work for
566 gcc output. It needs to guess right for gcc, otherwise gcc
567 will put what it thinks is a GP-relative instruction in a branch
570 I don't know if a fix is needed for the SVR4_PIC mode. I've only
571 fixed it for the non-PIC mode. KR 95/04/07 */
572 static int nopic_need_relax (symbolS
*, int);
574 /* handle of the OPCODE hash table */
575 static struct hash_control
*op_hash
= NULL
;
577 /* The opcode hash table we use for the mips16. */
578 static struct hash_control
*mips16_op_hash
= NULL
;
580 /* This array holds the chars that always start a comment. If the
581 pre-processor is disabled, these aren't very useful */
582 const char comment_chars
[] = "#";
584 /* This array holds the chars that only start a comment at the beginning of
585 a line. If the line seems to have the form '# 123 filename'
586 .line and .file directives will appear in the pre-processed output */
587 /* Note that input_file.c hand checks for '#' at the beginning of the
588 first line of the input file. This is because the compiler outputs
589 #NO_APP at the beginning of its output. */
590 /* Also note that C style comments are always supported. */
591 const char line_comment_chars
[] = "#";
593 /* This array holds machine specific line separator characters. */
594 const char line_separator_chars
[] = ";";
596 /* Chars that can be used to separate mant from exp in floating point nums */
597 const char EXP_CHARS
[] = "eE";
599 /* Chars that mean this number is a floating point constant */
602 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
604 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
605 changed in read.c . Ideally it shouldn't have to know about it at all,
606 but nothing is ideal around here.
609 static char *insn_error
;
611 static int auto_align
= 1;
613 /* When outputting SVR4 PIC code, the assembler needs to know the
614 offset in the stack frame from which to restore the $gp register.
615 This is set by the .cprestore pseudo-op, and saved in this
617 static offsetT mips_cprestore_offset
= -1;
619 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
620 more optimizations, it can use a register value instead of a memory-saved
621 offset and even an other register than $gp as global pointer. */
622 static offsetT mips_cpreturn_offset
= -1;
623 static int mips_cpreturn_register
= -1;
624 static int mips_gp_register
= GP
;
625 static int mips_gprel_offset
= 0;
627 /* Whether mips_cprestore_offset has been set in the current function
628 (or whether it has already been warned about, if not). */
629 static int mips_cprestore_valid
= 0;
631 /* This is the register which holds the stack frame, as set by the
632 .frame pseudo-op. This is needed to implement .cprestore. */
633 static int mips_frame_reg
= SP
;
635 /* Whether mips_frame_reg has been set in the current function
636 (or whether it has already been warned about, if not). */
637 static int mips_frame_reg_valid
= 0;
639 /* To output NOP instructions correctly, we need to keep information
640 about the previous two instructions. */
642 /* Whether we are optimizing. The default value of 2 means to remove
643 unneeded NOPs and swap branch instructions when possible. A value
644 of 1 means to not swap branches. A value of 0 means to always
646 static int mips_optimize
= 2;
648 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
649 equivalent to seeing no -g option at all. */
650 static int mips_debug
= 0;
652 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
653 #define MAX_VR4130_NOPS 4
655 /* The maximum number of NOPs needed to fill delay slots. */
656 #define MAX_DELAY_NOPS 2
658 /* The maximum number of NOPs needed for any purpose. */
661 /* A list of previous instructions, with index 0 being the most recent.
662 We need to look back MAX_NOPS instructions when filling delay slots
663 or working around processor errata. We need to look back one
664 instruction further if we're thinking about using history[0] to
665 fill a branch delay slot. */
666 static struct mips_cl_insn history
[1 + MAX_NOPS
];
668 /* Nop instructions used by emit_nop. */
669 static struct mips_cl_insn nop_insn
, mips16_nop_insn
;
671 /* The appropriate nop for the current mode. */
672 #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
674 /* If this is set, it points to a frag holding nop instructions which
675 were inserted before the start of a noreorder section. If those
676 nops turn out to be unnecessary, the size of the frag can be
678 static fragS
*prev_nop_frag
;
680 /* The number of nop instructions we created in prev_nop_frag. */
681 static int prev_nop_frag_holds
;
683 /* The number of nop instructions that we know we need in
685 static int prev_nop_frag_required
;
687 /* The number of instructions we've seen since prev_nop_frag. */
688 static int prev_nop_frag_since
;
690 /* For ECOFF and ELF, relocations against symbols are done in two
691 parts, with a HI relocation and a LO relocation. Each relocation
692 has only 16 bits of space to store an addend. This means that in
693 order for the linker to handle carries correctly, it must be able
694 to locate both the HI and the LO relocation. This means that the
695 relocations must appear in order in the relocation table.
697 In order to implement this, we keep track of each unmatched HI
698 relocation. We then sort them so that they immediately precede the
699 corresponding LO relocation. */
704 struct mips_hi_fixup
*next
;
707 /* The section this fixup is in. */
711 /* The list of unmatched HI relocs. */
713 static struct mips_hi_fixup
*mips_hi_fixup_list
;
715 /* The frag containing the last explicit relocation operator.
716 Null if explicit relocations have not been used. */
718 static fragS
*prev_reloc_op_frag
;
720 /* Map normal MIPS register numbers to mips16 register numbers. */
722 #define X ILLEGAL_REG
723 static const int mips32_to_16_reg_map
[] =
725 X
, X
, 2, 3, 4, 5, 6, 7,
726 X
, X
, X
, X
, X
, X
, X
, X
,
727 0, 1, X
, X
, X
, X
, X
, X
,
728 X
, X
, X
, X
, X
, X
, X
, X
732 /* Map mips16 register numbers to normal MIPS register numbers. */
734 static const unsigned int mips16_to_32_reg_map
[] =
736 16, 17, 2, 3, 4, 5, 6, 7
739 /* Classifies the kind of instructions we're interested in when
740 implementing -mfix-vr4120. */
741 enum fix_vr4120_class
{
748 NUM_FIX_VR4120_CLASSES
751 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
752 there must be at least one other instruction between an instruction
753 of type X and an instruction of type Y. */
754 static unsigned int vr4120_conflicts
[NUM_FIX_VR4120_CLASSES
];
756 /* True if -mfix-vr4120 is in force. */
757 static int mips_fix_vr4120
;
759 /* ...likewise -mfix-vr4130. */
760 static int mips_fix_vr4130
;
762 /* We don't relax branches by default, since this causes us to expand
763 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
764 fail to compute the offset before expanding the macro to the most
765 efficient expansion. */
767 static int mips_relax_branch
;
769 /* The expansion of many macros depends on the type of symbol that
770 they refer to. For example, when generating position-dependent code,
771 a macro that refers to a symbol may have two different expansions,
772 one which uses GP-relative addresses and one which uses absolute
773 addresses. When generating SVR4-style PIC, a macro may have
774 different expansions for local and global symbols.
776 We handle these situations by generating both sequences and putting
777 them in variant frags. In position-dependent code, the first sequence
778 will be the GP-relative one and the second sequence will be the
779 absolute one. In SVR4 PIC, the first sequence will be for global
780 symbols and the second will be for local symbols.
782 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
783 SECOND are the lengths of the two sequences in bytes. These fields
784 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
785 the subtype has the following flags:
788 Set if it has been decided that we should use the second
789 sequence instead of the first.
792 Set in the first variant frag if the macro's second implementation
793 is longer than its first. This refers to the macro as a whole,
794 not an individual relaxation.
797 Set in the first variant frag if the macro appeared in a .set nomacro
798 block and if one alternative requires a warning but the other does not.
801 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
804 The frag's "opcode" points to the first fixup for relaxable code.
806 Relaxable macros are generated using a sequence such as:
808 relax_start (SYMBOL);
809 ... generate first expansion ...
811 ... generate second expansion ...
814 The code and fixups for the unwanted alternative are discarded
815 by md_convert_frag. */
816 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
818 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
819 #define RELAX_SECOND(X) ((X) & 0xff)
820 #define RELAX_USE_SECOND 0x10000
821 #define RELAX_SECOND_LONGER 0x20000
822 #define RELAX_NOMACRO 0x40000
823 #define RELAX_DELAY_SLOT 0x80000
825 /* Branch without likely bit. If label is out of range, we turn:
827 beq reg1, reg2, label
837 with the following opcode replacements:
844 bltzal <-> bgezal (with jal label instead of j label)
846 Even though keeping the delay slot instruction in the delay slot of
847 the branch would be more efficient, it would be very tricky to do
848 correctly, because we'd have to introduce a variable frag *after*
849 the delay slot instruction, and expand that instead. Let's do it
850 the easy way for now, even if the branch-not-taken case now costs
851 one additional instruction. Out-of-range branches are not supposed
852 to be common, anyway.
854 Branch likely. If label is out of range, we turn:
856 beql reg1, reg2, label
857 delay slot (annulled if branch not taken)
866 delay slot (executed only if branch taken)
869 It would be possible to generate a shorter sequence by losing the
870 likely bit, generating something like:
875 delay slot (executed only if branch taken)
887 bltzall -> bgezal (with jal label instead of j label)
888 bgezall -> bltzal (ditto)
891 but it's not clear that it would actually improve performance. */
892 #define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
895 | ((toofar) ? 1 : 0) \
897 | ((likely) ? 4 : 0) \
898 | ((uncond) ? 8 : 0)))
899 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
900 #define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
901 #define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
902 #define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
903 #define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
905 /* For mips16 code, we use an entirely different form of relaxation.
906 mips16 supports two versions of most instructions which take
907 immediate values: a small one which takes some small value, and a
908 larger one which takes a 16 bit value. Since branches also follow
909 this pattern, relaxing these values is required.
911 We can assemble both mips16 and normal MIPS code in a single
912 object. Therefore, we need to support this type of relaxation at
913 the same time that we support the relaxation described above. We
914 use the high bit of the subtype field to distinguish these cases.
916 The information we store for this type of relaxation is the
917 argument code found in the opcode file for this relocation, whether
918 the user explicitly requested a small or extended form, and whether
919 the relocation is in a jump or jal delay slot. That tells us the
920 size of the value, and how it should be stored. We also store
921 whether the fragment is considered to be extended or not. We also
922 store whether this is known to be a branch to a different section,
923 whether we have tried to relax this frag yet, and whether we have
924 ever extended a PC relative fragment because of a shift count. */
925 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
928 | ((small) ? 0x100 : 0) \
929 | ((ext) ? 0x200 : 0) \
930 | ((dslot) ? 0x400 : 0) \
931 | ((jal_dslot) ? 0x800 : 0))
932 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
933 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
934 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
935 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
936 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
937 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
938 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
939 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
940 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
941 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
942 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
943 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
945 /* Is the given value a sign-extended 32-bit value? */
946 #define IS_SEXT_32BIT_NUM(x) \
947 (((x) &~ (offsetT) 0x7fffffff) == 0 \
948 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
950 /* Is the given value a sign-extended 16-bit value? */
951 #define IS_SEXT_16BIT_NUM(x) \
952 (((x) &~ (offsetT) 0x7fff) == 0 \
953 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
955 /* Is the given value a zero-extended 32-bit value? Or a negated one? */
956 #define IS_ZEXT_32BIT_NUM(x) \
957 (((x) &~ (offsetT) 0xffffffff) == 0 \
958 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
960 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
961 VALUE << SHIFT. VALUE is evaluated exactly once. */
962 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
963 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
964 | (((VALUE) & (MASK)) << (SHIFT)))
966 /* Extract bits MASK << SHIFT from STRUCT and shift them right
968 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
969 (((STRUCT) >> (SHIFT)) & (MASK))
971 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
972 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
974 include/opcode/mips.h specifies operand fields using the macros
975 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
976 with "MIPS16OP" instead of "OP". */
977 #define INSERT_OPERAND(FIELD, INSN, VALUE) \
978 INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
979 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
980 INSERT_BITS ((INSN).insn_opcode, VALUE, \
981 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
983 /* Extract the operand given by FIELD from mips_cl_insn INSN. */
984 #define EXTRACT_OPERAND(FIELD, INSN) \
985 EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
986 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
987 EXTRACT_BITS ((INSN).insn_opcode, \
988 MIPS16OP_MASK_##FIELD, \
991 /* Global variables used when generating relaxable macros. See the
992 comment above RELAX_ENCODE for more details about how relaxation
995 /* 0 if we're not emitting a relaxable macro.
996 1 if we're emitting the first of the two relaxation alternatives.
997 2 if we're emitting the second alternative. */
1000 /* The first relaxable fixup in the current frag. (In other words,
1001 the first fixup that refers to relaxable code.) */
1004 /* sizes[0] says how many bytes of the first alternative are stored in
1005 the current frag. Likewise sizes[1] for the second alternative. */
1006 unsigned int sizes
[2];
1008 /* The symbol on which the choice of sequence depends. */
1012 /* Global variables used to decide whether a macro needs a warning. */
1014 /* True if the macro is in a branch delay slot. */
1015 bfd_boolean delay_slot_p
;
1017 /* For relaxable macros, sizes[0] is the length of the first alternative
1018 in bytes and sizes[1] is the length of the second alternative.
1019 For non-relaxable macros, both elements give the length of the
1021 unsigned int sizes
[2];
1023 /* The first variant frag for this macro. */
1025 } mips_macro_warning
;
1027 /* Prototypes for static functions. */
1029 #define internalError() \
1030 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
1032 enum mips_regclass
{ MIPS_GR_REG
, MIPS_FP_REG
, MIPS16_REG
};
1034 static void append_insn
1035 (struct mips_cl_insn
*ip
, expressionS
*p
, bfd_reloc_code_real_type
*r
);
1036 static void mips_no_prev_insn (void);
1037 static void mips16_macro_build
1038 (expressionS
*, const char *, const char *, va_list);
1039 static void load_register (int, expressionS
*, int);
1040 static void macro_start (void);
1041 static void macro_end (void);
1042 static void macro (struct mips_cl_insn
* ip
);
1043 static void mips16_macro (struct mips_cl_insn
* ip
);
1044 #ifdef LOSING_COMPILER
1045 static void macro2 (struct mips_cl_insn
* ip
);
1047 static void mips_ip (char *str
, struct mips_cl_insn
* ip
);
1048 static void mips16_ip (char *str
, struct mips_cl_insn
* ip
);
1049 static void mips16_immed
1050 (char *, unsigned int, int, offsetT
, bfd_boolean
, bfd_boolean
, bfd_boolean
,
1051 unsigned long *, bfd_boolean
*, unsigned short *);
1052 static size_t my_getSmallExpression
1053 (expressionS
*, bfd_reloc_code_real_type
*, char *);
1054 static void my_getExpression (expressionS
*, char *);
1055 static void s_align (int);
1056 static void s_change_sec (int);
1057 static void s_change_section (int);
1058 static void s_cons (int);
1059 static void s_float_cons (int);
1060 static void s_mips_globl (int);
1061 static void s_option (int);
1062 static void s_mipsset (int);
1063 static void s_abicalls (int);
1064 static void s_cpload (int);
1065 static void s_cpsetup (int);
1066 static void s_cplocal (int);
1067 static void s_cprestore (int);
1068 static void s_cpreturn (int);
1069 static void s_dtprelword (int);
1070 static void s_dtpreldword (int);
1071 static void s_gpvalue (int);
1072 static void s_gpword (int);
1073 static void s_gpdword (int);
1074 static void s_cpadd (int);
1075 static void s_insn (int);
1076 static void md_obj_begin (void);
1077 static void md_obj_end (void);
1078 static void s_mips_ent (int);
1079 static void s_mips_end (int);
1080 static void s_mips_frame (int);
1081 static void s_mips_mask (int reg_type
);
1082 static void s_mips_stab (int);
1083 static void s_mips_weakext (int);
1084 static void s_mips_file (int);
1085 static void s_mips_loc (int);
1086 static bfd_boolean
pic_need_relax (symbolS
*, asection
*);
1087 static int relaxed_branch_length (fragS
*, asection
*, int);
1088 static int validate_mips_insn (const struct mips_opcode
*);
1090 /* Table and functions used to map between CPU/ISA names, and
1091 ISA levels, and CPU numbers. */
1093 struct mips_cpu_info
1095 const char *name
; /* CPU or ISA name. */
1096 int flags
; /* ASEs available, or ISA flag. */
1097 int isa
; /* ISA level. */
1098 int cpu
; /* CPU number (default CPU if ISA). */
1101 #define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1102 #define MIPS_CPU_ASE_SMARTMIPS 0x0002 /* CPU implements SmartMIPS ASE */
1103 #define MIPS_CPU_ASE_DSP 0x0004 /* CPU implements DSP ASE */
1104 #define MIPS_CPU_ASE_MT 0x0008 /* CPU implements MT ASE */
1105 #define MIPS_CPU_ASE_MIPS3D 0x0010 /* CPU implements MIPS-3D ASE */
1106 #define MIPS_CPU_ASE_MDMX 0x0020 /* CPU implements MDMX ASE */
1107 #define MIPS_CPU_ASE_DSPR2 0x0040 /* CPU implements DSP R2 ASE */
1109 static const struct mips_cpu_info
*mips_parse_cpu (const char *, const char *);
1110 static const struct mips_cpu_info
*mips_cpu_info_from_isa (int);
1111 static const struct mips_cpu_info
*mips_cpu_info_from_arch (int);
1115 The following pseudo-ops from the Kane and Heinrich MIPS book
1116 should be defined here, but are currently unsupported: .alias,
1117 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1119 The following pseudo-ops from the Kane and Heinrich MIPS book are
1120 specific to the type of debugging information being generated, and
1121 should be defined by the object format: .aent, .begin, .bend,
1122 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1125 The following pseudo-ops from the Kane and Heinrich MIPS book are
1126 not MIPS CPU specific, but are also not specific to the object file
1127 format. This file is probably the best place to define them, but
1128 they are not currently supported: .asm0, .endr, .lab, .struct. */
1130 static const pseudo_typeS mips_pseudo_table
[] =
1132 /* MIPS specific pseudo-ops. */
1133 {"option", s_option
, 0},
1134 {"set", s_mipsset
, 0},
1135 {"rdata", s_change_sec
, 'r'},
1136 {"sdata", s_change_sec
, 's'},
1137 {"livereg", s_ignore
, 0},
1138 {"abicalls", s_abicalls
, 0},
1139 {"cpload", s_cpload
, 0},
1140 {"cpsetup", s_cpsetup
, 0},
1141 {"cplocal", s_cplocal
, 0},
1142 {"cprestore", s_cprestore
, 0},
1143 {"cpreturn", s_cpreturn
, 0},
1144 {"dtprelword", s_dtprelword
, 0},
1145 {"dtpreldword", s_dtpreldword
, 0},
1146 {"gpvalue", s_gpvalue
, 0},
1147 {"gpword", s_gpword
, 0},
1148 {"gpdword", s_gpdword
, 0},
1149 {"cpadd", s_cpadd
, 0},
1150 {"insn", s_insn
, 0},
1152 /* Relatively generic pseudo-ops that happen to be used on MIPS
1154 {"asciiz", stringer
, 8 + 1},
1155 {"bss", s_change_sec
, 'b'},
1157 {"half", s_cons
, 1},
1158 {"dword", s_cons
, 3},
1159 {"weakext", s_mips_weakext
, 0},
1160 {"origin", s_org
, 0},
1161 {"repeat", s_rept
, 0},
1163 /* These pseudo-ops are defined in read.c, but must be overridden
1164 here for one reason or another. */
1165 {"align", s_align
, 0},
1166 {"byte", s_cons
, 0},
1167 {"data", s_change_sec
, 'd'},
1168 {"double", s_float_cons
, 'd'},
1169 {"float", s_float_cons
, 'f'},
1170 {"globl", s_mips_globl
, 0},
1171 {"global", s_mips_globl
, 0},
1172 {"hword", s_cons
, 1},
1174 {"long", s_cons
, 2},
1175 {"octa", s_cons
, 4},
1176 {"quad", s_cons
, 3},
1177 {"section", s_change_section
, 0},
1178 {"short", s_cons
, 1},
1179 {"single", s_float_cons
, 'f'},
1180 {"stabn", s_mips_stab
, 'n'},
1181 {"text", s_change_sec
, 't'},
1182 {"word", s_cons
, 2},
1184 { "extern", ecoff_directive_extern
, 0},
1189 static const pseudo_typeS mips_nonecoff_pseudo_table
[] =
1191 /* These pseudo-ops should be defined by the object file format.
1192 However, a.out doesn't support them, so we have versions here. */
1193 {"aent", s_mips_ent
, 1},
1194 {"bgnb", s_ignore
, 0},
1195 {"end", s_mips_end
, 0},
1196 {"endb", s_ignore
, 0},
1197 {"ent", s_mips_ent
, 0},
1198 {"file", s_mips_file
, 0},
1199 {"fmask", s_mips_mask
, 'F'},
1200 {"frame", s_mips_frame
, 0},
1201 {"loc", s_mips_loc
, 0},
1202 {"mask", s_mips_mask
, 'R'},
1203 {"verstamp", s_ignore
, 0},
1207 extern void pop_insert (const pseudo_typeS
*);
1210 mips_pop_insert (void)
1212 pop_insert (mips_pseudo_table
);
1213 if (! ECOFF_DEBUGGING
)
1214 pop_insert (mips_nonecoff_pseudo_table
);
1217 /* Symbols labelling the current insn. */
1219 struct insn_label_list
1221 struct insn_label_list
*next
;
1225 static struct insn_label_list
*free_insn_labels
;
1226 #define label_list tc_segment_info_data.labels
1228 static void mips_clear_insn_labels (void);
1231 mips_clear_insn_labels (void)
1233 register struct insn_label_list
**pl
;
1234 segment_info_type
*si
;
1238 for (pl
= &free_insn_labels
; *pl
!= NULL
; pl
= &(*pl
)->next
)
1241 si
= seg_info (now_seg
);
1242 *pl
= si
->label_list
;
1243 si
->label_list
= NULL
;
1248 static char *expr_end
;
1250 /* Expressions which appear in instructions. These are set by
1253 static expressionS imm_expr
;
1254 static expressionS imm2_expr
;
1255 static expressionS offset_expr
;
1257 /* Relocs associated with imm_expr and offset_expr. */
1259 static bfd_reloc_code_real_type imm_reloc
[3]
1260 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
1261 static bfd_reloc_code_real_type offset_reloc
[3]
1262 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
1264 /* These are set by mips16_ip if an explicit extension is used. */
1266 static bfd_boolean mips16_small
, mips16_ext
;
1269 /* The pdr segment for per procedure frame/regmask info. Not used for
1272 static segT pdr_seg
;
1275 /* The default target format to use. */
1278 mips_target_format (void)
1280 switch (OUTPUT_FLAVOR
)
1282 case bfd_target_ecoff_flavour
:
1283 return target_big_endian
? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT
;
1284 case bfd_target_coff_flavour
:
1286 case bfd_target_elf_flavour
:
1288 if (!HAVE_64BIT_OBJECTS
&& !HAVE_NEWABI
)
1289 return (target_big_endian
1290 ? "elf32-bigmips-vxworks"
1291 : "elf32-littlemips-vxworks");
1294 /* This is traditional mips. */
1295 return (target_big_endian
1296 ? (HAVE_64BIT_OBJECTS
1297 ? "elf64-tradbigmips"
1299 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
1300 : (HAVE_64BIT_OBJECTS
1301 ? "elf64-tradlittlemips"
1303 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
1305 return (target_big_endian
1306 ? (HAVE_64BIT_OBJECTS
1309 ? "elf32-nbigmips" : "elf32-bigmips"))
1310 : (HAVE_64BIT_OBJECTS
1311 ? "elf64-littlemips"
1313 ? "elf32-nlittlemips" : "elf32-littlemips")));
1321 /* Return the length of instruction INSN. */
1323 static inline unsigned int
1324 insn_length (const struct mips_cl_insn
*insn
)
1326 if (!mips_opts
.mips16
)
1328 return insn
->mips16_absolute_jump_p
|| insn
->use_extend
? 4 : 2;
1331 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1334 create_insn (struct mips_cl_insn
*insn
, const struct mips_opcode
*mo
)
1339 insn
->use_extend
= FALSE
;
1341 insn
->insn_opcode
= mo
->match
;
1344 for (i
= 0; i
< ARRAY_SIZE (insn
->fixp
); i
++)
1345 insn
->fixp
[i
] = NULL
;
1346 insn
->fixed_p
= (mips_opts
.noreorder
> 0);
1347 insn
->noreorder_p
= (mips_opts
.noreorder
> 0);
1348 insn
->mips16_absolute_jump_p
= 0;
1351 /* Record the current MIPS16 mode in now_seg. */
1354 mips_record_mips16_mode (void)
1356 segment_info_type
*si
;
1358 si
= seg_info (now_seg
);
1359 if (si
->tc_segment_info_data
.mips16
!= mips_opts
.mips16
)
1360 si
->tc_segment_info_data
.mips16
= mips_opts
.mips16
;
1363 /* Install INSN at the location specified by its "frag" and "where" fields. */
1366 install_insn (const struct mips_cl_insn
*insn
)
1368 char *f
= insn
->frag
->fr_literal
+ insn
->where
;
1369 if (!mips_opts
.mips16
)
1370 md_number_to_chars (f
, insn
->insn_opcode
, 4);
1371 else if (insn
->mips16_absolute_jump_p
)
1373 md_number_to_chars (f
, insn
->insn_opcode
>> 16, 2);
1374 md_number_to_chars (f
+ 2, insn
->insn_opcode
& 0xffff, 2);
1378 if (insn
->use_extend
)
1380 md_number_to_chars (f
, 0xf000 | insn
->extend
, 2);
1383 md_number_to_chars (f
, insn
->insn_opcode
, 2);
1385 mips_record_mips16_mode ();
1388 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1389 and install the opcode in the new location. */
1392 move_insn (struct mips_cl_insn
*insn
, fragS
*frag
, long where
)
1397 insn
->where
= where
;
1398 for (i
= 0; i
< ARRAY_SIZE (insn
->fixp
); i
++)
1399 if (insn
->fixp
[i
] != NULL
)
1401 insn
->fixp
[i
]->fx_frag
= frag
;
1402 insn
->fixp
[i
]->fx_where
= where
;
1404 install_insn (insn
);
1407 /* Add INSN to the end of the output. */
1410 add_fixed_insn (struct mips_cl_insn
*insn
)
1412 char *f
= frag_more (insn_length (insn
));
1413 move_insn (insn
, frag_now
, f
- frag_now
->fr_literal
);
1416 /* Start a variant frag and move INSN to the start of the variant part,
1417 marking it as fixed. The other arguments are as for frag_var. */
1420 add_relaxed_insn (struct mips_cl_insn
*insn
, int max_chars
, int var
,
1421 relax_substateT subtype
, symbolS
*symbol
, offsetT offset
)
1423 frag_grow (max_chars
);
1424 move_insn (insn
, frag_now
, frag_more (0) - frag_now
->fr_literal
);
1426 frag_var (rs_machine_dependent
, max_chars
, var
,
1427 subtype
, symbol
, offset
, NULL
);
1430 /* Insert N copies of INSN into the history buffer, starting at
1431 position FIRST. Neither FIRST nor N need to be clipped. */
1434 insert_into_history (unsigned int first
, unsigned int n
,
1435 const struct mips_cl_insn
*insn
)
1437 if (mips_relax
.sequence
!= 2)
1441 for (i
= ARRAY_SIZE (history
); i
-- > first
;)
1443 history
[i
] = history
[i
- n
];
1449 /* Emit a nop instruction, recording it in the history buffer. */
1454 add_fixed_insn (NOP_INSN
);
1455 insert_into_history (0, 1, NOP_INSN
);
1458 /* Initialize vr4120_conflicts. There is a bit of duplication here:
1459 the idea is to make it obvious at a glance that each errata is
1463 init_vr4120_conflicts (void)
1465 #define CONFLICT(FIRST, SECOND) \
1466 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1468 /* Errata 21 - [D]DIV[U] after [D]MACC */
1469 CONFLICT (MACC
, DIV
);
1470 CONFLICT (DMACC
, DIV
);
1472 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1473 CONFLICT (DMULT
, DMULT
);
1474 CONFLICT (DMULT
, DMACC
);
1475 CONFLICT (DMACC
, DMULT
);
1476 CONFLICT (DMACC
, DMACC
);
1478 /* Errata 24 - MT{LO,HI} after [D]MACC */
1479 CONFLICT (MACC
, MTHILO
);
1480 CONFLICT (DMACC
, MTHILO
);
1482 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1483 instruction is executed immediately after a MACC or DMACC
1484 instruction, the result of [either instruction] is incorrect." */
1485 CONFLICT (MACC
, MULT
);
1486 CONFLICT (MACC
, DMULT
);
1487 CONFLICT (DMACC
, MULT
);
1488 CONFLICT (DMACC
, DMULT
);
1490 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1491 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1492 DDIV or DDIVU instruction, the result of the MACC or
1493 DMACC instruction is incorrect.". */
1494 CONFLICT (DMULT
, MACC
);
1495 CONFLICT (DMULT
, DMACC
);
1496 CONFLICT (DIV
, MACC
);
1497 CONFLICT (DIV
, DMACC
);
1507 #define RTYPE_MASK 0x1ff00
1508 #define RTYPE_NUM 0x00100
1509 #define RTYPE_FPU 0x00200
1510 #define RTYPE_FCC 0x00400
1511 #define RTYPE_VEC 0x00800
1512 #define RTYPE_GP 0x01000
1513 #define RTYPE_CP0 0x02000
1514 #define RTYPE_PC 0x04000
1515 #define RTYPE_ACC 0x08000
1516 #define RTYPE_CCC 0x10000
1517 #define RNUM_MASK 0x000ff
1518 #define RWARN 0x80000
1520 #define GENERIC_REGISTER_NUMBERS \
1521 {"$0", RTYPE_NUM | 0}, \
1522 {"$1", RTYPE_NUM | 1}, \
1523 {"$2", RTYPE_NUM | 2}, \
1524 {"$3", RTYPE_NUM | 3}, \
1525 {"$4", RTYPE_NUM | 4}, \
1526 {"$5", RTYPE_NUM | 5}, \
1527 {"$6", RTYPE_NUM | 6}, \
1528 {"$7", RTYPE_NUM | 7}, \
1529 {"$8", RTYPE_NUM | 8}, \
1530 {"$9", RTYPE_NUM | 9}, \
1531 {"$10", RTYPE_NUM | 10}, \
1532 {"$11", RTYPE_NUM | 11}, \
1533 {"$12", RTYPE_NUM | 12}, \
1534 {"$13", RTYPE_NUM | 13}, \
1535 {"$14", RTYPE_NUM | 14}, \
1536 {"$15", RTYPE_NUM | 15}, \
1537 {"$16", RTYPE_NUM | 16}, \
1538 {"$17", RTYPE_NUM | 17}, \
1539 {"$18", RTYPE_NUM | 18}, \
1540 {"$19", RTYPE_NUM | 19}, \
1541 {"$20", RTYPE_NUM | 20}, \
1542 {"$21", RTYPE_NUM | 21}, \
1543 {"$22", RTYPE_NUM | 22}, \
1544 {"$23", RTYPE_NUM | 23}, \
1545 {"$24", RTYPE_NUM | 24}, \
1546 {"$25", RTYPE_NUM | 25}, \
1547 {"$26", RTYPE_NUM | 26}, \
1548 {"$27", RTYPE_NUM | 27}, \
1549 {"$28", RTYPE_NUM | 28}, \
1550 {"$29", RTYPE_NUM | 29}, \
1551 {"$30", RTYPE_NUM | 30}, \
1552 {"$31", RTYPE_NUM | 31}
1554 #define FPU_REGISTER_NAMES \
1555 {"$f0", RTYPE_FPU | 0}, \
1556 {"$f1", RTYPE_FPU | 1}, \
1557 {"$f2", RTYPE_FPU | 2}, \
1558 {"$f3", RTYPE_FPU | 3}, \
1559 {"$f4", RTYPE_FPU | 4}, \
1560 {"$f5", RTYPE_FPU | 5}, \
1561 {"$f6", RTYPE_FPU | 6}, \
1562 {"$f7", RTYPE_FPU | 7}, \
1563 {"$f8", RTYPE_FPU | 8}, \
1564 {"$f9", RTYPE_FPU | 9}, \
1565 {"$f10", RTYPE_FPU | 10}, \
1566 {"$f11", RTYPE_FPU | 11}, \
1567 {"$f12", RTYPE_FPU | 12}, \
1568 {"$f13", RTYPE_FPU | 13}, \
1569 {"$f14", RTYPE_FPU | 14}, \
1570 {"$f15", RTYPE_FPU | 15}, \
1571 {"$f16", RTYPE_FPU | 16}, \
1572 {"$f17", RTYPE_FPU | 17}, \
1573 {"$f18", RTYPE_FPU | 18}, \
1574 {"$f19", RTYPE_FPU | 19}, \
1575 {"$f20", RTYPE_FPU | 20}, \
1576 {"$f21", RTYPE_FPU | 21}, \
1577 {"$f22", RTYPE_FPU | 22}, \
1578 {"$f23", RTYPE_FPU | 23}, \
1579 {"$f24", RTYPE_FPU | 24}, \
1580 {"$f25", RTYPE_FPU | 25}, \
1581 {"$f26", RTYPE_FPU | 26}, \
1582 {"$f27", RTYPE_FPU | 27}, \
1583 {"$f28", RTYPE_FPU | 28}, \
1584 {"$f29", RTYPE_FPU | 29}, \
1585 {"$f30", RTYPE_FPU | 30}, \
1586 {"$f31", RTYPE_FPU | 31}
1588 #define FPU_CONDITION_CODE_NAMES \
1589 {"$fcc0", RTYPE_FCC | 0}, \
1590 {"$fcc1", RTYPE_FCC | 1}, \
1591 {"$fcc2", RTYPE_FCC | 2}, \
1592 {"$fcc3", RTYPE_FCC | 3}, \
1593 {"$fcc4", RTYPE_FCC | 4}, \
1594 {"$fcc5", RTYPE_FCC | 5}, \
1595 {"$fcc6", RTYPE_FCC | 6}, \
1596 {"$fcc7", RTYPE_FCC | 7}
1598 #define COPROC_CONDITION_CODE_NAMES \
1599 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
1600 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
1601 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
1602 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
1603 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
1604 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
1605 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
1606 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
1608 #define N32N64_SYMBOLIC_REGISTER_NAMES \
1609 {"$a4", RTYPE_GP | 8}, \
1610 {"$a5", RTYPE_GP | 9}, \
1611 {"$a6", RTYPE_GP | 10}, \
1612 {"$a7", RTYPE_GP | 11}, \
1613 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
1614 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
1615 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
1616 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
1617 {"$t0", RTYPE_GP | 12}, \
1618 {"$t1", RTYPE_GP | 13}, \
1619 {"$t2", RTYPE_GP | 14}, \
1620 {"$t3", RTYPE_GP | 15}
1622 #define O32_SYMBOLIC_REGISTER_NAMES \
1623 {"$t0", RTYPE_GP | 8}, \
1624 {"$t1", RTYPE_GP | 9}, \
1625 {"$t2", RTYPE_GP | 10}, \
1626 {"$t3", RTYPE_GP | 11}, \
1627 {"$t4", RTYPE_GP | 12}, \
1628 {"$t5", RTYPE_GP | 13}, \
1629 {"$t6", RTYPE_GP | 14}, \
1630 {"$t7", RTYPE_GP | 15}, \
1631 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
1632 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
1633 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
1634 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
1636 /* Remaining symbolic register names */
1637 #define SYMBOLIC_REGISTER_NAMES \
1638 {"$zero", RTYPE_GP | 0}, \
1639 {"$at", RTYPE_GP | 1}, \
1640 {"$AT", RTYPE_GP | 1}, \
1641 {"$v0", RTYPE_GP | 2}, \
1642 {"$v1", RTYPE_GP | 3}, \
1643 {"$a0", RTYPE_GP | 4}, \
1644 {"$a1", RTYPE_GP | 5}, \
1645 {"$a2", RTYPE_GP | 6}, \
1646 {"$a3", RTYPE_GP | 7}, \
1647 {"$s0", RTYPE_GP | 16}, \
1648 {"$s1", RTYPE_GP | 17}, \
1649 {"$s2", RTYPE_GP | 18}, \
1650 {"$s3", RTYPE_GP | 19}, \
1651 {"$s4", RTYPE_GP | 20}, \
1652 {"$s5", RTYPE_GP | 21}, \
1653 {"$s6", RTYPE_GP | 22}, \
1654 {"$s7", RTYPE_GP | 23}, \
1655 {"$t8", RTYPE_GP | 24}, \
1656 {"$t9", RTYPE_GP | 25}, \
1657 {"$k0", RTYPE_GP | 26}, \
1658 {"$kt0", RTYPE_GP | 26}, \
1659 {"$k1", RTYPE_GP | 27}, \
1660 {"$kt1", RTYPE_GP | 27}, \
1661 {"$gp", RTYPE_GP | 28}, \
1662 {"$sp", RTYPE_GP | 29}, \
1663 {"$s8", RTYPE_GP | 30}, \
1664 {"$fp", RTYPE_GP | 30}, \
1665 {"$ra", RTYPE_GP | 31}
1667 #define MIPS16_SPECIAL_REGISTER_NAMES \
1668 {"$pc", RTYPE_PC | 0}
1670 #define MDMX_VECTOR_REGISTER_NAMES \
1671 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
1672 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
1673 {"$v2", RTYPE_VEC | 2}, \
1674 {"$v3", RTYPE_VEC | 3}, \
1675 {"$v4", RTYPE_VEC | 4}, \
1676 {"$v5", RTYPE_VEC | 5}, \
1677 {"$v6", RTYPE_VEC | 6}, \
1678 {"$v7", RTYPE_VEC | 7}, \
1679 {"$v8", RTYPE_VEC | 8}, \
1680 {"$v9", RTYPE_VEC | 9}, \
1681 {"$v10", RTYPE_VEC | 10}, \
1682 {"$v11", RTYPE_VEC | 11}, \
1683 {"$v12", RTYPE_VEC | 12}, \
1684 {"$v13", RTYPE_VEC | 13}, \
1685 {"$v14", RTYPE_VEC | 14}, \
1686 {"$v15", RTYPE_VEC | 15}, \
1687 {"$v16", RTYPE_VEC | 16}, \
1688 {"$v17", RTYPE_VEC | 17}, \
1689 {"$v18", RTYPE_VEC | 18}, \
1690 {"$v19", RTYPE_VEC | 19}, \
1691 {"$v20", RTYPE_VEC | 20}, \
1692 {"$v21", RTYPE_VEC | 21}, \
1693 {"$v22", RTYPE_VEC | 22}, \
1694 {"$v23", RTYPE_VEC | 23}, \
1695 {"$v24", RTYPE_VEC | 24}, \
1696 {"$v25", RTYPE_VEC | 25}, \
1697 {"$v26", RTYPE_VEC | 26}, \
1698 {"$v27", RTYPE_VEC | 27}, \
1699 {"$v28", RTYPE_VEC | 28}, \
1700 {"$v29", RTYPE_VEC | 29}, \
1701 {"$v30", RTYPE_VEC | 30}, \
1702 {"$v31", RTYPE_VEC | 31}
1704 #define MIPS_DSP_ACCUMULATOR_NAMES \
1705 {"$ac0", RTYPE_ACC | 0}, \
1706 {"$ac1", RTYPE_ACC | 1}, \
1707 {"$ac2", RTYPE_ACC | 2}, \
1708 {"$ac3", RTYPE_ACC | 3}
1710 static const struct regname reg_names
[] = {
1711 GENERIC_REGISTER_NUMBERS
,
1713 FPU_CONDITION_CODE_NAMES
,
1714 COPROC_CONDITION_CODE_NAMES
,
1716 /* The $txx registers depends on the abi,
1717 these will be added later into the symbol table from
1718 one of the tables below once mips_abi is set after
1719 parsing of arguments from the command line. */
1720 SYMBOLIC_REGISTER_NAMES
,
1722 MIPS16_SPECIAL_REGISTER_NAMES
,
1723 MDMX_VECTOR_REGISTER_NAMES
,
1724 MIPS_DSP_ACCUMULATOR_NAMES
,
1728 static const struct regname reg_names_o32
[] = {
1729 O32_SYMBOLIC_REGISTER_NAMES
,
1733 static const struct regname reg_names_n32n64
[] = {
1734 N32N64_SYMBOLIC_REGISTER_NAMES
,
1739 reg_lookup (char **s
, unsigned int types
, unsigned int *regnop
)
1746 /* Find end of name. */
1748 if (is_name_beginner (*e
))
1750 while (is_part_of_name (*e
))
1753 /* Terminate name. */
1757 /* Look for a register symbol. */
1758 if ((symbolP
= symbol_find (*s
)) && S_GET_SEGMENT (symbolP
) == reg_section
)
1760 int r
= S_GET_VALUE (symbolP
);
1762 reg
= r
& RNUM_MASK
;
1763 else if ((types
& RTYPE_VEC
) && (r
& ~1) == (RTYPE_GP
| 2))
1764 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
1765 reg
= (r
& RNUM_MASK
) - 2;
1767 /* Else see if this is a register defined in an itbl entry. */
1768 else if ((types
& RTYPE_GP
) && itbl_have_entries
)
1775 if (itbl_get_reg_val (n
, &r
))
1776 reg
= r
& RNUM_MASK
;
1779 /* Advance to next token if a register was recognised. */
1782 else if (types
& RWARN
)
1783 as_warn ("Unrecognized register name `%s'", *s
);
1791 /* Return TRUE if opcode MO is valid on the currently selected ISA and
1792 architecture. If EXPANSIONP is TRUE then this check is done while
1793 expanding a macro. Use is_opcode_valid_16 for MIPS16 opcodes. */
1796 is_opcode_valid (const struct mips_opcode
*mo
, bfd_boolean expansionp
)
1798 int isa
= mips_opts
.isa
;
1801 if (mips_opts
.ase_mdmx
)
1803 if (mips_opts
.ase_dsp
)
1805 if (mips_opts
.ase_dsp
&& ISA_SUPPORTS_DSP64_ASE
)
1807 if (mips_opts
.ase_dspr2
)
1809 if (mips_opts
.ase_mt
)
1811 if (mips_opts
.ase_mips3d
)
1813 if (mips_opts
.ase_smartmips
)
1814 isa
|= INSN_SMARTMIPS
;
1816 /* For user code we don't check for mips_opts.mips16 since we want
1817 to allow jalx if -mips16 was specified on the command line. */
1818 if (expansionp
? mips_opts
.mips16
: file_ase_mips16
)
1821 /* Don't accept instructions based on the ISA if the CPU does not implement
1822 all the coprocessor insns. */
1823 if (NO_ISA_COP (mips_opts
.arch
)
1824 && COP_INSN (mo
->pinfo
))
1827 if (!OPCODE_IS_MEMBER (mo
, isa
, mips_opts
.arch
))
1830 /* Check whether the instruction or macro requires single-precision or
1831 double-precision floating-point support. Note that this information is
1832 stored differently in the opcode table for insns and macros. */
1833 if (mo
->pinfo
== INSN_MACRO
)
1835 fp_s
= mo
->pinfo2
& INSN2_M_FP_S
;
1836 fp_d
= mo
->pinfo2
& INSN2_M_FP_D
;
1840 fp_s
= mo
->pinfo
& FP_S
;
1841 fp_d
= mo
->pinfo
& FP_D
;
1844 if (fp_d
&& (mips_opts
.soft_float
|| mips_opts
.single_float
))
1847 if (fp_s
&& mips_opts
.soft_float
)
1853 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
1854 selected ISA and architecture. */
1857 is_opcode_valid_16 (const struct mips_opcode
*mo
)
1859 return OPCODE_IS_MEMBER (mo
, mips_opts
.isa
, mips_opts
.arch
) ? TRUE
: FALSE
;
1862 /* This function is called once, at assembler startup time. It should set up
1863 all the tables, etc. that the MD part of the assembler will need. */
1868 const char *retval
= NULL
;
1872 if (mips_pic
!= NO_PIC
)
1874 if (g_switch_seen
&& g_switch_value
!= 0)
1875 as_bad (_("-G may not be used in position-independent code"));
1879 if (! bfd_set_arch_mach (stdoutput
, bfd_arch_mips
, file_mips_arch
))
1880 as_warn (_("Could not set architecture and machine"));
1882 op_hash
= hash_new ();
1884 for (i
= 0; i
< NUMOPCODES
;)
1886 const char *name
= mips_opcodes
[i
].name
;
1888 retval
= hash_insert (op_hash
, name
, (void *) &mips_opcodes
[i
]);
1891 fprintf (stderr
, _("internal error: can't hash `%s': %s\n"),
1892 mips_opcodes
[i
].name
, retval
);
1893 /* Probably a memory allocation problem? Give up now. */
1894 as_fatal (_("Broken assembler. No assembly attempted."));
1898 if (mips_opcodes
[i
].pinfo
!= INSN_MACRO
)
1900 if (!validate_mips_insn (&mips_opcodes
[i
]))
1902 if (nop_insn
.insn_mo
== NULL
&& strcmp (name
, "nop") == 0)
1904 create_insn (&nop_insn
, mips_opcodes
+ i
);
1905 nop_insn
.fixed_p
= 1;
1910 while ((i
< NUMOPCODES
) && !strcmp (mips_opcodes
[i
].name
, name
));
1913 mips16_op_hash
= hash_new ();
1916 while (i
< bfd_mips16_num_opcodes
)
1918 const char *name
= mips16_opcodes
[i
].name
;
1920 retval
= hash_insert (mips16_op_hash
, name
, (void *) &mips16_opcodes
[i
]);
1922 as_fatal (_("internal: can't hash `%s': %s"),
1923 mips16_opcodes
[i
].name
, retval
);
1926 if (mips16_opcodes
[i
].pinfo
!= INSN_MACRO
1927 && ((mips16_opcodes
[i
].match
& mips16_opcodes
[i
].mask
)
1928 != mips16_opcodes
[i
].match
))
1930 fprintf (stderr
, _("internal error: bad mips16 opcode: %s %s\n"),
1931 mips16_opcodes
[i
].name
, mips16_opcodes
[i
].args
);
1934 if (mips16_nop_insn
.insn_mo
== NULL
&& strcmp (name
, "nop") == 0)
1936 create_insn (&mips16_nop_insn
, mips16_opcodes
+ i
);
1937 mips16_nop_insn
.fixed_p
= 1;
1941 while (i
< bfd_mips16_num_opcodes
1942 && strcmp (mips16_opcodes
[i
].name
, name
) == 0);
1946 as_fatal (_("Broken assembler. No assembly attempted."));
1948 /* We add all the general register names to the symbol table. This
1949 helps us detect invalid uses of them. */
1950 for (i
= 0; reg_names
[i
].name
; i
++)
1951 symbol_table_insert (symbol_new (reg_names
[i
].name
, reg_section
,
1952 reg_names
[i
].num
, // & RNUM_MASK,
1953 &zero_address_frag
));
1955 for (i
= 0; reg_names_n32n64
[i
].name
; i
++)
1956 symbol_table_insert (symbol_new (reg_names_n32n64
[i
].name
, reg_section
,
1957 reg_names_n32n64
[i
].num
, // & RNUM_MASK,
1958 &zero_address_frag
));
1960 for (i
= 0; reg_names_o32
[i
].name
; i
++)
1961 symbol_table_insert (symbol_new (reg_names_o32
[i
].name
, reg_section
,
1962 reg_names_o32
[i
].num
, // & RNUM_MASK,
1963 &zero_address_frag
));
1965 mips_no_prev_insn ();
1968 mips_cprmask
[0] = 0;
1969 mips_cprmask
[1] = 0;
1970 mips_cprmask
[2] = 0;
1971 mips_cprmask
[3] = 0;
1973 /* set the default alignment for the text section (2**2) */
1974 record_alignment (text_section
, 2);
1976 bfd_set_gp_size (stdoutput
, g_switch_value
);
1981 /* On a native system other than VxWorks, sections must be aligned
1982 to 16 byte boundaries. When configured for an embedded ELF
1983 target, we don't bother. */
1984 if (strncmp (TARGET_OS
, "elf", 3) != 0
1985 && strncmp (TARGET_OS
, "vxworks", 7) != 0)
1987 (void) bfd_set_section_alignment (stdoutput
, text_section
, 4);
1988 (void) bfd_set_section_alignment (stdoutput
, data_section
, 4);
1989 (void) bfd_set_section_alignment (stdoutput
, bss_section
, 4);
1992 /* Create a .reginfo section for register masks and a .mdebug
1993 section for debugging information. */
2001 subseg
= now_subseg
;
2003 /* The ABI says this section should be loaded so that the
2004 running program can access it. However, we don't load it
2005 if we are configured for an embedded target */
2006 flags
= SEC_READONLY
| SEC_DATA
;
2007 if (strncmp (TARGET_OS
, "elf", 3) != 0)
2008 flags
|= SEC_ALLOC
| SEC_LOAD
;
2010 if (mips_abi
!= N64_ABI
)
2012 sec
= subseg_new (".reginfo", (subsegT
) 0);
2014 bfd_set_section_flags (stdoutput
, sec
, flags
);
2015 bfd_set_section_alignment (stdoutput
, sec
, HAVE_NEWABI
? 3 : 2);
2017 mips_regmask_frag
= frag_more (sizeof (Elf32_External_RegInfo
));
2021 /* The 64-bit ABI uses a .MIPS.options section rather than
2022 .reginfo section. */
2023 sec
= subseg_new (".MIPS.options", (subsegT
) 0);
2024 bfd_set_section_flags (stdoutput
, sec
, flags
);
2025 bfd_set_section_alignment (stdoutput
, sec
, 3);
2027 /* Set up the option header. */
2029 Elf_Internal_Options opthdr
;
2032 opthdr
.kind
= ODK_REGINFO
;
2033 opthdr
.size
= (sizeof (Elf_External_Options
)
2034 + sizeof (Elf64_External_RegInfo
));
2037 f
= frag_more (sizeof (Elf_External_Options
));
2038 bfd_mips_elf_swap_options_out (stdoutput
, &opthdr
,
2039 (Elf_External_Options
*) f
);
2041 mips_regmask_frag
= frag_more (sizeof (Elf64_External_RegInfo
));
2045 if (ECOFF_DEBUGGING
)
2047 sec
= subseg_new (".mdebug", (subsegT
) 0);
2048 (void) bfd_set_section_flags (stdoutput
, sec
,
2049 SEC_HAS_CONTENTS
| SEC_READONLY
);
2050 (void) bfd_set_section_alignment (stdoutput
, sec
, 2);
2052 else if (mips_flag_pdr
)
2054 pdr_seg
= subseg_new (".pdr", (subsegT
) 0);
2055 (void) bfd_set_section_flags (stdoutput
, pdr_seg
,
2056 SEC_READONLY
| SEC_RELOC
2058 (void) bfd_set_section_alignment (stdoutput
, pdr_seg
, 2);
2061 subseg_set (seg
, subseg
);
2064 #endif /* OBJ_ELF */
2066 if (! ECOFF_DEBUGGING
)
2069 if (mips_fix_vr4120
)
2070 init_vr4120_conflicts ();
2076 if (! ECOFF_DEBUGGING
)
2081 md_assemble (char *str
)
2083 struct mips_cl_insn insn
;
2084 bfd_reloc_code_real_type unused_reloc
[3]
2085 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
2087 imm_expr
.X_op
= O_absent
;
2088 imm2_expr
.X_op
= O_absent
;
2089 offset_expr
.X_op
= O_absent
;
2090 imm_reloc
[0] = BFD_RELOC_UNUSED
;
2091 imm_reloc
[1] = BFD_RELOC_UNUSED
;
2092 imm_reloc
[2] = BFD_RELOC_UNUSED
;
2093 offset_reloc
[0] = BFD_RELOC_UNUSED
;
2094 offset_reloc
[1] = BFD_RELOC_UNUSED
;
2095 offset_reloc
[2] = BFD_RELOC_UNUSED
;
2097 if (mips_opts
.mips16
)
2098 mips16_ip (str
, &insn
);
2101 mips_ip (str
, &insn
);
2102 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2103 str
, insn
.insn_opcode
));
2108 as_bad ("%s `%s'", insn_error
, str
);
2112 if (insn
.insn_mo
->pinfo
== INSN_MACRO
)
2115 if (mips_opts
.mips16
)
2116 mips16_macro (&insn
);
2123 if (imm_expr
.X_op
!= O_absent
)
2124 append_insn (&insn
, &imm_expr
, imm_reloc
);
2125 else if (offset_expr
.X_op
!= O_absent
)
2126 append_insn (&insn
, &offset_expr
, offset_reloc
);
2128 append_insn (&insn
, NULL
, unused_reloc
);
2132 /* Convenience functions for abstracting away the differences between
2133 MIPS16 and non-MIPS16 relocations. */
2135 static inline bfd_boolean
2136 mips16_reloc_p (bfd_reloc_code_real_type reloc
)
2140 case BFD_RELOC_MIPS16_JMP
:
2141 case BFD_RELOC_MIPS16_GPREL
:
2142 case BFD_RELOC_MIPS16_GOT16
:
2143 case BFD_RELOC_MIPS16_CALL16
:
2144 case BFD_RELOC_MIPS16_HI16_S
:
2145 case BFD_RELOC_MIPS16_HI16
:
2146 case BFD_RELOC_MIPS16_LO16
:
2154 static inline bfd_boolean
2155 got16_reloc_p (bfd_reloc_code_real_type reloc
)
2157 return reloc
== BFD_RELOC_MIPS_GOT16
|| reloc
== BFD_RELOC_MIPS16_GOT16
;
2160 static inline bfd_boolean
2161 hi16_reloc_p (bfd_reloc_code_real_type reloc
)
2163 return reloc
== BFD_RELOC_HI16_S
|| reloc
== BFD_RELOC_MIPS16_HI16_S
;
2166 static inline bfd_boolean
2167 lo16_reloc_p (bfd_reloc_code_real_type reloc
)
2169 return reloc
== BFD_RELOC_LO16
|| reloc
== BFD_RELOC_MIPS16_LO16
;
2172 /* Return true if the given relocation might need a matching %lo().
2173 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
2174 need a matching %lo() when applied to local symbols. */
2176 static inline bfd_boolean
2177 reloc_needs_lo_p (bfd_reloc_code_real_type reloc
)
2179 return (HAVE_IN_PLACE_ADDENDS
2180 && (hi16_reloc_p (reloc
)
2181 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
2182 all GOT16 relocations evaluate to "G". */
2183 || (got16_reloc_p (reloc
) && mips_pic
!= VXWORKS_PIC
)));
2186 /* Return the type of %lo() reloc needed by RELOC, given that
2187 reloc_needs_lo_p. */
2189 static inline bfd_reloc_code_real_type
2190 matching_lo_reloc (bfd_reloc_code_real_type reloc
)
2192 return mips16_reloc_p (reloc
) ? BFD_RELOC_MIPS16_LO16
: BFD_RELOC_LO16
;
2195 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
2198 static inline bfd_boolean
2199 fixup_has_matching_lo_p (fixS
*fixp
)
2201 return (fixp
->fx_next
!= NULL
2202 && fixp
->fx_next
->fx_r_type
== matching_lo_reloc (fixp
->fx_r_type
)
2203 && fixp
->fx_addsy
== fixp
->fx_next
->fx_addsy
2204 && fixp
->fx_offset
== fixp
->fx_next
->fx_offset
);
2207 /* See whether instruction IP reads register REG. CLASS is the type
2211 insn_uses_reg (const struct mips_cl_insn
*ip
, unsigned int reg
,
2212 enum mips_regclass
class)
2214 if (class == MIPS16_REG
)
2216 assert (mips_opts
.mips16
);
2217 reg
= mips16_to_32_reg_map
[reg
];
2218 class = MIPS_GR_REG
;
2221 /* Don't report on general register ZERO, since it never changes. */
2222 if (class == MIPS_GR_REG
&& reg
== ZERO
)
2225 if (class == MIPS_FP_REG
)
2227 assert (! mips_opts
.mips16
);
2228 /* If we are called with either $f0 or $f1, we must check $f0.
2229 This is not optimal, because it will introduce an unnecessary
2230 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
2231 need to distinguish reading both $f0 and $f1 or just one of
2232 them. Note that we don't have to check the other way,
2233 because there is no instruction that sets both $f0 and $f1
2234 and requires a delay. */
2235 if ((ip
->insn_mo
->pinfo
& INSN_READ_FPR_S
)
2236 && ((EXTRACT_OPERAND (FS
, *ip
) & ~(unsigned) 1)
2237 == (reg
&~ (unsigned) 1)))
2239 if ((ip
->insn_mo
->pinfo
& INSN_READ_FPR_T
)
2240 && ((EXTRACT_OPERAND (FT
, *ip
) & ~(unsigned) 1)
2241 == (reg
&~ (unsigned) 1)))
2244 else if (! mips_opts
.mips16
)
2246 if ((ip
->insn_mo
->pinfo
& INSN_READ_GPR_S
)
2247 && EXTRACT_OPERAND (RS
, *ip
) == reg
)
2249 if ((ip
->insn_mo
->pinfo
& INSN_READ_GPR_T
)
2250 && EXTRACT_OPERAND (RT
, *ip
) == reg
)
2255 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_X
)
2256 && mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (RX
, *ip
)] == reg
)
2258 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_Y
)
2259 && mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (RY
, *ip
)] == reg
)
2261 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_Z
)
2262 && (mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (MOVE32Z
, *ip
)]
2265 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_T
) && reg
== TREG
)
2267 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_SP
) && reg
== SP
)
2269 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_31
) && reg
== RA
)
2271 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_GPR_X
)
2272 && MIPS16_EXTRACT_OPERAND (REGR32
, *ip
) == reg
)
2279 /* This function returns true if modifying a register requires a
2283 reg_needs_delay (unsigned int reg
)
2285 unsigned long prev_pinfo
;
2287 prev_pinfo
= history
[0].insn_mo
->pinfo
;
2288 if (! mips_opts
.noreorder
2289 && (((prev_pinfo
& INSN_LOAD_MEMORY_DELAY
)
2290 && ! gpr_interlocks
)
2291 || ((prev_pinfo
& INSN_LOAD_COPROC_DELAY
)
2292 && ! cop_interlocks
)))
2294 /* A load from a coprocessor or from memory. All load delays
2295 delay the use of general register rt for one instruction. */
2296 /* Itbl support may require additional care here. */
2297 know (prev_pinfo
& INSN_WRITE_GPR_T
);
2298 if (reg
== EXTRACT_OPERAND (RT
, history
[0]))
2305 /* Move all labels in insn_labels to the current insertion point. */
2308 mips_move_labels (void)
2310 segment_info_type
*si
= seg_info (now_seg
);
2311 struct insn_label_list
*l
;
2314 for (l
= si
->label_list
; l
!= NULL
; l
= l
->next
)
2316 assert (S_GET_SEGMENT (l
->label
) == now_seg
);
2317 symbol_set_frag (l
->label
, frag_now
);
2318 val
= (valueT
) frag_now_fix ();
2319 /* mips16 text labels are stored as odd. */
2320 if (mips_opts
.mips16
)
2322 S_SET_VALUE (l
->label
, val
);
2327 s_is_linkonce (symbolS
*sym
, segT from_seg
)
2329 bfd_boolean linkonce
= FALSE
;
2330 segT symseg
= S_GET_SEGMENT (sym
);
2332 if (symseg
!= from_seg
&& !S_IS_LOCAL (sym
))
2334 if ((bfd_get_section_flags (stdoutput
, symseg
) & SEC_LINK_ONCE
))
2337 /* The GNU toolchain uses an extension for ELF: a section
2338 beginning with the magic string .gnu.linkonce is a
2339 linkonce section. */
2340 if (strncmp (segment_name (symseg
), ".gnu.linkonce",
2341 sizeof ".gnu.linkonce" - 1) == 0)
2348 /* Mark instruction labels in mips16 mode. This permits the linker to
2349 handle them specially, such as generating jalx instructions when
2350 needed. We also make them odd for the duration of the assembly, in
2351 order to generate the right sort of code. We will make them even
2352 in the adjust_symtab routine, while leaving them marked. This is
2353 convenient for the debugger and the disassembler. The linker knows
2354 to make them odd again. */
2357 mips16_mark_labels (void)
2359 segment_info_type
*si
= seg_info (now_seg
);
2360 struct insn_label_list
*l
;
2362 if (!mips_opts
.mips16
)
2365 for (l
= si
->label_list
; l
!= NULL
; l
= l
->next
)
2367 symbolS
*label
= l
->label
;
2369 #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
2371 S_SET_OTHER (label
, ELF_ST_SET_MIPS16 (S_GET_OTHER (label
)));
2373 if ((S_GET_VALUE (label
) & 1) == 0
2374 /* Don't adjust the address if the label is global or weak, or
2375 in a link-once section, since we'll be emitting symbol reloc
2376 references to it which will be patched up by the linker, and
2377 the final value of the symbol may or may not be MIPS16. */
2378 && ! S_IS_WEAK (label
)
2379 && ! S_IS_EXTERNAL (label
)
2380 && ! s_is_linkonce (label
, now_seg
))
2381 S_SET_VALUE (label
, S_GET_VALUE (label
) | 1);
2385 /* End the current frag. Make it a variant frag and record the
2389 relax_close_frag (void)
2391 mips_macro_warning
.first_frag
= frag_now
;
2392 frag_var (rs_machine_dependent
, 0, 0,
2393 RELAX_ENCODE (mips_relax
.sizes
[0], mips_relax
.sizes
[1]),
2394 mips_relax
.symbol
, 0, (char *) mips_relax
.first_fixup
);
2396 memset (&mips_relax
.sizes
, 0, sizeof (mips_relax
.sizes
));
2397 mips_relax
.first_fixup
= 0;
2400 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
2401 See the comment above RELAX_ENCODE for more details. */
2404 relax_start (symbolS
*symbol
)
2406 assert (mips_relax
.sequence
== 0);
2407 mips_relax
.sequence
= 1;
2408 mips_relax
.symbol
= symbol
;
2411 /* Start generating the second version of a relaxable sequence.
2412 See the comment above RELAX_ENCODE for more details. */
2417 assert (mips_relax
.sequence
== 1);
2418 mips_relax
.sequence
= 2;
2421 /* End the current relaxable sequence. */
2426 assert (mips_relax
.sequence
== 2);
2427 relax_close_frag ();
2428 mips_relax
.sequence
= 0;
2431 /* Classify an instruction according to the FIX_VR4120_* enumeration.
2432 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
2433 by VR4120 errata. */
2436 classify_vr4120_insn (const char *name
)
2438 if (strncmp (name
, "macc", 4) == 0)
2439 return FIX_VR4120_MACC
;
2440 if (strncmp (name
, "dmacc", 5) == 0)
2441 return FIX_VR4120_DMACC
;
2442 if (strncmp (name
, "mult", 4) == 0)
2443 return FIX_VR4120_MULT
;
2444 if (strncmp (name
, "dmult", 5) == 0)
2445 return FIX_VR4120_DMULT
;
2446 if (strstr (name
, "div"))
2447 return FIX_VR4120_DIV
;
2448 if (strcmp (name
, "mtlo") == 0 || strcmp (name
, "mthi") == 0)
2449 return FIX_VR4120_MTHILO
;
2450 return NUM_FIX_VR4120_CLASSES
;
2453 /* Return the number of instructions that must separate INSN1 and INSN2,
2454 where INSN1 is the earlier instruction. Return the worst-case value
2455 for any INSN2 if INSN2 is null. */
2458 insns_between (const struct mips_cl_insn
*insn1
,
2459 const struct mips_cl_insn
*insn2
)
2461 unsigned long pinfo1
, pinfo2
;
2463 /* This function needs to know which pinfo flags are set for INSN2
2464 and which registers INSN2 uses. The former is stored in PINFO2 and
2465 the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2
2466 will have every flag set and INSN2_USES_REG will always return true. */
2467 pinfo1
= insn1
->insn_mo
->pinfo
;
2468 pinfo2
= insn2
? insn2
->insn_mo
->pinfo
: ~0U;
2470 #define INSN2_USES_REG(REG, CLASS) \
2471 (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
2473 /* For most targets, write-after-read dependencies on the HI and LO
2474 registers must be separated by at least two instructions. */
2475 if (!hilo_interlocks
)
2477 if ((pinfo1
& INSN_READ_LO
) && (pinfo2
& INSN_WRITE_LO
))
2479 if ((pinfo1
& INSN_READ_HI
) && (pinfo2
& INSN_WRITE_HI
))
2483 /* If we're working around r7000 errata, there must be two instructions
2484 between an mfhi or mflo and any instruction that uses the result. */
2485 if (mips_7000_hilo_fix
2486 && MF_HILO_INSN (pinfo1
)
2487 && INSN2_USES_REG (EXTRACT_OPERAND (RD
, *insn1
), MIPS_GR_REG
))
2490 /* If working around VR4120 errata, check for combinations that need
2491 a single intervening instruction. */
2492 if (mips_fix_vr4120
)
2494 unsigned int class1
, class2
;
2496 class1
= classify_vr4120_insn (insn1
->insn_mo
->name
);
2497 if (class1
!= NUM_FIX_VR4120_CLASSES
&& vr4120_conflicts
[class1
] != 0)
2501 class2
= classify_vr4120_insn (insn2
->insn_mo
->name
);
2502 if (vr4120_conflicts
[class1
] & (1 << class2
))
2507 if (!mips_opts
.mips16
)
2509 /* Check for GPR or coprocessor load delays. All such delays
2510 are on the RT register. */
2511 /* Itbl support may require additional care here. */
2512 if ((!gpr_interlocks
&& (pinfo1
& INSN_LOAD_MEMORY_DELAY
))
2513 || (!cop_interlocks
&& (pinfo1
& INSN_LOAD_COPROC_DELAY
)))
2515 know (pinfo1
& INSN_WRITE_GPR_T
);
2516 if (INSN2_USES_REG (EXTRACT_OPERAND (RT
, *insn1
), MIPS_GR_REG
))
2520 /* Check for generic coprocessor hazards.
2522 This case is not handled very well. There is no special
2523 knowledge of CP0 handling, and the coprocessors other than
2524 the floating point unit are not distinguished at all. */
2525 /* Itbl support may require additional care here. FIXME!
2526 Need to modify this to include knowledge about
2527 user specified delays! */
2528 else if ((!cop_interlocks
&& (pinfo1
& INSN_COPROC_MOVE_DELAY
))
2529 || (!cop_mem_interlocks
&& (pinfo1
& INSN_COPROC_MEMORY_DELAY
)))
2531 /* Handle cases where INSN1 writes to a known general coprocessor
2532 register. There must be a one instruction delay before INSN2
2533 if INSN2 reads that register, otherwise no delay is needed. */
2534 if (pinfo1
& INSN_WRITE_FPR_T
)
2536 if (INSN2_USES_REG (EXTRACT_OPERAND (FT
, *insn1
), MIPS_FP_REG
))
2539 else if (pinfo1
& INSN_WRITE_FPR_S
)
2541 if (INSN2_USES_REG (EXTRACT_OPERAND (FS
, *insn1
), MIPS_FP_REG
))
2546 /* Read-after-write dependencies on the control registers
2547 require a two-instruction gap. */
2548 if ((pinfo1
& INSN_WRITE_COND_CODE
)
2549 && (pinfo2
& INSN_READ_COND_CODE
))
2552 /* We don't know exactly what INSN1 does. If INSN2 is
2553 also a coprocessor instruction, assume there must be
2554 a one instruction gap. */
2555 if (pinfo2
& INSN_COP
)
2560 /* Check for read-after-write dependencies on the coprocessor
2561 control registers in cases where INSN1 does not need a general
2562 coprocessor delay. This means that INSN1 is a floating point
2563 comparison instruction. */
2564 /* Itbl support may require additional care here. */
2565 else if (!cop_interlocks
2566 && (pinfo1
& INSN_WRITE_COND_CODE
)
2567 && (pinfo2
& INSN_READ_COND_CODE
))
2571 #undef INSN2_USES_REG
2576 /* Return the number of nops that would be needed to work around the
2577 VR4130 mflo/mfhi errata if instruction INSN immediately followed
2578 the MAX_VR4130_NOPS instructions described by HISTORY. */
2581 nops_for_vr4130 (const struct mips_cl_insn
*history
,
2582 const struct mips_cl_insn
*insn
)
2586 /* Check if the instruction writes to HI or LO. MTHI and MTLO
2587 are not affected by the errata. */
2589 && ((insn
->insn_mo
->pinfo
& (INSN_WRITE_HI
| INSN_WRITE_LO
)) == 0
2590 || strcmp (insn
->insn_mo
->name
, "mtlo") == 0
2591 || strcmp (insn
->insn_mo
->name
, "mthi") == 0))
2594 /* Search for the first MFLO or MFHI. */
2595 for (i
= 0; i
< MAX_VR4130_NOPS
; i
++)
2596 if (!history
[i
].noreorder_p
&& MF_HILO_INSN (history
[i
].insn_mo
->pinfo
))
2598 /* Extract the destination register. */
2599 if (mips_opts
.mips16
)
2600 reg
= mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (RX
, history
[i
])];
2602 reg
= EXTRACT_OPERAND (RD
, history
[i
]);
2604 /* No nops are needed if INSN reads that register. */
2605 if (insn
!= NULL
&& insn_uses_reg (insn
, reg
, MIPS_GR_REG
))
2608 /* ...or if any of the intervening instructions do. */
2609 for (j
= 0; j
< i
; j
++)
2610 if (insn_uses_reg (&history
[j
], reg
, MIPS_GR_REG
))
2613 return MAX_VR4130_NOPS
- i
;
2618 /* Return the number of nops that would be needed if instruction INSN
2619 immediately followed the MAX_NOPS instructions given by HISTORY,
2620 where HISTORY[0] is the most recent instruction. If INSN is null,
2621 return the worse-case number of nops for any instruction. */
2624 nops_for_insn (const struct mips_cl_insn
*history
,
2625 const struct mips_cl_insn
*insn
)
2627 int i
, nops
, tmp_nops
;
2630 for (i
= 0; i
< MAX_DELAY_NOPS
; i
++)
2631 if (!history
[i
].noreorder_p
)
2633 tmp_nops
= insns_between (history
+ i
, insn
) - i
;
2634 if (tmp_nops
> nops
)
2638 if (mips_fix_vr4130
)
2640 tmp_nops
= nops_for_vr4130 (history
, insn
);
2641 if (tmp_nops
> nops
)
2648 /* The variable arguments provide NUM_INSNS extra instructions that
2649 might be added to HISTORY. Return the largest number of nops that
2650 would be needed after the extended sequence. */
2653 nops_for_sequence (int num_insns
, const struct mips_cl_insn
*history
, ...)
2656 struct mips_cl_insn buffer
[MAX_NOPS
];
2657 struct mips_cl_insn
*cursor
;
2660 va_start (args
, history
);
2661 cursor
= buffer
+ num_insns
;
2662 memcpy (cursor
, history
, (MAX_NOPS
- num_insns
) * sizeof (*cursor
));
2663 while (cursor
> buffer
)
2664 *--cursor
= *va_arg (args
, const struct mips_cl_insn
*);
2666 nops
= nops_for_insn (buffer
, NULL
);
2671 /* Like nops_for_insn, but if INSN is a branch, take into account the
2672 worst-case delay for the branch target. */
2675 nops_for_insn_or_target (const struct mips_cl_insn
*history
,
2676 const struct mips_cl_insn
*insn
)
2680 nops
= nops_for_insn (history
, insn
);
2681 if (insn
->insn_mo
->pinfo
& (INSN_UNCOND_BRANCH_DELAY
2682 | INSN_COND_BRANCH_DELAY
2683 | INSN_COND_BRANCH_LIKELY
))
2685 tmp_nops
= nops_for_sequence (2, history
, insn
, NOP_INSN
);
2686 if (tmp_nops
> nops
)
2689 else if (mips_opts
.mips16
&& (insn
->insn_mo
->pinfo
& MIPS16_INSN_BRANCH
))
2691 tmp_nops
= nops_for_sequence (1, history
, insn
);
2692 if (tmp_nops
> nops
)
2698 /* Output an instruction. IP is the instruction information.
2699 ADDRESS_EXPR is an operand of the instruction to be used with
2703 append_insn (struct mips_cl_insn
*ip
, expressionS
*address_expr
,
2704 bfd_reloc_code_real_type
*reloc_type
)
2706 unsigned long prev_pinfo
, pinfo
;
2707 relax_stateT prev_insn_frag_type
= 0;
2708 bfd_boolean relaxed_branch
= FALSE
;
2709 segment_info_type
*si
= seg_info (now_seg
);
2711 /* Mark instruction labels in mips16 mode. */
2712 mips16_mark_labels ();
2714 prev_pinfo
= history
[0].insn_mo
->pinfo
;
2715 pinfo
= ip
->insn_mo
->pinfo
;
2717 if (mips_relax
.sequence
!= 2 && !mips_opts
.noreorder
)
2719 /* There are a lot of optimizations we could do that we don't.
2720 In particular, we do not, in general, reorder instructions.
2721 If you use gcc with optimization, it will reorder
2722 instructions and generally do much more optimization then we
2723 do here; repeating all that work in the assembler would only
2724 benefit hand written assembly code, and does not seem worth
2726 int nops
= (mips_optimize
== 0
2727 ? nops_for_insn (history
, NULL
)
2728 : nops_for_insn_or_target (history
, ip
));
2732 unsigned long old_frag_offset
;
2735 old_frag
= frag_now
;
2736 old_frag_offset
= frag_now_fix ();
2738 for (i
= 0; i
< nops
; i
++)
2743 listing_prev_line ();
2744 /* We may be at the start of a variant frag. In case we
2745 are, make sure there is enough space for the frag
2746 after the frags created by listing_prev_line. The
2747 argument to frag_grow here must be at least as large
2748 as the argument to all other calls to frag_grow in
2749 this file. We don't have to worry about being in the
2750 middle of a variant frag, because the variants insert
2751 all needed nop instructions themselves. */
2755 mips_move_labels ();
2757 #ifndef NO_ECOFF_DEBUGGING
2758 if (ECOFF_DEBUGGING
)
2759 ecoff_fix_loc (old_frag
, old_frag_offset
);
2763 else if (mips_relax
.sequence
!= 2 && prev_nop_frag
!= NULL
)
2765 /* Work out how many nops in prev_nop_frag are needed by IP. */
2766 int nops
= nops_for_insn_or_target (history
, ip
);
2767 assert (nops
<= prev_nop_frag_holds
);
2769 /* Enforce NOPS as a minimum. */
2770 if (nops
> prev_nop_frag_required
)
2771 prev_nop_frag_required
= nops
;
2773 if (prev_nop_frag_holds
== prev_nop_frag_required
)
2775 /* Settle for the current number of nops. Update the history
2776 accordingly (for the benefit of any future .set reorder code). */
2777 prev_nop_frag
= NULL
;
2778 insert_into_history (prev_nop_frag_since
,
2779 prev_nop_frag_holds
, NOP_INSN
);
2783 /* Allow this instruction to replace one of the nops that was
2784 tentatively added to prev_nop_frag. */
2785 prev_nop_frag
->fr_fix
-= mips_opts
.mips16
? 2 : 4;
2786 prev_nop_frag_holds
--;
2787 prev_nop_frag_since
++;
2792 /* The value passed to dwarf2_emit_insn is the distance between
2793 the beginning of the current instruction and the address that
2794 should be recorded in the debug tables. For MIPS16 debug info
2795 we want to use ISA-encoded addresses, so we pass -1 for an
2796 address higher by one than the current. */
2797 dwarf2_emit_insn (mips_opts
.mips16
? -1 : 0);
2800 /* Record the frag type before frag_var. */
2801 if (history
[0].frag
)
2802 prev_insn_frag_type
= history
[0].frag
->fr_type
;
2805 && *reloc_type
== BFD_RELOC_16_PCREL_S2
2806 && (pinfo
& INSN_UNCOND_BRANCH_DELAY
|| pinfo
& INSN_COND_BRANCH_DELAY
2807 || pinfo
& INSN_COND_BRANCH_LIKELY
)
2808 && mips_relax_branch
2809 /* Don't try branch relaxation within .set nomacro, or within
2810 .set noat if we use $at for PIC computations. If it turns
2811 out that the branch was out-of-range, we'll get an error. */
2812 && !mips_opts
.warn_about_macros
2813 && (mips_opts
.at
|| mips_pic
== NO_PIC
)
2814 && !mips_opts
.mips16
)
2816 relaxed_branch
= TRUE
;
2817 add_relaxed_insn (ip
, (relaxed_branch_length
2819 (pinfo
& INSN_UNCOND_BRANCH_DELAY
) ? -1
2820 : (pinfo
& INSN_COND_BRANCH_LIKELY
) ? 1
2823 (pinfo
& INSN_UNCOND_BRANCH_DELAY
,
2824 pinfo
& INSN_COND_BRANCH_LIKELY
,
2825 pinfo
& INSN_WRITE_GPR_31
,
2827 address_expr
->X_add_symbol
,
2828 address_expr
->X_add_number
);
2829 *reloc_type
= BFD_RELOC_UNUSED
;
2831 else if (*reloc_type
> BFD_RELOC_UNUSED
)
2833 /* We need to set up a variant frag. */
2834 assert (mips_opts
.mips16
&& address_expr
!= NULL
);
2835 add_relaxed_insn (ip
, 4, 0,
2837 (*reloc_type
- BFD_RELOC_UNUSED
,
2838 mips16_small
, mips16_ext
,
2839 prev_pinfo
& INSN_UNCOND_BRANCH_DELAY
,
2840 history
[0].mips16_absolute_jump_p
),
2841 make_expr_symbol (address_expr
), 0);
2843 else if (mips_opts
.mips16
2845 && *reloc_type
!= BFD_RELOC_MIPS16_JMP
)
2847 if ((pinfo
& INSN_UNCOND_BRANCH_DELAY
) == 0)
2848 /* Make sure there is enough room to swap this instruction with
2849 a following jump instruction. */
2851 add_fixed_insn (ip
);
2855 if (mips_opts
.mips16
2856 && mips_opts
.noreorder
2857 && (prev_pinfo
& INSN_UNCOND_BRANCH_DELAY
) != 0)
2858 as_warn (_("extended instruction in delay slot"));
2860 if (mips_relax
.sequence
)
2862 /* If we've reached the end of this frag, turn it into a variant
2863 frag and record the information for the instructions we've
2865 if (frag_room () < 4)
2866 relax_close_frag ();
2867 mips_relax
.sizes
[mips_relax
.sequence
- 1] += 4;
2870 if (mips_relax
.sequence
!= 2)
2871 mips_macro_warning
.sizes
[0] += 4;
2872 if (mips_relax
.sequence
!= 1)
2873 mips_macro_warning
.sizes
[1] += 4;
2875 if (mips_opts
.mips16
)
2878 ip
->mips16_absolute_jump_p
= (*reloc_type
== BFD_RELOC_MIPS16_JMP
);
2880 add_fixed_insn (ip
);
2883 if (address_expr
!= NULL
&& *reloc_type
<= BFD_RELOC_UNUSED
)
2885 if (address_expr
->X_op
== O_constant
)
2889 switch (*reloc_type
)
2892 ip
->insn_opcode
|= address_expr
->X_add_number
;
2895 case BFD_RELOC_MIPS_HIGHEST
:
2896 tmp
= (address_expr
->X_add_number
+ 0x800080008000ull
) >> 48;
2897 ip
->insn_opcode
|= tmp
& 0xffff;
2900 case BFD_RELOC_MIPS_HIGHER
:
2901 tmp
= (address_expr
->X_add_number
+ 0x80008000ull
) >> 32;
2902 ip
->insn_opcode
|= tmp
& 0xffff;
2905 case BFD_RELOC_HI16_S
:
2906 tmp
= (address_expr
->X_add_number
+ 0x8000) >> 16;
2907 ip
->insn_opcode
|= tmp
& 0xffff;
2910 case BFD_RELOC_HI16
:
2911 ip
->insn_opcode
|= (address_expr
->X_add_number
>> 16) & 0xffff;
2914 case BFD_RELOC_UNUSED
:
2915 case BFD_RELOC_LO16
:
2916 case BFD_RELOC_MIPS_GOT_DISP
:
2917 ip
->insn_opcode
|= address_expr
->X_add_number
& 0xffff;
2920 case BFD_RELOC_MIPS_JMP
:
2921 if ((address_expr
->X_add_number
& 3) != 0)
2922 as_bad (_("jump to misaligned address (0x%lx)"),
2923 (unsigned long) address_expr
->X_add_number
);
2924 ip
->insn_opcode
|= (address_expr
->X_add_number
>> 2) & 0x3ffffff;
2927 case BFD_RELOC_MIPS16_JMP
:
2928 if ((address_expr
->X_add_number
& 3) != 0)
2929 as_bad (_("jump to misaligned address (0x%lx)"),
2930 (unsigned long) address_expr
->X_add_number
);
2932 (((address_expr
->X_add_number
& 0x7c0000) << 3)
2933 | ((address_expr
->X_add_number
& 0xf800000) >> 7)
2934 | ((address_expr
->X_add_number
& 0x3fffc) >> 2));
2937 case BFD_RELOC_16_PCREL_S2
:
2938 if ((address_expr
->X_add_number
& 3) != 0)
2939 as_bad (_("branch to misaligned address (0x%lx)"),
2940 (unsigned long) address_expr
->X_add_number
);
2941 if (mips_relax_branch
)
2943 if ((address_expr
->X_add_number
+ 0x20000) & ~0x3ffff)
2944 as_bad (_("branch address range overflow (0x%lx)"),
2945 (unsigned long) address_expr
->X_add_number
);
2946 ip
->insn_opcode
|= (address_expr
->X_add_number
>> 2) & 0xffff;
2953 else if (*reloc_type
< BFD_RELOC_UNUSED
)
2956 reloc_howto_type
*howto
;
2959 /* In a compound relocation, it is the final (outermost)
2960 operator that determines the relocated field. */
2961 for (i
= 1; i
< 3; i
++)
2962 if (reloc_type
[i
] == BFD_RELOC_UNUSED
)
2965 howto
= bfd_reloc_type_lookup (stdoutput
, reloc_type
[i
- 1]);
2966 ip
->fixp
[0] = fix_new_exp (ip
->frag
, ip
->where
,
2967 bfd_get_reloc_size (howto
),
2969 reloc_type
[0] == BFD_RELOC_16_PCREL_S2
,
2972 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
2973 if (reloc_type
[0] == BFD_RELOC_MIPS16_JMP
2974 && ip
->fixp
[0]->fx_addsy
)
2975 *symbol_get_tc (ip
->fixp
[0]->fx_addsy
) = 1;
2977 /* These relocations can have an addend that won't fit in
2978 4 octets for 64bit assembly. */
2980 && ! howto
->partial_inplace
2981 && (reloc_type
[0] == BFD_RELOC_16
2982 || reloc_type
[0] == BFD_RELOC_32
2983 || reloc_type
[0] == BFD_RELOC_MIPS_JMP
2984 || reloc_type
[0] == BFD_RELOC_GPREL16
2985 || reloc_type
[0] == BFD_RELOC_MIPS_LITERAL
2986 || reloc_type
[0] == BFD_RELOC_GPREL32
2987 || reloc_type
[0] == BFD_RELOC_64
2988 || reloc_type
[0] == BFD_RELOC_CTOR
2989 || reloc_type
[0] == BFD_RELOC_MIPS_SUB
2990 || reloc_type
[0] == BFD_RELOC_MIPS_HIGHEST
2991 || reloc_type
[0] == BFD_RELOC_MIPS_HIGHER
2992 || reloc_type
[0] == BFD_RELOC_MIPS_SCN_DISP
2993 || reloc_type
[0] == BFD_RELOC_MIPS_REL16
2994 || reloc_type
[0] == BFD_RELOC_MIPS_RELGOT
2995 || reloc_type
[0] == BFD_RELOC_MIPS16_GPREL
2996 || hi16_reloc_p (reloc_type
[0])
2997 || lo16_reloc_p (reloc_type
[0])))
2998 ip
->fixp
[0]->fx_no_overflow
= 1;
3000 if (mips_relax
.sequence
)
3002 if (mips_relax
.first_fixup
== 0)
3003 mips_relax
.first_fixup
= ip
->fixp
[0];
3005 else if (reloc_needs_lo_p (*reloc_type
))
3007 struct mips_hi_fixup
*hi_fixup
;
3009 /* Reuse the last entry if it already has a matching %lo. */
3010 hi_fixup
= mips_hi_fixup_list
;
3012 || !fixup_has_matching_lo_p (hi_fixup
->fixp
))
3014 hi_fixup
= ((struct mips_hi_fixup
*)
3015 xmalloc (sizeof (struct mips_hi_fixup
)));
3016 hi_fixup
->next
= mips_hi_fixup_list
;
3017 mips_hi_fixup_list
= hi_fixup
;
3019 hi_fixup
->fixp
= ip
->fixp
[0];
3020 hi_fixup
->seg
= now_seg
;
3023 /* Add fixups for the second and third relocations, if given.
3024 Note that the ABI allows the second relocation to be
3025 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
3026 moment we only use RSS_UNDEF, but we could add support
3027 for the others if it ever becomes necessary. */
3028 for (i
= 1; i
< 3; i
++)
3029 if (reloc_type
[i
] != BFD_RELOC_UNUSED
)
3031 ip
->fixp
[i
] = fix_new (ip
->frag
, ip
->where
,
3032 ip
->fixp
[0]->fx_size
, NULL
, 0,
3033 FALSE
, reloc_type
[i
]);
3035 /* Use fx_tcbit to mark compound relocs. */
3036 ip
->fixp
[0]->fx_tcbit
= 1;
3037 ip
->fixp
[i
]->fx_tcbit
= 1;
3043 /* Update the register mask information. */
3044 if (! mips_opts
.mips16
)
3046 if (pinfo
& INSN_WRITE_GPR_D
)
3047 mips_gprmask
|= 1 << EXTRACT_OPERAND (RD
, *ip
);
3048 if ((pinfo
& (INSN_WRITE_GPR_T
| INSN_READ_GPR_T
)) != 0)
3049 mips_gprmask
|= 1 << EXTRACT_OPERAND (RT
, *ip
);
3050 if (pinfo
& INSN_READ_GPR_S
)
3051 mips_gprmask
|= 1 << EXTRACT_OPERAND (RS
, *ip
);
3052 if (pinfo
& INSN_WRITE_GPR_31
)
3053 mips_gprmask
|= 1 << RA
;
3054 if (pinfo
& INSN_WRITE_FPR_D
)
3055 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FD
, *ip
);
3056 if ((pinfo
& (INSN_WRITE_FPR_S
| INSN_READ_FPR_S
)) != 0)
3057 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FS
, *ip
);
3058 if ((pinfo
& (INSN_WRITE_FPR_T
| INSN_READ_FPR_T
)) != 0)
3059 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FT
, *ip
);
3060 if ((pinfo
& INSN_READ_FPR_R
) != 0)
3061 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FR
, *ip
);
3062 if (pinfo
& INSN_COP
)
3064 /* We don't keep enough information to sort these cases out.
3065 The itbl support does keep this information however, although
3066 we currently don't support itbl fprmats as part of the cop
3067 instruction. May want to add this support in the future. */
3069 /* Never set the bit for $0, which is always zero. */
3070 mips_gprmask
&= ~1 << 0;
3074 if (pinfo
& (MIPS16_INSN_WRITE_X
| MIPS16_INSN_READ_X
))
3075 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (RX
, *ip
);
3076 if (pinfo
& (MIPS16_INSN_WRITE_Y
| MIPS16_INSN_READ_Y
))
3077 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (RY
, *ip
);
3078 if (pinfo
& MIPS16_INSN_WRITE_Z
)
3079 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (RZ
, *ip
);
3080 if (pinfo
& (MIPS16_INSN_WRITE_T
| MIPS16_INSN_READ_T
))
3081 mips_gprmask
|= 1 << TREG
;
3082 if (pinfo
& (MIPS16_INSN_WRITE_SP
| MIPS16_INSN_READ_SP
))
3083 mips_gprmask
|= 1 << SP
;
3084 if (pinfo
& (MIPS16_INSN_WRITE_31
| MIPS16_INSN_READ_31
))
3085 mips_gprmask
|= 1 << RA
;
3086 if (pinfo
& MIPS16_INSN_WRITE_GPR_Y
)
3087 mips_gprmask
|= 1 << MIPS16OP_EXTRACT_REG32R (ip
->insn_opcode
);
3088 if (pinfo
& MIPS16_INSN_READ_Z
)
3089 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z
, *ip
);
3090 if (pinfo
& MIPS16_INSN_READ_GPR_X
)
3091 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (REGR32
, *ip
);
3094 if (mips_relax
.sequence
!= 2 && !mips_opts
.noreorder
)
3096 /* Filling the branch delay slot is more complex. We try to
3097 switch the branch with the previous instruction, which we can
3098 do if the previous instruction does not set up a condition
3099 that the branch tests and if the branch is not itself the
3100 target of any branch. */
3101 if ((pinfo
& INSN_UNCOND_BRANCH_DELAY
)
3102 || (pinfo
& INSN_COND_BRANCH_DELAY
))
3104 if (mips_optimize
< 2
3105 /* If we have seen .set volatile or .set nomove, don't
3107 || mips_opts
.nomove
!= 0
3108 /* We can't swap if the previous instruction's position
3110 || history
[0].fixed_p
3111 /* If the previous previous insn was in a .set
3112 noreorder, we can't swap. Actually, the MIPS
3113 assembler will swap in this situation. However, gcc
3114 configured -with-gnu-as will generate code like
3120 in which we can not swap the bne and INSN. If gcc is
3121 not configured -with-gnu-as, it does not output the
3123 || history
[1].noreorder_p
3124 /* If the branch is itself the target of a branch, we
3125 can not swap. We cheat on this; all we check for is
3126 whether there is a label on this instruction. If
3127 there are any branches to anything other than a
3128 label, users must use .set noreorder. */
3129 || si
->label_list
!= NULL
3130 /* If the previous instruction is in a variant frag
3131 other than this branch's one, we cannot do the swap.
3132 This does not apply to the mips16, which uses variant
3133 frags for different purposes. */
3134 || (! mips_opts
.mips16
3135 && prev_insn_frag_type
== rs_machine_dependent
)
3136 /* Check for conflicts between the branch and the instructions
3137 before the candidate delay slot. */
3138 || nops_for_insn (history
+ 1, ip
) > 0
3139 /* Check for conflicts between the swapped sequence and the
3140 target of the branch. */
3141 || nops_for_sequence (2, history
+ 1, ip
, history
) > 0
3142 /* We do not swap with a trap instruction, since it
3143 complicates trap handlers to have the trap
3144 instruction be in a delay slot. */
3145 || (prev_pinfo
& INSN_TRAP
)
3146 /* If the branch reads a register that the previous
3147 instruction sets, we can not swap. */
3148 || (! mips_opts
.mips16
3149 && (prev_pinfo
& INSN_WRITE_GPR_T
)
3150 && insn_uses_reg (ip
, EXTRACT_OPERAND (RT
, history
[0]),
3152 || (! mips_opts
.mips16
3153 && (prev_pinfo
& INSN_WRITE_GPR_D
)
3154 && insn_uses_reg (ip
, EXTRACT_OPERAND (RD
, history
[0]),
3156 || (mips_opts
.mips16
3157 && (((prev_pinfo
& MIPS16_INSN_WRITE_X
)
3159 (ip
, MIPS16_EXTRACT_OPERAND (RX
, history
[0]),
3161 || ((prev_pinfo
& MIPS16_INSN_WRITE_Y
)
3163 (ip
, MIPS16_EXTRACT_OPERAND (RY
, history
[0]),
3165 || ((prev_pinfo
& MIPS16_INSN_WRITE_Z
)
3167 (ip
, MIPS16_EXTRACT_OPERAND (RZ
, history
[0]),
3169 || ((prev_pinfo
& MIPS16_INSN_WRITE_T
)
3170 && insn_uses_reg (ip
, TREG
, MIPS_GR_REG
))
3171 || ((prev_pinfo
& MIPS16_INSN_WRITE_31
)
3172 && insn_uses_reg (ip
, RA
, MIPS_GR_REG
))
3173 || ((prev_pinfo
& MIPS16_INSN_WRITE_GPR_Y
)
3174 && insn_uses_reg (ip
,
3175 MIPS16OP_EXTRACT_REG32R
3176 (history
[0].insn_opcode
),
3178 /* If the branch writes a register that the previous
3179 instruction sets, we can not swap (we know that
3180 branches write only to RD or to $31). */
3181 || (! mips_opts
.mips16
3182 && (prev_pinfo
& INSN_WRITE_GPR_T
)
3183 && (((pinfo
& INSN_WRITE_GPR_D
)
3184 && (EXTRACT_OPERAND (RT
, history
[0])
3185 == EXTRACT_OPERAND (RD
, *ip
)))
3186 || ((pinfo
& INSN_WRITE_GPR_31
)
3187 && EXTRACT_OPERAND (RT
, history
[0]) == RA
)))
3188 || (! mips_opts
.mips16
3189 && (prev_pinfo
& INSN_WRITE_GPR_D
)
3190 && (((pinfo
& INSN_WRITE_GPR_D
)
3191 && (EXTRACT_OPERAND (RD
, history
[0])
3192 == EXTRACT_OPERAND (RD
, *ip
)))
3193 || ((pinfo
& INSN_WRITE_GPR_31
)
3194 && EXTRACT_OPERAND (RD
, history
[0]) == RA
)))
3195 || (mips_opts
.mips16
3196 && (pinfo
& MIPS16_INSN_WRITE_31
)
3197 && ((prev_pinfo
& MIPS16_INSN_WRITE_31
)
3198 || ((prev_pinfo
& MIPS16_INSN_WRITE_GPR_Y
)
3199 && (MIPS16OP_EXTRACT_REG32R (history
[0].insn_opcode
)
3201 /* If the branch writes a register that the previous
3202 instruction reads, we can not swap (we know that
3203 branches only write to RD or to $31). */
3204 || (! mips_opts
.mips16
3205 && (pinfo
& INSN_WRITE_GPR_D
)
3206 && insn_uses_reg (&history
[0],
3207 EXTRACT_OPERAND (RD
, *ip
),
3209 || (! mips_opts
.mips16
3210 && (pinfo
& INSN_WRITE_GPR_31
)
3211 && insn_uses_reg (&history
[0], RA
, MIPS_GR_REG
))
3212 || (mips_opts
.mips16
3213 && (pinfo
& MIPS16_INSN_WRITE_31
)
3214 && insn_uses_reg (&history
[0], RA
, MIPS_GR_REG
))
3215 /* If one instruction sets a condition code and the
3216 other one uses a condition code, we can not swap. */
3217 || ((pinfo
& INSN_READ_COND_CODE
)
3218 && (prev_pinfo
& INSN_WRITE_COND_CODE
))
3219 || ((pinfo
& INSN_WRITE_COND_CODE
)
3220 && (prev_pinfo
& INSN_READ_COND_CODE
))
3221 /* If the previous instruction uses the PC, we can not
3223 || (mips_opts
.mips16
3224 && (prev_pinfo
& MIPS16_INSN_READ_PC
))
3225 /* If the previous instruction had a fixup in mips16
3226 mode, we can not swap. This normally means that the
3227 previous instruction was a 4 byte branch anyhow. */
3228 || (mips_opts
.mips16
&& history
[0].fixp
[0])
3229 /* If the previous instruction is a sync, sync.l, or
3230 sync.p, we can not swap. */
3231 || (prev_pinfo
& INSN_SYNC
))
3233 if (mips_opts
.mips16
3234 && (pinfo
& INSN_UNCOND_BRANCH_DELAY
)
3235 && (pinfo
& (MIPS16_INSN_READ_X
| MIPS16_INSN_READ_31
))
3236 && ISA_SUPPORTS_MIPS16E
)
3238 /* Convert MIPS16 jr/jalr into a "compact" jump. */
3239 ip
->insn_opcode
|= 0x0080;
3241 insert_into_history (0, 1, ip
);
3245 /* We could do even better for unconditional branches to
3246 portions of this object file; we could pick up the
3247 instruction at the destination, put it in the delay
3248 slot, and bump the destination address. */
3249 insert_into_history (0, 1, ip
);
3253 if (mips_relax
.sequence
)
3254 mips_relax
.sizes
[mips_relax
.sequence
- 1] += 4;
3258 /* It looks like we can actually do the swap. */
3259 struct mips_cl_insn delay
= history
[0];
3260 if (mips_opts
.mips16
)
3262 know (delay
.frag
== ip
->frag
);
3263 move_insn (ip
, delay
.frag
, delay
.where
);
3264 move_insn (&delay
, ip
->frag
, ip
->where
+ insn_length (ip
));
3266 else if (relaxed_branch
)
3268 /* Add the delay slot instruction to the end of the
3269 current frag and shrink the fixed part of the
3270 original frag. If the branch occupies the tail of
3271 the latter, move it backwards to cover the gap. */
3272 delay
.frag
->fr_fix
-= 4;
3273 if (delay
.frag
== ip
->frag
)
3274 move_insn (ip
, ip
->frag
, ip
->where
- 4);
3275 add_fixed_insn (&delay
);
3279 move_insn (&delay
, ip
->frag
, ip
->where
);
3280 move_insn (ip
, history
[0].frag
, history
[0].where
);
3284 insert_into_history (0, 1, &delay
);
3287 /* If that was an unconditional branch, forget the previous
3288 insn information. */
3289 if (pinfo
& INSN_UNCOND_BRANCH_DELAY
)
3290 mips_no_prev_insn ();
3292 else if (pinfo
& INSN_COND_BRANCH_LIKELY
)
3294 /* We don't yet optimize a branch likely. What we should do
3295 is look at the target, copy the instruction found there
3296 into the delay slot, and increment the branch to jump to
3297 the next instruction. */
3298 insert_into_history (0, 1, ip
);
3302 insert_into_history (0, 1, ip
);
3305 insert_into_history (0, 1, ip
);
3307 /* We just output an insn, so the next one doesn't have a label. */
3308 mips_clear_insn_labels ();
3311 /* Forget that there was any previous instruction or label. */
3314 mips_no_prev_insn (void)
3316 prev_nop_frag
= NULL
;
3317 insert_into_history (0, ARRAY_SIZE (history
), NOP_INSN
);
3318 mips_clear_insn_labels ();
3321 /* This function must be called before we emit something other than
3322 instructions. It is like mips_no_prev_insn except that it inserts
3323 any NOPS that might be needed by previous instructions. */
3326 mips_emit_delays (void)
3328 if (! mips_opts
.noreorder
)
3330 int nops
= nops_for_insn (history
, NULL
);
3334 add_fixed_insn (NOP_INSN
);
3335 mips_move_labels ();
3338 mips_no_prev_insn ();
3341 /* Start a (possibly nested) noreorder block. */
3344 start_noreorder (void)
3346 if (mips_opts
.noreorder
== 0)
3351 /* None of the instructions before the .set noreorder can be moved. */
3352 for (i
= 0; i
< ARRAY_SIZE (history
); i
++)
3353 history
[i
].fixed_p
= 1;
3355 /* Insert any nops that might be needed between the .set noreorder
3356 block and the previous instructions. We will later remove any
3357 nops that turn out not to be needed. */
3358 nops
= nops_for_insn (history
, NULL
);
3361 if (mips_optimize
!= 0)
3363 /* Record the frag which holds the nop instructions, so
3364 that we can remove them if we don't need them. */
3365 frag_grow (mips_opts
.mips16
? nops
* 2 : nops
* 4);
3366 prev_nop_frag
= frag_now
;
3367 prev_nop_frag_holds
= nops
;
3368 prev_nop_frag_required
= 0;
3369 prev_nop_frag_since
= 0;
3372 for (; nops
> 0; --nops
)
3373 add_fixed_insn (NOP_INSN
);
3375 /* Move on to a new frag, so that it is safe to simply
3376 decrease the size of prev_nop_frag. */
3377 frag_wane (frag_now
);
3379 mips_move_labels ();
3381 mips16_mark_labels ();
3382 mips_clear_insn_labels ();
3384 mips_opts
.noreorder
++;
3385 mips_any_noreorder
= 1;
3388 /* End a nested noreorder block. */
3391 end_noreorder (void)
3393 mips_opts
.noreorder
--;
3394 if (mips_opts
.noreorder
== 0 && prev_nop_frag
!= NULL
)
3396 /* Commit to inserting prev_nop_frag_required nops and go back to
3397 handling nop insertion the .set reorder way. */
3398 prev_nop_frag
->fr_fix
-= ((prev_nop_frag_holds
- prev_nop_frag_required
)
3399 * (mips_opts
.mips16
? 2 : 4));
3400 insert_into_history (prev_nop_frag_since
,
3401 prev_nop_frag_required
, NOP_INSN
);
3402 prev_nop_frag
= NULL
;
3406 /* Set up global variables for the start of a new macro. */
3411 memset (&mips_macro_warning
.sizes
, 0, sizeof (mips_macro_warning
.sizes
));
3412 mips_macro_warning
.delay_slot_p
= (mips_opts
.noreorder
3413 && (history
[0].insn_mo
->pinfo
3414 & (INSN_UNCOND_BRANCH_DELAY
3415 | INSN_COND_BRANCH_DELAY
3416 | INSN_COND_BRANCH_LIKELY
)) != 0);
3419 /* Given that a macro is longer than 4 bytes, return the appropriate warning
3420 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
3421 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
3424 macro_warning (relax_substateT subtype
)
3426 if (subtype
& RELAX_DELAY_SLOT
)
3427 return _("Macro instruction expanded into multiple instructions"
3428 " in a branch delay slot");
3429 else if (subtype
& RELAX_NOMACRO
)
3430 return _("Macro instruction expanded into multiple instructions");
3435 /* Finish up a macro. Emit warnings as appropriate. */
3440 if (mips_macro_warning
.sizes
[0] > 4 || mips_macro_warning
.sizes
[1] > 4)
3442 relax_substateT subtype
;
3444 /* Set up the relaxation warning flags. */
3446 if (mips_macro_warning
.sizes
[1] > mips_macro_warning
.sizes
[0])
3447 subtype
|= RELAX_SECOND_LONGER
;
3448 if (mips_opts
.warn_about_macros
)
3449 subtype
|= RELAX_NOMACRO
;
3450 if (mips_macro_warning
.delay_slot_p
)
3451 subtype
|= RELAX_DELAY_SLOT
;
3453 if (mips_macro_warning
.sizes
[0] > 4 && mips_macro_warning
.sizes
[1] > 4)
3455 /* Either the macro has a single implementation or both
3456 implementations are longer than 4 bytes. Emit the
3458 const char *msg
= macro_warning (subtype
);
3464 /* One implementation might need a warning but the other
3465 definitely doesn't. */
3466 mips_macro_warning
.first_frag
->fr_subtype
|= subtype
;
3471 /* Read a macro's relocation codes from *ARGS and store them in *R.
3472 The first argument in *ARGS will be either the code for a single
3473 relocation or -1 followed by the three codes that make up a
3474 composite relocation. */
3477 macro_read_relocs (va_list *args
, bfd_reloc_code_real_type
*r
)
3481 next
= va_arg (*args
, int);
3483 r
[0] = (bfd_reloc_code_real_type
) next
;
3485 for (i
= 0; i
< 3; i
++)
3486 r
[i
] = (bfd_reloc_code_real_type
) va_arg (*args
, int);
3489 /* Build an instruction created by a macro expansion. This is passed
3490 a pointer to the count of instructions created so far, an
3491 expression, the name of the instruction to build, an operand format
3492 string, and corresponding arguments. */
3495 macro_build (expressionS
*ep
, const char *name
, const char *fmt
, ...)
3497 const struct mips_opcode
*mo
;
3498 struct mips_cl_insn insn
;
3499 bfd_reloc_code_real_type r
[3];
3502 va_start (args
, fmt
);
3504 if (mips_opts
.mips16
)
3506 mips16_macro_build (ep
, name
, fmt
, args
);
3511 r
[0] = BFD_RELOC_UNUSED
;
3512 r
[1] = BFD_RELOC_UNUSED
;
3513 r
[2] = BFD_RELOC_UNUSED
;
3514 mo
= (struct mips_opcode
*) hash_find (op_hash
, name
);
3516 assert (strcmp (name
, mo
->name
) == 0);
3520 /* Search until we get a match for NAME. It is assumed here that
3521 macros will never generate MDMX, MIPS-3D, or MT instructions. */
3522 if (strcmp (fmt
, mo
->args
) == 0
3523 && mo
->pinfo
!= INSN_MACRO
3524 && is_opcode_valid (mo
, TRUE
))
3529 assert (strcmp (name
, mo
->name
) == 0);
3532 create_insn (&insn
, mo
);
3550 INSERT_OPERAND (SHAMT
, insn
, va_arg (args
, int));
3555 /* Note that in the macro case, these arguments are already
3556 in MSB form. (When handling the instruction in the
3557 non-macro case, these arguments are sizes from which
3558 MSB values must be calculated.) */
3559 INSERT_OPERAND (INSMSB
, insn
, va_arg (args
, int));
3565 /* Note that in the macro case, these arguments are already
3566 in MSBD form. (When handling the instruction in the
3567 non-macro case, these arguments are sizes from which
3568 MSBD values must be calculated.) */
3569 INSERT_OPERAND (EXTMSBD
, insn
, va_arg (args
, int));
3573 INSERT_OPERAND (SEQI
, insn
, va_arg (args
, int));
3582 INSERT_OPERAND (BP
, insn
, va_arg (args
, int));
3588 INSERT_OPERAND (RT
, insn
, va_arg (args
, int));
3592 INSERT_OPERAND (CODE
, insn
, va_arg (args
, int));
3597 INSERT_OPERAND (FT
, insn
, va_arg (args
, int));
3603 INSERT_OPERAND (RD
, insn
, va_arg (args
, int));
3608 int tmp
= va_arg (args
, int);
3610 INSERT_OPERAND (RT
, insn
, tmp
);
3611 INSERT_OPERAND (RD
, insn
, tmp
);
3617 INSERT_OPERAND (FS
, insn
, va_arg (args
, int));
3624 INSERT_OPERAND (SHAMT
, insn
, va_arg (args
, int));
3628 INSERT_OPERAND (FD
, insn
, va_arg (args
, int));
3632 INSERT_OPERAND (CODE20
, insn
, va_arg (args
, int));
3636 INSERT_OPERAND (CODE19
, insn
, va_arg (args
, int));
3640 INSERT_OPERAND (CODE2
, insn
, va_arg (args
, int));
3647 INSERT_OPERAND (RS
, insn
, va_arg (args
, int));
3653 macro_read_relocs (&args
, r
);
3654 assert (*r
== BFD_RELOC_GPREL16
3655 || *r
== BFD_RELOC_MIPS_LITERAL
3656 || *r
== BFD_RELOC_MIPS_HIGHER
3657 || *r
== BFD_RELOC_HI16_S
3658 || *r
== BFD_RELOC_LO16
3659 || *r
== BFD_RELOC_MIPS_GOT16
3660 || *r
== BFD_RELOC_MIPS_CALL16
3661 || *r
== BFD_RELOC_MIPS_GOT_DISP
3662 || *r
== BFD_RELOC_MIPS_GOT_PAGE
3663 || *r
== BFD_RELOC_MIPS_GOT_OFST
3664 || *r
== BFD_RELOC_MIPS_GOT_LO16
3665 || *r
== BFD_RELOC_MIPS_CALL_LO16
);
3669 macro_read_relocs (&args
, r
);
3671 && (ep
->X_op
== O_constant
3672 || (ep
->X_op
== O_symbol
3673 && (*r
== BFD_RELOC_MIPS_HIGHEST
3674 || *r
== BFD_RELOC_HI16_S
3675 || *r
== BFD_RELOC_HI16
3676 || *r
== BFD_RELOC_GPREL16
3677 || *r
== BFD_RELOC_MIPS_GOT_HI16
3678 || *r
== BFD_RELOC_MIPS_CALL_HI16
))));
3682 assert (ep
!= NULL
);
3685 * This allows macro() to pass an immediate expression for
3686 * creating short branches without creating a symbol.
3688 * We don't allow branch relaxation for these branches, as
3689 * they should only appear in ".set nomacro" anyway.
3691 if (ep
->X_op
== O_constant
)
3693 if ((ep
->X_add_number
& 3) != 0)
3694 as_bad (_("branch to misaligned address (0x%lx)"),
3695 (unsigned long) ep
->X_add_number
);
3696 if ((ep
->X_add_number
+ 0x20000) & ~0x3ffff)
3697 as_bad (_("branch address range overflow (0x%lx)"),
3698 (unsigned long) ep
->X_add_number
);
3699 insn
.insn_opcode
|= (ep
->X_add_number
>> 2) & 0xffff;
3703 *r
= BFD_RELOC_16_PCREL_S2
;
3707 assert (ep
!= NULL
);
3708 *r
= BFD_RELOC_MIPS_JMP
;
3712 INSERT_OPERAND (COPZ
, insn
, va_arg (args
, unsigned long));
3716 INSERT_OPERAND (CACHE
, insn
, va_arg (args
, unsigned long));
3725 assert (*r
== BFD_RELOC_UNUSED
? ep
== NULL
: ep
!= NULL
);
3727 append_insn (&insn
, ep
, r
);
3731 mips16_macro_build (expressionS
*ep
, const char *name
, const char *fmt
,
3734 struct mips_opcode
*mo
;
3735 struct mips_cl_insn insn
;
3736 bfd_reloc_code_real_type r
[3]
3737 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
3739 mo
= (struct mips_opcode
*) hash_find (mips16_op_hash
, name
);
3741 assert (strcmp (name
, mo
->name
) == 0);
3743 while (strcmp (fmt
, mo
->args
) != 0 || mo
->pinfo
== INSN_MACRO
)
3747 assert (strcmp (name
, mo
->name
) == 0);
3750 create_insn (&insn
, mo
);
3768 MIPS16_INSERT_OPERAND (RY
, insn
, va_arg (args
, int));
3773 MIPS16_INSERT_OPERAND (RX
, insn
, va_arg (args
, int));
3777 MIPS16_INSERT_OPERAND (RZ
, insn
, va_arg (args
, int));
3781 MIPS16_INSERT_OPERAND (MOVE32Z
, insn
, va_arg (args
, int));
3791 MIPS16_INSERT_OPERAND (REGR32
, insn
, va_arg (args
, int));
3798 regno
= va_arg (args
, int);
3799 regno
= ((regno
& 7) << 2) | ((regno
& 0x18) >> 3);
3800 MIPS16_INSERT_OPERAND (REG32R
, insn
, regno
);
3821 assert (ep
!= NULL
);
3823 if (ep
->X_op
!= O_constant
)
3824 *r
= (int) BFD_RELOC_UNUSED
+ c
;
3827 mips16_immed (NULL
, 0, c
, ep
->X_add_number
, FALSE
, FALSE
,
3828 FALSE
, &insn
.insn_opcode
, &insn
.use_extend
,
3831 *r
= BFD_RELOC_UNUSED
;
3837 MIPS16_INSERT_OPERAND (IMM6
, insn
, va_arg (args
, int));
3844 assert (*r
== BFD_RELOC_UNUSED
? ep
== NULL
: ep
!= NULL
);
3846 append_insn (&insn
, ep
, r
);
3850 * Sign-extend 32-bit mode constants that have bit 31 set and all
3851 * higher bits unset.
3854 normalize_constant_expr (expressionS
*ex
)
3856 if (ex
->X_op
== O_constant
3857 && IS_ZEXT_32BIT_NUM (ex
->X_add_number
))
3858 ex
->X_add_number
= (((ex
->X_add_number
& 0xffffffff) ^ 0x80000000)
3863 * Sign-extend 32-bit mode address offsets that have bit 31 set and
3864 * all higher bits unset.
3867 normalize_address_expr (expressionS
*ex
)
3869 if (((ex
->X_op
== O_constant
&& HAVE_32BIT_ADDRESSES
)
3870 || (ex
->X_op
== O_symbol
&& HAVE_32BIT_SYMBOLS
))
3871 && IS_ZEXT_32BIT_NUM (ex
->X_add_number
))
3872 ex
->X_add_number
= (((ex
->X_add_number
& 0xffffffff) ^ 0x80000000)
3877 * Generate a "jalr" instruction with a relocation hint to the called
3878 * function. This occurs in NewABI PIC code.
3881 macro_build_jalr (expressionS
*ep
)
3890 macro_build (NULL
, "jalr", "d,s", RA
, PIC_CALL_REG
);
3892 fix_new_exp (frag_now
, f
- frag_now
->fr_literal
,
3893 4, ep
, FALSE
, BFD_RELOC_MIPS_JALR
);
3897 * Generate a "lui" instruction.
3900 macro_build_lui (expressionS
*ep
, int regnum
)
3902 expressionS high_expr
;
3903 const struct mips_opcode
*mo
;
3904 struct mips_cl_insn insn
;
3905 bfd_reloc_code_real_type r
[3]
3906 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
3907 const char *name
= "lui";
3908 const char *fmt
= "t,u";
3910 assert (! mips_opts
.mips16
);
3914 if (high_expr
.X_op
== O_constant
)
3916 /* We can compute the instruction now without a relocation entry. */
3917 high_expr
.X_add_number
= ((high_expr
.X_add_number
+ 0x8000)
3919 *r
= BFD_RELOC_UNUSED
;
3923 assert (ep
->X_op
== O_symbol
);
3924 /* _gp_disp is a special case, used from s_cpload.
3925 __gnu_local_gp is used if mips_no_shared. */
3926 assert (mips_pic
== NO_PIC
3928 && strcmp (S_GET_NAME (ep
->X_add_symbol
), "_gp_disp") == 0)
3929 || (! mips_in_shared
3930 && strcmp (S_GET_NAME (ep
->X_add_symbol
),
3931 "__gnu_local_gp") == 0));
3932 *r
= BFD_RELOC_HI16_S
;
3935 mo
= hash_find (op_hash
, name
);
3936 assert (strcmp (name
, mo
->name
) == 0);
3937 assert (strcmp (fmt
, mo
->args
) == 0);
3938 create_insn (&insn
, mo
);
3940 insn
.insn_opcode
= insn
.insn_mo
->match
;
3941 INSERT_OPERAND (RT
, insn
, regnum
);
3942 if (*r
== BFD_RELOC_UNUSED
)
3944 insn
.insn_opcode
|= high_expr
.X_add_number
;
3945 append_insn (&insn
, NULL
, r
);
3948 append_insn (&insn
, &high_expr
, r
);
3951 /* Generate a sequence of instructions to do a load or store from a constant
3952 offset off of a base register (breg) into/from a target register (treg),
3953 using AT if necessary. */
3955 macro_build_ldst_constoffset (expressionS
*ep
, const char *op
,
3956 int treg
, int breg
, int dbl
)
3958 assert (ep
->X_op
== O_constant
);
3960 /* Sign-extending 32-bit constants makes their handling easier. */
3962 normalize_constant_expr (ep
);
3964 /* Right now, this routine can only handle signed 32-bit constants. */
3965 if (! IS_SEXT_32BIT_NUM(ep
->X_add_number
+ 0x8000))
3966 as_warn (_("operand overflow"));
3968 if (IS_SEXT_16BIT_NUM(ep
->X_add_number
))
3970 /* Signed 16-bit offset will fit in the op. Easy! */
3971 macro_build (ep
, op
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
3975 /* 32-bit offset, need multiple instructions and AT, like:
3976 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
3977 addu $tempreg,$tempreg,$breg
3978 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
3979 to handle the complete offset. */
3980 macro_build_lui (ep
, AT
);
3981 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
3982 macro_build (ep
, op
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
3985 as_bad (_("Macro used $at after \".set noat\""));
3990 * Generates code to set the $at register to true (one)
3991 * if reg is less than the immediate expression.
3994 set_at (int reg
, int unsignedp
)
3996 if (imm_expr
.X_op
== O_constant
3997 && imm_expr
.X_add_number
>= -0x8000
3998 && imm_expr
.X_add_number
< 0x8000)
3999 macro_build (&imm_expr
, unsignedp
? "sltiu" : "slti", "t,r,j",
4000 AT
, reg
, BFD_RELOC_LO16
);
4003 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
4004 macro_build (NULL
, unsignedp
? "sltu" : "slt", "d,v,t", AT
, reg
, AT
);
4008 /* Warn if an expression is not a constant. */
4011 check_absolute_expr (struct mips_cl_insn
*ip
, expressionS
*ex
)
4013 if (ex
->X_op
== O_big
)
4014 as_bad (_("unsupported large constant"));
4015 else if (ex
->X_op
!= O_constant
)
4016 as_bad (_("Instruction %s requires absolute expression"),
4019 if (HAVE_32BIT_GPRS
)
4020 normalize_constant_expr (ex
);
4023 /* Count the leading zeroes by performing a binary chop. This is a
4024 bulky bit of source, but performance is a LOT better for the
4025 majority of values than a simple loop to count the bits:
4026 for (lcnt = 0; (lcnt < 32); lcnt++)
4027 if ((v) & (1 << (31 - lcnt)))
4029 However it is not code size friendly, and the gain will drop a bit
4030 on certain cached systems.
4032 #define COUNT_TOP_ZEROES(v) \
4033 (((v) & ~0xffff) == 0 \
4034 ? ((v) & ~0xff) == 0 \
4035 ? ((v) & ~0xf) == 0 \
4036 ? ((v) & ~0x3) == 0 \
4037 ? ((v) & ~0x1) == 0 \
4042 : ((v) & ~0x7) == 0 \
4045 : ((v) & ~0x3f) == 0 \
4046 ? ((v) & ~0x1f) == 0 \
4049 : ((v) & ~0x7f) == 0 \
4052 : ((v) & ~0xfff) == 0 \
4053 ? ((v) & ~0x3ff) == 0 \
4054 ? ((v) & ~0x1ff) == 0 \
4057 : ((v) & ~0x7ff) == 0 \
4060 : ((v) & ~0x3fff) == 0 \
4061 ? ((v) & ~0x1fff) == 0 \
4064 : ((v) & ~0x7fff) == 0 \
4067 : ((v) & ~0xffffff) == 0 \
4068 ? ((v) & ~0xfffff) == 0 \
4069 ? ((v) & ~0x3ffff) == 0 \
4070 ? ((v) & ~0x1ffff) == 0 \
4073 : ((v) & ~0x7ffff) == 0 \
4076 : ((v) & ~0x3fffff) == 0 \
4077 ? ((v) & ~0x1fffff) == 0 \
4080 : ((v) & ~0x7fffff) == 0 \
4083 : ((v) & ~0xfffffff) == 0 \
4084 ? ((v) & ~0x3ffffff) == 0 \
4085 ? ((v) & ~0x1ffffff) == 0 \
4088 : ((v) & ~0x7ffffff) == 0 \
4091 : ((v) & ~0x3fffffff) == 0 \
4092 ? ((v) & ~0x1fffffff) == 0 \
4095 : ((v) & ~0x7fffffff) == 0 \
4100 * This routine generates the least number of instructions necessary to load
4101 * an absolute expression value into a register.
4104 load_register (int reg
, expressionS
*ep
, int dbl
)
4107 expressionS hi32
, lo32
;
4109 if (ep
->X_op
!= O_big
)
4111 assert (ep
->X_op
== O_constant
);
4113 /* Sign-extending 32-bit constants makes their handling easier. */
4115 normalize_constant_expr (ep
);
4117 if (IS_SEXT_16BIT_NUM (ep
->X_add_number
))
4119 /* We can handle 16 bit signed values with an addiu to
4120 $zero. No need to ever use daddiu here, since $zero and
4121 the result are always correct in 32 bit mode. */
4122 macro_build (ep
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
4125 else if (ep
->X_add_number
>= 0 && ep
->X_add_number
< 0x10000)
4127 /* We can handle 16 bit unsigned values with an ori to
4129 macro_build (ep
, "ori", "t,r,i", reg
, 0, BFD_RELOC_LO16
);
4132 else if ((IS_SEXT_32BIT_NUM (ep
->X_add_number
)))
4134 /* 32 bit values require an lui. */
4135 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_HI16
);
4136 if ((ep
->X_add_number
& 0xffff) != 0)
4137 macro_build (ep
, "ori", "t,r,i", reg
, reg
, BFD_RELOC_LO16
);
4142 /* The value is larger than 32 bits. */
4144 if (!dbl
|| HAVE_32BIT_GPRS
)
4148 sprintf_vma (value
, ep
->X_add_number
);
4149 as_bad (_("Number (0x%s) larger than 32 bits"), value
);
4150 macro_build (ep
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
4154 if (ep
->X_op
!= O_big
)
4157 hi32
.X_add_number
= (valueT
) hi32
.X_add_number
>> 16;
4158 hi32
.X_add_number
= (valueT
) hi32
.X_add_number
>> 16;
4159 hi32
.X_add_number
&= 0xffffffff;
4161 lo32
.X_add_number
&= 0xffffffff;
4165 assert (ep
->X_add_number
> 2);
4166 if (ep
->X_add_number
== 3)
4167 generic_bignum
[3] = 0;
4168 else if (ep
->X_add_number
> 4)
4169 as_bad (_("Number larger than 64 bits"));
4170 lo32
.X_op
= O_constant
;
4171 lo32
.X_add_number
= generic_bignum
[0] + (generic_bignum
[1] << 16);
4172 hi32
.X_op
= O_constant
;
4173 hi32
.X_add_number
= generic_bignum
[2] + (generic_bignum
[3] << 16);
4176 if (hi32
.X_add_number
== 0)
4181 unsigned long hi
, lo
;
4183 if (hi32
.X_add_number
== (offsetT
) 0xffffffff)
4185 if ((lo32
.X_add_number
& 0xffff8000) == 0xffff8000)
4187 macro_build (&lo32
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
4190 if (lo32
.X_add_number
& 0x80000000)
4192 macro_build (&lo32
, "lui", "t,u", reg
, BFD_RELOC_HI16
);
4193 if (lo32
.X_add_number
& 0xffff)
4194 macro_build (&lo32
, "ori", "t,r,i", reg
, reg
, BFD_RELOC_LO16
);
4199 /* Check for 16bit shifted constant. We know that hi32 is
4200 non-zero, so start the mask on the first bit of the hi32
4205 unsigned long himask
, lomask
;
4209 himask
= 0xffff >> (32 - shift
);
4210 lomask
= (0xffff << shift
) & 0xffffffff;
4214 himask
= 0xffff << (shift
- 32);
4217 if ((hi32
.X_add_number
& ~(offsetT
) himask
) == 0
4218 && (lo32
.X_add_number
& ~(offsetT
) lomask
) == 0)
4222 tmp
.X_op
= O_constant
;
4224 tmp
.X_add_number
= ((hi32
.X_add_number
<< (32 - shift
))
4225 | (lo32
.X_add_number
>> shift
));
4227 tmp
.X_add_number
= hi32
.X_add_number
>> (shift
- 32);
4228 macro_build (&tmp
, "ori", "t,r,i", reg
, 0, BFD_RELOC_LO16
);
4229 macro_build (NULL
, (shift
>= 32) ? "dsll32" : "dsll", "d,w,<",
4230 reg
, reg
, (shift
>= 32) ? shift
- 32 : shift
);
4235 while (shift
<= (64 - 16));
4237 /* Find the bit number of the lowest one bit, and store the
4238 shifted value in hi/lo. */
4239 hi
= (unsigned long) (hi32
.X_add_number
& 0xffffffff);
4240 lo
= (unsigned long) (lo32
.X_add_number
& 0xffffffff);
4244 while ((lo
& 1) == 0)
4249 lo
|= (hi
& (((unsigned long) 1 << bit
) - 1)) << (32 - bit
);
4255 while ((hi
& 1) == 0)
4264 /* Optimize if the shifted value is a (power of 2) - 1. */
4265 if ((hi
== 0 && ((lo
+ 1) & lo
) == 0)
4266 || (lo
== 0xffffffff && ((hi
+ 1) & hi
) == 0))
4268 shift
= COUNT_TOP_ZEROES ((unsigned int) hi32
.X_add_number
);
4273 /* This instruction will set the register to be all
4275 tmp
.X_op
= O_constant
;
4276 tmp
.X_add_number
= (offsetT
) -1;
4277 macro_build (&tmp
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
4281 macro_build (NULL
, (bit
>= 32) ? "dsll32" : "dsll", "d,w,<",
4282 reg
, reg
, (bit
>= 32) ? bit
- 32 : bit
);
4284 macro_build (NULL
, (shift
>= 32) ? "dsrl32" : "dsrl", "d,w,<",
4285 reg
, reg
, (shift
>= 32) ? shift
- 32 : shift
);
4290 /* Sign extend hi32 before calling load_register, because we can
4291 generally get better code when we load a sign extended value. */
4292 if ((hi32
.X_add_number
& 0x80000000) != 0)
4293 hi32
.X_add_number
|= ~(offsetT
) 0xffffffff;
4294 load_register (reg
, &hi32
, 0);
4297 if ((lo32
.X_add_number
& 0xffff0000) == 0)
4301 macro_build (NULL
, "dsll32", "d,w,<", reg
, freg
, 0);
4309 if ((freg
== 0) && (lo32
.X_add_number
== (offsetT
) 0xffffffff))
4311 macro_build (&lo32
, "lui", "t,u", reg
, BFD_RELOC_HI16
);
4312 macro_build (NULL
, "dsrl32", "d,w,<", reg
, reg
, 0);
4318 macro_build (NULL
, "dsll", "d,w,<", reg
, freg
, 16);
4322 mid16
.X_add_number
>>= 16;
4323 macro_build (&mid16
, "ori", "t,r,i", reg
, freg
, BFD_RELOC_LO16
);
4324 macro_build (NULL
, "dsll", "d,w,<", reg
, reg
, 16);
4327 if ((lo32
.X_add_number
& 0xffff) != 0)
4328 macro_build (&lo32
, "ori", "t,r,i", reg
, freg
, BFD_RELOC_LO16
);
4332 load_delay_nop (void)
4334 if (!gpr_interlocks
)
4335 macro_build (NULL
, "nop", "");
4338 /* Load an address into a register. */
4341 load_address (int reg
, expressionS
*ep
, int *used_at
)
4343 if (ep
->X_op
!= O_constant
4344 && ep
->X_op
!= O_symbol
)
4346 as_bad (_("expression too complex"));
4347 ep
->X_op
= O_constant
;
4350 if (ep
->X_op
== O_constant
)
4352 load_register (reg
, ep
, HAVE_64BIT_ADDRESSES
);
4356 if (mips_pic
== NO_PIC
)
4358 /* If this is a reference to a GP relative symbol, we want
4359 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
4361 lui $reg,<sym> (BFD_RELOC_HI16_S)
4362 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
4363 If we have an addend, we always use the latter form.
4365 With 64bit address space and a usable $at we want
4366 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4367 lui $at,<sym> (BFD_RELOC_HI16_S)
4368 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4369 daddiu $at,<sym> (BFD_RELOC_LO16)
4373 If $at is already in use, we use a path which is suboptimal
4374 on superscalar processors.
4375 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4376 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4378 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
4380 daddiu $reg,<sym> (BFD_RELOC_LO16)
4382 For GP relative symbols in 64bit address space we can use
4383 the same sequence as in 32bit address space. */
4384 if (HAVE_64BIT_SYMBOLS
)
4386 if ((valueT
) ep
->X_add_number
<= MAX_GPREL_OFFSET
4387 && !nopic_need_relax (ep
->X_add_symbol
, 1))
4389 relax_start (ep
->X_add_symbol
);
4390 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
,
4391 mips_gp_register
, BFD_RELOC_GPREL16
);
4395 if (*used_at
== 0 && mips_opts
.at
)
4397 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_HIGHEST
);
4398 macro_build (ep
, "lui", "t,u", AT
, BFD_RELOC_HI16_S
);
4399 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
,
4400 BFD_RELOC_MIPS_HIGHER
);
4401 macro_build (ep
, "daddiu", "t,r,j", AT
, AT
, BFD_RELOC_LO16
);
4402 macro_build (NULL
, "dsll32", "d,w,<", reg
, reg
, 0);
4403 macro_build (NULL
, "daddu", "d,v,t", reg
, reg
, AT
);
4408 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_HIGHEST
);
4409 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
,
4410 BFD_RELOC_MIPS_HIGHER
);
4411 macro_build (NULL
, "dsll", "d,w,<", reg
, reg
, 16);
4412 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
, BFD_RELOC_HI16_S
);
4413 macro_build (NULL
, "dsll", "d,w,<", reg
, reg
, 16);
4414 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
, BFD_RELOC_LO16
);
4417 if (mips_relax
.sequence
)
4422 if ((valueT
) ep
->X_add_number
<= MAX_GPREL_OFFSET
4423 && !nopic_need_relax (ep
->X_add_symbol
, 1))
4425 relax_start (ep
->X_add_symbol
);
4426 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
,
4427 mips_gp_register
, BFD_RELOC_GPREL16
);
4430 macro_build_lui (ep
, reg
);
4431 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j",
4432 reg
, reg
, BFD_RELOC_LO16
);
4433 if (mips_relax
.sequence
)
4437 else if (!mips_big_got
)
4441 /* If this is a reference to an external symbol, we want
4442 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4444 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4446 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
4447 If there is a constant, it must be added in after.
4449 If we have NewABI, we want
4450 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
4451 unless we're referencing a global symbol with a non-zero
4452 offset, in which case cst must be added separately. */
4455 if (ep
->X_add_number
)
4457 ex
.X_add_number
= ep
->X_add_number
;
4458 ep
->X_add_number
= 0;
4459 relax_start (ep
->X_add_symbol
);
4460 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4461 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
4462 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
4463 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4464 ex
.X_op
= O_constant
;
4465 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j",
4466 reg
, reg
, BFD_RELOC_LO16
);
4467 ep
->X_add_number
= ex
.X_add_number
;
4470 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4471 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
4472 if (mips_relax
.sequence
)
4477 ex
.X_add_number
= ep
->X_add_number
;
4478 ep
->X_add_number
= 0;
4479 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4480 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4482 relax_start (ep
->X_add_symbol
);
4484 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4488 if (ex
.X_add_number
!= 0)
4490 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
4491 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4492 ex
.X_op
= O_constant
;
4493 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j",
4494 reg
, reg
, BFD_RELOC_LO16
);
4498 else if (mips_big_got
)
4502 /* This is the large GOT case. If this is a reference to an
4503 external symbol, we want
4504 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4506 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
4508 Otherwise, for a reference to a local symbol in old ABI, we want
4509 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4511 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
4512 If there is a constant, it must be added in after.
4514 In the NewABI, for local symbols, with or without offsets, we want:
4515 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
4516 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
4520 ex
.X_add_number
= ep
->X_add_number
;
4521 ep
->X_add_number
= 0;
4522 relax_start (ep
->X_add_symbol
);
4523 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_GOT_HI16
);
4524 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
4525 reg
, reg
, mips_gp_register
);
4526 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)",
4527 reg
, BFD_RELOC_MIPS_GOT_LO16
, reg
);
4528 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
4529 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4530 else if (ex
.X_add_number
)
4532 ex
.X_op
= O_constant
;
4533 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4537 ep
->X_add_number
= ex
.X_add_number
;
4539 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4540 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
4541 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4542 BFD_RELOC_MIPS_GOT_OFST
);
4547 ex
.X_add_number
= ep
->X_add_number
;
4548 ep
->X_add_number
= 0;
4549 relax_start (ep
->X_add_symbol
);
4550 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_GOT_HI16
);
4551 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
4552 reg
, reg
, mips_gp_register
);
4553 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)",
4554 reg
, BFD_RELOC_MIPS_GOT_LO16
, reg
);
4556 if (reg_needs_delay (mips_gp_register
))
4558 /* We need a nop before loading from $gp. This special
4559 check is required because the lui which starts the main
4560 instruction stream does not refer to $gp, and so will not
4561 insert the nop which may be required. */
4562 macro_build (NULL
, "nop", "");
4564 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4565 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4567 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4571 if (ex
.X_add_number
!= 0)
4573 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
4574 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4575 ex
.X_op
= O_constant
;
4576 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4584 if (!mips_opts
.at
&& *used_at
== 1)
4585 as_bad (_("Macro used $at after \".set noat\""));
4588 /* Move the contents of register SOURCE into register DEST. */
4591 move_register (int dest
, int source
)
4593 macro_build (NULL
, HAVE_32BIT_GPRS
? "addu" : "daddu", "d,v,t",
4597 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
4598 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4599 The two alternatives are:
4601 Global symbol Local sybmol
4602 ------------- ------------
4603 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4605 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4607 load_got_offset emits the first instruction and add_got_offset
4608 emits the second for a 16-bit offset or add_got_offset_hilo emits
4609 a sequence to add a 32-bit offset using a scratch register. */
4612 load_got_offset (int dest
, expressionS
*local
)
4617 global
.X_add_number
= 0;
4619 relax_start (local
->X_add_symbol
);
4620 macro_build (&global
, ADDRESS_LOAD_INSN
, "t,o(b)", dest
,
4621 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4623 macro_build (local
, ADDRESS_LOAD_INSN
, "t,o(b)", dest
,
4624 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4629 add_got_offset (int dest
, expressionS
*local
)
4633 global
.X_op
= O_constant
;
4634 global
.X_op_symbol
= NULL
;
4635 global
.X_add_symbol
= NULL
;
4636 global
.X_add_number
= local
->X_add_number
;
4638 relax_start (local
->X_add_symbol
);
4639 macro_build (&global
, ADDRESS_ADDI_INSN
, "t,r,j",
4640 dest
, dest
, BFD_RELOC_LO16
);
4642 macro_build (local
, ADDRESS_ADDI_INSN
, "t,r,j", dest
, dest
, BFD_RELOC_LO16
);
4647 add_got_offset_hilo (int dest
, expressionS
*local
, int tmp
)
4650 int hold_mips_optimize
;
4652 global
.X_op
= O_constant
;
4653 global
.X_op_symbol
= NULL
;
4654 global
.X_add_symbol
= NULL
;
4655 global
.X_add_number
= local
->X_add_number
;
4657 relax_start (local
->X_add_symbol
);
4658 load_register (tmp
, &global
, HAVE_64BIT_ADDRESSES
);
4660 /* Set mips_optimize around the lui instruction to avoid
4661 inserting an unnecessary nop after the lw. */
4662 hold_mips_optimize
= mips_optimize
;
4664 macro_build_lui (&global
, tmp
);
4665 mips_optimize
= hold_mips_optimize
;
4666 macro_build (local
, ADDRESS_ADDI_INSN
, "t,r,j", tmp
, tmp
, BFD_RELOC_LO16
);
4669 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", dest
, dest
, tmp
);
4674 * This routine implements the seemingly endless macro or synthesized
4675 * instructions and addressing modes in the mips assembly language. Many
4676 * of these macros are simple and are similar to each other. These could
4677 * probably be handled by some kind of table or grammar approach instead of
4678 * this verbose method. Others are not simple macros but are more like
4679 * optimizing code generation.
4680 * One interesting optimization is when several store macros appear
4681 * consecutively that would load AT with the upper half of the same address.
4682 * The ensuing load upper instructions are ommited. This implies some kind
4683 * of global optimization. We currently only optimize within a single macro.
4684 * For many of the load and store macros if the address is specified as a
4685 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4686 * first load register 'at' with zero and use it as the base register. The
4687 * mips assembler simply uses register $zero. Just one tiny optimization
4691 macro (struct mips_cl_insn
*ip
)
4693 unsigned int treg
, sreg
, dreg
, breg
;
4694 unsigned int tempreg
;
4709 bfd_reloc_code_real_type r
;
4710 int hold_mips_optimize
;
4712 assert (! mips_opts
.mips16
);
4714 treg
= (ip
->insn_opcode
>> 16) & 0x1f;
4715 dreg
= (ip
->insn_opcode
>> 11) & 0x1f;
4716 sreg
= breg
= (ip
->insn_opcode
>> 21) & 0x1f;
4717 mask
= ip
->insn_mo
->mask
;
4719 expr1
.X_op
= O_constant
;
4720 expr1
.X_op_symbol
= NULL
;
4721 expr1
.X_add_symbol
= NULL
;
4722 expr1
.X_add_number
= 1;
4736 expr1
.X_add_number
= 8;
4737 macro_build (&expr1
, "bgez", "s,p", sreg
);
4739 macro_build (NULL
, "nop", "", 0);
4741 move_register (dreg
, sreg
);
4742 macro_build (NULL
, dbl
? "dsub" : "sub", "d,v,t", dreg
, 0, sreg
);
4765 if (imm_expr
.X_op
== O_constant
4766 && imm_expr
.X_add_number
>= -0x8000
4767 && imm_expr
.X_add_number
< 0x8000)
4769 macro_build (&imm_expr
, s
, "t,r,j", treg
, sreg
, BFD_RELOC_LO16
);
4773 load_register (AT
, &imm_expr
, dbl
);
4774 macro_build (NULL
, s2
, "d,v,t", treg
, sreg
, AT
);
4793 if (imm_expr
.X_op
== O_constant
4794 && imm_expr
.X_add_number
>= 0
4795 && imm_expr
.X_add_number
< 0x10000)
4797 if (mask
!= M_NOR_I
)
4798 macro_build (&imm_expr
, s
, "t,r,i", treg
, sreg
, BFD_RELOC_LO16
);
4801 macro_build (&imm_expr
, "ori", "t,r,i",
4802 treg
, sreg
, BFD_RELOC_LO16
);
4803 macro_build (NULL
, "nor", "d,v,t", treg
, treg
, 0);
4809 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
4810 macro_build (NULL
, s2
, "d,v,t", treg
, sreg
, AT
);
4814 switch (imm_expr
.X_add_number
)
4817 macro_build (NULL
, "nop", "");
4820 macro_build (NULL
, "packrl.ph", "d,s,t", treg
, treg
, sreg
);
4823 macro_build (NULL
, "balign", "t,s,2", treg
, sreg
,
4824 (int)imm_expr
.X_add_number
);
4843 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4845 macro_build (&offset_expr
, s
, "s,t,p", sreg
, 0);
4849 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
4850 macro_build (&offset_expr
, s
, "s,t,p", sreg
, AT
);
4858 macro_build (&offset_expr
, likely
? "bgezl" : "bgez", "s,p", sreg
);
4863 macro_build (&offset_expr
, likely
? "blezl" : "blez", "s,p", treg
);
4867 macro_build (NULL
, "slt", "d,v,t", AT
, sreg
, treg
);
4868 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4874 /* check for > max integer */
4875 maxnum
= 0x7fffffff;
4876 if (HAVE_64BIT_GPRS
&& sizeof (maxnum
) > 4)
4883 if (imm_expr
.X_op
== O_constant
4884 && imm_expr
.X_add_number
>= maxnum
4885 && (HAVE_32BIT_GPRS
|| sizeof (maxnum
) > 4))
4888 /* result is always false */
4890 macro_build (NULL
, "nop", "", 0);
4892 macro_build (&offset_expr
, "bnel", "s,t,p", 0, 0);
4895 if (imm_expr
.X_op
!= O_constant
)
4896 as_bad (_("Unsupported large constant"));
4897 ++imm_expr
.X_add_number
;
4901 if (mask
== M_BGEL_I
)
4903 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4905 macro_build (&offset_expr
, likely
? "bgezl" : "bgez", "s,p", sreg
);
4908 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
4910 macro_build (&offset_expr
, likely
? "bgtzl" : "bgtz", "s,p", sreg
);
4913 maxnum
= 0x7fffffff;
4914 if (HAVE_64BIT_GPRS
&& sizeof (maxnum
) > 4)
4921 maxnum
= - maxnum
- 1;
4922 if (imm_expr
.X_op
== O_constant
4923 && imm_expr
.X_add_number
<= maxnum
4924 && (HAVE_32BIT_GPRS
|| sizeof (maxnum
) > 4))
4927 /* result is always true */
4928 as_warn (_("Branch %s is always true"), ip
->insn_mo
->name
);
4929 macro_build (&offset_expr
, "b", "p");
4934 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4944 macro_build (&offset_expr
, likely
? "beql" : "beq",
4949 macro_build (NULL
, "sltu", "d,v,t", AT
, sreg
, treg
);
4950 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4958 && imm_expr
.X_op
== O_constant
4959 && imm_expr
.X_add_number
== (offsetT
) 0xffffffff))
4961 if (imm_expr
.X_op
!= O_constant
)
4962 as_bad (_("Unsupported large constant"));
4963 ++imm_expr
.X_add_number
;
4967 if (mask
== M_BGEUL_I
)
4969 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4971 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
4973 macro_build (&offset_expr
, likely
? "bnel" : "bne",
4979 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4987 macro_build (&offset_expr
, likely
? "bgtzl" : "bgtz", "s,p", sreg
);
4992 macro_build (&offset_expr
, likely
? "bltzl" : "bltz", "s,p", treg
);
4996 macro_build (NULL
, "slt", "d,v,t", AT
, treg
, sreg
);
4997 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
5005 macro_build (&offset_expr
, likely
? "bnel" : "bne",
5012 macro_build (NULL
, "sltu", "d,v,t", AT
, treg
, sreg
);
5013 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
5021 macro_build (&offset_expr
, likely
? "blezl" : "blez", "s,p", sreg
);
5026 macro_build (&offset_expr
, likely
? "bgezl" : "bgez", "s,p", treg
);
5030 macro_build (NULL
, "slt", "d,v,t", AT
, treg
, sreg
);
5031 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
5037 maxnum
= 0x7fffffff;
5038 if (HAVE_64BIT_GPRS
&& sizeof (maxnum
) > 4)
5045 if (imm_expr
.X_op
== O_constant
5046 && imm_expr
.X_add_number
>= maxnum
5047 && (HAVE_32BIT_GPRS
|| sizeof (maxnum
) > 4))
5049 if (imm_expr
.X_op
!= O_constant
)
5050 as_bad (_("Unsupported large constant"));
5051 ++imm_expr
.X_add_number
;
5055 if (mask
== M_BLTL_I
)
5057 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
5059 macro_build (&offset_expr
, likely
? "bltzl" : "bltz", "s,p", sreg
);
5062 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
5064 macro_build (&offset_expr
, likely
? "blezl" : "blez", "s,p", sreg
);
5069 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
5077 macro_build (&offset_expr
, likely
? "beql" : "beq",
5084 macro_build (NULL
, "sltu", "d,v,t", AT
, treg
, sreg
);
5085 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
5093 && imm_expr
.X_op
== O_constant
5094 && imm_expr
.X_add_number
== (offsetT
) 0xffffffff))
5096 if (imm_expr
.X_op
!= O_constant
)
5097 as_bad (_("Unsupported large constant"));
5098 ++imm_expr
.X_add_number
;
5102 if (mask
== M_BLTUL_I
)
5104 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
5106 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
5108 macro_build (&offset_expr
, likely
? "beql" : "beq",
5114 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
5122 macro_build (&offset_expr
, likely
? "bltzl" : "bltz", "s,p", sreg
);
5127 macro_build (&offset_expr
, likely
? "bgtzl" : "bgtz", "s,p", treg
);
5131 macro_build (NULL
, "slt", "d,v,t", AT
, sreg
, treg
);
5132 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
5142 macro_build (&offset_expr
, likely
? "bnel" : "bne",
5147 macro_build (NULL
, "sltu", "d,v,t", AT
, sreg
, treg
);
5148 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
5156 if (imm_expr
.X_op
!= O_constant
|| imm2_expr
.X_op
!= O_constant
)
5158 as_bad (_("Unsupported large constant"));
5163 pos
= (unsigned long) imm_expr
.X_add_number
;
5164 size
= (unsigned long) imm2_expr
.X_add_number
;
5169 as_bad (_("Improper position (%lu)"), pos
);
5172 if (size
== 0 || size
> 64
5173 || (pos
+ size
- 1) > 63)
5175 as_bad (_("Improper extract size (%lu, position %lu)"),
5180 if (size
<= 32 && pos
< 32)
5185 else if (size
<= 32)
5195 macro_build ((expressionS
*) NULL
, s
, fmt
, treg
, sreg
, pos
, size
- 1);
5204 if (imm_expr
.X_op
!= O_constant
|| imm2_expr
.X_op
!= O_constant
)
5206 as_bad (_("Unsupported large constant"));
5211 pos
= (unsigned long) imm_expr
.X_add_number
;
5212 size
= (unsigned long) imm2_expr
.X_add_number
;
5217 as_bad (_("Improper position (%lu)"), pos
);
5220 if (size
== 0 || size
> 64
5221 || (pos
+ size
- 1) > 63)
5223 as_bad (_("Improper insert size (%lu, position %lu)"),
5228 if (pos
< 32 && (pos
+ size
- 1) < 32)
5243 macro_build ((expressionS
*) NULL
, s
, fmt
, treg
, sreg
, pos
,
5260 as_warn (_("Divide by zero."));
5262 macro_build (NULL
, "teq", "s,t,q", 0, 0, 7);
5264 macro_build (NULL
, "break", "c", 7);
5271 macro_build (NULL
, "teq", "s,t,q", treg
, 0, 7);
5272 macro_build (NULL
, dbl
? "ddiv" : "div", "z,s,t", sreg
, treg
);
5276 expr1
.X_add_number
= 8;
5277 macro_build (&expr1
, "bne", "s,t,p", treg
, 0);
5278 macro_build (NULL
, dbl
? "ddiv" : "div", "z,s,t", sreg
, treg
);
5279 macro_build (NULL
, "break", "c", 7);
5281 expr1
.X_add_number
= -1;
5283 load_register (AT
, &expr1
, dbl
);
5284 expr1
.X_add_number
= mips_trap
? (dbl
? 12 : 8) : (dbl
? 20 : 16);
5285 macro_build (&expr1
, "bne", "s,t,p", treg
, AT
);
5288 expr1
.X_add_number
= 1;
5289 load_register (AT
, &expr1
, dbl
);
5290 macro_build (NULL
, "dsll32", "d,w,<", AT
, AT
, 31);
5294 expr1
.X_add_number
= 0x80000000;
5295 macro_build (&expr1
, "lui", "t,u", AT
, BFD_RELOC_HI16
);
5299 macro_build (NULL
, "teq", "s,t,q", sreg
, AT
, 6);
5300 /* We want to close the noreorder block as soon as possible, so
5301 that later insns are available for delay slot filling. */
5306 expr1
.X_add_number
= 8;
5307 macro_build (&expr1
, "bne", "s,t,p", sreg
, AT
);
5308 macro_build (NULL
, "nop", "", 0);
5310 /* We want to close the noreorder block as soon as possible, so
5311 that later insns are available for delay slot filling. */
5314 macro_build (NULL
, "break", "c", 6);
5316 macro_build (NULL
, s
, "d", dreg
);
5355 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
5357 as_warn (_("Divide by zero."));
5359 macro_build (NULL
, "teq", "s,t,q", 0, 0, 7);
5361 macro_build (NULL
, "break", "c", 7);
5364 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
5366 if (strcmp (s2
, "mflo") == 0)
5367 move_register (dreg
, sreg
);
5369 move_register (dreg
, 0);
5372 if (imm_expr
.X_op
== O_constant
5373 && imm_expr
.X_add_number
== -1
5374 && s
[strlen (s
) - 1] != 'u')
5376 if (strcmp (s2
, "mflo") == 0)
5378 macro_build (NULL
, dbl
? "dneg" : "neg", "d,w", dreg
, sreg
);
5381 move_register (dreg
, 0);
5386 load_register (AT
, &imm_expr
, dbl
);
5387 macro_build (NULL
, s
, "z,s,t", sreg
, AT
);
5388 macro_build (NULL
, s2
, "d", dreg
);
5410 macro_build (NULL
, "teq", "s,t,q", treg
, 0, 7);
5411 macro_build (NULL
, s
, "z,s,t", sreg
, treg
);
5412 /* We want to close the noreorder block as soon as possible, so
5413 that later insns are available for delay slot filling. */
5418 expr1
.X_add_number
= 8;
5419 macro_build (&expr1
, "bne", "s,t,p", treg
, 0);
5420 macro_build (NULL
, s
, "z,s,t", sreg
, treg
);
5422 /* We want to close the noreorder block as soon as possible, so
5423 that later insns are available for delay slot filling. */
5425 macro_build (NULL
, "break", "c", 7);
5427 macro_build (NULL
, s2
, "d", dreg
);
5439 /* Load the address of a symbol into a register. If breg is not
5440 zero, we then add a base register to it. */
5442 if (dbl
&& HAVE_32BIT_GPRS
)
5443 as_warn (_("dla used to load 32-bit register"));
5445 if (! dbl
&& HAVE_64BIT_OBJECTS
)
5446 as_warn (_("la used to load 64-bit address"));
5448 if (offset_expr
.X_op
== O_constant
5449 && offset_expr
.X_add_number
>= -0x8000
5450 && offset_expr
.X_add_number
< 0x8000)
5452 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
,
5453 "t,r,j", treg
, sreg
, BFD_RELOC_LO16
);
5457 if (mips_opts
.at
&& (treg
== breg
))
5467 if (offset_expr
.X_op
!= O_symbol
5468 && offset_expr
.X_op
!= O_constant
)
5470 as_bad (_("expression too complex"));
5471 offset_expr
.X_op
= O_constant
;
5474 if (offset_expr
.X_op
== O_constant
)
5475 load_register (tempreg
, &offset_expr
, HAVE_64BIT_ADDRESSES
);
5476 else if (mips_pic
== NO_PIC
)
5478 /* If this is a reference to a GP relative symbol, we want
5479 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
5481 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5482 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5483 If we have a constant, we need two instructions anyhow,
5484 so we may as well always use the latter form.
5486 With 64bit address space and a usable $at we want
5487 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5488 lui $at,<sym> (BFD_RELOC_HI16_S)
5489 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5490 daddiu $at,<sym> (BFD_RELOC_LO16)
5492 daddu $tempreg,$tempreg,$at
5494 If $at is already in use, we use a path which is suboptimal
5495 on superscalar processors.
5496 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5497 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5499 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5501 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
5503 For GP relative symbols in 64bit address space we can use
5504 the same sequence as in 32bit address space. */
5505 if (HAVE_64BIT_SYMBOLS
)
5507 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
5508 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
5510 relax_start (offset_expr
.X_add_symbol
);
5511 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5512 tempreg
, mips_gp_register
, BFD_RELOC_GPREL16
);
5516 if (used_at
== 0 && mips_opts
.at
)
5518 macro_build (&offset_expr
, "lui", "t,u",
5519 tempreg
, BFD_RELOC_MIPS_HIGHEST
);
5520 macro_build (&offset_expr
, "lui", "t,u",
5521 AT
, BFD_RELOC_HI16_S
);
5522 macro_build (&offset_expr
, "daddiu", "t,r,j",
5523 tempreg
, tempreg
, BFD_RELOC_MIPS_HIGHER
);
5524 macro_build (&offset_expr
, "daddiu", "t,r,j",
5525 AT
, AT
, BFD_RELOC_LO16
);
5526 macro_build (NULL
, "dsll32", "d,w,<", tempreg
, tempreg
, 0);
5527 macro_build (NULL
, "daddu", "d,v,t", tempreg
, tempreg
, AT
);
5532 macro_build (&offset_expr
, "lui", "t,u",
5533 tempreg
, BFD_RELOC_MIPS_HIGHEST
);
5534 macro_build (&offset_expr
, "daddiu", "t,r,j",
5535 tempreg
, tempreg
, BFD_RELOC_MIPS_HIGHER
);
5536 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
5537 macro_build (&offset_expr
, "daddiu", "t,r,j",
5538 tempreg
, tempreg
, BFD_RELOC_HI16_S
);
5539 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
5540 macro_build (&offset_expr
, "daddiu", "t,r,j",
5541 tempreg
, tempreg
, BFD_RELOC_LO16
);
5544 if (mips_relax
.sequence
)
5549 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
5550 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
5552 relax_start (offset_expr
.X_add_symbol
);
5553 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5554 tempreg
, mips_gp_register
, BFD_RELOC_GPREL16
);
5557 if (!IS_SEXT_32BIT_NUM (offset_expr
.X_add_number
))
5558 as_bad (_("offset too large"));
5559 macro_build_lui (&offset_expr
, tempreg
);
5560 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5561 tempreg
, tempreg
, BFD_RELOC_LO16
);
5562 if (mips_relax
.sequence
)
5566 else if (!mips_big_got
&& !HAVE_NEWABI
)
5568 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT16
;
5570 /* If this is a reference to an external symbol, and there
5571 is no constant, we want
5572 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5573 or for lca or if tempreg is PIC_CALL_REG
5574 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5575 For a local symbol, we want
5576 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5578 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5580 If we have a small constant, and this is a reference to
5581 an external symbol, we want
5582 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5584 addiu $tempreg,$tempreg,<constant>
5585 For a local symbol, we want the same instruction
5586 sequence, but we output a BFD_RELOC_LO16 reloc on the
5589 If we have a large constant, and this is a reference to
5590 an external symbol, we want
5591 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5592 lui $at,<hiconstant>
5593 addiu $at,$at,<loconstant>
5594 addu $tempreg,$tempreg,$at
5595 For a local symbol, we want the same instruction
5596 sequence, but we output a BFD_RELOC_LO16 reloc on the
5600 if (offset_expr
.X_add_number
== 0)
5602 if (mips_pic
== SVR4_PIC
5604 && (call
|| tempreg
== PIC_CALL_REG
))
5605 lw_reloc_type
= (int) BFD_RELOC_MIPS_CALL16
;
5607 relax_start (offset_expr
.X_add_symbol
);
5608 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5609 lw_reloc_type
, mips_gp_register
);
5612 /* We're going to put in an addu instruction using
5613 tempreg, so we may as well insert the nop right
5618 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5619 tempreg
, BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
5621 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5622 tempreg
, tempreg
, BFD_RELOC_LO16
);
5624 /* FIXME: If breg == 0, and the next instruction uses
5625 $tempreg, then if this variant case is used an extra
5626 nop will be generated. */
5628 else if (offset_expr
.X_add_number
>= -0x8000
5629 && offset_expr
.X_add_number
< 0x8000)
5631 load_got_offset (tempreg
, &offset_expr
);
5633 add_got_offset (tempreg
, &offset_expr
);
5637 expr1
.X_add_number
= offset_expr
.X_add_number
;
5638 offset_expr
.X_add_number
=
5639 ((offset_expr
.X_add_number
+ 0x8000) & 0xffff) - 0x8000;
5640 load_got_offset (tempreg
, &offset_expr
);
5641 offset_expr
.X_add_number
= expr1
.X_add_number
;
5642 /* If we are going to add in a base register, and the
5643 target register and the base register are the same,
5644 then we are using AT as a temporary register. Since
5645 we want to load the constant into AT, we add our
5646 current AT (from the global offset table) and the
5647 register into the register now, and pretend we were
5648 not using a base register. */
5652 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5657 add_got_offset_hilo (tempreg
, &offset_expr
, AT
);
5661 else if (!mips_big_got
&& HAVE_NEWABI
)
5663 int add_breg_early
= 0;
5665 /* If this is a reference to an external, and there is no
5666 constant, or local symbol (*), with or without a
5668 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5669 or for lca or if tempreg is PIC_CALL_REG
5670 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5672 If we have a small constant, and this is a reference to
5673 an external symbol, we want
5674 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5675 addiu $tempreg,$tempreg,<constant>
5677 If we have a large constant, and this is a reference to
5678 an external symbol, we want
5679 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5680 lui $at,<hiconstant>
5681 addiu $at,$at,<loconstant>
5682 addu $tempreg,$tempreg,$at
5684 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
5685 local symbols, even though it introduces an additional
5688 if (offset_expr
.X_add_number
)
5690 expr1
.X_add_number
= offset_expr
.X_add_number
;
5691 offset_expr
.X_add_number
= 0;
5693 relax_start (offset_expr
.X_add_symbol
);
5694 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5695 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5697 if (expr1
.X_add_number
>= -0x8000
5698 && expr1
.X_add_number
< 0x8000)
5700 macro_build (&expr1
, ADDRESS_ADDI_INSN
, "t,r,j",
5701 tempreg
, tempreg
, BFD_RELOC_LO16
);
5703 else if (IS_SEXT_32BIT_NUM (expr1
.X_add_number
+ 0x8000))
5707 /* If we are going to add in a base register, and the
5708 target register and the base register are the same,
5709 then we are using AT as a temporary register. Since
5710 we want to load the constant into AT, we add our
5711 current AT (from the global offset table) and the
5712 register into the register now, and pretend we were
5713 not using a base register. */
5718 assert (tempreg
== AT
);
5719 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5725 load_register (AT
, &expr1
, HAVE_64BIT_ADDRESSES
);
5726 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5732 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5735 offset_expr
.X_add_number
= expr1
.X_add_number
;
5737 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5738 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5741 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5742 treg
, tempreg
, breg
);
5748 else if (breg
== 0 && (call
|| tempreg
== PIC_CALL_REG
))
5750 relax_start (offset_expr
.X_add_symbol
);
5751 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5752 BFD_RELOC_MIPS_CALL16
, mips_gp_register
);
5754 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5755 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5760 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5761 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5764 else if (mips_big_got
&& !HAVE_NEWABI
)
5767 int lui_reloc_type
= (int) BFD_RELOC_MIPS_GOT_HI16
;
5768 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT_LO16
;
5769 int local_reloc_type
= (int) BFD_RELOC_MIPS_GOT16
;
5771 /* This is the large GOT case. If this is a reference to an
5772 external symbol, and there is no constant, we want
5773 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5774 addu $tempreg,$tempreg,$gp
5775 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5776 or for lca or if tempreg is PIC_CALL_REG
5777 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5778 addu $tempreg,$tempreg,$gp
5779 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5780 For a local symbol, we want
5781 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5783 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5785 If we have a small constant, and this is a reference to
5786 an external symbol, we want
5787 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5788 addu $tempreg,$tempreg,$gp
5789 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5791 addiu $tempreg,$tempreg,<constant>
5792 For a local symbol, we want
5793 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5795 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5797 If we have a large constant, and this is a reference to
5798 an external symbol, we want
5799 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5800 addu $tempreg,$tempreg,$gp
5801 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5802 lui $at,<hiconstant>
5803 addiu $at,$at,<loconstant>
5804 addu $tempreg,$tempreg,$at
5805 For a local symbol, we want
5806 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5807 lui $at,<hiconstant>
5808 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5809 addu $tempreg,$tempreg,$at
5812 expr1
.X_add_number
= offset_expr
.X_add_number
;
5813 offset_expr
.X_add_number
= 0;
5814 relax_start (offset_expr
.X_add_symbol
);
5815 gpdelay
= reg_needs_delay (mips_gp_register
);
5816 if (expr1
.X_add_number
== 0 && breg
== 0
5817 && (call
|| tempreg
== PIC_CALL_REG
))
5819 lui_reloc_type
= (int) BFD_RELOC_MIPS_CALL_HI16
;
5820 lw_reloc_type
= (int) BFD_RELOC_MIPS_CALL_LO16
;
5822 macro_build (&offset_expr
, "lui", "t,u", tempreg
, lui_reloc_type
);
5823 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5824 tempreg
, tempreg
, mips_gp_register
);
5825 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5826 tempreg
, lw_reloc_type
, tempreg
);
5827 if (expr1
.X_add_number
== 0)
5831 /* We're going to put in an addu instruction using
5832 tempreg, so we may as well insert the nop right
5837 else if (expr1
.X_add_number
>= -0x8000
5838 && expr1
.X_add_number
< 0x8000)
5841 macro_build (&expr1
, ADDRESS_ADDI_INSN
, "t,r,j",
5842 tempreg
, tempreg
, BFD_RELOC_LO16
);
5848 /* If we are going to add in a base register, and the
5849 target register and the base register are the same,
5850 then we are using AT as a temporary register. Since
5851 we want to load the constant into AT, we add our
5852 current AT (from the global offset table) and the
5853 register into the register now, and pretend we were
5854 not using a base register. */
5859 assert (tempreg
== AT
);
5861 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5866 load_register (AT
, &expr1
, HAVE_64BIT_ADDRESSES
);
5867 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", dreg
, dreg
, AT
);
5871 offset_expr
.X_add_number
=
5872 ((expr1
.X_add_number
+ 0x8000) & 0xffff) - 0x8000;
5877 /* This is needed because this instruction uses $gp, but
5878 the first instruction on the main stream does not. */
5879 macro_build (NULL
, "nop", "");
5882 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5883 local_reloc_type
, mips_gp_register
);
5884 if (expr1
.X_add_number
>= -0x8000
5885 && expr1
.X_add_number
< 0x8000)
5888 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5889 tempreg
, tempreg
, BFD_RELOC_LO16
);
5890 /* FIXME: If add_number is 0, and there was no base
5891 register, the external symbol case ended with a load,
5892 so if the symbol turns out to not be external, and
5893 the next instruction uses tempreg, an unnecessary nop
5894 will be inserted. */
5900 /* We must add in the base register now, as in the
5901 external symbol case. */
5902 assert (tempreg
== AT
);
5904 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5907 /* We set breg to 0 because we have arranged to add
5908 it in in both cases. */
5912 macro_build_lui (&expr1
, AT
);
5913 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5914 AT
, AT
, BFD_RELOC_LO16
);
5915 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5916 tempreg
, tempreg
, AT
);
5921 else if (mips_big_got
&& HAVE_NEWABI
)
5923 int lui_reloc_type
= (int) BFD_RELOC_MIPS_GOT_HI16
;
5924 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT_LO16
;
5925 int add_breg_early
= 0;
5927 /* This is the large GOT case. If this is a reference to an
5928 external symbol, and there is no constant, we want
5929 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5930 add $tempreg,$tempreg,$gp
5931 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5932 or for lca or if tempreg is PIC_CALL_REG
5933 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5934 add $tempreg,$tempreg,$gp
5935 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5937 If we have a small constant, and this is a reference to
5938 an external symbol, we want
5939 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5940 add $tempreg,$tempreg,$gp
5941 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5942 addi $tempreg,$tempreg,<constant>
5944 If we have a large constant, and this is a reference to
5945 an external symbol, we want
5946 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5947 addu $tempreg,$tempreg,$gp
5948 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5949 lui $at,<hiconstant>
5950 addi $at,$at,<loconstant>
5951 add $tempreg,$tempreg,$at
5953 If we have NewABI, and we know it's a local symbol, we want
5954 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5955 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5956 otherwise we have to resort to GOT_HI16/GOT_LO16. */
5958 relax_start (offset_expr
.X_add_symbol
);
5960 expr1
.X_add_number
= offset_expr
.X_add_number
;
5961 offset_expr
.X_add_number
= 0;
5963 if (expr1
.X_add_number
== 0 && breg
== 0
5964 && (call
|| tempreg
== PIC_CALL_REG
))
5966 lui_reloc_type
= (int) BFD_RELOC_MIPS_CALL_HI16
;
5967 lw_reloc_type
= (int) BFD_RELOC_MIPS_CALL_LO16
;
5969 macro_build (&offset_expr
, "lui", "t,u", tempreg
, lui_reloc_type
);
5970 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5971 tempreg
, tempreg
, mips_gp_register
);
5972 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5973 tempreg
, lw_reloc_type
, tempreg
);
5975 if (expr1
.X_add_number
== 0)
5977 else if (expr1
.X_add_number
>= -0x8000
5978 && expr1
.X_add_number
< 0x8000)
5980 macro_build (&expr1
, ADDRESS_ADDI_INSN
, "t,r,j",
5981 tempreg
, tempreg
, BFD_RELOC_LO16
);
5983 else if (IS_SEXT_32BIT_NUM (expr1
.X_add_number
+ 0x8000))
5987 /* If we are going to add in a base register, and the
5988 target register and the base register are the same,
5989 then we are using AT as a temporary register. Since
5990 we want to load the constant into AT, we add our
5991 current AT (from the global offset table) and the
5992 register into the register now, and pretend we were
5993 not using a base register. */
5998 assert (tempreg
== AT
);
5999 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6005 load_register (AT
, &expr1
, HAVE_64BIT_ADDRESSES
);
6006 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", dreg
, dreg
, AT
);
6011 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6014 offset_expr
.X_add_number
= expr1
.X_add_number
;
6015 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6016 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
6017 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j", tempreg
,
6018 tempreg
, BFD_RELOC_MIPS_GOT_OFST
);
6021 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6022 treg
, tempreg
, breg
);
6032 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", treg
, tempreg
, breg
);
6036 /* The j instruction may not be used in PIC code, since it
6037 requires an absolute address. We convert it to a b
6039 if (mips_pic
== NO_PIC
)
6040 macro_build (&offset_expr
, "j", "a");
6042 macro_build (&offset_expr
, "b", "p");
6045 /* The jal instructions must be handled as macros because when
6046 generating PIC code they expand to multi-instruction
6047 sequences. Normally they are simple instructions. */
6052 if (mips_pic
== NO_PIC
)
6053 macro_build (NULL
, "jalr", "d,s", dreg
, sreg
);
6056 if (sreg
!= PIC_CALL_REG
)
6057 as_warn (_("MIPS PIC call to register other than $25"));
6059 macro_build (NULL
, "jalr", "d,s", dreg
, sreg
);
6060 if (mips_pic
== SVR4_PIC
&& !HAVE_NEWABI
)
6062 if (mips_cprestore_offset
< 0)
6063 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6066 if (! mips_frame_reg_valid
)
6068 as_warn (_("No .frame pseudo-op used in PIC code"));
6069 /* Quiet this warning. */
6070 mips_frame_reg_valid
= 1;
6072 if (! mips_cprestore_valid
)
6074 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6075 /* Quiet this warning. */
6076 mips_cprestore_valid
= 1;
6078 expr1
.X_add_number
= mips_cprestore_offset
;
6079 macro_build_ldst_constoffset (&expr1
, ADDRESS_LOAD_INSN
,
6082 HAVE_64BIT_ADDRESSES
);
6090 if (mips_pic
== NO_PIC
)
6091 macro_build (&offset_expr
, "jal", "a");
6092 else if (mips_pic
== SVR4_PIC
)
6094 /* If this is a reference to an external symbol, and we are
6095 using a small GOT, we want
6096 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
6100 lw $gp,cprestore($sp)
6101 The cprestore value is set using the .cprestore
6102 pseudo-op. If we are using a big GOT, we want
6103 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6105 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
6109 lw $gp,cprestore($sp)
6110 If the symbol is not external, we want
6111 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6113 addiu $25,$25,<sym> (BFD_RELOC_LO16)
6116 lw $gp,cprestore($sp)
6118 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
6119 sequences above, minus nops, unless the symbol is local,
6120 which enables us to use GOT_PAGE/GOT_OFST (big got) or
6126 relax_start (offset_expr
.X_add_symbol
);
6127 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6128 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL16
,
6131 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6132 PIC_CALL_REG
, BFD_RELOC_MIPS_GOT_DISP
,
6138 relax_start (offset_expr
.X_add_symbol
);
6139 macro_build (&offset_expr
, "lui", "t,u", PIC_CALL_REG
,
6140 BFD_RELOC_MIPS_CALL_HI16
);
6141 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", PIC_CALL_REG
,
6142 PIC_CALL_REG
, mips_gp_register
);
6143 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6144 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL_LO16
,
6147 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6148 PIC_CALL_REG
, BFD_RELOC_MIPS_GOT_PAGE
,
6150 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
6151 PIC_CALL_REG
, PIC_CALL_REG
,
6152 BFD_RELOC_MIPS_GOT_OFST
);
6156 macro_build_jalr (&offset_expr
);
6160 relax_start (offset_expr
.X_add_symbol
);
6163 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6164 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL16
,
6173 gpdelay
= reg_needs_delay (mips_gp_register
);
6174 macro_build (&offset_expr
, "lui", "t,u", PIC_CALL_REG
,
6175 BFD_RELOC_MIPS_CALL_HI16
);
6176 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", PIC_CALL_REG
,
6177 PIC_CALL_REG
, mips_gp_register
);
6178 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6179 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL_LO16
,
6184 macro_build (NULL
, "nop", "");
6186 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6187 PIC_CALL_REG
, BFD_RELOC_MIPS_GOT16
,
6190 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
6191 PIC_CALL_REG
, PIC_CALL_REG
, BFD_RELOC_LO16
);
6193 macro_build_jalr (&offset_expr
);
6195 if (mips_cprestore_offset
< 0)
6196 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6199 if (! mips_frame_reg_valid
)
6201 as_warn (_("No .frame pseudo-op used in PIC code"));
6202 /* Quiet this warning. */
6203 mips_frame_reg_valid
= 1;
6205 if (! mips_cprestore_valid
)
6207 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6208 /* Quiet this warning. */
6209 mips_cprestore_valid
= 1;
6211 if (mips_opts
.noreorder
)
6212 macro_build (NULL
, "nop", "");
6213 expr1
.X_add_number
= mips_cprestore_offset
;
6214 macro_build_ldst_constoffset (&expr1
, ADDRESS_LOAD_INSN
,
6217 HAVE_64BIT_ADDRESSES
);
6221 else if (mips_pic
== VXWORKS_PIC
)
6222 as_bad (_("Non-PIC jump used in PIC library"));
6245 /* Itbl support may require additional care here. */
6250 /* Itbl support may require additional care here. */
6255 /* Itbl support may require additional care here. */
6260 /* Itbl support may require additional care here. */
6273 /* Itbl support may require additional care here. */
6278 /* Itbl support may require additional care here. */
6283 /* Itbl support may require additional care here. */
6303 if (breg
== treg
|| coproc
|| lr
)
6324 /* Itbl support may require additional care here. */
6329 /* Itbl support may require additional care here. */
6334 /* Itbl support may require additional care here. */
6339 /* Itbl support may require additional care here. */
6360 /* Itbl support may require additional care here. */
6364 /* Itbl support may require additional care here. */
6369 /* Itbl support may require additional care here. */
6382 && NO_ISA_COP (mips_opts
.arch
)
6383 && (ip
->insn_mo
->pinfo2
& (INSN2_M_FP_S
| INSN2_M_FP_D
)) == 0)
6385 as_bad (_("opcode not supported on this processor: %s"),
6386 mips_cpu_info_from_arch (mips_opts
.arch
)->name
);
6390 /* Itbl support may require additional care here. */
6391 if (mask
== M_LWC1_AB
6392 || mask
== M_SWC1_AB
6393 || mask
== M_LDC1_AB
6394 || mask
== M_SDC1_AB
6398 else if (mask
== M_CACHE_AB
)
6405 if (offset_expr
.X_op
!= O_constant
6406 && offset_expr
.X_op
!= O_symbol
)
6408 as_bad (_("expression too complex"));
6409 offset_expr
.X_op
= O_constant
;
6412 if (HAVE_32BIT_ADDRESSES
6413 && !IS_SEXT_32BIT_NUM (offset_expr
.X_add_number
))
6417 sprintf_vma (value
, offset_expr
.X_add_number
);
6418 as_bad (_("Number (0x%s) larger than 32 bits"), value
);
6421 /* A constant expression in PIC code can be handled just as it
6422 is in non PIC code. */
6423 if (offset_expr
.X_op
== O_constant
)
6425 expr1
.X_add_number
= ((offset_expr
.X_add_number
+ 0x8000)
6426 & ~(bfd_vma
) 0xffff);
6427 normalize_address_expr (&expr1
);
6428 load_register (tempreg
, &expr1
, HAVE_64BIT_ADDRESSES
);
6430 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6431 tempreg
, tempreg
, breg
);
6432 macro_build (&offset_expr
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6434 else if (mips_pic
== NO_PIC
)
6436 /* If this is a reference to a GP relative symbol, and there
6437 is no base register, we want
6438 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6439 Otherwise, if there is no base register, we want
6440 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6441 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6442 If we have a constant, we need two instructions anyhow,
6443 so we always use the latter form.
6445 If we have a base register, and this is a reference to a
6446 GP relative symbol, we want
6447 addu $tempreg,$breg,$gp
6448 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
6450 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6451 addu $tempreg,$tempreg,$breg
6452 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6453 With a constant we always use the latter case.
6455 With 64bit address space and no base register and $at usable,
6457 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6458 lui $at,<sym> (BFD_RELOC_HI16_S)
6459 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6462 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6463 If we have a base register, we want
6464 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6465 lui $at,<sym> (BFD_RELOC_HI16_S)
6466 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6470 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6472 Without $at we can't generate the optimal path for superscalar
6473 processors here since this would require two temporary registers.
6474 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6475 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6477 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6479 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6480 If we have a base register, we want
6481 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6482 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6484 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6486 daddu $tempreg,$tempreg,$breg
6487 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6489 For GP relative symbols in 64bit address space we can use
6490 the same sequence as in 32bit address space. */
6491 if (HAVE_64BIT_SYMBOLS
)
6493 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
6494 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
6496 relax_start (offset_expr
.X_add_symbol
);
6499 macro_build (&offset_expr
, s
, fmt
, treg
,
6500 BFD_RELOC_GPREL16
, mips_gp_register
);
6504 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6505 tempreg
, breg
, mips_gp_register
);
6506 macro_build (&offset_expr
, s
, fmt
, treg
,
6507 BFD_RELOC_GPREL16
, tempreg
);
6512 if (used_at
== 0 && mips_opts
.at
)
6514 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6515 BFD_RELOC_MIPS_HIGHEST
);
6516 macro_build (&offset_expr
, "lui", "t,u", AT
,
6518 macro_build (&offset_expr
, "daddiu", "t,r,j", tempreg
,
6519 tempreg
, BFD_RELOC_MIPS_HIGHER
);
6521 macro_build (NULL
, "daddu", "d,v,t", AT
, AT
, breg
);
6522 macro_build (NULL
, "dsll32", "d,w,<", tempreg
, tempreg
, 0);
6523 macro_build (NULL
, "daddu", "d,v,t", tempreg
, tempreg
, AT
);
6524 macro_build (&offset_expr
, s
, fmt
, treg
, BFD_RELOC_LO16
,
6530 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6531 BFD_RELOC_MIPS_HIGHEST
);
6532 macro_build (&offset_expr
, "daddiu", "t,r,j", tempreg
,
6533 tempreg
, BFD_RELOC_MIPS_HIGHER
);
6534 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
6535 macro_build (&offset_expr
, "daddiu", "t,r,j", tempreg
,
6536 tempreg
, BFD_RELOC_HI16_S
);
6537 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
6539 macro_build (NULL
, "daddu", "d,v,t",
6540 tempreg
, tempreg
, breg
);
6541 macro_build (&offset_expr
, s
, fmt
, treg
,
6542 BFD_RELOC_LO16
, tempreg
);
6545 if (mips_relax
.sequence
)
6552 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
6553 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
6555 relax_start (offset_expr
.X_add_symbol
);
6556 macro_build (&offset_expr
, s
, fmt
, treg
, BFD_RELOC_GPREL16
,
6560 macro_build_lui (&offset_expr
, tempreg
);
6561 macro_build (&offset_expr
, s
, fmt
, treg
,
6562 BFD_RELOC_LO16
, tempreg
);
6563 if (mips_relax
.sequence
)
6568 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
6569 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
6571 relax_start (offset_expr
.X_add_symbol
);
6572 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6573 tempreg
, breg
, mips_gp_register
);
6574 macro_build (&offset_expr
, s
, fmt
, treg
,
6575 BFD_RELOC_GPREL16
, tempreg
);
6578 macro_build_lui (&offset_expr
, tempreg
);
6579 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6580 tempreg
, tempreg
, breg
);
6581 macro_build (&offset_expr
, s
, fmt
, treg
,
6582 BFD_RELOC_LO16
, tempreg
);
6583 if (mips_relax
.sequence
)
6587 else if (!mips_big_got
)
6589 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT16
;
6591 /* If this is a reference to an external symbol, we want
6592 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6594 <op> $treg,0($tempreg)
6596 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6598 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6599 <op> $treg,0($tempreg)
6602 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6603 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
6605 If there is a base register, we add it to $tempreg before
6606 the <op>. If there is a constant, we stick it in the
6607 <op> instruction. We don't handle constants larger than
6608 16 bits, because we have no way to load the upper 16 bits
6609 (actually, we could handle them for the subset of cases
6610 in which we are not using $at). */
6611 assert (offset_expr
.X_op
== O_symbol
);
6614 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6615 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
6617 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6618 tempreg
, tempreg
, breg
);
6619 macro_build (&offset_expr
, s
, fmt
, treg
,
6620 BFD_RELOC_MIPS_GOT_OFST
, tempreg
);
6623 expr1
.X_add_number
= offset_expr
.X_add_number
;
6624 offset_expr
.X_add_number
= 0;
6625 if (expr1
.X_add_number
< -0x8000
6626 || expr1
.X_add_number
>= 0x8000)
6627 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6628 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6629 lw_reloc_type
, mips_gp_register
);
6631 relax_start (offset_expr
.X_add_symbol
);
6633 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j", tempreg
,
6634 tempreg
, BFD_RELOC_LO16
);
6637 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6638 tempreg
, tempreg
, breg
);
6639 macro_build (&expr1
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6641 else if (mips_big_got
&& !HAVE_NEWABI
)
6645 /* If this is a reference to an external symbol, we want
6646 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6647 addu $tempreg,$tempreg,$gp
6648 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6649 <op> $treg,0($tempreg)
6651 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6653 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6654 <op> $treg,0($tempreg)
6655 If there is a base register, we add it to $tempreg before
6656 the <op>. If there is a constant, we stick it in the
6657 <op> instruction. We don't handle constants larger than
6658 16 bits, because we have no way to load the upper 16 bits
6659 (actually, we could handle them for the subset of cases
6660 in which we are not using $at). */
6661 assert (offset_expr
.X_op
== O_symbol
);
6662 expr1
.X_add_number
= offset_expr
.X_add_number
;
6663 offset_expr
.X_add_number
= 0;
6664 if (expr1
.X_add_number
< -0x8000
6665 || expr1
.X_add_number
>= 0x8000)
6666 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6667 gpdelay
= reg_needs_delay (mips_gp_register
);
6668 relax_start (offset_expr
.X_add_symbol
);
6669 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6670 BFD_RELOC_MIPS_GOT_HI16
);
6671 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", tempreg
, tempreg
,
6673 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6674 BFD_RELOC_MIPS_GOT_LO16
, tempreg
);
6677 macro_build (NULL
, "nop", "");
6678 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6679 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
6681 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j", tempreg
,
6682 tempreg
, BFD_RELOC_LO16
);
6686 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6687 tempreg
, tempreg
, breg
);
6688 macro_build (&expr1
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6690 else if (mips_big_got
&& HAVE_NEWABI
)
6692 /* If this is a reference to an external symbol, we want
6693 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6694 add $tempreg,$tempreg,$gp
6695 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6696 <op> $treg,<ofst>($tempreg)
6697 Otherwise, for local symbols, we want:
6698 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6699 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
6700 assert (offset_expr
.X_op
== O_symbol
);
6701 expr1
.X_add_number
= offset_expr
.X_add_number
;
6702 offset_expr
.X_add_number
= 0;
6703 if (expr1
.X_add_number
< -0x8000
6704 || expr1
.X_add_number
>= 0x8000)
6705 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6706 relax_start (offset_expr
.X_add_symbol
);
6707 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6708 BFD_RELOC_MIPS_GOT_HI16
);
6709 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", tempreg
, tempreg
,
6711 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6712 BFD_RELOC_MIPS_GOT_LO16
, tempreg
);
6714 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6715 tempreg
, tempreg
, breg
);
6716 macro_build (&expr1
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6719 offset_expr
.X_add_number
= expr1
.X_add_number
;
6720 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6721 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
6723 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6724 tempreg
, tempreg
, breg
);
6725 macro_build (&offset_expr
, s
, fmt
, treg
,
6726 BFD_RELOC_MIPS_GOT_OFST
, tempreg
);
6736 load_register (treg
, &imm_expr
, 0);
6740 load_register (treg
, &imm_expr
, 1);
6744 if (imm_expr
.X_op
== O_constant
)
6747 load_register (AT
, &imm_expr
, 0);
6748 macro_build (NULL
, "mtc1", "t,G", AT
, treg
);
6753 assert (offset_expr
.X_op
== O_symbol
6754 && strcmp (segment_name (S_GET_SEGMENT
6755 (offset_expr
.X_add_symbol
)),
6757 && offset_expr
.X_add_number
== 0);
6758 macro_build (&offset_expr
, "lwc1", "T,o(b)", treg
,
6759 BFD_RELOC_MIPS_LITERAL
, mips_gp_register
);
6764 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6765 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6766 order 32 bits of the value and the low order 32 bits are either
6767 zero or in OFFSET_EXPR. */
6768 if (imm_expr
.X_op
== O_constant
|| imm_expr
.X_op
== O_big
)
6770 if (HAVE_64BIT_GPRS
)
6771 load_register (treg
, &imm_expr
, 1);
6776 if (target_big_endian
)
6788 load_register (hreg
, &imm_expr
, 0);
6791 if (offset_expr
.X_op
== O_absent
)
6792 move_register (lreg
, 0);
6795 assert (offset_expr
.X_op
== O_constant
);
6796 load_register (lreg
, &offset_expr
, 0);
6803 /* We know that sym is in the .rdata section. First we get the
6804 upper 16 bits of the address. */
6805 if (mips_pic
== NO_PIC
)
6807 macro_build_lui (&offset_expr
, AT
);
6812 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", AT
,
6813 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
6817 /* Now we load the register(s). */
6818 if (HAVE_64BIT_GPRS
)
6821 macro_build (&offset_expr
, "ld", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
6826 macro_build (&offset_expr
, "lw", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
6829 /* FIXME: How in the world do we deal with the possible
6831 offset_expr
.X_add_number
+= 4;
6832 macro_build (&offset_expr
, "lw", "t,o(b)",
6833 treg
+ 1, BFD_RELOC_LO16
, AT
);
6839 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
6840 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
6841 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
6842 the value and the low order 32 bits are either zero or in
6844 if (imm_expr
.X_op
== O_constant
|| imm_expr
.X_op
== O_big
)
6847 load_register (AT
, &imm_expr
, HAVE_64BIT_FPRS
);
6848 if (HAVE_64BIT_FPRS
)
6850 assert (HAVE_64BIT_GPRS
);
6851 macro_build (NULL
, "dmtc1", "t,S", AT
, treg
);
6855 macro_build (NULL
, "mtc1", "t,G", AT
, treg
+ 1);
6856 if (offset_expr
.X_op
== O_absent
)
6857 macro_build (NULL
, "mtc1", "t,G", 0, treg
);
6860 assert (offset_expr
.X_op
== O_constant
);
6861 load_register (AT
, &offset_expr
, 0);
6862 macro_build (NULL
, "mtc1", "t,G", AT
, treg
);
6868 assert (offset_expr
.X_op
== O_symbol
6869 && offset_expr
.X_add_number
== 0);
6870 s
= segment_name (S_GET_SEGMENT (offset_expr
.X_add_symbol
));
6871 if (strcmp (s
, ".lit8") == 0)
6873 if (mips_opts
.isa
!= ISA_MIPS1
)
6875 macro_build (&offset_expr
, "ldc1", "T,o(b)", treg
,
6876 BFD_RELOC_MIPS_LITERAL
, mips_gp_register
);
6879 breg
= mips_gp_register
;
6880 r
= BFD_RELOC_MIPS_LITERAL
;
6885 assert (strcmp (s
, RDATA_SECTION_NAME
) == 0);
6887 if (mips_pic
!= NO_PIC
)
6888 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", AT
,
6889 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
6892 /* FIXME: This won't work for a 64 bit address. */
6893 macro_build_lui (&offset_expr
, AT
);
6896 if (mips_opts
.isa
!= ISA_MIPS1
)
6898 macro_build (&offset_expr
, "ldc1", "T,o(b)",
6899 treg
, BFD_RELOC_LO16
, AT
);
6908 /* Even on a big endian machine $fn comes before $fn+1. We have
6909 to adjust when loading from memory. */
6912 assert (mips_opts
.isa
== ISA_MIPS1
);
6913 macro_build (&offset_expr
, "lwc1", "T,o(b)",
6914 target_big_endian
? treg
+ 1 : treg
, r
, breg
);
6915 /* FIXME: A possible overflow which I don't know how to deal
6917 offset_expr
.X_add_number
+= 4;
6918 macro_build (&offset_expr
, "lwc1", "T,o(b)",
6919 target_big_endian
? treg
: treg
+ 1, r
, breg
);
6924 * The MIPS assembler seems to check for X_add_number not
6925 * being double aligned and generating:
6928 * addiu at,at,%lo(foo+1)
6931 * But, the resulting address is the same after relocation so why
6932 * generate the extra instruction?
6934 /* Itbl support may require additional care here. */
6936 if (mips_opts
.isa
!= ISA_MIPS1
)
6947 if (mips_opts
.isa
!= ISA_MIPS1
)
6955 /* Itbl support may require additional care here. */
6960 if (HAVE_64BIT_GPRS
)
6971 if (HAVE_64BIT_GPRS
)
6981 if (offset_expr
.X_op
!= O_symbol
6982 && offset_expr
.X_op
!= O_constant
)
6984 as_bad (_("expression too complex"));
6985 offset_expr
.X_op
= O_constant
;
6988 if (HAVE_32BIT_ADDRESSES
6989 && !IS_SEXT_32BIT_NUM (offset_expr
.X_add_number
))
6993 sprintf_vma (value
, offset_expr
.X_add_number
);
6994 as_bad (_("Number (0x%s) larger than 32 bits"), value
);
6997 /* Even on a big endian machine $fn comes before $fn+1. We have
6998 to adjust when loading from memory. We set coproc if we must
6999 load $fn+1 first. */
7000 /* Itbl support may require additional care here. */
7001 if (! target_big_endian
)
7004 if (mips_pic
== NO_PIC
7005 || offset_expr
.X_op
== O_constant
)
7007 /* If this is a reference to a GP relative symbol, we want
7008 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
7009 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
7010 If we have a base register, we use this
7012 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
7013 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
7014 If this is not a GP relative symbol, we want
7015 lui $at,<sym> (BFD_RELOC_HI16_S)
7016 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7017 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7018 If there is a base register, we add it to $at after the
7019 lui instruction. If there is a constant, we always use
7021 if (offset_expr
.X_op
== O_symbol
7022 && (valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
7023 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
7025 relax_start (offset_expr
.X_add_symbol
);
7028 tempreg
= mips_gp_register
;
7032 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
7033 AT
, breg
, mips_gp_register
);
7038 /* Itbl support may require additional care here. */
7039 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7040 BFD_RELOC_GPREL16
, tempreg
);
7041 offset_expr
.X_add_number
+= 4;
7043 /* Set mips_optimize to 2 to avoid inserting an
7045 hold_mips_optimize
= mips_optimize
;
7047 /* Itbl support may require additional care here. */
7048 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
7049 BFD_RELOC_GPREL16
, tempreg
);
7050 mips_optimize
= hold_mips_optimize
;
7054 /* We just generated two relocs. When tc_gen_reloc
7055 handles this case, it will skip the first reloc and
7056 handle the second. The second reloc already has an
7057 extra addend of 4, which we added above. We must
7058 subtract it out, and then subtract another 4 to make
7059 the first reloc come out right. The second reloc
7060 will come out right because we are going to add 4 to
7061 offset_expr when we build its instruction below.
7063 If we have a symbol, then we don't want to include
7064 the offset, because it will wind up being included
7065 when we generate the reloc. */
7067 if (offset_expr
.X_op
== O_constant
)
7068 offset_expr
.X_add_number
-= 8;
7071 offset_expr
.X_add_number
= -4;
7072 offset_expr
.X_op
= O_constant
;
7076 macro_build_lui (&offset_expr
, AT
);
7078 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
7079 /* Itbl support may require additional care here. */
7080 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7081 BFD_RELOC_LO16
, AT
);
7082 /* FIXME: How do we handle overflow here? */
7083 offset_expr
.X_add_number
+= 4;
7084 /* Itbl support may require additional care here. */
7085 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
7086 BFD_RELOC_LO16
, AT
);
7087 if (mips_relax
.sequence
)
7090 else if (!mips_big_got
)
7092 /* If this is a reference to an external symbol, we want
7093 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7098 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7100 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7101 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7102 If there is a base register we add it to $at before the
7103 lwc1 instructions. If there is a constant we include it
7104 in the lwc1 instructions. */
7106 expr1
.X_add_number
= offset_expr
.X_add_number
;
7107 if (expr1
.X_add_number
< -0x8000
7108 || expr1
.X_add_number
>= 0x8000 - 4)
7109 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7110 load_got_offset (AT
, &offset_expr
);
7113 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
7115 /* Set mips_optimize to 2 to avoid inserting an undesired
7117 hold_mips_optimize
= mips_optimize
;
7120 /* Itbl support may require additional care here. */
7121 relax_start (offset_expr
.X_add_symbol
);
7122 macro_build (&expr1
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7123 BFD_RELOC_LO16
, AT
);
7124 expr1
.X_add_number
+= 4;
7125 macro_build (&expr1
, s
, fmt
, coproc
? treg
: treg
+ 1,
7126 BFD_RELOC_LO16
, AT
);
7128 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7129 BFD_RELOC_LO16
, AT
);
7130 offset_expr
.X_add_number
+= 4;
7131 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
7132 BFD_RELOC_LO16
, AT
);
7135 mips_optimize
= hold_mips_optimize
;
7137 else if (mips_big_got
)
7141 /* If this is a reference to an external symbol, we want
7142 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7144 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
7149 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7151 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7152 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7153 If there is a base register we add it to $at before the
7154 lwc1 instructions. If there is a constant we include it
7155 in the lwc1 instructions. */
7157 expr1
.X_add_number
= offset_expr
.X_add_number
;
7158 offset_expr
.X_add_number
= 0;
7159 if (expr1
.X_add_number
< -0x8000
7160 || expr1
.X_add_number
>= 0x8000 - 4)
7161 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7162 gpdelay
= reg_needs_delay (mips_gp_register
);
7163 relax_start (offset_expr
.X_add_symbol
);
7164 macro_build (&offset_expr
, "lui", "t,u",
7165 AT
, BFD_RELOC_MIPS_GOT_HI16
);
7166 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
7167 AT
, AT
, mips_gp_register
);
7168 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
7169 AT
, BFD_RELOC_MIPS_GOT_LO16
, AT
);
7172 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
7173 /* Itbl support may require additional care here. */
7174 macro_build (&expr1
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7175 BFD_RELOC_LO16
, AT
);
7176 expr1
.X_add_number
+= 4;
7178 /* Set mips_optimize to 2 to avoid inserting an undesired
7180 hold_mips_optimize
= mips_optimize
;
7182 /* Itbl support may require additional care here. */
7183 macro_build (&expr1
, s
, fmt
, coproc
? treg
: treg
+ 1,
7184 BFD_RELOC_LO16
, AT
);
7185 mips_optimize
= hold_mips_optimize
;
7186 expr1
.X_add_number
-= 4;
7189 offset_expr
.X_add_number
= expr1
.X_add_number
;
7191 macro_build (NULL
, "nop", "");
7192 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", AT
,
7193 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
7196 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
7197 /* Itbl support may require additional care here. */
7198 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7199 BFD_RELOC_LO16
, AT
);
7200 offset_expr
.X_add_number
+= 4;
7202 /* Set mips_optimize to 2 to avoid inserting an undesired
7204 hold_mips_optimize
= mips_optimize
;
7206 /* Itbl support may require additional care here. */
7207 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
7208 BFD_RELOC_LO16
, AT
);
7209 mips_optimize
= hold_mips_optimize
;
7223 assert (HAVE_32BIT_ADDRESSES
);
7224 macro_build (&offset_expr
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
7225 offset_expr
.X_add_number
+= 4;
7226 macro_build (&offset_expr
, s
, "t,o(b)", treg
+ 1, BFD_RELOC_LO16
, breg
);
7229 /* New code added to support COPZ instructions.
7230 This code builds table entries out of the macros in mip_opcodes.
7231 R4000 uses interlocks to handle coproc delays.
7232 Other chips (like the R3000) require nops to be inserted for delays.
7234 FIXME: Currently, we require that the user handle delays.
7235 In order to fill delay slots for non-interlocked chips,
7236 we must have a way to specify delays based on the coprocessor.
7237 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
7238 What are the side-effects of the cop instruction?
7239 What cache support might we have and what are its effects?
7240 Both coprocessor & memory require delays. how long???
7241 What registers are read/set/modified?
7243 If an itbl is provided to interpret cop instructions,
7244 this knowledge can be encoded in the itbl spec. */
7258 if (NO_ISA_COP (mips_opts
.arch
)
7259 && (ip
->insn_mo
->pinfo2
& INSN2_M_FP_S
) == 0)
7261 as_bad (_("opcode not supported on this processor: %s"),
7262 mips_cpu_info_from_arch (mips_opts
.arch
)->name
);
7266 /* For now we just do C (same as Cz). The parameter will be
7267 stored in insn_opcode by mips_ip. */
7268 macro_build (NULL
, s
, "C", ip
->insn_opcode
);
7272 move_register (dreg
, sreg
);
7275 #ifdef LOSING_COMPILER
7277 /* Try and see if this is a new itbl instruction.
7278 This code builds table entries out of the macros in mip_opcodes.
7279 FIXME: For now we just assemble the expression and pass it's
7280 value along as a 32-bit immediate.
7281 We may want to have the assembler assemble this value,
7282 so that we gain the assembler's knowledge of delay slots,
7284 Would it be more efficient to use mask (id) here? */
7285 if (itbl_have_entries
7286 && (immed_expr
= itbl_assemble (ip
->insn_mo
->name
, "")))
7288 s
= ip
->insn_mo
->name
;
7290 coproc
= ITBL_DECODE_PNUM (immed_expr
);;
7291 macro_build (&immed_expr
, s
, "C");
7297 if (!mips_opts
.at
&& used_at
)
7298 as_bad (_("Macro used $at after \".set noat\""));
7302 macro2 (struct mips_cl_insn
*ip
)
7304 unsigned int treg
, sreg
, dreg
, breg
;
7305 unsigned int tempreg
;
7319 bfd_reloc_code_real_type r
;
7321 treg
= (ip
->insn_opcode
>> 16) & 0x1f;
7322 dreg
= (ip
->insn_opcode
>> 11) & 0x1f;
7323 sreg
= breg
= (ip
->insn_opcode
>> 21) & 0x1f;
7324 mask
= ip
->insn_mo
->mask
;
7326 expr1
.X_op
= O_constant
;
7327 expr1
.X_op_symbol
= NULL
;
7328 expr1
.X_add_symbol
= NULL
;
7329 expr1
.X_add_number
= 1;
7333 #endif /* LOSING_COMPILER */
7338 macro_build (NULL
, dbl
? "dmultu" : "multu", "s,t", sreg
, treg
);
7339 macro_build (NULL
, "mflo", "d", dreg
);
7345 /* The MIPS assembler some times generates shifts and adds. I'm
7346 not trying to be that fancy. GCC should do this for us
7349 load_register (AT
, &imm_expr
, dbl
);
7350 macro_build (NULL
, dbl
? "dmult" : "mult", "s,t", sreg
, AT
);
7351 macro_build (NULL
, "mflo", "d", dreg
);
7367 load_register (AT
, &imm_expr
, dbl
);
7368 macro_build (NULL
, dbl
? "dmult" : "mult", "s,t", sreg
, imm
? AT
: treg
);
7369 macro_build (NULL
, "mflo", "d", dreg
);
7370 macro_build (NULL
, dbl
? "dsra32" : "sra", "d,w,<", dreg
, dreg
, RA
);
7371 macro_build (NULL
, "mfhi", "d", AT
);
7373 macro_build (NULL
, "tne", "s,t,q", dreg
, AT
, 6);
7376 expr1
.X_add_number
= 8;
7377 macro_build (&expr1
, "beq", "s,t,p", dreg
, AT
);
7378 macro_build (NULL
, "nop", "", 0);
7379 macro_build (NULL
, "break", "c", 6);
7382 macro_build (NULL
, "mflo", "d", dreg
);
7398 load_register (AT
, &imm_expr
, dbl
);
7399 macro_build (NULL
, dbl
? "dmultu" : "multu", "s,t",
7400 sreg
, imm
? AT
: treg
);
7401 macro_build (NULL
, "mfhi", "d", AT
);
7402 macro_build (NULL
, "mflo", "d", dreg
);
7404 macro_build (NULL
, "tne", "s,t,q", AT
, 0, 6);
7407 expr1
.X_add_number
= 8;
7408 macro_build (&expr1
, "beq", "s,t,p", AT
, 0);
7409 macro_build (NULL
, "nop", "", 0);
7410 macro_build (NULL
, "break", "c", 6);
7416 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
7427 macro_build (NULL
, "dnegu", "d,w", tempreg
, treg
);
7428 macro_build (NULL
, "drorv", "d,t,s", dreg
, sreg
, tempreg
);
7432 macro_build (NULL
, "dsubu", "d,v,t", AT
, 0, treg
);
7433 macro_build (NULL
, "dsrlv", "d,t,s", AT
, sreg
, AT
);
7434 macro_build (NULL
, "dsllv", "d,t,s", dreg
, sreg
, treg
);
7435 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7439 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
7450 macro_build (NULL
, "negu", "d,w", tempreg
, treg
);
7451 macro_build (NULL
, "rorv", "d,t,s", dreg
, sreg
, tempreg
);
7455 macro_build (NULL
, "subu", "d,v,t", AT
, 0, treg
);
7456 macro_build (NULL
, "srlv", "d,t,s", AT
, sreg
, AT
);
7457 macro_build (NULL
, "sllv", "d,t,s", dreg
, sreg
, treg
);
7458 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7466 if (imm_expr
.X_op
!= O_constant
)
7467 as_bad (_("Improper rotate count"));
7468 rot
= imm_expr
.X_add_number
& 0x3f;
7469 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
7471 rot
= (64 - rot
) & 0x3f;
7473 macro_build (NULL
, "dror32", "d,w,<", dreg
, sreg
, rot
- 32);
7475 macro_build (NULL
, "dror", "d,w,<", dreg
, sreg
, rot
);
7480 macro_build (NULL
, "dsrl", "d,w,<", dreg
, sreg
, 0);
7483 l
= (rot
< 0x20) ? "dsll" : "dsll32";
7484 r
= ((0x40 - rot
) < 0x20) ? "dsrl" : "dsrl32";
7487 macro_build (NULL
, l
, "d,w,<", AT
, sreg
, rot
);
7488 macro_build (NULL
, r
, "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7489 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7497 if (imm_expr
.X_op
!= O_constant
)
7498 as_bad (_("Improper rotate count"));
7499 rot
= imm_expr
.X_add_number
& 0x1f;
7500 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
7502 macro_build (NULL
, "ror", "d,w,<", dreg
, sreg
, (32 - rot
) & 0x1f);
7507 macro_build (NULL
, "srl", "d,w,<", dreg
, sreg
, 0);
7511 macro_build (NULL
, "sll", "d,w,<", AT
, sreg
, rot
);
7512 macro_build (NULL
, "srl", "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7513 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7518 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
7520 macro_build (NULL
, "drorv", "d,t,s", dreg
, sreg
, treg
);
7524 macro_build (NULL
, "dsubu", "d,v,t", AT
, 0, treg
);
7525 macro_build (NULL
, "dsllv", "d,t,s", AT
, sreg
, AT
);
7526 macro_build (NULL
, "dsrlv", "d,t,s", dreg
, sreg
, treg
);
7527 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7531 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
7533 macro_build (NULL
, "rorv", "d,t,s", dreg
, sreg
, treg
);
7537 macro_build (NULL
, "subu", "d,v,t", AT
, 0, treg
);
7538 macro_build (NULL
, "sllv", "d,t,s", AT
, sreg
, AT
);
7539 macro_build (NULL
, "srlv", "d,t,s", dreg
, sreg
, treg
);
7540 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7548 if (imm_expr
.X_op
!= O_constant
)
7549 as_bad (_("Improper rotate count"));
7550 rot
= imm_expr
.X_add_number
& 0x3f;
7551 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
7554 macro_build (NULL
, "dror32", "d,w,<", dreg
, sreg
, rot
- 32);
7556 macro_build (NULL
, "dror", "d,w,<", dreg
, sreg
, rot
);
7561 macro_build (NULL
, "dsrl", "d,w,<", dreg
, sreg
, 0);
7564 r
= (rot
< 0x20) ? "dsrl" : "dsrl32";
7565 l
= ((0x40 - rot
) < 0x20) ? "dsll" : "dsll32";
7568 macro_build (NULL
, r
, "d,w,<", AT
, sreg
, rot
);
7569 macro_build (NULL
, l
, "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7570 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7578 if (imm_expr
.X_op
!= O_constant
)
7579 as_bad (_("Improper rotate count"));
7580 rot
= imm_expr
.X_add_number
& 0x1f;
7581 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
7583 macro_build (NULL
, "ror", "d,w,<", dreg
, sreg
, rot
);
7588 macro_build (NULL
, "srl", "d,w,<", dreg
, sreg
, 0);
7592 macro_build (NULL
, "srl", "d,w,<", AT
, sreg
, rot
);
7593 macro_build (NULL
, "sll", "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7594 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7599 assert (mips_opts
.isa
== ISA_MIPS1
);
7600 /* Even on a big endian machine $fn comes before $fn+1. We have
7601 to adjust when storing to memory. */
7602 macro_build (&offset_expr
, "swc1", "T,o(b)",
7603 target_big_endian
? treg
+ 1 : treg
, BFD_RELOC_LO16
, breg
);
7604 offset_expr
.X_add_number
+= 4;
7605 macro_build (&offset_expr
, "swc1", "T,o(b)",
7606 target_big_endian
? treg
: treg
+ 1, BFD_RELOC_LO16
, breg
);
7611 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, treg
, BFD_RELOC_LO16
);
7613 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7616 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, treg
);
7617 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, dreg
, BFD_RELOC_LO16
);
7622 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
7624 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7629 as_warn (_("Instruction %s: result is always false"),
7631 move_register (dreg
, 0);
7634 if (CPU_HAS_SEQ (mips_opts
.arch
)
7635 && -512 <= imm_expr
.X_add_number
7636 && imm_expr
.X_add_number
< 512)
7638 macro_build (NULL
, "seqi", "t,r,+Q", dreg
, sreg
,
7639 imm_expr
.X_add_number
);
7642 if (imm_expr
.X_op
== O_constant
7643 && imm_expr
.X_add_number
>= 0
7644 && imm_expr
.X_add_number
< 0x10000)
7646 macro_build (&imm_expr
, "xori", "t,r,i", dreg
, sreg
, BFD_RELOC_LO16
);
7648 else if (imm_expr
.X_op
== O_constant
7649 && imm_expr
.X_add_number
> -0x8000
7650 && imm_expr
.X_add_number
< 0)
7652 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7653 macro_build (&imm_expr
, HAVE_32BIT_GPRS
? "addiu" : "daddiu",
7654 "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7656 else if (CPU_HAS_SEQ (mips_opts
.arch
))
7659 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7660 macro_build (NULL
, "seq", "d,v,t", dreg
, sreg
, AT
);
7665 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7666 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, AT
);
7669 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, dreg
, BFD_RELOC_LO16
);
7672 case M_SGE
: /* sreg >= treg <==> not (sreg < treg) */
7678 macro_build (NULL
, s
, "d,v,t", dreg
, sreg
, treg
);
7679 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7682 case M_SGE_I
: /* sreg >= I <==> not (sreg < I) */
7684 if (imm_expr
.X_op
== O_constant
7685 && imm_expr
.X_add_number
>= -0x8000
7686 && imm_expr
.X_add_number
< 0x8000)
7688 macro_build (&imm_expr
, mask
== M_SGE_I
? "slti" : "sltiu", "t,r,j",
7689 dreg
, sreg
, BFD_RELOC_LO16
);
7693 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7694 macro_build (NULL
, mask
== M_SGE_I
? "slt" : "sltu", "d,v,t",
7698 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7701 case M_SGT
: /* sreg > treg <==> treg < sreg */
7707 macro_build (NULL
, s
, "d,v,t", dreg
, treg
, sreg
);
7710 case M_SGT_I
: /* sreg > I <==> I < sreg */
7717 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7718 macro_build (NULL
, s
, "d,v,t", dreg
, AT
, sreg
);
7721 case M_SLE
: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
7727 macro_build (NULL
, s
, "d,v,t", dreg
, treg
, sreg
);
7728 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7731 case M_SLE_I
: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
7738 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7739 macro_build (NULL
, s
, "d,v,t", dreg
, AT
, sreg
);
7740 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7744 if (imm_expr
.X_op
== O_constant
7745 && imm_expr
.X_add_number
>= -0x8000
7746 && imm_expr
.X_add_number
< 0x8000)
7748 macro_build (&imm_expr
, "slti", "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7752 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7753 macro_build (NULL
, "slt", "d,v,t", dreg
, sreg
, AT
);
7757 if (imm_expr
.X_op
== O_constant
7758 && imm_expr
.X_add_number
>= -0x8000
7759 && imm_expr
.X_add_number
< 0x8000)
7761 macro_build (&imm_expr
, "sltiu", "t,r,j", dreg
, sreg
,
7766 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7767 macro_build (NULL
, "sltu", "d,v,t", dreg
, sreg
, AT
);
7772 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, treg
);
7774 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, sreg
);
7777 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, treg
);
7778 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, dreg
);
7783 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
7785 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, sreg
);
7790 as_warn (_("Instruction %s: result is always true"),
7792 macro_build (&expr1
, HAVE_32BIT_GPRS
? "addiu" : "daddiu", "t,r,j",
7793 dreg
, 0, BFD_RELOC_LO16
);
7796 if (CPU_HAS_SEQ (mips_opts
.arch
)
7797 && -512 <= imm_expr
.X_add_number
7798 && imm_expr
.X_add_number
< 512)
7800 macro_build (NULL
, "snei", "t,r,+Q", dreg
, sreg
,
7801 imm_expr
.X_add_number
);
7804 if (imm_expr
.X_op
== O_constant
7805 && imm_expr
.X_add_number
>= 0
7806 && imm_expr
.X_add_number
< 0x10000)
7808 macro_build (&imm_expr
, "xori", "t,r,i", dreg
, sreg
, BFD_RELOC_LO16
);
7810 else if (imm_expr
.X_op
== O_constant
7811 && imm_expr
.X_add_number
> -0x8000
7812 && imm_expr
.X_add_number
< 0)
7814 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7815 macro_build (&imm_expr
, HAVE_32BIT_GPRS
? "addiu" : "daddiu",
7816 "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7818 else if (CPU_HAS_SEQ (mips_opts
.arch
))
7821 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7822 macro_build (NULL
, "sne", "d,v,t", dreg
, sreg
, AT
);
7827 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7828 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, AT
);
7831 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, dreg
);
7837 if (imm_expr
.X_op
== O_constant
7838 && imm_expr
.X_add_number
> -0x8000
7839 && imm_expr
.X_add_number
<= 0x8000)
7841 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7842 macro_build (&imm_expr
, dbl
? "daddi" : "addi", "t,r,j",
7843 dreg
, sreg
, BFD_RELOC_LO16
);
7847 load_register (AT
, &imm_expr
, dbl
);
7848 macro_build (NULL
, dbl
? "dsub" : "sub", "d,v,t", dreg
, sreg
, AT
);
7854 if (imm_expr
.X_op
== O_constant
7855 && imm_expr
.X_add_number
> -0x8000
7856 && imm_expr
.X_add_number
<= 0x8000)
7858 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7859 macro_build (&imm_expr
, dbl
? "daddiu" : "addiu", "t,r,j",
7860 dreg
, sreg
, BFD_RELOC_LO16
);
7864 load_register (AT
, &imm_expr
, dbl
);
7865 macro_build (NULL
, dbl
? "dsubu" : "subu", "d,v,t", dreg
, sreg
, AT
);
7887 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7888 macro_build (NULL
, s
, "s,t", sreg
, AT
);
7893 assert (mips_opts
.isa
== ISA_MIPS1
);
7895 sreg
= (ip
->insn_opcode
>> 11) & 0x1f; /* floating reg */
7896 dreg
= (ip
->insn_opcode
>> 06) & 0x1f; /* floating reg */
7899 * Is the double cfc1 instruction a bug in the mips assembler;
7900 * or is there a reason for it?
7903 macro_build (NULL
, "cfc1", "t,G", treg
, RA
);
7904 macro_build (NULL
, "cfc1", "t,G", treg
, RA
);
7905 macro_build (NULL
, "nop", "");
7906 expr1
.X_add_number
= 3;
7907 macro_build (&expr1
, "ori", "t,r,i", AT
, treg
, BFD_RELOC_LO16
);
7908 expr1
.X_add_number
= 2;
7909 macro_build (&expr1
, "xori", "t,r,i", AT
, AT
, BFD_RELOC_LO16
);
7910 macro_build (NULL
, "ctc1", "t,G", AT
, RA
);
7911 macro_build (NULL
, "nop", "");
7912 macro_build (NULL
, mask
== M_TRUNCWD
? "cvt.w.d" : "cvt.w.s", "D,S",
7914 macro_build (NULL
, "ctc1", "t,G", treg
, RA
);
7915 macro_build (NULL
, "nop", "");
7926 if (offset_expr
.X_add_number
>= 0x7fff)
7927 as_bad (_("operand overflow"));
7928 if (! target_big_endian
)
7929 ++offset_expr
.X_add_number
;
7930 macro_build (&offset_expr
, s
, "t,o(b)", AT
, BFD_RELOC_LO16
, breg
);
7931 if (! target_big_endian
)
7932 --offset_expr
.X_add_number
;
7934 ++offset_expr
.X_add_number
;
7935 macro_build (&offset_expr
, "lbu", "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
7936 macro_build (NULL
, "sll", "d,w,<", AT
, AT
, 8);
7937 macro_build (NULL
, "or", "d,v,t", treg
, treg
, AT
);
7950 if (offset_expr
.X_add_number
>= 0x8000 - off
)
7951 as_bad (_("operand overflow"));
7959 if (! target_big_endian
)
7960 offset_expr
.X_add_number
+= off
;
7961 macro_build (&offset_expr
, s
, "t,o(b)", tempreg
, BFD_RELOC_LO16
, breg
);
7962 if (! target_big_endian
)
7963 offset_expr
.X_add_number
-= off
;
7965 offset_expr
.X_add_number
+= off
;
7966 macro_build (&offset_expr
, s2
, "t,o(b)", tempreg
, BFD_RELOC_LO16
, breg
);
7968 /* If necessary, move the result in tempreg the final destination. */
7969 if (treg
== tempreg
)
7971 /* Protect second load's delay slot. */
7973 move_register (treg
, tempreg
);
7987 load_address (AT
, &offset_expr
, &used_at
);
7989 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
7990 if (! target_big_endian
)
7991 expr1
.X_add_number
= off
;
7993 expr1
.X_add_number
= 0;
7994 macro_build (&expr1
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
7995 if (! target_big_endian
)
7996 expr1
.X_add_number
= 0;
7998 expr1
.X_add_number
= off
;
7999 macro_build (&expr1
, s2
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8005 load_address (AT
, &offset_expr
, &used_at
);
8007 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
8008 if (target_big_endian
)
8009 expr1
.X_add_number
= 0;
8010 macro_build (&expr1
, mask
== M_ULH_A
? "lb" : "lbu", "t,o(b)",
8011 treg
, BFD_RELOC_LO16
, AT
);
8012 if (target_big_endian
)
8013 expr1
.X_add_number
= 1;
8015 expr1
.X_add_number
= 0;
8016 macro_build (&expr1
, "lbu", "t,o(b)", AT
, BFD_RELOC_LO16
, AT
);
8017 macro_build (NULL
, "sll", "d,w,<", treg
, treg
, 8);
8018 macro_build (NULL
, "or", "d,v,t", treg
, treg
, AT
);
8023 if (offset_expr
.X_add_number
>= 0x7fff)
8024 as_bad (_("operand overflow"));
8025 if (target_big_endian
)
8026 ++offset_expr
.X_add_number
;
8027 macro_build (&offset_expr
, "sb", "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
8028 macro_build (NULL
, "srl", "d,w,<", AT
, treg
, 8);
8029 if (target_big_endian
)
8030 --offset_expr
.X_add_number
;
8032 ++offset_expr
.X_add_number
;
8033 macro_build (&offset_expr
, "sb", "t,o(b)", AT
, BFD_RELOC_LO16
, breg
);
8046 if (offset_expr
.X_add_number
>= 0x8000 - off
)
8047 as_bad (_("operand overflow"));
8048 if (! target_big_endian
)
8049 offset_expr
.X_add_number
+= off
;
8050 macro_build (&offset_expr
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
8051 if (! target_big_endian
)
8052 offset_expr
.X_add_number
-= off
;
8054 offset_expr
.X_add_number
+= off
;
8055 macro_build (&offset_expr
, s2
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
8069 load_address (AT
, &offset_expr
, &used_at
);
8071 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
8072 if (! target_big_endian
)
8073 expr1
.X_add_number
= off
;
8075 expr1
.X_add_number
= 0;
8076 macro_build (&expr1
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8077 if (! target_big_endian
)
8078 expr1
.X_add_number
= 0;
8080 expr1
.X_add_number
= off
;
8081 macro_build (&expr1
, s2
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8086 load_address (AT
, &offset_expr
, &used_at
);
8088 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
8089 if (! target_big_endian
)
8090 expr1
.X_add_number
= 0;
8091 macro_build (&expr1
, "sb", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8092 macro_build (NULL
, "srl", "d,w,<", treg
, treg
, 8);
8093 if (! target_big_endian
)
8094 expr1
.X_add_number
= 1;
8096 expr1
.X_add_number
= 0;
8097 macro_build (&expr1
, "sb", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8098 if (! target_big_endian
)
8099 expr1
.X_add_number
= 0;
8101 expr1
.X_add_number
= 1;
8102 macro_build (&expr1
, "lbu", "t,o(b)", AT
, BFD_RELOC_LO16
, AT
);
8103 macro_build (NULL
, "sll", "d,w,<", treg
, treg
, 8);
8104 macro_build (NULL
, "or", "d,v,t", treg
, treg
, AT
);
8108 /* FIXME: Check if this is one of the itbl macros, since they
8109 are added dynamically. */
8110 as_bad (_("Macro %s not implemented yet"), ip
->insn_mo
->name
);
8113 if (!mips_opts
.at
&& used_at
)
8114 as_bad (_("Macro used $at after \".set noat\""));
8117 /* Implement macros in mips16 mode. */
8120 mips16_macro (struct mips_cl_insn
*ip
)
8123 int xreg
, yreg
, zreg
, tmp
;
8126 const char *s
, *s2
, *s3
;
8128 mask
= ip
->insn_mo
->mask
;
8130 xreg
= MIPS16_EXTRACT_OPERAND (RX
, *ip
);
8131 yreg
= MIPS16_EXTRACT_OPERAND (RY
, *ip
);
8132 zreg
= MIPS16_EXTRACT_OPERAND (RZ
, *ip
);
8134 expr1
.X_op
= O_constant
;
8135 expr1
.X_op_symbol
= NULL
;
8136 expr1
.X_add_symbol
= NULL
;
8137 expr1
.X_add_number
= 1;
8157 macro_build (NULL
, dbl
? "ddiv" : "div", "0,x,y", xreg
, yreg
);
8158 expr1
.X_add_number
= 2;
8159 macro_build (&expr1
, "bnez", "x,p", yreg
);
8160 macro_build (NULL
, "break", "6", 7);
8162 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
8163 since that causes an overflow. We should do that as well,
8164 but I don't see how to do the comparisons without a temporary
8167 macro_build (NULL
, s
, "x", zreg
);
8187 macro_build (NULL
, s
, "0,x,y", xreg
, yreg
);
8188 expr1
.X_add_number
= 2;
8189 macro_build (&expr1
, "bnez", "x,p", yreg
);
8190 macro_build (NULL
, "break", "6", 7);
8192 macro_build (NULL
, s2
, "x", zreg
);
8198 macro_build (NULL
, dbl
? "dmultu" : "multu", "x,y", xreg
, yreg
);
8199 macro_build (NULL
, "mflo", "x", zreg
);
8207 if (imm_expr
.X_op
!= O_constant
)
8208 as_bad (_("Unsupported large constant"));
8209 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
8210 macro_build (&imm_expr
, dbl
? "daddiu" : "addiu", "y,x,4", yreg
, xreg
);
8214 if (imm_expr
.X_op
!= O_constant
)
8215 as_bad (_("Unsupported large constant"));
8216 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
8217 macro_build (&imm_expr
, "addiu", "x,k", xreg
);
8221 if (imm_expr
.X_op
!= O_constant
)
8222 as_bad (_("Unsupported large constant"));
8223 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
8224 macro_build (&imm_expr
, "daddiu", "y,j", yreg
);
8246 goto do_reverse_branch
;
8250 goto do_reverse_branch
;
8262 goto do_reverse_branch
;
8273 macro_build (NULL
, s
, "x,y", xreg
, yreg
);
8274 macro_build (&offset_expr
, s2
, "p");
8301 goto do_addone_branch_i
;
8306 goto do_addone_branch_i
;
8321 goto do_addone_branch_i
;
8328 if (imm_expr
.X_op
!= O_constant
)
8329 as_bad (_("Unsupported large constant"));
8330 ++imm_expr
.X_add_number
;
8333 macro_build (&imm_expr
, s
, s3
, xreg
);
8334 macro_build (&offset_expr
, s2
, "p");
8338 expr1
.X_add_number
= 0;
8339 macro_build (&expr1
, "slti", "x,8", yreg
);
8341 move_register (xreg
, yreg
);
8342 expr1
.X_add_number
= 2;
8343 macro_build (&expr1
, "bteqz", "p");
8344 macro_build (NULL
, "neg", "x,w", xreg
, xreg
);
8348 /* For consistency checking, verify that all bits are specified either
8349 by the match/mask part of the instruction definition, or by the
8352 validate_mips_insn (const struct mips_opcode
*opc
)
8354 const char *p
= opc
->args
;
8356 unsigned long used_bits
= opc
->mask
;
8358 if ((used_bits
& opc
->match
) != opc
->match
)
8360 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
8361 opc
->name
, opc
->args
);
8364 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
8374 case '1': USE_BITS (OP_MASK_UDI1
, OP_SH_UDI1
); break;
8375 case '2': USE_BITS (OP_MASK_UDI2
, OP_SH_UDI2
); break;
8376 case '3': USE_BITS (OP_MASK_UDI3
, OP_SH_UDI3
); break;
8377 case '4': USE_BITS (OP_MASK_UDI4
, OP_SH_UDI4
); break;
8378 case 'A': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
8379 case 'B': USE_BITS (OP_MASK_INSMSB
, OP_SH_INSMSB
); break;
8380 case 'C': USE_BITS (OP_MASK_EXTMSBD
, OP_SH_EXTMSBD
); break;
8381 case 'D': USE_BITS (OP_MASK_RD
, OP_SH_RD
);
8382 USE_BITS (OP_MASK_SEL
, OP_SH_SEL
); break;
8383 case 'E': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
8384 case 'F': USE_BITS (OP_MASK_INSMSB
, OP_SH_INSMSB
); break;
8385 case 'G': USE_BITS (OP_MASK_EXTMSBD
, OP_SH_EXTMSBD
); break;
8386 case 'H': USE_BITS (OP_MASK_EXTMSBD
, OP_SH_EXTMSBD
); break;
8388 case 't': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8389 case 'T': USE_BITS (OP_MASK_RT
, OP_SH_RT
);
8390 USE_BITS (OP_MASK_SEL
, OP_SH_SEL
); break;
8391 case 'x': USE_BITS (OP_MASK_BBITIND
, OP_SH_BBITIND
); break;
8392 case 'X': USE_BITS (OP_MASK_BBITIND
, OP_SH_BBITIND
); break;
8393 case 'p': USE_BITS (OP_MASK_CINSPOS
, OP_SH_CINSPOS
); break;
8394 case 'P': USE_BITS (OP_MASK_CINSPOS
, OP_SH_CINSPOS
); break;
8395 case 'Q': USE_BITS (OP_MASK_SEQI
, OP_SH_SEQI
); break;
8396 case 's': USE_BITS (OP_MASK_CINSLM1
, OP_SH_CINSLM1
); break;
8397 case 'S': USE_BITS (OP_MASK_CINSLM1
, OP_SH_CINSLM1
); break;
8400 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8401 c
, opc
->name
, opc
->args
);
8405 case '<': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
8406 case '>': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
8408 case 'B': USE_BITS (OP_MASK_CODE20
, OP_SH_CODE20
); break;
8409 case 'C': USE_BITS (OP_MASK_COPZ
, OP_SH_COPZ
); break;
8410 case 'D': USE_BITS (OP_MASK_FD
, OP_SH_FD
); break;
8411 case 'E': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8413 case 'G': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
8414 case 'H': USE_BITS (OP_MASK_SEL
, OP_SH_SEL
); break;
8416 case 'J': USE_BITS (OP_MASK_CODE19
, OP_SH_CODE19
); break;
8417 case 'K': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
8419 case 'M': USE_BITS (OP_MASK_CCC
, OP_SH_CCC
); break;
8420 case 'N': USE_BITS (OP_MASK_BCC
, OP_SH_BCC
); break;
8421 case 'O': USE_BITS (OP_MASK_ALN
, OP_SH_ALN
); break;
8422 case 'Q': USE_BITS (OP_MASK_VSEL
, OP_SH_VSEL
);
8423 USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
8424 case 'R': USE_BITS (OP_MASK_FR
, OP_SH_FR
); break;
8425 case 'S': USE_BITS (OP_MASK_FS
, OP_SH_FS
); break;
8426 case 'T': USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
8427 case 'V': USE_BITS (OP_MASK_FS
, OP_SH_FS
); break;
8428 case 'W': USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
8429 case 'X': USE_BITS (OP_MASK_FD
, OP_SH_FD
); break;
8430 case 'Y': USE_BITS (OP_MASK_FS
, OP_SH_FS
); break;
8431 case 'Z': USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
8432 case 'a': USE_BITS (OP_MASK_TARGET
, OP_SH_TARGET
); break;
8433 case 'b': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8434 case 'c': USE_BITS (OP_MASK_CODE
, OP_SH_CODE
); break;
8435 case 'd': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
8437 case 'h': USE_BITS (OP_MASK_PREFX
, OP_SH_PREFX
); break;
8438 case 'i': USE_BITS (OP_MASK_IMMEDIATE
, OP_SH_IMMEDIATE
); break;
8439 case 'j': USE_BITS (OP_MASK_DELTA
, OP_SH_DELTA
); break;
8440 case 'k': USE_BITS (OP_MASK_CACHE
, OP_SH_CACHE
); break;
8442 case 'o': USE_BITS (OP_MASK_DELTA
, OP_SH_DELTA
); break;
8443 case 'p': USE_BITS (OP_MASK_DELTA
, OP_SH_DELTA
); break;
8444 case 'q': USE_BITS (OP_MASK_CODE2
, OP_SH_CODE2
); break;
8445 case 'r': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8446 case 's': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8447 case 't': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8448 case 'u': USE_BITS (OP_MASK_IMMEDIATE
, OP_SH_IMMEDIATE
); break;
8449 case 'v': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8450 case 'w': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8453 case 'P': USE_BITS (OP_MASK_PERFREG
, OP_SH_PERFREG
); break;
8454 case 'U': USE_BITS (OP_MASK_RD
, OP_SH_RD
);
8455 USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8456 case 'e': USE_BITS (OP_MASK_VECBYTE
, OP_SH_VECBYTE
); break;
8457 case '%': USE_BITS (OP_MASK_VECALIGN
, OP_SH_VECALIGN
); break;
8460 case '2': USE_BITS (OP_MASK_BP
, OP_SH_BP
); break;
8461 case '3': USE_BITS (OP_MASK_SA3
, OP_SH_SA3
); break;
8462 case '4': USE_BITS (OP_MASK_SA4
, OP_SH_SA4
); break;
8463 case '5': USE_BITS (OP_MASK_IMM8
, OP_SH_IMM8
); break;
8464 case '6': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8465 case '7': USE_BITS (OP_MASK_DSPACC
, OP_SH_DSPACC
); break;
8466 case '8': USE_BITS (OP_MASK_WRDSP
, OP_SH_WRDSP
); break;
8467 case '9': USE_BITS (OP_MASK_DSPACC_S
, OP_SH_DSPACC_S
);break;
8468 case '0': USE_BITS (OP_MASK_DSPSFT
, OP_SH_DSPSFT
); break;
8469 case '\'': USE_BITS (OP_MASK_RDDSP
, OP_SH_RDDSP
); break;
8470 case ':': USE_BITS (OP_MASK_DSPSFT_7
, OP_SH_DSPSFT_7
);break;
8471 case '@': USE_BITS (OP_MASK_IMM10
, OP_SH_IMM10
); break;
8472 case '!': USE_BITS (OP_MASK_MT_U
, OP_SH_MT_U
); break;
8473 case '$': USE_BITS (OP_MASK_MT_H
, OP_SH_MT_H
); break;
8474 case '*': USE_BITS (OP_MASK_MTACC_T
, OP_SH_MTACC_T
); break;
8475 case '&': USE_BITS (OP_MASK_MTACC_D
, OP_SH_MTACC_D
); break;
8476 case 'g': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
8478 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
8479 c
, opc
->name
, opc
->args
);
8483 if (used_bits
!= 0xffffffff)
8485 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
8486 ~used_bits
& 0xffffffff, opc
->name
, opc
->args
);
8492 /* UDI immediates. */
8500 static const struct mips_immed mips_immed
[] = {
8501 { '1', OP_SH_UDI1
, OP_MASK_UDI1
, 0},
8502 { '2', OP_SH_UDI2
, OP_MASK_UDI2
, 0},
8503 { '3', OP_SH_UDI3
, OP_MASK_UDI3
, 0},
8504 { '4', OP_SH_UDI4
, OP_MASK_UDI4
, 0},
8508 /* Check whether an odd floating-point register is allowed. */
8510 mips_oddfpreg_ok (const struct mips_opcode
*insn
, int argnum
)
8512 const char *s
= insn
->name
;
8514 if (insn
->pinfo
== INSN_MACRO
)
8515 /* Let a macro pass, we'll catch it later when it is expanded. */
8518 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts
.isa
))
8520 /* Allow odd registers for single-precision ops. */
8521 switch (insn
->pinfo
& (FP_S
| FP_D
))
8525 return 1; /* both single precision - ok */
8527 return 0; /* both double precision - fail */
8532 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
8533 s
= strchr (insn
->name
, '.');
8535 s
= s
!= NULL
? strchr (s
+ 1, '.') : NULL
;
8536 return (s
!= NULL
&& (s
[1] == 'w' || s
[1] == 's'));
8539 /* Single-precision coprocessor loads and moves are OK too. */
8540 if ((insn
->pinfo
& FP_S
)
8541 && (insn
->pinfo
& (INSN_COPROC_MEMORY_DELAY
| INSN_STORE_MEMORY
8542 | INSN_LOAD_COPROC_DELAY
| INSN_COPROC_MOVE_DELAY
)))
8548 /* This routine assembles an instruction into its binary format. As a
8549 side effect, it sets one of the global variables imm_reloc or
8550 offset_reloc to the type of relocation to do if one of the operands
8551 is an address expression. */
8554 mips_ip (char *str
, struct mips_cl_insn
*ip
)
8559 struct mips_opcode
*insn
;
8562 unsigned int lastregno
= 0;
8563 unsigned int lastpos
= 0;
8564 unsigned int limlo
, limhi
;
8567 offsetT min_range
, max_range
;
8573 /* If the instruction contains a '.', we first try to match an instruction
8574 including the '.'. Then we try again without the '.'. */
8576 for (s
= str
; *s
!= '\0' && !ISSPACE (*s
); ++s
)
8579 /* If we stopped on whitespace, then replace the whitespace with null for
8580 the call to hash_find. Save the character we replaced just in case we
8581 have to re-parse the instruction. */
8588 insn
= (struct mips_opcode
*) hash_find (op_hash
, str
);
8590 /* If we didn't find the instruction in the opcode table, try again, but
8591 this time with just the instruction up to, but not including the
8595 /* Restore the character we overwrite above (if any). */
8599 /* Scan up to the first '.' or whitespace. */
8601 *s
!= '\0' && *s
!= '.' && !ISSPACE (*s
);
8605 /* If we did not find a '.', then we can quit now. */
8608 insn_error
= "unrecognized opcode";
8612 /* Lookup the instruction in the hash table. */
8614 if ((insn
= (struct mips_opcode
*) hash_find (op_hash
, str
)) == NULL
)
8616 insn_error
= "unrecognized opcode";
8626 assert (strcmp (insn
->name
, str
) == 0);
8628 ok
= is_opcode_valid (insn
, FALSE
);
8631 if (insn
+ 1 < &mips_opcodes
[NUMOPCODES
]
8632 && strcmp (insn
->name
, insn
[1].name
) == 0)
8641 static char buf
[100];
8643 _("opcode not supported on this processor: %s (%s)"),
8644 mips_cpu_info_from_arch (mips_opts
.arch
)->name
,
8645 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
8654 create_insn (ip
, insn
);
8657 for (args
= insn
->args
;; ++args
)
8661 s
+= strspn (s
, " \t");
8665 case '\0': /* end of args */
8670 case '2': /* dsp 2-bit unsigned immediate in bit 11 */
8671 my_getExpression (&imm_expr
, s
);
8672 check_absolute_expr (ip
, &imm_expr
);
8673 if ((unsigned long) imm_expr
.X_add_number
!= 1
8674 && (unsigned long) imm_expr
.X_add_number
!= 3)
8676 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
8677 (unsigned long) imm_expr
.X_add_number
);
8679 INSERT_OPERAND (BP
, *ip
, imm_expr
.X_add_number
);
8680 imm_expr
.X_op
= O_absent
;
8684 case '3': /* dsp 3-bit unsigned immediate in bit 21 */
8685 my_getExpression (&imm_expr
, s
);
8686 check_absolute_expr (ip
, &imm_expr
);
8687 if (imm_expr
.X_add_number
& ~OP_MASK_SA3
)
8689 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8690 OP_MASK_SA3
, (unsigned long) imm_expr
.X_add_number
);
8692 INSERT_OPERAND (SA3
, *ip
, imm_expr
.X_add_number
);
8693 imm_expr
.X_op
= O_absent
;
8697 case '4': /* dsp 4-bit unsigned immediate in bit 21 */
8698 my_getExpression (&imm_expr
, s
);
8699 check_absolute_expr (ip
, &imm_expr
);
8700 if (imm_expr
.X_add_number
& ~OP_MASK_SA4
)
8702 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8703 OP_MASK_SA4
, (unsigned long) imm_expr
.X_add_number
);
8705 INSERT_OPERAND (SA4
, *ip
, imm_expr
.X_add_number
);
8706 imm_expr
.X_op
= O_absent
;
8710 case '5': /* dsp 8-bit unsigned immediate in bit 16 */
8711 my_getExpression (&imm_expr
, s
);
8712 check_absolute_expr (ip
, &imm_expr
);
8713 if (imm_expr
.X_add_number
& ~OP_MASK_IMM8
)
8715 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8716 OP_MASK_IMM8
, (unsigned long) imm_expr
.X_add_number
);
8718 INSERT_OPERAND (IMM8
, *ip
, imm_expr
.X_add_number
);
8719 imm_expr
.X_op
= O_absent
;
8723 case '6': /* dsp 5-bit unsigned immediate in bit 21 */
8724 my_getExpression (&imm_expr
, s
);
8725 check_absolute_expr (ip
, &imm_expr
);
8726 if (imm_expr
.X_add_number
& ~OP_MASK_RS
)
8728 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8729 OP_MASK_RS
, (unsigned long) imm_expr
.X_add_number
);
8731 INSERT_OPERAND (RS
, *ip
, imm_expr
.X_add_number
);
8732 imm_expr
.X_op
= O_absent
;
8736 case '7': /* four dsp accumulators in bits 11,12 */
8737 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8738 s
[3] >= '0' && s
[3] <= '3')
8742 INSERT_OPERAND (DSPACC
, *ip
, regno
);
8746 as_bad (_("Invalid dsp acc register"));
8749 case '8': /* dsp 6-bit unsigned immediate in bit 11 */
8750 my_getExpression (&imm_expr
, s
);
8751 check_absolute_expr (ip
, &imm_expr
);
8752 if (imm_expr
.X_add_number
& ~OP_MASK_WRDSP
)
8754 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8756 (unsigned long) imm_expr
.X_add_number
);
8758 INSERT_OPERAND (WRDSP
, *ip
, imm_expr
.X_add_number
);
8759 imm_expr
.X_op
= O_absent
;
8763 case '9': /* four dsp accumulators in bits 21,22 */
8764 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8765 s
[3] >= '0' && s
[3] <= '3')
8769 INSERT_OPERAND (DSPACC_S
, *ip
, regno
);
8773 as_bad (_("Invalid dsp acc register"));
8776 case '0': /* dsp 6-bit signed immediate in bit 20 */
8777 my_getExpression (&imm_expr
, s
);
8778 check_absolute_expr (ip
, &imm_expr
);
8779 min_range
= -((OP_MASK_DSPSFT
+ 1) >> 1);
8780 max_range
= ((OP_MASK_DSPSFT
+ 1) >> 1) - 1;
8781 if (imm_expr
.X_add_number
< min_range
||
8782 imm_expr
.X_add_number
> max_range
)
8784 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8785 (long) min_range
, (long) max_range
,
8786 (long) imm_expr
.X_add_number
);
8788 INSERT_OPERAND (DSPSFT
, *ip
, imm_expr
.X_add_number
);
8789 imm_expr
.X_op
= O_absent
;
8793 case '\'': /* dsp 6-bit unsigned immediate in bit 16 */
8794 my_getExpression (&imm_expr
, s
);
8795 check_absolute_expr (ip
, &imm_expr
);
8796 if (imm_expr
.X_add_number
& ~OP_MASK_RDDSP
)
8798 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8800 (unsigned long) imm_expr
.X_add_number
);
8802 INSERT_OPERAND (RDDSP
, *ip
, imm_expr
.X_add_number
);
8803 imm_expr
.X_op
= O_absent
;
8807 case ':': /* dsp 7-bit signed immediate in bit 19 */
8808 my_getExpression (&imm_expr
, s
);
8809 check_absolute_expr (ip
, &imm_expr
);
8810 min_range
= -((OP_MASK_DSPSFT_7
+ 1) >> 1);
8811 max_range
= ((OP_MASK_DSPSFT_7
+ 1) >> 1) - 1;
8812 if (imm_expr
.X_add_number
< min_range
||
8813 imm_expr
.X_add_number
> max_range
)
8815 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8816 (long) min_range
, (long) max_range
,
8817 (long) imm_expr
.X_add_number
);
8819 INSERT_OPERAND (DSPSFT_7
, *ip
, imm_expr
.X_add_number
);
8820 imm_expr
.X_op
= O_absent
;
8824 case '@': /* dsp 10-bit signed immediate in bit 16 */
8825 my_getExpression (&imm_expr
, s
);
8826 check_absolute_expr (ip
, &imm_expr
);
8827 min_range
= -((OP_MASK_IMM10
+ 1) >> 1);
8828 max_range
= ((OP_MASK_IMM10
+ 1) >> 1) - 1;
8829 if (imm_expr
.X_add_number
< min_range
||
8830 imm_expr
.X_add_number
> max_range
)
8832 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8833 (long) min_range
, (long) max_range
,
8834 (long) imm_expr
.X_add_number
);
8836 INSERT_OPERAND (IMM10
, *ip
, imm_expr
.X_add_number
);
8837 imm_expr
.X_op
= O_absent
;
8841 case '!': /* MT usermode flag bit. */
8842 my_getExpression (&imm_expr
, s
);
8843 check_absolute_expr (ip
, &imm_expr
);
8844 if (imm_expr
.X_add_number
& ~OP_MASK_MT_U
)
8845 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
8846 (unsigned long) imm_expr
.X_add_number
);
8847 INSERT_OPERAND (MT_U
, *ip
, imm_expr
.X_add_number
);
8848 imm_expr
.X_op
= O_absent
;
8852 case '$': /* MT load high flag bit. */
8853 my_getExpression (&imm_expr
, s
);
8854 check_absolute_expr (ip
, &imm_expr
);
8855 if (imm_expr
.X_add_number
& ~OP_MASK_MT_H
)
8856 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
8857 (unsigned long) imm_expr
.X_add_number
);
8858 INSERT_OPERAND (MT_H
, *ip
, imm_expr
.X_add_number
);
8859 imm_expr
.X_op
= O_absent
;
8863 case '*': /* four dsp accumulators in bits 18,19 */
8864 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8865 s
[3] >= '0' && s
[3] <= '3')
8869 INSERT_OPERAND (MTACC_T
, *ip
, regno
);
8873 as_bad (_("Invalid dsp/smartmips acc register"));
8876 case '&': /* four dsp accumulators in bits 13,14 */
8877 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8878 s
[3] >= '0' && s
[3] <= '3')
8882 INSERT_OPERAND (MTACC_D
, *ip
, regno
);
8886 as_bad (_("Invalid dsp/smartmips acc register"));
8898 INSERT_OPERAND (RS
, *ip
, lastregno
);
8902 INSERT_OPERAND (RT
, *ip
, lastregno
);
8906 INSERT_OPERAND (FT
, *ip
, lastregno
);
8910 INSERT_OPERAND (FS
, *ip
, lastregno
);
8916 /* Handle optional base register.
8917 Either the base register is omitted or
8918 we must have a left paren. */
8919 /* This is dependent on the next operand specifier
8920 is a base register specification. */
8921 assert (args
[1] == 'b' || args
[1] == '5'
8922 || args
[1] == '-' || args
[1] == '4');
8926 case ')': /* these must match exactly */
8933 case '+': /* Opcode extension character. */
8936 case '1': /* UDI immediates. */
8941 const struct mips_immed
*imm
= mips_immed
;
8943 while (imm
->type
&& imm
->type
!= *args
)
8947 my_getExpression (&imm_expr
, s
);
8948 check_absolute_expr (ip
, &imm_expr
);
8949 if ((unsigned long) imm_expr
.X_add_number
& ~imm
->mask
)
8951 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
8952 imm
->desc
? imm
->desc
: ip
->insn_mo
->name
,
8953 (unsigned long) imm_expr
.X_add_number
,
8954 (unsigned long) imm_expr
.X_add_number
);
8955 imm_expr
.X_add_number
&= imm
->mask
;
8957 ip
->insn_opcode
|= ((unsigned long) imm_expr
.X_add_number
8959 imm_expr
.X_op
= O_absent
;
8964 case 'A': /* ins/ext position, becomes LSB. */
8973 my_getExpression (&imm_expr
, s
);
8974 check_absolute_expr (ip
, &imm_expr
);
8975 if ((unsigned long) imm_expr
.X_add_number
< limlo
8976 || (unsigned long) imm_expr
.X_add_number
> limhi
)
8978 as_bad (_("Improper position (%lu)"),
8979 (unsigned long) imm_expr
.X_add_number
);
8980 imm_expr
.X_add_number
= limlo
;
8982 lastpos
= imm_expr
.X_add_number
;
8983 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
);
8984 imm_expr
.X_op
= O_absent
;
8988 case 'B': /* ins size, becomes MSB. */
8997 my_getExpression (&imm_expr
, s
);
8998 check_absolute_expr (ip
, &imm_expr
);
8999 /* Check for negative input so that small negative numbers
9000 will not succeed incorrectly. The checks against
9001 (pos+size) transitively check "size" itself,
9002 assuming that "pos" is reasonable. */
9003 if ((long) imm_expr
.X_add_number
< 0
9004 || ((unsigned long) imm_expr
.X_add_number
9006 || ((unsigned long) imm_expr
.X_add_number
9009 as_bad (_("Improper insert size (%lu, position %lu)"),
9010 (unsigned long) imm_expr
.X_add_number
,
9011 (unsigned long) lastpos
);
9012 imm_expr
.X_add_number
= limlo
- lastpos
;
9014 INSERT_OPERAND (INSMSB
, *ip
,
9015 lastpos
+ imm_expr
.X_add_number
- 1);
9016 imm_expr
.X_op
= O_absent
;
9020 case 'C': /* ext size, becomes MSBD. */
9033 my_getExpression (&imm_expr
, s
);
9034 check_absolute_expr (ip
, &imm_expr
);
9035 /* Check for negative input so that small negative numbers
9036 will not succeed incorrectly. The checks against
9037 (pos+size) transitively check "size" itself,
9038 assuming that "pos" is reasonable. */
9039 if ((long) imm_expr
.X_add_number
< 0
9040 || ((unsigned long) imm_expr
.X_add_number
9042 || ((unsigned long) imm_expr
.X_add_number
9045 as_bad (_("Improper extract size (%lu, position %lu)"),
9046 (unsigned long) imm_expr
.X_add_number
,
9047 (unsigned long) lastpos
);
9048 imm_expr
.X_add_number
= limlo
- lastpos
;
9050 INSERT_OPERAND (EXTMSBD
, *ip
, imm_expr
.X_add_number
- 1);
9051 imm_expr
.X_op
= O_absent
;
9056 /* +D is for disassembly only; never match. */
9060 /* "+I" is like "I", except that imm2_expr is used. */
9061 my_getExpression (&imm2_expr
, s
);
9062 if (imm2_expr
.X_op
!= O_big
9063 && imm2_expr
.X_op
!= O_constant
)
9064 insn_error
= _("absolute expression required");
9065 if (HAVE_32BIT_GPRS
)
9066 normalize_constant_expr (&imm2_expr
);
9070 case 'T': /* Coprocessor register. */
9071 /* +T is for disassembly only; never match. */
9074 case 't': /* Coprocessor register number. */
9075 if (s
[0] == '$' && ISDIGIT (s
[1]))
9085 while (ISDIGIT (*s
));
9087 as_bad (_("Invalid register number (%d)"), regno
);
9090 INSERT_OPERAND (RT
, *ip
, regno
);
9095 as_bad (_("Invalid coprocessor 0 register number"));
9099 /* bbit[01] and bbit[01]32 bit index. Give error if index
9100 is not in the valid range. */
9101 my_getExpression (&imm_expr
, s
);
9102 check_absolute_expr (ip
, &imm_expr
);
9103 if ((unsigned) imm_expr
.X_add_number
> 31)
9105 as_bad (_("Improper bit index (%lu)"),
9106 (unsigned long) imm_expr
.X_add_number
);
9107 imm_expr
.X_add_number
= 0;
9109 INSERT_OPERAND (BBITIND
, *ip
, imm_expr
.X_add_number
);
9110 imm_expr
.X_op
= O_absent
;
9115 /* bbit[01] bit index when bbit is used but we generate
9116 bbit[01]32 because the index is over 32. Move to the
9117 next candidate if index is not in the valid range. */
9118 my_getExpression (&imm_expr
, s
);
9119 check_absolute_expr (ip
, &imm_expr
);
9120 if ((unsigned) imm_expr
.X_add_number
< 32
9121 || (unsigned) imm_expr
.X_add_number
> 63)
9123 INSERT_OPERAND (BBITIND
, *ip
, imm_expr
.X_add_number
- 32);
9124 imm_expr
.X_op
= O_absent
;
9129 /* cins, cins32, exts and exts32 position field. Give error
9130 if it's not in the valid range. */
9131 my_getExpression (&imm_expr
, s
);
9132 check_absolute_expr (ip
, &imm_expr
);
9133 if ((unsigned) imm_expr
.X_add_number
> 31)
9135 as_bad (_("Improper position (%lu)"),
9136 (unsigned long) imm_expr
.X_add_number
);
9137 imm_expr
.X_add_number
= 0;
9139 /* Make the pos explicit to simplify +S. */
9140 lastpos
= imm_expr
.X_add_number
+ 32;
9141 INSERT_OPERAND (CINSPOS
, *ip
, imm_expr
.X_add_number
);
9142 imm_expr
.X_op
= O_absent
;
9147 /* cins, cins32, exts and exts32 position field. Move to
9148 the next candidate if it's not in the valid range. */
9149 my_getExpression (&imm_expr
, s
);
9150 check_absolute_expr (ip
, &imm_expr
);
9151 if ((unsigned) imm_expr
.X_add_number
< 32
9152 || (unsigned) imm_expr
.X_add_number
> 63)
9154 lastpos
= imm_expr
.X_add_number
;
9155 INSERT_OPERAND (CINSPOS
, *ip
, imm_expr
.X_add_number
- 32);
9156 imm_expr
.X_op
= O_absent
;
9161 /* cins and exts length-minus-one field. */
9162 my_getExpression (&imm_expr
, s
);
9163 check_absolute_expr (ip
, &imm_expr
);
9164 if ((unsigned long) imm_expr
.X_add_number
> 31)
9166 as_bad (_("Improper size (%lu)"),
9167 (unsigned long) imm_expr
.X_add_number
);
9168 imm_expr
.X_add_number
= 0;
9170 INSERT_OPERAND (CINSLM1
, *ip
, imm_expr
.X_add_number
);
9171 imm_expr
.X_op
= O_absent
;
9176 /* cins32/exts32 and cins/exts aliasing cint32/exts32
9177 length-minus-one field. */
9178 my_getExpression (&imm_expr
, s
);
9179 check_absolute_expr (ip
, &imm_expr
);
9180 if ((long) imm_expr
.X_add_number
< 0
9181 || (unsigned long) imm_expr
.X_add_number
+ lastpos
> 63)
9183 as_bad (_("Improper size (%lu)"),
9184 (unsigned long) imm_expr
.X_add_number
);
9185 imm_expr
.X_add_number
= 0;
9187 INSERT_OPERAND (CINSLM1
, *ip
, imm_expr
.X_add_number
);
9188 imm_expr
.X_op
= O_absent
;
9193 /* seqi/snei immediate field. */
9194 my_getExpression (&imm_expr
, s
);
9195 check_absolute_expr (ip
, &imm_expr
);
9196 if ((long) imm_expr
.X_add_number
< -512
9197 || (long) imm_expr
.X_add_number
>= 512)
9199 as_bad (_("Improper immediate (%ld)"),
9200 (long) imm_expr
.X_add_number
);
9201 imm_expr
.X_add_number
= 0;
9203 INSERT_OPERAND (SEQI
, *ip
, imm_expr
.X_add_number
);
9204 imm_expr
.X_op
= O_absent
;
9209 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
9210 *args
, insn
->name
, insn
->args
);
9211 /* Further processing is fruitless. */
9216 case '<': /* must be at least one digit */
9218 * According to the manual, if the shift amount is greater
9219 * than 31 or less than 0, then the shift amount should be
9220 * mod 32. In reality the mips assembler issues an error.
9221 * We issue a warning and mask out all but the low 5 bits.
9223 my_getExpression (&imm_expr
, s
);
9224 check_absolute_expr (ip
, &imm_expr
);
9225 if ((unsigned long) imm_expr
.X_add_number
> 31)
9226 as_warn (_("Improper shift amount (%lu)"),
9227 (unsigned long) imm_expr
.X_add_number
);
9228 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
);
9229 imm_expr
.X_op
= O_absent
;
9233 case '>': /* shift amount minus 32 */
9234 my_getExpression (&imm_expr
, s
);
9235 check_absolute_expr (ip
, &imm_expr
);
9236 if ((unsigned long) imm_expr
.X_add_number
< 32
9237 || (unsigned long) imm_expr
.X_add_number
> 63)
9239 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
- 32);
9240 imm_expr
.X_op
= O_absent
;
9244 case 'k': /* cache code */
9245 case 'h': /* prefx code */
9246 my_getExpression (&imm_expr
, s
);
9247 check_absolute_expr (ip
, &imm_expr
);
9248 if ((unsigned long) imm_expr
.X_add_number
> 31)
9249 as_warn (_("Invalid value for `%s' (%lu)"),
9251 (unsigned long) imm_expr
.X_add_number
);
9253 INSERT_OPERAND (CACHE
, *ip
, imm_expr
.X_add_number
);
9255 INSERT_OPERAND (PREFX
, *ip
, imm_expr
.X_add_number
);
9256 imm_expr
.X_op
= O_absent
;
9260 case 'c': /* break code */
9261 my_getExpression (&imm_expr
, s
);
9262 check_absolute_expr (ip
, &imm_expr
);
9263 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE
)
9264 as_warn (_("Code for %s not in range 0..1023 (%lu)"),
9266 (unsigned long) imm_expr
.X_add_number
);
9267 INSERT_OPERAND (CODE
, *ip
, imm_expr
.X_add_number
);
9268 imm_expr
.X_op
= O_absent
;
9272 case 'q': /* lower break code */
9273 my_getExpression (&imm_expr
, s
);
9274 check_absolute_expr (ip
, &imm_expr
);
9275 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE2
)
9276 as_warn (_("Lower code for %s not in range 0..1023 (%lu)"),
9278 (unsigned long) imm_expr
.X_add_number
);
9279 INSERT_OPERAND (CODE2
, *ip
, imm_expr
.X_add_number
);
9280 imm_expr
.X_op
= O_absent
;
9284 case 'B': /* 20-bit syscall/break code. */
9285 my_getExpression (&imm_expr
, s
);
9286 check_absolute_expr (ip
, &imm_expr
);
9287 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE20
)
9288 as_warn (_("Code for %s not in range 0..1048575 (%lu)"),
9290 (unsigned long) imm_expr
.X_add_number
);
9291 INSERT_OPERAND (CODE20
, *ip
, imm_expr
.X_add_number
);
9292 imm_expr
.X_op
= O_absent
;
9296 case 'C': /* Coprocessor code */
9297 my_getExpression (&imm_expr
, s
);
9298 check_absolute_expr (ip
, &imm_expr
);
9299 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_COPZ
)
9301 as_warn (_("Coproccesor code > 25 bits (%lu)"),
9302 (unsigned long) imm_expr
.X_add_number
);
9303 imm_expr
.X_add_number
&= OP_MASK_COPZ
;
9305 INSERT_OPERAND (COPZ
, *ip
, imm_expr
.X_add_number
);
9306 imm_expr
.X_op
= O_absent
;
9310 case 'J': /* 19-bit wait code. */
9311 my_getExpression (&imm_expr
, s
);
9312 check_absolute_expr (ip
, &imm_expr
);
9313 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE19
)
9315 as_warn (_("Illegal 19-bit code (%lu)"),
9316 (unsigned long) imm_expr
.X_add_number
);
9317 imm_expr
.X_add_number
&= OP_MASK_CODE19
;
9319 INSERT_OPERAND (CODE19
, *ip
, imm_expr
.X_add_number
);
9320 imm_expr
.X_op
= O_absent
;
9324 case 'P': /* Performance register. */
9325 my_getExpression (&imm_expr
, s
);
9326 check_absolute_expr (ip
, &imm_expr
);
9327 if (imm_expr
.X_add_number
!= 0 && imm_expr
.X_add_number
!= 1)
9328 as_warn (_("Invalid performance register (%lu)"),
9329 (unsigned long) imm_expr
.X_add_number
);
9330 INSERT_OPERAND (PERFREG
, *ip
, imm_expr
.X_add_number
);
9331 imm_expr
.X_op
= O_absent
;
9335 case 'G': /* Coprocessor destination register. */
9336 if (((ip
->insn_opcode
>> OP_SH_OP
) & OP_MASK_OP
) == OP_OP_COP0
)
9337 ok
= reg_lookup (&s
, RTYPE_NUM
| RTYPE_CP0
, ®no
);
9339 ok
= reg_lookup (&s
, RTYPE_NUM
| RTYPE_GP
, ®no
);
9340 INSERT_OPERAND (RD
, *ip
, regno
);
9349 case 'b': /* base register */
9350 case 'd': /* destination register */
9351 case 's': /* source register */
9352 case 't': /* target register */
9353 case 'r': /* both target and source */
9354 case 'v': /* both dest and source */
9355 case 'w': /* both dest and target */
9356 case 'E': /* coprocessor target register */
9357 case 'K': /* 'rdhwr' destination register */
9358 case 'x': /* ignore register name */
9359 case 'z': /* must be zero register */
9360 case 'U': /* destination register (clo/clz). */
9361 case 'g': /* coprocessor destination register */
9363 if (*args
== 'E' || *args
== 'K')
9364 ok
= reg_lookup (&s
, RTYPE_NUM
, ®no
);
9367 ok
= reg_lookup (&s
, RTYPE_NUM
| RTYPE_GP
, ®no
);
9368 if (regno
== AT
&& mips_opts
.at
)
9370 if (mips_opts
.at
== ATREG
)
9371 as_warn (_("used $at without \".set noat\""));
9373 as_warn (_("used $%u with \".set at=$%u\""),
9374 regno
, mips_opts
.at
);
9384 if (c
== 'r' || c
== 'v' || c
== 'w')
9391 /* 'z' only matches $0. */
9392 if (c
== 'z' && regno
!= 0)
9395 if (c
== 's' && !strcmp (ip
->insn_mo
->name
, "jalr"))
9397 if (regno
== lastregno
)
9399 insn_error
= _("source and destinationations must be different");
9402 if (regno
== 31 && lastregno
== 0)
9404 insn_error
= _("a destination register must be supplied");
9408 /* Now that we have assembled one operand, we use the args string
9409 * to figure out where it goes in the instruction. */
9416 INSERT_OPERAND (RS
, *ip
, regno
);
9422 INSERT_OPERAND (RD
, *ip
, regno
);
9425 INSERT_OPERAND (RD
, *ip
, regno
);
9426 INSERT_OPERAND (RT
, *ip
, regno
);
9431 INSERT_OPERAND (RT
, *ip
, regno
);
9434 /* This case exists because on the r3000 trunc
9435 expands into a macro which requires a gp
9436 register. On the r6000 or r4000 it is
9437 assembled into a single instruction which
9438 ignores the register. Thus the insn version
9439 is MIPS_ISA2 and uses 'x', and the macro
9440 version is MIPS_ISA1 and uses 't'. */
9443 /* This case is for the div instruction, which
9444 acts differently if the destination argument
9445 is $0. This only matches $0, and is checked
9446 outside the switch. */
9449 /* Itbl operand; not yet implemented. FIXME ?? */
9451 /* What about all other operands like 'i', which
9452 can be specified in the opcode table? */
9461 INSERT_OPERAND (RS
, *ip
, lastregno
);
9464 INSERT_OPERAND (RT
, *ip
, lastregno
);
9469 case 'O': /* MDMX alignment immediate constant. */
9470 my_getExpression (&imm_expr
, s
);
9471 check_absolute_expr (ip
, &imm_expr
);
9472 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_ALN
)
9473 as_warn ("Improper align amount (%ld), using low bits",
9474 (long) imm_expr
.X_add_number
);
9475 INSERT_OPERAND (ALN
, *ip
, imm_expr
.X_add_number
);
9476 imm_expr
.X_op
= O_absent
;
9480 case 'Q': /* MDMX vector, element sel, or const. */
9483 /* MDMX Immediate. */
9484 my_getExpression (&imm_expr
, s
);
9485 check_absolute_expr (ip
, &imm_expr
);
9486 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_FT
)
9487 as_warn (_("Invalid MDMX Immediate (%ld)"),
9488 (long) imm_expr
.X_add_number
);
9489 INSERT_OPERAND (FT
, *ip
, imm_expr
.X_add_number
);
9490 if (ip
->insn_opcode
& (OP_MASK_VSEL
<< OP_SH_VSEL
))
9491 ip
->insn_opcode
|= MDMX_FMTSEL_IMM_QH
<< OP_SH_VSEL
;
9493 ip
->insn_opcode
|= MDMX_FMTSEL_IMM_OB
<< OP_SH_VSEL
;
9494 imm_expr
.X_op
= O_absent
;
9498 /* Not MDMX Immediate. Fall through. */
9499 case 'X': /* MDMX destination register. */
9500 case 'Y': /* MDMX source register. */
9501 case 'Z': /* MDMX target register. */
9503 case 'D': /* floating point destination register */
9504 case 'S': /* floating point source register */
9505 case 'T': /* floating point target register */
9506 case 'R': /* floating point source register */
9511 || (mips_opts
.ase_mdmx
9512 && (ip
->insn_mo
->pinfo
& FP_D
)
9513 && (ip
->insn_mo
->pinfo
& (INSN_COPROC_MOVE_DELAY
9514 | INSN_COPROC_MEMORY_DELAY
9515 | INSN_LOAD_COPROC_DELAY
9516 | INSN_LOAD_MEMORY_DELAY
9517 | INSN_STORE_MEMORY
))))
9520 if (reg_lookup (&s
, rtype
, ®no
))
9522 if ((regno
& 1) != 0
9524 && ! mips_oddfpreg_ok (ip
->insn_mo
, argnum
))
9525 as_warn (_("Float register should be even, was %d"),
9533 if (c
== 'V' || c
== 'W')
9544 INSERT_OPERAND (FD
, *ip
, regno
);
9549 INSERT_OPERAND (FS
, *ip
, regno
);
9552 /* This is like 'Z', but also needs to fix the MDMX
9553 vector/scalar select bits. Note that the
9554 scalar immediate case is handled above. */
9557 int is_qh
= (ip
->insn_opcode
& (1 << OP_SH_VSEL
));
9558 int max_el
= (is_qh
? 3 : 7);
9560 my_getExpression(&imm_expr
, s
);
9561 check_absolute_expr (ip
, &imm_expr
);
9563 if (imm_expr
.X_add_number
> max_el
)
9564 as_bad(_("Bad element selector %ld"),
9565 (long) imm_expr
.X_add_number
);
9566 imm_expr
.X_add_number
&= max_el
;
9567 ip
->insn_opcode
|= (imm_expr
.X_add_number
9570 imm_expr
.X_op
= O_absent
;
9572 as_warn(_("Expecting ']' found '%s'"), s
);
9578 if (ip
->insn_opcode
& (OP_MASK_VSEL
<< OP_SH_VSEL
))
9579 ip
->insn_opcode
|= (MDMX_FMTSEL_VEC_QH
9582 ip
->insn_opcode
|= (MDMX_FMTSEL_VEC_OB
<<
9589 INSERT_OPERAND (FT
, *ip
, regno
);
9592 INSERT_OPERAND (FR
, *ip
, regno
);
9602 INSERT_OPERAND (FS
, *ip
, lastregno
);
9605 INSERT_OPERAND (FT
, *ip
, lastregno
);
9611 my_getExpression (&imm_expr
, s
);
9612 if (imm_expr
.X_op
!= O_big
9613 && imm_expr
.X_op
!= O_constant
)
9614 insn_error
= _("absolute expression required");
9615 if (HAVE_32BIT_GPRS
)
9616 normalize_constant_expr (&imm_expr
);
9621 my_getExpression (&offset_expr
, s
);
9622 normalize_address_expr (&offset_expr
);
9623 *imm_reloc
= BFD_RELOC_32
;
9636 unsigned char temp
[8];
9638 unsigned int length
;
9643 /* These only appear as the last operand in an
9644 instruction, and every instruction that accepts
9645 them in any variant accepts them in all variants.
9646 This means we don't have to worry about backing out
9647 any changes if the instruction does not match.
9649 The difference between them is the size of the
9650 floating point constant and where it goes. For 'F'
9651 and 'L' the constant is 64 bits; for 'f' and 'l' it
9652 is 32 bits. Where the constant is placed is based
9653 on how the MIPS assembler does things:
9656 f -- immediate value
9659 The .lit4 and .lit8 sections are only used if
9660 permitted by the -G argument.
9662 The code below needs to know whether the target register
9663 is 32 or 64 bits wide. It relies on the fact 'f' and
9664 'F' are used with GPR-based instructions and 'l' and
9665 'L' are used with FPR-based instructions. */
9667 f64
= *args
== 'F' || *args
== 'L';
9668 using_gprs
= *args
== 'F' || *args
== 'f';
9670 save_in
= input_line_pointer
;
9671 input_line_pointer
= s
;
9672 err
= md_atof (f64
? 'd' : 'f', (char *) temp
, &len
);
9674 s
= input_line_pointer
;
9675 input_line_pointer
= save_in
;
9676 if (err
!= NULL
&& *err
!= '\0')
9678 as_bad (_("Bad floating point constant: %s"), err
);
9679 memset (temp
, '\0', sizeof temp
);
9680 length
= f64
? 8 : 4;
9683 assert (length
== (unsigned) (f64
? 8 : 4));
9687 && (g_switch_value
< 4
9688 || (temp
[0] == 0 && temp
[1] == 0)
9689 || (temp
[2] == 0 && temp
[3] == 0))))
9691 imm_expr
.X_op
= O_constant
;
9692 if (! target_big_endian
)
9693 imm_expr
.X_add_number
= bfd_getl32 (temp
);
9695 imm_expr
.X_add_number
= bfd_getb32 (temp
);
9698 && ! mips_disable_float_construction
9699 /* Constants can only be constructed in GPRs and
9700 copied to FPRs if the GPRs are at least as wide
9701 as the FPRs. Force the constant into memory if
9702 we are using 64-bit FPRs but the GPRs are only
9705 || ! (HAVE_64BIT_FPRS
&& HAVE_32BIT_GPRS
))
9706 && ((temp
[0] == 0 && temp
[1] == 0)
9707 || (temp
[2] == 0 && temp
[3] == 0))
9708 && ((temp
[4] == 0 && temp
[5] == 0)
9709 || (temp
[6] == 0 && temp
[7] == 0)))
9711 /* The value is simple enough to load with a couple of
9712 instructions. If using 32-bit registers, set
9713 imm_expr to the high order 32 bits and offset_expr to
9714 the low order 32 bits. Otherwise, set imm_expr to
9715 the entire 64 bit constant. */
9716 if (using_gprs
? HAVE_32BIT_GPRS
: HAVE_32BIT_FPRS
)
9718 imm_expr
.X_op
= O_constant
;
9719 offset_expr
.X_op
= O_constant
;
9720 if (! target_big_endian
)
9722 imm_expr
.X_add_number
= bfd_getl32 (temp
+ 4);
9723 offset_expr
.X_add_number
= bfd_getl32 (temp
);
9727 imm_expr
.X_add_number
= bfd_getb32 (temp
);
9728 offset_expr
.X_add_number
= bfd_getb32 (temp
+ 4);
9730 if (offset_expr
.X_add_number
== 0)
9731 offset_expr
.X_op
= O_absent
;
9733 else if (sizeof (imm_expr
.X_add_number
) > 4)
9735 imm_expr
.X_op
= O_constant
;
9736 if (! target_big_endian
)
9737 imm_expr
.X_add_number
= bfd_getl64 (temp
);
9739 imm_expr
.X_add_number
= bfd_getb64 (temp
);
9743 imm_expr
.X_op
= O_big
;
9744 imm_expr
.X_add_number
= 4;
9745 if (! target_big_endian
)
9747 generic_bignum
[0] = bfd_getl16 (temp
);
9748 generic_bignum
[1] = bfd_getl16 (temp
+ 2);
9749 generic_bignum
[2] = bfd_getl16 (temp
+ 4);
9750 generic_bignum
[3] = bfd_getl16 (temp
+ 6);
9754 generic_bignum
[0] = bfd_getb16 (temp
+ 6);
9755 generic_bignum
[1] = bfd_getb16 (temp
+ 4);
9756 generic_bignum
[2] = bfd_getb16 (temp
+ 2);
9757 generic_bignum
[3] = bfd_getb16 (temp
);
9763 const char *newname
;
9766 /* Switch to the right section. */
9768 subseg
= now_subseg
;
9771 default: /* unused default case avoids warnings. */
9773 newname
= RDATA_SECTION_NAME
;
9774 if (g_switch_value
>= 8)
9778 newname
= RDATA_SECTION_NAME
;
9781 assert (g_switch_value
>= 4);
9785 new_seg
= subseg_new (newname
, (subsegT
) 0);
9787 bfd_set_section_flags (stdoutput
, new_seg
,
9792 frag_align (*args
== 'l' ? 2 : 3, 0, 0);
9793 if (IS_ELF
&& strncmp (TARGET_OS
, "elf", 3) != 0)
9794 record_alignment (new_seg
, 4);
9796 record_alignment (new_seg
, *args
== 'l' ? 2 : 3);
9798 as_bad (_("Can't use floating point insn in this section"));
9800 /* Set the argument to the current address in the
9802 offset_expr
.X_op
= O_symbol
;
9803 offset_expr
.X_add_symbol
=
9804 symbol_new ("L0\001", now_seg
,
9805 (valueT
) frag_now_fix (), frag_now
);
9806 offset_expr
.X_add_number
= 0;
9808 /* Put the floating point number into the section. */
9809 p
= frag_more ((int) length
);
9810 memcpy (p
, temp
, length
);
9812 /* Switch back to the original section. */
9813 subseg_set (seg
, subseg
);
9818 case 'i': /* 16 bit unsigned immediate */
9819 case 'j': /* 16 bit signed immediate */
9820 *imm_reloc
= BFD_RELOC_LO16
;
9821 if (my_getSmallExpression (&imm_expr
, imm_reloc
, s
) == 0)
9824 offsetT minval
, maxval
;
9826 more
= (insn
+ 1 < &mips_opcodes
[NUMOPCODES
]
9827 && strcmp (insn
->name
, insn
[1].name
) == 0);
9829 /* If the expression was written as an unsigned number,
9830 only treat it as signed if there are no more
9834 && sizeof (imm_expr
.X_add_number
) <= 4
9835 && imm_expr
.X_op
== O_constant
9836 && imm_expr
.X_add_number
< 0
9837 && imm_expr
.X_unsigned
9841 /* For compatibility with older assemblers, we accept
9842 0x8000-0xffff as signed 16-bit numbers when only
9843 signed numbers are allowed. */
9845 minval
= 0, maxval
= 0xffff;
9847 minval
= -0x8000, maxval
= 0x7fff;
9849 minval
= -0x8000, maxval
= 0xffff;
9851 if (imm_expr
.X_op
!= O_constant
9852 || imm_expr
.X_add_number
< minval
9853 || imm_expr
.X_add_number
> maxval
)
9857 if (imm_expr
.X_op
== O_constant
9858 || imm_expr
.X_op
== O_big
)
9859 as_bad (_("expression out of range"));
9865 case 'o': /* 16 bit offset */
9866 /* Check whether there is only a single bracketed expression
9867 left. If so, it must be the base register and the
9868 constant must be zero. */
9869 if (*s
== '(' && strchr (s
+ 1, '(') == 0)
9871 offset_expr
.X_op
= O_constant
;
9872 offset_expr
.X_add_number
= 0;
9876 /* If this value won't fit into a 16 bit offset, then go
9877 find a macro that will generate the 32 bit offset
9879 if (my_getSmallExpression (&offset_expr
, offset_reloc
, s
) == 0
9880 && (offset_expr
.X_op
!= O_constant
9881 || offset_expr
.X_add_number
>= 0x8000
9882 || offset_expr
.X_add_number
< -0x8000))
9888 case 'p': /* pc relative offset */
9889 *offset_reloc
= BFD_RELOC_16_PCREL_S2
;
9890 my_getExpression (&offset_expr
, s
);
9894 case 'u': /* upper 16 bits */
9895 if (my_getSmallExpression (&imm_expr
, imm_reloc
, s
) == 0
9896 && imm_expr
.X_op
== O_constant
9897 && (imm_expr
.X_add_number
< 0
9898 || imm_expr
.X_add_number
>= 0x10000))
9899 as_bad (_("lui expression not in range 0..65535"));
9903 case 'a': /* 26 bit address */
9904 my_getExpression (&offset_expr
, s
);
9906 *offset_reloc
= BFD_RELOC_MIPS_JMP
;
9909 case 'N': /* 3 bit branch condition code */
9910 case 'M': /* 3 bit compare condition code */
9912 if (ip
->insn_mo
->pinfo
& (FP_D
| FP_S
))
9914 if (!reg_lookup (&s
, rtype
, ®no
))
9916 if ((strcmp(str
+ strlen(str
) - 3, ".ps") == 0
9917 || strcmp(str
+ strlen(str
) - 5, "any2f") == 0
9918 || strcmp(str
+ strlen(str
) - 5, "any2t") == 0)
9919 && (regno
& 1) != 0)
9920 as_warn(_("Condition code register should be even for %s, was %d"),
9922 if ((strcmp(str
+ strlen(str
) - 5, "any4f") == 0
9923 || strcmp(str
+ strlen(str
) - 5, "any4t") == 0)
9924 && (regno
& 3) != 0)
9925 as_warn(_("Condition code register should be 0 or 4 for %s, was %d"),
9928 INSERT_OPERAND (BCC
, *ip
, regno
);
9930 INSERT_OPERAND (CCC
, *ip
, regno
);
9934 if (s
[0] == '0' && (s
[1] == 'x' || s
[1] == 'X'))
9945 while (ISDIGIT (*s
));
9948 c
= 8; /* Invalid sel value. */
9951 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
9952 ip
->insn_opcode
|= c
;
9956 /* Must be at least one digit. */
9957 my_getExpression (&imm_expr
, s
);
9958 check_absolute_expr (ip
, &imm_expr
);
9960 if ((unsigned long) imm_expr
.X_add_number
9961 > (unsigned long) OP_MASK_VECBYTE
)
9963 as_bad (_("bad byte vector index (%ld)"),
9964 (long) imm_expr
.X_add_number
);
9965 imm_expr
.X_add_number
= 0;
9968 INSERT_OPERAND (VECBYTE
, *ip
, imm_expr
.X_add_number
);
9969 imm_expr
.X_op
= O_absent
;
9974 my_getExpression (&imm_expr
, s
);
9975 check_absolute_expr (ip
, &imm_expr
);
9977 if ((unsigned long) imm_expr
.X_add_number
9978 > (unsigned long) OP_MASK_VECALIGN
)
9980 as_bad (_("bad byte vector index (%ld)"),
9981 (long) imm_expr
.X_add_number
);
9982 imm_expr
.X_add_number
= 0;
9985 INSERT_OPERAND (VECALIGN
, *ip
, imm_expr
.X_add_number
);
9986 imm_expr
.X_op
= O_absent
;
9991 as_bad (_("bad char = '%c'\n"), *args
);
9996 /* Args don't match. */
9997 if (insn
+ 1 < &mips_opcodes
[NUMOPCODES
] &&
9998 !strcmp (insn
->name
, insn
[1].name
))
10002 insn_error
= _("illegal operands");
10006 *(--argsStart
) = save_c
;
10007 insn_error
= _("illegal operands");
10012 #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
10014 /* This routine assembles an instruction into its binary format when
10015 assembling for the mips16. As a side effect, it sets one of the
10016 global variables imm_reloc or offset_reloc to the type of
10017 relocation to do if one of the operands is an address expression.
10018 It also sets mips16_small and mips16_ext if the user explicitly
10019 requested a small or extended instruction. */
10022 mips16_ip (char *str
, struct mips_cl_insn
*ip
)
10026 struct mips_opcode
*insn
;
10028 unsigned int regno
;
10029 unsigned int lastregno
= 0;
10035 mips16_small
= FALSE
;
10036 mips16_ext
= FALSE
;
10038 for (s
= str
; ISLOWER (*s
); ++s
)
10050 if (s
[1] == 't' && s
[2] == ' ')
10053 mips16_small
= TRUE
;
10057 else if (s
[1] == 'e' && s
[2] == ' ')
10064 /* Fall through. */
10066 insn_error
= _("unknown opcode");
10070 if (mips_opts
.noautoextend
&& ! mips16_ext
)
10071 mips16_small
= TRUE
;
10073 if ((insn
= (struct mips_opcode
*) hash_find (mips16_op_hash
, str
)) == NULL
)
10075 insn_error
= _("unrecognized opcode");
10084 assert (strcmp (insn
->name
, str
) == 0);
10086 ok
= is_opcode_valid_16 (insn
);
10089 if (insn
+ 1 < &mips16_opcodes
[bfd_mips16_num_opcodes
]
10090 && strcmp (insn
->name
, insn
[1].name
) == 0)
10099 static char buf
[100];
10101 _("opcode not supported on this processor: %s (%s)"),
10102 mips_cpu_info_from_arch (mips_opts
.arch
)->name
,
10103 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
10110 create_insn (ip
, insn
);
10111 imm_expr
.X_op
= O_absent
;
10112 imm_reloc
[0] = BFD_RELOC_UNUSED
;
10113 imm_reloc
[1] = BFD_RELOC_UNUSED
;
10114 imm_reloc
[2] = BFD_RELOC_UNUSED
;
10115 imm2_expr
.X_op
= O_absent
;
10116 offset_expr
.X_op
= O_absent
;
10117 offset_reloc
[0] = BFD_RELOC_UNUSED
;
10118 offset_reloc
[1] = BFD_RELOC_UNUSED
;
10119 offset_reloc
[2] = BFD_RELOC_UNUSED
;
10120 for (args
= insn
->args
; 1; ++args
)
10127 /* In this switch statement we call break if we did not find
10128 a match, continue if we did find a match, or return if we
10137 /* Stuff the immediate value in now, if we can. */
10138 if (imm_expr
.X_op
== O_constant
10139 && *imm_reloc
> BFD_RELOC_UNUSED
10140 && *imm_reloc
!= BFD_RELOC_MIPS16_GOT16
10141 && *imm_reloc
!= BFD_RELOC_MIPS16_CALL16
10142 && insn
->pinfo
!= INSN_MACRO
)
10146 switch (*offset_reloc
)
10148 case BFD_RELOC_MIPS16_HI16_S
:
10149 tmp
= (imm_expr
.X_add_number
+ 0x8000) >> 16;
10152 case BFD_RELOC_MIPS16_HI16
:
10153 tmp
= imm_expr
.X_add_number
>> 16;
10156 case BFD_RELOC_MIPS16_LO16
:
10157 tmp
= ((imm_expr
.X_add_number
+ 0x8000) & 0xffff)
10161 case BFD_RELOC_UNUSED
:
10162 tmp
= imm_expr
.X_add_number
;
10168 *offset_reloc
= BFD_RELOC_UNUSED
;
10170 mips16_immed (NULL
, 0, *imm_reloc
- BFD_RELOC_UNUSED
,
10171 tmp
, TRUE
, mips16_small
,
10172 mips16_ext
, &ip
->insn_opcode
,
10173 &ip
->use_extend
, &ip
->extend
);
10174 imm_expr
.X_op
= O_absent
;
10175 *imm_reloc
= BFD_RELOC_UNUSED
;
10189 MIPS16_INSERT_OPERAND (RX
, *ip
, lastregno
);
10192 MIPS16_INSERT_OPERAND (RY
, *ip
, lastregno
);
10208 MIPS16_INSERT_OPERAND (RX
, *ip
, lastregno
);
10210 MIPS16_INSERT_OPERAND (RY
, *ip
, lastregno
);
10214 /* Fall through. */
10225 if (!reg_lookup (&s
, RTYPE_NUM
| RTYPE_GP
, ®no
))
10227 if (c
== 'v' || c
== 'w')
10230 MIPS16_INSERT_OPERAND (RX
, *ip
, lastregno
);
10232 MIPS16_INSERT_OPERAND (RY
, *ip
, lastregno
);
10243 if (c
== 'v' || c
== 'w')
10245 regno
= mips16_to_32_reg_map
[lastregno
];
10259 regno
= mips32_to_16_reg_map
[regno
];
10264 regno
= ILLEGAL_REG
;
10269 regno
= ILLEGAL_REG
;
10274 regno
= ILLEGAL_REG
;
10279 if (regno
== AT
&& mips_opts
.at
)
10281 if (mips_opts
.at
== ATREG
)
10282 as_warn (_("used $at without \".set noat\""));
10284 as_warn (_("used $%u with \".set at=$%u\""),
10285 regno
, mips_opts
.at
);
10293 if (regno
== ILLEGAL_REG
)
10300 MIPS16_INSERT_OPERAND (RX
, *ip
, regno
);
10304 MIPS16_INSERT_OPERAND (RY
, *ip
, regno
);
10307 MIPS16_INSERT_OPERAND (RZ
, *ip
, regno
);
10310 MIPS16_INSERT_OPERAND (MOVE32Z
, *ip
, regno
);
10316 MIPS16_INSERT_OPERAND (REGR32
, *ip
, regno
);
10319 regno
= ((regno
& 7) << 2) | ((regno
& 0x18) >> 3);
10320 MIPS16_INSERT_OPERAND (REG32R
, *ip
, regno
);
10330 if (strncmp (s
, "$pc", 3) == 0)
10347 i
= my_getSmallExpression (&imm_expr
, imm_reloc
, s
);
10350 if (imm_expr
.X_op
!= O_constant
)
10353 ip
->use_extend
= TRUE
;
10358 /* We need to relax this instruction. */
10359 *offset_reloc
= *imm_reloc
;
10360 *imm_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
10365 *imm_reloc
= BFD_RELOC_UNUSED
;
10366 /* Fall through. */
10373 my_getExpression (&imm_expr
, s
);
10374 if (imm_expr
.X_op
== O_register
)
10376 /* What we thought was an expression turned out to
10379 if (s
[0] == '(' && args
[1] == '(')
10381 /* It looks like the expression was omitted
10382 before a register indirection, which means
10383 that the expression is implicitly zero. We
10384 still set up imm_expr, so that we handle
10385 explicit extensions correctly. */
10386 imm_expr
.X_op
= O_constant
;
10387 imm_expr
.X_add_number
= 0;
10388 *imm_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
10395 /* We need to relax this instruction. */
10396 *imm_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
10405 /* We use offset_reloc rather than imm_reloc for the PC
10406 relative operands. This lets macros with both
10407 immediate and address operands work correctly. */
10408 my_getExpression (&offset_expr
, s
);
10410 if (offset_expr
.X_op
== O_register
)
10413 /* We need to relax this instruction. */
10414 *offset_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
10418 case '6': /* break code */
10419 my_getExpression (&imm_expr
, s
);
10420 check_absolute_expr (ip
, &imm_expr
);
10421 if ((unsigned long) imm_expr
.X_add_number
> 63)
10422 as_warn (_("Invalid value for `%s' (%lu)"),
10424 (unsigned long) imm_expr
.X_add_number
);
10425 MIPS16_INSERT_OPERAND (IMM6
, *ip
, imm_expr
.X_add_number
);
10426 imm_expr
.X_op
= O_absent
;
10430 case 'a': /* 26 bit address */
10431 my_getExpression (&offset_expr
, s
);
10433 *offset_reloc
= BFD_RELOC_MIPS16_JMP
;
10434 ip
->insn_opcode
<<= 16;
10437 case 'l': /* register list for entry macro */
10438 case 'L': /* register list for exit macro */
10448 unsigned int freg
, reg1
, reg2
;
10450 while (*s
== ' ' || *s
== ',')
10452 if (reg_lookup (&s
, RTYPE_GP
| RTYPE_NUM
, ®1
))
10454 else if (reg_lookup (&s
, RTYPE_FPU
, ®1
))
10458 as_bad (_("can't parse register list"));
10468 if (!reg_lookup (&s
, freg
? RTYPE_FPU
10469 : (RTYPE_GP
| RTYPE_NUM
), ®2
))
10471 as_bad (_("invalid register list"));
10475 if (freg
&& reg1
== 0 && reg2
== 0 && c
== 'L')
10477 mask
&= ~ (7 << 3);
10480 else if (freg
&& reg1
== 0 && reg2
== 1 && c
== 'L')
10482 mask
&= ~ (7 << 3);
10485 else if (reg1
== 4 && reg2
>= 4 && reg2
<= 7 && c
!= 'L')
10486 mask
|= (reg2
- 3) << 3;
10487 else if (reg1
== 16 && reg2
>= 16 && reg2
<= 17)
10488 mask
|= (reg2
- 15) << 1;
10489 else if (reg1
== RA
&& reg2
== RA
)
10493 as_bad (_("invalid register list"));
10497 /* The mask is filled in in the opcode table for the
10498 benefit of the disassembler. We remove it before
10499 applying the actual mask. */
10500 ip
->insn_opcode
&= ~ ((7 << 3) << MIPS16OP_SH_IMM6
);
10501 ip
->insn_opcode
|= mask
<< MIPS16OP_SH_IMM6
;
10505 case 'm': /* Register list for save insn. */
10506 case 'M': /* Register list for restore insn. */
10509 int framesz
= 0, seen_framesz
= 0;
10510 int args
= 0, statics
= 0, sregs
= 0;
10514 unsigned int reg1
, reg2
;
10516 SKIP_SPACE_TABS (s
);
10519 SKIP_SPACE_TABS (s
);
10521 my_getExpression (&imm_expr
, s
);
10522 if (imm_expr
.X_op
== O_constant
)
10524 /* Handle the frame size. */
10527 as_bad (_("more than one frame size in list"));
10531 framesz
= imm_expr
.X_add_number
;
10532 imm_expr
.X_op
= O_absent
;
10537 if (! reg_lookup (&s
, RTYPE_GP
| RTYPE_NUM
, ®1
))
10539 as_bad (_("can't parse register list"));
10551 if (! reg_lookup (&s
, RTYPE_GP
| RTYPE_NUM
, ®2
)
10554 as_bad (_("can't parse register list"));
10559 while (reg1
<= reg2
)
10561 if (reg1
>= 4 && reg1
<= 7)
10565 args
|= 1 << (reg1
- 4);
10567 /* statics $a0-$a3 */
10568 statics
|= 1 << (reg1
- 4);
10570 else if ((reg1
>= 16 && reg1
<= 23) || reg1
== 30)
10573 sregs
|= 1 << ((reg1
== 30) ? 8 : (reg1
- 16));
10575 else if (reg1
== 31)
10577 /* Add $ra to insn. */
10582 as_bad (_("unexpected register in list"));
10590 /* Encode args/statics combination. */
10591 if (args
& statics
)
10592 as_bad (_("arg/static registers overlap"));
10593 else if (args
== 0xf)
10594 /* All $a0-$a3 are args. */
10595 opcode
|= MIPS16_ALL_ARGS
<< 16;
10596 else if (statics
== 0xf)
10597 /* All $a0-$a3 are statics. */
10598 opcode
|= MIPS16_ALL_STATICS
<< 16;
10601 int narg
= 0, nstat
= 0;
10603 /* Count arg registers. */
10610 as_bad (_("invalid arg register list"));
10612 /* Count static registers. */
10613 while (statics
& 0x8)
10615 statics
= (statics
<< 1) & 0xf;
10619 as_bad (_("invalid static register list"));
10621 /* Encode args/statics. */
10622 opcode
|= ((narg
<< 2) | nstat
) << 16;
10625 /* Encode $s0/$s1. */
10626 if (sregs
& (1 << 0)) /* $s0 */
10628 if (sregs
& (1 << 1)) /* $s1 */
10634 /* Count regs $s2-$s8. */
10642 as_bad (_("invalid static register list"));
10643 /* Encode $s2-$s8. */
10644 opcode
|= nsreg
<< 24;
10647 /* Encode frame size. */
10649 as_bad (_("missing frame size"));
10650 else if ((framesz
& 7) != 0 || framesz
< 0
10651 || framesz
> 0xff * 8)
10652 as_bad (_("invalid frame size"));
10653 else if (framesz
!= 128 || (opcode
>> 16) != 0)
10656 opcode
|= (((framesz
& 0xf0) << 16)
10657 | (framesz
& 0x0f));
10660 /* Finally build the instruction. */
10661 if ((opcode
>> 16) != 0 || framesz
== 0)
10663 ip
->use_extend
= TRUE
;
10664 ip
->extend
= opcode
>> 16;
10666 ip
->insn_opcode
|= opcode
& 0x7f;
10670 case 'e': /* extend code */
10671 my_getExpression (&imm_expr
, s
);
10672 check_absolute_expr (ip
, &imm_expr
);
10673 if ((unsigned long) imm_expr
.X_add_number
> 0x7ff)
10675 as_warn (_("Invalid value for `%s' (%lu)"),
10677 (unsigned long) imm_expr
.X_add_number
);
10678 imm_expr
.X_add_number
&= 0x7ff;
10680 ip
->insn_opcode
|= imm_expr
.X_add_number
;
10681 imm_expr
.X_op
= O_absent
;
10691 /* Args don't match. */
10692 if (insn
+ 1 < &mips16_opcodes
[bfd_mips16_num_opcodes
] &&
10693 strcmp (insn
->name
, insn
[1].name
) == 0)
10700 insn_error
= _("illegal operands");
10706 /* This structure holds information we know about a mips16 immediate
10709 struct mips16_immed_operand
10711 /* The type code used in the argument string in the opcode table. */
10713 /* The number of bits in the short form of the opcode. */
10715 /* The number of bits in the extended form of the opcode. */
10717 /* The amount by which the short form is shifted when it is used;
10718 for example, the sw instruction has a shift count of 2. */
10720 /* The amount by which the short form is shifted when it is stored
10721 into the instruction code. */
10723 /* Non-zero if the short form is unsigned. */
10725 /* Non-zero if the extended form is unsigned. */
10727 /* Non-zero if the value is PC relative. */
10731 /* The mips16 immediate operand types. */
10733 static const struct mips16_immed_operand mips16_immed_operands
[] =
10735 { '<', 3, 5, 0, MIPS16OP_SH_RZ
, 1, 1, 0 },
10736 { '>', 3, 5, 0, MIPS16OP_SH_RX
, 1, 1, 0 },
10737 { '[', 3, 6, 0, MIPS16OP_SH_RZ
, 1, 1, 0 },
10738 { ']', 3, 6, 0, MIPS16OP_SH_RX
, 1, 1, 0 },
10739 { '4', 4, 15, 0, MIPS16OP_SH_IMM4
, 0, 0, 0 },
10740 { '5', 5, 16, 0, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10741 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10742 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10743 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10744 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5
, 0, 0, 0 },
10745 { '8', 8, 16, 0, MIPS16OP_SH_IMM8
, 1, 0, 0 },
10746 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8
, 1, 0, 0 },
10747 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8
, 1, 0, 0 },
10748 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8
, 1, 1, 0 },
10749 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8
, 0, 0, 0 },
10750 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8
, 0, 0, 0 },
10751 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8
, 0, 0, 1 },
10752 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8
, 0, 0, 1 },
10753 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8
, 1, 0, 1 },
10754 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5
, 1, 0, 1 },
10755 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5
, 1, 0, 1 }
10758 #define MIPS16_NUM_IMMED \
10759 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
10761 /* Handle a mips16 instruction with an immediate value. This or's the
10762 small immediate value into *INSN. It sets *USE_EXTEND to indicate
10763 whether an extended value is needed; if one is needed, it sets
10764 *EXTEND to the value. The argument type is TYPE. The value is VAL.
10765 If SMALL is true, an unextended opcode was explicitly requested.
10766 If EXT is true, an extended opcode was explicitly requested. If
10767 WARN is true, warn if EXT does not match reality. */
10770 mips16_immed (char *file
, unsigned int line
, int type
, offsetT val
,
10771 bfd_boolean warn
, bfd_boolean small
, bfd_boolean ext
,
10772 unsigned long *insn
, bfd_boolean
*use_extend
,
10773 unsigned short *extend
)
10775 const struct mips16_immed_operand
*op
;
10776 int mintiny
, maxtiny
;
10777 bfd_boolean needext
;
10779 op
= mips16_immed_operands
;
10780 while (op
->type
!= type
)
10783 assert (op
< mips16_immed_operands
+ MIPS16_NUM_IMMED
);
10788 if (type
== '<' || type
== '>' || type
== '[' || type
== ']')
10791 maxtiny
= 1 << op
->nbits
;
10796 maxtiny
= (1 << op
->nbits
) - 1;
10801 mintiny
= - (1 << (op
->nbits
- 1));
10802 maxtiny
= (1 << (op
->nbits
- 1)) - 1;
10805 /* Branch offsets have an implicit 0 in the lowest bit. */
10806 if (type
== 'p' || type
== 'q')
10809 if ((val
& ((1 << op
->shift
) - 1)) != 0
10810 || val
< (mintiny
<< op
->shift
)
10811 || val
> (maxtiny
<< op
->shift
))
10816 if (warn
&& ext
&& ! needext
)
10817 as_warn_where (file
, line
,
10818 _("extended operand requested but not required"));
10819 if (small
&& needext
)
10820 as_bad_where (file
, line
, _("invalid unextended operand value"));
10822 if (small
|| (! ext
&& ! needext
))
10826 *use_extend
= FALSE
;
10827 insnval
= ((val
>> op
->shift
) & ((1 << op
->nbits
) - 1));
10828 insnval
<<= op
->op_shift
;
10833 long minext
, maxext
;
10839 maxext
= (1 << op
->extbits
) - 1;
10843 minext
= - (1 << (op
->extbits
- 1));
10844 maxext
= (1 << (op
->extbits
- 1)) - 1;
10846 if (val
< minext
|| val
> maxext
)
10847 as_bad_where (file
, line
,
10848 _("operand value out of range for instruction"));
10850 *use_extend
= TRUE
;
10851 if (op
->extbits
== 16)
10853 extval
= ((val
>> 11) & 0x1f) | (val
& 0x7e0);
10856 else if (op
->extbits
== 15)
10858 extval
= ((val
>> 11) & 0xf) | (val
& 0x7f0);
10863 extval
= ((val
& 0x1f) << 6) | (val
& 0x20);
10867 *extend
= (unsigned short) extval
;
10872 struct percent_op_match
10875 bfd_reloc_code_real_type reloc
;
10878 static const struct percent_op_match mips_percent_op
[] =
10880 {"%lo", BFD_RELOC_LO16
},
10882 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16
},
10883 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16
},
10884 {"%call16", BFD_RELOC_MIPS_CALL16
},
10885 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP
},
10886 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE
},
10887 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST
},
10888 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16
},
10889 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16
},
10890 {"%got", BFD_RELOC_MIPS_GOT16
},
10891 {"%gp_rel", BFD_RELOC_GPREL16
},
10892 {"%half", BFD_RELOC_16
},
10893 {"%highest", BFD_RELOC_MIPS_HIGHEST
},
10894 {"%higher", BFD_RELOC_MIPS_HIGHER
},
10895 {"%neg", BFD_RELOC_MIPS_SUB
},
10896 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD
},
10897 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM
},
10898 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16
},
10899 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16
},
10900 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16
},
10901 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16
},
10902 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL
},
10904 {"%hi", BFD_RELOC_HI16_S
}
10907 static const struct percent_op_match mips16_percent_op
[] =
10909 {"%lo", BFD_RELOC_MIPS16_LO16
},
10910 {"%gprel", BFD_RELOC_MIPS16_GPREL
},
10911 {"%got", BFD_RELOC_MIPS16_GOT16
},
10912 {"%call16", BFD_RELOC_MIPS16_CALL16
},
10913 {"%hi", BFD_RELOC_MIPS16_HI16_S
}
10917 /* Return true if *STR points to a relocation operator. When returning true,
10918 move *STR over the operator and store its relocation code in *RELOC.
10919 Leave both *STR and *RELOC alone when returning false. */
10922 parse_relocation (char **str
, bfd_reloc_code_real_type
*reloc
)
10924 const struct percent_op_match
*percent_op
;
10927 if (mips_opts
.mips16
)
10929 percent_op
= mips16_percent_op
;
10930 limit
= ARRAY_SIZE (mips16_percent_op
);
10934 percent_op
= mips_percent_op
;
10935 limit
= ARRAY_SIZE (mips_percent_op
);
10938 for (i
= 0; i
< limit
; i
++)
10939 if (strncasecmp (*str
, percent_op
[i
].str
, strlen (percent_op
[i
].str
)) == 0)
10941 int len
= strlen (percent_op
[i
].str
);
10943 if (!ISSPACE ((*str
)[len
]) && (*str
)[len
] != '(')
10946 *str
+= strlen (percent_op
[i
].str
);
10947 *reloc
= percent_op
[i
].reloc
;
10949 /* Check whether the output BFD supports this relocation.
10950 If not, issue an error and fall back on something safe. */
10951 if (!bfd_reloc_type_lookup (stdoutput
, percent_op
[i
].reloc
))
10953 as_bad ("relocation %s isn't supported by the current ABI",
10954 percent_op
[i
].str
);
10955 *reloc
= BFD_RELOC_UNUSED
;
10963 /* Parse string STR as a 16-bit relocatable operand. Store the
10964 expression in *EP and the relocations in the array starting
10965 at RELOC. Return the number of relocation operators used.
10967 On exit, EXPR_END points to the first character after the expression. */
10970 my_getSmallExpression (expressionS
*ep
, bfd_reloc_code_real_type
*reloc
,
10973 bfd_reloc_code_real_type reversed_reloc
[3];
10974 size_t reloc_index
, i
;
10975 int crux_depth
, str_depth
;
10978 /* Search for the start of the main expression, recoding relocations
10979 in REVERSED_RELOC. End the loop with CRUX pointing to the start
10980 of the main expression and with CRUX_DEPTH containing the number
10981 of open brackets at that point. */
10988 crux_depth
= str_depth
;
10990 /* Skip over whitespace and brackets, keeping count of the number
10992 while (*str
== ' ' || *str
== '\t' || *str
== '(')
10997 && reloc_index
< (HAVE_NEWABI
? 3 : 1)
10998 && parse_relocation (&str
, &reversed_reloc
[reloc_index
]));
11000 my_getExpression (ep
, crux
);
11003 /* Match every open bracket. */
11004 while (crux_depth
> 0 && (*str
== ')' || *str
== ' ' || *str
== '\t'))
11008 if (crux_depth
> 0)
11009 as_bad ("unclosed '('");
11013 if (reloc_index
!= 0)
11015 prev_reloc_op_frag
= frag_now
;
11016 for (i
= 0; i
< reloc_index
; i
++)
11017 reloc
[i
] = reversed_reloc
[reloc_index
- 1 - i
];
11020 return reloc_index
;
11024 my_getExpression (expressionS
*ep
, char *str
)
11029 save_in
= input_line_pointer
;
11030 input_line_pointer
= str
;
11032 expr_end
= input_line_pointer
;
11033 input_line_pointer
= save_in
;
11035 /* If we are in mips16 mode, and this is an expression based on `.',
11036 then we bump the value of the symbol by 1 since that is how other
11037 text symbols are handled. We don't bother to handle complex
11038 expressions, just `.' plus or minus a constant. */
11039 if (mips_opts
.mips16
11040 && ep
->X_op
== O_symbol
11041 && strcmp (S_GET_NAME (ep
->X_add_symbol
), FAKE_LABEL_NAME
) == 0
11042 && S_GET_SEGMENT (ep
->X_add_symbol
) == now_seg
11043 && symbol_get_frag (ep
->X_add_symbol
) == frag_now
11044 && symbol_constant_p (ep
->X_add_symbol
)
11045 && (val
= S_GET_VALUE (ep
->X_add_symbol
)) == frag_now_fix ())
11046 S_SET_VALUE (ep
->X_add_symbol
, val
+ 1);
11050 md_atof (int type
, char *litP
, int *sizeP
)
11052 return ieee_md_atof (type
, litP
, sizeP
, target_big_endian
);
11056 md_number_to_chars (char *buf
, valueT val
, int n
)
11058 if (target_big_endian
)
11059 number_to_chars_bigendian (buf
, val
, n
);
11061 number_to_chars_littleendian (buf
, val
, n
);
11065 static int support_64bit_objects(void)
11067 const char **list
, **l
;
11070 list
= bfd_target_list ();
11071 for (l
= list
; *l
!= NULL
; l
++)
11073 /* This is traditional mips */
11074 if (strcmp (*l
, "elf64-tradbigmips") == 0
11075 || strcmp (*l
, "elf64-tradlittlemips") == 0)
11077 if (strcmp (*l
, "elf64-bigmips") == 0
11078 || strcmp (*l
, "elf64-littlemips") == 0)
11081 yes
= (*l
!= NULL
);
11085 #endif /* OBJ_ELF */
11087 const char *md_shortopts
= "O::g::G:";
11089 struct option md_longopts
[] =
11091 /* Options which specify architecture. */
11092 #define OPTION_ARCH_BASE (OPTION_MD_BASE)
11093 #define OPTION_MARCH (OPTION_ARCH_BASE + 0)
11094 {"march", required_argument
, NULL
, OPTION_MARCH
},
11095 #define OPTION_MTUNE (OPTION_ARCH_BASE + 1)
11096 {"mtune", required_argument
, NULL
, OPTION_MTUNE
},
11097 #define OPTION_MIPS1 (OPTION_ARCH_BASE + 2)
11098 {"mips0", no_argument
, NULL
, OPTION_MIPS1
},
11099 {"mips1", no_argument
, NULL
, OPTION_MIPS1
},
11100 #define OPTION_MIPS2 (OPTION_ARCH_BASE + 3)
11101 {"mips2", no_argument
, NULL
, OPTION_MIPS2
},
11102 #define OPTION_MIPS3 (OPTION_ARCH_BASE + 4)
11103 {"mips3", no_argument
, NULL
, OPTION_MIPS3
},
11104 #define OPTION_MIPS4 (OPTION_ARCH_BASE + 5)
11105 {"mips4", no_argument
, NULL
, OPTION_MIPS4
},
11106 #define OPTION_MIPS5 (OPTION_ARCH_BASE + 6)
11107 {"mips5", no_argument
, NULL
, OPTION_MIPS5
},
11108 #define OPTION_MIPS32 (OPTION_ARCH_BASE + 7)
11109 {"mips32", no_argument
, NULL
, OPTION_MIPS32
},
11110 #define OPTION_MIPS64 (OPTION_ARCH_BASE + 8)
11111 {"mips64", no_argument
, NULL
, OPTION_MIPS64
},
11112 #define OPTION_MIPS32R2 (OPTION_ARCH_BASE + 9)
11113 {"mips32r2", no_argument
, NULL
, OPTION_MIPS32R2
},
11114 #define OPTION_MIPS64R2 (OPTION_ARCH_BASE + 10)
11115 {"mips64r2", no_argument
, NULL
, OPTION_MIPS64R2
},
11117 /* Options which specify Application Specific Extensions (ASEs). */
11118 #define OPTION_ASE_BASE (OPTION_ARCH_BASE + 11)
11119 #define OPTION_MIPS16 (OPTION_ASE_BASE + 0)
11120 {"mips16", no_argument
, NULL
, OPTION_MIPS16
},
11121 #define OPTION_NO_MIPS16 (OPTION_ASE_BASE + 1)
11122 {"no-mips16", no_argument
, NULL
, OPTION_NO_MIPS16
},
11123 #define OPTION_MIPS3D (OPTION_ASE_BASE + 2)
11124 {"mips3d", no_argument
, NULL
, OPTION_MIPS3D
},
11125 #define OPTION_NO_MIPS3D (OPTION_ASE_BASE + 3)
11126 {"no-mips3d", no_argument
, NULL
, OPTION_NO_MIPS3D
},
11127 #define OPTION_MDMX (OPTION_ASE_BASE + 4)
11128 {"mdmx", no_argument
, NULL
, OPTION_MDMX
},
11129 #define OPTION_NO_MDMX (OPTION_ASE_BASE + 5)
11130 {"no-mdmx", no_argument
, NULL
, OPTION_NO_MDMX
},
11131 #define OPTION_DSP (OPTION_ASE_BASE + 6)
11132 {"mdsp", no_argument
, NULL
, OPTION_DSP
},
11133 #define OPTION_NO_DSP (OPTION_ASE_BASE + 7)
11134 {"mno-dsp", no_argument
, NULL
, OPTION_NO_DSP
},
11135 #define OPTION_MT (OPTION_ASE_BASE + 8)
11136 {"mmt", no_argument
, NULL
, OPTION_MT
},
11137 #define OPTION_NO_MT (OPTION_ASE_BASE + 9)
11138 {"mno-mt", no_argument
, NULL
, OPTION_NO_MT
},
11139 #define OPTION_SMARTMIPS (OPTION_ASE_BASE + 10)
11140 {"msmartmips", no_argument
, NULL
, OPTION_SMARTMIPS
},
11141 #define OPTION_NO_SMARTMIPS (OPTION_ASE_BASE + 11)
11142 {"mno-smartmips", no_argument
, NULL
, OPTION_NO_SMARTMIPS
},
11143 #define OPTION_DSPR2 (OPTION_ASE_BASE + 12)
11144 {"mdspr2", no_argument
, NULL
, OPTION_DSPR2
},
11145 #define OPTION_NO_DSPR2 (OPTION_ASE_BASE + 13)
11146 {"mno-dspr2", no_argument
, NULL
, OPTION_NO_DSPR2
},
11148 /* Old-style architecture options. Don't add more of these. */
11149 #define OPTION_COMPAT_ARCH_BASE (OPTION_ASE_BASE + 14)
11150 #define OPTION_M4650 (OPTION_COMPAT_ARCH_BASE + 0)
11151 {"m4650", no_argument
, NULL
, OPTION_M4650
},
11152 #define OPTION_NO_M4650 (OPTION_COMPAT_ARCH_BASE + 1)
11153 {"no-m4650", no_argument
, NULL
, OPTION_NO_M4650
},
11154 #define OPTION_M4010 (OPTION_COMPAT_ARCH_BASE + 2)
11155 {"m4010", no_argument
, NULL
, OPTION_M4010
},
11156 #define OPTION_NO_M4010 (OPTION_COMPAT_ARCH_BASE + 3)
11157 {"no-m4010", no_argument
, NULL
, OPTION_NO_M4010
},
11158 #define OPTION_M4100 (OPTION_COMPAT_ARCH_BASE + 4)
11159 {"m4100", no_argument
, NULL
, OPTION_M4100
},
11160 #define OPTION_NO_M4100 (OPTION_COMPAT_ARCH_BASE + 5)
11161 {"no-m4100", no_argument
, NULL
, OPTION_NO_M4100
},
11162 #define OPTION_M3900 (OPTION_COMPAT_ARCH_BASE + 6)
11163 {"m3900", no_argument
, NULL
, OPTION_M3900
},
11164 #define OPTION_NO_M3900 (OPTION_COMPAT_ARCH_BASE + 7)
11165 {"no-m3900", no_argument
, NULL
, OPTION_NO_M3900
},
11167 /* Options which enable bug fixes. */
11168 #define OPTION_FIX_BASE (OPTION_COMPAT_ARCH_BASE + 8)
11169 #define OPTION_M7000_HILO_FIX (OPTION_FIX_BASE + 0)
11170 {"mfix7000", no_argument
, NULL
, OPTION_M7000_HILO_FIX
},
11171 #define OPTION_MNO_7000_HILO_FIX (OPTION_FIX_BASE + 1)
11172 {"no-fix-7000", no_argument
, NULL
, OPTION_MNO_7000_HILO_FIX
},
11173 {"mno-fix7000", no_argument
, NULL
, OPTION_MNO_7000_HILO_FIX
},
11174 #define OPTION_FIX_VR4120 (OPTION_FIX_BASE + 2)
11175 #define OPTION_NO_FIX_VR4120 (OPTION_FIX_BASE + 3)
11176 {"mfix-vr4120", no_argument
, NULL
, OPTION_FIX_VR4120
},
11177 {"mno-fix-vr4120", no_argument
, NULL
, OPTION_NO_FIX_VR4120
},
11178 #define OPTION_FIX_VR4130 (OPTION_FIX_BASE + 4)
11179 #define OPTION_NO_FIX_VR4130 (OPTION_FIX_BASE + 5)
11180 {"mfix-vr4130", no_argument
, NULL
, OPTION_FIX_VR4130
},
11181 {"mno-fix-vr4130", no_argument
, NULL
, OPTION_NO_FIX_VR4130
},
11183 /* Miscellaneous options. */
11184 #define OPTION_MISC_BASE (OPTION_FIX_BASE + 6)
11185 #define OPTION_TRAP (OPTION_MISC_BASE + 0)
11186 {"trap", no_argument
, NULL
, OPTION_TRAP
},
11187 {"no-break", no_argument
, NULL
, OPTION_TRAP
},
11188 #define OPTION_BREAK (OPTION_MISC_BASE + 1)
11189 {"break", no_argument
, NULL
, OPTION_BREAK
},
11190 {"no-trap", no_argument
, NULL
, OPTION_BREAK
},
11191 #define OPTION_EB (OPTION_MISC_BASE + 2)
11192 {"EB", no_argument
, NULL
, OPTION_EB
},
11193 #define OPTION_EL (OPTION_MISC_BASE + 3)
11194 {"EL", no_argument
, NULL
, OPTION_EL
},
11195 #define OPTION_FP32 (OPTION_MISC_BASE + 4)
11196 {"mfp32", no_argument
, NULL
, OPTION_FP32
},
11197 #define OPTION_GP32 (OPTION_MISC_BASE + 5)
11198 {"mgp32", no_argument
, NULL
, OPTION_GP32
},
11199 #define OPTION_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 6)
11200 {"construct-floats", no_argument
, NULL
, OPTION_CONSTRUCT_FLOATS
},
11201 #define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 7)
11202 {"no-construct-floats", no_argument
, NULL
, OPTION_NO_CONSTRUCT_FLOATS
},
11203 #define OPTION_FP64 (OPTION_MISC_BASE + 8)
11204 {"mfp64", no_argument
, NULL
, OPTION_FP64
},
11205 #define OPTION_GP64 (OPTION_MISC_BASE + 9)
11206 {"mgp64", no_argument
, NULL
, OPTION_GP64
},
11207 #define OPTION_RELAX_BRANCH (OPTION_MISC_BASE + 10)
11208 #define OPTION_NO_RELAX_BRANCH (OPTION_MISC_BASE + 11)
11209 {"relax-branch", no_argument
, NULL
, OPTION_RELAX_BRANCH
},
11210 {"no-relax-branch", no_argument
, NULL
, OPTION_NO_RELAX_BRANCH
},
11211 #define OPTION_MSHARED (OPTION_MISC_BASE + 12)
11212 #define OPTION_MNO_SHARED (OPTION_MISC_BASE + 13)
11213 {"mshared", no_argument
, NULL
, OPTION_MSHARED
},
11214 {"mno-shared", no_argument
, NULL
, OPTION_MNO_SHARED
},
11215 #define OPTION_MSYM32 (OPTION_MISC_BASE + 14)
11216 #define OPTION_MNO_SYM32 (OPTION_MISC_BASE + 15)
11217 {"msym32", no_argument
, NULL
, OPTION_MSYM32
},
11218 {"mno-sym32", no_argument
, NULL
, OPTION_MNO_SYM32
},
11219 #define OPTION_SOFT_FLOAT (OPTION_MISC_BASE + 16)
11220 #define OPTION_HARD_FLOAT (OPTION_MISC_BASE + 17)
11221 {"msoft-float", no_argument
, NULL
, OPTION_SOFT_FLOAT
},
11222 {"mhard-float", no_argument
, NULL
, OPTION_HARD_FLOAT
},
11223 #define OPTION_SINGLE_FLOAT (OPTION_MISC_BASE + 18)
11224 #define OPTION_DOUBLE_FLOAT (OPTION_MISC_BASE + 19)
11225 {"msingle-float", no_argument
, NULL
, OPTION_SINGLE_FLOAT
},
11226 {"mdouble-float", no_argument
, NULL
, OPTION_DOUBLE_FLOAT
},
11228 /* ELF-specific options. */
11230 #define OPTION_ELF_BASE (OPTION_MISC_BASE + 20)
11231 #define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
11232 {"KPIC", no_argument
, NULL
, OPTION_CALL_SHARED
},
11233 {"call_shared", no_argument
, NULL
, OPTION_CALL_SHARED
},
11234 #define OPTION_CALL_NONPIC (OPTION_ELF_BASE + 1)
11235 {"call_nonpic", no_argument
, NULL
, OPTION_CALL_NONPIC
},
11236 #define OPTION_NON_SHARED (OPTION_ELF_BASE + 2)
11237 {"non_shared", no_argument
, NULL
, OPTION_NON_SHARED
},
11238 #define OPTION_XGOT (OPTION_ELF_BASE + 3)
11239 {"xgot", no_argument
, NULL
, OPTION_XGOT
},
11240 #define OPTION_MABI (OPTION_ELF_BASE + 4)
11241 {"mabi", required_argument
, NULL
, OPTION_MABI
},
11242 #define OPTION_32 (OPTION_ELF_BASE + 5)
11243 {"32", no_argument
, NULL
, OPTION_32
},
11244 #define OPTION_N32 (OPTION_ELF_BASE + 6)
11245 {"n32", no_argument
, NULL
, OPTION_N32
},
11246 #define OPTION_64 (OPTION_ELF_BASE + 7)
11247 {"64", no_argument
, NULL
, OPTION_64
},
11248 #define OPTION_MDEBUG (OPTION_ELF_BASE + 8)
11249 {"mdebug", no_argument
, NULL
, OPTION_MDEBUG
},
11250 #define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 9)
11251 {"no-mdebug", no_argument
, NULL
, OPTION_NO_MDEBUG
},
11252 #define OPTION_PDR (OPTION_ELF_BASE + 10)
11253 {"mpdr", no_argument
, NULL
, OPTION_PDR
},
11254 #define OPTION_NO_PDR (OPTION_ELF_BASE + 11)
11255 {"mno-pdr", no_argument
, NULL
, OPTION_NO_PDR
},
11256 #define OPTION_MVXWORKS_PIC (OPTION_ELF_BASE + 12)
11257 {"mvxworks-pic", no_argument
, NULL
, OPTION_MVXWORKS_PIC
},
11258 #endif /* OBJ_ELF */
11260 {NULL
, no_argument
, NULL
, 0}
11262 size_t md_longopts_size
= sizeof (md_longopts
);
11264 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
11265 NEW_VALUE. Warn if another value was already specified. Note:
11266 we have to defer parsing the -march and -mtune arguments in order
11267 to handle 'from-abi' correctly, since the ABI might be specified
11268 in a later argument. */
11271 mips_set_option_string (const char **string_ptr
, const char *new_value
)
11273 if (*string_ptr
!= 0 && strcasecmp (*string_ptr
, new_value
) != 0)
11274 as_warn (_("A different %s was already specified, is now %s"),
11275 string_ptr
== &mips_arch_string
? "-march" : "-mtune",
11278 *string_ptr
= new_value
;
11282 md_parse_option (int c
, char *arg
)
11286 case OPTION_CONSTRUCT_FLOATS
:
11287 mips_disable_float_construction
= 0;
11290 case OPTION_NO_CONSTRUCT_FLOATS
:
11291 mips_disable_float_construction
= 1;
11303 target_big_endian
= 1;
11307 target_big_endian
= 0;
11313 else if (arg
[0] == '0')
11315 else if (arg
[0] == '1')
11325 mips_debug
= atoi (arg
);
11329 file_mips_isa
= ISA_MIPS1
;
11333 file_mips_isa
= ISA_MIPS2
;
11337 file_mips_isa
= ISA_MIPS3
;
11341 file_mips_isa
= ISA_MIPS4
;
11345 file_mips_isa
= ISA_MIPS5
;
11348 case OPTION_MIPS32
:
11349 file_mips_isa
= ISA_MIPS32
;
11352 case OPTION_MIPS32R2
:
11353 file_mips_isa
= ISA_MIPS32R2
;
11356 case OPTION_MIPS64R2
:
11357 file_mips_isa
= ISA_MIPS64R2
;
11360 case OPTION_MIPS64
:
11361 file_mips_isa
= ISA_MIPS64
;
11365 mips_set_option_string (&mips_tune_string
, arg
);
11369 mips_set_option_string (&mips_arch_string
, arg
);
11373 mips_set_option_string (&mips_arch_string
, "4650");
11374 mips_set_option_string (&mips_tune_string
, "4650");
11377 case OPTION_NO_M4650
:
11381 mips_set_option_string (&mips_arch_string
, "4010");
11382 mips_set_option_string (&mips_tune_string
, "4010");
11385 case OPTION_NO_M4010
:
11389 mips_set_option_string (&mips_arch_string
, "4100");
11390 mips_set_option_string (&mips_tune_string
, "4100");
11393 case OPTION_NO_M4100
:
11397 mips_set_option_string (&mips_arch_string
, "3900");
11398 mips_set_option_string (&mips_tune_string
, "3900");
11401 case OPTION_NO_M3900
:
11405 mips_opts
.ase_mdmx
= 1;
11408 case OPTION_NO_MDMX
:
11409 mips_opts
.ase_mdmx
= 0;
11413 mips_opts
.ase_dsp
= 1;
11414 mips_opts
.ase_dspr2
= 0;
11417 case OPTION_NO_DSP
:
11418 mips_opts
.ase_dsp
= 0;
11419 mips_opts
.ase_dspr2
= 0;
11423 mips_opts
.ase_dspr2
= 1;
11424 mips_opts
.ase_dsp
= 1;
11427 case OPTION_NO_DSPR2
:
11428 mips_opts
.ase_dspr2
= 0;
11429 mips_opts
.ase_dsp
= 0;
11433 mips_opts
.ase_mt
= 1;
11437 mips_opts
.ase_mt
= 0;
11440 case OPTION_MIPS16
:
11441 mips_opts
.mips16
= 1;
11442 mips_no_prev_insn ();
11445 case OPTION_NO_MIPS16
:
11446 mips_opts
.mips16
= 0;
11447 mips_no_prev_insn ();
11450 case OPTION_MIPS3D
:
11451 mips_opts
.ase_mips3d
= 1;
11454 case OPTION_NO_MIPS3D
:
11455 mips_opts
.ase_mips3d
= 0;
11458 case OPTION_SMARTMIPS
:
11459 mips_opts
.ase_smartmips
= 1;
11462 case OPTION_NO_SMARTMIPS
:
11463 mips_opts
.ase_smartmips
= 0;
11466 case OPTION_FIX_VR4120
:
11467 mips_fix_vr4120
= 1;
11470 case OPTION_NO_FIX_VR4120
:
11471 mips_fix_vr4120
= 0;
11474 case OPTION_FIX_VR4130
:
11475 mips_fix_vr4130
= 1;
11478 case OPTION_NO_FIX_VR4130
:
11479 mips_fix_vr4130
= 0;
11482 case OPTION_RELAX_BRANCH
:
11483 mips_relax_branch
= 1;
11486 case OPTION_NO_RELAX_BRANCH
:
11487 mips_relax_branch
= 0;
11490 case OPTION_MSHARED
:
11491 mips_in_shared
= TRUE
;
11494 case OPTION_MNO_SHARED
:
11495 mips_in_shared
= FALSE
;
11498 case OPTION_MSYM32
:
11499 mips_opts
.sym32
= TRUE
;
11502 case OPTION_MNO_SYM32
:
11503 mips_opts
.sym32
= FALSE
;
11507 /* When generating ELF code, we permit -KPIC and -call_shared to
11508 select SVR4_PIC, and -non_shared to select no PIC. This is
11509 intended to be compatible with Irix 5. */
11510 case OPTION_CALL_SHARED
:
11513 as_bad (_("-call_shared is supported only for ELF format"));
11516 mips_pic
= SVR4_PIC
;
11517 mips_abicalls
= TRUE
;
11520 case OPTION_CALL_NONPIC
:
11523 as_bad (_("-call_nonpic is supported only for ELF format"));
11527 mips_abicalls
= TRUE
;
11530 case OPTION_NON_SHARED
:
11533 as_bad (_("-non_shared is supported only for ELF format"));
11537 mips_abicalls
= FALSE
;
11540 /* The -xgot option tells the assembler to use 32 bit offsets
11541 when accessing the got in SVR4_PIC mode. It is for Irix
11546 #endif /* OBJ_ELF */
11549 g_switch_value
= atoi (arg
);
11554 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
11559 as_bad (_("-32 is supported for ELF format only"));
11562 mips_abi
= O32_ABI
;
11568 as_bad (_("-n32 is supported for ELF format only"));
11571 mips_abi
= N32_ABI
;
11577 as_bad (_("-64 is supported for ELF format only"));
11580 mips_abi
= N64_ABI
;
11581 if (!support_64bit_objects())
11582 as_fatal (_("No compiled in support for 64 bit object file format"));
11584 #endif /* OBJ_ELF */
11587 file_mips_gp32
= 1;
11591 file_mips_gp32
= 0;
11595 file_mips_fp32
= 1;
11599 file_mips_fp32
= 0;
11602 case OPTION_SINGLE_FLOAT
:
11603 file_mips_single_float
= 1;
11606 case OPTION_DOUBLE_FLOAT
:
11607 file_mips_single_float
= 0;
11610 case OPTION_SOFT_FLOAT
:
11611 file_mips_soft_float
= 1;
11614 case OPTION_HARD_FLOAT
:
11615 file_mips_soft_float
= 0;
11622 as_bad (_("-mabi is supported for ELF format only"));
11625 if (strcmp (arg
, "32") == 0)
11626 mips_abi
= O32_ABI
;
11627 else if (strcmp (arg
, "o64") == 0)
11628 mips_abi
= O64_ABI
;
11629 else if (strcmp (arg
, "n32") == 0)
11630 mips_abi
= N32_ABI
;
11631 else if (strcmp (arg
, "64") == 0)
11633 mips_abi
= N64_ABI
;
11634 if (! support_64bit_objects())
11635 as_fatal (_("No compiled in support for 64 bit object file "
11638 else if (strcmp (arg
, "eabi") == 0)
11639 mips_abi
= EABI_ABI
;
11642 as_fatal (_("invalid abi -mabi=%s"), arg
);
11646 #endif /* OBJ_ELF */
11648 case OPTION_M7000_HILO_FIX
:
11649 mips_7000_hilo_fix
= TRUE
;
11652 case OPTION_MNO_7000_HILO_FIX
:
11653 mips_7000_hilo_fix
= FALSE
;
11657 case OPTION_MDEBUG
:
11658 mips_flag_mdebug
= TRUE
;
11661 case OPTION_NO_MDEBUG
:
11662 mips_flag_mdebug
= FALSE
;
11666 mips_flag_pdr
= TRUE
;
11669 case OPTION_NO_PDR
:
11670 mips_flag_pdr
= FALSE
;
11673 case OPTION_MVXWORKS_PIC
:
11674 mips_pic
= VXWORKS_PIC
;
11676 #endif /* OBJ_ELF */
11685 /* Set up globals to generate code for the ISA or processor
11686 described by INFO. */
11689 mips_set_architecture (const struct mips_cpu_info
*info
)
11693 file_mips_arch
= info
->cpu
;
11694 mips_opts
.arch
= info
->cpu
;
11695 mips_opts
.isa
= info
->isa
;
11700 /* Likewise for tuning. */
11703 mips_set_tune (const struct mips_cpu_info
*info
)
11706 mips_tune
= info
->cpu
;
11711 mips_after_parse_args (void)
11713 const struct mips_cpu_info
*arch_info
= 0;
11714 const struct mips_cpu_info
*tune_info
= 0;
11716 /* GP relative stuff not working for PE */
11717 if (strncmp (TARGET_OS
, "pe", 2) == 0)
11719 if (g_switch_seen
&& g_switch_value
!= 0)
11720 as_bad (_("-G not supported in this configuration."));
11721 g_switch_value
= 0;
11724 if (mips_abi
== NO_ABI
)
11725 mips_abi
= MIPS_DEFAULT_ABI
;
11727 /* The following code determines the architecture and register size.
11728 Similar code was added to GCC 3.3 (see override_options() in
11729 config/mips/mips.c). The GAS and GCC code should be kept in sync
11730 as much as possible. */
11732 if (mips_arch_string
!= 0)
11733 arch_info
= mips_parse_cpu ("-march", mips_arch_string
);
11735 if (file_mips_isa
!= ISA_UNKNOWN
)
11737 /* Handle -mipsN. At this point, file_mips_isa contains the
11738 ISA level specified by -mipsN, while arch_info->isa contains
11739 the -march selection (if any). */
11740 if (arch_info
!= 0)
11742 /* -march takes precedence over -mipsN, since it is more descriptive.
11743 There's no harm in specifying both as long as the ISA levels
11745 if (file_mips_isa
!= arch_info
->isa
)
11746 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
11747 mips_cpu_info_from_isa (file_mips_isa
)->name
,
11748 mips_cpu_info_from_isa (arch_info
->isa
)->name
);
11751 arch_info
= mips_cpu_info_from_isa (file_mips_isa
);
11754 if (arch_info
== 0)
11755 arch_info
= mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT
);
11757 if (ABI_NEEDS_64BIT_REGS (mips_abi
) && !ISA_HAS_64BIT_REGS (arch_info
->isa
))
11758 as_bad ("-march=%s is not compatible with the selected ABI",
11761 mips_set_architecture (arch_info
);
11763 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
11764 if (mips_tune_string
!= 0)
11765 tune_info
= mips_parse_cpu ("-mtune", mips_tune_string
);
11767 if (tune_info
== 0)
11768 mips_set_tune (arch_info
);
11770 mips_set_tune (tune_info
);
11772 if (file_mips_gp32
>= 0)
11774 /* The user specified the size of the integer registers. Make sure
11775 it agrees with the ABI and ISA. */
11776 if (file_mips_gp32
== 0 && !ISA_HAS_64BIT_REGS (mips_opts
.isa
))
11777 as_bad (_("-mgp64 used with a 32-bit processor"));
11778 else if (file_mips_gp32
== 1 && ABI_NEEDS_64BIT_REGS (mips_abi
))
11779 as_bad (_("-mgp32 used with a 64-bit ABI"));
11780 else if (file_mips_gp32
== 0 && ABI_NEEDS_32BIT_REGS (mips_abi
))
11781 as_bad (_("-mgp64 used with a 32-bit ABI"));
11785 /* Infer the integer register size from the ABI and processor.
11786 Restrict ourselves to 32-bit registers if that's all the
11787 processor has, or if the ABI cannot handle 64-bit registers. */
11788 file_mips_gp32
= (ABI_NEEDS_32BIT_REGS (mips_abi
)
11789 || !ISA_HAS_64BIT_REGS (mips_opts
.isa
));
11792 switch (file_mips_fp32
)
11796 /* No user specified float register size.
11797 ??? GAS treats single-float processors as though they had 64-bit
11798 float registers (although it complains when double-precision
11799 instructions are used). As things stand, saying they have 32-bit
11800 registers would lead to spurious "register must be even" messages.
11801 So here we assume float registers are never smaller than the
11803 if (file_mips_gp32
== 0)
11804 /* 64-bit integer registers implies 64-bit float registers. */
11805 file_mips_fp32
= 0;
11806 else if ((mips_opts
.ase_mips3d
> 0 || mips_opts
.ase_mdmx
> 0)
11807 && ISA_HAS_64BIT_FPRS (mips_opts
.isa
))
11808 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
11809 file_mips_fp32
= 0;
11811 /* 32-bit float registers. */
11812 file_mips_fp32
= 1;
11815 /* The user specified the size of the float registers. Check if it
11816 agrees with the ABI and ISA. */
11818 if (!ISA_HAS_64BIT_FPRS (mips_opts
.isa
))
11819 as_bad (_("-mfp64 used with a 32-bit fpu"));
11820 else if (ABI_NEEDS_32BIT_REGS (mips_abi
)
11821 && !ISA_HAS_MXHC1 (mips_opts
.isa
))
11822 as_warn (_("-mfp64 used with a 32-bit ABI"));
11825 if (ABI_NEEDS_64BIT_REGS (mips_abi
))
11826 as_warn (_("-mfp32 used with a 64-bit ABI"));
11830 /* End of GCC-shared inference code. */
11832 /* This flag is set when we have a 64-bit capable CPU but use only
11833 32-bit wide registers. Note that EABI does not use it. */
11834 if (ISA_HAS_64BIT_REGS (mips_opts
.isa
)
11835 && ((mips_abi
== NO_ABI
&& file_mips_gp32
== 1)
11836 || mips_abi
== O32_ABI
))
11837 mips_32bitmode
= 1;
11839 if (mips_opts
.isa
== ISA_MIPS1
&& mips_trap
)
11840 as_bad (_("trap exception not supported at ISA 1"));
11842 /* If the selected architecture includes support for ASEs, enable
11843 generation of code for them. */
11844 if (mips_opts
.mips16
== -1)
11845 mips_opts
.mips16
= (CPU_HAS_MIPS16 (file_mips_arch
)) ? 1 : 0;
11846 if (mips_opts
.ase_mips3d
== -1)
11847 mips_opts
.ase_mips3d
= ((arch_info
->flags
& MIPS_CPU_ASE_MIPS3D
)
11848 && file_mips_fp32
== 0) ? 1 : 0;
11849 if (mips_opts
.ase_mips3d
&& file_mips_fp32
== 1)
11850 as_bad (_("-mfp32 used with -mips3d"));
11852 if (mips_opts
.ase_mdmx
== -1)
11853 mips_opts
.ase_mdmx
= ((arch_info
->flags
& MIPS_CPU_ASE_MDMX
)
11854 && file_mips_fp32
== 0) ? 1 : 0;
11855 if (mips_opts
.ase_mdmx
&& file_mips_fp32
== 1)
11856 as_bad (_("-mfp32 used with -mdmx"));
11858 if (mips_opts
.ase_smartmips
== -1)
11859 mips_opts
.ase_smartmips
= (arch_info
->flags
& MIPS_CPU_ASE_SMARTMIPS
) ? 1 : 0;
11860 if (mips_opts
.ase_smartmips
&& !ISA_SUPPORTS_SMARTMIPS
)
11861 as_warn ("%s ISA does not support SmartMIPS",
11862 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
11864 if (mips_opts
.ase_dsp
== -1)
11865 mips_opts
.ase_dsp
= (arch_info
->flags
& MIPS_CPU_ASE_DSP
) ? 1 : 0;
11866 if (mips_opts
.ase_dsp
&& !ISA_SUPPORTS_DSP_ASE
)
11867 as_warn ("%s ISA does not support DSP ASE",
11868 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
11870 if (mips_opts
.ase_dspr2
== -1)
11872 mips_opts
.ase_dspr2
= (arch_info
->flags
& MIPS_CPU_ASE_DSPR2
) ? 1 : 0;
11873 mips_opts
.ase_dsp
= (arch_info
->flags
& MIPS_CPU_ASE_DSP
) ? 1 : 0;
11875 if (mips_opts
.ase_dspr2
&& !ISA_SUPPORTS_DSPR2_ASE
)
11876 as_warn ("%s ISA does not support DSP R2 ASE",
11877 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
11879 if (mips_opts
.ase_mt
== -1)
11880 mips_opts
.ase_mt
= (arch_info
->flags
& MIPS_CPU_ASE_MT
) ? 1 : 0;
11881 if (mips_opts
.ase_mt
&& !ISA_SUPPORTS_MT_ASE
)
11882 as_warn ("%s ISA does not support MT ASE",
11883 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
11885 file_mips_isa
= mips_opts
.isa
;
11886 file_ase_mips16
= mips_opts
.mips16
;
11887 file_ase_mips3d
= mips_opts
.ase_mips3d
;
11888 file_ase_mdmx
= mips_opts
.ase_mdmx
;
11889 file_ase_smartmips
= mips_opts
.ase_smartmips
;
11890 file_ase_dsp
= mips_opts
.ase_dsp
;
11891 file_ase_dspr2
= mips_opts
.ase_dspr2
;
11892 file_ase_mt
= mips_opts
.ase_mt
;
11893 mips_opts
.gp32
= file_mips_gp32
;
11894 mips_opts
.fp32
= file_mips_fp32
;
11895 mips_opts
.soft_float
= file_mips_soft_float
;
11896 mips_opts
.single_float
= file_mips_single_float
;
11898 if (mips_flag_mdebug
< 0)
11900 #ifdef OBJ_MAYBE_ECOFF
11901 if (OUTPUT_FLAVOR
== bfd_target_ecoff_flavour
)
11902 mips_flag_mdebug
= 1;
11904 #endif /* OBJ_MAYBE_ECOFF */
11905 mips_flag_mdebug
= 0;
11910 mips_init_after_args (void)
11912 /* initialize opcodes */
11913 bfd_mips_num_opcodes
= bfd_mips_num_builtin_opcodes
;
11914 mips_opcodes
= (struct mips_opcode
*) mips_builtin_opcodes
;
11918 md_pcrel_from (fixS
*fixP
)
11920 valueT addr
= fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
11921 switch (fixP
->fx_r_type
)
11923 case BFD_RELOC_16_PCREL_S2
:
11924 case BFD_RELOC_MIPS_JMP
:
11925 /* Return the address of the delay slot. */
11928 /* We have no relocation type for PC relative MIPS16 instructions. */
11929 if (fixP
->fx_addsy
&& S_GET_SEGMENT (fixP
->fx_addsy
) != now_seg
)
11930 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
11931 _("PC relative MIPS16 instruction references a different section"));
11936 /* This is called before the symbol table is processed. In order to
11937 work with gcc when using mips-tfile, we must keep all local labels.
11938 However, in other cases, we want to discard them. If we were
11939 called with -g, but we didn't see any debugging information, it may
11940 mean that gcc is smuggling debugging information through to
11941 mips-tfile, in which case we must generate all local labels. */
11944 mips_frob_file_before_adjust (void)
11946 #ifndef NO_ECOFF_DEBUGGING
11947 if (ECOFF_DEBUGGING
11949 && ! ecoff_debugging_seen
)
11950 flag_keep_locals
= 1;
11954 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
11955 the corresponding LO16 reloc. This is called before md_apply_fix and
11956 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
11957 relocation operators.
11959 For our purposes, a %lo() expression matches a %got() or %hi()
11962 (a) it refers to the same symbol; and
11963 (b) the offset applied in the %lo() expression is no lower than
11964 the offset applied in the %got() or %hi().
11966 (b) allows us to cope with code like:
11969 lh $4,%lo(foo+2)($4)
11971 ...which is legal on RELA targets, and has a well-defined behaviour
11972 if the user knows that adding 2 to "foo" will not induce a carry to
11975 When several %lo()s match a particular %got() or %hi(), we use the
11976 following rules to distinguish them:
11978 (1) %lo()s with smaller offsets are a better match than %lo()s with
11981 (2) %lo()s with no matching %got() or %hi() are better than those
11982 that already have a matching %got() or %hi().
11984 (3) later %lo()s are better than earlier %lo()s.
11986 These rules are applied in order.
11988 (1) means, among other things, that %lo()s with identical offsets are
11989 chosen if they exist.
11991 (2) means that we won't associate several high-part relocations with
11992 the same low-part relocation unless there's no alternative. Having
11993 several high parts for the same low part is a GNU extension; this rule
11994 allows careful users to avoid it.
11996 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
11997 with the last high-part relocation being at the front of the list.
11998 It therefore makes sense to choose the last matching low-part
11999 relocation, all other things being equal. It's also easier
12000 to code that way. */
12003 mips_frob_file (void)
12005 struct mips_hi_fixup
*l
;
12006 bfd_reloc_code_real_type looking_for_rtype
= BFD_RELOC_UNUSED
;
12008 for (l
= mips_hi_fixup_list
; l
!= NULL
; l
= l
->next
)
12010 segment_info_type
*seginfo
;
12011 bfd_boolean matched_lo_p
;
12012 fixS
**hi_pos
, **lo_pos
, **pos
;
12014 assert (reloc_needs_lo_p (l
->fixp
->fx_r_type
));
12016 /* If a GOT16 relocation turns out to be against a global symbol,
12017 there isn't supposed to be a matching LO. */
12018 if (got16_reloc_p (l
->fixp
->fx_r_type
)
12019 && !pic_need_relax (l
->fixp
->fx_addsy
, l
->seg
))
12022 /* Check quickly whether the next fixup happens to be a matching %lo. */
12023 if (fixup_has_matching_lo_p (l
->fixp
))
12026 seginfo
= seg_info (l
->seg
);
12028 /* Set HI_POS to the position of this relocation in the chain.
12029 Set LO_POS to the position of the chosen low-part relocation.
12030 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
12031 relocation that matches an immediately-preceding high-part
12035 matched_lo_p
= FALSE
;
12036 looking_for_rtype
= matching_lo_reloc (l
->fixp
->fx_r_type
);
12038 for (pos
= &seginfo
->fix_root
; *pos
!= NULL
; pos
= &(*pos
)->fx_next
)
12040 if (*pos
== l
->fixp
)
12043 if ((*pos
)->fx_r_type
== looking_for_rtype
12044 && (*pos
)->fx_addsy
== l
->fixp
->fx_addsy
12045 && (*pos
)->fx_offset
>= l
->fixp
->fx_offset
12047 || (*pos
)->fx_offset
< (*lo_pos
)->fx_offset
12049 && (*pos
)->fx_offset
== (*lo_pos
)->fx_offset
)))
12052 matched_lo_p
= (reloc_needs_lo_p ((*pos
)->fx_r_type
)
12053 && fixup_has_matching_lo_p (*pos
));
12056 /* If we found a match, remove the high-part relocation from its
12057 current position and insert it before the low-part relocation.
12058 Make the offsets match so that fixup_has_matching_lo_p()
12061 We don't warn about unmatched high-part relocations since some
12062 versions of gcc have been known to emit dead "lui ...%hi(...)"
12064 if (lo_pos
!= NULL
)
12066 l
->fixp
->fx_offset
= (*lo_pos
)->fx_offset
;
12067 if (l
->fixp
->fx_next
!= *lo_pos
)
12069 *hi_pos
= l
->fixp
->fx_next
;
12070 l
->fixp
->fx_next
= *lo_pos
;
12077 /* We may have combined relocations without symbols in the N32/N64 ABI.
12078 We have to prevent gas from dropping them. */
12081 mips_force_relocation (fixS
*fixp
)
12083 if (generic_force_reloc (fixp
))
12087 && S_GET_SEGMENT (fixp
->fx_addsy
) == bfd_abs_section_ptr
12088 && (fixp
->fx_r_type
== BFD_RELOC_MIPS_SUB
12089 || hi16_reloc_p (fixp
->fx_r_type
)
12090 || lo16_reloc_p (fixp
->fx_r_type
)))
12096 /* Apply a fixup to the object file. */
12099 md_apply_fix (fixS
*fixP
, valueT
*valP
, segT seg ATTRIBUTE_UNUSED
)
12103 reloc_howto_type
*howto
;
12105 /* We ignore generic BFD relocations we don't know about. */
12106 howto
= bfd_reloc_type_lookup (stdoutput
, fixP
->fx_r_type
);
12110 assert (fixP
->fx_size
== 4
12111 || fixP
->fx_r_type
== BFD_RELOC_16
12112 || fixP
->fx_r_type
== BFD_RELOC_64
12113 || fixP
->fx_r_type
== BFD_RELOC_CTOR
12114 || fixP
->fx_r_type
== BFD_RELOC_MIPS_SUB
12115 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
12116 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
12117 || fixP
->fx_r_type
== BFD_RELOC_MIPS_TLS_DTPREL64
);
12119 buf
= (bfd_byte
*) (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
);
12121 assert (!fixP
->fx_pcrel
|| fixP
->fx_r_type
== BFD_RELOC_16_PCREL_S2
);
12123 /* Don't treat parts of a composite relocation as done. There are two
12126 (1) The second and third parts will be against 0 (RSS_UNDEF) but
12127 should nevertheless be emitted if the first part is.
12129 (2) In normal usage, composite relocations are never assembly-time
12130 constants. The easiest way of dealing with the pathological
12131 exceptions is to generate a relocation against STN_UNDEF and
12132 leave everything up to the linker. */
12133 if (fixP
->fx_addsy
== NULL
&& !fixP
->fx_pcrel
&& fixP
->fx_tcbit
== 0)
12136 switch (fixP
->fx_r_type
)
12138 case BFD_RELOC_MIPS_TLS_GD
:
12139 case BFD_RELOC_MIPS_TLS_LDM
:
12140 case BFD_RELOC_MIPS_TLS_DTPREL32
:
12141 case BFD_RELOC_MIPS_TLS_DTPREL64
:
12142 case BFD_RELOC_MIPS_TLS_DTPREL_HI16
:
12143 case BFD_RELOC_MIPS_TLS_DTPREL_LO16
:
12144 case BFD_RELOC_MIPS_TLS_GOTTPREL
:
12145 case BFD_RELOC_MIPS_TLS_TPREL_HI16
:
12146 case BFD_RELOC_MIPS_TLS_TPREL_LO16
:
12147 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
12150 case BFD_RELOC_MIPS_JMP
:
12151 case BFD_RELOC_MIPS_SHIFT5
:
12152 case BFD_RELOC_MIPS_SHIFT6
:
12153 case BFD_RELOC_MIPS_GOT_DISP
:
12154 case BFD_RELOC_MIPS_GOT_PAGE
:
12155 case BFD_RELOC_MIPS_GOT_OFST
:
12156 case BFD_RELOC_MIPS_SUB
:
12157 case BFD_RELOC_MIPS_INSERT_A
:
12158 case BFD_RELOC_MIPS_INSERT_B
:
12159 case BFD_RELOC_MIPS_DELETE
:
12160 case BFD_RELOC_MIPS_HIGHEST
:
12161 case BFD_RELOC_MIPS_HIGHER
:
12162 case BFD_RELOC_MIPS_SCN_DISP
:
12163 case BFD_RELOC_MIPS_REL16
:
12164 case BFD_RELOC_MIPS_RELGOT
:
12165 case BFD_RELOC_MIPS_JALR
:
12166 case BFD_RELOC_HI16
:
12167 case BFD_RELOC_HI16_S
:
12168 case BFD_RELOC_GPREL16
:
12169 case BFD_RELOC_MIPS_LITERAL
:
12170 case BFD_RELOC_MIPS_CALL16
:
12171 case BFD_RELOC_MIPS_GOT16
:
12172 case BFD_RELOC_GPREL32
:
12173 case BFD_RELOC_MIPS_GOT_HI16
:
12174 case BFD_RELOC_MIPS_GOT_LO16
:
12175 case BFD_RELOC_MIPS_CALL_HI16
:
12176 case BFD_RELOC_MIPS_CALL_LO16
:
12177 case BFD_RELOC_MIPS16_GPREL
:
12178 case BFD_RELOC_MIPS16_GOT16
:
12179 case BFD_RELOC_MIPS16_CALL16
:
12180 case BFD_RELOC_MIPS16_HI16
:
12181 case BFD_RELOC_MIPS16_HI16_S
:
12182 case BFD_RELOC_MIPS16_JMP
:
12183 /* Nothing needed to do. The value comes from the reloc entry. */
12187 /* This is handled like BFD_RELOC_32, but we output a sign
12188 extended value if we are only 32 bits. */
12191 if (8 <= sizeof (valueT
))
12192 md_number_to_chars ((char *) buf
, *valP
, 8);
12197 if ((*valP
& 0x80000000) != 0)
12201 md_number_to_chars ((char *)(buf
+ (target_big_endian
? 4 : 0)),
12203 md_number_to_chars ((char *)(buf
+ (target_big_endian
? 0 : 4)),
12209 case BFD_RELOC_RVA
:
12212 /* If we are deleting this reloc entry, we must fill in the
12213 value now. This can happen if we have a .word which is not
12214 resolved when it appears but is later defined. */
12216 md_number_to_chars ((char *) buf
, *valP
, fixP
->fx_size
);
12219 case BFD_RELOC_LO16
:
12220 case BFD_RELOC_MIPS16_LO16
:
12221 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
12222 may be safe to remove, but if so it's not obvious. */
12223 /* When handling an embedded PIC switch statement, we can wind
12224 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
12227 if (*valP
+ 0x8000 > 0xffff)
12228 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
12229 _("relocation overflow"));
12230 if (target_big_endian
)
12232 md_number_to_chars ((char *) buf
, *valP
, 2);
12236 case BFD_RELOC_16_PCREL_S2
:
12237 if ((*valP
& 0x3) != 0)
12238 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
12239 _("Branch to misaligned address (%lx)"), (long) *valP
);
12241 /* We need to save the bits in the instruction since fixup_segment()
12242 might be deleting the relocation entry (i.e., a branch within
12243 the current segment). */
12244 if (! fixP
->fx_done
)
12247 /* Update old instruction data. */
12248 if (target_big_endian
)
12249 insn
= (buf
[0] << 24) | (buf
[1] << 16) | (buf
[2] << 8) | buf
[3];
12251 insn
= (buf
[3] << 24) | (buf
[2] << 16) | (buf
[1] << 8) | buf
[0];
12253 if (*valP
+ 0x20000 <= 0x3ffff)
12255 insn
|= (*valP
>> 2) & 0xffff;
12256 md_number_to_chars ((char *) buf
, insn
, 4);
12258 else if (mips_pic
== NO_PIC
12260 && fixP
->fx_frag
->fr_address
>= text_section
->vma
12261 && (fixP
->fx_frag
->fr_address
12262 < text_section
->vma
+ bfd_get_section_size (text_section
))
12263 && ((insn
& 0xffff0000) == 0x10000000 /* beq $0,$0 */
12264 || (insn
& 0xffff0000) == 0x04010000 /* bgez $0 */
12265 || (insn
& 0xffff0000) == 0x04110000)) /* bgezal $0 */
12267 /* The branch offset is too large. If this is an
12268 unconditional branch, and we are not generating PIC code,
12269 we can convert it to an absolute jump instruction. */
12270 if ((insn
& 0xffff0000) == 0x04110000) /* bgezal $0 */
12271 insn
= 0x0c000000; /* jal */
12273 insn
= 0x08000000; /* j */
12274 fixP
->fx_r_type
= BFD_RELOC_MIPS_JMP
;
12276 fixP
->fx_addsy
= section_symbol (text_section
);
12277 *valP
+= md_pcrel_from (fixP
);
12278 md_number_to_chars ((char *) buf
, insn
, 4);
12282 /* If we got here, we have branch-relaxation disabled,
12283 and there's nothing we can do to fix this instruction
12284 without turning it into a longer sequence. */
12285 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
12286 _("Branch out of range"));
12290 case BFD_RELOC_VTABLE_INHERIT
:
12293 && !S_IS_DEFINED (fixP
->fx_addsy
)
12294 && !S_IS_WEAK (fixP
->fx_addsy
))
12295 S_SET_WEAK (fixP
->fx_addsy
);
12298 case BFD_RELOC_VTABLE_ENTRY
:
12306 /* Remember value for tc_gen_reloc. */
12307 fixP
->fx_addnumber
= *valP
;
12317 name
= input_line_pointer
;
12318 c
= get_symbol_end ();
12319 p
= (symbolS
*) symbol_find_or_make (name
);
12320 *input_line_pointer
= c
;
12324 /* Align the current frag to a given power of two. If a particular
12325 fill byte should be used, FILL points to an integer that contains
12326 that byte, otherwise FILL is null.
12328 The MIPS assembler also automatically adjusts any preceding
12332 mips_align (int to
, int *fill
, symbolS
*label
)
12334 mips_emit_delays ();
12335 mips_record_mips16_mode ();
12336 if (fill
== NULL
&& subseg_text_p (now_seg
))
12337 frag_align_code (to
, 0);
12339 frag_align (to
, fill
? *fill
: 0, 0);
12340 record_alignment (now_seg
, to
);
12343 assert (S_GET_SEGMENT (label
) == now_seg
);
12344 symbol_set_frag (label
, frag_now
);
12345 S_SET_VALUE (label
, (valueT
) frag_now_fix ());
12349 /* Align to a given power of two. .align 0 turns off the automatic
12350 alignment used by the data creating pseudo-ops. */
12353 s_align (int x ATTRIBUTE_UNUSED
)
12355 int temp
, fill_value
, *fill_ptr
;
12356 long max_alignment
= 28;
12358 /* o Note that the assembler pulls down any immediately preceding label
12359 to the aligned address.
12360 o It's not documented but auto alignment is reinstated by
12361 a .align pseudo instruction.
12362 o Note also that after auto alignment is turned off the mips assembler
12363 issues an error on attempt to assemble an improperly aligned data item.
12366 temp
= get_absolute_expression ();
12367 if (temp
> max_alignment
)
12368 as_bad (_("Alignment too large: %d. assumed."), temp
= max_alignment
);
12371 as_warn (_("Alignment negative: 0 assumed."));
12374 if (*input_line_pointer
== ',')
12376 ++input_line_pointer
;
12377 fill_value
= get_absolute_expression ();
12378 fill_ptr
= &fill_value
;
12384 segment_info_type
*si
= seg_info (now_seg
);
12385 struct insn_label_list
*l
= si
->label_list
;
12386 /* Auto alignment should be switched on by next section change. */
12388 mips_align (temp
, fill_ptr
, l
!= NULL
? l
->label
: NULL
);
12395 demand_empty_rest_of_line ();
12399 s_change_sec (int sec
)
12404 /* The ELF backend needs to know that we are changing sections, so
12405 that .previous works correctly. We could do something like check
12406 for an obj_section_change_hook macro, but that might be confusing
12407 as it would not be appropriate to use it in the section changing
12408 functions in read.c, since obj-elf.c intercepts those. FIXME:
12409 This should be cleaner, somehow. */
12411 obj_elf_section_change_hook ();
12414 mips_emit_delays ();
12424 subseg_set (bss_section
, (subsegT
) get_absolute_expression ());
12425 demand_empty_rest_of_line ();
12429 seg
= subseg_new (RDATA_SECTION_NAME
,
12430 (subsegT
) get_absolute_expression ());
12433 bfd_set_section_flags (stdoutput
, seg
, (SEC_ALLOC
| SEC_LOAD
12434 | SEC_READONLY
| SEC_RELOC
12436 if (strncmp (TARGET_OS
, "elf", 3) != 0)
12437 record_alignment (seg
, 4);
12439 demand_empty_rest_of_line ();
12443 seg
= subseg_new (".sdata", (subsegT
) get_absolute_expression ());
12446 bfd_set_section_flags (stdoutput
, seg
,
12447 SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
| SEC_DATA
);
12448 if (strncmp (TARGET_OS
, "elf", 3) != 0)
12449 record_alignment (seg
, 4);
12451 demand_empty_rest_of_line ();
12459 s_change_section (int ignore ATTRIBUTE_UNUSED
)
12462 char *section_name
;
12467 int section_entry_size
;
12468 int section_alignment
;
12473 section_name
= input_line_pointer
;
12474 c
= get_symbol_end ();
12476 next_c
= *(input_line_pointer
+ 1);
12478 /* Do we have .section Name<,"flags">? */
12479 if (c
!= ',' || (c
== ',' && next_c
== '"'))
12481 /* just after name is now '\0'. */
12482 *input_line_pointer
= c
;
12483 input_line_pointer
= section_name
;
12484 obj_elf_section (ignore
);
12487 input_line_pointer
++;
12489 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
12491 section_type
= get_absolute_expression ();
12494 if (*input_line_pointer
++ == ',')
12495 section_flag
= get_absolute_expression ();
12498 if (*input_line_pointer
++ == ',')
12499 section_entry_size
= get_absolute_expression ();
12501 section_entry_size
= 0;
12502 if (*input_line_pointer
++ == ',')
12503 section_alignment
= get_absolute_expression ();
12505 section_alignment
= 0;
12507 section_name
= xstrdup (section_name
);
12509 /* When using the generic form of .section (as implemented by obj-elf.c),
12510 there's no way to set the section type to SHT_MIPS_DWARF. Users have
12511 traditionally had to fall back on the more common @progbits instead.
12513 There's nothing really harmful in this, since bfd will correct
12514 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
12515 means that, for backwards compatibility, the special_section entries
12516 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
12518 Even so, we shouldn't force users of the MIPS .section syntax to
12519 incorrectly label the sections as SHT_PROGBITS. The best compromise
12520 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
12521 generic type-checking code. */
12522 if (section_type
== SHT_MIPS_DWARF
)
12523 section_type
= SHT_PROGBITS
;
12525 obj_elf_change_section (section_name
, section_type
, section_flag
,
12526 section_entry_size
, 0, 0, 0);
12528 if (now_seg
->name
!= section_name
)
12529 free (section_name
);
12530 #endif /* OBJ_ELF */
12534 mips_enable_auto_align (void)
12540 s_cons (int log_size
)
12542 segment_info_type
*si
= seg_info (now_seg
);
12543 struct insn_label_list
*l
= si
->label_list
;
12546 label
= l
!= NULL
? l
->label
: NULL
;
12547 mips_emit_delays ();
12548 if (log_size
> 0 && auto_align
)
12549 mips_align (log_size
, 0, label
);
12550 mips_clear_insn_labels ();
12551 cons (1 << log_size
);
12555 s_float_cons (int type
)
12557 segment_info_type
*si
= seg_info (now_seg
);
12558 struct insn_label_list
*l
= si
->label_list
;
12561 label
= l
!= NULL
? l
->label
: NULL
;
12563 mips_emit_delays ();
12568 mips_align (3, 0, label
);
12570 mips_align (2, 0, label
);
12573 mips_clear_insn_labels ();
12578 /* Handle .globl. We need to override it because on Irix 5 you are
12581 where foo is an undefined symbol, to mean that foo should be
12582 considered to be the address of a function. */
12585 s_mips_globl (int x ATTRIBUTE_UNUSED
)
12594 name
= input_line_pointer
;
12595 c
= get_symbol_end ();
12596 symbolP
= symbol_find_or_make (name
);
12597 S_SET_EXTERNAL (symbolP
);
12599 *input_line_pointer
= c
;
12600 SKIP_WHITESPACE ();
12602 /* On Irix 5, every global symbol that is not explicitly labelled as
12603 being a function is apparently labelled as being an object. */
12606 if (!is_end_of_line
[(unsigned char) *input_line_pointer
]
12607 && (*input_line_pointer
!= ','))
12612 secname
= input_line_pointer
;
12613 c
= get_symbol_end ();
12614 sec
= bfd_get_section_by_name (stdoutput
, secname
);
12616 as_bad (_("%s: no such section"), secname
);
12617 *input_line_pointer
= c
;
12619 if (sec
!= NULL
&& (sec
->flags
& SEC_CODE
) != 0)
12620 flag
= BSF_FUNCTION
;
12623 symbol_get_bfdsym (symbolP
)->flags
|= flag
;
12625 c
= *input_line_pointer
;
12628 input_line_pointer
++;
12629 SKIP_WHITESPACE ();
12630 if (is_end_of_line
[(unsigned char) *input_line_pointer
])
12636 demand_empty_rest_of_line ();
12640 s_option (int x ATTRIBUTE_UNUSED
)
12645 opt
= input_line_pointer
;
12646 c
= get_symbol_end ();
12650 /* FIXME: What does this mean? */
12652 else if (strncmp (opt
, "pic", 3) == 0)
12656 i
= atoi (opt
+ 3);
12661 mips_pic
= SVR4_PIC
;
12662 mips_abicalls
= TRUE
;
12665 as_bad (_(".option pic%d not supported"), i
);
12667 if (mips_pic
== SVR4_PIC
)
12669 if (g_switch_seen
&& g_switch_value
!= 0)
12670 as_warn (_("-G may not be used with SVR4 PIC code"));
12671 g_switch_value
= 0;
12672 bfd_set_gp_size (stdoutput
, 0);
12676 as_warn (_("Unrecognized option \"%s\""), opt
);
12678 *input_line_pointer
= c
;
12679 demand_empty_rest_of_line ();
12682 /* This structure is used to hold a stack of .set values. */
12684 struct mips_option_stack
12686 struct mips_option_stack
*next
;
12687 struct mips_set_options options
;
12690 static struct mips_option_stack
*mips_opts_stack
;
12692 /* Handle the .set pseudo-op. */
12695 s_mipsset (int x ATTRIBUTE_UNUSED
)
12697 char *name
= input_line_pointer
, ch
;
12699 while (!is_end_of_line
[(unsigned char) *input_line_pointer
])
12700 ++input_line_pointer
;
12701 ch
= *input_line_pointer
;
12702 *input_line_pointer
= '\0';
12704 if (strcmp (name
, "reorder") == 0)
12706 if (mips_opts
.noreorder
)
12709 else if (strcmp (name
, "noreorder") == 0)
12711 if (!mips_opts
.noreorder
)
12712 start_noreorder ();
12714 else if (strncmp (name
, "at=", 3) == 0)
12716 char *s
= name
+ 3;
12718 if (!reg_lookup (&s
, RTYPE_NUM
| RTYPE_GP
, &mips_opts
.at
))
12719 as_bad (_("Unrecognized register name `%s'"), s
);
12721 else if (strcmp (name
, "at") == 0)
12723 mips_opts
.at
= ATREG
;
12725 else if (strcmp (name
, "noat") == 0)
12727 mips_opts
.at
= ZERO
;
12729 else if (strcmp (name
, "macro") == 0)
12731 mips_opts
.warn_about_macros
= 0;
12733 else if (strcmp (name
, "nomacro") == 0)
12735 if (mips_opts
.noreorder
== 0)
12736 as_bad (_("`noreorder' must be set before `nomacro'"));
12737 mips_opts
.warn_about_macros
= 1;
12739 else if (strcmp (name
, "move") == 0 || strcmp (name
, "novolatile") == 0)
12741 mips_opts
.nomove
= 0;
12743 else if (strcmp (name
, "nomove") == 0 || strcmp (name
, "volatile") == 0)
12745 mips_opts
.nomove
= 1;
12747 else if (strcmp (name
, "bopt") == 0)
12749 mips_opts
.nobopt
= 0;
12751 else if (strcmp (name
, "nobopt") == 0)
12753 mips_opts
.nobopt
= 1;
12755 else if (strcmp (name
, "gp=default") == 0)
12756 mips_opts
.gp32
= file_mips_gp32
;
12757 else if (strcmp (name
, "gp=32") == 0)
12758 mips_opts
.gp32
= 1;
12759 else if (strcmp (name
, "gp=64") == 0)
12761 if (!ISA_HAS_64BIT_REGS (mips_opts
.isa
))
12762 as_warn ("%s isa does not support 64-bit registers",
12763 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12764 mips_opts
.gp32
= 0;
12766 else if (strcmp (name
, "fp=default") == 0)
12767 mips_opts
.fp32
= file_mips_fp32
;
12768 else if (strcmp (name
, "fp=32") == 0)
12769 mips_opts
.fp32
= 1;
12770 else if (strcmp (name
, "fp=64") == 0)
12772 if (!ISA_HAS_64BIT_FPRS (mips_opts
.isa
))
12773 as_warn ("%s isa does not support 64-bit floating point registers",
12774 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12775 mips_opts
.fp32
= 0;
12777 else if (strcmp (name
, "softfloat") == 0)
12778 mips_opts
.soft_float
= 1;
12779 else if (strcmp (name
, "hardfloat") == 0)
12780 mips_opts
.soft_float
= 0;
12781 else if (strcmp (name
, "singlefloat") == 0)
12782 mips_opts
.single_float
= 1;
12783 else if (strcmp (name
, "doublefloat") == 0)
12784 mips_opts
.single_float
= 0;
12785 else if (strcmp (name
, "mips16") == 0
12786 || strcmp (name
, "MIPS-16") == 0)
12787 mips_opts
.mips16
= 1;
12788 else if (strcmp (name
, "nomips16") == 0
12789 || strcmp (name
, "noMIPS-16") == 0)
12790 mips_opts
.mips16
= 0;
12791 else if (strcmp (name
, "smartmips") == 0)
12793 if (!ISA_SUPPORTS_SMARTMIPS
)
12794 as_warn ("%s ISA does not support SmartMIPS ASE",
12795 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12796 mips_opts
.ase_smartmips
= 1;
12798 else if (strcmp (name
, "nosmartmips") == 0)
12799 mips_opts
.ase_smartmips
= 0;
12800 else if (strcmp (name
, "mips3d") == 0)
12801 mips_opts
.ase_mips3d
= 1;
12802 else if (strcmp (name
, "nomips3d") == 0)
12803 mips_opts
.ase_mips3d
= 0;
12804 else if (strcmp (name
, "mdmx") == 0)
12805 mips_opts
.ase_mdmx
= 1;
12806 else if (strcmp (name
, "nomdmx") == 0)
12807 mips_opts
.ase_mdmx
= 0;
12808 else if (strcmp (name
, "dsp") == 0)
12810 if (!ISA_SUPPORTS_DSP_ASE
)
12811 as_warn ("%s ISA does not support DSP ASE",
12812 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12813 mips_opts
.ase_dsp
= 1;
12814 mips_opts
.ase_dspr2
= 0;
12816 else if (strcmp (name
, "nodsp") == 0)
12818 mips_opts
.ase_dsp
= 0;
12819 mips_opts
.ase_dspr2
= 0;
12821 else if (strcmp (name
, "dspr2") == 0)
12823 if (!ISA_SUPPORTS_DSPR2_ASE
)
12824 as_warn ("%s ISA does not support DSP R2 ASE",
12825 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12826 mips_opts
.ase_dspr2
= 1;
12827 mips_opts
.ase_dsp
= 1;
12829 else if (strcmp (name
, "nodspr2") == 0)
12831 mips_opts
.ase_dspr2
= 0;
12832 mips_opts
.ase_dsp
= 0;
12834 else if (strcmp (name
, "mt") == 0)
12836 if (!ISA_SUPPORTS_MT_ASE
)
12837 as_warn ("%s ISA does not support MT ASE",
12838 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12839 mips_opts
.ase_mt
= 1;
12841 else if (strcmp (name
, "nomt") == 0)
12842 mips_opts
.ase_mt
= 0;
12843 else if (strncmp (name
, "mips", 4) == 0 || strncmp (name
, "arch=", 5) == 0)
12847 /* Permit the user to change the ISA and architecture on the fly.
12848 Needless to say, misuse can cause serious problems. */
12849 if (strcmp (name
, "mips0") == 0 || strcmp (name
, "arch=default") == 0)
12852 mips_opts
.isa
= file_mips_isa
;
12853 mips_opts
.arch
= file_mips_arch
;
12855 else if (strncmp (name
, "arch=", 5) == 0)
12857 const struct mips_cpu_info
*p
;
12859 p
= mips_parse_cpu("internal use", name
+ 5);
12861 as_bad (_("unknown architecture %s"), name
+ 5);
12864 mips_opts
.arch
= p
->cpu
;
12865 mips_opts
.isa
= p
->isa
;
12868 else if (strncmp (name
, "mips", 4) == 0)
12870 const struct mips_cpu_info
*p
;
12872 p
= mips_parse_cpu("internal use", name
);
12874 as_bad (_("unknown ISA level %s"), name
+ 4);
12877 mips_opts
.arch
= p
->cpu
;
12878 mips_opts
.isa
= p
->isa
;
12882 as_bad (_("unknown ISA or architecture %s"), name
);
12884 switch (mips_opts
.isa
)
12892 mips_opts
.gp32
= 1;
12893 mips_opts
.fp32
= 1;
12900 mips_opts
.gp32
= 0;
12901 mips_opts
.fp32
= 0;
12904 as_bad (_("unknown ISA level %s"), name
+ 4);
12909 mips_opts
.gp32
= file_mips_gp32
;
12910 mips_opts
.fp32
= file_mips_fp32
;
12913 else if (strcmp (name
, "autoextend") == 0)
12914 mips_opts
.noautoextend
= 0;
12915 else if (strcmp (name
, "noautoextend") == 0)
12916 mips_opts
.noautoextend
= 1;
12917 else if (strcmp (name
, "push") == 0)
12919 struct mips_option_stack
*s
;
12921 s
= (struct mips_option_stack
*) xmalloc (sizeof *s
);
12922 s
->next
= mips_opts_stack
;
12923 s
->options
= mips_opts
;
12924 mips_opts_stack
= s
;
12926 else if (strcmp (name
, "pop") == 0)
12928 struct mips_option_stack
*s
;
12930 s
= mips_opts_stack
;
12932 as_bad (_(".set pop with no .set push"));
12935 /* If we're changing the reorder mode we need to handle
12936 delay slots correctly. */
12937 if (s
->options
.noreorder
&& ! mips_opts
.noreorder
)
12938 start_noreorder ();
12939 else if (! s
->options
.noreorder
&& mips_opts
.noreorder
)
12942 mips_opts
= s
->options
;
12943 mips_opts_stack
= s
->next
;
12947 else if (strcmp (name
, "sym32") == 0)
12948 mips_opts
.sym32
= TRUE
;
12949 else if (strcmp (name
, "nosym32") == 0)
12950 mips_opts
.sym32
= FALSE
;
12951 else if (strchr (name
, ','))
12953 /* Generic ".set" directive; use the generic handler. */
12954 *input_line_pointer
= ch
;
12955 input_line_pointer
= name
;
12961 as_warn (_("Tried to set unrecognized symbol: %s\n"), name
);
12963 *input_line_pointer
= ch
;
12964 demand_empty_rest_of_line ();
12967 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
12968 .option pic2. It means to generate SVR4 PIC calls. */
12971 s_abicalls (int ignore ATTRIBUTE_UNUSED
)
12973 mips_pic
= SVR4_PIC
;
12974 mips_abicalls
= TRUE
;
12976 if (g_switch_seen
&& g_switch_value
!= 0)
12977 as_warn (_("-G may not be used with SVR4 PIC code"));
12978 g_switch_value
= 0;
12980 bfd_set_gp_size (stdoutput
, 0);
12981 demand_empty_rest_of_line ();
12984 /* Handle the .cpload pseudo-op. This is used when generating SVR4
12985 PIC code. It sets the $gp register for the function based on the
12986 function address, which is in the register named in the argument.
12987 This uses a relocation against _gp_disp, which is handled specially
12988 by the linker. The result is:
12989 lui $gp,%hi(_gp_disp)
12990 addiu $gp,$gp,%lo(_gp_disp)
12991 addu $gp,$gp,.cpload argument
12992 The .cpload argument is normally $25 == $t9.
12994 The -mno-shared option changes this to:
12995 lui $gp,%hi(__gnu_local_gp)
12996 addiu $gp,$gp,%lo(__gnu_local_gp)
12997 and the argument is ignored. This saves an instruction, but the
12998 resulting code is not position independent; it uses an absolute
12999 address for __gnu_local_gp. Thus code assembled with -mno-shared
13000 can go into an ordinary executable, but not into a shared library. */
13003 s_cpload (int ignore ATTRIBUTE_UNUSED
)
13009 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13010 .cpload is ignored. */
13011 if (mips_pic
!= SVR4_PIC
|| HAVE_NEWABI
)
13017 /* .cpload should be in a .set noreorder section. */
13018 if (mips_opts
.noreorder
== 0)
13019 as_warn (_(".cpload not in noreorder section"));
13021 reg
= tc_get_register (0);
13023 /* If we need to produce a 64-bit address, we are better off using
13024 the default instruction sequence. */
13025 in_shared
= mips_in_shared
|| HAVE_64BIT_SYMBOLS
;
13027 ex
.X_op
= O_symbol
;
13028 ex
.X_add_symbol
= symbol_find_or_make (in_shared
? "_gp_disp" :
13030 ex
.X_op_symbol
= NULL
;
13031 ex
.X_add_number
= 0;
13033 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
13034 symbol_get_bfdsym (ex
.X_add_symbol
)->flags
|= BSF_OBJECT
;
13037 macro_build_lui (&ex
, mips_gp_register
);
13038 macro_build (&ex
, "addiu", "t,r,j", mips_gp_register
,
13039 mips_gp_register
, BFD_RELOC_LO16
);
13041 macro_build (NULL
, "addu", "d,v,t", mips_gp_register
,
13042 mips_gp_register
, reg
);
13045 demand_empty_rest_of_line ();
13048 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
13049 .cpsetup $reg1, offset|$reg2, label
13051 If offset is given, this results in:
13052 sd $gp, offset($sp)
13053 lui $gp, %hi(%neg(%gp_rel(label)))
13054 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13055 daddu $gp, $gp, $reg1
13057 If $reg2 is given, this results in:
13058 daddu $reg2, $gp, $0
13059 lui $gp, %hi(%neg(%gp_rel(label)))
13060 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13061 daddu $gp, $gp, $reg1
13062 $reg1 is normally $25 == $t9.
13064 The -mno-shared option replaces the last three instructions with
13066 addiu $gp,$gp,%lo(_gp) */
13069 s_cpsetup (int ignore ATTRIBUTE_UNUSED
)
13071 expressionS ex_off
;
13072 expressionS ex_sym
;
13075 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
13076 We also need NewABI support. */
13077 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
13083 reg1
= tc_get_register (0);
13084 SKIP_WHITESPACE ();
13085 if (*input_line_pointer
!= ',')
13087 as_bad (_("missing argument separator ',' for .cpsetup"));
13091 ++input_line_pointer
;
13092 SKIP_WHITESPACE ();
13093 if (*input_line_pointer
== '$')
13095 mips_cpreturn_register
= tc_get_register (0);
13096 mips_cpreturn_offset
= -1;
13100 mips_cpreturn_offset
= get_absolute_expression ();
13101 mips_cpreturn_register
= -1;
13103 SKIP_WHITESPACE ();
13104 if (*input_line_pointer
!= ',')
13106 as_bad (_("missing argument separator ',' for .cpsetup"));
13110 ++input_line_pointer
;
13111 SKIP_WHITESPACE ();
13112 expression (&ex_sym
);
13115 if (mips_cpreturn_register
== -1)
13117 ex_off
.X_op
= O_constant
;
13118 ex_off
.X_add_symbol
= NULL
;
13119 ex_off
.X_op_symbol
= NULL
;
13120 ex_off
.X_add_number
= mips_cpreturn_offset
;
13122 macro_build (&ex_off
, "sd", "t,o(b)", mips_gp_register
,
13123 BFD_RELOC_LO16
, SP
);
13126 macro_build (NULL
, "daddu", "d,v,t", mips_cpreturn_register
,
13127 mips_gp_register
, 0);
13129 if (mips_in_shared
|| HAVE_64BIT_SYMBOLS
)
13131 macro_build (&ex_sym
, "lui", "t,u", mips_gp_register
,
13132 -1, BFD_RELOC_GPREL16
, BFD_RELOC_MIPS_SUB
,
13135 macro_build (&ex_sym
, "addiu", "t,r,j", mips_gp_register
,
13136 mips_gp_register
, -1, BFD_RELOC_GPREL16
,
13137 BFD_RELOC_MIPS_SUB
, BFD_RELOC_LO16
);
13139 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", mips_gp_register
,
13140 mips_gp_register
, reg1
);
13146 ex
.X_op
= O_symbol
;
13147 ex
.X_add_symbol
= symbol_find_or_make ("__gnu_local_gp");
13148 ex
.X_op_symbol
= NULL
;
13149 ex
.X_add_number
= 0;
13151 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
13152 symbol_get_bfdsym (ex
.X_add_symbol
)->flags
|= BSF_OBJECT
;
13154 macro_build_lui (&ex
, mips_gp_register
);
13155 macro_build (&ex
, "addiu", "t,r,j", mips_gp_register
,
13156 mips_gp_register
, BFD_RELOC_LO16
);
13161 demand_empty_rest_of_line ();
13165 s_cplocal (int ignore ATTRIBUTE_UNUSED
)
13167 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
13168 .cplocal is ignored. */
13169 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
13175 mips_gp_register
= tc_get_register (0);
13176 demand_empty_rest_of_line ();
13179 /* Handle the .cprestore pseudo-op. This stores $gp into a given
13180 offset from $sp. The offset is remembered, and after making a PIC
13181 call $gp is restored from that location. */
13184 s_cprestore (int ignore ATTRIBUTE_UNUSED
)
13188 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13189 .cprestore is ignored. */
13190 if (mips_pic
!= SVR4_PIC
|| HAVE_NEWABI
)
13196 mips_cprestore_offset
= get_absolute_expression ();
13197 mips_cprestore_valid
= 1;
13199 ex
.X_op
= O_constant
;
13200 ex
.X_add_symbol
= NULL
;
13201 ex
.X_op_symbol
= NULL
;
13202 ex
.X_add_number
= mips_cprestore_offset
;
13205 macro_build_ldst_constoffset (&ex
, ADDRESS_STORE_INSN
, mips_gp_register
,
13206 SP
, HAVE_64BIT_ADDRESSES
);
13209 demand_empty_rest_of_line ();
13212 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
13213 was given in the preceding .cpsetup, it results in:
13214 ld $gp, offset($sp)
13216 If a register $reg2 was given there, it results in:
13217 daddu $gp, $reg2, $0 */
13220 s_cpreturn (int ignore ATTRIBUTE_UNUSED
)
13224 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
13225 We also need NewABI support. */
13226 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
13233 if (mips_cpreturn_register
== -1)
13235 ex
.X_op
= O_constant
;
13236 ex
.X_add_symbol
= NULL
;
13237 ex
.X_op_symbol
= NULL
;
13238 ex
.X_add_number
= mips_cpreturn_offset
;
13240 macro_build (&ex
, "ld", "t,o(b)", mips_gp_register
, BFD_RELOC_LO16
, SP
);
13243 macro_build (NULL
, "daddu", "d,v,t", mips_gp_register
,
13244 mips_cpreturn_register
, 0);
13247 demand_empty_rest_of_line ();
13250 /* Handle the .dtprelword and .dtpreldword pseudo-ops. They generate
13251 a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for
13252 use in DWARF debug information. */
13255 s_dtprel_internal (size_t bytes
)
13262 if (ex
.X_op
!= O_symbol
)
13264 as_bad (_("Unsupported use of %s"), (bytes
== 8
13267 ignore_rest_of_line ();
13270 p
= frag_more (bytes
);
13271 md_number_to_chars (p
, 0, bytes
);
13272 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, bytes
, &ex
, FALSE
,
13274 ? BFD_RELOC_MIPS_TLS_DTPREL64
13275 : BFD_RELOC_MIPS_TLS_DTPREL32
));
13277 demand_empty_rest_of_line ();
13280 /* Handle .dtprelword. */
13283 s_dtprelword (int ignore ATTRIBUTE_UNUSED
)
13285 s_dtprel_internal (4);
13288 /* Handle .dtpreldword. */
13291 s_dtpreldword (int ignore ATTRIBUTE_UNUSED
)
13293 s_dtprel_internal (8);
13296 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
13297 code. It sets the offset to use in gp_rel relocations. */
13300 s_gpvalue (int ignore ATTRIBUTE_UNUSED
)
13302 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
13303 We also need NewABI support. */
13304 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
13310 mips_gprel_offset
= get_absolute_expression ();
13312 demand_empty_rest_of_line ();
13315 /* Handle the .gpword pseudo-op. This is used when generating PIC
13316 code. It generates a 32 bit GP relative reloc. */
13319 s_gpword (int ignore ATTRIBUTE_UNUSED
)
13321 segment_info_type
*si
;
13322 struct insn_label_list
*l
;
13327 /* When not generating PIC code, this is treated as .word. */
13328 if (mips_pic
!= SVR4_PIC
)
13334 si
= seg_info (now_seg
);
13335 l
= si
->label_list
;
13336 label
= l
!= NULL
? l
->label
: NULL
;
13337 mips_emit_delays ();
13339 mips_align (2, 0, label
);
13340 mips_clear_insn_labels ();
13344 if (ex
.X_op
!= O_symbol
|| ex
.X_add_number
!= 0)
13346 as_bad (_("Unsupported use of .gpword"));
13347 ignore_rest_of_line ();
13351 md_number_to_chars (p
, 0, 4);
13352 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, 4, &ex
, FALSE
,
13353 BFD_RELOC_GPREL32
);
13355 demand_empty_rest_of_line ();
13359 s_gpdword (int ignore ATTRIBUTE_UNUSED
)
13361 segment_info_type
*si
;
13362 struct insn_label_list
*l
;
13367 /* When not generating PIC code, this is treated as .dword. */
13368 if (mips_pic
!= SVR4_PIC
)
13374 si
= seg_info (now_seg
);
13375 l
= si
->label_list
;
13376 label
= l
!= NULL
? l
->label
: NULL
;
13377 mips_emit_delays ();
13379 mips_align (3, 0, label
);
13380 mips_clear_insn_labels ();
13384 if (ex
.X_op
!= O_symbol
|| ex
.X_add_number
!= 0)
13386 as_bad (_("Unsupported use of .gpdword"));
13387 ignore_rest_of_line ();
13391 md_number_to_chars (p
, 0, 8);
13392 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, 4, &ex
, FALSE
,
13393 BFD_RELOC_GPREL32
)->fx_tcbit
= 1;
13395 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
13396 fix_new (frag_now
, p
- frag_now
->fr_literal
, 8, NULL
, 0,
13397 FALSE
, BFD_RELOC_64
)->fx_tcbit
= 1;
13399 demand_empty_rest_of_line ();
13402 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
13403 tables in SVR4 PIC code. */
13406 s_cpadd (int ignore ATTRIBUTE_UNUSED
)
13410 /* This is ignored when not generating SVR4 PIC code. */
13411 if (mips_pic
!= SVR4_PIC
)
13417 /* Add $gp to the register named as an argument. */
13419 reg
= tc_get_register (0);
13420 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", reg
, reg
, mips_gp_register
);
13423 demand_empty_rest_of_line ();
13426 /* Handle the .insn pseudo-op. This marks instruction labels in
13427 mips16 mode. This permits the linker to handle them specially,
13428 such as generating jalx instructions when needed. We also make
13429 them odd for the duration of the assembly, in order to generate the
13430 right sort of code. We will make them even in the adjust_symtab
13431 routine, while leaving them marked. This is convenient for the
13432 debugger and the disassembler. The linker knows to make them odd
13436 s_insn (int ignore ATTRIBUTE_UNUSED
)
13438 mips16_mark_labels ();
13440 demand_empty_rest_of_line ();
13443 /* Handle a .stabn directive. We need these in order to mark a label
13444 as being a mips16 text label correctly. Sometimes the compiler
13445 will emit a label, followed by a .stabn, and then switch sections.
13446 If the label and .stabn are in mips16 mode, then the label is
13447 really a mips16 text label. */
13450 s_mips_stab (int type
)
13453 mips16_mark_labels ();
13458 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
13461 s_mips_weakext (int ignore ATTRIBUTE_UNUSED
)
13468 name
= input_line_pointer
;
13469 c
= get_symbol_end ();
13470 symbolP
= symbol_find_or_make (name
);
13471 S_SET_WEAK (symbolP
);
13472 *input_line_pointer
= c
;
13474 SKIP_WHITESPACE ();
13476 if (! is_end_of_line
[(unsigned char) *input_line_pointer
])
13478 if (S_IS_DEFINED (symbolP
))
13480 as_bad ("ignoring attempt to redefine symbol %s",
13481 S_GET_NAME (symbolP
));
13482 ignore_rest_of_line ();
13486 if (*input_line_pointer
== ',')
13488 ++input_line_pointer
;
13489 SKIP_WHITESPACE ();
13493 if (exp
.X_op
!= O_symbol
)
13495 as_bad ("bad .weakext directive");
13496 ignore_rest_of_line ();
13499 symbol_set_value_expression (symbolP
, &exp
);
13502 demand_empty_rest_of_line ();
13505 /* Parse a register string into a number. Called from the ECOFF code
13506 to parse .frame. The argument is non-zero if this is the frame
13507 register, so that we can record it in mips_frame_reg. */
13510 tc_get_register (int frame
)
13514 SKIP_WHITESPACE ();
13515 if (! reg_lookup (&input_line_pointer
, RWARN
| RTYPE_NUM
| RTYPE_GP
, ®
))
13519 mips_frame_reg
= reg
!= 0 ? reg
: SP
;
13520 mips_frame_reg_valid
= 1;
13521 mips_cprestore_valid
= 0;
13527 md_section_align (asection
*seg
, valueT addr
)
13529 int align
= bfd_get_section_alignment (stdoutput
, seg
);
13533 /* We don't need to align ELF sections to the full alignment.
13534 However, Irix 5 may prefer that we align them at least to a 16
13535 byte boundary. We don't bother to align the sections if we
13536 are targeted for an embedded system. */
13537 if (strncmp (TARGET_OS
, "elf", 3) == 0)
13543 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
13546 /* Utility routine, called from above as well. If called while the
13547 input file is still being read, it's only an approximation. (For
13548 example, a symbol may later become defined which appeared to be
13549 undefined earlier.) */
13552 nopic_need_relax (symbolS
*sym
, int before_relaxing
)
13557 if (g_switch_value
> 0)
13559 const char *symname
;
13562 /* Find out whether this symbol can be referenced off the $gp
13563 register. It can be if it is smaller than the -G size or if
13564 it is in the .sdata or .sbss section. Certain symbols can
13565 not be referenced off the $gp, although it appears as though
13567 symname
= S_GET_NAME (sym
);
13568 if (symname
!= (const char *) NULL
13569 && (strcmp (symname
, "eprol") == 0
13570 || strcmp (symname
, "etext") == 0
13571 || strcmp (symname
, "_gp") == 0
13572 || strcmp (symname
, "edata") == 0
13573 || strcmp (symname
, "_fbss") == 0
13574 || strcmp (symname
, "_fdata") == 0
13575 || strcmp (symname
, "_ftext") == 0
13576 || strcmp (symname
, "end") == 0
13577 || strcmp (symname
, "_gp_disp") == 0))
13579 else if ((! S_IS_DEFINED (sym
) || S_IS_COMMON (sym
))
13581 #ifndef NO_ECOFF_DEBUGGING
13582 || (symbol_get_obj (sym
)->ecoff_extern_size
!= 0
13583 && (symbol_get_obj (sym
)->ecoff_extern_size
13584 <= g_switch_value
))
13586 /* We must defer this decision until after the whole
13587 file has been read, since there might be a .extern
13588 after the first use of this symbol. */
13589 || (before_relaxing
13590 #ifndef NO_ECOFF_DEBUGGING
13591 && symbol_get_obj (sym
)->ecoff_extern_size
== 0
13593 && S_GET_VALUE (sym
) == 0)
13594 || (S_GET_VALUE (sym
) != 0
13595 && S_GET_VALUE (sym
) <= g_switch_value
)))
13599 const char *segname
;
13601 segname
= segment_name (S_GET_SEGMENT (sym
));
13602 assert (strcmp (segname
, ".lit8") != 0
13603 && strcmp (segname
, ".lit4") != 0);
13604 change
= (strcmp (segname
, ".sdata") != 0
13605 && strcmp (segname
, ".sbss") != 0
13606 && strncmp (segname
, ".sdata.", 7) != 0
13607 && strncmp (segname
, ".sbss.", 6) != 0
13608 && strncmp (segname
, ".gnu.linkonce.sb.", 17) != 0
13609 && strncmp (segname
, ".gnu.linkonce.s.", 16) != 0);
13614 /* We are not optimizing for the $gp register. */
13619 /* Return true if the given symbol should be considered local for SVR4 PIC. */
13622 pic_need_relax (symbolS
*sym
, asection
*segtype
)
13626 /* Handle the case of a symbol equated to another symbol. */
13627 while (symbol_equated_reloc_p (sym
))
13631 /* It's possible to get a loop here in a badly written program. */
13632 n
= symbol_get_value_expression (sym
)->X_add_symbol
;
13638 if (symbol_section_p (sym
))
13641 symsec
= S_GET_SEGMENT (sym
);
13643 /* This must duplicate the test in adjust_reloc_syms. */
13644 return (symsec
!= &bfd_und_section
13645 && symsec
!= &bfd_abs_section
13646 && !bfd_is_com_section (symsec
)
13647 && !s_is_linkonce (sym
, segtype
)
13649 /* A global or weak symbol is treated as external. */
13650 && (!IS_ELF
|| (! S_IS_WEAK (sym
) && ! S_IS_EXTERNAL (sym
)))
13656 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
13657 extended opcode. SEC is the section the frag is in. */
13660 mips16_extended_frag (fragS
*fragp
, asection
*sec
, long stretch
)
13663 const struct mips16_immed_operand
*op
;
13665 int mintiny
, maxtiny
;
13669 if (RELAX_MIPS16_USER_SMALL (fragp
->fr_subtype
))
13671 if (RELAX_MIPS16_USER_EXT (fragp
->fr_subtype
))
13674 type
= RELAX_MIPS16_TYPE (fragp
->fr_subtype
);
13675 op
= mips16_immed_operands
;
13676 while (op
->type
!= type
)
13679 assert (op
< mips16_immed_operands
+ MIPS16_NUM_IMMED
);
13684 if (type
== '<' || type
== '>' || type
== '[' || type
== ']')
13687 maxtiny
= 1 << op
->nbits
;
13692 maxtiny
= (1 << op
->nbits
) - 1;
13697 mintiny
= - (1 << (op
->nbits
- 1));
13698 maxtiny
= (1 << (op
->nbits
- 1)) - 1;
13701 sym_frag
= symbol_get_frag (fragp
->fr_symbol
);
13702 val
= S_GET_VALUE (fragp
->fr_symbol
);
13703 symsec
= S_GET_SEGMENT (fragp
->fr_symbol
);
13709 /* We won't have the section when we are called from
13710 mips_relax_frag. However, we will always have been called
13711 from md_estimate_size_before_relax first. If this is a
13712 branch to a different section, we mark it as such. If SEC is
13713 NULL, and the frag is not marked, then it must be a branch to
13714 the same section. */
13717 if (RELAX_MIPS16_LONG_BRANCH (fragp
->fr_subtype
))
13722 /* Must have been called from md_estimate_size_before_relax. */
13725 fragp
->fr_subtype
=
13726 RELAX_MIPS16_MARK_LONG_BRANCH (fragp
->fr_subtype
);
13728 /* FIXME: We should support this, and let the linker
13729 catch branches and loads that are out of range. */
13730 as_bad_where (fragp
->fr_file
, fragp
->fr_line
,
13731 _("unsupported PC relative reference to different section"));
13735 if (fragp
!= sym_frag
&& sym_frag
->fr_address
== 0)
13736 /* Assume non-extended on the first relaxation pass.
13737 The address we have calculated will be bogus if this is
13738 a forward branch to another frag, as the forward frag
13739 will have fr_address == 0. */
13743 /* In this case, we know for sure that the symbol fragment is in
13744 the same section. If the relax_marker of the symbol fragment
13745 differs from the relax_marker of this fragment, we have not
13746 yet adjusted the symbol fragment fr_address. We want to add
13747 in STRETCH in order to get a better estimate of the address.
13748 This particularly matters because of the shift bits. */
13750 && sym_frag
->relax_marker
!= fragp
->relax_marker
)
13754 /* Adjust stretch for any alignment frag. Note that if have
13755 been expanding the earlier code, the symbol may be
13756 defined in what appears to be an earlier frag. FIXME:
13757 This doesn't handle the fr_subtype field, which specifies
13758 a maximum number of bytes to skip when doing an
13760 for (f
= fragp
; f
!= NULL
&& f
!= sym_frag
; f
= f
->fr_next
)
13762 if (f
->fr_type
== rs_align
|| f
->fr_type
== rs_align_code
)
13765 stretch
= - ((- stretch
)
13766 & ~ ((1 << (int) f
->fr_offset
) - 1));
13768 stretch
&= ~ ((1 << (int) f
->fr_offset
) - 1);
13777 addr
= fragp
->fr_address
+ fragp
->fr_fix
;
13779 /* The base address rules are complicated. The base address of
13780 a branch is the following instruction. The base address of a
13781 PC relative load or add is the instruction itself, but if it
13782 is in a delay slot (in which case it can not be extended) use
13783 the address of the instruction whose delay slot it is in. */
13784 if (type
== 'p' || type
== 'q')
13788 /* If we are currently assuming that this frag should be
13789 extended, then, the current address is two bytes
13791 if (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
13794 /* Ignore the low bit in the target, since it will be set
13795 for a text label. */
13796 if ((val
& 1) != 0)
13799 else if (RELAX_MIPS16_JAL_DSLOT (fragp
->fr_subtype
))
13801 else if (RELAX_MIPS16_DSLOT (fragp
->fr_subtype
))
13804 val
-= addr
& ~ ((1 << op
->shift
) - 1);
13806 /* Branch offsets have an implicit 0 in the lowest bit. */
13807 if (type
== 'p' || type
== 'q')
13810 /* If any of the shifted bits are set, we must use an extended
13811 opcode. If the address depends on the size of this
13812 instruction, this can lead to a loop, so we arrange to always
13813 use an extended opcode. We only check this when we are in
13814 the main relaxation loop, when SEC is NULL. */
13815 if ((val
& ((1 << op
->shift
) - 1)) != 0 && sec
== NULL
)
13817 fragp
->fr_subtype
=
13818 RELAX_MIPS16_MARK_LONG_BRANCH (fragp
->fr_subtype
);
13822 /* If we are about to mark a frag as extended because the value
13823 is precisely maxtiny + 1, then there is a chance of an
13824 infinite loop as in the following code:
13829 In this case when the la is extended, foo is 0x3fc bytes
13830 away, so the la can be shrunk, but then foo is 0x400 away, so
13831 the la must be extended. To avoid this loop, we mark the
13832 frag as extended if it was small, and is about to become
13833 extended with a value of maxtiny + 1. */
13834 if (val
== ((maxtiny
+ 1) << op
->shift
)
13835 && ! RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
)
13838 fragp
->fr_subtype
=
13839 RELAX_MIPS16_MARK_LONG_BRANCH (fragp
->fr_subtype
);
13843 else if (symsec
!= absolute_section
&& sec
!= NULL
)
13844 as_bad_where (fragp
->fr_file
, fragp
->fr_line
, _("unsupported relocation"));
13846 if ((val
& ((1 << op
->shift
) - 1)) != 0
13847 || val
< (mintiny
<< op
->shift
)
13848 || val
> (maxtiny
<< op
->shift
))
13854 /* Compute the length of a branch sequence, and adjust the
13855 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
13856 worst-case length is computed, with UPDATE being used to indicate
13857 whether an unconditional (-1), branch-likely (+1) or regular (0)
13858 branch is to be computed. */
13860 relaxed_branch_length (fragS
*fragp
, asection
*sec
, int update
)
13862 bfd_boolean toofar
;
13866 && S_IS_DEFINED (fragp
->fr_symbol
)
13867 && sec
== S_GET_SEGMENT (fragp
->fr_symbol
))
13872 val
= S_GET_VALUE (fragp
->fr_symbol
) + fragp
->fr_offset
;
13874 addr
= fragp
->fr_address
+ fragp
->fr_fix
+ 4;
13878 toofar
= val
< - (0x8000 << 2) || val
>= (0x8000 << 2);
13881 /* If the symbol is not defined or it's in a different segment,
13882 assume the user knows what's going on and emit a short
13888 if (fragp
&& update
&& toofar
!= RELAX_BRANCH_TOOFAR (fragp
->fr_subtype
))
13890 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp
->fr_subtype
),
13891 RELAX_BRANCH_LIKELY (fragp
->fr_subtype
),
13892 RELAX_BRANCH_LINK (fragp
->fr_subtype
),
13898 if (fragp
? RELAX_BRANCH_LIKELY (fragp
->fr_subtype
) : (update
> 0))
13901 if (mips_pic
!= NO_PIC
)
13903 /* Additional space for PIC loading of target address. */
13905 if (mips_opts
.isa
== ISA_MIPS1
)
13906 /* Additional space for $at-stabilizing nop. */
13910 /* If branch is conditional. */
13911 if (fragp
? !RELAX_BRANCH_UNCOND (fragp
->fr_subtype
) : (update
>= 0))
13918 /* Estimate the size of a frag before relaxing. Unless this is the
13919 mips16, we are not really relaxing here, and the final size is
13920 encoded in the subtype information. For the mips16, we have to
13921 decide whether we are using an extended opcode or not. */
13924 md_estimate_size_before_relax (fragS
*fragp
, asection
*segtype
)
13928 if (RELAX_BRANCH_P (fragp
->fr_subtype
))
13931 fragp
->fr_var
= relaxed_branch_length (fragp
, segtype
, FALSE
);
13933 return fragp
->fr_var
;
13936 if (RELAX_MIPS16_P (fragp
->fr_subtype
))
13937 /* We don't want to modify the EXTENDED bit here; it might get us
13938 into infinite loops. We change it only in mips_relax_frag(). */
13939 return (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
) ? 4 : 2);
13941 if (mips_pic
== NO_PIC
)
13942 change
= nopic_need_relax (fragp
->fr_symbol
, 0);
13943 else if (mips_pic
== SVR4_PIC
)
13944 change
= pic_need_relax (fragp
->fr_symbol
, segtype
);
13945 else if (mips_pic
== VXWORKS_PIC
)
13946 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
13953 fragp
->fr_subtype
|= RELAX_USE_SECOND
;
13954 return -RELAX_FIRST (fragp
->fr_subtype
);
13957 return -RELAX_SECOND (fragp
->fr_subtype
);
13960 /* This is called to see whether a reloc against a defined symbol
13961 should be converted into a reloc against a section. */
13964 mips_fix_adjustable (fixS
*fixp
)
13966 if (fixp
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
13967 || fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
13970 if (fixp
->fx_addsy
== NULL
)
13973 /* If symbol SYM is in a mergeable section, relocations of the form
13974 SYM + 0 can usually be made section-relative. The mergeable data
13975 is then identified by the section offset rather than by the symbol.
13977 However, if we're generating REL LO16 relocations, the offset is split
13978 between the LO16 and parterning high part relocation. The linker will
13979 need to recalculate the complete offset in order to correctly identify
13982 The linker has traditionally not looked for the parterning high part
13983 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
13984 placed anywhere. Rather than break backwards compatibility by changing
13985 this, it seems better not to force the issue, and instead keep the
13986 original symbol. This will work with either linker behavior. */
13987 if ((lo16_reloc_p (fixp
->fx_r_type
)
13988 || reloc_needs_lo_p (fixp
->fx_r_type
))
13989 && HAVE_IN_PLACE_ADDENDS
13990 && (S_GET_SEGMENT (fixp
->fx_addsy
)->flags
& SEC_MERGE
) != 0)
13994 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
13995 to a floating-point stub. The same is true for non-R_MIPS16_26
13996 relocations against MIPS16 functions; in this case, the stub becomes
13997 the function's canonical address.
13999 Floating-point stubs are stored in unique .mips16.call.* or
14000 .mips16.fn.* sections. If a stub T for function F is in section S,
14001 the first relocation in section S must be against F; this is how the
14002 linker determines the target function. All relocations that might
14003 resolve to T must also be against F. We therefore have the following
14004 restrictions, which are given in an intentionally-redundant way:
14006 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
14009 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
14010 if that stub might be used.
14012 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
14015 4. We cannot reduce a stub's relocations against MIPS16 symbols if
14016 that stub might be used.
14018 There is a further restriction:
14020 5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols
14021 on targets with in-place addends; the relocation field cannot
14022 encode the low bit.
14024 For simplicity, we deal with (3)-(5) by not reducing _any_ relocation
14025 against a MIPS16 symbol.
14027 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
14028 relocation against some symbol R, no relocation against R may be
14029 reduced. (Note that this deals with (2) as well as (1) because
14030 relocations against global symbols will never be reduced on ELF
14031 targets.) This approach is a little simpler than trying to detect
14032 stub sections, and gives the "all or nothing" per-symbol consistency
14033 that we have for MIPS16 symbols. */
14035 && fixp
->fx_subsy
== NULL
14036 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp
->fx_addsy
))
14037 || *symbol_get_tc (fixp
->fx_addsy
)))
14044 /* Translate internal representation of relocation info to BFD target
14048 tc_gen_reloc (asection
*section ATTRIBUTE_UNUSED
, fixS
*fixp
)
14050 static arelent
*retval
[4];
14052 bfd_reloc_code_real_type code
;
14054 memset (retval
, 0, sizeof(retval
));
14055 reloc
= retval
[0] = (arelent
*) xcalloc (1, sizeof (arelent
));
14056 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
14057 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
14058 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
14060 if (fixp
->fx_pcrel
)
14062 assert (fixp
->fx_r_type
== BFD_RELOC_16_PCREL_S2
);
14064 /* At this point, fx_addnumber is "symbol offset - pcrel address".
14065 Relocations want only the symbol offset. */
14066 reloc
->addend
= fixp
->fx_addnumber
+ reloc
->address
;
14069 /* A gruesome hack which is a result of the gruesome gas
14070 reloc handling. What's worse, for COFF (as opposed to
14071 ECOFF), we might need yet another copy of reloc->address.
14072 See bfd_install_relocation. */
14073 reloc
->addend
+= reloc
->address
;
14077 reloc
->addend
= fixp
->fx_addnumber
;
14079 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
14080 entry to be used in the relocation's section offset. */
14081 if (! HAVE_NEWABI
&& fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
14083 reloc
->address
= reloc
->addend
;
14087 code
= fixp
->fx_r_type
;
14089 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, code
);
14090 if (reloc
->howto
== NULL
)
14092 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
14093 _("Can not represent %s relocation in this object file format"),
14094 bfd_get_reloc_code_name (code
));
14101 /* Relax a machine dependent frag. This returns the amount by which
14102 the current size of the frag should change. */
14105 mips_relax_frag (asection
*sec
, fragS
*fragp
, long stretch
)
14107 if (RELAX_BRANCH_P (fragp
->fr_subtype
))
14109 offsetT old_var
= fragp
->fr_var
;
14111 fragp
->fr_var
= relaxed_branch_length (fragp
, sec
, TRUE
);
14113 return fragp
->fr_var
- old_var
;
14116 if (! RELAX_MIPS16_P (fragp
->fr_subtype
))
14119 if (mips16_extended_frag (fragp
, NULL
, stretch
))
14121 if (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
14123 fragp
->fr_subtype
= RELAX_MIPS16_MARK_EXTENDED (fragp
->fr_subtype
);
14128 if (! RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
14130 fragp
->fr_subtype
= RELAX_MIPS16_CLEAR_EXTENDED (fragp
->fr_subtype
);
14137 /* Convert a machine dependent frag. */
14140 md_convert_frag (bfd
*abfd ATTRIBUTE_UNUSED
, segT asec
, fragS
*fragp
)
14142 if (RELAX_BRANCH_P (fragp
->fr_subtype
))
14145 unsigned long insn
;
14149 buf
= (bfd_byte
*)fragp
->fr_literal
+ fragp
->fr_fix
;
14151 if (target_big_endian
)
14152 insn
= bfd_getb32 (buf
);
14154 insn
= bfd_getl32 (buf
);
14156 if (!RELAX_BRANCH_TOOFAR (fragp
->fr_subtype
))
14158 /* We generate a fixup instead of applying it right now
14159 because, if there are linker relaxations, we're going to
14160 need the relocations. */
14161 exp
.X_op
= O_symbol
;
14162 exp
.X_add_symbol
= fragp
->fr_symbol
;
14163 exp
.X_add_number
= fragp
->fr_offset
;
14165 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
14166 4, &exp
, TRUE
, BFD_RELOC_16_PCREL_S2
);
14167 fixp
->fx_file
= fragp
->fr_file
;
14168 fixp
->fx_line
= fragp
->fr_line
;
14170 md_number_to_chars ((char *) buf
, insn
, 4);
14177 as_warn_where (fragp
->fr_file
, fragp
->fr_line
,
14178 _("relaxed out-of-range branch into a jump"));
14180 if (RELAX_BRANCH_UNCOND (fragp
->fr_subtype
))
14183 if (!RELAX_BRANCH_LIKELY (fragp
->fr_subtype
))
14185 /* Reverse the branch. */
14186 switch ((insn
>> 28) & 0xf)
14189 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
14190 have the condition reversed by tweaking a single
14191 bit, and their opcodes all have 0x4???????. */
14192 assert ((insn
& 0xf1000000) == 0x41000000);
14193 insn
^= 0x00010000;
14197 /* bltz 0x04000000 bgez 0x04010000
14198 bltzal 0x04100000 bgezal 0x04110000 */
14199 assert ((insn
& 0xfc0e0000) == 0x04000000);
14200 insn
^= 0x00010000;
14204 /* beq 0x10000000 bne 0x14000000
14205 blez 0x18000000 bgtz 0x1c000000 */
14206 insn
^= 0x04000000;
14214 if (RELAX_BRANCH_LINK (fragp
->fr_subtype
))
14216 /* Clear the and-link bit. */
14217 assert ((insn
& 0xfc1c0000) == 0x04100000);
14219 /* bltzal 0x04100000 bgezal 0x04110000
14220 bltzall 0x04120000 bgezall 0x04130000 */
14221 insn
&= ~0x00100000;
14224 /* Branch over the branch (if the branch was likely) or the
14225 full jump (not likely case). Compute the offset from the
14226 current instruction to branch to. */
14227 if (RELAX_BRANCH_LIKELY (fragp
->fr_subtype
))
14231 /* How many bytes in instructions we've already emitted? */
14232 i
= buf
- (bfd_byte
*)fragp
->fr_literal
- fragp
->fr_fix
;
14233 /* How many bytes in instructions from here to the end? */
14234 i
= fragp
->fr_var
- i
;
14236 /* Convert to instruction count. */
14238 /* Branch counts from the next instruction. */
14241 /* Branch over the jump. */
14242 md_number_to_chars ((char *) buf
, insn
, 4);
14246 md_number_to_chars ((char *) buf
, 0, 4);
14249 if (RELAX_BRANCH_LIKELY (fragp
->fr_subtype
))
14251 /* beql $0, $0, 2f */
14253 /* Compute the PC offset from the current instruction to
14254 the end of the variable frag. */
14255 /* How many bytes in instructions we've already emitted? */
14256 i
= buf
- (bfd_byte
*)fragp
->fr_literal
- fragp
->fr_fix
;
14257 /* How many bytes in instructions from here to the end? */
14258 i
= fragp
->fr_var
- i
;
14259 /* Convert to instruction count. */
14261 /* Don't decrement i, because we want to branch over the
14265 md_number_to_chars ((char *) buf
, insn
, 4);
14268 md_number_to_chars ((char *) buf
, 0, 4);
14273 if (mips_pic
== NO_PIC
)
14276 insn
= (RELAX_BRANCH_LINK (fragp
->fr_subtype
)
14277 ? 0x0c000000 : 0x08000000);
14278 exp
.X_op
= O_symbol
;
14279 exp
.X_add_symbol
= fragp
->fr_symbol
;
14280 exp
.X_add_number
= fragp
->fr_offset
;
14282 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
14283 4, &exp
, FALSE
, BFD_RELOC_MIPS_JMP
);
14284 fixp
->fx_file
= fragp
->fr_file
;
14285 fixp
->fx_line
= fragp
->fr_line
;
14287 md_number_to_chars ((char *) buf
, insn
, 4);
14292 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
14293 insn
= HAVE_64BIT_ADDRESSES
? 0xdf810000 : 0x8f810000;
14294 exp
.X_op
= O_symbol
;
14295 exp
.X_add_symbol
= fragp
->fr_symbol
;
14296 exp
.X_add_number
= fragp
->fr_offset
;
14298 if (fragp
->fr_offset
)
14300 exp
.X_add_symbol
= make_expr_symbol (&exp
);
14301 exp
.X_add_number
= 0;
14304 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
14305 4, &exp
, FALSE
, BFD_RELOC_MIPS_GOT16
);
14306 fixp
->fx_file
= fragp
->fr_file
;
14307 fixp
->fx_line
= fragp
->fr_line
;
14309 md_number_to_chars ((char *) buf
, insn
, 4);
14312 if (mips_opts
.isa
== ISA_MIPS1
)
14315 md_number_to_chars ((char *) buf
, 0, 4);
14319 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
14320 insn
= HAVE_64BIT_ADDRESSES
? 0x64210000 : 0x24210000;
14322 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
14323 4, &exp
, FALSE
, BFD_RELOC_LO16
);
14324 fixp
->fx_file
= fragp
->fr_file
;
14325 fixp
->fx_line
= fragp
->fr_line
;
14327 md_number_to_chars ((char *) buf
, insn
, 4);
14331 if (RELAX_BRANCH_LINK (fragp
->fr_subtype
))
14336 md_number_to_chars ((char *) buf
, insn
, 4);
14341 assert (buf
== (bfd_byte
*)fragp
->fr_literal
14342 + fragp
->fr_fix
+ fragp
->fr_var
);
14344 fragp
->fr_fix
+= fragp
->fr_var
;
14349 if (RELAX_MIPS16_P (fragp
->fr_subtype
))
14352 const struct mips16_immed_operand
*op
;
14353 bfd_boolean small
, ext
;
14356 unsigned long insn
;
14357 bfd_boolean use_extend
;
14358 unsigned short extend
;
14360 type
= RELAX_MIPS16_TYPE (fragp
->fr_subtype
);
14361 op
= mips16_immed_operands
;
14362 while (op
->type
!= type
)
14365 if (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
14376 resolve_symbol_value (fragp
->fr_symbol
);
14377 val
= S_GET_VALUE (fragp
->fr_symbol
);
14382 addr
= fragp
->fr_address
+ fragp
->fr_fix
;
14384 /* The rules for the base address of a PC relative reloc are
14385 complicated; see mips16_extended_frag. */
14386 if (type
== 'p' || type
== 'q')
14391 /* Ignore the low bit in the target, since it will be
14392 set for a text label. */
14393 if ((val
& 1) != 0)
14396 else if (RELAX_MIPS16_JAL_DSLOT (fragp
->fr_subtype
))
14398 else if (RELAX_MIPS16_DSLOT (fragp
->fr_subtype
))
14401 addr
&= ~ (addressT
) ((1 << op
->shift
) - 1);
14404 /* Make sure the section winds up with the alignment we have
14407 record_alignment (asec
, op
->shift
);
14411 && (RELAX_MIPS16_JAL_DSLOT (fragp
->fr_subtype
)
14412 || RELAX_MIPS16_DSLOT (fragp
->fr_subtype
)))
14413 as_warn_where (fragp
->fr_file
, fragp
->fr_line
,
14414 _("extended instruction in delay slot"));
14416 buf
= (bfd_byte
*) (fragp
->fr_literal
+ fragp
->fr_fix
);
14418 if (target_big_endian
)
14419 insn
= bfd_getb16 (buf
);
14421 insn
= bfd_getl16 (buf
);
14423 mips16_immed (fragp
->fr_file
, fragp
->fr_line
, type
, val
,
14424 RELAX_MIPS16_USER_EXT (fragp
->fr_subtype
),
14425 small
, ext
, &insn
, &use_extend
, &extend
);
14429 md_number_to_chars ((char *) buf
, 0xf000 | extend
, 2);
14430 fragp
->fr_fix
+= 2;
14434 md_number_to_chars ((char *) buf
, insn
, 2);
14435 fragp
->fr_fix
+= 2;
14443 first
= RELAX_FIRST (fragp
->fr_subtype
);
14444 second
= RELAX_SECOND (fragp
->fr_subtype
);
14445 fixp
= (fixS
*) fragp
->fr_opcode
;
14447 /* Possibly emit a warning if we've chosen the longer option. */
14448 if (((fragp
->fr_subtype
& RELAX_USE_SECOND
) != 0)
14449 == ((fragp
->fr_subtype
& RELAX_SECOND_LONGER
) != 0))
14451 const char *msg
= macro_warning (fragp
->fr_subtype
);
14453 as_warn_where (fragp
->fr_file
, fragp
->fr_line
, msg
);
14456 /* Go through all the fixups for the first sequence. Disable them
14457 (by marking them as done) if we're going to use the second
14458 sequence instead. */
14460 && fixp
->fx_frag
== fragp
14461 && fixp
->fx_where
< fragp
->fr_fix
- second
)
14463 if (fragp
->fr_subtype
& RELAX_USE_SECOND
)
14465 fixp
= fixp
->fx_next
;
14468 /* Go through the fixups for the second sequence. Disable them if
14469 we're going to use the first sequence, otherwise adjust their
14470 addresses to account for the relaxation. */
14471 while (fixp
&& fixp
->fx_frag
== fragp
)
14473 if (fragp
->fr_subtype
& RELAX_USE_SECOND
)
14474 fixp
->fx_where
-= first
;
14477 fixp
= fixp
->fx_next
;
14480 /* Now modify the frag contents. */
14481 if (fragp
->fr_subtype
& RELAX_USE_SECOND
)
14485 start
= fragp
->fr_literal
+ fragp
->fr_fix
- first
- second
;
14486 memmove (start
, start
+ first
, second
);
14487 fragp
->fr_fix
-= first
;
14490 fragp
->fr_fix
-= second
;
14496 /* This function is called after the relocs have been generated.
14497 We've been storing mips16 text labels as odd. Here we convert them
14498 back to even for the convenience of the debugger. */
14501 mips_frob_file_after_relocs (void)
14504 unsigned int count
, i
;
14509 syms
= bfd_get_outsymbols (stdoutput
);
14510 count
= bfd_get_symcount (stdoutput
);
14511 for (i
= 0; i
< count
; i
++, syms
++)
14513 if (ELF_ST_IS_MIPS16 (elf_symbol (*syms
)->internal_elf_sym
.st_other
)
14514 && ((*syms
)->value
& 1) != 0)
14516 (*syms
)->value
&= ~1;
14517 /* If the symbol has an odd size, it was probably computed
14518 incorrectly, so adjust that as well. */
14519 if ((elf_symbol (*syms
)->internal_elf_sym
.st_size
& 1) != 0)
14520 ++elf_symbol (*syms
)->internal_elf_sym
.st_size
;
14527 /* This function is called whenever a label is defined. It is used
14528 when handling branch delays; if a branch has a label, we assume we
14529 can not move it. */
14532 mips_define_label (symbolS
*sym
)
14534 segment_info_type
*si
= seg_info (now_seg
);
14535 struct insn_label_list
*l
;
14537 if (free_insn_labels
== NULL
)
14538 l
= (struct insn_label_list
*) xmalloc (sizeof *l
);
14541 l
= free_insn_labels
;
14542 free_insn_labels
= l
->next
;
14546 l
->next
= si
->label_list
;
14547 si
->label_list
= l
;
14550 dwarf2_emit_label (sym
);
14554 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
14556 /* Some special processing for a MIPS ELF file. */
14559 mips_elf_final_processing (void)
14561 /* Write out the register information. */
14562 if (mips_abi
!= N64_ABI
)
14566 s
.ri_gprmask
= mips_gprmask
;
14567 s
.ri_cprmask
[0] = mips_cprmask
[0];
14568 s
.ri_cprmask
[1] = mips_cprmask
[1];
14569 s
.ri_cprmask
[2] = mips_cprmask
[2];
14570 s
.ri_cprmask
[3] = mips_cprmask
[3];
14571 /* The gp_value field is set by the MIPS ELF backend. */
14573 bfd_mips_elf32_swap_reginfo_out (stdoutput
, &s
,
14574 ((Elf32_External_RegInfo
*)
14575 mips_regmask_frag
));
14579 Elf64_Internal_RegInfo s
;
14581 s
.ri_gprmask
= mips_gprmask
;
14583 s
.ri_cprmask
[0] = mips_cprmask
[0];
14584 s
.ri_cprmask
[1] = mips_cprmask
[1];
14585 s
.ri_cprmask
[2] = mips_cprmask
[2];
14586 s
.ri_cprmask
[3] = mips_cprmask
[3];
14587 /* The gp_value field is set by the MIPS ELF backend. */
14589 bfd_mips_elf64_swap_reginfo_out (stdoutput
, &s
,
14590 ((Elf64_External_RegInfo
*)
14591 mips_regmask_frag
));
14594 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
14595 sort of BFD interface for this. */
14596 if (mips_any_noreorder
)
14597 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_NOREORDER
;
14598 if (mips_pic
!= NO_PIC
)
14600 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_PIC
;
14601 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_CPIC
;
14604 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_CPIC
;
14606 /* Set MIPS ELF flags for ASEs. */
14607 /* We may need to define a new flag for DSP ASE, and set this flag when
14608 file_ase_dsp is true. */
14609 /* Same for DSP R2. */
14610 /* We may need to define a new flag for MT ASE, and set this flag when
14611 file_ase_mt is true. */
14612 if (file_ase_mips16
)
14613 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_ARCH_ASE_M16
;
14614 #if 0 /* XXX FIXME */
14615 if (file_ase_mips3d
)
14616 elf_elfheader (stdoutput
)->e_flags
|= ???;
14619 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_ARCH_ASE_MDMX
;
14621 /* Set the MIPS ELF ABI flags. */
14622 if (mips_abi
== O32_ABI
&& USE_E_MIPS_ABI_O32
)
14623 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_O32
;
14624 else if (mips_abi
== O64_ABI
)
14625 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_O64
;
14626 else if (mips_abi
== EABI_ABI
)
14628 if (!file_mips_gp32
)
14629 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_EABI64
;
14631 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_EABI32
;
14633 else if (mips_abi
== N32_ABI
)
14634 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_ABI2
;
14636 /* Nothing to do for N64_ABI. */
14638 if (mips_32bitmode
)
14639 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_32BITMODE
;
14641 #if 0 /* XXX FIXME */
14642 /* 32 bit code with 64 bit FP registers. */
14643 if (!file_mips_fp32
&& ABI_NEEDS_32BIT_REGS (mips_abi
))
14644 elf_elfheader (stdoutput
)->e_flags
|= ???;
14648 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
14650 typedef struct proc
{
14652 symbolS
*func_end_sym
;
14653 unsigned long reg_mask
;
14654 unsigned long reg_offset
;
14655 unsigned long fpreg_mask
;
14656 unsigned long fpreg_offset
;
14657 unsigned long frame_offset
;
14658 unsigned long frame_reg
;
14659 unsigned long pc_reg
;
14662 static procS cur_proc
;
14663 static procS
*cur_proc_ptr
;
14664 static int numprocs
;
14666 /* Implement NOP_OPCODE. We encode a MIPS16 nop as "1" and a normal
14670 mips_nop_opcode (void)
14672 return seg_info (now_seg
)->tc_segment_info_data
.mips16
;
14675 /* Fill in an rs_align_code fragment. This only needs to do something
14676 for MIPS16 code, where 0 is not a nop. */
14679 mips_handle_align (fragS
*fragp
)
14683 if (fragp
->fr_type
!= rs_align_code
)
14686 p
= fragp
->fr_literal
+ fragp
->fr_fix
;
14691 bytes
= fragp
->fr_next
->fr_address
- fragp
->fr_address
- fragp
->fr_fix
;
14697 md_number_to_chars (p
, mips16_nop_insn
.insn_opcode
, 2);
14703 md_obj_begin (void)
14710 /* Check for premature end, nesting errors, etc. */
14712 as_warn (_("missing .end at end of assembly"));
14721 if (*input_line_pointer
== '-')
14723 ++input_line_pointer
;
14726 if (!ISDIGIT (*input_line_pointer
))
14727 as_bad (_("expected simple number"));
14728 if (input_line_pointer
[0] == '0')
14730 if (input_line_pointer
[1] == 'x')
14732 input_line_pointer
+= 2;
14733 while (ISXDIGIT (*input_line_pointer
))
14736 val
|= hex_value (*input_line_pointer
++);
14738 return negative
? -val
: val
;
14742 ++input_line_pointer
;
14743 while (ISDIGIT (*input_line_pointer
))
14746 val
|= *input_line_pointer
++ - '0';
14748 return negative
? -val
: val
;
14751 if (!ISDIGIT (*input_line_pointer
))
14753 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
14754 *input_line_pointer
, *input_line_pointer
);
14755 as_warn (_("invalid number"));
14758 while (ISDIGIT (*input_line_pointer
))
14761 val
+= *input_line_pointer
++ - '0';
14763 return negative
? -val
: val
;
14766 /* The .file directive; just like the usual .file directive, but there
14767 is an initial number which is the ECOFF file index. In the non-ECOFF
14768 case .file implies DWARF-2. */
14771 s_mips_file (int x ATTRIBUTE_UNUSED
)
14773 static int first_file_directive
= 0;
14775 if (ECOFF_DEBUGGING
)
14784 filename
= dwarf2_directive_file (0);
14786 /* Versions of GCC up to 3.1 start files with a ".file"
14787 directive even for stabs output. Make sure that this
14788 ".file" is handled. Note that you need a version of GCC
14789 after 3.1 in order to support DWARF-2 on MIPS. */
14790 if (filename
!= NULL
&& ! first_file_directive
)
14792 (void) new_logical_line (filename
, -1);
14793 s_app_file_string (filename
, 0);
14795 first_file_directive
= 1;
14799 /* The .loc directive, implying DWARF-2. */
14802 s_mips_loc (int x ATTRIBUTE_UNUSED
)
14804 if (!ECOFF_DEBUGGING
)
14805 dwarf2_directive_loc (0);
14808 /* The .end directive. */
14811 s_mips_end (int x ATTRIBUTE_UNUSED
)
14815 /* Following functions need their own .frame and .cprestore directives. */
14816 mips_frame_reg_valid
= 0;
14817 mips_cprestore_valid
= 0;
14819 if (!is_end_of_line
[(unsigned char) *input_line_pointer
])
14822 demand_empty_rest_of_line ();
14827 if ((bfd_get_section_flags (stdoutput
, now_seg
) & SEC_CODE
) == 0)
14828 as_warn (_(".end not in text section"));
14832 as_warn (_(".end directive without a preceding .ent directive."));
14833 demand_empty_rest_of_line ();
14839 assert (S_GET_NAME (p
));
14840 if (strcmp (S_GET_NAME (p
), S_GET_NAME (cur_proc_ptr
->func_sym
)))
14841 as_warn (_(".end symbol does not match .ent symbol."));
14843 if (debug_type
== DEBUG_STABS
)
14844 stabs_generate_asm_endfunc (S_GET_NAME (p
),
14848 as_warn (_(".end directive missing or unknown symbol"));
14851 /* Create an expression to calculate the size of the function. */
14852 if (p
&& cur_proc_ptr
)
14854 OBJ_SYMFIELD_TYPE
*obj
= symbol_get_obj (p
);
14855 expressionS
*exp
= xmalloc (sizeof (expressionS
));
14858 exp
->X_op
= O_subtract
;
14859 exp
->X_add_symbol
= symbol_temp_new_now ();
14860 exp
->X_op_symbol
= p
;
14861 exp
->X_add_number
= 0;
14863 cur_proc_ptr
->func_end_sym
= exp
->X_add_symbol
;
14866 /* Generate a .pdr section. */
14867 if (IS_ELF
&& !ECOFF_DEBUGGING
&& mips_flag_pdr
)
14869 segT saved_seg
= now_seg
;
14870 subsegT saved_subseg
= now_subseg
;
14875 dot
= frag_now_fix ();
14877 #ifdef md_flush_pending_output
14878 md_flush_pending_output ();
14882 subseg_set (pdr_seg
, 0);
14884 /* Write the symbol. */
14885 exp
.X_op
= O_symbol
;
14886 exp
.X_add_symbol
= p
;
14887 exp
.X_add_number
= 0;
14888 emit_expr (&exp
, 4);
14890 fragp
= frag_more (7 * 4);
14892 md_number_to_chars (fragp
, cur_proc_ptr
->reg_mask
, 4);
14893 md_number_to_chars (fragp
+ 4, cur_proc_ptr
->reg_offset
, 4);
14894 md_number_to_chars (fragp
+ 8, cur_proc_ptr
->fpreg_mask
, 4);
14895 md_number_to_chars (fragp
+ 12, cur_proc_ptr
->fpreg_offset
, 4);
14896 md_number_to_chars (fragp
+ 16, cur_proc_ptr
->frame_offset
, 4);
14897 md_number_to_chars (fragp
+ 20, cur_proc_ptr
->frame_reg
, 4);
14898 md_number_to_chars (fragp
+ 24, cur_proc_ptr
->pc_reg
, 4);
14900 subseg_set (saved_seg
, saved_subseg
);
14902 #endif /* OBJ_ELF */
14904 cur_proc_ptr
= NULL
;
14907 /* The .aent and .ent directives. */
14910 s_mips_ent (int aent
)
14914 symbolP
= get_symbol ();
14915 if (*input_line_pointer
== ',')
14916 ++input_line_pointer
;
14917 SKIP_WHITESPACE ();
14918 if (ISDIGIT (*input_line_pointer
)
14919 || *input_line_pointer
== '-')
14922 if ((bfd_get_section_flags (stdoutput
, now_seg
) & SEC_CODE
) == 0)
14923 as_warn (_(".ent or .aent not in text section."));
14925 if (!aent
&& cur_proc_ptr
)
14926 as_warn (_("missing .end"));
14930 /* This function needs its own .frame and .cprestore directives. */
14931 mips_frame_reg_valid
= 0;
14932 mips_cprestore_valid
= 0;
14934 cur_proc_ptr
= &cur_proc
;
14935 memset (cur_proc_ptr
, '\0', sizeof (procS
));
14937 cur_proc_ptr
->func_sym
= symbolP
;
14939 symbol_get_bfdsym (symbolP
)->flags
|= BSF_FUNCTION
;
14943 if (debug_type
== DEBUG_STABS
)
14944 stabs_generate_asm_func (S_GET_NAME (symbolP
),
14945 S_GET_NAME (symbolP
));
14948 demand_empty_rest_of_line ();
14951 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
14952 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
14953 s_mips_frame is used so that we can set the PDR information correctly.
14954 We can't use the ecoff routines because they make reference to the ecoff
14955 symbol table (in the mdebug section). */
14958 s_mips_frame (int ignore ATTRIBUTE_UNUSED
)
14961 if (IS_ELF
&& !ECOFF_DEBUGGING
)
14965 if (cur_proc_ptr
== (procS
*) NULL
)
14967 as_warn (_(".frame outside of .ent"));
14968 demand_empty_rest_of_line ();
14972 cur_proc_ptr
->frame_reg
= tc_get_register (1);
14974 SKIP_WHITESPACE ();
14975 if (*input_line_pointer
++ != ','
14976 || get_absolute_expression_and_terminator (&val
) != ',')
14978 as_warn (_("Bad .frame directive"));
14979 --input_line_pointer
;
14980 demand_empty_rest_of_line ();
14984 cur_proc_ptr
->frame_offset
= val
;
14985 cur_proc_ptr
->pc_reg
= tc_get_register (0);
14987 demand_empty_rest_of_line ();
14990 #endif /* OBJ_ELF */
14994 /* The .fmask and .mask directives. If the mdebug section is present
14995 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
14996 embedded targets, s_mips_mask is used so that we can set the PDR
14997 information correctly. We can't use the ecoff routines because they
14998 make reference to the ecoff symbol table (in the mdebug section). */
15001 s_mips_mask (int reg_type
)
15004 if (IS_ELF
&& !ECOFF_DEBUGGING
)
15008 if (cur_proc_ptr
== (procS
*) NULL
)
15010 as_warn (_(".mask/.fmask outside of .ent"));
15011 demand_empty_rest_of_line ();
15015 if (get_absolute_expression_and_terminator (&mask
) != ',')
15017 as_warn (_("Bad .mask/.fmask directive"));
15018 --input_line_pointer
;
15019 demand_empty_rest_of_line ();
15023 off
= get_absolute_expression ();
15025 if (reg_type
== 'F')
15027 cur_proc_ptr
->fpreg_mask
= mask
;
15028 cur_proc_ptr
->fpreg_offset
= off
;
15032 cur_proc_ptr
->reg_mask
= mask
;
15033 cur_proc_ptr
->reg_offset
= off
;
15036 demand_empty_rest_of_line ();
15039 #endif /* OBJ_ELF */
15040 s_ignore (reg_type
);
15043 /* A table describing all the processors gas knows about. Names are
15044 matched in the order listed.
15046 To ease comparison, please keep this table in the same order as
15047 gcc's mips_cpu_info_table[]. */
15048 static const struct mips_cpu_info mips_cpu_info_table
[] =
15050 /* Entries for generic ISAs */
15051 { "mips1", MIPS_CPU_IS_ISA
, ISA_MIPS1
, CPU_R3000
},
15052 { "mips2", MIPS_CPU_IS_ISA
, ISA_MIPS2
, CPU_R6000
},
15053 { "mips3", MIPS_CPU_IS_ISA
, ISA_MIPS3
, CPU_R4000
},
15054 { "mips4", MIPS_CPU_IS_ISA
, ISA_MIPS4
, CPU_R8000
},
15055 { "mips5", MIPS_CPU_IS_ISA
, ISA_MIPS5
, CPU_MIPS5
},
15056 { "mips32", MIPS_CPU_IS_ISA
, ISA_MIPS32
, CPU_MIPS32
},
15057 { "mips32r2", MIPS_CPU_IS_ISA
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15058 { "mips64", MIPS_CPU_IS_ISA
, ISA_MIPS64
, CPU_MIPS64
},
15059 { "mips64r2", MIPS_CPU_IS_ISA
, ISA_MIPS64R2
, CPU_MIPS64R2
},
15062 { "r3000", 0, ISA_MIPS1
, CPU_R3000
},
15063 { "r2000", 0, ISA_MIPS1
, CPU_R3000
},
15064 { "r3900", 0, ISA_MIPS1
, CPU_R3900
},
15067 { "r6000", 0, ISA_MIPS2
, CPU_R6000
},
15070 { "r4000", 0, ISA_MIPS3
, CPU_R4000
},
15071 { "r4010", 0, ISA_MIPS2
, CPU_R4010
},
15072 { "vr4100", 0, ISA_MIPS3
, CPU_VR4100
},
15073 { "vr4111", 0, ISA_MIPS3
, CPU_R4111
},
15074 { "vr4120", 0, ISA_MIPS3
, CPU_VR4120
},
15075 { "vr4130", 0, ISA_MIPS3
, CPU_VR4120
},
15076 { "vr4181", 0, ISA_MIPS3
, CPU_R4111
},
15077 { "vr4300", 0, ISA_MIPS3
, CPU_R4300
},
15078 { "r4400", 0, ISA_MIPS3
, CPU_R4400
},
15079 { "r4600", 0, ISA_MIPS3
, CPU_R4600
},
15080 { "orion", 0, ISA_MIPS3
, CPU_R4600
},
15081 { "r4650", 0, ISA_MIPS3
, CPU_R4650
},
15082 /* ST Microelectronics Loongson 2E and 2F cores */
15083 { "loongson2e", 0, ISA_MIPS3
, CPU_LOONGSON_2E
},
15084 { "loongson2f", 0, ISA_MIPS3
, CPU_LOONGSON_2F
},
15087 { "r8000", 0, ISA_MIPS4
, CPU_R8000
},
15088 { "r10000", 0, ISA_MIPS4
, CPU_R10000
},
15089 { "r12000", 0, ISA_MIPS4
, CPU_R12000
},
15090 { "vr5000", 0, ISA_MIPS4
, CPU_R5000
},
15091 { "vr5400", 0, ISA_MIPS4
, CPU_VR5400
},
15092 { "vr5500", 0, ISA_MIPS4
, CPU_VR5500
},
15093 { "rm5200", 0, ISA_MIPS4
, CPU_R5000
},
15094 { "rm5230", 0, ISA_MIPS4
, CPU_R5000
},
15095 { "rm5231", 0, ISA_MIPS4
, CPU_R5000
},
15096 { "rm5261", 0, ISA_MIPS4
, CPU_R5000
},
15097 { "rm5721", 0, ISA_MIPS4
, CPU_R5000
},
15098 { "rm7000", 0, ISA_MIPS4
, CPU_RM7000
},
15099 { "rm9000", 0, ISA_MIPS4
, CPU_RM9000
},
15102 { "4kc", 0, ISA_MIPS32
, CPU_MIPS32
},
15103 { "4km", 0, ISA_MIPS32
, CPU_MIPS32
},
15104 { "4kp", 0, ISA_MIPS32
, CPU_MIPS32
},
15105 { "4ksc", MIPS_CPU_ASE_SMARTMIPS
, ISA_MIPS32
, CPU_MIPS32
},
15107 /* MIPS 32 Release 2 */
15108 { "4kec", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15109 { "4kem", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15110 { "4kep", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15111 { "4ksd", MIPS_CPU_ASE_SMARTMIPS
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15112 { "m4k", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15113 { "m4kp", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15114 { "24kc", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15115 { "24kf2_1", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15116 { "24kf", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15117 { "24kf1_1", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15118 /* Deprecated forms of the above. */
15119 { "24kfx", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15120 { "24kx", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15121 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
15122 { "24kec", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15123 { "24kef2_1", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15124 { "24kef", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15125 { "24kef1_1", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15126 /* Deprecated forms of the above. */
15127 { "24kefx", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15128 { "24kex", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15129 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
15130 { "34kc", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15131 ISA_MIPS32R2
, CPU_MIPS32R2
},
15132 { "34kf2_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15133 ISA_MIPS32R2
, CPU_MIPS32R2
},
15134 { "34kf", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15135 ISA_MIPS32R2
, CPU_MIPS32R2
},
15136 { "34kf1_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15137 ISA_MIPS32R2
, CPU_MIPS32R2
},
15138 /* Deprecated forms of the above. */
15139 { "34kfx", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15140 ISA_MIPS32R2
, CPU_MIPS32R2
},
15141 { "34kx", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15142 ISA_MIPS32R2
, CPU_MIPS32R2
},
15143 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
15144 { "74kc", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15145 ISA_MIPS32R2
, CPU_MIPS32R2
},
15146 { "74kf2_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15147 ISA_MIPS32R2
, CPU_MIPS32R2
},
15148 { "74kf", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15149 ISA_MIPS32R2
, CPU_MIPS32R2
},
15150 { "74kf1_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15151 ISA_MIPS32R2
, CPU_MIPS32R2
},
15152 { "74kf3_2", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15153 ISA_MIPS32R2
, CPU_MIPS32R2
},
15154 /* Deprecated forms of the above. */
15155 { "74kfx", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15156 ISA_MIPS32R2
, CPU_MIPS32R2
},
15157 { "74kx", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15158 ISA_MIPS32R2
, CPU_MIPS32R2
},
15161 { "5kc", 0, ISA_MIPS64
, CPU_MIPS64
},
15162 { "5kf", 0, ISA_MIPS64
, CPU_MIPS64
},
15163 { "20kc", MIPS_CPU_ASE_MIPS3D
, ISA_MIPS64
, CPU_MIPS64
},
15164 { "25kf", MIPS_CPU_ASE_MIPS3D
, ISA_MIPS64
, CPU_MIPS64
},
15166 /* MIPS 64 Release 2 */
15168 /* Broadcom SB-1 CPU core */
15169 { "sb1", MIPS_CPU_ASE_MIPS3D
| MIPS_CPU_ASE_MDMX
,
15170 ISA_MIPS64
, CPU_SB1
},
15171 /* Broadcom SB-1A CPU core */
15172 { "sb1a", MIPS_CPU_ASE_MIPS3D
| MIPS_CPU_ASE_MDMX
,
15173 ISA_MIPS64
, CPU_SB1
},
15175 /* Cavium Networks Octeon CPU core */
15176 { "octeon", 0, ISA_MIPS64R2
, CPU_OCTEON
},
15183 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
15184 with a final "000" replaced by "k". Ignore case.
15186 Note: this function is shared between GCC and GAS. */
15189 mips_strict_matching_cpu_name_p (const char *canonical
, const char *given
)
15191 while (*given
!= 0 && TOLOWER (*given
) == TOLOWER (*canonical
))
15192 given
++, canonical
++;
15194 return ((*given
== 0 && *canonical
== 0)
15195 || (strcmp (canonical
, "000") == 0 && strcasecmp (given
, "k") == 0));
15199 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
15200 CPU name. We've traditionally allowed a lot of variation here.
15202 Note: this function is shared between GCC and GAS. */
15205 mips_matching_cpu_name_p (const char *canonical
, const char *given
)
15207 /* First see if the name matches exactly, or with a final "000"
15208 turned into "k". */
15209 if (mips_strict_matching_cpu_name_p (canonical
, given
))
15212 /* If not, try comparing based on numerical designation alone.
15213 See if GIVEN is an unadorned number, or 'r' followed by a number. */
15214 if (TOLOWER (*given
) == 'r')
15216 if (!ISDIGIT (*given
))
15219 /* Skip over some well-known prefixes in the canonical name,
15220 hoping to find a number there too. */
15221 if (TOLOWER (canonical
[0]) == 'v' && TOLOWER (canonical
[1]) == 'r')
15223 else if (TOLOWER (canonical
[0]) == 'r' && TOLOWER (canonical
[1]) == 'm')
15225 else if (TOLOWER (canonical
[0]) == 'r')
15228 return mips_strict_matching_cpu_name_p (canonical
, given
);
15232 /* Parse an option that takes the name of a processor as its argument.
15233 OPTION is the name of the option and CPU_STRING is the argument.
15234 Return the corresponding processor enumeration if the CPU_STRING is
15235 recognized, otherwise report an error and return null.
15237 A similar function exists in GCC. */
15239 static const struct mips_cpu_info
*
15240 mips_parse_cpu (const char *option
, const char *cpu_string
)
15242 const struct mips_cpu_info
*p
;
15244 /* 'from-abi' selects the most compatible architecture for the given
15245 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
15246 EABIs, we have to decide whether we're using the 32-bit or 64-bit
15247 version. Look first at the -mgp options, if given, otherwise base
15248 the choice on MIPS_DEFAULT_64BIT.
15250 Treat NO_ABI like the EABIs. One reason to do this is that the
15251 plain 'mips' and 'mips64' configs have 'from-abi' as their default
15252 architecture. This code picks MIPS I for 'mips' and MIPS III for
15253 'mips64', just as we did in the days before 'from-abi'. */
15254 if (strcasecmp (cpu_string
, "from-abi") == 0)
15256 if (ABI_NEEDS_32BIT_REGS (mips_abi
))
15257 return mips_cpu_info_from_isa (ISA_MIPS1
);
15259 if (ABI_NEEDS_64BIT_REGS (mips_abi
))
15260 return mips_cpu_info_from_isa (ISA_MIPS3
);
15262 if (file_mips_gp32
>= 0)
15263 return mips_cpu_info_from_isa (file_mips_gp32
? ISA_MIPS1
: ISA_MIPS3
);
15265 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
15270 /* 'default' has traditionally been a no-op. Probably not very useful. */
15271 if (strcasecmp (cpu_string
, "default") == 0)
15274 for (p
= mips_cpu_info_table
; p
->name
!= 0; p
++)
15275 if (mips_matching_cpu_name_p (p
->name
, cpu_string
))
15278 as_bad ("Bad value (%s) for %s", cpu_string
, option
);
15282 /* Return the canonical processor information for ISA (a member of the
15283 ISA_MIPS* enumeration). */
15285 static const struct mips_cpu_info
*
15286 mips_cpu_info_from_isa (int isa
)
15290 for (i
= 0; mips_cpu_info_table
[i
].name
!= NULL
; i
++)
15291 if ((mips_cpu_info_table
[i
].flags
& MIPS_CPU_IS_ISA
)
15292 && isa
== mips_cpu_info_table
[i
].isa
)
15293 return (&mips_cpu_info_table
[i
]);
15298 static const struct mips_cpu_info
*
15299 mips_cpu_info_from_arch (int arch
)
15303 for (i
= 0; mips_cpu_info_table
[i
].name
!= NULL
; i
++)
15304 if (arch
== mips_cpu_info_table
[i
].cpu
)
15305 return (&mips_cpu_info_table
[i
]);
15311 show (FILE *stream
, const char *string
, int *col_p
, int *first_p
)
15315 fprintf (stream
, "%24s", "");
15320 fprintf (stream
, ", ");
15324 if (*col_p
+ strlen (string
) > 72)
15326 fprintf (stream
, "\n%24s", "");
15330 fprintf (stream
, "%s", string
);
15331 *col_p
+= strlen (string
);
15337 md_show_usage (FILE *stream
)
15342 fprintf (stream
, _("\
15344 -EB generate big endian output\n\
15345 -EL generate little endian output\n\
15346 -g, -g2 do not remove unneeded NOPs or swap branches\n\
15347 -G NUM allow referencing objects up to NUM bytes\n\
15348 implicitly with the gp register [default 8]\n"));
15349 fprintf (stream
, _("\
15350 -mips1 generate MIPS ISA I instructions\n\
15351 -mips2 generate MIPS ISA II instructions\n\
15352 -mips3 generate MIPS ISA III instructions\n\
15353 -mips4 generate MIPS ISA IV instructions\n\
15354 -mips5 generate MIPS ISA V instructions\n\
15355 -mips32 generate MIPS32 ISA instructions\n\
15356 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
15357 -mips64 generate MIPS64 ISA instructions\n\
15358 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
15359 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
15363 for (i
= 0; mips_cpu_info_table
[i
].name
!= NULL
; i
++)
15364 show (stream
, mips_cpu_info_table
[i
].name
, &column
, &first
);
15365 show (stream
, "from-abi", &column
, &first
);
15366 fputc ('\n', stream
);
15368 fprintf (stream
, _("\
15369 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
15370 -no-mCPU don't generate code specific to CPU.\n\
15371 For -mCPU and -no-mCPU, CPU must be one of:\n"));
15375 show (stream
, "3900", &column
, &first
);
15376 show (stream
, "4010", &column
, &first
);
15377 show (stream
, "4100", &column
, &first
);
15378 show (stream
, "4650", &column
, &first
);
15379 fputc ('\n', stream
);
15381 fprintf (stream
, _("\
15382 -mips16 generate mips16 instructions\n\
15383 -no-mips16 do not generate mips16 instructions\n"));
15384 fprintf (stream
, _("\
15385 -msmartmips generate smartmips instructions\n\
15386 -mno-smartmips do not generate smartmips instructions\n"));
15387 fprintf (stream
, _("\
15388 -mdsp generate DSP instructions\n\
15389 -mno-dsp do not generate DSP instructions\n"));
15390 fprintf (stream
, _("\
15391 -mdspr2 generate DSP R2 instructions\n\
15392 -mno-dspr2 do not generate DSP R2 instructions\n"));
15393 fprintf (stream
, _("\
15394 -mmt generate MT instructions\n\
15395 -mno-mt do not generate MT instructions\n"));
15396 fprintf (stream
, _("\
15397 -mfix-vr4120 work around certain VR4120 errata\n\
15398 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
15399 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
15400 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
15401 -msym32 assume all symbols have 32-bit values\n\
15402 -O0 remove unneeded NOPs, do not swap branches\n\
15403 -O remove unneeded NOPs and swap branches\n\
15404 --trap, --no-break trap exception on div by 0 and mult overflow\n\
15405 --break, --no-trap break exception on div by 0 and mult overflow\n"));
15406 fprintf (stream
, _("\
15407 -mhard-float allow floating-point instructions\n\
15408 -msoft-float do not allow floating-point instructions\n\
15409 -msingle-float only allow 32-bit floating-point operations\n\
15410 -mdouble-float allow 32-bit and 64-bit floating-point operations\n\
15411 --[no-]construct-floats [dis]allow floating point values to be constructed\n"
15414 fprintf (stream
, _("\
15415 -KPIC, -call_shared generate SVR4 position independent code\n\
15416 -call_nonpic generate non-PIC code that can operate with DSOs\n\
15417 -mvxworks-pic generate VxWorks position independent code\n\
15418 -non_shared do not generate code that can operate with DSOs\n\
15419 -xgot assume a 32 bit GOT\n\
15420 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
15421 -mshared, -mno-shared disable/enable .cpload optimization for\n\
15422 position dependent (non shared) code\n\
15423 -mabi=ABI create ABI conformant object file for:\n"));
15427 show (stream
, "32", &column
, &first
);
15428 show (stream
, "o64", &column
, &first
);
15429 show (stream
, "n32", &column
, &first
);
15430 show (stream
, "64", &column
, &first
);
15431 show (stream
, "eabi", &column
, &first
);
15433 fputc ('\n', stream
);
15435 fprintf (stream
, _("\
15436 -32 create o32 ABI object file (default)\n\
15437 -n32 create n32 ABI object file\n\
15438 -64 create 64 ABI object file\n"));
15443 mips_dwarf2_format (asection
*sec ATTRIBUTE_UNUSED
)
15445 if (HAVE_64BIT_SYMBOLS
)
15448 return dwarf2_format_64bit_irix
;
15450 return dwarf2_format_64bit
;
15454 return dwarf2_format_32bit
;
15458 mips_dwarf2_addr_size (void)
15460 if (HAVE_64BIT_SYMBOLS
)
15466 /* Standard calling conventions leave the CFA at SP on entry. */
15468 mips_cfi_frame_initial_instructions (void)
15470 cfi_add_CFA_def_cfa_register (SP
);
15474 tc_mips_regname_to_dw2regnum (char *regname
)
15476 unsigned int regnum
= -1;
15479 if (reg_lookup (®name
, RTYPE_GP
| RTYPE_NUM
, ®
))