1 /* tc-mips.c -- assemble code for a MIPS chip.
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
5 Contributed by the OSF and Ralph Campbell.
6 Written by Keith Knowles and Ralph Campbell, working independently.
7 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
10 This file is part of GAS.
12 GAS is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3, or (at your option)
17 GAS is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with GAS; see the file COPYING. If not, write to the Free
24 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
30 #include "safe-ctype.h"
32 #include "opcode/mips.h"
34 #include "dwarf2dbg.h"
35 #include "dw2gencfi.h"
38 #define DBG(x) printf x
44 /* Clean up namespace so we can include obj-elf.h too. */
45 static int mips_output_flavor (void);
46 static int mips_output_flavor (void) { return OUTPUT_FLAVOR
; }
47 #undef OBJ_PROCESS_STAB
54 #undef obj_frob_file_after_relocs
55 #undef obj_frob_symbol
57 #undef obj_sec_sym_ok_for_reloc
58 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
61 /* Fix any of them that we actually care about. */
63 #define OUTPUT_FLAVOR mips_output_flavor()
70 #ifndef ECOFF_DEBUGGING
71 #define NO_ECOFF_DEBUGGING
72 #define ECOFF_DEBUGGING 0
75 int mips_flag_mdebug
= -1;
77 /* Control generation of .pdr sections. Off by default on IRIX: the native
78 linker doesn't know about and discards them, but relocations against them
79 remain, leading to rld crashes. */
81 int mips_flag_pdr
= FALSE
;
83 int mips_flag_pdr
= TRUE
;
88 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
89 static char *mips_regmask_frag
;
95 #define PIC_CALL_REG 25
103 #define ILLEGAL_REG (32)
105 #define AT mips_opts.at
107 /* Allow override of standard little-endian ECOFF format. */
109 #ifndef ECOFF_LITTLE_FORMAT
110 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
113 extern int target_big_endian
;
115 /* The name of the readonly data section. */
116 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
118 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
120 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
124 /* Information about an instruction, including its format, operands
128 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
129 const struct mips_opcode
*insn_mo
;
131 /* True if this is a mips16 instruction and if we want the extended
133 bfd_boolean use_extend
;
135 /* The 16-bit extension instruction to use when USE_EXTEND is true. */
136 unsigned short extend
;
138 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
139 a copy of INSN_MO->match with the operands filled in. */
140 unsigned long insn_opcode
;
142 /* The frag that contains the instruction. */
145 /* The offset into FRAG of the first instruction byte. */
148 /* The relocs associated with the instruction, if any. */
151 /* True if this entry cannot be moved from its current position. */
152 unsigned int fixed_p
: 1;
154 /* True if this instruction occurred in a .set noreorder block. */
155 unsigned int noreorder_p
: 1;
157 /* True for mips16 instructions that jump to an absolute address. */
158 unsigned int mips16_absolute_jump_p
: 1;
161 /* The ABI to use. */
172 /* MIPS ABI we are using for this output file. */
173 static enum mips_abi_level mips_abi
= NO_ABI
;
175 /* Whether or not we have code that can call pic code. */
176 int mips_abicalls
= FALSE
;
178 /* Whether or not we have code which can be put into a shared
180 static bfd_boolean mips_in_shared
= TRUE
;
182 /* This is the set of options which may be modified by the .set
183 pseudo-op. We use a struct so that .set push and .set pop are more
186 struct mips_set_options
188 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
189 if it has not been initialized. Changed by `.set mipsN', and the
190 -mipsN command line option, and the default CPU. */
192 /* Enabled Application Specific Extensions (ASEs). These are set to -1
193 if they have not been initialized. Changed by `.set <asename>', by
194 command line options, and based on the default architecture. */
201 /* Whether we are assembling for the mips16 processor. 0 if we are
202 not, 1 if we are, and -1 if the value has not been initialized.
203 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
204 -nomips16 command line options, and the default CPU. */
206 /* Non-zero if we should not reorder instructions. Changed by `.set
207 reorder' and `.set noreorder'. */
209 /* Non-zero if we should not permit the register designated "assembler
210 temporary" to be used in instructions. The value is the register
211 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
212 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
214 /* Non-zero if we should warn when a macro instruction expands into
215 more than one machine instruction. Changed by `.set nomacro' and
217 int warn_about_macros
;
218 /* Non-zero if we should not move instructions. Changed by `.set
219 move', `.set volatile', `.set nomove', and `.set novolatile'. */
221 /* Non-zero if we should not optimize branches by moving the target
222 of the branch into the delay slot. Actually, we don't perform
223 this optimization anyhow. Changed by `.set bopt' and `.set
226 /* Non-zero if we should not autoextend mips16 instructions.
227 Changed by `.set autoextend' and `.set noautoextend'. */
229 /* Restrict general purpose registers and floating point registers
230 to 32 bit. This is initially determined when -mgp32 or -mfp32
231 is passed but can changed if the assembler code uses .set mipsN. */
234 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
235 command line option, and the default CPU. */
237 /* True if ".set sym32" is in effect. */
239 /* True if floating-point operations are not allowed. Changed by .set
240 softfloat or .set hardfloat, by command line options -msoft-float or
241 -mhard-float. The default is false. */
242 bfd_boolean soft_float
;
244 /* True if only single-precision floating-point operations are allowed.
245 Changed by .set singlefloat or .set doublefloat, command-line options
246 -msingle-float or -mdouble-float. The default is false. */
247 bfd_boolean single_float
;
250 /* This is the struct we use to hold the current set of options. Note
251 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
252 -1 to indicate that they have not been initialized. */
254 /* True if -mgp32 was passed. */
255 static int file_mips_gp32
= -1;
257 /* True if -mfp32 was passed. */
258 static int file_mips_fp32
= -1;
260 /* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
261 static int file_mips_soft_float
= 0;
263 /* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
264 static int file_mips_single_float
= 0;
266 static struct mips_set_options mips_opts
=
268 /* isa */ ISA_UNKNOWN
, /* ase_mips3d */ -1, /* ase_mdmx */ -1,
269 /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1,
270 /* mips16 */ -1, /* noreorder */ 0, /* at */ ATREG
,
271 /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
272 /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN
,
273 /* sym32 */ FALSE
, /* soft_float */ FALSE
, /* single_float */ FALSE
276 /* These variables are filled in with the masks of registers used.
277 The object format code reads them and puts them in the appropriate
279 unsigned long mips_gprmask
;
280 unsigned long mips_cprmask
[4];
282 /* MIPS ISA we are using for this output file. */
283 static int file_mips_isa
= ISA_UNKNOWN
;
285 /* True if any MIPS16 code was produced. */
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 we want to create R_MIPS_JALR for jalr $25. */
295 #define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
297 /* As a GNU extension, we use R_MIPS_JALR for o32 too. However,
298 because there's no place for any addend, the only acceptable
299 expression is a bare symbol. */
300 #define MIPS_JALR_HINT_P(EXPR) \
301 (!HAVE_IN_PLACE_ADDENDS \
302 || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
305 /* True if -mips3d was passed or implied by arguments passed on the
306 command line (e.g., by -march). */
307 static int file_ase_mips3d
;
309 /* True if -mdmx was passed or implied by arguments passed on the
310 command line (e.g., by -march). */
311 static int file_ase_mdmx
;
313 /* True if -msmartmips was passed or implied by arguments passed on the
314 command line (e.g., by -march). */
315 static int file_ase_smartmips
;
317 #define ISA_SUPPORTS_SMARTMIPS (mips_opts.isa == ISA_MIPS32 \
318 || mips_opts.isa == ISA_MIPS32R2)
320 /* True if -mdsp was passed or implied by arguments passed on the
321 command line (e.g., by -march). */
322 static int file_ase_dsp
;
324 #define ISA_SUPPORTS_DSP_ASE (mips_opts.isa == ISA_MIPS32R2 \
325 || mips_opts.isa == ISA_MIPS64R2)
327 #define ISA_SUPPORTS_DSP64_ASE (mips_opts.isa == ISA_MIPS64R2)
329 /* True if -mdspr2 was passed or implied by arguments passed on the
330 command line (e.g., by -march). */
331 static int file_ase_dspr2
;
333 #define ISA_SUPPORTS_DSPR2_ASE (mips_opts.isa == ISA_MIPS32R2 \
334 || mips_opts.isa == ISA_MIPS64R2)
336 /* True if -mmt was passed or implied by arguments passed on the
337 command line (e.g., by -march). */
338 static int file_ase_mt
;
340 #define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2 \
341 || mips_opts.isa == ISA_MIPS64R2)
343 /* The argument of the -march= flag. The architecture we are assembling. */
344 static int file_mips_arch
= CPU_UNKNOWN
;
345 static const char *mips_arch_string
;
347 /* The argument of the -mtune= flag. The architecture for which we
349 static int mips_tune
= CPU_UNKNOWN
;
350 static const char *mips_tune_string
;
352 /* True when generating 32-bit code for a 64-bit processor. */
353 static int mips_32bitmode
= 0;
355 /* True if the given ABI requires 32-bit registers. */
356 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
358 /* Likewise 64-bit registers. */
359 #define ABI_NEEDS_64BIT_REGS(ABI) \
361 || (ABI) == N64_ABI \
364 /* Return true if ISA supports 64 bit wide gp registers. */
365 #define ISA_HAS_64BIT_REGS(ISA) \
366 ((ISA) == ISA_MIPS3 \
367 || (ISA) == ISA_MIPS4 \
368 || (ISA) == ISA_MIPS5 \
369 || (ISA) == ISA_MIPS64 \
370 || (ISA) == ISA_MIPS64R2)
372 /* Return true if ISA supports 64 bit wide float registers. */
373 #define ISA_HAS_64BIT_FPRS(ISA) \
374 ((ISA) == ISA_MIPS3 \
375 || (ISA) == ISA_MIPS4 \
376 || (ISA) == ISA_MIPS5 \
377 || (ISA) == ISA_MIPS32R2 \
378 || (ISA) == ISA_MIPS64 \
379 || (ISA) == ISA_MIPS64R2)
381 /* Return true if ISA supports 64-bit right rotate (dror et al.)
383 #define ISA_HAS_DROR(ISA) \
384 ((ISA) == ISA_MIPS64R2)
386 /* Return true if ISA supports 32-bit right rotate (ror et al.)
388 #define ISA_HAS_ROR(ISA) \
389 ((ISA) == ISA_MIPS32R2 \
390 || (ISA) == ISA_MIPS64R2 \
391 || mips_opts.ase_smartmips)
393 /* Return true if ISA supports single-precision floats in odd registers. */
394 #define ISA_HAS_ODD_SINGLE_FPR(ISA) \
395 ((ISA) == ISA_MIPS32 \
396 || (ISA) == ISA_MIPS32R2 \
397 || (ISA) == ISA_MIPS64 \
398 || (ISA) == ISA_MIPS64R2)
400 /* Return true if ISA supports move to/from high part of a 64-bit
401 floating-point register. */
402 #define ISA_HAS_MXHC1(ISA) \
403 ((ISA) == ISA_MIPS32R2 \
404 || (ISA) == ISA_MIPS64R2)
406 #define HAVE_32BIT_GPRS \
407 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
409 #define HAVE_32BIT_FPRS \
410 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
412 #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
413 #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
415 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
417 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
419 /* True if relocations are stored in-place. */
420 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
422 /* The ABI-derived address size. */
423 #define HAVE_64BIT_ADDRESSES \
424 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
425 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
427 /* The size of symbolic constants (i.e., expressions of the form
428 "SYMBOL" or "SYMBOL + OFFSET"). */
429 #define HAVE_32BIT_SYMBOLS \
430 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
431 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
433 /* Addresses are loaded in different ways, depending on the address size
434 in use. The n32 ABI Documentation also mandates the use of additions
435 with overflow checking, but existing implementations don't follow it. */
436 #define ADDRESS_ADD_INSN \
437 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
439 #define ADDRESS_ADDI_INSN \
440 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
442 #define ADDRESS_LOAD_INSN \
443 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
445 #define ADDRESS_STORE_INSN \
446 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
448 /* Return true if the given CPU supports the MIPS16 ASE. */
449 #define CPU_HAS_MIPS16(cpu) \
450 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
451 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
453 /* True if CPU has a dror instruction. */
454 #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
456 /* True if CPU has a ror instruction. */
457 #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
459 /* True if CPU has seq/sne and seqi/snei instructions. */
460 #define CPU_HAS_SEQ(CPU) ((CPU) == CPU_OCTEON)
462 /* True if CPU does not implement the all the coprocessor insns. For these
463 CPUs only those COP insns are accepted that are explicitly marked to be
464 available on the CPU. ISA membership for COP insns is ignored. */
465 #define NO_ISA_COP(CPU) ((CPU) == CPU_OCTEON)
467 /* True if mflo and mfhi can be immediately followed by instructions
468 which write to the HI and LO registers.
470 According to MIPS specifications, MIPS ISAs I, II, and III need
471 (at least) two instructions between the reads of HI/LO and
472 instructions which write them, and later ISAs do not. Contradicting
473 the MIPS specifications, some MIPS IV processor user manuals (e.g.
474 the UM for the NEC Vr5000) document needing the instructions between
475 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
476 MIPS64 and later ISAs to have the interlocks, plus any specific
477 earlier-ISA CPUs for which CPU documentation declares that the
478 instructions are really interlocked. */
479 #define hilo_interlocks \
480 (mips_opts.isa == ISA_MIPS32 \
481 || mips_opts.isa == ISA_MIPS32R2 \
482 || mips_opts.isa == ISA_MIPS64 \
483 || mips_opts.isa == ISA_MIPS64R2 \
484 || mips_opts.arch == CPU_R4010 \
485 || mips_opts.arch == CPU_R10000 \
486 || mips_opts.arch == CPU_R12000 \
487 || mips_opts.arch == CPU_R14000 \
488 || mips_opts.arch == CPU_R16000 \
489 || mips_opts.arch == CPU_RM7000 \
490 || mips_opts.arch == CPU_VR5500 \
493 /* Whether the processor uses hardware interlocks to protect reads
494 from the GPRs after they are loaded from memory, and thus does not
495 require nops to be inserted. This applies to instructions marked
496 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
498 #define gpr_interlocks \
499 (mips_opts.isa != ISA_MIPS1 \
500 || mips_opts.arch == CPU_R3900)
502 /* Whether the processor uses hardware interlocks to avoid delays
503 required by coprocessor instructions, and thus does not require
504 nops to be inserted. This applies to instructions marked
505 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
506 between instructions marked INSN_WRITE_COND_CODE and ones marked
507 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
508 levels I, II, and III. */
509 /* Itbl support may require additional care here. */
510 #define cop_interlocks \
511 ((mips_opts.isa != ISA_MIPS1 \
512 && mips_opts.isa != ISA_MIPS2 \
513 && mips_opts.isa != ISA_MIPS3) \
514 || mips_opts.arch == CPU_R4300 \
517 /* Whether the processor uses hardware interlocks to protect reads
518 from coprocessor registers after they are loaded from memory, and
519 thus does not require nops to be inserted. This applies to
520 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
521 requires at MIPS ISA level I. */
522 #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
524 /* Is this a mfhi or mflo instruction? */
525 #define MF_HILO_INSN(PINFO) \
526 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
528 /* Returns true for a (non floating-point) coprocessor instruction. Reading
529 or writing the condition code is only possible on the coprocessors and
530 these insns are not marked with INSN_COP. Thus for these insns use the
531 condition-code flags. */
532 #define COP_INSN(PINFO) \
533 (PINFO != INSN_MACRO \
534 && ((PINFO) & (FP_S | FP_D)) == 0 \
535 && ((PINFO) & (INSN_COP | INSN_READ_COND_CODE | INSN_WRITE_COND_CODE)))
537 /* MIPS PIC level. */
539 enum mips_pic_level mips_pic
;
541 /* 1 if we should generate 32 bit offsets from the $gp register in
542 SVR4_PIC mode. Currently has no meaning in other modes. */
543 static int mips_big_got
= 0;
545 /* 1 if trap instructions should used for overflow rather than break
547 static int mips_trap
= 0;
549 /* 1 if double width floating point constants should not be constructed
550 by assembling two single width halves into two single width floating
551 point registers which just happen to alias the double width destination
552 register. On some architectures this aliasing can be disabled by a bit
553 in the status register, and the setting of this bit cannot be determined
554 automatically at assemble time. */
555 static int mips_disable_float_construction
;
557 /* Non-zero if any .set noreorder directives were used. */
559 static int mips_any_noreorder
;
561 /* Non-zero if nops should be inserted when the register referenced in
562 an mfhi/mflo instruction is read in the next two instructions. */
563 static int mips_7000_hilo_fix
;
565 /* The size of objects in the small data section. */
566 static unsigned int g_switch_value
= 8;
567 /* Whether the -G option was used. */
568 static int g_switch_seen
= 0;
573 /* If we can determine in advance that GP optimization won't be
574 possible, we can skip the relaxation stuff that tries to produce
575 GP-relative references. This makes delay slot optimization work
578 This function can only provide a guess, but it seems to work for
579 gcc output. It needs to guess right for gcc, otherwise gcc
580 will put what it thinks is a GP-relative instruction in a branch
583 I don't know if a fix is needed for the SVR4_PIC mode. I've only
584 fixed it for the non-PIC mode. KR 95/04/07 */
585 static int nopic_need_relax (symbolS
*, int);
587 /* handle of the OPCODE hash table */
588 static struct hash_control
*op_hash
= NULL
;
590 /* The opcode hash table we use for the mips16. */
591 static struct hash_control
*mips16_op_hash
= NULL
;
593 /* This array holds the chars that always start a comment. If the
594 pre-processor is disabled, these aren't very useful */
595 const char comment_chars
[] = "#";
597 /* This array holds the chars that only start a comment at the beginning of
598 a line. If the line seems to have the form '# 123 filename'
599 .line and .file directives will appear in the pre-processed output */
600 /* Note that input_file.c hand checks for '#' at the beginning of the
601 first line of the input file. This is because the compiler outputs
602 #NO_APP at the beginning of its output. */
603 /* Also note that C style comments are always supported. */
604 const char line_comment_chars
[] = "#";
606 /* This array holds machine specific line separator characters. */
607 const char line_separator_chars
[] = ";";
609 /* Chars that can be used to separate mant from exp in floating point nums */
610 const char EXP_CHARS
[] = "eE";
612 /* Chars that mean this number is a floating point constant */
615 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
617 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
618 changed in read.c . Ideally it shouldn't have to know about it at all,
619 but nothing is ideal around here.
622 static char *insn_error
;
624 static int auto_align
= 1;
626 /* When outputting SVR4 PIC code, the assembler needs to know the
627 offset in the stack frame from which to restore the $gp register.
628 This is set by the .cprestore pseudo-op, and saved in this
630 static offsetT mips_cprestore_offset
= -1;
632 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
633 more optimizations, it can use a register value instead of a memory-saved
634 offset and even an other register than $gp as global pointer. */
635 static offsetT mips_cpreturn_offset
= -1;
636 static int mips_cpreturn_register
= -1;
637 static int mips_gp_register
= GP
;
638 static int mips_gprel_offset
= 0;
640 /* Whether mips_cprestore_offset has been set in the current function
641 (or whether it has already been warned about, if not). */
642 static int mips_cprestore_valid
= 0;
644 /* This is the register which holds the stack frame, as set by the
645 .frame pseudo-op. This is needed to implement .cprestore. */
646 static int mips_frame_reg
= SP
;
648 /* Whether mips_frame_reg has been set in the current function
649 (or whether it has already been warned about, if not). */
650 static int mips_frame_reg_valid
= 0;
652 /* To output NOP instructions correctly, we need to keep information
653 about the previous two instructions. */
655 /* Whether we are optimizing. The default value of 2 means to remove
656 unneeded NOPs and swap branch instructions when possible. A value
657 of 1 means to not swap branches. A value of 0 means to always
659 static int mips_optimize
= 2;
661 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
662 equivalent to seeing no -g option at all. */
663 static int mips_debug
= 0;
665 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
666 #define MAX_VR4130_NOPS 4
668 /* The maximum number of NOPs needed to fill delay slots. */
669 #define MAX_DELAY_NOPS 2
671 /* The maximum number of NOPs needed for any purpose. */
674 /* A list of previous instructions, with index 0 being the most recent.
675 We need to look back MAX_NOPS instructions when filling delay slots
676 or working around processor errata. We need to look back one
677 instruction further if we're thinking about using history[0] to
678 fill a branch delay slot. */
679 static struct mips_cl_insn history
[1 + MAX_NOPS
];
681 /* Nop instructions used by emit_nop. */
682 static struct mips_cl_insn nop_insn
, mips16_nop_insn
;
684 /* The appropriate nop for the current mode. */
685 #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
687 /* If this is set, it points to a frag holding nop instructions which
688 were inserted before the start of a noreorder section. If those
689 nops turn out to be unnecessary, the size of the frag can be
691 static fragS
*prev_nop_frag
;
693 /* The number of nop instructions we created in prev_nop_frag. */
694 static int prev_nop_frag_holds
;
696 /* The number of nop instructions that we know we need in
698 static int prev_nop_frag_required
;
700 /* The number of instructions we've seen since prev_nop_frag. */
701 static int prev_nop_frag_since
;
703 /* For ECOFF and ELF, relocations against symbols are done in two
704 parts, with a HI relocation and a LO relocation. Each relocation
705 has only 16 bits of space to store an addend. This means that in
706 order for the linker to handle carries correctly, it must be able
707 to locate both the HI and the LO relocation. This means that the
708 relocations must appear in order in the relocation table.
710 In order to implement this, we keep track of each unmatched HI
711 relocation. We then sort them so that they immediately precede the
712 corresponding LO relocation. */
717 struct mips_hi_fixup
*next
;
720 /* The section this fixup is in. */
724 /* The list of unmatched HI relocs. */
726 static struct mips_hi_fixup
*mips_hi_fixup_list
;
728 /* The frag containing the last explicit relocation operator.
729 Null if explicit relocations have not been used. */
731 static fragS
*prev_reloc_op_frag
;
733 /* Map normal MIPS register numbers to mips16 register numbers. */
735 #define X ILLEGAL_REG
736 static const int mips32_to_16_reg_map
[] =
738 X
, X
, 2, 3, 4, 5, 6, 7,
739 X
, X
, X
, X
, X
, X
, X
, X
,
740 0, 1, X
, X
, X
, X
, X
, X
,
741 X
, X
, X
, X
, X
, X
, X
, X
745 /* Map mips16 register numbers to normal MIPS register numbers. */
747 static const unsigned int mips16_to_32_reg_map
[] =
749 16, 17, 2, 3, 4, 5, 6, 7
752 /* Classifies the kind of instructions we're interested in when
753 implementing -mfix-vr4120. */
754 enum fix_vr4120_class
762 NUM_FIX_VR4120_CLASSES
765 /* ...likewise -mfix-loongson2f-jump. */
766 static bfd_boolean mips_fix_loongson2f_jump
;
768 /* ...likewise -mfix-loongson2f-nop. */
769 static bfd_boolean mips_fix_loongson2f_nop
;
771 /* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed. */
772 static bfd_boolean mips_fix_loongson2f
;
774 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
775 there must be at least one other instruction between an instruction
776 of type X and an instruction of type Y. */
777 static unsigned int vr4120_conflicts
[NUM_FIX_VR4120_CLASSES
];
779 /* True if -mfix-vr4120 is in force. */
780 static int mips_fix_vr4120
;
782 /* ...likewise -mfix-vr4130. */
783 static int mips_fix_vr4130
;
785 /* ...likewise -mfix-24k. */
786 static int mips_fix_24k
;
788 /* ...likewise -mfix-cn63xxp1 */
789 static bfd_boolean mips_fix_cn63xxp1
;
791 /* We don't relax branches by default, since this causes us to expand
792 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
793 fail to compute the offset before expanding the macro to the most
794 efficient expansion. */
796 static int mips_relax_branch
;
798 /* The expansion of many macros depends on the type of symbol that
799 they refer to. For example, when generating position-dependent code,
800 a macro that refers to a symbol may have two different expansions,
801 one which uses GP-relative addresses and one which uses absolute
802 addresses. When generating SVR4-style PIC, a macro may have
803 different expansions for local and global symbols.
805 We handle these situations by generating both sequences and putting
806 them in variant frags. In position-dependent code, the first sequence
807 will be the GP-relative one and the second sequence will be the
808 absolute one. In SVR4 PIC, the first sequence will be for global
809 symbols and the second will be for local symbols.
811 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
812 SECOND are the lengths of the two sequences in bytes. These fields
813 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
814 the subtype has the following flags:
817 Set if it has been decided that we should use the second
818 sequence instead of the first.
821 Set in the first variant frag if the macro's second implementation
822 is longer than its first. This refers to the macro as a whole,
823 not an individual relaxation.
826 Set in the first variant frag if the macro appeared in a .set nomacro
827 block and if one alternative requires a warning but the other does not.
830 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
833 The frag's "opcode" points to the first fixup for relaxable code.
835 Relaxable macros are generated using a sequence such as:
837 relax_start (SYMBOL);
838 ... generate first expansion ...
840 ... generate second expansion ...
843 The code and fixups for the unwanted alternative are discarded
844 by md_convert_frag. */
845 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
847 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
848 #define RELAX_SECOND(X) ((X) & 0xff)
849 #define RELAX_USE_SECOND 0x10000
850 #define RELAX_SECOND_LONGER 0x20000
851 #define RELAX_NOMACRO 0x40000
852 #define RELAX_DELAY_SLOT 0x80000
854 /* Branch without likely bit. If label is out of range, we turn:
856 beq reg1, reg2, label
866 with the following opcode replacements:
873 bltzal <-> bgezal (with jal label instead of j label)
875 Even though keeping the delay slot instruction in the delay slot of
876 the branch would be more efficient, it would be very tricky to do
877 correctly, because we'd have to introduce a variable frag *after*
878 the delay slot instruction, and expand that instead. Let's do it
879 the easy way for now, even if the branch-not-taken case now costs
880 one additional instruction. Out-of-range branches are not supposed
881 to be common, anyway.
883 Branch likely. If label is out of range, we turn:
885 beql reg1, reg2, label
886 delay slot (annulled if branch not taken)
895 delay slot (executed only if branch taken)
898 It would be possible to generate a shorter sequence by losing the
899 likely bit, generating something like:
904 delay slot (executed only if branch taken)
916 bltzall -> bgezal (with jal label instead of j label)
917 bgezall -> bltzal (ditto)
920 but it's not clear that it would actually improve performance. */
921 #define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
924 | ((toofar) ? 1 : 0) \
926 | ((likely) ? 4 : 0) \
927 | ((uncond) ? 8 : 0)))
928 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
929 #define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
930 #define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
931 #define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
932 #define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
934 /* For mips16 code, we use an entirely different form of relaxation.
935 mips16 supports two versions of most instructions which take
936 immediate values: a small one which takes some small value, and a
937 larger one which takes a 16 bit value. Since branches also follow
938 this pattern, relaxing these values is required.
940 We can assemble both mips16 and normal MIPS code in a single
941 object. Therefore, we need to support this type of relaxation at
942 the same time that we support the relaxation described above. We
943 use the high bit of the subtype field to distinguish these cases.
945 The information we store for this type of relaxation is the
946 argument code found in the opcode file for this relocation, whether
947 the user explicitly requested a small or extended form, and whether
948 the relocation is in a jump or jal delay slot. That tells us the
949 size of the value, and how it should be stored. We also store
950 whether the fragment is considered to be extended or not. We also
951 store whether this is known to be a branch to a different section,
952 whether we have tried to relax this frag yet, and whether we have
953 ever extended a PC relative fragment because of a shift count. */
954 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
957 | ((small) ? 0x100 : 0) \
958 | ((ext) ? 0x200 : 0) \
959 | ((dslot) ? 0x400 : 0) \
960 | ((jal_dslot) ? 0x800 : 0))
961 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
962 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
963 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
964 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
965 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
966 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
967 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
968 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
969 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
970 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
971 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
972 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
974 /* Is the given value a sign-extended 32-bit value? */
975 #define IS_SEXT_32BIT_NUM(x) \
976 (((x) &~ (offsetT) 0x7fffffff) == 0 \
977 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
979 /* Is the given value a sign-extended 16-bit value? */
980 #define IS_SEXT_16BIT_NUM(x) \
981 (((x) &~ (offsetT) 0x7fff) == 0 \
982 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
984 /* Is the given value a zero-extended 32-bit value? Or a negated one? */
985 #define IS_ZEXT_32BIT_NUM(x) \
986 (((x) &~ (offsetT) 0xffffffff) == 0 \
987 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
989 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
990 VALUE << SHIFT. VALUE is evaluated exactly once. */
991 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
992 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
993 | (((VALUE) & (MASK)) << (SHIFT)))
995 /* Extract bits MASK << SHIFT from STRUCT and shift them right
997 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
998 (((STRUCT) >> (SHIFT)) & (MASK))
1000 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
1001 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
1003 include/opcode/mips.h specifies operand fields using the macros
1004 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
1005 with "MIPS16OP" instead of "OP". */
1006 #define INSERT_OPERAND(FIELD, INSN, VALUE) \
1007 INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
1008 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
1009 INSERT_BITS ((INSN).insn_opcode, VALUE, \
1010 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
1012 /* Extract the operand given by FIELD from mips_cl_insn INSN. */
1013 #define EXTRACT_OPERAND(FIELD, INSN) \
1014 EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
1015 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1016 EXTRACT_BITS ((INSN).insn_opcode, \
1017 MIPS16OP_MASK_##FIELD, \
1018 MIPS16OP_SH_##FIELD)
1020 /* Global variables used when generating relaxable macros. See the
1021 comment above RELAX_ENCODE for more details about how relaxation
1024 /* 0 if we're not emitting a relaxable macro.
1025 1 if we're emitting the first of the two relaxation alternatives.
1026 2 if we're emitting the second alternative. */
1029 /* The first relaxable fixup in the current frag. (In other words,
1030 the first fixup that refers to relaxable code.) */
1033 /* sizes[0] says how many bytes of the first alternative are stored in
1034 the current frag. Likewise sizes[1] for the second alternative. */
1035 unsigned int sizes
[2];
1037 /* The symbol on which the choice of sequence depends. */
1041 /* Global variables used to decide whether a macro needs a warning. */
1043 /* True if the macro is in a branch delay slot. */
1044 bfd_boolean delay_slot_p
;
1046 /* For relaxable macros, sizes[0] is the length of the first alternative
1047 in bytes and sizes[1] is the length of the second alternative.
1048 For non-relaxable macros, both elements give the length of the
1050 unsigned int sizes
[2];
1052 /* The first variant frag for this macro. */
1054 } mips_macro_warning
;
1056 /* Prototypes for static functions. */
1058 #define internalError() \
1059 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
1061 enum mips_regclass
{ MIPS_GR_REG
, MIPS_FP_REG
, MIPS16_REG
};
1063 static void append_insn
1064 (struct mips_cl_insn
*, expressionS
*, bfd_reloc_code_real_type
*);
1065 static void mips_no_prev_insn (void);
1066 static void macro_build (expressionS
*, const char *, const char *, ...);
1067 static void mips16_macro_build
1068 (expressionS
*, const char *, const char *, va_list *);
1069 static void load_register (int, expressionS
*, int);
1070 static void macro_start (void);
1071 static void macro_end (void);
1072 static void macro (struct mips_cl_insn
* ip
);
1073 static void mips16_macro (struct mips_cl_insn
* ip
);
1074 static void mips_ip (char *str
, struct mips_cl_insn
* ip
);
1075 static void mips16_ip (char *str
, struct mips_cl_insn
* ip
);
1076 static void mips16_immed
1077 (char *, unsigned int, int, offsetT
, bfd_boolean
, bfd_boolean
, bfd_boolean
,
1078 unsigned long *, bfd_boolean
*, unsigned short *);
1079 static size_t my_getSmallExpression
1080 (expressionS
*, bfd_reloc_code_real_type
*, char *);
1081 static void my_getExpression (expressionS
*, char *);
1082 static void s_align (int);
1083 static void s_change_sec (int);
1084 static void s_change_section (int);
1085 static void s_cons (int);
1086 static void s_float_cons (int);
1087 static void s_mips_globl (int);
1088 static void s_option (int);
1089 static void s_mipsset (int);
1090 static void s_abicalls (int);
1091 static void s_cpload (int);
1092 static void s_cpsetup (int);
1093 static void s_cplocal (int);
1094 static void s_cprestore (int);
1095 static void s_cpreturn (int);
1096 static void s_dtprelword (int);
1097 static void s_dtpreldword (int);
1098 static void s_gpvalue (int);
1099 static void s_gpword (int);
1100 static void s_gpdword (int);
1101 static void s_cpadd (int);
1102 static void s_insn (int);
1103 static void md_obj_begin (void);
1104 static void md_obj_end (void);
1105 static void s_mips_ent (int);
1106 static void s_mips_end (int);
1107 static void s_mips_frame (int);
1108 static void s_mips_mask (int reg_type
);
1109 static void s_mips_stab (int);
1110 static void s_mips_weakext (int);
1111 static void s_mips_file (int);
1112 static void s_mips_loc (int);
1113 static bfd_boolean
pic_need_relax (symbolS
*, asection
*);
1114 static int relaxed_branch_length (fragS
*, asection
*, int);
1115 static int validate_mips_insn (const struct mips_opcode
*);
1117 /* Table and functions used to map between CPU/ISA names, and
1118 ISA levels, and CPU numbers. */
1120 struct mips_cpu_info
1122 const char *name
; /* CPU or ISA name. */
1123 int flags
; /* ASEs available, or ISA flag. */
1124 int isa
; /* ISA level. */
1125 int cpu
; /* CPU number (default CPU if ISA). */
1128 #define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1129 #define MIPS_CPU_ASE_SMARTMIPS 0x0002 /* CPU implements SmartMIPS ASE */
1130 #define MIPS_CPU_ASE_DSP 0x0004 /* CPU implements DSP ASE */
1131 #define MIPS_CPU_ASE_MT 0x0008 /* CPU implements MT ASE */
1132 #define MIPS_CPU_ASE_MIPS3D 0x0010 /* CPU implements MIPS-3D ASE */
1133 #define MIPS_CPU_ASE_MDMX 0x0020 /* CPU implements MDMX ASE */
1134 #define MIPS_CPU_ASE_DSPR2 0x0040 /* CPU implements DSP R2 ASE */
1136 static const struct mips_cpu_info
*mips_parse_cpu (const char *, const char *);
1137 static const struct mips_cpu_info
*mips_cpu_info_from_isa (int);
1138 static const struct mips_cpu_info
*mips_cpu_info_from_arch (int);
1142 The following pseudo-ops from the Kane and Heinrich MIPS book
1143 should be defined here, but are currently unsupported: .alias,
1144 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1146 The following pseudo-ops from the Kane and Heinrich MIPS book are
1147 specific to the type of debugging information being generated, and
1148 should be defined by the object format: .aent, .begin, .bend,
1149 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1152 The following pseudo-ops from the Kane and Heinrich MIPS book are
1153 not MIPS CPU specific, but are also not specific to the object file
1154 format. This file is probably the best place to define them, but
1155 they are not currently supported: .asm0, .endr, .lab, .struct. */
1157 static const pseudo_typeS mips_pseudo_table
[] =
1159 /* MIPS specific pseudo-ops. */
1160 {"option", s_option
, 0},
1161 {"set", s_mipsset
, 0},
1162 {"rdata", s_change_sec
, 'r'},
1163 {"sdata", s_change_sec
, 's'},
1164 {"livereg", s_ignore
, 0},
1165 {"abicalls", s_abicalls
, 0},
1166 {"cpload", s_cpload
, 0},
1167 {"cpsetup", s_cpsetup
, 0},
1168 {"cplocal", s_cplocal
, 0},
1169 {"cprestore", s_cprestore
, 0},
1170 {"cpreturn", s_cpreturn
, 0},
1171 {"dtprelword", s_dtprelword
, 0},
1172 {"dtpreldword", s_dtpreldword
, 0},
1173 {"gpvalue", s_gpvalue
, 0},
1174 {"gpword", s_gpword
, 0},
1175 {"gpdword", s_gpdword
, 0},
1176 {"cpadd", s_cpadd
, 0},
1177 {"insn", s_insn
, 0},
1179 /* Relatively generic pseudo-ops that happen to be used on MIPS
1181 {"asciiz", stringer
, 8 + 1},
1182 {"bss", s_change_sec
, 'b'},
1184 {"half", s_cons
, 1},
1185 {"dword", s_cons
, 3},
1186 {"weakext", s_mips_weakext
, 0},
1187 {"origin", s_org
, 0},
1188 {"repeat", s_rept
, 0},
1190 /* For MIPS this is non-standard, but we define it for consistency. */
1191 {"sbss", s_change_sec
, 'B'},
1193 /* These pseudo-ops are defined in read.c, but must be overridden
1194 here for one reason or another. */
1195 {"align", s_align
, 0},
1196 {"byte", s_cons
, 0},
1197 {"data", s_change_sec
, 'd'},
1198 {"double", s_float_cons
, 'd'},
1199 {"float", s_float_cons
, 'f'},
1200 {"globl", s_mips_globl
, 0},
1201 {"global", s_mips_globl
, 0},
1202 {"hword", s_cons
, 1},
1204 {"long", s_cons
, 2},
1205 {"octa", s_cons
, 4},
1206 {"quad", s_cons
, 3},
1207 {"section", s_change_section
, 0},
1208 {"short", s_cons
, 1},
1209 {"single", s_float_cons
, 'f'},
1210 {"stabn", s_mips_stab
, 'n'},
1211 {"text", s_change_sec
, 't'},
1212 {"word", s_cons
, 2},
1214 { "extern", ecoff_directive_extern
, 0},
1219 static const pseudo_typeS mips_nonecoff_pseudo_table
[] =
1221 /* These pseudo-ops should be defined by the object file format.
1222 However, a.out doesn't support them, so we have versions here. */
1223 {"aent", s_mips_ent
, 1},
1224 {"bgnb", s_ignore
, 0},
1225 {"end", s_mips_end
, 0},
1226 {"endb", s_ignore
, 0},
1227 {"ent", s_mips_ent
, 0},
1228 {"file", s_mips_file
, 0},
1229 {"fmask", s_mips_mask
, 'F'},
1230 {"frame", s_mips_frame
, 0},
1231 {"loc", s_mips_loc
, 0},
1232 {"mask", s_mips_mask
, 'R'},
1233 {"verstamp", s_ignore
, 0},
1237 /* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1238 purpose of the `.dc.a' internal pseudo-op. */
1241 mips_address_bytes (void)
1243 return HAVE_64BIT_ADDRESSES
? 8 : 4;
1246 extern void pop_insert (const pseudo_typeS
*);
1249 mips_pop_insert (void)
1251 pop_insert (mips_pseudo_table
);
1252 if (! ECOFF_DEBUGGING
)
1253 pop_insert (mips_nonecoff_pseudo_table
);
1256 /* Symbols labelling the current insn. */
1258 struct insn_label_list
1260 struct insn_label_list
*next
;
1264 static struct insn_label_list
*free_insn_labels
;
1265 #define label_list tc_segment_info_data.labels
1267 static void mips_clear_insn_labels (void);
1270 mips_clear_insn_labels (void)
1272 register struct insn_label_list
**pl
;
1273 segment_info_type
*si
;
1277 for (pl
= &free_insn_labels
; *pl
!= NULL
; pl
= &(*pl
)->next
)
1280 si
= seg_info (now_seg
);
1281 *pl
= si
->label_list
;
1282 si
->label_list
= NULL
;
1287 static char *expr_end
;
1289 /* Expressions which appear in instructions. These are set by
1292 static expressionS imm_expr
;
1293 static expressionS imm2_expr
;
1294 static expressionS offset_expr
;
1296 /* Relocs associated with imm_expr and offset_expr. */
1298 static bfd_reloc_code_real_type imm_reloc
[3]
1299 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
1300 static bfd_reloc_code_real_type offset_reloc
[3]
1301 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
1303 /* These are set by mips16_ip if an explicit extension is used. */
1305 static bfd_boolean mips16_small
, mips16_ext
;
1308 /* The pdr segment for per procedure frame/regmask info. Not used for
1311 static segT pdr_seg
;
1314 /* The default target format to use. */
1316 #if defined (TE_FreeBSD)
1317 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1318 #elif defined (TE_TMIPS)
1319 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1321 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1325 mips_target_format (void)
1327 switch (OUTPUT_FLAVOR
)
1329 case bfd_target_ecoff_flavour
:
1330 return target_big_endian
? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT
;
1331 case bfd_target_coff_flavour
:
1333 case bfd_target_elf_flavour
:
1335 if (!HAVE_64BIT_OBJECTS
&& !HAVE_NEWABI
)
1336 return (target_big_endian
1337 ? "elf32-bigmips-vxworks"
1338 : "elf32-littlemips-vxworks");
1340 return (target_big_endian
1341 ? (HAVE_64BIT_OBJECTS
1342 ? ELF_TARGET ("elf64-", "big")
1344 ? ELF_TARGET ("elf32-n", "big")
1345 : ELF_TARGET ("elf32-", "big")))
1346 : (HAVE_64BIT_OBJECTS
1347 ? ELF_TARGET ("elf64-", "little")
1349 ? ELF_TARGET ("elf32-n", "little")
1350 : ELF_TARGET ("elf32-", "little"))));
1357 /* Return the length of instruction INSN. */
1359 static inline unsigned int
1360 insn_length (const struct mips_cl_insn
*insn
)
1362 if (!mips_opts
.mips16
)
1364 return insn
->mips16_absolute_jump_p
|| insn
->use_extend
? 4 : 2;
1367 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1370 create_insn (struct mips_cl_insn
*insn
, const struct mips_opcode
*mo
)
1375 insn
->use_extend
= FALSE
;
1377 insn
->insn_opcode
= mo
->match
;
1380 for (i
= 0; i
< ARRAY_SIZE (insn
->fixp
); i
++)
1381 insn
->fixp
[i
] = NULL
;
1382 insn
->fixed_p
= (mips_opts
.noreorder
> 0);
1383 insn
->noreorder_p
= (mips_opts
.noreorder
> 0);
1384 insn
->mips16_absolute_jump_p
= 0;
1387 /* Record the current MIPS16 mode in now_seg. */
1390 mips_record_mips16_mode (void)
1392 segment_info_type
*si
;
1394 si
= seg_info (now_seg
);
1395 if (si
->tc_segment_info_data
.mips16
!= mips_opts
.mips16
)
1396 si
->tc_segment_info_data
.mips16
= mips_opts
.mips16
;
1399 /* Install INSN at the location specified by its "frag" and "where" fields. */
1402 install_insn (const struct mips_cl_insn
*insn
)
1404 char *f
= insn
->frag
->fr_literal
+ insn
->where
;
1405 if (!mips_opts
.mips16
)
1406 md_number_to_chars (f
, insn
->insn_opcode
, 4);
1407 else if (insn
->mips16_absolute_jump_p
)
1409 md_number_to_chars (f
, insn
->insn_opcode
>> 16, 2);
1410 md_number_to_chars (f
+ 2, insn
->insn_opcode
& 0xffff, 2);
1414 if (insn
->use_extend
)
1416 md_number_to_chars (f
, 0xf000 | insn
->extend
, 2);
1419 md_number_to_chars (f
, insn
->insn_opcode
, 2);
1421 mips_record_mips16_mode ();
1424 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1425 and install the opcode in the new location. */
1428 move_insn (struct mips_cl_insn
*insn
, fragS
*frag
, long where
)
1433 insn
->where
= where
;
1434 for (i
= 0; i
< ARRAY_SIZE (insn
->fixp
); i
++)
1435 if (insn
->fixp
[i
] != NULL
)
1437 insn
->fixp
[i
]->fx_frag
= frag
;
1438 insn
->fixp
[i
]->fx_where
= where
;
1440 install_insn (insn
);
1443 /* Add INSN to the end of the output. */
1446 add_fixed_insn (struct mips_cl_insn
*insn
)
1448 char *f
= frag_more (insn_length (insn
));
1449 move_insn (insn
, frag_now
, f
- frag_now
->fr_literal
);
1452 /* Start a variant frag and move INSN to the start of the variant part,
1453 marking it as fixed. The other arguments are as for frag_var. */
1456 add_relaxed_insn (struct mips_cl_insn
*insn
, int max_chars
, int var
,
1457 relax_substateT subtype
, symbolS
*symbol
, offsetT offset
)
1459 frag_grow (max_chars
);
1460 move_insn (insn
, frag_now
, frag_more (0) - frag_now
->fr_literal
);
1462 frag_var (rs_machine_dependent
, max_chars
, var
,
1463 subtype
, symbol
, offset
, NULL
);
1466 /* Insert N copies of INSN into the history buffer, starting at
1467 position FIRST. Neither FIRST nor N need to be clipped. */
1470 insert_into_history (unsigned int first
, unsigned int n
,
1471 const struct mips_cl_insn
*insn
)
1473 if (mips_relax
.sequence
!= 2)
1477 for (i
= ARRAY_SIZE (history
); i
-- > first
;)
1479 history
[i
] = history
[i
- n
];
1485 /* Emit a nop instruction, recording it in the history buffer. */
1490 add_fixed_insn (NOP_INSN
);
1491 insert_into_history (0, 1, NOP_INSN
);
1494 /* Initialize vr4120_conflicts. There is a bit of duplication here:
1495 the idea is to make it obvious at a glance that each errata is
1499 init_vr4120_conflicts (void)
1501 #define CONFLICT(FIRST, SECOND) \
1502 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1504 /* Errata 21 - [D]DIV[U] after [D]MACC */
1505 CONFLICT (MACC
, DIV
);
1506 CONFLICT (DMACC
, DIV
);
1508 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1509 CONFLICT (DMULT
, DMULT
);
1510 CONFLICT (DMULT
, DMACC
);
1511 CONFLICT (DMACC
, DMULT
);
1512 CONFLICT (DMACC
, DMACC
);
1514 /* Errata 24 - MT{LO,HI} after [D]MACC */
1515 CONFLICT (MACC
, MTHILO
);
1516 CONFLICT (DMACC
, MTHILO
);
1518 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1519 instruction is executed immediately after a MACC or DMACC
1520 instruction, the result of [either instruction] is incorrect." */
1521 CONFLICT (MACC
, MULT
);
1522 CONFLICT (MACC
, DMULT
);
1523 CONFLICT (DMACC
, MULT
);
1524 CONFLICT (DMACC
, DMULT
);
1526 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1527 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1528 DDIV or DDIVU instruction, the result of the MACC or
1529 DMACC instruction is incorrect.". */
1530 CONFLICT (DMULT
, MACC
);
1531 CONFLICT (DMULT
, DMACC
);
1532 CONFLICT (DIV
, MACC
);
1533 CONFLICT (DIV
, DMACC
);
1543 #define RTYPE_MASK 0x1ff00
1544 #define RTYPE_NUM 0x00100
1545 #define RTYPE_FPU 0x00200
1546 #define RTYPE_FCC 0x00400
1547 #define RTYPE_VEC 0x00800
1548 #define RTYPE_GP 0x01000
1549 #define RTYPE_CP0 0x02000
1550 #define RTYPE_PC 0x04000
1551 #define RTYPE_ACC 0x08000
1552 #define RTYPE_CCC 0x10000
1553 #define RNUM_MASK 0x000ff
1554 #define RWARN 0x80000
1556 #define GENERIC_REGISTER_NUMBERS \
1557 {"$0", RTYPE_NUM | 0}, \
1558 {"$1", RTYPE_NUM | 1}, \
1559 {"$2", RTYPE_NUM | 2}, \
1560 {"$3", RTYPE_NUM | 3}, \
1561 {"$4", RTYPE_NUM | 4}, \
1562 {"$5", RTYPE_NUM | 5}, \
1563 {"$6", RTYPE_NUM | 6}, \
1564 {"$7", RTYPE_NUM | 7}, \
1565 {"$8", RTYPE_NUM | 8}, \
1566 {"$9", RTYPE_NUM | 9}, \
1567 {"$10", RTYPE_NUM | 10}, \
1568 {"$11", RTYPE_NUM | 11}, \
1569 {"$12", RTYPE_NUM | 12}, \
1570 {"$13", RTYPE_NUM | 13}, \
1571 {"$14", RTYPE_NUM | 14}, \
1572 {"$15", RTYPE_NUM | 15}, \
1573 {"$16", RTYPE_NUM | 16}, \
1574 {"$17", RTYPE_NUM | 17}, \
1575 {"$18", RTYPE_NUM | 18}, \
1576 {"$19", RTYPE_NUM | 19}, \
1577 {"$20", RTYPE_NUM | 20}, \
1578 {"$21", RTYPE_NUM | 21}, \
1579 {"$22", RTYPE_NUM | 22}, \
1580 {"$23", RTYPE_NUM | 23}, \
1581 {"$24", RTYPE_NUM | 24}, \
1582 {"$25", RTYPE_NUM | 25}, \
1583 {"$26", RTYPE_NUM | 26}, \
1584 {"$27", RTYPE_NUM | 27}, \
1585 {"$28", RTYPE_NUM | 28}, \
1586 {"$29", RTYPE_NUM | 29}, \
1587 {"$30", RTYPE_NUM | 30}, \
1588 {"$31", RTYPE_NUM | 31}
1590 #define FPU_REGISTER_NAMES \
1591 {"$f0", RTYPE_FPU | 0}, \
1592 {"$f1", RTYPE_FPU | 1}, \
1593 {"$f2", RTYPE_FPU | 2}, \
1594 {"$f3", RTYPE_FPU | 3}, \
1595 {"$f4", RTYPE_FPU | 4}, \
1596 {"$f5", RTYPE_FPU | 5}, \
1597 {"$f6", RTYPE_FPU | 6}, \
1598 {"$f7", RTYPE_FPU | 7}, \
1599 {"$f8", RTYPE_FPU | 8}, \
1600 {"$f9", RTYPE_FPU | 9}, \
1601 {"$f10", RTYPE_FPU | 10}, \
1602 {"$f11", RTYPE_FPU | 11}, \
1603 {"$f12", RTYPE_FPU | 12}, \
1604 {"$f13", RTYPE_FPU | 13}, \
1605 {"$f14", RTYPE_FPU | 14}, \
1606 {"$f15", RTYPE_FPU | 15}, \
1607 {"$f16", RTYPE_FPU | 16}, \
1608 {"$f17", RTYPE_FPU | 17}, \
1609 {"$f18", RTYPE_FPU | 18}, \
1610 {"$f19", RTYPE_FPU | 19}, \
1611 {"$f20", RTYPE_FPU | 20}, \
1612 {"$f21", RTYPE_FPU | 21}, \
1613 {"$f22", RTYPE_FPU | 22}, \
1614 {"$f23", RTYPE_FPU | 23}, \
1615 {"$f24", RTYPE_FPU | 24}, \
1616 {"$f25", RTYPE_FPU | 25}, \
1617 {"$f26", RTYPE_FPU | 26}, \
1618 {"$f27", RTYPE_FPU | 27}, \
1619 {"$f28", RTYPE_FPU | 28}, \
1620 {"$f29", RTYPE_FPU | 29}, \
1621 {"$f30", RTYPE_FPU | 30}, \
1622 {"$f31", RTYPE_FPU | 31}
1624 #define FPU_CONDITION_CODE_NAMES \
1625 {"$fcc0", RTYPE_FCC | 0}, \
1626 {"$fcc1", RTYPE_FCC | 1}, \
1627 {"$fcc2", RTYPE_FCC | 2}, \
1628 {"$fcc3", RTYPE_FCC | 3}, \
1629 {"$fcc4", RTYPE_FCC | 4}, \
1630 {"$fcc5", RTYPE_FCC | 5}, \
1631 {"$fcc6", RTYPE_FCC | 6}, \
1632 {"$fcc7", RTYPE_FCC | 7}
1634 #define COPROC_CONDITION_CODE_NAMES \
1635 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
1636 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
1637 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
1638 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
1639 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
1640 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
1641 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
1642 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
1644 #define N32N64_SYMBOLIC_REGISTER_NAMES \
1645 {"$a4", RTYPE_GP | 8}, \
1646 {"$a5", RTYPE_GP | 9}, \
1647 {"$a6", RTYPE_GP | 10}, \
1648 {"$a7", RTYPE_GP | 11}, \
1649 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
1650 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
1651 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
1652 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
1653 {"$t0", RTYPE_GP | 12}, \
1654 {"$t1", RTYPE_GP | 13}, \
1655 {"$t2", RTYPE_GP | 14}, \
1656 {"$t3", RTYPE_GP | 15}
1658 #define O32_SYMBOLIC_REGISTER_NAMES \
1659 {"$t0", RTYPE_GP | 8}, \
1660 {"$t1", RTYPE_GP | 9}, \
1661 {"$t2", RTYPE_GP | 10}, \
1662 {"$t3", RTYPE_GP | 11}, \
1663 {"$t4", RTYPE_GP | 12}, \
1664 {"$t5", RTYPE_GP | 13}, \
1665 {"$t6", RTYPE_GP | 14}, \
1666 {"$t7", RTYPE_GP | 15}, \
1667 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
1668 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
1669 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
1670 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
1672 /* Remaining symbolic register names */
1673 #define SYMBOLIC_REGISTER_NAMES \
1674 {"$zero", RTYPE_GP | 0}, \
1675 {"$at", RTYPE_GP | 1}, \
1676 {"$AT", RTYPE_GP | 1}, \
1677 {"$v0", RTYPE_GP | 2}, \
1678 {"$v1", RTYPE_GP | 3}, \
1679 {"$a0", RTYPE_GP | 4}, \
1680 {"$a1", RTYPE_GP | 5}, \
1681 {"$a2", RTYPE_GP | 6}, \
1682 {"$a3", RTYPE_GP | 7}, \
1683 {"$s0", RTYPE_GP | 16}, \
1684 {"$s1", RTYPE_GP | 17}, \
1685 {"$s2", RTYPE_GP | 18}, \
1686 {"$s3", RTYPE_GP | 19}, \
1687 {"$s4", RTYPE_GP | 20}, \
1688 {"$s5", RTYPE_GP | 21}, \
1689 {"$s6", RTYPE_GP | 22}, \
1690 {"$s7", RTYPE_GP | 23}, \
1691 {"$t8", RTYPE_GP | 24}, \
1692 {"$t9", RTYPE_GP | 25}, \
1693 {"$k0", RTYPE_GP | 26}, \
1694 {"$kt0", RTYPE_GP | 26}, \
1695 {"$k1", RTYPE_GP | 27}, \
1696 {"$kt1", RTYPE_GP | 27}, \
1697 {"$gp", RTYPE_GP | 28}, \
1698 {"$sp", RTYPE_GP | 29}, \
1699 {"$s8", RTYPE_GP | 30}, \
1700 {"$fp", RTYPE_GP | 30}, \
1701 {"$ra", RTYPE_GP | 31}
1703 #define MIPS16_SPECIAL_REGISTER_NAMES \
1704 {"$pc", RTYPE_PC | 0}
1706 #define MDMX_VECTOR_REGISTER_NAMES \
1707 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
1708 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
1709 {"$v2", RTYPE_VEC | 2}, \
1710 {"$v3", RTYPE_VEC | 3}, \
1711 {"$v4", RTYPE_VEC | 4}, \
1712 {"$v5", RTYPE_VEC | 5}, \
1713 {"$v6", RTYPE_VEC | 6}, \
1714 {"$v7", RTYPE_VEC | 7}, \
1715 {"$v8", RTYPE_VEC | 8}, \
1716 {"$v9", RTYPE_VEC | 9}, \
1717 {"$v10", RTYPE_VEC | 10}, \
1718 {"$v11", RTYPE_VEC | 11}, \
1719 {"$v12", RTYPE_VEC | 12}, \
1720 {"$v13", RTYPE_VEC | 13}, \
1721 {"$v14", RTYPE_VEC | 14}, \
1722 {"$v15", RTYPE_VEC | 15}, \
1723 {"$v16", RTYPE_VEC | 16}, \
1724 {"$v17", RTYPE_VEC | 17}, \
1725 {"$v18", RTYPE_VEC | 18}, \
1726 {"$v19", RTYPE_VEC | 19}, \
1727 {"$v20", RTYPE_VEC | 20}, \
1728 {"$v21", RTYPE_VEC | 21}, \
1729 {"$v22", RTYPE_VEC | 22}, \
1730 {"$v23", RTYPE_VEC | 23}, \
1731 {"$v24", RTYPE_VEC | 24}, \
1732 {"$v25", RTYPE_VEC | 25}, \
1733 {"$v26", RTYPE_VEC | 26}, \
1734 {"$v27", RTYPE_VEC | 27}, \
1735 {"$v28", RTYPE_VEC | 28}, \
1736 {"$v29", RTYPE_VEC | 29}, \
1737 {"$v30", RTYPE_VEC | 30}, \
1738 {"$v31", RTYPE_VEC | 31}
1740 #define MIPS_DSP_ACCUMULATOR_NAMES \
1741 {"$ac0", RTYPE_ACC | 0}, \
1742 {"$ac1", RTYPE_ACC | 1}, \
1743 {"$ac2", RTYPE_ACC | 2}, \
1744 {"$ac3", RTYPE_ACC | 3}
1746 static const struct regname reg_names
[] = {
1747 GENERIC_REGISTER_NUMBERS
,
1749 FPU_CONDITION_CODE_NAMES
,
1750 COPROC_CONDITION_CODE_NAMES
,
1752 /* The $txx registers depends on the abi,
1753 these will be added later into the symbol table from
1754 one of the tables below once mips_abi is set after
1755 parsing of arguments from the command line. */
1756 SYMBOLIC_REGISTER_NAMES
,
1758 MIPS16_SPECIAL_REGISTER_NAMES
,
1759 MDMX_VECTOR_REGISTER_NAMES
,
1760 MIPS_DSP_ACCUMULATOR_NAMES
,
1764 static const struct regname reg_names_o32
[] = {
1765 O32_SYMBOLIC_REGISTER_NAMES
,
1769 static const struct regname reg_names_n32n64
[] = {
1770 N32N64_SYMBOLIC_REGISTER_NAMES
,
1775 reg_lookup (char **s
, unsigned int types
, unsigned int *regnop
)
1782 /* Find end of name. */
1784 if (is_name_beginner (*e
))
1786 while (is_part_of_name (*e
))
1789 /* Terminate name. */
1793 /* Look for a register symbol. */
1794 if ((symbolP
= symbol_find (*s
)) && S_GET_SEGMENT (symbolP
) == reg_section
)
1796 int r
= S_GET_VALUE (symbolP
);
1798 reg
= r
& RNUM_MASK
;
1799 else if ((types
& RTYPE_VEC
) && (r
& ~1) == (RTYPE_GP
| 2))
1800 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
1801 reg
= (r
& RNUM_MASK
) - 2;
1803 /* Else see if this is a register defined in an itbl entry. */
1804 else if ((types
& RTYPE_GP
) && itbl_have_entries
)
1811 if (itbl_get_reg_val (n
, &r
))
1812 reg
= r
& RNUM_MASK
;
1815 /* Advance to next token if a register was recognised. */
1818 else if (types
& RWARN
)
1819 as_warn (_("Unrecognized register name `%s'"), *s
);
1827 /* Return TRUE if opcode MO is valid on the currently selected ISA and
1828 architecture. Use is_opcode_valid_16 for MIPS16 opcodes. */
1831 is_opcode_valid (const struct mips_opcode
*mo
)
1833 int isa
= mips_opts
.isa
;
1836 if (mips_opts
.ase_mdmx
)
1838 if (mips_opts
.ase_dsp
)
1840 if (mips_opts
.ase_dsp
&& ISA_SUPPORTS_DSP64_ASE
)
1842 if (mips_opts
.ase_dspr2
)
1844 if (mips_opts
.ase_mt
)
1846 if (mips_opts
.ase_mips3d
)
1848 if (mips_opts
.ase_smartmips
)
1849 isa
|= INSN_SMARTMIPS
;
1851 /* Don't accept instructions based on the ISA if the CPU does not implement
1852 all the coprocessor insns. */
1853 if (NO_ISA_COP (mips_opts
.arch
)
1854 && COP_INSN (mo
->pinfo
))
1857 if (!OPCODE_IS_MEMBER (mo
, isa
, mips_opts
.arch
))
1860 /* Check whether the instruction or macro requires single-precision or
1861 double-precision floating-point support. Note that this information is
1862 stored differently in the opcode table for insns and macros. */
1863 if (mo
->pinfo
== INSN_MACRO
)
1865 fp_s
= mo
->pinfo2
& INSN2_M_FP_S
;
1866 fp_d
= mo
->pinfo2
& INSN2_M_FP_D
;
1870 fp_s
= mo
->pinfo
& FP_S
;
1871 fp_d
= mo
->pinfo
& FP_D
;
1874 if (fp_d
&& (mips_opts
.soft_float
|| mips_opts
.single_float
))
1877 if (fp_s
&& mips_opts
.soft_float
)
1883 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
1884 selected ISA and architecture. */
1887 is_opcode_valid_16 (const struct mips_opcode
*mo
)
1889 return OPCODE_IS_MEMBER (mo
, mips_opts
.isa
, mips_opts
.arch
) ? TRUE
: FALSE
;
1892 /* This function is called once, at assembler startup time. It should set up
1893 all the tables, etc. that the MD part of the assembler will need. */
1898 const char *retval
= NULL
;
1902 if (mips_pic
!= NO_PIC
)
1904 if (g_switch_seen
&& g_switch_value
!= 0)
1905 as_bad (_("-G may not be used in position-independent code"));
1909 if (! bfd_set_arch_mach (stdoutput
, bfd_arch_mips
, file_mips_arch
))
1910 as_warn (_("Could not set architecture and machine"));
1912 op_hash
= hash_new ();
1914 for (i
= 0; i
< NUMOPCODES
;)
1916 const char *name
= mips_opcodes
[i
].name
;
1918 retval
= hash_insert (op_hash
, name
, (void *) &mips_opcodes
[i
]);
1921 fprintf (stderr
, _("internal error: can't hash `%s': %s\n"),
1922 mips_opcodes
[i
].name
, retval
);
1923 /* Probably a memory allocation problem? Give up now. */
1924 as_fatal (_("Broken assembler. No assembly attempted."));
1928 if (mips_opcodes
[i
].pinfo
!= INSN_MACRO
)
1930 if (!validate_mips_insn (&mips_opcodes
[i
]))
1932 if (nop_insn
.insn_mo
== NULL
&& strcmp (name
, "nop") == 0)
1934 create_insn (&nop_insn
, mips_opcodes
+ i
);
1935 if (mips_fix_loongson2f_nop
)
1936 nop_insn
.insn_opcode
= LOONGSON2F_NOP_INSN
;
1937 nop_insn
.fixed_p
= 1;
1942 while ((i
< NUMOPCODES
) && !strcmp (mips_opcodes
[i
].name
, name
));
1945 mips16_op_hash
= hash_new ();
1948 while (i
< bfd_mips16_num_opcodes
)
1950 const char *name
= mips16_opcodes
[i
].name
;
1952 retval
= hash_insert (mips16_op_hash
, name
, (void *) &mips16_opcodes
[i
]);
1954 as_fatal (_("internal: can't hash `%s': %s"),
1955 mips16_opcodes
[i
].name
, retval
);
1958 if (mips16_opcodes
[i
].pinfo
!= INSN_MACRO
1959 && ((mips16_opcodes
[i
].match
& mips16_opcodes
[i
].mask
)
1960 != mips16_opcodes
[i
].match
))
1962 fprintf (stderr
, _("internal error: bad mips16 opcode: %s %s\n"),
1963 mips16_opcodes
[i
].name
, mips16_opcodes
[i
].args
);
1966 if (mips16_nop_insn
.insn_mo
== NULL
&& strcmp (name
, "nop") == 0)
1968 create_insn (&mips16_nop_insn
, mips16_opcodes
+ i
);
1969 mips16_nop_insn
.fixed_p
= 1;
1973 while (i
< bfd_mips16_num_opcodes
1974 && strcmp (mips16_opcodes
[i
].name
, name
) == 0);
1978 as_fatal (_("Broken assembler. No assembly attempted."));
1980 /* We add all the general register names to the symbol table. This
1981 helps us detect invalid uses of them. */
1982 for (i
= 0; reg_names
[i
].name
; i
++)
1983 symbol_table_insert (symbol_new (reg_names
[i
].name
, reg_section
,
1984 reg_names
[i
].num
, /* & RNUM_MASK, */
1985 &zero_address_frag
));
1987 for (i
= 0; reg_names_n32n64
[i
].name
; i
++)
1988 symbol_table_insert (symbol_new (reg_names_n32n64
[i
].name
, reg_section
,
1989 reg_names_n32n64
[i
].num
, /* & RNUM_MASK, */
1990 &zero_address_frag
));
1992 for (i
= 0; reg_names_o32
[i
].name
; i
++)
1993 symbol_table_insert (symbol_new (reg_names_o32
[i
].name
, reg_section
,
1994 reg_names_o32
[i
].num
, /* & RNUM_MASK, */
1995 &zero_address_frag
));
1997 mips_no_prev_insn ();
2000 mips_cprmask
[0] = 0;
2001 mips_cprmask
[1] = 0;
2002 mips_cprmask
[2] = 0;
2003 mips_cprmask
[3] = 0;
2005 /* set the default alignment for the text section (2**2) */
2006 record_alignment (text_section
, 2);
2008 bfd_set_gp_size (stdoutput
, g_switch_value
);
2013 /* On a native system other than VxWorks, sections must be aligned
2014 to 16 byte boundaries. When configured for an embedded ELF
2015 target, we don't bother. */
2016 if (strncmp (TARGET_OS
, "elf", 3) != 0
2017 && strncmp (TARGET_OS
, "vxworks", 7) != 0)
2019 (void) bfd_set_section_alignment (stdoutput
, text_section
, 4);
2020 (void) bfd_set_section_alignment (stdoutput
, data_section
, 4);
2021 (void) bfd_set_section_alignment (stdoutput
, bss_section
, 4);
2024 /* Create a .reginfo section for register masks and a .mdebug
2025 section for debugging information. */
2033 subseg
= now_subseg
;
2035 /* The ABI says this section should be loaded so that the
2036 running program can access it. However, we don't load it
2037 if we are configured for an embedded target */
2038 flags
= SEC_READONLY
| SEC_DATA
;
2039 if (strncmp (TARGET_OS
, "elf", 3) != 0)
2040 flags
|= SEC_ALLOC
| SEC_LOAD
;
2042 if (mips_abi
!= N64_ABI
)
2044 sec
= subseg_new (".reginfo", (subsegT
) 0);
2046 bfd_set_section_flags (stdoutput
, sec
, flags
);
2047 bfd_set_section_alignment (stdoutput
, sec
, HAVE_NEWABI
? 3 : 2);
2049 mips_regmask_frag
= frag_more (sizeof (Elf32_External_RegInfo
));
2053 /* The 64-bit ABI uses a .MIPS.options section rather than
2054 .reginfo section. */
2055 sec
= subseg_new (".MIPS.options", (subsegT
) 0);
2056 bfd_set_section_flags (stdoutput
, sec
, flags
);
2057 bfd_set_section_alignment (stdoutput
, sec
, 3);
2059 /* Set up the option header. */
2061 Elf_Internal_Options opthdr
;
2064 opthdr
.kind
= ODK_REGINFO
;
2065 opthdr
.size
= (sizeof (Elf_External_Options
)
2066 + sizeof (Elf64_External_RegInfo
));
2069 f
= frag_more (sizeof (Elf_External_Options
));
2070 bfd_mips_elf_swap_options_out (stdoutput
, &opthdr
,
2071 (Elf_External_Options
*) f
);
2073 mips_regmask_frag
= frag_more (sizeof (Elf64_External_RegInfo
));
2077 if (ECOFF_DEBUGGING
)
2079 sec
= subseg_new (".mdebug", (subsegT
) 0);
2080 (void) bfd_set_section_flags (stdoutput
, sec
,
2081 SEC_HAS_CONTENTS
| SEC_READONLY
);
2082 (void) bfd_set_section_alignment (stdoutput
, sec
, 2);
2084 else if (mips_flag_pdr
)
2086 pdr_seg
= subseg_new (".pdr", (subsegT
) 0);
2087 (void) bfd_set_section_flags (stdoutput
, pdr_seg
,
2088 SEC_READONLY
| SEC_RELOC
2090 (void) bfd_set_section_alignment (stdoutput
, pdr_seg
, 2);
2093 subseg_set (seg
, subseg
);
2096 #endif /* OBJ_ELF */
2098 if (! ECOFF_DEBUGGING
)
2101 if (mips_fix_vr4120
)
2102 init_vr4120_conflicts ();
2108 if (! ECOFF_DEBUGGING
)
2113 md_assemble (char *str
)
2115 struct mips_cl_insn insn
;
2116 bfd_reloc_code_real_type unused_reloc
[3]
2117 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
2119 imm_expr
.X_op
= O_absent
;
2120 imm2_expr
.X_op
= O_absent
;
2121 offset_expr
.X_op
= O_absent
;
2122 imm_reloc
[0] = BFD_RELOC_UNUSED
;
2123 imm_reloc
[1] = BFD_RELOC_UNUSED
;
2124 imm_reloc
[2] = BFD_RELOC_UNUSED
;
2125 offset_reloc
[0] = BFD_RELOC_UNUSED
;
2126 offset_reloc
[1] = BFD_RELOC_UNUSED
;
2127 offset_reloc
[2] = BFD_RELOC_UNUSED
;
2129 if (mips_opts
.mips16
)
2130 mips16_ip (str
, &insn
);
2133 mips_ip (str
, &insn
);
2134 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2135 str
, insn
.insn_opcode
));
2140 as_bad ("%s `%s'", insn_error
, str
);
2144 if (insn
.insn_mo
->pinfo
== INSN_MACRO
)
2147 if (mips_opts
.mips16
)
2148 mips16_macro (&insn
);
2155 if (imm_expr
.X_op
!= O_absent
)
2156 append_insn (&insn
, &imm_expr
, imm_reloc
);
2157 else if (offset_expr
.X_op
!= O_absent
)
2158 append_insn (&insn
, &offset_expr
, offset_reloc
);
2160 append_insn (&insn
, NULL
, unused_reloc
);
2164 /* Convenience functions for abstracting away the differences between
2165 MIPS16 and non-MIPS16 relocations. */
2167 static inline bfd_boolean
2168 mips16_reloc_p (bfd_reloc_code_real_type reloc
)
2172 case BFD_RELOC_MIPS16_JMP
:
2173 case BFD_RELOC_MIPS16_GPREL
:
2174 case BFD_RELOC_MIPS16_GOT16
:
2175 case BFD_RELOC_MIPS16_CALL16
:
2176 case BFD_RELOC_MIPS16_HI16_S
:
2177 case BFD_RELOC_MIPS16_HI16
:
2178 case BFD_RELOC_MIPS16_LO16
:
2186 static inline bfd_boolean
2187 got16_reloc_p (bfd_reloc_code_real_type reloc
)
2189 return reloc
== BFD_RELOC_MIPS_GOT16
|| reloc
== BFD_RELOC_MIPS16_GOT16
;
2192 static inline bfd_boolean
2193 hi16_reloc_p (bfd_reloc_code_real_type reloc
)
2195 return reloc
== BFD_RELOC_HI16_S
|| reloc
== BFD_RELOC_MIPS16_HI16_S
;
2198 static inline bfd_boolean
2199 lo16_reloc_p (bfd_reloc_code_real_type reloc
)
2201 return reloc
== BFD_RELOC_LO16
|| reloc
== BFD_RELOC_MIPS16_LO16
;
2204 /* Return true if the given relocation might need a matching %lo().
2205 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
2206 need a matching %lo() when applied to local symbols. */
2208 static inline bfd_boolean
2209 reloc_needs_lo_p (bfd_reloc_code_real_type reloc
)
2211 return (HAVE_IN_PLACE_ADDENDS
2212 && (hi16_reloc_p (reloc
)
2213 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
2214 all GOT16 relocations evaluate to "G". */
2215 || (got16_reloc_p (reloc
) && mips_pic
!= VXWORKS_PIC
)));
2218 /* Return the type of %lo() reloc needed by RELOC, given that
2219 reloc_needs_lo_p. */
2221 static inline bfd_reloc_code_real_type
2222 matching_lo_reloc (bfd_reloc_code_real_type reloc
)
2224 return mips16_reloc_p (reloc
) ? BFD_RELOC_MIPS16_LO16
: BFD_RELOC_LO16
;
2227 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
2230 static inline bfd_boolean
2231 fixup_has_matching_lo_p (fixS
*fixp
)
2233 return (fixp
->fx_next
!= NULL
2234 && fixp
->fx_next
->fx_r_type
== matching_lo_reloc (fixp
->fx_r_type
)
2235 && fixp
->fx_addsy
== fixp
->fx_next
->fx_addsy
2236 && fixp
->fx_offset
== fixp
->fx_next
->fx_offset
);
2239 /* See whether instruction IP reads register REG. CLASS is the type
2243 insn_uses_reg (const struct mips_cl_insn
*ip
, unsigned int reg
,
2244 enum mips_regclass regclass
)
2246 if (regclass
== MIPS16_REG
)
2248 gas_assert (mips_opts
.mips16
);
2249 reg
= mips16_to_32_reg_map
[reg
];
2250 regclass
= MIPS_GR_REG
;
2253 /* Don't report on general register ZERO, since it never changes. */
2254 if (regclass
== MIPS_GR_REG
&& reg
== ZERO
)
2257 if (regclass
== MIPS_FP_REG
)
2259 gas_assert (! mips_opts
.mips16
);
2260 /* If we are called with either $f0 or $f1, we must check $f0.
2261 This is not optimal, because it will introduce an unnecessary
2262 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
2263 need to distinguish reading both $f0 and $f1 or just one of
2264 them. Note that we don't have to check the other way,
2265 because there is no instruction that sets both $f0 and $f1
2266 and requires a delay. */
2267 if ((ip
->insn_mo
->pinfo
& INSN_READ_FPR_S
)
2268 && ((EXTRACT_OPERAND (FS
, *ip
) & ~(unsigned) 1)
2269 == (reg
&~ (unsigned) 1)))
2271 if ((ip
->insn_mo
->pinfo
& INSN_READ_FPR_T
)
2272 && ((EXTRACT_OPERAND (FT
, *ip
) & ~(unsigned) 1)
2273 == (reg
&~ (unsigned) 1)))
2275 if ((ip
->insn_mo
->pinfo2
& INSN2_READ_FPR_Z
)
2276 && ((EXTRACT_OPERAND (FZ
, *ip
) & ~(unsigned) 1)
2277 == (reg
&~ (unsigned) 1)))
2280 else if (! mips_opts
.mips16
)
2282 if ((ip
->insn_mo
->pinfo
& INSN_READ_GPR_S
)
2283 && EXTRACT_OPERAND (RS
, *ip
) == reg
)
2285 if ((ip
->insn_mo
->pinfo
& INSN_READ_GPR_T
)
2286 && EXTRACT_OPERAND (RT
, *ip
) == reg
)
2288 if ((ip
->insn_mo
->pinfo2
& INSN2_READ_GPR_D
)
2289 && EXTRACT_OPERAND (RD
, *ip
) == reg
)
2291 if ((ip
->insn_mo
->pinfo2
& INSN2_READ_GPR_Z
)
2292 && EXTRACT_OPERAND (RZ
, *ip
) == reg
)
2297 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_X
)
2298 && mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (RX
, *ip
)] == reg
)
2300 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_Y
)
2301 && mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (RY
, *ip
)] == reg
)
2303 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_Z
)
2304 && (mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (MOVE32Z
, *ip
)]
2307 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_T
) && reg
== TREG
)
2309 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_SP
) && reg
== SP
)
2311 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_31
) && reg
== RA
)
2313 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_GPR_X
)
2314 && MIPS16_EXTRACT_OPERAND (REGR32
, *ip
) == reg
)
2321 /* This function returns true if modifying a register requires a
2325 reg_needs_delay (unsigned int reg
)
2327 unsigned long prev_pinfo
;
2329 prev_pinfo
= history
[0].insn_mo
->pinfo
;
2330 if (! mips_opts
.noreorder
2331 && (((prev_pinfo
& INSN_LOAD_MEMORY_DELAY
)
2332 && ! gpr_interlocks
)
2333 || ((prev_pinfo
& INSN_LOAD_COPROC_DELAY
)
2334 && ! cop_interlocks
)))
2336 /* A load from a coprocessor or from memory. All load delays
2337 delay the use of general register rt for one instruction. */
2338 /* Itbl support may require additional care here. */
2339 know (prev_pinfo
& INSN_WRITE_GPR_T
);
2340 if (reg
== EXTRACT_OPERAND (RT
, history
[0]))
2347 /* Move all labels in insn_labels to the current insertion point. */
2350 mips_move_labels (void)
2352 segment_info_type
*si
= seg_info (now_seg
);
2353 struct insn_label_list
*l
;
2356 for (l
= si
->label_list
; l
!= NULL
; l
= l
->next
)
2358 gas_assert (S_GET_SEGMENT (l
->label
) == now_seg
);
2359 symbol_set_frag (l
->label
, frag_now
);
2360 val
= (valueT
) frag_now_fix ();
2361 /* mips16 text labels are stored as odd. */
2362 if (mips_opts
.mips16
)
2364 S_SET_VALUE (l
->label
, val
);
2369 s_is_linkonce (symbolS
*sym
, segT from_seg
)
2371 bfd_boolean linkonce
= FALSE
;
2372 segT symseg
= S_GET_SEGMENT (sym
);
2374 if (symseg
!= from_seg
&& !S_IS_LOCAL (sym
))
2376 if ((bfd_get_section_flags (stdoutput
, symseg
) & SEC_LINK_ONCE
))
2379 /* The GNU toolchain uses an extension for ELF: a section
2380 beginning with the magic string .gnu.linkonce is a
2381 linkonce section. */
2382 if (strncmp (segment_name (symseg
), ".gnu.linkonce",
2383 sizeof ".gnu.linkonce" - 1) == 0)
2390 /* Mark instruction labels in mips16 mode. This permits the linker to
2391 handle them specially, such as generating jalx instructions when
2392 needed. We also make them odd for the duration of the assembly, in
2393 order to generate the right sort of code. We will make them even
2394 in the adjust_symtab routine, while leaving them marked. This is
2395 convenient for the debugger and the disassembler. The linker knows
2396 to make them odd again. */
2399 mips16_mark_labels (void)
2401 segment_info_type
*si
= seg_info (now_seg
);
2402 struct insn_label_list
*l
;
2404 if (!mips_opts
.mips16
)
2407 for (l
= si
->label_list
; l
!= NULL
; l
= l
->next
)
2409 symbolS
*label
= l
->label
;
2411 #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
2413 S_SET_OTHER (label
, ELF_ST_SET_MIPS16 (S_GET_OTHER (label
)));
2415 if ((S_GET_VALUE (label
) & 1) == 0
2416 /* Don't adjust the address if the label is global or weak, or
2417 in a link-once section, since we'll be emitting symbol reloc
2418 references to it which will be patched up by the linker, and
2419 the final value of the symbol may or may not be MIPS16. */
2420 && ! S_IS_WEAK (label
)
2421 && ! S_IS_EXTERNAL (label
)
2422 && ! s_is_linkonce (label
, now_seg
))
2423 S_SET_VALUE (label
, S_GET_VALUE (label
) | 1);
2427 /* End the current frag. Make it a variant frag and record the
2431 relax_close_frag (void)
2433 mips_macro_warning
.first_frag
= frag_now
;
2434 frag_var (rs_machine_dependent
, 0, 0,
2435 RELAX_ENCODE (mips_relax
.sizes
[0], mips_relax
.sizes
[1]),
2436 mips_relax
.symbol
, 0, (char *) mips_relax
.first_fixup
);
2438 memset (&mips_relax
.sizes
, 0, sizeof (mips_relax
.sizes
));
2439 mips_relax
.first_fixup
= 0;
2442 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
2443 See the comment above RELAX_ENCODE for more details. */
2446 relax_start (symbolS
*symbol
)
2448 gas_assert (mips_relax
.sequence
== 0);
2449 mips_relax
.sequence
= 1;
2450 mips_relax
.symbol
= symbol
;
2453 /* Start generating the second version of a relaxable sequence.
2454 See the comment above RELAX_ENCODE for more details. */
2459 gas_assert (mips_relax
.sequence
== 1);
2460 mips_relax
.sequence
= 2;
2463 /* End the current relaxable sequence. */
2468 gas_assert (mips_relax
.sequence
== 2);
2469 relax_close_frag ();
2470 mips_relax
.sequence
= 0;
2473 /* Classify an instruction according to the FIX_VR4120_* enumeration.
2474 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
2475 by VR4120 errata. */
2478 classify_vr4120_insn (const char *name
)
2480 if (strncmp (name
, "macc", 4) == 0)
2481 return FIX_VR4120_MACC
;
2482 if (strncmp (name
, "dmacc", 5) == 0)
2483 return FIX_VR4120_DMACC
;
2484 if (strncmp (name
, "mult", 4) == 0)
2485 return FIX_VR4120_MULT
;
2486 if (strncmp (name
, "dmult", 5) == 0)
2487 return FIX_VR4120_DMULT
;
2488 if (strstr (name
, "div"))
2489 return FIX_VR4120_DIV
;
2490 if (strcmp (name
, "mtlo") == 0 || strcmp (name
, "mthi") == 0)
2491 return FIX_VR4120_MTHILO
;
2492 return NUM_FIX_VR4120_CLASSES
;
2495 #define INSN_ERET 0x42000018
2496 #define INSN_DERET 0x4200001f
2498 /* Return the number of instructions that must separate INSN1 and INSN2,
2499 where INSN1 is the earlier instruction. Return the worst-case value
2500 for any INSN2 if INSN2 is null. */
2503 insns_between (const struct mips_cl_insn
*insn1
,
2504 const struct mips_cl_insn
*insn2
)
2506 unsigned long pinfo1
, pinfo2
;
2508 /* This function needs to know which pinfo flags are set for INSN2
2509 and which registers INSN2 uses. The former is stored in PINFO2 and
2510 the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2
2511 will have every flag set and INSN2_USES_REG will always return true. */
2512 pinfo1
= insn1
->insn_mo
->pinfo
;
2513 pinfo2
= insn2
? insn2
->insn_mo
->pinfo
: ~0U;
2515 #define INSN2_USES_REG(REG, CLASS) \
2516 (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
2518 /* For most targets, write-after-read dependencies on the HI and LO
2519 registers must be separated by at least two instructions. */
2520 if (!hilo_interlocks
)
2522 if ((pinfo1
& INSN_READ_LO
) && (pinfo2
& INSN_WRITE_LO
))
2524 if ((pinfo1
& INSN_READ_HI
) && (pinfo2
& INSN_WRITE_HI
))
2528 /* If we're working around r7000 errata, there must be two instructions
2529 between an mfhi or mflo and any instruction that uses the result. */
2530 if (mips_7000_hilo_fix
2531 && MF_HILO_INSN (pinfo1
)
2532 && INSN2_USES_REG (EXTRACT_OPERAND (RD
, *insn1
), MIPS_GR_REG
))
2535 /* If we're working around 24K errata, one instruction is required
2536 if an ERET or DERET is followed by a branch instruction. */
2539 if (insn1
->insn_opcode
== INSN_ERET
2540 || insn1
->insn_opcode
== INSN_DERET
)
2543 || insn2
->insn_opcode
== INSN_ERET
2544 || insn2
->insn_opcode
== INSN_DERET
2545 || (insn2
->insn_mo
->pinfo
2546 & (INSN_UNCOND_BRANCH_DELAY
2547 | INSN_COND_BRANCH_DELAY
2548 | INSN_COND_BRANCH_LIKELY
)) != 0)
2553 /* If working around VR4120 errata, check for combinations that need
2554 a single intervening instruction. */
2555 if (mips_fix_vr4120
)
2557 unsigned int class1
, class2
;
2559 class1
= classify_vr4120_insn (insn1
->insn_mo
->name
);
2560 if (class1
!= NUM_FIX_VR4120_CLASSES
&& vr4120_conflicts
[class1
] != 0)
2564 class2
= classify_vr4120_insn (insn2
->insn_mo
->name
);
2565 if (vr4120_conflicts
[class1
] & (1 << class2
))
2570 if (!mips_opts
.mips16
)
2572 /* Check for GPR or coprocessor load delays. All such delays
2573 are on the RT register. */
2574 /* Itbl support may require additional care here. */
2575 if ((!gpr_interlocks
&& (pinfo1
& INSN_LOAD_MEMORY_DELAY
))
2576 || (!cop_interlocks
&& (pinfo1
& INSN_LOAD_COPROC_DELAY
)))
2578 know (pinfo1
& INSN_WRITE_GPR_T
);
2579 if (INSN2_USES_REG (EXTRACT_OPERAND (RT
, *insn1
), MIPS_GR_REG
))
2583 /* Check for generic coprocessor hazards.
2585 This case is not handled very well. There is no special
2586 knowledge of CP0 handling, and the coprocessors other than
2587 the floating point unit are not distinguished at all. */
2588 /* Itbl support may require additional care here. FIXME!
2589 Need to modify this to include knowledge about
2590 user specified delays! */
2591 else if ((!cop_interlocks
&& (pinfo1
& INSN_COPROC_MOVE_DELAY
))
2592 || (!cop_mem_interlocks
&& (pinfo1
& INSN_COPROC_MEMORY_DELAY
)))
2594 /* Handle cases where INSN1 writes to a known general coprocessor
2595 register. There must be a one instruction delay before INSN2
2596 if INSN2 reads that register, otherwise no delay is needed. */
2597 if (pinfo1
& INSN_WRITE_FPR_T
)
2599 if (INSN2_USES_REG (EXTRACT_OPERAND (FT
, *insn1
), MIPS_FP_REG
))
2602 else if (pinfo1
& INSN_WRITE_FPR_S
)
2604 if (INSN2_USES_REG (EXTRACT_OPERAND (FS
, *insn1
), MIPS_FP_REG
))
2609 /* Read-after-write dependencies on the control registers
2610 require a two-instruction gap. */
2611 if ((pinfo1
& INSN_WRITE_COND_CODE
)
2612 && (pinfo2
& INSN_READ_COND_CODE
))
2615 /* We don't know exactly what INSN1 does. If INSN2 is
2616 also a coprocessor instruction, assume there must be
2617 a one instruction gap. */
2618 if (pinfo2
& INSN_COP
)
2623 /* Check for read-after-write dependencies on the coprocessor
2624 control registers in cases where INSN1 does not need a general
2625 coprocessor delay. This means that INSN1 is a floating point
2626 comparison instruction. */
2627 /* Itbl support may require additional care here. */
2628 else if (!cop_interlocks
2629 && (pinfo1
& INSN_WRITE_COND_CODE
)
2630 && (pinfo2
& INSN_READ_COND_CODE
))
2634 #undef INSN2_USES_REG
2639 /* Return the number of nops that would be needed to work around the
2640 VR4130 mflo/mfhi errata if instruction INSN immediately followed
2641 the MAX_VR4130_NOPS instructions described by HIST. */
2644 nops_for_vr4130 (const struct mips_cl_insn
*hist
,
2645 const struct mips_cl_insn
*insn
)
2649 /* Check if the instruction writes to HI or LO. MTHI and MTLO
2650 are not affected by the errata. */
2652 && ((insn
->insn_mo
->pinfo
& (INSN_WRITE_HI
| INSN_WRITE_LO
)) == 0
2653 || strcmp (insn
->insn_mo
->name
, "mtlo") == 0
2654 || strcmp (insn
->insn_mo
->name
, "mthi") == 0))
2657 /* Search for the first MFLO or MFHI. */
2658 for (i
= 0; i
< MAX_VR4130_NOPS
; i
++)
2659 if (MF_HILO_INSN (hist
[i
].insn_mo
->pinfo
))
2661 /* Extract the destination register. */
2662 if (mips_opts
.mips16
)
2663 reg
= mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (RX
, hist
[i
])];
2665 reg
= EXTRACT_OPERAND (RD
, hist
[i
]);
2667 /* No nops are needed if INSN reads that register. */
2668 if (insn
!= NULL
&& insn_uses_reg (insn
, reg
, MIPS_GR_REG
))
2671 /* ...or if any of the intervening instructions do. */
2672 for (j
= 0; j
< i
; j
++)
2673 if (insn_uses_reg (&hist
[j
], reg
, MIPS_GR_REG
))
2676 return MAX_VR4130_NOPS
- i
;
2681 /* Return the number of nops that would be needed if instruction INSN
2682 immediately followed the MAX_NOPS instructions given by HIST,
2683 where HIST[0] is the most recent instruction. If INSN is null,
2684 return the worse-case number of nops for any instruction. */
2687 nops_for_insn (const struct mips_cl_insn
*hist
,
2688 const struct mips_cl_insn
*insn
)
2690 int i
, nops
, tmp_nops
;
2693 for (i
= 0; i
< MAX_DELAY_NOPS
; i
++)
2695 tmp_nops
= insns_between (hist
+ i
, insn
) - i
;
2696 if (tmp_nops
> nops
)
2700 if (mips_fix_vr4130
)
2702 tmp_nops
= nops_for_vr4130 (hist
, insn
);
2703 if (tmp_nops
> nops
)
2710 /* The variable arguments provide NUM_INSNS extra instructions that
2711 might be added to HIST. Return the largest number of nops that
2712 would be needed after the extended sequence. */
2715 nops_for_sequence (int num_insns
, const struct mips_cl_insn
*hist
, ...)
2718 struct mips_cl_insn buffer
[MAX_NOPS
];
2719 struct mips_cl_insn
*cursor
;
2722 va_start (args
, hist
);
2723 cursor
= buffer
+ num_insns
;
2724 memcpy (cursor
, hist
, (MAX_NOPS
- num_insns
) * sizeof (*cursor
));
2725 while (cursor
> buffer
)
2726 *--cursor
= *va_arg (args
, const struct mips_cl_insn
*);
2728 nops
= nops_for_insn (buffer
, NULL
);
2733 /* Like nops_for_insn, but if INSN is a branch, take into account the
2734 worst-case delay for the branch target. */
2737 nops_for_insn_or_target (const struct mips_cl_insn
*hist
,
2738 const struct mips_cl_insn
*insn
)
2742 nops
= nops_for_insn (hist
, insn
);
2743 if (insn
->insn_mo
->pinfo
& (INSN_UNCOND_BRANCH_DELAY
2744 | INSN_COND_BRANCH_DELAY
2745 | INSN_COND_BRANCH_LIKELY
))
2747 tmp_nops
= nops_for_sequence (2, hist
, insn
, NOP_INSN
);
2748 if (tmp_nops
> nops
)
2751 else if (mips_opts
.mips16
2752 && (insn
->insn_mo
->pinfo
& (MIPS16_INSN_UNCOND_BRANCH
2753 | MIPS16_INSN_COND_BRANCH
)))
2755 tmp_nops
= nops_for_sequence (1, hist
, insn
);
2756 if (tmp_nops
> nops
)
2762 /* Fix NOP issue: Replace nops by "or at,at,zero". */
2765 fix_loongson2f_nop (struct mips_cl_insn
* ip
)
2767 if (strcmp (ip
->insn_mo
->name
, "nop") == 0)
2768 ip
->insn_opcode
= LOONGSON2F_NOP_INSN
;
2771 /* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
2772 jr target pc &= 'hffff_ffff_cfff_ffff. */
2775 fix_loongson2f_jump (struct mips_cl_insn
* ip
)
2777 if (strcmp (ip
->insn_mo
->name
, "j") == 0
2778 || strcmp (ip
->insn_mo
->name
, "jr") == 0
2779 || strcmp (ip
->insn_mo
->name
, "jalr") == 0)
2787 sreg
= EXTRACT_OPERAND (RS
, *ip
);
2788 if (sreg
== ZERO
|| sreg
== KT0
|| sreg
== KT1
|| sreg
== ATREG
)
2791 ep
.X_op
= O_constant
;
2792 ep
.X_add_number
= 0xcfff0000;
2793 macro_build (&ep
, "lui", "t,u", ATREG
, BFD_RELOC_HI16
);
2794 ep
.X_add_number
= 0xffff;
2795 macro_build (&ep
, "ori", "t,r,i", ATREG
, ATREG
, BFD_RELOC_LO16
);
2796 macro_build (NULL
, "and", "d,v,t", sreg
, sreg
, ATREG
);
2801 fix_loongson2f (struct mips_cl_insn
* ip
)
2803 if (mips_fix_loongson2f_nop
)
2804 fix_loongson2f_nop (ip
);
2806 if (mips_fix_loongson2f_jump
)
2807 fix_loongson2f_jump (ip
);
2810 /* Output an instruction. IP is the instruction information.
2811 ADDRESS_EXPR is an operand of the instruction to be used with
2815 append_insn (struct mips_cl_insn
*ip
, expressionS
*address_expr
,
2816 bfd_reloc_code_real_type
*reloc_type
)
2818 unsigned long prev_pinfo
, pinfo
;
2819 unsigned long prev_pinfo2
, pinfo2
;
2820 relax_stateT prev_insn_frag_type
= 0;
2821 bfd_boolean relaxed_branch
= FALSE
;
2822 segment_info_type
*si
= seg_info (now_seg
);
2824 if (mips_fix_loongson2f
)
2825 fix_loongson2f (ip
);
2827 /* Mark instruction labels in mips16 mode. */
2828 mips16_mark_labels ();
2830 file_ase_mips16
|= mips_opts
.mips16
;
2832 prev_pinfo
= history
[0].insn_mo
->pinfo
;
2833 prev_pinfo2
= history
[0].insn_mo
->pinfo2
;
2834 pinfo
= ip
->insn_mo
->pinfo
;
2835 pinfo2
= ip
->insn_mo
->pinfo2
;
2837 if (mips_relax
.sequence
!= 2 && !mips_opts
.noreorder
)
2839 /* There are a lot of optimizations we could do that we don't.
2840 In particular, we do not, in general, reorder instructions.
2841 If you use gcc with optimization, it will reorder
2842 instructions and generally do much more optimization then we
2843 do here; repeating all that work in the assembler would only
2844 benefit hand written assembly code, and does not seem worth
2846 int nops
= (mips_optimize
== 0
2847 ? nops_for_insn (history
, NULL
)
2848 : nops_for_insn_or_target (history
, ip
));
2852 unsigned long old_frag_offset
;
2855 old_frag
= frag_now
;
2856 old_frag_offset
= frag_now_fix ();
2858 for (i
= 0; i
< nops
; i
++)
2863 listing_prev_line ();
2864 /* We may be at the start of a variant frag. In case we
2865 are, make sure there is enough space for the frag
2866 after the frags created by listing_prev_line. The
2867 argument to frag_grow here must be at least as large
2868 as the argument to all other calls to frag_grow in
2869 this file. We don't have to worry about being in the
2870 middle of a variant frag, because the variants insert
2871 all needed nop instructions themselves. */
2875 mips_move_labels ();
2877 #ifndef NO_ECOFF_DEBUGGING
2878 if (ECOFF_DEBUGGING
)
2879 ecoff_fix_loc (old_frag
, old_frag_offset
);
2883 else if (mips_relax
.sequence
!= 2 && prev_nop_frag
!= NULL
)
2885 /* Work out how many nops in prev_nop_frag are needed by IP. */
2886 int nops
= nops_for_insn_or_target (history
, ip
);
2887 gas_assert (nops
<= prev_nop_frag_holds
);
2889 /* Enforce NOPS as a minimum. */
2890 if (nops
> prev_nop_frag_required
)
2891 prev_nop_frag_required
= nops
;
2893 if (prev_nop_frag_holds
== prev_nop_frag_required
)
2895 /* Settle for the current number of nops. Update the history
2896 accordingly (for the benefit of any future .set reorder code). */
2897 prev_nop_frag
= NULL
;
2898 insert_into_history (prev_nop_frag_since
,
2899 prev_nop_frag_holds
, NOP_INSN
);
2903 /* Allow this instruction to replace one of the nops that was
2904 tentatively added to prev_nop_frag. */
2905 prev_nop_frag
->fr_fix
-= mips_opts
.mips16
? 2 : 4;
2906 prev_nop_frag_holds
--;
2907 prev_nop_frag_since
++;
2912 /* The value passed to dwarf2_emit_insn is the distance between
2913 the beginning of the current instruction and the address that
2914 should be recorded in the debug tables. For MIPS16 debug info
2915 we want to use ISA-encoded addresses, so we pass -1 for an
2916 address higher by one than the current. */
2917 dwarf2_emit_insn (mips_opts
.mips16
? -1 : 0);
2920 /* Record the frag type before frag_var. */
2921 if (history
[0].frag
)
2922 prev_insn_frag_type
= history
[0].frag
->fr_type
;
2925 && *reloc_type
== BFD_RELOC_16_PCREL_S2
2926 && (pinfo
& INSN_UNCOND_BRANCH_DELAY
|| pinfo
& INSN_COND_BRANCH_DELAY
2927 || pinfo
& INSN_COND_BRANCH_LIKELY
)
2928 && mips_relax_branch
2929 /* Don't try branch relaxation within .set nomacro, or within
2930 .set noat if we use $at for PIC computations. If it turns
2931 out that the branch was out-of-range, we'll get an error. */
2932 && !mips_opts
.warn_about_macros
2933 && (mips_opts
.at
|| mips_pic
== NO_PIC
)
2934 && !mips_opts
.mips16
)
2936 relaxed_branch
= TRUE
;
2937 add_relaxed_insn (ip
, (relaxed_branch_length
2939 (pinfo
& INSN_UNCOND_BRANCH_DELAY
) ? -1
2940 : (pinfo
& INSN_COND_BRANCH_LIKELY
) ? 1
2943 (pinfo
& INSN_UNCOND_BRANCH_DELAY
,
2944 pinfo
& INSN_COND_BRANCH_LIKELY
,
2945 pinfo
& INSN_WRITE_GPR_31
,
2947 address_expr
->X_add_symbol
,
2948 address_expr
->X_add_number
);
2949 *reloc_type
= BFD_RELOC_UNUSED
;
2951 else if (*reloc_type
> BFD_RELOC_UNUSED
)
2953 /* We need to set up a variant frag. */
2954 gas_assert (mips_opts
.mips16
&& address_expr
!= NULL
);
2955 add_relaxed_insn (ip
, 4, 0,
2957 (*reloc_type
- BFD_RELOC_UNUSED
,
2958 mips16_small
, mips16_ext
,
2959 prev_pinfo
& INSN_UNCOND_BRANCH_DELAY
,
2960 history
[0].mips16_absolute_jump_p
),
2961 make_expr_symbol (address_expr
), 0);
2963 else if (mips_opts
.mips16
2965 && *reloc_type
!= BFD_RELOC_MIPS16_JMP
)
2967 if ((pinfo
& INSN_UNCOND_BRANCH_DELAY
) == 0)
2968 /* Make sure there is enough room to swap this instruction with
2969 a following jump instruction. */
2971 add_fixed_insn (ip
);
2975 if (mips_opts
.mips16
2976 && mips_opts
.noreorder
2977 && (prev_pinfo
& INSN_UNCOND_BRANCH_DELAY
) != 0)
2978 as_warn (_("extended instruction in delay slot"));
2980 if (mips_relax
.sequence
)
2982 /* If we've reached the end of this frag, turn it into a variant
2983 frag and record the information for the instructions we've
2985 if (frag_room () < 4)
2986 relax_close_frag ();
2987 mips_relax
.sizes
[mips_relax
.sequence
- 1] += 4;
2990 if (mips_relax
.sequence
!= 2)
2991 mips_macro_warning
.sizes
[0] += 4;
2992 if (mips_relax
.sequence
!= 1)
2993 mips_macro_warning
.sizes
[1] += 4;
2995 if (mips_opts
.mips16
)
2998 ip
->mips16_absolute_jump_p
= (*reloc_type
== BFD_RELOC_MIPS16_JMP
);
3000 add_fixed_insn (ip
);
3003 if (address_expr
!= NULL
&& *reloc_type
<= BFD_RELOC_UNUSED
)
3005 if (address_expr
->X_op
== O_constant
)
3009 switch (*reloc_type
)
3012 ip
->insn_opcode
|= address_expr
->X_add_number
;
3015 case BFD_RELOC_MIPS_HIGHEST
:
3016 tmp
= (address_expr
->X_add_number
+ 0x800080008000ull
) >> 48;
3017 ip
->insn_opcode
|= tmp
& 0xffff;
3020 case BFD_RELOC_MIPS_HIGHER
:
3021 tmp
= (address_expr
->X_add_number
+ 0x80008000ull
) >> 32;
3022 ip
->insn_opcode
|= tmp
& 0xffff;
3025 case BFD_RELOC_HI16_S
:
3026 tmp
= (address_expr
->X_add_number
+ 0x8000) >> 16;
3027 ip
->insn_opcode
|= tmp
& 0xffff;
3030 case BFD_RELOC_HI16
:
3031 ip
->insn_opcode
|= (address_expr
->X_add_number
>> 16) & 0xffff;
3034 case BFD_RELOC_UNUSED
:
3035 case BFD_RELOC_LO16
:
3036 case BFD_RELOC_MIPS_GOT_DISP
:
3037 ip
->insn_opcode
|= address_expr
->X_add_number
& 0xffff;
3040 case BFD_RELOC_MIPS_JMP
:
3041 if ((address_expr
->X_add_number
& 3) != 0)
3042 as_bad (_("jump to misaligned address (0x%lx)"),
3043 (unsigned long) address_expr
->X_add_number
);
3044 ip
->insn_opcode
|= (address_expr
->X_add_number
>> 2) & 0x3ffffff;
3047 case BFD_RELOC_MIPS16_JMP
:
3048 if ((address_expr
->X_add_number
& 3) != 0)
3049 as_bad (_("jump to misaligned address (0x%lx)"),
3050 (unsigned long) address_expr
->X_add_number
);
3052 (((address_expr
->X_add_number
& 0x7c0000) << 3)
3053 | ((address_expr
->X_add_number
& 0xf800000) >> 7)
3054 | ((address_expr
->X_add_number
& 0x3fffc) >> 2));
3057 case BFD_RELOC_16_PCREL_S2
:
3058 if ((address_expr
->X_add_number
& 3) != 0)
3059 as_bad (_("branch to misaligned address (0x%lx)"),
3060 (unsigned long) address_expr
->X_add_number
);
3061 if (mips_relax_branch
)
3063 if ((address_expr
->X_add_number
+ 0x20000) & ~0x3ffff)
3064 as_bad (_("branch address range overflow (0x%lx)"),
3065 (unsigned long) address_expr
->X_add_number
);
3066 ip
->insn_opcode
|= (address_expr
->X_add_number
>> 2) & 0xffff;
3073 else if (*reloc_type
< BFD_RELOC_UNUSED
)
3076 reloc_howto_type
*howto
;
3079 /* In a compound relocation, it is the final (outermost)
3080 operator that determines the relocated field. */
3081 for (i
= 1; i
< 3; i
++)
3082 if (reloc_type
[i
] == BFD_RELOC_UNUSED
)
3085 howto
= bfd_reloc_type_lookup (stdoutput
, reloc_type
[i
- 1]);
3088 /* To reproduce this failure try assembling gas/testsuites/
3089 gas/mips/mips16-intermix.s with a mips-ecoff targeted
3091 as_bad (_("Unsupported MIPS relocation number %d"), reloc_type
[i
- 1]);
3092 howto
= bfd_reloc_type_lookup (stdoutput
, BFD_RELOC_16
);
3095 ip
->fixp
[0] = fix_new_exp (ip
->frag
, ip
->where
,
3096 bfd_get_reloc_size (howto
),
3098 reloc_type
[0] == BFD_RELOC_16_PCREL_S2
,
3101 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
3102 if (reloc_type
[0] == BFD_RELOC_MIPS16_JMP
3103 && ip
->fixp
[0]->fx_addsy
)
3104 *symbol_get_tc (ip
->fixp
[0]->fx_addsy
) = 1;
3106 /* These relocations can have an addend that won't fit in
3107 4 octets for 64bit assembly. */
3109 && ! howto
->partial_inplace
3110 && (reloc_type
[0] == BFD_RELOC_16
3111 || reloc_type
[0] == BFD_RELOC_32
3112 || reloc_type
[0] == BFD_RELOC_MIPS_JMP
3113 || reloc_type
[0] == BFD_RELOC_GPREL16
3114 || reloc_type
[0] == BFD_RELOC_MIPS_LITERAL
3115 || reloc_type
[0] == BFD_RELOC_GPREL32
3116 || reloc_type
[0] == BFD_RELOC_64
3117 || reloc_type
[0] == BFD_RELOC_CTOR
3118 || reloc_type
[0] == BFD_RELOC_MIPS_SUB
3119 || reloc_type
[0] == BFD_RELOC_MIPS_HIGHEST
3120 || reloc_type
[0] == BFD_RELOC_MIPS_HIGHER
3121 || reloc_type
[0] == BFD_RELOC_MIPS_SCN_DISP
3122 || reloc_type
[0] == BFD_RELOC_MIPS_REL16
3123 || reloc_type
[0] == BFD_RELOC_MIPS_RELGOT
3124 || reloc_type
[0] == BFD_RELOC_MIPS16_GPREL
3125 || hi16_reloc_p (reloc_type
[0])
3126 || lo16_reloc_p (reloc_type
[0])))
3127 ip
->fixp
[0]->fx_no_overflow
= 1;
3129 if (mips_relax
.sequence
)
3131 if (mips_relax
.first_fixup
== 0)
3132 mips_relax
.first_fixup
= ip
->fixp
[0];
3134 else if (reloc_needs_lo_p (*reloc_type
))
3136 struct mips_hi_fixup
*hi_fixup
;
3138 /* Reuse the last entry if it already has a matching %lo. */
3139 hi_fixup
= mips_hi_fixup_list
;
3141 || !fixup_has_matching_lo_p (hi_fixup
->fixp
))
3143 hi_fixup
= ((struct mips_hi_fixup
*)
3144 xmalloc (sizeof (struct mips_hi_fixup
)));
3145 hi_fixup
->next
= mips_hi_fixup_list
;
3146 mips_hi_fixup_list
= hi_fixup
;
3148 hi_fixup
->fixp
= ip
->fixp
[0];
3149 hi_fixup
->seg
= now_seg
;
3152 /* Add fixups for the second and third relocations, if given.
3153 Note that the ABI allows the second relocation to be
3154 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
3155 moment we only use RSS_UNDEF, but we could add support
3156 for the others if it ever becomes necessary. */
3157 for (i
= 1; i
< 3; i
++)
3158 if (reloc_type
[i
] != BFD_RELOC_UNUSED
)
3160 ip
->fixp
[i
] = fix_new (ip
->frag
, ip
->where
,
3161 ip
->fixp
[0]->fx_size
, NULL
, 0,
3162 FALSE
, reloc_type
[i
]);
3164 /* Use fx_tcbit to mark compound relocs. */
3165 ip
->fixp
[0]->fx_tcbit
= 1;
3166 ip
->fixp
[i
]->fx_tcbit
= 1;
3172 /* Update the register mask information. */
3173 if (! mips_opts
.mips16
)
3175 if ((pinfo
& INSN_WRITE_GPR_D
) || (pinfo2
& INSN2_READ_GPR_D
))
3176 mips_gprmask
|= 1 << EXTRACT_OPERAND (RD
, *ip
);
3177 if ((pinfo
& (INSN_WRITE_GPR_T
| INSN_READ_GPR_T
)) != 0)
3178 mips_gprmask
|= 1 << EXTRACT_OPERAND (RT
, *ip
);
3179 if (pinfo
& INSN_READ_GPR_S
)
3180 mips_gprmask
|= 1 << EXTRACT_OPERAND (RS
, *ip
);
3181 if (pinfo
& INSN_WRITE_GPR_31
)
3182 mips_gprmask
|= 1 << RA
;
3183 if (pinfo2
& (INSN2_WRITE_GPR_Z
| INSN2_READ_GPR_Z
))
3184 mips_gprmask
|= 1 << EXTRACT_OPERAND (RZ
, *ip
);
3185 if (pinfo
& INSN_WRITE_FPR_D
)
3186 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FD
, *ip
);
3187 if ((pinfo
& (INSN_WRITE_FPR_S
| INSN_READ_FPR_S
)) != 0)
3188 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FS
, *ip
);
3189 if ((pinfo
& (INSN_WRITE_FPR_T
| INSN_READ_FPR_T
)) != 0)
3190 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FT
, *ip
);
3191 if ((pinfo
& INSN_READ_FPR_R
) != 0)
3192 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FR
, *ip
);
3193 if (pinfo2
& (INSN2_WRITE_FPR_Z
| INSN2_READ_FPR_Z
))
3194 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FZ
, *ip
);
3195 if (pinfo
& INSN_COP
)
3197 /* We don't keep enough information to sort these cases out.
3198 The itbl support does keep this information however, although
3199 we currently don't support itbl fprmats as part of the cop
3200 instruction. May want to add this support in the future. */
3202 /* Never set the bit for $0, which is always zero. */
3203 mips_gprmask
&= ~1 << 0;
3207 if (pinfo
& (MIPS16_INSN_WRITE_X
| MIPS16_INSN_READ_X
))
3208 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (RX
, *ip
);
3209 if (pinfo
& (MIPS16_INSN_WRITE_Y
| MIPS16_INSN_READ_Y
))
3210 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (RY
, *ip
);
3211 if (pinfo
& MIPS16_INSN_WRITE_Z
)
3212 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (RZ
, *ip
);
3213 if (pinfo
& (MIPS16_INSN_WRITE_T
| MIPS16_INSN_READ_T
))
3214 mips_gprmask
|= 1 << TREG
;
3215 if (pinfo
& (MIPS16_INSN_WRITE_SP
| MIPS16_INSN_READ_SP
))
3216 mips_gprmask
|= 1 << SP
;
3217 if (pinfo
& (MIPS16_INSN_WRITE_31
| MIPS16_INSN_READ_31
))
3218 mips_gprmask
|= 1 << RA
;
3219 if (pinfo
& MIPS16_INSN_WRITE_GPR_Y
)
3220 mips_gprmask
|= 1 << MIPS16OP_EXTRACT_REG32R (ip
->insn_opcode
);
3221 if (pinfo
& MIPS16_INSN_READ_Z
)
3222 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z
, *ip
);
3223 if (pinfo
& MIPS16_INSN_READ_GPR_X
)
3224 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (REGR32
, *ip
);
3227 if (mips_relax
.sequence
!= 2 && !mips_opts
.noreorder
)
3229 /* Filling the branch delay slot is more complex. We try to
3230 switch the branch with the previous instruction, which we can
3231 do if the previous instruction does not set up a condition
3232 that the branch tests and if the branch is not itself the
3233 target of any branch. */
3234 if ((pinfo
& INSN_UNCOND_BRANCH_DELAY
)
3235 || (pinfo
& INSN_COND_BRANCH_DELAY
))
3237 if (mips_optimize
< 2
3238 /* If we have seen .set volatile or .set nomove, don't
3240 || mips_opts
.nomove
!= 0
3241 /* We can't swap if the previous instruction's position
3243 || history
[0].fixed_p
3244 /* If the previous previous insn was in a .set
3245 noreorder, we can't swap. Actually, the MIPS
3246 assembler will swap in this situation. However, gcc
3247 configured -with-gnu-as will generate code like
3253 in which we can not swap the bne and INSN. If gcc is
3254 not configured -with-gnu-as, it does not output the
3256 || history
[1].noreorder_p
3257 /* If the branch is itself the target of a branch, we
3258 can not swap. We cheat on this; all we check for is
3259 whether there is a label on this instruction. If
3260 there are any branches to anything other than a
3261 label, users must use .set noreorder. */
3262 || si
->label_list
!= NULL
3263 /* If the previous instruction is in a variant frag
3264 other than this branch's one, we cannot do the swap.
3265 This does not apply to the mips16, which uses variant
3266 frags for different purposes. */
3267 || (! mips_opts
.mips16
3268 && prev_insn_frag_type
== rs_machine_dependent
)
3269 /* Check for conflicts between the branch and the instructions
3270 before the candidate delay slot. */
3271 || nops_for_insn (history
+ 1, ip
) > 0
3272 /* Check for conflicts between the swapped sequence and the
3273 target of the branch. */
3274 || nops_for_sequence (2, history
+ 1, ip
, history
) > 0
3275 /* We do not swap with a trap instruction, since it
3276 complicates trap handlers to have the trap
3277 instruction be in a delay slot. */
3278 || (prev_pinfo
& INSN_TRAP
)
3279 /* If the branch reads a register that the previous
3280 instruction sets, we can not swap. */
3281 || (! mips_opts
.mips16
3282 && (prev_pinfo
& INSN_WRITE_GPR_T
)
3283 && insn_uses_reg (ip
, EXTRACT_OPERAND (RT
, history
[0]),
3285 || (! mips_opts
.mips16
3286 && (prev_pinfo
& INSN_WRITE_GPR_D
)
3287 && insn_uses_reg (ip
, EXTRACT_OPERAND (RD
, history
[0]),
3289 || (! mips_opts
.mips16
3290 && (prev_pinfo2
& INSN2_WRITE_GPR_Z
)
3291 && insn_uses_reg (ip
, EXTRACT_OPERAND (RZ
, history
[0]),
3293 || (mips_opts
.mips16
3294 && (((prev_pinfo
& MIPS16_INSN_WRITE_X
)
3296 (ip
, MIPS16_EXTRACT_OPERAND (RX
, history
[0]),
3298 || ((prev_pinfo
& MIPS16_INSN_WRITE_Y
)
3300 (ip
, MIPS16_EXTRACT_OPERAND (RY
, history
[0]),
3302 || ((prev_pinfo
& MIPS16_INSN_WRITE_Z
)
3304 (ip
, MIPS16_EXTRACT_OPERAND (RZ
, history
[0]),
3306 || ((prev_pinfo
& MIPS16_INSN_WRITE_T
)
3307 && insn_uses_reg (ip
, TREG
, MIPS_GR_REG
))
3308 || ((prev_pinfo
& MIPS16_INSN_WRITE_31
)
3309 && insn_uses_reg (ip
, RA
, MIPS_GR_REG
))
3310 || ((prev_pinfo
& MIPS16_INSN_WRITE_GPR_Y
)
3311 && insn_uses_reg (ip
,
3312 MIPS16OP_EXTRACT_REG32R
3313 (history
[0].insn_opcode
),
3315 /* If the branch writes a register that the previous
3316 instruction sets, we can not swap (we know that
3317 branches write only to RD or to $31). */
3318 || (! mips_opts
.mips16
3319 && (prev_pinfo
& INSN_WRITE_GPR_T
)
3320 && (((pinfo
& INSN_WRITE_GPR_D
)
3321 && (EXTRACT_OPERAND (RT
, history
[0])
3322 == EXTRACT_OPERAND (RD
, *ip
)))
3323 || ((pinfo
& INSN_WRITE_GPR_31
)
3324 && EXTRACT_OPERAND (RT
, history
[0]) == RA
)))
3325 || (! mips_opts
.mips16
3326 && (prev_pinfo
& INSN_WRITE_GPR_D
)
3327 && (((pinfo
& INSN_WRITE_GPR_D
)
3328 && (EXTRACT_OPERAND (RD
, history
[0])
3329 == EXTRACT_OPERAND (RD
, *ip
)))
3330 || ((pinfo
& INSN_WRITE_GPR_31
)
3331 && EXTRACT_OPERAND (RD
, history
[0]) == RA
)))
3332 || (mips_opts
.mips16
3333 && (pinfo
& MIPS16_INSN_WRITE_31
)
3334 && ((prev_pinfo
& MIPS16_INSN_WRITE_31
)
3335 || ((prev_pinfo
& MIPS16_INSN_WRITE_GPR_Y
)
3336 && (MIPS16OP_EXTRACT_REG32R (history
[0].insn_opcode
)
3338 /* If the branch writes a register that the previous
3339 instruction reads, we can not swap (we know that
3340 branches only write to RD or to $31). */
3341 || (! mips_opts
.mips16
3342 && (pinfo
& INSN_WRITE_GPR_D
)
3343 && insn_uses_reg (&history
[0],
3344 EXTRACT_OPERAND (RD
, *ip
),
3346 || (! mips_opts
.mips16
3347 && (pinfo
& INSN_WRITE_GPR_31
)
3348 && insn_uses_reg (&history
[0], RA
, MIPS_GR_REG
))
3349 || (mips_opts
.mips16
3350 && (pinfo
& MIPS16_INSN_WRITE_31
)
3351 && insn_uses_reg (&history
[0], RA
, MIPS_GR_REG
))
3352 /* If one instruction sets a condition code and the
3353 other one uses a condition code, we can not swap. */
3354 || ((pinfo
& INSN_READ_COND_CODE
)
3355 && (prev_pinfo
& INSN_WRITE_COND_CODE
))
3356 || ((pinfo
& INSN_WRITE_COND_CODE
)
3357 && (prev_pinfo
& INSN_READ_COND_CODE
))
3358 /* If the previous instruction uses the PC, we can not
3360 || (mips_opts
.mips16
3361 && (prev_pinfo
& MIPS16_INSN_READ_PC
))
3362 /* If the previous instruction had a fixup in mips16
3363 mode, we can not swap. This normally means that the
3364 previous instruction was a 4 byte branch anyhow. */
3365 || (mips_opts
.mips16
&& history
[0].fixp
[0])
3366 /* If the previous instruction is a sync, sync.l, or
3367 sync.p, we can not swap. */
3368 || (prev_pinfo
& INSN_SYNC
)
3369 /* If the previous instruction is an ERET or
3370 DERET, avoid the swap. */
3371 || (history
[0].insn_opcode
== INSN_ERET
)
3372 || (history
[0].insn_opcode
== INSN_DERET
))
3374 if (mips_opts
.mips16
3375 && (pinfo
& INSN_UNCOND_BRANCH_DELAY
)
3376 && (pinfo
& (MIPS16_INSN_READ_X
| MIPS16_INSN_READ_31
))
3377 && ISA_SUPPORTS_MIPS16E
)
3379 /* Convert MIPS16 jr/jalr into a "compact" jump. */
3380 ip
->insn_opcode
|= 0x0080;
3382 insert_into_history (0, 1, ip
);
3386 /* We could do even better for unconditional branches to
3387 portions of this object file; we could pick up the
3388 instruction at the destination, put it in the delay
3389 slot, and bump the destination address. */
3390 insert_into_history (0, 1, ip
);
3394 if (mips_relax
.sequence
)
3395 mips_relax
.sizes
[mips_relax
.sequence
- 1] += 4;
3399 /* It looks like we can actually do the swap. */
3400 struct mips_cl_insn delay
= history
[0];
3401 if (mips_opts
.mips16
)
3403 know (delay
.frag
== ip
->frag
);
3404 move_insn (ip
, delay
.frag
, delay
.where
);
3405 move_insn (&delay
, ip
->frag
, ip
->where
+ insn_length (ip
));
3407 else if (relaxed_branch
)
3409 /* Add the delay slot instruction to the end of the
3410 current frag and shrink the fixed part of the
3411 original frag. If the branch occupies the tail of
3412 the latter, move it backwards to cover the gap. */
3413 delay
.frag
->fr_fix
-= 4;
3414 if (delay
.frag
== ip
->frag
)
3415 move_insn (ip
, ip
->frag
, ip
->where
- 4);
3416 add_fixed_insn (&delay
);
3420 move_insn (&delay
, ip
->frag
, ip
->where
);
3421 move_insn (ip
, history
[0].frag
, history
[0].where
);
3425 insert_into_history (0, 1, &delay
);
3428 /* If that was an unconditional branch, forget the previous
3429 insn information. */
3430 if (pinfo
& INSN_UNCOND_BRANCH_DELAY
)
3432 mips_no_prev_insn ();
3435 else if (pinfo
& INSN_COND_BRANCH_LIKELY
)
3437 /* We don't yet optimize a branch likely. What we should do
3438 is look at the target, copy the instruction found there
3439 into the delay slot, and increment the branch to jump to
3440 the next instruction. */
3441 insert_into_history (0, 1, ip
);
3445 insert_into_history (0, 1, ip
);
3448 insert_into_history (0, 1, ip
);
3450 /* We just output an insn, so the next one doesn't have a label. */
3451 mips_clear_insn_labels ();
3454 /* Forget that there was any previous instruction or label. */
3457 mips_no_prev_insn (void)
3459 prev_nop_frag
= NULL
;
3460 insert_into_history (0, ARRAY_SIZE (history
), NOP_INSN
);
3461 mips_clear_insn_labels ();
3464 /* This function must be called before we emit something other than
3465 instructions. It is like mips_no_prev_insn except that it inserts
3466 any NOPS that might be needed by previous instructions. */
3469 mips_emit_delays (void)
3471 if (! mips_opts
.noreorder
)
3473 int nops
= nops_for_insn (history
, NULL
);
3477 add_fixed_insn (NOP_INSN
);
3478 mips_move_labels ();
3481 mips_no_prev_insn ();
3484 /* Start a (possibly nested) noreorder block. */
3487 start_noreorder (void)
3489 if (mips_opts
.noreorder
== 0)
3494 /* None of the instructions before the .set noreorder can be moved. */
3495 for (i
= 0; i
< ARRAY_SIZE (history
); i
++)
3496 history
[i
].fixed_p
= 1;
3498 /* Insert any nops that might be needed between the .set noreorder
3499 block and the previous instructions. We will later remove any
3500 nops that turn out not to be needed. */
3501 nops
= nops_for_insn (history
, NULL
);
3504 if (mips_optimize
!= 0)
3506 /* Record the frag which holds the nop instructions, so
3507 that we can remove them if we don't need them. */
3508 frag_grow (mips_opts
.mips16
? nops
* 2 : nops
* 4);
3509 prev_nop_frag
= frag_now
;
3510 prev_nop_frag_holds
= nops
;
3511 prev_nop_frag_required
= 0;
3512 prev_nop_frag_since
= 0;
3515 for (; nops
> 0; --nops
)
3516 add_fixed_insn (NOP_INSN
);
3518 /* Move on to a new frag, so that it is safe to simply
3519 decrease the size of prev_nop_frag. */
3520 frag_wane (frag_now
);
3522 mips_move_labels ();
3524 mips16_mark_labels ();
3525 mips_clear_insn_labels ();
3527 mips_opts
.noreorder
++;
3528 mips_any_noreorder
= 1;
3531 /* End a nested noreorder block. */
3534 end_noreorder (void)
3537 mips_opts
.noreorder
--;
3538 if (mips_opts
.noreorder
== 0 && prev_nop_frag
!= NULL
)
3540 /* Commit to inserting prev_nop_frag_required nops and go back to
3541 handling nop insertion the .set reorder way. */
3542 prev_nop_frag
->fr_fix
-= ((prev_nop_frag_holds
- prev_nop_frag_required
)
3543 * (mips_opts
.mips16
? 2 : 4));
3544 insert_into_history (prev_nop_frag_since
,
3545 prev_nop_frag_required
, NOP_INSN
);
3546 prev_nop_frag
= NULL
;
3550 /* Set up global variables for the start of a new macro. */
3555 memset (&mips_macro_warning
.sizes
, 0, sizeof (mips_macro_warning
.sizes
));
3556 mips_macro_warning
.delay_slot_p
= (mips_opts
.noreorder
3557 && (history
[0].insn_mo
->pinfo
3558 & (INSN_UNCOND_BRANCH_DELAY
3559 | INSN_COND_BRANCH_DELAY
3560 | INSN_COND_BRANCH_LIKELY
)) != 0);
3563 /* Given that a macro is longer than 4 bytes, return the appropriate warning
3564 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
3565 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
3568 macro_warning (relax_substateT subtype
)
3570 if (subtype
& RELAX_DELAY_SLOT
)
3571 return _("Macro instruction expanded into multiple instructions"
3572 " in a branch delay slot");
3573 else if (subtype
& RELAX_NOMACRO
)
3574 return _("Macro instruction expanded into multiple instructions");
3579 /* Finish up a macro. Emit warnings as appropriate. */
3584 if (mips_macro_warning
.sizes
[0] > 4 || mips_macro_warning
.sizes
[1] > 4)
3586 relax_substateT subtype
;
3588 /* Set up the relaxation warning flags. */
3590 if (mips_macro_warning
.sizes
[1] > mips_macro_warning
.sizes
[0])
3591 subtype
|= RELAX_SECOND_LONGER
;
3592 if (mips_opts
.warn_about_macros
)
3593 subtype
|= RELAX_NOMACRO
;
3594 if (mips_macro_warning
.delay_slot_p
)
3595 subtype
|= RELAX_DELAY_SLOT
;
3597 if (mips_macro_warning
.sizes
[0] > 4 && mips_macro_warning
.sizes
[1] > 4)
3599 /* Either the macro has a single implementation or both
3600 implementations are longer than 4 bytes. Emit the
3602 const char *msg
= macro_warning (subtype
);
3604 as_warn ("%s", msg
);
3608 /* One implementation might need a warning but the other
3609 definitely doesn't. */
3610 mips_macro_warning
.first_frag
->fr_subtype
|= subtype
;
3615 /* Read a macro's relocation codes from *ARGS and store them in *R.
3616 The first argument in *ARGS will be either the code for a single
3617 relocation or -1 followed by the three codes that make up a
3618 composite relocation. */
3621 macro_read_relocs (va_list *args
, bfd_reloc_code_real_type
*r
)
3625 next
= va_arg (*args
, int);
3627 r
[0] = (bfd_reloc_code_real_type
) next
;
3629 for (i
= 0; i
< 3; i
++)
3630 r
[i
] = (bfd_reloc_code_real_type
) va_arg (*args
, int);
3633 /* Build an instruction created by a macro expansion. This is passed
3634 a pointer to the count of instructions created so far, an
3635 expression, the name of the instruction to build, an operand format
3636 string, and corresponding arguments. */
3639 macro_build (expressionS
*ep
, const char *name
, const char *fmt
, ...)
3641 const struct mips_opcode
*mo
;
3642 struct mips_cl_insn insn
;
3643 bfd_reloc_code_real_type r
[3];
3646 va_start (args
, fmt
);
3648 if (mips_opts
.mips16
)
3650 mips16_macro_build (ep
, name
, fmt
, &args
);
3655 r
[0] = BFD_RELOC_UNUSED
;
3656 r
[1] = BFD_RELOC_UNUSED
;
3657 r
[2] = BFD_RELOC_UNUSED
;
3658 mo
= (struct mips_opcode
*) hash_find (op_hash
, name
);
3660 gas_assert (strcmp (name
, mo
->name
) == 0);
3664 /* Search until we get a match for NAME. It is assumed here that
3665 macros will never generate MDMX, MIPS-3D, or MT instructions. */
3666 if (strcmp (fmt
, mo
->args
) == 0
3667 && mo
->pinfo
!= INSN_MACRO
3668 && is_opcode_valid (mo
))
3672 gas_assert (mo
->name
);
3673 gas_assert (strcmp (name
, mo
->name
) == 0);
3676 create_insn (&insn
, mo
);
3694 INSERT_OPERAND (SHAMT
, insn
, va_arg (args
, int));
3699 /* Note that in the macro case, these arguments are already
3700 in MSB form. (When handling the instruction in the
3701 non-macro case, these arguments are sizes from which
3702 MSB values must be calculated.) */
3703 INSERT_OPERAND (INSMSB
, insn
, va_arg (args
, int));
3709 /* Note that in the macro case, these arguments are already
3710 in MSBD form. (When handling the instruction in the
3711 non-macro case, these arguments are sizes from which
3712 MSBD values must be calculated.) */
3713 INSERT_OPERAND (EXTMSBD
, insn
, va_arg (args
, int));
3717 INSERT_OPERAND (SEQI
, insn
, va_arg (args
, int));
3726 INSERT_OPERAND (BP
, insn
, va_arg (args
, int));
3732 INSERT_OPERAND (RT
, insn
, va_arg (args
, int));
3736 INSERT_OPERAND (CODE
, insn
, va_arg (args
, int));
3741 INSERT_OPERAND (FT
, insn
, va_arg (args
, int));
3747 INSERT_OPERAND (RD
, insn
, va_arg (args
, int));
3752 int tmp
= va_arg (args
, int);
3754 INSERT_OPERAND (RT
, insn
, tmp
);
3755 INSERT_OPERAND (RD
, insn
, tmp
);
3761 INSERT_OPERAND (FS
, insn
, va_arg (args
, int));
3768 INSERT_OPERAND (SHAMT
, insn
, va_arg (args
, int));
3772 INSERT_OPERAND (FD
, insn
, va_arg (args
, int));
3776 INSERT_OPERAND (CODE20
, insn
, va_arg (args
, int));
3780 INSERT_OPERAND (CODE19
, insn
, va_arg (args
, int));
3784 INSERT_OPERAND (CODE2
, insn
, va_arg (args
, int));
3791 INSERT_OPERAND (RS
, insn
, va_arg (args
, int));
3796 macro_read_relocs (&args
, r
);
3797 gas_assert (*r
== BFD_RELOC_GPREL16
3798 || *r
== BFD_RELOC_MIPS_HIGHER
3799 || *r
== BFD_RELOC_HI16_S
3800 || *r
== BFD_RELOC_LO16
3801 || *r
== BFD_RELOC_MIPS_GOT_OFST
);
3805 macro_read_relocs (&args
, r
);
3809 macro_read_relocs (&args
, r
);
3810 gas_assert (ep
!= NULL
3811 && (ep
->X_op
== O_constant
3812 || (ep
->X_op
== O_symbol
3813 && (*r
== BFD_RELOC_MIPS_HIGHEST
3814 || *r
== BFD_RELOC_HI16_S
3815 || *r
== BFD_RELOC_HI16
3816 || *r
== BFD_RELOC_GPREL16
3817 || *r
== BFD_RELOC_MIPS_GOT_HI16
3818 || *r
== BFD_RELOC_MIPS_CALL_HI16
))));
3822 gas_assert (ep
!= NULL
);
3825 * This allows macro() to pass an immediate expression for
3826 * creating short branches without creating a symbol.
3828 * We don't allow branch relaxation for these branches, as
3829 * they should only appear in ".set nomacro" anyway.
3831 if (ep
->X_op
== O_constant
)
3833 if ((ep
->X_add_number
& 3) != 0)
3834 as_bad (_("branch to misaligned address (0x%lx)"),
3835 (unsigned long) ep
->X_add_number
);
3836 if ((ep
->X_add_number
+ 0x20000) & ~0x3ffff)
3837 as_bad (_("branch address range overflow (0x%lx)"),
3838 (unsigned long) ep
->X_add_number
);
3839 insn
.insn_opcode
|= (ep
->X_add_number
>> 2) & 0xffff;
3843 *r
= BFD_RELOC_16_PCREL_S2
;
3847 gas_assert (ep
!= NULL
);
3848 *r
= BFD_RELOC_MIPS_JMP
;
3852 INSERT_OPERAND (COPZ
, insn
, va_arg (args
, unsigned long));
3856 INSERT_OPERAND (CACHE
, insn
, va_arg (args
, unsigned long));
3865 gas_assert (*r
== BFD_RELOC_UNUSED
? ep
== NULL
: ep
!= NULL
);
3867 append_insn (&insn
, ep
, r
);
3871 mips16_macro_build (expressionS
*ep
, const char *name
, const char *fmt
,
3874 struct mips_opcode
*mo
;
3875 struct mips_cl_insn insn
;
3876 bfd_reloc_code_real_type r
[3]
3877 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
3879 mo
= (struct mips_opcode
*) hash_find (mips16_op_hash
, name
);
3881 gas_assert (strcmp (name
, mo
->name
) == 0);
3883 while (strcmp (fmt
, mo
->args
) != 0 || mo
->pinfo
== INSN_MACRO
)
3886 gas_assert (mo
->name
);
3887 gas_assert (strcmp (name
, mo
->name
) == 0);
3890 create_insn (&insn
, mo
);
3908 MIPS16_INSERT_OPERAND (RY
, insn
, va_arg (*args
, int));
3913 MIPS16_INSERT_OPERAND (RX
, insn
, va_arg (*args
, int));
3917 MIPS16_INSERT_OPERAND (RZ
, insn
, va_arg (*args
, int));
3921 MIPS16_INSERT_OPERAND (MOVE32Z
, insn
, va_arg (*args
, int));
3931 MIPS16_INSERT_OPERAND (REGR32
, insn
, va_arg (*args
, int));
3938 regno
= va_arg (*args
, int);
3939 regno
= ((regno
& 7) << 2) | ((regno
& 0x18) >> 3);
3940 MIPS16_INSERT_OPERAND (REG32R
, insn
, regno
);
3961 gas_assert (ep
!= NULL
);
3963 if (ep
->X_op
!= O_constant
)
3964 *r
= (int) BFD_RELOC_UNUSED
+ c
;
3967 mips16_immed (NULL
, 0, c
, ep
->X_add_number
, FALSE
, FALSE
,
3968 FALSE
, &insn
.insn_opcode
, &insn
.use_extend
,
3971 *r
= BFD_RELOC_UNUSED
;
3977 MIPS16_INSERT_OPERAND (IMM6
, insn
, va_arg (*args
, int));
3984 gas_assert (*r
== BFD_RELOC_UNUSED
? ep
== NULL
: ep
!= NULL
);
3986 append_insn (&insn
, ep
, r
);
3990 * Sign-extend 32-bit mode constants that have bit 31 set and all
3991 * higher bits unset.
3994 normalize_constant_expr (expressionS
*ex
)
3996 if (ex
->X_op
== O_constant
3997 && IS_ZEXT_32BIT_NUM (ex
->X_add_number
))
3998 ex
->X_add_number
= (((ex
->X_add_number
& 0xffffffff) ^ 0x80000000)
4003 * Sign-extend 32-bit mode address offsets that have bit 31 set and
4004 * all higher bits unset.
4007 normalize_address_expr (expressionS
*ex
)
4009 if (((ex
->X_op
== O_constant
&& HAVE_32BIT_ADDRESSES
)
4010 || (ex
->X_op
== O_symbol
&& HAVE_32BIT_SYMBOLS
))
4011 && IS_ZEXT_32BIT_NUM (ex
->X_add_number
))
4012 ex
->X_add_number
= (((ex
->X_add_number
& 0xffffffff) ^ 0x80000000)
4017 * Generate a "jalr" instruction with a relocation hint to the called
4018 * function. This occurs in NewABI PIC code.
4021 macro_build_jalr (expressionS
*ep
)
4025 if (MIPS_JALR_HINT_P (ep
))
4030 macro_build (NULL
, "jalr", "d,s", RA
, PIC_CALL_REG
);
4031 if (MIPS_JALR_HINT_P (ep
))
4032 fix_new_exp (frag_now
, f
- frag_now
->fr_literal
,
4033 4, ep
, FALSE
, BFD_RELOC_MIPS_JALR
);
4037 * Generate a "lui" instruction.
4040 macro_build_lui (expressionS
*ep
, int regnum
)
4042 expressionS high_expr
;
4043 const struct mips_opcode
*mo
;
4044 struct mips_cl_insn insn
;
4045 bfd_reloc_code_real_type r
[3]
4046 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
4047 const char *name
= "lui";
4048 const char *fmt
= "t,u";
4050 gas_assert (! mips_opts
.mips16
);
4054 if (high_expr
.X_op
== O_constant
)
4056 /* We can compute the instruction now without a relocation entry. */
4057 high_expr
.X_add_number
= ((high_expr
.X_add_number
+ 0x8000)
4059 *r
= BFD_RELOC_UNUSED
;
4063 gas_assert (ep
->X_op
== O_symbol
);
4064 /* _gp_disp is a special case, used from s_cpload.
4065 __gnu_local_gp is used if mips_no_shared. */
4066 gas_assert (mips_pic
== NO_PIC
4068 && strcmp (S_GET_NAME (ep
->X_add_symbol
), "_gp_disp") == 0)
4069 || (! mips_in_shared
4070 && strcmp (S_GET_NAME (ep
->X_add_symbol
),
4071 "__gnu_local_gp") == 0));
4072 *r
= BFD_RELOC_HI16_S
;
4075 mo
= hash_find (op_hash
, name
);
4076 gas_assert (strcmp (name
, mo
->name
) == 0);
4077 gas_assert (strcmp (fmt
, mo
->args
) == 0);
4078 create_insn (&insn
, mo
);
4080 insn
.insn_opcode
= insn
.insn_mo
->match
;
4081 INSERT_OPERAND (RT
, insn
, regnum
);
4082 if (*r
== BFD_RELOC_UNUSED
)
4084 insn
.insn_opcode
|= high_expr
.X_add_number
;
4085 append_insn (&insn
, NULL
, r
);
4088 append_insn (&insn
, &high_expr
, r
);
4091 /* Generate a sequence of instructions to do a load or store from a constant
4092 offset off of a base register (breg) into/from a target register (treg),
4093 using AT if necessary. */
4095 macro_build_ldst_constoffset (expressionS
*ep
, const char *op
,
4096 int treg
, int breg
, int dbl
)
4098 gas_assert (ep
->X_op
== O_constant
);
4100 /* Sign-extending 32-bit constants makes their handling easier. */
4102 normalize_constant_expr (ep
);
4104 /* Right now, this routine can only handle signed 32-bit constants. */
4105 if (! IS_SEXT_32BIT_NUM(ep
->X_add_number
+ 0x8000))
4106 as_warn (_("operand overflow"));
4108 if (IS_SEXT_16BIT_NUM(ep
->X_add_number
))
4110 /* Signed 16-bit offset will fit in the op. Easy! */
4111 macro_build (ep
, op
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
4115 /* 32-bit offset, need multiple instructions and AT, like:
4116 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
4117 addu $tempreg,$tempreg,$breg
4118 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
4119 to handle the complete offset. */
4120 macro_build_lui (ep
, AT
);
4121 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
4122 macro_build (ep
, op
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
4125 as_bad (_("Macro used $at after \".set noat\""));
4130 * Generates code to set the $at register to true (one)
4131 * if reg is less than the immediate expression.
4134 set_at (int reg
, int unsignedp
)
4136 if (imm_expr
.X_op
== O_constant
4137 && imm_expr
.X_add_number
>= -0x8000
4138 && imm_expr
.X_add_number
< 0x8000)
4139 macro_build (&imm_expr
, unsignedp
? "sltiu" : "slti", "t,r,j",
4140 AT
, reg
, BFD_RELOC_LO16
);
4143 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
4144 macro_build (NULL
, unsignedp
? "sltu" : "slt", "d,v,t", AT
, reg
, AT
);
4148 /* Warn if an expression is not a constant. */
4151 check_absolute_expr (struct mips_cl_insn
*ip
, expressionS
*ex
)
4153 if (ex
->X_op
== O_big
)
4154 as_bad (_("unsupported large constant"));
4155 else if (ex
->X_op
!= O_constant
)
4156 as_bad (_("Instruction %s requires absolute expression"),
4159 if (HAVE_32BIT_GPRS
)
4160 normalize_constant_expr (ex
);
4163 /* Count the leading zeroes by performing a binary chop. This is a
4164 bulky bit of source, but performance is a LOT better for the
4165 majority of values than a simple loop to count the bits:
4166 for (lcnt = 0; (lcnt < 32); lcnt++)
4167 if ((v) & (1 << (31 - lcnt)))
4169 However it is not code size friendly, and the gain will drop a bit
4170 on certain cached systems.
4172 #define COUNT_TOP_ZEROES(v) \
4173 (((v) & ~0xffff) == 0 \
4174 ? ((v) & ~0xff) == 0 \
4175 ? ((v) & ~0xf) == 0 \
4176 ? ((v) & ~0x3) == 0 \
4177 ? ((v) & ~0x1) == 0 \
4182 : ((v) & ~0x7) == 0 \
4185 : ((v) & ~0x3f) == 0 \
4186 ? ((v) & ~0x1f) == 0 \
4189 : ((v) & ~0x7f) == 0 \
4192 : ((v) & ~0xfff) == 0 \
4193 ? ((v) & ~0x3ff) == 0 \
4194 ? ((v) & ~0x1ff) == 0 \
4197 : ((v) & ~0x7ff) == 0 \
4200 : ((v) & ~0x3fff) == 0 \
4201 ? ((v) & ~0x1fff) == 0 \
4204 : ((v) & ~0x7fff) == 0 \
4207 : ((v) & ~0xffffff) == 0 \
4208 ? ((v) & ~0xfffff) == 0 \
4209 ? ((v) & ~0x3ffff) == 0 \
4210 ? ((v) & ~0x1ffff) == 0 \
4213 : ((v) & ~0x7ffff) == 0 \
4216 : ((v) & ~0x3fffff) == 0 \
4217 ? ((v) & ~0x1fffff) == 0 \
4220 : ((v) & ~0x7fffff) == 0 \
4223 : ((v) & ~0xfffffff) == 0 \
4224 ? ((v) & ~0x3ffffff) == 0 \
4225 ? ((v) & ~0x1ffffff) == 0 \
4228 : ((v) & ~0x7ffffff) == 0 \
4231 : ((v) & ~0x3fffffff) == 0 \
4232 ? ((v) & ~0x1fffffff) == 0 \
4235 : ((v) & ~0x7fffffff) == 0 \
4240 * This routine generates the least number of instructions necessary to load
4241 * an absolute expression value into a register.
4244 load_register (int reg
, expressionS
*ep
, int dbl
)
4247 expressionS hi32
, lo32
;
4249 if (ep
->X_op
!= O_big
)
4251 gas_assert (ep
->X_op
== O_constant
);
4253 /* Sign-extending 32-bit constants makes their handling easier. */
4255 normalize_constant_expr (ep
);
4257 if (IS_SEXT_16BIT_NUM (ep
->X_add_number
))
4259 /* We can handle 16 bit signed values with an addiu to
4260 $zero. No need to ever use daddiu here, since $zero and
4261 the result are always correct in 32 bit mode. */
4262 macro_build (ep
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
4265 else if (ep
->X_add_number
>= 0 && ep
->X_add_number
< 0x10000)
4267 /* We can handle 16 bit unsigned values with an ori to
4269 macro_build (ep
, "ori", "t,r,i", reg
, 0, BFD_RELOC_LO16
);
4272 else if ((IS_SEXT_32BIT_NUM (ep
->X_add_number
)))
4274 /* 32 bit values require an lui. */
4275 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_HI16
);
4276 if ((ep
->X_add_number
& 0xffff) != 0)
4277 macro_build (ep
, "ori", "t,r,i", reg
, reg
, BFD_RELOC_LO16
);
4282 /* The value is larger than 32 bits. */
4284 if (!dbl
|| HAVE_32BIT_GPRS
)
4288 sprintf_vma (value
, ep
->X_add_number
);
4289 as_bad (_("Number (0x%s) larger than 32 bits"), value
);
4290 macro_build (ep
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
4294 if (ep
->X_op
!= O_big
)
4297 hi32
.X_add_number
= (valueT
) hi32
.X_add_number
>> 16;
4298 hi32
.X_add_number
= (valueT
) hi32
.X_add_number
>> 16;
4299 hi32
.X_add_number
&= 0xffffffff;
4301 lo32
.X_add_number
&= 0xffffffff;
4305 gas_assert (ep
->X_add_number
> 2);
4306 if (ep
->X_add_number
== 3)
4307 generic_bignum
[3] = 0;
4308 else if (ep
->X_add_number
> 4)
4309 as_bad (_("Number larger than 64 bits"));
4310 lo32
.X_op
= O_constant
;
4311 lo32
.X_add_number
= generic_bignum
[0] + (generic_bignum
[1] << 16);
4312 hi32
.X_op
= O_constant
;
4313 hi32
.X_add_number
= generic_bignum
[2] + (generic_bignum
[3] << 16);
4316 if (hi32
.X_add_number
== 0)
4321 unsigned long hi
, lo
;
4323 if (hi32
.X_add_number
== (offsetT
) 0xffffffff)
4325 if ((lo32
.X_add_number
& 0xffff8000) == 0xffff8000)
4327 macro_build (&lo32
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
4330 if (lo32
.X_add_number
& 0x80000000)
4332 macro_build (&lo32
, "lui", "t,u", reg
, BFD_RELOC_HI16
);
4333 if (lo32
.X_add_number
& 0xffff)
4334 macro_build (&lo32
, "ori", "t,r,i", reg
, reg
, BFD_RELOC_LO16
);
4339 /* Check for 16bit shifted constant. We know that hi32 is
4340 non-zero, so start the mask on the first bit of the hi32
4345 unsigned long himask
, lomask
;
4349 himask
= 0xffff >> (32 - shift
);
4350 lomask
= (0xffff << shift
) & 0xffffffff;
4354 himask
= 0xffff << (shift
- 32);
4357 if ((hi32
.X_add_number
& ~(offsetT
) himask
) == 0
4358 && (lo32
.X_add_number
& ~(offsetT
) lomask
) == 0)
4362 tmp
.X_op
= O_constant
;
4364 tmp
.X_add_number
= ((hi32
.X_add_number
<< (32 - shift
))
4365 | (lo32
.X_add_number
>> shift
));
4367 tmp
.X_add_number
= hi32
.X_add_number
>> (shift
- 32);
4368 macro_build (&tmp
, "ori", "t,r,i", reg
, 0, BFD_RELOC_LO16
);
4369 macro_build (NULL
, (shift
>= 32) ? "dsll32" : "dsll", "d,w,<",
4370 reg
, reg
, (shift
>= 32) ? shift
- 32 : shift
);
4375 while (shift
<= (64 - 16));
4377 /* Find the bit number of the lowest one bit, and store the
4378 shifted value in hi/lo. */
4379 hi
= (unsigned long) (hi32
.X_add_number
& 0xffffffff);
4380 lo
= (unsigned long) (lo32
.X_add_number
& 0xffffffff);
4384 while ((lo
& 1) == 0)
4389 lo
|= (hi
& (((unsigned long) 1 << bit
) - 1)) << (32 - bit
);
4395 while ((hi
& 1) == 0)
4404 /* Optimize if the shifted value is a (power of 2) - 1. */
4405 if ((hi
== 0 && ((lo
+ 1) & lo
) == 0)
4406 || (lo
== 0xffffffff && ((hi
+ 1) & hi
) == 0))
4408 shift
= COUNT_TOP_ZEROES ((unsigned int) hi32
.X_add_number
);
4413 /* This instruction will set the register to be all
4415 tmp
.X_op
= O_constant
;
4416 tmp
.X_add_number
= (offsetT
) -1;
4417 macro_build (&tmp
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
4421 macro_build (NULL
, (bit
>= 32) ? "dsll32" : "dsll", "d,w,<",
4422 reg
, reg
, (bit
>= 32) ? bit
- 32 : bit
);
4424 macro_build (NULL
, (shift
>= 32) ? "dsrl32" : "dsrl", "d,w,<",
4425 reg
, reg
, (shift
>= 32) ? shift
- 32 : shift
);
4430 /* Sign extend hi32 before calling load_register, because we can
4431 generally get better code when we load a sign extended value. */
4432 if ((hi32
.X_add_number
& 0x80000000) != 0)
4433 hi32
.X_add_number
|= ~(offsetT
) 0xffffffff;
4434 load_register (reg
, &hi32
, 0);
4437 if ((lo32
.X_add_number
& 0xffff0000) == 0)
4441 macro_build (NULL
, "dsll32", "d,w,<", reg
, freg
, 0);
4449 if ((freg
== 0) && (lo32
.X_add_number
== (offsetT
) 0xffffffff))
4451 macro_build (&lo32
, "lui", "t,u", reg
, BFD_RELOC_HI16
);
4452 macro_build (NULL
, "dsrl32", "d,w,<", reg
, reg
, 0);
4458 macro_build (NULL
, "dsll", "d,w,<", reg
, freg
, 16);
4462 mid16
.X_add_number
>>= 16;
4463 macro_build (&mid16
, "ori", "t,r,i", reg
, freg
, BFD_RELOC_LO16
);
4464 macro_build (NULL
, "dsll", "d,w,<", reg
, reg
, 16);
4467 if ((lo32
.X_add_number
& 0xffff) != 0)
4468 macro_build (&lo32
, "ori", "t,r,i", reg
, freg
, BFD_RELOC_LO16
);
4472 load_delay_nop (void)
4474 if (!gpr_interlocks
)
4475 macro_build (NULL
, "nop", "");
4478 /* Load an address into a register. */
4481 load_address (int reg
, expressionS
*ep
, int *used_at
)
4483 if (ep
->X_op
!= O_constant
4484 && ep
->X_op
!= O_symbol
)
4486 as_bad (_("expression too complex"));
4487 ep
->X_op
= O_constant
;
4490 if (ep
->X_op
== O_constant
)
4492 load_register (reg
, ep
, HAVE_64BIT_ADDRESSES
);
4496 if (mips_pic
== NO_PIC
)
4498 /* If this is a reference to a GP relative symbol, we want
4499 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
4501 lui $reg,<sym> (BFD_RELOC_HI16_S)
4502 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
4503 If we have an addend, we always use the latter form.
4505 With 64bit address space and a usable $at we want
4506 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4507 lui $at,<sym> (BFD_RELOC_HI16_S)
4508 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4509 daddiu $at,<sym> (BFD_RELOC_LO16)
4513 If $at is already in use, we use a path which is suboptimal
4514 on superscalar processors.
4515 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4516 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4518 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
4520 daddiu $reg,<sym> (BFD_RELOC_LO16)
4522 For GP relative symbols in 64bit address space we can use
4523 the same sequence as in 32bit address space. */
4524 if (HAVE_64BIT_SYMBOLS
)
4526 if ((valueT
) ep
->X_add_number
<= MAX_GPREL_OFFSET
4527 && !nopic_need_relax (ep
->X_add_symbol
, 1))
4529 relax_start (ep
->X_add_symbol
);
4530 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
,
4531 mips_gp_register
, BFD_RELOC_GPREL16
);
4535 if (*used_at
== 0 && mips_opts
.at
)
4537 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_HIGHEST
);
4538 macro_build (ep
, "lui", "t,u", AT
, BFD_RELOC_HI16_S
);
4539 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
,
4540 BFD_RELOC_MIPS_HIGHER
);
4541 macro_build (ep
, "daddiu", "t,r,j", AT
, AT
, BFD_RELOC_LO16
);
4542 macro_build (NULL
, "dsll32", "d,w,<", reg
, reg
, 0);
4543 macro_build (NULL
, "daddu", "d,v,t", reg
, reg
, AT
);
4548 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_HIGHEST
);
4549 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
,
4550 BFD_RELOC_MIPS_HIGHER
);
4551 macro_build (NULL
, "dsll", "d,w,<", reg
, reg
, 16);
4552 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
, BFD_RELOC_HI16_S
);
4553 macro_build (NULL
, "dsll", "d,w,<", reg
, reg
, 16);
4554 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
, BFD_RELOC_LO16
);
4557 if (mips_relax
.sequence
)
4562 if ((valueT
) ep
->X_add_number
<= MAX_GPREL_OFFSET
4563 && !nopic_need_relax (ep
->X_add_symbol
, 1))
4565 relax_start (ep
->X_add_symbol
);
4566 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
,
4567 mips_gp_register
, BFD_RELOC_GPREL16
);
4570 macro_build_lui (ep
, reg
);
4571 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j",
4572 reg
, reg
, BFD_RELOC_LO16
);
4573 if (mips_relax
.sequence
)
4577 else if (!mips_big_got
)
4581 /* If this is a reference to an external symbol, we want
4582 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4584 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4586 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
4587 If there is a constant, it must be added in after.
4589 If we have NewABI, we want
4590 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
4591 unless we're referencing a global symbol with a non-zero
4592 offset, in which case cst must be added separately. */
4595 if (ep
->X_add_number
)
4597 ex
.X_add_number
= ep
->X_add_number
;
4598 ep
->X_add_number
= 0;
4599 relax_start (ep
->X_add_symbol
);
4600 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4601 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
4602 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
4603 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4604 ex
.X_op
= O_constant
;
4605 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j",
4606 reg
, reg
, BFD_RELOC_LO16
);
4607 ep
->X_add_number
= ex
.X_add_number
;
4610 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4611 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
4612 if (mips_relax
.sequence
)
4617 ex
.X_add_number
= ep
->X_add_number
;
4618 ep
->X_add_number
= 0;
4619 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4620 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4622 relax_start (ep
->X_add_symbol
);
4624 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4628 if (ex
.X_add_number
!= 0)
4630 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
4631 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4632 ex
.X_op
= O_constant
;
4633 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j",
4634 reg
, reg
, BFD_RELOC_LO16
);
4638 else if (mips_big_got
)
4642 /* This is the large GOT case. If this is a reference to an
4643 external symbol, we want
4644 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4646 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
4648 Otherwise, for a reference to a local symbol in old ABI, we want
4649 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4651 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
4652 If there is a constant, it must be added in after.
4654 In the NewABI, for local symbols, with or without offsets, we want:
4655 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
4656 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
4660 ex
.X_add_number
= ep
->X_add_number
;
4661 ep
->X_add_number
= 0;
4662 relax_start (ep
->X_add_symbol
);
4663 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_GOT_HI16
);
4664 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
4665 reg
, reg
, mips_gp_register
);
4666 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)",
4667 reg
, BFD_RELOC_MIPS_GOT_LO16
, reg
);
4668 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
4669 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4670 else if (ex
.X_add_number
)
4672 ex
.X_op
= O_constant
;
4673 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4677 ep
->X_add_number
= ex
.X_add_number
;
4679 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4680 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
4681 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4682 BFD_RELOC_MIPS_GOT_OFST
);
4687 ex
.X_add_number
= ep
->X_add_number
;
4688 ep
->X_add_number
= 0;
4689 relax_start (ep
->X_add_symbol
);
4690 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_GOT_HI16
);
4691 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
4692 reg
, reg
, mips_gp_register
);
4693 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)",
4694 reg
, BFD_RELOC_MIPS_GOT_LO16
, reg
);
4696 if (reg_needs_delay (mips_gp_register
))
4698 /* We need a nop before loading from $gp. This special
4699 check is required because the lui which starts the main
4700 instruction stream does not refer to $gp, and so will not
4701 insert the nop which may be required. */
4702 macro_build (NULL
, "nop", "");
4704 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4705 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4707 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4711 if (ex
.X_add_number
!= 0)
4713 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
4714 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4715 ex
.X_op
= O_constant
;
4716 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4724 if (!mips_opts
.at
&& *used_at
== 1)
4725 as_bad (_("Macro used $at after \".set noat\""));
4728 /* Move the contents of register SOURCE into register DEST. */
4731 move_register (int dest
, int source
)
4733 macro_build (NULL
, HAVE_32BIT_GPRS
? "addu" : "daddu", "d,v,t",
4737 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
4738 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4739 The two alternatives are:
4741 Global symbol Local sybmol
4742 ------------- ------------
4743 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4745 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4747 load_got_offset emits the first instruction and add_got_offset
4748 emits the second for a 16-bit offset or add_got_offset_hilo emits
4749 a sequence to add a 32-bit offset using a scratch register. */
4752 load_got_offset (int dest
, expressionS
*local
)
4757 global
.X_add_number
= 0;
4759 relax_start (local
->X_add_symbol
);
4760 macro_build (&global
, ADDRESS_LOAD_INSN
, "t,o(b)", dest
,
4761 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4763 macro_build (local
, ADDRESS_LOAD_INSN
, "t,o(b)", dest
,
4764 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4769 add_got_offset (int dest
, expressionS
*local
)
4773 global
.X_op
= O_constant
;
4774 global
.X_op_symbol
= NULL
;
4775 global
.X_add_symbol
= NULL
;
4776 global
.X_add_number
= local
->X_add_number
;
4778 relax_start (local
->X_add_symbol
);
4779 macro_build (&global
, ADDRESS_ADDI_INSN
, "t,r,j",
4780 dest
, dest
, BFD_RELOC_LO16
);
4782 macro_build (local
, ADDRESS_ADDI_INSN
, "t,r,j", dest
, dest
, BFD_RELOC_LO16
);
4787 add_got_offset_hilo (int dest
, expressionS
*local
, int tmp
)
4790 int hold_mips_optimize
;
4792 global
.X_op
= O_constant
;
4793 global
.X_op_symbol
= NULL
;
4794 global
.X_add_symbol
= NULL
;
4795 global
.X_add_number
= local
->X_add_number
;
4797 relax_start (local
->X_add_symbol
);
4798 load_register (tmp
, &global
, HAVE_64BIT_ADDRESSES
);
4800 /* Set mips_optimize around the lui instruction to avoid
4801 inserting an unnecessary nop after the lw. */
4802 hold_mips_optimize
= mips_optimize
;
4804 macro_build_lui (&global
, tmp
);
4805 mips_optimize
= hold_mips_optimize
;
4806 macro_build (local
, ADDRESS_ADDI_INSN
, "t,r,j", tmp
, tmp
, BFD_RELOC_LO16
);
4809 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", dest
, dest
, tmp
);
4814 * This routine implements the seemingly endless macro or synthesized
4815 * instructions and addressing modes in the mips assembly language. Many
4816 * of these macros are simple and are similar to each other. These could
4817 * probably be handled by some kind of table or grammar approach instead of
4818 * this verbose method. Others are not simple macros but are more like
4819 * optimizing code generation.
4820 * One interesting optimization is when several store macros appear
4821 * consecutively that would load AT with the upper half of the same address.
4822 * The ensuing load upper instructions are ommited. This implies some kind
4823 * of global optimization. We currently only optimize within a single macro.
4824 * For many of the load and store macros if the address is specified as a
4825 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4826 * first load register 'at' with zero and use it as the base register. The
4827 * mips assembler simply uses register $zero. Just one tiny optimization
4831 macro (struct mips_cl_insn
*ip
)
4833 unsigned int treg
, sreg
, dreg
, breg
;
4834 unsigned int tempreg
;
4849 bfd_reloc_code_real_type r
;
4850 int hold_mips_optimize
;
4852 gas_assert (! mips_opts
.mips16
);
4854 treg
= EXTRACT_OPERAND (RT
, *ip
);
4855 dreg
= EXTRACT_OPERAND (RD
, *ip
);
4856 sreg
= breg
= EXTRACT_OPERAND (RS
, *ip
);
4857 mask
= ip
->insn_mo
->mask
;
4859 expr1
.X_op
= O_constant
;
4860 expr1
.X_op_symbol
= NULL
;
4861 expr1
.X_add_symbol
= NULL
;
4862 expr1
.X_add_number
= 1;
4876 expr1
.X_add_number
= 8;
4877 macro_build (&expr1
, "bgez", "s,p", sreg
);
4879 macro_build (NULL
, "nop", "");
4881 move_register (dreg
, sreg
);
4882 macro_build (NULL
, dbl
? "dsub" : "sub", "d,v,t", dreg
, 0, sreg
);
4905 if (imm_expr
.X_op
== O_constant
4906 && imm_expr
.X_add_number
>= -0x8000
4907 && imm_expr
.X_add_number
< 0x8000)
4909 macro_build (&imm_expr
, s
, "t,r,j", treg
, sreg
, BFD_RELOC_LO16
);
4913 load_register (AT
, &imm_expr
, dbl
);
4914 macro_build (NULL
, s2
, "d,v,t", treg
, sreg
, AT
);
4933 if (imm_expr
.X_op
== O_constant
4934 && imm_expr
.X_add_number
>= 0
4935 && imm_expr
.X_add_number
< 0x10000)
4937 if (mask
!= M_NOR_I
)
4938 macro_build (&imm_expr
, s
, "t,r,i", treg
, sreg
, BFD_RELOC_LO16
);
4941 macro_build (&imm_expr
, "ori", "t,r,i",
4942 treg
, sreg
, BFD_RELOC_LO16
);
4943 macro_build (NULL
, "nor", "d,v,t", treg
, treg
, 0);
4949 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
4950 macro_build (NULL
, s2
, "d,v,t", treg
, sreg
, AT
);
4954 switch (imm_expr
.X_add_number
)
4957 macro_build (NULL
, "nop", "");
4960 macro_build (NULL
, "packrl.ph", "d,s,t", treg
, treg
, sreg
);
4963 macro_build (NULL
, "balign", "t,s,2", treg
, sreg
,
4964 (int) imm_expr
.X_add_number
);
4983 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4985 macro_build (&offset_expr
, s
, "s,t,p", sreg
, ZERO
);
4989 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
4990 macro_build (&offset_expr
, s
, "s,t,p", sreg
, AT
);
4998 macro_build (&offset_expr
, likely
? "bgezl" : "bgez", "s,p", sreg
);
5003 macro_build (&offset_expr
, likely
? "blezl" : "blez", "s,p", treg
);
5007 macro_build (NULL
, "slt", "d,v,t", AT
, sreg
, treg
);
5008 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, ZERO
);
5014 /* Check for > max integer. */
5015 maxnum
= 0x7fffffff;
5016 if (HAVE_64BIT_GPRS
&& sizeof (maxnum
) > 4)
5023 if (imm_expr
.X_op
== O_constant
5024 && imm_expr
.X_add_number
>= maxnum
5025 && (HAVE_32BIT_GPRS
|| sizeof (maxnum
) > 4))
5028 /* Result is always false. */
5030 macro_build (NULL
, "nop", "");
5032 macro_build (&offset_expr
, "bnel", "s,t,p", ZERO
, ZERO
);
5035 if (imm_expr
.X_op
!= O_constant
)
5036 as_bad (_("Unsupported large constant"));
5037 ++imm_expr
.X_add_number
;
5041 if (mask
== M_BGEL_I
)
5043 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
5045 macro_build (&offset_expr
, likely
? "bgezl" : "bgez", "s,p", sreg
);
5048 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
5050 macro_build (&offset_expr
, likely
? "bgtzl" : "bgtz", "s,p", sreg
);
5053 maxnum
= 0x7fffffff;
5054 if (HAVE_64BIT_GPRS
&& sizeof (maxnum
) > 4)
5061 maxnum
= - maxnum
- 1;
5062 if (imm_expr
.X_op
== O_constant
5063 && imm_expr
.X_add_number
<= maxnum
5064 && (HAVE_32BIT_GPRS
|| sizeof (maxnum
) > 4))
5067 /* result is always true */
5068 as_warn (_("Branch %s is always true"), ip
->insn_mo
->name
);
5069 macro_build (&offset_expr
, "b", "p");
5074 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, ZERO
);
5084 macro_build (&offset_expr
, likely
? "beql" : "beq",
5085 "s,t,p", ZERO
, treg
);
5089 macro_build (NULL
, "sltu", "d,v,t", AT
, sreg
, treg
);
5090 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, ZERO
);
5098 && imm_expr
.X_op
== O_constant
5099 && imm_expr
.X_add_number
== -1))
5101 if (imm_expr
.X_op
!= O_constant
)
5102 as_bad (_("Unsupported large constant"));
5103 ++imm_expr
.X_add_number
;
5107 if (mask
== M_BGEUL_I
)
5109 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
5111 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
5113 macro_build (&offset_expr
, likely
? "bnel" : "bne",
5114 "s,t,p", sreg
, ZERO
);
5119 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, ZERO
);
5127 macro_build (&offset_expr
, likely
? "bgtzl" : "bgtz", "s,p", sreg
);
5132 macro_build (&offset_expr
, likely
? "bltzl" : "bltz", "s,p", treg
);
5136 macro_build (NULL
, "slt", "d,v,t", AT
, treg
, sreg
);
5137 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, ZERO
);
5145 macro_build (&offset_expr
, likely
? "bnel" : "bne",
5146 "s,t,p", sreg
, ZERO
);
5152 macro_build (NULL
, "sltu", "d,v,t", AT
, treg
, sreg
);
5153 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, ZERO
);
5161 macro_build (&offset_expr
, likely
? "blezl" : "blez", "s,p", sreg
);
5166 macro_build (&offset_expr
, likely
? "bgezl" : "bgez", "s,p", treg
);
5170 macro_build (NULL
, "slt", "d,v,t", AT
, treg
, sreg
);
5171 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, ZERO
);
5177 maxnum
= 0x7fffffff;
5178 if (HAVE_64BIT_GPRS
&& sizeof (maxnum
) > 4)
5185 if (imm_expr
.X_op
== O_constant
5186 && imm_expr
.X_add_number
>= maxnum
5187 && (HAVE_32BIT_GPRS
|| sizeof (maxnum
) > 4))
5189 if (imm_expr
.X_op
!= O_constant
)
5190 as_bad (_("Unsupported large constant"));
5191 ++imm_expr
.X_add_number
;
5195 if (mask
== M_BLTL_I
)
5197 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
5199 macro_build (&offset_expr
, likely
? "bltzl" : "bltz", "s,p", sreg
);
5202 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
5204 macro_build (&offset_expr
, likely
? "blezl" : "blez", "s,p", sreg
);
5209 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, ZERO
);
5217 macro_build (&offset_expr
, likely
? "beql" : "beq",
5218 "s,t,p", sreg
, ZERO
);
5224 macro_build (NULL
, "sltu", "d,v,t", AT
, treg
, sreg
);
5225 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, ZERO
);
5233 && imm_expr
.X_op
== O_constant
5234 && imm_expr
.X_add_number
== -1))
5236 if (imm_expr
.X_op
!= O_constant
)
5237 as_bad (_("Unsupported large constant"));
5238 ++imm_expr
.X_add_number
;
5242 if (mask
== M_BLTUL_I
)
5244 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
5246 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
5248 macro_build (&offset_expr
, likely
? "beql" : "beq",
5249 "s,t,p", sreg
, ZERO
);
5254 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, ZERO
);
5262 macro_build (&offset_expr
, likely
? "bltzl" : "bltz", "s,p", sreg
);
5267 macro_build (&offset_expr
, likely
? "bgtzl" : "bgtz", "s,p", treg
);
5271 macro_build (NULL
, "slt", "d,v,t", AT
, sreg
, treg
);
5272 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, ZERO
);
5282 macro_build (&offset_expr
, likely
? "bnel" : "bne",
5283 "s,t,p", ZERO
, treg
);
5287 macro_build (NULL
, "sltu", "d,v,t", AT
, sreg
, treg
);
5288 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, ZERO
);
5293 /* Use unsigned arithmetic. */
5297 if (imm_expr
.X_op
!= O_constant
|| imm2_expr
.X_op
!= O_constant
)
5299 as_bad (_("Unsupported large constant"));
5304 pos
= imm_expr
.X_add_number
;
5305 size
= imm2_expr
.X_add_number
;
5310 as_bad (_("Improper position (%lu)"), (unsigned long) pos
);
5313 if (size
== 0 || size
> 64 || (pos
+ size
- 1) > 63)
5315 as_bad (_("Improper extract size (%lu, position %lu)"),
5316 (unsigned long) size
, (unsigned long) pos
);
5320 if (size
<= 32 && pos
< 32)
5325 else if (size
<= 32)
5335 macro_build ((expressionS
*) NULL
, s
, fmt
, treg
, sreg
, (int) pos
,
5342 /* Use unsigned arithmetic. */
5346 if (imm_expr
.X_op
!= O_constant
|| imm2_expr
.X_op
!= O_constant
)
5348 as_bad (_("Unsupported large constant"));
5353 pos
= imm_expr
.X_add_number
;
5354 size
= imm2_expr
.X_add_number
;
5359 as_bad (_("Improper position (%lu)"), (unsigned long) pos
);
5362 if (size
== 0 || size
> 64 || (pos
+ size
- 1) > 63)
5364 as_bad (_("Improper insert size (%lu, position %lu)"),
5365 (unsigned long) size
, (unsigned long) pos
);
5369 if (pos
< 32 && (pos
+ size
- 1) < 32)
5384 macro_build ((expressionS
*) NULL
, s
, fmt
, treg
, sreg
, (int) pos
,
5385 (int) (pos
+ size
- 1));
5401 as_warn (_("Divide by zero."));
5403 macro_build (NULL
, "teq", "s,t,q", ZERO
, ZERO
, 7);
5405 macro_build (NULL
, "break", "c", 7);
5412 macro_build (NULL
, "teq", "s,t,q", treg
, ZERO
, 7);
5413 macro_build (NULL
, dbl
? "ddiv" : "div", "z,s,t", sreg
, treg
);
5417 expr1
.X_add_number
= 8;
5418 macro_build (&expr1
, "bne", "s,t,p", treg
, ZERO
);
5419 macro_build (NULL
, dbl
? "ddiv" : "div", "z,s,t", sreg
, treg
);
5420 macro_build (NULL
, "break", "c", 7);
5422 expr1
.X_add_number
= -1;
5424 load_register (AT
, &expr1
, dbl
);
5425 expr1
.X_add_number
= mips_trap
? (dbl
? 12 : 8) : (dbl
? 20 : 16);
5426 macro_build (&expr1
, "bne", "s,t,p", treg
, AT
);
5429 expr1
.X_add_number
= 1;
5430 load_register (AT
, &expr1
, dbl
);
5431 macro_build (NULL
, "dsll32", "d,w,<", AT
, AT
, 31);
5435 expr1
.X_add_number
= 0x80000000;
5436 macro_build (&expr1
, "lui", "t,u", AT
, BFD_RELOC_HI16
);
5440 macro_build (NULL
, "teq", "s,t,q", sreg
, AT
, 6);
5441 /* We want to close the noreorder block as soon as possible, so
5442 that later insns are available for delay slot filling. */
5447 expr1
.X_add_number
= 8;
5448 macro_build (&expr1
, "bne", "s,t,p", sreg
, AT
);
5449 macro_build (NULL
, "nop", "");
5451 /* We want to close the noreorder block as soon as possible, so
5452 that later insns are available for delay slot filling. */
5455 macro_build (NULL
, "break", "c", 6);
5457 macro_build (NULL
, s
, "d", dreg
);
5496 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
5498 as_warn (_("Divide by zero."));
5500 macro_build (NULL
, "teq", "s,t,q", ZERO
, ZERO
, 7);
5502 macro_build (NULL
, "break", "c", 7);
5505 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
5507 if (strcmp (s2
, "mflo") == 0)
5508 move_register (dreg
, sreg
);
5510 move_register (dreg
, ZERO
);
5513 if (imm_expr
.X_op
== O_constant
5514 && imm_expr
.X_add_number
== -1
5515 && s
[strlen (s
) - 1] != 'u')
5517 if (strcmp (s2
, "mflo") == 0)
5519 macro_build (NULL
, dbl
? "dneg" : "neg", "d,w", dreg
, sreg
);
5522 move_register (dreg
, ZERO
);
5527 load_register (AT
, &imm_expr
, dbl
);
5528 macro_build (NULL
, s
, "z,s,t", sreg
, AT
);
5529 macro_build (NULL
, s2
, "d", dreg
);
5551 macro_build (NULL
, "teq", "s,t,q", treg
, ZERO
, 7);
5552 macro_build (NULL
, s
, "z,s,t", sreg
, treg
);
5553 /* We want to close the noreorder block as soon as possible, so
5554 that later insns are available for delay slot filling. */
5559 expr1
.X_add_number
= 8;
5560 macro_build (&expr1
, "bne", "s,t,p", treg
, ZERO
);
5561 macro_build (NULL
, s
, "z,s,t", sreg
, treg
);
5563 /* We want to close the noreorder block as soon as possible, so
5564 that later insns are available for delay slot filling. */
5566 macro_build (NULL
, "break", "c", 7);
5568 macro_build (NULL
, s2
, "d", dreg
);
5580 /* Load the address of a symbol into a register. If breg is not
5581 zero, we then add a base register to it. */
5583 if (dbl
&& HAVE_32BIT_GPRS
)
5584 as_warn (_("dla used to load 32-bit register"));
5586 if (!dbl
&& HAVE_64BIT_OBJECTS
)
5587 as_warn (_("la used to load 64-bit address"));
5589 if (offset_expr
.X_op
== O_constant
5590 && offset_expr
.X_add_number
>= -0x8000
5591 && offset_expr
.X_add_number
< 0x8000)
5593 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
,
5594 "t,r,j", treg
, sreg
, BFD_RELOC_LO16
);
5598 if (mips_opts
.at
&& (treg
== breg
))
5608 if (offset_expr
.X_op
!= O_symbol
5609 && offset_expr
.X_op
!= O_constant
)
5611 as_bad (_("Expression too complex"));
5612 offset_expr
.X_op
= O_constant
;
5615 if (offset_expr
.X_op
== O_constant
)
5616 load_register (tempreg
, &offset_expr
, HAVE_64BIT_ADDRESSES
);
5617 else if (mips_pic
== NO_PIC
)
5619 /* If this is a reference to a GP relative symbol, we want
5620 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
5622 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5623 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5624 If we have a constant, we need two instructions anyhow,
5625 so we may as well always use the latter form.
5627 With 64bit address space and a usable $at we want
5628 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5629 lui $at,<sym> (BFD_RELOC_HI16_S)
5630 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5631 daddiu $at,<sym> (BFD_RELOC_LO16)
5633 daddu $tempreg,$tempreg,$at
5635 If $at is already in use, we use a path which is suboptimal
5636 on superscalar processors.
5637 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5638 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5640 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5642 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
5644 For GP relative symbols in 64bit address space we can use
5645 the same sequence as in 32bit address space. */
5646 if (HAVE_64BIT_SYMBOLS
)
5648 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
5649 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
5651 relax_start (offset_expr
.X_add_symbol
);
5652 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5653 tempreg
, mips_gp_register
, BFD_RELOC_GPREL16
);
5657 if (used_at
== 0 && mips_opts
.at
)
5659 macro_build (&offset_expr
, "lui", "t,u",
5660 tempreg
, BFD_RELOC_MIPS_HIGHEST
);
5661 macro_build (&offset_expr
, "lui", "t,u",
5662 AT
, BFD_RELOC_HI16_S
);
5663 macro_build (&offset_expr
, "daddiu", "t,r,j",
5664 tempreg
, tempreg
, BFD_RELOC_MIPS_HIGHER
);
5665 macro_build (&offset_expr
, "daddiu", "t,r,j",
5666 AT
, AT
, BFD_RELOC_LO16
);
5667 macro_build (NULL
, "dsll32", "d,w,<", tempreg
, tempreg
, 0);
5668 macro_build (NULL
, "daddu", "d,v,t", tempreg
, tempreg
, AT
);
5673 macro_build (&offset_expr
, "lui", "t,u",
5674 tempreg
, BFD_RELOC_MIPS_HIGHEST
);
5675 macro_build (&offset_expr
, "daddiu", "t,r,j",
5676 tempreg
, tempreg
, BFD_RELOC_MIPS_HIGHER
);
5677 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
5678 macro_build (&offset_expr
, "daddiu", "t,r,j",
5679 tempreg
, tempreg
, BFD_RELOC_HI16_S
);
5680 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
5681 macro_build (&offset_expr
, "daddiu", "t,r,j",
5682 tempreg
, tempreg
, BFD_RELOC_LO16
);
5685 if (mips_relax
.sequence
)
5690 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
5691 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
5693 relax_start (offset_expr
.X_add_symbol
);
5694 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5695 tempreg
, mips_gp_register
, BFD_RELOC_GPREL16
);
5698 if (!IS_SEXT_32BIT_NUM (offset_expr
.X_add_number
))
5699 as_bad (_("Offset too large"));
5700 macro_build_lui (&offset_expr
, tempreg
);
5701 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5702 tempreg
, tempreg
, BFD_RELOC_LO16
);
5703 if (mips_relax
.sequence
)
5707 else if (!mips_big_got
&& !HAVE_NEWABI
)
5709 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT16
;
5711 /* If this is a reference to an external symbol, and there
5712 is no constant, we want
5713 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5714 or for lca or if tempreg is PIC_CALL_REG
5715 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5716 For a local symbol, we want
5717 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5719 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5721 If we have a small constant, and this is a reference to
5722 an external symbol, we want
5723 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5725 addiu $tempreg,$tempreg,<constant>
5726 For a local symbol, we want the same instruction
5727 sequence, but we output a BFD_RELOC_LO16 reloc on the
5730 If we have a large constant, and this is a reference to
5731 an external symbol, we want
5732 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5733 lui $at,<hiconstant>
5734 addiu $at,$at,<loconstant>
5735 addu $tempreg,$tempreg,$at
5736 For a local symbol, we want the same instruction
5737 sequence, but we output a BFD_RELOC_LO16 reloc on the
5741 if (offset_expr
.X_add_number
== 0)
5743 if (mips_pic
== SVR4_PIC
5745 && (call
|| tempreg
== PIC_CALL_REG
))
5746 lw_reloc_type
= (int) BFD_RELOC_MIPS_CALL16
;
5748 relax_start (offset_expr
.X_add_symbol
);
5749 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5750 lw_reloc_type
, mips_gp_register
);
5753 /* We're going to put in an addu instruction using
5754 tempreg, so we may as well insert the nop right
5759 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5760 tempreg
, BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
5762 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5763 tempreg
, tempreg
, BFD_RELOC_LO16
);
5765 /* FIXME: If breg == 0, and the next instruction uses
5766 $tempreg, then if this variant case is used an extra
5767 nop will be generated. */
5769 else if (offset_expr
.X_add_number
>= -0x8000
5770 && offset_expr
.X_add_number
< 0x8000)
5772 load_got_offset (tempreg
, &offset_expr
);
5774 add_got_offset (tempreg
, &offset_expr
);
5778 expr1
.X_add_number
= offset_expr
.X_add_number
;
5779 offset_expr
.X_add_number
=
5780 ((offset_expr
.X_add_number
+ 0x8000) & 0xffff) - 0x8000;
5781 load_got_offset (tempreg
, &offset_expr
);
5782 offset_expr
.X_add_number
= expr1
.X_add_number
;
5783 /* If we are going to add in a base register, and the
5784 target register and the base register are the same,
5785 then we are using AT as a temporary register. Since
5786 we want to load the constant into AT, we add our
5787 current AT (from the global offset table) and the
5788 register into the register now, and pretend we were
5789 not using a base register. */
5793 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5798 add_got_offset_hilo (tempreg
, &offset_expr
, AT
);
5802 else if (!mips_big_got
&& HAVE_NEWABI
)
5804 int add_breg_early
= 0;
5806 /* If this is a reference to an external, and there is no
5807 constant, or local symbol (*), with or without a
5809 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5810 or for lca or if tempreg is PIC_CALL_REG
5811 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5813 If we have a small constant, and this is a reference to
5814 an external symbol, we want
5815 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5816 addiu $tempreg,$tempreg,<constant>
5818 If we have a large constant, and this is a reference to
5819 an external symbol, we want
5820 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5821 lui $at,<hiconstant>
5822 addiu $at,$at,<loconstant>
5823 addu $tempreg,$tempreg,$at
5825 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
5826 local symbols, even though it introduces an additional
5829 if (offset_expr
.X_add_number
)
5831 expr1
.X_add_number
= offset_expr
.X_add_number
;
5832 offset_expr
.X_add_number
= 0;
5834 relax_start (offset_expr
.X_add_symbol
);
5835 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5836 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5838 if (expr1
.X_add_number
>= -0x8000
5839 && expr1
.X_add_number
< 0x8000)
5841 macro_build (&expr1
, ADDRESS_ADDI_INSN
, "t,r,j",
5842 tempreg
, tempreg
, BFD_RELOC_LO16
);
5844 else if (IS_SEXT_32BIT_NUM (expr1
.X_add_number
+ 0x8000))
5846 /* If we are going to add in a base register, and the
5847 target register and the base register are the same,
5848 then we are using AT as a temporary register. Since
5849 we want to load the constant into AT, we add our
5850 current AT (from the global offset table) and the
5851 register into the register now, and pretend we were
5852 not using a base register. */
5857 gas_assert (tempreg
== AT
);
5858 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5864 load_register (AT
, &expr1
, HAVE_64BIT_ADDRESSES
);
5865 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5871 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5874 offset_expr
.X_add_number
= expr1
.X_add_number
;
5876 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5877 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5880 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5881 treg
, tempreg
, breg
);
5887 else if (breg
== 0 && (call
|| tempreg
== PIC_CALL_REG
))
5889 relax_start (offset_expr
.X_add_symbol
);
5890 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5891 BFD_RELOC_MIPS_CALL16
, mips_gp_register
);
5893 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5894 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5899 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5900 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5903 else if (mips_big_got
&& !HAVE_NEWABI
)
5906 int lui_reloc_type
= (int) BFD_RELOC_MIPS_GOT_HI16
;
5907 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT_LO16
;
5908 int local_reloc_type
= (int) BFD_RELOC_MIPS_GOT16
;
5910 /* This is the large GOT case. If this is a reference to an
5911 external symbol, and there is no constant, we want
5912 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5913 addu $tempreg,$tempreg,$gp
5914 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5915 or for lca or if tempreg is PIC_CALL_REG
5916 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5917 addu $tempreg,$tempreg,$gp
5918 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5919 For a local symbol, we want
5920 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5922 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5924 If we have a small constant, and this is a reference to
5925 an external symbol, we want
5926 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5927 addu $tempreg,$tempreg,$gp
5928 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5930 addiu $tempreg,$tempreg,<constant>
5931 For a local symbol, we want
5932 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5934 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5936 If we have a large constant, and this is a reference to
5937 an external symbol, we want
5938 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5939 addu $tempreg,$tempreg,$gp
5940 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5941 lui $at,<hiconstant>
5942 addiu $at,$at,<loconstant>
5943 addu $tempreg,$tempreg,$at
5944 For a local symbol, we want
5945 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5946 lui $at,<hiconstant>
5947 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5948 addu $tempreg,$tempreg,$at
5951 expr1
.X_add_number
= offset_expr
.X_add_number
;
5952 offset_expr
.X_add_number
= 0;
5953 relax_start (offset_expr
.X_add_symbol
);
5954 gpdelay
= reg_needs_delay (mips_gp_register
);
5955 if (expr1
.X_add_number
== 0 && breg
== 0
5956 && (call
|| tempreg
== PIC_CALL_REG
))
5958 lui_reloc_type
= (int) BFD_RELOC_MIPS_CALL_HI16
;
5959 lw_reloc_type
= (int) BFD_RELOC_MIPS_CALL_LO16
;
5961 macro_build (&offset_expr
, "lui", "t,u", tempreg
, lui_reloc_type
);
5962 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5963 tempreg
, tempreg
, mips_gp_register
);
5964 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5965 tempreg
, lw_reloc_type
, tempreg
);
5966 if (expr1
.X_add_number
== 0)
5970 /* We're going to put in an addu instruction using
5971 tempreg, so we may as well insert the nop right
5976 else if (expr1
.X_add_number
>= -0x8000
5977 && expr1
.X_add_number
< 0x8000)
5980 macro_build (&expr1
, ADDRESS_ADDI_INSN
, "t,r,j",
5981 tempreg
, tempreg
, BFD_RELOC_LO16
);
5985 /* If we are going to add in a base register, and the
5986 target register and the base register are the same,
5987 then we are using AT as a temporary register. Since
5988 we want to load the constant into AT, we add our
5989 current AT (from the global offset table) and the
5990 register into the register now, and pretend we were
5991 not using a base register. */
5996 gas_assert (tempreg
== AT
);
5998 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6003 load_register (AT
, &expr1
, HAVE_64BIT_ADDRESSES
);
6004 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", dreg
, dreg
, AT
);
6008 offset_expr
.X_add_number
=
6009 ((expr1
.X_add_number
+ 0x8000) & 0xffff) - 0x8000;
6014 /* This is needed because this instruction uses $gp, but
6015 the first instruction on the main stream does not. */
6016 macro_build (NULL
, "nop", "");
6019 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6020 local_reloc_type
, mips_gp_register
);
6021 if (expr1
.X_add_number
>= -0x8000
6022 && expr1
.X_add_number
< 0x8000)
6025 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
6026 tempreg
, tempreg
, BFD_RELOC_LO16
);
6027 /* FIXME: If add_number is 0, and there was no base
6028 register, the external symbol case ended with a load,
6029 so if the symbol turns out to not be external, and
6030 the next instruction uses tempreg, an unnecessary nop
6031 will be inserted. */
6037 /* We must add in the base register now, as in the
6038 external symbol case. */
6039 gas_assert (tempreg
== AT
);
6041 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6044 /* We set breg to 0 because we have arranged to add
6045 it in in both cases. */
6049 macro_build_lui (&expr1
, AT
);
6050 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
6051 AT
, AT
, BFD_RELOC_LO16
);
6052 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6053 tempreg
, tempreg
, AT
);
6058 else if (mips_big_got
&& HAVE_NEWABI
)
6060 int lui_reloc_type
= (int) BFD_RELOC_MIPS_GOT_HI16
;
6061 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT_LO16
;
6062 int add_breg_early
= 0;
6064 /* This is the large GOT case. If this is a reference to an
6065 external symbol, and there is no constant, we want
6066 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6067 add $tempreg,$tempreg,$gp
6068 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6069 or for lca or if tempreg is PIC_CALL_REG
6070 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6071 add $tempreg,$tempreg,$gp
6072 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
6074 If we have a small constant, and this is a reference to
6075 an external symbol, we want
6076 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6077 add $tempreg,$tempreg,$gp
6078 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6079 addi $tempreg,$tempreg,<constant>
6081 If we have a large constant, and this is a reference to
6082 an external symbol, we want
6083 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6084 addu $tempreg,$tempreg,$gp
6085 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6086 lui $at,<hiconstant>
6087 addi $at,$at,<loconstant>
6088 add $tempreg,$tempreg,$at
6090 If we have NewABI, and we know it's a local symbol, we want
6091 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6092 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
6093 otherwise we have to resort to GOT_HI16/GOT_LO16. */
6095 relax_start (offset_expr
.X_add_symbol
);
6097 expr1
.X_add_number
= offset_expr
.X_add_number
;
6098 offset_expr
.X_add_number
= 0;
6100 if (expr1
.X_add_number
== 0 && breg
== 0
6101 && (call
|| tempreg
== PIC_CALL_REG
))
6103 lui_reloc_type
= (int) BFD_RELOC_MIPS_CALL_HI16
;
6104 lw_reloc_type
= (int) BFD_RELOC_MIPS_CALL_LO16
;
6106 macro_build (&offset_expr
, "lui", "t,u", tempreg
, lui_reloc_type
);
6107 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6108 tempreg
, tempreg
, mips_gp_register
);
6109 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6110 tempreg
, lw_reloc_type
, tempreg
);
6112 if (expr1
.X_add_number
== 0)
6114 else if (expr1
.X_add_number
>= -0x8000
6115 && expr1
.X_add_number
< 0x8000)
6117 macro_build (&expr1
, ADDRESS_ADDI_INSN
, "t,r,j",
6118 tempreg
, tempreg
, BFD_RELOC_LO16
);
6120 else if (IS_SEXT_32BIT_NUM (expr1
.X_add_number
+ 0x8000))
6122 /* If we are going to add in a base register, and the
6123 target register and the base register are the same,
6124 then we are using AT as a temporary register. Since
6125 we want to load the constant into AT, we add our
6126 current AT (from the global offset table) and the
6127 register into the register now, and pretend we were
6128 not using a base register. */
6133 gas_assert (tempreg
== AT
);
6134 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6140 load_register (AT
, &expr1
, HAVE_64BIT_ADDRESSES
);
6141 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", dreg
, dreg
, AT
);
6146 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6149 offset_expr
.X_add_number
= expr1
.X_add_number
;
6150 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6151 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
6152 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j", tempreg
,
6153 tempreg
, BFD_RELOC_MIPS_GOT_OFST
);
6156 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6157 treg
, tempreg
, breg
);
6167 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", treg
, tempreg
, breg
);
6172 unsigned long temp
= (treg
<< 16) | (0x01);
6173 macro_build (NULL
, "c2", "C", temp
);
6179 unsigned long temp
= (0x02);
6180 macro_build (NULL
, "c2", "C", temp
);
6186 unsigned long temp
= (treg
<< 16) | (0x02);
6187 macro_build (NULL
, "c2", "C", temp
);
6192 macro_build (NULL
, "c2", "C", 3);
6197 unsigned long temp
= (treg
<< 16) | 0x03;
6198 macro_build (NULL
, "c2", "C", temp
);
6203 /* The j instruction may not be used in PIC code, since it
6204 requires an absolute address. We convert it to a b
6206 if (mips_pic
== NO_PIC
)
6207 macro_build (&offset_expr
, "j", "a");
6209 macro_build (&offset_expr
, "b", "p");
6212 /* The jal instructions must be handled as macros because when
6213 generating PIC code they expand to multi-instruction
6214 sequences. Normally they are simple instructions. */
6219 if (mips_pic
== NO_PIC
)
6220 macro_build (NULL
, "jalr", "d,s", dreg
, sreg
);
6223 if (sreg
!= PIC_CALL_REG
)
6224 as_warn (_("MIPS PIC call to register other than $25"));
6226 macro_build (NULL
, "jalr", "d,s", dreg
, sreg
);
6227 if (mips_pic
== SVR4_PIC
&& !HAVE_NEWABI
)
6229 if (mips_cprestore_offset
< 0)
6230 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6233 if (!mips_frame_reg_valid
)
6235 as_warn (_("No .frame pseudo-op used in PIC code"));
6236 /* Quiet this warning. */
6237 mips_frame_reg_valid
= 1;
6239 if (!mips_cprestore_valid
)
6241 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6242 /* Quiet this warning. */
6243 mips_cprestore_valid
= 1;
6245 if (mips_opts
.noreorder
)
6246 macro_build (NULL
, "nop", "");
6247 expr1
.X_add_number
= mips_cprestore_offset
;
6248 macro_build_ldst_constoffset (&expr1
, ADDRESS_LOAD_INSN
,
6251 HAVE_64BIT_ADDRESSES
);
6259 if (mips_pic
== NO_PIC
)
6260 macro_build (&offset_expr
, "jal", "a");
6261 else if (mips_pic
== SVR4_PIC
)
6263 /* If this is a reference to an external symbol, and we are
6264 using a small GOT, we want
6265 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
6269 lw $gp,cprestore($sp)
6270 The cprestore value is set using the .cprestore
6271 pseudo-op. If we are using a big GOT, we want
6272 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6274 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
6278 lw $gp,cprestore($sp)
6279 If the symbol is not external, we want
6280 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6282 addiu $25,$25,<sym> (BFD_RELOC_LO16)
6285 lw $gp,cprestore($sp)
6287 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
6288 sequences above, minus nops, unless the symbol is local,
6289 which enables us to use GOT_PAGE/GOT_OFST (big got) or
6295 relax_start (offset_expr
.X_add_symbol
);
6296 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6297 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL16
,
6300 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6301 PIC_CALL_REG
, BFD_RELOC_MIPS_GOT_DISP
,
6307 relax_start (offset_expr
.X_add_symbol
);
6308 macro_build (&offset_expr
, "lui", "t,u", PIC_CALL_REG
,
6309 BFD_RELOC_MIPS_CALL_HI16
);
6310 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", PIC_CALL_REG
,
6311 PIC_CALL_REG
, mips_gp_register
);
6312 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6313 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL_LO16
,
6316 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6317 PIC_CALL_REG
, BFD_RELOC_MIPS_GOT_PAGE
,
6319 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
6320 PIC_CALL_REG
, PIC_CALL_REG
,
6321 BFD_RELOC_MIPS_GOT_OFST
);
6325 macro_build_jalr (&offset_expr
);
6329 relax_start (offset_expr
.X_add_symbol
);
6332 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6333 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL16
,
6342 gpdelay
= reg_needs_delay (mips_gp_register
);
6343 macro_build (&offset_expr
, "lui", "t,u", PIC_CALL_REG
,
6344 BFD_RELOC_MIPS_CALL_HI16
);
6345 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", PIC_CALL_REG
,
6346 PIC_CALL_REG
, mips_gp_register
);
6347 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6348 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL_LO16
,
6353 macro_build (NULL
, "nop", "");
6355 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6356 PIC_CALL_REG
, BFD_RELOC_MIPS_GOT16
,
6359 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
6360 PIC_CALL_REG
, PIC_CALL_REG
, BFD_RELOC_LO16
);
6362 macro_build_jalr (&offset_expr
);
6364 if (mips_cprestore_offset
< 0)
6365 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6368 if (!mips_frame_reg_valid
)
6370 as_warn (_("No .frame pseudo-op used in PIC code"));
6371 /* Quiet this warning. */
6372 mips_frame_reg_valid
= 1;
6374 if (!mips_cprestore_valid
)
6376 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6377 /* Quiet this warning. */
6378 mips_cprestore_valid
= 1;
6380 if (mips_opts
.noreorder
)
6381 macro_build (NULL
, "nop", "");
6382 expr1
.X_add_number
= mips_cprestore_offset
;
6383 macro_build_ldst_constoffset (&expr1
, ADDRESS_LOAD_INSN
,
6386 HAVE_64BIT_ADDRESSES
);
6390 else if (mips_pic
== VXWORKS_PIC
)
6391 as_bad (_("Non-PIC jump used in PIC library"));
6414 /* Itbl support may require additional care here. */
6419 /* Itbl support may require additional care here. */
6424 /* Itbl support may require additional care here. */
6429 /* Itbl support may require additional care here. */
6442 /* Itbl support may require additional care here. */
6447 /* Itbl support may require additional care here. */
6452 /* Itbl support may require additional care here. */
6472 if (breg
== treg
|| coproc
|| lr
)
6493 /* Itbl support may require additional care here. */
6498 /* Itbl support may require additional care here. */
6503 /* Itbl support may require additional care here. */
6508 /* Itbl support may require additional care here. */
6529 /* Itbl support may require additional care here. */
6533 /* Itbl support may require additional care here. */
6538 /* Itbl support may require additional care here. */
6551 && NO_ISA_COP (mips_opts
.arch
)
6552 && (ip
->insn_mo
->pinfo2
& (INSN2_M_FP_S
| INSN2_M_FP_D
)) == 0)
6554 as_bad (_("Opcode not supported on this processor: %s"),
6555 mips_cpu_info_from_arch (mips_opts
.arch
)->name
);
6559 /* Itbl support may require additional care here. */
6560 if (mask
== M_LWC1_AB
6561 || mask
== M_SWC1_AB
6562 || mask
== M_LDC1_AB
6563 || mask
== M_SDC1_AB
6567 else if (mask
== M_CACHE_AB
)
6574 if (offset_expr
.X_op
!= O_constant
6575 && offset_expr
.X_op
!= O_symbol
)
6577 as_bad (_("Expression too complex"));
6578 offset_expr
.X_op
= O_constant
;
6581 if (HAVE_32BIT_ADDRESSES
6582 && !IS_SEXT_32BIT_NUM (offset_expr
.X_add_number
))
6586 sprintf_vma (value
, offset_expr
.X_add_number
);
6587 as_bad (_("Number (0x%s) larger than 32 bits"), value
);
6590 /* A constant expression in PIC code can be handled just as it
6591 is in non PIC code. */
6592 if (offset_expr
.X_op
== O_constant
)
6594 expr1
.X_add_number
= offset_expr
.X_add_number
;
6595 normalize_address_expr (&expr1
);
6596 if (!IS_SEXT_16BIT_NUM (expr1
.X_add_number
))
6598 expr1
.X_add_number
= ((expr1
.X_add_number
+ 0x8000)
6599 & ~(bfd_vma
) 0xffff);
6600 load_register (tempreg
, &expr1
, HAVE_64BIT_ADDRESSES
);
6602 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6603 tempreg
, tempreg
, breg
);
6606 macro_build (&offset_expr
, s
, fmt
, treg
, BFD_RELOC_LO16
, breg
);
6608 else if (mips_pic
== NO_PIC
)
6610 /* If this is a reference to a GP relative symbol, and there
6611 is no base register, we want
6612 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6613 Otherwise, if there is no base register, we want
6614 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6615 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6616 If we have a constant, we need two instructions anyhow,
6617 so we always use the latter form.
6619 If we have a base register, and this is a reference to a
6620 GP relative symbol, we want
6621 addu $tempreg,$breg,$gp
6622 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
6624 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6625 addu $tempreg,$tempreg,$breg
6626 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6627 With a constant we always use the latter case.
6629 With 64bit address space and no base register and $at usable,
6631 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6632 lui $at,<sym> (BFD_RELOC_HI16_S)
6633 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6636 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6637 If we have a base register, we want
6638 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6639 lui $at,<sym> (BFD_RELOC_HI16_S)
6640 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6644 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6646 Without $at we can't generate the optimal path for superscalar
6647 processors here since this would require two temporary registers.
6648 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6649 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6651 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6653 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6654 If we have a base register, we want
6655 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6656 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6658 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6660 daddu $tempreg,$tempreg,$breg
6661 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6663 For GP relative symbols in 64bit address space we can use
6664 the same sequence as in 32bit address space. */
6665 if (HAVE_64BIT_SYMBOLS
)
6667 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
6668 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
6670 relax_start (offset_expr
.X_add_symbol
);
6673 macro_build (&offset_expr
, s
, fmt
, treg
,
6674 BFD_RELOC_GPREL16
, mips_gp_register
);
6678 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6679 tempreg
, breg
, mips_gp_register
);
6680 macro_build (&offset_expr
, s
, fmt
, treg
,
6681 BFD_RELOC_GPREL16
, tempreg
);
6686 if (used_at
== 0 && mips_opts
.at
)
6688 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6689 BFD_RELOC_MIPS_HIGHEST
);
6690 macro_build (&offset_expr
, "lui", "t,u", AT
,
6692 macro_build (&offset_expr
, "daddiu", "t,r,j", tempreg
,
6693 tempreg
, BFD_RELOC_MIPS_HIGHER
);
6695 macro_build (NULL
, "daddu", "d,v,t", AT
, AT
, breg
);
6696 macro_build (NULL
, "dsll32", "d,w,<", tempreg
, tempreg
, 0);
6697 macro_build (NULL
, "daddu", "d,v,t", tempreg
, tempreg
, AT
);
6698 macro_build (&offset_expr
, s
, fmt
, treg
, BFD_RELOC_LO16
,
6704 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6705 BFD_RELOC_MIPS_HIGHEST
);
6706 macro_build (&offset_expr
, "daddiu", "t,r,j", tempreg
,
6707 tempreg
, BFD_RELOC_MIPS_HIGHER
);
6708 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
6709 macro_build (&offset_expr
, "daddiu", "t,r,j", tempreg
,
6710 tempreg
, BFD_RELOC_HI16_S
);
6711 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
6713 macro_build (NULL
, "daddu", "d,v,t",
6714 tempreg
, tempreg
, breg
);
6715 macro_build (&offset_expr
, s
, fmt
, treg
,
6716 BFD_RELOC_LO16
, tempreg
);
6719 if (mips_relax
.sequence
)
6726 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
6727 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
6729 relax_start (offset_expr
.X_add_symbol
);
6730 macro_build (&offset_expr
, s
, fmt
, treg
, BFD_RELOC_GPREL16
,
6734 macro_build_lui (&offset_expr
, tempreg
);
6735 macro_build (&offset_expr
, s
, fmt
, treg
,
6736 BFD_RELOC_LO16
, tempreg
);
6737 if (mips_relax
.sequence
)
6742 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
6743 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
6745 relax_start (offset_expr
.X_add_symbol
);
6746 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6747 tempreg
, breg
, mips_gp_register
);
6748 macro_build (&offset_expr
, s
, fmt
, treg
,
6749 BFD_RELOC_GPREL16
, tempreg
);
6752 macro_build_lui (&offset_expr
, tempreg
);
6753 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6754 tempreg
, tempreg
, breg
);
6755 macro_build (&offset_expr
, s
, fmt
, treg
,
6756 BFD_RELOC_LO16
, tempreg
);
6757 if (mips_relax
.sequence
)
6761 else if (!mips_big_got
)
6763 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT16
;
6765 /* If this is a reference to an external symbol, we want
6766 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6768 <op> $treg,0($tempreg)
6770 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6772 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6773 <op> $treg,0($tempreg)
6776 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6777 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
6779 If there is a base register, we add it to $tempreg before
6780 the <op>. If there is a constant, we stick it in the
6781 <op> instruction. We don't handle constants larger than
6782 16 bits, because we have no way to load the upper 16 bits
6783 (actually, we could handle them for the subset of cases
6784 in which we are not using $at). */
6785 gas_assert (offset_expr
.X_op
== O_symbol
);
6788 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6789 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
6791 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6792 tempreg
, tempreg
, breg
);
6793 macro_build (&offset_expr
, s
, fmt
, treg
,
6794 BFD_RELOC_MIPS_GOT_OFST
, tempreg
);
6797 expr1
.X_add_number
= offset_expr
.X_add_number
;
6798 offset_expr
.X_add_number
= 0;
6799 if (expr1
.X_add_number
< -0x8000
6800 || expr1
.X_add_number
>= 0x8000)
6801 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6802 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6803 lw_reloc_type
, mips_gp_register
);
6805 relax_start (offset_expr
.X_add_symbol
);
6807 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j", tempreg
,
6808 tempreg
, BFD_RELOC_LO16
);
6811 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6812 tempreg
, tempreg
, breg
);
6813 macro_build (&expr1
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6815 else if (mips_big_got
&& !HAVE_NEWABI
)
6819 /* If this is a reference to an external symbol, we want
6820 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6821 addu $tempreg,$tempreg,$gp
6822 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6823 <op> $treg,0($tempreg)
6825 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6827 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6828 <op> $treg,0($tempreg)
6829 If there is a base register, we add it to $tempreg before
6830 the <op>. If there is a constant, we stick it in the
6831 <op> instruction. We don't handle constants larger than
6832 16 bits, because we have no way to load the upper 16 bits
6833 (actually, we could handle them for the subset of cases
6834 in which we are not using $at). */
6835 gas_assert (offset_expr
.X_op
== O_symbol
);
6836 expr1
.X_add_number
= offset_expr
.X_add_number
;
6837 offset_expr
.X_add_number
= 0;
6838 if (expr1
.X_add_number
< -0x8000
6839 || expr1
.X_add_number
>= 0x8000)
6840 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6841 gpdelay
= reg_needs_delay (mips_gp_register
);
6842 relax_start (offset_expr
.X_add_symbol
);
6843 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6844 BFD_RELOC_MIPS_GOT_HI16
);
6845 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", tempreg
, tempreg
,
6847 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6848 BFD_RELOC_MIPS_GOT_LO16
, tempreg
);
6851 macro_build (NULL
, "nop", "");
6852 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6853 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
6855 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j", tempreg
,
6856 tempreg
, BFD_RELOC_LO16
);
6860 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6861 tempreg
, tempreg
, breg
);
6862 macro_build (&expr1
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6864 else if (mips_big_got
&& HAVE_NEWABI
)
6866 /* If this is a reference to an external symbol, we want
6867 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6868 add $tempreg,$tempreg,$gp
6869 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6870 <op> $treg,<ofst>($tempreg)
6871 Otherwise, for local symbols, we want:
6872 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6873 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
6874 gas_assert (offset_expr
.X_op
== O_symbol
);
6875 expr1
.X_add_number
= offset_expr
.X_add_number
;
6876 offset_expr
.X_add_number
= 0;
6877 if (expr1
.X_add_number
< -0x8000
6878 || expr1
.X_add_number
>= 0x8000)
6879 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6880 relax_start (offset_expr
.X_add_symbol
);
6881 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6882 BFD_RELOC_MIPS_GOT_HI16
);
6883 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", tempreg
, tempreg
,
6885 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6886 BFD_RELOC_MIPS_GOT_LO16
, tempreg
);
6888 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6889 tempreg
, tempreg
, breg
);
6890 macro_build (&expr1
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6893 offset_expr
.X_add_number
= expr1
.X_add_number
;
6894 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6895 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
6897 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6898 tempreg
, tempreg
, breg
);
6899 macro_build (&offset_expr
, s
, fmt
, treg
,
6900 BFD_RELOC_MIPS_GOT_OFST
, tempreg
);
6910 load_register (treg
, &imm_expr
, 0);
6914 load_register (treg
, &imm_expr
, 1);
6918 if (imm_expr
.X_op
== O_constant
)
6921 load_register (AT
, &imm_expr
, 0);
6922 macro_build (NULL
, "mtc1", "t,G", AT
, treg
);
6927 gas_assert (offset_expr
.X_op
== O_symbol
6928 && strcmp (segment_name (S_GET_SEGMENT
6929 (offset_expr
.X_add_symbol
)),
6931 && offset_expr
.X_add_number
== 0);
6932 macro_build (&offset_expr
, "lwc1", "T,o(b)", treg
,
6933 BFD_RELOC_MIPS_LITERAL
, mips_gp_register
);
6938 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6939 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6940 order 32 bits of the value and the low order 32 bits are either
6941 zero or in OFFSET_EXPR. */
6942 if (imm_expr
.X_op
== O_constant
|| imm_expr
.X_op
== O_big
)
6944 if (HAVE_64BIT_GPRS
)
6945 load_register (treg
, &imm_expr
, 1);
6950 if (target_big_endian
)
6962 load_register (hreg
, &imm_expr
, 0);
6965 if (offset_expr
.X_op
== O_absent
)
6966 move_register (lreg
, 0);
6969 gas_assert (offset_expr
.X_op
== O_constant
);
6970 load_register (lreg
, &offset_expr
, 0);
6977 /* We know that sym is in the .rdata section. First we get the
6978 upper 16 bits of the address. */
6979 if (mips_pic
== NO_PIC
)
6981 macro_build_lui (&offset_expr
, AT
);
6986 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", AT
,
6987 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
6991 /* Now we load the register(s). */
6992 if (HAVE_64BIT_GPRS
)
6995 macro_build (&offset_expr
, "ld", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
7000 macro_build (&offset_expr
, "lw", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
7003 /* FIXME: How in the world do we deal with the possible
7005 offset_expr
.X_add_number
+= 4;
7006 macro_build (&offset_expr
, "lw", "t,o(b)",
7007 treg
+ 1, BFD_RELOC_LO16
, AT
);
7013 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
7014 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
7015 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
7016 the value and the low order 32 bits are either zero or in
7018 if (imm_expr
.X_op
== O_constant
|| imm_expr
.X_op
== O_big
)
7021 load_register (AT
, &imm_expr
, HAVE_64BIT_FPRS
);
7022 if (HAVE_64BIT_FPRS
)
7024 gas_assert (HAVE_64BIT_GPRS
);
7025 macro_build (NULL
, "dmtc1", "t,S", AT
, treg
);
7029 macro_build (NULL
, "mtc1", "t,G", AT
, treg
+ 1);
7030 if (offset_expr
.X_op
== O_absent
)
7031 macro_build (NULL
, "mtc1", "t,G", 0, treg
);
7034 gas_assert (offset_expr
.X_op
== O_constant
);
7035 load_register (AT
, &offset_expr
, 0);
7036 macro_build (NULL
, "mtc1", "t,G", AT
, treg
);
7042 gas_assert (offset_expr
.X_op
== O_symbol
7043 && offset_expr
.X_add_number
== 0);
7044 s
= segment_name (S_GET_SEGMENT (offset_expr
.X_add_symbol
));
7045 if (strcmp (s
, ".lit8") == 0)
7047 if (mips_opts
.isa
!= ISA_MIPS1
)
7049 macro_build (&offset_expr
, "ldc1", "T,o(b)", treg
,
7050 BFD_RELOC_MIPS_LITERAL
, mips_gp_register
);
7053 breg
= mips_gp_register
;
7054 r
= BFD_RELOC_MIPS_LITERAL
;
7059 gas_assert (strcmp (s
, RDATA_SECTION_NAME
) == 0);
7061 if (mips_pic
!= NO_PIC
)
7062 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", AT
,
7063 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
7066 /* FIXME: This won't work for a 64 bit address. */
7067 macro_build_lui (&offset_expr
, AT
);
7070 if (mips_opts
.isa
!= ISA_MIPS1
)
7072 macro_build (&offset_expr
, "ldc1", "T,o(b)",
7073 treg
, BFD_RELOC_LO16
, AT
);
7082 /* Even on a big endian machine $fn comes before $fn+1. We have
7083 to adjust when loading from memory. */
7086 gas_assert (mips_opts
.isa
== ISA_MIPS1
);
7087 macro_build (&offset_expr
, "lwc1", "T,o(b)",
7088 target_big_endian
? treg
+ 1 : treg
, r
, breg
);
7089 /* FIXME: A possible overflow which I don't know how to deal
7091 offset_expr
.X_add_number
+= 4;
7092 macro_build (&offset_expr
, "lwc1", "T,o(b)",
7093 target_big_endian
? treg
: treg
+ 1, r
, breg
);
7097 gas_assert (mips_opts
.isa
== ISA_MIPS1
);
7098 /* Even on a big endian machine $fn comes before $fn+1. We have
7099 to adjust when storing to memory. */
7100 macro_build (&offset_expr
, "swc1", "T,o(b)",
7101 target_big_endian
? treg
+ 1 : treg
, BFD_RELOC_LO16
, breg
);
7102 offset_expr
.X_add_number
+= 4;
7103 macro_build (&offset_expr
, "swc1", "T,o(b)",
7104 target_big_endian
? treg
: treg
+ 1, BFD_RELOC_LO16
, breg
);
7109 * The MIPS assembler seems to check for X_add_number not
7110 * being double aligned and generating:
7113 * addiu at,at,%lo(foo+1)
7116 * But, the resulting address is the same after relocation so why
7117 * generate the extra instruction?
7119 /* Itbl support may require additional care here. */
7121 if (mips_opts
.isa
!= ISA_MIPS1
)
7132 if (mips_opts
.isa
!= ISA_MIPS1
)
7140 /* Itbl support may require additional care here. */
7145 if (HAVE_64BIT_GPRS
)
7156 if (HAVE_64BIT_GPRS
)
7166 if (offset_expr
.X_op
!= O_symbol
7167 && offset_expr
.X_op
!= O_constant
)
7169 as_bad (_("Expression too complex"));
7170 offset_expr
.X_op
= O_constant
;
7173 if (HAVE_32BIT_ADDRESSES
7174 && !IS_SEXT_32BIT_NUM (offset_expr
.X_add_number
))
7178 sprintf_vma (value
, offset_expr
.X_add_number
);
7179 as_bad (_("Number (0x%s) larger than 32 bits"), value
);
7182 /* Even on a big endian machine $fn comes before $fn+1. We have
7183 to adjust when loading from memory. We set coproc if we must
7184 load $fn+1 first. */
7185 /* Itbl support may require additional care here. */
7186 if (!target_big_endian
)
7189 if (mips_pic
== NO_PIC
|| offset_expr
.X_op
== O_constant
)
7191 /* If this is a reference to a GP relative symbol, we want
7192 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
7193 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
7194 If we have a base register, we use this
7196 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
7197 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
7198 If this is not a GP relative symbol, we want
7199 lui $at,<sym> (BFD_RELOC_HI16_S)
7200 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7201 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7202 If there is a base register, we add it to $at after the
7203 lui instruction. If there is a constant, we always use
7205 if (offset_expr
.X_op
== O_symbol
7206 && (valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
7207 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
7209 relax_start (offset_expr
.X_add_symbol
);
7212 tempreg
= mips_gp_register
;
7216 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
7217 AT
, breg
, mips_gp_register
);
7222 /* Itbl support may require additional care here. */
7223 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7224 BFD_RELOC_GPREL16
, tempreg
);
7225 offset_expr
.X_add_number
+= 4;
7227 /* Set mips_optimize to 2 to avoid inserting an
7229 hold_mips_optimize
= mips_optimize
;
7231 /* Itbl support may require additional care here. */
7232 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
7233 BFD_RELOC_GPREL16
, tempreg
);
7234 mips_optimize
= hold_mips_optimize
;
7238 offset_expr
.X_add_number
-= 4;
7241 macro_build_lui (&offset_expr
, AT
);
7243 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
7244 /* Itbl support may require additional care here. */
7245 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7246 BFD_RELOC_LO16
, AT
);
7247 /* FIXME: How do we handle overflow here? */
7248 offset_expr
.X_add_number
+= 4;
7249 /* Itbl support may require additional care here. */
7250 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
7251 BFD_RELOC_LO16
, AT
);
7252 if (mips_relax
.sequence
)
7255 else if (!mips_big_got
)
7257 /* If this is a reference to an external symbol, we want
7258 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7263 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7265 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7266 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7267 If there is a base register we add it to $at before the
7268 lwc1 instructions. If there is a constant we include it
7269 in the lwc1 instructions. */
7271 expr1
.X_add_number
= offset_expr
.X_add_number
;
7272 if (expr1
.X_add_number
< -0x8000
7273 || expr1
.X_add_number
>= 0x8000 - 4)
7274 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7275 load_got_offset (AT
, &offset_expr
);
7278 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
7280 /* Set mips_optimize to 2 to avoid inserting an undesired
7282 hold_mips_optimize
= mips_optimize
;
7285 /* Itbl support may require additional care here. */
7286 relax_start (offset_expr
.X_add_symbol
);
7287 macro_build (&expr1
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7288 BFD_RELOC_LO16
, AT
);
7289 expr1
.X_add_number
+= 4;
7290 macro_build (&expr1
, s
, fmt
, coproc
? treg
: treg
+ 1,
7291 BFD_RELOC_LO16
, AT
);
7293 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7294 BFD_RELOC_LO16
, AT
);
7295 offset_expr
.X_add_number
+= 4;
7296 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
7297 BFD_RELOC_LO16
, AT
);
7300 mips_optimize
= hold_mips_optimize
;
7302 else if (mips_big_got
)
7306 /* If this is a reference to an external symbol, we want
7307 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7309 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
7314 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7316 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7317 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7318 If there is a base register we add it to $at before the
7319 lwc1 instructions. If there is a constant we include it
7320 in the lwc1 instructions. */
7322 expr1
.X_add_number
= offset_expr
.X_add_number
;
7323 offset_expr
.X_add_number
= 0;
7324 if (expr1
.X_add_number
< -0x8000
7325 || expr1
.X_add_number
>= 0x8000 - 4)
7326 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7327 gpdelay
= reg_needs_delay (mips_gp_register
);
7328 relax_start (offset_expr
.X_add_symbol
);
7329 macro_build (&offset_expr
, "lui", "t,u",
7330 AT
, BFD_RELOC_MIPS_GOT_HI16
);
7331 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
7332 AT
, AT
, mips_gp_register
);
7333 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
7334 AT
, BFD_RELOC_MIPS_GOT_LO16
, AT
);
7337 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
7338 /* Itbl support may require additional care here. */
7339 macro_build (&expr1
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7340 BFD_RELOC_LO16
, AT
);
7341 expr1
.X_add_number
+= 4;
7343 /* Set mips_optimize to 2 to avoid inserting an undesired
7345 hold_mips_optimize
= mips_optimize
;
7347 /* Itbl support may require additional care here. */
7348 macro_build (&expr1
, s
, fmt
, coproc
? treg
: treg
+ 1,
7349 BFD_RELOC_LO16
, AT
);
7350 mips_optimize
= hold_mips_optimize
;
7351 expr1
.X_add_number
-= 4;
7354 offset_expr
.X_add_number
= expr1
.X_add_number
;
7356 macro_build (NULL
, "nop", "");
7357 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", AT
,
7358 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
7361 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
7362 /* Itbl support may require additional care here. */
7363 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
7364 BFD_RELOC_LO16
, AT
);
7365 offset_expr
.X_add_number
+= 4;
7367 /* Set mips_optimize to 2 to avoid inserting an undesired
7369 hold_mips_optimize
= mips_optimize
;
7371 /* Itbl support may require additional care here. */
7372 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
7373 BFD_RELOC_LO16
, AT
);
7374 mips_optimize
= hold_mips_optimize
;
7383 s
= HAVE_64BIT_GPRS
? "ld" : "lw";
7386 s
= HAVE_64BIT_GPRS
? "sd" : "sw";
7388 macro_build (&offset_expr
, s
, "t,o(b)", treg
,
7389 -1, offset_reloc
[0], offset_reloc
[1], offset_reloc
[2],
7391 if (!HAVE_64BIT_GPRS
)
7393 offset_expr
.X_add_number
+= 4;
7394 macro_build (&offset_expr
, s
, "t,o(b)", treg
+ 1,
7395 -1, offset_reloc
[0], offset_reloc
[1], offset_reloc
[2],
7400 /* New code added to support COPZ instructions.
7401 This code builds table entries out of the macros in mip_opcodes.
7402 R4000 uses interlocks to handle coproc delays.
7403 Other chips (like the R3000) require nops to be inserted for delays.
7405 FIXME: Currently, we require that the user handle delays.
7406 In order to fill delay slots for non-interlocked chips,
7407 we must have a way to specify delays based on the coprocessor.
7408 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
7409 What are the side-effects of the cop instruction?
7410 What cache support might we have and what are its effects?
7411 Both coprocessor & memory require delays. how long???
7412 What registers are read/set/modified?
7414 If an itbl is provided to interpret cop instructions,
7415 this knowledge can be encoded in the itbl spec. */
7429 if (NO_ISA_COP (mips_opts
.arch
)
7430 && (ip
->insn_mo
->pinfo2
& INSN2_M_FP_S
) == 0)
7432 as_bad (_("opcode not supported on this processor: %s"),
7433 mips_cpu_info_from_arch (mips_opts
.arch
)->name
);
7437 /* For now we just do C (same as Cz). The parameter will be
7438 stored in insn_opcode by mips_ip. */
7439 macro_build (NULL
, s
, "C", ip
->insn_opcode
);
7443 move_register (dreg
, sreg
);
7449 macro_build (NULL
, dbl
? "dmultu" : "multu", "s,t", sreg
, treg
);
7450 macro_build (NULL
, "mflo", "d", dreg
);
7456 /* The MIPS assembler some times generates shifts and adds. I'm
7457 not trying to be that fancy. GCC should do this for us
7460 load_register (AT
, &imm_expr
, dbl
);
7461 macro_build (NULL
, dbl
? "dmult" : "mult", "s,t", sreg
, AT
);
7462 macro_build (NULL
, "mflo", "d", dreg
);
7478 load_register (AT
, &imm_expr
, dbl
);
7479 macro_build (NULL
, dbl
? "dmult" : "mult", "s,t", sreg
, imm
? AT
: treg
);
7480 macro_build (NULL
, "mflo", "d", dreg
);
7481 macro_build (NULL
, dbl
? "dsra32" : "sra", "d,w,<", dreg
, dreg
, RA
);
7482 macro_build (NULL
, "mfhi", "d", AT
);
7484 macro_build (NULL
, "tne", "s,t,q", dreg
, AT
, 6);
7487 expr1
.X_add_number
= 8;
7488 macro_build (&expr1
, "beq", "s,t,p", dreg
, AT
);
7489 macro_build (NULL
, "nop", "");
7490 macro_build (NULL
, "break", "c", 6);
7493 macro_build (NULL
, "mflo", "d", dreg
);
7509 load_register (AT
, &imm_expr
, dbl
);
7510 macro_build (NULL
, dbl
? "dmultu" : "multu", "s,t",
7511 sreg
, imm
? AT
: treg
);
7512 macro_build (NULL
, "mfhi", "d", AT
);
7513 macro_build (NULL
, "mflo", "d", dreg
);
7515 macro_build (NULL
, "tne", "s,t,q", AT
, ZERO
, 6);
7518 expr1
.X_add_number
= 8;
7519 macro_build (&expr1
, "beq", "s,t,p", AT
, ZERO
);
7520 macro_build (NULL
, "nop", "");
7521 macro_build (NULL
, "break", "c", 6);
7527 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
7538 macro_build (NULL
, "dnegu", "d,w", tempreg
, treg
);
7539 macro_build (NULL
, "drorv", "d,t,s", dreg
, sreg
, tempreg
);
7543 macro_build (NULL
, "dsubu", "d,v,t", AT
, ZERO
, treg
);
7544 macro_build (NULL
, "dsrlv", "d,t,s", AT
, sreg
, AT
);
7545 macro_build (NULL
, "dsllv", "d,t,s", dreg
, sreg
, treg
);
7546 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7550 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
7561 macro_build (NULL
, "negu", "d,w", tempreg
, treg
);
7562 macro_build (NULL
, "rorv", "d,t,s", dreg
, sreg
, tempreg
);
7566 macro_build (NULL
, "subu", "d,v,t", AT
, ZERO
, treg
);
7567 macro_build (NULL
, "srlv", "d,t,s", AT
, sreg
, AT
);
7568 macro_build (NULL
, "sllv", "d,t,s", dreg
, sreg
, treg
);
7569 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
& 0x3f;
7581 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
7583 rot
= (64 - rot
) & 0x3f;
7585 macro_build (NULL
, "dror32", "d,w,<", dreg
, sreg
, rot
- 32);
7587 macro_build (NULL
, "dror", "d,w,<", dreg
, sreg
, rot
);
7592 macro_build (NULL
, "dsrl", "d,w,<", dreg
, sreg
, 0);
7595 l
= (rot
< 0x20) ? "dsll" : "dsll32";
7596 rr
= ((0x40 - rot
) < 0x20) ? "dsrl" : "dsrl32";
7599 macro_build (NULL
, l
, "d,w,<", AT
, sreg
, rot
);
7600 macro_build (NULL
, rr
, "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7601 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7609 if (imm_expr
.X_op
!= O_constant
)
7610 as_bad (_("Improper rotate count"));
7611 rot
= imm_expr
.X_add_number
& 0x1f;
7612 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
7614 macro_build (NULL
, "ror", "d,w,<", dreg
, sreg
, (32 - rot
) & 0x1f);
7619 macro_build (NULL
, "srl", "d,w,<", dreg
, sreg
, 0);
7623 macro_build (NULL
, "sll", "d,w,<", AT
, sreg
, rot
);
7624 macro_build (NULL
, "srl", "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7625 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7630 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
7632 macro_build (NULL
, "drorv", "d,t,s", dreg
, sreg
, treg
);
7636 macro_build (NULL
, "dsubu", "d,v,t", AT
, ZERO
, treg
);
7637 macro_build (NULL
, "dsllv", "d,t,s", AT
, sreg
, AT
);
7638 macro_build (NULL
, "dsrlv", "d,t,s", dreg
, sreg
, treg
);
7639 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7643 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
7645 macro_build (NULL
, "rorv", "d,t,s", dreg
, sreg
, treg
);
7649 macro_build (NULL
, "subu", "d,v,t", AT
, ZERO
, treg
);
7650 macro_build (NULL
, "sllv", "d,t,s", AT
, sreg
, AT
);
7651 macro_build (NULL
, "srlv", "d,t,s", dreg
, sreg
, treg
);
7652 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7661 if (imm_expr
.X_op
!= O_constant
)
7662 as_bad (_("Improper rotate count"));
7663 rot
= imm_expr
.X_add_number
& 0x3f;
7664 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
7667 macro_build (NULL
, "dror32", "d,w,<", dreg
, sreg
, rot
- 32);
7669 macro_build (NULL
, "dror", "d,w,<", dreg
, sreg
, rot
);
7674 macro_build (NULL
, "dsrl", "d,w,<", dreg
, sreg
, 0);
7677 rr
= (rot
< 0x20) ? "dsrl" : "dsrl32";
7678 l
= ((0x40 - rot
) < 0x20) ? "dsll" : "dsll32";
7681 macro_build (NULL
, rr
, "d,w,<", AT
, sreg
, rot
);
7682 macro_build (NULL
, l
, "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7683 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7691 if (imm_expr
.X_op
!= O_constant
)
7692 as_bad (_("Improper rotate count"));
7693 rot
= imm_expr
.X_add_number
& 0x1f;
7694 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
7696 macro_build (NULL
, "ror", "d,w,<", dreg
, sreg
, rot
);
7701 macro_build (NULL
, "srl", "d,w,<", dreg
, sreg
, 0);
7705 macro_build (NULL
, "srl", "d,w,<", AT
, sreg
, rot
);
7706 macro_build (NULL
, "sll", "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7707 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7713 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, treg
, BFD_RELOC_LO16
);
7715 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7718 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, treg
);
7719 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, dreg
, BFD_RELOC_LO16
);
7724 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
7726 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7731 as_warn (_("Instruction %s: result is always false"),
7733 move_register (dreg
, 0);
7736 if (CPU_HAS_SEQ (mips_opts
.arch
)
7737 && -512 <= imm_expr
.X_add_number
7738 && imm_expr
.X_add_number
< 512)
7740 macro_build (NULL
, "seqi", "t,r,+Q", dreg
, sreg
,
7741 (int) imm_expr
.X_add_number
);
7744 if (imm_expr
.X_op
== O_constant
7745 && imm_expr
.X_add_number
>= 0
7746 && imm_expr
.X_add_number
< 0x10000)
7748 macro_build (&imm_expr
, "xori", "t,r,i", dreg
, sreg
, BFD_RELOC_LO16
);
7750 else if (imm_expr
.X_op
== O_constant
7751 && imm_expr
.X_add_number
> -0x8000
7752 && imm_expr
.X_add_number
< 0)
7754 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7755 macro_build (&imm_expr
, HAVE_32BIT_GPRS
? "addiu" : "daddiu",
7756 "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7758 else if (CPU_HAS_SEQ (mips_opts
.arch
))
7761 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7762 macro_build (NULL
, "seq", "d,v,t", dreg
, sreg
, AT
);
7767 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7768 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, AT
);
7771 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, dreg
, BFD_RELOC_LO16
);
7774 case M_SGE
: /* sreg >= treg <==> not (sreg < treg) */
7780 macro_build (NULL
, s
, "d,v,t", dreg
, sreg
, treg
);
7781 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7784 case M_SGE_I
: /* sreg >= I <==> not (sreg < I) */
7786 if (imm_expr
.X_op
== O_constant
7787 && imm_expr
.X_add_number
>= -0x8000
7788 && imm_expr
.X_add_number
< 0x8000)
7790 macro_build (&imm_expr
, mask
== M_SGE_I
? "slti" : "sltiu", "t,r,j",
7791 dreg
, sreg
, BFD_RELOC_LO16
);
7795 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7796 macro_build (NULL
, mask
== M_SGE_I
? "slt" : "sltu", "d,v,t",
7800 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7803 case M_SGT
: /* sreg > treg <==> treg < sreg */
7809 macro_build (NULL
, s
, "d,v,t", dreg
, treg
, sreg
);
7812 case M_SGT_I
: /* sreg > I <==> I < sreg */
7819 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7820 macro_build (NULL
, s
, "d,v,t", dreg
, AT
, sreg
);
7823 case M_SLE
: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
7829 macro_build (NULL
, s
, "d,v,t", dreg
, treg
, sreg
);
7830 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7833 case M_SLE_I
: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
7840 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7841 macro_build (NULL
, s
, "d,v,t", dreg
, AT
, sreg
);
7842 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7846 if (imm_expr
.X_op
== O_constant
7847 && imm_expr
.X_add_number
>= -0x8000
7848 && imm_expr
.X_add_number
< 0x8000)
7850 macro_build (&imm_expr
, "slti", "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7854 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7855 macro_build (NULL
, "slt", "d,v,t", dreg
, sreg
, AT
);
7859 if (imm_expr
.X_op
== O_constant
7860 && imm_expr
.X_add_number
>= -0x8000
7861 && imm_expr
.X_add_number
< 0x8000)
7863 macro_build (&imm_expr
, "sltiu", "t,r,j", dreg
, sreg
,
7868 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7869 macro_build (NULL
, "sltu", "d,v,t", dreg
, sreg
, AT
);
7874 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, treg
);
7876 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, sreg
);
7879 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, treg
);
7880 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, dreg
);
7885 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
7887 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, sreg
);
7892 as_warn (_("Instruction %s: result is always true"),
7894 macro_build (&expr1
, HAVE_32BIT_GPRS
? "addiu" : "daddiu", "t,r,j",
7895 dreg
, 0, BFD_RELOC_LO16
);
7898 if (CPU_HAS_SEQ (mips_opts
.arch
)
7899 && -512 <= imm_expr
.X_add_number
7900 && imm_expr
.X_add_number
< 512)
7902 macro_build (NULL
, "snei", "t,r,+Q", dreg
, sreg
,
7903 (int) imm_expr
.X_add_number
);
7906 if (imm_expr
.X_op
== O_constant
7907 && imm_expr
.X_add_number
>= 0
7908 && imm_expr
.X_add_number
< 0x10000)
7910 macro_build (&imm_expr
, "xori", "t,r,i", dreg
, sreg
, BFD_RELOC_LO16
);
7912 else if (imm_expr
.X_op
== O_constant
7913 && imm_expr
.X_add_number
> -0x8000
7914 && imm_expr
.X_add_number
< 0)
7916 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7917 macro_build (&imm_expr
, HAVE_32BIT_GPRS
? "addiu" : "daddiu",
7918 "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7920 else if (CPU_HAS_SEQ (mips_opts
.arch
))
7923 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7924 macro_build (NULL
, "sne", "d,v,t", dreg
, sreg
, AT
);
7929 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7930 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, AT
);
7933 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, dreg
);
7939 if (imm_expr
.X_op
== O_constant
7940 && imm_expr
.X_add_number
> -0x8000
7941 && imm_expr
.X_add_number
<= 0x8000)
7943 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7944 macro_build (&imm_expr
, dbl
? "daddi" : "addi", "t,r,j",
7945 dreg
, sreg
, BFD_RELOC_LO16
);
7949 load_register (AT
, &imm_expr
, dbl
);
7950 macro_build (NULL
, dbl
? "dsub" : "sub", "d,v,t", dreg
, sreg
, AT
);
7956 if (imm_expr
.X_op
== O_constant
7957 && imm_expr
.X_add_number
> -0x8000
7958 && imm_expr
.X_add_number
<= 0x8000)
7960 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7961 macro_build (&imm_expr
, dbl
? "daddiu" : "addiu", "t,r,j",
7962 dreg
, sreg
, BFD_RELOC_LO16
);
7966 load_register (AT
, &imm_expr
, dbl
);
7967 macro_build (NULL
, dbl
? "dsubu" : "subu", "d,v,t", dreg
, sreg
, AT
);
7989 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7990 macro_build (NULL
, s
, "s,t", sreg
, AT
);
7995 gas_assert (mips_opts
.isa
== ISA_MIPS1
);
7997 sreg
= (ip
->insn_opcode
>> 11) & 0x1f; /* floating reg */
7998 dreg
= (ip
->insn_opcode
>> 06) & 0x1f; /* floating reg */
8001 * Is the double cfc1 instruction a bug in the mips assembler;
8002 * or is there a reason for it?
8005 macro_build (NULL
, "cfc1", "t,G", treg
, RA
);
8006 macro_build (NULL
, "cfc1", "t,G", treg
, RA
);
8007 macro_build (NULL
, "nop", "");
8008 expr1
.X_add_number
= 3;
8009 macro_build (&expr1
, "ori", "t,r,i", AT
, treg
, BFD_RELOC_LO16
);
8010 expr1
.X_add_number
= 2;
8011 macro_build (&expr1
, "xori", "t,r,i", AT
, AT
, BFD_RELOC_LO16
);
8012 macro_build (NULL
, "ctc1", "t,G", AT
, RA
);
8013 macro_build (NULL
, "nop", "");
8014 macro_build (NULL
, mask
== M_TRUNCWD
? "cvt.w.d" : "cvt.w.s", "D,S",
8016 macro_build (NULL
, "ctc1", "t,G", treg
, RA
);
8017 macro_build (NULL
, "nop", "");
8028 if (offset_expr
.X_add_number
>= 0x7fff)
8029 as_bad (_("Operand overflow"));
8030 if (!target_big_endian
)
8031 ++offset_expr
.X_add_number
;
8032 macro_build (&offset_expr
, s
, "t,o(b)", AT
, BFD_RELOC_LO16
, breg
);
8033 if (!target_big_endian
)
8034 --offset_expr
.X_add_number
;
8036 ++offset_expr
.X_add_number
;
8037 macro_build (&offset_expr
, "lbu", "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
8038 macro_build (NULL
, "sll", "d,w,<", AT
, AT
, 8);
8039 macro_build (NULL
, "or", "d,v,t", treg
, treg
, AT
);
8052 if (offset_expr
.X_add_number
>= 0x8000 - off
)
8053 as_bad (_("Operand overflow"));
8061 if (!target_big_endian
)
8062 offset_expr
.X_add_number
+= off
;
8063 macro_build (&offset_expr
, s
, "t,o(b)", tempreg
, BFD_RELOC_LO16
, breg
);
8064 if (!target_big_endian
)
8065 offset_expr
.X_add_number
-= off
;
8067 offset_expr
.X_add_number
+= off
;
8068 macro_build (&offset_expr
, s2
, "t,o(b)", tempreg
, BFD_RELOC_LO16
, breg
);
8070 /* If necessary, move the result in tempreg to the final destination. */
8071 if (treg
== tempreg
)
8073 /* Protect second load's delay slot. */
8075 move_register (treg
, tempreg
);
8089 load_address (AT
, &offset_expr
, &used_at
);
8091 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
8092 if (!target_big_endian
)
8093 expr1
.X_add_number
= off
;
8095 expr1
.X_add_number
= 0;
8096 macro_build (&expr1
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8097 if (!target_big_endian
)
8098 expr1
.X_add_number
= 0;
8100 expr1
.X_add_number
= off
;
8101 macro_build (&expr1
, s2
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8107 load_address (AT
, &offset_expr
, &used_at
);
8109 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
8110 if (target_big_endian
)
8111 expr1
.X_add_number
= 0;
8112 macro_build (&expr1
, mask
== M_ULH_A
? "lb" : "lbu", "t,o(b)",
8113 treg
, BFD_RELOC_LO16
, AT
);
8114 if (target_big_endian
)
8115 expr1
.X_add_number
= 1;
8117 expr1
.X_add_number
= 0;
8118 macro_build (&expr1
, "lbu", "t,o(b)", AT
, BFD_RELOC_LO16
, AT
);
8119 macro_build (NULL
, "sll", "d,w,<", treg
, treg
, 8);
8120 macro_build (NULL
, "or", "d,v,t", treg
, treg
, AT
);
8125 if (offset_expr
.X_add_number
>= 0x7fff)
8126 as_bad (_("Operand overflow"));
8127 if (target_big_endian
)
8128 ++offset_expr
.X_add_number
;
8129 macro_build (&offset_expr
, "sb", "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
8130 macro_build (NULL
, "srl", "d,w,<", AT
, treg
, 8);
8131 if (target_big_endian
)
8132 --offset_expr
.X_add_number
;
8134 ++offset_expr
.X_add_number
;
8135 macro_build (&offset_expr
, "sb", "t,o(b)", AT
, BFD_RELOC_LO16
, breg
);
8148 if (offset_expr
.X_add_number
>= 0x8000 - off
)
8149 as_bad (_("Operand overflow"));
8150 if (!target_big_endian
)
8151 offset_expr
.X_add_number
+= off
;
8152 macro_build (&offset_expr
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
8153 if (!target_big_endian
)
8154 offset_expr
.X_add_number
-= off
;
8156 offset_expr
.X_add_number
+= off
;
8157 macro_build (&offset_expr
, s2
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
8171 load_address (AT
, &offset_expr
, &used_at
);
8173 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
8174 if (!target_big_endian
)
8175 expr1
.X_add_number
= off
;
8177 expr1
.X_add_number
= 0;
8178 macro_build (&expr1
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8179 if (!target_big_endian
)
8180 expr1
.X_add_number
= 0;
8182 expr1
.X_add_number
= off
;
8183 macro_build (&expr1
, s2
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8188 load_address (AT
, &offset_expr
, &used_at
);
8190 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
8191 if (!target_big_endian
)
8192 expr1
.X_add_number
= 0;
8193 macro_build (&expr1
, "sb", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8194 macro_build (NULL
, "srl", "d,w,<", treg
, treg
, 8);
8195 if (!target_big_endian
)
8196 expr1
.X_add_number
= 1;
8198 expr1
.X_add_number
= 0;
8199 macro_build (&expr1
, "sb", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
8200 if (!target_big_endian
)
8201 expr1
.X_add_number
= 0;
8203 expr1
.X_add_number
= 1;
8204 macro_build (&expr1
, "lbu", "t,o(b)", AT
, BFD_RELOC_LO16
, AT
);
8205 macro_build (NULL
, "sll", "d,w,<", treg
, treg
, 8);
8206 macro_build (NULL
, "or", "d,v,t", treg
, treg
, AT
);
8210 /* FIXME: Check if this is one of the itbl macros, since they
8211 are added dynamically. */
8212 as_bad (_("Macro %s not implemented yet"), ip
->insn_mo
->name
);
8215 if (!mips_opts
.at
&& used_at
)
8216 as_bad (_("Macro used $at after \".set noat\""));
8219 /* Implement macros in mips16 mode. */
8222 mips16_macro (struct mips_cl_insn
*ip
)
8225 int xreg
, yreg
, zreg
, tmp
;
8228 const char *s
, *s2
, *s3
;
8230 mask
= ip
->insn_mo
->mask
;
8232 xreg
= MIPS16_EXTRACT_OPERAND (RX
, *ip
);
8233 yreg
= MIPS16_EXTRACT_OPERAND (RY
, *ip
);
8234 zreg
= MIPS16_EXTRACT_OPERAND (RZ
, *ip
);
8236 expr1
.X_op
= O_constant
;
8237 expr1
.X_op_symbol
= NULL
;
8238 expr1
.X_add_symbol
= NULL
;
8239 expr1
.X_add_number
= 1;
8259 macro_build (NULL
, dbl
? "ddiv" : "div", "0,x,y", xreg
, yreg
);
8260 expr1
.X_add_number
= 2;
8261 macro_build (&expr1
, "bnez", "x,p", yreg
);
8262 macro_build (NULL
, "break", "6", 7);
8264 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
8265 since that causes an overflow. We should do that as well,
8266 but I don't see how to do the comparisons without a temporary
8269 macro_build (NULL
, s
, "x", zreg
);
8289 macro_build (NULL
, s
, "0,x,y", xreg
, yreg
);
8290 expr1
.X_add_number
= 2;
8291 macro_build (&expr1
, "bnez", "x,p", yreg
);
8292 macro_build (NULL
, "break", "6", 7);
8294 macro_build (NULL
, s2
, "x", zreg
);
8300 macro_build (NULL
, dbl
? "dmultu" : "multu", "x,y", xreg
, yreg
);
8301 macro_build (NULL
, "mflo", "x", zreg
);
8309 if (imm_expr
.X_op
!= O_constant
)
8310 as_bad (_("Unsupported large constant"));
8311 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
8312 macro_build (&imm_expr
, dbl
? "daddiu" : "addiu", "y,x,4", yreg
, xreg
);
8316 if (imm_expr
.X_op
!= O_constant
)
8317 as_bad (_("Unsupported large constant"));
8318 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
8319 macro_build (&imm_expr
, "addiu", "x,k", xreg
);
8323 if (imm_expr
.X_op
!= O_constant
)
8324 as_bad (_("Unsupported large constant"));
8325 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
8326 macro_build (&imm_expr
, "daddiu", "y,j", yreg
);
8348 goto do_reverse_branch
;
8352 goto do_reverse_branch
;
8364 goto do_reverse_branch
;
8375 macro_build (NULL
, s
, "x,y", xreg
, yreg
);
8376 macro_build (&offset_expr
, s2
, "p");
8403 goto do_addone_branch_i
;
8408 goto do_addone_branch_i
;
8423 goto do_addone_branch_i
;
8430 if (imm_expr
.X_op
!= O_constant
)
8431 as_bad (_("Unsupported large constant"));
8432 ++imm_expr
.X_add_number
;
8435 macro_build (&imm_expr
, s
, s3
, xreg
);
8436 macro_build (&offset_expr
, s2
, "p");
8440 expr1
.X_add_number
= 0;
8441 macro_build (&expr1
, "slti", "x,8", yreg
);
8443 move_register (xreg
, yreg
);
8444 expr1
.X_add_number
= 2;
8445 macro_build (&expr1
, "bteqz", "p");
8446 macro_build (NULL
, "neg", "x,w", xreg
, xreg
);
8450 /* For consistency checking, verify that all bits are specified either
8451 by the match/mask part of the instruction definition, or by the
8454 validate_mips_insn (const struct mips_opcode
*opc
)
8456 const char *p
= opc
->args
;
8458 unsigned long used_bits
= opc
->mask
;
8460 if ((used_bits
& opc
->match
) != opc
->match
)
8462 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
8463 opc
->name
, opc
->args
);
8466 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
8476 case '1': USE_BITS (OP_MASK_UDI1
, OP_SH_UDI1
); break;
8477 case '2': USE_BITS (OP_MASK_UDI2
, OP_SH_UDI2
); break;
8478 case '3': USE_BITS (OP_MASK_UDI3
, OP_SH_UDI3
); break;
8479 case '4': USE_BITS (OP_MASK_UDI4
, OP_SH_UDI4
); break;
8480 case 'A': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
8481 case 'B': USE_BITS (OP_MASK_INSMSB
, OP_SH_INSMSB
); break;
8482 case 'C': USE_BITS (OP_MASK_EXTMSBD
, OP_SH_EXTMSBD
); break;
8483 case 'D': USE_BITS (OP_MASK_RD
, OP_SH_RD
);
8484 USE_BITS (OP_MASK_SEL
, OP_SH_SEL
); break;
8485 case 'E': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
8486 case 'F': USE_BITS (OP_MASK_INSMSB
, OP_SH_INSMSB
); break;
8487 case 'G': USE_BITS (OP_MASK_EXTMSBD
, OP_SH_EXTMSBD
); break;
8488 case 'H': USE_BITS (OP_MASK_EXTMSBD
, OP_SH_EXTMSBD
); break;
8490 case 't': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8491 case 'T': USE_BITS (OP_MASK_RT
, OP_SH_RT
);
8492 USE_BITS (OP_MASK_SEL
, OP_SH_SEL
); break;
8493 case 'x': USE_BITS (OP_MASK_BBITIND
, OP_SH_BBITIND
); break;
8494 case 'X': USE_BITS (OP_MASK_BBITIND
, OP_SH_BBITIND
); break;
8495 case 'p': USE_BITS (OP_MASK_CINSPOS
, OP_SH_CINSPOS
); break;
8496 case 'P': USE_BITS (OP_MASK_CINSPOS
, OP_SH_CINSPOS
); break;
8497 case 'Q': USE_BITS (OP_MASK_SEQI
, OP_SH_SEQI
); break;
8498 case 's': USE_BITS (OP_MASK_CINSLM1
, OP_SH_CINSLM1
); break;
8499 case 'S': USE_BITS (OP_MASK_CINSLM1
, OP_SH_CINSLM1
); break;
8500 case 'z': USE_BITS (OP_MASK_RZ
, OP_SH_RZ
); break;
8501 case 'Z': USE_BITS (OP_MASK_FZ
, OP_SH_FZ
); break;
8502 case 'a': USE_BITS (OP_MASK_OFFSET_A
, OP_SH_OFFSET_A
); break;
8503 case 'b': USE_BITS (OP_MASK_OFFSET_B
, OP_SH_OFFSET_B
); break;
8504 case 'c': USE_BITS (OP_MASK_OFFSET_C
, OP_SH_OFFSET_C
); break;
8507 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8508 c
, opc
->name
, opc
->args
);
8512 case '<': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
8513 case '>': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
8515 case 'B': USE_BITS (OP_MASK_CODE20
, OP_SH_CODE20
); break;
8516 case 'C': USE_BITS (OP_MASK_COPZ
, OP_SH_COPZ
); break;
8517 case 'D': USE_BITS (OP_MASK_FD
, OP_SH_FD
); break;
8518 case 'E': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8520 case 'G': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
8521 case 'H': USE_BITS (OP_MASK_SEL
, OP_SH_SEL
); break;
8523 case 'J': USE_BITS (OP_MASK_CODE19
, OP_SH_CODE19
); break;
8524 case 'K': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
8526 case 'M': USE_BITS (OP_MASK_CCC
, OP_SH_CCC
); break;
8527 case 'N': USE_BITS (OP_MASK_BCC
, OP_SH_BCC
); break;
8528 case 'O': USE_BITS (OP_MASK_ALN
, OP_SH_ALN
); break;
8529 case 'Q': USE_BITS (OP_MASK_VSEL
, OP_SH_VSEL
);
8530 USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
8531 case 'R': USE_BITS (OP_MASK_FR
, OP_SH_FR
); break;
8532 case 'S': USE_BITS (OP_MASK_FS
, OP_SH_FS
); break;
8533 case 'T': USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
8534 case 'V': USE_BITS (OP_MASK_FS
, OP_SH_FS
); break;
8535 case 'W': USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
8536 case 'X': USE_BITS (OP_MASK_FD
, OP_SH_FD
); break;
8537 case 'Y': USE_BITS (OP_MASK_FS
, OP_SH_FS
); break;
8538 case 'Z': USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
8539 case 'a': USE_BITS (OP_MASK_TARGET
, OP_SH_TARGET
); break;
8540 case 'b': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8541 case 'c': USE_BITS (OP_MASK_CODE
, OP_SH_CODE
); break;
8542 case 'd': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
8544 case 'h': USE_BITS (OP_MASK_PREFX
, OP_SH_PREFX
); break;
8545 case 'i': USE_BITS (OP_MASK_IMMEDIATE
, OP_SH_IMMEDIATE
); break;
8546 case 'j': USE_BITS (OP_MASK_DELTA
, OP_SH_DELTA
); break;
8547 case 'k': USE_BITS (OP_MASK_CACHE
, OP_SH_CACHE
); break;
8549 case 'o': USE_BITS (OP_MASK_DELTA
, OP_SH_DELTA
); break;
8550 case 'p': USE_BITS (OP_MASK_DELTA
, OP_SH_DELTA
); break;
8551 case 'q': USE_BITS (OP_MASK_CODE2
, OP_SH_CODE2
); break;
8552 case 'r': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8553 case 's': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8554 case 't': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8555 case 'u': USE_BITS (OP_MASK_IMMEDIATE
, OP_SH_IMMEDIATE
); break;
8556 case 'v': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8557 case 'w': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8560 case 'P': USE_BITS (OP_MASK_PERFREG
, OP_SH_PERFREG
); break;
8561 case 'U': USE_BITS (OP_MASK_RD
, OP_SH_RD
);
8562 USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
8563 case 'e': USE_BITS (OP_MASK_VECBYTE
, OP_SH_VECBYTE
); break;
8564 case '%': USE_BITS (OP_MASK_VECALIGN
, OP_SH_VECALIGN
); break;
8567 case '1': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
8568 case '2': USE_BITS (OP_MASK_BP
, OP_SH_BP
); break;
8569 case '3': USE_BITS (OP_MASK_SA3
, OP_SH_SA3
); break;
8570 case '4': USE_BITS (OP_MASK_SA4
, OP_SH_SA4
); break;
8571 case '5': USE_BITS (OP_MASK_IMM8
, OP_SH_IMM8
); break;
8572 case '6': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
8573 case '7': USE_BITS (OP_MASK_DSPACC
, OP_SH_DSPACC
); break;
8574 case '8': USE_BITS (OP_MASK_WRDSP
, OP_SH_WRDSP
); break;
8575 case '9': USE_BITS (OP_MASK_DSPACC_S
, OP_SH_DSPACC_S
);break;
8576 case '0': USE_BITS (OP_MASK_DSPSFT
, OP_SH_DSPSFT
); break;
8577 case '\'': USE_BITS (OP_MASK_RDDSP
, OP_SH_RDDSP
); break;
8578 case ':': USE_BITS (OP_MASK_DSPSFT_7
, OP_SH_DSPSFT_7
);break;
8579 case '@': USE_BITS (OP_MASK_IMM10
, OP_SH_IMM10
); break;
8580 case '!': USE_BITS (OP_MASK_MT_U
, OP_SH_MT_U
); break;
8581 case '$': USE_BITS (OP_MASK_MT_H
, OP_SH_MT_H
); break;
8582 case '*': USE_BITS (OP_MASK_MTACC_T
, OP_SH_MTACC_T
); break;
8583 case '&': USE_BITS (OP_MASK_MTACC_D
, OP_SH_MTACC_D
); break;
8584 case 'g': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
8586 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
8587 c
, opc
->name
, opc
->args
);
8591 if (used_bits
!= 0xffffffff)
8593 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
8594 ~used_bits
& 0xffffffff, opc
->name
, opc
->args
);
8600 /* UDI immediates. */
8608 static const struct mips_immed mips_immed
[] = {
8609 { '1', OP_SH_UDI1
, OP_MASK_UDI1
, 0},
8610 { '2', OP_SH_UDI2
, OP_MASK_UDI2
, 0},
8611 { '3', OP_SH_UDI3
, OP_MASK_UDI3
, 0},
8612 { '4', OP_SH_UDI4
, OP_MASK_UDI4
, 0},
8616 /* Check whether an odd floating-point register is allowed. */
8618 mips_oddfpreg_ok (const struct mips_opcode
*insn
, int argnum
)
8620 const char *s
= insn
->name
;
8622 if (insn
->pinfo
== INSN_MACRO
)
8623 /* Let a macro pass, we'll catch it later when it is expanded. */
8626 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts
.isa
))
8628 /* Allow odd registers for single-precision ops. */
8629 switch (insn
->pinfo
& (FP_S
| FP_D
))
8633 return 1; /* both single precision - ok */
8635 return 0; /* both double precision - fail */
8640 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
8641 s
= strchr (insn
->name
, '.');
8643 s
= s
!= NULL
? strchr (s
+ 1, '.') : NULL
;
8644 return (s
!= NULL
&& (s
[1] == 'w' || s
[1] == 's'));
8647 /* Single-precision coprocessor loads and moves are OK too. */
8648 if ((insn
->pinfo
& FP_S
)
8649 && (insn
->pinfo
& (INSN_COPROC_MEMORY_DELAY
| INSN_STORE_MEMORY
8650 | INSN_LOAD_COPROC_DELAY
| INSN_COPROC_MOVE_DELAY
)))
8656 /* This routine assembles an instruction into its binary format. As a
8657 side effect, it sets one of the global variables imm_reloc or
8658 offset_reloc to the type of relocation to do if one of the operands
8659 is an address expression. */
8662 mips_ip (char *str
, struct mips_cl_insn
*ip
)
8667 struct mips_opcode
*insn
;
8670 unsigned int lastregno
;
8671 unsigned int lastpos
= 0;
8672 unsigned int limlo
, limhi
;
8675 offsetT min_range
, max_range
;
8681 /* If the instruction contains a '.', we first try to match an instruction
8682 including the '.'. Then we try again without the '.'. */
8684 for (s
= str
; *s
!= '\0' && !ISSPACE (*s
); ++s
)
8687 /* If we stopped on whitespace, then replace the whitespace with null for
8688 the call to hash_find. Save the character we replaced just in case we
8689 have to re-parse the instruction. */
8696 insn
= (struct mips_opcode
*) hash_find (op_hash
, str
);
8698 /* If we didn't find the instruction in the opcode table, try again, but
8699 this time with just the instruction up to, but not including the
8703 /* Restore the character we overwrite above (if any). */
8707 /* Scan up to the first '.' or whitespace. */
8709 *s
!= '\0' && *s
!= '.' && !ISSPACE (*s
);
8713 /* If we did not find a '.', then we can quit now. */
8716 insn_error
= _("Unrecognized opcode");
8720 /* Lookup the instruction in the hash table. */
8722 if ((insn
= (struct mips_opcode
*) hash_find (op_hash
, str
)) == NULL
)
8724 insn_error
= _("Unrecognized opcode");
8734 gas_assert (strcmp (insn
->name
, str
) == 0);
8736 ok
= is_opcode_valid (insn
);
8739 if (insn
+ 1 < &mips_opcodes
[NUMOPCODES
]
8740 && strcmp (insn
->name
, insn
[1].name
) == 0)
8749 static char buf
[100];
8751 _("opcode not supported on this processor: %s (%s)"),
8752 mips_cpu_info_from_arch (mips_opts
.arch
)->name
,
8753 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
8762 create_insn (ip
, insn
);
8765 lastregno
= 0xffffffff;
8766 for (args
= insn
->args
;; ++args
)
8770 s
+= strspn (s
, " \t");
8774 case '\0': /* end of args */
8779 case '2': /* DSP 2-bit unsigned immediate in bit 11. */
8780 my_getExpression (&imm_expr
, s
);
8781 check_absolute_expr (ip
, &imm_expr
);
8782 if ((unsigned long) imm_expr
.X_add_number
!= 1
8783 && (unsigned long) imm_expr
.X_add_number
!= 3)
8785 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
8786 (unsigned long) imm_expr
.X_add_number
);
8788 INSERT_OPERAND (BP
, *ip
, imm_expr
.X_add_number
);
8789 imm_expr
.X_op
= O_absent
;
8793 case '3': /* DSP 3-bit unsigned immediate in bit 21. */
8794 my_getExpression (&imm_expr
, s
);
8795 check_absolute_expr (ip
, &imm_expr
);
8796 if (imm_expr
.X_add_number
& ~OP_MASK_SA3
)
8798 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8799 OP_MASK_SA3
, (unsigned long) imm_expr
.X_add_number
);
8801 INSERT_OPERAND (SA3
, *ip
, imm_expr
.X_add_number
);
8802 imm_expr
.X_op
= O_absent
;
8806 case '4': /* DSP 4-bit unsigned immediate in bit 21. */
8807 my_getExpression (&imm_expr
, s
);
8808 check_absolute_expr (ip
, &imm_expr
);
8809 if (imm_expr
.X_add_number
& ~OP_MASK_SA4
)
8811 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8812 OP_MASK_SA4
, (unsigned long) imm_expr
.X_add_number
);
8814 INSERT_OPERAND (SA4
, *ip
, imm_expr
.X_add_number
);
8815 imm_expr
.X_op
= O_absent
;
8819 case '5': /* DSP 8-bit unsigned immediate in bit 16. */
8820 my_getExpression (&imm_expr
, s
);
8821 check_absolute_expr (ip
, &imm_expr
);
8822 if (imm_expr
.X_add_number
& ~OP_MASK_IMM8
)
8824 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8825 OP_MASK_IMM8
, (unsigned long) imm_expr
.X_add_number
);
8827 INSERT_OPERAND (IMM8
, *ip
, imm_expr
.X_add_number
);
8828 imm_expr
.X_op
= O_absent
;
8832 case '6': /* DSP 5-bit unsigned immediate in bit 21. */
8833 my_getExpression (&imm_expr
, s
);
8834 check_absolute_expr (ip
, &imm_expr
);
8835 if (imm_expr
.X_add_number
& ~OP_MASK_RS
)
8837 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8838 OP_MASK_RS
, (unsigned long) imm_expr
.X_add_number
);
8840 INSERT_OPERAND (RS
, *ip
, imm_expr
.X_add_number
);
8841 imm_expr
.X_op
= O_absent
;
8845 case '7': /* Four DSP accumulators in bits 11,12. */
8846 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8847 s
[3] >= '0' && s
[3] <= '3')
8851 INSERT_OPERAND (DSPACC
, *ip
, regno
);
8855 as_bad (_("Invalid dsp acc register"));
8858 case '8': /* DSP 6-bit unsigned immediate in bit 11. */
8859 my_getExpression (&imm_expr
, s
);
8860 check_absolute_expr (ip
, &imm_expr
);
8861 if (imm_expr
.X_add_number
& ~OP_MASK_WRDSP
)
8863 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8865 (unsigned long) imm_expr
.X_add_number
);
8867 INSERT_OPERAND (WRDSP
, *ip
, imm_expr
.X_add_number
);
8868 imm_expr
.X_op
= O_absent
;
8872 case '9': /* Four DSP accumulators in bits 21,22. */
8873 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8874 s
[3] >= '0' && s
[3] <= '3')
8878 INSERT_OPERAND (DSPACC_S
, *ip
, regno
);
8882 as_bad (_("Invalid dsp acc register"));
8885 case '0': /* DSP 6-bit signed immediate in bit 20. */
8886 my_getExpression (&imm_expr
, s
);
8887 check_absolute_expr (ip
, &imm_expr
);
8888 min_range
= -((OP_MASK_DSPSFT
+ 1) >> 1);
8889 max_range
= ((OP_MASK_DSPSFT
+ 1) >> 1) - 1;
8890 if (imm_expr
.X_add_number
< min_range
||
8891 imm_expr
.X_add_number
> max_range
)
8893 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8894 (long) min_range
, (long) max_range
,
8895 (long) imm_expr
.X_add_number
);
8897 INSERT_OPERAND (DSPSFT
, *ip
, imm_expr
.X_add_number
);
8898 imm_expr
.X_op
= O_absent
;
8902 case '\'': /* DSP 6-bit unsigned immediate in bit 16. */
8903 my_getExpression (&imm_expr
, s
);
8904 check_absolute_expr (ip
, &imm_expr
);
8905 if (imm_expr
.X_add_number
& ~OP_MASK_RDDSP
)
8907 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8909 (unsigned long) imm_expr
.X_add_number
);
8911 INSERT_OPERAND (RDDSP
, *ip
, imm_expr
.X_add_number
);
8912 imm_expr
.X_op
= O_absent
;
8916 case ':': /* DSP 7-bit signed immediate in bit 19. */
8917 my_getExpression (&imm_expr
, s
);
8918 check_absolute_expr (ip
, &imm_expr
);
8919 min_range
= -((OP_MASK_DSPSFT_7
+ 1) >> 1);
8920 max_range
= ((OP_MASK_DSPSFT_7
+ 1) >> 1) - 1;
8921 if (imm_expr
.X_add_number
< min_range
||
8922 imm_expr
.X_add_number
> max_range
)
8924 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8925 (long) min_range
, (long) max_range
,
8926 (long) imm_expr
.X_add_number
);
8928 INSERT_OPERAND (DSPSFT_7
, *ip
, imm_expr
.X_add_number
);
8929 imm_expr
.X_op
= O_absent
;
8933 case '@': /* DSP 10-bit signed immediate in bit 16. */
8934 my_getExpression (&imm_expr
, s
);
8935 check_absolute_expr (ip
, &imm_expr
);
8936 min_range
= -((OP_MASK_IMM10
+ 1) >> 1);
8937 max_range
= ((OP_MASK_IMM10
+ 1) >> 1) - 1;
8938 if (imm_expr
.X_add_number
< min_range
||
8939 imm_expr
.X_add_number
> max_range
)
8941 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8942 (long) min_range
, (long) max_range
,
8943 (long) imm_expr
.X_add_number
);
8945 INSERT_OPERAND (IMM10
, *ip
, imm_expr
.X_add_number
);
8946 imm_expr
.X_op
= O_absent
;
8950 case '!': /* MT usermode flag bit. */
8951 my_getExpression (&imm_expr
, s
);
8952 check_absolute_expr (ip
, &imm_expr
);
8953 if (imm_expr
.X_add_number
& ~OP_MASK_MT_U
)
8954 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
8955 (unsigned long) imm_expr
.X_add_number
);
8956 INSERT_OPERAND (MT_U
, *ip
, imm_expr
.X_add_number
);
8957 imm_expr
.X_op
= O_absent
;
8961 case '$': /* MT load high flag bit. */
8962 my_getExpression (&imm_expr
, s
);
8963 check_absolute_expr (ip
, &imm_expr
);
8964 if (imm_expr
.X_add_number
& ~OP_MASK_MT_H
)
8965 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
8966 (unsigned long) imm_expr
.X_add_number
);
8967 INSERT_OPERAND (MT_H
, *ip
, imm_expr
.X_add_number
);
8968 imm_expr
.X_op
= O_absent
;
8972 case '*': /* Four DSP accumulators in bits 18,19. */
8973 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8974 s
[3] >= '0' && s
[3] <= '3')
8978 INSERT_OPERAND (MTACC_T
, *ip
, regno
);
8982 as_bad (_("Invalid dsp/smartmips acc register"));
8985 case '&': /* Four DSP accumulators in bits 13,14. */
8986 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8987 s
[3] >= '0' && s
[3] <= '3')
8991 INSERT_OPERAND (MTACC_D
, *ip
, regno
);
8995 as_bad (_("Invalid dsp/smartmips acc register"));
9007 INSERT_OPERAND (RS
, *ip
, lastregno
);
9011 INSERT_OPERAND (RT
, *ip
, lastregno
);
9015 INSERT_OPERAND (FT
, *ip
, lastregno
);
9019 INSERT_OPERAND (FS
, *ip
, lastregno
);
9025 /* Handle optional base register.
9026 Either the base register is omitted or
9027 we must have a left paren. */
9028 /* This is dependent on the next operand specifier
9029 is a base register specification. */
9030 gas_assert (args
[1] == 'b');
9034 case ')': /* These must match exactly. */
9041 case '+': /* Opcode extension character. */
9044 case '1': /* UDI immediates. */
9049 const struct mips_immed
*imm
= mips_immed
;
9051 while (imm
->type
&& imm
->type
!= *args
)
9055 my_getExpression (&imm_expr
, s
);
9056 check_absolute_expr (ip
, &imm_expr
);
9057 if ((unsigned long) imm_expr
.X_add_number
& ~imm
->mask
)
9059 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
9060 imm
->desc
? imm
->desc
: ip
->insn_mo
->name
,
9061 (unsigned long) imm_expr
.X_add_number
,
9062 (unsigned long) imm_expr
.X_add_number
);
9063 imm_expr
.X_add_number
&= imm
->mask
;
9065 ip
->insn_opcode
|= ((unsigned long) imm_expr
.X_add_number
9067 imm_expr
.X_op
= O_absent
;
9072 case 'A': /* ins/ext position, becomes LSB. */
9081 my_getExpression (&imm_expr
, s
);
9082 check_absolute_expr (ip
, &imm_expr
);
9083 if ((unsigned long) imm_expr
.X_add_number
< limlo
9084 || (unsigned long) imm_expr
.X_add_number
> limhi
)
9086 as_bad (_("Improper position (%lu)"),
9087 (unsigned long) imm_expr
.X_add_number
);
9088 imm_expr
.X_add_number
= limlo
;
9090 lastpos
= imm_expr
.X_add_number
;
9091 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
);
9092 imm_expr
.X_op
= O_absent
;
9096 case 'B': /* ins size, becomes MSB. */
9105 my_getExpression (&imm_expr
, s
);
9106 check_absolute_expr (ip
, &imm_expr
);
9107 /* Check for negative input so that small negative numbers
9108 will not succeed incorrectly. The checks against
9109 (pos+size) transitively check "size" itself,
9110 assuming that "pos" is reasonable. */
9111 if ((long) imm_expr
.X_add_number
< 0
9112 || ((unsigned long) imm_expr
.X_add_number
9114 || ((unsigned long) imm_expr
.X_add_number
9117 as_bad (_("Improper insert size (%lu, position %lu)"),
9118 (unsigned long) imm_expr
.X_add_number
,
9119 (unsigned long) lastpos
);
9120 imm_expr
.X_add_number
= limlo
- lastpos
;
9122 INSERT_OPERAND (INSMSB
, *ip
,
9123 lastpos
+ imm_expr
.X_add_number
- 1);
9124 imm_expr
.X_op
= O_absent
;
9128 case 'C': /* ext size, becomes MSBD. */
9141 my_getExpression (&imm_expr
, s
);
9142 check_absolute_expr (ip
, &imm_expr
);
9143 /* Check for negative input so that small negative numbers
9144 will not succeed incorrectly. The checks against
9145 (pos+size) transitively check "size" itself,
9146 assuming that "pos" is reasonable. */
9147 if ((long) imm_expr
.X_add_number
< 0
9148 || ((unsigned long) imm_expr
.X_add_number
9150 || ((unsigned long) imm_expr
.X_add_number
9153 as_bad (_("Improper extract size (%lu, position %lu)"),
9154 (unsigned long) imm_expr
.X_add_number
,
9155 (unsigned long) lastpos
);
9156 imm_expr
.X_add_number
= limlo
- lastpos
;
9158 INSERT_OPERAND (EXTMSBD
, *ip
, imm_expr
.X_add_number
- 1);
9159 imm_expr
.X_op
= O_absent
;
9164 /* +D is for disassembly only; never match. */
9168 /* "+I" is like "I", except that imm2_expr is used. */
9169 my_getExpression (&imm2_expr
, s
);
9170 if (imm2_expr
.X_op
!= O_big
9171 && imm2_expr
.X_op
!= O_constant
)
9172 insn_error
= _("absolute expression required");
9173 if (HAVE_32BIT_GPRS
)
9174 normalize_constant_expr (&imm2_expr
);
9178 case 'T': /* Coprocessor register. */
9179 /* +T is for disassembly only; never match. */
9182 case 't': /* Coprocessor register number. */
9183 if (s
[0] == '$' && ISDIGIT (s
[1]))
9193 while (ISDIGIT (*s
));
9195 as_bad (_("Invalid register number (%d)"), regno
);
9198 INSERT_OPERAND (RT
, *ip
, regno
);
9203 as_bad (_("Invalid coprocessor 0 register number"));
9207 /* bbit[01] and bbit[01]32 bit index. Give error if index
9208 is not in the valid range. */
9209 my_getExpression (&imm_expr
, s
);
9210 check_absolute_expr (ip
, &imm_expr
);
9211 if ((unsigned) imm_expr
.X_add_number
> 31)
9213 as_bad (_("Improper bit index (%lu)"),
9214 (unsigned long) imm_expr
.X_add_number
);
9215 imm_expr
.X_add_number
= 0;
9217 INSERT_OPERAND (BBITIND
, *ip
, imm_expr
.X_add_number
);
9218 imm_expr
.X_op
= O_absent
;
9223 /* bbit[01] bit index when bbit is used but we generate
9224 bbit[01]32 because the index is over 32. Move to the
9225 next candidate if index is not in the valid range. */
9226 my_getExpression (&imm_expr
, s
);
9227 check_absolute_expr (ip
, &imm_expr
);
9228 if ((unsigned) imm_expr
.X_add_number
< 32
9229 || (unsigned) imm_expr
.X_add_number
> 63)
9231 INSERT_OPERAND (BBITIND
, *ip
, imm_expr
.X_add_number
- 32);
9232 imm_expr
.X_op
= O_absent
;
9237 /* cins, cins32, exts and exts32 position field. Give error
9238 if it's not in the valid range. */
9239 my_getExpression (&imm_expr
, s
);
9240 check_absolute_expr (ip
, &imm_expr
);
9241 if ((unsigned) imm_expr
.X_add_number
> 31)
9243 as_bad (_("Improper position (%lu)"),
9244 (unsigned long) imm_expr
.X_add_number
);
9245 imm_expr
.X_add_number
= 0;
9247 /* Make the pos explicit to simplify +S. */
9248 lastpos
= imm_expr
.X_add_number
+ 32;
9249 INSERT_OPERAND (CINSPOS
, *ip
, imm_expr
.X_add_number
);
9250 imm_expr
.X_op
= O_absent
;
9255 /* cins, cins32, exts and exts32 position field. Move to
9256 the next candidate if it's not in the valid range. */
9257 my_getExpression (&imm_expr
, s
);
9258 check_absolute_expr (ip
, &imm_expr
);
9259 if ((unsigned) imm_expr
.X_add_number
< 32
9260 || (unsigned) imm_expr
.X_add_number
> 63)
9262 lastpos
= imm_expr
.X_add_number
;
9263 INSERT_OPERAND (CINSPOS
, *ip
, imm_expr
.X_add_number
- 32);
9264 imm_expr
.X_op
= O_absent
;
9269 /* cins and exts length-minus-one field. */
9270 my_getExpression (&imm_expr
, s
);
9271 check_absolute_expr (ip
, &imm_expr
);
9272 if ((unsigned long) imm_expr
.X_add_number
> 31)
9274 as_bad (_("Improper size (%lu)"),
9275 (unsigned long) imm_expr
.X_add_number
);
9276 imm_expr
.X_add_number
= 0;
9278 INSERT_OPERAND (CINSLM1
, *ip
, imm_expr
.X_add_number
);
9279 imm_expr
.X_op
= O_absent
;
9284 /* cins32/exts32 and cins/exts aliasing cint32/exts32
9285 length-minus-one field. */
9286 my_getExpression (&imm_expr
, s
);
9287 check_absolute_expr (ip
, &imm_expr
);
9288 if ((long) imm_expr
.X_add_number
< 0
9289 || (unsigned long) imm_expr
.X_add_number
+ lastpos
> 63)
9291 as_bad (_("Improper size (%lu)"),
9292 (unsigned long) imm_expr
.X_add_number
);
9293 imm_expr
.X_add_number
= 0;
9295 INSERT_OPERAND (CINSLM1
, *ip
, imm_expr
.X_add_number
);
9296 imm_expr
.X_op
= O_absent
;
9301 /* seqi/snei immediate field. */
9302 my_getExpression (&imm_expr
, s
);
9303 check_absolute_expr (ip
, &imm_expr
);
9304 if ((long) imm_expr
.X_add_number
< -512
9305 || (long) imm_expr
.X_add_number
>= 512)
9307 as_bad (_("Improper immediate (%ld)"),
9308 (long) imm_expr
.X_add_number
);
9309 imm_expr
.X_add_number
= 0;
9311 INSERT_OPERAND (SEQI
, *ip
, imm_expr
.X_add_number
);
9312 imm_expr
.X_op
= O_absent
;
9316 case 'a': /* 8-bit signed offset in bit 6 */
9317 my_getExpression (&imm_expr
, s
);
9318 check_absolute_expr (ip
, &imm_expr
);
9319 min_range
= -((OP_MASK_OFFSET_A
+ 1) >> 1);
9320 max_range
= ((OP_MASK_OFFSET_A
+ 1) >> 1) - 1;
9321 if (imm_expr
.X_add_number
< min_range
9322 || imm_expr
.X_add_number
> max_range
)
9324 as_bad (_("Offset not in range %ld..%ld (%ld)"),
9325 (long) min_range
, (long) max_range
,
9326 (long) imm_expr
.X_add_number
);
9328 INSERT_OPERAND (OFFSET_A
, *ip
, imm_expr
.X_add_number
);
9329 imm_expr
.X_op
= O_absent
;
9333 case 'b': /* 8-bit signed offset in bit 3 */
9334 my_getExpression (&imm_expr
, s
);
9335 check_absolute_expr (ip
, &imm_expr
);
9336 min_range
= -((OP_MASK_OFFSET_B
+ 1) >> 1);
9337 max_range
= ((OP_MASK_OFFSET_B
+ 1) >> 1) - 1;
9338 if (imm_expr
.X_add_number
< min_range
9339 || imm_expr
.X_add_number
> max_range
)
9341 as_bad (_("Offset not in range %ld..%ld (%ld)"),
9342 (long) min_range
, (long) max_range
,
9343 (long) imm_expr
.X_add_number
);
9345 INSERT_OPERAND (OFFSET_B
, *ip
, imm_expr
.X_add_number
);
9346 imm_expr
.X_op
= O_absent
;
9350 case 'c': /* 9-bit signed offset in bit 6 */
9351 my_getExpression (&imm_expr
, s
);
9352 check_absolute_expr (ip
, &imm_expr
);
9353 min_range
= -((OP_MASK_OFFSET_C
+ 1) >> 1);
9354 max_range
= ((OP_MASK_OFFSET_C
+ 1) >> 1) - 1;
9355 /* We check the offset range before adjusted. */
9358 if (imm_expr
.X_add_number
< min_range
9359 || imm_expr
.X_add_number
> max_range
)
9361 as_bad (_("Offset not in range %ld..%ld (%ld)"),
9362 (long) min_range
, (long) max_range
,
9363 (long) imm_expr
.X_add_number
);
9365 if (imm_expr
.X_add_number
& 0xf)
9367 as_bad (_("Offset not 16 bytes alignment (%ld)"),
9368 (long) imm_expr
.X_add_number
);
9370 /* Right shift 4 bits to adjust the offset operand. */
9371 INSERT_OPERAND (OFFSET_C
, *ip
, imm_expr
.X_add_number
>> 4);
9372 imm_expr
.X_op
= O_absent
;
9377 if (!reg_lookup (&s
, RTYPE_NUM
| RTYPE_GP
, ®no
))
9379 if (regno
== AT
&& mips_opts
.at
)
9381 if (mips_opts
.at
== ATREG
)
9382 as_warn (_("used $at without \".set noat\""));
9384 as_warn (_("used $%u with \".set at=$%u\""),
9385 regno
, mips_opts
.at
);
9387 INSERT_OPERAND (RZ
, *ip
, regno
);
9391 if (!reg_lookup (&s
, RTYPE_FPU
, ®no
))
9393 INSERT_OPERAND (FZ
, *ip
, regno
);
9397 as_bad (_("Internal error: bad mips opcode "
9398 "(unknown extension operand type `+%c'): %s %s"),
9399 *args
, insn
->name
, insn
->args
);
9400 /* Further processing is fruitless. */
9405 case '<': /* must be at least one digit */
9407 * According to the manual, if the shift amount is greater
9408 * than 31 or less than 0, then the shift amount should be
9409 * mod 32. In reality the mips assembler issues an error.
9410 * We issue a warning and mask out all but the low 5 bits.
9412 my_getExpression (&imm_expr
, s
);
9413 check_absolute_expr (ip
, &imm_expr
);
9414 if ((unsigned long) imm_expr
.X_add_number
> 31)
9415 as_warn (_("Improper shift amount (%lu)"),
9416 (unsigned long) imm_expr
.X_add_number
);
9417 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
);
9418 imm_expr
.X_op
= O_absent
;
9422 case '>': /* shift amount minus 32 */
9423 my_getExpression (&imm_expr
, s
);
9424 check_absolute_expr (ip
, &imm_expr
);
9425 if ((unsigned long) imm_expr
.X_add_number
< 32
9426 || (unsigned long) imm_expr
.X_add_number
> 63)
9428 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
- 32);
9429 imm_expr
.X_op
= O_absent
;
9433 case 'k': /* CACHE code. */
9434 case 'h': /* PREFX code. */
9435 case '1': /* SYNC type. */
9436 my_getExpression (&imm_expr
, s
);
9437 check_absolute_expr (ip
, &imm_expr
);
9438 if ((unsigned long) imm_expr
.X_add_number
> 31)
9439 as_warn (_("Invalid value for `%s' (%lu)"),
9441 (unsigned long) imm_expr
.X_add_number
);
9444 if (mips_fix_cn63xxp1
&& strcmp ("pref", insn
->name
) == 0)
9445 switch (imm_expr
.X_add_number
)
9454 case 31: /* These are ok. */
9457 default: /* The rest must be changed to 28. */
9458 imm_expr
.X_add_number
= 28;
9461 INSERT_OPERAND (CACHE
, *ip
, imm_expr
.X_add_number
);
9463 else if (*args
== 'h')
9464 INSERT_OPERAND (PREFX
, *ip
, imm_expr
.X_add_number
);
9466 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
);
9467 imm_expr
.X_op
= O_absent
;
9471 case 'c': /* BREAK code. */
9472 my_getExpression (&imm_expr
, s
);
9473 check_absolute_expr (ip
, &imm_expr
);
9474 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE
)
9475 as_warn (_("Code for %s not in range 0..1023 (%lu)"),
9477 (unsigned long) imm_expr
.X_add_number
);
9478 INSERT_OPERAND (CODE
, *ip
, imm_expr
.X_add_number
);
9479 imm_expr
.X_op
= O_absent
;
9483 case 'q': /* Lower BREAK code. */
9484 my_getExpression (&imm_expr
, s
);
9485 check_absolute_expr (ip
, &imm_expr
);
9486 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE2
)
9487 as_warn (_("Lower code for %s not in range 0..1023 (%lu)"),
9489 (unsigned long) imm_expr
.X_add_number
);
9490 INSERT_OPERAND (CODE2
, *ip
, imm_expr
.X_add_number
);
9491 imm_expr
.X_op
= O_absent
;
9495 case 'B': /* 20-bit SYSCALL/BREAK code. */
9496 my_getExpression (&imm_expr
, s
);
9497 check_absolute_expr (ip
, &imm_expr
);
9498 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE20
)
9499 as_warn (_("Code for %s not in range 0..1048575 (%lu)"),
9501 (unsigned long) imm_expr
.X_add_number
);
9502 INSERT_OPERAND (CODE20
, *ip
, imm_expr
.X_add_number
);
9503 imm_expr
.X_op
= O_absent
;
9507 case 'C': /* Coprocessor code. */
9508 my_getExpression (&imm_expr
, s
);
9509 check_absolute_expr (ip
, &imm_expr
);
9510 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_COPZ
)
9512 as_warn (_("Coproccesor code > 25 bits (%lu)"),
9513 (unsigned long) imm_expr
.X_add_number
);
9514 imm_expr
.X_add_number
&= OP_MASK_COPZ
;
9516 INSERT_OPERAND (COPZ
, *ip
, imm_expr
.X_add_number
);
9517 imm_expr
.X_op
= O_absent
;
9521 case 'J': /* 19-bit WAIT code. */
9522 my_getExpression (&imm_expr
, s
);
9523 check_absolute_expr (ip
, &imm_expr
);
9524 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE19
)
9526 as_warn (_("Illegal 19-bit code (%lu)"),
9527 (unsigned long) imm_expr
.X_add_number
);
9528 imm_expr
.X_add_number
&= OP_MASK_CODE19
;
9530 INSERT_OPERAND (CODE19
, *ip
, imm_expr
.X_add_number
);
9531 imm_expr
.X_op
= O_absent
;
9535 case 'P': /* Performance register. */
9536 my_getExpression (&imm_expr
, s
);
9537 check_absolute_expr (ip
, &imm_expr
);
9538 if (imm_expr
.X_add_number
!= 0 && imm_expr
.X_add_number
!= 1)
9539 as_warn (_("Invalid performance register (%lu)"),
9540 (unsigned long) imm_expr
.X_add_number
);
9541 INSERT_OPERAND (PERFREG
, *ip
, imm_expr
.X_add_number
);
9542 imm_expr
.X_op
= O_absent
;
9546 case 'G': /* Coprocessor destination register. */
9547 if (((ip
->insn_opcode
>> OP_SH_OP
) & OP_MASK_OP
) == OP_OP_COP0
)
9548 ok
= reg_lookup (&s
, RTYPE_NUM
| RTYPE_CP0
, ®no
);
9550 ok
= reg_lookup (&s
, RTYPE_NUM
| RTYPE_GP
, ®no
);
9551 INSERT_OPERAND (RD
, *ip
, regno
);
9560 case 'b': /* Base register. */
9561 case 'd': /* Destination register. */
9562 case 's': /* Source register. */
9563 case 't': /* Target register. */
9564 case 'r': /* Both target and source. */
9565 case 'v': /* Both dest and source. */
9566 case 'w': /* Both dest and target. */
9567 case 'E': /* Coprocessor target register. */
9568 case 'K': /* RDHWR destination register. */
9569 case 'x': /* Ignore register name. */
9570 case 'z': /* Must be zero register. */
9571 case 'U': /* Destination register (CLO/CLZ). */
9572 case 'g': /* Coprocessor destination register. */
9574 if (*args
== 'E' || *args
== 'K')
9575 ok
= reg_lookup (&s
, RTYPE_NUM
, ®no
);
9578 ok
= reg_lookup (&s
, RTYPE_NUM
| RTYPE_GP
, ®no
);
9579 if (regno
== AT
&& mips_opts
.at
)
9581 if (mips_opts
.at
== ATREG
)
9582 as_warn (_("Used $at without \".set noat\""));
9584 as_warn (_("Used $%u with \".set at=$%u\""),
9585 regno
, mips_opts
.at
);
9595 if (c
== 'r' || c
== 'v' || c
== 'w')
9602 /* 'z' only matches $0. */
9603 if (c
== 'z' && regno
!= 0)
9606 if (c
== 's' && !strncmp (ip
->insn_mo
->name
, "jalr", 4))
9608 if (regno
== lastregno
)
9611 = _("Source and destination must be different");
9614 if (regno
== 31 && lastregno
== 0xffffffff)
9617 = _("A destination register must be supplied");
9621 /* Now that we have assembled one operand, we use the args
9622 string to figure out where it goes in the instruction. */
9629 INSERT_OPERAND (RS
, *ip
, regno
);
9634 INSERT_OPERAND (RD
, *ip
, regno
);
9637 INSERT_OPERAND (RD
, *ip
, regno
);
9638 INSERT_OPERAND (RT
, *ip
, regno
);
9643 INSERT_OPERAND (RT
, *ip
, regno
);
9646 /* This case exists because on the r3000 trunc
9647 expands into a macro which requires a gp
9648 register. On the r6000 or r4000 it is
9649 assembled into a single instruction which
9650 ignores the register. Thus the insn version
9651 is MIPS_ISA2 and uses 'x', and the macro
9652 version is MIPS_ISA1 and uses 't'. */
9655 /* This case is for the div instruction, which
9656 acts differently if the destination argument
9657 is $0. This only matches $0, and is checked
9658 outside the switch. */
9668 INSERT_OPERAND (RS
, *ip
, lastregno
);
9671 INSERT_OPERAND (RT
, *ip
, lastregno
);
9676 case 'O': /* MDMX alignment immediate constant. */
9677 my_getExpression (&imm_expr
, s
);
9678 check_absolute_expr (ip
, &imm_expr
);
9679 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_ALN
)
9680 as_warn (_("Improper align amount (%ld), using low bits"),
9681 (long) imm_expr
.X_add_number
);
9682 INSERT_OPERAND (ALN
, *ip
, imm_expr
.X_add_number
);
9683 imm_expr
.X_op
= O_absent
;
9687 case 'Q': /* MDMX vector, element sel, or const. */
9690 /* MDMX Immediate. */
9691 my_getExpression (&imm_expr
, s
);
9692 check_absolute_expr (ip
, &imm_expr
);
9693 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_FT
)
9694 as_warn (_("Invalid MDMX Immediate (%ld)"),
9695 (long) imm_expr
.X_add_number
);
9696 INSERT_OPERAND (FT
, *ip
, imm_expr
.X_add_number
);
9697 if (ip
->insn_opcode
& (OP_MASK_VSEL
<< OP_SH_VSEL
))
9698 ip
->insn_opcode
|= MDMX_FMTSEL_IMM_QH
<< OP_SH_VSEL
;
9700 ip
->insn_opcode
|= MDMX_FMTSEL_IMM_OB
<< OP_SH_VSEL
;
9701 imm_expr
.X_op
= O_absent
;
9705 /* Not MDMX Immediate. Fall through. */
9706 case 'X': /* MDMX destination register. */
9707 case 'Y': /* MDMX source register. */
9708 case 'Z': /* MDMX target register. */
9710 case 'D': /* Floating point destination register. */
9711 case 'S': /* Floating point source register. */
9712 case 'T': /* Floating point target register. */
9713 case 'R': /* Floating point source register. */
9718 || (mips_opts
.ase_mdmx
9719 && (ip
->insn_mo
->pinfo
& FP_D
)
9720 && (ip
->insn_mo
->pinfo
& (INSN_COPROC_MOVE_DELAY
9721 | INSN_COPROC_MEMORY_DELAY
9722 | INSN_LOAD_COPROC_DELAY
9723 | INSN_LOAD_MEMORY_DELAY
9724 | INSN_STORE_MEMORY
))))
9727 if (reg_lookup (&s
, rtype
, ®no
))
9729 if ((regno
& 1) != 0
9731 && !mips_oddfpreg_ok (ip
->insn_mo
, argnum
))
9732 as_warn (_("Float register should be even, was %d"),
9740 if (c
== 'V' || c
== 'W')
9751 INSERT_OPERAND (FD
, *ip
, regno
);
9756 INSERT_OPERAND (FS
, *ip
, regno
);
9759 /* This is like 'Z', but also needs to fix the MDMX
9760 vector/scalar select bits. Note that the
9761 scalar immediate case is handled above. */
9764 int is_qh
= (ip
->insn_opcode
& (1 << OP_SH_VSEL
));
9765 int max_el
= (is_qh
? 3 : 7);
9767 my_getExpression(&imm_expr
, s
);
9768 check_absolute_expr (ip
, &imm_expr
);
9770 if (imm_expr
.X_add_number
> max_el
)
9771 as_bad (_("Bad element selector %ld"),
9772 (long) imm_expr
.X_add_number
);
9773 imm_expr
.X_add_number
&= max_el
;
9774 ip
->insn_opcode
|= (imm_expr
.X_add_number
9777 imm_expr
.X_op
= O_absent
;
9779 as_warn (_("Expecting ']' found '%s'"), s
);
9785 if (ip
->insn_opcode
& (OP_MASK_VSEL
<< OP_SH_VSEL
))
9786 ip
->insn_opcode
|= (MDMX_FMTSEL_VEC_QH
9789 ip
->insn_opcode
|= (MDMX_FMTSEL_VEC_OB
<<
9796 INSERT_OPERAND (FT
, *ip
, regno
);
9799 INSERT_OPERAND (FR
, *ip
, regno
);
9809 INSERT_OPERAND (FS
, *ip
, lastregno
);
9812 INSERT_OPERAND (FT
, *ip
, lastregno
);
9818 my_getExpression (&imm_expr
, s
);
9819 if (imm_expr
.X_op
!= O_big
9820 && imm_expr
.X_op
!= O_constant
)
9821 insn_error
= _("absolute expression required");
9822 if (HAVE_32BIT_GPRS
)
9823 normalize_constant_expr (&imm_expr
);
9828 my_getExpression (&offset_expr
, s
);
9829 normalize_address_expr (&offset_expr
);
9830 *imm_reloc
= BFD_RELOC_32
;
9843 unsigned char temp
[8];
9845 unsigned int length
;
9850 /* These only appear as the last operand in an
9851 instruction, and every instruction that accepts
9852 them in any variant accepts them in all variants.
9853 This means we don't have to worry about backing out
9854 any changes if the instruction does not match.
9856 The difference between them is the size of the
9857 floating point constant and where it goes. For 'F'
9858 and 'L' the constant is 64 bits; for 'f' and 'l' it
9859 is 32 bits. Where the constant is placed is based
9860 on how the MIPS assembler does things:
9863 f -- immediate value
9866 The .lit4 and .lit8 sections are only used if
9867 permitted by the -G argument.
9869 The code below needs to know whether the target register
9870 is 32 or 64 bits wide. It relies on the fact 'f' and
9871 'F' are used with GPR-based instructions and 'l' and
9872 'L' are used with FPR-based instructions. */
9874 f64
= *args
== 'F' || *args
== 'L';
9875 using_gprs
= *args
== 'F' || *args
== 'f';
9877 save_in
= input_line_pointer
;
9878 input_line_pointer
= s
;
9879 err
= md_atof (f64
? 'd' : 'f', (char *) temp
, &len
);
9881 s
= input_line_pointer
;
9882 input_line_pointer
= save_in
;
9883 if (err
!= NULL
&& *err
!= '\0')
9885 as_bad (_("Bad floating point constant: %s"), err
);
9886 memset (temp
, '\0', sizeof temp
);
9887 length
= f64
? 8 : 4;
9890 gas_assert (length
== (unsigned) (f64
? 8 : 4));
9894 && (g_switch_value
< 4
9895 || (temp
[0] == 0 && temp
[1] == 0)
9896 || (temp
[2] == 0 && temp
[3] == 0))))
9898 imm_expr
.X_op
= O_constant
;
9899 if (!target_big_endian
)
9900 imm_expr
.X_add_number
= bfd_getl32 (temp
);
9902 imm_expr
.X_add_number
= bfd_getb32 (temp
);
9905 && !mips_disable_float_construction
9906 /* Constants can only be constructed in GPRs and
9907 copied to FPRs if the GPRs are at least as wide
9908 as the FPRs. Force the constant into memory if
9909 we are using 64-bit FPRs but the GPRs are only
9912 || !(HAVE_64BIT_FPRS
&& HAVE_32BIT_GPRS
))
9913 && ((temp
[0] == 0 && temp
[1] == 0)
9914 || (temp
[2] == 0 && temp
[3] == 0))
9915 && ((temp
[4] == 0 && temp
[5] == 0)
9916 || (temp
[6] == 0 && temp
[7] == 0)))
9918 /* The value is simple enough to load with a couple of
9919 instructions. If using 32-bit registers, set
9920 imm_expr to the high order 32 bits and offset_expr to
9921 the low order 32 bits. Otherwise, set imm_expr to
9922 the entire 64 bit constant. */
9923 if (using_gprs
? HAVE_32BIT_GPRS
: HAVE_32BIT_FPRS
)
9925 imm_expr
.X_op
= O_constant
;
9926 offset_expr
.X_op
= O_constant
;
9927 if (!target_big_endian
)
9929 imm_expr
.X_add_number
= bfd_getl32 (temp
+ 4);
9930 offset_expr
.X_add_number
= bfd_getl32 (temp
);
9934 imm_expr
.X_add_number
= bfd_getb32 (temp
);
9935 offset_expr
.X_add_number
= bfd_getb32 (temp
+ 4);
9937 if (offset_expr
.X_add_number
== 0)
9938 offset_expr
.X_op
= O_absent
;
9940 else if (sizeof (imm_expr
.X_add_number
) > 4)
9942 imm_expr
.X_op
= O_constant
;
9943 if (!target_big_endian
)
9944 imm_expr
.X_add_number
= bfd_getl64 (temp
);
9946 imm_expr
.X_add_number
= bfd_getb64 (temp
);
9950 imm_expr
.X_op
= O_big
;
9951 imm_expr
.X_add_number
= 4;
9952 if (!target_big_endian
)
9954 generic_bignum
[0] = bfd_getl16 (temp
);
9955 generic_bignum
[1] = bfd_getl16 (temp
+ 2);
9956 generic_bignum
[2] = bfd_getl16 (temp
+ 4);
9957 generic_bignum
[3] = bfd_getl16 (temp
+ 6);
9961 generic_bignum
[0] = bfd_getb16 (temp
+ 6);
9962 generic_bignum
[1] = bfd_getb16 (temp
+ 4);
9963 generic_bignum
[2] = bfd_getb16 (temp
+ 2);
9964 generic_bignum
[3] = bfd_getb16 (temp
);
9970 const char *newname
;
9973 /* Switch to the right section. */
9975 subseg
= now_subseg
;
9978 default: /* unused default case avoids warnings. */
9980 newname
= RDATA_SECTION_NAME
;
9981 if (g_switch_value
>= 8)
9985 newname
= RDATA_SECTION_NAME
;
9988 gas_assert (g_switch_value
>= 4);
9992 new_seg
= subseg_new (newname
, (subsegT
) 0);
9994 bfd_set_section_flags (stdoutput
, new_seg
,
9999 frag_align (*args
== 'l' ? 2 : 3, 0, 0);
10000 if (IS_ELF
&& strncmp (TARGET_OS
, "elf", 3) != 0)
10001 record_alignment (new_seg
, 4);
10003 record_alignment (new_seg
, *args
== 'l' ? 2 : 3);
10004 if (seg
== now_seg
)
10005 as_bad (_("Can't use floating point insn in this section"));
10007 /* Set the argument to the current address in the
10009 offset_expr
.X_op
= O_symbol
;
10010 offset_expr
.X_add_symbol
= symbol_temp_new_now ();
10011 offset_expr
.X_add_number
= 0;
10013 /* Put the floating point number into the section. */
10014 p
= frag_more ((int) length
);
10015 memcpy (p
, temp
, length
);
10017 /* Switch back to the original section. */
10018 subseg_set (seg
, subseg
);
10023 case 'i': /* 16-bit unsigned immediate. */
10024 case 'j': /* 16-bit signed immediate. */
10025 *imm_reloc
= BFD_RELOC_LO16
;
10026 if (my_getSmallExpression (&imm_expr
, imm_reloc
, s
) == 0)
10029 offsetT minval
, maxval
;
10031 more
= (insn
+ 1 < &mips_opcodes
[NUMOPCODES
]
10032 && strcmp (insn
->name
, insn
[1].name
) == 0);
10034 /* If the expression was written as an unsigned number,
10035 only treat it as signed if there are no more
10039 && sizeof (imm_expr
.X_add_number
) <= 4
10040 && imm_expr
.X_op
== O_constant
10041 && imm_expr
.X_add_number
< 0
10042 && imm_expr
.X_unsigned
10043 && HAVE_64BIT_GPRS
)
10046 /* For compatibility with older assemblers, we accept
10047 0x8000-0xffff as signed 16-bit numbers when only
10048 signed numbers are allowed. */
10050 minval
= 0, maxval
= 0xffff;
10052 minval
= -0x8000, maxval
= 0x7fff;
10054 minval
= -0x8000, maxval
= 0xffff;
10056 if (imm_expr
.X_op
!= O_constant
10057 || imm_expr
.X_add_number
< minval
10058 || imm_expr
.X_add_number
> maxval
)
10062 if (imm_expr
.X_op
== O_constant
10063 || imm_expr
.X_op
== O_big
)
10064 as_bad (_("Expression out of range"));
10070 case 'o': /* 16-bit offset. */
10071 offset_reloc
[0] = BFD_RELOC_LO16
;
10072 offset_reloc
[1] = BFD_RELOC_UNUSED
;
10073 offset_reloc
[2] = BFD_RELOC_UNUSED
;
10075 /* Check whether there is only a single bracketed expression
10076 left. If so, it must be the base register and the
10077 constant must be zero. */
10078 if (*s
== '(' && strchr (s
+ 1, '(') == 0)
10080 offset_expr
.X_op
= O_constant
;
10081 offset_expr
.X_add_number
= 0;
10085 /* If this value won't fit into a 16 bit offset, then go
10086 find a macro that will generate the 32 bit offset
10088 if (my_getSmallExpression (&offset_expr
, offset_reloc
, s
) == 0
10089 && (offset_expr
.X_op
!= O_constant
10090 || offset_expr
.X_add_number
>= 0x8000
10091 || offset_expr
.X_add_number
< -0x8000))
10097 case 'p': /* PC-relative offset. */
10098 *offset_reloc
= BFD_RELOC_16_PCREL_S2
;
10099 my_getExpression (&offset_expr
, s
);
10103 case 'u': /* Upper 16 bits. */
10104 if (my_getSmallExpression (&imm_expr
, imm_reloc
, s
) == 0
10105 && imm_expr
.X_op
== O_constant
10106 && (imm_expr
.X_add_number
< 0
10107 || imm_expr
.X_add_number
>= 0x10000))
10108 as_bad (_("lui expression (%lu) not in range 0..65535"),
10109 (unsigned long) imm_expr
.X_add_number
);
10113 case 'a': /* 26-bit address. */
10114 my_getExpression (&offset_expr
, s
);
10116 *offset_reloc
= BFD_RELOC_MIPS_JMP
;
10119 case 'N': /* 3-bit branch condition code. */
10120 case 'M': /* 3-bit compare condition code. */
10122 if (ip
->insn_mo
->pinfo
& (FP_D
| FP_S
))
10123 rtype
|= RTYPE_FCC
;
10124 if (!reg_lookup (&s
, rtype
, ®no
))
10126 if ((strcmp (str
+ strlen (str
) - 3, ".ps") == 0
10127 || strcmp (str
+ strlen (str
) - 5, "any2f") == 0
10128 || strcmp (str
+ strlen (str
) - 5, "any2t") == 0)
10129 && (regno
& 1) != 0)
10130 as_warn (_("Condition code register should be even for %s, "
10133 if ((strcmp (str
+ strlen (str
) - 5, "any4f") == 0
10134 || strcmp (str
+ strlen (str
) - 5, "any4t") == 0)
10135 && (regno
& 3) != 0)
10136 as_warn (_("Condition code register should be 0 or 4 for %s, "
10140 INSERT_OPERAND (BCC
, *ip
, regno
);
10142 INSERT_OPERAND (CCC
, *ip
, regno
);
10146 if (s
[0] == '0' && (s
[1] == 'x' || s
[1] == 'X'))
10157 while (ISDIGIT (*s
));
10160 c
= 8; /* Invalid sel value. */
10163 as_bad (_("Invalid coprocessor sub-selection value (0-7)"));
10164 ip
->insn_opcode
|= c
;
10168 /* Must be at least one digit. */
10169 my_getExpression (&imm_expr
, s
);
10170 check_absolute_expr (ip
, &imm_expr
);
10172 if ((unsigned long) imm_expr
.X_add_number
10173 > (unsigned long) OP_MASK_VECBYTE
)
10175 as_bad (_("bad byte vector index (%ld)"),
10176 (long) imm_expr
.X_add_number
);
10177 imm_expr
.X_add_number
= 0;
10180 INSERT_OPERAND (VECBYTE
, *ip
, imm_expr
.X_add_number
);
10181 imm_expr
.X_op
= O_absent
;
10186 my_getExpression (&imm_expr
, s
);
10187 check_absolute_expr (ip
, &imm_expr
);
10189 if ((unsigned long) imm_expr
.X_add_number
10190 > (unsigned long) OP_MASK_VECALIGN
)
10192 as_bad (_("bad byte vector index (%ld)"),
10193 (long) imm_expr
.X_add_number
);
10194 imm_expr
.X_add_number
= 0;
10197 INSERT_OPERAND (VECALIGN
, *ip
, imm_expr
.X_add_number
);
10198 imm_expr
.X_op
= O_absent
;
10203 as_bad (_("Bad char = '%c'\n"), *args
);
10208 /* Args don't match. */
10209 if (insn
+ 1 < &mips_opcodes
[NUMOPCODES
] &&
10210 !strcmp (insn
->name
, insn
[1].name
))
10214 insn_error
= _("Illegal operands");
10218 *(--argsStart
) = save_c
;
10219 insn_error
= _("Illegal operands");
10224 #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
10226 /* This routine assembles an instruction into its binary format when
10227 assembling for the mips16. As a side effect, it sets one of the
10228 global variables imm_reloc or offset_reloc to the type of
10229 relocation to do if one of the operands is an address expression.
10230 It also sets mips16_small and mips16_ext if the user explicitly
10231 requested a small or extended instruction. */
10234 mips16_ip (char *str
, struct mips_cl_insn
*ip
)
10238 struct mips_opcode
*insn
;
10240 unsigned int regno
;
10241 unsigned int lastregno
= 0;
10247 mips16_small
= FALSE
;
10248 mips16_ext
= FALSE
;
10250 for (s
= str
; ISLOWER (*s
); ++s
)
10262 if (s
[1] == 't' && s
[2] == ' ')
10265 mips16_small
= TRUE
;
10269 else if (s
[1] == 'e' && s
[2] == ' ')
10276 /* Fall through. */
10278 insn_error
= _("unknown opcode");
10282 if (mips_opts
.noautoextend
&& ! mips16_ext
)
10283 mips16_small
= TRUE
;
10285 if ((insn
= (struct mips_opcode
*) hash_find (mips16_op_hash
, str
)) == NULL
)
10287 insn_error
= _("unrecognized opcode");
10296 gas_assert (strcmp (insn
->name
, str
) == 0);
10298 ok
= is_opcode_valid_16 (insn
);
10301 if (insn
+ 1 < &mips16_opcodes
[bfd_mips16_num_opcodes
]
10302 && strcmp (insn
->name
, insn
[1].name
) == 0)
10311 static char buf
[100];
10313 _("opcode not supported on this processor: %s (%s)"),
10314 mips_cpu_info_from_arch (mips_opts
.arch
)->name
,
10315 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
10322 create_insn (ip
, insn
);
10323 imm_expr
.X_op
= O_absent
;
10324 imm_reloc
[0] = BFD_RELOC_UNUSED
;
10325 imm_reloc
[1] = BFD_RELOC_UNUSED
;
10326 imm_reloc
[2] = BFD_RELOC_UNUSED
;
10327 imm2_expr
.X_op
= O_absent
;
10328 offset_expr
.X_op
= O_absent
;
10329 offset_reloc
[0] = BFD_RELOC_UNUSED
;
10330 offset_reloc
[1] = BFD_RELOC_UNUSED
;
10331 offset_reloc
[2] = BFD_RELOC_UNUSED
;
10332 for (args
= insn
->args
; 1; ++args
)
10339 /* In this switch statement we call break if we did not find
10340 a match, continue if we did find a match, or return if we
10349 /* Stuff the immediate value in now, if we can. */
10350 if (imm_expr
.X_op
== O_constant
10351 && *imm_reloc
> BFD_RELOC_UNUSED
10352 && *imm_reloc
!= BFD_RELOC_MIPS16_GOT16
10353 && *imm_reloc
!= BFD_RELOC_MIPS16_CALL16
10354 && insn
->pinfo
!= INSN_MACRO
)
10358 switch (*offset_reloc
)
10360 case BFD_RELOC_MIPS16_HI16_S
:
10361 tmp
= (imm_expr
.X_add_number
+ 0x8000) >> 16;
10364 case BFD_RELOC_MIPS16_HI16
:
10365 tmp
= imm_expr
.X_add_number
>> 16;
10368 case BFD_RELOC_MIPS16_LO16
:
10369 tmp
= ((imm_expr
.X_add_number
+ 0x8000) & 0xffff)
10373 case BFD_RELOC_UNUSED
:
10374 tmp
= imm_expr
.X_add_number
;
10380 *offset_reloc
= BFD_RELOC_UNUSED
;
10382 mips16_immed (NULL
, 0, *imm_reloc
- BFD_RELOC_UNUSED
,
10383 tmp
, TRUE
, mips16_small
,
10384 mips16_ext
, &ip
->insn_opcode
,
10385 &ip
->use_extend
, &ip
->extend
);
10386 imm_expr
.X_op
= O_absent
;
10387 *imm_reloc
= BFD_RELOC_UNUSED
;
10401 MIPS16_INSERT_OPERAND (RX
, *ip
, lastregno
);
10404 MIPS16_INSERT_OPERAND (RY
, *ip
, lastregno
);
10420 MIPS16_INSERT_OPERAND (RX
, *ip
, lastregno
);
10422 MIPS16_INSERT_OPERAND (RY
, *ip
, lastregno
);
10426 /* Fall through. */
10437 if (!reg_lookup (&s
, RTYPE_NUM
| RTYPE_GP
, ®no
))
10439 if (c
== 'v' || c
== 'w')
10442 MIPS16_INSERT_OPERAND (RX
, *ip
, lastregno
);
10444 MIPS16_INSERT_OPERAND (RY
, *ip
, lastregno
);
10455 if (c
== 'v' || c
== 'w')
10457 regno
= mips16_to_32_reg_map
[lastregno
];
10471 regno
= mips32_to_16_reg_map
[regno
];
10476 regno
= ILLEGAL_REG
;
10481 regno
= ILLEGAL_REG
;
10486 regno
= ILLEGAL_REG
;
10491 if (regno
== AT
&& mips_opts
.at
)
10493 if (mips_opts
.at
== ATREG
)
10494 as_warn (_("used $at without \".set noat\""));
10496 as_warn (_("used $%u with \".set at=$%u\""),
10497 regno
, mips_opts
.at
);
10505 if (regno
== ILLEGAL_REG
)
10512 MIPS16_INSERT_OPERAND (RX
, *ip
, regno
);
10516 MIPS16_INSERT_OPERAND (RY
, *ip
, regno
);
10519 MIPS16_INSERT_OPERAND (RZ
, *ip
, regno
);
10522 MIPS16_INSERT_OPERAND (MOVE32Z
, *ip
, regno
);
10528 MIPS16_INSERT_OPERAND (REGR32
, *ip
, regno
);
10531 regno
= ((regno
& 7) << 2) | ((regno
& 0x18) >> 3);
10532 MIPS16_INSERT_OPERAND (REG32R
, *ip
, regno
);
10542 if (strncmp (s
, "$pc", 3) == 0)
10559 i
= my_getSmallExpression (&imm_expr
, imm_reloc
, s
);
10562 if (imm_expr
.X_op
!= O_constant
)
10565 ip
->use_extend
= TRUE
;
10570 /* We need to relax this instruction. */
10571 *offset_reloc
= *imm_reloc
;
10572 *imm_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
10577 *imm_reloc
= BFD_RELOC_UNUSED
;
10578 /* Fall through. */
10585 my_getExpression (&imm_expr
, s
);
10586 if (imm_expr
.X_op
== O_register
)
10588 /* What we thought was an expression turned out to
10591 if (s
[0] == '(' && args
[1] == '(')
10593 /* It looks like the expression was omitted
10594 before a register indirection, which means
10595 that the expression is implicitly zero. We
10596 still set up imm_expr, so that we handle
10597 explicit extensions correctly. */
10598 imm_expr
.X_op
= O_constant
;
10599 imm_expr
.X_add_number
= 0;
10600 *imm_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
10607 /* We need to relax this instruction. */
10608 *imm_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
10617 /* We use offset_reloc rather than imm_reloc for the PC
10618 relative operands. This lets macros with both
10619 immediate and address operands work correctly. */
10620 my_getExpression (&offset_expr
, s
);
10622 if (offset_expr
.X_op
== O_register
)
10625 /* We need to relax this instruction. */
10626 *offset_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
10630 case '6': /* break code */
10631 my_getExpression (&imm_expr
, s
);
10632 check_absolute_expr (ip
, &imm_expr
);
10633 if ((unsigned long) imm_expr
.X_add_number
> 63)
10634 as_warn (_("Invalid value for `%s' (%lu)"),
10636 (unsigned long) imm_expr
.X_add_number
);
10637 MIPS16_INSERT_OPERAND (IMM6
, *ip
, imm_expr
.X_add_number
);
10638 imm_expr
.X_op
= O_absent
;
10642 case 'a': /* 26 bit address */
10643 my_getExpression (&offset_expr
, s
);
10645 *offset_reloc
= BFD_RELOC_MIPS16_JMP
;
10646 ip
->insn_opcode
<<= 16;
10649 case 'l': /* register list for entry macro */
10650 case 'L': /* register list for exit macro */
10660 unsigned int freg
, reg1
, reg2
;
10662 while (*s
== ' ' || *s
== ',')
10664 if (reg_lookup (&s
, RTYPE_GP
| RTYPE_NUM
, ®1
))
10666 else if (reg_lookup (&s
, RTYPE_FPU
, ®1
))
10670 as_bad (_("can't parse register list"));
10680 if (!reg_lookup (&s
, freg
? RTYPE_FPU
10681 : (RTYPE_GP
| RTYPE_NUM
), ®2
))
10683 as_bad (_("invalid register list"));
10687 if (freg
&& reg1
== 0 && reg2
== 0 && c
== 'L')
10689 mask
&= ~ (7 << 3);
10692 else if (freg
&& reg1
== 0 && reg2
== 1 && c
== 'L')
10694 mask
&= ~ (7 << 3);
10697 else if (reg1
== 4 && reg2
>= 4 && reg2
<= 7 && c
!= 'L')
10698 mask
|= (reg2
- 3) << 3;
10699 else if (reg1
== 16 && reg2
>= 16 && reg2
<= 17)
10700 mask
|= (reg2
- 15) << 1;
10701 else if (reg1
== RA
&& reg2
== RA
)
10705 as_bad (_("invalid register list"));
10709 /* The mask is filled in in the opcode table for the
10710 benefit of the disassembler. We remove it before
10711 applying the actual mask. */
10712 ip
->insn_opcode
&= ~ ((7 << 3) << MIPS16OP_SH_IMM6
);
10713 ip
->insn_opcode
|= mask
<< MIPS16OP_SH_IMM6
;
10717 case 'm': /* Register list for save insn. */
10718 case 'M': /* Register list for restore insn. */
10721 int framesz
= 0, seen_framesz
= 0;
10722 int nargs
= 0, statics
= 0, sregs
= 0;
10726 unsigned int reg1
, reg2
;
10728 SKIP_SPACE_TABS (s
);
10731 SKIP_SPACE_TABS (s
);
10733 my_getExpression (&imm_expr
, s
);
10734 if (imm_expr
.X_op
== O_constant
)
10736 /* Handle the frame size. */
10739 as_bad (_("more than one frame size in list"));
10743 framesz
= imm_expr
.X_add_number
;
10744 imm_expr
.X_op
= O_absent
;
10749 if (! reg_lookup (&s
, RTYPE_GP
| RTYPE_NUM
, ®1
))
10751 as_bad (_("can't parse register list"));
10763 if (! reg_lookup (&s
, RTYPE_GP
| RTYPE_NUM
, ®2
)
10766 as_bad (_("can't parse register list"));
10771 while (reg1
<= reg2
)
10773 if (reg1
>= 4 && reg1
<= 7)
10777 nargs
|= 1 << (reg1
- 4);
10779 /* statics $a0-$a3 */
10780 statics
|= 1 << (reg1
- 4);
10782 else if ((reg1
>= 16 && reg1
<= 23) || reg1
== 30)
10785 sregs
|= 1 << ((reg1
== 30) ? 8 : (reg1
- 16));
10787 else if (reg1
== 31)
10789 /* Add $ra to insn. */
10794 as_bad (_("unexpected register in list"));
10802 /* Encode args/statics combination. */
10803 if (nargs
& statics
)
10804 as_bad (_("arg/static registers overlap"));
10805 else if (nargs
== 0xf)
10806 /* All $a0-$a3 are args. */
10807 opcode
|= MIPS16_ALL_ARGS
<< 16;
10808 else if (statics
== 0xf)
10809 /* All $a0-$a3 are statics. */
10810 opcode
|= MIPS16_ALL_STATICS
<< 16;
10813 int narg
= 0, nstat
= 0;
10815 /* Count arg registers. */
10816 while (nargs
& 0x1)
10822 as_bad (_("invalid arg register list"));
10824 /* Count static registers. */
10825 while (statics
& 0x8)
10827 statics
= (statics
<< 1) & 0xf;
10831 as_bad (_("invalid static register list"));
10833 /* Encode args/statics. */
10834 opcode
|= ((narg
<< 2) | nstat
) << 16;
10837 /* Encode $s0/$s1. */
10838 if (sregs
& (1 << 0)) /* $s0 */
10840 if (sregs
& (1 << 1)) /* $s1 */
10846 /* Count regs $s2-$s8. */
10854 as_bad (_("invalid static register list"));
10855 /* Encode $s2-$s8. */
10856 opcode
|= nsreg
<< 24;
10859 /* Encode frame size. */
10861 as_bad (_("missing frame size"));
10862 else if ((framesz
& 7) != 0 || framesz
< 0
10863 || framesz
> 0xff * 8)
10864 as_bad (_("invalid frame size"));
10865 else if (framesz
!= 128 || (opcode
>> 16) != 0)
10868 opcode
|= (((framesz
& 0xf0) << 16)
10869 | (framesz
& 0x0f));
10872 /* Finally build the instruction. */
10873 if ((opcode
>> 16) != 0 || framesz
== 0)
10875 ip
->use_extend
= TRUE
;
10876 ip
->extend
= opcode
>> 16;
10878 ip
->insn_opcode
|= opcode
& 0x7f;
10882 case 'e': /* extend code */
10883 my_getExpression (&imm_expr
, s
);
10884 check_absolute_expr (ip
, &imm_expr
);
10885 if ((unsigned long) imm_expr
.X_add_number
> 0x7ff)
10887 as_warn (_("Invalid value for `%s' (%lu)"),
10889 (unsigned long) imm_expr
.X_add_number
);
10890 imm_expr
.X_add_number
&= 0x7ff;
10892 ip
->insn_opcode
|= imm_expr
.X_add_number
;
10893 imm_expr
.X_op
= O_absent
;
10903 /* Args don't match. */
10904 if (insn
+ 1 < &mips16_opcodes
[bfd_mips16_num_opcodes
] &&
10905 strcmp (insn
->name
, insn
[1].name
) == 0)
10912 insn_error
= _("illegal operands");
10918 /* This structure holds information we know about a mips16 immediate
10921 struct mips16_immed_operand
10923 /* The type code used in the argument string in the opcode table. */
10925 /* The number of bits in the short form of the opcode. */
10927 /* The number of bits in the extended form of the opcode. */
10929 /* The amount by which the short form is shifted when it is used;
10930 for example, the sw instruction has a shift count of 2. */
10932 /* The amount by which the short form is shifted when it is stored
10933 into the instruction code. */
10935 /* Non-zero if the short form is unsigned. */
10937 /* Non-zero if the extended form is unsigned. */
10939 /* Non-zero if the value is PC relative. */
10943 /* The mips16 immediate operand types. */
10945 static const struct mips16_immed_operand mips16_immed_operands
[] =
10947 { '<', 3, 5, 0, MIPS16OP_SH_RZ
, 1, 1, 0 },
10948 { '>', 3, 5, 0, MIPS16OP_SH_RX
, 1, 1, 0 },
10949 { '[', 3, 6, 0, MIPS16OP_SH_RZ
, 1, 1, 0 },
10950 { ']', 3, 6, 0, MIPS16OP_SH_RX
, 1, 1, 0 },
10951 { '4', 4, 15, 0, MIPS16OP_SH_IMM4
, 0, 0, 0 },
10952 { '5', 5, 16, 0, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10953 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10954 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10955 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10956 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5
, 0, 0, 0 },
10957 { '8', 8, 16, 0, MIPS16OP_SH_IMM8
, 1, 0, 0 },
10958 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8
, 1, 0, 0 },
10959 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8
, 1, 0, 0 },
10960 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8
, 1, 1, 0 },
10961 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8
, 0, 0, 0 },
10962 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8
, 0, 0, 0 },
10963 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8
, 0, 0, 1 },
10964 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8
, 0, 0, 1 },
10965 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8
, 1, 0, 1 },
10966 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5
, 1, 0, 1 },
10967 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5
, 1, 0, 1 }
10970 #define MIPS16_NUM_IMMED \
10971 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
10973 /* Handle a mips16 instruction with an immediate value. This or's the
10974 small immediate value into *INSN. It sets *USE_EXTEND to indicate
10975 whether an extended value is needed; if one is needed, it sets
10976 *EXTEND to the value. The argument type is TYPE. The value is VAL.
10977 If SMALL is true, an unextended opcode was explicitly requested.
10978 If EXT is true, an extended opcode was explicitly requested. If
10979 WARN is true, warn if EXT does not match reality. */
10982 mips16_immed (char *file
, unsigned int line
, int type
, offsetT val
,
10983 bfd_boolean warn
, bfd_boolean small
, bfd_boolean ext
,
10984 unsigned long *insn
, bfd_boolean
*use_extend
,
10985 unsigned short *extend
)
10987 const struct mips16_immed_operand
*op
;
10988 int mintiny
, maxtiny
;
10989 bfd_boolean needext
;
10991 op
= mips16_immed_operands
;
10992 while (op
->type
!= type
)
10995 gas_assert (op
< mips16_immed_operands
+ MIPS16_NUM_IMMED
);
11000 if (type
== '<' || type
== '>' || type
== '[' || type
== ']')
11003 maxtiny
= 1 << op
->nbits
;
11008 maxtiny
= (1 << op
->nbits
) - 1;
11013 mintiny
= - (1 << (op
->nbits
- 1));
11014 maxtiny
= (1 << (op
->nbits
- 1)) - 1;
11017 /* Branch offsets have an implicit 0 in the lowest bit. */
11018 if (type
== 'p' || type
== 'q')
11021 if ((val
& ((1 << op
->shift
) - 1)) != 0
11022 || val
< (mintiny
<< op
->shift
)
11023 || val
> (maxtiny
<< op
->shift
))
11028 if (warn
&& ext
&& ! needext
)
11029 as_warn_where (file
, line
,
11030 _("extended operand requested but not required"));
11031 if (small
&& needext
)
11032 as_bad_where (file
, line
, _("invalid unextended operand value"));
11034 if (small
|| (! ext
&& ! needext
))
11038 *use_extend
= FALSE
;
11039 insnval
= ((val
>> op
->shift
) & ((1 << op
->nbits
) - 1));
11040 insnval
<<= op
->op_shift
;
11045 long minext
, maxext
;
11051 maxext
= (1 << op
->extbits
) - 1;
11055 minext
= - (1 << (op
->extbits
- 1));
11056 maxext
= (1 << (op
->extbits
- 1)) - 1;
11058 if (val
< minext
|| val
> maxext
)
11059 as_bad_where (file
, line
,
11060 _("operand value out of range for instruction"));
11062 *use_extend
= TRUE
;
11063 if (op
->extbits
== 16)
11065 extval
= ((val
>> 11) & 0x1f) | (val
& 0x7e0);
11068 else if (op
->extbits
== 15)
11070 extval
= ((val
>> 11) & 0xf) | (val
& 0x7f0);
11075 extval
= ((val
& 0x1f) << 6) | (val
& 0x20);
11079 *extend
= (unsigned short) extval
;
11084 struct percent_op_match
11087 bfd_reloc_code_real_type reloc
;
11090 static const struct percent_op_match mips_percent_op
[] =
11092 {"%lo", BFD_RELOC_LO16
},
11094 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16
},
11095 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16
},
11096 {"%call16", BFD_RELOC_MIPS_CALL16
},
11097 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP
},
11098 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE
},
11099 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST
},
11100 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16
},
11101 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16
},
11102 {"%got", BFD_RELOC_MIPS_GOT16
},
11103 {"%gp_rel", BFD_RELOC_GPREL16
},
11104 {"%half", BFD_RELOC_16
},
11105 {"%highest", BFD_RELOC_MIPS_HIGHEST
},
11106 {"%higher", BFD_RELOC_MIPS_HIGHER
},
11107 {"%neg", BFD_RELOC_MIPS_SUB
},
11108 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD
},
11109 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM
},
11110 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16
},
11111 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16
},
11112 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16
},
11113 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16
},
11114 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL
},
11116 {"%hi", BFD_RELOC_HI16_S
}
11119 static const struct percent_op_match mips16_percent_op
[] =
11121 {"%lo", BFD_RELOC_MIPS16_LO16
},
11122 {"%gprel", BFD_RELOC_MIPS16_GPREL
},
11123 {"%got", BFD_RELOC_MIPS16_GOT16
},
11124 {"%call16", BFD_RELOC_MIPS16_CALL16
},
11125 {"%hi", BFD_RELOC_MIPS16_HI16_S
}
11129 /* Return true if *STR points to a relocation operator. When returning true,
11130 move *STR over the operator and store its relocation code in *RELOC.
11131 Leave both *STR and *RELOC alone when returning false. */
11134 parse_relocation (char **str
, bfd_reloc_code_real_type
*reloc
)
11136 const struct percent_op_match
*percent_op
;
11139 if (mips_opts
.mips16
)
11141 percent_op
= mips16_percent_op
;
11142 limit
= ARRAY_SIZE (mips16_percent_op
);
11146 percent_op
= mips_percent_op
;
11147 limit
= ARRAY_SIZE (mips_percent_op
);
11150 for (i
= 0; i
< limit
; i
++)
11151 if (strncasecmp (*str
, percent_op
[i
].str
, strlen (percent_op
[i
].str
)) == 0)
11153 int len
= strlen (percent_op
[i
].str
);
11155 if (!ISSPACE ((*str
)[len
]) && (*str
)[len
] != '(')
11158 *str
+= strlen (percent_op
[i
].str
);
11159 *reloc
= percent_op
[i
].reloc
;
11161 /* Check whether the output BFD supports this relocation.
11162 If not, issue an error and fall back on something safe. */
11163 if (!bfd_reloc_type_lookup (stdoutput
, percent_op
[i
].reloc
))
11165 as_bad (_("relocation %s isn't supported by the current ABI"),
11166 percent_op
[i
].str
);
11167 *reloc
= BFD_RELOC_UNUSED
;
11175 /* Parse string STR as a 16-bit relocatable operand. Store the
11176 expression in *EP and the relocations in the array starting
11177 at RELOC. Return the number of relocation operators used.
11179 On exit, EXPR_END points to the first character after the expression. */
11182 my_getSmallExpression (expressionS
*ep
, bfd_reloc_code_real_type
*reloc
,
11185 bfd_reloc_code_real_type reversed_reloc
[3];
11186 size_t reloc_index
, i
;
11187 int crux_depth
, str_depth
;
11190 /* Search for the start of the main expression, recoding relocations
11191 in REVERSED_RELOC. End the loop with CRUX pointing to the start
11192 of the main expression and with CRUX_DEPTH containing the number
11193 of open brackets at that point. */
11200 crux_depth
= str_depth
;
11202 /* Skip over whitespace and brackets, keeping count of the number
11204 while (*str
== ' ' || *str
== '\t' || *str
== '(')
11209 && reloc_index
< (HAVE_NEWABI
? 3 : 1)
11210 && parse_relocation (&str
, &reversed_reloc
[reloc_index
]));
11212 my_getExpression (ep
, crux
);
11215 /* Match every open bracket. */
11216 while (crux_depth
> 0 && (*str
== ')' || *str
== ' ' || *str
== '\t'))
11220 if (crux_depth
> 0)
11221 as_bad (_("unclosed '('"));
11225 if (reloc_index
!= 0)
11227 prev_reloc_op_frag
= frag_now
;
11228 for (i
= 0; i
< reloc_index
; i
++)
11229 reloc
[i
] = reversed_reloc
[reloc_index
- 1 - i
];
11232 return reloc_index
;
11236 my_getExpression (expressionS
*ep
, char *str
)
11240 save_in
= input_line_pointer
;
11241 input_line_pointer
= str
;
11243 expr_end
= input_line_pointer
;
11244 input_line_pointer
= save_in
;
11248 md_atof (int type
, char *litP
, int *sizeP
)
11250 return ieee_md_atof (type
, litP
, sizeP
, target_big_endian
);
11254 md_number_to_chars (char *buf
, valueT val
, int n
)
11256 if (target_big_endian
)
11257 number_to_chars_bigendian (buf
, val
, n
);
11259 number_to_chars_littleendian (buf
, val
, n
);
11263 static int support_64bit_objects(void)
11265 const char **list
, **l
;
11268 list
= bfd_target_list ();
11269 for (l
= list
; *l
!= NULL
; l
++)
11270 if (strcmp (*l
, ELF_TARGET ("elf64-", "big")) == 0
11271 || strcmp (*l
, ELF_TARGET ("elf64-", "little")) == 0)
11273 yes
= (*l
!= NULL
);
11277 #endif /* OBJ_ELF */
11279 const char *md_shortopts
= "O::g::G:";
11283 OPTION_MARCH
= OPTION_MD_BASE
,
11305 OPTION_NO_SMARTMIPS
,
11308 OPTION_COMPAT_ARCH_BASE
,
11317 OPTION_M7000_HILO_FIX
,
11318 OPTION_MNO_7000_HILO_FIX
,
11321 OPTION_FIX_LOONGSON2F_JUMP
,
11322 OPTION_NO_FIX_LOONGSON2F_JUMP
,
11323 OPTION_FIX_LOONGSON2F_NOP
,
11324 OPTION_NO_FIX_LOONGSON2F_NOP
,
11326 OPTION_NO_FIX_VR4120
,
11328 OPTION_NO_FIX_VR4130
,
11329 OPTION_FIX_CN63XXP1
,
11330 OPTION_NO_FIX_CN63XXP1
,
11337 OPTION_CONSTRUCT_FLOATS
,
11338 OPTION_NO_CONSTRUCT_FLOATS
,
11341 OPTION_RELAX_BRANCH
,
11342 OPTION_NO_RELAX_BRANCH
,
11349 OPTION_SINGLE_FLOAT
,
11350 OPTION_DOUBLE_FLOAT
,
11353 OPTION_CALL_SHARED
,
11354 OPTION_CALL_NONPIC
,
11364 OPTION_MVXWORKS_PIC
,
11365 #endif /* OBJ_ELF */
11369 struct option md_longopts
[] =
11371 /* Options which specify architecture. */
11372 {"march", required_argument
, NULL
, OPTION_MARCH
},
11373 {"mtune", required_argument
, NULL
, OPTION_MTUNE
},
11374 {"mips0", no_argument
, NULL
, OPTION_MIPS1
},
11375 {"mips1", no_argument
, NULL
, OPTION_MIPS1
},
11376 {"mips2", no_argument
, NULL
, OPTION_MIPS2
},
11377 {"mips3", no_argument
, NULL
, OPTION_MIPS3
},
11378 {"mips4", no_argument
, NULL
, OPTION_MIPS4
},
11379 {"mips5", no_argument
, NULL
, OPTION_MIPS5
},
11380 {"mips32", no_argument
, NULL
, OPTION_MIPS32
},
11381 {"mips64", no_argument
, NULL
, OPTION_MIPS64
},
11382 {"mips32r2", no_argument
, NULL
, OPTION_MIPS32R2
},
11383 {"mips64r2", no_argument
, NULL
, OPTION_MIPS64R2
},
11385 /* Options which specify Application Specific Extensions (ASEs). */
11386 {"mips16", no_argument
, NULL
, OPTION_MIPS16
},
11387 {"no-mips16", no_argument
, NULL
, OPTION_NO_MIPS16
},
11388 {"mips3d", no_argument
, NULL
, OPTION_MIPS3D
},
11389 {"no-mips3d", no_argument
, NULL
, OPTION_NO_MIPS3D
},
11390 {"mdmx", no_argument
, NULL
, OPTION_MDMX
},
11391 {"no-mdmx", no_argument
, NULL
, OPTION_NO_MDMX
},
11392 {"mdsp", no_argument
, NULL
, OPTION_DSP
},
11393 {"mno-dsp", no_argument
, NULL
, OPTION_NO_DSP
},
11394 {"mmt", no_argument
, NULL
, OPTION_MT
},
11395 {"mno-mt", no_argument
, NULL
, OPTION_NO_MT
},
11396 {"msmartmips", no_argument
, NULL
, OPTION_SMARTMIPS
},
11397 {"mno-smartmips", no_argument
, NULL
, OPTION_NO_SMARTMIPS
},
11398 {"mdspr2", no_argument
, NULL
, OPTION_DSPR2
},
11399 {"mno-dspr2", no_argument
, NULL
, OPTION_NO_DSPR2
},
11401 /* Old-style architecture options. Don't add more of these. */
11402 {"m4650", no_argument
, NULL
, OPTION_M4650
},
11403 {"no-m4650", no_argument
, NULL
, OPTION_NO_M4650
},
11404 {"m4010", no_argument
, NULL
, OPTION_M4010
},
11405 {"no-m4010", no_argument
, NULL
, OPTION_NO_M4010
},
11406 {"m4100", no_argument
, NULL
, OPTION_M4100
},
11407 {"no-m4100", no_argument
, NULL
, OPTION_NO_M4100
},
11408 {"m3900", no_argument
, NULL
, OPTION_M3900
},
11409 {"no-m3900", no_argument
, NULL
, OPTION_NO_M3900
},
11411 /* Options which enable bug fixes. */
11412 {"mfix7000", no_argument
, NULL
, OPTION_M7000_HILO_FIX
},
11413 {"no-fix-7000", no_argument
, NULL
, OPTION_MNO_7000_HILO_FIX
},
11414 {"mno-fix7000", no_argument
, NULL
, OPTION_MNO_7000_HILO_FIX
},
11415 {"mfix-loongson2f-jump", no_argument
, NULL
, OPTION_FIX_LOONGSON2F_JUMP
},
11416 {"mno-fix-loongson2f-jump", no_argument
, NULL
, OPTION_NO_FIX_LOONGSON2F_JUMP
},
11417 {"mfix-loongson2f-nop", no_argument
, NULL
, OPTION_FIX_LOONGSON2F_NOP
},
11418 {"mno-fix-loongson2f-nop", no_argument
, NULL
, OPTION_NO_FIX_LOONGSON2F_NOP
},
11419 {"mfix-vr4120", no_argument
, NULL
, OPTION_FIX_VR4120
},
11420 {"mno-fix-vr4120", no_argument
, NULL
, OPTION_NO_FIX_VR4120
},
11421 {"mfix-vr4130", no_argument
, NULL
, OPTION_FIX_VR4130
},
11422 {"mno-fix-vr4130", no_argument
, NULL
, OPTION_NO_FIX_VR4130
},
11423 {"mfix-24k", no_argument
, NULL
, OPTION_FIX_24K
},
11424 {"mno-fix-24k", no_argument
, NULL
, OPTION_NO_FIX_24K
},
11425 {"mfix-cn63xxp1", no_argument
, NULL
, OPTION_FIX_CN63XXP1
},
11426 {"mno-fix-cn63xxp1", no_argument
, NULL
, OPTION_NO_FIX_CN63XXP1
},
11428 /* Miscellaneous options. */
11429 {"trap", no_argument
, NULL
, OPTION_TRAP
},
11430 {"no-break", no_argument
, NULL
, OPTION_TRAP
},
11431 {"break", no_argument
, NULL
, OPTION_BREAK
},
11432 {"no-trap", no_argument
, NULL
, OPTION_BREAK
},
11433 {"EB", no_argument
, NULL
, OPTION_EB
},
11434 {"EL", no_argument
, NULL
, OPTION_EL
},
11435 {"mfp32", no_argument
, NULL
, OPTION_FP32
},
11436 {"mgp32", no_argument
, NULL
, OPTION_GP32
},
11437 {"construct-floats", no_argument
, NULL
, OPTION_CONSTRUCT_FLOATS
},
11438 {"no-construct-floats", no_argument
, NULL
, OPTION_NO_CONSTRUCT_FLOATS
},
11439 {"mfp64", no_argument
, NULL
, OPTION_FP64
},
11440 {"mgp64", no_argument
, NULL
, OPTION_GP64
},
11441 {"relax-branch", no_argument
, NULL
, OPTION_RELAX_BRANCH
},
11442 {"no-relax-branch", no_argument
, NULL
, OPTION_NO_RELAX_BRANCH
},
11443 {"mshared", no_argument
, NULL
, OPTION_MSHARED
},
11444 {"mno-shared", no_argument
, NULL
, OPTION_MNO_SHARED
},
11445 {"msym32", no_argument
, NULL
, OPTION_MSYM32
},
11446 {"mno-sym32", no_argument
, NULL
, OPTION_MNO_SYM32
},
11447 {"msoft-float", no_argument
, NULL
, OPTION_SOFT_FLOAT
},
11448 {"mhard-float", no_argument
, NULL
, OPTION_HARD_FLOAT
},
11449 {"msingle-float", no_argument
, NULL
, OPTION_SINGLE_FLOAT
},
11450 {"mdouble-float", no_argument
, NULL
, OPTION_DOUBLE_FLOAT
},
11452 /* Strictly speaking this next option is ELF specific,
11453 but we allow it for other ports as well in order to
11454 make testing easier. */
11455 {"32", no_argument
, NULL
, OPTION_32
},
11457 /* ELF-specific options. */
11459 {"KPIC", no_argument
, NULL
, OPTION_CALL_SHARED
},
11460 {"call_shared", no_argument
, NULL
, OPTION_CALL_SHARED
},
11461 {"call_nonpic", no_argument
, NULL
, OPTION_CALL_NONPIC
},
11462 {"non_shared", no_argument
, NULL
, OPTION_NON_SHARED
},
11463 {"xgot", no_argument
, NULL
, OPTION_XGOT
},
11464 {"mabi", required_argument
, NULL
, OPTION_MABI
},
11465 {"n32", no_argument
, NULL
, OPTION_N32
},
11466 {"64", no_argument
, NULL
, OPTION_64
},
11467 {"mdebug", no_argument
, NULL
, OPTION_MDEBUG
},
11468 {"no-mdebug", no_argument
, NULL
, OPTION_NO_MDEBUG
},
11469 {"mpdr", no_argument
, NULL
, OPTION_PDR
},
11470 {"mno-pdr", no_argument
, NULL
, OPTION_NO_PDR
},
11471 {"mvxworks-pic", no_argument
, NULL
, OPTION_MVXWORKS_PIC
},
11472 #endif /* OBJ_ELF */
11474 {NULL
, no_argument
, NULL
, 0}
11476 size_t md_longopts_size
= sizeof (md_longopts
);
11478 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
11479 NEW_VALUE. Warn if another value was already specified. Note:
11480 we have to defer parsing the -march and -mtune arguments in order
11481 to handle 'from-abi' correctly, since the ABI might be specified
11482 in a later argument. */
11485 mips_set_option_string (const char **string_ptr
, const char *new_value
)
11487 if (*string_ptr
!= 0 && strcasecmp (*string_ptr
, new_value
) != 0)
11488 as_warn (_("A different %s was already specified, is now %s"),
11489 string_ptr
== &mips_arch_string
? "-march" : "-mtune",
11492 *string_ptr
= new_value
;
11496 md_parse_option (int c
, char *arg
)
11500 case OPTION_CONSTRUCT_FLOATS
:
11501 mips_disable_float_construction
= 0;
11504 case OPTION_NO_CONSTRUCT_FLOATS
:
11505 mips_disable_float_construction
= 1;
11517 target_big_endian
= 1;
11521 target_big_endian
= 0;
11527 else if (arg
[0] == '0')
11529 else if (arg
[0] == '1')
11539 mips_debug
= atoi (arg
);
11543 file_mips_isa
= ISA_MIPS1
;
11547 file_mips_isa
= ISA_MIPS2
;
11551 file_mips_isa
= ISA_MIPS3
;
11555 file_mips_isa
= ISA_MIPS4
;
11559 file_mips_isa
= ISA_MIPS5
;
11562 case OPTION_MIPS32
:
11563 file_mips_isa
= ISA_MIPS32
;
11566 case OPTION_MIPS32R2
:
11567 file_mips_isa
= ISA_MIPS32R2
;
11570 case OPTION_MIPS64R2
:
11571 file_mips_isa
= ISA_MIPS64R2
;
11574 case OPTION_MIPS64
:
11575 file_mips_isa
= ISA_MIPS64
;
11579 mips_set_option_string (&mips_tune_string
, arg
);
11583 mips_set_option_string (&mips_arch_string
, arg
);
11587 mips_set_option_string (&mips_arch_string
, "4650");
11588 mips_set_option_string (&mips_tune_string
, "4650");
11591 case OPTION_NO_M4650
:
11595 mips_set_option_string (&mips_arch_string
, "4010");
11596 mips_set_option_string (&mips_tune_string
, "4010");
11599 case OPTION_NO_M4010
:
11603 mips_set_option_string (&mips_arch_string
, "4100");
11604 mips_set_option_string (&mips_tune_string
, "4100");
11607 case OPTION_NO_M4100
:
11611 mips_set_option_string (&mips_arch_string
, "3900");
11612 mips_set_option_string (&mips_tune_string
, "3900");
11615 case OPTION_NO_M3900
:
11619 mips_opts
.ase_mdmx
= 1;
11622 case OPTION_NO_MDMX
:
11623 mips_opts
.ase_mdmx
= 0;
11627 mips_opts
.ase_dsp
= 1;
11628 mips_opts
.ase_dspr2
= 0;
11631 case OPTION_NO_DSP
:
11632 mips_opts
.ase_dsp
= 0;
11633 mips_opts
.ase_dspr2
= 0;
11637 mips_opts
.ase_dspr2
= 1;
11638 mips_opts
.ase_dsp
= 1;
11641 case OPTION_NO_DSPR2
:
11642 mips_opts
.ase_dspr2
= 0;
11643 mips_opts
.ase_dsp
= 0;
11647 mips_opts
.ase_mt
= 1;
11651 mips_opts
.ase_mt
= 0;
11654 case OPTION_MIPS16
:
11655 mips_opts
.mips16
= 1;
11656 mips_no_prev_insn ();
11659 case OPTION_NO_MIPS16
:
11660 mips_opts
.mips16
= 0;
11661 mips_no_prev_insn ();
11664 case OPTION_MIPS3D
:
11665 mips_opts
.ase_mips3d
= 1;
11668 case OPTION_NO_MIPS3D
:
11669 mips_opts
.ase_mips3d
= 0;
11672 case OPTION_SMARTMIPS
:
11673 mips_opts
.ase_smartmips
= 1;
11676 case OPTION_NO_SMARTMIPS
:
11677 mips_opts
.ase_smartmips
= 0;
11680 case OPTION_FIX_24K
:
11684 case OPTION_NO_FIX_24K
:
11688 case OPTION_FIX_LOONGSON2F_JUMP
:
11689 mips_fix_loongson2f_jump
= TRUE
;
11692 case OPTION_NO_FIX_LOONGSON2F_JUMP
:
11693 mips_fix_loongson2f_jump
= FALSE
;
11696 case OPTION_FIX_LOONGSON2F_NOP
:
11697 mips_fix_loongson2f_nop
= TRUE
;
11700 case OPTION_NO_FIX_LOONGSON2F_NOP
:
11701 mips_fix_loongson2f_nop
= FALSE
;
11704 case OPTION_FIX_VR4120
:
11705 mips_fix_vr4120
= 1;
11708 case OPTION_NO_FIX_VR4120
:
11709 mips_fix_vr4120
= 0;
11712 case OPTION_FIX_VR4130
:
11713 mips_fix_vr4130
= 1;
11716 case OPTION_NO_FIX_VR4130
:
11717 mips_fix_vr4130
= 0;
11720 case OPTION_FIX_CN63XXP1
:
11721 mips_fix_cn63xxp1
= TRUE
;
11724 case OPTION_NO_FIX_CN63XXP1
:
11725 mips_fix_cn63xxp1
= FALSE
;
11728 case OPTION_RELAX_BRANCH
:
11729 mips_relax_branch
= 1;
11732 case OPTION_NO_RELAX_BRANCH
:
11733 mips_relax_branch
= 0;
11736 case OPTION_MSHARED
:
11737 mips_in_shared
= TRUE
;
11740 case OPTION_MNO_SHARED
:
11741 mips_in_shared
= FALSE
;
11744 case OPTION_MSYM32
:
11745 mips_opts
.sym32
= TRUE
;
11748 case OPTION_MNO_SYM32
:
11749 mips_opts
.sym32
= FALSE
;
11753 /* When generating ELF code, we permit -KPIC and -call_shared to
11754 select SVR4_PIC, and -non_shared to select no PIC. This is
11755 intended to be compatible with Irix 5. */
11756 case OPTION_CALL_SHARED
:
11759 as_bad (_("-call_shared is supported only for ELF format"));
11762 mips_pic
= SVR4_PIC
;
11763 mips_abicalls
= TRUE
;
11766 case OPTION_CALL_NONPIC
:
11769 as_bad (_("-call_nonpic is supported only for ELF format"));
11773 mips_abicalls
= TRUE
;
11776 case OPTION_NON_SHARED
:
11779 as_bad (_("-non_shared is supported only for ELF format"));
11783 mips_abicalls
= FALSE
;
11786 /* The -xgot option tells the assembler to use 32 bit offsets
11787 when accessing the got in SVR4_PIC mode. It is for Irix
11792 #endif /* OBJ_ELF */
11795 g_switch_value
= atoi (arg
);
11799 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
11803 mips_abi
= O32_ABI
;
11804 /* We silently ignore -32 for non-ELF targets. This greatly
11805 simplifies the construction of the MIPS GAS test cases. */
11812 as_bad (_("-n32 is supported for ELF format only"));
11815 mips_abi
= N32_ABI
;
11821 as_bad (_("-64 is supported for ELF format only"));
11824 mips_abi
= N64_ABI
;
11825 if (!support_64bit_objects())
11826 as_fatal (_("No compiled in support for 64 bit object file format"));
11828 #endif /* OBJ_ELF */
11831 file_mips_gp32
= 1;
11835 file_mips_gp32
= 0;
11839 file_mips_fp32
= 1;
11843 file_mips_fp32
= 0;
11846 case OPTION_SINGLE_FLOAT
:
11847 file_mips_single_float
= 1;
11850 case OPTION_DOUBLE_FLOAT
:
11851 file_mips_single_float
= 0;
11854 case OPTION_SOFT_FLOAT
:
11855 file_mips_soft_float
= 1;
11858 case OPTION_HARD_FLOAT
:
11859 file_mips_soft_float
= 0;
11866 as_bad (_("-mabi is supported for ELF format only"));
11869 if (strcmp (arg
, "32") == 0)
11870 mips_abi
= O32_ABI
;
11871 else if (strcmp (arg
, "o64") == 0)
11872 mips_abi
= O64_ABI
;
11873 else if (strcmp (arg
, "n32") == 0)
11874 mips_abi
= N32_ABI
;
11875 else if (strcmp (arg
, "64") == 0)
11877 mips_abi
= N64_ABI
;
11878 if (! support_64bit_objects())
11879 as_fatal (_("No compiled in support for 64 bit object file "
11882 else if (strcmp (arg
, "eabi") == 0)
11883 mips_abi
= EABI_ABI
;
11886 as_fatal (_("invalid abi -mabi=%s"), arg
);
11890 #endif /* OBJ_ELF */
11892 case OPTION_M7000_HILO_FIX
:
11893 mips_7000_hilo_fix
= TRUE
;
11896 case OPTION_MNO_7000_HILO_FIX
:
11897 mips_7000_hilo_fix
= FALSE
;
11901 case OPTION_MDEBUG
:
11902 mips_flag_mdebug
= TRUE
;
11905 case OPTION_NO_MDEBUG
:
11906 mips_flag_mdebug
= FALSE
;
11910 mips_flag_pdr
= TRUE
;
11913 case OPTION_NO_PDR
:
11914 mips_flag_pdr
= FALSE
;
11917 case OPTION_MVXWORKS_PIC
:
11918 mips_pic
= VXWORKS_PIC
;
11920 #endif /* OBJ_ELF */
11926 mips_fix_loongson2f
= mips_fix_loongson2f_nop
|| mips_fix_loongson2f_jump
;
11931 /* Set up globals to generate code for the ISA or processor
11932 described by INFO. */
11935 mips_set_architecture (const struct mips_cpu_info
*info
)
11939 file_mips_arch
= info
->cpu
;
11940 mips_opts
.arch
= info
->cpu
;
11941 mips_opts
.isa
= info
->isa
;
11946 /* Likewise for tuning. */
11949 mips_set_tune (const struct mips_cpu_info
*info
)
11952 mips_tune
= info
->cpu
;
11957 mips_after_parse_args (void)
11959 const struct mips_cpu_info
*arch_info
= 0;
11960 const struct mips_cpu_info
*tune_info
= 0;
11962 /* GP relative stuff not working for PE */
11963 if (strncmp (TARGET_OS
, "pe", 2) == 0)
11965 if (g_switch_seen
&& g_switch_value
!= 0)
11966 as_bad (_("-G not supported in this configuration."));
11967 g_switch_value
= 0;
11970 if (mips_abi
== NO_ABI
)
11971 mips_abi
= MIPS_DEFAULT_ABI
;
11973 /* The following code determines the architecture and register size.
11974 Similar code was added to GCC 3.3 (see override_options() in
11975 config/mips/mips.c). The GAS and GCC code should be kept in sync
11976 as much as possible. */
11978 if (mips_arch_string
!= 0)
11979 arch_info
= mips_parse_cpu ("-march", mips_arch_string
);
11981 if (file_mips_isa
!= ISA_UNKNOWN
)
11983 /* Handle -mipsN. At this point, file_mips_isa contains the
11984 ISA level specified by -mipsN, while arch_info->isa contains
11985 the -march selection (if any). */
11986 if (arch_info
!= 0)
11988 /* -march takes precedence over -mipsN, since it is more descriptive.
11989 There's no harm in specifying both as long as the ISA levels
11991 if (file_mips_isa
!= arch_info
->isa
)
11992 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
11993 mips_cpu_info_from_isa (file_mips_isa
)->name
,
11994 mips_cpu_info_from_isa (arch_info
->isa
)->name
);
11997 arch_info
= mips_cpu_info_from_isa (file_mips_isa
);
12000 if (arch_info
== 0)
12001 arch_info
= mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT
);
12003 if (ABI_NEEDS_64BIT_REGS (mips_abi
) && !ISA_HAS_64BIT_REGS (arch_info
->isa
))
12004 as_bad (_("-march=%s is not compatible with the selected ABI"),
12007 mips_set_architecture (arch_info
);
12009 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
12010 if (mips_tune_string
!= 0)
12011 tune_info
= mips_parse_cpu ("-mtune", mips_tune_string
);
12013 if (tune_info
== 0)
12014 mips_set_tune (arch_info
);
12016 mips_set_tune (tune_info
);
12018 if (file_mips_gp32
>= 0)
12020 /* The user specified the size of the integer registers. Make sure
12021 it agrees with the ABI and ISA. */
12022 if (file_mips_gp32
== 0 && !ISA_HAS_64BIT_REGS (mips_opts
.isa
))
12023 as_bad (_("-mgp64 used with a 32-bit processor"));
12024 else if (file_mips_gp32
== 1 && ABI_NEEDS_64BIT_REGS (mips_abi
))
12025 as_bad (_("-mgp32 used with a 64-bit ABI"));
12026 else if (file_mips_gp32
== 0 && ABI_NEEDS_32BIT_REGS (mips_abi
))
12027 as_bad (_("-mgp64 used with a 32-bit ABI"));
12031 /* Infer the integer register size from the ABI and processor.
12032 Restrict ourselves to 32-bit registers if that's all the
12033 processor has, or if the ABI cannot handle 64-bit registers. */
12034 file_mips_gp32
= (ABI_NEEDS_32BIT_REGS (mips_abi
)
12035 || !ISA_HAS_64BIT_REGS (mips_opts
.isa
));
12038 switch (file_mips_fp32
)
12042 /* No user specified float register size.
12043 ??? GAS treats single-float processors as though they had 64-bit
12044 float registers (although it complains when double-precision
12045 instructions are used). As things stand, saying they have 32-bit
12046 registers would lead to spurious "register must be even" messages.
12047 So here we assume float registers are never smaller than the
12049 if (file_mips_gp32
== 0)
12050 /* 64-bit integer registers implies 64-bit float registers. */
12051 file_mips_fp32
= 0;
12052 else if ((mips_opts
.ase_mips3d
> 0 || mips_opts
.ase_mdmx
> 0)
12053 && ISA_HAS_64BIT_FPRS (mips_opts
.isa
))
12054 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
12055 file_mips_fp32
= 0;
12057 /* 32-bit float registers. */
12058 file_mips_fp32
= 1;
12061 /* The user specified the size of the float registers. Check if it
12062 agrees with the ABI and ISA. */
12064 if (!ISA_HAS_64BIT_FPRS (mips_opts
.isa
))
12065 as_bad (_("-mfp64 used with a 32-bit fpu"));
12066 else if (ABI_NEEDS_32BIT_REGS (mips_abi
)
12067 && !ISA_HAS_MXHC1 (mips_opts
.isa
))
12068 as_warn (_("-mfp64 used with a 32-bit ABI"));
12071 if (ABI_NEEDS_64BIT_REGS (mips_abi
))
12072 as_warn (_("-mfp32 used with a 64-bit ABI"));
12076 /* End of GCC-shared inference code. */
12078 /* This flag is set when we have a 64-bit capable CPU but use only
12079 32-bit wide registers. Note that EABI does not use it. */
12080 if (ISA_HAS_64BIT_REGS (mips_opts
.isa
)
12081 && ((mips_abi
== NO_ABI
&& file_mips_gp32
== 1)
12082 || mips_abi
== O32_ABI
))
12083 mips_32bitmode
= 1;
12085 if (mips_opts
.isa
== ISA_MIPS1
&& mips_trap
)
12086 as_bad (_("trap exception not supported at ISA 1"));
12088 /* If the selected architecture includes support for ASEs, enable
12089 generation of code for them. */
12090 if (mips_opts
.mips16
== -1)
12091 mips_opts
.mips16
= (CPU_HAS_MIPS16 (file_mips_arch
)) ? 1 : 0;
12092 if (mips_opts
.ase_mips3d
== -1)
12093 mips_opts
.ase_mips3d
= ((arch_info
->flags
& MIPS_CPU_ASE_MIPS3D
)
12094 && file_mips_fp32
== 0) ? 1 : 0;
12095 if (mips_opts
.ase_mips3d
&& file_mips_fp32
== 1)
12096 as_bad (_("-mfp32 used with -mips3d"));
12098 if (mips_opts
.ase_mdmx
== -1)
12099 mips_opts
.ase_mdmx
= ((arch_info
->flags
& MIPS_CPU_ASE_MDMX
)
12100 && file_mips_fp32
== 0) ? 1 : 0;
12101 if (mips_opts
.ase_mdmx
&& file_mips_fp32
== 1)
12102 as_bad (_("-mfp32 used with -mdmx"));
12104 if (mips_opts
.ase_smartmips
== -1)
12105 mips_opts
.ase_smartmips
= (arch_info
->flags
& MIPS_CPU_ASE_SMARTMIPS
) ? 1 : 0;
12106 if (mips_opts
.ase_smartmips
&& !ISA_SUPPORTS_SMARTMIPS
)
12107 as_warn (_("%s ISA does not support SmartMIPS"),
12108 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12110 if (mips_opts
.ase_dsp
== -1)
12111 mips_opts
.ase_dsp
= (arch_info
->flags
& MIPS_CPU_ASE_DSP
) ? 1 : 0;
12112 if (mips_opts
.ase_dsp
&& !ISA_SUPPORTS_DSP_ASE
)
12113 as_warn (_("%s ISA does not support DSP ASE"),
12114 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12116 if (mips_opts
.ase_dspr2
== -1)
12118 mips_opts
.ase_dspr2
= (arch_info
->flags
& MIPS_CPU_ASE_DSPR2
) ? 1 : 0;
12119 mips_opts
.ase_dsp
= (arch_info
->flags
& MIPS_CPU_ASE_DSP
) ? 1 : 0;
12121 if (mips_opts
.ase_dspr2
&& !ISA_SUPPORTS_DSPR2_ASE
)
12122 as_warn (_("%s ISA does not support DSP R2 ASE"),
12123 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12125 if (mips_opts
.ase_mt
== -1)
12126 mips_opts
.ase_mt
= (arch_info
->flags
& MIPS_CPU_ASE_MT
) ? 1 : 0;
12127 if (mips_opts
.ase_mt
&& !ISA_SUPPORTS_MT_ASE
)
12128 as_warn (_("%s ISA does not support MT ASE"),
12129 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
12131 file_mips_isa
= mips_opts
.isa
;
12132 file_ase_mips3d
= mips_opts
.ase_mips3d
;
12133 file_ase_mdmx
= mips_opts
.ase_mdmx
;
12134 file_ase_smartmips
= mips_opts
.ase_smartmips
;
12135 file_ase_dsp
= mips_opts
.ase_dsp
;
12136 file_ase_dspr2
= mips_opts
.ase_dspr2
;
12137 file_ase_mt
= mips_opts
.ase_mt
;
12138 mips_opts
.gp32
= file_mips_gp32
;
12139 mips_opts
.fp32
= file_mips_fp32
;
12140 mips_opts
.soft_float
= file_mips_soft_float
;
12141 mips_opts
.single_float
= file_mips_single_float
;
12143 if (mips_flag_mdebug
< 0)
12145 #ifdef OBJ_MAYBE_ECOFF
12146 if (OUTPUT_FLAVOR
== bfd_target_ecoff_flavour
)
12147 mips_flag_mdebug
= 1;
12149 #endif /* OBJ_MAYBE_ECOFF */
12150 mips_flag_mdebug
= 0;
12155 mips_init_after_args (void)
12157 /* initialize opcodes */
12158 bfd_mips_num_opcodes
= bfd_mips_num_builtin_opcodes
;
12159 mips_opcodes
= (struct mips_opcode
*) mips_builtin_opcodes
;
12163 md_pcrel_from (fixS
*fixP
)
12165 valueT addr
= fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
12166 switch (fixP
->fx_r_type
)
12168 case BFD_RELOC_16_PCREL_S2
:
12169 case BFD_RELOC_MIPS_JMP
:
12170 /* Return the address of the delay slot. */
12173 /* We have no relocation type for PC relative MIPS16 instructions. */
12174 if (fixP
->fx_addsy
&& S_GET_SEGMENT (fixP
->fx_addsy
) != now_seg
)
12175 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
12176 _("PC relative MIPS16 instruction references a different section"));
12181 /* This is called before the symbol table is processed. In order to
12182 work with gcc when using mips-tfile, we must keep all local labels.
12183 However, in other cases, we want to discard them. If we were
12184 called with -g, but we didn't see any debugging information, it may
12185 mean that gcc is smuggling debugging information through to
12186 mips-tfile, in which case we must generate all local labels. */
12189 mips_frob_file_before_adjust (void)
12191 #ifndef NO_ECOFF_DEBUGGING
12192 if (ECOFF_DEBUGGING
12194 && ! ecoff_debugging_seen
)
12195 flag_keep_locals
= 1;
12199 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
12200 the corresponding LO16 reloc. This is called before md_apply_fix and
12201 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
12202 relocation operators.
12204 For our purposes, a %lo() expression matches a %got() or %hi()
12207 (a) it refers to the same symbol; and
12208 (b) the offset applied in the %lo() expression is no lower than
12209 the offset applied in the %got() or %hi().
12211 (b) allows us to cope with code like:
12214 lh $4,%lo(foo+2)($4)
12216 ...which is legal on RELA targets, and has a well-defined behaviour
12217 if the user knows that adding 2 to "foo" will not induce a carry to
12220 When several %lo()s match a particular %got() or %hi(), we use the
12221 following rules to distinguish them:
12223 (1) %lo()s with smaller offsets are a better match than %lo()s with
12226 (2) %lo()s with no matching %got() or %hi() are better than those
12227 that already have a matching %got() or %hi().
12229 (3) later %lo()s are better than earlier %lo()s.
12231 These rules are applied in order.
12233 (1) means, among other things, that %lo()s with identical offsets are
12234 chosen if they exist.
12236 (2) means that we won't associate several high-part relocations with
12237 the same low-part relocation unless there's no alternative. Having
12238 several high parts for the same low part is a GNU extension; this rule
12239 allows careful users to avoid it.
12241 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
12242 with the last high-part relocation being at the front of the list.
12243 It therefore makes sense to choose the last matching low-part
12244 relocation, all other things being equal. It's also easier
12245 to code that way. */
12248 mips_frob_file (void)
12250 struct mips_hi_fixup
*l
;
12251 bfd_reloc_code_real_type looking_for_rtype
= BFD_RELOC_UNUSED
;
12253 for (l
= mips_hi_fixup_list
; l
!= NULL
; l
= l
->next
)
12255 segment_info_type
*seginfo
;
12256 bfd_boolean matched_lo_p
;
12257 fixS
**hi_pos
, **lo_pos
, **pos
;
12259 gas_assert (reloc_needs_lo_p (l
->fixp
->fx_r_type
));
12261 /* If a GOT16 relocation turns out to be against a global symbol,
12262 there isn't supposed to be a matching LO. */
12263 if (got16_reloc_p (l
->fixp
->fx_r_type
)
12264 && !pic_need_relax (l
->fixp
->fx_addsy
, l
->seg
))
12267 /* Check quickly whether the next fixup happens to be a matching %lo. */
12268 if (fixup_has_matching_lo_p (l
->fixp
))
12271 seginfo
= seg_info (l
->seg
);
12273 /* Set HI_POS to the position of this relocation in the chain.
12274 Set LO_POS to the position of the chosen low-part relocation.
12275 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
12276 relocation that matches an immediately-preceding high-part
12280 matched_lo_p
= FALSE
;
12281 looking_for_rtype
= matching_lo_reloc (l
->fixp
->fx_r_type
);
12283 for (pos
= &seginfo
->fix_root
; *pos
!= NULL
; pos
= &(*pos
)->fx_next
)
12285 if (*pos
== l
->fixp
)
12288 if ((*pos
)->fx_r_type
== looking_for_rtype
12289 && symbol_same_p ((*pos
)->fx_addsy
, l
->fixp
->fx_addsy
)
12290 && (*pos
)->fx_offset
>= l
->fixp
->fx_offset
12292 || (*pos
)->fx_offset
< (*lo_pos
)->fx_offset
12294 && (*pos
)->fx_offset
== (*lo_pos
)->fx_offset
)))
12297 matched_lo_p
= (reloc_needs_lo_p ((*pos
)->fx_r_type
)
12298 && fixup_has_matching_lo_p (*pos
));
12301 /* If we found a match, remove the high-part relocation from its
12302 current position and insert it before the low-part relocation.
12303 Make the offsets match so that fixup_has_matching_lo_p()
12306 We don't warn about unmatched high-part relocations since some
12307 versions of gcc have been known to emit dead "lui ...%hi(...)"
12309 if (lo_pos
!= NULL
)
12311 l
->fixp
->fx_offset
= (*lo_pos
)->fx_offset
;
12312 if (l
->fixp
->fx_next
!= *lo_pos
)
12314 *hi_pos
= l
->fixp
->fx_next
;
12315 l
->fixp
->fx_next
= *lo_pos
;
12322 /* We may have combined relocations without symbols in the N32/N64 ABI.
12323 We have to prevent gas from dropping them. */
12326 mips_force_relocation (fixS
*fixp
)
12328 if (generic_force_reloc (fixp
))
12332 && S_GET_SEGMENT (fixp
->fx_addsy
) == bfd_abs_section_ptr
12333 && (fixp
->fx_r_type
== BFD_RELOC_MIPS_SUB
12334 || hi16_reloc_p (fixp
->fx_r_type
)
12335 || lo16_reloc_p (fixp
->fx_r_type
)))
12341 /* Apply a fixup to the object file. */
12344 md_apply_fix (fixS
*fixP
, valueT
*valP
, segT seg ATTRIBUTE_UNUSED
)
12348 reloc_howto_type
*howto
;
12350 /* We ignore generic BFD relocations we don't know about. */
12351 howto
= bfd_reloc_type_lookup (stdoutput
, fixP
->fx_r_type
);
12355 gas_assert (fixP
->fx_size
== 4
12356 || fixP
->fx_r_type
== BFD_RELOC_16
12357 || fixP
->fx_r_type
== BFD_RELOC_64
12358 || fixP
->fx_r_type
== BFD_RELOC_CTOR
12359 || fixP
->fx_r_type
== BFD_RELOC_MIPS_SUB
12360 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
12361 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
12362 || fixP
->fx_r_type
== BFD_RELOC_MIPS_TLS_DTPREL64
);
12364 buf
= (bfd_byte
*) (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
);
12366 gas_assert (!fixP
->fx_pcrel
|| fixP
->fx_r_type
== BFD_RELOC_16_PCREL_S2
);
12368 /* Don't treat parts of a composite relocation as done. There are two
12371 (1) The second and third parts will be against 0 (RSS_UNDEF) but
12372 should nevertheless be emitted if the first part is.
12374 (2) In normal usage, composite relocations are never assembly-time
12375 constants. The easiest way of dealing with the pathological
12376 exceptions is to generate a relocation against STN_UNDEF and
12377 leave everything up to the linker. */
12378 if (fixP
->fx_addsy
== NULL
&& !fixP
->fx_pcrel
&& fixP
->fx_tcbit
== 0)
12381 switch (fixP
->fx_r_type
)
12383 case BFD_RELOC_MIPS_TLS_GD
:
12384 case BFD_RELOC_MIPS_TLS_LDM
:
12385 case BFD_RELOC_MIPS_TLS_DTPREL32
:
12386 case BFD_RELOC_MIPS_TLS_DTPREL64
:
12387 case BFD_RELOC_MIPS_TLS_DTPREL_HI16
:
12388 case BFD_RELOC_MIPS_TLS_DTPREL_LO16
:
12389 case BFD_RELOC_MIPS_TLS_GOTTPREL
:
12390 case BFD_RELOC_MIPS_TLS_TPREL_HI16
:
12391 case BFD_RELOC_MIPS_TLS_TPREL_LO16
:
12392 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
12395 case BFD_RELOC_MIPS_JMP
:
12396 case BFD_RELOC_MIPS_SHIFT5
:
12397 case BFD_RELOC_MIPS_SHIFT6
:
12398 case BFD_RELOC_MIPS_GOT_DISP
:
12399 case BFD_RELOC_MIPS_GOT_PAGE
:
12400 case BFD_RELOC_MIPS_GOT_OFST
:
12401 case BFD_RELOC_MIPS_SUB
:
12402 case BFD_RELOC_MIPS_INSERT_A
:
12403 case BFD_RELOC_MIPS_INSERT_B
:
12404 case BFD_RELOC_MIPS_DELETE
:
12405 case BFD_RELOC_MIPS_HIGHEST
:
12406 case BFD_RELOC_MIPS_HIGHER
:
12407 case BFD_RELOC_MIPS_SCN_DISP
:
12408 case BFD_RELOC_MIPS_REL16
:
12409 case BFD_RELOC_MIPS_RELGOT
:
12410 case BFD_RELOC_MIPS_JALR
:
12411 case BFD_RELOC_HI16
:
12412 case BFD_RELOC_HI16_S
:
12413 case BFD_RELOC_GPREL16
:
12414 case BFD_RELOC_MIPS_LITERAL
:
12415 case BFD_RELOC_MIPS_CALL16
:
12416 case BFD_RELOC_MIPS_GOT16
:
12417 case BFD_RELOC_GPREL32
:
12418 case BFD_RELOC_MIPS_GOT_HI16
:
12419 case BFD_RELOC_MIPS_GOT_LO16
:
12420 case BFD_RELOC_MIPS_CALL_HI16
:
12421 case BFD_RELOC_MIPS_CALL_LO16
:
12422 case BFD_RELOC_MIPS16_GPREL
:
12423 case BFD_RELOC_MIPS16_GOT16
:
12424 case BFD_RELOC_MIPS16_CALL16
:
12425 case BFD_RELOC_MIPS16_HI16
:
12426 case BFD_RELOC_MIPS16_HI16_S
:
12427 case BFD_RELOC_MIPS16_JMP
:
12428 /* Nothing needed to do. The value comes from the reloc entry. */
12432 /* This is handled like BFD_RELOC_32, but we output a sign
12433 extended value if we are only 32 bits. */
12436 if (8 <= sizeof (valueT
))
12437 md_number_to_chars ((char *) buf
, *valP
, 8);
12442 if ((*valP
& 0x80000000) != 0)
12446 md_number_to_chars ((char *)(buf
+ (target_big_endian
? 4 : 0)),
12448 md_number_to_chars ((char *)(buf
+ (target_big_endian
? 0 : 4)),
12454 case BFD_RELOC_RVA
:
12457 /* If we are deleting this reloc entry, we must fill in the
12458 value now. This can happen if we have a .word which is not
12459 resolved when it appears but is later defined. */
12461 md_number_to_chars ((char *) buf
, *valP
, fixP
->fx_size
);
12464 case BFD_RELOC_LO16
:
12465 case BFD_RELOC_MIPS16_LO16
:
12466 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
12467 may be safe to remove, but if so it's not obvious. */
12468 /* When handling an embedded PIC switch statement, we can wind
12469 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
12472 if (*valP
+ 0x8000 > 0xffff)
12473 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
12474 _("relocation overflow"));
12475 if (target_big_endian
)
12477 md_number_to_chars ((char *) buf
, *valP
, 2);
12481 case BFD_RELOC_16_PCREL_S2
:
12482 if ((*valP
& 0x3) != 0)
12483 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
12484 _("Branch to misaligned address (%lx)"), (long) *valP
);
12486 /* We need to save the bits in the instruction since fixup_segment()
12487 might be deleting the relocation entry (i.e., a branch within
12488 the current segment). */
12489 if (! fixP
->fx_done
)
12492 /* Update old instruction data. */
12493 if (target_big_endian
)
12494 insn
= (buf
[0] << 24) | (buf
[1] << 16) | (buf
[2] << 8) | buf
[3];
12496 insn
= (buf
[3] << 24) | (buf
[2] << 16) | (buf
[1] << 8) | buf
[0];
12498 if (*valP
+ 0x20000 <= 0x3ffff)
12500 insn
|= (*valP
>> 2) & 0xffff;
12501 md_number_to_chars ((char *) buf
, insn
, 4);
12503 else if (mips_pic
== NO_PIC
12505 && fixP
->fx_frag
->fr_address
>= text_section
->vma
12506 && (fixP
->fx_frag
->fr_address
12507 < text_section
->vma
+ bfd_get_section_size (text_section
))
12508 && ((insn
& 0xffff0000) == 0x10000000 /* beq $0,$0 */
12509 || (insn
& 0xffff0000) == 0x04010000 /* bgez $0 */
12510 || (insn
& 0xffff0000) == 0x04110000)) /* bgezal $0 */
12512 /* The branch offset is too large. If this is an
12513 unconditional branch, and we are not generating PIC code,
12514 we can convert it to an absolute jump instruction. */
12515 if ((insn
& 0xffff0000) == 0x04110000) /* bgezal $0 */
12516 insn
= 0x0c000000; /* jal */
12518 insn
= 0x08000000; /* j */
12519 fixP
->fx_r_type
= BFD_RELOC_MIPS_JMP
;
12521 fixP
->fx_addsy
= section_symbol (text_section
);
12522 *valP
+= md_pcrel_from (fixP
);
12523 md_number_to_chars ((char *) buf
, insn
, 4);
12527 /* If we got here, we have branch-relaxation disabled,
12528 and there's nothing we can do to fix this instruction
12529 without turning it into a longer sequence. */
12530 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
12531 _("Branch out of range"));
12535 case BFD_RELOC_VTABLE_INHERIT
:
12538 && !S_IS_DEFINED (fixP
->fx_addsy
)
12539 && !S_IS_WEAK (fixP
->fx_addsy
))
12540 S_SET_WEAK (fixP
->fx_addsy
);
12543 case BFD_RELOC_VTABLE_ENTRY
:
12551 /* Remember value for tc_gen_reloc. */
12552 fixP
->fx_addnumber
= *valP
;
12562 name
= input_line_pointer
;
12563 c
= get_symbol_end ();
12564 p
= (symbolS
*) symbol_find_or_make (name
);
12565 *input_line_pointer
= c
;
12569 /* Align the current frag to a given power of two. If a particular
12570 fill byte should be used, FILL points to an integer that contains
12571 that byte, otherwise FILL is null.
12573 The MIPS assembler also automatically adjusts any preceding
12577 mips_align (int to
, int *fill
, symbolS
*label
)
12579 mips_emit_delays ();
12580 mips_record_mips16_mode ();
12581 if (fill
== NULL
&& subseg_text_p (now_seg
))
12582 frag_align_code (to
, 0);
12584 frag_align (to
, fill
? *fill
: 0, 0);
12585 record_alignment (now_seg
, to
);
12588 gas_assert (S_GET_SEGMENT (label
) == now_seg
);
12589 symbol_set_frag (label
, frag_now
);
12590 S_SET_VALUE (label
, (valueT
) frag_now_fix ());
12594 /* Align to a given power of two. .align 0 turns off the automatic
12595 alignment used by the data creating pseudo-ops. */
12598 s_align (int x ATTRIBUTE_UNUSED
)
12600 int temp
, fill_value
, *fill_ptr
;
12601 long max_alignment
= 28;
12603 /* o Note that the assembler pulls down any immediately preceding label
12604 to the aligned address.
12605 o It's not documented but auto alignment is reinstated by
12606 a .align pseudo instruction.
12607 o Note also that after auto alignment is turned off the mips assembler
12608 issues an error on attempt to assemble an improperly aligned data item.
12611 temp
= get_absolute_expression ();
12612 if (temp
> max_alignment
)
12613 as_bad (_("Alignment too large: %d. assumed."), temp
= max_alignment
);
12616 as_warn (_("Alignment negative: 0 assumed."));
12619 if (*input_line_pointer
== ',')
12621 ++input_line_pointer
;
12622 fill_value
= get_absolute_expression ();
12623 fill_ptr
= &fill_value
;
12629 segment_info_type
*si
= seg_info (now_seg
);
12630 struct insn_label_list
*l
= si
->label_list
;
12631 /* Auto alignment should be switched on by next section change. */
12633 mips_align (temp
, fill_ptr
, l
!= NULL
? l
->label
: NULL
);
12640 demand_empty_rest_of_line ();
12644 s_change_sec (int sec
)
12649 /* The ELF backend needs to know that we are changing sections, so
12650 that .previous works correctly. We could do something like check
12651 for an obj_section_change_hook macro, but that might be confusing
12652 as it would not be appropriate to use it in the section changing
12653 functions in read.c, since obj-elf.c intercepts those. FIXME:
12654 This should be cleaner, somehow. */
12656 obj_elf_section_change_hook ();
12659 mips_emit_delays ();
12670 subseg_set (bss_section
, (subsegT
) get_absolute_expression ());
12671 demand_empty_rest_of_line ();
12675 seg
= subseg_new (RDATA_SECTION_NAME
,
12676 (subsegT
) get_absolute_expression ());
12679 bfd_set_section_flags (stdoutput
, seg
, (SEC_ALLOC
| SEC_LOAD
12680 | SEC_READONLY
| SEC_RELOC
12682 if (strncmp (TARGET_OS
, "elf", 3) != 0)
12683 record_alignment (seg
, 4);
12685 demand_empty_rest_of_line ();
12689 seg
= subseg_new (".sdata", (subsegT
) get_absolute_expression ());
12692 bfd_set_section_flags (stdoutput
, seg
,
12693 SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
| SEC_DATA
);
12694 if (strncmp (TARGET_OS
, "elf", 3) != 0)
12695 record_alignment (seg
, 4);
12697 demand_empty_rest_of_line ();
12701 seg
= subseg_new (".sbss", (subsegT
) get_absolute_expression ());
12704 bfd_set_section_flags (stdoutput
, seg
, SEC_ALLOC
);
12705 if (strncmp (TARGET_OS
, "elf", 3) != 0)
12706 record_alignment (seg
, 4);
12708 demand_empty_rest_of_line ();
12716 s_change_section (int ignore ATTRIBUTE_UNUSED
)
12719 char *section_name
;
12724 int section_entry_size
;
12725 int section_alignment
;
12730 section_name
= input_line_pointer
;
12731 c
= get_symbol_end ();
12733 next_c
= *(input_line_pointer
+ 1);
12735 /* Do we have .section Name<,"flags">? */
12736 if (c
!= ',' || (c
== ',' && next_c
== '"'))
12738 /* just after name is now '\0'. */
12739 *input_line_pointer
= c
;
12740 input_line_pointer
= section_name
;
12741 obj_elf_section (ignore
);
12744 input_line_pointer
++;
12746 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
12748 section_type
= get_absolute_expression ();
12751 if (*input_line_pointer
++ == ',')
12752 section_flag
= get_absolute_expression ();
12755 if (*input_line_pointer
++ == ',')
12756 section_entry_size
= get_absolute_expression ();
12758 section_entry_size
= 0;
12759 if (*input_line_pointer
++ == ',')
12760 section_alignment
= get_absolute_expression ();
12762 section_alignment
= 0;
12763 /* FIXME: really ignore? */
12764 (void) section_alignment
;
12766 section_name
= xstrdup (section_name
);
12768 /* When using the generic form of .section (as implemented by obj-elf.c),
12769 there's no way to set the section type to SHT_MIPS_DWARF. Users have
12770 traditionally had to fall back on the more common @progbits instead.
12772 There's nothing really harmful in this, since bfd will correct
12773 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
12774 means that, for backwards compatibility, the special_section entries
12775 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
12777 Even so, we shouldn't force users of the MIPS .section syntax to
12778 incorrectly label the sections as SHT_PROGBITS. The best compromise
12779 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
12780 generic type-checking code. */
12781 if (section_type
== SHT_MIPS_DWARF
)
12782 section_type
= SHT_PROGBITS
;
12784 obj_elf_change_section (section_name
, section_type
, section_flag
,
12785 section_entry_size
, 0, 0, 0);
12787 if (now_seg
->name
!= section_name
)
12788 free (section_name
);
12789 #endif /* OBJ_ELF */
12793 mips_enable_auto_align (void)
12799 s_cons (int log_size
)
12801 segment_info_type
*si
= seg_info (now_seg
);
12802 struct insn_label_list
*l
= si
->label_list
;
12805 label
= l
!= NULL
? l
->label
: NULL
;
12806 mips_emit_delays ();
12807 if (log_size
> 0 && auto_align
)
12808 mips_align (log_size
, 0, label
);
12809 cons (1 << log_size
);
12810 mips_clear_insn_labels ();
12814 s_float_cons (int type
)
12816 segment_info_type
*si
= seg_info (now_seg
);
12817 struct insn_label_list
*l
= si
->label_list
;
12820 label
= l
!= NULL
? l
->label
: NULL
;
12822 mips_emit_delays ();
12827 mips_align (3, 0, label
);
12829 mips_align (2, 0, label
);
12833 mips_clear_insn_labels ();
12836 /* Handle .globl. We need to override it because on Irix 5 you are
12839 where foo is an undefined symbol, to mean that foo should be
12840 considered to be the address of a function. */
12843 s_mips_globl (int x ATTRIBUTE_UNUSED
)
12852 name
= input_line_pointer
;
12853 c
= get_symbol_end ();
12854 symbolP
= symbol_find_or_make (name
);
12855 S_SET_EXTERNAL (symbolP
);
12857 *input_line_pointer
= c
;
12858 SKIP_WHITESPACE ();
12860 /* On Irix 5, every global symbol that is not explicitly labelled as
12861 being a function is apparently labelled as being an object. */
12864 if (!is_end_of_line
[(unsigned char) *input_line_pointer
]
12865 && (*input_line_pointer
!= ','))
12870 secname
= input_line_pointer
;
12871 c
= get_symbol_end ();
12872 sec
= bfd_get_section_by_name (stdoutput
, secname
);
12874 as_bad (_("%s: no such section"), secname
);
12875 *input_line_pointer
= c
;
12877 if (sec
!= NULL
&& (sec
->flags
& SEC_CODE
) != 0)
12878 flag
= BSF_FUNCTION
;
12881 symbol_get_bfdsym (symbolP
)->flags
|= flag
;
12883 c
= *input_line_pointer
;
12886 input_line_pointer
++;
12887 SKIP_WHITESPACE ();
12888 if (is_end_of_line
[(unsigned char) *input_line_pointer
])
12894 demand_empty_rest_of_line ();
12898 s_option (int x ATTRIBUTE_UNUSED
)
12903 opt
= input_line_pointer
;
12904 c
= get_symbol_end ();
12908 /* FIXME: What does this mean? */
12910 else if (strncmp (opt
, "pic", 3) == 0)
12914 i
= atoi (opt
+ 3);
12919 mips_pic
= SVR4_PIC
;
12920 mips_abicalls
= TRUE
;
12923 as_bad (_(".option pic%d not supported"), i
);
12925 if (mips_pic
== SVR4_PIC
)
12927 if (g_switch_seen
&& g_switch_value
!= 0)
12928 as_warn (_("-G may not be used with SVR4 PIC code"));
12929 g_switch_value
= 0;
12930 bfd_set_gp_size (stdoutput
, 0);
12934 as_warn (_("Unrecognized option \"%s\""), opt
);
12936 *input_line_pointer
= c
;
12937 demand_empty_rest_of_line ();
12940 /* This structure is used to hold a stack of .set values. */
12942 struct mips_option_stack
12944 struct mips_option_stack
*next
;
12945 struct mips_set_options options
;
12948 static struct mips_option_stack
*mips_opts_stack
;
12950 /* Handle the .set pseudo-op. */
12953 s_mipsset (int x ATTRIBUTE_UNUSED
)
12955 char *name
= input_line_pointer
, ch
;
12957 while (!is_end_of_line
[(unsigned char) *input_line_pointer
])
12958 ++input_line_pointer
;
12959 ch
= *input_line_pointer
;
12960 *input_line_pointer
= '\0';
12962 if (strcmp (name
, "reorder") == 0)
12964 if (mips_opts
.noreorder
)
12967 else if (strcmp (name
, "noreorder") == 0)
12969 if (!mips_opts
.noreorder
)
12970 start_noreorder ();
12972 else if (strncmp (name
, "at=", 3) == 0)
12974 char *s
= name
+ 3;
12976 if (!reg_lookup (&s
, RTYPE_NUM
| RTYPE_GP
, &mips_opts
.at
))
12977 as_bad (_("Unrecognized register name `%s'"), s
);
12979 else if (strcmp (name
, "at") == 0)
12981 mips_opts
.at
= ATREG
;
12983 else if (strcmp (name
, "noat") == 0)
12985 mips_opts
.at
= ZERO
;
12987 else if (strcmp (name
, "macro") == 0)
12989 mips_opts
.warn_about_macros
= 0;
12991 else if (strcmp (name
, "nomacro") == 0)
12993 if (mips_opts
.noreorder
== 0)
12994 as_bad (_("`noreorder' must be set before `nomacro'"));
12995 mips_opts
.warn_about_macros
= 1;
12997 else if (strcmp (name
, "move") == 0 || strcmp (name
, "novolatile") == 0)
12999 mips_opts
.nomove
= 0;
13001 else if (strcmp (name
, "nomove") == 0 || strcmp (name
, "volatile") == 0)
13003 mips_opts
.nomove
= 1;
13005 else if (strcmp (name
, "bopt") == 0)
13007 mips_opts
.nobopt
= 0;
13009 else if (strcmp (name
, "nobopt") == 0)
13011 mips_opts
.nobopt
= 1;
13013 else if (strcmp (name
, "gp=default") == 0)
13014 mips_opts
.gp32
= file_mips_gp32
;
13015 else if (strcmp (name
, "gp=32") == 0)
13016 mips_opts
.gp32
= 1;
13017 else if (strcmp (name
, "gp=64") == 0)
13019 if (!ISA_HAS_64BIT_REGS (mips_opts
.isa
))
13020 as_warn (_("%s isa does not support 64-bit registers"),
13021 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
13022 mips_opts
.gp32
= 0;
13024 else if (strcmp (name
, "fp=default") == 0)
13025 mips_opts
.fp32
= file_mips_fp32
;
13026 else if (strcmp (name
, "fp=32") == 0)
13027 mips_opts
.fp32
= 1;
13028 else if (strcmp (name
, "fp=64") == 0)
13030 if (!ISA_HAS_64BIT_FPRS (mips_opts
.isa
))
13031 as_warn (_("%s isa does not support 64-bit floating point registers"),
13032 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
13033 mips_opts
.fp32
= 0;
13035 else if (strcmp (name
, "softfloat") == 0)
13036 mips_opts
.soft_float
= 1;
13037 else if (strcmp (name
, "hardfloat") == 0)
13038 mips_opts
.soft_float
= 0;
13039 else if (strcmp (name
, "singlefloat") == 0)
13040 mips_opts
.single_float
= 1;
13041 else if (strcmp (name
, "doublefloat") == 0)
13042 mips_opts
.single_float
= 0;
13043 else if (strcmp (name
, "mips16") == 0
13044 || strcmp (name
, "MIPS-16") == 0)
13045 mips_opts
.mips16
= 1;
13046 else if (strcmp (name
, "nomips16") == 0
13047 || strcmp (name
, "noMIPS-16") == 0)
13048 mips_opts
.mips16
= 0;
13049 else if (strcmp (name
, "smartmips") == 0)
13051 if (!ISA_SUPPORTS_SMARTMIPS
)
13052 as_warn (_("%s ISA does not support SmartMIPS ASE"),
13053 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
13054 mips_opts
.ase_smartmips
= 1;
13056 else if (strcmp (name
, "nosmartmips") == 0)
13057 mips_opts
.ase_smartmips
= 0;
13058 else if (strcmp (name
, "mips3d") == 0)
13059 mips_opts
.ase_mips3d
= 1;
13060 else if (strcmp (name
, "nomips3d") == 0)
13061 mips_opts
.ase_mips3d
= 0;
13062 else if (strcmp (name
, "mdmx") == 0)
13063 mips_opts
.ase_mdmx
= 1;
13064 else if (strcmp (name
, "nomdmx") == 0)
13065 mips_opts
.ase_mdmx
= 0;
13066 else if (strcmp (name
, "dsp") == 0)
13068 if (!ISA_SUPPORTS_DSP_ASE
)
13069 as_warn (_("%s ISA does not support DSP ASE"),
13070 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
13071 mips_opts
.ase_dsp
= 1;
13072 mips_opts
.ase_dspr2
= 0;
13074 else if (strcmp (name
, "nodsp") == 0)
13076 mips_opts
.ase_dsp
= 0;
13077 mips_opts
.ase_dspr2
= 0;
13079 else if (strcmp (name
, "dspr2") == 0)
13081 if (!ISA_SUPPORTS_DSPR2_ASE
)
13082 as_warn (_("%s ISA does not support DSP R2 ASE"),
13083 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
13084 mips_opts
.ase_dspr2
= 1;
13085 mips_opts
.ase_dsp
= 1;
13087 else if (strcmp (name
, "nodspr2") == 0)
13089 mips_opts
.ase_dspr2
= 0;
13090 mips_opts
.ase_dsp
= 0;
13092 else if (strcmp (name
, "mt") == 0)
13094 if (!ISA_SUPPORTS_MT_ASE
)
13095 as_warn (_("%s ISA does not support MT ASE"),
13096 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
13097 mips_opts
.ase_mt
= 1;
13099 else if (strcmp (name
, "nomt") == 0)
13100 mips_opts
.ase_mt
= 0;
13101 else if (strncmp (name
, "mips", 4) == 0 || strncmp (name
, "arch=", 5) == 0)
13105 /* Permit the user to change the ISA and architecture on the fly.
13106 Needless to say, misuse can cause serious problems. */
13107 if (strcmp (name
, "mips0") == 0 || strcmp (name
, "arch=default") == 0)
13110 mips_opts
.isa
= file_mips_isa
;
13111 mips_opts
.arch
= file_mips_arch
;
13113 else if (strncmp (name
, "arch=", 5) == 0)
13115 const struct mips_cpu_info
*p
;
13117 p
= mips_parse_cpu("internal use", name
+ 5);
13119 as_bad (_("unknown architecture %s"), name
+ 5);
13122 mips_opts
.arch
= p
->cpu
;
13123 mips_opts
.isa
= p
->isa
;
13126 else if (strncmp (name
, "mips", 4) == 0)
13128 const struct mips_cpu_info
*p
;
13130 p
= mips_parse_cpu("internal use", name
);
13132 as_bad (_("unknown ISA level %s"), name
+ 4);
13135 mips_opts
.arch
= p
->cpu
;
13136 mips_opts
.isa
= p
->isa
;
13140 as_bad (_("unknown ISA or architecture %s"), name
);
13142 switch (mips_opts
.isa
)
13150 mips_opts
.gp32
= 1;
13151 mips_opts
.fp32
= 1;
13158 mips_opts
.gp32
= 0;
13159 mips_opts
.fp32
= 0;
13162 as_bad (_("unknown ISA level %s"), name
+ 4);
13167 mips_opts
.gp32
= file_mips_gp32
;
13168 mips_opts
.fp32
= file_mips_fp32
;
13171 else if (strcmp (name
, "autoextend") == 0)
13172 mips_opts
.noautoextend
= 0;
13173 else if (strcmp (name
, "noautoextend") == 0)
13174 mips_opts
.noautoextend
= 1;
13175 else if (strcmp (name
, "push") == 0)
13177 struct mips_option_stack
*s
;
13179 s
= (struct mips_option_stack
*) xmalloc (sizeof *s
);
13180 s
->next
= mips_opts_stack
;
13181 s
->options
= mips_opts
;
13182 mips_opts_stack
= s
;
13184 else if (strcmp (name
, "pop") == 0)
13186 struct mips_option_stack
*s
;
13188 s
= mips_opts_stack
;
13190 as_bad (_(".set pop with no .set push"));
13193 /* If we're changing the reorder mode we need to handle
13194 delay slots correctly. */
13195 if (s
->options
.noreorder
&& ! mips_opts
.noreorder
)
13196 start_noreorder ();
13197 else if (! s
->options
.noreorder
&& mips_opts
.noreorder
)
13200 mips_opts
= s
->options
;
13201 mips_opts_stack
= s
->next
;
13205 else if (strcmp (name
, "sym32") == 0)
13206 mips_opts
.sym32
= TRUE
;
13207 else if (strcmp (name
, "nosym32") == 0)
13208 mips_opts
.sym32
= FALSE
;
13209 else if (strchr (name
, ','))
13211 /* Generic ".set" directive; use the generic handler. */
13212 *input_line_pointer
= ch
;
13213 input_line_pointer
= name
;
13219 as_warn (_("Tried to set unrecognized symbol: %s\n"), name
);
13221 *input_line_pointer
= ch
;
13222 demand_empty_rest_of_line ();
13225 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
13226 .option pic2. It means to generate SVR4 PIC calls. */
13229 s_abicalls (int ignore ATTRIBUTE_UNUSED
)
13231 mips_pic
= SVR4_PIC
;
13232 mips_abicalls
= TRUE
;
13234 if (g_switch_seen
&& g_switch_value
!= 0)
13235 as_warn (_("-G may not be used with SVR4 PIC code"));
13236 g_switch_value
= 0;
13238 bfd_set_gp_size (stdoutput
, 0);
13239 demand_empty_rest_of_line ();
13242 /* Handle the .cpload pseudo-op. This is used when generating SVR4
13243 PIC code. It sets the $gp register for the function based on the
13244 function address, which is in the register named in the argument.
13245 This uses a relocation against _gp_disp, which is handled specially
13246 by the linker. The result is:
13247 lui $gp,%hi(_gp_disp)
13248 addiu $gp,$gp,%lo(_gp_disp)
13249 addu $gp,$gp,.cpload argument
13250 The .cpload argument is normally $25 == $t9.
13252 The -mno-shared option changes this to:
13253 lui $gp,%hi(__gnu_local_gp)
13254 addiu $gp,$gp,%lo(__gnu_local_gp)
13255 and the argument is ignored. This saves an instruction, but the
13256 resulting code is not position independent; it uses an absolute
13257 address for __gnu_local_gp. Thus code assembled with -mno-shared
13258 can go into an ordinary executable, but not into a shared library. */
13261 s_cpload (int ignore ATTRIBUTE_UNUSED
)
13267 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13268 .cpload is ignored. */
13269 if (mips_pic
!= SVR4_PIC
|| HAVE_NEWABI
)
13275 /* .cpload should be in a .set noreorder section. */
13276 if (mips_opts
.noreorder
== 0)
13277 as_warn (_(".cpload not in noreorder section"));
13279 reg
= tc_get_register (0);
13281 /* If we need to produce a 64-bit address, we are better off using
13282 the default instruction sequence. */
13283 in_shared
= mips_in_shared
|| HAVE_64BIT_SYMBOLS
;
13285 ex
.X_op
= O_symbol
;
13286 ex
.X_add_symbol
= symbol_find_or_make (in_shared
? "_gp_disp" :
13288 ex
.X_op_symbol
= NULL
;
13289 ex
.X_add_number
= 0;
13291 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
13292 symbol_get_bfdsym (ex
.X_add_symbol
)->flags
|= BSF_OBJECT
;
13295 macro_build_lui (&ex
, mips_gp_register
);
13296 macro_build (&ex
, "addiu", "t,r,j", mips_gp_register
,
13297 mips_gp_register
, BFD_RELOC_LO16
);
13299 macro_build (NULL
, "addu", "d,v,t", mips_gp_register
,
13300 mips_gp_register
, reg
);
13303 demand_empty_rest_of_line ();
13306 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
13307 .cpsetup $reg1, offset|$reg2, label
13309 If offset is given, this results in:
13310 sd $gp, offset($sp)
13311 lui $gp, %hi(%neg(%gp_rel(label)))
13312 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13313 daddu $gp, $gp, $reg1
13315 If $reg2 is given, this results in:
13316 daddu $reg2, $gp, $0
13317 lui $gp, %hi(%neg(%gp_rel(label)))
13318 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13319 daddu $gp, $gp, $reg1
13320 $reg1 is normally $25 == $t9.
13322 The -mno-shared option replaces the last three instructions with
13324 addiu $gp,$gp,%lo(_gp) */
13327 s_cpsetup (int ignore ATTRIBUTE_UNUSED
)
13329 expressionS ex_off
;
13330 expressionS ex_sym
;
13333 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
13334 We also need NewABI support. */
13335 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
13341 reg1
= tc_get_register (0);
13342 SKIP_WHITESPACE ();
13343 if (*input_line_pointer
!= ',')
13345 as_bad (_("missing argument separator ',' for .cpsetup"));
13349 ++input_line_pointer
;
13350 SKIP_WHITESPACE ();
13351 if (*input_line_pointer
== '$')
13353 mips_cpreturn_register
= tc_get_register (0);
13354 mips_cpreturn_offset
= -1;
13358 mips_cpreturn_offset
= get_absolute_expression ();
13359 mips_cpreturn_register
= -1;
13361 SKIP_WHITESPACE ();
13362 if (*input_line_pointer
!= ',')
13364 as_bad (_("missing argument separator ',' for .cpsetup"));
13368 ++input_line_pointer
;
13369 SKIP_WHITESPACE ();
13370 expression (&ex_sym
);
13373 if (mips_cpreturn_register
== -1)
13375 ex_off
.X_op
= O_constant
;
13376 ex_off
.X_add_symbol
= NULL
;
13377 ex_off
.X_op_symbol
= NULL
;
13378 ex_off
.X_add_number
= mips_cpreturn_offset
;
13380 macro_build (&ex_off
, "sd", "t,o(b)", mips_gp_register
,
13381 BFD_RELOC_LO16
, SP
);
13384 macro_build (NULL
, "daddu", "d,v,t", mips_cpreturn_register
,
13385 mips_gp_register
, 0);
13387 if (mips_in_shared
|| HAVE_64BIT_SYMBOLS
)
13389 macro_build (&ex_sym
, "lui", "t,u", mips_gp_register
,
13390 -1, BFD_RELOC_GPREL16
, BFD_RELOC_MIPS_SUB
,
13393 macro_build (&ex_sym
, "addiu", "t,r,j", mips_gp_register
,
13394 mips_gp_register
, -1, BFD_RELOC_GPREL16
,
13395 BFD_RELOC_MIPS_SUB
, BFD_RELOC_LO16
);
13397 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", mips_gp_register
,
13398 mips_gp_register
, reg1
);
13404 ex
.X_op
= O_symbol
;
13405 ex
.X_add_symbol
= symbol_find_or_make ("__gnu_local_gp");
13406 ex
.X_op_symbol
= NULL
;
13407 ex
.X_add_number
= 0;
13409 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
13410 symbol_get_bfdsym (ex
.X_add_symbol
)->flags
|= BSF_OBJECT
;
13412 macro_build_lui (&ex
, mips_gp_register
);
13413 macro_build (&ex
, "addiu", "t,r,j", mips_gp_register
,
13414 mips_gp_register
, BFD_RELOC_LO16
);
13419 demand_empty_rest_of_line ();
13423 s_cplocal (int ignore ATTRIBUTE_UNUSED
)
13425 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
13426 .cplocal is ignored. */
13427 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
13433 mips_gp_register
= tc_get_register (0);
13434 demand_empty_rest_of_line ();
13437 /* Handle the .cprestore pseudo-op. This stores $gp into a given
13438 offset from $sp. The offset is remembered, and after making a PIC
13439 call $gp is restored from that location. */
13442 s_cprestore (int ignore ATTRIBUTE_UNUSED
)
13446 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13447 .cprestore is ignored. */
13448 if (mips_pic
!= SVR4_PIC
|| HAVE_NEWABI
)
13454 mips_cprestore_offset
= get_absolute_expression ();
13455 mips_cprestore_valid
= 1;
13457 ex
.X_op
= O_constant
;
13458 ex
.X_add_symbol
= NULL
;
13459 ex
.X_op_symbol
= NULL
;
13460 ex
.X_add_number
= mips_cprestore_offset
;
13463 macro_build_ldst_constoffset (&ex
, ADDRESS_STORE_INSN
, mips_gp_register
,
13464 SP
, HAVE_64BIT_ADDRESSES
);
13467 demand_empty_rest_of_line ();
13470 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
13471 was given in the preceding .cpsetup, it results in:
13472 ld $gp, offset($sp)
13474 If a register $reg2 was given there, it results in:
13475 daddu $gp, $reg2, $0 */
13478 s_cpreturn (int ignore ATTRIBUTE_UNUSED
)
13482 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
13483 We also need NewABI support. */
13484 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
13491 if (mips_cpreturn_register
== -1)
13493 ex
.X_op
= O_constant
;
13494 ex
.X_add_symbol
= NULL
;
13495 ex
.X_op_symbol
= NULL
;
13496 ex
.X_add_number
= mips_cpreturn_offset
;
13498 macro_build (&ex
, "ld", "t,o(b)", mips_gp_register
, BFD_RELOC_LO16
, SP
);
13501 macro_build (NULL
, "daddu", "d,v,t", mips_gp_register
,
13502 mips_cpreturn_register
, 0);
13505 demand_empty_rest_of_line ();
13508 /* Handle the .dtprelword and .dtpreldword pseudo-ops. They generate
13509 a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for
13510 use in DWARF debug information. */
13513 s_dtprel_internal (size_t bytes
)
13520 if (ex
.X_op
!= O_symbol
)
13522 as_bad (_("Unsupported use of %s"), (bytes
== 8
13525 ignore_rest_of_line ();
13528 p
= frag_more (bytes
);
13529 md_number_to_chars (p
, 0, bytes
);
13530 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, bytes
, &ex
, FALSE
,
13532 ? BFD_RELOC_MIPS_TLS_DTPREL64
13533 : BFD_RELOC_MIPS_TLS_DTPREL32
));
13535 demand_empty_rest_of_line ();
13538 /* Handle .dtprelword. */
13541 s_dtprelword (int ignore ATTRIBUTE_UNUSED
)
13543 s_dtprel_internal (4);
13546 /* Handle .dtpreldword. */
13549 s_dtpreldword (int ignore ATTRIBUTE_UNUSED
)
13551 s_dtprel_internal (8);
13554 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
13555 code. It sets the offset to use in gp_rel relocations. */
13558 s_gpvalue (int ignore ATTRIBUTE_UNUSED
)
13560 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
13561 We also need NewABI support. */
13562 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
13568 mips_gprel_offset
= get_absolute_expression ();
13570 demand_empty_rest_of_line ();
13573 /* Handle the .gpword pseudo-op. This is used when generating PIC
13574 code. It generates a 32 bit GP relative reloc. */
13577 s_gpword (int ignore ATTRIBUTE_UNUSED
)
13579 segment_info_type
*si
;
13580 struct insn_label_list
*l
;
13585 /* When not generating PIC code, this is treated as .word. */
13586 if (mips_pic
!= SVR4_PIC
)
13592 si
= seg_info (now_seg
);
13593 l
= si
->label_list
;
13594 label
= l
!= NULL
? l
->label
: NULL
;
13595 mips_emit_delays ();
13597 mips_align (2, 0, label
);
13600 mips_clear_insn_labels ();
13602 if (ex
.X_op
!= O_symbol
|| ex
.X_add_number
!= 0)
13604 as_bad (_("Unsupported use of .gpword"));
13605 ignore_rest_of_line ();
13609 md_number_to_chars (p
, 0, 4);
13610 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, 4, &ex
, FALSE
,
13611 BFD_RELOC_GPREL32
);
13613 demand_empty_rest_of_line ();
13617 s_gpdword (int ignore ATTRIBUTE_UNUSED
)
13619 segment_info_type
*si
;
13620 struct insn_label_list
*l
;
13625 /* When not generating PIC code, this is treated as .dword. */
13626 if (mips_pic
!= SVR4_PIC
)
13632 si
= seg_info (now_seg
);
13633 l
= si
->label_list
;
13634 label
= l
!= NULL
? l
->label
: NULL
;
13635 mips_emit_delays ();
13637 mips_align (3, 0, label
);
13640 mips_clear_insn_labels ();
13642 if (ex
.X_op
!= O_symbol
|| ex
.X_add_number
!= 0)
13644 as_bad (_("Unsupported use of .gpdword"));
13645 ignore_rest_of_line ();
13649 md_number_to_chars (p
, 0, 8);
13650 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, 4, &ex
, FALSE
,
13651 BFD_RELOC_GPREL32
)->fx_tcbit
= 1;
13653 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
13654 fix_new (frag_now
, p
- frag_now
->fr_literal
, 8, NULL
, 0,
13655 FALSE
, BFD_RELOC_64
)->fx_tcbit
= 1;
13657 demand_empty_rest_of_line ();
13660 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
13661 tables in SVR4 PIC code. */
13664 s_cpadd (int ignore ATTRIBUTE_UNUSED
)
13668 /* This is ignored when not generating SVR4 PIC code. */
13669 if (mips_pic
!= SVR4_PIC
)
13675 /* Add $gp to the register named as an argument. */
13677 reg
= tc_get_register (0);
13678 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", reg
, reg
, mips_gp_register
);
13681 demand_empty_rest_of_line ();
13684 /* Handle the .insn pseudo-op. This marks instruction labels in
13685 mips16 mode. This permits the linker to handle them specially,
13686 such as generating jalx instructions when needed. We also make
13687 them odd for the duration of the assembly, in order to generate the
13688 right sort of code. We will make them even in the adjust_symtab
13689 routine, while leaving them marked. This is convenient for the
13690 debugger and the disassembler. The linker knows to make them odd
13694 s_insn (int ignore ATTRIBUTE_UNUSED
)
13696 mips16_mark_labels ();
13698 demand_empty_rest_of_line ();
13701 /* Handle a .stabn directive. We need these in order to mark a label
13702 as being a mips16 text label correctly. Sometimes the compiler
13703 will emit a label, followed by a .stabn, and then switch sections.
13704 If the label and .stabn are in mips16 mode, then the label is
13705 really a mips16 text label. */
13708 s_mips_stab (int type
)
13711 mips16_mark_labels ();
13716 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
13719 s_mips_weakext (int ignore ATTRIBUTE_UNUSED
)
13726 name
= input_line_pointer
;
13727 c
= get_symbol_end ();
13728 symbolP
= symbol_find_or_make (name
);
13729 S_SET_WEAK (symbolP
);
13730 *input_line_pointer
= c
;
13732 SKIP_WHITESPACE ();
13734 if (! is_end_of_line
[(unsigned char) *input_line_pointer
])
13736 if (S_IS_DEFINED (symbolP
))
13738 as_bad (_("ignoring attempt to redefine symbol %s"),
13739 S_GET_NAME (symbolP
));
13740 ignore_rest_of_line ();
13744 if (*input_line_pointer
== ',')
13746 ++input_line_pointer
;
13747 SKIP_WHITESPACE ();
13751 if (exp
.X_op
!= O_symbol
)
13753 as_bad (_("bad .weakext directive"));
13754 ignore_rest_of_line ();
13757 symbol_set_value_expression (symbolP
, &exp
);
13760 demand_empty_rest_of_line ();
13763 /* Parse a register string into a number. Called from the ECOFF code
13764 to parse .frame. The argument is non-zero if this is the frame
13765 register, so that we can record it in mips_frame_reg. */
13768 tc_get_register (int frame
)
13772 SKIP_WHITESPACE ();
13773 if (! reg_lookup (&input_line_pointer
, RWARN
| RTYPE_NUM
| RTYPE_GP
, ®
))
13777 mips_frame_reg
= reg
!= 0 ? reg
: SP
;
13778 mips_frame_reg_valid
= 1;
13779 mips_cprestore_valid
= 0;
13785 md_section_align (asection
*seg
, valueT addr
)
13787 int align
= bfd_get_section_alignment (stdoutput
, seg
);
13791 /* We don't need to align ELF sections to the full alignment.
13792 However, Irix 5 may prefer that we align them at least to a 16
13793 byte boundary. We don't bother to align the sections if we
13794 are targeted for an embedded system. */
13795 if (strncmp (TARGET_OS
, "elf", 3) == 0)
13801 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
13804 /* Utility routine, called from above as well. If called while the
13805 input file is still being read, it's only an approximation. (For
13806 example, a symbol may later become defined which appeared to be
13807 undefined earlier.) */
13810 nopic_need_relax (symbolS
*sym
, int before_relaxing
)
13815 if (g_switch_value
> 0)
13817 const char *symname
;
13820 /* Find out whether this symbol can be referenced off the $gp
13821 register. It can be if it is smaller than the -G size or if
13822 it is in the .sdata or .sbss section. Certain symbols can
13823 not be referenced off the $gp, although it appears as though
13825 symname
= S_GET_NAME (sym
);
13826 if (symname
!= (const char *) NULL
13827 && (strcmp (symname
, "eprol") == 0
13828 || strcmp (symname
, "etext") == 0
13829 || strcmp (symname
, "_gp") == 0
13830 || strcmp (symname
, "edata") == 0
13831 || strcmp (symname
, "_fbss") == 0
13832 || strcmp (symname
, "_fdata") == 0
13833 || strcmp (symname
, "_ftext") == 0
13834 || strcmp (symname
, "end") == 0
13835 || strcmp (symname
, "_gp_disp") == 0))
13837 else if ((! S_IS_DEFINED (sym
) || S_IS_COMMON (sym
))
13839 #ifndef NO_ECOFF_DEBUGGING
13840 || (symbol_get_obj (sym
)->ecoff_extern_size
!= 0
13841 && (symbol_get_obj (sym
)->ecoff_extern_size
13842 <= g_switch_value
))
13844 /* We must defer this decision until after the whole
13845 file has been read, since there might be a .extern
13846 after the first use of this symbol. */
13847 || (before_relaxing
13848 #ifndef NO_ECOFF_DEBUGGING
13849 && symbol_get_obj (sym
)->ecoff_extern_size
== 0
13851 && S_GET_VALUE (sym
) == 0)
13852 || (S_GET_VALUE (sym
) != 0
13853 && S_GET_VALUE (sym
) <= g_switch_value
)))
13857 const char *segname
;
13859 segname
= segment_name (S_GET_SEGMENT (sym
));
13860 gas_assert (strcmp (segname
, ".lit8") != 0
13861 && strcmp (segname
, ".lit4") != 0);
13862 change
= (strcmp (segname
, ".sdata") != 0
13863 && strcmp (segname
, ".sbss") != 0
13864 && strncmp (segname
, ".sdata.", 7) != 0
13865 && strncmp (segname
, ".sbss.", 6) != 0
13866 && strncmp (segname
, ".gnu.linkonce.sb.", 17) != 0
13867 && strncmp (segname
, ".gnu.linkonce.s.", 16) != 0);
13872 /* We are not optimizing for the $gp register. */
13877 /* Return true if the given symbol should be considered local for SVR4 PIC. */
13880 pic_need_relax (symbolS
*sym
, asection
*segtype
)
13884 /* Handle the case of a symbol equated to another symbol. */
13885 while (symbol_equated_reloc_p (sym
))
13889 /* It's possible to get a loop here in a badly written program. */
13890 n
= symbol_get_value_expression (sym
)->X_add_symbol
;
13896 if (symbol_section_p (sym
))
13899 symsec
= S_GET_SEGMENT (sym
);
13901 /* This must duplicate the test in adjust_reloc_syms. */
13902 return (symsec
!= &bfd_und_section
13903 && symsec
!= &bfd_abs_section
13904 && !bfd_is_com_section (symsec
)
13905 && !s_is_linkonce (sym
, segtype
)
13907 /* A global or weak symbol is treated as external. */
13908 && (!IS_ELF
|| (! S_IS_WEAK (sym
) && ! S_IS_EXTERNAL (sym
)))
13914 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
13915 extended opcode. SEC is the section the frag is in. */
13918 mips16_extended_frag (fragS
*fragp
, asection
*sec
, long stretch
)
13921 const struct mips16_immed_operand
*op
;
13923 int mintiny
, maxtiny
;
13927 if (RELAX_MIPS16_USER_SMALL (fragp
->fr_subtype
))
13929 if (RELAX_MIPS16_USER_EXT (fragp
->fr_subtype
))
13932 type
= RELAX_MIPS16_TYPE (fragp
->fr_subtype
);
13933 op
= mips16_immed_operands
;
13934 while (op
->type
!= type
)
13937 gas_assert (op
< mips16_immed_operands
+ MIPS16_NUM_IMMED
);
13942 if (type
== '<' || type
== '>' || type
== '[' || type
== ']')
13945 maxtiny
= 1 << op
->nbits
;
13950 maxtiny
= (1 << op
->nbits
) - 1;
13955 mintiny
= - (1 << (op
->nbits
- 1));
13956 maxtiny
= (1 << (op
->nbits
- 1)) - 1;
13959 sym_frag
= symbol_get_frag (fragp
->fr_symbol
);
13960 val
= S_GET_VALUE (fragp
->fr_symbol
);
13961 symsec
= S_GET_SEGMENT (fragp
->fr_symbol
);
13967 /* We won't have the section when we are called from
13968 mips_relax_frag. However, we will always have been called
13969 from md_estimate_size_before_relax first. If this is a
13970 branch to a different section, we mark it as such. If SEC is
13971 NULL, and the frag is not marked, then it must be a branch to
13972 the same section. */
13975 if (RELAX_MIPS16_LONG_BRANCH (fragp
->fr_subtype
))
13980 /* Must have been called from md_estimate_size_before_relax. */
13983 fragp
->fr_subtype
=
13984 RELAX_MIPS16_MARK_LONG_BRANCH (fragp
->fr_subtype
);
13986 /* FIXME: We should support this, and let the linker
13987 catch branches and loads that are out of range. */
13988 as_bad_where (fragp
->fr_file
, fragp
->fr_line
,
13989 _("unsupported PC relative reference to different section"));
13993 if (fragp
!= sym_frag
&& sym_frag
->fr_address
== 0)
13994 /* Assume non-extended on the first relaxation pass.
13995 The address we have calculated will be bogus if this is
13996 a forward branch to another frag, as the forward frag
13997 will have fr_address == 0. */
14001 /* In this case, we know for sure that the symbol fragment is in
14002 the same section. If the relax_marker of the symbol fragment
14003 differs from the relax_marker of this fragment, we have not
14004 yet adjusted the symbol fragment fr_address. We want to add
14005 in STRETCH in order to get a better estimate of the address.
14006 This particularly matters because of the shift bits. */
14008 && sym_frag
->relax_marker
!= fragp
->relax_marker
)
14012 /* Adjust stretch for any alignment frag. Note that if have
14013 been expanding the earlier code, the symbol may be
14014 defined in what appears to be an earlier frag. FIXME:
14015 This doesn't handle the fr_subtype field, which specifies
14016 a maximum number of bytes to skip when doing an
14018 for (f
= fragp
; f
!= NULL
&& f
!= sym_frag
; f
= f
->fr_next
)
14020 if (f
->fr_type
== rs_align
|| f
->fr_type
== rs_align_code
)
14023 stretch
= - ((- stretch
)
14024 & ~ ((1 << (int) f
->fr_offset
) - 1));
14026 stretch
&= ~ ((1 << (int) f
->fr_offset
) - 1);
14035 addr
= fragp
->fr_address
+ fragp
->fr_fix
;
14037 /* The base address rules are complicated. The base address of
14038 a branch is the following instruction. The base address of a
14039 PC relative load or add is the instruction itself, but if it
14040 is in a delay slot (in which case it can not be extended) use
14041 the address of the instruction whose delay slot it is in. */
14042 if (type
== 'p' || type
== 'q')
14046 /* If we are currently assuming that this frag should be
14047 extended, then, the current address is two bytes
14049 if (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
14052 /* Ignore the low bit in the target, since it will be set
14053 for a text label. */
14054 if ((val
& 1) != 0)
14057 else if (RELAX_MIPS16_JAL_DSLOT (fragp
->fr_subtype
))
14059 else if (RELAX_MIPS16_DSLOT (fragp
->fr_subtype
))
14062 val
-= addr
& ~ ((1 << op
->shift
) - 1);
14064 /* Branch offsets have an implicit 0 in the lowest bit. */
14065 if (type
== 'p' || type
== 'q')
14068 /* If any of the shifted bits are set, we must use an extended
14069 opcode. If the address depends on the size of this
14070 instruction, this can lead to a loop, so we arrange to always
14071 use an extended opcode. We only check this when we are in
14072 the main relaxation loop, when SEC is NULL. */
14073 if ((val
& ((1 << op
->shift
) - 1)) != 0 && sec
== NULL
)
14075 fragp
->fr_subtype
=
14076 RELAX_MIPS16_MARK_LONG_BRANCH (fragp
->fr_subtype
);
14080 /* If we are about to mark a frag as extended because the value
14081 is precisely maxtiny + 1, then there is a chance of an
14082 infinite loop as in the following code:
14087 In this case when the la is extended, foo is 0x3fc bytes
14088 away, so the la can be shrunk, but then foo is 0x400 away, so
14089 the la must be extended. To avoid this loop, we mark the
14090 frag as extended if it was small, and is about to become
14091 extended with a value of maxtiny + 1. */
14092 if (val
== ((maxtiny
+ 1) << op
->shift
)
14093 && ! RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
)
14096 fragp
->fr_subtype
=
14097 RELAX_MIPS16_MARK_LONG_BRANCH (fragp
->fr_subtype
);
14101 else if (symsec
!= absolute_section
&& sec
!= NULL
)
14102 as_bad_where (fragp
->fr_file
, fragp
->fr_line
, _("unsupported relocation"));
14104 if ((val
& ((1 << op
->shift
) - 1)) != 0
14105 || val
< (mintiny
<< op
->shift
)
14106 || val
> (maxtiny
<< op
->shift
))
14112 /* Compute the length of a branch sequence, and adjust the
14113 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
14114 worst-case length is computed, with UPDATE being used to indicate
14115 whether an unconditional (-1), branch-likely (+1) or regular (0)
14116 branch is to be computed. */
14118 relaxed_branch_length (fragS
*fragp
, asection
*sec
, int update
)
14120 bfd_boolean toofar
;
14124 && S_IS_DEFINED (fragp
->fr_symbol
)
14125 && sec
== S_GET_SEGMENT (fragp
->fr_symbol
))
14130 val
= S_GET_VALUE (fragp
->fr_symbol
) + fragp
->fr_offset
;
14132 addr
= fragp
->fr_address
+ fragp
->fr_fix
+ 4;
14136 toofar
= val
< - (0x8000 << 2) || val
>= (0x8000 << 2);
14139 /* If the symbol is not defined or it's in a different segment,
14140 assume the user knows what's going on and emit a short
14146 if (fragp
&& update
&& toofar
!= RELAX_BRANCH_TOOFAR (fragp
->fr_subtype
))
14148 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp
->fr_subtype
),
14149 RELAX_BRANCH_LIKELY (fragp
->fr_subtype
),
14150 RELAX_BRANCH_LINK (fragp
->fr_subtype
),
14156 if (fragp
? RELAX_BRANCH_LIKELY (fragp
->fr_subtype
) : (update
> 0))
14159 if (mips_pic
!= NO_PIC
)
14161 /* Additional space for PIC loading of target address. */
14163 if (mips_opts
.isa
== ISA_MIPS1
)
14164 /* Additional space for $at-stabilizing nop. */
14168 /* If branch is conditional. */
14169 if (fragp
? !RELAX_BRANCH_UNCOND (fragp
->fr_subtype
) : (update
>= 0))
14176 /* Estimate the size of a frag before relaxing. Unless this is the
14177 mips16, we are not really relaxing here, and the final size is
14178 encoded in the subtype information. For the mips16, we have to
14179 decide whether we are using an extended opcode or not. */
14182 md_estimate_size_before_relax (fragS
*fragp
, asection
*segtype
)
14186 if (RELAX_BRANCH_P (fragp
->fr_subtype
))
14189 fragp
->fr_var
= relaxed_branch_length (fragp
, segtype
, FALSE
);
14191 return fragp
->fr_var
;
14194 if (RELAX_MIPS16_P (fragp
->fr_subtype
))
14195 /* We don't want to modify the EXTENDED bit here; it might get us
14196 into infinite loops. We change it only in mips_relax_frag(). */
14197 return (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
) ? 4 : 2);
14199 if (mips_pic
== NO_PIC
)
14200 change
= nopic_need_relax (fragp
->fr_symbol
, 0);
14201 else if (mips_pic
== SVR4_PIC
)
14202 change
= pic_need_relax (fragp
->fr_symbol
, segtype
);
14203 else if (mips_pic
== VXWORKS_PIC
)
14204 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
14211 fragp
->fr_subtype
|= RELAX_USE_SECOND
;
14212 return -RELAX_FIRST (fragp
->fr_subtype
);
14215 return -RELAX_SECOND (fragp
->fr_subtype
);
14218 /* This is called to see whether a reloc against a defined symbol
14219 should be converted into a reloc against a section. */
14222 mips_fix_adjustable (fixS
*fixp
)
14224 if (fixp
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
14225 || fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
14228 if (fixp
->fx_addsy
== NULL
)
14231 /* If symbol SYM is in a mergeable section, relocations of the form
14232 SYM + 0 can usually be made section-relative. The mergeable data
14233 is then identified by the section offset rather than by the symbol.
14235 However, if we're generating REL LO16 relocations, the offset is split
14236 between the LO16 and parterning high part relocation. The linker will
14237 need to recalculate the complete offset in order to correctly identify
14240 The linker has traditionally not looked for the parterning high part
14241 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
14242 placed anywhere. Rather than break backwards compatibility by changing
14243 this, it seems better not to force the issue, and instead keep the
14244 original symbol. This will work with either linker behavior. */
14245 if ((lo16_reloc_p (fixp
->fx_r_type
)
14246 || reloc_needs_lo_p (fixp
->fx_r_type
))
14247 && HAVE_IN_PLACE_ADDENDS
14248 && (S_GET_SEGMENT (fixp
->fx_addsy
)->flags
& SEC_MERGE
) != 0)
14251 /* There is no place to store an in-place offset for JALR relocations. */
14252 if (fixp
->fx_r_type
== BFD_RELOC_MIPS_JALR
&& HAVE_IN_PLACE_ADDENDS
)
14256 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
14257 to a floating-point stub. The same is true for non-R_MIPS16_26
14258 relocations against MIPS16 functions; in this case, the stub becomes
14259 the function's canonical address.
14261 Floating-point stubs are stored in unique .mips16.call.* or
14262 .mips16.fn.* sections. If a stub T for function F is in section S,
14263 the first relocation in section S must be against F; this is how the
14264 linker determines the target function. All relocations that might
14265 resolve to T must also be against F. We therefore have the following
14266 restrictions, which are given in an intentionally-redundant way:
14268 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
14271 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
14272 if that stub might be used.
14274 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
14277 4. We cannot reduce a stub's relocations against MIPS16 symbols if
14278 that stub might be used.
14280 There is a further restriction:
14282 5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols
14283 on targets with in-place addends; the relocation field cannot
14284 encode the low bit.
14286 For simplicity, we deal with (3)-(5) by not reducing _any_ relocation
14287 against a MIPS16 symbol.
14289 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
14290 relocation against some symbol R, no relocation against R may be
14291 reduced. (Note that this deals with (2) as well as (1) because
14292 relocations against global symbols will never be reduced on ELF
14293 targets.) This approach is a little simpler than trying to detect
14294 stub sections, and gives the "all or nothing" per-symbol consistency
14295 that we have for MIPS16 symbols. */
14297 && fixp
->fx_subsy
== NULL
14298 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp
->fx_addsy
))
14299 || *symbol_get_tc (fixp
->fx_addsy
)))
14306 /* Translate internal representation of relocation info to BFD target
14310 tc_gen_reloc (asection
*section ATTRIBUTE_UNUSED
, fixS
*fixp
)
14312 static arelent
*retval
[4];
14314 bfd_reloc_code_real_type code
;
14316 memset (retval
, 0, sizeof(retval
));
14317 reloc
= retval
[0] = (arelent
*) xcalloc (1, sizeof (arelent
));
14318 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
14319 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
14320 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
14322 if (fixp
->fx_pcrel
)
14324 gas_assert (fixp
->fx_r_type
== BFD_RELOC_16_PCREL_S2
);
14326 /* At this point, fx_addnumber is "symbol offset - pcrel address".
14327 Relocations want only the symbol offset. */
14328 reloc
->addend
= fixp
->fx_addnumber
+ reloc
->address
;
14331 /* A gruesome hack which is a result of the gruesome gas
14332 reloc handling. What's worse, for COFF (as opposed to
14333 ECOFF), we might need yet another copy of reloc->address.
14334 See bfd_install_relocation. */
14335 reloc
->addend
+= reloc
->address
;
14339 reloc
->addend
= fixp
->fx_addnumber
;
14341 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
14342 entry to be used in the relocation's section offset. */
14343 if (! HAVE_NEWABI
&& fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
14345 reloc
->address
= reloc
->addend
;
14349 code
= fixp
->fx_r_type
;
14351 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, code
);
14352 if (reloc
->howto
== NULL
)
14354 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
14355 _("Can not represent %s relocation in this object file format"),
14356 bfd_get_reloc_code_name (code
));
14363 /* Relax a machine dependent frag. This returns the amount by which
14364 the current size of the frag should change. */
14367 mips_relax_frag (asection
*sec
, fragS
*fragp
, long stretch
)
14369 if (RELAX_BRANCH_P (fragp
->fr_subtype
))
14371 offsetT old_var
= fragp
->fr_var
;
14373 fragp
->fr_var
= relaxed_branch_length (fragp
, sec
, TRUE
);
14375 return fragp
->fr_var
- old_var
;
14378 if (! RELAX_MIPS16_P (fragp
->fr_subtype
))
14381 if (mips16_extended_frag (fragp
, NULL
, stretch
))
14383 if (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
14385 fragp
->fr_subtype
= RELAX_MIPS16_MARK_EXTENDED (fragp
->fr_subtype
);
14390 if (! RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
14392 fragp
->fr_subtype
= RELAX_MIPS16_CLEAR_EXTENDED (fragp
->fr_subtype
);
14399 /* Convert a machine dependent frag. */
14402 md_convert_frag (bfd
*abfd ATTRIBUTE_UNUSED
, segT asec
, fragS
*fragp
)
14404 if (RELAX_BRANCH_P (fragp
->fr_subtype
))
14407 unsigned long insn
;
14411 buf
= (bfd_byte
*)fragp
->fr_literal
+ fragp
->fr_fix
;
14413 if (target_big_endian
)
14414 insn
= bfd_getb32 (buf
);
14416 insn
= bfd_getl32 (buf
);
14418 if (!RELAX_BRANCH_TOOFAR (fragp
->fr_subtype
))
14420 /* We generate a fixup instead of applying it right now
14421 because, if there are linker relaxations, we're going to
14422 need the relocations. */
14423 exp
.X_op
= O_symbol
;
14424 exp
.X_add_symbol
= fragp
->fr_symbol
;
14425 exp
.X_add_number
= fragp
->fr_offset
;
14427 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
14428 4, &exp
, TRUE
, BFD_RELOC_16_PCREL_S2
);
14429 fixp
->fx_file
= fragp
->fr_file
;
14430 fixp
->fx_line
= fragp
->fr_line
;
14432 md_number_to_chars ((char *) buf
, insn
, 4);
14439 as_warn_where (fragp
->fr_file
, fragp
->fr_line
,
14440 _("relaxed out-of-range branch into a jump"));
14442 if (RELAX_BRANCH_UNCOND (fragp
->fr_subtype
))
14445 if (!RELAX_BRANCH_LIKELY (fragp
->fr_subtype
))
14447 /* Reverse the branch. */
14448 switch ((insn
>> 28) & 0xf)
14451 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
14452 have the condition reversed by tweaking a single
14453 bit, and their opcodes all have 0x4???????. */
14454 gas_assert ((insn
& 0xf1000000) == 0x41000000);
14455 insn
^= 0x00010000;
14459 /* bltz 0x04000000 bgez 0x04010000
14460 bltzal 0x04100000 bgezal 0x04110000 */
14461 gas_assert ((insn
& 0xfc0e0000) == 0x04000000);
14462 insn
^= 0x00010000;
14466 /* beq 0x10000000 bne 0x14000000
14467 blez 0x18000000 bgtz 0x1c000000 */
14468 insn
^= 0x04000000;
14476 if (RELAX_BRANCH_LINK (fragp
->fr_subtype
))
14478 /* Clear the and-link bit. */
14479 gas_assert ((insn
& 0xfc1c0000) == 0x04100000);
14481 /* bltzal 0x04100000 bgezal 0x04110000
14482 bltzall 0x04120000 bgezall 0x04130000 */
14483 insn
&= ~0x00100000;
14486 /* Branch over the branch (if the branch was likely) or the
14487 full jump (not likely case). Compute the offset from the
14488 current instruction to branch to. */
14489 if (RELAX_BRANCH_LIKELY (fragp
->fr_subtype
))
14493 /* How many bytes in instructions we've already emitted? */
14494 i
= buf
- (bfd_byte
*)fragp
->fr_literal
- fragp
->fr_fix
;
14495 /* How many bytes in instructions from here to the end? */
14496 i
= fragp
->fr_var
- i
;
14498 /* Convert to instruction count. */
14500 /* Branch counts from the next instruction. */
14503 /* Branch over the jump. */
14504 md_number_to_chars ((char *) buf
, insn
, 4);
14508 md_number_to_chars ((char *) buf
, 0, 4);
14511 if (RELAX_BRANCH_LIKELY (fragp
->fr_subtype
))
14513 /* beql $0, $0, 2f */
14515 /* Compute the PC offset from the current instruction to
14516 the end of the variable frag. */
14517 /* How many bytes in instructions we've already emitted? */
14518 i
= buf
- (bfd_byte
*)fragp
->fr_literal
- fragp
->fr_fix
;
14519 /* How many bytes in instructions from here to the end? */
14520 i
= fragp
->fr_var
- i
;
14521 /* Convert to instruction count. */
14523 /* Don't decrement i, because we want to branch over the
14527 md_number_to_chars ((char *) buf
, insn
, 4);
14530 md_number_to_chars ((char *) buf
, 0, 4);
14535 if (mips_pic
== NO_PIC
)
14538 insn
= (RELAX_BRANCH_LINK (fragp
->fr_subtype
)
14539 ? 0x0c000000 : 0x08000000);
14540 exp
.X_op
= O_symbol
;
14541 exp
.X_add_symbol
= fragp
->fr_symbol
;
14542 exp
.X_add_number
= fragp
->fr_offset
;
14544 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
14545 4, &exp
, FALSE
, BFD_RELOC_MIPS_JMP
);
14546 fixp
->fx_file
= fragp
->fr_file
;
14547 fixp
->fx_line
= fragp
->fr_line
;
14549 md_number_to_chars ((char *) buf
, insn
, 4);
14554 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
14555 insn
= HAVE_64BIT_ADDRESSES
? 0xdf810000 : 0x8f810000;
14556 exp
.X_op
= O_symbol
;
14557 exp
.X_add_symbol
= fragp
->fr_symbol
;
14558 exp
.X_add_number
= fragp
->fr_offset
;
14560 if (fragp
->fr_offset
)
14562 exp
.X_add_symbol
= make_expr_symbol (&exp
);
14563 exp
.X_add_number
= 0;
14566 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
14567 4, &exp
, FALSE
, BFD_RELOC_MIPS_GOT16
);
14568 fixp
->fx_file
= fragp
->fr_file
;
14569 fixp
->fx_line
= fragp
->fr_line
;
14571 md_number_to_chars ((char *) buf
, insn
, 4);
14574 if (mips_opts
.isa
== ISA_MIPS1
)
14577 md_number_to_chars ((char *) buf
, 0, 4);
14581 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
14582 insn
= HAVE_64BIT_ADDRESSES
? 0x64210000 : 0x24210000;
14584 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
14585 4, &exp
, FALSE
, BFD_RELOC_LO16
);
14586 fixp
->fx_file
= fragp
->fr_file
;
14587 fixp
->fx_line
= fragp
->fr_line
;
14589 md_number_to_chars ((char *) buf
, insn
, 4);
14593 if (RELAX_BRANCH_LINK (fragp
->fr_subtype
))
14598 md_number_to_chars ((char *) buf
, insn
, 4);
14603 gas_assert (buf
== (bfd_byte
*)fragp
->fr_literal
14604 + fragp
->fr_fix
+ fragp
->fr_var
);
14606 fragp
->fr_fix
+= fragp
->fr_var
;
14611 if (RELAX_MIPS16_P (fragp
->fr_subtype
))
14614 const struct mips16_immed_operand
*op
;
14615 bfd_boolean small
, ext
;
14618 unsigned long insn
;
14619 bfd_boolean use_extend
;
14620 unsigned short extend
;
14622 type
= RELAX_MIPS16_TYPE (fragp
->fr_subtype
);
14623 op
= mips16_immed_operands
;
14624 while (op
->type
!= type
)
14627 if (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
14638 val
= resolve_symbol_value (fragp
->fr_symbol
);
14643 addr
= fragp
->fr_address
+ fragp
->fr_fix
;
14645 /* The rules for the base address of a PC relative reloc are
14646 complicated; see mips16_extended_frag. */
14647 if (type
== 'p' || type
== 'q')
14652 /* Ignore the low bit in the target, since it will be
14653 set for a text label. */
14654 if ((val
& 1) != 0)
14657 else if (RELAX_MIPS16_JAL_DSLOT (fragp
->fr_subtype
))
14659 else if (RELAX_MIPS16_DSLOT (fragp
->fr_subtype
))
14662 addr
&= ~ (addressT
) ((1 << op
->shift
) - 1);
14665 /* Make sure the section winds up with the alignment we have
14668 record_alignment (asec
, op
->shift
);
14672 && (RELAX_MIPS16_JAL_DSLOT (fragp
->fr_subtype
)
14673 || RELAX_MIPS16_DSLOT (fragp
->fr_subtype
)))
14674 as_warn_where (fragp
->fr_file
, fragp
->fr_line
,
14675 _("extended instruction in delay slot"));
14677 buf
= (bfd_byte
*) (fragp
->fr_literal
+ fragp
->fr_fix
);
14679 if (target_big_endian
)
14680 insn
= bfd_getb16 (buf
);
14682 insn
= bfd_getl16 (buf
);
14684 mips16_immed (fragp
->fr_file
, fragp
->fr_line
, type
, val
,
14685 RELAX_MIPS16_USER_EXT (fragp
->fr_subtype
),
14686 small
, ext
, &insn
, &use_extend
, &extend
);
14690 md_number_to_chars ((char *) buf
, 0xf000 | extend
, 2);
14691 fragp
->fr_fix
+= 2;
14695 md_number_to_chars ((char *) buf
, insn
, 2);
14696 fragp
->fr_fix
+= 2;
14704 first
= RELAX_FIRST (fragp
->fr_subtype
);
14705 second
= RELAX_SECOND (fragp
->fr_subtype
);
14706 fixp
= (fixS
*) fragp
->fr_opcode
;
14708 /* Possibly emit a warning if we've chosen the longer option. */
14709 if (((fragp
->fr_subtype
& RELAX_USE_SECOND
) != 0)
14710 == ((fragp
->fr_subtype
& RELAX_SECOND_LONGER
) != 0))
14712 const char *msg
= macro_warning (fragp
->fr_subtype
);
14714 as_warn_where (fragp
->fr_file
, fragp
->fr_line
, "%s", msg
);
14717 /* Go through all the fixups for the first sequence. Disable them
14718 (by marking them as done) if we're going to use the second
14719 sequence instead. */
14721 && fixp
->fx_frag
== fragp
14722 && fixp
->fx_where
< fragp
->fr_fix
- second
)
14724 if (fragp
->fr_subtype
& RELAX_USE_SECOND
)
14726 fixp
= fixp
->fx_next
;
14729 /* Go through the fixups for the second sequence. Disable them if
14730 we're going to use the first sequence, otherwise adjust their
14731 addresses to account for the relaxation. */
14732 while (fixp
&& fixp
->fx_frag
== fragp
)
14734 if (fragp
->fr_subtype
& RELAX_USE_SECOND
)
14735 fixp
->fx_where
-= first
;
14738 fixp
= fixp
->fx_next
;
14741 /* Now modify the frag contents. */
14742 if (fragp
->fr_subtype
& RELAX_USE_SECOND
)
14746 start
= fragp
->fr_literal
+ fragp
->fr_fix
- first
- second
;
14747 memmove (start
, start
+ first
, second
);
14748 fragp
->fr_fix
-= first
;
14751 fragp
->fr_fix
-= second
;
14757 /* This function is called after the relocs have been generated.
14758 We've been storing mips16 text labels as odd. Here we convert them
14759 back to even for the convenience of the debugger. */
14762 mips_frob_file_after_relocs (void)
14765 unsigned int count
, i
;
14770 syms
= bfd_get_outsymbols (stdoutput
);
14771 count
= bfd_get_symcount (stdoutput
);
14772 for (i
= 0; i
< count
; i
++, syms
++)
14774 if (ELF_ST_IS_MIPS16 (elf_symbol (*syms
)->internal_elf_sym
.st_other
)
14775 && ((*syms
)->value
& 1) != 0)
14777 (*syms
)->value
&= ~1;
14778 /* If the symbol has an odd size, it was probably computed
14779 incorrectly, so adjust that as well. */
14780 if ((elf_symbol (*syms
)->internal_elf_sym
.st_size
& 1) != 0)
14781 ++elf_symbol (*syms
)->internal_elf_sym
.st_size
;
14788 /* This function is called whenever a label is defined, including fake
14789 labels instantiated off the dot special symbol. It is used when
14790 handling branch delays; if a branch has a label, we assume we cannot
14791 move it. This also bumps the value of the symbol by 1 in compressed
14795 mips_record_label (symbolS
*sym
)
14797 segment_info_type
*si
= seg_info (now_seg
);
14798 struct insn_label_list
*l
;
14800 if (free_insn_labels
== NULL
)
14801 l
= (struct insn_label_list
*) xmalloc (sizeof *l
);
14804 l
= free_insn_labels
;
14805 free_insn_labels
= l
->next
;
14809 l
->next
= si
->label_list
;
14810 si
->label_list
= l
;
14813 /* This function is called as tc_frob_label() whenever a label is defined
14814 and adds a DWARF-2 record we only want for true labels. */
14817 mips_define_label (symbolS
*sym
)
14819 mips_record_label (sym
);
14821 dwarf2_emit_label (sym
);
14825 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
14827 /* Some special processing for a MIPS ELF file. */
14830 mips_elf_final_processing (void)
14832 /* Write out the register information. */
14833 if (mips_abi
!= N64_ABI
)
14837 s
.ri_gprmask
= mips_gprmask
;
14838 s
.ri_cprmask
[0] = mips_cprmask
[0];
14839 s
.ri_cprmask
[1] = mips_cprmask
[1];
14840 s
.ri_cprmask
[2] = mips_cprmask
[2];
14841 s
.ri_cprmask
[3] = mips_cprmask
[3];
14842 /* The gp_value field is set by the MIPS ELF backend. */
14844 bfd_mips_elf32_swap_reginfo_out (stdoutput
, &s
,
14845 ((Elf32_External_RegInfo
*)
14846 mips_regmask_frag
));
14850 Elf64_Internal_RegInfo s
;
14852 s
.ri_gprmask
= mips_gprmask
;
14854 s
.ri_cprmask
[0] = mips_cprmask
[0];
14855 s
.ri_cprmask
[1] = mips_cprmask
[1];
14856 s
.ri_cprmask
[2] = mips_cprmask
[2];
14857 s
.ri_cprmask
[3] = mips_cprmask
[3];
14858 /* The gp_value field is set by the MIPS ELF backend. */
14860 bfd_mips_elf64_swap_reginfo_out (stdoutput
, &s
,
14861 ((Elf64_External_RegInfo
*)
14862 mips_regmask_frag
));
14865 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
14866 sort of BFD interface for this. */
14867 if (mips_any_noreorder
)
14868 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_NOREORDER
;
14869 if (mips_pic
!= NO_PIC
)
14871 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_PIC
;
14872 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_CPIC
;
14875 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_CPIC
;
14877 /* Set MIPS ELF flags for ASEs. */
14878 /* We may need to define a new flag for DSP ASE, and set this flag when
14879 file_ase_dsp is true. */
14880 /* Same for DSP R2. */
14881 /* We may need to define a new flag for MT ASE, and set this flag when
14882 file_ase_mt is true. */
14883 if (file_ase_mips16
)
14884 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_ARCH_ASE_M16
;
14885 #if 0 /* XXX FIXME */
14886 if (file_ase_mips3d
)
14887 elf_elfheader (stdoutput
)->e_flags
|= ???;
14890 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_ARCH_ASE_MDMX
;
14892 /* Set the MIPS ELF ABI flags. */
14893 if (mips_abi
== O32_ABI
&& USE_E_MIPS_ABI_O32
)
14894 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_O32
;
14895 else if (mips_abi
== O64_ABI
)
14896 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_O64
;
14897 else if (mips_abi
== EABI_ABI
)
14899 if (!file_mips_gp32
)
14900 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_EABI64
;
14902 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_EABI32
;
14904 else if (mips_abi
== N32_ABI
)
14905 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_ABI2
;
14907 /* Nothing to do for N64_ABI. */
14909 if (mips_32bitmode
)
14910 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_32BITMODE
;
14912 #if 0 /* XXX FIXME */
14913 /* 32 bit code with 64 bit FP registers. */
14914 if (!file_mips_fp32
&& ABI_NEEDS_32BIT_REGS (mips_abi
))
14915 elf_elfheader (stdoutput
)->e_flags
|= ???;
14919 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
14921 typedef struct proc
{
14923 symbolS
*func_end_sym
;
14924 unsigned long reg_mask
;
14925 unsigned long reg_offset
;
14926 unsigned long fpreg_mask
;
14927 unsigned long fpreg_offset
;
14928 unsigned long frame_offset
;
14929 unsigned long frame_reg
;
14930 unsigned long pc_reg
;
14933 static procS cur_proc
;
14934 static procS
*cur_proc_ptr
;
14935 static int numprocs
;
14937 /* Implement NOP_OPCODE. We encode a MIPS16 nop as "1" and a normal
14941 mips_nop_opcode (void)
14943 return seg_info (now_seg
)->tc_segment_info_data
.mips16
;
14946 /* Fill in an rs_align_code fragment. This only needs to do something
14947 for MIPS16 code, where 0 is not a nop. */
14950 mips_handle_align (fragS
*fragp
)
14953 int bytes
, size
, excess
;
14956 if (fragp
->fr_type
!= rs_align_code
)
14959 p
= fragp
->fr_literal
+ fragp
->fr_fix
;
14962 opcode
= mips16_nop_insn
.insn_opcode
;
14967 opcode
= nop_insn
.insn_opcode
;
14971 bytes
= fragp
->fr_next
->fr_address
- fragp
->fr_address
- fragp
->fr_fix
;
14972 excess
= bytes
% size
;
14975 /* If we're not inserting a whole number of instructions,
14976 pad the end of the fixed part of the frag with zeros. */
14977 memset (p
, 0, excess
);
14979 fragp
->fr_fix
+= excess
;
14982 md_number_to_chars (p
, opcode
, size
);
14983 fragp
->fr_var
= size
;
14987 md_obj_begin (void)
14994 /* Check for premature end, nesting errors, etc. */
14996 as_warn (_("missing .end at end of assembly"));
15005 if (*input_line_pointer
== '-')
15007 ++input_line_pointer
;
15010 if (!ISDIGIT (*input_line_pointer
))
15011 as_bad (_("expected simple number"));
15012 if (input_line_pointer
[0] == '0')
15014 if (input_line_pointer
[1] == 'x')
15016 input_line_pointer
+= 2;
15017 while (ISXDIGIT (*input_line_pointer
))
15020 val
|= hex_value (*input_line_pointer
++);
15022 return negative
? -val
: val
;
15026 ++input_line_pointer
;
15027 while (ISDIGIT (*input_line_pointer
))
15030 val
|= *input_line_pointer
++ - '0';
15032 return negative
? -val
: val
;
15035 if (!ISDIGIT (*input_line_pointer
))
15037 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
15038 *input_line_pointer
, *input_line_pointer
);
15039 as_warn (_("invalid number"));
15042 while (ISDIGIT (*input_line_pointer
))
15045 val
+= *input_line_pointer
++ - '0';
15047 return negative
? -val
: val
;
15050 /* The .file directive; just like the usual .file directive, but there
15051 is an initial number which is the ECOFF file index. In the non-ECOFF
15052 case .file implies DWARF-2. */
15055 s_mips_file (int x ATTRIBUTE_UNUSED
)
15057 static int first_file_directive
= 0;
15059 if (ECOFF_DEBUGGING
)
15068 filename
= dwarf2_directive_file (0);
15070 /* Versions of GCC up to 3.1 start files with a ".file"
15071 directive even for stabs output. Make sure that this
15072 ".file" is handled. Note that you need a version of GCC
15073 after 3.1 in order to support DWARF-2 on MIPS. */
15074 if (filename
!= NULL
&& ! first_file_directive
)
15076 (void) new_logical_line (filename
, -1);
15077 s_app_file_string (filename
, 0);
15079 first_file_directive
= 1;
15083 /* The .loc directive, implying DWARF-2. */
15086 s_mips_loc (int x ATTRIBUTE_UNUSED
)
15088 if (!ECOFF_DEBUGGING
)
15089 dwarf2_directive_loc (0);
15092 /* The .end directive. */
15095 s_mips_end (int x ATTRIBUTE_UNUSED
)
15099 /* Following functions need their own .frame and .cprestore directives. */
15100 mips_frame_reg_valid
= 0;
15101 mips_cprestore_valid
= 0;
15103 if (!is_end_of_line
[(unsigned char) *input_line_pointer
])
15106 demand_empty_rest_of_line ();
15111 if ((bfd_get_section_flags (stdoutput
, now_seg
) & SEC_CODE
) == 0)
15112 as_warn (_(".end not in text section"));
15116 as_warn (_(".end directive without a preceding .ent directive."));
15117 demand_empty_rest_of_line ();
15123 gas_assert (S_GET_NAME (p
));
15124 if (strcmp (S_GET_NAME (p
), S_GET_NAME (cur_proc_ptr
->func_sym
)))
15125 as_warn (_(".end symbol does not match .ent symbol."));
15127 if (debug_type
== DEBUG_STABS
)
15128 stabs_generate_asm_endfunc (S_GET_NAME (p
),
15132 as_warn (_(".end directive missing or unknown symbol"));
15135 /* Create an expression to calculate the size of the function. */
15136 if (p
&& cur_proc_ptr
)
15138 OBJ_SYMFIELD_TYPE
*obj
= symbol_get_obj (p
);
15139 expressionS
*exp
= xmalloc (sizeof (expressionS
));
15142 exp
->X_op
= O_subtract
;
15143 exp
->X_add_symbol
= symbol_temp_new_now ();
15144 exp
->X_op_symbol
= p
;
15145 exp
->X_add_number
= 0;
15147 cur_proc_ptr
->func_end_sym
= exp
->X_add_symbol
;
15150 /* Generate a .pdr section. */
15151 if (IS_ELF
&& !ECOFF_DEBUGGING
&& mips_flag_pdr
)
15153 segT saved_seg
= now_seg
;
15154 subsegT saved_subseg
= now_subseg
;
15158 #ifdef md_flush_pending_output
15159 md_flush_pending_output ();
15162 gas_assert (pdr_seg
);
15163 subseg_set (pdr_seg
, 0);
15165 /* Write the symbol. */
15166 exp
.X_op
= O_symbol
;
15167 exp
.X_add_symbol
= p
;
15168 exp
.X_add_number
= 0;
15169 emit_expr (&exp
, 4);
15171 fragp
= frag_more (7 * 4);
15173 md_number_to_chars (fragp
, cur_proc_ptr
->reg_mask
, 4);
15174 md_number_to_chars (fragp
+ 4, cur_proc_ptr
->reg_offset
, 4);
15175 md_number_to_chars (fragp
+ 8, cur_proc_ptr
->fpreg_mask
, 4);
15176 md_number_to_chars (fragp
+ 12, cur_proc_ptr
->fpreg_offset
, 4);
15177 md_number_to_chars (fragp
+ 16, cur_proc_ptr
->frame_offset
, 4);
15178 md_number_to_chars (fragp
+ 20, cur_proc_ptr
->frame_reg
, 4);
15179 md_number_to_chars (fragp
+ 24, cur_proc_ptr
->pc_reg
, 4);
15181 subseg_set (saved_seg
, saved_subseg
);
15183 #endif /* OBJ_ELF */
15185 cur_proc_ptr
= NULL
;
15188 /* The .aent and .ent directives. */
15191 s_mips_ent (int aent
)
15195 symbolP
= get_symbol ();
15196 if (*input_line_pointer
== ',')
15197 ++input_line_pointer
;
15198 SKIP_WHITESPACE ();
15199 if (ISDIGIT (*input_line_pointer
)
15200 || *input_line_pointer
== '-')
15203 if ((bfd_get_section_flags (stdoutput
, now_seg
) & SEC_CODE
) == 0)
15204 as_warn (_(".ent or .aent not in text section."));
15206 if (!aent
&& cur_proc_ptr
)
15207 as_warn (_("missing .end"));
15211 /* This function needs its own .frame and .cprestore directives. */
15212 mips_frame_reg_valid
= 0;
15213 mips_cprestore_valid
= 0;
15215 cur_proc_ptr
= &cur_proc
;
15216 memset (cur_proc_ptr
, '\0', sizeof (procS
));
15218 cur_proc_ptr
->func_sym
= symbolP
;
15222 if (debug_type
== DEBUG_STABS
)
15223 stabs_generate_asm_func (S_GET_NAME (symbolP
),
15224 S_GET_NAME (symbolP
));
15227 symbol_get_bfdsym (symbolP
)->flags
|= BSF_FUNCTION
;
15229 demand_empty_rest_of_line ();
15232 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
15233 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
15234 s_mips_frame is used so that we can set the PDR information correctly.
15235 We can't use the ecoff routines because they make reference to the ecoff
15236 symbol table (in the mdebug section). */
15239 s_mips_frame (int ignore ATTRIBUTE_UNUSED
)
15242 if (IS_ELF
&& !ECOFF_DEBUGGING
)
15246 if (cur_proc_ptr
== (procS
*) NULL
)
15248 as_warn (_(".frame outside of .ent"));
15249 demand_empty_rest_of_line ();
15253 cur_proc_ptr
->frame_reg
= tc_get_register (1);
15255 SKIP_WHITESPACE ();
15256 if (*input_line_pointer
++ != ','
15257 || get_absolute_expression_and_terminator (&val
) != ',')
15259 as_warn (_("Bad .frame directive"));
15260 --input_line_pointer
;
15261 demand_empty_rest_of_line ();
15265 cur_proc_ptr
->frame_offset
= val
;
15266 cur_proc_ptr
->pc_reg
= tc_get_register (0);
15268 demand_empty_rest_of_line ();
15271 #endif /* OBJ_ELF */
15275 /* The .fmask and .mask directives. If the mdebug section is present
15276 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
15277 embedded targets, s_mips_mask is used so that we can set the PDR
15278 information correctly. We can't use the ecoff routines because they
15279 make reference to the ecoff symbol table (in the mdebug section). */
15282 s_mips_mask (int reg_type
)
15285 if (IS_ELF
&& !ECOFF_DEBUGGING
)
15289 if (cur_proc_ptr
== (procS
*) NULL
)
15291 as_warn (_(".mask/.fmask outside of .ent"));
15292 demand_empty_rest_of_line ();
15296 if (get_absolute_expression_and_terminator (&mask
) != ',')
15298 as_warn (_("Bad .mask/.fmask directive"));
15299 --input_line_pointer
;
15300 demand_empty_rest_of_line ();
15304 off
= get_absolute_expression ();
15306 if (reg_type
== 'F')
15308 cur_proc_ptr
->fpreg_mask
= mask
;
15309 cur_proc_ptr
->fpreg_offset
= off
;
15313 cur_proc_ptr
->reg_mask
= mask
;
15314 cur_proc_ptr
->reg_offset
= off
;
15317 demand_empty_rest_of_line ();
15320 #endif /* OBJ_ELF */
15321 s_ignore (reg_type
);
15324 /* A table describing all the processors gas knows about. Names are
15325 matched in the order listed.
15327 To ease comparison, please keep this table in the same order as
15328 gcc's mips_cpu_info_table[]. */
15329 static const struct mips_cpu_info mips_cpu_info_table
[] =
15331 /* Entries for generic ISAs */
15332 { "mips1", MIPS_CPU_IS_ISA
, ISA_MIPS1
, CPU_R3000
},
15333 { "mips2", MIPS_CPU_IS_ISA
, ISA_MIPS2
, CPU_R6000
},
15334 { "mips3", MIPS_CPU_IS_ISA
, ISA_MIPS3
, CPU_R4000
},
15335 { "mips4", MIPS_CPU_IS_ISA
, ISA_MIPS4
, CPU_R8000
},
15336 { "mips5", MIPS_CPU_IS_ISA
, ISA_MIPS5
, CPU_MIPS5
},
15337 { "mips32", MIPS_CPU_IS_ISA
, ISA_MIPS32
, CPU_MIPS32
},
15338 { "mips32r2", MIPS_CPU_IS_ISA
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15339 { "mips64", MIPS_CPU_IS_ISA
, ISA_MIPS64
, CPU_MIPS64
},
15340 { "mips64r2", MIPS_CPU_IS_ISA
, ISA_MIPS64R2
, CPU_MIPS64R2
},
15343 { "r3000", 0, ISA_MIPS1
, CPU_R3000
},
15344 { "r2000", 0, ISA_MIPS1
, CPU_R3000
},
15345 { "r3900", 0, ISA_MIPS1
, CPU_R3900
},
15348 { "r6000", 0, ISA_MIPS2
, CPU_R6000
},
15351 { "r4000", 0, ISA_MIPS3
, CPU_R4000
},
15352 { "r4010", 0, ISA_MIPS2
, CPU_R4010
},
15353 { "vr4100", 0, ISA_MIPS3
, CPU_VR4100
},
15354 { "vr4111", 0, ISA_MIPS3
, CPU_R4111
},
15355 { "vr4120", 0, ISA_MIPS3
, CPU_VR4120
},
15356 { "vr4130", 0, ISA_MIPS3
, CPU_VR4120
},
15357 { "vr4181", 0, ISA_MIPS3
, CPU_R4111
},
15358 { "vr4300", 0, ISA_MIPS3
, CPU_R4300
},
15359 { "r4400", 0, ISA_MIPS3
, CPU_R4400
},
15360 { "r4600", 0, ISA_MIPS3
, CPU_R4600
},
15361 { "orion", 0, ISA_MIPS3
, CPU_R4600
},
15362 { "r4650", 0, ISA_MIPS3
, CPU_R4650
},
15363 /* ST Microelectronics Loongson 2E and 2F cores */
15364 { "loongson2e", 0, ISA_MIPS3
, CPU_LOONGSON_2E
},
15365 { "loongson2f", 0, ISA_MIPS3
, CPU_LOONGSON_2F
},
15368 { "r8000", 0, ISA_MIPS4
, CPU_R8000
},
15369 { "r10000", 0, ISA_MIPS4
, CPU_R10000
},
15370 { "r12000", 0, ISA_MIPS4
, CPU_R12000
},
15371 { "r14000", 0, ISA_MIPS4
, CPU_R14000
},
15372 { "r16000", 0, ISA_MIPS4
, CPU_R16000
},
15373 { "vr5000", 0, ISA_MIPS4
, CPU_R5000
},
15374 { "vr5400", 0, ISA_MIPS4
, CPU_VR5400
},
15375 { "vr5500", 0, ISA_MIPS4
, CPU_VR5500
},
15376 { "rm5200", 0, ISA_MIPS4
, CPU_R5000
},
15377 { "rm5230", 0, ISA_MIPS4
, CPU_R5000
},
15378 { "rm5231", 0, ISA_MIPS4
, CPU_R5000
},
15379 { "rm5261", 0, ISA_MIPS4
, CPU_R5000
},
15380 { "rm5721", 0, ISA_MIPS4
, CPU_R5000
},
15381 { "rm7000", 0, ISA_MIPS4
, CPU_RM7000
},
15382 { "rm9000", 0, ISA_MIPS4
, CPU_RM9000
},
15385 { "4kc", 0, ISA_MIPS32
, CPU_MIPS32
},
15386 { "4km", 0, ISA_MIPS32
, CPU_MIPS32
},
15387 { "4kp", 0, ISA_MIPS32
, CPU_MIPS32
},
15388 { "4ksc", MIPS_CPU_ASE_SMARTMIPS
, ISA_MIPS32
, CPU_MIPS32
},
15390 /* MIPS 32 Release 2 */
15391 { "4kec", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15392 { "4kem", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15393 { "4kep", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15394 { "4ksd", MIPS_CPU_ASE_SMARTMIPS
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15395 { "m4k", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15396 { "m4kp", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15397 { "24kc", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15398 { "24kf2_1", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15399 { "24kf", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15400 { "24kf1_1", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15401 /* Deprecated forms of the above. */
15402 { "24kfx", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15403 { "24kx", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
15404 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
15405 { "24kec", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15406 { "24kef2_1", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15407 { "24kef", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15408 { "24kef1_1", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15409 /* Deprecated forms of the above. */
15410 { "24kefx", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15411 { "24kex", MIPS_CPU_ASE_DSP
, ISA_MIPS32R2
, CPU_MIPS32R2
},
15412 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
15413 { "34kc", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15414 ISA_MIPS32R2
, CPU_MIPS32R2
},
15415 { "34kf2_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15416 ISA_MIPS32R2
, CPU_MIPS32R2
},
15417 { "34kf", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15418 ISA_MIPS32R2
, CPU_MIPS32R2
},
15419 { "34kf1_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15420 ISA_MIPS32R2
, CPU_MIPS32R2
},
15421 /* Deprecated forms of the above. */
15422 { "34kfx", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15423 ISA_MIPS32R2
, CPU_MIPS32R2
},
15424 { "34kx", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15425 ISA_MIPS32R2
, CPU_MIPS32R2
},
15426 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
15427 { "74kc", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15428 ISA_MIPS32R2
, CPU_MIPS32R2
},
15429 { "74kf2_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15430 ISA_MIPS32R2
, CPU_MIPS32R2
},
15431 { "74kf", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15432 ISA_MIPS32R2
, CPU_MIPS32R2
},
15433 { "74kf1_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15434 ISA_MIPS32R2
, CPU_MIPS32R2
},
15435 { "74kf3_2", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15436 ISA_MIPS32R2
, CPU_MIPS32R2
},
15437 /* Deprecated forms of the above. */
15438 { "74kfx", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15439 ISA_MIPS32R2
, CPU_MIPS32R2
},
15440 { "74kx", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_DSPR2
,
15441 ISA_MIPS32R2
, CPU_MIPS32R2
},
15442 /* 1004K cores are multiprocessor versions of the 34K. */
15443 { "1004kc", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15444 ISA_MIPS32R2
, CPU_MIPS32R2
},
15445 { "1004kf2_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15446 ISA_MIPS32R2
, CPU_MIPS32R2
},
15447 { "1004kf", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15448 ISA_MIPS32R2
, CPU_MIPS32R2
},
15449 { "1004kf1_1", MIPS_CPU_ASE_DSP
| MIPS_CPU_ASE_MT
,
15450 ISA_MIPS32R2
, CPU_MIPS32R2
},
15453 { "5kc", 0, ISA_MIPS64
, CPU_MIPS64
},
15454 { "5kf", 0, ISA_MIPS64
, CPU_MIPS64
},
15455 { "20kc", MIPS_CPU_ASE_MIPS3D
, ISA_MIPS64
, CPU_MIPS64
},
15456 { "25kf", MIPS_CPU_ASE_MIPS3D
, ISA_MIPS64
, CPU_MIPS64
},
15458 /* Broadcom SB-1 CPU core */
15459 { "sb1", MIPS_CPU_ASE_MIPS3D
| MIPS_CPU_ASE_MDMX
,
15460 ISA_MIPS64
, CPU_SB1
},
15461 /* Broadcom SB-1A CPU core */
15462 { "sb1a", MIPS_CPU_ASE_MIPS3D
| MIPS_CPU_ASE_MDMX
,
15463 ISA_MIPS64
, CPU_SB1
},
15465 { "loongson3a", 0, ISA_MIPS64
, CPU_LOONGSON_3A
},
15467 /* MIPS 64 Release 2 */
15469 /* Cavium Networks Octeon CPU core */
15470 { "octeon", 0, ISA_MIPS64R2
, CPU_OCTEON
},
15473 { "xlr", 0, ISA_MIPS64
, CPU_XLR
},
15480 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
15481 with a final "000" replaced by "k". Ignore case.
15483 Note: this function is shared between GCC and GAS. */
15486 mips_strict_matching_cpu_name_p (const char *canonical
, const char *given
)
15488 while (*given
!= 0 && TOLOWER (*given
) == TOLOWER (*canonical
))
15489 given
++, canonical
++;
15491 return ((*given
== 0 && *canonical
== 0)
15492 || (strcmp (canonical
, "000") == 0 && strcasecmp (given
, "k") == 0));
15496 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
15497 CPU name. We've traditionally allowed a lot of variation here.
15499 Note: this function is shared between GCC and GAS. */
15502 mips_matching_cpu_name_p (const char *canonical
, const char *given
)
15504 /* First see if the name matches exactly, or with a final "000"
15505 turned into "k". */
15506 if (mips_strict_matching_cpu_name_p (canonical
, given
))
15509 /* If not, try comparing based on numerical designation alone.
15510 See if GIVEN is an unadorned number, or 'r' followed by a number. */
15511 if (TOLOWER (*given
) == 'r')
15513 if (!ISDIGIT (*given
))
15516 /* Skip over some well-known prefixes in the canonical name,
15517 hoping to find a number there too. */
15518 if (TOLOWER (canonical
[0]) == 'v' && TOLOWER (canonical
[1]) == 'r')
15520 else if (TOLOWER (canonical
[0]) == 'r' && TOLOWER (canonical
[1]) == 'm')
15522 else if (TOLOWER (canonical
[0]) == 'r')
15525 return mips_strict_matching_cpu_name_p (canonical
, given
);
15529 /* Parse an option that takes the name of a processor as its argument.
15530 OPTION is the name of the option and CPU_STRING is the argument.
15531 Return the corresponding processor enumeration if the CPU_STRING is
15532 recognized, otherwise report an error and return null.
15534 A similar function exists in GCC. */
15536 static const struct mips_cpu_info
*
15537 mips_parse_cpu (const char *option
, const char *cpu_string
)
15539 const struct mips_cpu_info
*p
;
15541 /* 'from-abi' selects the most compatible architecture for the given
15542 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
15543 EABIs, we have to decide whether we're using the 32-bit or 64-bit
15544 version. Look first at the -mgp options, if given, otherwise base
15545 the choice on MIPS_DEFAULT_64BIT.
15547 Treat NO_ABI like the EABIs. One reason to do this is that the
15548 plain 'mips' and 'mips64' configs have 'from-abi' as their default
15549 architecture. This code picks MIPS I for 'mips' and MIPS III for
15550 'mips64', just as we did in the days before 'from-abi'. */
15551 if (strcasecmp (cpu_string
, "from-abi") == 0)
15553 if (ABI_NEEDS_32BIT_REGS (mips_abi
))
15554 return mips_cpu_info_from_isa (ISA_MIPS1
);
15556 if (ABI_NEEDS_64BIT_REGS (mips_abi
))
15557 return mips_cpu_info_from_isa (ISA_MIPS3
);
15559 if (file_mips_gp32
>= 0)
15560 return mips_cpu_info_from_isa (file_mips_gp32
? ISA_MIPS1
: ISA_MIPS3
);
15562 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
15567 /* 'default' has traditionally been a no-op. Probably not very useful. */
15568 if (strcasecmp (cpu_string
, "default") == 0)
15571 for (p
= mips_cpu_info_table
; p
->name
!= 0; p
++)
15572 if (mips_matching_cpu_name_p (p
->name
, cpu_string
))
15575 as_bad (_("Bad value (%s) for %s"), cpu_string
, option
);
15579 /* Return the canonical processor information for ISA (a member of the
15580 ISA_MIPS* enumeration). */
15582 static const struct mips_cpu_info
*
15583 mips_cpu_info_from_isa (int isa
)
15587 for (i
= 0; mips_cpu_info_table
[i
].name
!= NULL
; i
++)
15588 if ((mips_cpu_info_table
[i
].flags
& MIPS_CPU_IS_ISA
)
15589 && isa
== mips_cpu_info_table
[i
].isa
)
15590 return (&mips_cpu_info_table
[i
]);
15595 static const struct mips_cpu_info
*
15596 mips_cpu_info_from_arch (int arch
)
15600 for (i
= 0; mips_cpu_info_table
[i
].name
!= NULL
; i
++)
15601 if (arch
== mips_cpu_info_table
[i
].cpu
)
15602 return (&mips_cpu_info_table
[i
]);
15608 show (FILE *stream
, const char *string
, int *col_p
, int *first_p
)
15612 fprintf (stream
, "%24s", "");
15617 fprintf (stream
, ", ");
15621 if (*col_p
+ strlen (string
) > 72)
15623 fprintf (stream
, "\n%24s", "");
15627 fprintf (stream
, "%s", string
);
15628 *col_p
+= strlen (string
);
15634 md_show_usage (FILE *stream
)
15639 fprintf (stream
, _("\
15641 -EB generate big endian output\n\
15642 -EL generate little endian output\n\
15643 -g, -g2 do not remove unneeded NOPs or swap branches\n\
15644 -G NUM allow referencing objects up to NUM bytes\n\
15645 implicitly with the gp register [default 8]\n"));
15646 fprintf (stream
, _("\
15647 -mips1 generate MIPS ISA I instructions\n\
15648 -mips2 generate MIPS ISA II instructions\n\
15649 -mips3 generate MIPS ISA III instructions\n\
15650 -mips4 generate MIPS ISA IV instructions\n\
15651 -mips5 generate MIPS ISA V instructions\n\
15652 -mips32 generate MIPS32 ISA instructions\n\
15653 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
15654 -mips64 generate MIPS64 ISA instructions\n\
15655 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
15656 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
15660 for (i
= 0; mips_cpu_info_table
[i
].name
!= NULL
; i
++)
15661 show (stream
, mips_cpu_info_table
[i
].name
, &column
, &first
);
15662 show (stream
, "from-abi", &column
, &first
);
15663 fputc ('\n', stream
);
15665 fprintf (stream
, _("\
15666 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
15667 -no-mCPU don't generate code specific to CPU.\n\
15668 For -mCPU and -no-mCPU, CPU must be one of:\n"));
15672 show (stream
, "3900", &column
, &first
);
15673 show (stream
, "4010", &column
, &first
);
15674 show (stream
, "4100", &column
, &first
);
15675 show (stream
, "4650", &column
, &first
);
15676 fputc ('\n', stream
);
15678 fprintf (stream
, _("\
15679 -mips16 generate mips16 instructions\n\
15680 -no-mips16 do not generate mips16 instructions\n"));
15681 fprintf (stream
, _("\
15682 -msmartmips generate smartmips instructions\n\
15683 -mno-smartmips do not generate smartmips instructions\n"));
15684 fprintf (stream
, _("\
15685 -mdsp generate DSP instructions\n\
15686 -mno-dsp do not generate DSP instructions\n"));
15687 fprintf (stream
, _("\
15688 -mdspr2 generate DSP R2 instructions\n\
15689 -mno-dspr2 do not generate DSP R2 instructions\n"));
15690 fprintf (stream
, _("\
15691 -mmt generate MT instructions\n\
15692 -mno-mt do not generate MT instructions\n"));
15693 fprintf (stream
, _("\
15694 -mfix-loongson2f-jump work around Loongson2F JUMP instructions\n\
15695 -mfix-loongson2f-nop work around Loongson2F NOP errata\n\
15696 -mfix-vr4120 work around certain VR4120 errata\n\
15697 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
15698 -mfix-24k insert a nop after ERET and DERET instructions\n\
15699 -mfix-cn63xxp1 work around CN63XXP1 PREF errata\n\
15700 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
15701 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
15702 -msym32 assume all symbols have 32-bit values\n\
15703 -O0 remove unneeded NOPs, do not swap branches\n\
15704 -O remove unneeded NOPs and swap branches\n\
15705 --trap, --no-break trap exception on div by 0 and mult overflow\n\
15706 --break, --no-trap break exception on div by 0 and mult overflow\n"));
15707 fprintf (stream
, _("\
15708 -mhard-float allow floating-point instructions\n\
15709 -msoft-float do not allow floating-point instructions\n\
15710 -msingle-float only allow 32-bit floating-point operations\n\
15711 -mdouble-float allow 32-bit and 64-bit floating-point operations\n\
15712 --[no-]construct-floats [dis]allow floating point values to be constructed\n"
15715 fprintf (stream
, _("\
15716 -KPIC, -call_shared generate SVR4 position independent code\n\
15717 -call_nonpic generate non-PIC code that can operate with DSOs\n\
15718 -mvxworks-pic generate VxWorks position independent code\n\
15719 -non_shared do not generate code that can operate with DSOs\n\
15720 -xgot assume a 32 bit GOT\n\
15721 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
15722 -mshared, -mno-shared disable/enable .cpload optimization for\n\
15723 position dependent (non shared) code\n\
15724 -mabi=ABI create ABI conformant object file for:\n"));
15728 show (stream
, "32", &column
, &first
);
15729 show (stream
, "o64", &column
, &first
);
15730 show (stream
, "n32", &column
, &first
);
15731 show (stream
, "64", &column
, &first
);
15732 show (stream
, "eabi", &column
, &first
);
15734 fputc ('\n', stream
);
15736 fprintf (stream
, _("\
15737 -32 create o32 ABI object file (default)\n\
15738 -n32 create n32 ABI object file\n\
15739 -64 create 64 ABI object file\n"));
15745 mips_dwarf2_format (asection
*sec ATTRIBUTE_UNUSED
)
15747 if (HAVE_64BIT_SYMBOLS
)
15748 return dwarf2_format_64bit_irix
;
15750 return dwarf2_format_32bit
;
15755 mips_dwarf2_addr_size (void)
15757 if (HAVE_64BIT_OBJECTS
)
15763 /* Standard calling conventions leave the CFA at SP on entry. */
15765 mips_cfi_frame_initial_instructions (void)
15767 cfi_add_CFA_def_cfa_register (SP
);
15771 tc_mips_regname_to_dw2regnum (char *regname
)
15773 unsigned int regnum
= -1;
15776 if (reg_lookup (®name
, RTYPE_GP
| RTYPE_NUM
, ®
))