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 Free Software Foundation, Inc.
4 Contributed by the OSF and Ralph Campbell.
5 Written by Keith Knowles and Ralph Campbell, working independently.
6 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
9 This file is part of GAS.
11 GAS is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
16 GAS is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with GAS; see the file COPYING. If not, write to the Free
23 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
29 #include "safe-ctype.h"
33 #include "opcode/mips.h"
35 #include "dwarf2dbg.h"
36 #include "dw2gencfi.h"
39 #define DBG(x) printf x
45 /* Clean up namespace so we can include obj-elf.h too. */
46 static int mips_output_flavor (void);
47 static int mips_output_flavor (void) { return OUTPUT_FLAVOR
; }
48 #undef OBJ_PROCESS_STAB
55 #undef obj_frob_file_after_relocs
56 #undef obj_frob_symbol
58 #undef obj_sec_sym_ok_for_reloc
59 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
62 /* Fix any of them that we actually care about. */
64 #define OUTPUT_FLAVOR mips_output_flavor()
71 #ifndef ECOFF_DEBUGGING
72 #define NO_ECOFF_DEBUGGING
73 #define ECOFF_DEBUGGING 0
76 int mips_flag_mdebug
= -1;
78 /* Control generation of .pdr sections. Off by default on IRIX: the native
79 linker doesn't know about and discards them, but relocations against them
80 remain, leading to rld crashes. */
82 int mips_flag_pdr
= FALSE
;
84 int mips_flag_pdr
= TRUE
;
89 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
90 static char *mips_regmask_frag
;
96 #define PIC_CALL_REG 25
104 #define ILLEGAL_REG (32)
106 /* Allow override of standard little-endian ECOFF format. */
108 #ifndef ECOFF_LITTLE_FORMAT
109 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
112 extern int target_big_endian
;
114 /* The name of the readonly data section. */
115 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
117 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
119 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
123 /* Information about an instruction, including its format, operands
127 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
128 const struct mips_opcode
*insn_mo
;
130 /* True if this is a mips16 instruction and if we want the extended
132 bfd_boolean use_extend
;
134 /* The 16-bit extension instruction to use when USE_EXTEND is true. */
135 unsigned short extend
;
137 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
138 a copy of INSN_MO->match with the operands filled in. */
139 unsigned long insn_opcode
;
141 /* The frag that contains the instruction. */
144 /* The offset into FRAG of the first instruction byte. */
147 /* The relocs associated with the instruction, if any. */
150 /* True if this entry cannot be moved from its current position. */
151 unsigned int fixed_p
: 1;
153 /* True if this instruction occured in a .set noreorder block. */
154 unsigned int noreorder_p
: 1;
156 /* True for mips16 instructions that jump to an absolute address. */
157 unsigned int mips16_absolute_jump_p
: 1;
160 /* The ABI to use. */
171 /* MIPS ABI we are using for this output file. */
172 static enum mips_abi_level mips_abi
= NO_ABI
;
174 /* Whether or not we have code that can call pic code. */
175 int mips_abicalls
= FALSE
;
177 /* Whether or not we have code which can be put into a shared
179 static bfd_boolean mips_in_shared
= TRUE
;
181 /* This is the set of options which may be modified by the .set
182 pseudo-op. We use a struct so that .set push and .set pop are more
185 struct mips_set_options
187 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
188 if it has not been initialized. Changed by `.set mipsN', and the
189 -mipsN command line option, and the default CPU. */
191 /* Enabled Application Specific Extensions (ASEs). These are set to -1
192 if they have not been initialized. Changed by `.set <asename>', by
193 command line options, and based on the default architecture. */
198 /* Whether we are assembling for the mips16 processor. 0 if we are
199 not, 1 if we are, and -1 if the value has not been initialized.
200 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
201 -nomips16 command line options, and the default CPU. */
203 /* Non-zero if we should not reorder instructions. Changed by `.set
204 reorder' and `.set noreorder'. */
206 /* Non-zero if we should not permit the $at ($1) register to be used
207 in instructions. Changed by `.set at' and `.set noat'. */
209 /* Non-zero if we should warn when a macro instruction expands into
210 more than one machine instruction. Changed by `.set nomacro' and
212 int warn_about_macros
;
213 /* Non-zero if we should not move instructions. Changed by `.set
214 move', `.set volatile', `.set nomove', and `.set novolatile'. */
216 /* Non-zero if we should not optimize branches by moving the target
217 of the branch into the delay slot. Actually, we don't perform
218 this optimization anyhow. Changed by `.set bopt' and `.set
221 /* Non-zero if we should not autoextend mips16 instructions.
222 Changed by `.set autoextend' and `.set noautoextend'. */
224 /* Restrict general purpose registers and floating point registers
225 to 32 bit. This is initially determined when -mgp32 or -mfp32
226 is passed but can changed if the assembler code uses .set mipsN. */
229 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
230 command line option, and the default CPU. */
232 /* True if ".set sym32" is in effect. */
236 /* True if -mgp32 was passed. */
237 static int file_mips_gp32
= -1;
239 /* True if -mfp32 was passed. */
240 static int file_mips_fp32
= -1;
242 /* This is the struct we use to hold the current set of options. Note
243 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
244 -1 to indicate that they have not been initialized. */
246 static struct mips_set_options mips_opts
=
248 ISA_UNKNOWN
, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, CPU_UNKNOWN
, FALSE
251 /* These variables are filled in with the masks of registers used.
252 The object format code reads them and puts them in the appropriate
254 unsigned long mips_gprmask
;
255 unsigned long mips_cprmask
[4];
257 /* MIPS ISA we are using for this output file. */
258 static int file_mips_isa
= ISA_UNKNOWN
;
260 /* True if -mips16 was passed or implied by arguments passed on the
261 command line (e.g., by -march). */
262 static int file_ase_mips16
;
264 /* True if -mips3d was passed or implied by arguments passed on the
265 command line (e.g., by -march). */
266 static int file_ase_mips3d
;
268 /* True if -mdmx was passed or implied by arguments passed on the
269 command line (e.g., by -march). */
270 static int file_ase_mdmx
;
272 /* True if -mdsp was passed or implied by arguments passed on the
273 command line (e.g., by -march). */
274 static int file_ase_dsp
;
276 /* True if -mmt was passed or implied by arguments passed on the
277 command line (e.g., by -march). */
278 static int file_ase_mt
;
280 /* The argument of the -march= flag. The architecture we are assembling. */
281 static int file_mips_arch
= CPU_UNKNOWN
;
282 static const char *mips_arch_string
;
284 /* The argument of the -mtune= flag. The architecture for which we
286 static int mips_tune
= CPU_UNKNOWN
;
287 static const char *mips_tune_string
;
289 /* True when generating 32-bit code for a 64-bit processor. */
290 static int mips_32bitmode
= 0;
292 /* True if the given ABI requires 32-bit registers. */
293 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
295 /* Likewise 64-bit registers. */
296 #define ABI_NEEDS_64BIT_REGS(ABI) \
298 || (ABI) == N64_ABI \
301 /* Return true if ISA supports 64 bit gp register instructions. */
302 #define ISA_HAS_64BIT_REGS(ISA) ( \
304 || (ISA) == ISA_MIPS4 \
305 || (ISA) == ISA_MIPS5 \
306 || (ISA) == ISA_MIPS64 \
307 || (ISA) == ISA_MIPS64R2 \
310 /* Return true if ISA supports 64-bit right rotate (dror et al.)
312 #define ISA_HAS_DROR(ISA) ( \
313 (ISA) == ISA_MIPS64R2 \
316 /* Return true if ISA supports 32-bit right rotate (ror et al.)
318 #define ISA_HAS_ROR(ISA) ( \
319 (ISA) == ISA_MIPS32R2 \
320 || (ISA) == ISA_MIPS64R2 \
323 #define HAVE_32BIT_GPRS \
324 (mips_opts.gp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
326 #define HAVE_32BIT_FPRS \
327 (mips_opts.fp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
329 #define HAVE_64BIT_GPRS (! HAVE_32BIT_GPRS)
330 #define HAVE_64BIT_FPRS (! HAVE_32BIT_FPRS)
332 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
334 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
336 /* True if relocations are stored in-place. */
337 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
339 /* The ABI-derived address size. */
340 #define HAVE_64BIT_ADDRESSES \
341 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
342 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
344 /* The size of symbolic constants (i.e., expressions of the form
345 "SYMBOL" or "SYMBOL + OFFSET"). */
346 #define HAVE_32BIT_SYMBOLS \
347 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
348 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
350 /* Addresses are loaded in different ways, depending on the address size
351 in use. The n32 ABI Documentation also mandates the use of additions
352 with overflow checking, but existing implementations don't follow it. */
353 #define ADDRESS_ADD_INSN \
354 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
356 #define ADDRESS_ADDI_INSN \
357 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
359 #define ADDRESS_LOAD_INSN \
360 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
362 #define ADDRESS_STORE_INSN \
363 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
365 /* Return true if the given CPU supports the MIPS16 ASE. */
366 #define CPU_HAS_MIPS16(cpu) \
367 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
368 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
370 /* Return true if the given CPU supports the MIPS3D ASE. */
371 #define CPU_HAS_MIPS3D(cpu) ((cpu) == CPU_SB1 \
374 /* Return true if the given CPU supports the MDMX ASE. */
375 #define CPU_HAS_MDMX(cpu) (FALSE \
378 /* Return true if the given CPU supports the DSP ASE. */
379 #define CPU_HAS_DSP(cpu) (FALSE \
382 /* Return true if the given CPU supports the MT ASE. */
383 #define CPU_HAS_MT(cpu) (FALSE \
386 /* True if CPU has a dror instruction. */
387 #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
389 /* True if CPU has a ror instruction. */
390 #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
392 /* True if mflo and mfhi can be immediately followed by instructions
393 which write to the HI and LO registers.
395 According to MIPS specifications, MIPS ISAs I, II, and III need
396 (at least) two instructions between the reads of HI/LO and
397 instructions which write them, and later ISAs do not. Contradicting
398 the MIPS specifications, some MIPS IV processor user manuals (e.g.
399 the UM for the NEC Vr5000) document needing the instructions between
400 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
401 MIPS64 and later ISAs to have the interlocks, plus any specific
402 earlier-ISA CPUs for which CPU documentation declares that the
403 instructions are really interlocked. */
404 #define hilo_interlocks \
405 (mips_opts.isa == ISA_MIPS32 \
406 || mips_opts.isa == ISA_MIPS32R2 \
407 || mips_opts.isa == ISA_MIPS64 \
408 || mips_opts.isa == ISA_MIPS64R2 \
409 || mips_opts.arch == CPU_R4010 \
410 || mips_opts.arch == CPU_R10000 \
411 || mips_opts.arch == CPU_R12000 \
412 || mips_opts.arch == CPU_RM7000 \
413 || mips_opts.arch == CPU_VR5500 \
416 /* Whether the processor uses hardware interlocks to protect reads
417 from the GPRs after they are loaded from memory, and thus does not
418 require nops to be inserted. This applies to instructions marked
419 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
421 #define gpr_interlocks \
422 (mips_opts.isa != ISA_MIPS1 \
423 || mips_opts.arch == CPU_R3900)
425 /* Whether the processor uses hardware interlocks to avoid delays
426 required by coprocessor instructions, and thus does not require
427 nops to be inserted. This applies to instructions marked
428 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
429 between instructions marked INSN_WRITE_COND_CODE and ones marked
430 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
431 levels I, II, and III. */
432 /* Itbl support may require additional care here. */
433 #define cop_interlocks \
434 ((mips_opts.isa != ISA_MIPS1 \
435 && mips_opts.isa != ISA_MIPS2 \
436 && mips_opts.isa != ISA_MIPS3) \
437 || mips_opts.arch == CPU_R4300 \
440 /* Whether the processor uses hardware interlocks to protect reads
441 from coprocessor registers after they are loaded from memory, and
442 thus does not require nops to be inserted. This applies to
443 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
444 requires at MIPS ISA level I. */
445 #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
447 /* Is this a mfhi or mflo instruction? */
448 #define MF_HILO_INSN(PINFO) \
449 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
451 /* MIPS PIC level. */
453 enum mips_pic_level mips_pic
;
455 /* 1 if we should generate 32 bit offsets from the $gp register in
456 SVR4_PIC mode. Currently has no meaning in other modes. */
457 static int mips_big_got
= 0;
459 /* 1 if trap instructions should used for overflow rather than break
461 static int mips_trap
= 0;
463 /* 1 if double width floating point constants should not be constructed
464 by assembling two single width halves into two single width floating
465 point registers which just happen to alias the double width destination
466 register. On some architectures this aliasing can be disabled by a bit
467 in the status register, and the setting of this bit cannot be determined
468 automatically at assemble time. */
469 static int mips_disable_float_construction
;
471 /* Non-zero if any .set noreorder directives were used. */
473 static int mips_any_noreorder
;
475 /* Non-zero if nops should be inserted when the register referenced in
476 an mfhi/mflo instruction is read in the next two instructions. */
477 static int mips_7000_hilo_fix
;
479 /* The size of the small data section. */
480 static unsigned int g_switch_value
= 8;
481 /* Whether the -G option was used. */
482 static int g_switch_seen
= 0;
487 /* If we can determine in advance that GP optimization won't be
488 possible, we can skip the relaxation stuff that tries to produce
489 GP-relative references. This makes delay slot optimization work
492 This function can only provide a guess, but it seems to work for
493 gcc output. It needs to guess right for gcc, otherwise gcc
494 will put what it thinks is a GP-relative instruction in a branch
497 I don't know if a fix is needed for the SVR4_PIC mode. I've only
498 fixed it for the non-PIC mode. KR 95/04/07 */
499 static int nopic_need_relax (symbolS
*, int);
501 /* handle of the OPCODE hash table */
502 static struct hash_control
*op_hash
= NULL
;
504 /* The opcode hash table we use for the mips16. */
505 static struct hash_control
*mips16_op_hash
= NULL
;
507 /* This array holds the chars that always start a comment. If the
508 pre-processor is disabled, these aren't very useful */
509 const char comment_chars
[] = "#";
511 /* This array holds the chars that only start a comment at the beginning of
512 a line. If the line seems to have the form '# 123 filename'
513 .line and .file directives will appear in the pre-processed output */
514 /* Note that input_file.c hand checks for '#' at the beginning of the
515 first line of the input file. This is because the compiler outputs
516 #NO_APP at the beginning of its output. */
517 /* Also note that C style comments are always supported. */
518 const char line_comment_chars
[] = "#";
520 /* This array holds machine specific line separator characters. */
521 const char line_separator_chars
[] = ";";
523 /* Chars that can be used to separate mant from exp in floating point nums */
524 const char EXP_CHARS
[] = "eE";
526 /* Chars that mean this number is a floating point constant */
529 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
531 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
532 changed in read.c . Ideally it shouldn't have to know about it at all,
533 but nothing is ideal around here.
536 static char *insn_error
;
538 static int auto_align
= 1;
540 /* When outputting SVR4 PIC code, the assembler needs to know the
541 offset in the stack frame from which to restore the $gp register.
542 This is set by the .cprestore pseudo-op, and saved in this
544 static offsetT mips_cprestore_offset
= -1;
546 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
547 more optimizations, it can use a register value instead of a memory-saved
548 offset and even an other register than $gp as global pointer. */
549 static offsetT mips_cpreturn_offset
= -1;
550 static int mips_cpreturn_register
= -1;
551 static int mips_gp_register
= GP
;
552 static int mips_gprel_offset
= 0;
554 /* Whether mips_cprestore_offset has been set in the current function
555 (or whether it has already been warned about, if not). */
556 static int mips_cprestore_valid
= 0;
558 /* This is the register which holds the stack frame, as set by the
559 .frame pseudo-op. This is needed to implement .cprestore. */
560 static int mips_frame_reg
= SP
;
562 /* Whether mips_frame_reg has been set in the current function
563 (or whether it has already been warned about, if not). */
564 static int mips_frame_reg_valid
= 0;
566 /* To output NOP instructions correctly, we need to keep information
567 about the previous two instructions. */
569 /* Whether we are optimizing. The default value of 2 means to remove
570 unneeded NOPs and swap branch instructions when possible. A value
571 of 1 means to not swap branches. A value of 0 means to always
573 static int mips_optimize
= 2;
575 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
576 equivalent to seeing no -g option at all. */
577 static int mips_debug
= 0;
579 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
580 #define MAX_VR4130_NOPS 4
582 /* The maximum number of NOPs needed to fill delay slots. */
583 #define MAX_DELAY_NOPS 2
585 /* The maximum number of NOPs needed for any purpose. */
588 /* A list of previous instructions, with index 0 being the most recent.
589 We need to look back MAX_NOPS instructions when filling delay slots
590 or working around processor errata. We need to look back one
591 instruction further if we're thinking about using history[0] to
592 fill a branch delay slot. */
593 static struct mips_cl_insn history
[1 + MAX_NOPS
];
595 /* Nop instructions used by emit_nop. */
596 static struct mips_cl_insn nop_insn
, mips16_nop_insn
;
598 /* The appropriate nop for the current mode. */
599 #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
601 /* If this is set, it points to a frag holding nop instructions which
602 were inserted before the start of a noreorder section. If those
603 nops turn out to be unnecessary, the size of the frag can be
605 static fragS
*prev_nop_frag
;
607 /* The number of nop instructions we created in prev_nop_frag. */
608 static int prev_nop_frag_holds
;
610 /* The number of nop instructions that we know we need in
612 static int prev_nop_frag_required
;
614 /* The number of instructions we've seen since prev_nop_frag. */
615 static int prev_nop_frag_since
;
617 /* For ECOFF and ELF, relocations against symbols are done in two
618 parts, with a HI relocation and a LO relocation. Each relocation
619 has only 16 bits of space to store an addend. This means that in
620 order for the linker to handle carries correctly, it must be able
621 to locate both the HI and the LO relocation. This means that the
622 relocations must appear in order in the relocation table.
624 In order to implement this, we keep track of each unmatched HI
625 relocation. We then sort them so that they immediately precede the
626 corresponding LO relocation. */
631 struct mips_hi_fixup
*next
;
634 /* The section this fixup is in. */
638 /* The list of unmatched HI relocs. */
640 static struct mips_hi_fixup
*mips_hi_fixup_list
;
642 /* The frag containing the last explicit relocation operator.
643 Null if explicit relocations have not been used. */
645 static fragS
*prev_reloc_op_frag
;
647 /* Map normal MIPS register numbers to mips16 register numbers. */
649 #define X ILLEGAL_REG
650 static const int mips32_to_16_reg_map
[] =
652 X
, X
, 2, 3, 4, 5, 6, 7,
653 X
, X
, X
, X
, X
, X
, X
, X
,
654 0, 1, X
, X
, X
, X
, X
, X
,
655 X
, X
, X
, X
, X
, X
, X
, X
659 /* Map mips16 register numbers to normal MIPS register numbers. */
661 static const unsigned int mips16_to_32_reg_map
[] =
663 16, 17, 2, 3, 4, 5, 6, 7
666 /* Classifies the kind of instructions we're interested in when
667 implementing -mfix-vr4120. */
668 enum fix_vr4120_class
{
675 NUM_FIX_VR4120_CLASSES
678 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
679 there must be at least one other instruction between an instruction
680 of type X and an instruction of type Y. */
681 static unsigned int vr4120_conflicts
[NUM_FIX_VR4120_CLASSES
];
683 /* True if -mfix-vr4120 is in force. */
684 static int mips_fix_vr4120
;
686 /* ...likewise -mfix-vr4130. */
687 static int mips_fix_vr4130
;
689 /* We don't relax branches by default, since this causes us to expand
690 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
691 fail to compute the offset before expanding the macro to the most
692 efficient expansion. */
694 static int mips_relax_branch
;
696 /* The expansion of many macros depends on the type of symbol that
697 they refer to. For example, when generating position-dependent code,
698 a macro that refers to a symbol may have two different expansions,
699 one which uses GP-relative addresses and one which uses absolute
700 addresses. When generating SVR4-style PIC, a macro may have
701 different expansions for local and global symbols.
703 We handle these situations by generating both sequences and putting
704 them in variant frags. In position-dependent code, the first sequence
705 will be the GP-relative one and the second sequence will be the
706 absolute one. In SVR4 PIC, the first sequence will be for global
707 symbols and the second will be for local symbols.
709 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
710 SECOND are the lengths of the two sequences in bytes. These fields
711 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
712 the subtype has the following flags:
715 Set if it has been decided that we should use the second
716 sequence instead of the first.
719 Set in the first variant frag if the macro's second implementation
720 is longer than its first. This refers to the macro as a whole,
721 not an individual relaxation.
724 Set in the first variant frag if the macro appeared in a .set nomacro
725 block and if one alternative requires a warning but the other does not.
728 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
731 The frag's "opcode" points to the first fixup for relaxable code.
733 Relaxable macros are generated using a sequence such as:
735 relax_start (SYMBOL);
736 ... generate first expansion ...
738 ... generate second expansion ...
741 The code and fixups for the unwanted alternative are discarded
742 by md_convert_frag. */
743 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
745 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
746 #define RELAX_SECOND(X) ((X) & 0xff)
747 #define RELAX_USE_SECOND 0x10000
748 #define RELAX_SECOND_LONGER 0x20000
749 #define RELAX_NOMACRO 0x40000
750 #define RELAX_DELAY_SLOT 0x80000
752 /* Branch without likely bit. If label is out of range, we turn:
754 beq reg1, reg2, label
764 with the following opcode replacements:
771 bltzal <-> bgezal (with jal label instead of j label)
773 Even though keeping the delay slot instruction in the delay slot of
774 the branch would be more efficient, it would be very tricky to do
775 correctly, because we'd have to introduce a variable frag *after*
776 the delay slot instruction, and expand that instead. Let's do it
777 the easy way for now, even if the branch-not-taken case now costs
778 one additional instruction. Out-of-range branches are not supposed
779 to be common, anyway.
781 Branch likely. If label is out of range, we turn:
783 beql reg1, reg2, label
784 delay slot (annulled if branch not taken)
793 delay slot (executed only if branch taken)
796 It would be possible to generate a shorter sequence by losing the
797 likely bit, generating something like:
802 delay slot (executed only if branch taken)
814 bltzall -> bgezal (with jal label instead of j label)
815 bgezall -> bltzal (ditto)
818 but it's not clear that it would actually improve performance. */
819 #define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
822 | ((toofar) ? 1 : 0) \
824 | ((likely) ? 4 : 0) \
825 | ((uncond) ? 8 : 0)))
826 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
827 #define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
828 #define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
829 #define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
830 #define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
832 /* For mips16 code, we use an entirely different form of relaxation.
833 mips16 supports two versions of most instructions which take
834 immediate values: a small one which takes some small value, and a
835 larger one which takes a 16 bit value. Since branches also follow
836 this pattern, relaxing these values is required.
838 We can assemble both mips16 and normal MIPS code in a single
839 object. Therefore, we need to support this type of relaxation at
840 the same time that we support the relaxation described above. We
841 use the high bit of the subtype field to distinguish these cases.
843 The information we store for this type of relaxation is the
844 argument code found in the opcode file for this relocation, whether
845 the user explicitly requested a small or extended form, and whether
846 the relocation is in a jump or jal delay slot. That tells us the
847 size of the value, and how it should be stored. We also store
848 whether the fragment is considered to be extended or not. We also
849 store whether this is known to be a branch to a different section,
850 whether we have tried to relax this frag yet, and whether we have
851 ever extended a PC relative fragment because of a shift count. */
852 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
855 | ((small) ? 0x100 : 0) \
856 | ((ext) ? 0x200 : 0) \
857 | ((dslot) ? 0x400 : 0) \
858 | ((jal_dslot) ? 0x800 : 0))
859 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
860 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
861 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
862 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
863 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
864 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
865 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
866 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
867 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
868 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
869 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
870 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
872 /* Is the given value a sign-extended 32-bit value? */
873 #define IS_SEXT_32BIT_NUM(x) \
874 (((x) &~ (offsetT) 0x7fffffff) == 0 \
875 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
877 /* Is the given value a sign-extended 16-bit value? */
878 #define IS_SEXT_16BIT_NUM(x) \
879 (((x) &~ (offsetT) 0x7fff) == 0 \
880 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
882 /* Is the given value a zero-extended 32-bit value? Or a negated one? */
883 #define IS_ZEXT_32BIT_NUM(x) \
884 (((x) &~ (offsetT) 0xffffffff) == 0 \
885 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
887 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
888 VALUE << SHIFT. VALUE is evaluated exactly once. */
889 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
890 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
891 | (((VALUE) & (MASK)) << (SHIFT)))
893 /* Extract bits MASK << SHIFT from STRUCT and shift them right
895 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
896 (((STRUCT) >> (SHIFT)) & (MASK))
898 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
899 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
901 include/opcode/mips.h specifies operand fields using the macros
902 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
903 with "MIPS16OP" instead of "OP". */
904 #define INSERT_OPERAND(FIELD, INSN, VALUE) \
905 INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
906 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
907 INSERT_BITS ((INSN).insn_opcode, VALUE, \
908 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
910 /* Extract the operand given by FIELD from mips_cl_insn INSN. */
911 #define EXTRACT_OPERAND(FIELD, INSN) \
912 EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
913 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
914 EXTRACT_BITS ((INSN).insn_opcode, \
915 MIPS16OP_MASK_##FIELD, \
918 /* Global variables used when generating relaxable macros. See the
919 comment above RELAX_ENCODE for more details about how relaxation
922 /* 0 if we're not emitting a relaxable macro.
923 1 if we're emitting the first of the two relaxation alternatives.
924 2 if we're emitting the second alternative. */
927 /* The first relaxable fixup in the current frag. (In other words,
928 the first fixup that refers to relaxable code.) */
931 /* sizes[0] says how many bytes of the first alternative are stored in
932 the current frag. Likewise sizes[1] for the second alternative. */
933 unsigned int sizes
[2];
935 /* The symbol on which the choice of sequence depends. */
939 /* Global variables used to decide whether a macro needs a warning. */
941 /* True if the macro is in a branch delay slot. */
942 bfd_boolean delay_slot_p
;
944 /* For relaxable macros, sizes[0] is the length of the first alternative
945 in bytes and sizes[1] is the length of the second alternative.
946 For non-relaxable macros, both elements give the length of the
948 unsigned int sizes
[2];
950 /* The first variant frag for this macro. */
952 } mips_macro_warning
;
954 /* Prototypes for static functions. */
956 #define internalError() \
957 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
959 enum mips_regclass
{ MIPS_GR_REG
, MIPS_FP_REG
, MIPS16_REG
};
961 static void append_insn
962 (struct mips_cl_insn
*ip
, expressionS
*p
, bfd_reloc_code_real_type
*r
);
963 static void mips_no_prev_insn (void);
964 static void mips16_macro_build
965 (expressionS
*, const char *, const char *, va_list);
966 static void load_register (int, expressionS
*, int);
967 static void macro_start (void);
968 static void macro_end (void);
969 static void macro (struct mips_cl_insn
* ip
);
970 static void mips16_macro (struct mips_cl_insn
* ip
);
971 #ifdef LOSING_COMPILER
972 static void macro2 (struct mips_cl_insn
* ip
);
974 static void mips_ip (char *str
, struct mips_cl_insn
* ip
);
975 static void mips16_ip (char *str
, struct mips_cl_insn
* ip
);
976 static void mips16_immed
977 (char *, unsigned int, int, offsetT
, bfd_boolean
, bfd_boolean
, bfd_boolean
,
978 unsigned long *, bfd_boolean
*, unsigned short *);
979 static size_t my_getSmallExpression
980 (expressionS
*, bfd_reloc_code_real_type
*, char *);
981 static void my_getExpression (expressionS
*, char *);
982 static void s_align (int);
983 static void s_change_sec (int);
984 static void s_change_section (int);
985 static void s_cons (int);
986 static void s_float_cons (int);
987 static void s_mips_globl (int);
988 static void s_option (int);
989 static void s_mipsset (int);
990 static void s_abicalls (int);
991 static void s_cpload (int);
992 static void s_cpsetup (int);
993 static void s_cplocal (int);
994 static void s_cprestore (int);
995 static void s_cpreturn (int);
996 static void s_gpvalue (int);
997 static void s_gpword (int);
998 static void s_gpdword (int);
999 static void s_cpadd (int);
1000 static void s_insn (int);
1001 static void md_obj_begin (void);
1002 static void md_obj_end (void);
1003 static void s_mips_ent (int);
1004 static void s_mips_end (int);
1005 static void s_mips_frame (int);
1006 static void s_mips_mask (int reg_type
);
1007 static void s_mips_stab (int);
1008 static void s_mips_weakext (int);
1009 static void s_mips_file (int);
1010 static void s_mips_loc (int);
1011 static bfd_boolean
pic_need_relax (symbolS
*, asection
*);
1012 static int relaxed_branch_length (fragS
*, asection
*, int);
1013 static int validate_mips_insn (const struct mips_opcode
*);
1015 /* Table and functions used to map between CPU/ISA names, and
1016 ISA levels, and CPU numbers. */
1018 struct mips_cpu_info
1020 const char *name
; /* CPU or ISA name. */
1021 int is_isa
; /* Is this an ISA? (If 0, a CPU.) */
1022 int isa
; /* ISA level. */
1023 int cpu
; /* CPU number (default CPU if ISA). */
1026 static const struct mips_cpu_info
*mips_parse_cpu (const char *, const char *);
1027 static const struct mips_cpu_info
*mips_cpu_info_from_isa (int);
1028 static const struct mips_cpu_info
*mips_cpu_info_from_arch (int);
1032 The following pseudo-ops from the Kane and Heinrich MIPS book
1033 should be defined here, but are currently unsupported: .alias,
1034 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1036 The following pseudo-ops from the Kane and Heinrich MIPS book are
1037 specific to the type of debugging information being generated, and
1038 should be defined by the object format: .aent, .begin, .bend,
1039 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1042 The following pseudo-ops from the Kane and Heinrich MIPS book are
1043 not MIPS CPU specific, but are also not specific to the object file
1044 format. This file is probably the best place to define them, but
1045 they are not currently supported: .asm0, .endr, .lab, .repeat,
1048 static const pseudo_typeS mips_pseudo_table
[] =
1050 /* MIPS specific pseudo-ops. */
1051 {"option", s_option
, 0},
1052 {"set", s_mipsset
, 0},
1053 {"rdata", s_change_sec
, 'r'},
1054 {"sdata", s_change_sec
, 's'},
1055 {"livereg", s_ignore
, 0},
1056 {"abicalls", s_abicalls
, 0},
1057 {"cpload", s_cpload
, 0},
1058 {"cpsetup", s_cpsetup
, 0},
1059 {"cplocal", s_cplocal
, 0},
1060 {"cprestore", s_cprestore
, 0},
1061 {"cpreturn", s_cpreturn
, 0},
1062 {"gpvalue", s_gpvalue
, 0},
1063 {"gpword", s_gpword
, 0},
1064 {"gpdword", s_gpdword
, 0},
1065 {"cpadd", s_cpadd
, 0},
1066 {"insn", s_insn
, 0},
1068 /* Relatively generic pseudo-ops that happen to be used on MIPS
1070 {"asciiz", stringer
, 1},
1071 {"bss", s_change_sec
, 'b'},
1073 {"half", s_cons
, 1},
1074 {"dword", s_cons
, 3},
1075 {"weakext", s_mips_weakext
, 0},
1077 /* These pseudo-ops are defined in read.c, but must be overridden
1078 here for one reason or another. */
1079 {"align", s_align
, 0},
1080 {"byte", s_cons
, 0},
1081 {"data", s_change_sec
, 'd'},
1082 {"double", s_float_cons
, 'd'},
1083 {"float", s_float_cons
, 'f'},
1084 {"globl", s_mips_globl
, 0},
1085 {"global", s_mips_globl
, 0},
1086 {"hword", s_cons
, 1},
1088 {"long", s_cons
, 2},
1089 {"octa", s_cons
, 4},
1090 {"quad", s_cons
, 3},
1091 {"section", s_change_section
, 0},
1092 {"short", s_cons
, 1},
1093 {"single", s_float_cons
, 'f'},
1094 {"stabn", s_mips_stab
, 'n'},
1095 {"text", s_change_sec
, 't'},
1096 {"word", s_cons
, 2},
1098 { "extern", ecoff_directive_extern
, 0},
1103 static const pseudo_typeS mips_nonecoff_pseudo_table
[] =
1105 /* These pseudo-ops should be defined by the object file format.
1106 However, a.out doesn't support them, so we have versions here. */
1107 {"aent", s_mips_ent
, 1},
1108 {"bgnb", s_ignore
, 0},
1109 {"end", s_mips_end
, 0},
1110 {"endb", s_ignore
, 0},
1111 {"ent", s_mips_ent
, 0},
1112 {"file", s_mips_file
, 0},
1113 {"fmask", s_mips_mask
, 'F'},
1114 {"frame", s_mips_frame
, 0},
1115 {"loc", s_mips_loc
, 0},
1116 {"mask", s_mips_mask
, 'R'},
1117 {"verstamp", s_ignore
, 0},
1121 extern void pop_insert (const pseudo_typeS
*);
1124 mips_pop_insert (void)
1126 pop_insert (mips_pseudo_table
);
1127 if (! ECOFF_DEBUGGING
)
1128 pop_insert (mips_nonecoff_pseudo_table
);
1131 /* Symbols labelling the current insn. */
1133 struct insn_label_list
1135 struct insn_label_list
*next
;
1139 static struct insn_label_list
*insn_labels
;
1140 static struct insn_label_list
*free_insn_labels
;
1142 static void mips_clear_insn_labels (void);
1145 mips_clear_insn_labels (void)
1147 register struct insn_label_list
**pl
;
1149 for (pl
= &free_insn_labels
; *pl
!= NULL
; pl
= &(*pl
)->next
)
1155 static char *expr_end
;
1157 /* Expressions which appear in instructions. These are set by
1160 static expressionS imm_expr
;
1161 static expressionS imm2_expr
;
1162 static expressionS offset_expr
;
1164 /* Relocs associated with imm_expr and offset_expr. */
1166 static bfd_reloc_code_real_type imm_reloc
[3]
1167 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
1168 static bfd_reloc_code_real_type offset_reloc
[3]
1169 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
1171 /* These are set by mips16_ip if an explicit extension is used. */
1173 static bfd_boolean mips16_small
, mips16_ext
;
1176 /* The pdr segment for per procedure frame/regmask info. Not used for
1179 static segT pdr_seg
;
1182 /* The default target format to use. */
1185 mips_target_format (void)
1187 switch (OUTPUT_FLAVOR
)
1189 case bfd_target_ecoff_flavour
:
1190 return target_big_endian
? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT
;
1191 case bfd_target_coff_flavour
:
1193 case bfd_target_elf_flavour
:
1195 /* This is traditional mips. */
1196 return (target_big_endian
1197 ? (HAVE_64BIT_OBJECTS
1198 ? "elf64-tradbigmips"
1200 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
1201 : (HAVE_64BIT_OBJECTS
1202 ? "elf64-tradlittlemips"
1204 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
1206 return (target_big_endian
1207 ? (HAVE_64BIT_OBJECTS
1210 ? "elf32-nbigmips" : "elf32-bigmips"))
1211 : (HAVE_64BIT_OBJECTS
1212 ? "elf64-littlemips"
1214 ? "elf32-nlittlemips" : "elf32-littlemips")));
1222 /* Return the length of instruction INSN. */
1224 static inline unsigned int
1225 insn_length (const struct mips_cl_insn
*insn
)
1227 if (!mips_opts
.mips16
)
1229 return insn
->mips16_absolute_jump_p
|| insn
->use_extend
? 4 : 2;
1232 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1235 create_insn (struct mips_cl_insn
*insn
, const struct mips_opcode
*mo
)
1240 insn
->use_extend
= FALSE
;
1242 insn
->insn_opcode
= mo
->match
;
1245 for (i
= 0; i
< ARRAY_SIZE (insn
->fixp
); i
++)
1246 insn
->fixp
[i
] = NULL
;
1247 insn
->fixed_p
= (mips_opts
.noreorder
> 0);
1248 insn
->noreorder_p
= (mips_opts
.noreorder
> 0);
1249 insn
->mips16_absolute_jump_p
= 0;
1252 /* Install INSN at the location specified by its "frag" and "where" fields. */
1255 install_insn (const struct mips_cl_insn
*insn
)
1257 char *f
= insn
->frag
->fr_literal
+ insn
->where
;
1258 if (!mips_opts
.mips16
)
1259 md_number_to_chars (f
, insn
->insn_opcode
, 4);
1260 else if (insn
->mips16_absolute_jump_p
)
1262 md_number_to_chars (f
, insn
->insn_opcode
>> 16, 2);
1263 md_number_to_chars (f
+ 2, insn
->insn_opcode
& 0xffff, 2);
1267 if (insn
->use_extend
)
1269 md_number_to_chars (f
, 0xf000 | insn
->extend
, 2);
1272 md_number_to_chars (f
, insn
->insn_opcode
, 2);
1276 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1277 and install the opcode in the new location. */
1280 move_insn (struct mips_cl_insn
*insn
, fragS
*frag
, long where
)
1285 insn
->where
= where
;
1286 for (i
= 0; i
< ARRAY_SIZE (insn
->fixp
); i
++)
1287 if (insn
->fixp
[i
] != NULL
)
1289 insn
->fixp
[i
]->fx_frag
= frag
;
1290 insn
->fixp
[i
]->fx_where
= where
;
1292 install_insn (insn
);
1295 /* Add INSN to the end of the output. */
1298 add_fixed_insn (struct mips_cl_insn
*insn
)
1300 char *f
= frag_more (insn_length (insn
));
1301 move_insn (insn
, frag_now
, f
- frag_now
->fr_literal
);
1304 /* Start a variant frag and move INSN to the start of the variant part,
1305 marking it as fixed. The other arguments are as for frag_var. */
1308 add_relaxed_insn (struct mips_cl_insn
*insn
, int max_chars
, int var
,
1309 relax_substateT subtype
, symbolS
*symbol
, offsetT offset
)
1311 frag_grow (max_chars
);
1312 move_insn (insn
, frag_now
, frag_more (0) - frag_now
->fr_literal
);
1314 frag_var (rs_machine_dependent
, max_chars
, var
,
1315 subtype
, symbol
, offset
, NULL
);
1318 /* Insert N copies of INSN into the history buffer, starting at
1319 position FIRST. Neither FIRST nor N need to be clipped. */
1322 insert_into_history (unsigned int first
, unsigned int n
,
1323 const struct mips_cl_insn
*insn
)
1325 if (mips_relax
.sequence
!= 2)
1329 for (i
= ARRAY_SIZE (history
); i
-- > first
;)
1331 history
[i
] = history
[i
- n
];
1337 /* Emit a nop instruction, recording it in the history buffer. */
1342 add_fixed_insn (NOP_INSN
);
1343 insert_into_history (0, 1, NOP_INSN
);
1346 /* Initialize vr4120_conflicts. There is a bit of duplication here:
1347 the idea is to make it obvious at a glance that each errata is
1351 init_vr4120_conflicts (void)
1353 #define CONFLICT(FIRST, SECOND) \
1354 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1356 /* Errata 21 - [D]DIV[U] after [D]MACC */
1357 CONFLICT (MACC
, DIV
);
1358 CONFLICT (DMACC
, DIV
);
1360 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1361 CONFLICT (DMULT
, DMULT
);
1362 CONFLICT (DMULT
, DMACC
);
1363 CONFLICT (DMACC
, DMULT
);
1364 CONFLICT (DMACC
, DMACC
);
1366 /* Errata 24 - MT{LO,HI} after [D]MACC */
1367 CONFLICT (MACC
, MTHILO
);
1368 CONFLICT (DMACC
, MTHILO
);
1370 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1371 instruction is executed immediately after a MACC or DMACC
1372 instruction, the result of [either instruction] is incorrect." */
1373 CONFLICT (MACC
, MULT
);
1374 CONFLICT (MACC
, DMULT
);
1375 CONFLICT (DMACC
, MULT
);
1376 CONFLICT (DMACC
, DMULT
);
1378 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1379 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1380 DDIV or DDIVU instruction, the result of the MACC or
1381 DMACC instruction is incorrect.". */
1382 CONFLICT (DMULT
, MACC
);
1383 CONFLICT (DMULT
, DMACC
);
1384 CONFLICT (DIV
, MACC
);
1385 CONFLICT (DIV
, DMACC
);
1390 /* This function is called once, at assembler startup time. It should
1391 set up all the tables, etc. that the MD part of the assembler will need. */
1396 register const char *retval
= NULL
;
1400 if (! bfd_set_arch_mach (stdoutput
, bfd_arch_mips
, file_mips_arch
))
1401 as_warn (_("Could not set architecture and machine"));
1403 op_hash
= hash_new ();
1405 for (i
= 0; i
< NUMOPCODES
;)
1407 const char *name
= mips_opcodes
[i
].name
;
1409 retval
= hash_insert (op_hash
, name
, (void *) &mips_opcodes
[i
]);
1412 fprintf (stderr
, _("internal error: can't hash `%s': %s\n"),
1413 mips_opcodes
[i
].name
, retval
);
1414 /* Probably a memory allocation problem? Give up now. */
1415 as_fatal (_("Broken assembler. No assembly attempted."));
1419 if (mips_opcodes
[i
].pinfo
!= INSN_MACRO
)
1421 if (!validate_mips_insn (&mips_opcodes
[i
]))
1423 if (nop_insn
.insn_mo
== NULL
&& strcmp (name
, "nop") == 0)
1425 create_insn (&nop_insn
, mips_opcodes
+ i
);
1426 nop_insn
.fixed_p
= 1;
1431 while ((i
< NUMOPCODES
) && !strcmp (mips_opcodes
[i
].name
, name
));
1434 mips16_op_hash
= hash_new ();
1437 while (i
< bfd_mips16_num_opcodes
)
1439 const char *name
= mips16_opcodes
[i
].name
;
1441 retval
= hash_insert (mips16_op_hash
, name
, (void *) &mips16_opcodes
[i
]);
1443 as_fatal (_("internal: can't hash `%s': %s"),
1444 mips16_opcodes
[i
].name
, retval
);
1447 if (mips16_opcodes
[i
].pinfo
!= INSN_MACRO
1448 && ((mips16_opcodes
[i
].match
& mips16_opcodes
[i
].mask
)
1449 != mips16_opcodes
[i
].match
))
1451 fprintf (stderr
, _("internal error: bad mips16 opcode: %s %s\n"),
1452 mips16_opcodes
[i
].name
, mips16_opcodes
[i
].args
);
1455 if (mips16_nop_insn
.insn_mo
== NULL
&& strcmp (name
, "nop") == 0)
1457 create_insn (&mips16_nop_insn
, mips16_opcodes
+ i
);
1458 mips16_nop_insn
.fixed_p
= 1;
1462 while (i
< bfd_mips16_num_opcodes
1463 && strcmp (mips16_opcodes
[i
].name
, name
) == 0);
1467 as_fatal (_("Broken assembler. No assembly attempted."));
1469 /* We add all the general register names to the symbol table. This
1470 helps us detect invalid uses of them. */
1471 for (i
= 0; i
< 32; i
++)
1475 sprintf (buf
, "$%d", i
);
1476 symbol_table_insert (symbol_new (buf
, reg_section
, i
,
1477 &zero_address_frag
));
1479 symbol_table_insert (symbol_new ("$ra", reg_section
, RA
,
1480 &zero_address_frag
));
1481 symbol_table_insert (symbol_new ("$fp", reg_section
, FP
,
1482 &zero_address_frag
));
1483 symbol_table_insert (symbol_new ("$sp", reg_section
, SP
,
1484 &zero_address_frag
));
1485 symbol_table_insert (symbol_new ("$gp", reg_section
, GP
,
1486 &zero_address_frag
));
1487 symbol_table_insert (symbol_new ("$at", reg_section
, AT
,
1488 &zero_address_frag
));
1489 symbol_table_insert (symbol_new ("$kt0", reg_section
, KT0
,
1490 &zero_address_frag
));
1491 symbol_table_insert (symbol_new ("$kt1", reg_section
, KT1
,
1492 &zero_address_frag
));
1493 symbol_table_insert (symbol_new ("$zero", reg_section
, ZERO
,
1494 &zero_address_frag
));
1495 symbol_table_insert (symbol_new ("$pc", reg_section
, -1,
1496 &zero_address_frag
));
1498 /* If we don't add these register names to the symbol table, they
1499 may end up being added as regular symbols by operand(), and then
1500 make it to the object file as undefined in case they're not
1501 regarded as local symbols. They're local in o32, since `$' is a
1502 local symbol prefix, but not in n32 or n64. */
1503 for (i
= 0; i
< 8; i
++)
1507 sprintf (buf
, "$fcc%i", i
);
1508 symbol_table_insert (symbol_new (buf
, reg_section
, -1,
1509 &zero_address_frag
));
1512 mips_no_prev_insn ();
1515 mips_cprmask
[0] = 0;
1516 mips_cprmask
[1] = 0;
1517 mips_cprmask
[2] = 0;
1518 mips_cprmask
[3] = 0;
1520 /* set the default alignment for the text section (2**2) */
1521 record_alignment (text_section
, 2);
1523 bfd_set_gp_size (stdoutput
, g_switch_value
);
1525 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
)
1527 /* On a native system, sections must be aligned to 16 byte
1528 boundaries. When configured for an embedded ELF target, we
1530 if (strcmp (TARGET_OS
, "elf") != 0)
1532 (void) bfd_set_section_alignment (stdoutput
, text_section
, 4);
1533 (void) bfd_set_section_alignment (stdoutput
, data_section
, 4);
1534 (void) bfd_set_section_alignment (stdoutput
, bss_section
, 4);
1537 /* Create a .reginfo section for register masks and a .mdebug
1538 section for debugging information. */
1546 subseg
= now_subseg
;
1548 /* The ABI says this section should be loaded so that the
1549 running program can access it. However, we don't load it
1550 if we are configured for an embedded target */
1551 flags
= SEC_READONLY
| SEC_DATA
;
1552 if (strcmp (TARGET_OS
, "elf") != 0)
1553 flags
|= SEC_ALLOC
| SEC_LOAD
;
1555 if (mips_abi
!= N64_ABI
)
1557 sec
= subseg_new (".reginfo", (subsegT
) 0);
1559 bfd_set_section_flags (stdoutput
, sec
, flags
);
1560 bfd_set_section_alignment (stdoutput
, sec
, HAVE_NEWABI
? 3 : 2);
1563 mips_regmask_frag
= frag_more (sizeof (Elf32_External_RegInfo
));
1568 /* The 64-bit ABI uses a .MIPS.options section rather than
1569 .reginfo section. */
1570 sec
= subseg_new (".MIPS.options", (subsegT
) 0);
1571 bfd_set_section_flags (stdoutput
, sec
, flags
);
1572 bfd_set_section_alignment (stdoutput
, sec
, 3);
1575 /* Set up the option header. */
1577 Elf_Internal_Options opthdr
;
1580 opthdr
.kind
= ODK_REGINFO
;
1581 opthdr
.size
= (sizeof (Elf_External_Options
)
1582 + sizeof (Elf64_External_RegInfo
));
1585 f
= frag_more (sizeof (Elf_External_Options
));
1586 bfd_mips_elf_swap_options_out (stdoutput
, &opthdr
,
1587 (Elf_External_Options
*) f
);
1589 mips_regmask_frag
= frag_more (sizeof (Elf64_External_RegInfo
));
1594 if (ECOFF_DEBUGGING
)
1596 sec
= subseg_new (".mdebug", (subsegT
) 0);
1597 (void) bfd_set_section_flags (stdoutput
, sec
,
1598 SEC_HAS_CONTENTS
| SEC_READONLY
);
1599 (void) bfd_set_section_alignment (stdoutput
, sec
, 2);
1602 else if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
&& mips_flag_pdr
)
1604 pdr_seg
= subseg_new (".pdr", (subsegT
) 0);
1605 (void) bfd_set_section_flags (stdoutput
, pdr_seg
,
1606 SEC_READONLY
| SEC_RELOC
1608 (void) bfd_set_section_alignment (stdoutput
, pdr_seg
, 2);
1612 subseg_set (seg
, subseg
);
1616 if (! ECOFF_DEBUGGING
)
1619 if (mips_fix_vr4120
)
1620 init_vr4120_conflicts ();
1626 if (! ECOFF_DEBUGGING
)
1631 md_assemble (char *str
)
1633 struct mips_cl_insn insn
;
1634 bfd_reloc_code_real_type unused_reloc
[3]
1635 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
1637 imm_expr
.X_op
= O_absent
;
1638 imm2_expr
.X_op
= O_absent
;
1639 offset_expr
.X_op
= O_absent
;
1640 imm_reloc
[0] = BFD_RELOC_UNUSED
;
1641 imm_reloc
[1] = BFD_RELOC_UNUSED
;
1642 imm_reloc
[2] = BFD_RELOC_UNUSED
;
1643 offset_reloc
[0] = BFD_RELOC_UNUSED
;
1644 offset_reloc
[1] = BFD_RELOC_UNUSED
;
1645 offset_reloc
[2] = BFD_RELOC_UNUSED
;
1647 if (mips_opts
.mips16
)
1648 mips16_ip (str
, &insn
);
1651 mips_ip (str
, &insn
);
1652 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
1653 str
, insn
.insn_opcode
));
1658 as_bad ("%s `%s'", insn_error
, str
);
1662 if (insn
.insn_mo
->pinfo
== INSN_MACRO
)
1665 if (mips_opts
.mips16
)
1666 mips16_macro (&insn
);
1673 if (imm_expr
.X_op
!= O_absent
)
1674 append_insn (&insn
, &imm_expr
, imm_reloc
);
1675 else if (offset_expr
.X_op
!= O_absent
)
1676 append_insn (&insn
, &offset_expr
, offset_reloc
);
1678 append_insn (&insn
, NULL
, unused_reloc
);
1682 /* Return true if the given relocation might need a matching %lo().
1683 Note that R_MIPS_GOT16 relocations only need a matching %lo() when
1684 applied to local symbols. */
1686 static inline bfd_boolean
1687 reloc_needs_lo_p (bfd_reloc_code_real_type reloc
)
1689 return (HAVE_IN_PLACE_ADDENDS
1690 && (reloc
== BFD_RELOC_HI16_S
1691 || reloc
== BFD_RELOC_MIPS_GOT16
1692 || reloc
== BFD_RELOC_MIPS16_HI16_S
));
1695 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
1698 static inline bfd_boolean
1699 fixup_has_matching_lo_p (fixS
*fixp
)
1701 return (fixp
->fx_next
!= NULL
1702 && (fixp
->fx_next
->fx_r_type
== BFD_RELOC_LO16
1703 || fixp
->fx_next
->fx_r_type
== BFD_RELOC_MIPS16_LO16
)
1704 && fixp
->fx_addsy
== fixp
->fx_next
->fx_addsy
1705 && fixp
->fx_offset
== fixp
->fx_next
->fx_offset
);
1708 /* See whether instruction IP reads register REG. CLASS is the type
1712 insn_uses_reg (const struct mips_cl_insn
*ip
, unsigned int reg
,
1713 enum mips_regclass
class)
1715 if (class == MIPS16_REG
)
1717 assert (mips_opts
.mips16
);
1718 reg
= mips16_to_32_reg_map
[reg
];
1719 class = MIPS_GR_REG
;
1722 /* Don't report on general register ZERO, since it never changes. */
1723 if (class == MIPS_GR_REG
&& reg
== ZERO
)
1726 if (class == MIPS_FP_REG
)
1728 assert (! mips_opts
.mips16
);
1729 /* If we are called with either $f0 or $f1, we must check $f0.
1730 This is not optimal, because it will introduce an unnecessary
1731 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
1732 need to distinguish reading both $f0 and $f1 or just one of
1733 them. Note that we don't have to check the other way,
1734 because there is no instruction that sets both $f0 and $f1
1735 and requires a delay. */
1736 if ((ip
->insn_mo
->pinfo
& INSN_READ_FPR_S
)
1737 && ((EXTRACT_OPERAND (FS
, *ip
) & ~(unsigned) 1)
1738 == (reg
&~ (unsigned) 1)))
1740 if ((ip
->insn_mo
->pinfo
& INSN_READ_FPR_T
)
1741 && ((EXTRACT_OPERAND (FT
, *ip
) & ~(unsigned) 1)
1742 == (reg
&~ (unsigned) 1)))
1745 else if (! mips_opts
.mips16
)
1747 if ((ip
->insn_mo
->pinfo
& INSN_READ_GPR_S
)
1748 && EXTRACT_OPERAND (RS
, *ip
) == reg
)
1750 if ((ip
->insn_mo
->pinfo
& INSN_READ_GPR_T
)
1751 && EXTRACT_OPERAND (RT
, *ip
) == reg
)
1756 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_X
)
1757 && mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (RX
, *ip
)] == reg
)
1759 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_Y
)
1760 && mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (RY
, *ip
)] == reg
)
1762 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_Z
)
1763 && (mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (MOVE32Z
, *ip
)]
1766 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_T
) && reg
== TREG
)
1768 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_SP
) && reg
== SP
)
1770 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_31
) && reg
== RA
)
1772 if ((ip
->insn_mo
->pinfo
& MIPS16_INSN_READ_GPR_X
)
1773 && MIPS16_EXTRACT_OPERAND (REGR32
, *ip
) == reg
)
1780 /* This function returns true if modifying a register requires a
1784 reg_needs_delay (unsigned int reg
)
1786 unsigned long prev_pinfo
;
1788 prev_pinfo
= history
[0].insn_mo
->pinfo
;
1789 if (! mips_opts
.noreorder
1790 && (((prev_pinfo
& INSN_LOAD_MEMORY_DELAY
)
1791 && ! gpr_interlocks
)
1792 || ((prev_pinfo
& INSN_LOAD_COPROC_DELAY
)
1793 && ! cop_interlocks
)))
1795 /* A load from a coprocessor or from memory. All load delays
1796 delay the use of general register rt for one instruction. */
1797 /* Itbl support may require additional care here. */
1798 know (prev_pinfo
& INSN_WRITE_GPR_T
);
1799 if (reg
== EXTRACT_OPERAND (RT
, history
[0]))
1806 /* Move all labels in insn_labels to the current insertion point. */
1809 mips_move_labels (void)
1811 struct insn_label_list
*l
;
1814 for (l
= insn_labels
; l
!= NULL
; l
= l
->next
)
1816 assert (S_GET_SEGMENT (l
->label
) == now_seg
);
1817 symbol_set_frag (l
->label
, frag_now
);
1818 val
= (valueT
) frag_now_fix ();
1819 /* mips16 text labels are stored as odd. */
1820 if (mips_opts
.mips16
)
1822 S_SET_VALUE (l
->label
, val
);
1826 /* Mark instruction labels in mips16 mode. This permits the linker to
1827 handle them specially, such as generating jalx instructions when
1828 needed. We also make them odd for the duration of the assembly, in
1829 order to generate the right sort of code. We will make them even
1830 in the adjust_symtab routine, while leaving them marked. This is
1831 convenient for the debugger and the disassembler. The linker knows
1832 to make them odd again. */
1835 mips16_mark_labels (void)
1837 if (mips_opts
.mips16
)
1839 struct insn_label_list
*l
;
1842 for (l
= insn_labels
; l
!= NULL
; l
= l
->next
)
1845 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
)
1846 S_SET_OTHER (l
->label
, STO_MIPS16
);
1848 val
= S_GET_VALUE (l
->label
);
1850 S_SET_VALUE (l
->label
, val
+ 1);
1855 /* End the current frag. Make it a variant frag and record the
1859 relax_close_frag (void)
1861 mips_macro_warning
.first_frag
= frag_now
;
1862 frag_var (rs_machine_dependent
, 0, 0,
1863 RELAX_ENCODE (mips_relax
.sizes
[0], mips_relax
.sizes
[1]),
1864 mips_relax
.symbol
, 0, (char *) mips_relax
.first_fixup
);
1866 memset (&mips_relax
.sizes
, 0, sizeof (mips_relax
.sizes
));
1867 mips_relax
.first_fixup
= 0;
1870 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
1871 See the comment above RELAX_ENCODE for more details. */
1874 relax_start (symbolS
*symbol
)
1876 assert (mips_relax
.sequence
== 0);
1877 mips_relax
.sequence
= 1;
1878 mips_relax
.symbol
= symbol
;
1881 /* Start generating the second version of a relaxable sequence.
1882 See the comment above RELAX_ENCODE for more details. */
1887 assert (mips_relax
.sequence
== 1);
1888 mips_relax
.sequence
= 2;
1891 /* End the current relaxable sequence. */
1896 assert (mips_relax
.sequence
== 2);
1897 relax_close_frag ();
1898 mips_relax
.sequence
= 0;
1901 /* Classify an instruction according to the FIX_VR4120_* enumeration.
1902 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
1903 by VR4120 errata. */
1906 classify_vr4120_insn (const char *name
)
1908 if (strncmp (name
, "macc", 4) == 0)
1909 return FIX_VR4120_MACC
;
1910 if (strncmp (name
, "dmacc", 5) == 0)
1911 return FIX_VR4120_DMACC
;
1912 if (strncmp (name
, "mult", 4) == 0)
1913 return FIX_VR4120_MULT
;
1914 if (strncmp (name
, "dmult", 5) == 0)
1915 return FIX_VR4120_DMULT
;
1916 if (strstr (name
, "div"))
1917 return FIX_VR4120_DIV
;
1918 if (strcmp (name
, "mtlo") == 0 || strcmp (name
, "mthi") == 0)
1919 return FIX_VR4120_MTHILO
;
1920 return NUM_FIX_VR4120_CLASSES
;
1923 /* Return the number of instructions that must separate INSN1 and INSN2,
1924 where INSN1 is the earlier instruction. Return the worst-case value
1925 for any INSN2 if INSN2 is null. */
1928 insns_between (const struct mips_cl_insn
*insn1
,
1929 const struct mips_cl_insn
*insn2
)
1931 unsigned long pinfo1
, pinfo2
;
1933 /* This function needs to know which pinfo flags are set for INSN2
1934 and which registers INSN2 uses. The former is stored in PINFO2 and
1935 the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2
1936 will have every flag set and INSN2_USES_REG will always return true. */
1937 pinfo1
= insn1
->insn_mo
->pinfo
;
1938 pinfo2
= insn2
? insn2
->insn_mo
->pinfo
: ~0U;
1940 #define INSN2_USES_REG(REG, CLASS) \
1941 (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
1943 /* For most targets, write-after-read dependencies on the HI and LO
1944 registers must be separated by at least two instructions. */
1945 if (!hilo_interlocks
)
1947 if ((pinfo1
& INSN_READ_LO
) && (pinfo2
& INSN_WRITE_LO
))
1949 if ((pinfo1
& INSN_READ_HI
) && (pinfo2
& INSN_WRITE_HI
))
1953 /* If we're working around r7000 errata, there must be two instructions
1954 between an mfhi or mflo and any instruction that uses the result. */
1955 if (mips_7000_hilo_fix
1956 && MF_HILO_INSN (pinfo1
)
1957 && INSN2_USES_REG (EXTRACT_OPERAND (RD
, *insn1
), MIPS_GR_REG
))
1960 /* If working around VR4120 errata, check for combinations that need
1961 a single intervening instruction. */
1962 if (mips_fix_vr4120
)
1964 unsigned int class1
, class2
;
1966 class1
= classify_vr4120_insn (insn1
->insn_mo
->name
);
1967 if (class1
!= NUM_FIX_VR4120_CLASSES
&& vr4120_conflicts
[class1
] != 0)
1971 class2
= classify_vr4120_insn (insn2
->insn_mo
->name
);
1972 if (vr4120_conflicts
[class1
] & (1 << class2
))
1977 if (!mips_opts
.mips16
)
1979 /* Check for GPR or coprocessor load delays. All such delays
1980 are on the RT register. */
1981 /* Itbl support may require additional care here. */
1982 if ((!gpr_interlocks
&& (pinfo1
& INSN_LOAD_MEMORY_DELAY
))
1983 || (!cop_interlocks
&& (pinfo1
& INSN_LOAD_COPROC_DELAY
)))
1985 know (pinfo1
& INSN_WRITE_GPR_T
);
1986 if (INSN2_USES_REG (EXTRACT_OPERAND (RT
, *insn1
), MIPS_GR_REG
))
1990 /* Check for generic coprocessor hazards.
1992 This case is not handled very well. There is no special
1993 knowledge of CP0 handling, and the coprocessors other than
1994 the floating point unit are not distinguished at all. */
1995 /* Itbl support may require additional care here. FIXME!
1996 Need to modify this to include knowledge about
1997 user specified delays! */
1998 else if ((!cop_interlocks
&& (pinfo1
& INSN_COPROC_MOVE_DELAY
))
1999 || (!cop_mem_interlocks
&& (pinfo1
& INSN_COPROC_MEMORY_DELAY
)))
2001 /* Handle cases where INSN1 writes to a known general coprocessor
2002 register. There must be a one instruction delay before INSN2
2003 if INSN2 reads that register, otherwise no delay is needed. */
2004 if (pinfo1
& INSN_WRITE_FPR_T
)
2006 if (INSN2_USES_REG (EXTRACT_OPERAND (FT
, *insn1
), MIPS_FP_REG
))
2009 else if (pinfo1
& INSN_WRITE_FPR_S
)
2011 if (INSN2_USES_REG (EXTRACT_OPERAND (FS
, *insn1
), MIPS_FP_REG
))
2016 /* Read-after-write dependencies on the control registers
2017 require a two-instruction gap. */
2018 if ((pinfo1
& INSN_WRITE_COND_CODE
)
2019 && (pinfo2
& INSN_READ_COND_CODE
))
2022 /* We don't know exactly what INSN1 does. If INSN2 is
2023 also a coprocessor instruction, assume there must be
2024 a one instruction gap. */
2025 if (pinfo2
& INSN_COP
)
2030 /* Check for read-after-write dependencies on the coprocessor
2031 control registers in cases where INSN1 does not need a general
2032 coprocessor delay. This means that INSN1 is a floating point
2033 comparison instruction. */
2034 /* Itbl support may require additional care here. */
2035 else if (!cop_interlocks
2036 && (pinfo1
& INSN_WRITE_COND_CODE
)
2037 && (pinfo2
& INSN_READ_COND_CODE
))
2041 #undef INSN2_USES_REG
2046 /* Return the number of nops that would be needed to work around the
2047 VR4130 mflo/mfhi errata if instruction INSN immediately followed
2048 the MAX_VR4130_NOPS instructions described by HISTORY. */
2051 nops_for_vr4130 (const struct mips_cl_insn
*history
,
2052 const struct mips_cl_insn
*insn
)
2056 /* Check if the instruction writes to HI or LO. MTHI and MTLO
2057 are not affected by the errata. */
2059 && ((insn
->insn_mo
->pinfo
& (INSN_WRITE_HI
| INSN_WRITE_LO
)) == 0
2060 || strcmp (insn
->insn_mo
->name
, "mtlo") == 0
2061 || strcmp (insn
->insn_mo
->name
, "mthi") == 0))
2064 /* Search for the first MFLO or MFHI. */
2065 for (i
= 0; i
< MAX_VR4130_NOPS
; i
++)
2066 if (!history
[i
].noreorder_p
&& MF_HILO_INSN (history
[i
].insn_mo
->pinfo
))
2068 /* Extract the destination register. */
2069 if (mips_opts
.mips16
)
2070 reg
= mips16_to_32_reg_map
[MIPS16_EXTRACT_OPERAND (RX
, history
[i
])];
2072 reg
= EXTRACT_OPERAND (RD
, history
[i
]);
2074 /* No nops are needed if INSN reads that register. */
2075 if (insn
!= NULL
&& insn_uses_reg (insn
, reg
, MIPS_GR_REG
))
2078 /* ...or if any of the intervening instructions do. */
2079 for (j
= 0; j
< i
; j
++)
2080 if (insn_uses_reg (&history
[j
], reg
, MIPS_GR_REG
))
2083 return MAX_VR4130_NOPS
- i
;
2088 /* Return the number of nops that would be needed if instruction INSN
2089 immediately followed the MAX_NOPS instructions given by HISTORY,
2090 where HISTORY[0] is the most recent instruction. If INSN is null,
2091 return the worse-case number of nops for any instruction. */
2094 nops_for_insn (const struct mips_cl_insn
*history
,
2095 const struct mips_cl_insn
*insn
)
2097 int i
, nops
, tmp_nops
;
2100 for (i
= 0; i
< MAX_DELAY_NOPS
; i
++)
2101 if (!history
[i
].noreorder_p
)
2103 tmp_nops
= insns_between (history
+ i
, insn
) - i
;
2104 if (tmp_nops
> nops
)
2108 if (mips_fix_vr4130
)
2110 tmp_nops
= nops_for_vr4130 (history
, insn
);
2111 if (tmp_nops
> nops
)
2118 /* The variable arguments provide NUM_INSNS extra instructions that
2119 might be added to HISTORY. Return the largest number of nops that
2120 would be needed after the extended sequence. */
2123 nops_for_sequence (int num_insns
, const struct mips_cl_insn
*history
, ...)
2126 struct mips_cl_insn buffer
[MAX_NOPS
];
2127 struct mips_cl_insn
*cursor
;
2130 va_start (args
, history
);
2131 cursor
= buffer
+ num_insns
;
2132 memcpy (cursor
, history
, (MAX_NOPS
- num_insns
) * sizeof (*cursor
));
2133 while (cursor
> buffer
)
2134 *--cursor
= *va_arg (args
, const struct mips_cl_insn
*);
2136 nops
= nops_for_insn (buffer
, NULL
);
2141 /* Like nops_for_insn, but if INSN is a branch, take into account the
2142 worst-case delay for the branch target. */
2145 nops_for_insn_or_target (const struct mips_cl_insn
*history
,
2146 const struct mips_cl_insn
*insn
)
2150 nops
= nops_for_insn (history
, insn
);
2151 if (insn
->insn_mo
->pinfo
& (INSN_UNCOND_BRANCH_DELAY
2152 | INSN_COND_BRANCH_DELAY
2153 | INSN_COND_BRANCH_LIKELY
))
2155 tmp_nops
= nops_for_sequence (2, history
, insn
, NOP_INSN
);
2156 if (tmp_nops
> nops
)
2159 else if (mips_opts
.mips16
&& (insn
->insn_mo
->pinfo
& MIPS16_INSN_BRANCH
))
2161 tmp_nops
= nops_for_sequence (1, history
, insn
);
2162 if (tmp_nops
> nops
)
2168 /* Output an instruction. IP is the instruction information.
2169 ADDRESS_EXPR is an operand of the instruction to be used with
2173 append_insn (struct mips_cl_insn
*ip
, expressionS
*address_expr
,
2174 bfd_reloc_code_real_type
*reloc_type
)
2176 register unsigned long prev_pinfo
, pinfo
;
2177 relax_stateT prev_insn_frag_type
= 0;
2178 bfd_boolean relaxed_branch
= FALSE
;
2180 /* Mark instruction labels in mips16 mode. */
2181 mips16_mark_labels ();
2183 prev_pinfo
= history
[0].insn_mo
->pinfo
;
2184 pinfo
= ip
->insn_mo
->pinfo
;
2186 if (mips_relax
.sequence
!= 2 && !mips_opts
.noreorder
)
2188 /* There are a lot of optimizations we could do that we don't.
2189 In particular, we do not, in general, reorder instructions.
2190 If you use gcc with optimization, it will reorder
2191 instructions and generally do much more optimization then we
2192 do here; repeating all that work in the assembler would only
2193 benefit hand written assembly code, and does not seem worth
2195 int nops
= (mips_optimize
== 0
2196 ? nops_for_insn (history
, NULL
)
2197 : nops_for_insn_or_target (history
, ip
));
2201 unsigned long old_frag_offset
;
2204 old_frag
= frag_now
;
2205 old_frag_offset
= frag_now_fix ();
2207 for (i
= 0; i
< nops
; i
++)
2212 listing_prev_line ();
2213 /* We may be at the start of a variant frag. In case we
2214 are, make sure there is enough space for the frag
2215 after the frags created by listing_prev_line. The
2216 argument to frag_grow here must be at least as large
2217 as the argument to all other calls to frag_grow in
2218 this file. We don't have to worry about being in the
2219 middle of a variant frag, because the variants insert
2220 all needed nop instructions themselves. */
2224 mips_move_labels ();
2226 #ifndef NO_ECOFF_DEBUGGING
2227 if (ECOFF_DEBUGGING
)
2228 ecoff_fix_loc (old_frag
, old_frag_offset
);
2232 else if (mips_relax
.sequence
!= 2 && prev_nop_frag
!= NULL
)
2234 /* Work out how many nops in prev_nop_frag are needed by IP. */
2235 int nops
= nops_for_insn_or_target (history
, ip
);
2236 assert (nops
<= prev_nop_frag_holds
);
2238 /* Enforce NOPS as a minimum. */
2239 if (nops
> prev_nop_frag_required
)
2240 prev_nop_frag_required
= nops
;
2242 if (prev_nop_frag_holds
== prev_nop_frag_required
)
2244 /* Settle for the current number of nops. Update the history
2245 accordingly (for the benefit of any future .set reorder code). */
2246 prev_nop_frag
= NULL
;
2247 insert_into_history (prev_nop_frag_since
,
2248 prev_nop_frag_holds
, NOP_INSN
);
2252 /* Allow this instruction to replace one of the nops that was
2253 tentatively added to prev_nop_frag. */
2254 prev_nop_frag
->fr_fix
-= mips_opts
.mips16
? 2 : 4;
2255 prev_nop_frag_holds
--;
2256 prev_nop_frag_since
++;
2261 /* The value passed to dwarf2_emit_insn is the distance between
2262 the beginning of the current instruction and the address that
2263 should be recorded in the debug tables. For MIPS16 debug info
2264 we want to use ISA-encoded addresses, so we pass -1 for an
2265 address higher by one than the current. */
2266 dwarf2_emit_insn (mips_opts
.mips16
? -1 : 0);
2269 /* Record the frag type before frag_var. */
2270 if (history
[0].frag
)
2271 prev_insn_frag_type
= history
[0].frag
->fr_type
;
2274 && *reloc_type
== BFD_RELOC_16_PCREL_S2
2275 && (pinfo
& INSN_UNCOND_BRANCH_DELAY
|| pinfo
& INSN_COND_BRANCH_DELAY
2276 || pinfo
& INSN_COND_BRANCH_LIKELY
)
2277 && mips_relax_branch
2278 /* Don't try branch relaxation within .set nomacro, or within
2279 .set noat if we use $at for PIC computations. If it turns
2280 out that the branch was out-of-range, we'll get an error. */
2281 && !mips_opts
.warn_about_macros
2282 && !(mips_opts
.noat
&& mips_pic
!= NO_PIC
)
2283 && !mips_opts
.mips16
)
2285 relaxed_branch
= TRUE
;
2286 add_relaxed_insn (ip
, (relaxed_branch_length
2288 (pinfo
& INSN_UNCOND_BRANCH_DELAY
) ? -1
2289 : (pinfo
& INSN_COND_BRANCH_LIKELY
) ? 1
2292 (pinfo
& INSN_UNCOND_BRANCH_DELAY
,
2293 pinfo
& INSN_COND_BRANCH_LIKELY
,
2294 pinfo
& INSN_WRITE_GPR_31
,
2296 address_expr
->X_add_symbol
,
2297 address_expr
->X_add_number
);
2298 *reloc_type
= BFD_RELOC_UNUSED
;
2300 else if (*reloc_type
> BFD_RELOC_UNUSED
)
2302 /* We need to set up a variant frag. */
2303 assert (mips_opts
.mips16
&& address_expr
!= NULL
);
2304 add_relaxed_insn (ip
, 4, 0,
2306 (*reloc_type
- BFD_RELOC_UNUSED
,
2307 mips16_small
, mips16_ext
,
2308 prev_pinfo
& INSN_UNCOND_BRANCH_DELAY
,
2309 history
[0].mips16_absolute_jump_p
),
2310 make_expr_symbol (address_expr
), 0);
2312 else if (mips_opts
.mips16
2314 && *reloc_type
!= BFD_RELOC_MIPS16_JMP
)
2316 if ((pinfo
& INSN_UNCOND_BRANCH_DELAY
) == 0)
2317 /* Make sure there is enough room to swap this instruction with
2318 a following jump instruction. */
2320 add_fixed_insn (ip
);
2324 if (mips_opts
.mips16
2325 && mips_opts
.noreorder
2326 && (prev_pinfo
& INSN_UNCOND_BRANCH_DELAY
) != 0)
2327 as_warn (_("extended instruction in delay slot"));
2329 if (mips_relax
.sequence
)
2331 /* If we've reached the end of this frag, turn it into a variant
2332 frag and record the information for the instructions we've
2334 if (frag_room () < 4)
2335 relax_close_frag ();
2336 mips_relax
.sizes
[mips_relax
.sequence
- 1] += 4;
2339 if (mips_relax
.sequence
!= 2)
2340 mips_macro_warning
.sizes
[0] += 4;
2341 if (mips_relax
.sequence
!= 1)
2342 mips_macro_warning
.sizes
[1] += 4;
2344 if (mips_opts
.mips16
)
2347 ip
->mips16_absolute_jump_p
= (*reloc_type
== BFD_RELOC_MIPS16_JMP
);
2349 add_fixed_insn (ip
);
2352 if (address_expr
!= NULL
&& *reloc_type
<= BFD_RELOC_UNUSED
)
2354 if (address_expr
->X_op
== O_constant
)
2358 switch (*reloc_type
)
2361 ip
->insn_opcode
|= address_expr
->X_add_number
;
2364 case BFD_RELOC_MIPS_HIGHEST
:
2365 tmp
= (address_expr
->X_add_number
+ 0x800080008000ull
) >> 48;
2366 ip
->insn_opcode
|= tmp
& 0xffff;
2369 case BFD_RELOC_MIPS_HIGHER
:
2370 tmp
= (address_expr
->X_add_number
+ 0x80008000ull
) >> 32;
2371 ip
->insn_opcode
|= tmp
& 0xffff;
2374 case BFD_RELOC_HI16_S
:
2375 tmp
= (address_expr
->X_add_number
+ 0x8000) >> 16;
2376 ip
->insn_opcode
|= tmp
& 0xffff;
2379 case BFD_RELOC_HI16
:
2380 ip
->insn_opcode
|= (address_expr
->X_add_number
>> 16) & 0xffff;
2383 case BFD_RELOC_UNUSED
:
2384 case BFD_RELOC_LO16
:
2385 case BFD_RELOC_MIPS_GOT_DISP
:
2386 ip
->insn_opcode
|= address_expr
->X_add_number
& 0xffff;
2389 case BFD_RELOC_MIPS_JMP
:
2390 if ((address_expr
->X_add_number
& 3) != 0)
2391 as_bad (_("jump to misaligned address (0x%lx)"),
2392 (unsigned long) address_expr
->X_add_number
);
2393 if (address_expr
->X_add_number
& ~0xfffffff)
2394 as_bad (_("jump address range overflow (0x%lx)"),
2395 (unsigned long) address_expr
->X_add_number
);
2396 ip
->insn_opcode
|= (address_expr
->X_add_number
>> 2) & 0x3ffffff;
2399 case BFD_RELOC_MIPS16_JMP
:
2400 if ((address_expr
->X_add_number
& 3) != 0)
2401 as_bad (_("jump to misaligned address (0x%lx)"),
2402 (unsigned long) address_expr
->X_add_number
);
2403 if (address_expr
->X_add_number
& ~0xfffffff)
2404 as_bad (_("jump address range overflow (0x%lx)"),
2405 (unsigned long) address_expr
->X_add_number
);
2407 (((address_expr
->X_add_number
& 0x7c0000) << 3)
2408 | ((address_expr
->X_add_number
& 0xf800000) >> 7)
2409 | ((address_expr
->X_add_number
& 0x3fffc) >> 2));
2412 case BFD_RELOC_16_PCREL_S2
:
2413 if ((address_expr
->X_add_number
& 3) != 0)
2414 as_bad (_("branch to misaligned address (0x%lx)"),
2415 (unsigned long) address_expr
->X_add_number
);
2416 if (mips_relax_branch
)
2418 if ((address_expr
->X_add_number
+ 0x20000) & ~0x3ffff)
2419 as_bad (_("branch address range overflow (0x%lx)"),
2420 (unsigned long) address_expr
->X_add_number
);
2421 ip
->insn_opcode
|= (address_expr
->X_add_number
>> 2) & 0xffff;
2428 else if (*reloc_type
< BFD_RELOC_UNUSED
)
2431 reloc_howto_type
*howto
;
2434 /* In a compound relocation, it is the final (outermost)
2435 operator that determines the relocated field. */
2436 for (i
= 1; i
< 3; i
++)
2437 if (reloc_type
[i
] == BFD_RELOC_UNUSED
)
2440 howto
= bfd_reloc_type_lookup (stdoutput
, reloc_type
[i
- 1]);
2441 ip
->fixp
[0] = fix_new_exp (ip
->frag
, ip
->where
,
2442 bfd_get_reloc_size (howto
),
2444 reloc_type
[0] == BFD_RELOC_16_PCREL_S2
,
2447 /* These relocations can have an addend that won't fit in
2448 4 octets for 64bit assembly. */
2450 && ! howto
->partial_inplace
2451 && (reloc_type
[0] == BFD_RELOC_16
2452 || reloc_type
[0] == BFD_RELOC_32
2453 || reloc_type
[0] == BFD_RELOC_MIPS_JMP
2454 || reloc_type
[0] == BFD_RELOC_HI16_S
2455 || reloc_type
[0] == BFD_RELOC_LO16
2456 || reloc_type
[0] == BFD_RELOC_GPREL16
2457 || reloc_type
[0] == BFD_RELOC_MIPS_LITERAL
2458 || reloc_type
[0] == BFD_RELOC_GPREL32
2459 || reloc_type
[0] == BFD_RELOC_64
2460 || reloc_type
[0] == BFD_RELOC_CTOR
2461 || reloc_type
[0] == BFD_RELOC_MIPS_SUB
2462 || reloc_type
[0] == BFD_RELOC_MIPS_HIGHEST
2463 || reloc_type
[0] == BFD_RELOC_MIPS_HIGHER
2464 || reloc_type
[0] == BFD_RELOC_MIPS_SCN_DISP
2465 || reloc_type
[0] == BFD_RELOC_MIPS_REL16
2466 || reloc_type
[0] == BFD_RELOC_MIPS_RELGOT
2467 || reloc_type
[0] == BFD_RELOC_MIPS16_GPREL
2468 || reloc_type
[0] == BFD_RELOC_MIPS16_HI16_S
2469 || reloc_type
[0] == BFD_RELOC_MIPS16_LO16
))
2470 ip
->fixp
[0]->fx_no_overflow
= 1;
2472 if (mips_relax
.sequence
)
2474 if (mips_relax
.first_fixup
== 0)
2475 mips_relax
.first_fixup
= ip
->fixp
[0];
2477 else if (reloc_needs_lo_p (*reloc_type
))
2479 struct mips_hi_fixup
*hi_fixup
;
2481 /* Reuse the last entry if it already has a matching %lo. */
2482 hi_fixup
= mips_hi_fixup_list
;
2484 || !fixup_has_matching_lo_p (hi_fixup
->fixp
))
2486 hi_fixup
= ((struct mips_hi_fixup
*)
2487 xmalloc (sizeof (struct mips_hi_fixup
)));
2488 hi_fixup
->next
= mips_hi_fixup_list
;
2489 mips_hi_fixup_list
= hi_fixup
;
2491 hi_fixup
->fixp
= ip
->fixp
[0];
2492 hi_fixup
->seg
= now_seg
;
2495 /* Add fixups for the second and third relocations, if given.
2496 Note that the ABI allows the second relocation to be
2497 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
2498 moment we only use RSS_UNDEF, but we could add support
2499 for the others if it ever becomes necessary. */
2500 for (i
= 1; i
< 3; i
++)
2501 if (reloc_type
[i
] != BFD_RELOC_UNUSED
)
2503 ip
->fixp
[i
] = fix_new (ip
->frag
, ip
->where
,
2504 ip
->fixp
[0]->fx_size
, NULL
, 0,
2505 FALSE
, reloc_type
[i
]);
2507 /* Use fx_tcbit to mark compound relocs. */
2508 ip
->fixp
[0]->fx_tcbit
= 1;
2509 ip
->fixp
[i
]->fx_tcbit
= 1;
2515 /* Update the register mask information. */
2516 if (! mips_opts
.mips16
)
2518 if (pinfo
& INSN_WRITE_GPR_D
)
2519 mips_gprmask
|= 1 << EXTRACT_OPERAND (RD
, *ip
);
2520 if ((pinfo
& (INSN_WRITE_GPR_T
| INSN_READ_GPR_T
)) != 0)
2521 mips_gprmask
|= 1 << EXTRACT_OPERAND (RT
, *ip
);
2522 if (pinfo
& INSN_READ_GPR_S
)
2523 mips_gprmask
|= 1 << EXTRACT_OPERAND (RS
, *ip
);
2524 if (pinfo
& INSN_WRITE_GPR_31
)
2525 mips_gprmask
|= 1 << RA
;
2526 if (pinfo
& INSN_WRITE_FPR_D
)
2527 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FD
, *ip
);
2528 if ((pinfo
& (INSN_WRITE_FPR_S
| INSN_READ_FPR_S
)) != 0)
2529 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FS
, *ip
);
2530 if ((pinfo
& (INSN_WRITE_FPR_T
| INSN_READ_FPR_T
)) != 0)
2531 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FT
, *ip
);
2532 if ((pinfo
& INSN_READ_FPR_R
) != 0)
2533 mips_cprmask
[1] |= 1 << EXTRACT_OPERAND (FR
, *ip
);
2534 if (pinfo
& INSN_COP
)
2536 /* We don't keep enough information to sort these cases out.
2537 The itbl support does keep this information however, although
2538 we currently don't support itbl fprmats as part of the cop
2539 instruction. May want to add this support in the future. */
2541 /* Never set the bit for $0, which is always zero. */
2542 mips_gprmask
&= ~1 << 0;
2546 if (pinfo
& (MIPS16_INSN_WRITE_X
| MIPS16_INSN_READ_X
))
2547 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (RX
, *ip
);
2548 if (pinfo
& (MIPS16_INSN_WRITE_Y
| MIPS16_INSN_READ_Y
))
2549 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (RY
, *ip
);
2550 if (pinfo
& MIPS16_INSN_WRITE_Z
)
2551 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (RZ
, *ip
);
2552 if (pinfo
& (MIPS16_INSN_WRITE_T
| MIPS16_INSN_READ_T
))
2553 mips_gprmask
|= 1 << TREG
;
2554 if (pinfo
& (MIPS16_INSN_WRITE_SP
| MIPS16_INSN_READ_SP
))
2555 mips_gprmask
|= 1 << SP
;
2556 if (pinfo
& (MIPS16_INSN_WRITE_31
| MIPS16_INSN_READ_31
))
2557 mips_gprmask
|= 1 << RA
;
2558 if (pinfo
& MIPS16_INSN_WRITE_GPR_Y
)
2559 mips_gprmask
|= 1 << MIPS16OP_EXTRACT_REG32R (ip
->insn_opcode
);
2560 if (pinfo
& MIPS16_INSN_READ_Z
)
2561 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z
, *ip
);
2562 if (pinfo
& MIPS16_INSN_READ_GPR_X
)
2563 mips_gprmask
|= 1 << MIPS16_EXTRACT_OPERAND (REGR32
, *ip
);
2566 if (mips_relax
.sequence
!= 2 && !mips_opts
.noreorder
)
2568 /* Filling the branch delay slot is more complex. We try to
2569 switch the branch with the previous instruction, which we can
2570 do if the previous instruction does not set up a condition
2571 that the branch tests and if the branch is not itself the
2572 target of any branch. */
2573 if ((pinfo
& INSN_UNCOND_BRANCH_DELAY
)
2574 || (pinfo
& INSN_COND_BRANCH_DELAY
))
2576 if (mips_optimize
< 2
2577 /* If we have seen .set volatile or .set nomove, don't
2579 || mips_opts
.nomove
!= 0
2580 /* We can't swap if the previous instruction's position
2582 || history
[0].fixed_p
2583 /* If the previous previous insn was in a .set
2584 noreorder, we can't swap. Actually, the MIPS
2585 assembler will swap in this situation. However, gcc
2586 configured -with-gnu-as will generate code like
2592 in which we can not swap the bne and INSN. If gcc is
2593 not configured -with-gnu-as, it does not output the
2595 || history
[1].noreorder_p
2596 /* If the branch is itself the target of a branch, we
2597 can not swap. We cheat on this; all we check for is
2598 whether there is a label on this instruction. If
2599 there are any branches to anything other than a
2600 label, users must use .set noreorder. */
2601 || insn_labels
!= NULL
2602 /* If the previous instruction is in a variant frag
2603 other than this branch's one, we cannot do the swap.
2604 This does not apply to the mips16, which uses variant
2605 frags for different purposes. */
2606 || (! mips_opts
.mips16
2607 && prev_insn_frag_type
== rs_machine_dependent
)
2608 /* Check for conflicts between the branch and the instructions
2609 before the candidate delay slot. */
2610 || nops_for_insn (history
+ 1, ip
) > 0
2611 /* Check for conflicts between the swapped sequence and the
2612 target of the branch. */
2613 || nops_for_sequence (2, history
+ 1, ip
, history
) > 0
2614 /* We do not swap with a trap instruction, since it
2615 complicates trap handlers to have the trap
2616 instruction be in a delay slot. */
2617 || (prev_pinfo
& INSN_TRAP
)
2618 /* If the branch reads a register that the previous
2619 instruction sets, we can not swap. */
2620 || (! mips_opts
.mips16
2621 && (prev_pinfo
& INSN_WRITE_GPR_T
)
2622 && insn_uses_reg (ip
, EXTRACT_OPERAND (RT
, history
[0]),
2624 || (! mips_opts
.mips16
2625 && (prev_pinfo
& INSN_WRITE_GPR_D
)
2626 && insn_uses_reg (ip
, EXTRACT_OPERAND (RD
, history
[0]),
2628 || (mips_opts
.mips16
2629 && (((prev_pinfo
& MIPS16_INSN_WRITE_X
)
2631 (ip
, MIPS16_EXTRACT_OPERAND (RX
, history
[0]),
2633 || ((prev_pinfo
& MIPS16_INSN_WRITE_Y
)
2635 (ip
, MIPS16_EXTRACT_OPERAND (RY
, history
[0]),
2637 || ((prev_pinfo
& MIPS16_INSN_WRITE_Z
)
2639 (ip
, MIPS16_EXTRACT_OPERAND (RZ
, history
[0]),
2641 || ((prev_pinfo
& MIPS16_INSN_WRITE_T
)
2642 && insn_uses_reg (ip
, TREG
, MIPS_GR_REG
))
2643 || ((prev_pinfo
& MIPS16_INSN_WRITE_31
)
2644 && insn_uses_reg (ip
, RA
, MIPS_GR_REG
))
2645 || ((prev_pinfo
& MIPS16_INSN_WRITE_GPR_Y
)
2646 && insn_uses_reg (ip
,
2647 MIPS16OP_EXTRACT_REG32R
2648 (history
[0].insn_opcode
),
2650 /* If the branch writes a register that the previous
2651 instruction sets, we can not swap (we know that
2652 branches write only to RD or to $31). */
2653 || (! mips_opts
.mips16
2654 && (prev_pinfo
& INSN_WRITE_GPR_T
)
2655 && (((pinfo
& INSN_WRITE_GPR_D
)
2656 && (EXTRACT_OPERAND (RT
, history
[0])
2657 == EXTRACT_OPERAND (RD
, *ip
)))
2658 || ((pinfo
& INSN_WRITE_GPR_31
)
2659 && EXTRACT_OPERAND (RT
, history
[0]) == RA
)))
2660 || (! mips_opts
.mips16
2661 && (prev_pinfo
& INSN_WRITE_GPR_D
)
2662 && (((pinfo
& INSN_WRITE_GPR_D
)
2663 && (EXTRACT_OPERAND (RD
, history
[0])
2664 == EXTRACT_OPERAND (RD
, *ip
)))
2665 || ((pinfo
& INSN_WRITE_GPR_31
)
2666 && EXTRACT_OPERAND (RD
, history
[0]) == RA
)))
2667 || (mips_opts
.mips16
2668 && (pinfo
& MIPS16_INSN_WRITE_31
)
2669 && ((prev_pinfo
& MIPS16_INSN_WRITE_31
)
2670 || ((prev_pinfo
& MIPS16_INSN_WRITE_GPR_Y
)
2671 && (MIPS16OP_EXTRACT_REG32R (history
[0].insn_opcode
)
2673 /* If the branch writes a register that the previous
2674 instruction reads, we can not swap (we know that
2675 branches only write to RD or to $31). */
2676 || (! mips_opts
.mips16
2677 && (pinfo
& INSN_WRITE_GPR_D
)
2678 && insn_uses_reg (&history
[0],
2679 EXTRACT_OPERAND (RD
, *ip
),
2681 || (! mips_opts
.mips16
2682 && (pinfo
& INSN_WRITE_GPR_31
)
2683 && insn_uses_reg (&history
[0], RA
, MIPS_GR_REG
))
2684 || (mips_opts
.mips16
2685 && (pinfo
& MIPS16_INSN_WRITE_31
)
2686 && insn_uses_reg (&history
[0], RA
, MIPS_GR_REG
))
2687 /* If one instruction sets a condition code and the
2688 other one uses a condition code, we can not swap. */
2689 || ((pinfo
& INSN_READ_COND_CODE
)
2690 && (prev_pinfo
& INSN_WRITE_COND_CODE
))
2691 || ((pinfo
& INSN_WRITE_COND_CODE
)
2692 && (prev_pinfo
& INSN_READ_COND_CODE
))
2693 /* If the previous instruction uses the PC, we can not
2695 || (mips_opts
.mips16
2696 && (prev_pinfo
& MIPS16_INSN_READ_PC
))
2697 /* If the previous instruction had a fixup in mips16
2698 mode, we can not swap. This normally means that the
2699 previous instruction was a 4 byte branch anyhow. */
2700 || (mips_opts
.mips16
&& history
[0].fixp
[0])
2701 /* If the previous instruction is a sync, sync.l, or
2702 sync.p, we can not swap. */
2703 || (prev_pinfo
& INSN_SYNC
))
2705 if (mips_opts
.mips16
2706 && (pinfo
& INSN_UNCOND_BRANCH_DELAY
)
2707 && (pinfo
& (MIPS16_INSN_READ_X
| MIPS16_INSN_READ_31
))
2708 && (mips_opts
.isa
== ISA_MIPS32
2709 || mips_opts
.isa
== ISA_MIPS32R2
2710 || mips_opts
.isa
== ISA_MIPS64
2711 || mips_opts
.isa
== ISA_MIPS64R2
))
2713 /* Convert MIPS16 jr/jalr into a "compact" jump. */
2714 ip
->insn_opcode
|= 0x0080;
2716 insert_into_history (0, 1, ip
);
2720 /* We could do even better for unconditional branches to
2721 portions of this object file; we could pick up the
2722 instruction at the destination, put it in the delay
2723 slot, and bump the destination address. */
2724 insert_into_history (0, 1, ip
);
2728 if (mips_relax
.sequence
)
2729 mips_relax
.sizes
[mips_relax
.sequence
- 1] += 4;
2733 /* It looks like we can actually do the swap. */
2734 struct mips_cl_insn delay
= history
[0];
2735 if (mips_opts
.mips16
)
2737 know (delay
.frag
== ip
->frag
);
2738 move_insn (ip
, delay
.frag
, delay
.where
);
2739 move_insn (&delay
, ip
->frag
, ip
->where
+ insn_length (ip
));
2741 else if (relaxed_branch
)
2743 /* Add the delay slot instruction to the end of the
2744 current frag and shrink the fixed part of the
2745 original frag. If the branch occupies the tail of
2746 the latter, move it backwards to cover the gap. */
2747 delay
.frag
->fr_fix
-= 4;
2748 if (delay
.frag
== ip
->frag
)
2749 move_insn (ip
, ip
->frag
, ip
->where
- 4);
2750 add_fixed_insn (&delay
);
2754 move_insn (&delay
, ip
->frag
, ip
->where
);
2755 move_insn (ip
, history
[0].frag
, history
[0].where
);
2759 insert_into_history (0, 1, &delay
);
2762 /* If that was an unconditional branch, forget the previous
2763 insn information. */
2764 if (pinfo
& INSN_UNCOND_BRANCH_DELAY
)
2765 mips_no_prev_insn ();
2767 else if (pinfo
& INSN_COND_BRANCH_LIKELY
)
2769 /* We don't yet optimize a branch likely. What we should do
2770 is look at the target, copy the instruction found there
2771 into the delay slot, and increment the branch to jump to
2772 the next instruction. */
2773 insert_into_history (0, 1, ip
);
2777 insert_into_history (0, 1, ip
);
2780 insert_into_history (0, 1, ip
);
2782 /* We just output an insn, so the next one doesn't have a label. */
2783 mips_clear_insn_labels ();
2786 /* Forget that there was any previous instruction or label. */
2789 mips_no_prev_insn (void)
2791 prev_nop_frag
= NULL
;
2792 insert_into_history (0, ARRAY_SIZE (history
), NOP_INSN
);
2793 mips_clear_insn_labels ();
2796 /* This function must be called before we emit something other than
2797 instructions. It is like mips_no_prev_insn except that it inserts
2798 any NOPS that might be needed by previous instructions. */
2801 mips_emit_delays (void)
2803 if (! mips_opts
.noreorder
)
2805 int nops
= nops_for_insn (history
, NULL
);
2809 add_fixed_insn (NOP_INSN
);
2810 mips_move_labels ();
2813 mips_no_prev_insn ();
2816 /* Start a (possibly nested) noreorder block. */
2819 start_noreorder (void)
2821 if (mips_opts
.noreorder
== 0)
2826 /* None of the instructions before the .set noreorder can be moved. */
2827 for (i
= 0; i
< ARRAY_SIZE (history
); i
++)
2828 history
[i
].fixed_p
= 1;
2830 /* Insert any nops that might be needed between the .set noreorder
2831 block and the previous instructions. We will later remove any
2832 nops that turn out not to be needed. */
2833 nops
= nops_for_insn (history
, NULL
);
2836 if (mips_optimize
!= 0)
2838 /* Record the frag which holds the nop instructions, so
2839 that we can remove them if we don't need them. */
2840 frag_grow (mips_opts
.mips16
? nops
* 2 : nops
* 4);
2841 prev_nop_frag
= frag_now
;
2842 prev_nop_frag_holds
= nops
;
2843 prev_nop_frag_required
= 0;
2844 prev_nop_frag_since
= 0;
2847 for (; nops
> 0; --nops
)
2848 add_fixed_insn (NOP_INSN
);
2850 /* Move on to a new frag, so that it is safe to simply
2851 decrease the size of prev_nop_frag. */
2852 frag_wane (frag_now
);
2854 mips_move_labels ();
2856 mips16_mark_labels ();
2857 mips_clear_insn_labels ();
2859 mips_opts
.noreorder
++;
2860 mips_any_noreorder
= 1;
2863 /* End a nested noreorder block. */
2866 end_noreorder (void)
2868 mips_opts
.noreorder
--;
2869 if (mips_opts
.noreorder
== 0 && prev_nop_frag
!= NULL
)
2871 /* Commit to inserting prev_nop_frag_required nops and go back to
2872 handling nop insertion the .set reorder way. */
2873 prev_nop_frag
->fr_fix
-= ((prev_nop_frag_holds
- prev_nop_frag_required
)
2874 * (mips_opts
.mips16
? 2 : 4));
2875 insert_into_history (prev_nop_frag_since
,
2876 prev_nop_frag_required
, NOP_INSN
);
2877 prev_nop_frag
= NULL
;
2881 /* Set up global variables for the start of a new macro. */
2886 memset (&mips_macro_warning
.sizes
, 0, sizeof (mips_macro_warning
.sizes
));
2887 mips_macro_warning
.delay_slot_p
= (mips_opts
.noreorder
2888 && (history
[0].insn_mo
->pinfo
2889 & (INSN_UNCOND_BRANCH_DELAY
2890 | INSN_COND_BRANCH_DELAY
2891 | INSN_COND_BRANCH_LIKELY
)) != 0);
2894 /* Given that a macro is longer than 4 bytes, return the appropriate warning
2895 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
2896 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
2899 macro_warning (relax_substateT subtype
)
2901 if (subtype
& RELAX_DELAY_SLOT
)
2902 return _("Macro instruction expanded into multiple instructions"
2903 " in a branch delay slot");
2904 else if (subtype
& RELAX_NOMACRO
)
2905 return _("Macro instruction expanded into multiple instructions");
2910 /* Finish up a macro. Emit warnings as appropriate. */
2915 if (mips_macro_warning
.sizes
[0] > 4 || mips_macro_warning
.sizes
[1] > 4)
2917 relax_substateT subtype
;
2919 /* Set up the relaxation warning flags. */
2921 if (mips_macro_warning
.sizes
[1] > mips_macro_warning
.sizes
[0])
2922 subtype
|= RELAX_SECOND_LONGER
;
2923 if (mips_opts
.warn_about_macros
)
2924 subtype
|= RELAX_NOMACRO
;
2925 if (mips_macro_warning
.delay_slot_p
)
2926 subtype
|= RELAX_DELAY_SLOT
;
2928 if (mips_macro_warning
.sizes
[0] > 4 && mips_macro_warning
.sizes
[1] > 4)
2930 /* Either the macro has a single implementation or both
2931 implementations are longer than 4 bytes. Emit the
2933 const char *msg
= macro_warning (subtype
);
2939 /* One implementation might need a warning but the other
2940 definitely doesn't. */
2941 mips_macro_warning
.first_frag
->fr_subtype
|= subtype
;
2946 /* Read a macro's relocation codes from *ARGS and store them in *R.
2947 The first argument in *ARGS will be either the code for a single
2948 relocation or -1 followed by the three codes that make up a
2949 composite relocation. */
2952 macro_read_relocs (va_list *args
, bfd_reloc_code_real_type
*r
)
2956 next
= va_arg (*args
, int);
2958 r
[0] = (bfd_reloc_code_real_type
) next
;
2960 for (i
= 0; i
< 3; i
++)
2961 r
[i
] = (bfd_reloc_code_real_type
) va_arg (*args
, int);
2964 /* Build an instruction created by a macro expansion. This is passed
2965 a pointer to the count of instructions created so far, an
2966 expression, the name of the instruction to build, an operand format
2967 string, and corresponding arguments. */
2970 macro_build (expressionS
*ep
, const char *name
, const char *fmt
, ...)
2972 const struct mips_opcode
*mo
;
2973 struct mips_cl_insn insn
;
2974 bfd_reloc_code_real_type r
[3];
2977 va_start (args
, fmt
);
2979 if (mips_opts
.mips16
)
2981 mips16_macro_build (ep
, name
, fmt
, args
);
2986 r
[0] = BFD_RELOC_UNUSED
;
2987 r
[1] = BFD_RELOC_UNUSED
;
2988 r
[2] = BFD_RELOC_UNUSED
;
2989 mo
= (struct mips_opcode
*) hash_find (op_hash
, name
);
2991 assert (strcmp (name
, mo
->name
) == 0);
2993 /* Search until we get a match for NAME. It is assumed here that
2994 macros will never generate MDMX or MIPS-3D instructions. */
2995 while (strcmp (fmt
, mo
->args
) != 0
2996 || mo
->pinfo
== INSN_MACRO
2997 || !OPCODE_IS_MEMBER (mo
,
2999 | (file_ase_mips16
? INSN_MIPS16
: 0)),
3001 || (mips_opts
.arch
== CPU_R4650
&& (mo
->pinfo
& FP_D
) != 0))
3005 assert (strcmp (name
, mo
->name
) == 0);
3008 create_insn (&insn
, mo
);
3026 INSERT_OPERAND (SHAMT
, insn
, va_arg (args
, int));
3031 /* Note that in the macro case, these arguments are already
3032 in MSB form. (When handling the instruction in the
3033 non-macro case, these arguments are sizes from which
3034 MSB values must be calculated.) */
3035 INSERT_OPERAND (INSMSB
, insn
, va_arg (args
, int));
3041 /* Note that in the macro case, these arguments are already
3042 in MSBD form. (When handling the instruction in the
3043 non-macro case, these arguments are sizes from which
3044 MSBD values must be calculated.) */
3045 INSERT_OPERAND (EXTMSBD
, insn
, va_arg (args
, int));
3056 INSERT_OPERAND (RT
, insn
, va_arg (args
, int));
3060 INSERT_OPERAND (CODE
, insn
, va_arg (args
, int));
3065 INSERT_OPERAND (FT
, insn
, va_arg (args
, int));
3071 INSERT_OPERAND (RD
, insn
, va_arg (args
, int));
3076 int tmp
= va_arg (args
, int);
3078 INSERT_OPERAND (RT
, insn
, tmp
);
3079 INSERT_OPERAND (RD
, insn
, tmp
);
3085 INSERT_OPERAND (FS
, insn
, va_arg (args
, int));
3092 INSERT_OPERAND (SHAMT
, insn
, va_arg (args
, int));
3096 INSERT_OPERAND (FD
, insn
, va_arg (args
, int));
3100 INSERT_OPERAND (CODE20
, insn
, va_arg (args
, int));
3104 INSERT_OPERAND (CODE19
, insn
, va_arg (args
, int));
3108 INSERT_OPERAND (CODE2
, insn
, va_arg (args
, int));
3115 INSERT_OPERAND (RS
, insn
, va_arg (args
, int));
3121 macro_read_relocs (&args
, r
);
3122 assert (*r
== BFD_RELOC_GPREL16
3123 || *r
== BFD_RELOC_MIPS_LITERAL
3124 || *r
== BFD_RELOC_MIPS_HIGHER
3125 || *r
== BFD_RELOC_HI16_S
3126 || *r
== BFD_RELOC_LO16
3127 || *r
== BFD_RELOC_MIPS_GOT16
3128 || *r
== BFD_RELOC_MIPS_CALL16
3129 || *r
== BFD_RELOC_MIPS_GOT_DISP
3130 || *r
== BFD_RELOC_MIPS_GOT_PAGE
3131 || *r
== BFD_RELOC_MIPS_GOT_OFST
3132 || *r
== BFD_RELOC_MIPS_GOT_LO16
3133 || *r
== BFD_RELOC_MIPS_CALL_LO16
);
3137 macro_read_relocs (&args
, r
);
3139 && (ep
->X_op
== O_constant
3140 || (ep
->X_op
== O_symbol
3141 && (*r
== BFD_RELOC_MIPS_HIGHEST
3142 || *r
== BFD_RELOC_HI16_S
3143 || *r
== BFD_RELOC_HI16
3144 || *r
== BFD_RELOC_GPREL16
3145 || *r
== BFD_RELOC_MIPS_GOT_HI16
3146 || *r
== BFD_RELOC_MIPS_CALL_HI16
))));
3150 assert (ep
!= NULL
);
3153 * This allows macro() to pass an immediate expression for
3154 * creating short branches without creating a symbol.
3156 * We don't allow branch relaxation for these branches, as
3157 * they should only appear in ".set nomacro" anyway.
3159 if (ep
->X_op
== O_constant
)
3161 if ((ep
->X_add_number
& 3) != 0)
3162 as_bad (_("branch to misaligned address (0x%lx)"),
3163 (unsigned long) ep
->X_add_number
);
3164 if ((ep
->X_add_number
+ 0x20000) & ~0x3ffff)
3165 as_bad (_("branch address range overflow (0x%lx)"),
3166 (unsigned long) ep
->X_add_number
);
3167 insn
.insn_opcode
|= (ep
->X_add_number
>> 2) & 0xffff;
3171 *r
= BFD_RELOC_16_PCREL_S2
;
3175 assert (ep
!= NULL
);
3176 *r
= BFD_RELOC_MIPS_JMP
;
3180 insn
.insn_opcode
|= va_arg (args
, unsigned long);
3189 assert (*r
== BFD_RELOC_UNUSED
? ep
== NULL
: ep
!= NULL
);
3191 append_insn (&insn
, ep
, r
);
3195 mips16_macro_build (expressionS
*ep
, const char *name
, const char *fmt
,
3198 struct mips_opcode
*mo
;
3199 struct mips_cl_insn insn
;
3200 bfd_reloc_code_real_type r
[3]
3201 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
3203 mo
= (struct mips_opcode
*) hash_find (mips16_op_hash
, name
);
3205 assert (strcmp (name
, mo
->name
) == 0);
3207 while (strcmp (fmt
, mo
->args
) != 0 || mo
->pinfo
== INSN_MACRO
)
3211 assert (strcmp (name
, mo
->name
) == 0);
3214 create_insn (&insn
, mo
);
3232 MIPS16_INSERT_OPERAND (RY
, insn
, va_arg (args
, int));
3237 MIPS16_INSERT_OPERAND (RX
, insn
, va_arg (args
, int));
3241 MIPS16_INSERT_OPERAND (RZ
, insn
, va_arg (args
, int));
3245 MIPS16_INSERT_OPERAND (MOVE32Z
, insn
, va_arg (args
, int));
3255 MIPS16_INSERT_OPERAND (REGR32
, insn
, va_arg (args
, int));
3262 regno
= va_arg (args
, int);
3263 regno
= ((regno
& 7) << 2) | ((regno
& 0x18) >> 3);
3264 insn
.insn_opcode
|= regno
<< MIPS16OP_SH_REG32R
;
3285 assert (ep
!= NULL
);
3287 if (ep
->X_op
!= O_constant
)
3288 *r
= (int) BFD_RELOC_UNUSED
+ c
;
3291 mips16_immed (NULL
, 0, c
, ep
->X_add_number
, FALSE
, FALSE
,
3292 FALSE
, &insn
.insn_opcode
, &insn
.use_extend
,
3295 *r
= BFD_RELOC_UNUSED
;
3301 MIPS16_INSERT_OPERAND (IMM6
, insn
, va_arg (args
, int));
3308 assert (*r
== BFD_RELOC_UNUSED
? ep
== NULL
: ep
!= NULL
);
3310 append_insn (&insn
, ep
, r
);
3314 * Sign-extend 32-bit mode constants that have bit 31 set and all
3315 * higher bits unset.
3318 normalize_constant_expr (expressionS
*ex
)
3320 if (ex
->X_op
== O_constant
3321 && IS_ZEXT_32BIT_NUM (ex
->X_add_number
))
3322 ex
->X_add_number
= (((ex
->X_add_number
& 0xffffffff) ^ 0x80000000)
3327 * Sign-extend 32-bit mode address offsets that have bit 31 set and
3328 * all higher bits unset.
3331 normalize_address_expr (expressionS
*ex
)
3333 if (((ex
->X_op
== O_constant
&& HAVE_32BIT_ADDRESSES
)
3334 || (ex
->X_op
== O_symbol
&& HAVE_32BIT_SYMBOLS
))
3335 && IS_ZEXT_32BIT_NUM (ex
->X_add_number
))
3336 ex
->X_add_number
= (((ex
->X_add_number
& 0xffffffff) ^ 0x80000000)
3341 * Generate a "jalr" instruction with a relocation hint to the called
3342 * function. This occurs in NewABI PIC code.
3345 macro_build_jalr (expressionS
*ep
)
3354 macro_build (NULL
, "jalr", "d,s", RA
, PIC_CALL_REG
);
3356 fix_new_exp (frag_now
, f
- frag_now
->fr_literal
,
3357 4, ep
, FALSE
, BFD_RELOC_MIPS_JALR
);
3361 * Generate a "lui" instruction.
3364 macro_build_lui (expressionS
*ep
, int regnum
)
3366 expressionS high_expr
;
3367 const struct mips_opcode
*mo
;
3368 struct mips_cl_insn insn
;
3369 bfd_reloc_code_real_type r
[3]
3370 = {BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
, BFD_RELOC_UNUSED
};
3371 const char *name
= "lui";
3372 const char *fmt
= "t,u";
3374 assert (! mips_opts
.mips16
);
3378 if (high_expr
.X_op
== O_constant
)
3380 /* we can compute the instruction now without a relocation entry */
3381 high_expr
.X_add_number
= ((high_expr
.X_add_number
+ 0x8000)
3383 *r
= BFD_RELOC_UNUSED
;
3387 assert (ep
->X_op
== O_symbol
);
3388 /* _gp_disp is a special case, used from s_cpload.
3389 __gnu_local_gp is used if mips_no_shared. */
3390 assert (mips_pic
== NO_PIC
3392 && strcmp (S_GET_NAME (ep
->X_add_symbol
), "_gp_disp") == 0)
3393 || (! mips_in_shared
3394 && strcmp (S_GET_NAME (ep
->X_add_symbol
),
3395 "__gnu_local_gp") == 0));
3396 *r
= BFD_RELOC_HI16_S
;
3399 mo
= hash_find (op_hash
, name
);
3400 assert (strcmp (name
, mo
->name
) == 0);
3401 assert (strcmp (fmt
, mo
->args
) == 0);
3402 create_insn (&insn
, mo
);
3404 insn
.insn_opcode
= insn
.insn_mo
->match
;
3405 INSERT_OPERAND (RT
, insn
, regnum
);
3406 if (*r
== BFD_RELOC_UNUSED
)
3408 insn
.insn_opcode
|= high_expr
.X_add_number
;
3409 append_insn (&insn
, NULL
, r
);
3412 append_insn (&insn
, &high_expr
, r
);
3415 /* Generate a sequence of instructions to do a load or store from a constant
3416 offset off of a base register (breg) into/from a target register (treg),
3417 using AT if necessary. */
3419 macro_build_ldst_constoffset (expressionS
*ep
, const char *op
,
3420 int treg
, int breg
, int dbl
)
3422 assert (ep
->X_op
== O_constant
);
3424 /* Sign-extending 32-bit constants makes their handling easier. */
3426 normalize_constant_expr (ep
);
3428 /* Right now, this routine can only handle signed 32-bit constants. */
3429 if (! IS_SEXT_32BIT_NUM(ep
->X_add_number
+ 0x8000))
3430 as_warn (_("operand overflow"));
3432 if (IS_SEXT_16BIT_NUM(ep
->X_add_number
))
3434 /* Signed 16-bit offset will fit in the op. Easy! */
3435 macro_build (ep
, op
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
3439 /* 32-bit offset, need multiple instructions and AT, like:
3440 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
3441 addu $tempreg,$tempreg,$breg
3442 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
3443 to handle the complete offset. */
3444 macro_build_lui (ep
, AT
);
3445 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
3446 macro_build (ep
, op
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
3449 as_bad (_("Macro used $at after \".set noat\""));
3454 * Generates code to set the $at register to true (one)
3455 * if reg is less than the immediate expression.
3458 set_at (int reg
, int unsignedp
)
3460 if (imm_expr
.X_op
== O_constant
3461 && imm_expr
.X_add_number
>= -0x8000
3462 && imm_expr
.X_add_number
< 0x8000)
3463 macro_build (&imm_expr
, unsignedp
? "sltiu" : "slti", "t,r,j",
3464 AT
, reg
, BFD_RELOC_LO16
);
3467 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
3468 macro_build (NULL
, unsignedp
? "sltu" : "slt", "d,v,t", AT
, reg
, AT
);
3472 /* Warn if an expression is not a constant. */
3475 check_absolute_expr (struct mips_cl_insn
*ip
, expressionS
*ex
)
3477 if (ex
->X_op
== O_big
)
3478 as_bad (_("unsupported large constant"));
3479 else if (ex
->X_op
!= O_constant
)
3480 as_bad (_("Instruction %s requires absolute expression"),
3483 if (HAVE_32BIT_GPRS
)
3484 normalize_constant_expr (ex
);
3487 /* Count the leading zeroes by performing a binary chop. This is a
3488 bulky bit of source, but performance is a LOT better for the
3489 majority of values than a simple loop to count the bits:
3490 for (lcnt = 0; (lcnt < 32); lcnt++)
3491 if ((v) & (1 << (31 - lcnt)))
3493 However it is not code size friendly, and the gain will drop a bit
3494 on certain cached systems.
3496 #define COUNT_TOP_ZEROES(v) \
3497 (((v) & ~0xffff) == 0 \
3498 ? ((v) & ~0xff) == 0 \
3499 ? ((v) & ~0xf) == 0 \
3500 ? ((v) & ~0x3) == 0 \
3501 ? ((v) & ~0x1) == 0 \
3506 : ((v) & ~0x7) == 0 \
3509 : ((v) & ~0x3f) == 0 \
3510 ? ((v) & ~0x1f) == 0 \
3513 : ((v) & ~0x7f) == 0 \
3516 : ((v) & ~0xfff) == 0 \
3517 ? ((v) & ~0x3ff) == 0 \
3518 ? ((v) & ~0x1ff) == 0 \
3521 : ((v) & ~0x7ff) == 0 \
3524 : ((v) & ~0x3fff) == 0 \
3525 ? ((v) & ~0x1fff) == 0 \
3528 : ((v) & ~0x7fff) == 0 \
3531 : ((v) & ~0xffffff) == 0 \
3532 ? ((v) & ~0xfffff) == 0 \
3533 ? ((v) & ~0x3ffff) == 0 \
3534 ? ((v) & ~0x1ffff) == 0 \
3537 : ((v) & ~0x7ffff) == 0 \
3540 : ((v) & ~0x3fffff) == 0 \
3541 ? ((v) & ~0x1fffff) == 0 \
3544 : ((v) & ~0x7fffff) == 0 \
3547 : ((v) & ~0xfffffff) == 0 \
3548 ? ((v) & ~0x3ffffff) == 0 \
3549 ? ((v) & ~0x1ffffff) == 0 \
3552 : ((v) & ~0x7ffffff) == 0 \
3555 : ((v) & ~0x3fffffff) == 0 \
3556 ? ((v) & ~0x1fffffff) == 0 \
3559 : ((v) & ~0x7fffffff) == 0 \
3564 * This routine generates the least number of instructions necessary to load
3565 * an absolute expression value into a register.
3568 load_register (int reg
, expressionS
*ep
, int dbl
)
3571 expressionS hi32
, lo32
;
3573 if (ep
->X_op
!= O_big
)
3575 assert (ep
->X_op
== O_constant
);
3577 /* Sign-extending 32-bit constants makes their handling easier. */
3579 normalize_constant_expr (ep
);
3581 if (IS_SEXT_16BIT_NUM (ep
->X_add_number
))
3583 /* We can handle 16 bit signed values with an addiu to
3584 $zero. No need to ever use daddiu here, since $zero and
3585 the result are always correct in 32 bit mode. */
3586 macro_build (ep
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
3589 else if (ep
->X_add_number
>= 0 && ep
->X_add_number
< 0x10000)
3591 /* We can handle 16 bit unsigned values with an ori to
3593 macro_build (ep
, "ori", "t,r,i", reg
, 0, BFD_RELOC_LO16
);
3596 else if ((IS_SEXT_32BIT_NUM (ep
->X_add_number
)))
3598 /* 32 bit values require an lui. */
3599 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_HI16
);
3600 if ((ep
->X_add_number
& 0xffff) != 0)
3601 macro_build (ep
, "ori", "t,r,i", reg
, reg
, BFD_RELOC_LO16
);
3606 /* The value is larger than 32 bits. */
3608 if (!dbl
|| HAVE_32BIT_GPRS
)
3612 sprintf_vma (value
, ep
->X_add_number
);
3613 as_bad (_("Number (0x%s) larger than 32 bits"), value
);
3614 macro_build (ep
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
3618 if (ep
->X_op
!= O_big
)
3621 hi32
.X_add_number
= (valueT
) hi32
.X_add_number
>> 16;
3622 hi32
.X_add_number
= (valueT
) hi32
.X_add_number
>> 16;
3623 hi32
.X_add_number
&= 0xffffffff;
3625 lo32
.X_add_number
&= 0xffffffff;
3629 assert (ep
->X_add_number
> 2);
3630 if (ep
->X_add_number
== 3)
3631 generic_bignum
[3] = 0;
3632 else if (ep
->X_add_number
> 4)
3633 as_bad (_("Number larger than 64 bits"));
3634 lo32
.X_op
= O_constant
;
3635 lo32
.X_add_number
= generic_bignum
[0] + (generic_bignum
[1] << 16);
3636 hi32
.X_op
= O_constant
;
3637 hi32
.X_add_number
= generic_bignum
[2] + (generic_bignum
[3] << 16);
3640 if (hi32
.X_add_number
== 0)
3645 unsigned long hi
, lo
;
3647 if (hi32
.X_add_number
== (offsetT
) 0xffffffff)
3649 if ((lo32
.X_add_number
& 0xffff8000) == 0xffff8000)
3651 macro_build (&lo32
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
3654 if (lo32
.X_add_number
& 0x80000000)
3656 macro_build (&lo32
, "lui", "t,u", reg
, BFD_RELOC_HI16
);
3657 if (lo32
.X_add_number
& 0xffff)
3658 macro_build (&lo32
, "ori", "t,r,i", reg
, reg
, BFD_RELOC_LO16
);
3663 /* Check for 16bit shifted constant. We know that hi32 is
3664 non-zero, so start the mask on the first bit of the hi32
3669 unsigned long himask
, lomask
;
3673 himask
= 0xffff >> (32 - shift
);
3674 lomask
= (0xffff << shift
) & 0xffffffff;
3678 himask
= 0xffff << (shift
- 32);
3681 if ((hi32
.X_add_number
& ~(offsetT
) himask
) == 0
3682 && (lo32
.X_add_number
& ~(offsetT
) lomask
) == 0)
3686 tmp
.X_op
= O_constant
;
3688 tmp
.X_add_number
= ((hi32
.X_add_number
<< (32 - shift
))
3689 | (lo32
.X_add_number
>> shift
));
3691 tmp
.X_add_number
= hi32
.X_add_number
>> (shift
- 32);
3692 macro_build (&tmp
, "ori", "t,r,i", reg
, 0, BFD_RELOC_LO16
);
3693 macro_build (NULL
, (shift
>= 32) ? "dsll32" : "dsll", "d,w,<",
3694 reg
, reg
, (shift
>= 32) ? shift
- 32 : shift
);
3699 while (shift
<= (64 - 16));
3701 /* Find the bit number of the lowest one bit, and store the
3702 shifted value in hi/lo. */
3703 hi
= (unsigned long) (hi32
.X_add_number
& 0xffffffff);
3704 lo
= (unsigned long) (lo32
.X_add_number
& 0xffffffff);
3708 while ((lo
& 1) == 0)
3713 lo
|= (hi
& (((unsigned long) 1 << bit
) - 1)) << (32 - bit
);
3719 while ((hi
& 1) == 0)
3728 /* Optimize if the shifted value is a (power of 2) - 1. */
3729 if ((hi
== 0 && ((lo
+ 1) & lo
) == 0)
3730 || (lo
== 0xffffffff && ((hi
+ 1) & hi
) == 0))
3732 shift
= COUNT_TOP_ZEROES ((unsigned int) hi32
.X_add_number
);
3737 /* This instruction will set the register to be all
3739 tmp
.X_op
= O_constant
;
3740 tmp
.X_add_number
= (offsetT
) -1;
3741 macro_build (&tmp
, "addiu", "t,r,j", reg
, 0, BFD_RELOC_LO16
);
3745 macro_build (NULL
, (bit
>= 32) ? "dsll32" : "dsll", "d,w,<",
3746 reg
, reg
, (bit
>= 32) ? bit
- 32 : bit
);
3748 macro_build (NULL
, (shift
>= 32) ? "dsrl32" : "dsrl", "d,w,<",
3749 reg
, reg
, (shift
>= 32) ? shift
- 32 : shift
);
3754 /* Sign extend hi32 before calling load_register, because we can
3755 generally get better code when we load a sign extended value. */
3756 if ((hi32
.X_add_number
& 0x80000000) != 0)
3757 hi32
.X_add_number
|= ~(offsetT
) 0xffffffff;
3758 load_register (reg
, &hi32
, 0);
3761 if ((lo32
.X_add_number
& 0xffff0000) == 0)
3765 macro_build (NULL
, "dsll32", "d,w,<", reg
, freg
, 0);
3773 if ((freg
== 0) && (lo32
.X_add_number
== (offsetT
) 0xffffffff))
3775 macro_build (&lo32
, "lui", "t,u", reg
, BFD_RELOC_HI16
);
3776 macro_build (NULL
, "dsrl32", "d,w,<", reg
, reg
, 0);
3782 macro_build (NULL
, "dsll", "d,w,<", reg
, freg
, 16);
3786 mid16
.X_add_number
>>= 16;
3787 macro_build (&mid16
, "ori", "t,r,i", reg
, freg
, BFD_RELOC_LO16
);
3788 macro_build (NULL
, "dsll", "d,w,<", reg
, reg
, 16);
3791 if ((lo32
.X_add_number
& 0xffff) != 0)
3792 macro_build (&lo32
, "ori", "t,r,i", reg
, freg
, BFD_RELOC_LO16
);
3796 load_delay_nop (void)
3798 if (!gpr_interlocks
)
3799 macro_build (NULL
, "nop", "");
3802 /* Load an address into a register. */
3805 load_address (int reg
, expressionS
*ep
, int *used_at
)
3807 if (ep
->X_op
!= O_constant
3808 && ep
->X_op
!= O_symbol
)
3810 as_bad (_("expression too complex"));
3811 ep
->X_op
= O_constant
;
3814 if (ep
->X_op
== O_constant
)
3816 load_register (reg
, ep
, HAVE_64BIT_ADDRESSES
);
3820 if (mips_pic
== NO_PIC
)
3822 /* If this is a reference to a GP relative symbol, we want
3823 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
3825 lui $reg,<sym> (BFD_RELOC_HI16_S)
3826 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3827 If we have an addend, we always use the latter form.
3829 With 64bit address space and a usable $at we want
3830 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3831 lui $at,<sym> (BFD_RELOC_HI16_S)
3832 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3833 daddiu $at,<sym> (BFD_RELOC_LO16)
3837 If $at is already in use, we use a path which is suboptimal
3838 on superscalar processors.
3839 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3840 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3842 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
3844 daddiu $reg,<sym> (BFD_RELOC_LO16)
3846 For GP relative symbols in 64bit address space we can use
3847 the same sequence as in 32bit address space. */
3848 if (HAVE_64BIT_SYMBOLS
)
3850 if ((valueT
) ep
->X_add_number
<= MAX_GPREL_OFFSET
3851 && !nopic_need_relax (ep
->X_add_symbol
, 1))
3853 relax_start (ep
->X_add_symbol
);
3854 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
,
3855 mips_gp_register
, BFD_RELOC_GPREL16
);
3859 if (*used_at
== 0 && !mips_opts
.noat
)
3861 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_HIGHEST
);
3862 macro_build (ep
, "lui", "t,u", AT
, BFD_RELOC_HI16_S
);
3863 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
,
3864 BFD_RELOC_MIPS_HIGHER
);
3865 macro_build (ep
, "daddiu", "t,r,j", AT
, AT
, BFD_RELOC_LO16
);
3866 macro_build (NULL
, "dsll32", "d,w,<", reg
, reg
, 0);
3867 macro_build (NULL
, "daddu", "d,v,t", reg
, reg
, AT
);
3872 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_HIGHEST
);
3873 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
,
3874 BFD_RELOC_MIPS_HIGHER
);
3875 macro_build (NULL
, "dsll", "d,w,<", reg
, reg
, 16);
3876 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
, BFD_RELOC_HI16_S
);
3877 macro_build (NULL
, "dsll", "d,w,<", reg
, reg
, 16);
3878 macro_build (ep
, "daddiu", "t,r,j", reg
, reg
, BFD_RELOC_LO16
);
3881 if (mips_relax
.sequence
)
3886 if ((valueT
) ep
->X_add_number
<= MAX_GPREL_OFFSET
3887 && !nopic_need_relax (ep
->X_add_symbol
, 1))
3889 relax_start (ep
->X_add_symbol
);
3890 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
,
3891 mips_gp_register
, BFD_RELOC_GPREL16
);
3894 macro_build_lui (ep
, reg
);
3895 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j",
3896 reg
, reg
, BFD_RELOC_LO16
);
3897 if (mips_relax
.sequence
)
3901 else if (mips_pic
== SVR4_PIC
&& ! mips_big_got
)
3905 /* If this is a reference to an external symbol, we want
3906 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3908 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3910 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3911 If there is a constant, it must be added in after.
3913 If we have NewABI, we want
3914 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
3915 unless we're referencing a global symbol with a non-zero
3916 offset, in which case cst must be added separately. */
3919 if (ep
->X_add_number
)
3921 ex
.X_add_number
= ep
->X_add_number
;
3922 ep
->X_add_number
= 0;
3923 relax_start (ep
->X_add_symbol
);
3924 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
3925 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
3926 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
3927 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3928 ex
.X_op
= O_constant
;
3929 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j",
3930 reg
, reg
, BFD_RELOC_LO16
);
3931 ep
->X_add_number
= ex
.X_add_number
;
3934 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
3935 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
3936 if (mips_relax
.sequence
)
3941 ex
.X_add_number
= ep
->X_add_number
;
3942 ep
->X_add_number
= 0;
3943 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
3944 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
3946 relax_start (ep
->X_add_symbol
);
3948 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
3952 if (ex
.X_add_number
!= 0)
3954 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
3955 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3956 ex
.X_op
= O_constant
;
3957 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j",
3958 reg
, reg
, BFD_RELOC_LO16
);
3962 else if (mips_pic
== SVR4_PIC
)
3966 /* This is the large GOT case. If this is a reference to an
3967 external symbol, we want
3968 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
3970 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
3972 Otherwise, for a reference to a local symbol in old ABI, we want
3973 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3975 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3976 If there is a constant, it must be added in after.
3978 In the NewABI, for local symbols, with or without offsets, we want:
3979 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
3980 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
3984 ex
.X_add_number
= ep
->X_add_number
;
3985 ep
->X_add_number
= 0;
3986 relax_start (ep
->X_add_symbol
);
3987 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_GOT_HI16
);
3988 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
3989 reg
, reg
, mips_gp_register
);
3990 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)",
3991 reg
, BFD_RELOC_MIPS_GOT_LO16
, reg
);
3992 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
3993 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3994 else if (ex
.X_add_number
)
3996 ex
.X_op
= O_constant
;
3997 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4001 ep
->X_add_number
= ex
.X_add_number
;
4003 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4004 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
4005 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4006 BFD_RELOC_MIPS_GOT_OFST
);
4011 ex
.X_add_number
= ep
->X_add_number
;
4012 ep
->X_add_number
= 0;
4013 relax_start (ep
->X_add_symbol
);
4014 macro_build (ep
, "lui", "t,u", reg
, BFD_RELOC_MIPS_GOT_HI16
);
4015 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
4016 reg
, reg
, mips_gp_register
);
4017 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)",
4018 reg
, BFD_RELOC_MIPS_GOT_LO16
, reg
);
4020 if (reg_needs_delay (mips_gp_register
))
4022 /* We need a nop before loading from $gp. This special
4023 check is required because the lui which starts the main
4024 instruction stream does not refer to $gp, and so will not
4025 insert the nop which may be required. */
4026 macro_build (NULL
, "nop", "");
4028 macro_build (ep
, ADDRESS_LOAD_INSN
, "t,o(b)", reg
,
4029 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4031 macro_build (ep
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4035 if (ex
.X_add_number
!= 0)
4037 if (ex
.X_add_number
< -0x8000 || ex
.X_add_number
>= 0x8000)
4038 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4039 ex
.X_op
= O_constant
;
4040 macro_build (&ex
, ADDRESS_ADDI_INSN
, "t,r,j", reg
, reg
,
4048 if (mips_opts
.noat
&& *used_at
== 1)
4049 as_bad (_("Macro used $at after \".set noat\""));
4052 /* Move the contents of register SOURCE into register DEST. */
4055 move_register (int dest
, int source
)
4057 macro_build (NULL
, HAVE_32BIT_GPRS
? "addu" : "daddu", "d,v,t",
4061 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
4062 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4063 The two alternatives are:
4065 Global symbol Local sybmol
4066 ------------- ------------
4067 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4069 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4071 load_got_offset emits the first instruction and add_got_offset
4072 emits the second for a 16-bit offset or add_got_offset_hilo emits
4073 a sequence to add a 32-bit offset using a scratch register. */
4076 load_got_offset (int dest
, expressionS
*local
)
4081 global
.X_add_number
= 0;
4083 relax_start (local
->X_add_symbol
);
4084 macro_build (&global
, ADDRESS_LOAD_INSN
, "t,o(b)", dest
,
4085 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4087 macro_build (local
, ADDRESS_LOAD_INSN
, "t,o(b)", dest
,
4088 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
4093 add_got_offset (int dest
, expressionS
*local
)
4097 global
.X_op
= O_constant
;
4098 global
.X_op_symbol
= NULL
;
4099 global
.X_add_symbol
= NULL
;
4100 global
.X_add_number
= local
->X_add_number
;
4102 relax_start (local
->X_add_symbol
);
4103 macro_build (&global
, ADDRESS_ADDI_INSN
, "t,r,j",
4104 dest
, dest
, BFD_RELOC_LO16
);
4106 macro_build (local
, ADDRESS_ADDI_INSN
, "t,r,j", dest
, dest
, BFD_RELOC_LO16
);
4111 add_got_offset_hilo (int dest
, expressionS
*local
, int tmp
)
4114 int hold_mips_optimize
;
4116 global
.X_op
= O_constant
;
4117 global
.X_op_symbol
= NULL
;
4118 global
.X_add_symbol
= NULL
;
4119 global
.X_add_number
= local
->X_add_number
;
4121 relax_start (local
->X_add_symbol
);
4122 load_register (tmp
, &global
, HAVE_64BIT_ADDRESSES
);
4124 /* Set mips_optimize around the lui instruction to avoid
4125 inserting an unnecessary nop after the lw. */
4126 hold_mips_optimize
= mips_optimize
;
4128 macro_build_lui (&global
, tmp
);
4129 mips_optimize
= hold_mips_optimize
;
4130 macro_build (local
, ADDRESS_ADDI_INSN
, "t,r,j", tmp
, tmp
, BFD_RELOC_LO16
);
4133 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", dest
, dest
, tmp
);
4138 * This routine implements the seemingly endless macro or synthesized
4139 * instructions and addressing modes in the mips assembly language. Many
4140 * of these macros are simple and are similar to each other. These could
4141 * probably be handled by some kind of table or grammar approach instead of
4142 * this verbose method. Others are not simple macros but are more like
4143 * optimizing code generation.
4144 * One interesting optimization is when several store macros appear
4145 * consecutively that would load AT with the upper half of the same address.
4146 * The ensuing load upper instructions are ommited. This implies some kind
4147 * of global optimization. We currently only optimize within a single macro.
4148 * For many of the load and store macros if the address is specified as a
4149 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4150 * first load register 'at' with zero and use it as the base register. The
4151 * mips assembler simply uses register $zero. Just one tiny optimization
4155 macro (struct mips_cl_insn
*ip
)
4157 register int treg
, sreg
, dreg
, breg
;
4173 bfd_reloc_code_real_type r
;
4174 int hold_mips_optimize
;
4176 assert (! mips_opts
.mips16
);
4178 treg
= (ip
->insn_opcode
>> 16) & 0x1f;
4179 dreg
= (ip
->insn_opcode
>> 11) & 0x1f;
4180 sreg
= breg
= (ip
->insn_opcode
>> 21) & 0x1f;
4181 mask
= ip
->insn_mo
->mask
;
4183 expr1
.X_op
= O_constant
;
4184 expr1
.X_op_symbol
= NULL
;
4185 expr1
.X_add_symbol
= NULL
;
4186 expr1
.X_add_number
= 1;
4200 expr1
.X_add_number
= 8;
4201 macro_build (&expr1
, "bgez", "s,p", sreg
);
4203 macro_build (NULL
, "nop", "", 0);
4205 move_register (dreg
, sreg
);
4206 macro_build (NULL
, dbl
? "dsub" : "sub", "d,v,t", dreg
, 0, sreg
);
4229 if (imm_expr
.X_op
== O_constant
4230 && imm_expr
.X_add_number
>= -0x8000
4231 && imm_expr
.X_add_number
< 0x8000)
4233 macro_build (&imm_expr
, s
, "t,r,j", treg
, sreg
, BFD_RELOC_LO16
);
4237 load_register (AT
, &imm_expr
, dbl
);
4238 macro_build (NULL
, s2
, "d,v,t", treg
, sreg
, AT
);
4257 if (imm_expr
.X_op
== O_constant
4258 && imm_expr
.X_add_number
>= 0
4259 && imm_expr
.X_add_number
< 0x10000)
4261 if (mask
!= M_NOR_I
)
4262 macro_build (&imm_expr
, s
, "t,r,i", treg
, sreg
, BFD_RELOC_LO16
);
4265 macro_build (&imm_expr
, "ori", "t,r,i",
4266 treg
, sreg
, BFD_RELOC_LO16
);
4267 macro_build (NULL
, "nor", "d,v,t", treg
, treg
, 0);
4273 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
4274 macro_build (NULL
, s2
, "d,v,t", treg
, sreg
, AT
);
4291 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4293 macro_build (&offset_expr
, s
, "s,t,p", sreg
, 0);
4297 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
4298 macro_build (&offset_expr
, s
, "s,t,p", sreg
, AT
);
4306 macro_build (&offset_expr
, likely
? "bgezl" : "bgez", "s,p", sreg
);
4311 macro_build (&offset_expr
, likely
? "blezl" : "blez", "s,p", treg
);
4315 macro_build (NULL
, "slt", "d,v,t", AT
, sreg
, treg
);
4316 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4322 /* check for > max integer */
4323 maxnum
= 0x7fffffff;
4324 if (HAVE_64BIT_GPRS
&& sizeof (maxnum
) > 4)
4331 if (imm_expr
.X_op
== O_constant
4332 && imm_expr
.X_add_number
>= maxnum
4333 && (HAVE_32BIT_GPRS
|| sizeof (maxnum
) > 4))
4336 /* result is always false */
4338 macro_build (NULL
, "nop", "", 0);
4340 macro_build (&offset_expr
, "bnel", "s,t,p", 0, 0);
4343 if (imm_expr
.X_op
!= O_constant
)
4344 as_bad (_("Unsupported large constant"));
4345 ++imm_expr
.X_add_number
;
4349 if (mask
== M_BGEL_I
)
4351 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4353 macro_build (&offset_expr
, likely
? "bgezl" : "bgez", "s,p", sreg
);
4356 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
4358 macro_build (&offset_expr
, likely
? "bgtzl" : "bgtz", "s,p", sreg
);
4361 maxnum
= 0x7fffffff;
4362 if (HAVE_64BIT_GPRS
&& sizeof (maxnum
) > 4)
4369 maxnum
= - maxnum
- 1;
4370 if (imm_expr
.X_op
== O_constant
4371 && imm_expr
.X_add_number
<= maxnum
4372 && (HAVE_32BIT_GPRS
|| sizeof (maxnum
) > 4))
4375 /* result is always true */
4376 as_warn (_("Branch %s is always true"), ip
->insn_mo
->name
);
4377 macro_build (&offset_expr
, "b", "p");
4382 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4392 macro_build (&offset_expr
, likely
? "beql" : "beq",
4397 macro_build (NULL
, "sltu", "d,v,t", AT
, sreg
, treg
);
4398 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4406 && imm_expr
.X_op
== O_constant
4407 && imm_expr
.X_add_number
== (offsetT
) 0xffffffff))
4409 if (imm_expr
.X_op
!= O_constant
)
4410 as_bad (_("Unsupported large constant"));
4411 ++imm_expr
.X_add_number
;
4415 if (mask
== M_BGEUL_I
)
4417 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4419 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
4421 macro_build (&offset_expr
, likely
? "bnel" : "bne",
4427 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4435 macro_build (&offset_expr
, likely
? "bgtzl" : "bgtz", "s,p", sreg
);
4440 macro_build (&offset_expr
, likely
? "bltzl" : "bltz", "s,p", treg
);
4444 macro_build (NULL
, "slt", "d,v,t", AT
, treg
, sreg
);
4445 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
4453 macro_build (&offset_expr
, likely
? "bnel" : "bne",
4460 macro_build (NULL
, "sltu", "d,v,t", AT
, treg
, sreg
);
4461 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
4469 macro_build (&offset_expr
, likely
? "blezl" : "blez", "s,p", sreg
);
4474 macro_build (&offset_expr
, likely
? "bgezl" : "bgez", "s,p", treg
);
4478 macro_build (NULL
, "slt", "d,v,t", AT
, treg
, sreg
);
4479 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4485 maxnum
= 0x7fffffff;
4486 if (HAVE_64BIT_GPRS
&& sizeof (maxnum
) > 4)
4493 if (imm_expr
.X_op
== O_constant
4494 && imm_expr
.X_add_number
>= maxnum
4495 && (HAVE_32BIT_GPRS
|| sizeof (maxnum
) > 4))
4497 if (imm_expr
.X_op
!= O_constant
)
4498 as_bad (_("Unsupported large constant"));
4499 ++imm_expr
.X_add_number
;
4503 if (mask
== M_BLTL_I
)
4505 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4507 macro_build (&offset_expr
, likely
? "bltzl" : "bltz", "s,p", sreg
);
4510 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
4512 macro_build (&offset_expr
, likely
? "blezl" : "blez", "s,p", sreg
);
4517 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
4525 macro_build (&offset_expr
, likely
? "beql" : "beq",
4532 macro_build (NULL
, "sltu", "d,v,t", AT
, treg
, sreg
);
4533 macro_build (&offset_expr
, likely
? "beql" : "beq", "s,t,p", AT
, 0);
4541 && imm_expr
.X_op
== O_constant
4542 && imm_expr
.X_add_number
== (offsetT
) 0xffffffff))
4544 if (imm_expr
.X_op
!= O_constant
)
4545 as_bad (_("Unsupported large constant"));
4546 ++imm_expr
.X_add_number
;
4550 if (mask
== M_BLTUL_I
)
4552 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4554 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
4556 macro_build (&offset_expr
, likely
? "beql" : "beq",
4562 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
4570 macro_build (&offset_expr
, likely
? "bltzl" : "bltz", "s,p", sreg
);
4575 macro_build (&offset_expr
, likely
? "bgtzl" : "bgtz", "s,p", treg
);
4579 macro_build (NULL
, "slt", "d,v,t", AT
, sreg
, treg
);
4580 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
4590 macro_build (&offset_expr
, likely
? "bnel" : "bne",
4595 macro_build (NULL
, "sltu", "d,v,t", AT
, sreg
, treg
);
4596 macro_build (&offset_expr
, likely
? "bnel" : "bne", "s,t,p", AT
, 0);
4604 if (imm_expr
.X_op
!= O_constant
|| imm2_expr
.X_op
!= O_constant
)
4606 as_bad (_("Unsupported large constant"));
4611 pos
= (unsigned long) imm_expr
.X_add_number
;
4612 size
= (unsigned long) imm2_expr
.X_add_number
;
4617 as_bad (_("Improper position (%lu)"), pos
);
4620 if (size
== 0 || size
> 64
4621 || (pos
+ size
- 1) > 63)
4623 as_bad (_("Improper extract size (%lu, position %lu)"),
4628 if (size
<= 32 && pos
< 32)
4633 else if (size
<= 32)
4643 macro_build ((expressionS
*) NULL
, s
, fmt
, treg
, sreg
, pos
, size
- 1);
4652 if (imm_expr
.X_op
!= O_constant
|| imm2_expr
.X_op
!= O_constant
)
4654 as_bad (_("Unsupported large constant"));
4659 pos
= (unsigned long) imm_expr
.X_add_number
;
4660 size
= (unsigned long) imm2_expr
.X_add_number
;
4665 as_bad (_("Improper position (%lu)"), pos
);
4668 if (size
== 0 || size
> 64
4669 || (pos
+ size
- 1) > 63)
4671 as_bad (_("Improper insert size (%lu, position %lu)"),
4676 if (pos
< 32 && (pos
+ size
- 1) < 32)
4691 macro_build ((expressionS
*) NULL
, s
, fmt
, treg
, sreg
, pos
,
4708 as_warn (_("Divide by zero."));
4710 macro_build (NULL
, "teq", "s,t,q", 0, 0, 7);
4712 macro_build (NULL
, "break", "c", 7);
4719 macro_build (NULL
, "teq", "s,t,q", treg
, 0, 7);
4720 macro_build (NULL
, dbl
? "ddiv" : "div", "z,s,t", sreg
, treg
);
4724 expr1
.X_add_number
= 8;
4725 macro_build (&expr1
, "bne", "s,t,p", treg
, 0);
4726 macro_build (NULL
, dbl
? "ddiv" : "div", "z,s,t", sreg
, treg
);
4727 macro_build (NULL
, "break", "c", 7);
4729 expr1
.X_add_number
= -1;
4731 load_register (AT
, &expr1
, dbl
);
4732 expr1
.X_add_number
= mips_trap
? (dbl
? 12 : 8) : (dbl
? 20 : 16);
4733 macro_build (&expr1
, "bne", "s,t,p", treg
, AT
);
4736 expr1
.X_add_number
= 1;
4737 load_register (AT
, &expr1
, dbl
);
4738 macro_build (NULL
, "dsll32", "d,w,<", AT
, AT
, 31);
4742 expr1
.X_add_number
= 0x80000000;
4743 macro_build (&expr1
, "lui", "t,u", AT
, BFD_RELOC_HI16
);
4747 macro_build (NULL
, "teq", "s,t,q", sreg
, AT
, 6);
4748 /* We want to close the noreorder block as soon as possible, so
4749 that later insns are available for delay slot filling. */
4754 expr1
.X_add_number
= 8;
4755 macro_build (&expr1
, "bne", "s,t,p", sreg
, AT
);
4756 macro_build (NULL
, "nop", "", 0);
4758 /* We want to close the noreorder block as soon as possible, so
4759 that later insns are available for delay slot filling. */
4762 macro_build (NULL
, "break", "c", 6);
4764 macro_build (NULL
, s
, "d", dreg
);
4803 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
4805 as_warn (_("Divide by zero."));
4807 macro_build (NULL
, "teq", "s,t,q", 0, 0, 7);
4809 macro_build (NULL
, "break", "c", 7);
4812 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 1)
4814 if (strcmp (s2
, "mflo") == 0)
4815 move_register (dreg
, sreg
);
4817 move_register (dreg
, 0);
4820 if (imm_expr
.X_op
== O_constant
4821 && imm_expr
.X_add_number
== -1
4822 && s
[strlen (s
) - 1] != 'u')
4824 if (strcmp (s2
, "mflo") == 0)
4826 macro_build (NULL
, dbl
? "dneg" : "neg", "d,w", dreg
, sreg
);
4829 move_register (dreg
, 0);
4834 load_register (AT
, &imm_expr
, dbl
);
4835 macro_build (NULL
, s
, "z,s,t", sreg
, AT
);
4836 macro_build (NULL
, s2
, "d", dreg
);
4858 macro_build (NULL
, "teq", "s,t,q", treg
, 0, 7);
4859 macro_build (NULL
, s
, "z,s,t", sreg
, treg
);
4860 /* We want to close the noreorder block as soon as possible, so
4861 that later insns are available for delay slot filling. */
4866 expr1
.X_add_number
= 8;
4867 macro_build (&expr1
, "bne", "s,t,p", treg
, 0);
4868 macro_build (NULL
, s
, "z,s,t", sreg
, treg
);
4870 /* We want to close the noreorder block as soon as possible, so
4871 that later insns are available for delay slot filling. */
4873 macro_build (NULL
, "break", "c", 7);
4875 macro_build (NULL
, s2
, "d", dreg
);
4887 /* Load the address of a symbol into a register. If breg is not
4888 zero, we then add a base register to it. */
4890 if (dbl
&& HAVE_32BIT_GPRS
)
4891 as_warn (_("dla used to load 32-bit register"));
4893 if (! dbl
&& HAVE_64BIT_OBJECTS
)
4894 as_warn (_("la used to load 64-bit address"));
4896 if (offset_expr
.X_op
== O_constant
4897 && offset_expr
.X_add_number
>= -0x8000
4898 && offset_expr
.X_add_number
< 0x8000)
4900 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
,
4901 "t,r,j", treg
, sreg
, BFD_RELOC_LO16
);
4905 if (!mips_opts
.noat
&& (treg
== breg
))
4915 if (offset_expr
.X_op
!= O_symbol
4916 && offset_expr
.X_op
!= O_constant
)
4918 as_bad (_("expression too complex"));
4919 offset_expr
.X_op
= O_constant
;
4922 if (offset_expr
.X_op
== O_constant
)
4923 load_register (tempreg
, &offset_expr
, HAVE_64BIT_ADDRESSES
);
4924 else if (mips_pic
== NO_PIC
)
4926 /* If this is a reference to a GP relative symbol, we want
4927 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
4929 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4930 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4931 If we have a constant, we need two instructions anyhow,
4932 so we may as well always use the latter form.
4934 With 64bit address space and a usable $at we want
4935 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4936 lui $at,<sym> (BFD_RELOC_HI16_S)
4937 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4938 daddiu $at,<sym> (BFD_RELOC_LO16)
4940 daddu $tempreg,$tempreg,$at
4942 If $at is already in use, we use a path which is suboptimal
4943 on superscalar processors.
4944 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4945 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4947 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
4949 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
4951 For GP relative symbols in 64bit address space we can use
4952 the same sequence as in 32bit address space. */
4953 if (HAVE_64BIT_SYMBOLS
)
4955 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
4956 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
4958 relax_start (offset_expr
.X_add_symbol
);
4959 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
4960 tempreg
, mips_gp_register
, BFD_RELOC_GPREL16
);
4964 if (used_at
== 0 && !mips_opts
.noat
)
4966 macro_build (&offset_expr
, "lui", "t,u",
4967 tempreg
, BFD_RELOC_MIPS_HIGHEST
);
4968 macro_build (&offset_expr
, "lui", "t,u",
4969 AT
, BFD_RELOC_HI16_S
);
4970 macro_build (&offset_expr
, "daddiu", "t,r,j",
4971 tempreg
, tempreg
, BFD_RELOC_MIPS_HIGHER
);
4972 macro_build (&offset_expr
, "daddiu", "t,r,j",
4973 AT
, AT
, BFD_RELOC_LO16
);
4974 macro_build (NULL
, "dsll32", "d,w,<", tempreg
, tempreg
, 0);
4975 macro_build (NULL
, "daddu", "d,v,t", tempreg
, tempreg
, AT
);
4980 macro_build (&offset_expr
, "lui", "t,u",
4981 tempreg
, BFD_RELOC_MIPS_HIGHEST
);
4982 macro_build (&offset_expr
, "daddiu", "t,r,j",
4983 tempreg
, tempreg
, BFD_RELOC_MIPS_HIGHER
);
4984 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
4985 macro_build (&offset_expr
, "daddiu", "t,r,j",
4986 tempreg
, tempreg
, BFD_RELOC_HI16_S
);
4987 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
4988 macro_build (&offset_expr
, "daddiu", "t,r,j",
4989 tempreg
, tempreg
, BFD_RELOC_LO16
);
4992 if (mips_relax
.sequence
)
4997 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
4998 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
5000 relax_start (offset_expr
.X_add_symbol
);
5001 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5002 tempreg
, mips_gp_register
, BFD_RELOC_GPREL16
);
5005 if (!IS_SEXT_32BIT_NUM (offset_expr
.X_add_number
))
5006 as_bad (_("offset too large"));
5007 macro_build_lui (&offset_expr
, tempreg
);
5008 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5009 tempreg
, tempreg
, BFD_RELOC_LO16
);
5010 if (mips_relax
.sequence
)
5014 else if (mips_pic
== SVR4_PIC
&& ! mips_big_got
&& ! HAVE_NEWABI
)
5016 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT16
;
5018 /* If this is a reference to an external symbol, and there
5019 is no constant, we want
5020 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5021 or for lca or if tempreg is PIC_CALL_REG
5022 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5023 For a local symbol, we want
5024 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5026 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5028 If we have a small constant, and this is a reference to
5029 an external symbol, we want
5030 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5032 addiu $tempreg,$tempreg,<constant>
5033 For a local symbol, we want the same instruction
5034 sequence, but we output a BFD_RELOC_LO16 reloc on the
5037 If we have a large constant, and this is a reference to
5038 an external symbol, we want
5039 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5040 lui $at,<hiconstant>
5041 addiu $at,$at,<loconstant>
5042 addu $tempreg,$tempreg,$at
5043 For a local symbol, we want the same instruction
5044 sequence, but we output a BFD_RELOC_LO16 reloc on the
5048 if (offset_expr
.X_add_number
== 0)
5050 if (breg
== 0 && (call
|| tempreg
== PIC_CALL_REG
))
5051 lw_reloc_type
= (int) BFD_RELOC_MIPS_CALL16
;
5053 relax_start (offset_expr
.X_add_symbol
);
5054 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5055 lw_reloc_type
, mips_gp_register
);
5058 /* We're going to put in an addu instruction using
5059 tempreg, so we may as well insert the nop right
5064 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5065 tempreg
, BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
5067 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5068 tempreg
, tempreg
, BFD_RELOC_LO16
);
5070 /* FIXME: If breg == 0, and the next instruction uses
5071 $tempreg, then if this variant case is used an extra
5072 nop will be generated. */
5074 else if (offset_expr
.X_add_number
>= -0x8000
5075 && offset_expr
.X_add_number
< 0x8000)
5077 load_got_offset (tempreg
, &offset_expr
);
5079 add_got_offset (tempreg
, &offset_expr
);
5083 expr1
.X_add_number
= offset_expr
.X_add_number
;
5084 offset_expr
.X_add_number
=
5085 ((offset_expr
.X_add_number
+ 0x8000) & 0xffff) - 0x8000;
5086 load_got_offset (tempreg
, &offset_expr
);
5087 offset_expr
.X_add_number
= expr1
.X_add_number
;
5088 /* If we are going to add in a base register, and the
5089 target register and the base register are the same,
5090 then we are using AT as a temporary register. Since
5091 we want to load the constant into AT, we add our
5092 current AT (from the global offset table) and the
5093 register into the register now, and pretend we were
5094 not using a base register. */
5098 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5103 add_got_offset_hilo (tempreg
, &offset_expr
, AT
);
5107 else if (mips_pic
== SVR4_PIC
&& ! mips_big_got
&& HAVE_NEWABI
)
5109 int add_breg_early
= 0;
5111 /* If this is a reference to an external, and there is no
5112 constant, or local symbol (*), with or without a
5114 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5115 or for lca or if tempreg is PIC_CALL_REG
5116 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5118 If we have a small constant, and this is a reference to
5119 an external symbol, we want
5120 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5121 addiu $tempreg,$tempreg,<constant>
5123 If we have a large constant, and this is a reference to
5124 an external symbol, we want
5125 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5126 lui $at,<hiconstant>
5127 addiu $at,$at,<loconstant>
5128 addu $tempreg,$tempreg,$at
5130 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
5131 local symbols, even though it introduces an additional
5134 if (offset_expr
.X_add_number
)
5136 expr1
.X_add_number
= offset_expr
.X_add_number
;
5137 offset_expr
.X_add_number
= 0;
5139 relax_start (offset_expr
.X_add_symbol
);
5140 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5141 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5143 if (expr1
.X_add_number
>= -0x8000
5144 && expr1
.X_add_number
< 0x8000)
5146 macro_build (&expr1
, ADDRESS_ADDI_INSN
, "t,r,j",
5147 tempreg
, tempreg
, BFD_RELOC_LO16
);
5149 else if (IS_SEXT_32BIT_NUM (expr1
.X_add_number
+ 0x8000))
5153 /* If we are going to add in a base register, and the
5154 target register and the base register are the same,
5155 then we are using AT as a temporary register. Since
5156 we want to load the constant into AT, we add our
5157 current AT (from the global offset table) and the
5158 register into the register now, and pretend we were
5159 not using a base register. */
5164 assert (tempreg
== AT
);
5165 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5171 load_register (AT
, &expr1
, HAVE_64BIT_ADDRESSES
);
5172 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5178 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5181 offset_expr
.X_add_number
= expr1
.X_add_number
;
5183 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5184 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5187 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5188 treg
, tempreg
, breg
);
5194 else if (breg
== 0 && (call
|| tempreg
== PIC_CALL_REG
))
5196 relax_start (offset_expr
.X_add_symbol
);
5197 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5198 BFD_RELOC_MIPS_CALL16
, mips_gp_register
);
5200 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5201 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5206 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5207 BFD_RELOC_MIPS_GOT_DISP
, mips_gp_register
);
5210 else if (mips_pic
== SVR4_PIC
&& ! HAVE_NEWABI
)
5213 int lui_reloc_type
= (int) BFD_RELOC_MIPS_GOT_HI16
;
5214 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT_LO16
;
5215 int local_reloc_type
= (int) BFD_RELOC_MIPS_GOT16
;
5217 /* This is the large GOT case. If this is a reference to an
5218 external symbol, and there is no constant, we want
5219 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5220 addu $tempreg,$tempreg,$gp
5221 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5222 or for lca or if tempreg is PIC_CALL_REG
5223 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5224 addu $tempreg,$tempreg,$gp
5225 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5226 For a local symbol, we want
5227 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5229 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5231 If we have a small constant, and this is a reference to
5232 an external symbol, we want
5233 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5234 addu $tempreg,$tempreg,$gp
5235 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5237 addiu $tempreg,$tempreg,<constant>
5238 For a local symbol, we want
5239 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5241 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5243 If we have a large constant, and this is a reference to
5244 an external symbol, we want
5245 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5246 addu $tempreg,$tempreg,$gp
5247 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5248 lui $at,<hiconstant>
5249 addiu $at,$at,<loconstant>
5250 addu $tempreg,$tempreg,$at
5251 For a local symbol, we want
5252 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5253 lui $at,<hiconstant>
5254 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5255 addu $tempreg,$tempreg,$at
5258 expr1
.X_add_number
= offset_expr
.X_add_number
;
5259 offset_expr
.X_add_number
= 0;
5260 relax_start (offset_expr
.X_add_symbol
);
5261 gpdelay
= reg_needs_delay (mips_gp_register
);
5262 if (expr1
.X_add_number
== 0 && breg
== 0
5263 && (call
|| tempreg
== PIC_CALL_REG
))
5265 lui_reloc_type
= (int) BFD_RELOC_MIPS_CALL_HI16
;
5266 lw_reloc_type
= (int) BFD_RELOC_MIPS_CALL_LO16
;
5268 macro_build (&offset_expr
, "lui", "t,u", tempreg
, lui_reloc_type
);
5269 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5270 tempreg
, tempreg
, mips_gp_register
);
5271 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5272 tempreg
, lw_reloc_type
, tempreg
);
5273 if (expr1
.X_add_number
== 0)
5277 /* We're going to put in an addu instruction using
5278 tempreg, so we may as well insert the nop right
5283 else if (expr1
.X_add_number
>= -0x8000
5284 && expr1
.X_add_number
< 0x8000)
5287 macro_build (&expr1
, ADDRESS_ADDI_INSN
, "t,r,j",
5288 tempreg
, tempreg
, BFD_RELOC_LO16
);
5294 /* If we are going to add in a base register, and the
5295 target register and the base register are the same,
5296 then we are using AT as a temporary register. Since
5297 we want to load the constant into AT, we add our
5298 current AT (from the global offset table) and the
5299 register into the register now, and pretend we were
5300 not using a base register. */
5305 assert (tempreg
== AT
);
5307 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5312 load_register (AT
, &expr1
, HAVE_64BIT_ADDRESSES
);
5313 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", dreg
, dreg
, AT
);
5317 offset_expr
.X_add_number
=
5318 ((expr1
.X_add_number
+ 0x8000) & 0xffff) - 0x8000;
5323 /* This is needed because this instruction uses $gp, but
5324 the first instruction on the main stream does not. */
5325 macro_build (NULL
, "nop", "");
5328 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5329 local_reloc_type
, mips_gp_register
);
5330 if (expr1
.X_add_number
>= -0x8000
5331 && expr1
.X_add_number
< 0x8000)
5334 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5335 tempreg
, tempreg
, BFD_RELOC_LO16
);
5336 /* FIXME: If add_number is 0, and there was no base
5337 register, the external symbol case ended with a load,
5338 so if the symbol turns out to not be external, and
5339 the next instruction uses tempreg, an unnecessary nop
5340 will be inserted. */
5346 /* We must add in the base register now, as in the
5347 external symbol case. */
5348 assert (tempreg
== AT
);
5350 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5353 /* We set breg to 0 because we have arranged to add
5354 it in in both cases. */
5358 macro_build_lui (&expr1
, AT
);
5359 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5360 AT
, AT
, BFD_RELOC_LO16
);
5361 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5362 tempreg
, tempreg
, AT
);
5367 else if (mips_pic
== SVR4_PIC
&& HAVE_NEWABI
)
5369 int lui_reloc_type
= (int) BFD_RELOC_MIPS_GOT_HI16
;
5370 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT_LO16
;
5371 int add_breg_early
= 0;
5373 /* This is the large GOT case. If this is a reference to an
5374 external symbol, and there is no constant, we want
5375 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5376 add $tempreg,$tempreg,$gp
5377 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5378 or for lca or if tempreg is PIC_CALL_REG
5379 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5380 add $tempreg,$tempreg,$gp
5381 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5383 If we have a small constant, and this is a reference to
5384 an external symbol, we want
5385 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5386 add $tempreg,$tempreg,$gp
5387 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5388 addi $tempreg,$tempreg,<constant>
5390 If we have a large constant, and this is a reference to
5391 an external symbol, we want
5392 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5393 addu $tempreg,$tempreg,$gp
5394 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5395 lui $at,<hiconstant>
5396 addi $at,$at,<loconstant>
5397 add $tempreg,$tempreg,$at
5399 If we have NewABI, and we know it's a local symbol, we want
5400 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5401 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5402 otherwise we have to resort to GOT_HI16/GOT_LO16. */
5404 relax_start (offset_expr
.X_add_symbol
);
5406 expr1
.X_add_number
= offset_expr
.X_add_number
;
5407 offset_expr
.X_add_number
= 0;
5409 if (expr1
.X_add_number
== 0 && breg
== 0
5410 && (call
|| tempreg
== PIC_CALL_REG
))
5412 lui_reloc_type
= (int) BFD_RELOC_MIPS_CALL_HI16
;
5413 lw_reloc_type
= (int) BFD_RELOC_MIPS_CALL_LO16
;
5415 macro_build (&offset_expr
, "lui", "t,u", tempreg
, lui_reloc_type
);
5416 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5417 tempreg
, tempreg
, mips_gp_register
);
5418 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5419 tempreg
, lw_reloc_type
, tempreg
);
5421 if (expr1
.X_add_number
== 0)
5423 else if (expr1
.X_add_number
>= -0x8000
5424 && expr1
.X_add_number
< 0x8000)
5426 macro_build (&expr1
, ADDRESS_ADDI_INSN
, "t,r,j",
5427 tempreg
, tempreg
, BFD_RELOC_LO16
);
5429 else if (IS_SEXT_32BIT_NUM (expr1
.X_add_number
+ 0x8000))
5433 /* If we are going to add in a base register, and the
5434 target register and the base register are the same,
5435 then we are using AT as a temporary register. Since
5436 we want to load the constant into AT, we add our
5437 current AT (from the global offset table) and the
5438 register into the register now, and pretend we were
5439 not using a base register. */
5444 assert (tempreg
== AT
);
5445 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5451 load_register (AT
, &expr1
, HAVE_64BIT_ADDRESSES
);
5452 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", dreg
, dreg
, AT
);
5457 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5460 offset_expr
.X_add_number
= expr1
.X_add_number
;
5461 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
5462 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
5463 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j", tempreg
,
5464 tempreg
, BFD_RELOC_MIPS_GOT_OFST
);
5467 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5468 treg
, tempreg
, breg
);
5478 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", treg
, tempreg
, breg
);
5482 /* The j instruction may not be used in PIC code, since it
5483 requires an absolute address. We convert it to a b
5485 if (mips_pic
== NO_PIC
)
5486 macro_build (&offset_expr
, "j", "a");
5488 macro_build (&offset_expr
, "b", "p");
5491 /* The jal instructions must be handled as macros because when
5492 generating PIC code they expand to multi-instruction
5493 sequences. Normally they are simple instructions. */
5498 if (mips_pic
== NO_PIC
)
5499 macro_build (NULL
, "jalr", "d,s", dreg
, sreg
);
5500 else if (mips_pic
== SVR4_PIC
)
5502 if (sreg
!= PIC_CALL_REG
)
5503 as_warn (_("MIPS PIC call to register other than $25"));
5505 macro_build (NULL
, "jalr", "d,s", dreg
, sreg
);
5508 if (mips_cprestore_offset
< 0)
5509 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5512 if (! mips_frame_reg_valid
)
5514 as_warn (_("No .frame pseudo-op used in PIC code"));
5515 /* Quiet this warning. */
5516 mips_frame_reg_valid
= 1;
5518 if (! mips_cprestore_valid
)
5520 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5521 /* Quiet this warning. */
5522 mips_cprestore_valid
= 1;
5524 expr1
.X_add_number
= mips_cprestore_offset
;
5525 macro_build_ldst_constoffset (&expr1
, ADDRESS_LOAD_INSN
,
5528 HAVE_64BIT_ADDRESSES
);
5538 if (mips_pic
== NO_PIC
)
5539 macro_build (&offset_expr
, "jal", "a");
5540 else if (mips_pic
== SVR4_PIC
)
5542 /* If this is a reference to an external symbol, and we are
5543 using a small GOT, we want
5544 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5548 lw $gp,cprestore($sp)
5549 The cprestore value is set using the .cprestore
5550 pseudo-op. If we are using a big GOT, we want
5551 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5553 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
5557 lw $gp,cprestore($sp)
5558 If the symbol is not external, we want
5559 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5561 addiu $25,$25,<sym> (BFD_RELOC_LO16)
5564 lw $gp,cprestore($sp)
5566 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
5567 sequences above, minus nops, unless the symbol is local,
5568 which enables us to use GOT_PAGE/GOT_OFST (big got) or
5574 relax_start (offset_expr
.X_add_symbol
);
5575 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5576 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL16
,
5579 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5580 PIC_CALL_REG
, BFD_RELOC_MIPS_GOT_DISP
,
5586 relax_start (offset_expr
.X_add_symbol
);
5587 macro_build (&offset_expr
, "lui", "t,u", PIC_CALL_REG
,
5588 BFD_RELOC_MIPS_CALL_HI16
);
5589 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", PIC_CALL_REG
,
5590 PIC_CALL_REG
, mips_gp_register
);
5591 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5592 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL_LO16
,
5595 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5596 PIC_CALL_REG
, BFD_RELOC_MIPS_GOT_PAGE
,
5598 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5599 PIC_CALL_REG
, PIC_CALL_REG
,
5600 BFD_RELOC_MIPS_GOT_OFST
);
5604 macro_build_jalr (&offset_expr
);
5608 relax_start (offset_expr
.X_add_symbol
);
5611 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5612 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL16
,
5621 gpdelay
= reg_needs_delay (mips_gp_register
);
5622 macro_build (&offset_expr
, "lui", "t,u", PIC_CALL_REG
,
5623 BFD_RELOC_MIPS_CALL_HI16
);
5624 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", PIC_CALL_REG
,
5625 PIC_CALL_REG
, mips_gp_register
);
5626 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5627 PIC_CALL_REG
, BFD_RELOC_MIPS_CALL_LO16
,
5632 macro_build (NULL
, "nop", "");
5634 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
5635 PIC_CALL_REG
, BFD_RELOC_MIPS_GOT16
,
5638 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j",
5639 PIC_CALL_REG
, PIC_CALL_REG
, BFD_RELOC_LO16
);
5641 macro_build_jalr (&offset_expr
);
5643 if (mips_cprestore_offset
< 0)
5644 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5647 if (! mips_frame_reg_valid
)
5649 as_warn (_("No .frame pseudo-op used in PIC code"));
5650 /* Quiet this warning. */
5651 mips_frame_reg_valid
= 1;
5653 if (! mips_cprestore_valid
)
5655 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5656 /* Quiet this warning. */
5657 mips_cprestore_valid
= 1;
5659 if (mips_opts
.noreorder
)
5660 macro_build (NULL
, "nop", "");
5661 expr1
.X_add_number
= mips_cprestore_offset
;
5662 macro_build_ldst_constoffset (&expr1
, ADDRESS_LOAD_INSN
,
5665 HAVE_64BIT_ADDRESSES
);
5691 /* Itbl support may require additional care here. */
5696 /* Itbl support may require additional care here. */
5701 /* Itbl support may require additional care here. */
5706 /* Itbl support may require additional care here. */
5718 if (mips_opts
.arch
== CPU_R4650
)
5720 as_bad (_("opcode not supported on this processor"));
5724 /* Itbl support may require additional care here. */
5729 /* Itbl support may require additional care here. */
5734 /* Itbl support may require additional care here. */
5754 if (breg
== treg
|| coproc
|| lr
)
5775 /* Itbl support may require additional care here. */
5780 /* Itbl support may require additional care here. */
5785 /* Itbl support may require additional care here. */
5790 /* Itbl support may require additional care here. */
5806 if (mips_opts
.arch
== CPU_R4650
)
5808 as_bad (_("opcode not supported on this processor"));
5813 /* Itbl support may require additional care here. */
5817 /* Itbl support may require additional care here. */
5822 /* Itbl support may require additional care here. */
5834 /* Itbl support may require additional care here. */
5835 if (mask
== M_LWC1_AB
5836 || mask
== M_SWC1_AB
5837 || mask
== M_LDC1_AB
5838 || mask
== M_SDC1_AB
5847 if (offset_expr
.X_op
!= O_constant
5848 && offset_expr
.X_op
!= O_symbol
)
5850 as_bad (_("expression too complex"));
5851 offset_expr
.X_op
= O_constant
;
5854 if (HAVE_32BIT_ADDRESSES
5855 && !IS_SEXT_32BIT_NUM (offset_expr
.X_add_number
))
5859 sprintf_vma (value
, offset_expr
.X_add_number
);
5860 as_bad (_("Number (0x%s) larger than 32 bits"), value
);
5863 /* A constant expression in PIC code can be handled just as it
5864 is in non PIC code. */
5865 if (offset_expr
.X_op
== O_constant
)
5867 expr1
.X_add_number
= ((offset_expr
.X_add_number
+ 0x8000)
5868 & ~(bfd_vma
) 0xffff);
5869 normalize_address_expr (&expr1
);
5870 load_register (tempreg
, &expr1
, HAVE_64BIT_ADDRESSES
);
5872 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5873 tempreg
, tempreg
, breg
);
5874 macro_build (&offset_expr
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
5876 else if (mips_pic
== NO_PIC
)
5878 /* If this is a reference to a GP relative symbol, and there
5879 is no base register, we want
5880 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
5881 Otherwise, if there is no base register, we want
5882 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5883 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5884 If we have a constant, we need two instructions anyhow,
5885 so we always use the latter form.
5887 If we have a base register, and this is a reference to a
5888 GP relative symbol, we want
5889 addu $tempreg,$breg,$gp
5890 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
5892 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5893 addu $tempreg,$tempreg,$breg
5894 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5895 With a constant we always use the latter case.
5897 With 64bit address space and no base register and $at usable,
5899 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5900 lui $at,<sym> (BFD_RELOC_HI16_S)
5901 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5904 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5905 If we have a base register, we want
5906 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5907 lui $at,<sym> (BFD_RELOC_HI16_S)
5908 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5912 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5914 Without $at we can't generate the optimal path for superscalar
5915 processors here since this would require two temporary registers.
5916 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5917 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5919 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5921 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5922 If we have a base register, we want
5923 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5924 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5926 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5928 daddu $tempreg,$tempreg,$breg
5929 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5931 For GP relative symbols in 64bit address space we can use
5932 the same sequence as in 32bit address space. */
5933 if (HAVE_64BIT_SYMBOLS
)
5935 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
5936 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
5938 relax_start (offset_expr
.X_add_symbol
);
5941 macro_build (&offset_expr
, s
, fmt
, treg
,
5942 BFD_RELOC_GPREL16
, mips_gp_register
);
5946 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
5947 tempreg
, breg
, mips_gp_register
);
5948 macro_build (&offset_expr
, s
, fmt
, treg
,
5949 BFD_RELOC_GPREL16
, tempreg
);
5954 if (used_at
== 0 && !mips_opts
.noat
)
5956 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
5957 BFD_RELOC_MIPS_HIGHEST
);
5958 macro_build (&offset_expr
, "lui", "t,u", AT
,
5960 macro_build (&offset_expr
, "daddiu", "t,r,j", tempreg
,
5961 tempreg
, BFD_RELOC_MIPS_HIGHER
);
5963 macro_build (NULL
, "daddu", "d,v,t", AT
, AT
, breg
);
5964 macro_build (NULL
, "dsll32", "d,w,<", tempreg
, tempreg
, 0);
5965 macro_build (NULL
, "daddu", "d,v,t", tempreg
, tempreg
, AT
);
5966 macro_build (&offset_expr
, s
, fmt
, treg
, BFD_RELOC_LO16
,
5972 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
5973 BFD_RELOC_MIPS_HIGHEST
);
5974 macro_build (&offset_expr
, "daddiu", "t,r,j", tempreg
,
5975 tempreg
, BFD_RELOC_MIPS_HIGHER
);
5976 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
5977 macro_build (&offset_expr
, "daddiu", "t,r,j", tempreg
,
5978 tempreg
, BFD_RELOC_HI16_S
);
5979 macro_build (NULL
, "dsll", "d,w,<", tempreg
, tempreg
, 16);
5981 macro_build (NULL
, "daddu", "d,v,t",
5982 tempreg
, tempreg
, breg
);
5983 macro_build (&offset_expr
, s
, fmt
, treg
,
5984 BFD_RELOC_LO16
, tempreg
);
5987 if (mips_relax
.sequence
)
5994 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
5995 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
5997 relax_start (offset_expr
.X_add_symbol
);
5998 macro_build (&offset_expr
, s
, fmt
, treg
, BFD_RELOC_GPREL16
,
6002 macro_build_lui (&offset_expr
, tempreg
);
6003 macro_build (&offset_expr
, s
, fmt
, treg
,
6004 BFD_RELOC_LO16
, tempreg
);
6005 if (mips_relax
.sequence
)
6010 if ((valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
6011 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
6013 relax_start (offset_expr
.X_add_symbol
);
6014 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6015 tempreg
, breg
, mips_gp_register
);
6016 macro_build (&offset_expr
, s
, fmt
, treg
,
6017 BFD_RELOC_GPREL16
, tempreg
);
6020 macro_build_lui (&offset_expr
, tempreg
);
6021 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6022 tempreg
, tempreg
, breg
);
6023 macro_build (&offset_expr
, s
, fmt
, treg
,
6024 BFD_RELOC_LO16
, tempreg
);
6025 if (mips_relax
.sequence
)
6029 else if (mips_pic
== SVR4_PIC
&& ! mips_big_got
)
6031 int lw_reloc_type
= (int) BFD_RELOC_MIPS_GOT16
;
6033 /* If this is a reference to an external symbol, we want
6034 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6036 <op> $treg,0($tempreg)
6038 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6040 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6041 <op> $treg,0($tempreg)
6044 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6045 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
6047 If there is a base register, we add it to $tempreg before
6048 the <op>. If there is a constant, we stick it in the
6049 <op> instruction. We don't handle constants larger than
6050 16 bits, because we have no way to load the upper 16 bits
6051 (actually, we could handle them for the subset of cases
6052 in which we are not using $at). */
6053 assert (offset_expr
.X_op
== O_symbol
);
6056 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6057 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
6059 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6060 tempreg
, tempreg
, breg
);
6061 macro_build (&offset_expr
, s
, fmt
, treg
,
6062 BFD_RELOC_MIPS_GOT_OFST
, tempreg
);
6065 expr1
.X_add_number
= offset_expr
.X_add_number
;
6066 offset_expr
.X_add_number
= 0;
6067 if (expr1
.X_add_number
< -0x8000
6068 || expr1
.X_add_number
>= 0x8000)
6069 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6070 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6071 lw_reloc_type
, mips_gp_register
);
6073 relax_start (offset_expr
.X_add_symbol
);
6075 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j", tempreg
,
6076 tempreg
, BFD_RELOC_LO16
);
6079 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6080 tempreg
, tempreg
, breg
);
6081 macro_build (&expr1
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6083 else if (mips_pic
== SVR4_PIC
&& ! HAVE_NEWABI
)
6087 /* If this is a reference to an external symbol, we want
6088 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6089 addu $tempreg,$tempreg,$gp
6090 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6091 <op> $treg,0($tempreg)
6093 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6095 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6096 <op> $treg,0($tempreg)
6097 If there is a base register, we add it to $tempreg before
6098 the <op>. If there is a constant, we stick it in the
6099 <op> instruction. We don't handle constants larger than
6100 16 bits, because we have no way to load the upper 16 bits
6101 (actually, we could handle them for the subset of cases
6102 in which we are not using $at). */
6103 assert (offset_expr
.X_op
== O_symbol
);
6104 expr1
.X_add_number
= offset_expr
.X_add_number
;
6105 offset_expr
.X_add_number
= 0;
6106 if (expr1
.X_add_number
< -0x8000
6107 || expr1
.X_add_number
>= 0x8000)
6108 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6109 gpdelay
= reg_needs_delay (mips_gp_register
);
6110 relax_start (offset_expr
.X_add_symbol
);
6111 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6112 BFD_RELOC_MIPS_GOT_HI16
);
6113 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", tempreg
, tempreg
,
6115 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6116 BFD_RELOC_MIPS_GOT_LO16
, tempreg
);
6119 macro_build (NULL
, "nop", "");
6120 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6121 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
6123 macro_build (&offset_expr
, ADDRESS_ADDI_INSN
, "t,r,j", tempreg
,
6124 tempreg
, BFD_RELOC_LO16
);
6128 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6129 tempreg
, tempreg
, breg
);
6130 macro_build (&expr1
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6132 else if (mips_pic
== SVR4_PIC
&& HAVE_NEWABI
)
6134 /* If this is a reference to an external symbol, we want
6135 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6136 add $tempreg,$tempreg,$gp
6137 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6138 <op> $treg,<ofst>($tempreg)
6139 Otherwise, for local symbols, we want:
6140 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6141 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
6142 assert (offset_expr
.X_op
== O_symbol
);
6143 expr1
.X_add_number
= offset_expr
.X_add_number
;
6144 offset_expr
.X_add_number
= 0;
6145 if (expr1
.X_add_number
< -0x8000
6146 || expr1
.X_add_number
>= 0x8000)
6147 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6148 relax_start (offset_expr
.X_add_symbol
);
6149 macro_build (&offset_expr
, "lui", "t,u", tempreg
,
6150 BFD_RELOC_MIPS_GOT_HI16
);
6151 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", tempreg
, tempreg
,
6153 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6154 BFD_RELOC_MIPS_GOT_LO16
, tempreg
);
6156 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6157 tempreg
, tempreg
, breg
);
6158 macro_build (&expr1
, s
, fmt
, treg
, BFD_RELOC_LO16
, tempreg
);
6161 offset_expr
.X_add_number
= expr1
.X_add_number
;
6162 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", tempreg
,
6163 BFD_RELOC_MIPS_GOT_PAGE
, mips_gp_register
);
6165 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6166 tempreg
, tempreg
, breg
);
6167 macro_build (&offset_expr
, s
, fmt
, treg
,
6168 BFD_RELOC_MIPS_GOT_OFST
, tempreg
);
6178 load_register (treg
, &imm_expr
, 0);
6182 load_register (treg
, &imm_expr
, 1);
6186 if (imm_expr
.X_op
== O_constant
)
6189 load_register (AT
, &imm_expr
, 0);
6190 macro_build (NULL
, "mtc1", "t,G", AT
, treg
);
6195 assert (offset_expr
.X_op
== O_symbol
6196 && strcmp (segment_name (S_GET_SEGMENT
6197 (offset_expr
.X_add_symbol
)),
6199 && offset_expr
.X_add_number
== 0);
6200 macro_build (&offset_expr
, "lwc1", "T,o(b)", treg
,
6201 BFD_RELOC_MIPS_LITERAL
, mips_gp_register
);
6206 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6207 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6208 order 32 bits of the value and the low order 32 bits are either
6209 zero or in OFFSET_EXPR. */
6210 if (imm_expr
.X_op
== O_constant
|| imm_expr
.X_op
== O_big
)
6212 if (HAVE_64BIT_GPRS
)
6213 load_register (treg
, &imm_expr
, 1);
6218 if (target_big_endian
)
6230 load_register (hreg
, &imm_expr
, 0);
6233 if (offset_expr
.X_op
== O_absent
)
6234 move_register (lreg
, 0);
6237 assert (offset_expr
.X_op
== O_constant
);
6238 load_register (lreg
, &offset_expr
, 0);
6245 /* We know that sym is in the .rdata section. First we get the
6246 upper 16 bits of the address. */
6247 if (mips_pic
== NO_PIC
)
6249 macro_build_lui (&offset_expr
, AT
);
6252 else if (mips_pic
== SVR4_PIC
)
6254 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", AT
,
6255 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
6261 /* Now we load the register(s). */
6262 if (HAVE_64BIT_GPRS
)
6265 macro_build (&offset_expr
, "ld", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
6270 macro_build (&offset_expr
, "lw", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
6273 /* FIXME: How in the world do we deal with the possible
6275 offset_expr
.X_add_number
+= 4;
6276 macro_build (&offset_expr
, "lw", "t,o(b)",
6277 treg
+ 1, BFD_RELOC_LO16
, AT
);
6283 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
6284 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
6285 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
6286 the value and the low order 32 bits are either zero or in
6288 if (imm_expr
.X_op
== O_constant
|| imm_expr
.X_op
== O_big
)
6291 load_register (AT
, &imm_expr
, HAVE_64BIT_FPRS
);
6292 if (HAVE_64BIT_FPRS
)
6294 assert (HAVE_64BIT_GPRS
);
6295 macro_build (NULL
, "dmtc1", "t,S", AT
, treg
);
6299 macro_build (NULL
, "mtc1", "t,G", AT
, treg
+ 1);
6300 if (offset_expr
.X_op
== O_absent
)
6301 macro_build (NULL
, "mtc1", "t,G", 0, treg
);
6304 assert (offset_expr
.X_op
== O_constant
);
6305 load_register (AT
, &offset_expr
, 0);
6306 macro_build (NULL
, "mtc1", "t,G", AT
, treg
);
6312 assert (offset_expr
.X_op
== O_symbol
6313 && offset_expr
.X_add_number
== 0);
6314 s
= segment_name (S_GET_SEGMENT (offset_expr
.X_add_symbol
));
6315 if (strcmp (s
, ".lit8") == 0)
6317 if (mips_opts
.isa
!= ISA_MIPS1
)
6319 macro_build (&offset_expr
, "ldc1", "T,o(b)", treg
,
6320 BFD_RELOC_MIPS_LITERAL
, mips_gp_register
);
6323 breg
= mips_gp_register
;
6324 r
= BFD_RELOC_MIPS_LITERAL
;
6329 assert (strcmp (s
, RDATA_SECTION_NAME
) == 0);
6331 if (mips_pic
== SVR4_PIC
)
6332 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", AT
,
6333 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
6336 /* FIXME: This won't work for a 64 bit address. */
6337 macro_build_lui (&offset_expr
, AT
);
6340 if (mips_opts
.isa
!= ISA_MIPS1
)
6342 macro_build (&offset_expr
, "ldc1", "T,o(b)",
6343 treg
, BFD_RELOC_LO16
, AT
);
6352 if (mips_opts
.arch
== CPU_R4650
)
6354 as_bad (_("opcode not supported on this processor"));
6357 /* Even on a big endian machine $fn comes before $fn+1. We have
6358 to adjust when loading from memory. */
6361 assert (mips_opts
.isa
== ISA_MIPS1
);
6362 macro_build (&offset_expr
, "lwc1", "T,o(b)",
6363 target_big_endian
? treg
+ 1 : treg
, r
, breg
);
6364 /* FIXME: A possible overflow which I don't know how to deal
6366 offset_expr
.X_add_number
+= 4;
6367 macro_build (&offset_expr
, "lwc1", "T,o(b)",
6368 target_big_endian
? treg
: treg
+ 1, r
, breg
);
6373 * The MIPS assembler seems to check for X_add_number not
6374 * being double aligned and generating:
6377 * addiu at,at,%lo(foo+1)
6380 * But, the resulting address is the same after relocation so why
6381 * generate the extra instruction?
6383 if (mips_opts
.arch
== CPU_R4650
)
6385 as_bad (_("opcode not supported on this processor"));
6388 /* Itbl support may require additional care here. */
6390 if (mips_opts
.isa
!= ISA_MIPS1
)
6401 if (mips_opts
.arch
== CPU_R4650
)
6403 as_bad (_("opcode not supported on this processor"));
6407 if (mips_opts
.isa
!= ISA_MIPS1
)
6415 /* Itbl support may require additional care here. */
6420 if (HAVE_64BIT_GPRS
)
6431 if (HAVE_64BIT_GPRS
)
6441 if (offset_expr
.X_op
!= O_symbol
6442 && offset_expr
.X_op
!= O_constant
)
6444 as_bad (_("expression too complex"));
6445 offset_expr
.X_op
= O_constant
;
6448 if (HAVE_32BIT_ADDRESSES
6449 && !IS_SEXT_32BIT_NUM (offset_expr
.X_add_number
))
6453 sprintf_vma (value
, offset_expr
.X_add_number
);
6454 as_bad (_("Number (0x%s) larger than 32 bits"), value
);
6457 /* Even on a big endian machine $fn comes before $fn+1. We have
6458 to adjust when loading from memory. We set coproc if we must
6459 load $fn+1 first. */
6460 /* Itbl support may require additional care here. */
6461 if (! target_big_endian
)
6464 if (mips_pic
== NO_PIC
6465 || offset_expr
.X_op
== O_constant
)
6467 /* If this is a reference to a GP relative symbol, we want
6468 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6469 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
6470 If we have a base register, we use this
6472 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6473 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
6474 If this is not a GP relative symbol, we want
6475 lui $at,<sym> (BFD_RELOC_HI16_S)
6476 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6477 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6478 If there is a base register, we add it to $at after the
6479 lui instruction. If there is a constant, we always use
6481 if (offset_expr
.X_op
== O_symbol
6482 && (valueT
) offset_expr
.X_add_number
<= MAX_GPREL_OFFSET
6483 && !nopic_need_relax (offset_expr
.X_add_symbol
, 1))
6485 relax_start (offset_expr
.X_add_symbol
);
6488 tempreg
= mips_gp_register
;
6492 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6493 AT
, breg
, mips_gp_register
);
6498 /* Itbl support may require additional care here. */
6499 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
6500 BFD_RELOC_GPREL16
, tempreg
);
6501 offset_expr
.X_add_number
+= 4;
6503 /* Set mips_optimize to 2 to avoid inserting an
6505 hold_mips_optimize
= mips_optimize
;
6507 /* Itbl support may require additional care here. */
6508 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
6509 BFD_RELOC_GPREL16
, tempreg
);
6510 mips_optimize
= hold_mips_optimize
;
6514 /* We just generated two relocs. When tc_gen_reloc
6515 handles this case, it will skip the first reloc and
6516 handle the second. The second reloc already has an
6517 extra addend of 4, which we added above. We must
6518 subtract it out, and then subtract another 4 to make
6519 the first reloc come out right. The second reloc
6520 will come out right because we are going to add 4 to
6521 offset_expr when we build its instruction below.
6523 If we have a symbol, then we don't want to include
6524 the offset, because it will wind up being included
6525 when we generate the reloc. */
6527 if (offset_expr
.X_op
== O_constant
)
6528 offset_expr
.X_add_number
-= 8;
6531 offset_expr
.X_add_number
= -4;
6532 offset_expr
.X_op
= O_constant
;
6536 macro_build_lui (&offset_expr
, AT
);
6538 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
6539 /* Itbl support may require additional care here. */
6540 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
6541 BFD_RELOC_LO16
, AT
);
6542 /* FIXME: How do we handle overflow here? */
6543 offset_expr
.X_add_number
+= 4;
6544 /* Itbl support may require additional care here. */
6545 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
6546 BFD_RELOC_LO16
, AT
);
6547 if (mips_relax
.sequence
)
6550 else if (mips_pic
== SVR4_PIC
&& ! mips_big_got
)
6552 /* If this is a reference to an external symbol, we want
6553 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6558 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6560 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6561 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6562 If there is a base register we add it to $at before the
6563 lwc1 instructions. If there is a constant we include it
6564 in the lwc1 instructions. */
6566 expr1
.X_add_number
= offset_expr
.X_add_number
;
6567 if (expr1
.X_add_number
< -0x8000
6568 || expr1
.X_add_number
>= 0x8000 - 4)
6569 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6570 load_got_offset (AT
, &offset_expr
);
6573 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
6575 /* Set mips_optimize to 2 to avoid inserting an undesired
6577 hold_mips_optimize
= mips_optimize
;
6580 /* Itbl support may require additional care here. */
6581 relax_start (offset_expr
.X_add_symbol
);
6582 macro_build (&expr1
, s
, fmt
, coproc
? treg
+ 1 : treg
,
6583 BFD_RELOC_LO16
, AT
);
6584 expr1
.X_add_number
+= 4;
6585 macro_build (&expr1
, s
, fmt
, coproc
? treg
: treg
+ 1,
6586 BFD_RELOC_LO16
, AT
);
6588 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
6589 BFD_RELOC_LO16
, AT
);
6590 offset_expr
.X_add_number
+= 4;
6591 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
6592 BFD_RELOC_LO16
, AT
);
6595 mips_optimize
= hold_mips_optimize
;
6597 else if (mips_pic
== SVR4_PIC
)
6601 /* If this is a reference to an external symbol, we want
6602 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6604 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
6609 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6611 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6612 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6613 If there is a base register we add it to $at before the
6614 lwc1 instructions. If there is a constant we include it
6615 in the lwc1 instructions. */
6617 expr1
.X_add_number
= offset_expr
.X_add_number
;
6618 offset_expr
.X_add_number
= 0;
6619 if (expr1
.X_add_number
< -0x8000
6620 || expr1
.X_add_number
>= 0x8000 - 4)
6621 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6622 gpdelay
= reg_needs_delay (mips_gp_register
);
6623 relax_start (offset_expr
.X_add_symbol
);
6624 macro_build (&offset_expr
, "lui", "t,u",
6625 AT
, BFD_RELOC_MIPS_GOT_HI16
);
6626 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t",
6627 AT
, AT
, mips_gp_register
);
6628 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)",
6629 AT
, BFD_RELOC_MIPS_GOT_LO16
, AT
);
6632 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
6633 /* Itbl support may require additional care here. */
6634 macro_build (&expr1
, s
, fmt
, coproc
? treg
+ 1 : treg
,
6635 BFD_RELOC_LO16
, AT
);
6636 expr1
.X_add_number
+= 4;
6638 /* Set mips_optimize to 2 to avoid inserting an undesired
6640 hold_mips_optimize
= mips_optimize
;
6642 /* Itbl support may require additional care here. */
6643 macro_build (&expr1
, s
, fmt
, coproc
? treg
: treg
+ 1,
6644 BFD_RELOC_LO16
, AT
);
6645 mips_optimize
= hold_mips_optimize
;
6646 expr1
.X_add_number
-= 4;
6649 offset_expr
.X_add_number
= expr1
.X_add_number
;
6651 macro_build (NULL
, "nop", "");
6652 macro_build (&offset_expr
, ADDRESS_LOAD_INSN
, "t,o(b)", AT
,
6653 BFD_RELOC_MIPS_GOT16
, mips_gp_register
);
6656 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, breg
, AT
);
6657 /* Itbl support may require additional care here. */
6658 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
+ 1 : treg
,
6659 BFD_RELOC_LO16
, AT
);
6660 offset_expr
.X_add_number
+= 4;
6662 /* Set mips_optimize to 2 to avoid inserting an undesired
6664 hold_mips_optimize
= mips_optimize
;
6666 /* Itbl support may require additional care here. */
6667 macro_build (&offset_expr
, s
, fmt
, coproc
? treg
: treg
+ 1,
6668 BFD_RELOC_LO16
, AT
);
6669 mips_optimize
= hold_mips_optimize
;
6683 assert (HAVE_32BIT_ADDRESSES
);
6684 macro_build (&offset_expr
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
6685 offset_expr
.X_add_number
+= 4;
6686 macro_build (&offset_expr
, s
, "t,o(b)", treg
+ 1, BFD_RELOC_LO16
, breg
);
6689 /* New code added to support COPZ instructions.
6690 This code builds table entries out of the macros in mip_opcodes.
6691 R4000 uses interlocks to handle coproc delays.
6692 Other chips (like the R3000) require nops to be inserted for delays.
6694 FIXME: Currently, we require that the user handle delays.
6695 In order to fill delay slots for non-interlocked chips,
6696 we must have a way to specify delays based on the coprocessor.
6697 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
6698 What are the side-effects of the cop instruction?
6699 What cache support might we have and what are its effects?
6700 Both coprocessor & memory require delays. how long???
6701 What registers are read/set/modified?
6703 If an itbl is provided to interpret cop instructions,
6704 this knowledge can be encoded in the itbl spec. */
6718 /* For now we just do C (same as Cz). The parameter will be
6719 stored in insn_opcode by mips_ip. */
6720 macro_build (NULL
, s
, "C", ip
->insn_opcode
);
6724 move_register (dreg
, sreg
);
6727 #ifdef LOSING_COMPILER
6729 /* Try and see if this is a new itbl instruction.
6730 This code builds table entries out of the macros in mip_opcodes.
6731 FIXME: For now we just assemble the expression and pass it's
6732 value along as a 32-bit immediate.
6733 We may want to have the assembler assemble this value,
6734 so that we gain the assembler's knowledge of delay slots,
6736 Would it be more efficient to use mask (id) here? */
6737 if (itbl_have_entries
6738 && (immed_expr
= itbl_assemble (ip
->insn_mo
->name
, "")))
6740 s
= ip
->insn_mo
->name
;
6742 coproc
= ITBL_DECODE_PNUM (immed_expr
);;
6743 macro_build (&immed_expr
, s
, "C");
6749 if (mips_opts
.noat
&& used_at
)
6750 as_bad (_("Macro used $at after \".set noat\""));
6754 macro2 (struct mips_cl_insn
*ip
)
6756 register int treg
, sreg
, dreg
, breg
;
6771 bfd_reloc_code_real_type r
;
6773 treg
= (ip
->insn_opcode
>> 16) & 0x1f;
6774 dreg
= (ip
->insn_opcode
>> 11) & 0x1f;
6775 sreg
= breg
= (ip
->insn_opcode
>> 21) & 0x1f;
6776 mask
= ip
->insn_mo
->mask
;
6778 expr1
.X_op
= O_constant
;
6779 expr1
.X_op_symbol
= NULL
;
6780 expr1
.X_add_symbol
= NULL
;
6781 expr1
.X_add_number
= 1;
6785 #endif /* LOSING_COMPILER */
6790 macro_build (NULL
, dbl
? "dmultu" : "multu", "s,t", sreg
, treg
);
6791 macro_build (NULL
, "mflo", "d", dreg
);
6797 /* The MIPS assembler some times generates shifts and adds. I'm
6798 not trying to be that fancy. GCC should do this for us
6801 load_register (AT
, &imm_expr
, dbl
);
6802 macro_build (NULL
, dbl
? "dmult" : "mult", "s,t", sreg
, AT
);
6803 macro_build (NULL
, "mflo", "d", dreg
);
6819 load_register (AT
, &imm_expr
, dbl
);
6820 macro_build (NULL
, dbl
? "dmult" : "mult", "s,t", sreg
, imm
? AT
: treg
);
6821 macro_build (NULL
, "mflo", "d", dreg
);
6822 macro_build (NULL
, dbl
? "dsra32" : "sra", "d,w,<", dreg
, dreg
, RA
);
6823 macro_build (NULL
, "mfhi", "d", AT
);
6825 macro_build (NULL
, "tne", "s,t,q", dreg
, AT
, 6);
6828 expr1
.X_add_number
= 8;
6829 macro_build (&expr1
, "beq", "s,t,p", dreg
, AT
);
6830 macro_build (NULL
, "nop", "", 0);
6831 macro_build (NULL
, "break", "c", 6);
6834 macro_build (NULL
, "mflo", "d", dreg
);
6850 load_register (AT
, &imm_expr
, dbl
);
6851 macro_build (NULL
, dbl
? "dmultu" : "multu", "s,t",
6852 sreg
, imm
? AT
: treg
);
6853 macro_build (NULL
, "mfhi", "d", AT
);
6854 macro_build (NULL
, "mflo", "d", dreg
);
6856 macro_build (NULL
, "tne", "s,t,q", AT
, 0, 6);
6859 expr1
.X_add_number
= 8;
6860 macro_build (&expr1
, "beq", "s,t,p", AT
, 0);
6861 macro_build (NULL
, "nop", "", 0);
6862 macro_build (NULL
, "break", "c", 6);
6868 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
6879 macro_build (NULL
, "dnegu", "d,w", tempreg
, treg
);
6880 macro_build (NULL
, "drorv", "d,t,s", dreg
, sreg
, tempreg
);
6884 macro_build (NULL
, "dsubu", "d,v,t", AT
, 0, treg
);
6885 macro_build (NULL
, "dsrlv", "d,t,s", AT
, sreg
, AT
);
6886 macro_build (NULL
, "dsllv", "d,t,s", dreg
, sreg
, treg
);
6887 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
6891 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
6902 macro_build (NULL
, "negu", "d,w", tempreg
, treg
);
6903 macro_build (NULL
, "rorv", "d,t,s", dreg
, sreg
, tempreg
);
6907 macro_build (NULL
, "subu", "d,v,t", AT
, 0, treg
);
6908 macro_build (NULL
, "srlv", "d,t,s", AT
, sreg
, AT
);
6909 macro_build (NULL
, "sllv", "d,t,s", dreg
, sreg
, treg
);
6910 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
6918 if (imm_expr
.X_op
!= O_constant
)
6919 as_bad (_("Improper rotate count"));
6920 rot
= imm_expr
.X_add_number
& 0x3f;
6921 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
6923 rot
= (64 - rot
) & 0x3f;
6925 macro_build (NULL
, "dror32", "d,w,<", dreg
, sreg
, rot
- 32);
6927 macro_build (NULL
, "dror", "d,w,<", dreg
, sreg
, rot
);
6932 macro_build (NULL
, "dsrl", "d,w,<", dreg
, sreg
, 0);
6935 l
= (rot
< 0x20) ? "dsll" : "dsll32";
6936 r
= ((0x40 - rot
) < 0x20) ? "dsrl" : "dsrl32";
6939 macro_build (NULL
, l
, "d,w,<", AT
, sreg
, rot
);
6940 macro_build (NULL
, r
, "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
6941 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
6949 if (imm_expr
.X_op
!= O_constant
)
6950 as_bad (_("Improper rotate count"));
6951 rot
= imm_expr
.X_add_number
& 0x1f;
6952 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
6954 macro_build (NULL
, "ror", "d,w,<", dreg
, sreg
, (32 - rot
) & 0x1f);
6959 macro_build (NULL
, "srl", "d,w,<", dreg
, sreg
, 0);
6963 macro_build (NULL
, "sll", "d,w,<", AT
, sreg
, rot
);
6964 macro_build (NULL
, "srl", "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
6965 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
6970 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
6972 macro_build (NULL
, "drorv", "d,t,s", dreg
, sreg
, treg
);
6976 macro_build (NULL
, "dsubu", "d,v,t", AT
, 0, treg
);
6977 macro_build (NULL
, "dsllv", "d,t,s", AT
, sreg
, AT
);
6978 macro_build (NULL
, "dsrlv", "d,t,s", dreg
, sreg
, treg
);
6979 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
6983 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
6985 macro_build (NULL
, "rorv", "d,t,s", dreg
, sreg
, treg
);
6989 macro_build (NULL
, "subu", "d,v,t", AT
, 0, treg
);
6990 macro_build (NULL
, "sllv", "d,t,s", AT
, sreg
, AT
);
6991 macro_build (NULL
, "srlv", "d,t,s", dreg
, sreg
, treg
);
6992 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7000 if (imm_expr
.X_op
!= O_constant
)
7001 as_bad (_("Improper rotate count"));
7002 rot
= imm_expr
.X_add_number
& 0x3f;
7003 if (ISA_HAS_DROR (mips_opts
.isa
) || CPU_HAS_DROR (mips_opts
.arch
))
7006 macro_build (NULL
, "dror32", "d,w,<", dreg
, sreg
, rot
- 32);
7008 macro_build (NULL
, "dror", "d,w,<", dreg
, sreg
, rot
);
7013 macro_build (NULL
, "dsrl", "d,w,<", dreg
, sreg
, 0);
7016 r
= (rot
< 0x20) ? "dsrl" : "dsrl32";
7017 l
= ((0x40 - rot
) < 0x20) ? "dsll" : "dsll32";
7020 macro_build (NULL
, r
, "d,w,<", AT
, sreg
, rot
);
7021 macro_build (NULL
, l
, "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7022 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7030 if (imm_expr
.X_op
!= O_constant
)
7031 as_bad (_("Improper rotate count"));
7032 rot
= imm_expr
.X_add_number
& 0x1f;
7033 if (ISA_HAS_ROR (mips_opts
.isa
) || CPU_HAS_ROR (mips_opts
.arch
))
7035 macro_build (NULL
, "ror", "d,w,<", dreg
, sreg
, rot
);
7040 macro_build (NULL
, "srl", "d,w,<", dreg
, sreg
, 0);
7044 macro_build (NULL
, "srl", "d,w,<", AT
, sreg
, rot
);
7045 macro_build (NULL
, "sll", "d,w,<", dreg
, sreg
, (0x20 - rot
) & 0x1f);
7046 macro_build (NULL
, "or", "d,v,t", dreg
, dreg
, AT
);
7051 if (mips_opts
.arch
== CPU_R4650
)
7053 as_bad (_("opcode not supported on this processor"));
7056 assert (mips_opts
.isa
== ISA_MIPS1
);
7057 /* Even on a big endian machine $fn comes before $fn+1. We have
7058 to adjust when storing to memory. */
7059 macro_build (&offset_expr
, "swc1", "T,o(b)",
7060 target_big_endian
? treg
+ 1 : treg
, BFD_RELOC_LO16
, breg
);
7061 offset_expr
.X_add_number
+= 4;
7062 macro_build (&offset_expr
, "swc1", "T,o(b)",
7063 target_big_endian
? treg
: treg
+ 1, BFD_RELOC_LO16
, breg
);
7068 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, treg
, BFD_RELOC_LO16
);
7070 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7073 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, treg
);
7074 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, dreg
, BFD_RELOC_LO16
);
7079 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
7081 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7086 as_warn (_("Instruction %s: result is always false"),
7088 move_register (dreg
, 0);
7091 if (imm_expr
.X_op
== O_constant
7092 && imm_expr
.X_add_number
>= 0
7093 && imm_expr
.X_add_number
< 0x10000)
7095 macro_build (&imm_expr
, "xori", "t,r,i", dreg
, sreg
, BFD_RELOC_LO16
);
7097 else if (imm_expr
.X_op
== O_constant
7098 && imm_expr
.X_add_number
> -0x8000
7099 && imm_expr
.X_add_number
< 0)
7101 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7102 macro_build (&imm_expr
, HAVE_32BIT_GPRS
? "addiu" : "daddiu",
7103 "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7107 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7108 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, AT
);
7111 macro_build (&expr1
, "sltiu", "t,r,j", dreg
, dreg
, BFD_RELOC_LO16
);
7114 case M_SGE
: /* sreg >= treg <==> not (sreg < treg) */
7120 macro_build (NULL
, s
, "d,v,t", dreg
, sreg
, treg
);
7121 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7124 case M_SGE_I
: /* sreg >= I <==> not (sreg < I) */
7126 if (imm_expr
.X_op
== O_constant
7127 && imm_expr
.X_add_number
>= -0x8000
7128 && imm_expr
.X_add_number
< 0x8000)
7130 macro_build (&imm_expr
, mask
== M_SGE_I
? "slti" : "sltiu", "t,r,j",
7131 dreg
, sreg
, BFD_RELOC_LO16
);
7135 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7136 macro_build (NULL
, mask
== M_SGE_I
? "slt" : "sltu", "d,v,t",
7140 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7143 case M_SGT
: /* sreg > treg <==> treg < sreg */
7149 macro_build (NULL
, s
, "d,v,t", dreg
, treg
, sreg
);
7152 case M_SGT_I
: /* sreg > I <==> I < sreg */
7159 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7160 macro_build (NULL
, s
, "d,v,t", dreg
, AT
, sreg
);
7163 case M_SLE
: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
7169 macro_build (NULL
, s
, "d,v,t", dreg
, treg
, sreg
);
7170 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7173 case M_SLE_I
: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
7180 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7181 macro_build (NULL
, s
, "d,v,t", dreg
, AT
, sreg
);
7182 macro_build (&expr1
, "xori", "t,r,i", dreg
, dreg
, BFD_RELOC_LO16
);
7186 if (imm_expr
.X_op
== O_constant
7187 && imm_expr
.X_add_number
>= -0x8000
7188 && imm_expr
.X_add_number
< 0x8000)
7190 macro_build (&imm_expr
, "slti", "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7194 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7195 macro_build (NULL
, "slt", "d,v,t", dreg
, sreg
, AT
);
7199 if (imm_expr
.X_op
== O_constant
7200 && imm_expr
.X_add_number
>= -0x8000
7201 && imm_expr
.X_add_number
< 0x8000)
7203 macro_build (&imm_expr
, "sltiu", "t,r,j", dreg
, sreg
,
7208 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7209 macro_build (NULL
, "sltu", "d,v,t", dreg
, sreg
, AT
);
7214 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, treg
);
7216 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, sreg
);
7219 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, treg
);
7220 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, dreg
);
7225 if (imm_expr
.X_op
== O_constant
&& imm_expr
.X_add_number
== 0)
7227 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, sreg
);
7232 as_warn (_("Instruction %s: result is always true"),
7234 macro_build (&expr1
, HAVE_32BIT_GPRS
? "addiu" : "daddiu", "t,r,j",
7235 dreg
, 0, BFD_RELOC_LO16
);
7238 if (imm_expr
.X_op
== O_constant
7239 && imm_expr
.X_add_number
>= 0
7240 && imm_expr
.X_add_number
< 0x10000)
7242 macro_build (&imm_expr
, "xori", "t,r,i", dreg
, sreg
, BFD_RELOC_LO16
);
7244 else if (imm_expr
.X_op
== O_constant
7245 && imm_expr
.X_add_number
> -0x8000
7246 && imm_expr
.X_add_number
< 0)
7248 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7249 macro_build (&imm_expr
, HAVE_32BIT_GPRS
? "addiu" : "daddiu",
7250 "t,r,j", dreg
, sreg
, BFD_RELOC_LO16
);
7254 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7255 macro_build (NULL
, "xor", "d,v,t", dreg
, sreg
, AT
);
7258 macro_build (NULL
, "sltu", "d,v,t", dreg
, 0, dreg
);
7264 if (imm_expr
.X_op
== O_constant
7265 && imm_expr
.X_add_number
> -0x8000
7266 && imm_expr
.X_add_number
<= 0x8000)
7268 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7269 macro_build (&imm_expr
, dbl
? "daddi" : "addi", "t,r,j",
7270 dreg
, sreg
, BFD_RELOC_LO16
);
7274 load_register (AT
, &imm_expr
, dbl
);
7275 macro_build (NULL
, dbl
? "dsub" : "sub", "d,v,t", dreg
, sreg
, AT
);
7281 if (imm_expr
.X_op
== O_constant
7282 && imm_expr
.X_add_number
> -0x8000
7283 && imm_expr
.X_add_number
<= 0x8000)
7285 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7286 macro_build (&imm_expr
, dbl
? "daddiu" : "addiu", "t,r,j",
7287 dreg
, sreg
, BFD_RELOC_LO16
);
7291 load_register (AT
, &imm_expr
, dbl
);
7292 macro_build (NULL
, dbl
? "dsubu" : "subu", "d,v,t", dreg
, sreg
, AT
);
7314 load_register (AT
, &imm_expr
, HAVE_64BIT_GPRS
);
7315 macro_build (NULL
, s
, "s,t", sreg
, AT
);
7320 assert (mips_opts
.isa
== ISA_MIPS1
);
7322 sreg
= (ip
->insn_opcode
>> 11) & 0x1f; /* floating reg */
7323 dreg
= (ip
->insn_opcode
>> 06) & 0x1f; /* floating reg */
7326 * Is the double cfc1 instruction a bug in the mips assembler;
7327 * or is there a reason for it?
7330 macro_build (NULL
, "cfc1", "t,G", treg
, RA
);
7331 macro_build (NULL
, "cfc1", "t,G", treg
, RA
);
7332 macro_build (NULL
, "nop", "");
7333 expr1
.X_add_number
= 3;
7334 macro_build (&expr1
, "ori", "t,r,i", AT
, treg
, BFD_RELOC_LO16
);
7335 expr1
.X_add_number
= 2;
7336 macro_build (&expr1
, "xori", "t,r,i", AT
, AT
, BFD_RELOC_LO16
);
7337 macro_build (NULL
, "ctc1", "t,G", AT
, RA
);
7338 macro_build (NULL
, "nop", "");
7339 macro_build (NULL
, mask
== M_TRUNCWD
? "cvt.w.d" : "cvt.w.s", "D,S",
7341 macro_build (NULL
, "ctc1", "t,G", treg
, RA
);
7342 macro_build (NULL
, "nop", "");
7353 if (offset_expr
.X_add_number
>= 0x7fff)
7354 as_bad (_("operand overflow"));
7355 if (! target_big_endian
)
7356 ++offset_expr
.X_add_number
;
7357 macro_build (&offset_expr
, s
, "t,o(b)", AT
, BFD_RELOC_LO16
, breg
);
7358 if (! target_big_endian
)
7359 --offset_expr
.X_add_number
;
7361 ++offset_expr
.X_add_number
;
7362 macro_build (&offset_expr
, "lbu", "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
7363 macro_build (NULL
, "sll", "d,w,<", AT
, AT
, 8);
7364 macro_build (NULL
, "or", "d,v,t", treg
, treg
, AT
);
7377 if (offset_expr
.X_add_number
>= 0x8000 - off
)
7378 as_bad (_("operand overflow"));
7386 if (! target_big_endian
)
7387 offset_expr
.X_add_number
+= off
;
7388 macro_build (&offset_expr
, s
, "t,o(b)", tempreg
, BFD_RELOC_LO16
, breg
);
7389 if (! target_big_endian
)
7390 offset_expr
.X_add_number
-= off
;
7392 offset_expr
.X_add_number
+= off
;
7393 macro_build (&offset_expr
, s2
, "t,o(b)", tempreg
, BFD_RELOC_LO16
, breg
);
7395 /* If necessary, move the result in tempreg the final destination. */
7396 if (treg
== tempreg
)
7398 /* Protect second load's delay slot. */
7400 move_register (treg
, tempreg
);
7414 load_address (AT
, &offset_expr
, &used_at
);
7416 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
7417 if (! target_big_endian
)
7418 expr1
.X_add_number
= off
;
7420 expr1
.X_add_number
= 0;
7421 macro_build (&expr1
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
7422 if (! target_big_endian
)
7423 expr1
.X_add_number
= 0;
7425 expr1
.X_add_number
= off
;
7426 macro_build (&expr1
, s2
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
7432 load_address (AT
, &offset_expr
, &used_at
);
7434 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
7435 if (target_big_endian
)
7436 expr1
.X_add_number
= 0;
7437 macro_build (&expr1
, mask
== M_ULH_A
? "lb" : "lbu", "t,o(b)",
7438 treg
, BFD_RELOC_LO16
, AT
);
7439 if (target_big_endian
)
7440 expr1
.X_add_number
= 1;
7442 expr1
.X_add_number
= 0;
7443 macro_build (&expr1
, "lbu", "t,o(b)", AT
, BFD_RELOC_LO16
, AT
);
7444 macro_build (NULL
, "sll", "d,w,<", treg
, treg
, 8);
7445 macro_build (NULL
, "or", "d,v,t", treg
, treg
, AT
);
7450 if (offset_expr
.X_add_number
>= 0x7fff)
7451 as_bad (_("operand overflow"));
7452 if (target_big_endian
)
7453 ++offset_expr
.X_add_number
;
7454 macro_build (&offset_expr
, "sb", "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
7455 macro_build (NULL
, "srl", "d,w,<", AT
, treg
, 8);
7456 if (target_big_endian
)
7457 --offset_expr
.X_add_number
;
7459 ++offset_expr
.X_add_number
;
7460 macro_build (&offset_expr
, "sb", "t,o(b)", AT
, BFD_RELOC_LO16
, breg
);
7473 if (offset_expr
.X_add_number
>= 0x8000 - off
)
7474 as_bad (_("operand overflow"));
7475 if (! target_big_endian
)
7476 offset_expr
.X_add_number
+= off
;
7477 macro_build (&offset_expr
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
7478 if (! target_big_endian
)
7479 offset_expr
.X_add_number
-= off
;
7481 offset_expr
.X_add_number
+= off
;
7482 macro_build (&offset_expr
, s2
, "t,o(b)", treg
, BFD_RELOC_LO16
, breg
);
7496 load_address (AT
, &offset_expr
, &used_at
);
7498 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
7499 if (! target_big_endian
)
7500 expr1
.X_add_number
= off
;
7502 expr1
.X_add_number
= 0;
7503 macro_build (&expr1
, s
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
7504 if (! target_big_endian
)
7505 expr1
.X_add_number
= 0;
7507 expr1
.X_add_number
= off
;
7508 macro_build (&expr1
, s2
, "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
7513 load_address (AT
, &offset_expr
, &used_at
);
7515 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", AT
, AT
, breg
);
7516 if (! target_big_endian
)
7517 expr1
.X_add_number
= 0;
7518 macro_build (&expr1
, "sb", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
7519 macro_build (NULL
, "srl", "d,w,<", treg
, treg
, 8);
7520 if (! target_big_endian
)
7521 expr1
.X_add_number
= 1;
7523 expr1
.X_add_number
= 0;
7524 macro_build (&expr1
, "sb", "t,o(b)", treg
, BFD_RELOC_LO16
, AT
);
7525 if (! target_big_endian
)
7526 expr1
.X_add_number
= 0;
7528 expr1
.X_add_number
= 1;
7529 macro_build (&expr1
, "lbu", "t,o(b)", AT
, BFD_RELOC_LO16
, AT
);
7530 macro_build (NULL
, "sll", "d,w,<", treg
, treg
, 8);
7531 macro_build (NULL
, "or", "d,v,t", treg
, treg
, AT
);
7535 /* FIXME: Check if this is one of the itbl macros, since they
7536 are added dynamically. */
7537 as_bad (_("Macro %s not implemented yet"), ip
->insn_mo
->name
);
7540 if (mips_opts
.noat
&& used_at
)
7541 as_bad (_("Macro used $at after \".set noat\""));
7544 /* Implement macros in mips16 mode. */
7547 mips16_macro (struct mips_cl_insn
*ip
)
7550 int xreg
, yreg
, zreg
, tmp
;
7553 const char *s
, *s2
, *s3
;
7555 mask
= ip
->insn_mo
->mask
;
7557 xreg
= MIPS16_EXTRACT_OPERAND (RX
, *ip
);
7558 yreg
= MIPS16_EXTRACT_OPERAND (RY
, *ip
);
7559 zreg
= MIPS16_EXTRACT_OPERAND (RZ
, *ip
);
7561 expr1
.X_op
= O_constant
;
7562 expr1
.X_op_symbol
= NULL
;
7563 expr1
.X_add_symbol
= NULL
;
7564 expr1
.X_add_number
= 1;
7584 macro_build (NULL
, dbl
? "ddiv" : "div", "0,x,y", xreg
, yreg
);
7585 expr1
.X_add_number
= 2;
7586 macro_build (&expr1
, "bnez", "x,p", yreg
);
7587 macro_build (NULL
, "break", "6", 7);
7589 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
7590 since that causes an overflow. We should do that as well,
7591 but I don't see how to do the comparisons without a temporary
7594 macro_build (NULL
, s
, "x", zreg
);
7614 macro_build (NULL
, s
, "0,x,y", xreg
, yreg
);
7615 expr1
.X_add_number
= 2;
7616 macro_build (&expr1
, "bnez", "x,p", yreg
);
7617 macro_build (NULL
, "break", "6", 7);
7619 macro_build (NULL
, s2
, "x", zreg
);
7625 macro_build (NULL
, dbl
? "dmultu" : "multu", "x,y", xreg
, yreg
);
7626 macro_build (NULL
, "mflo", "x", zreg
);
7634 if (imm_expr
.X_op
!= O_constant
)
7635 as_bad (_("Unsupported large constant"));
7636 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7637 macro_build (&imm_expr
, dbl
? "daddiu" : "addiu", "y,x,4", yreg
, xreg
);
7641 if (imm_expr
.X_op
!= O_constant
)
7642 as_bad (_("Unsupported large constant"));
7643 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7644 macro_build (&imm_expr
, "addiu", "x,k", xreg
);
7648 if (imm_expr
.X_op
!= O_constant
)
7649 as_bad (_("Unsupported large constant"));
7650 imm_expr
.X_add_number
= -imm_expr
.X_add_number
;
7651 macro_build (&imm_expr
, "daddiu", "y,j", yreg
);
7673 goto do_reverse_branch
;
7677 goto do_reverse_branch
;
7689 goto do_reverse_branch
;
7700 macro_build (NULL
, s
, "x,y", xreg
, yreg
);
7701 macro_build (&offset_expr
, s2
, "p");
7728 goto do_addone_branch_i
;
7733 goto do_addone_branch_i
;
7748 goto do_addone_branch_i
;
7755 if (imm_expr
.X_op
!= O_constant
)
7756 as_bad (_("Unsupported large constant"));
7757 ++imm_expr
.X_add_number
;
7760 macro_build (&imm_expr
, s
, s3
, xreg
);
7761 macro_build (&offset_expr
, s2
, "p");
7765 expr1
.X_add_number
= 0;
7766 macro_build (&expr1
, "slti", "x,8", yreg
);
7768 move_register (xreg
, yreg
);
7769 expr1
.X_add_number
= 2;
7770 macro_build (&expr1
, "bteqz", "p");
7771 macro_build (NULL
, "neg", "x,w", xreg
, xreg
);
7775 /* For consistency checking, verify that all bits are specified either
7776 by the match/mask part of the instruction definition, or by the
7779 validate_mips_insn (const struct mips_opcode
*opc
)
7781 const char *p
= opc
->args
;
7783 unsigned long used_bits
= opc
->mask
;
7785 if ((used_bits
& opc
->match
) != opc
->match
)
7787 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
7788 opc
->name
, opc
->args
);
7791 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
7801 case 'A': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
7802 case 'B': USE_BITS (OP_MASK_INSMSB
, OP_SH_INSMSB
); break;
7803 case 'C': USE_BITS (OP_MASK_EXTMSBD
, OP_SH_EXTMSBD
); break;
7804 case 'D': USE_BITS (OP_MASK_RD
, OP_SH_RD
);
7805 USE_BITS (OP_MASK_SEL
, OP_SH_SEL
); break;
7806 case 'E': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
7807 case 'F': USE_BITS (OP_MASK_INSMSB
, OP_SH_INSMSB
); break;
7808 case 'G': USE_BITS (OP_MASK_EXTMSBD
, OP_SH_EXTMSBD
); break;
7809 case 'H': USE_BITS (OP_MASK_EXTMSBD
, OP_SH_EXTMSBD
); break;
7811 case 't': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
7812 case 'T': USE_BITS (OP_MASK_RT
, OP_SH_RT
);
7813 USE_BITS (OP_MASK_SEL
, OP_SH_SEL
); break;
7815 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
7816 c
, opc
->name
, opc
->args
);
7820 case '<': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
7821 case '>': USE_BITS (OP_MASK_SHAMT
, OP_SH_SHAMT
); break;
7823 case 'B': USE_BITS (OP_MASK_CODE20
, OP_SH_CODE20
); break;
7824 case 'C': USE_BITS (OP_MASK_COPZ
, OP_SH_COPZ
); break;
7825 case 'D': USE_BITS (OP_MASK_FD
, OP_SH_FD
); break;
7826 case 'E': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
7828 case 'G': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
7829 case 'H': USE_BITS (OP_MASK_SEL
, OP_SH_SEL
); break;
7831 case 'J': USE_BITS (OP_MASK_CODE19
, OP_SH_CODE19
); break;
7832 case 'K': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
7834 case 'M': USE_BITS (OP_MASK_CCC
, OP_SH_CCC
); break;
7835 case 'N': USE_BITS (OP_MASK_BCC
, OP_SH_BCC
); break;
7836 case 'O': USE_BITS (OP_MASK_ALN
, OP_SH_ALN
); break;
7837 case 'Q': USE_BITS (OP_MASK_VSEL
, OP_SH_VSEL
);
7838 USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
7839 case 'R': USE_BITS (OP_MASK_FR
, OP_SH_FR
); break;
7840 case 'S': USE_BITS (OP_MASK_FS
, OP_SH_FS
); break;
7841 case 'T': USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
7842 case 'V': USE_BITS (OP_MASK_FS
, OP_SH_FS
); break;
7843 case 'W': USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
7844 case 'X': USE_BITS (OP_MASK_FD
, OP_SH_FD
); break;
7845 case 'Y': USE_BITS (OP_MASK_FS
, OP_SH_FS
); break;
7846 case 'Z': USE_BITS (OP_MASK_FT
, OP_SH_FT
); break;
7847 case 'a': USE_BITS (OP_MASK_TARGET
, OP_SH_TARGET
); break;
7848 case 'b': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
7849 case 'c': USE_BITS (OP_MASK_CODE
, OP_SH_CODE
); break;
7850 case 'd': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
7852 case 'h': USE_BITS (OP_MASK_PREFX
, OP_SH_PREFX
); break;
7853 case 'i': USE_BITS (OP_MASK_IMMEDIATE
, OP_SH_IMMEDIATE
); break;
7854 case 'j': USE_BITS (OP_MASK_DELTA
, OP_SH_DELTA
); break;
7855 case 'k': USE_BITS (OP_MASK_CACHE
, OP_SH_CACHE
); break;
7857 case 'o': USE_BITS (OP_MASK_DELTA
, OP_SH_DELTA
); break;
7858 case 'p': USE_BITS (OP_MASK_DELTA
, OP_SH_DELTA
); break;
7859 case 'q': USE_BITS (OP_MASK_CODE2
, OP_SH_CODE2
); break;
7860 case 'r': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
7861 case 's': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
7862 case 't': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
7863 case 'u': USE_BITS (OP_MASK_IMMEDIATE
, OP_SH_IMMEDIATE
); break;
7864 case 'v': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
7865 case 'w': USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
7868 case 'P': USE_BITS (OP_MASK_PERFREG
, OP_SH_PERFREG
); break;
7869 case 'U': USE_BITS (OP_MASK_RD
, OP_SH_RD
);
7870 USE_BITS (OP_MASK_RT
, OP_SH_RT
); break;
7871 case 'e': USE_BITS (OP_MASK_VECBYTE
, OP_SH_VECBYTE
); break;
7872 case '%': USE_BITS (OP_MASK_VECALIGN
, OP_SH_VECALIGN
); break;
7875 case '3': USE_BITS (OP_MASK_SA3
, OP_SH_SA3
); break;
7876 case '4': USE_BITS (OP_MASK_SA4
, OP_SH_SA4
); break;
7877 case '5': USE_BITS (OP_MASK_IMM8
, OP_SH_IMM8
); break;
7878 case '6': USE_BITS (OP_MASK_RS
, OP_SH_RS
); break;
7879 case '7': USE_BITS (OP_MASK_DSPACC
, OP_SH_DSPACC
); break;
7880 case '8': USE_BITS (OP_MASK_WRDSP
, OP_SH_WRDSP
); break;
7881 case '9': USE_BITS (OP_MASK_DSPACC_S
, OP_SH_DSPACC_S
);break;
7882 case '0': USE_BITS (OP_MASK_DSPSFT
, OP_SH_DSPSFT
); break;
7883 case '\'': USE_BITS (OP_MASK_RDDSP
, OP_SH_RDDSP
); break;
7884 case ':': USE_BITS (OP_MASK_DSPSFT_7
, OP_SH_DSPSFT_7
);break;
7885 case '@': USE_BITS (OP_MASK_IMM10
, OP_SH_IMM10
); break;
7886 case '!': USE_BITS (OP_MASK_MT_U
, OP_SH_MT_U
); break;
7887 case '$': USE_BITS (OP_MASK_MT_H
, OP_SH_MT_H
); break;
7888 case '*': USE_BITS (OP_MASK_MTACC_T
, OP_SH_MTACC_T
); break;
7889 case '&': USE_BITS (OP_MASK_MTACC_D
, OP_SH_MTACC_D
); break;
7890 case 'g': USE_BITS (OP_MASK_RD
, OP_SH_RD
); break;
7892 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
7893 c
, opc
->name
, opc
->args
);
7897 if (used_bits
!= 0xffffffff)
7899 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
7900 ~used_bits
& 0xffffffff, opc
->name
, opc
->args
);
7906 /* This routine assembles an instruction into its binary format. As a
7907 side effect, it sets one of the global variables imm_reloc or
7908 offset_reloc to the type of relocation to do if one of the operands
7909 is an address expression. */
7912 mips_ip (char *str
, struct mips_cl_insn
*ip
)
7917 struct mips_opcode
*insn
;
7920 unsigned int lastregno
= 0;
7921 unsigned int lastpos
= 0;
7922 unsigned int limlo
, limhi
;
7925 offsetT min_range
, max_range
;
7929 /* If the instruction contains a '.', we first try to match an instruction
7930 including the '.'. Then we try again without the '.'. */
7932 for (s
= str
; *s
!= '\0' && !ISSPACE (*s
); ++s
)
7935 /* If we stopped on whitespace, then replace the whitespace with null for
7936 the call to hash_find. Save the character we replaced just in case we
7937 have to re-parse the instruction. */
7944 insn
= (struct mips_opcode
*) hash_find (op_hash
, str
);
7946 /* If we didn't find the instruction in the opcode table, try again, but
7947 this time with just the instruction up to, but not including the
7951 /* Restore the character we overwrite above (if any). */
7955 /* Scan up to the first '.' or whitespace. */
7957 *s
!= '\0' && *s
!= '.' && !ISSPACE (*s
);
7961 /* If we did not find a '.', then we can quit now. */
7964 insn_error
= "unrecognized opcode";
7968 /* Lookup the instruction in the hash table. */
7970 if ((insn
= (struct mips_opcode
*) hash_find (op_hash
, str
)) == NULL
)
7972 insn_error
= "unrecognized opcode";
7982 assert (strcmp (insn
->name
, str
) == 0);
7984 if (OPCODE_IS_MEMBER (insn
,
7986 | (file_ase_mips16
? INSN_MIPS16
: 0)
7987 | (mips_opts
.ase_mdmx
? INSN_MDMX
: 0)
7988 | (mips_opts
.ase_dsp
? INSN_DSP
: 0)
7989 | (mips_opts
.ase_mt
? INSN_MT
: 0)
7990 | (mips_opts
.ase_mips3d
? INSN_MIPS3D
: 0)),
7996 if (insn
->pinfo
!= INSN_MACRO
)
7998 if (mips_opts
.arch
== CPU_R4650
&& (insn
->pinfo
& FP_D
) != 0)
8004 if (insn
+ 1 < &mips_opcodes
[NUMOPCODES
]
8005 && strcmp (insn
->name
, insn
[1].name
) == 0)
8014 static char buf
[100];
8016 _("opcode not supported on this processor: %s (%s)"),
8017 mips_cpu_info_from_arch (mips_opts
.arch
)->name
,
8018 mips_cpu_info_from_isa (mips_opts
.isa
)->name
);
8027 create_insn (ip
, insn
);
8029 for (args
= insn
->args
;; ++args
)
8033 s
+= strspn (s
, " \t");
8037 case '\0': /* end of args */
8042 case '3': /* dsp 3-bit unsigned immediate in bit 21 */
8043 my_getExpression (&imm_expr
, s
);
8044 check_absolute_expr (ip
, &imm_expr
);
8045 if (imm_expr
.X_add_number
& ~OP_MASK_SA3
)
8047 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8048 OP_MASK_SA3
, (unsigned long) imm_expr
.X_add_number
);
8049 imm_expr
.X_add_number
&= OP_MASK_SA3
;
8051 ip
->insn_opcode
|= imm_expr
.X_add_number
<< OP_SH_SA3
;
8052 imm_expr
.X_op
= O_absent
;
8056 case '4': /* dsp 4-bit unsigned immediate in bit 21 */
8057 my_getExpression (&imm_expr
, s
);
8058 check_absolute_expr (ip
, &imm_expr
);
8059 if (imm_expr
.X_add_number
& ~OP_MASK_SA4
)
8061 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8062 OP_MASK_SA4
, (unsigned long) imm_expr
.X_add_number
);
8063 imm_expr
.X_add_number
&= OP_MASK_SA4
;
8065 ip
->insn_opcode
|= imm_expr
.X_add_number
<< OP_SH_SA4
;
8066 imm_expr
.X_op
= O_absent
;
8070 case '5': /* dsp 8-bit unsigned immediate in bit 16 */
8071 my_getExpression (&imm_expr
, s
);
8072 check_absolute_expr (ip
, &imm_expr
);
8073 if (imm_expr
.X_add_number
& ~OP_MASK_IMM8
)
8075 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8076 OP_MASK_IMM8
, (unsigned long) imm_expr
.X_add_number
);
8077 imm_expr
.X_add_number
&= OP_MASK_IMM8
;
8079 ip
->insn_opcode
|= imm_expr
.X_add_number
<< OP_SH_IMM8
;
8080 imm_expr
.X_op
= O_absent
;
8084 case '6': /* dsp 5-bit unsigned immediate in bit 21 */
8085 my_getExpression (&imm_expr
, s
);
8086 check_absolute_expr (ip
, &imm_expr
);
8087 if (imm_expr
.X_add_number
& ~OP_MASK_RS
)
8089 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8090 OP_MASK_RS
, (unsigned long) imm_expr
.X_add_number
);
8091 imm_expr
.X_add_number
&= OP_MASK_RS
;
8093 ip
->insn_opcode
|= imm_expr
.X_add_number
<< OP_SH_RS
;
8094 imm_expr
.X_op
= O_absent
;
8098 case '7': /* four dsp accumulators in bits 11,12 */
8099 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8100 s
[3] >= '0' && s
[3] <= '3')
8104 ip
->insn_opcode
|= regno
<< OP_SH_DSPACC
;
8108 as_bad (_("Invalid dsp acc register"));
8111 case '8': /* dsp 6-bit unsigned immediate in bit 11 */
8112 my_getExpression (&imm_expr
, s
);
8113 check_absolute_expr (ip
, &imm_expr
);
8114 if (imm_expr
.X_add_number
& ~OP_MASK_WRDSP
)
8116 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8118 (unsigned long) imm_expr
.X_add_number
);
8119 imm_expr
.X_add_number
&= OP_MASK_WRDSP
;
8121 ip
->insn_opcode
|= imm_expr
.X_add_number
<< OP_SH_WRDSP
;
8122 imm_expr
.X_op
= O_absent
;
8126 case '9': /* four dsp accumulators in bits 21,22 */
8127 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8128 s
[3] >= '0' && s
[3] <= '3')
8132 ip
->insn_opcode
|= regno
<< OP_SH_DSPACC_S
;
8136 as_bad (_("Invalid dsp acc register"));
8139 case '0': /* dsp 6-bit signed immediate in bit 20 */
8140 my_getExpression (&imm_expr
, s
);
8141 check_absolute_expr (ip
, &imm_expr
);
8142 min_range
= -((OP_MASK_DSPSFT
+ 1) >> 1);
8143 max_range
= ((OP_MASK_DSPSFT
+ 1) >> 1) - 1;
8144 if (imm_expr
.X_add_number
< min_range
||
8145 imm_expr
.X_add_number
> max_range
)
8147 as_warn (_("DSP immediate not in range %ld..%ld (%ld)"),
8148 (long) min_range
, (long) max_range
,
8149 (long) imm_expr
.X_add_number
);
8151 imm_expr
.X_add_number
&= OP_MASK_DSPSFT
;
8152 ip
->insn_opcode
|= ((unsigned long) imm_expr
.X_add_number
8154 imm_expr
.X_op
= O_absent
;
8158 case '\'': /* dsp 6-bit unsigned immediate in bit 16 */
8159 my_getExpression (&imm_expr
, s
);
8160 check_absolute_expr (ip
, &imm_expr
);
8161 if (imm_expr
.X_add_number
& ~OP_MASK_RDDSP
)
8163 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8165 (unsigned long) imm_expr
.X_add_number
);
8166 imm_expr
.X_add_number
&= OP_MASK_RDDSP
;
8168 ip
->insn_opcode
|= imm_expr
.X_add_number
<< OP_SH_RDDSP
;
8169 imm_expr
.X_op
= O_absent
;
8173 case ':': /* dsp 7-bit signed immediate in bit 19 */
8174 my_getExpression (&imm_expr
, s
);
8175 check_absolute_expr (ip
, &imm_expr
);
8176 min_range
= -((OP_MASK_DSPSFT_7
+ 1) >> 1);
8177 max_range
= ((OP_MASK_DSPSFT_7
+ 1) >> 1) - 1;
8178 if (imm_expr
.X_add_number
< min_range
||
8179 imm_expr
.X_add_number
> max_range
)
8181 as_warn (_("DSP immediate not in range %ld..%ld (%ld)"),
8182 (long) min_range
, (long) max_range
,
8183 (long) imm_expr
.X_add_number
);
8185 imm_expr
.X_add_number
&= OP_MASK_DSPSFT_7
;
8186 ip
->insn_opcode
|= ((unsigned long) imm_expr
.X_add_number
8188 imm_expr
.X_op
= O_absent
;
8192 case '@': /* dsp 10-bit signed immediate in bit 16 */
8193 my_getExpression (&imm_expr
, s
);
8194 check_absolute_expr (ip
, &imm_expr
);
8195 min_range
= -((OP_MASK_IMM10
+ 1) >> 1);
8196 max_range
= ((OP_MASK_IMM10
+ 1) >> 1) - 1;
8197 if (imm_expr
.X_add_number
< min_range
||
8198 imm_expr
.X_add_number
> max_range
)
8200 as_warn (_("DSP immediate not in range %ld..%ld (%ld)"),
8201 (long) min_range
, (long) max_range
,
8202 (long) imm_expr
.X_add_number
);
8204 imm_expr
.X_add_number
&= OP_MASK_IMM10
;
8205 ip
->insn_opcode
|= ((unsigned long) imm_expr
.X_add_number
8207 imm_expr
.X_op
= O_absent
;
8211 case '!': /* mt 1-bit unsigned immediate in bit 5 */
8212 my_getExpression (&imm_expr
, s
);
8213 check_absolute_expr (ip
, &imm_expr
);
8214 if (imm_expr
.X_add_number
& ~OP_MASK_MT_U
)
8216 as_warn (_("MT immediate not in range 0..%d (%lu)"),
8217 OP_MASK_MT_U
, (unsigned long) imm_expr
.X_add_number
);
8218 imm_expr
.X_add_number
&= OP_MASK_MT_U
;
8220 ip
->insn_opcode
|= imm_expr
.X_add_number
<< OP_SH_MT_U
;
8221 imm_expr
.X_op
= O_absent
;
8225 case '$': /* mt 1-bit unsigned immediate in bit 4 */
8226 my_getExpression (&imm_expr
, s
);
8227 check_absolute_expr (ip
, &imm_expr
);
8228 if (imm_expr
.X_add_number
& ~OP_MASK_MT_H
)
8230 as_warn (_("MT immediate not in range 0..%d (%lu)"),
8231 OP_MASK_MT_H
, (unsigned long) imm_expr
.X_add_number
);
8232 imm_expr
.X_add_number
&= OP_MASK_MT_H
;
8234 ip
->insn_opcode
|= imm_expr
.X_add_number
<< OP_SH_MT_H
;
8235 imm_expr
.X_op
= O_absent
;
8239 case '*': /* four dsp accumulators in bits 18,19 */
8240 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8241 s
[3] >= '0' && s
[3] <= '3')
8245 ip
->insn_opcode
|= regno
<< OP_SH_MTACC_T
;
8249 as_bad (_("Invalid dsp/smartmips acc register"));
8252 case '&': /* four dsp accumulators in bits 13,14 */
8253 if (s
[0] == '$' && s
[1] == 'a' && s
[2] == 'c' &&
8254 s
[3] >= '0' && s
[3] <= '3')
8258 ip
->insn_opcode
|= regno
<< OP_SH_MTACC_D
;
8262 as_bad (_("Invalid dsp/smartmips acc register"));
8273 INSERT_OPERAND (RS
, *ip
, lastregno
);
8277 INSERT_OPERAND (RT
, *ip
, lastregno
);
8281 INSERT_OPERAND (FT
, *ip
, lastregno
);
8285 INSERT_OPERAND (FS
, *ip
, lastregno
);
8291 /* Handle optional base register.
8292 Either the base register is omitted or
8293 we must have a left paren. */
8294 /* This is dependent on the next operand specifier
8295 is a base register specification. */
8296 assert (args
[1] == 'b' || args
[1] == '5'
8297 || args
[1] == '-' || args
[1] == '4');
8301 case ')': /* these must match exactly */
8308 case '+': /* Opcode extension character. */
8311 case 'A': /* ins/ext position, becomes LSB. */
8320 my_getExpression (&imm_expr
, s
);
8321 check_absolute_expr (ip
, &imm_expr
);
8322 if ((unsigned long) imm_expr
.X_add_number
< limlo
8323 || (unsigned long) imm_expr
.X_add_number
> limhi
)
8325 as_bad (_("Improper position (%lu)"),
8326 (unsigned long) imm_expr
.X_add_number
);
8327 imm_expr
.X_add_number
= limlo
;
8329 lastpos
= imm_expr
.X_add_number
;
8330 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
);
8331 imm_expr
.X_op
= O_absent
;
8335 case 'B': /* ins size, becomes MSB. */
8344 my_getExpression (&imm_expr
, s
);
8345 check_absolute_expr (ip
, &imm_expr
);
8346 /* Check for negative input so that small negative numbers
8347 will not succeed incorrectly. The checks against
8348 (pos+size) transitively check "size" itself,
8349 assuming that "pos" is reasonable. */
8350 if ((long) imm_expr
.X_add_number
< 0
8351 || ((unsigned long) imm_expr
.X_add_number
8353 || ((unsigned long) imm_expr
.X_add_number
8356 as_bad (_("Improper insert size (%lu, position %lu)"),
8357 (unsigned long) imm_expr
.X_add_number
,
8358 (unsigned long) lastpos
);
8359 imm_expr
.X_add_number
= limlo
- lastpos
;
8361 INSERT_OPERAND (INSMSB
, *ip
,
8362 lastpos
+ imm_expr
.X_add_number
- 1);
8363 imm_expr
.X_op
= O_absent
;
8367 case 'C': /* ext size, becomes MSBD. */
8380 my_getExpression (&imm_expr
, s
);
8381 check_absolute_expr (ip
, &imm_expr
);
8382 /* Check for negative input so that small negative numbers
8383 will not succeed incorrectly. The checks against
8384 (pos+size) transitively check "size" itself,
8385 assuming that "pos" is reasonable. */
8386 if ((long) imm_expr
.X_add_number
< 0
8387 || ((unsigned long) imm_expr
.X_add_number
8389 || ((unsigned long) imm_expr
.X_add_number
8392 as_bad (_("Improper extract size (%lu, position %lu)"),
8393 (unsigned long) imm_expr
.X_add_number
,
8394 (unsigned long) lastpos
);
8395 imm_expr
.X_add_number
= limlo
- lastpos
;
8397 INSERT_OPERAND (EXTMSBD
, *ip
, imm_expr
.X_add_number
- 1);
8398 imm_expr
.X_op
= O_absent
;
8403 /* +D is for disassembly only; never match. */
8407 /* "+I" is like "I", except that imm2_expr is used. */
8408 my_getExpression (&imm2_expr
, s
);
8409 if (imm2_expr
.X_op
!= O_big
8410 && imm2_expr
.X_op
!= O_constant
)
8411 insn_error
= _("absolute expression required");
8412 if (HAVE_32BIT_GPRS
)
8413 normalize_constant_expr (&imm2_expr
);
8417 case 'T': /* Coprocessor register */
8418 /* +T is for disassembly only; never match. */
8421 case 't': /* Coprocessor register number */
8422 if (s
[0] == '$' && ISDIGIT (s
[1]))
8432 while (ISDIGIT (*s
));
8434 as_bad (_("Invalid register number (%d)"), regno
);
8437 ip
->insn_opcode
|= regno
<< OP_SH_RT
;
8442 as_bad (_("Invalid coprocessor 0 register number"));
8446 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8447 *args
, insn
->name
, insn
->args
);
8448 /* Further processing is fruitless. */
8453 case '<': /* must be at least one digit */
8455 * According to the manual, if the shift amount is greater
8456 * than 31 or less than 0, then the shift amount should be
8457 * mod 32. In reality the mips assembler issues an error.
8458 * We issue a warning and mask out all but the low 5 bits.
8460 my_getExpression (&imm_expr
, s
);
8461 check_absolute_expr (ip
, &imm_expr
);
8462 if ((unsigned long) imm_expr
.X_add_number
> 31)
8463 as_warn (_("Improper shift amount (%lu)"),
8464 (unsigned long) imm_expr
.X_add_number
);
8465 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
);
8466 imm_expr
.X_op
= O_absent
;
8470 case '>': /* shift amount minus 32 */
8471 my_getExpression (&imm_expr
, s
);
8472 check_absolute_expr (ip
, &imm_expr
);
8473 if ((unsigned long) imm_expr
.X_add_number
< 32
8474 || (unsigned long) imm_expr
.X_add_number
> 63)
8476 INSERT_OPERAND (SHAMT
, *ip
, imm_expr
.X_add_number
- 32);
8477 imm_expr
.X_op
= O_absent
;
8481 case 'k': /* cache code */
8482 case 'h': /* prefx code */
8483 my_getExpression (&imm_expr
, s
);
8484 check_absolute_expr (ip
, &imm_expr
);
8485 if ((unsigned long) imm_expr
.X_add_number
> 31)
8486 as_warn (_("Invalid value for `%s' (%lu)"),
8488 (unsigned long) imm_expr
.X_add_number
);
8490 INSERT_OPERAND (CACHE
, *ip
, imm_expr
.X_add_number
);
8492 INSERT_OPERAND (PREFX
, *ip
, imm_expr
.X_add_number
);
8493 imm_expr
.X_op
= O_absent
;
8497 case 'c': /* break code */
8498 my_getExpression (&imm_expr
, s
);
8499 check_absolute_expr (ip
, &imm_expr
);
8500 if ((unsigned long) imm_expr
.X_add_number
> 1023)
8501 as_warn (_("Illegal break code (%lu)"),
8502 (unsigned long) imm_expr
.X_add_number
);
8503 INSERT_OPERAND (CODE
, *ip
, imm_expr
.X_add_number
);
8504 imm_expr
.X_op
= O_absent
;
8508 case 'q': /* lower break code */
8509 my_getExpression (&imm_expr
, s
);
8510 check_absolute_expr (ip
, &imm_expr
);
8511 if ((unsigned long) imm_expr
.X_add_number
> 1023)
8512 as_warn (_("Illegal lower break code (%lu)"),
8513 (unsigned long) imm_expr
.X_add_number
);
8514 INSERT_OPERAND (CODE2
, *ip
, imm_expr
.X_add_number
);
8515 imm_expr
.X_op
= O_absent
;
8519 case 'B': /* 20-bit syscall/break code. */
8520 my_getExpression (&imm_expr
, s
);
8521 check_absolute_expr (ip
, &imm_expr
);
8522 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE20
)
8523 as_warn (_("Illegal 20-bit code (%lu)"),
8524 (unsigned long) imm_expr
.X_add_number
);
8525 INSERT_OPERAND (CODE20
, *ip
, imm_expr
.X_add_number
);
8526 imm_expr
.X_op
= O_absent
;
8530 case 'C': /* Coprocessor code */
8531 my_getExpression (&imm_expr
, s
);
8532 check_absolute_expr (ip
, &imm_expr
);
8533 if ((unsigned long) imm_expr
.X_add_number
>= (1 << 25))
8535 as_warn (_("Coproccesor code > 25 bits (%lu)"),
8536 (unsigned long) imm_expr
.X_add_number
);
8537 imm_expr
.X_add_number
&= ((1 << 25) - 1);
8539 ip
->insn_opcode
|= imm_expr
.X_add_number
;
8540 imm_expr
.X_op
= O_absent
;
8544 case 'J': /* 19-bit wait code. */
8545 my_getExpression (&imm_expr
, s
);
8546 check_absolute_expr (ip
, &imm_expr
);
8547 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_CODE19
)
8548 as_warn (_("Illegal 19-bit code (%lu)"),
8549 (unsigned long) imm_expr
.X_add_number
);
8550 INSERT_OPERAND (CODE19
, *ip
, imm_expr
.X_add_number
);
8551 imm_expr
.X_op
= O_absent
;
8555 case 'P': /* Performance register */
8556 my_getExpression (&imm_expr
, s
);
8557 check_absolute_expr (ip
, &imm_expr
);
8558 if (imm_expr
.X_add_number
!= 0 && imm_expr
.X_add_number
!= 1)
8559 as_warn (_("Invalid performance register (%lu)"),
8560 (unsigned long) imm_expr
.X_add_number
);
8561 INSERT_OPERAND (PERFREG
, *ip
, imm_expr
.X_add_number
);
8562 imm_expr
.X_op
= O_absent
;
8566 case 'b': /* base register */
8567 case 'd': /* destination register */
8568 case 's': /* source register */
8569 case 't': /* target register */
8570 case 'r': /* both target and source */
8571 case 'v': /* both dest and source */
8572 case 'w': /* both dest and target */
8573 case 'E': /* coprocessor target register */
8574 case 'G': /* coprocessor destination register */
8575 case 'K': /* 'rdhwr' destination register */
8576 case 'x': /* ignore register name */
8577 case 'z': /* must be zero register */
8578 case 'U': /* destination register (clo/clz). */
8579 case 'g': /* coprocessor destination register */
8593 while (ISDIGIT (*s
));
8595 as_bad (_("Invalid register number (%d)"), regno
);
8597 else if (*args
== 'E' || *args
== 'G' || *args
== 'K')
8601 if (s
[1] == 'r' && s
[2] == 'a')
8606 else if (s
[1] == 'f' && s
[2] == 'p')
8611 else if (s
[1] == 's' && s
[2] == 'p')
8616 else if (s
[1] == 'g' && s
[2] == 'p')
8621 else if (s
[1] == 'a' && s
[2] == 't')
8626 else if (s
[1] == 'k' && s
[2] == 't' && s
[3] == '0')
8631 else if (s
[1] == 'k' && s
[2] == 't' && s
[3] == '1')
8636 else if (s
[1] == 'z' && s
[2] == 'e' && s
[3] == 'r' && s
[4] == 'o')
8641 else if (itbl_have_entries
)
8646 p
= s
+ 1; /* advance past '$' */
8647 n
= itbl_get_field (&p
); /* n is name */
8649 /* See if this is a register defined in an
8651 if (itbl_get_reg_val (n
, &r
))
8653 /* Get_field advances to the start of
8654 the next field, so we need to back
8655 rack to the end of the last field. */
8659 s
= strchr (s
, '\0');
8673 as_warn (_("Used $at without \".set noat\""));
8679 if (c
== 'r' || c
== 'v' || c
== 'w')
8686 /* 'z' only matches $0. */
8687 if (c
== 'z' && regno
!= 0)
8690 /* Now that we have assembled one operand, we use the args string
8691 * to figure out where it goes in the instruction. */
8698 INSERT_OPERAND (RS
, *ip
, regno
);
8704 INSERT_OPERAND (RD
, *ip
, regno
);
8707 INSERT_OPERAND (RD
, *ip
, regno
);
8708 INSERT_OPERAND (RT
, *ip
, regno
);
8713 INSERT_OPERAND (RT
, *ip
, regno
);
8716 /* This case exists because on the r3000 trunc
8717 expands into a macro which requires a gp
8718 register. On the r6000 or r4000 it is
8719 assembled into a single instruction which
8720 ignores the register. Thus the insn version
8721 is MIPS_ISA2 and uses 'x', and the macro
8722 version is MIPS_ISA1 and uses 't'. */
8725 /* This case is for the div instruction, which
8726 acts differently if the destination argument
8727 is $0. This only matches $0, and is checked
8728 outside the switch. */
8731 /* Itbl operand; not yet implemented. FIXME ?? */
8733 /* What about all other operands like 'i', which
8734 can be specified in the opcode table? */
8744 INSERT_OPERAND (RS
, *ip
, lastregno
);
8747 INSERT_OPERAND (RT
, *ip
, lastregno
);
8752 case 'O': /* MDMX alignment immediate constant. */
8753 my_getExpression (&imm_expr
, s
);
8754 check_absolute_expr (ip
, &imm_expr
);
8755 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_ALN
)
8756 as_warn ("Improper align amount (%ld), using low bits",
8757 (long) imm_expr
.X_add_number
);
8758 INSERT_OPERAND (ALN
, *ip
, imm_expr
.X_add_number
);
8759 imm_expr
.X_op
= O_absent
;
8763 case 'Q': /* MDMX vector, element sel, or const. */
8766 /* MDMX Immediate. */
8767 my_getExpression (&imm_expr
, s
);
8768 check_absolute_expr (ip
, &imm_expr
);
8769 if ((unsigned long) imm_expr
.X_add_number
> OP_MASK_FT
)
8770 as_warn (_("Invalid MDMX Immediate (%ld)"),
8771 (long) imm_expr
.X_add_number
);
8772 INSERT_OPERAND (FT
, *ip
, imm_expr
.X_add_number
);
8773 if (ip
->insn_opcode
& (OP_MASK_VSEL
<< OP_SH_VSEL
))
8774 ip
->insn_opcode
|= MDMX_FMTSEL_IMM_QH
<< OP_SH_VSEL
;
8776 ip
->insn_opcode
|= MDMX_FMTSEL_IMM_OB
<< OP_SH_VSEL
;
8777 imm_expr
.X_op
= O_absent
;
8781 /* Not MDMX Immediate. Fall through. */
8782 case 'X': /* MDMX destination register. */
8783 case 'Y': /* MDMX source register. */
8784 case 'Z': /* MDMX target register. */
8786 case 'D': /* floating point destination register */
8787 case 'S': /* floating point source register */
8788 case 'T': /* floating point target register */
8789 case 'R': /* floating point source register */
8793 /* Accept $fN for FP and MDMX register numbers, and in
8794 addition accept $vN for MDMX register numbers. */
8795 if ((s
[0] == '$' && s
[1] == 'f' && ISDIGIT (s
[2]))
8796 || (is_mdmx
!= 0 && s
[0] == '$' && s
[1] == 'v'
8807 while (ISDIGIT (*s
));
8810 as_bad (_("Invalid float register number (%d)"), regno
);
8812 if ((regno
& 1) != 0
8814 && ! (strcmp (str
, "mtc1") == 0
8815 || strcmp (str
, "mfc1") == 0
8816 || strcmp (str
, "lwc1") == 0
8817 || strcmp (str
, "swc1") == 0
8818 || strcmp (str
, "l.s") == 0
8819 || strcmp (str
, "s.s") == 0
8820 || strcmp (str
, "mftc1") == 0
8821 || strcmp (str
, "mfthc1") == 0
8822 || strcmp (str
, "cftc1") == 0
8823 || strcmp (str
, "mttc1") == 0
8824 || strcmp (str
, "mtthc1") == 0
8825 || strcmp (str
, "cttc1") == 0))
8826 as_warn (_("Float register should be even, was %d"),
8834 if (c
== 'V' || c
== 'W')
8845 INSERT_OPERAND (FD
, *ip
, regno
);
8850 INSERT_OPERAND (FS
, *ip
, regno
);
8853 /* This is like 'Z', but also needs to fix the MDMX
8854 vector/scalar select bits. Note that the
8855 scalar immediate case is handled above. */
8858 int is_qh
= (ip
->insn_opcode
& (1 << OP_SH_VSEL
));
8859 int max_el
= (is_qh
? 3 : 7);
8861 my_getExpression(&imm_expr
, s
);
8862 check_absolute_expr (ip
, &imm_expr
);
8864 if (imm_expr
.X_add_number
> max_el
)
8865 as_bad(_("Bad element selector %ld"),
8866 (long) imm_expr
.X_add_number
);
8867 imm_expr
.X_add_number
&= max_el
;
8868 ip
->insn_opcode
|= (imm_expr
.X_add_number
8871 imm_expr
.X_op
= O_absent
;
8873 as_warn(_("Expecting ']' found '%s'"), s
);
8879 if (ip
->insn_opcode
& (OP_MASK_VSEL
<< OP_SH_VSEL
))
8880 ip
->insn_opcode
|= (MDMX_FMTSEL_VEC_QH
8883 ip
->insn_opcode
|= (MDMX_FMTSEL_VEC_OB
<<
8890 INSERT_OPERAND (FT
, *ip
, regno
);
8893 INSERT_OPERAND (FR
, *ip
, regno
);
8903 INSERT_OPERAND (FS
, *ip
, lastregno
);
8906 INSERT_OPERAND (FT
, *ip
, lastregno
);
8912 my_getExpression (&imm_expr
, s
);
8913 if (imm_expr
.X_op
!= O_big
8914 && imm_expr
.X_op
!= O_constant
)
8915 insn_error
= _("absolute expression required");
8916 if (HAVE_32BIT_GPRS
)
8917 normalize_constant_expr (&imm_expr
);
8922 my_getExpression (&offset_expr
, s
);
8923 normalize_address_expr (&offset_expr
);
8924 *imm_reloc
= BFD_RELOC_32
;
8937 unsigned char temp
[8];
8939 unsigned int length
;
8944 /* These only appear as the last operand in an
8945 instruction, and every instruction that accepts
8946 them in any variant accepts them in all variants.
8947 This means we don't have to worry about backing out
8948 any changes if the instruction does not match.
8950 The difference between them is the size of the
8951 floating point constant and where it goes. For 'F'
8952 and 'L' the constant is 64 bits; for 'f' and 'l' it
8953 is 32 bits. Where the constant is placed is based
8954 on how the MIPS assembler does things:
8957 f -- immediate value
8960 The .lit4 and .lit8 sections are only used if
8961 permitted by the -G argument.
8963 The code below needs to know whether the target register
8964 is 32 or 64 bits wide. It relies on the fact 'f' and
8965 'F' are used with GPR-based instructions and 'l' and
8966 'L' are used with FPR-based instructions. */
8968 f64
= *args
== 'F' || *args
== 'L';
8969 using_gprs
= *args
== 'F' || *args
== 'f';
8971 save_in
= input_line_pointer
;
8972 input_line_pointer
= s
;
8973 err
= md_atof (f64
? 'd' : 'f', (char *) temp
, &len
);
8975 s
= input_line_pointer
;
8976 input_line_pointer
= save_in
;
8977 if (err
!= NULL
&& *err
!= '\0')
8979 as_bad (_("Bad floating point constant: %s"), err
);
8980 memset (temp
, '\0', sizeof temp
);
8981 length
= f64
? 8 : 4;
8984 assert (length
== (unsigned) (f64
? 8 : 4));
8988 && (g_switch_value
< 4
8989 || (temp
[0] == 0 && temp
[1] == 0)
8990 || (temp
[2] == 0 && temp
[3] == 0))))
8992 imm_expr
.X_op
= O_constant
;
8993 if (! target_big_endian
)
8994 imm_expr
.X_add_number
= bfd_getl32 (temp
);
8996 imm_expr
.X_add_number
= bfd_getb32 (temp
);
8999 && ! mips_disable_float_construction
9000 /* Constants can only be constructed in GPRs and
9001 copied to FPRs if the GPRs are at least as wide
9002 as the FPRs. Force the constant into memory if
9003 we are using 64-bit FPRs but the GPRs are only
9006 || ! (HAVE_64BIT_FPRS
&& HAVE_32BIT_GPRS
))
9007 && ((temp
[0] == 0 && temp
[1] == 0)
9008 || (temp
[2] == 0 && temp
[3] == 0))
9009 && ((temp
[4] == 0 && temp
[5] == 0)
9010 || (temp
[6] == 0 && temp
[7] == 0)))
9012 /* The value is simple enough to load with a couple of
9013 instructions. If using 32-bit registers, set
9014 imm_expr to the high order 32 bits and offset_expr to
9015 the low order 32 bits. Otherwise, set imm_expr to
9016 the entire 64 bit constant. */
9017 if (using_gprs
? HAVE_32BIT_GPRS
: HAVE_32BIT_FPRS
)
9019 imm_expr
.X_op
= O_constant
;
9020 offset_expr
.X_op
= O_constant
;
9021 if (! target_big_endian
)
9023 imm_expr
.X_add_number
= bfd_getl32 (temp
+ 4);
9024 offset_expr
.X_add_number
= bfd_getl32 (temp
);
9028 imm_expr
.X_add_number
= bfd_getb32 (temp
);
9029 offset_expr
.X_add_number
= bfd_getb32 (temp
+ 4);
9031 if (offset_expr
.X_add_number
== 0)
9032 offset_expr
.X_op
= O_absent
;
9034 else if (sizeof (imm_expr
.X_add_number
) > 4)
9036 imm_expr
.X_op
= O_constant
;
9037 if (! target_big_endian
)
9038 imm_expr
.X_add_number
= bfd_getl64 (temp
);
9040 imm_expr
.X_add_number
= bfd_getb64 (temp
);
9044 imm_expr
.X_op
= O_big
;
9045 imm_expr
.X_add_number
= 4;
9046 if (! target_big_endian
)
9048 generic_bignum
[0] = bfd_getl16 (temp
);
9049 generic_bignum
[1] = bfd_getl16 (temp
+ 2);
9050 generic_bignum
[2] = bfd_getl16 (temp
+ 4);
9051 generic_bignum
[3] = bfd_getl16 (temp
+ 6);
9055 generic_bignum
[0] = bfd_getb16 (temp
+ 6);
9056 generic_bignum
[1] = bfd_getb16 (temp
+ 4);
9057 generic_bignum
[2] = bfd_getb16 (temp
+ 2);
9058 generic_bignum
[3] = bfd_getb16 (temp
);
9064 const char *newname
;
9067 /* Switch to the right section. */
9069 subseg
= now_subseg
;
9072 default: /* unused default case avoids warnings. */
9074 newname
= RDATA_SECTION_NAME
;
9075 if (g_switch_value
>= 8)
9079 newname
= RDATA_SECTION_NAME
;
9082 assert (g_switch_value
>= 4);
9086 new_seg
= subseg_new (newname
, (subsegT
) 0);
9087 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
)
9088 bfd_set_section_flags (stdoutput
, new_seg
,
9093 frag_align (*args
== 'l' ? 2 : 3, 0, 0);
9094 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
9095 && strcmp (TARGET_OS
, "elf") != 0)
9096 record_alignment (new_seg
, 4);
9098 record_alignment (new_seg
, *args
== 'l' ? 2 : 3);
9100 as_bad (_("Can't use floating point insn in this section"));
9102 /* Set the argument to the current address in the
9104 offset_expr
.X_op
= O_symbol
;
9105 offset_expr
.X_add_symbol
=
9106 symbol_new ("L0\001", now_seg
,
9107 (valueT
) frag_now_fix (), frag_now
);
9108 offset_expr
.X_add_number
= 0;
9110 /* Put the floating point number into the section. */
9111 p
= frag_more ((int) length
);
9112 memcpy (p
, temp
, length
);
9114 /* Switch back to the original section. */
9115 subseg_set (seg
, subseg
);
9120 case 'i': /* 16 bit unsigned immediate */
9121 case 'j': /* 16 bit signed immediate */
9122 *imm_reloc
= BFD_RELOC_LO16
;
9123 if (my_getSmallExpression (&imm_expr
, imm_reloc
, s
) == 0)
9126 offsetT minval
, maxval
;
9128 more
= (insn
+ 1 < &mips_opcodes
[NUMOPCODES
]
9129 && strcmp (insn
->name
, insn
[1].name
) == 0);
9131 /* If the expression was written as an unsigned number,
9132 only treat it as signed if there are no more
9136 && sizeof (imm_expr
.X_add_number
) <= 4
9137 && imm_expr
.X_op
== O_constant
9138 && imm_expr
.X_add_number
< 0
9139 && imm_expr
.X_unsigned
9143 /* For compatibility with older assemblers, we accept
9144 0x8000-0xffff as signed 16-bit numbers when only
9145 signed numbers are allowed. */
9147 minval
= 0, maxval
= 0xffff;
9149 minval
= -0x8000, maxval
= 0x7fff;
9151 minval
= -0x8000, maxval
= 0xffff;
9153 if (imm_expr
.X_op
!= O_constant
9154 || imm_expr
.X_add_number
< minval
9155 || imm_expr
.X_add_number
> maxval
)
9159 if (imm_expr
.X_op
== O_constant
9160 || imm_expr
.X_op
== O_big
)
9161 as_bad (_("expression out of range"));
9167 case 'o': /* 16 bit offset */
9168 /* Check whether there is only a single bracketed expression
9169 left. If so, it must be the base register and the
9170 constant must be zero. */
9171 if (*s
== '(' && strchr (s
+ 1, '(') == 0)
9173 offset_expr
.X_op
= O_constant
;
9174 offset_expr
.X_add_number
= 0;
9178 /* If this value won't fit into a 16 bit offset, then go
9179 find a macro that will generate the 32 bit offset
9181 if (my_getSmallExpression (&offset_expr
, offset_reloc
, s
) == 0
9182 && (offset_expr
.X_op
!= O_constant
9183 || offset_expr
.X_add_number
>= 0x8000
9184 || offset_expr
.X_add_number
< -0x8000))
9190 case 'p': /* pc relative offset */
9191 *offset_reloc
= BFD_RELOC_16_PCREL_S2
;
9192 my_getExpression (&offset_expr
, s
);
9196 case 'u': /* upper 16 bits */
9197 if (my_getSmallExpression (&imm_expr
, imm_reloc
, s
) == 0
9198 && imm_expr
.X_op
== O_constant
9199 && (imm_expr
.X_add_number
< 0
9200 || imm_expr
.X_add_number
>= 0x10000))
9201 as_bad (_("lui expression not in range 0..65535"));
9205 case 'a': /* 26 bit address */
9206 my_getExpression (&offset_expr
, s
);
9208 *offset_reloc
= BFD_RELOC_MIPS_JMP
;
9211 case 'N': /* 3 bit branch condition code */
9212 case 'M': /* 3 bit compare condition code */
9213 if (strncmp (s
, "$fcc", 4) != 0)
9223 while (ISDIGIT (*s
));
9225 as_bad (_("Invalid condition code register $fcc%d"), regno
);
9226 if ((strcmp(str
+ strlen(str
) - 3, ".ps") == 0
9227 || strcmp(str
+ strlen(str
) - 5, "any2f") == 0
9228 || strcmp(str
+ strlen(str
) - 5, "any2t") == 0)
9229 && (regno
& 1) != 0)
9230 as_warn(_("Condition code register should be even for %s, was %d"),
9232 if ((strcmp(str
+ strlen(str
) - 5, "any4f") == 0
9233 || strcmp(str
+ strlen(str
) - 5, "any4t") == 0)
9234 && (regno
& 3) != 0)
9235 as_warn(_("Condition code register should be 0 or 4 for %s, was %d"),
9238 INSERT_OPERAND (BCC
, *ip
, regno
);
9240 INSERT_OPERAND (CCC
, *ip
, regno
);
9244 if (s
[0] == '0' && (s
[1] == 'x' || s
[1] == 'X'))
9255 while (ISDIGIT (*s
));
9258 c
= 8; /* Invalid sel value. */
9261 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
9262 ip
->insn_opcode
|= c
;
9266 /* Must be at least one digit. */
9267 my_getExpression (&imm_expr
, s
);
9268 check_absolute_expr (ip
, &imm_expr
);
9270 if ((unsigned long) imm_expr
.X_add_number
9271 > (unsigned long) OP_MASK_VECBYTE
)
9273 as_bad (_("bad byte vector index (%ld)"),
9274 (long) imm_expr
.X_add_number
);
9275 imm_expr
.X_add_number
= 0;
9278 INSERT_OPERAND (VECBYTE
, *ip
, imm_expr
.X_add_number
);
9279 imm_expr
.X_op
= O_absent
;
9284 my_getExpression (&imm_expr
, s
);
9285 check_absolute_expr (ip
, &imm_expr
);
9287 if ((unsigned long) imm_expr
.X_add_number
9288 > (unsigned long) OP_MASK_VECALIGN
)
9290 as_bad (_("bad byte vector index (%ld)"),
9291 (long) imm_expr
.X_add_number
);
9292 imm_expr
.X_add_number
= 0;
9295 INSERT_OPERAND (VECALIGN
, *ip
, imm_expr
.X_add_number
);
9296 imm_expr
.X_op
= O_absent
;
9301 as_bad (_("bad char = '%c'\n"), *args
);
9306 /* Args don't match. */
9307 if (insn
+ 1 < &mips_opcodes
[NUMOPCODES
] &&
9308 !strcmp (insn
->name
, insn
[1].name
))
9312 insn_error
= _("illegal operands");
9317 insn_error
= _("illegal operands");
9322 #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
9324 /* This routine assembles an instruction into its binary format when
9325 assembling for the mips16. As a side effect, it sets one of the
9326 global variables imm_reloc or offset_reloc to the type of
9327 relocation to do if one of the operands is an address expression.
9328 It also sets mips16_small and mips16_ext if the user explicitly
9329 requested a small or extended instruction. */
9332 mips16_ip (char *str
, struct mips_cl_insn
*ip
)
9336 struct mips_opcode
*insn
;
9339 unsigned int lastregno
= 0;
9345 mips16_small
= FALSE
;
9348 for (s
= str
; ISLOWER (*s
); ++s
)
9360 if (s
[1] == 't' && s
[2] == ' ')
9363 mips16_small
= TRUE
;
9367 else if (s
[1] == 'e' && s
[2] == ' ')
9376 insn_error
= _("unknown opcode");
9380 if (mips_opts
.noautoextend
&& ! mips16_ext
)
9381 mips16_small
= TRUE
;
9383 if ((insn
= (struct mips_opcode
*) hash_find (mips16_op_hash
, str
)) == NULL
)
9385 insn_error
= _("unrecognized opcode");
9392 assert (strcmp (insn
->name
, str
) == 0);
9394 create_insn (ip
, insn
);
9395 imm_expr
.X_op
= O_absent
;
9396 imm_reloc
[0] = BFD_RELOC_UNUSED
;
9397 imm_reloc
[1] = BFD_RELOC_UNUSED
;
9398 imm_reloc
[2] = BFD_RELOC_UNUSED
;
9399 imm2_expr
.X_op
= O_absent
;
9400 offset_expr
.X_op
= O_absent
;
9401 offset_reloc
[0] = BFD_RELOC_UNUSED
;
9402 offset_reloc
[1] = BFD_RELOC_UNUSED
;
9403 offset_reloc
[2] = BFD_RELOC_UNUSED
;
9404 for (args
= insn
->args
; 1; ++args
)
9411 /* In this switch statement we call break if we did not find
9412 a match, continue if we did find a match, or return if we
9421 /* Stuff the immediate value in now, if we can. */
9422 if (imm_expr
.X_op
== O_constant
9423 && *imm_reloc
> BFD_RELOC_UNUSED
9424 && insn
->pinfo
!= INSN_MACRO
)
9428 switch (*offset_reloc
)
9430 case BFD_RELOC_MIPS16_HI16_S
:
9431 tmp
= (imm_expr
.X_add_number
+ 0x8000) >> 16;
9434 case BFD_RELOC_MIPS16_HI16
:
9435 tmp
= imm_expr
.X_add_number
>> 16;
9438 case BFD_RELOC_MIPS16_LO16
:
9439 tmp
= ((imm_expr
.X_add_number
+ 0x8000) & 0xffff)
9443 case BFD_RELOC_UNUSED
:
9444 tmp
= imm_expr
.X_add_number
;
9450 *offset_reloc
= BFD_RELOC_UNUSED
;
9452 mips16_immed (NULL
, 0, *imm_reloc
- BFD_RELOC_UNUSED
,
9453 tmp
, TRUE
, mips16_small
,
9454 mips16_ext
, &ip
->insn_opcode
,
9455 &ip
->use_extend
, &ip
->extend
);
9456 imm_expr
.X_op
= O_absent
;
9457 *imm_reloc
= BFD_RELOC_UNUSED
;
9471 MIPS16_INSERT_OPERAND (RX
, *ip
, lastregno
);
9474 MIPS16_INSERT_OPERAND (RY
, *ip
, lastregno
);
9490 MIPS16_INSERT_OPERAND (RX
, *ip
, lastregno
);
9492 MIPS16_INSERT_OPERAND (RY
, *ip
, lastregno
);
9519 while (ISDIGIT (*s
));
9522 as_bad (_("invalid register number (%d)"), regno
);
9528 if (s
[1] == 'r' && s
[2] == 'a')
9533 else if (s
[1] == 'f' && s
[2] == 'p')
9538 else if (s
[1] == 's' && s
[2] == 'p')
9543 else if (s
[1] == 'g' && s
[2] == 'p')
9548 else if (s
[1] == 'a' && s
[2] == 't')
9553 else if (s
[1] == 'k' && s
[2] == 't' && s
[3] == '0')
9558 else if (s
[1] == 'k' && s
[2] == 't' && s
[3] == '1')
9563 else if (s
[1] == 'z' && s
[2] == 'e' && s
[3] == 'r' && s
[4] == 'o')
9576 if (c
== 'v' || c
== 'w')
9578 regno
= mips16_to_32_reg_map
[lastregno
];
9592 regno
= mips32_to_16_reg_map
[regno
];
9597 regno
= ILLEGAL_REG
;
9602 regno
= ILLEGAL_REG
;
9607 regno
= ILLEGAL_REG
;
9612 if (regno
== AT
&& ! mips_opts
.noat
)
9613 as_warn (_("used $at without \".set noat\""));
9620 if (regno
== ILLEGAL_REG
)
9627 MIPS16_INSERT_OPERAND (RX
, *ip
, regno
);
9631 MIPS16_INSERT_OPERAND (RY
, *ip
, regno
);
9634 MIPS16_INSERT_OPERAND (RZ
, *ip
, regno
);
9637 MIPS16_INSERT_OPERAND (MOVE32Z
, *ip
, regno
);
9643 MIPS16_INSERT_OPERAND (REGR32
, *ip
, regno
);
9646 regno
= ((regno
& 7) << 2) | ((regno
& 0x18) >> 3);
9647 MIPS16_INSERT_OPERAND (REG32R
, *ip
, regno
);
9657 if (strncmp (s
, "$pc", 3) == 0)
9674 i
= my_getSmallExpression (&imm_expr
, imm_reloc
, s
);
9677 if (imm_expr
.X_op
!= O_constant
)
9680 ip
->use_extend
= TRUE
;
9685 /* We need to relax this instruction. */
9686 *offset_reloc
= *imm_reloc
;
9687 *imm_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
9692 *imm_reloc
= BFD_RELOC_UNUSED
;
9700 my_getExpression (&imm_expr
, s
);
9701 if (imm_expr
.X_op
== O_register
)
9703 /* What we thought was an expression turned out to
9706 if (s
[0] == '(' && args
[1] == '(')
9708 /* It looks like the expression was omitted
9709 before a register indirection, which means
9710 that the expression is implicitly zero. We
9711 still set up imm_expr, so that we handle
9712 explicit extensions correctly. */
9713 imm_expr
.X_op
= O_constant
;
9714 imm_expr
.X_add_number
= 0;
9715 *imm_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
9722 /* We need to relax this instruction. */
9723 *imm_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
9732 /* We use offset_reloc rather than imm_reloc for the PC
9733 relative operands. This lets macros with both
9734 immediate and address operands work correctly. */
9735 my_getExpression (&offset_expr
, s
);
9737 if (offset_expr
.X_op
== O_register
)
9740 /* We need to relax this instruction. */
9741 *offset_reloc
= (int) BFD_RELOC_UNUSED
+ c
;
9745 case '6': /* break code */
9746 my_getExpression (&imm_expr
, s
);
9747 check_absolute_expr (ip
, &imm_expr
);
9748 if ((unsigned long) imm_expr
.X_add_number
> 63)
9749 as_warn (_("Invalid value for `%s' (%lu)"),
9751 (unsigned long) imm_expr
.X_add_number
);
9752 MIPS16_INSERT_OPERAND (IMM6
, *ip
, imm_expr
.X_add_number
);
9753 imm_expr
.X_op
= O_absent
;
9757 case 'a': /* 26 bit address */
9758 my_getExpression (&offset_expr
, s
);
9760 *offset_reloc
= BFD_RELOC_MIPS16_JMP
;
9761 ip
->insn_opcode
<<= 16;
9764 case 'l': /* register list for entry macro */
9765 case 'L': /* register list for exit macro */
9775 int freg
, reg1
, reg2
;
9777 while (*s
== ' ' || *s
== ',')
9781 as_bad (_("can't parse register list"));
9793 while (ISDIGIT (*s
))
9815 as_bad (_("invalid register list"));
9820 while (ISDIGIT (*s
))
9827 if (freg
&& reg1
== 0 && reg2
== 0 && c
== 'L')
9832 else if (freg
&& reg1
== 0 && reg2
== 1 && c
== 'L')
9837 else if (reg1
== 4 && reg2
>= 4 && reg2
<= 7 && c
!= 'L')
9838 mask
|= (reg2
- 3) << 3;
9839 else if (reg1
== 16 && reg2
>= 16 && reg2
<= 17)
9840 mask
|= (reg2
- 15) << 1;
9841 else if (reg1
== RA
&& reg2
== RA
)
9845 as_bad (_("invalid register list"));
9849 /* The mask is filled in in the opcode table for the
9850 benefit of the disassembler. We remove it before
9851 applying the actual mask. */
9852 ip
->insn_opcode
&= ~ ((7 << 3) << MIPS16OP_SH_IMM6
);
9853 ip
->insn_opcode
|= mask
<< MIPS16OP_SH_IMM6
;
9857 case 'm': /* Register list for save insn. */
9858 case 'M': /* Register list for restore insn. */
9861 int framesz
= 0, seen_framesz
= 0;
9862 int args
= 0, statics
= 0, sregs
= 0;
9866 unsigned int reg1
, reg2
;
9868 SKIP_SPACE_TABS (s
);
9871 SKIP_SPACE_TABS (s
);
9873 my_getExpression (&imm_expr
, s
);
9874 if (imm_expr
.X_op
== O_constant
)
9876 /* Handle the frame size. */
9879 as_bad (_("more than one frame size in list"));
9883 framesz
= imm_expr
.X_add_number
;
9884 imm_expr
.X_op
= O_absent
;
9891 as_bad (_("can't parse register list"));
9897 while (ISDIGIT (*s
))
9903 SKIP_SPACE_TABS (s
);
9911 as_bad (_("can't parse register list"));
9916 while (ISDIGIT (*s
))
9924 while (reg1
<= reg2
)
9926 if (reg1
>= 4 && reg1
<= 7)
9928 if (c
== 'm' && !seen_framesz
)
9930 args
|= 1 << (reg1
- 4);
9932 /* statics $a0-$a3 */
9933 statics
|= 1 << (reg1
- 4);
9935 else if ((reg1
>= 16 && reg1
<= 23) || reg1
== 30)
9938 sregs
|= 1 << ((reg1
== 30) ? 8 : (reg1
- 16));
9940 else if (reg1
== 31)
9942 /* Add $ra to insn. */
9947 as_bad (_("unexpected register in list"));
9955 /* Encode args/statics combination. */
9957 as_bad (_("arg/static registers overlap"));
9958 else if (args
== 0xf)
9959 /* All $a0-$a3 are args. */
9960 opcode
|= MIPS16_ALL_ARGS
<< 16;
9961 else if (statics
== 0xf)
9962 /* All $a0-$a3 are statics. */
9963 opcode
|= MIPS16_ALL_STATICS
<< 16;
9966 int narg
= 0, nstat
= 0;
9968 /* Count arg registers. */
9975 as_bad (_("invalid arg register list"));
9977 /* Count static registers. */
9978 while (statics
& 0x8)
9980 statics
= (statics
<< 1) & 0xf;
9984 as_bad (_("invalid static register list"));
9986 /* Encode args/statics. */
9987 opcode
|= ((narg
<< 2) | nstat
) << 16;
9990 /* Encode $s0/$s1. */
9991 if (sregs
& (1 << 0)) /* $s0 */
9993 if (sregs
& (1 << 1)) /* $s1 */
9999 /* Count regs $s2-$s8. */
10007 as_bad (_("invalid static register list"));
10008 /* Encode $s2-$s8. */
10009 opcode
|= nsreg
<< 24;
10012 /* Encode frame size. */
10014 as_bad (_("missing frame size"));
10015 else if ((framesz
& 7) != 0 || framesz
< 0
10016 || framesz
> 0xff * 8)
10017 as_bad (_("invalid frame size"));
10018 else if (framesz
!= 128 || (opcode
>> 16) != 0)
10021 opcode
|= (((framesz
& 0xf0) << 16)
10022 | (framesz
& 0x0f));
10025 /* Finally build the instruction. */
10026 if ((opcode
>> 16) != 0 || framesz
== 0)
10028 ip
->use_extend
= TRUE
;
10029 ip
->extend
= opcode
>> 16;
10031 ip
->insn_opcode
|= opcode
& 0x7f;
10035 case 'e': /* extend code */
10036 my_getExpression (&imm_expr
, s
);
10037 check_absolute_expr (ip
, &imm_expr
);
10038 if ((unsigned long) imm_expr
.X_add_number
> 0x7ff)
10040 as_warn (_("Invalid value for `%s' (%lu)"),
10042 (unsigned long) imm_expr
.X_add_number
);
10043 imm_expr
.X_add_number
&= 0x7ff;
10045 ip
->insn_opcode
|= imm_expr
.X_add_number
;
10046 imm_expr
.X_op
= O_absent
;
10056 /* Args don't match. */
10057 if (insn
+ 1 < &mips16_opcodes
[bfd_mips16_num_opcodes
] &&
10058 strcmp (insn
->name
, insn
[1].name
) == 0)
10065 insn_error
= _("illegal operands");
10071 /* This structure holds information we know about a mips16 immediate
10074 struct mips16_immed_operand
10076 /* The type code used in the argument string in the opcode table. */
10078 /* The number of bits in the short form of the opcode. */
10080 /* The number of bits in the extended form of the opcode. */
10082 /* The amount by which the short form is shifted when it is used;
10083 for example, the sw instruction has a shift count of 2. */
10085 /* The amount by which the short form is shifted when it is stored
10086 into the instruction code. */
10088 /* Non-zero if the short form is unsigned. */
10090 /* Non-zero if the extended form is unsigned. */
10092 /* Non-zero if the value is PC relative. */
10096 /* The mips16 immediate operand types. */
10098 static const struct mips16_immed_operand mips16_immed_operands
[] =
10100 { '<', 3, 5, 0, MIPS16OP_SH_RZ
, 1, 1, 0 },
10101 { '>', 3, 5, 0, MIPS16OP_SH_RX
, 1, 1, 0 },
10102 { '[', 3, 6, 0, MIPS16OP_SH_RZ
, 1, 1, 0 },
10103 { ']', 3, 6, 0, MIPS16OP_SH_RX
, 1, 1, 0 },
10104 { '4', 4, 15, 0, MIPS16OP_SH_IMM4
, 0, 0, 0 },
10105 { '5', 5, 16, 0, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10106 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10107 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10108 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5
, 1, 0, 0 },
10109 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5
, 0, 0, 0 },
10110 { '8', 8, 16, 0, MIPS16OP_SH_IMM8
, 1, 0, 0 },
10111 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8
, 1, 0, 0 },
10112 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8
, 1, 0, 0 },
10113 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8
, 1, 1, 0 },
10114 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8
, 0, 0, 0 },
10115 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8
, 0, 0, 0 },
10116 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8
, 0, 0, 1 },
10117 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8
, 0, 0, 1 },
10118 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8
, 1, 0, 1 },
10119 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5
, 1, 0, 1 },
10120 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5
, 1, 0, 1 }
10123 #define MIPS16_NUM_IMMED \
10124 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
10126 /* Handle a mips16 instruction with an immediate value. This or's the
10127 small immediate value into *INSN. It sets *USE_EXTEND to indicate
10128 whether an extended value is needed; if one is needed, it sets
10129 *EXTEND to the value. The argument type is TYPE. The value is VAL.
10130 If SMALL is true, an unextended opcode was explicitly requested.
10131 If EXT is true, an extended opcode was explicitly requested. If
10132 WARN is true, warn if EXT does not match reality. */
10135 mips16_immed (char *file
, unsigned int line
, int type
, offsetT val
,
10136 bfd_boolean warn
, bfd_boolean small
, bfd_boolean ext
,
10137 unsigned long *insn
, bfd_boolean
*use_extend
,
10138 unsigned short *extend
)
10140 register const struct mips16_immed_operand
*op
;
10141 int mintiny
, maxtiny
;
10142 bfd_boolean needext
;
10144 op
= mips16_immed_operands
;
10145 while (op
->type
!= type
)
10148 assert (op
< mips16_immed_operands
+ MIPS16_NUM_IMMED
);
10153 if (type
== '<' || type
== '>' || type
== '[' || type
== ']')
10156 maxtiny
= 1 << op
->nbits
;
10161 maxtiny
= (1 << op
->nbits
) - 1;
10166 mintiny
= - (1 << (op
->nbits
- 1));
10167 maxtiny
= (1 << (op
->nbits
- 1)) - 1;
10170 /* Branch offsets have an implicit 0 in the lowest bit. */
10171 if (type
== 'p' || type
== 'q')
10174 if ((val
& ((1 << op
->shift
) - 1)) != 0
10175 || val
< (mintiny
<< op
->shift
)
10176 || val
> (maxtiny
<< op
->shift
))
10181 if (warn
&& ext
&& ! needext
)
10182 as_warn_where (file
, line
,
10183 _("extended operand requested but not required"));
10184 if (small
&& needext
)
10185 as_bad_where (file
, line
, _("invalid unextended operand value"));
10187 if (small
|| (! ext
&& ! needext
))
10191 *use_extend
= FALSE
;
10192 insnval
= ((val
>> op
->shift
) & ((1 << op
->nbits
) - 1));
10193 insnval
<<= op
->op_shift
;
10198 long minext
, maxext
;
10204 maxext
= (1 << op
->extbits
) - 1;
10208 minext
= - (1 << (op
->extbits
- 1));
10209 maxext
= (1 << (op
->extbits
- 1)) - 1;
10211 if (val
< minext
|| val
> maxext
)
10212 as_bad_where (file
, line
,
10213 _("operand value out of range for instruction"));
10215 *use_extend
= TRUE
;
10216 if (op
->extbits
== 16)
10218 extval
= ((val
>> 11) & 0x1f) | (val
& 0x7e0);
10221 else if (op
->extbits
== 15)
10223 extval
= ((val
>> 11) & 0xf) | (val
& 0x7f0);
10228 extval
= ((val
& 0x1f) << 6) | (val
& 0x20);
10232 *extend
= (unsigned short) extval
;
10237 struct percent_op_match
10240 bfd_reloc_code_real_type reloc
;
10243 static const struct percent_op_match mips_percent_op
[] =
10245 {"%lo", BFD_RELOC_LO16
},
10247 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16
},
10248 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16
},
10249 {"%call16", BFD_RELOC_MIPS_CALL16
},
10250 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP
},
10251 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE
},
10252 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST
},
10253 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16
},
10254 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16
},
10255 {"%got", BFD_RELOC_MIPS_GOT16
},
10256 {"%gp_rel", BFD_RELOC_GPREL16
},
10257 {"%half", BFD_RELOC_16
},
10258 {"%highest", BFD_RELOC_MIPS_HIGHEST
},
10259 {"%higher", BFD_RELOC_MIPS_HIGHER
},
10260 {"%neg", BFD_RELOC_MIPS_SUB
},
10261 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD
},
10262 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM
},
10263 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16
},
10264 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16
},
10265 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16
},
10266 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16
},
10267 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL
},
10269 {"%hi", BFD_RELOC_HI16_S
}
10272 static const struct percent_op_match mips16_percent_op
[] =
10274 {"%lo", BFD_RELOC_MIPS16_LO16
},
10275 {"%gprel", BFD_RELOC_MIPS16_GPREL
},
10276 {"%hi", BFD_RELOC_MIPS16_HI16_S
}
10280 /* Return true if *STR points to a relocation operator. When returning true,
10281 move *STR over the operator and store its relocation code in *RELOC.
10282 Leave both *STR and *RELOC alone when returning false. */
10285 parse_relocation (char **str
, bfd_reloc_code_real_type
*reloc
)
10287 const struct percent_op_match
*percent_op
;
10290 if (mips_opts
.mips16
)
10292 percent_op
= mips16_percent_op
;
10293 limit
= ARRAY_SIZE (mips16_percent_op
);
10297 percent_op
= mips_percent_op
;
10298 limit
= ARRAY_SIZE (mips_percent_op
);
10301 for (i
= 0; i
< limit
; i
++)
10302 if (strncasecmp (*str
, percent_op
[i
].str
, strlen (percent_op
[i
].str
)) == 0)
10304 int len
= strlen (percent_op
[i
].str
);
10306 if (!ISSPACE ((*str
)[len
]) && (*str
)[len
] != '(')
10309 *str
+= strlen (percent_op
[i
].str
);
10310 *reloc
= percent_op
[i
].reloc
;
10312 /* Check whether the output BFD supports this relocation.
10313 If not, issue an error and fall back on something safe. */
10314 if (!bfd_reloc_type_lookup (stdoutput
, percent_op
[i
].reloc
))
10316 as_bad ("relocation %s isn't supported by the current ABI",
10317 percent_op
[i
].str
);
10318 *reloc
= BFD_RELOC_UNUSED
;
10326 /* Parse string STR as a 16-bit relocatable operand. Store the
10327 expression in *EP and the relocations in the array starting
10328 at RELOC. Return the number of relocation operators used.
10330 On exit, EXPR_END points to the first character after the expression. */
10333 my_getSmallExpression (expressionS
*ep
, bfd_reloc_code_real_type
*reloc
,
10336 bfd_reloc_code_real_type reversed_reloc
[3];
10337 size_t reloc_index
, i
;
10338 int crux_depth
, str_depth
;
10341 /* Search for the start of the main expression, recoding relocations
10342 in REVERSED_RELOC. End the loop with CRUX pointing to the start
10343 of the main expression and with CRUX_DEPTH containing the number
10344 of open brackets at that point. */
10351 crux_depth
= str_depth
;
10353 /* Skip over whitespace and brackets, keeping count of the number
10355 while (*str
== ' ' || *str
== '\t' || *str
== '(')
10360 && reloc_index
< (HAVE_NEWABI
? 3 : 1)
10361 && parse_relocation (&str
, &reversed_reloc
[reloc_index
]));
10363 my_getExpression (ep
, crux
);
10366 /* Match every open bracket. */
10367 while (crux_depth
> 0 && (*str
== ')' || *str
== ' ' || *str
== '\t'))
10371 if (crux_depth
> 0)
10372 as_bad ("unclosed '('");
10376 if (reloc_index
!= 0)
10378 prev_reloc_op_frag
= frag_now
;
10379 for (i
= 0; i
< reloc_index
; i
++)
10380 reloc
[i
] = reversed_reloc
[reloc_index
- 1 - i
];
10383 return reloc_index
;
10387 my_getExpression (expressionS
*ep
, char *str
)
10392 save_in
= input_line_pointer
;
10393 input_line_pointer
= str
;
10395 expr_end
= input_line_pointer
;
10396 input_line_pointer
= save_in
;
10398 /* If we are in mips16 mode, and this is an expression based on `.',
10399 then we bump the value of the symbol by 1 since that is how other
10400 text symbols are handled. We don't bother to handle complex
10401 expressions, just `.' plus or minus a constant. */
10402 if (mips_opts
.mips16
10403 && ep
->X_op
== O_symbol
10404 && strcmp (S_GET_NAME (ep
->X_add_symbol
), FAKE_LABEL_NAME
) == 0
10405 && S_GET_SEGMENT (ep
->X_add_symbol
) == now_seg
10406 && symbol_get_frag (ep
->X_add_symbol
) == frag_now
10407 && symbol_constant_p (ep
->X_add_symbol
)
10408 && (val
= S_GET_VALUE (ep
->X_add_symbol
)) == frag_now_fix ())
10409 S_SET_VALUE (ep
->X_add_symbol
, val
+ 1);
10412 /* Turn a string in input_line_pointer into a floating point constant
10413 of type TYPE, and store the appropriate bytes in *LITP. The number
10414 of LITTLENUMS emitted is stored in *SIZEP. An error message is
10415 returned, or NULL on OK. */
10418 md_atof (int type
, char *litP
, int *sizeP
)
10421 LITTLENUM_TYPE words
[4];
10437 return _("bad call to md_atof");
10440 t
= atof_ieee (input_line_pointer
, type
, words
);
10442 input_line_pointer
= t
;
10446 if (! target_big_endian
)
10448 for (i
= prec
- 1; i
>= 0; i
--)
10450 md_number_to_chars (litP
, words
[i
], 2);
10456 for (i
= 0; i
< prec
; i
++)
10458 md_number_to_chars (litP
, words
[i
], 2);
10467 md_number_to_chars (char *buf
, valueT val
, int n
)
10469 if (target_big_endian
)
10470 number_to_chars_bigendian (buf
, val
, n
);
10472 number_to_chars_littleendian (buf
, val
, n
);
10476 static int support_64bit_objects(void)
10478 const char **list
, **l
;
10481 list
= bfd_target_list ();
10482 for (l
= list
; *l
!= NULL
; l
++)
10484 /* This is traditional mips */
10485 if (strcmp (*l
, "elf64-tradbigmips") == 0
10486 || strcmp (*l
, "elf64-tradlittlemips") == 0)
10488 if (strcmp (*l
, "elf64-bigmips") == 0
10489 || strcmp (*l
, "elf64-littlemips") == 0)
10492 yes
= (*l
!= NULL
);
10496 #endif /* OBJ_ELF */
10498 const char *md_shortopts
= "O::g::G:";
10500 struct option md_longopts
[] =
10502 /* Options which specify architecture. */
10503 #define OPTION_ARCH_BASE (OPTION_MD_BASE)
10504 #define OPTION_MARCH (OPTION_ARCH_BASE + 0)
10505 {"march", required_argument
, NULL
, OPTION_MARCH
},
10506 #define OPTION_MTUNE (OPTION_ARCH_BASE + 1)
10507 {"mtune", required_argument
, NULL
, OPTION_MTUNE
},
10508 #define OPTION_MIPS1 (OPTION_ARCH_BASE + 2)
10509 {"mips0", no_argument
, NULL
, OPTION_MIPS1
},
10510 {"mips1", no_argument
, NULL
, OPTION_MIPS1
},
10511 #define OPTION_MIPS2 (OPTION_ARCH_BASE + 3)
10512 {"mips2", no_argument
, NULL
, OPTION_MIPS2
},
10513 #define OPTION_MIPS3 (OPTION_ARCH_BASE + 4)
10514 {"mips3", no_argument
, NULL
, OPTION_MIPS3
},
10515 #define OPTION_MIPS4 (OPTION_ARCH_BASE + 5)
10516 {"mips4", no_argument
, NULL
, OPTION_MIPS4
},
10517 #define OPTION_MIPS5 (OPTION_ARCH_BASE + 6)
10518 {"mips5", no_argument
, NULL
, OPTION_MIPS5
},
10519 #define OPTION_MIPS32 (OPTION_ARCH_BASE + 7)
10520 {"mips32", no_argument
, NULL
, OPTION_MIPS32
},
10521 #define OPTION_MIPS64 (OPTION_ARCH_BASE + 8)
10522 {"mips64", no_argument
, NULL
, OPTION_MIPS64
},
10523 #define OPTION_MIPS32R2 (OPTION_ARCH_BASE + 9)
10524 {"mips32r2", no_argument
, NULL
, OPTION_MIPS32R2
},
10525 #define OPTION_MIPS64R2 (OPTION_ARCH_BASE + 10)
10526 {"mips64r2", no_argument
, NULL
, OPTION_MIPS64R2
},
10528 /* Options which specify Application Specific Extensions (ASEs). */
10529 #define OPTION_ASE_BASE (OPTION_ARCH_BASE + 11)
10530 #define OPTION_MIPS16 (OPTION_ASE_BASE + 0)
10531 {"mips16", no_argument
, NULL
, OPTION_MIPS16
},
10532 #define OPTION_NO_MIPS16 (OPTION_ASE_BASE + 1)
10533 {"no-mips16", no_argument
, NULL
, OPTION_NO_MIPS16
},
10534 #define OPTION_MIPS3D (OPTION_ASE_BASE + 2)
10535 {"mips3d", no_argument
, NULL
, OPTION_MIPS3D
},
10536 #define OPTION_NO_MIPS3D (OPTION_ASE_BASE + 3)
10537 {"no-mips3d", no_argument
, NULL
, OPTION_NO_MIPS3D
},
10538 #define OPTION_MDMX (OPTION_ASE_BASE + 4)
10539 {"mdmx", no_argument
, NULL
, OPTION_MDMX
},
10540 #define OPTION_NO_MDMX (OPTION_ASE_BASE + 5)
10541 {"no-mdmx", no_argument
, NULL
, OPTION_NO_MDMX
},
10542 #define OPTION_DSP (OPTION_ASE_BASE + 6)
10543 {"mdsp", no_argument
, NULL
, OPTION_DSP
},
10544 #define OPTION_NO_DSP (OPTION_ASE_BASE + 7)
10545 {"mno-dsp", no_argument
, NULL
, OPTION_NO_DSP
},
10546 #define OPTION_MT (OPTION_ASE_BASE + 8)
10547 {"mmt", no_argument
, NULL
, OPTION_MT
},
10548 #define OPTION_NO_MT (OPTION_ASE_BASE + 9)
10549 {"mno-mt", no_argument
, NULL
, OPTION_NO_MT
},
10551 /* Old-style architecture options. Don't add more of these. */
10552 #define OPTION_COMPAT_ARCH_BASE (OPTION_ASE_BASE + 10)
10553 #define OPTION_M4650 (OPTION_COMPAT_ARCH_BASE + 0)
10554 {"m4650", no_argument
, NULL
, OPTION_M4650
},
10555 #define OPTION_NO_M4650 (OPTION_COMPAT_ARCH_BASE + 1)
10556 {"no-m4650", no_argument
, NULL
, OPTION_NO_M4650
},
10557 #define OPTION_M4010 (OPTION_COMPAT_ARCH_BASE + 2)
10558 {"m4010", no_argument
, NULL
, OPTION_M4010
},
10559 #define OPTION_NO_M4010 (OPTION_COMPAT_ARCH_BASE + 3)
10560 {"no-m4010", no_argument
, NULL
, OPTION_NO_M4010
},
10561 #define OPTION_M4100 (OPTION_COMPAT_ARCH_BASE + 4)
10562 {"m4100", no_argument
, NULL
, OPTION_M4100
},
10563 #define OPTION_NO_M4100 (OPTION_COMPAT_ARCH_BASE + 5)
10564 {"no-m4100", no_argument
, NULL
, OPTION_NO_M4100
},
10565 #define OPTION_M3900 (OPTION_COMPAT_ARCH_BASE + 6)
10566 {"m3900", no_argument
, NULL
, OPTION_M3900
},
10567 #define OPTION_NO_M3900 (OPTION_COMPAT_ARCH_BASE + 7)
10568 {"no-m3900", no_argument
, NULL
, OPTION_NO_M3900
},
10570 /* Options which enable bug fixes. */
10571 #define OPTION_FIX_BASE (OPTION_COMPAT_ARCH_BASE + 8)
10572 #define OPTION_M7000_HILO_FIX (OPTION_FIX_BASE + 0)
10573 {"mfix7000", no_argument
, NULL
, OPTION_M7000_HILO_FIX
},
10574 #define OPTION_MNO_7000_HILO_FIX (OPTION_FIX_BASE + 1)
10575 {"no-fix-7000", no_argument
, NULL
, OPTION_MNO_7000_HILO_FIX
},
10576 {"mno-fix7000", no_argument
, NULL
, OPTION_MNO_7000_HILO_FIX
},
10577 #define OPTION_FIX_VR4120 (OPTION_FIX_BASE + 2)
10578 #define OPTION_NO_FIX_VR4120 (OPTION_FIX_BASE + 3)
10579 {"mfix-vr4120", no_argument
, NULL
, OPTION_FIX_VR4120
},
10580 {"mno-fix-vr4120", no_argument
, NULL
, OPTION_NO_FIX_VR4120
},
10581 #define OPTION_FIX_VR4130 (OPTION_FIX_BASE + 4)
10582 #define OPTION_NO_FIX_VR4130 (OPTION_FIX_BASE + 5)
10583 {"mfix-vr4130", no_argument
, NULL
, OPTION_FIX_VR4130
},
10584 {"mno-fix-vr4130", no_argument
, NULL
, OPTION_NO_FIX_VR4130
},
10586 /* Miscellaneous options. */
10587 #define OPTION_MISC_BASE (OPTION_FIX_BASE + 6)
10588 #define OPTION_TRAP (OPTION_MISC_BASE + 0)
10589 {"trap", no_argument
, NULL
, OPTION_TRAP
},
10590 {"no-break", no_argument
, NULL
, OPTION_TRAP
},
10591 #define OPTION_BREAK (OPTION_MISC_BASE + 1)
10592 {"break", no_argument
, NULL
, OPTION_BREAK
},
10593 {"no-trap", no_argument
, NULL
, OPTION_BREAK
},
10594 #define OPTION_EB (OPTION_MISC_BASE + 2)
10595 {"EB", no_argument
, NULL
, OPTION_EB
},
10596 #define OPTION_EL (OPTION_MISC_BASE + 3)
10597 {"EL", no_argument
, NULL
, OPTION_EL
},
10598 #define OPTION_FP32 (OPTION_MISC_BASE + 4)
10599 {"mfp32", no_argument
, NULL
, OPTION_FP32
},
10600 #define OPTION_GP32 (OPTION_MISC_BASE + 5)
10601 {"mgp32", no_argument
, NULL
, OPTION_GP32
},
10602 #define OPTION_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 6)
10603 {"construct-floats", no_argument
, NULL
, OPTION_CONSTRUCT_FLOATS
},
10604 #define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 7)
10605 {"no-construct-floats", no_argument
, NULL
, OPTION_NO_CONSTRUCT_FLOATS
},
10606 #define OPTION_FP64 (OPTION_MISC_BASE + 8)
10607 {"mfp64", no_argument
, NULL
, OPTION_FP64
},
10608 #define OPTION_GP64 (OPTION_MISC_BASE + 9)
10609 {"mgp64", no_argument
, NULL
, OPTION_GP64
},
10610 #define OPTION_RELAX_BRANCH (OPTION_MISC_BASE + 10)
10611 #define OPTION_NO_RELAX_BRANCH (OPTION_MISC_BASE + 11)
10612 {"relax-branch", no_argument
, NULL
, OPTION_RELAX_BRANCH
},
10613 {"no-relax-branch", no_argument
, NULL
, OPTION_NO_RELAX_BRANCH
},
10614 #define OPTION_MSHARED (OPTION_MISC_BASE + 12)
10615 #define OPTION_MNO_SHARED (OPTION_MISC_BASE + 13)
10616 {"mshared", no_argument
, NULL
, OPTION_MSHARED
},
10617 {"mno-shared", no_argument
, NULL
, OPTION_MNO_SHARED
},
10618 #define OPTION_MSYM32 (OPTION_MISC_BASE + 14)
10619 #define OPTION_MNO_SYM32 (OPTION_MISC_BASE + 15)
10620 {"msym32", no_argument
, NULL
, OPTION_MSYM32
},
10621 {"mno-sym32", no_argument
, NULL
, OPTION_MNO_SYM32
},
10623 /* ELF-specific options. */
10625 #define OPTION_ELF_BASE (OPTION_MISC_BASE + 16)
10626 #define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
10627 {"KPIC", no_argument
, NULL
, OPTION_CALL_SHARED
},
10628 {"call_shared", no_argument
, NULL
, OPTION_CALL_SHARED
},
10629 #define OPTION_NON_SHARED (OPTION_ELF_BASE + 1)
10630 {"non_shared", no_argument
, NULL
, OPTION_NON_SHARED
},
10631 #define OPTION_XGOT (OPTION_ELF_BASE + 2)
10632 {"xgot", no_argument
, NULL
, OPTION_XGOT
},
10633 #define OPTION_MABI (OPTION_ELF_BASE + 3)
10634 {"mabi", required_argument
, NULL
, OPTION_MABI
},
10635 #define OPTION_32 (OPTION_ELF_BASE + 4)
10636 {"32", no_argument
, NULL
, OPTION_32
},
10637 #define OPTION_N32 (OPTION_ELF_BASE + 5)
10638 {"n32", no_argument
, NULL
, OPTION_N32
},
10639 #define OPTION_64 (OPTION_ELF_BASE + 6)
10640 {"64", no_argument
, NULL
, OPTION_64
},
10641 #define OPTION_MDEBUG (OPTION_ELF_BASE + 7)
10642 {"mdebug", no_argument
, NULL
, OPTION_MDEBUG
},
10643 #define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 8)
10644 {"no-mdebug", no_argument
, NULL
, OPTION_NO_MDEBUG
},
10645 #define OPTION_PDR (OPTION_ELF_BASE + 9)
10646 {"mpdr", no_argument
, NULL
, OPTION_PDR
},
10647 #define OPTION_NO_PDR (OPTION_ELF_BASE + 10)
10648 {"mno-pdr", no_argument
, NULL
, OPTION_NO_PDR
},
10649 #endif /* OBJ_ELF */
10651 {NULL
, no_argument
, NULL
, 0}
10653 size_t md_longopts_size
= sizeof (md_longopts
);
10655 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
10656 NEW_VALUE. Warn if another value was already specified. Note:
10657 we have to defer parsing the -march and -mtune arguments in order
10658 to handle 'from-abi' correctly, since the ABI might be specified
10659 in a later argument. */
10662 mips_set_option_string (const char **string_ptr
, const char *new_value
)
10664 if (*string_ptr
!= 0 && strcasecmp (*string_ptr
, new_value
) != 0)
10665 as_warn (_("A different %s was already specified, is now %s"),
10666 string_ptr
== &mips_arch_string
? "-march" : "-mtune",
10669 *string_ptr
= new_value
;
10673 md_parse_option (int c
, char *arg
)
10677 case OPTION_CONSTRUCT_FLOATS
:
10678 mips_disable_float_construction
= 0;
10681 case OPTION_NO_CONSTRUCT_FLOATS
:
10682 mips_disable_float_construction
= 1;
10694 target_big_endian
= 1;
10698 target_big_endian
= 0;
10702 if (arg
&& arg
[1] == '0')
10712 mips_debug
= atoi (arg
);
10713 /* When the MIPS assembler sees -g or -g2, it does not do
10714 optimizations which limit full symbolic debugging. We take
10715 that to be equivalent to -O0. */
10716 if (mips_debug
== 2)
10721 file_mips_isa
= ISA_MIPS1
;
10725 file_mips_isa
= ISA_MIPS2
;
10729 file_mips_isa
= ISA_MIPS3
;
10733 file_mips_isa
= ISA_MIPS4
;
10737 file_mips_isa
= ISA_MIPS5
;
10740 case OPTION_MIPS32
:
10741 file_mips_isa
= ISA_MIPS32
;
10744 case OPTION_MIPS32R2
:
10745 file_mips_isa
= ISA_MIPS32R2
;
10748 case OPTION_MIPS64R2
:
10749 file_mips_isa
= ISA_MIPS64R2
;
10752 case OPTION_MIPS64
:
10753 file_mips_isa
= ISA_MIPS64
;
10757 mips_set_option_string (&mips_tune_string
, arg
);
10761 mips_set_option_string (&mips_arch_string
, arg
);
10765 mips_set_option_string (&mips_arch_string
, "4650");
10766 mips_set_option_string (&mips_tune_string
, "4650");
10769 case OPTION_NO_M4650
:
10773 mips_set_option_string (&mips_arch_string
, "4010");
10774 mips_set_option_string (&mips_tune_string
, "4010");
10777 case OPTION_NO_M4010
:
10781 mips_set_option_string (&mips_arch_string
, "4100");
10782 mips_set_option_string (&mips_tune_string
, "4100");
10785 case OPTION_NO_M4100
:
10789 mips_set_option_string (&mips_arch_string
, "3900");
10790 mips_set_option_string (&mips_tune_string
, "3900");
10793 case OPTION_NO_M3900
:
10797 mips_opts
.ase_mdmx
= 1;
10800 case OPTION_NO_MDMX
:
10801 mips_opts
.ase_mdmx
= 0;
10805 mips_opts
.ase_dsp
= 1;
10808 case OPTION_NO_DSP
:
10809 mips_opts
.ase_dsp
= 0;
10813 mips_opts
.ase_mt
= 1;
10817 mips_opts
.ase_mt
= 0;
10820 case OPTION_MIPS16
:
10821 mips_opts
.mips16
= 1;
10822 mips_no_prev_insn ();
10825 case OPTION_NO_MIPS16
:
10826 mips_opts
.mips16
= 0;
10827 mips_no_prev_insn ();
10830 case OPTION_MIPS3D
:
10831 mips_opts
.ase_mips3d
= 1;
10834 case OPTION_NO_MIPS3D
:
10835 mips_opts
.ase_mips3d
= 0;
10838 case OPTION_FIX_VR4120
:
10839 mips_fix_vr4120
= 1;
10842 case OPTION_NO_FIX_VR4120
:
10843 mips_fix_vr4120
= 0;
10846 case OPTION_FIX_VR4130
:
10847 mips_fix_vr4130
= 1;
10850 case OPTION_NO_FIX_VR4130
:
10851 mips_fix_vr4130
= 0;
10854 case OPTION_RELAX_BRANCH
:
10855 mips_relax_branch
= 1;
10858 case OPTION_NO_RELAX_BRANCH
:
10859 mips_relax_branch
= 0;
10862 case OPTION_MSHARED
:
10863 mips_in_shared
= TRUE
;
10866 case OPTION_MNO_SHARED
:
10867 mips_in_shared
= FALSE
;
10870 case OPTION_MSYM32
:
10871 mips_opts
.sym32
= TRUE
;
10874 case OPTION_MNO_SYM32
:
10875 mips_opts
.sym32
= FALSE
;
10879 /* When generating ELF code, we permit -KPIC and -call_shared to
10880 select SVR4_PIC, and -non_shared to select no PIC. This is
10881 intended to be compatible with Irix 5. */
10882 case OPTION_CALL_SHARED
:
10883 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
)
10885 as_bad (_("-call_shared is supported only for ELF format"));
10888 mips_pic
= SVR4_PIC
;
10889 mips_abicalls
= TRUE
;
10890 if (g_switch_seen
&& g_switch_value
!= 0)
10892 as_bad (_("-G may not be used with SVR4 PIC code"));
10895 g_switch_value
= 0;
10898 case OPTION_NON_SHARED
:
10899 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
)
10901 as_bad (_("-non_shared is supported only for ELF format"));
10905 mips_abicalls
= FALSE
;
10908 /* The -xgot option tells the assembler to use 32 bit offsets
10909 when accessing the got in SVR4_PIC mode. It is for Irix
10914 #endif /* OBJ_ELF */
10917 g_switch_value
= atoi (arg
);
10919 if (mips_pic
== SVR4_PIC
&& g_switch_value
!= 0)
10921 as_bad (_("-G may not be used with SVR4 PIC code"));
10927 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
10930 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
)
10932 as_bad (_("-32 is supported for ELF format only"));
10935 mips_abi
= O32_ABI
;
10939 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
)
10941 as_bad (_("-n32 is supported for ELF format only"));
10944 mips_abi
= N32_ABI
;
10948 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
)
10950 as_bad (_("-64 is supported for ELF format only"));
10953 mips_abi
= N64_ABI
;
10954 if (! support_64bit_objects())
10955 as_fatal (_("No compiled in support for 64 bit object file format"));
10957 #endif /* OBJ_ELF */
10960 file_mips_gp32
= 1;
10964 file_mips_gp32
= 0;
10968 file_mips_fp32
= 1;
10972 file_mips_fp32
= 0;
10977 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
)
10979 as_bad (_("-mabi is supported for ELF format only"));
10982 if (strcmp (arg
, "32") == 0)
10983 mips_abi
= O32_ABI
;
10984 else if (strcmp (arg
, "o64") == 0)
10985 mips_abi
= O64_ABI
;
10986 else if (strcmp (arg
, "n32") == 0)
10987 mips_abi
= N32_ABI
;
10988 else if (strcmp (arg
, "64") == 0)
10990 mips_abi
= N64_ABI
;
10991 if (! support_64bit_objects())
10992 as_fatal (_("No compiled in support for 64 bit object file "
10995 else if (strcmp (arg
, "eabi") == 0)
10996 mips_abi
= EABI_ABI
;
10999 as_fatal (_("invalid abi -mabi=%s"), arg
);
11003 #endif /* OBJ_ELF */
11005 case OPTION_M7000_HILO_FIX
:
11006 mips_7000_hilo_fix
= TRUE
;
11009 case OPTION_MNO_7000_HILO_FIX
:
11010 mips_7000_hilo_fix
= FALSE
;
11014 case OPTION_MDEBUG
:
11015 mips_flag_mdebug
= TRUE
;
11018 case OPTION_NO_MDEBUG
:
11019 mips_flag_mdebug
= FALSE
;
11023 mips_flag_pdr
= TRUE
;
11026 case OPTION_NO_PDR
:
11027 mips_flag_pdr
= FALSE
;
11029 #endif /* OBJ_ELF */
11038 /* Set up globals to generate code for the ISA or processor
11039 described by INFO. */
11042 mips_set_architecture (const struct mips_cpu_info
*info
)
11046 file_mips_arch
= info
->cpu
;
11047 mips_opts
.arch
= info
->cpu
;
11048 mips_opts
.isa
= info
->isa
;
11053 /* Likewise for tuning. */
11056 mips_set_tune (const struct mips_cpu_info
*info
)
11059 mips_tune
= info
->cpu
;
11064 mips_after_parse_args (void)
11066 const struct mips_cpu_info
*arch_info
= 0;
11067 const struct mips_cpu_info
*tune_info
= 0;
11069 /* GP relative stuff not working for PE */
11070 if (strncmp (TARGET_OS
, "pe", 2) == 0)
11072 if (g_switch_seen
&& g_switch_value
!= 0)
11073 as_bad (_("-G not supported in this configuration."));
11074 g_switch_value
= 0;
11077 if (mips_abi
== NO_ABI
)
11078 mips_abi
= MIPS_DEFAULT_ABI
;
11080 /* The following code determines the architecture and register size.
11081 Similar code was added to GCC 3.3 (see override_options() in
11082 config/mips/mips.c). The GAS and GCC code should be kept in sync
11083 as much as possible. */
11085 if (mips_arch_string
!= 0)
11086 arch_info
= mips_parse_cpu ("-march", mips_arch_string
);
11088 if (file_mips_isa
!= ISA_UNKNOWN
)
11090 /* Handle -mipsN. At this point, file_mips_isa contains the
11091 ISA level specified by -mipsN, while arch_info->isa contains
11092 the -march selection (if any). */
11093 if (arch_info
!= 0)
11095 /* -march takes precedence over -mipsN, since it is more descriptive.
11096 There's no harm in specifying both as long as the ISA levels
11098 if (file_mips_isa
!= arch_info
->isa
)
11099 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
11100 mips_cpu_info_from_isa (file_mips_isa
)->name
,
11101 mips_cpu_info_from_isa (arch_info
->isa
)->name
);
11104 arch_info
= mips_cpu_info_from_isa (file_mips_isa
);
11107 if (arch_info
== 0)
11108 arch_info
= mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT
);
11110 if (ABI_NEEDS_64BIT_REGS (mips_abi
) && !ISA_HAS_64BIT_REGS (arch_info
->isa
))
11111 as_bad ("-march=%s is not compatible with the selected ABI",
11114 mips_set_architecture (arch_info
);
11116 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
11117 if (mips_tune_string
!= 0)
11118 tune_info
= mips_parse_cpu ("-mtune", mips_tune_string
);
11120 if (tune_info
== 0)
11121 mips_set_tune (arch_info
);
11123 mips_set_tune (tune_info
);
11125 if (file_mips_gp32
>= 0)
11127 /* The user specified the size of the integer registers. Make sure
11128 it agrees with the ABI and ISA. */
11129 if (file_mips_gp32
== 0 && !ISA_HAS_64BIT_REGS (mips_opts
.isa
))
11130 as_bad (_("-mgp64 used with a 32-bit processor"));
11131 else if (file_mips_gp32
== 1 && ABI_NEEDS_64BIT_REGS (mips_abi
))
11132 as_bad (_("-mgp32 used with a 64-bit ABI"));
11133 else if (file_mips_gp32
== 0 && ABI_NEEDS_32BIT_REGS (mips_abi
))
11134 as_bad (_("-mgp64 used with a 32-bit ABI"));
11138 /* Infer the integer register size from the ABI and processor.
11139 Restrict ourselves to 32-bit registers if that's all the
11140 processor has, or if the ABI cannot handle 64-bit registers. */
11141 file_mips_gp32
= (ABI_NEEDS_32BIT_REGS (mips_abi
)
11142 || !ISA_HAS_64BIT_REGS (mips_opts
.isa
));
11145 /* ??? GAS treats single-float processors as though they had 64-bit
11146 float registers (although it complains when double-precision
11147 instructions are used). As things stand, saying they have 32-bit
11148 registers would lead to spurious "register must be even" messages.
11149 So here we assume float registers are always the same size as
11150 integer ones, unless the user says otherwise. */
11151 if (file_mips_fp32
< 0)
11152 file_mips_fp32
= file_mips_gp32
;
11154 /* End of GCC-shared inference code. */
11156 /* This flag is set when we have a 64-bit capable CPU but use only
11157 32-bit wide registers. Note that EABI does not use it. */
11158 if (ISA_HAS_64BIT_REGS (mips_opts
.isa
)
11159 && ((mips_abi
== NO_ABI
&& file_mips_gp32
== 1)
11160 || mips_abi
== O32_ABI
))
11161 mips_32bitmode
= 1;
11163 if (mips_opts
.isa
== ISA_MIPS1
&& mips_trap
)
11164 as_bad (_("trap exception not supported at ISA 1"));
11166 /* If the selected architecture includes support for ASEs, enable
11167 generation of code for them. */
11168 if (mips_opts
.mips16
== -1)
11169 mips_opts
.mips16
= (CPU_HAS_MIPS16 (file_mips_arch
)) ? 1 : 0;
11170 if (mips_opts
.ase_mips3d
== -1)
11171 mips_opts
.ase_mips3d
= (CPU_HAS_MIPS3D (file_mips_arch
)) ? 1 : 0;
11172 if (mips_opts
.ase_mdmx
== -1)
11173 mips_opts
.ase_mdmx
= (CPU_HAS_MDMX (file_mips_arch
)) ? 1 : 0;
11174 if (mips_opts
.ase_dsp
== -1)
11175 mips_opts
.ase_dsp
= (CPU_HAS_DSP (file_mips_arch
)) ? 1 : 0;
11176 if (mips_opts
.ase_mt
== -1)
11177 mips_opts
.ase_mt
= (CPU_HAS_MT (file_mips_arch
)) ? 1 : 0;
11179 file_mips_isa
= mips_opts
.isa
;
11180 file_ase_mips16
= mips_opts
.mips16
;
11181 file_ase_mips3d
= mips_opts
.ase_mips3d
;
11182 file_ase_mdmx
= mips_opts
.ase_mdmx
;
11183 file_ase_dsp
= mips_opts
.ase_dsp
;
11184 file_ase_mt
= mips_opts
.ase_mt
;
11185 mips_opts
.gp32
= file_mips_gp32
;
11186 mips_opts
.fp32
= file_mips_fp32
;
11188 if (mips_flag_mdebug
< 0)
11190 #ifdef OBJ_MAYBE_ECOFF
11191 if (OUTPUT_FLAVOR
== bfd_target_ecoff_flavour
)
11192 mips_flag_mdebug
= 1;
11194 #endif /* OBJ_MAYBE_ECOFF */
11195 mips_flag_mdebug
= 0;
11200 mips_init_after_args (void)
11202 /* initialize opcodes */
11203 bfd_mips_num_opcodes
= bfd_mips_num_builtin_opcodes
;
11204 mips_opcodes
= (struct mips_opcode
*) mips_builtin_opcodes
;
11208 md_pcrel_from (fixS
*fixP
)
11210 valueT addr
= fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
11211 switch (fixP
->fx_r_type
)
11213 case BFD_RELOC_16_PCREL_S2
:
11214 case BFD_RELOC_MIPS_JMP
:
11215 /* Return the address of the delay slot. */
11222 /* This is called before the symbol table is processed. In order to
11223 work with gcc when using mips-tfile, we must keep all local labels.
11224 However, in other cases, we want to discard them. If we were
11225 called with -g, but we didn't see any debugging information, it may
11226 mean that gcc is smuggling debugging information through to
11227 mips-tfile, in which case we must generate all local labels. */
11230 mips_frob_file_before_adjust (void)
11232 #ifndef NO_ECOFF_DEBUGGING
11233 if (ECOFF_DEBUGGING
11235 && ! ecoff_debugging_seen
)
11236 flag_keep_locals
= 1;
11240 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
11241 the corresponding LO16 reloc. This is called before md_apply_fix and
11242 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
11243 relocation operators.
11245 For our purposes, a %lo() expression matches a %got() or %hi()
11248 (a) it refers to the same symbol; and
11249 (b) the offset applied in the %lo() expression is no lower than
11250 the offset applied in the %got() or %hi().
11252 (b) allows us to cope with code like:
11255 lh $4,%lo(foo+2)($4)
11257 ...which is legal on RELA targets, and has a well-defined behaviour
11258 if the user knows that adding 2 to "foo" will not induce a carry to
11261 When several %lo()s match a particular %got() or %hi(), we use the
11262 following rules to distinguish them:
11264 (1) %lo()s with smaller offsets are a better match than %lo()s with
11267 (2) %lo()s with no matching %got() or %hi() are better than those
11268 that already have a matching %got() or %hi().
11270 (3) later %lo()s are better than earlier %lo()s.
11272 These rules are applied in order.
11274 (1) means, among other things, that %lo()s with identical offsets are
11275 chosen if they exist.
11277 (2) means that we won't associate several high-part relocations with
11278 the same low-part relocation unless there's no alternative. Having
11279 several high parts for the same low part is a GNU extension; this rule
11280 allows careful users to avoid it.
11282 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
11283 with the last high-part relocation being at the front of the list.
11284 It therefore makes sense to choose the last matching low-part
11285 relocation, all other things being equal. It's also easier
11286 to code that way. */
11289 mips_frob_file (void)
11291 struct mips_hi_fixup
*l
;
11293 for (l
= mips_hi_fixup_list
; l
!= NULL
; l
= l
->next
)
11295 segment_info_type
*seginfo
;
11296 bfd_boolean matched_lo_p
;
11297 fixS
**hi_pos
, **lo_pos
, **pos
;
11299 assert (reloc_needs_lo_p (l
->fixp
->fx_r_type
));
11301 /* If a GOT16 relocation turns out to be against a global symbol,
11302 there isn't supposed to be a matching LO. */
11303 if (l
->fixp
->fx_r_type
== BFD_RELOC_MIPS_GOT16
11304 && !pic_need_relax (l
->fixp
->fx_addsy
, l
->seg
))
11307 /* Check quickly whether the next fixup happens to be a matching %lo. */
11308 if (fixup_has_matching_lo_p (l
->fixp
))
11311 seginfo
= seg_info (l
->seg
);
11313 /* Set HI_POS to the position of this relocation in the chain.
11314 Set LO_POS to the position of the chosen low-part relocation.
11315 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
11316 relocation that matches an immediately-preceding high-part
11320 matched_lo_p
= FALSE
;
11321 for (pos
= &seginfo
->fix_root
; *pos
!= NULL
; pos
= &(*pos
)->fx_next
)
11323 if (*pos
== l
->fixp
)
11326 if (((*pos
)->fx_r_type
== BFD_RELOC_LO16
11327 || (*pos
)->fx_r_type
== BFD_RELOC_MIPS16_LO16
)
11328 && (*pos
)->fx_addsy
== l
->fixp
->fx_addsy
11329 && (*pos
)->fx_offset
>= l
->fixp
->fx_offset
11331 || (*pos
)->fx_offset
< (*lo_pos
)->fx_offset
11333 && (*pos
)->fx_offset
== (*lo_pos
)->fx_offset
)))
11336 matched_lo_p
= (reloc_needs_lo_p ((*pos
)->fx_r_type
)
11337 && fixup_has_matching_lo_p (*pos
));
11340 /* If we found a match, remove the high-part relocation from its
11341 current position and insert it before the low-part relocation.
11342 Make the offsets match so that fixup_has_matching_lo_p()
11345 We don't warn about unmatched high-part relocations since some
11346 versions of gcc have been known to emit dead "lui ...%hi(...)"
11348 if (lo_pos
!= NULL
)
11350 l
->fixp
->fx_offset
= (*lo_pos
)->fx_offset
;
11351 if (l
->fixp
->fx_next
!= *lo_pos
)
11353 *hi_pos
= l
->fixp
->fx_next
;
11354 l
->fixp
->fx_next
= *lo_pos
;
11361 /* We may have combined relocations without symbols in the N32/N64 ABI.
11362 We have to prevent gas from dropping them. */
11365 mips_force_relocation (fixS
*fixp
)
11367 if (generic_force_reloc (fixp
))
11371 && S_GET_SEGMENT (fixp
->fx_addsy
) == bfd_abs_section_ptr
11372 && (fixp
->fx_r_type
== BFD_RELOC_MIPS_SUB
11373 || fixp
->fx_r_type
== BFD_RELOC_HI16_S
11374 || fixp
->fx_r_type
== BFD_RELOC_LO16
))
11380 /* Apply a fixup to the object file. */
11383 md_apply_fix (fixS
*fixP
, valueT
*valP
, segT seg ATTRIBUTE_UNUSED
)
11387 reloc_howto_type
*howto
;
11389 /* We ignore generic BFD relocations we don't know about. */
11390 howto
= bfd_reloc_type_lookup (stdoutput
, fixP
->fx_r_type
);
11394 assert (fixP
->fx_size
== 4
11395 || fixP
->fx_r_type
== BFD_RELOC_16
11396 || fixP
->fx_r_type
== BFD_RELOC_64
11397 || fixP
->fx_r_type
== BFD_RELOC_CTOR
11398 || fixP
->fx_r_type
== BFD_RELOC_MIPS_SUB
11399 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
11400 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
);
11402 buf
= (bfd_byte
*) (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
);
11404 assert (! fixP
->fx_pcrel
|| fixP
->fx_r_type
== BFD_RELOC_16_PCREL_S2
);
11406 /* Don't treat parts of a composite relocation as done. There are two
11409 (1) The second and third parts will be against 0 (RSS_UNDEF) but
11410 should nevertheless be emitted if the first part is.
11412 (2) In normal usage, composite relocations are never assembly-time
11413 constants. The easiest way of dealing with the pathological
11414 exceptions is to generate a relocation against STN_UNDEF and
11415 leave everything up to the linker. */
11416 if (fixP
->fx_addsy
== NULL
&& ! fixP
->fx_pcrel
&& fixP
->fx_tcbit
== 0)
11419 switch (fixP
->fx_r_type
)
11421 case BFD_RELOC_MIPS_TLS_GD
:
11422 case BFD_RELOC_MIPS_TLS_LDM
:
11423 case BFD_RELOC_MIPS_TLS_DTPREL_HI16
:
11424 case BFD_RELOC_MIPS_TLS_DTPREL_LO16
:
11425 case BFD_RELOC_MIPS_TLS_GOTTPREL
:
11426 case BFD_RELOC_MIPS_TLS_TPREL_HI16
:
11427 case BFD_RELOC_MIPS_TLS_TPREL_LO16
:
11428 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
11431 case BFD_RELOC_MIPS_JMP
:
11432 case BFD_RELOC_MIPS_SHIFT5
:
11433 case BFD_RELOC_MIPS_SHIFT6
:
11434 case BFD_RELOC_MIPS_GOT_DISP
:
11435 case BFD_RELOC_MIPS_GOT_PAGE
:
11436 case BFD_RELOC_MIPS_GOT_OFST
:
11437 case BFD_RELOC_MIPS_SUB
:
11438 case BFD_RELOC_MIPS_INSERT_A
:
11439 case BFD_RELOC_MIPS_INSERT_B
:
11440 case BFD_RELOC_MIPS_DELETE
:
11441 case BFD_RELOC_MIPS_HIGHEST
:
11442 case BFD_RELOC_MIPS_HIGHER
:
11443 case BFD_RELOC_MIPS_SCN_DISP
:
11444 case BFD_RELOC_MIPS_REL16
:
11445 case BFD_RELOC_MIPS_RELGOT
:
11446 case BFD_RELOC_MIPS_JALR
:
11447 case BFD_RELOC_HI16
:
11448 case BFD_RELOC_HI16_S
:
11449 case BFD_RELOC_GPREL16
:
11450 case BFD_RELOC_MIPS_LITERAL
:
11451 case BFD_RELOC_MIPS_CALL16
:
11452 case BFD_RELOC_MIPS_GOT16
:
11453 case BFD_RELOC_GPREL32
:
11454 case BFD_RELOC_MIPS_GOT_HI16
:
11455 case BFD_RELOC_MIPS_GOT_LO16
:
11456 case BFD_RELOC_MIPS_CALL_HI16
:
11457 case BFD_RELOC_MIPS_CALL_LO16
:
11458 case BFD_RELOC_MIPS16_GPREL
:
11459 case BFD_RELOC_MIPS16_HI16
:
11460 case BFD_RELOC_MIPS16_HI16_S
:
11461 /* Nothing needed to do. The value comes from the reloc entry */
11464 case BFD_RELOC_MIPS16_JMP
:
11465 /* We currently always generate a reloc against a symbol, which
11466 means that we don't want an addend even if the symbol is
11472 /* This is handled like BFD_RELOC_32, but we output a sign
11473 extended value if we are only 32 bits. */
11476 if (8 <= sizeof (valueT
))
11477 md_number_to_chars ((char *) buf
, *valP
, 8);
11482 if ((*valP
& 0x80000000) != 0)
11486 md_number_to_chars ((char *)(buf
+ (target_big_endian
? 4 : 0)),
11488 md_number_to_chars ((char *)(buf
+ (target_big_endian
? 0 : 4)),
11494 case BFD_RELOC_RVA
:
11496 /* If we are deleting this reloc entry, we must fill in the
11497 value now. This can happen if we have a .word which is not
11498 resolved when it appears but is later defined. */
11500 md_number_to_chars ((char *) buf
, *valP
, 4);
11504 /* If we are deleting this reloc entry, we must fill in the
11507 md_number_to_chars ((char *) buf
, *valP
, 2);
11510 case BFD_RELOC_LO16
:
11511 case BFD_RELOC_MIPS16_LO16
:
11512 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
11513 may be safe to remove, but if so it's not obvious. */
11514 /* When handling an embedded PIC switch statement, we can wind
11515 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
11518 if (*valP
+ 0x8000 > 0xffff)
11519 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
11520 _("relocation overflow"));
11521 if (target_big_endian
)
11523 md_number_to_chars ((char *) buf
, *valP
, 2);
11527 case BFD_RELOC_16_PCREL_S2
:
11528 if ((*valP
& 0x3) != 0)
11529 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
11530 _("Branch to misaligned address (%lx)"), (long) *valP
);
11533 * We need to save the bits in the instruction since fixup_segment()
11534 * might be deleting the relocation entry (i.e., a branch within
11535 * the current segment).
11537 if (! fixP
->fx_done
)
11540 /* update old instruction data */
11541 if (target_big_endian
)
11542 insn
= (buf
[0] << 24) | (buf
[1] << 16) | (buf
[2] << 8) | buf
[3];
11544 insn
= (buf
[3] << 24) | (buf
[2] << 16) | (buf
[1] << 8) | buf
[0];
11546 if (*valP
+ 0x20000 <= 0x3ffff)
11548 insn
|= (*valP
>> 2) & 0xffff;
11549 md_number_to_chars ((char *) buf
, insn
, 4);
11551 else if (mips_pic
== NO_PIC
11553 && fixP
->fx_frag
->fr_address
>= text_section
->vma
11554 && (fixP
->fx_frag
->fr_address
11555 < text_section
->vma
+ bfd_get_section_size (text_section
))
11556 && ((insn
& 0xffff0000) == 0x10000000 /* beq $0,$0 */
11557 || (insn
& 0xffff0000) == 0x04010000 /* bgez $0 */
11558 || (insn
& 0xffff0000) == 0x04110000)) /* bgezal $0 */
11560 /* The branch offset is too large. If this is an
11561 unconditional branch, and we are not generating PIC code,
11562 we can convert it to an absolute jump instruction. */
11563 if ((insn
& 0xffff0000) == 0x04110000) /* bgezal $0 */
11564 insn
= 0x0c000000; /* jal */
11566 insn
= 0x08000000; /* j */
11567 fixP
->fx_r_type
= BFD_RELOC_MIPS_JMP
;
11569 fixP
->fx_addsy
= section_symbol (text_section
);
11570 *valP
+= md_pcrel_from (fixP
);
11571 md_number_to_chars ((char *) buf
, insn
, 4);
11575 /* If we got here, we have branch-relaxation disabled,
11576 and there's nothing we can do to fix this instruction
11577 without turning it into a longer sequence. */
11578 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
11579 _("Branch out of range"));
11583 case BFD_RELOC_VTABLE_INHERIT
:
11586 && !S_IS_DEFINED (fixP
->fx_addsy
)
11587 && !S_IS_WEAK (fixP
->fx_addsy
))
11588 S_SET_WEAK (fixP
->fx_addsy
);
11591 case BFD_RELOC_VTABLE_ENTRY
:
11599 /* Remember value for tc_gen_reloc. */
11600 fixP
->fx_addnumber
= *valP
;
11610 name
= input_line_pointer
;
11611 c
= get_symbol_end ();
11612 p
= (symbolS
*) symbol_find_or_make (name
);
11613 *input_line_pointer
= c
;
11617 /* Align the current frag to a given power of two. The MIPS assembler
11618 also automatically adjusts any preceding label. */
11621 mips_align (int to
, int fill
, symbolS
*label
)
11623 mips_emit_delays ();
11624 frag_align (to
, fill
, 0);
11625 record_alignment (now_seg
, to
);
11628 assert (S_GET_SEGMENT (label
) == now_seg
);
11629 symbol_set_frag (label
, frag_now
);
11630 S_SET_VALUE (label
, (valueT
) frag_now_fix ());
11634 /* Align to a given power of two. .align 0 turns off the automatic
11635 alignment used by the data creating pseudo-ops. */
11638 s_align (int x ATTRIBUTE_UNUSED
)
11641 register long temp_fill
;
11642 long max_alignment
= 15;
11646 o Note that the assembler pulls down any immediately preceding label
11647 to the aligned address.
11648 o It's not documented but auto alignment is reinstated by
11649 a .align pseudo instruction.
11650 o Note also that after auto alignment is turned off the mips assembler
11651 issues an error on attempt to assemble an improperly aligned data item.
11656 temp
= get_absolute_expression ();
11657 if (temp
> max_alignment
)
11658 as_bad (_("Alignment too large: %d. assumed."), temp
= max_alignment
);
11661 as_warn (_("Alignment negative: 0 assumed."));
11664 if (*input_line_pointer
== ',')
11666 ++input_line_pointer
;
11667 temp_fill
= get_absolute_expression ();
11674 mips_align (temp
, (int) temp_fill
,
11675 insn_labels
!= NULL
? insn_labels
->label
: NULL
);
11682 demand_empty_rest_of_line ();
11686 s_change_sec (int sec
)
11691 /* The ELF backend needs to know that we are changing sections, so
11692 that .previous works correctly. We could do something like check
11693 for an obj_section_change_hook macro, but that might be confusing
11694 as it would not be appropriate to use it in the section changing
11695 functions in read.c, since obj-elf.c intercepts those. FIXME:
11696 This should be cleaner, somehow. */
11697 obj_elf_section_change_hook ();
11700 mips_emit_delays ();
11710 subseg_set (bss_section
, (subsegT
) get_absolute_expression ());
11711 demand_empty_rest_of_line ();
11715 seg
= subseg_new (RDATA_SECTION_NAME
,
11716 (subsegT
) get_absolute_expression ());
11717 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
)
11719 bfd_set_section_flags (stdoutput
, seg
, (SEC_ALLOC
| SEC_LOAD
11720 | SEC_READONLY
| SEC_RELOC
11722 if (strcmp (TARGET_OS
, "elf") != 0)
11723 record_alignment (seg
, 4);
11725 demand_empty_rest_of_line ();
11729 seg
= subseg_new (".sdata", (subsegT
) get_absolute_expression ());
11730 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
)
11732 bfd_set_section_flags (stdoutput
, seg
,
11733 SEC_ALLOC
| SEC_LOAD
| SEC_RELOC
| SEC_DATA
);
11734 if (strcmp (TARGET_OS
, "elf") != 0)
11735 record_alignment (seg
, 4);
11737 demand_empty_rest_of_line ();
11745 s_change_section (int ignore ATTRIBUTE_UNUSED
)
11748 char *section_name
;
11753 int section_entry_size
;
11754 int section_alignment
;
11756 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
)
11759 section_name
= input_line_pointer
;
11760 c
= get_symbol_end ();
11762 next_c
= *(input_line_pointer
+ 1);
11764 /* Do we have .section Name<,"flags">? */
11765 if (c
!= ',' || (c
== ',' && next_c
== '"'))
11767 /* just after name is now '\0'. */
11768 *input_line_pointer
= c
;
11769 input_line_pointer
= section_name
;
11770 obj_elf_section (ignore
);
11773 input_line_pointer
++;
11775 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
11777 section_type
= get_absolute_expression ();
11780 if (*input_line_pointer
++ == ',')
11781 section_flag
= get_absolute_expression ();
11784 if (*input_line_pointer
++ == ',')
11785 section_entry_size
= get_absolute_expression ();
11787 section_entry_size
= 0;
11788 if (*input_line_pointer
++ == ',')
11789 section_alignment
= get_absolute_expression ();
11791 section_alignment
= 0;
11793 section_name
= xstrdup (section_name
);
11795 /* When using the generic form of .section (as implemented by obj-elf.c),
11796 there's no way to set the section type to SHT_MIPS_DWARF. Users have
11797 traditionally had to fall back on the more common @progbits instead.
11799 There's nothing really harmful in this, since bfd will correct
11800 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
11801 means that, for backwards compatibiltiy, the special_section entries
11802 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
11804 Even so, we shouldn't force users of the MIPS .section syntax to
11805 incorrectly label the sections as SHT_PROGBITS. The best compromise
11806 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
11807 generic type-checking code. */
11808 if (section_type
== SHT_MIPS_DWARF
)
11809 section_type
= SHT_PROGBITS
;
11811 obj_elf_change_section (section_name
, section_type
, section_flag
,
11812 section_entry_size
, 0, 0, 0);
11814 if (now_seg
->name
!= section_name
)
11815 free (section_name
);
11816 #endif /* OBJ_ELF */
11820 mips_enable_auto_align (void)
11826 s_cons (int log_size
)
11830 label
= insn_labels
!= NULL
? insn_labels
->label
: NULL
;
11831 mips_emit_delays ();
11832 if (log_size
> 0 && auto_align
)
11833 mips_align (log_size
, 0, label
);
11834 mips_clear_insn_labels ();
11835 cons (1 << log_size
);
11839 s_float_cons (int type
)
11843 label
= insn_labels
!= NULL
? insn_labels
->label
: NULL
;
11845 mips_emit_delays ();
11850 mips_align (3, 0, label
);
11852 mips_align (2, 0, label
);
11855 mips_clear_insn_labels ();
11860 /* Handle .globl. We need to override it because on Irix 5 you are
11863 where foo is an undefined symbol, to mean that foo should be
11864 considered to be the address of a function. */
11867 s_mips_globl (int x ATTRIBUTE_UNUSED
)
11876 name
= input_line_pointer
;
11877 c
= get_symbol_end ();
11878 symbolP
= symbol_find_or_make (name
);
11879 S_SET_EXTERNAL (symbolP
);
11881 *input_line_pointer
= c
;
11882 SKIP_WHITESPACE ();
11884 /* On Irix 5, every global symbol that is not explicitly labelled as
11885 being a function is apparently labelled as being an object. */
11888 if (!is_end_of_line
[(unsigned char) *input_line_pointer
]
11889 && (*input_line_pointer
!= ','))
11894 secname
= input_line_pointer
;
11895 c
= get_symbol_end ();
11896 sec
= bfd_get_section_by_name (stdoutput
, secname
);
11898 as_bad (_("%s: no such section"), secname
);
11899 *input_line_pointer
= c
;
11901 if (sec
!= NULL
&& (sec
->flags
& SEC_CODE
) != 0)
11902 flag
= BSF_FUNCTION
;
11905 symbol_get_bfdsym (symbolP
)->flags
|= flag
;
11907 c
= *input_line_pointer
;
11910 input_line_pointer
++;
11911 SKIP_WHITESPACE ();
11912 if (is_end_of_line
[(unsigned char) *input_line_pointer
])
11918 demand_empty_rest_of_line ();
11922 s_option (int x ATTRIBUTE_UNUSED
)
11927 opt
= input_line_pointer
;
11928 c
= get_symbol_end ();
11932 /* FIXME: What does this mean? */
11934 else if (strncmp (opt
, "pic", 3) == 0)
11938 i
= atoi (opt
+ 3);
11943 mips_pic
= SVR4_PIC
;
11944 mips_abicalls
= TRUE
;
11947 as_bad (_(".option pic%d not supported"), i
);
11949 if (mips_pic
== SVR4_PIC
)
11951 if (g_switch_seen
&& g_switch_value
!= 0)
11952 as_warn (_("-G may not be used with SVR4 PIC code"));
11953 g_switch_value
= 0;
11954 bfd_set_gp_size (stdoutput
, 0);
11958 as_warn (_("Unrecognized option \"%s\""), opt
);
11960 *input_line_pointer
= c
;
11961 demand_empty_rest_of_line ();
11964 /* This structure is used to hold a stack of .set values. */
11966 struct mips_option_stack
11968 struct mips_option_stack
*next
;
11969 struct mips_set_options options
;
11972 static struct mips_option_stack
*mips_opts_stack
;
11974 /* Handle the .set pseudo-op. */
11977 s_mipsset (int x ATTRIBUTE_UNUSED
)
11979 char *name
= input_line_pointer
, ch
;
11981 while (!is_end_of_line
[(unsigned char) *input_line_pointer
])
11982 ++input_line_pointer
;
11983 ch
= *input_line_pointer
;
11984 *input_line_pointer
= '\0';
11986 if (strcmp (name
, "reorder") == 0)
11988 if (mips_opts
.noreorder
)
11991 else if (strcmp (name
, "noreorder") == 0)
11993 if (!mips_opts
.noreorder
)
11994 start_noreorder ();
11996 else if (strcmp (name
, "at") == 0)
11998 mips_opts
.noat
= 0;
12000 else if (strcmp (name
, "noat") == 0)
12002 mips_opts
.noat
= 1;
12004 else if (strcmp (name
, "macro") == 0)
12006 mips_opts
.warn_about_macros
= 0;
12008 else if (strcmp (name
, "nomacro") == 0)
12010 if (mips_opts
.noreorder
== 0)
12011 as_bad (_("`noreorder' must be set before `nomacro'"));
12012 mips_opts
.warn_about_macros
= 1;
12014 else if (strcmp (name
, "move") == 0 || strcmp (name
, "novolatile") == 0)
12016 mips_opts
.nomove
= 0;
12018 else if (strcmp (name
, "nomove") == 0 || strcmp (name
, "volatile") == 0)
12020 mips_opts
.nomove
= 1;
12022 else if (strcmp (name
, "bopt") == 0)
12024 mips_opts
.nobopt
= 0;
12026 else if (strcmp (name
, "nobopt") == 0)
12028 mips_opts
.nobopt
= 1;
12030 else if (strcmp (name
, "mips16") == 0
12031 || strcmp (name
, "MIPS-16") == 0)
12032 mips_opts
.mips16
= 1;
12033 else if (strcmp (name
, "nomips16") == 0
12034 || strcmp (name
, "noMIPS-16") == 0)
12035 mips_opts
.mips16
= 0;
12036 else if (strcmp (name
, "mips3d") == 0)
12037 mips_opts
.ase_mips3d
= 1;
12038 else if (strcmp (name
, "nomips3d") == 0)
12039 mips_opts
.ase_mips3d
= 0;
12040 else if (strcmp (name
, "mdmx") == 0)
12041 mips_opts
.ase_mdmx
= 1;
12042 else if (strcmp (name
, "nomdmx") == 0)
12043 mips_opts
.ase_mdmx
= 0;
12044 else if (strcmp (name
, "dsp") == 0)
12045 mips_opts
.ase_dsp
= 1;
12046 else if (strcmp (name
, "nodsp") == 0)
12047 mips_opts
.ase_dsp
= 0;
12048 else if (strcmp (name
, "mt") == 0)
12049 mips_opts
.ase_mt
= 1;
12050 else if (strcmp (name
, "nomt") == 0)
12051 mips_opts
.ase_mt
= 0;
12052 else if (strncmp (name
, "mips", 4) == 0 || strncmp (name
, "arch=", 5) == 0)
12056 /* Permit the user to change the ISA and architecture on the fly.
12057 Needless to say, misuse can cause serious problems. */
12058 if (strcmp (name
, "mips0") == 0 || strcmp (name
, "arch=default") == 0)
12061 mips_opts
.isa
= file_mips_isa
;
12062 mips_opts
.arch
= file_mips_arch
;
12064 else if (strncmp (name
, "arch=", 5) == 0)
12066 const struct mips_cpu_info
*p
;
12068 p
= mips_parse_cpu("internal use", name
+ 5);
12070 as_bad (_("unknown architecture %s"), name
+ 5);
12073 mips_opts
.arch
= p
->cpu
;
12074 mips_opts
.isa
= p
->isa
;
12077 else if (strncmp (name
, "mips", 4) == 0)
12079 const struct mips_cpu_info
*p
;
12081 p
= mips_parse_cpu("internal use", name
);
12083 as_bad (_("unknown ISA level %s"), name
+ 4);
12086 mips_opts
.arch
= p
->cpu
;
12087 mips_opts
.isa
= p
->isa
;
12091 as_bad (_("unknown ISA or architecture %s"), name
);
12093 switch (mips_opts
.isa
)
12101 mips_opts
.gp32
= 1;
12102 mips_opts
.fp32
= 1;
12109 mips_opts
.gp32
= 0;
12110 mips_opts
.fp32
= 0;
12113 as_bad (_("unknown ISA level %s"), name
+ 4);
12118 mips_opts
.gp32
= file_mips_gp32
;
12119 mips_opts
.fp32
= file_mips_fp32
;
12122 else if (strcmp (name
, "autoextend") == 0)
12123 mips_opts
.noautoextend
= 0;
12124 else if (strcmp (name
, "noautoextend") == 0)
12125 mips_opts
.noautoextend
= 1;
12126 else if (strcmp (name
, "push") == 0)
12128 struct mips_option_stack
*s
;
12130 s
= (struct mips_option_stack
*) xmalloc (sizeof *s
);
12131 s
->next
= mips_opts_stack
;
12132 s
->options
= mips_opts
;
12133 mips_opts_stack
= s
;
12135 else if (strcmp (name
, "pop") == 0)
12137 struct mips_option_stack
*s
;
12139 s
= mips_opts_stack
;
12141 as_bad (_(".set pop with no .set push"));
12144 /* If we're changing the reorder mode we need to handle
12145 delay slots correctly. */
12146 if (s
->options
.noreorder
&& ! mips_opts
.noreorder
)
12147 start_noreorder ();
12148 else if (! s
->options
.noreorder
&& mips_opts
.noreorder
)
12151 mips_opts
= s
->options
;
12152 mips_opts_stack
= s
->next
;
12156 else if (strcmp (name
, "sym32") == 0)
12157 mips_opts
.sym32
= TRUE
;
12158 else if (strcmp (name
, "nosym32") == 0)
12159 mips_opts
.sym32
= FALSE
;
12162 as_warn (_("Tried to set unrecognized symbol: %s\n"), name
);
12164 *input_line_pointer
= ch
;
12165 demand_empty_rest_of_line ();
12168 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
12169 .option pic2. It means to generate SVR4 PIC calls. */
12172 s_abicalls (int ignore ATTRIBUTE_UNUSED
)
12174 mips_pic
= SVR4_PIC
;
12175 mips_abicalls
= TRUE
;
12177 if (g_switch_seen
&& g_switch_value
!= 0)
12178 as_warn (_("-G may not be used with SVR4 PIC code"));
12179 g_switch_value
= 0;
12181 bfd_set_gp_size (stdoutput
, 0);
12182 demand_empty_rest_of_line ();
12185 /* Handle the .cpload pseudo-op. This is used when generating SVR4
12186 PIC code. It sets the $gp register for the function based on the
12187 function address, which is in the register named in the argument.
12188 This uses a relocation against _gp_disp, which is handled specially
12189 by the linker. The result is:
12190 lui $gp,%hi(_gp_disp)
12191 addiu $gp,$gp,%lo(_gp_disp)
12192 addu $gp,$gp,.cpload argument
12193 The .cpload argument is normally $25 == $t9.
12195 The -mno-shared option changes this to:
12196 lui $gp,%hi(__gnu_local_gp)
12197 addiu $gp,$gp,%lo(__gnu_local_gp)
12198 and the argument is ignored. This saves an instruction, but the
12199 resulting code is not position independent; it uses an absolute
12200 address for __gnu_local_gp. Thus code assembled with -mno-shared
12201 can go into an ordinary executable, but not into a shared library. */
12204 s_cpload (int ignore ATTRIBUTE_UNUSED
)
12210 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
12211 .cpload is ignored. */
12212 if (mips_pic
!= SVR4_PIC
|| HAVE_NEWABI
)
12218 /* .cpload should be in a .set noreorder section. */
12219 if (mips_opts
.noreorder
== 0)
12220 as_warn (_(".cpload not in noreorder section"));
12222 reg
= tc_get_register (0);
12224 /* If we need to produce a 64-bit address, we are better off using
12225 the default instruction sequence. */
12226 in_shared
= mips_in_shared
|| HAVE_64BIT_SYMBOLS
;
12228 ex
.X_op
= O_symbol
;
12229 ex
.X_add_symbol
= symbol_find_or_make (in_shared
? "_gp_disp" :
12231 ex
.X_op_symbol
= NULL
;
12232 ex
.X_add_number
= 0;
12234 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
12235 symbol_get_bfdsym (ex
.X_add_symbol
)->flags
|= BSF_OBJECT
;
12238 macro_build_lui (&ex
, mips_gp_register
);
12239 macro_build (&ex
, "addiu", "t,r,j", mips_gp_register
,
12240 mips_gp_register
, BFD_RELOC_LO16
);
12242 macro_build (NULL
, "addu", "d,v,t", mips_gp_register
,
12243 mips_gp_register
, reg
);
12246 demand_empty_rest_of_line ();
12249 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
12250 .cpsetup $reg1, offset|$reg2, label
12252 If offset is given, this results in:
12253 sd $gp, offset($sp)
12254 lui $gp, %hi(%neg(%gp_rel(label)))
12255 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
12256 daddu $gp, $gp, $reg1
12258 If $reg2 is given, this results in:
12259 daddu $reg2, $gp, $0
12260 lui $gp, %hi(%neg(%gp_rel(label)))
12261 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
12262 daddu $gp, $gp, $reg1
12263 $reg1 is normally $25 == $t9.
12265 The -mno-shared option replaces the last three instructions with
12267 addiu $gp,$gp,%lo(_gp)
12271 s_cpsetup (int ignore ATTRIBUTE_UNUSED
)
12273 expressionS ex_off
;
12274 expressionS ex_sym
;
12277 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
12278 We also need NewABI support. */
12279 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
12285 reg1
= tc_get_register (0);
12286 SKIP_WHITESPACE ();
12287 if (*input_line_pointer
!= ',')
12289 as_bad (_("missing argument separator ',' for .cpsetup"));
12293 ++input_line_pointer
;
12294 SKIP_WHITESPACE ();
12295 if (*input_line_pointer
== '$')
12297 mips_cpreturn_register
= tc_get_register (0);
12298 mips_cpreturn_offset
= -1;
12302 mips_cpreturn_offset
= get_absolute_expression ();
12303 mips_cpreturn_register
= -1;
12305 SKIP_WHITESPACE ();
12306 if (*input_line_pointer
!= ',')
12308 as_bad (_("missing argument separator ',' for .cpsetup"));
12312 ++input_line_pointer
;
12313 SKIP_WHITESPACE ();
12314 expression (&ex_sym
);
12317 if (mips_cpreturn_register
== -1)
12319 ex_off
.X_op
= O_constant
;
12320 ex_off
.X_add_symbol
= NULL
;
12321 ex_off
.X_op_symbol
= NULL
;
12322 ex_off
.X_add_number
= mips_cpreturn_offset
;
12324 macro_build (&ex_off
, "sd", "t,o(b)", mips_gp_register
,
12325 BFD_RELOC_LO16
, SP
);
12328 macro_build (NULL
, "daddu", "d,v,t", mips_cpreturn_register
,
12329 mips_gp_register
, 0);
12331 if (mips_in_shared
|| HAVE_64BIT_SYMBOLS
)
12333 macro_build (&ex_sym
, "lui", "t,u", mips_gp_register
,
12334 -1, BFD_RELOC_GPREL16
, BFD_RELOC_MIPS_SUB
,
12337 macro_build (&ex_sym
, "addiu", "t,r,j", mips_gp_register
,
12338 mips_gp_register
, -1, BFD_RELOC_GPREL16
,
12339 BFD_RELOC_MIPS_SUB
, BFD_RELOC_LO16
);
12341 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", mips_gp_register
,
12342 mips_gp_register
, reg1
);
12348 ex
.X_op
= O_symbol
;
12349 ex
.X_add_symbol
= symbol_find_or_make ("__gnu_local_gp");
12350 ex
.X_op_symbol
= NULL
;
12351 ex
.X_add_number
= 0;
12353 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
12354 symbol_get_bfdsym (ex
.X_add_symbol
)->flags
|= BSF_OBJECT
;
12356 macro_build_lui (&ex
, mips_gp_register
);
12357 macro_build (&ex
, "addiu", "t,r,j", mips_gp_register
,
12358 mips_gp_register
, BFD_RELOC_LO16
);
12363 demand_empty_rest_of_line ();
12367 s_cplocal (int ignore ATTRIBUTE_UNUSED
)
12369 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
12370 .cplocal is ignored. */
12371 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
12377 mips_gp_register
= tc_get_register (0);
12378 demand_empty_rest_of_line ();
12381 /* Handle the .cprestore pseudo-op. This stores $gp into a given
12382 offset from $sp. The offset is remembered, and after making a PIC
12383 call $gp is restored from that location. */
12386 s_cprestore (int ignore ATTRIBUTE_UNUSED
)
12390 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
12391 .cprestore is ignored. */
12392 if (mips_pic
!= SVR4_PIC
|| HAVE_NEWABI
)
12398 mips_cprestore_offset
= get_absolute_expression ();
12399 mips_cprestore_valid
= 1;
12401 ex
.X_op
= O_constant
;
12402 ex
.X_add_symbol
= NULL
;
12403 ex
.X_op_symbol
= NULL
;
12404 ex
.X_add_number
= mips_cprestore_offset
;
12407 macro_build_ldst_constoffset (&ex
, ADDRESS_STORE_INSN
, mips_gp_register
,
12408 SP
, HAVE_64BIT_ADDRESSES
);
12411 demand_empty_rest_of_line ();
12414 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
12415 was given in the preceding .cpsetup, it results in:
12416 ld $gp, offset($sp)
12418 If a register $reg2 was given there, it results in:
12419 daddu $gp, $reg2, $0
12422 s_cpreturn (int ignore ATTRIBUTE_UNUSED
)
12426 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
12427 We also need NewABI support. */
12428 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
12435 if (mips_cpreturn_register
== -1)
12437 ex
.X_op
= O_constant
;
12438 ex
.X_add_symbol
= NULL
;
12439 ex
.X_op_symbol
= NULL
;
12440 ex
.X_add_number
= mips_cpreturn_offset
;
12442 macro_build (&ex
, "ld", "t,o(b)", mips_gp_register
, BFD_RELOC_LO16
, SP
);
12445 macro_build (NULL
, "daddu", "d,v,t", mips_gp_register
,
12446 mips_cpreturn_register
, 0);
12449 demand_empty_rest_of_line ();
12452 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
12453 code. It sets the offset to use in gp_rel relocations. */
12456 s_gpvalue (int ignore ATTRIBUTE_UNUSED
)
12458 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
12459 We also need NewABI support. */
12460 if (mips_pic
!= SVR4_PIC
|| ! HAVE_NEWABI
)
12466 mips_gprel_offset
= get_absolute_expression ();
12468 demand_empty_rest_of_line ();
12471 /* Handle the .gpword pseudo-op. This is used when generating PIC
12472 code. It generates a 32 bit GP relative reloc. */
12475 s_gpword (int ignore ATTRIBUTE_UNUSED
)
12481 /* When not generating PIC code, this is treated as .word. */
12482 if (mips_pic
!= SVR4_PIC
)
12488 label
= insn_labels
!= NULL
? insn_labels
->label
: NULL
;
12489 mips_emit_delays ();
12491 mips_align (2, 0, label
);
12492 mips_clear_insn_labels ();
12496 if (ex
.X_op
!= O_symbol
|| ex
.X_add_number
!= 0)
12498 as_bad (_("Unsupported use of .gpword"));
12499 ignore_rest_of_line ();
12503 md_number_to_chars (p
, 0, 4);
12504 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, 4, &ex
, FALSE
,
12505 BFD_RELOC_GPREL32
);
12507 demand_empty_rest_of_line ();
12511 s_gpdword (int ignore ATTRIBUTE_UNUSED
)
12517 /* When not generating PIC code, this is treated as .dword. */
12518 if (mips_pic
!= SVR4_PIC
)
12524 label
= insn_labels
!= NULL
? insn_labels
->label
: NULL
;
12525 mips_emit_delays ();
12527 mips_align (3, 0, label
);
12528 mips_clear_insn_labels ();
12532 if (ex
.X_op
!= O_symbol
|| ex
.X_add_number
!= 0)
12534 as_bad (_("Unsupported use of .gpdword"));
12535 ignore_rest_of_line ();
12539 md_number_to_chars (p
, 0, 8);
12540 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, 4, &ex
, FALSE
,
12541 BFD_RELOC_GPREL32
)->fx_tcbit
= 1;
12543 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
12544 fix_new (frag_now
, p
- frag_now
->fr_literal
, 8, NULL
, 0,
12545 FALSE
, BFD_RELOC_64
)->fx_tcbit
= 1;
12547 demand_empty_rest_of_line ();
12550 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
12551 tables in SVR4 PIC code. */
12554 s_cpadd (int ignore ATTRIBUTE_UNUSED
)
12558 /* This is ignored when not generating SVR4 PIC code. */
12559 if (mips_pic
!= SVR4_PIC
)
12565 /* Add $gp to the register named as an argument. */
12567 reg
= tc_get_register (0);
12568 macro_build (NULL
, ADDRESS_ADD_INSN
, "d,v,t", reg
, reg
, mips_gp_register
);
12571 demand_empty_rest_of_line ();
12574 /* Handle the .insn pseudo-op. This marks instruction labels in
12575 mips16 mode. This permits the linker to handle them specially,
12576 such as generating jalx instructions when needed. We also make
12577 them odd for the duration of the assembly, in order to generate the
12578 right sort of code. We will make them even in the adjust_symtab
12579 routine, while leaving them marked. This is convenient for the
12580 debugger and the disassembler. The linker knows to make them odd
12584 s_insn (int ignore ATTRIBUTE_UNUSED
)
12586 mips16_mark_labels ();
12588 demand_empty_rest_of_line ();
12591 /* Handle a .stabn directive. We need these in order to mark a label
12592 as being a mips16 text label correctly. Sometimes the compiler
12593 will emit a label, followed by a .stabn, and then switch sections.
12594 If the label and .stabn are in mips16 mode, then the label is
12595 really a mips16 text label. */
12598 s_mips_stab (int type
)
12601 mips16_mark_labels ();
12606 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.
12610 s_mips_weakext (int ignore ATTRIBUTE_UNUSED
)
12617 name
= input_line_pointer
;
12618 c
= get_symbol_end ();
12619 symbolP
= symbol_find_or_make (name
);
12620 S_SET_WEAK (symbolP
);
12621 *input_line_pointer
= c
;
12623 SKIP_WHITESPACE ();
12625 if (! is_end_of_line
[(unsigned char) *input_line_pointer
])
12627 if (S_IS_DEFINED (symbolP
))
12629 as_bad ("ignoring attempt to redefine symbol %s",
12630 S_GET_NAME (symbolP
));
12631 ignore_rest_of_line ();
12635 if (*input_line_pointer
== ',')
12637 ++input_line_pointer
;
12638 SKIP_WHITESPACE ();
12642 if (exp
.X_op
!= O_symbol
)
12644 as_bad ("bad .weakext directive");
12645 ignore_rest_of_line ();
12648 symbol_set_value_expression (symbolP
, &exp
);
12651 demand_empty_rest_of_line ();
12654 /* Parse a register string into a number. Called from the ECOFF code
12655 to parse .frame. The argument is non-zero if this is the frame
12656 register, so that we can record it in mips_frame_reg. */
12659 tc_get_register (int frame
)
12663 SKIP_WHITESPACE ();
12664 if (*input_line_pointer
++ != '$')
12666 as_warn (_("expected `$'"));
12669 else if (ISDIGIT (*input_line_pointer
))
12671 reg
= get_absolute_expression ();
12672 if (reg
< 0 || reg
>= 32)
12674 as_warn (_("Bad register number"));
12680 if (strncmp (input_line_pointer
, "ra", 2) == 0)
12683 input_line_pointer
+= 2;
12685 else if (strncmp (input_line_pointer
, "fp", 2) == 0)
12688 input_line_pointer
+= 2;
12690 else if (strncmp (input_line_pointer
, "sp", 2) == 0)
12693 input_line_pointer
+= 2;
12695 else if (strncmp (input_line_pointer
, "gp", 2) == 0)
12698 input_line_pointer
+= 2;
12700 else if (strncmp (input_line_pointer
, "at", 2) == 0)
12703 input_line_pointer
+= 2;
12705 else if (strncmp (input_line_pointer
, "kt0", 3) == 0)
12708 input_line_pointer
+= 3;
12710 else if (strncmp (input_line_pointer
, "kt1", 3) == 0)
12713 input_line_pointer
+= 3;
12715 else if (strncmp (input_line_pointer
, "zero", 4) == 0)
12718 input_line_pointer
+= 4;
12722 as_warn (_("Unrecognized register name"));
12724 while (ISALNUM(*input_line_pointer
))
12725 input_line_pointer
++;
12730 mips_frame_reg
= reg
!= 0 ? reg
: SP
;
12731 mips_frame_reg_valid
= 1;
12732 mips_cprestore_valid
= 0;
12738 md_section_align (asection
*seg
, valueT addr
)
12740 int align
= bfd_get_section_alignment (stdoutput
, seg
);
12743 /* We don't need to align ELF sections to the full alignment.
12744 However, Irix 5 may prefer that we align them at least to a 16
12745 byte boundary. We don't bother to align the sections if we are
12746 targeted for an embedded system. */
12747 if (strcmp (TARGET_OS
, "elf") == 0)
12753 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
12756 /* Utility routine, called from above as well. If called while the
12757 input file is still being read, it's only an approximation. (For
12758 example, a symbol may later become defined which appeared to be
12759 undefined earlier.) */
12762 nopic_need_relax (symbolS
*sym
, int before_relaxing
)
12767 if (g_switch_value
> 0)
12769 const char *symname
;
12772 /* Find out whether this symbol can be referenced off the $gp
12773 register. It can be if it is smaller than the -G size or if
12774 it is in the .sdata or .sbss section. Certain symbols can
12775 not be referenced off the $gp, although it appears as though
12777 symname
= S_GET_NAME (sym
);
12778 if (symname
!= (const char *) NULL
12779 && (strcmp (symname
, "eprol") == 0
12780 || strcmp (symname
, "etext") == 0
12781 || strcmp (symname
, "_gp") == 0
12782 || strcmp (symname
, "edata") == 0
12783 || strcmp (symname
, "_fbss") == 0
12784 || strcmp (symname
, "_fdata") == 0
12785 || strcmp (symname
, "_ftext") == 0
12786 || strcmp (symname
, "end") == 0
12787 || strcmp (symname
, "_gp_disp") == 0))
12789 else if ((! S_IS_DEFINED (sym
) || S_IS_COMMON (sym
))
12791 #ifndef NO_ECOFF_DEBUGGING
12792 || (symbol_get_obj (sym
)->ecoff_extern_size
!= 0
12793 && (symbol_get_obj (sym
)->ecoff_extern_size
12794 <= g_switch_value
))
12796 /* We must defer this decision until after the whole
12797 file has been read, since there might be a .extern
12798 after the first use of this symbol. */
12799 || (before_relaxing
12800 #ifndef NO_ECOFF_DEBUGGING
12801 && symbol_get_obj (sym
)->ecoff_extern_size
== 0
12803 && S_GET_VALUE (sym
) == 0)
12804 || (S_GET_VALUE (sym
) != 0
12805 && S_GET_VALUE (sym
) <= g_switch_value
)))
12809 const char *segname
;
12811 segname
= segment_name (S_GET_SEGMENT (sym
));
12812 assert (strcmp (segname
, ".lit8") != 0
12813 && strcmp (segname
, ".lit4") != 0);
12814 change
= (strcmp (segname
, ".sdata") != 0
12815 && strcmp (segname
, ".sbss") != 0
12816 && strncmp (segname
, ".sdata.", 7) != 0
12817 && strncmp (segname
, ".gnu.linkonce.s.", 16) != 0);
12822 /* We are not optimizing for the $gp register. */
12827 /* Return true if the given symbol should be considered local for SVR4 PIC. */
12830 pic_need_relax (symbolS
*sym
, asection
*segtype
)
12833 bfd_boolean linkonce
;
12835 /* Handle the case of a symbol equated to another symbol. */
12836 while (symbol_equated_reloc_p (sym
))
12840 /* It's possible to get a loop here in a badly written
12842 n
= symbol_get_value_expression (sym
)->X_add_symbol
;
12848 symsec
= S_GET_SEGMENT (sym
);
12850 /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */
12852 if (symsec
!= segtype
&& ! S_IS_LOCAL (sym
))
12854 if ((bfd_get_section_flags (stdoutput
, symsec
) & SEC_LINK_ONCE
)
12858 /* The GNU toolchain uses an extension for ELF: a section
12859 beginning with the magic string .gnu.linkonce is a linkonce
12861 if (strncmp (segment_name (symsec
), ".gnu.linkonce",
12862 sizeof ".gnu.linkonce" - 1) == 0)
12866 /* This must duplicate the test in adjust_reloc_syms. */
12867 return (symsec
!= &bfd_und_section
12868 && symsec
!= &bfd_abs_section
12869 && ! bfd_is_com_section (symsec
)
12872 /* A global or weak symbol is treated as external. */
12873 && (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
12874 || (! S_IS_WEAK (sym
) && ! S_IS_EXTERNAL (sym
)))
12880 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
12881 extended opcode. SEC is the section the frag is in. */
12884 mips16_extended_frag (fragS
*fragp
, asection
*sec
, long stretch
)
12887 register const struct mips16_immed_operand
*op
;
12889 int mintiny
, maxtiny
;
12893 if (RELAX_MIPS16_USER_SMALL (fragp
->fr_subtype
))
12895 if (RELAX_MIPS16_USER_EXT (fragp
->fr_subtype
))
12898 type
= RELAX_MIPS16_TYPE (fragp
->fr_subtype
);
12899 op
= mips16_immed_operands
;
12900 while (op
->type
!= type
)
12903 assert (op
< mips16_immed_operands
+ MIPS16_NUM_IMMED
);
12908 if (type
== '<' || type
== '>' || type
== '[' || type
== ']')
12911 maxtiny
= 1 << op
->nbits
;
12916 maxtiny
= (1 << op
->nbits
) - 1;
12921 mintiny
= - (1 << (op
->nbits
- 1));
12922 maxtiny
= (1 << (op
->nbits
- 1)) - 1;
12925 sym_frag
= symbol_get_frag (fragp
->fr_symbol
);
12926 val
= S_GET_VALUE (fragp
->fr_symbol
);
12927 symsec
= S_GET_SEGMENT (fragp
->fr_symbol
);
12933 /* We won't have the section when we are called from
12934 mips_relax_frag. However, we will always have been called
12935 from md_estimate_size_before_relax first. If this is a
12936 branch to a different section, we mark it as such. If SEC is
12937 NULL, and the frag is not marked, then it must be a branch to
12938 the same section. */
12941 if (RELAX_MIPS16_LONG_BRANCH (fragp
->fr_subtype
))
12946 /* Must have been called from md_estimate_size_before_relax. */
12949 fragp
->fr_subtype
=
12950 RELAX_MIPS16_MARK_LONG_BRANCH (fragp
->fr_subtype
);
12952 /* FIXME: We should support this, and let the linker
12953 catch branches and loads that are out of range. */
12954 as_bad_where (fragp
->fr_file
, fragp
->fr_line
,
12955 _("unsupported PC relative reference to different section"));
12959 if (fragp
!= sym_frag
&& sym_frag
->fr_address
== 0)
12960 /* Assume non-extended on the first relaxation pass.
12961 The address we have calculated will be bogus if this is
12962 a forward branch to another frag, as the forward frag
12963 will have fr_address == 0. */
12967 /* In this case, we know for sure that the symbol fragment is in
12968 the same section. If the relax_marker of the symbol fragment
12969 differs from the relax_marker of this fragment, we have not
12970 yet adjusted the symbol fragment fr_address. We want to add
12971 in STRETCH in order to get a better estimate of the address.
12972 This particularly matters because of the shift bits. */
12974 && sym_frag
->relax_marker
!= fragp
->relax_marker
)
12978 /* Adjust stretch for any alignment frag. Note that if have
12979 been expanding the earlier code, the symbol may be
12980 defined in what appears to be an earlier frag. FIXME:
12981 This doesn't handle the fr_subtype field, which specifies
12982 a maximum number of bytes to skip when doing an
12984 for (f
= fragp
; f
!= NULL
&& f
!= sym_frag
; f
= f
->fr_next
)
12986 if (f
->fr_type
== rs_align
|| f
->fr_type
== rs_align_code
)
12989 stretch
= - ((- stretch
)
12990 & ~ ((1 << (int) f
->fr_offset
) - 1));
12992 stretch
&= ~ ((1 << (int) f
->fr_offset
) - 1);
13001 addr
= fragp
->fr_address
+ fragp
->fr_fix
;
13003 /* The base address rules are complicated. The base address of
13004 a branch is the following instruction. The base address of a
13005 PC relative load or add is the instruction itself, but if it
13006 is in a delay slot (in which case it can not be extended) use
13007 the address of the instruction whose delay slot it is in. */
13008 if (type
== 'p' || type
== 'q')
13012 /* If we are currently assuming that this frag should be
13013 extended, then, the current address is two bytes
13015 if (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
13018 /* Ignore the low bit in the target, since it will be set
13019 for a text label. */
13020 if ((val
& 1) != 0)
13023 else if (RELAX_MIPS16_JAL_DSLOT (fragp
->fr_subtype
))
13025 else if (RELAX_MIPS16_DSLOT (fragp
->fr_subtype
))
13028 val
-= addr
& ~ ((1 << op
->shift
) - 1);
13030 /* Branch offsets have an implicit 0 in the lowest bit. */
13031 if (type
== 'p' || type
== 'q')
13034 /* If any of the shifted bits are set, we must use an extended
13035 opcode. If the address depends on the size of this
13036 instruction, this can lead to a loop, so we arrange to always
13037 use an extended opcode. We only check this when we are in
13038 the main relaxation loop, when SEC is NULL. */
13039 if ((val
& ((1 << op
->shift
) - 1)) != 0 && sec
== NULL
)
13041 fragp
->fr_subtype
=
13042 RELAX_MIPS16_MARK_LONG_BRANCH (fragp
->fr_subtype
);
13046 /* If we are about to mark a frag as extended because the value
13047 is precisely maxtiny + 1, then there is a chance of an
13048 infinite loop as in the following code:
13053 In this case when the la is extended, foo is 0x3fc bytes
13054 away, so the la can be shrunk, but then foo is 0x400 away, so
13055 the la must be extended. To avoid this loop, we mark the
13056 frag as extended if it was small, and is about to become
13057 extended with a value of maxtiny + 1. */
13058 if (val
== ((maxtiny
+ 1) << op
->shift
)
13059 && ! RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
)
13062 fragp
->fr_subtype
=
13063 RELAX_MIPS16_MARK_LONG_BRANCH (fragp
->fr_subtype
);
13067 else if (symsec
!= absolute_section
&& sec
!= NULL
)
13068 as_bad_where (fragp
->fr_file
, fragp
->fr_line
, _("unsupported relocation"));
13070 if ((val
& ((1 << op
->shift
) - 1)) != 0
13071 || val
< (mintiny
<< op
->shift
)
13072 || val
> (maxtiny
<< op
->shift
))
13078 /* Compute the length of a branch sequence, and adjust the
13079 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
13080 worst-case length is computed, with UPDATE being used to indicate
13081 whether an unconditional (-1), branch-likely (+1) or regular (0)
13082 branch is to be computed. */
13084 relaxed_branch_length (fragS
*fragp
, asection
*sec
, int update
)
13086 bfd_boolean toofar
;
13090 && S_IS_DEFINED (fragp
->fr_symbol
)
13091 && sec
== S_GET_SEGMENT (fragp
->fr_symbol
))
13096 val
= S_GET_VALUE (fragp
->fr_symbol
) + fragp
->fr_offset
;
13098 addr
= fragp
->fr_address
+ fragp
->fr_fix
+ 4;
13102 toofar
= val
< - (0x8000 << 2) || val
>= (0x8000 << 2);
13105 /* If the symbol is not defined or it's in a different segment,
13106 assume the user knows what's going on and emit a short
13112 if (fragp
&& update
&& toofar
!= RELAX_BRANCH_TOOFAR (fragp
->fr_subtype
))
13114 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp
->fr_subtype
),
13115 RELAX_BRANCH_LIKELY (fragp
->fr_subtype
),
13116 RELAX_BRANCH_LINK (fragp
->fr_subtype
),
13122 if (fragp
? RELAX_BRANCH_LIKELY (fragp
->fr_subtype
) : (update
> 0))
13125 if (mips_pic
!= NO_PIC
)
13127 /* Additional space for PIC loading of target address. */
13129 if (mips_opts
.isa
== ISA_MIPS1
)
13130 /* Additional space for $at-stabilizing nop. */
13134 /* If branch is conditional. */
13135 if (fragp
? !RELAX_BRANCH_UNCOND (fragp
->fr_subtype
) : (update
>= 0))
13142 /* Estimate the size of a frag before relaxing. Unless this is the
13143 mips16, we are not really relaxing here, and the final size is
13144 encoded in the subtype information. For the mips16, we have to
13145 decide whether we are using an extended opcode or not. */
13148 md_estimate_size_before_relax (fragS
*fragp
, asection
*segtype
)
13152 if (RELAX_BRANCH_P (fragp
->fr_subtype
))
13155 fragp
->fr_var
= relaxed_branch_length (fragp
, segtype
, FALSE
);
13157 return fragp
->fr_var
;
13160 if (RELAX_MIPS16_P (fragp
->fr_subtype
))
13161 /* We don't want to modify the EXTENDED bit here; it might get us
13162 into infinite loops. We change it only in mips_relax_frag(). */
13163 return (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
) ? 4 : 2);
13165 if (mips_pic
== NO_PIC
)
13166 change
= nopic_need_relax (fragp
->fr_symbol
, 0);
13167 else if (mips_pic
== SVR4_PIC
)
13168 change
= pic_need_relax (fragp
->fr_symbol
, segtype
);
13174 fragp
->fr_subtype
|= RELAX_USE_SECOND
;
13175 return -RELAX_FIRST (fragp
->fr_subtype
);
13178 return -RELAX_SECOND (fragp
->fr_subtype
);
13181 /* This is called to see whether a reloc against a defined symbol
13182 should be converted into a reloc against a section. */
13185 mips_fix_adjustable (fixS
*fixp
)
13187 /* Don't adjust MIPS16 jump relocations, so we don't have to worry
13188 about the format of the offset in the .o file. */
13189 if (fixp
->fx_r_type
== BFD_RELOC_MIPS16_JMP
)
13192 if (fixp
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
13193 || fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
13196 if (fixp
->fx_addsy
== NULL
)
13199 /* If symbol SYM is in a mergeable section, relocations of the form
13200 SYM + 0 can usually be made section-relative. The mergeable data
13201 is then identified by the section offset rather than by the symbol.
13203 However, if we're generating REL LO16 relocations, the offset is split
13204 between the LO16 and parterning high part relocation. The linker will
13205 need to recalculate the complete offset in order to correctly identify
13208 The linker has traditionally not looked for the parterning high part
13209 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
13210 placed anywhere. Rather than break backwards compatibility by changing
13211 this, it seems better not to force the issue, and instead keep the
13212 original symbol. This will work with either linker behavior. */
13213 if ((fixp
->fx_r_type
== BFD_RELOC_LO16
13214 || fixp
->fx_r_type
== BFD_RELOC_MIPS16_LO16
13215 || reloc_needs_lo_p (fixp
->fx_r_type
))
13216 && HAVE_IN_PLACE_ADDENDS
13217 && (S_GET_SEGMENT (fixp
->fx_addsy
)->flags
& SEC_MERGE
) != 0)
13221 /* Don't adjust relocations against mips16 symbols, so that the linker
13222 can find them if it needs to set up a stub. */
13223 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
13224 && S_GET_OTHER (fixp
->fx_addsy
) == STO_MIPS16
13225 && fixp
->fx_subsy
== NULL
)
13232 /* Translate internal representation of relocation info to BFD target
13236 tc_gen_reloc (asection
*section ATTRIBUTE_UNUSED
, fixS
*fixp
)
13238 static arelent
*retval
[4];
13240 bfd_reloc_code_real_type code
;
13242 memset (retval
, 0, sizeof(retval
));
13243 reloc
= retval
[0] = (arelent
*) xcalloc (1, sizeof (arelent
));
13244 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
13245 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
13246 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
13248 if (fixp
->fx_pcrel
)
13250 assert (fixp
->fx_r_type
== BFD_RELOC_16_PCREL_S2
);
13252 /* At this point, fx_addnumber is "symbol offset - pcrel address".
13253 Relocations want only the symbol offset. */
13254 reloc
->addend
= fixp
->fx_addnumber
+ reloc
->address
;
13255 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
)
13257 /* A gruesome hack which is a result of the gruesome gas
13258 reloc handling. What's worse, for COFF (as opposed to
13259 ECOFF), we might need yet another copy of reloc->address.
13260 See bfd_install_relocation. */
13261 reloc
->addend
+= reloc
->address
;
13265 reloc
->addend
= fixp
->fx_addnumber
;
13267 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
13268 entry to be used in the relocation's section offset. */
13269 if (! HAVE_NEWABI
&& fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
13271 reloc
->address
= reloc
->addend
;
13275 code
= fixp
->fx_r_type
;
13277 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, code
);
13278 if (reloc
->howto
== NULL
)
13280 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
13281 _("Can not represent %s relocation in this object file format"),
13282 bfd_get_reloc_code_name (code
));
13289 /* Relax a machine dependent frag. This returns the amount by which
13290 the current size of the frag should change. */
13293 mips_relax_frag (asection
*sec
, fragS
*fragp
, long stretch
)
13295 if (RELAX_BRANCH_P (fragp
->fr_subtype
))
13297 offsetT old_var
= fragp
->fr_var
;
13299 fragp
->fr_var
= relaxed_branch_length (fragp
, sec
, TRUE
);
13301 return fragp
->fr_var
- old_var
;
13304 if (! RELAX_MIPS16_P (fragp
->fr_subtype
))
13307 if (mips16_extended_frag (fragp
, NULL
, stretch
))
13309 if (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
13311 fragp
->fr_subtype
= RELAX_MIPS16_MARK_EXTENDED (fragp
->fr_subtype
);
13316 if (! RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
13318 fragp
->fr_subtype
= RELAX_MIPS16_CLEAR_EXTENDED (fragp
->fr_subtype
);
13325 /* Convert a machine dependent frag. */
13328 md_convert_frag (bfd
*abfd ATTRIBUTE_UNUSED
, segT asec
, fragS
*fragp
)
13330 if (RELAX_BRANCH_P (fragp
->fr_subtype
))
13333 unsigned long insn
;
13337 buf
= (bfd_byte
*)fragp
->fr_literal
+ fragp
->fr_fix
;
13339 if (target_big_endian
)
13340 insn
= bfd_getb32 (buf
);
13342 insn
= bfd_getl32 (buf
);
13344 if (!RELAX_BRANCH_TOOFAR (fragp
->fr_subtype
))
13346 /* We generate a fixup instead of applying it right now
13347 because, if there are linker relaxations, we're going to
13348 need the relocations. */
13349 exp
.X_op
= O_symbol
;
13350 exp
.X_add_symbol
= fragp
->fr_symbol
;
13351 exp
.X_add_number
= fragp
->fr_offset
;
13353 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
13354 4, &exp
, 1, BFD_RELOC_16_PCREL_S2
);
13355 fixp
->fx_file
= fragp
->fr_file
;
13356 fixp
->fx_line
= fragp
->fr_line
;
13358 md_number_to_chars ((char *) buf
, insn
, 4);
13365 as_warn_where (fragp
->fr_file
, fragp
->fr_line
,
13366 _("relaxed out-of-range branch into a jump"));
13368 if (RELAX_BRANCH_UNCOND (fragp
->fr_subtype
))
13371 if (!RELAX_BRANCH_LIKELY (fragp
->fr_subtype
))
13373 /* Reverse the branch. */
13374 switch ((insn
>> 28) & 0xf)
13377 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
13378 have the condition reversed by tweaking a single
13379 bit, and their opcodes all have 0x4???????. */
13380 assert ((insn
& 0xf1000000) == 0x41000000);
13381 insn
^= 0x00010000;
13385 /* bltz 0x04000000 bgez 0x04010000
13386 bltzal 0x04100000 bgezal 0x04110000 */
13387 assert ((insn
& 0xfc0e0000) == 0x04000000);
13388 insn
^= 0x00010000;
13392 /* beq 0x10000000 bne 0x14000000
13393 blez 0x18000000 bgtz 0x1c000000 */
13394 insn
^= 0x04000000;
13402 if (RELAX_BRANCH_LINK (fragp
->fr_subtype
))
13404 /* Clear the and-link bit. */
13405 assert ((insn
& 0xfc1c0000) == 0x04100000);
13407 /* bltzal 0x04100000 bgezal 0x04110000
13408 bltzall 0x04120000 bgezall 0x04130000 */
13409 insn
&= ~0x00100000;
13412 /* Branch over the branch (if the branch was likely) or the
13413 full jump (not likely case). Compute the offset from the
13414 current instruction to branch to. */
13415 if (RELAX_BRANCH_LIKELY (fragp
->fr_subtype
))
13419 /* How many bytes in instructions we've already emitted? */
13420 i
= buf
- (bfd_byte
*)fragp
->fr_literal
- fragp
->fr_fix
;
13421 /* How many bytes in instructions from here to the end? */
13422 i
= fragp
->fr_var
- i
;
13424 /* Convert to instruction count. */
13426 /* Branch counts from the next instruction. */
13429 /* Branch over the jump. */
13430 md_number_to_chars ((char *) buf
, insn
, 4);
13434 md_number_to_chars ((char *) buf
, 0, 4);
13437 if (RELAX_BRANCH_LIKELY (fragp
->fr_subtype
))
13439 /* beql $0, $0, 2f */
13441 /* Compute the PC offset from the current instruction to
13442 the end of the variable frag. */
13443 /* How many bytes in instructions we've already emitted? */
13444 i
= buf
- (bfd_byte
*)fragp
->fr_literal
- fragp
->fr_fix
;
13445 /* How many bytes in instructions from here to the end? */
13446 i
= fragp
->fr_var
- i
;
13447 /* Convert to instruction count. */
13449 /* Don't decrement i, because we want to branch over the
13453 md_number_to_chars ((char *) buf
, insn
, 4);
13456 md_number_to_chars ((char *) buf
, 0, 4);
13461 if (mips_pic
== NO_PIC
)
13464 insn
= (RELAX_BRANCH_LINK (fragp
->fr_subtype
)
13465 ? 0x0c000000 : 0x08000000);
13466 exp
.X_op
= O_symbol
;
13467 exp
.X_add_symbol
= fragp
->fr_symbol
;
13468 exp
.X_add_number
= fragp
->fr_offset
;
13470 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
13471 4, &exp
, 0, BFD_RELOC_MIPS_JMP
);
13472 fixp
->fx_file
= fragp
->fr_file
;
13473 fixp
->fx_line
= fragp
->fr_line
;
13475 md_number_to_chars ((char *) buf
, insn
, 4);
13480 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
13481 insn
= HAVE_64BIT_ADDRESSES
? 0xdf810000 : 0x8f810000;
13482 exp
.X_op
= O_symbol
;
13483 exp
.X_add_symbol
= fragp
->fr_symbol
;
13484 exp
.X_add_number
= fragp
->fr_offset
;
13486 if (fragp
->fr_offset
)
13488 exp
.X_add_symbol
= make_expr_symbol (&exp
);
13489 exp
.X_add_number
= 0;
13492 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
13493 4, &exp
, 0, BFD_RELOC_MIPS_GOT16
);
13494 fixp
->fx_file
= fragp
->fr_file
;
13495 fixp
->fx_line
= fragp
->fr_line
;
13497 md_number_to_chars ((char *) buf
, insn
, 4);
13500 if (mips_opts
.isa
== ISA_MIPS1
)
13503 md_number_to_chars ((char *) buf
, 0, 4);
13507 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
13508 insn
= HAVE_64BIT_ADDRESSES
? 0x64210000 : 0x24210000;
13510 fixp
= fix_new_exp (fragp
, buf
- (bfd_byte
*)fragp
->fr_literal
,
13511 4, &exp
, 0, BFD_RELOC_LO16
);
13512 fixp
->fx_file
= fragp
->fr_file
;
13513 fixp
->fx_line
= fragp
->fr_line
;
13515 md_number_to_chars ((char *) buf
, insn
, 4);
13519 if (RELAX_BRANCH_LINK (fragp
->fr_subtype
))
13524 md_number_to_chars ((char *) buf
, insn
, 4);
13529 assert (buf
== (bfd_byte
*)fragp
->fr_literal
13530 + fragp
->fr_fix
+ fragp
->fr_var
);
13532 fragp
->fr_fix
+= fragp
->fr_var
;
13537 if (RELAX_MIPS16_P (fragp
->fr_subtype
))
13540 register const struct mips16_immed_operand
*op
;
13541 bfd_boolean small
, ext
;
13544 unsigned long insn
;
13545 bfd_boolean use_extend
;
13546 unsigned short extend
;
13548 type
= RELAX_MIPS16_TYPE (fragp
->fr_subtype
);
13549 op
= mips16_immed_operands
;
13550 while (op
->type
!= type
)
13553 if (RELAX_MIPS16_EXTENDED (fragp
->fr_subtype
))
13564 resolve_symbol_value (fragp
->fr_symbol
);
13565 val
= S_GET_VALUE (fragp
->fr_symbol
);
13570 addr
= fragp
->fr_address
+ fragp
->fr_fix
;
13572 /* The rules for the base address of a PC relative reloc are
13573 complicated; see mips16_extended_frag. */
13574 if (type
== 'p' || type
== 'q')
13579 /* Ignore the low bit in the target, since it will be
13580 set for a text label. */
13581 if ((val
& 1) != 0)
13584 else if (RELAX_MIPS16_JAL_DSLOT (fragp
->fr_subtype
))
13586 else if (RELAX_MIPS16_DSLOT (fragp
->fr_subtype
))
13589 addr
&= ~ (addressT
) ((1 << op
->shift
) - 1);
13592 /* Make sure the section winds up with the alignment we have
13595 record_alignment (asec
, op
->shift
);
13599 && (RELAX_MIPS16_JAL_DSLOT (fragp
->fr_subtype
)
13600 || RELAX_MIPS16_DSLOT (fragp
->fr_subtype
)))
13601 as_warn_where (fragp
->fr_file
, fragp
->fr_line
,
13602 _("extended instruction in delay slot"));
13604 buf
= (bfd_byte
*) (fragp
->fr_literal
+ fragp
->fr_fix
);
13606 if (target_big_endian
)
13607 insn
= bfd_getb16 (buf
);
13609 insn
= bfd_getl16 (buf
);
13611 mips16_immed (fragp
->fr_file
, fragp
->fr_line
, type
, val
,
13612 RELAX_MIPS16_USER_EXT (fragp
->fr_subtype
),
13613 small
, ext
, &insn
, &use_extend
, &extend
);
13617 md_number_to_chars ((char *) buf
, 0xf000 | extend
, 2);
13618 fragp
->fr_fix
+= 2;
13622 md_number_to_chars ((char *) buf
, insn
, 2);
13623 fragp
->fr_fix
+= 2;
13631 first
= RELAX_FIRST (fragp
->fr_subtype
);
13632 second
= RELAX_SECOND (fragp
->fr_subtype
);
13633 fixp
= (fixS
*) fragp
->fr_opcode
;
13635 /* Possibly emit a warning if we've chosen the longer option. */
13636 if (((fragp
->fr_subtype
& RELAX_USE_SECOND
) != 0)
13637 == ((fragp
->fr_subtype
& RELAX_SECOND_LONGER
) != 0))
13639 const char *msg
= macro_warning (fragp
->fr_subtype
);
13641 as_warn_where (fragp
->fr_file
, fragp
->fr_line
, msg
);
13644 /* Go through all the fixups for the first sequence. Disable them
13645 (by marking them as done) if we're going to use the second
13646 sequence instead. */
13648 && fixp
->fx_frag
== fragp
13649 && fixp
->fx_where
< fragp
->fr_fix
- second
)
13651 if (fragp
->fr_subtype
& RELAX_USE_SECOND
)
13653 fixp
= fixp
->fx_next
;
13656 /* Go through the fixups for the second sequence. Disable them if
13657 we're going to use the first sequence, otherwise adjust their
13658 addresses to account for the relaxation. */
13659 while (fixp
&& fixp
->fx_frag
== fragp
)
13661 if (fragp
->fr_subtype
& RELAX_USE_SECOND
)
13662 fixp
->fx_where
-= first
;
13665 fixp
= fixp
->fx_next
;
13668 /* Now modify the frag contents. */
13669 if (fragp
->fr_subtype
& RELAX_USE_SECOND
)
13673 start
= fragp
->fr_literal
+ fragp
->fr_fix
- first
- second
;
13674 memmove (start
, start
+ first
, second
);
13675 fragp
->fr_fix
-= first
;
13678 fragp
->fr_fix
-= second
;
13684 /* This function is called after the relocs have been generated.
13685 We've been storing mips16 text labels as odd. Here we convert them
13686 back to even for the convenience of the debugger. */
13689 mips_frob_file_after_relocs (void)
13692 unsigned int count
, i
;
13694 if (OUTPUT_FLAVOR
!= bfd_target_elf_flavour
)
13697 syms
= bfd_get_outsymbols (stdoutput
);
13698 count
= bfd_get_symcount (stdoutput
);
13699 for (i
= 0; i
< count
; i
++, syms
++)
13701 if (elf_symbol (*syms
)->internal_elf_sym
.st_other
== STO_MIPS16
13702 && ((*syms
)->value
& 1) != 0)
13704 (*syms
)->value
&= ~1;
13705 /* If the symbol has an odd size, it was probably computed
13706 incorrectly, so adjust that as well. */
13707 if ((elf_symbol (*syms
)->internal_elf_sym
.st_size
& 1) != 0)
13708 ++elf_symbol (*syms
)->internal_elf_sym
.st_size
;
13715 /* This function is called whenever a label is defined. It is used
13716 when handling branch delays; if a branch has a label, we assume we
13717 can not move it. */
13720 mips_define_label (symbolS
*sym
)
13722 struct insn_label_list
*l
;
13724 if (free_insn_labels
== NULL
)
13725 l
= (struct insn_label_list
*) xmalloc (sizeof *l
);
13728 l
= free_insn_labels
;
13729 free_insn_labels
= l
->next
;
13733 l
->next
= insn_labels
;
13737 dwarf2_emit_label (sym
);
13741 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13743 /* Some special processing for a MIPS ELF file. */
13746 mips_elf_final_processing (void)
13748 /* Write out the register information. */
13749 if (mips_abi
!= N64_ABI
)
13753 s
.ri_gprmask
= mips_gprmask
;
13754 s
.ri_cprmask
[0] = mips_cprmask
[0];
13755 s
.ri_cprmask
[1] = mips_cprmask
[1];
13756 s
.ri_cprmask
[2] = mips_cprmask
[2];
13757 s
.ri_cprmask
[3] = mips_cprmask
[3];
13758 /* The gp_value field is set by the MIPS ELF backend. */
13760 bfd_mips_elf32_swap_reginfo_out (stdoutput
, &s
,
13761 ((Elf32_External_RegInfo
*)
13762 mips_regmask_frag
));
13766 Elf64_Internal_RegInfo s
;
13768 s
.ri_gprmask
= mips_gprmask
;
13770 s
.ri_cprmask
[0] = mips_cprmask
[0];
13771 s
.ri_cprmask
[1] = mips_cprmask
[1];
13772 s
.ri_cprmask
[2] = mips_cprmask
[2];
13773 s
.ri_cprmask
[3] = mips_cprmask
[3];
13774 /* The gp_value field is set by the MIPS ELF backend. */
13776 bfd_mips_elf64_swap_reginfo_out (stdoutput
, &s
,
13777 ((Elf64_External_RegInfo
*)
13778 mips_regmask_frag
));
13781 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
13782 sort of BFD interface for this. */
13783 if (mips_any_noreorder
)
13784 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_NOREORDER
;
13785 if (mips_pic
!= NO_PIC
)
13787 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_PIC
;
13788 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_CPIC
;
13791 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_CPIC
;
13793 /* Set MIPS ELF flags for ASEs. */
13794 /* We may need to define a new flag for DSP ASE, and set this flag when
13795 file_ase_dsp is true. */
13796 /* We may need to define a new flag for MT ASE, and set this flag when
13797 file_ase_mt is true. */
13798 if (file_ase_mips16
)
13799 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_ARCH_ASE_M16
;
13800 #if 0 /* XXX FIXME */
13801 if (file_ase_mips3d
)
13802 elf_elfheader (stdoutput
)->e_flags
|= ???;
13805 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_ARCH_ASE_MDMX
;
13807 /* Set the MIPS ELF ABI flags. */
13808 if (mips_abi
== O32_ABI
&& USE_E_MIPS_ABI_O32
)
13809 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_O32
;
13810 else if (mips_abi
== O64_ABI
)
13811 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_O64
;
13812 else if (mips_abi
== EABI_ABI
)
13814 if (!file_mips_gp32
)
13815 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_EABI64
;
13817 elf_elfheader (stdoutput
)->e_flags
|= E_MIPS_ABI_EABI32
;
13819 else if (mips_abi
== N32_ABI
)
13820 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_ABI2
;
13822 /* Nothing to do for N64_ABI. */
13824 if (mips_32bitmode
)
13825 elf_elfheader (stdoutput
)->e_flags
|= EF_MIPS_32BITMODE
;
13828 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
13830 typedef struct proc
{
13832 symbolS
*func_end_sym
;
13833 unsigned long reg_mask
;
13834 unsigned long reg_offset
;
13835 unsigned long fpreg_mask
;
13836 unsigned long fpreg_offset
;
13837 unsigned long frame_offset
;
13838 unsigned long frame_reg
;
13839 unsigned long pc_reg
;
13842 static procS cur_proc
;
13843 static procS
*cur_proc_ptr
;
13844 static int numprocs
;
13846 /* Fill in an rs_align_code fragment. */
13849 mips_handle_align (fragS
*fragp
)
13851 if (fragp
->fr_type
!= rs_align_code
)
13854 if (mips_opts
.mips16
)
13856 static const unsigned char be_nop
[] = { 0x65, 0x00 };
13857 static const unsigned char le_nop
[] = { 0x00, 0x65 };
13862 bytes
= fragp
->fr_next
->fr_address
- fragp
->fr_address
- fragp
->fr_fix
;
13863 p
= fragp
->fr_literal
+ fragp
->fr_fix
;
13871 memcpy (p
, (target_big_endian
? be_nop
: le_nop
), 2);
13875 /* For mips32, a nop is a zero, which we trivially get by doing nothing. */
13879 md_obj_begin (void)
13886 /* check for premature end, nesting errors, etc */
13888 as_warn (_("missing .end at end of assembly"));
13897 if (*input_line_pointer
== '-')
13899 ++input_line_pointer
;
13902 if (!ISDIGIT (*input_line_pointer
))
13903 as_bad (_("expected simple number"));
13904 if (input_line_pointer
[0] == '0')
13906 if (input_line_pointer
[1] == 'x')
13908 input_line_pointer
+= 2;
13909 while (ISXDIGIT (*input_line_pointer
))
13912 val
|= hex_value (*input_line_pointer
++);
13914 return negative
? -val
: val
;
13918 ++input_line_pointer
;
13919 while (ISDIGIT (*input_line_pointer
))
13922 val
|= *input_line_pointer
++ - '0';
13924 return negative
? -val
: val
;
13927 if (!ISDIGIT (*input_line_pointer
))
13929 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
13930 *input_line_pointer
, *input_line_pointer
);
13931 as_warn (_("invalid number"));
13934 while (ISDIGIT (*input_line_pointer
))
13937 val
+= *input_line_pointer
++ - '0';
13939 return negative
? -val
: val
;
13942 /* The .file directive; just like the usual .file directive, but there
13943 is an initial number which is the ECOFF file index. In the non-ECOFF
13944 case .file implies DWARF-2. */
13947 s_mips_file (int x ATTRIBUTE_UNUSED
)
13949 static int first_file_directive
= 0;
13951 if (ECOFF_DEBUGGING
)
13960 filename
= dwarf2_directive_file (0);
13962 /* Versions of GCC up to 3.1 start files with a ".file"
13963 directive even for stabs output. Make sure that this
13964 ".file" is handled. Note that you need a version of GCC
13965 after 3.1 in order to support DWARF-2 on MIPS. */
13966 if (filename
!= NULL
&& ! first_file_directive
)
13968 (void) new_logical_line (filename
, -1);
13969 s_app_file_string (filename
, 0);
13971 first_file_directive
= 1;
13975 /* The .loc directive, implying DWARF-2. */
13978 s_mips_loc (int x ATTRIBUTE_UNUSED
)
13980 if (!ECOFF_DEBUGGING
)
13981 dwarf2_directive_loc (0);
13984 /* The .end directive. */
13987 s_mips_end (int x ATTRIBUTE_UNUSED
)
13991 /* Following functions need their own .frame and .cprestore directives. */
13992 mips_frame_reg_valid
= 0;
13993 mips_cprestore_valid
= 0;
13995 if (!is_end_of_line
[(unsigned char) *input_line_pointer
])
13998 demand_empty_rest_of_line ();
14003 if ((bfd_get_section_flags (stdoutput
, now_seg
) & SEC_CODE
) == 0)
14004 as_warn (_(".end not in text section"));
14008 as_warn (_(".end directive without a preceding .ent directive."));
14009 demand_empty_rest_of_line ();
14015 assert (S_GET_NAME (p
));
14016 if (strcmp (S_GET_NAME (p
), S_GET_NAME (cur_proc_ptr
->func_sym
)))
14017 as_warn (_(".end symbol does not match .ent symbol."));
14019 if (debug_type
== DEBUG_STABS
)
14020 stabs_generate_asm_endfunc (S_GET_NAME (p
),
14024 as_warn (_(".end directive missing or unknown symbol"));
14027 /* Create an expression to calculate the size of the function. */
14028 if (p
&& cur_proc_ptr
)
14030 OBJ_SYMFIELD_TYPE
*obj
= symbol_get_obj (p
);
14031 expressionS
*exp
= xmalloc (sizeof (expressionS
));
14034 exp
->X_op
= O_subtract
;
14035 exp
->X_add_symbol
= symbol_temp_new_now ();
14036 exp
->X_op_symbol
= p
;
14037 exp
->X_add_number
= 0;
14039 cur_proc_ptr
->func_end_sym
= exp
->X_add_symbol
;
14042 /* Generate a .pdr section. */
14043 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
&& ! ECOFF_DEBUGGING
14046 segT saved_seg
= now_seg
;
14047 subsegT saved_subseg
= now_subseg
;
14052 dot
= frag_now_fix ();
14054 #ifdef md_flush_pending_output
14055 md_flush_pending_output ();
14059 subseg_set (pdr_seg
, 0);
14061 /* Write the symbol. */
14062 exp
.X_op
= O_symbol
;
14063 exp
.X_add_symbol
= p
;
14064 exp
.X_add_number
= 0;
14065 emit_expr (&exp
, 4);
14067 fragp
= frag_more (7 * 4);
14069 md_number_to_chars (fragp
, cur_proc_ptr
->reg_mask
, 4);
14070 md_number_to_chars (fragp
+ 4, cur_proc_ptr
->reg_offset
, 4);
14071 md_number_to_chars (fragp
+ 8, cur_proc_ptr
->fpreg_mask
, 4);
14072 md_number_to_chars (fragp
+ 12, cur_proc_ptr
->fpreg_offset
, 4);
14073 md_number_to_chars (fragp
+ 16, cur_proc_ptr
->frame_offset
, 4);
14074 md_number_to_chars (fragp
+ 20, cur_proc_ptr
->frame_reg
, 4);
14075 md_number_to_chars (fragp
+ 24, cur_proc_ptr
->pc_reg
, 4);
14077 subseg_set (saved_seg
, saved_subseg
);
14079 #endif /* OBJ_ELF */
14081 cur_proc_ptr
= NULL
;
14084 /* The .aent and .ent directives. */
14087 s_mips_ent (int aent
)
14091 symbolP
= get_symbol ();
14092 if (*input_line_pointer
== ',')
14093 ++input_line_pointer
;
14094 SKIP_WHITESPACE ();
14095 if (ISDIGIT (*input_line_pointer
)
14096 || *input_line_pointer
== '-')
14099 if ((bfd_get_section_flags (stdoutput
, now_seg
) & SEC_CODE
) == 0)
14100 as_warn (_(".ent or .aent not in text section."));
14102 if (!aent
&& cur_proc_ptr
)
14103 as_warn (_("missing .end"));
14107 /* This function needs its own .frame and .cprestore directives. */
14108 mips_frame_reg_valid
= 0;
14109 mips_cprestore_valid
= 0;
14111 cur_proc_ptr
= &cur_proc
;
14112 memset (cur_proc_ptr
, '\0', sizeof (procS
));
14114 cur_proc_ptr
->func_sym
= symbolP
;
14116 symbol_get_bfdsym (symbolP
)->flags
|= BSF_FUNCTION
;
14120 if (debug_type
== DEBUG_STABS
)
14121 stabs_generate_asm_func (S_GET_NAME (symbolP
),
14122 S_GET_NAME (symbolP
));
14125 demand_empty_rest_of_line ();
14128 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
14129 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
14130 s_mips_frame is used so that we can set the PDR information correctly.
14131 We can't use the ecoff routines because they make reference to the ecoff
14132 symbol table (in the mdebug section). */
14135 s_mips_frame (int ignore ATTRIBUTE_UNUSED
)
14138 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
&& ! ECOFF_DEBUGGING
)
14142 if (cur_proc_ptr
== (procS
*) NULL
)
14144 as_warn (_(".frame outside of .ent"));
14145 demand_empty_rest_of_line ();
14149 cur_proc_ptr
->frame_reg
= tc_get_register (1);
14151 SKIP_WHITESPACE ();
14152 if (*input_line_pointer
++ != ','
14153 || get_absolute_expression_and_terminator (&val
) != ',')
14155 as_warn (_("Bad .frame directive"));
14156 --input_line_pointer
;
14157 demand_empty_rest_of_line ();
14161 cur_proc_ptr
->frame_offset
= val
;
14162 cur_proc_ptr
->pc_reg
= tc_get_register (0);
14164 demand_empty_rest_of_line ();
14167 #endif /* OBJ_ELF */
14171 /* The .fmask and .mask directives. If the mdebug section is present
14172 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
14173 embedded targets, s_mips_mask is used so that we can set the PDR
14174 information correctly. We can't use the ecoff routines because they
14175 make reference to the ecoff symbol table (in the mdebug section). */
14178 s_mips_mask (int reg_type
)
14181 if (OUTPUT_FLAVOR
== bfd_target_elf_flavour
&& ! ECOFF_DEBUGGING
)
14185 if (cur_proc_ptr
== (procS
*) NULL
)
14187 as_warn (_(".mask/.fmask outside of .ent"));
14188 demand_empty_rest_of_line ();
14192 if (get_absolute_expression_and_terminator (&mask
) != ',')
14194 as_warn (_("Bad .mask/.fmask directive"));
14195 --input_line_pointer
;
14196 demand_empty_rest_of_line ();
14200 off
= get_absolute_expression ();
14202 if (reg_type
== 'F')
14204 cur_proc_ptr
->fpreg_mask
= mask
;
14205 cur_proc_ptr
->fpreg_offset
= off
;
14209 cur_proc_ptr
->reg_mask
= mask
;
14210 cur_proc_ptr
->reg_offset
= off
;
14213 demand_empty_rest_of_line ();
14216 #endif /* OBJ_ELF */
14217 s_ignore (reg_type
);
14220 /* A table describing all the processors gas knows about. Names are
14221 matched in the order listed.
14223 To ease comparison, please keep this table in the same order as
14224 gcc's mips_cpu_info_table[]. */
14225 static const struct mips_cpu_info mips_cpu_info_table
[] =
14227 /* Entries for generic ISAs */
14228 { "mips1", 1, ISA_MIPS1
, CPU_R3000
},
14229 { "mips2", 1, ISA_MIPS2
, CPU_R6000
},
14230 { "mips3", 1, ISA_MIPS3
, CPU_R4000
},
14231 { "mips4", 1, ISA_MIPS4
, CPU_R8000
},
14232 { "mips5", 1, ISA_MIPS5
, CPU_MIPS5
},
14233 { "mips32", 1, ISA_MIPS32
, CPU_MIPS32
},
14234 { "mips32r2", 1, ISA_MIPS32R2
, CPU_MIPS32R2
},
14235 { "mips64", 1, ISA_MIPS64
, CPU_MIPS64
},
14236 { "mips64r2", 1, ISA_MIPS64R2
, CPU_MIPS64R2
},
14239 { "r3000", 0, ISA_MIPS1
, CPU_R3000
},
14240 { "r2000", 0, ISA_MIPS1
, CPU_R3000
},
14241 { "r3900", 0, ISA_MIPS1
, CPU_R3900
},
14244 { "r6000", 0, ISA_MIPS2
, CPU_R6000
},
14247 { "r4000", 0, ISA_MIPS3
, CPU_R4000
},
14248 { "r4010", 0, ISA_MIPS2
, CPU_R4010
},
14249 { "vr4100", 0, ISA_MIPS3
, CPU_VR4100
},
14250 { "vr4111", 0, ISA_MIPS3
, CPU_R4111
},
14251 { "vr4120", 0, ISA_MIPS3
, CPU_VR4120
},
14252 { "vr4130", 0, ISA_MIPS3
, CPU_VR4120
},
14253 { "vr4181", 0, ISA_MIPS3
, CPU_R4111
},
14254 { "vr4300", 0, ISA_MIPS3
, CPU_R4300
},
14255 { "r4400", 0, ISA_MIPS3
, CPU_R4400
},
14256 { "r4600", 0, ISA_MIPS3
, CPU_R4600
},
14257 { "orion", 0, ISA_MIPS3
, CPU_R4600
},
14258 { "r4650", 0, ISA_MIPS3
, CPU_R4650
},
14261 { "r8000", 0, ISA_MIPS4
, CPU_R8000
},
14262 { "r10000", 0, ISA_MIPS4
, CPU_R10000
},
14263 { "r12000", 0, ISA_MIPS4
, CPU_R12000
},
14264 { "vr5000", 0, ISA_MIPS4
, CPU_R5000
},
14265 { "vr5400", 0, ISA_MIPS4
, CPU_VR5400
},
14266 { "vr5500", 0, ISA_MIPS4
, CPU_VR5500
},
14267 { "rm5200", 0, ISA_MIPS4
, CPU_R5000
},
14268 { "rm5230", 0, ISA_MIPS4
, CPU_R5000
},
14269 { "rm5231", 0, ISA_MIPS4
, CPU_R5000
},
14270 { "rm5261", 0, ISA_MIPS4
, CPU_R5000
},
14271 { "rm5721", 0, ISA_MIPS4
, CPU_R5000
},
14272 { "rm7000", 0, ISA_MIPS4
, CPU_RM7000
},
14273 { "rm9000", 0, ISA_MIPS4
, CPU_RM9000
},
14276 { "4kc", 0, ISA_MIPS32
, CPU_MIPS32
},
14277 { "4km", 0, ISA_MIPS32
, CPU_MIPS32
},
14278 { "4kp", 0, ISA_MIPS32
, CPU_MIPS32
},
14280 /* MIPS32 Release 2 */
14281 { "m4k", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
14282 { "24k", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
14283 { "24kc", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
14284 { "24kf", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
14285 { "24kx", 0, ISA_MIPS32R2
, CPU_MIPS32R2
},
14288 { "5kc", 0, ISA_MIPS64
, CPU_MIPS64
},
14289 { "5kf", 0, ISA_MIPS64
, CPU_MIPS64
},
14290 { "20kc", 0, ISA_MIPS64
, CPU_MIPS64
},
14292 /* Broadcom SB-1 CPU core */
14293 { "sb1", 0, ISA_MIPS64
, CPU_SB1
},
14300 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
14301 with a final "000" replaced by "k". Ignore case.
14303 Note: this function is shared between GCC and GAS. */
14306 mips_strict_matching_cpu_name_p (const char *canonical
, const char *given
)
14308 while (*given
!= 0 && TOLOWER (*given
) == TOLOWER (*canonical
))
14309 given
++, canonical
++;
14311 return ((*given
== 0 && *canonical
== 0)
14312 || (strcmp (canonical
, "000") == 0 && strcasecmp (given
, "k") == 0));
14316 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
14317 CPU name. We've traditionally allowed a lot of variation here.
14319 Note: this function is shared between GCC and GAS. */
14322 mips_matching_cpu_name_p (const char *canonical
, const char *given
)
14324 /* First see if the name matches exactly, or with a final "000"
14325 turned into "k". */
14326 if (mips_strict_matching_cpu_name_p (canonical
, given
))
14329 /* If not, try comparing based on numerical designation alone.
14330 See if GIVEN is an unadorned number, or 'r' followed by a number. */
14331 if (TOLOWER (*given
) == 'r')
14333 if (!ISDIGIT (*given
))
14336 /* Skip over some well-known prefixes in the canonical name,
14337 hoping to find a number there too. */
14338 if (TOLOWER (canonical
[0]) == 'v' && TOLOWER (canonical
[1]) == 'r')
14340 else if (TOLOWER (canonical
[0]) == 'r' && TOLOWER (canonical
[1]) == 'm')
14342 else if (TOLOWER (canonical
[0]) == 'r')
14345 return mips_strict_matching_cpu_name_p (canonical
, given
);
14349 /* Parse an option that takes the name of a processor as its argument.
14350 OPTION is the name of the option and CPU_STRING is the argument.
14351 Return the corresponding processor enumeration if the CPU_STRING is
14352 recognized, otherwise report an error and return null.
14354 A similar function exists in GCC. */
14356 static const struct mips_cpu_info
*
14357 mips_parse_cpu (const char *option
, const char *cpu_string
)
14359 const struct mips_cpu_info
*p
;
14361 /* 'from-abi' selects the most compatible architecture for the given
14362 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
14363 EABIs, we have to decide whether we're using the 32-bit or 64-bit
14364 version. Look first at the -mgp options, if given, otherwise base
14365 the choice on MIPS_DEFAULT_64BIT.
14367 Treat NO_ABI like the EABIs. One reason to do this is that the
14368 plain 'mips' and 'mips64' configs have 'from-abi' as their default
14369 architecture. This code picks MIPS I for 'mips' and MIPS III for
14370 'mips64', just as we did in the days before 'from-abi'. */
14371 if (strcasecmp (cpu_string
, "from-abi") == 0)
14373 if (ABI_NEEDS_32BIT_REGS (mips_abi
))
14374 return mips_cpu_info_from_isa (ISA_MIPS1
);
14376 if (ABI_NEEDS_64BIT_REGS (mips_abi
))
14377 return mips_cpu_info_from_isa (ISA_MIPS3
);
14379 if (file_mips_gp32
>= 0)
14380 return mips_cpu_info_from_isa (file_mips_gp32
? ISA_MIPS1
: ISA_MIPS3
);
14382 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
14387 /* 'default' has traditionally been a no-op. Probably not very useful. */
14388 if (strcasecmp (cpu_string
, "default") == 0)
14391 for (p
= mips_cpu_info_table
; p
->name
!= 0; p
++)
14392 if (mips_matching_cpu_name_p (p
->name
, cpu_string
))
14395 as_bad ("Bad value (%s) for %s", cpu_string
, option
);
14399 /* Return the canonical processor information for ISA (a member of the
14400 ISA_MIPS* enumeration). */
14402 static const struct mips_cpu_info
*
14403 mips_cpu_info_from_isa (int isa
)
14407 for (i
= 0; mips_cpu_info_table
[i
].name
!= NULL
; i
++)
14408 if (mips_cpu_info_table
[i
].is_isa
14409 && isa
== mips_cpu_info_table
[i
].isa
)
14410 return (&mips_cpu_info_table
[i
]);
14415 static const struct mips_cpu_info
*
14416 mips_cpu_info_from_arch (int arch
)
14420 for (i
= 0; mips_cpu_info_table
[i
].name
!= NULL
; i
++)
14421 if (arch
== mips_cpu_info_table
[i
].cpu
)
14422 return (&mips_cpu_info_table
[i
]);
14428 show (FILE *stream
, const char *string
, int *col_p
, int *first_p
)
14432 fprintf (stream
, "%24s", "");
14437 fprintf (stream
, ", ");
14441 if (*col_p
+ strlen (string
) > 72)
14443 fprintf (stream
, "\n%24s", "");
14447 fprintf (stream
, "%s", string
);
14448 *col_p
+= strlen (string
);
14454 md_show_usage (FILE *stream
)
14459 fprintf (stream
, _("\
14461 -EB generate big endian output\n\
14462 -EL generate little endian output\n\
14463 -g, -g2 do not remove unneeded NOPs or swap branches\n\
14464 -G NUM allow referencing objects up to NUM bytes\n\
14465 implicitly with the gp register [default 8]\n"));
14466 fprintf (stream
, _("\
14467 -mips1 generate MIPS ISA I instructions\n\
14468 -mips2 generate MIPS ISA II instructions\n\
14469 -mips3 generate MIPS ISA III instructions\n\
14470 -mips4 generate MIPS ISA IV instructions\n\
14471 -mips5 generate MIPS ISA V instructions\n\
14472 -mips32 generate MIPS32 ISA instructions\n\
14473 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
14474 -mips64 generate MIPS64 ISA instructions\n\
14475 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
14476 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
14480 for (i
= 0; mips_cpu_info_table
[i
].name
!= NULL
; i
++)
14481 show (stream
, mips_cpu_info_table
[i
].name
, &column
, &first
);
14482 show (stream
, "from-abi", &column
, &first
);
14483 fputc ('\n', stream
);
14485 fprintf (stream
, _("\
14486 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
14487 -no-mCPU don't generate code specific to CPU.\n\
14488 For -mCPU and -no-mCPU, CPU must be one of:\n"));
14492 show (stream
, "3900", &column
, &first
);
14493 show (stream
, "4010", &column
, &first
);
14494 show (stream
, "4100", &column
, &first
);
14495 show (stream
, "4650", &column
, &first
);
14496 fputc ('\n', stream
);
14498 fprintf (stream
, _("\
14499 -mips16 generate mips16 instructions\n\
14500 -no-mips16 do not generate mips16 instructions\n"));
14501 fprintf (stream
, _("\
14502 -mdsp generate DSP instructions\n\
14503 -mno-dsp do not generate DSP instructions\n"));
14504 fprintf (stream
, _("\
14505 -mmt generate MT instructions\n\
14506 -mno-mt do not generate MT instructions\n"));
14507 fprintf (stream
, _("\
14508 -mfix-vr4120 work around certain VR4120 errata\n\
14509 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
14510 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
14511 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
14512 -mno-shared optimize output for executables\n\
14513 -msym32 assume all symbols have 32-bit values\n\
14514 -O0 remove unneeded NOPs, do not swap branches\n\
14515 -O remove unneeded NOPs and swap branches\n\
14516 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
14517 --trap, --no-break trap exception on div by 0 and mult overflow\n\
14518 --break, --no-trap break exception on div by 0 and mult overflow\n"));
14520 fprintf (stream
, _("\
14521 -KPIC, -call_shared generate SVR4 position independent code\n\
14522 -non_shared do not generate position independent code\n\
14523 -xgot assume a 32 bit GOT\n\
14524 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
14525 -mshared, -mno-shared disable/enable .cpload optimization for\n\
14527 -mabi=ABI create ABI conformant object file for:\n"));
14531 show (stream
, "32", &column
, &first
);
14532 show (stream
, "o64", &column
, &first
);
14533 show (stream
, "n32", &column
, &first
);
14534 show (stream
, "64", &column
, &first
);
14535 show (stream
, "eabi", &column
, &first
);
14537 fputc ('\n', stream
);
14539 fprintf (stream
, _("\
14540 -32 create o32 ABI object file (default)\n\
14541 -n32 create n32 ABI object file\n\
14542 -64 create 64 ABI object file\n"));
14547 mips_dwarf2_format (void)
14549 if (mips_abi
== N64_ABI
)
14552 return dwarf2_format_64bit_irix
;
14554 return dwarf2_format_64bit
;
14558 return dwarf2_format_32bit
;
14562 mips_dwarf2_addr_size (void)
14564 if (mips_abi
== N64_ABI
)
14570 /* Standard calling conventions leave the CFA at SP on entry. */
14572 mips_cfi_frame_initial_instructions (void)
14574 cfi_add_CFA_def_cfa_register (SP
);