1 /* tc-mips.c -- assemble code for a MIPS chip.
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
3 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, 59 Temple Place - Suite 330, Boston, MA
29 #include "safe-ctype.h"
38 #include "opcode/mips.h"
40 #include "dwarf2dbg.h"
43 #define DBG(x) printf x
49 /* Clean up namespace so we can include obj-elf.h too. */
50 static int mips_output_flavor PARAMS ((void));
51 static int mips_output_flavor () { return OUTPUT_FLAVOR; }
52 #undef OBJ_PROCESS_STAB
59 #undef obj_frob_file_after_relocs
60 #undef obj_frob_symbol
62 #undef obj_sec_sym_ok_for_reloc
63 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
66 /* Fix any of them that we actually care about. */
68 #define OUTPUT_FLAVOR mips_output_flavor()
75 #ifndef ECOFF_DEBUGGING
76 #define NO_ECOFF_DEBUGGING
77 #define ECOFF_DEBUGGING 0
80 int mips_flag_mdebug = -1;
84 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
85 static char *mips_regmask_frag;
91 #define PIC_CALL_REG 25
99 #define ILLEGAL_REG (32)
101 /* Allow override of standard little-endian ECOFF format. */
103 #ifndef ECOFF_LITTLE_FORMAT
104 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
107 extern int target_big_endian;
109 /* The name of the readonly data section. */
110 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_aout_flavour \
112 : OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
114 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
116 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
120 /* The ABI to use. */
131 /* MIPS ABI we are using for this output file. */
132 static enum mips_abi_level mips_abi = NO_ABI;
134 /* This is the set of options which may be modified by the .set
135 pseudo-op. We use a struct so that .set push and .set pop are more
138 struct mips_set_options
140 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
141 if it has not been initialized. Changed by `.set mipsN', and the
142 -mipsN command line option, and the default CPU. */
144 /* Enabled Application Specific Extensions (ASEs). These are set to -1
145 if they have not been initialized. Changed by `.set <asename>', by
146 command line options, and based on the default architecture. */
149 /* Whether we are assembling for the mips16 processor. 0 if we are
150 not, 1 if we are, and -1 if the value has not been initialized.
151 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
152 -nomips16 command line options, and the default CPU. */
154 /* Non-zero if we should not reorder instructions. Changed by `.set
155 reorder' and `.set noreorder'. */
157 /* Non-zero if we should not permit the $at ($1) register to be used
158 in instructions. Changed by `.set at' and `.set noat'. */
160 /* Non-zero if we should warn when a macro instruction expands into
161 more than one machine instruction. Changed by `.set nomacro' and
163 int warn_about_macros;
164 /* Non-zero if we should not move instructions. Changed by `.set
165 move', `.set volatile', `.set nomove', and `.set novolatile'. */
167 /* Non-zero if we should not optimize branches by moving the target
168 of the branch into the delay slot. Actually, we don't perform
169 this optimization anyhow. Changed by `.set bopt' and `.set
172 /* Non-zero if we should not autoextend mips16 instructions.
173 Changed by `.set autoextend' and `.set noautoextend'. */
175 /* Restrict general purpose registers and floating point registers
176 to 32 bit. This is initially determined when -mgp32 or -mfp32
177 is passed but can changed if the assembler code uses .set mipsN. */
182 /* True if -mgp32 was passed. */
183 static int file_mips_gp32 = -1;
185 /* True if -mfp32 was passed. */
186 static int file_mips_fp32 = -1;
188 /* This is the struct we use to hold the current set of options. Note
189 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
190 -1 to indicate that they have not been initialized. */
192 static struct mips_set_options mips_opts =
194 ISA_UNKNOWN, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0
197 /* These variables are filled in with the masks of registers used.
198 The object format code reads them and puts them in the appropriate
200 unsigned long mips_gprmask;
201 unsigned long mips_cprmask[4];
203 /* MIPS ISA we are using for this output file. */
204 static int file_mips_isa = ISA_UNKNOWN;
206 /* True if -mips16 was passed or implied by arguments passed on the
207 command line (e.g., by -march). */
208 static int file_ase_mips16;
210 /* True if -mips3d was passed or implied by arguments passed on the
211 command line (e.g., by -march). */
212 static int file_ase_mips3d;
214 /* True if -mdmx was passed or implied by arguments passed on the
215 command line (e.g., by -march). */
216 static int file_ase_mdmx;
218 /* The argument of the -march= flag. The architecture we are assembling. */
219 static int mips_arch = CPU_UNKNOWN;
220 static const char *mips_arch_string;
221 static const struct mips_cpu_info *mips_arch_info;
223 /* The argument of the -mtune= flag. The architecture for which we
225 static int mips_tune = CPU_UNKNOWN;
226 static const char *mips_tune_string;
227 static const struct mips_cpu_info *mips_tune_info;
229 /* True when generating 32-bit code for a 64-bit processor. */
230 static int mips_32bitmode = 0;
232 /* Some ISA's have delay slots for instructions which read or write
233 from a coprocessor (eg. mips1-mips3); some don't (eg mips4).
234 Return true if instructions marked INSN_LOAD_COPROC_DELAY,
235 INSN_COPROC_MOVE_DELAY, or INSN_WRITE_COND_CODE actually have a
236 delay slot in this ISA. The uses of this macro assume that any
237 ISA that has delay slots for one of these, has them for all. They
238 also assume that ISAs which don't have delays for these insns, don't
239 have delays for the INSN_LOAD_MEMORY_DELAY instructions either. */
240 #define ISA_HAS_COPROC_DELAYS(ISA) ( \
242 || (ISA) == ISA_MIPS2 \
243 || (ISA) == ISA_MIPS3 \
246 /* True if the given ABI requires 32-bit registers. */
247 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
249 /* Likewise 64-bit registers. */
250 #define ABI_NEEDS_64BIT_REGS(ABI) \
252 || (ABI) == N64_ABI \
255 /* Return true if ISA supports 64 bit gp register instructions. */
256 #define ISA_HAS_64BIT_REGS(ISA) ( \
258 || (ISA) == ISA_MIPS4 \
259 || (ISA) == ISA_MIPS5 \
260 || (ISA) == ISA_MIPS64 \
263 #define HAVE_32BIT_GPRS \
264 (mips_opts.gp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
266 #define HAVE_32BIT_FPRS \
267 (mips_opts.fp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
269 #define HAVE_64BIT_GPRS (! HAVE_32BIT_GPRS)
270 #define HAVE_64BIT_FPRS (! HAVE_32BIT_FPRS)
272 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
274 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
276 /* We can only have 64bit addresses if the object file format
278 #define HAVE_32BIT_ADDRESSES \
280 || ((bfd_arch_bits_per_address (stdoutput) == 32 \
281 || ! HAVE_64BIT_OBJECTS) \
282 && mips_pic != EMBEDDED_PIC))
284 #define HAVE_64BIT_ADDRESSES (! HAVE_32BIT_ADDRESSES)
286 /* Return true if the given CPU supports the MIPS16 ASE. */
287 #define CPU_HAS_MIPS16(cpu) \
288 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0)
290 /* Return true if the given CPU supports the MIPS3D ASE. */
291 #define CPU_HAS_MIPS3D(cpu) ((cpu) == CPU_SB1 \
294 /* Return true if the given CPU supports the MDMX ASE. */
295 #define CPU_HAS_MDMX(cpu) (false \
298 /* Whether the processor uses hardware interlocks to protect
299 reads from the HI and LO registers, and thus does not
300 require nops to be inserted. */
302 #define hilo_interlocks (mips_arch == CPU_R4010 \
303 || mips_arch == CPU_SB1 \
306 /* Whether the processor uses hardware interlocks to protect reads
307 from the GPRs, and thus does not require nops to be inserted. */
308 #define gpr_interlocks \
309 (mips_opts.isa != ISA_MIPS1 \
310 || mips_arch == CPU_R3900)
312 /* As with other "interlocks" this is used by hardware that has FP
313 (co-processor) interlocks. */
314 /* Itbl support may require additional care here. */
315 #define cop_interlocks (mips_arch == CPU_R4300 \
316 || mips_arch == CPU_SB1 \
319 /* Is this a mfhi or mflo instruction? */
320 #define MF_HILO_INSN(PINFO) \
321 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
323 /* MIPS PIC level. */
327 /* Do not generate PIC code. */
330 /* Generate PIC code as in the SVR4 MIPS ABI. */
333 /* Generate PIC code without using a global offset table: the data
334 segment has a maximum size of 64K, all data references are off
335 the $gp register, and all text references are PC relative. This
336 is used on some embedded systems. */
340 static enum mips_pic_level mips_pic;
342 /* Warn about all NOPS that the assembler generates. */
343 static int warn_nops = 0;
345 /* 1 if we should generate 32 bit offsets from the $gp register in
346 SVR4_PIC mode. Currently has no meaning in other modes. */
347 static int mips_big_got = 0;
349 /* 1 if trap instructions should used for overflow rather than break
351 static int mips_trap = 0;
353 /* 1 if double width floating point constants should not be constructed
354 by assembling two single width halves into two single width floating
355 point registers which just happen to alias the double width destination
356 register. On some architectures this aliasing can be disabled by a bit
357 in the status register, and the setting of this bit cannot be determined
358 automatically at assemble time. */
359 static int mips_disable_float_construction;
361 /* Non-zero if any .set noreorder directives were used. */
363 static int mips_any_noreorder;
365 /* Non-zero if nops should be inserted when the register referenced in
366 an mfhi/mflo instruction is read in the next two instructions. */
367 static int mips_7000_hilo_fix;
369 /* The size of the small data section. */
370 static unsigned int g_switch_value = 8;
371 /* Whether the -G option was used. */
372 static int g_switch_seen = 0;
377 /* If we can determine in advance that GP optimization won't be
378 possible, we can skip the relaxation stuff that tries to produce
379 GP-relative references. This makes delay slot optimization work
382 This function can only provide a guess, but it seems to work for
383 gcc output. It needs to guess right for gcc, otherwise gcc
384 will put what it thinks is a GP-relative instruction in a branch
387 I don't know if a fix is needed for the SVR4_PIC mode. I've only
388 fixed it for the non-PIC mode. KR 95/04/07 */
389 static int nopic_need_relax PARAMS ((symbolS *, int));
391 /* handle of the OPCODE hash table */
392 static struct hash_control *op_hash = NULL;
394 /* The opcode hash table we use for the mips16. */
395 static struct hash_control *mips16_op_hash = NULL;
397 /* This array holds the chars that always start a comment. If the
398 pre-processor is disabled, these aren't very useful */
399 const char comment_chars[] = "#";
401 /* This array holds the chars that only start a comment at the beginning of
402 a line. If the line seems to have the form '# 123 filename'
403 .line and .file directives will appear in the pre-processed output */
404 /* Note that input_file.c hand checks for '#' at the beginning of the
405 first line of the input file. This is because the compiler outputs
406 #NO_APP at the beginning of its output. */
407 /* Also note that C style comments are always supported. */
408 const char line_comment_chars[] = "#";
410 /* This array holds machine specific line separator characters. */
411 const char line_separator_chars[] = ";";
413 /* Chars that can be used to separate mant from exp in floating point nums */
414 const char EXP_CHARS[] = "eE";
416 /* Chars that mean this number is a floating point constant */
419 const char FLT_CHARS[] = "rRsSfFdDxXpP";
421 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
422 changed in read.c . Ideally it shouldn't have to know about it at all,
423 but nothing is ideal around here.
426 static char *insn_error;
428 static int auto_align = 1;
430 /* When outputting SVR4 PIC code, the assembler needs to know the
431 offset in the stack frame from which to restore the $gp register.
432 This is set by the .cprestore pseudo-op, and saved in this
434 static offsetT mips_cprestore_offset = -1;
436 /* Similiar for NewABI PIC code, where $gp is callee-saved. NewABI has some
437 more optimizations, it can use a register value instead of a memory-saved
438 offset and even an other register than $gp as global pointer. */
439 static offsetT mips_cpreturn_offset = -1;
440 static int mips_cpreturn_register = -1;
441 static int mips_gp_register = GP;
442 static int mips_gprel_offset = 0;
444 /* Whether mips_cprestore_offset has been set in the current function
445 (or whether it has already been warned about, if not). */
446 static int mips_cprestore_valid = 0;
448 /* This is the register which holds the stack frame, as set by the
449 .frame pseudo-op. This is needed to implement .cprestore. */
450 static int mips_frame_reg = SP;
452 /* Whether mips_frame_reg has been set in the current function
453 (or whether it has already been warned about, if not). */
454 static int mips_frame_reg_valid = 0;
456 /* To output NOP instructions correctly, we need to keep information
457 about the previous two instructions. */
459 /* Whether we are optimizing. The default value of 2 means to remove
460 unneeded NOPs and swap branch instructions when possible. A value
461 of 1 means to not swap branches. A value of 0 means to always
463 static int mips_optimize = 2;
465 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
466 equivalent to seeing no -g option at all. */
467 static int mips_debug = 0;
469 /* The previous instruction. */
470 static struct mips_cl_insn prev_insn;
472 /* The instruction before prev_insn. */
473 static struct mips_cl_insn prev_prev_insn;
475 /* If we don't want information for prev_insn or prev_prev_insn, we
476 point the insn_mo field at this dummy integer. */
477 static const struct mips_opcode dummy_opcode = { NULL, NULL, 0, 0, 0, 0 };
479 /* Non-zero if prev_insn is valid. */
480 static int prev_insn_valid;
482 /* The frag for the previous instruction. */
483 static struct frag *prev_insn_frag;
485 /* The offset into prev_insn_frag for the previous instruction. */
486 static long prev_insn_where;
488 /* The reloc type for the previous instruction, if any. */
489 static bfd_reloc_code_real_type prev_insn_reloc_type[3];
491 /* The reloc for the previous instruction, if any. */
492 static fixS *prev_insn_fixp[3];
494 /* Non-zero if the previous instruction was in a delay slot. */
495 static int prev_insn_is_delay_slot;
497 /* Non-zero if the previous instruction was in a .set noreorder. */
498 static int prev_insn_unreordered;
500 /* Non-zero if the previous instruction uses an extend opcode (if
502 static int prev_insn_extended;
504 /* Non-zero if the previous previous instruction was in a .set
506 static int prev_prev_insn_unreordered;
508 /* If this is set, it points to a frag holding nop instructions which
509 were inserted before the start of a noreorder section. If those
510 nops turn out to be unnecessary, the size of the frag can be
512 static fragS *prev_nop_frag;
514 /* The number of nop instructions we created in prev_nop_frag. */
515 static int prev_nop_frag_holds;
517 /* The number of nop instructions that we know we need in
519 static int prev_nop_frag_required;
521 /* The number of instructions we've seen since prev_nop_frag. */
522 static int prev_nop_frag_since;
524 /* For ECOFF and ELF, relocations against symbols are done in two
525 parts, with a HI relocation and a LO relocation. Each relocation
526 has only 16 bits of space to store an addend. This means that in
527 order for the linker to handle carries correctly, it must be able
528 to locate both the HI and the LO relocation. This means that the
529 relocations must appear in order in the relocation table.
531 In order to implement this, we keep track of each unmatched HI
532 relocation. We then sort them so that they immediately precede the
533 corresponding LO relocation. */
538 struct mips_hi_fixup *next;
541 /* The section this fixup is in. */
545 /* The list of unmatched HI relocs. */
547 static struct mips_hi_fixup *mips_hi_fixup_list;
549 /* Map normal MIPS register numbers to mips16 register numbers. */
551 #define X ILLEGAL_REG
552 static const int mips32_to_16_reg_map[] =
554 X, X, 2, 3, 4, 5, 6, 7,
555 X, X, X, X, X, X, X, X,
556 0, 1, X, X, X, X, X, X,
557 X, X, X, X, X, X, X, X
561 /* Map mips16 register numbers to normal MIPS register numbers. */
563 static const unsigned int mips16_to_32_reg_map[] =
565 16, 17, 2, 3, 4, 5, 6, 7
568 /* Since the MIPS does not have multiple forms of PC relative
569 instructions, we do not have to do relaxing as is done on other
570 platforms. However, we do have to handle GP relative addressing
571 correctly, which turns out to be a similar problem.
573 Every macro that refers to a symbol can occur in (at least) two
574 forms, one with GP relative addressing and one without. For
575 example, loading a global variable into a register generally uses
576 a macro instruction like this:
578 If i can be addressed off the GP register (this is true if it is in
579 the .sbss or .sdata section, or if it is known to be smaller than
580 the -G argument) this will generate the following instruction:
582 This instruction will use a GPREL reloc. If i can not be addressed
583 off the GP register, the following instruction sequence will be used:
586 In this case the first instruction will have a HI16 reloc, and the
587 second reloc will have a LO16 reloc. Both relocs will be against
590 The issue here is that we may not know whether i is GP addressable
591 until after we see the instruction that uses it. Therefore, we
592 want to be able to choose the final instruction sequence only at
593 the end of the assembly. This is similar to the way other
594 platforms choose the size of a PC relative instruction only at the
597 When generating position independent code we do not use GP
598 addressing in quite the same way, but the issue still arises as
599 external symbols and local symbols must be handled differently.
601 We handle these issues by actually generating both possible
602 instruction sequences. The longer one is put in a frag_var with
603 type rs_machine_dependent. We encode what to do with the frag in
604 the subtype field. We encode (1) the number of existing bytes to
605 replace, (2) the number of new bytes to use, (3) the offset from
606 the start of the existing bytes to the first reloc we must generate
607 (that is, the offset is applied from the start of the existing
608 bytes after they are replaced by the new bytes, if any), (4) the
609 offset from the start of the existing bytes to the second reloc,
610 (5) whether a third reloc is needed (the third reloc is always four
611 bytes after the second reloc), and (6) whether to warn if this
612 variant is used (this is sometimes needed if .set nomacro or .set
613 noat is in effect). All these numbers are reasonably small.
615 Generating two instruction sequences must be handled carefully to
616 ensure that delay slots are handled correctly. Fortunately, there
617 are a limited number of cases. When the second instruction
618 sequence is generated, append_insn is directed to maintain the
619 existing delay slot information, so it continues to apply to any
620 code after the second instruction sequence. This means that the
621 second instruction sequence must not impose any requirements not
622 required by the first instruction sequence.
624 These variant frags are then handled in functions called by the
625 machine independent code. md_estimate_size_before_relax returns
626 the final size of the frag. md_convert_frag sets up the final form
627 of the frag. tc_gen_reloc adjust the first reloc and adds a second
629 #define RELAX_ENCODE(old, new, reloc1, reloc2, reloc3, warn) \
633 | (((reloc1) + 64) << 9) \
634 | (((reloc2) + 64) << 2) \
635 | ((reloc3) ? (1 << 1) : 0) \
637 #define RELAX_OLD(i) (((i) >> 23) & 0x7f)
638 #define RELAX_NEW(i) (((i) >> 16) & 0x7f)
639 #define RELAX_RELOC1(i) ((valueT) (((i) >> 9) & 0x7f) - 64)
640 #define RELAX_RELOC2(i) ((valueT) (((i) >> 2) & 0x7f) - 64)
641 #define RELAX_RELOC3(i) (((i) >> 1) & 1)
642 #define RELAX_WARN(i) ((i) & 1)
644 /* For mips16 code, we use an entirely different form of relaxation.
645 mips16 supports two versions of most instructions which take
646 immediate values: a small one which takes some small value, and a
647 larger one which takes a 16 bit value. Since branches also follow
648 this pattern, relaxing these values is required.
650 We can assemble both mips16 and normal MIPS code in a single
651 object. Therefore, we need to support this type of relaxation at
652 the same time that we support the relaxation described above. We
653 use the high bit of the subtype field to distinguish these cases.
655 The information we store for this type of relaxation is the
656 argument code found in the opcode file for this relocation, whether
657 the user explicitly requested a small or extended form, and whether
658 the relocation is in a jump or jal delay slot. That tells us the
659 size of the value, and how it should be stored. We also store
660 whether the fragment is considered to be extended or not. We also
661 store whether this is known to be a branch to a different section,
662 whether we have tried to relax this frag yet, and whether we have
663 ever extended a PC relative fragment because of a shift count. */
664 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
667 | ((small) ? 0x100 : 0) \
668 | ((ext) ? 0x200 : 0) \
669 | ((dslot) ? 0x400 : 0) \
670 | ((jal_dslot) ? 0x800 : 0))
671 #define RELAX_MIPS16_P(i) (((i) & 0x80000000) != 0)
672 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
673 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
674 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
675 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
676 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
677 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
678 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
679 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
680 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
681 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
682 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
684 /* Prototypes for static functions. */
687 #define internalError() \
688 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
690 #define internalError() as_fatal (_("MIPS internal Error"));
693 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
695 static int insn_uses_reg PARAMS ((struct mips_cl_insn *ip,
696 unsigned int reg, enum mips_regclass class));
697 static int reg_needs_delay PARAMS ((unsigned int));
698 static void mips16_mark_labels PARAMS ((void));
699 static void append_insn PARAMS ((char *place,
700 struct mips_cl_insn * ip,
702 bfd_reloc_code_real_type *r,
704 static void mips_no_prev_insn PARAMS ((int));
705 static void mips_emit_delays PARAMS ((boolean));
707 static void macro_build PARAMS ((char *place, int *counter, expressionS * ep,
708 const char *name, const char *fmt,
711 static void macro_build ();
713 static void mips16_macro_build PARAMS ((char *, int *, expressionS *,
714 const char *, const char *,
716 static void macro_build_jalr PARAMS ((int, expressionS *));
717 static void macro_build_lui PARAMS ((char *place, int *counter,
718 expressionS * ep, int regnum));
719 static void set_at PARAMS ((int *counter, int reg, int unsignedp));
720 static void check_absolute_expr PARAMS ((struct mips_cl_insn * ip,
722 static void load_register PARAMS ((int *, int, expressionS *, int));
723 static void load_address PARAMS ((int *, int, expressionS *, int *));
724 static void move_register PARAMS ((int *, int, int));
725 static void macro PARAMS ((struct mips_cl_insn * ip));
726 static void mips16_macro PARAMS ((struct mips_cl_insn * ip));
727 #ifdef LOSING_COMPILER
728 static void macro2 PARAMS ((struct mips_cl_insn * ip));
730 static void mips_ip PARAMS ((char *str, struct mips_cl_insn * ip));
731 static void mips16_ip PARAMS ((char *str, struct mips_cl_insn * ip));
732 static void mips16_immed PARAMS ((char *, unsigned int, int, offsetT, boolean,
733 boolean, boolean, unsigned long *,
734 boolean *, unsigned short *));
735 static int my_getPercentOp PARAMS ((char **, unsigned int *, int *));
736 static int my_getSmallParser PARAMS ((char **, unsigned int *, int *));
737 static int my_getSmallExpression PARAMS ((expressionS *, char *));
738 static void my_getExpression PARAMS ((expressionS *, char *));
740 static int support_64bit_objects PARAMS((void));
742 static void mips_set_option_string PARAMS ((const char **, const char *));
743 static symbolS *get_symbol PARAMS ((void));
744 static void mips_align PARAMS ((int to, int fill, symbolS *label));
745 static void s_align PARAMS ((int));
746 static void s_change_sec PARAMS ((int));
747 static void s_cons PARAMS ((int));
748 static void s_float_cons PARAMS ((int));
749 static void s_mips_globl PARAMS ((int));
750 static void s_option PARAMS ((int));
751 static void s_mipsset PARAMS ((int));
752 static void s_abicalls PARAMS ((int));
753 static void s_cpload PARAMS ((int));
754 static void s_cpsetup PARAMS ((int));
755 static void s_cplocal PARAMS ((int));
756 static void s_cprestore PARAMS ((int));
757 static void s_cpreturn PARAMS ((int));
758 static void s_gpvalue PARAMS ((int));
759 static void s_gpword PARAMS ((int));
760 static void s_cpadd PARAMS ((int));
761 static void s_insn PARAMS ((int));
762 static void md_obj_begin PARAMS ((void));
763 static void md_obj_end PARAMS ((void));
764 static long get_number PARAMS ((void));
765 static void s_mips_ent PARAMS ((int));
766 static void s_mips_end PARAMS ((int));
767 static void s_mips_frame PARAMS ((int));
768 static void s_mips_mask PARAMS ((int));
769 static void s_mips_stab PARAMS ((int));
770 static void s_mips_weakext PARAMS ((int));
771 static void s_mips_file PARAMS ((int));
772 static void s_mips_loc PARAMS ((int));
773 static int mips16_extended_frag PARAMS ((fragS *, asection *, long));
774 static int validate_mips_insn PARAMS ((const struct mips_opcode *));
775 static void show PARAMS ((FILE *, const char *, int *, int *));
777 static int mips_need_elf_addend_fixup PARAMS ((fixS *));
780 /* Return values of my_getSmallExpression(). */
787 /* Direct relocation creation by %percent_op(). */
806 /* Table and functions used to map between CPU/ISA names, and
807 ISA levels, and CPU numbers. */
811 const char *name; /* CPU or ISA name. */
812 int is_isa; /* Is this an ISA? (If 0, a CPU.) */
813 int isa; /* ISA level. */
814 int cpu; /* CPU number (default CPU if ISA). */
817 static void mips_set_architecture PARAMS ((const struct mips_cpu_info *));
818 static void mips_set_tune PARAMS ((const struct mips_cpu_info *));
819 static boolean mips_strict_matching_cpu_name_p PARAMS ((const char *,
821 static boolean mips_matching_cpu_name_p PARAMS ((const char *, const char *));
822 static const struct mips_cpu_info *mips_parse_cpu PARAMS ((const char *,
824 static const struct mips_cpu_info *mips_cpu_info_from_isa PARAMS ((int));
828 The following pseudo-ops from the Kane and Heinrich MIPS book
829 should be defined here, but are currently unsupported: .alias,
830 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
832 The following pseudo-ops from the Kane and Heinrich MIPS book are
833 specific to the type of debugging information being generated, and
834 should be defined by the object format: .aent, .begin, .bend,
835 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
838 The following pseudo-ops from the Kane and Heinrich MIPS book are
839 not MIPS CPU specific, but are also not specific to the object file
840 format. This file is probably the best place to define them, but
841 they are not currently supported: .asm0, .endr, .lab, .repeat,
844 static const pseudo_typeS mips_pseudo_table[] =
846 /* MIPS specific pseudo-ops. */
847 {"option", s_option, 0},
848 {"set", s_mipsset, 0},
849 {"rdata", s_change_sec, 'r'},
850 {"sdata", s_change_sec, 's'},
851 {"livereg", s_ignore, 0},
852 {"abicalls", s_abicalls, 0},
853 {"cpload", s_cpload, 0},
854 {"cpsetup", s_cpsetup, 0},
855 {"cplocal", s_cplocal, 0},
856 {"cprestore", s_cprestore, 0},
857 {"cpreturn", s_cpreturn, 0},
858 {"gpvalue", s_gpvalue, 0},
859 {"gpword", s_gpword, 0},
860 {"cpadd", s_cpadd, 0},
863 /* Relatively generic pseudo-ops that happen to be used on MIPS
865 {"asciiz", stringer, 1},
866 {"bss", s_change_sec, 'b'},
869 {"dword", s_cons, 3},
870 {"weakext", s_mips_weakext, 0},
872 /* These pseudo-ops are defined in read.c, but must be overridden
873 here for one reason or another. */
874 {"align", s_align, 0},
876 {"data", s_change_sec, 'd'},
877 {"double", s_float_cons, 'd'},
878 {"float", s_float_cons, 'f'},
879 {"globl", s_mips_globl, 0},
880 {"global", s_mips_globl, 0},
881 {"hword", s_cons, 1},
886 {"short", s_cons, 1},
887 {"single", s_float_cons, 'f'},
888 {"stabn", s_mips_stab, 'n'},
889 {"text", s_change_sec, 't'},
892 { "extern", ecoff_directive_extern, 0},
897 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
899 /* These pseudo-ops should be defined by the object file format.
900 However, a.out doesn't support them, so we have versions here. */
901 {"aent", s_mips_ent, 1},
902 {"bgnb", s_ignore, 0},
903 {"end", s_mips_end, 0},
904 {"endb", s_ignore, 0},
905 {"ent", s_mips_ent, 0},
906 {"file", s_mips_file, 0},
907 {"fmask", s_mips_mask, 'F'},
908 {"frame", s_mips_frame, 0},
909 {"loc", s_mips_loc, 0},
910 {"mask", s_mips_mask, 'R'},
911 {"verstamp", s_ignore, 0},
915 extern void pop_insert PARAMS ((const pseudo_typeS *));
920 pop_insert (mips_pseudo_table);
921 if (! ECOFF_DEBUGGING)
922 pop_insert (mips_nonecoff_pseudo_table);
925 /* Symbols labelling the current insn. */
927 struct insn_label_list
929 struct insn_label_list *next;
933 static struct insn_label_list *insn_labels;
934 static struct insn_label_list *free_insn_labels;
936 static void mips_clear_insn_labels PARAMS ((void));
939 mips_clear_insn_labels ()
941 register struct insn_label_list **pl;
943 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
949 static char *expr_end;
951 /* Expressions which appear in instructions. These are set by
954 static expressionS imm_expr;
955 static expressionS offset_expr;
957 /* Relocs associated with imm_expr and offset_expr. */
959 static bfd_reloc_code_real_type imm_reloc[3]
960 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
961 static bfd_reloc_code_real_type offset_reloc[3]
962 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
964 /* This is set by mips_ip if imm_reloc is an unmatched HI16_S reloc. */
966 static boolean imm_unmatched_hi;
968 /* These are set by mips16_ip if an explicit extension is used. */
970 static boolean mips16_small, mips16_ext;
972 /* The pdr segment for per procedure frame/regmask info. Not used for
977 /* The default target format to use. */
980 mips_target_format ()
982 switch (OUTPUT_FLAVOR)
984 case bfd_target_aout_flavour:
985 return target_big_endian ? "a.out-mips-big" : "a.out-mips-little";
986 case bfd_target_ecoff_flavour:
987 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
988 case bfd_target_coff_flavour:
990 case bfd_target_elf_flavour:
992 /* This is traditional mips. */
993 return (target_big_endian
994 ? (HAVE_64BIT_OBJECTS
995 ? "elf64-tradbigmips"
997 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
998 : (HAVE_64BIT_OBJECTS
999 ? "elf64-tradlittlemips"
1001 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
1003 return (target_big_endian
1004 ? (HAVE_64BIT_OBJECTS
1007 ? "elf32-nbigmips" : "elf32-bigmips"))
1008 : (HAVE_64BIT_OBJECTS
1009 ? "elf64-littlemips"
1011 ? "elf32-nlittlemips" : "elf32-littlemips")));
1019 /* This function is called once, at assembler startup time. It should
1020 set up all the tables, etc. that the MD part of the assembler will need. */
1025 register const char *retval = NULL;
1029 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, mips_arch))
1030 as_warn (_("Could not set architecture and machine"));
1032 op_hash = hash_new ();
1034 for (i = 0; i < NUMOPCODES;)
1036 const char *name = mips_opcodes[i].name;
1038 retval = hash_insert (op_hash, name, (PTR) &mips_opcodes[i]);
1041 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1042 mips_opcodes[i].name, retval);
1043 /* Probably a memory allocation problem? Give up now. */
1044 as_fatal (_("Broken assembler. No assembly attempted."));
1048 if (mips_opcodes[i].pinfo != INSN_MACRO)
1050 if (!validate_mips_insn (&mips_opcodes[i]))
1055 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1058 mips16_op_hash = hash_new ();
1061 while (i < bfd_mips16_num_opcodes)
1063 const char *name = mips16_opcodes[i].name;
1065 retval = hash_insert (mips16_op_hash, name, (PTR) &mips16_opcodes[i]);
1067 as_fatal (_("internal: can't hash `%s': %s"),
1068 mips16_opcodes[i].name, retval);
1071 if (mips16_opcodes[i].pinfo != INSN_MACRO
1072 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1073 != mips16_opcodes[i].match))
1075 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1076 mips16_opcodes[i].name, mips16_opcodes[i].args);
1081 while (i < bfd_mips16_num_opcodes
1082 && strcmp (mips16_opcodes[i].name, name) == 0);
1086 as_fatal (_("Broken assembler. No assembly attempted."));
1088 /* We add all the general register names to the symbol table. This
1089 helps us detect invalid uses of them. */
1090 for (i = 0; i < 32; i++)
1094 sprintf (buf, "$%d", i);
1095 symbol_table_insert (symbol_new (buf, reg_section, i,
1096 &zero_address_frag));
1098 symbol_table_insert (symbol_new ("$ra", reg_section, RA,
1099 &zero_address_frag));
1100 symbol_table_insert (symbol_new ("$fp", reg_section, FP,
1101 &zero_address_frag));
1102 symbol_table_insert (symbol_new ("$sp", reg_section, SP,
1103 &zero_address_frag));
1104 symbol_table_insert (symbol_new ("$gp", reg_section, GP,
1105 &zero_address_frag));
1106 symbol_table_insert (symbol_new ("$at", reg_section, AT,
1107 &zero_address_frag));
1108 symbol_table_insert (symbol_new ("$kt0", reg_section, KT0,
1109 &zero_address_frag));
1110 symbol_table_insert (symbol_new ("$kt1", reg_section, KT1,
1111 &zero_address_frag));
1112 symbol_table_insert (symbol_new ("$zero", reg_section, ZERO,
1113 &zero_address_frag));
1114 symbol_table_insert (symbol_new ("$pc", reg_section, -1,
1115 &zero_address_frag));
1117 mips_no_prev_insn (false);
1120 mips_cprmask[0] = 0;
1121 mips_cprmask[1] = 0;
1122 mips_cprmask[2] = 0;
1123 mips_cprmask[3] = 0;
1125 /* set the default alignment for the text section (2**2) */
1126 record_alignment (text_section, 2);
1128 if (USE_GLOBAL_POINTER_OPT)
1129 bfd_set_gp_size (stdoutput, g_switch_value);
1131 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1133 /* On a native system, sections must be aligned to 16 byte
1134 boundaries. When configured for an embedded ELF target, we
1136 if (strcmp (TARGET_OS, "elf") != 0)
1138 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
1139 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
1140 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
1143 /* Create a .reginfo section for register masks and a .mdebug
1144 section for debugging information. */
1152 subseg = now_subseg;
1154 /* The ABI says this section should be loaded so that the
1155 running program can access it. However, we don't load it
1156 if we are configured for an embedded target */
1157 flags = SEC_READONLY | SEC_DATA;
1158 if (strcmp (TARGET_OS, "elf") != 0)
1159 flags |= SEC_ALLOC | SEC_LOAD;
1161 if (mips_abi != N64_ABI)
1163 sec = subseg_new (".reginfo", (subsegT) 0);
1165 bfd_set_section_flags (stdoutput, sec, flags);
1166 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
1169 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
1174 /* The 64-bit ABI uses a .MIPS.options section rather than
1175 .reginfo section. */
1176 sec = subseg_new (".MIPS.options", (subsegT) 0);
1177 bfd_set_section_flags (stdoutput, sec, flags);
1178 bfd_set_section_alignment (stdoutput, sec, 3);
1181 /* Set up the option header. */
1183 Elf_Internal_Options opthdr;
1186 opthdr.kind = ODK_REGINFO;
1187 opthdr.size = (sizeof (Elf_External_Options)
1188 + sizeof (Elf64_External_RegInfo));
1191 f = frag_more (sizeof (Elf_External_Options));
1192 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
1193 (Elf_External_Options *) f);
1195 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
1200 if (ECOFF_DEBUGGING)
1202 sec = subseg_new (".mdebug", (subsegT) 0);
1203 (void) bfd_set_section_flags (stdoutput, sec,
1204 SEC_HAS_CONTENTS | SEC_READONLY);
1205 (void) bfd_set_section_alignment (stdoutput, sec, 2);
1208 else if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1210 pdr_seg = subseg_new (".pdr", (subsegT) 0);
1211 (void) bfd_set_section_flags (stdoutput, pdr_seg,
1212 SEC_READONLY | SEC_RELOC
1214 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
1218 subseg_set (seg, subseg);
1222 if (! ECOFF_DEBUGGING)
1229 if (! ECOFF_DEBUGGING)
1237 struct mips_cl_insn insn;
1238 bfd_reloc_code_real_type unused_reloc[3]
1239 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1241 imm_expr.X_op = O_absent;
1242 imm_unmatched_hi = false;
1243 offset_expr.X_op = O_absent;
1244 imm_reloc[0] = BFD_RELOC_UNUSED;
1245 imm_reloc[1] = BFD_RELOC_UNUSED;
1246 imm_reloc[2] = BFD_RELOC_UNUSED;
1247 offset_reloc[0] = BFD_RELOC_UNUSED;
1248 offset_reloc[1] = BFD_RELOC_UNUSED;
1249 offset_reloc[2] = BFD_RELOC_UNUSED;
1251 if (mips_opts.mips16)
1252 mips16_ip (str, &insn);
1255 mips_ip (str, &insn);
1256 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
1257 str, insn.insn_opcode));
1262 as_bad ("%s `%s'", insn_error, str);
1266 if (insn.insn_mo->pinfo == INSN_MACRO)
1268 if (mips_opts.mips16)
1269 mips16_macro (&insn);
1275 if (imm_expr.X_op != O_absent)
1276 append_insn (NULL, &insn, &imm_expr, imm_reloc, imm_unmatched_hi);
1277 else if (offset_expr.X_op != O_absent)
1278 append_insn (NULL, &insn, &offset_expr, offset_reloc, false);
1280 append_insn (NULL, &insn, NULL, unused_reloc, false);
1284 /* See whether instruction IP reads register REG. CLASS is the type
1288 insn_uses_reg (ip, reg, class)
1289 struct mips_cl_insn *ip;
1291 enum mips_regclass class;
1293 if (class == MIPS16_REG)
1295 assert (mips_opts.mips16);
1296 reg = mips16_to_32_reg_map[reg];
1297 class = MIPS_GR_REG;
1300 /* Don't report on general register ZERO, since it never changes. */
1301 if (class == MIPS_GR_REG && reg == ZERO)
1304 if (class == MIPS_FP_REG)
1306 assert (! mips_opts.mips16);
1307 /* If we are called with either $f0 or $f1, we must check $f0.
1308 This is not optimal, because it will introduce an unnecessary
1309 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
1310 need to distinguish reading both $f0 and $f1 or just one of
1311 them. Note that we don't have to check the other way,
1312 because there is no instruction that sets both $f0 and $f1
1313 and requires a delay. */
1314 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
1315 && ((((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS) &~(unsigned)1)
1316 == (reg &~ (unsigned) 1)))
1318 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
1319 && ((((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT) &~(unsigned)1)
1320 == (reg &~ (unsigned) 1)))
1323 else if (! mips_opts.mips16)
1325 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
1326 && ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == reg)
1328 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
1329 && ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT) == reg)
1334 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
1335 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RX)
1336 & MIPS16OP_MASK_RX)]
1339 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
1340 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RY)
1341 & MIPS16OP_MASK_RY)]
1344 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
1345 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
1346 & MIPS16OP_MASK_MOVE32Z)]
1349 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
1351 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
1353 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
1355 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
1356 && ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
1357 & MIPS16OP_MASK_REGR32) == reg)
1364 /* This function returns true if modifying a register requires a
1368 reg_needs_delay (reg)
1371 unsigned long prev_pinfo;
1373 prev_pinfo = prev_insn.insn_mo->pinfo;
1374 if (! mips_opts.noreorder
1375 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
1376 && ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1377 || (! gpr_interlocks
1378 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))))
1380 /* A load from a coprocessor or from memory. All load
1381 delays delay the use of general register rt for one
1382 instruction on the r3000. The r6000 and r4000 use
1384 /* Itbl support may require additional care here. */
1385 know (prev_pinfo & INSN_WRITE_GPR_T);
1386 if (reg == ((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT))
1393 /* Mark instruction labels in mips16 mode. This permits the linker to
1394 handle them specially, such as generating jalx instructions when
1395 needed. We also make them odd for the duration of the assembly, in
1396 order to generate the right sort of code. We will make them even
1397 in the adjust_symtab routine, while leaving them marked. This is
1398 convenient for the debugger and the disassembler. The linker knows
1399 to make them odd again. */
1402 mips16_mark_labels ()
1404 if (mips_opts.mips16)
1406 struct insn_label_list *l;
1409 for (l = insn_labels; l != NULL; l = l->next)
1412 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1413 S_SET_OTHER (l->label, STO_MIPS16);
1415 val = S_GET_VALUE (l->label);
1417 S_SET_VALUE (l->label, val + 1);
1422 /* Output an instruction. PLACE is where to put the instruction; if
1423 it is NULL, this uses frag_more to get room. IP is the instruction
1424 information. ADDRESS_EXPR is an operand of the instruction to be
1425 used with RELOC_TYPE. */
1428 append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
1430 struct mips_cl_insn *ip;
1431 expressionS *address_expr;
1432 bfd_reloc_code_real_type *reloc_type;
1433 boolean unmatched_hi;
1435 register unsigned long prev_pinfo, pinfo;
1440 /* Mark instruction labels in mips16 mode. */
1441 mips16_mark_labels ();
1443 prev_pinfo = prev_insn.insn_mo->pinfo;
1444 pinfo = ip->insn_mo->pinfo;
1446 if (place == NULL && (! mips_opts.noreorder || prev_nop_frag != NULL))
1450 /* If the previous insn required any delay slots, see if we need
1451 to insert a NOP or two. There are eight kinds of possible
1452 hazards, of which an instruction can have at most one type.
1453 (1) a load from memory delay
1454 (2) a load from a coprocessor delay
1455 (3) an unconditional branch delay
1456 (4) a conditional branch delay
1457 (5) a move to coprocessor register delay
1458 (6) a load coprocessor register from memory delay
1459 (7) a coprocessor condition code delay
1460 (8) a HI/LO special register delay
1462 There are a lot of optimizations we could do that we don't.
1463 In particular, we do not, in general, reorder instructions.
1464 If you use gcc with optimization, it will reorder
1465 instructions and generally do much more optimization then we
1466 do here; repeating all that work in the assembler would only
1467 benefit hand written assembly code, and does not seem worth
1470 /* This is how a NOP is emitted. */
1471 #define emit_nop() \
1473 ? md_number_to_chars (frag_more (2), 0x6500, 2) \
1474 : md_number_to_chars (frag_more (4), 0, 4))
1476 /* The previous insn might require a delay slot, depending upon
1477 the contents of the current insn. */
1478 if (! mips_opts.mips16
1479 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
1480 && (((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1481 && ! cop_interlocks)
1482 || (! gpr_interlocks
1483 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))))
1485 /* A load from a coprocessor or from memory. All load
1486 delays delay the use of general register rt for one
1487 instruction on the r3000. The r6000 and r4000 use
1489 /* Itbl support may require additional care here. */
1490 know (prev_pinfo & INSN_WRITE_GPR_T);
1491 if (mips_optimize == 0
1492 || insn_uses_reg (ip,
1493 ((prev_insn.insn_opcode >> OP_SH_RT)
1498 else if (! mips_opts.mips16
1499 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
1500 && (((prev_pinfo & INSN_COPROC_MOVE_DELAY)
1501 && ! cop_interlocks)
1502 || (mips_opts.isa == ISA_MIPS1
1503 && (prev_pinfo & INSN_COPROC_MEMORY_DELAY))))
1505 /* A generic coprocessor delay. The previous instruction
1506 modified a coprocessor general or control register. If
1507 it modified a control register, we need to avoid any
1508 coprocessor instruction (this is probably not always
1509 required, but it sometimes is). If it modified a general
1510 register, we avoid using that register.
1512 On the r6000 and r4000 loading a coprocessor register
1513 from memory is interlocked, and does not require a delay.
1515 This case is not handled very well. There is no special
1516 knowledge of CP0 handling, and the coprocessors other
1517 than the floating point unit are not distinguished at
1519 /* Itbl support may require additional care here. FIXME!
1520 Need to modify this to include knowledge about
1521 user specified delays! */
1522 if (prev_pinfo & INSN_WRITE_FPR_T)
1524 if (mips_optimize == 0
1525 || insn_uses_reg (ip,
1526 ((prev_insn.insn_opcode >> OP_SH_FT)
1531 else if (prev_pinfo & INSN_WRITE_FPR_S)
1533 if (mips_optimize == 0
1534 || insn_uses_reg (ip,
1535 ((prev_insn.insn_opcode >> OP_SH_FS)
1542 /* We don't know exactly what the previous instruction
1543 does. If the current instruction uses a coprocessor
1544 register, we must insert a NOP. If previous
1545 instruction may set the condition codes, and the
1546 current instruction uses them, we must insert two
1548 /* Itbl support may require additional care here. */
1549 if (mips_optimize == 0
1550 || ((prev_pinfo & INSN_WRITE_COND_CODE)
1551 && (pinfo & INSN_READ_COND_CODE)))
1553 else if (pinfo & INSN_COP)
1557 else if (! mips_opts.mips16
1558 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
1559 && (prev_pinfo & INSN_WRITE_COND_CODE)
1560 && ! cop_interlocks)
1562 /* The previous instruction sets the coprocessor condition
1563 codes, but does not require a general coprocessor delay
1564 (this means it is a floating point comparison
1565 instruction). If this instruction uses the condition
1566 codes, we need to insert a single NOP. */
1567 /* Itbl support may require additional care here. */
1568 if (mips_optimize == 0
1569 || (pinfo & INSN_READ_COND_CODE))
1573 /* If we're fixing up mfhi/mflo for the r7000 and the
1574 previous insn was an mfhi/mflo and the current insn
1575 reads the register that the mfhi/mflo wrote to, then
1578 else if (mips_7000_hilo_fix
1579 && MF_HILO_INSN (prev_pinfo)
1580 && insn_uses_reg (ip, ((prev_insn.insn_opcode >> OP_SH_RD)
1587 /* If we're fixing up mfhi/mflo for the r7000 and the
1588 2nd previous insn was an mfhi/mflo and the current insn
1589 reads the register that the mfhi/mflo wrote to, then
1592 else if (mips_7000_hilo_fix
1593 && MF_HILO_INSN (prev_prev_insn.insn_opcode)
1594 && insn_uses_reg (ip, ((prev_prev_insn.insn_opcode >> OP_SH_RD)
1602 else if (prev_pinfo & INSN_READ_LO)
1604 /* The previous instruction reads the LO register; if the
1605 current instruction writes to the LO register, we must
1606 insert two NOPS. Some newer processors have interlocks.
1607 Also the tx39's multiply instructions can be exectuted
1608 immediatly after a read from HI/LO (without the delay),
1609 though the tx39's divide insns still do require the
1611 if (! (hilo_interlocks
1612 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))
1613 && (mips_optimize == 0
1614 || (pinfo & INSN_WRITE_LO)))
1616 /* Most mips16 branch insns don't have a delay slot.
1617 If a read from LO is immediately followed by a branch
1618 to a write to LO we have a read followed by a write
1619 less than 2 insns away. We assume the target of
1620 a branch might be a write to LO, and insert a nop
1621 between a read and an immediately following branch. */
1622 else if (mips_opts.mips16
1623 && (mips_optimize == 0
1624 || (pinfo & MIPS16_INSN_BRANCH)))
1627 else if (prev_insn.insn_mo->pinfo & INSN_READ_HI)
1629 /* The previous instruction reads the HI register; if the
1630 current instruction writes to the HI register, we must
1631 insert a NOP. Some newer processors have interlocks.
1632 Also the note tx39's multiply above. */
1633 if (! (hilo_interlocks
1634 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))
1635 && (mips_optimize == 0
1636 || (pinfo & INSN_WRITE_HI)))
1638 /* Most mips16 branch insns don't have a delay slot.
1639 If a read from HI is immediately followed by a branch
1640 to a write to HI we have a read followed by a write
1641 less than 2 insns away. We assume the target of
1642 a branch might be a write to HI, and insert a nop
1643 between a read and an immediately following branch. */
1644 else if (mips_opts.mips16
1645 && (mips_optimize == 0
1646 || (pinfo & MIPS16_INSN_BRANCH)))
1650 /* If the previous instruction was in a noreorder section, then
1651 we don't want to insert the nop after all. */
1652 /* Itbl support may require additional care here. */
1653 if (prev_insn_unreordered)
1656 /* There are two cases which require two intervening
1657 instructions: 1) setting the condition codes using a move to
1658 coprocessor instruction which requires a general coprocessor
1659 delay and then reading the condition codes 2) reading the HI
1660 or LO register and then writing to it (except on processors
1661 which have interlocks). If we are not already emitting a NOP
1662 instruction, we must check for these cases compared to the
1663 instruction previous to the previous instruction. */
1664 if ((! mips_opts.mips16
1665 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
1666 && (prev_prev_insn.insn_mo->pinfo & INSN_COPROC_MOVE_DELAY)
1667 && (prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE)
1668 && (pinfo & INSN_READ_COND_CODE)
1669 && ! cop_interlocks)
1670 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_LO)
1671 && (pinfo & INSN_WRITE_LO)
1672 && ! (hilo_interlocks
1673 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT))))
1674 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
1675 && (pinfo & INSN_WRITE_HI)
1676 && ! (hilo_interlocks
1677 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))))
1682 if (prev_prev_insn_unreordered)
1685 if (prev_prev_nop && nops == 0)
1688 /* If we are being given a nop instruction, don't bother with
1689 one of the nops we would otherwise output. This will only
1690 happen when a nop instruction is used with mips_optimize set
1693 && ! mips_opts.noreorder
1694 && ip->insn_opcode == (unsigned) (mips_opts.mips16 ? 0x6500 : 0))
1697 /* Now emit the right number of NOP instructions. */
1698 if (nops > 0 && ! mips_opts.noreorder)
1701 unsigned long old_frag_offset;
1703 struct insn_label_list *l;
1705 old_frag = frag_now;
1706 old_frag_offset = frag_now_fix ();
1708 for (i = 0; i < nops; i++)
1713 listing_prev_line ();
1714 /* We may be at the start of a variant frag. In case we
1715 are, make sure there is enough space for the frag
1716 after the frags created by listing_prev_line. The
1717 argument to frag_grow here must be at least as large
1718 as the argument to all other calls to frag_grow in
1719 this file. We don't have to worry about being in the
1720 middle of a variant frag, because the variants insert
1721 all needed nop instructions themselves. */
1725 for (l = insn_labels; l != NULL; l = l->next)
1729 assert (S_GET_SEGMENT (l->label) == now_seg);
1730 symbol_set_frag (l->label, frag_now);
1731 val = (valueT) frag_now_fix ();
1732 /* mips16 text labels are stored as odd. */
1733 if (mips_opts.mips16)
1735 S_SET_VALUE (l->label, val);
1738 #ifndef NO_ECOFF_DEBUGGING
1739 if (ECOFF_DEBUGGING)
1740 ecoff_fix_loc (old_frag, old_frag_offset);
1743 else if (prev_nop_frag != NULL)
1745 /* We have a frag holding nops we may be able to remove. If
1746 we don't need any nops, we can decrease the size of
1747 prev_nop_frag by the size of one instruction. If we do
1748 need some nops, we count them in prev_nops_required. */
1749 if (prev_nop_frag_since == 0)
1753 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1754 --prev_nop_frag_holds;
1757 prev_nop_frag_required += nops;
1761 if (prev_prev_nop == 0)
1763 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1764 --prev_nop_frag_holds;
1767 ++prev_nop_frag_required;
1770 if (prev_nop_frag_holds <= prev_nop_frag_required)
1771 prev_nop_frag = NULL;
1773 ++prev_nop_frag_since;
1775 /* Sanity check: by the time we reach the second instruction
1776 after prev_nop_frag, we should have used up all the nops
1777 one way or another. */
1778 assert (prev_nop_frag_since <= 1 || prev_nop_frag == NULL);
1782 if (*reloc_type > BFD_RELOC_UNUSED)
1784 /* We need to set up a variant frag. */
1785 assert (mips_opts.mips16 && address_expr != NULL);
1786 f = frag_var (rs_machine_dependent, 4, 0,
1787 RELAX_MIPS16_ENCODE (*reloc_type - BFD_RELOC_UNUSED,
1788 mips16_small, mips16_ext,
1790 & INSN_UNCOND_BRANCH_DELAY),
1791 (*prev_insn_reloc_type
1792 == BFD_RELOC_MIPS16_JMP)),
1793 make_expr_symbol (address_expr), 0, NULL);
1795 else if (place != NULL)
1797 else if (mips_opts.mips16
1799 && *reloc_type != BFD_RELOC_MIPS16_JMP)
1801 /* Make sure there is enough room to swap this instruction with
1802 a following jump instruction. */
1808 if (mips_opts.mips16
1809 && mips_opts.noreorder
1810 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
1811 as_warn (_("extended instruction in delay slot"));
1816 fixp[0] = fixp[1] = fixp[2] = NULL;
1817 if (address_expr != NULL && *reloc_type < BFD_RELOC_UNUSED)
1819 if (address_expr->X_op == O_constant)
1823 switch (*reloc_type)
1826 ip->insn_opcode |= address_expr->X_add_number;
1829 case BFD_RELOC_MIPS_HIGHEST:
1830 tmp = (address_expr->X_add_number + 0x800080008000) >> 16;
1832 ip->insn_opcode |= (tmp >> 16) & 0xffff;
1835 case BFD_RELOC_MIPS_HIGHER:
1836 tmp = (address_expr->X_add_number + 0x80008000) >> 16;
1837 ip->insn_opcode |= (tmp >> 16) & 0xffff;
1840 case BFD_RELOC_HI16_S:
1841 ip->insn_opcode |= ((address_expr->X_add_number + 0x8000)
1845 case BFD_RELOC_HI16:
1846 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
1849 case BFD_RELOC_LO16:
1850 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
1853 case BFD_RELOC_MIPS_JMP:
1854 if ((address_expr->X_add_number & 3) != 0)
1855 as_bad (_("jump to misaligned address (0x%lx)"),
1856 (unsigned long) address_expr->X_add_number);
1857 if (address_expr->X_add_number & ~0xfffffff
1858 || address_expr->X_add_number > 0x7fffffc)
1859 as_bad (_("jump address range overflow (0x%lx)"),
1860 (unsigned long) address_expr->X_add_number);
1861 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
1864 case BFD_RELOC_MIPS16_JMP:
1865 if ((address_expr->X_add_number & 3) != 0)
1866 as_bad (_("jump to misaligned address (0x%lx)"),
1867 (unsigned long) address_expr->X_add_number);
1868 if (address_expr->X_add_number & ~0xfffffff
1869 || address_expr->X_add_number > 0x7fffffc)
1870 as_bad (_("jump address range overflow (0x%lx)"),
1871 (unsigned long) address_expr->X_add_number);
1873 (((address_expr->X_add_number & 0x7c0000) << 3)
1874 | ((address_expr->X_add_number & 0xf800000) >> 7)
1875 | ((address_expr->X_add_number & 0x3fffc) >> 2));
1878 case BFD_RELOC_16_PCREL:
1879 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
1882 case BFD_RELOC_16_PCREL_S2:
1892 /* Don't generate a reloc if we are writing into a variant frag. */
1895 fixp[0] = fix_new_exp (frag_now, f - frag_now->fr_literal, 4,
1897 (*reloc_type == BFD_RELOC_16_PCREL
1898 || *reloc_type == BFD_RELOC_16_PCREL_S2),
1901 /* These relocations can have an addend that won't fit in
1902 4 octets for 64bit assembly. */
1903 if (HAVE_64BIT_GPRS &&
1904 (*reloc_type == BFD_RELOC_16
1905 || *reloc_type == BFD_RELOC_32
1906 || *reloc_type == BFD_RELOC_MIPS_JMP
1907 || *reloc_type == BFD_RELOC_HI16_S
1908 || *reloc_type == BFD_RELOC_LO16
1909 || *reloc_type == BFD_RELOC_GPREL16
1910 || *reloc_type == BFD_RELOC_MIPS_LITERAL
1911 || *reloc_type == BFD_RELOC_GPREL32
1912 || *reloc_type == BFD_RELOC_64
1913 || *reloc_type == BFD_RELOC_CTOR
1914 || *reloc_type == BFD_RELOC_MIPS_SUB
1915 || *reloc_type == BFD_RELOC_MIPS_HIGHEST
1916 || *reloc_type == BFD_RELOC_MIPS_HIGHER
1917 || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
1918 || *reloc_type == BFD_RELOC_MIPS_REL16
1919 || *reloc_type == BFD_RELOC_MIPS_RELGOT))
1920 fixp[0]->fx_no_overflow = 1;
1924 struct mips_hi_fixup *hi_fixup;
1926 assert (*reloc_type == BFD_RELOC_HI16_S);
1927 hi_fixup = ((struct mips_hi_fixup *)
1928 xmalloc (sizeof (struct mips_hi_fixup)));
1929 hi_fixup->fixp = fixp[0];
1930 hi_fixup->seg = now_seg;
1931 hi_fixup->next = mips_hi_fixup_list;
1932 mips_hi_fixup_list = hi_fixup;
1935 if (reloc_type[1] != BFD_RELOC_UNUSED)
1937 /* FIXME: This symbol can be one of
1938 RSS_UNDEF, RSS_GP, RSS_GP0, RSS_LOC. */
1939 address_expr->X_op = O_absent;
1940 address_expr->X_add_symbol = 0;
1941 address_expr->X_add_number = 0;
1943 fixp[1] = fix_new_exp (frag_now, f - frag_now->fr_literal,
1944 4, address_expr, false,
1947 /* These relocations can have an addend that won't fit in
1948 4 octets for 64bit assembly. */
1949 if (HAVE_64BIT_GPRS &&
1950 (*reloc_type == BFD_RELOC_16
1951 || *reloc_type == BFD_RELOC_32
1952 || *reloc_type == BFD_RELOC_MIPS_JMP
1953 || *reloc_type == BFD_RELOC_HI16_S
1954 || *reloc_type == BFD_RELOC_LO16
1955 || *reloc_type == BFD_RELOC_GPREL16
1956 || *reloc_type == BFD_RELOC_MIPS_LITERAL
1957 || *reloc_type == BFD_RELOC_GPREL32
1958 || *reloc_type == BFD_RELOC_64
1959 || *reloc_type == BFD_RELOC_CTOR
1960 || *reloc_type == BFD_RELOC_MIPS_SUB
1961 || *reloc_type == BFD_RELOC_MIPS_HIGHEST
1962 || *reloc_type == BFD_RELOC_MIPS_HIGHER
1963 || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
1964 || *reloc_type == BFD_RELOC_MIPS_REL16
1965 || *reloc_type == BFD_RELOC_MIPS_RELGOT))
1966 fixp[1]->fx_no_overflow = 1;
1968 if (reloc_type[2] != BFD_RELOC_UNUSED)
1970 address_expr->X_op = O_absent;
1971 address_expr->X_add_symbol = 0;
1972 address_expr->X_add_number = 0;
1974 fixp[2] = fix_new_exp (frag_now,
1975 f - frag_now->fr_literal, 4,
1976 address_expr, false,
1979 /* These relocations can have an addend that won't fit in
1980 4 octets for 64bit assembly. */
1981 if (HAVE_64BIT_GPRS &&
1982 (*reloc_type == BFD_RELOC_16
1983 || *reloc_type == BFD_RELOC_32
1984 || *reloc_type == BFD_RELOC_MIPS_JMP
1985 || *reloc_type == BFD_RELOC_HI16_S
1986 || *reloc_type == BFD_RELOC_LO16
1987 || *reloc_type == BFD_RELOC_GPREL16
1988 || *reloc_type == BFD_RELOC_MIPS_LITERAL
1989 || *reloc_type == BFD_RELOC_GPREL32
1990 || *reloc_type == BFD_RELOC_64
1991 || *reloc_type == BFD_RELOC_CTOR
1992 || *reloc_type == BFD_RELOC_MIPS_SUB
1993 || *reloc_type == BFD_RELOC_MIPS_HIGHEST
1994 || *reloc_type == BFD_RELOC_MIPS_HIGHER
1995 || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
1996 || *reloc_type == BFD_RELOC_MIPS_REL16
1997 || *reloc_type == BFD_RELOC_MIPS_RELGOT))
1998 fixp[2]->fx_no_overflow = 1;
2005 if (! mips_opts.mips16)
2007 md_number_to_chars (f, ip->insn_opcode, 4);
2009 dwarf2_emit_insn (4);
2012 else if (*reloc_type == BFD_RELOC_MIPS16_JMP)
2014 md_number_to_chars (f, ip->insn_opcode >> 16, 2);
2015 md_number_to_chars (f + 2, ip->insn_opcode & 0xffff, 2);
2017 dwarf2_emit_insn (4);
2024 md_number_to_chars (f, 0xf000 | ip->extend, 2);
2027 md_number_to_chars (f, ip->insn_opcode, 2);
2029 dwarf2_emit_insn (ip->use_extend ? 4 : 2);
2033 /* Update the register mask information. */
2034 if (! mips_opts.mips16)
2036 if (pinfo & INSN_WRITE_GPR_D)
2037 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD);
2038 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
2039 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT);
2040 if (pinfo & INSN_READ_GPR_S)
2041 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS);
2042 if (pinfo & INSN_WRITE_GPR_31)
2043 mips_gprmask |= 1 << RA;
2044 if (pinfo & INSN_WRITE_FPR_D)
2045 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FD) & OP_MASK_FD);
2046 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
2047 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS);
2048 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
2049 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT);
2050 if ((pinfo & INSN_READ_FPR_R) != 0)
2051 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FR) & OP_MASK_FR);
2052 if (pinfo & INSN_COP)
2054 /* We don't keep enough information to sort these cases out.
2055 The itbl support does keep this information however, although
2056 we currently don't support itbl fprmats as part of the cop
2057 instruction. May want to add this support in the future. */
2059 /* Never set the bit for $0, which is always zero. */
2060 mips_gprmask &= ~1 << 0;
2064 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
2065 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RX)
2066 & MIPS16OP_MASK_RX);
2067 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
2068 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RY)
2069 & MIPS16OP_MASK_RY);
2070 if (pinfo & MIPS16_INSN_WRITE_Z)
2071 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RZ)
2072 & MIPS16OP_MASK_RZ);
2073 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
2074 mips_gprmask |= 1 << TREG;
2075 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
2076 mips_gprmask |= 1 << SP;
2077 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
2078 mips_gprmask |= 1 << RA;
2079 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
2080 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
2081 if (pinfo & MIPS16_INSN_READ_Z)
2082 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
2083 & MIPS16OP_MASK_MOVE32Z);
2084 if (pinfo & MIPS16_INSN_READ_GPR_X)
2085 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
2086 & MIPS16OP_MASK_REGR32);
2089 if (place == NULL && ! mips_opts.noreorder)
2091 /* Filling the branch delay slot is more complex. We try to
2092 switch the branch with the previous instruction, which we can
2093 do if the previous instruction does not set up a condition
2094 that the branch tests and if the branch is not itself the
2095 target of any branch. */
2096 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
2097 || (pinfo & INSN_COND_BRANCH_DELAY))
2099 if (mips_optimize < 2
2100 /* If we have seen .set volatile or .set nomove, don't
2102 || mips_opts.nomove != 0
2103 /* If we had to emit any NOP instructions, then we
2104 already know we can not swap. */
2106 /* If we don't even know the previous insn, we can not
2108 || ! prev_insn_valid
2109 /* If the previous insn is already in a branch delay
2110 slot, then we can not swap. */
2111 || prev_insn_is_delay_slot
2112 /* If the previous previous insn was in a .set
2113 noreorder, we can't swap. Actually, the MIPS
2114 assembler will swap in this situation. However, gcc
2115 configured -with-gnu-as will generate code like
2121 in which we can not swap the bne and INSN. If gcc is
2122 not configured -with-gnu-as, it does not output the
2123 .set pseudo-ops. We don't have to check
2124 prev_insn_unreordered, because prev_insn_valid will
2125 be 0 in that case. We don't want to use
2126 prev_prev_insn_valid, because we do want to be able
2127 to swap at the start of a function. */
2128 || prev_prev_insn_unreordered
2129 /* If the branch is itself the target of a branch, we
2130 can not swap. We cheat on this; all we check for is
2131 whether there is a label on this instruction. If
2132 there are any branches to anything other than a
2133 label, users must use .set noreorder. */
2134 || insn_labels != NULL
2135 /* If the previous instruction is in a variant frag, we
2136 can not do the swap. This does not apply to the
2137 mips16, which uses variant frags for different
2139 || (! mips_opts.mips16
2140 && prev_insn_frag->fr_type == rs_machine_dependent)
2141 /* If the branch reads the condition codes, we don't
2142 even try to swap, because in the sequence
2147 we can not swap, and I don't feel like handling that
2149 || (! mips_opts.mips16
2150 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
2151 && (pinfo & INSN_READ_COND_CODE))
2152 /* We can not swap with an instruction that requires a
2153 delay slot, becase the target of the branch might
2154 interfere with that instruction. */
2155 || (! mips_opts.mips16
2156 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
2158 /* Itbl support may require additional care here. */
2159 & (INSN_LOAD_COPROC_DELAY
2160 | INSN_COPROC_MOVE_DELAY
2161 | INSN_WRITE_COND_CODE)))
2162 || (! (hilo_interlocks
2163 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))
2167 || (! mips_opts.mips16
2169 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))
2170 || (! mips_opts.mips16
2171 && mips_opts.isa == ISA_MIPS1
2172 /* Itbl support may require additional care here. */
2173 && (prev_pinfo & INSN_COPROC_MEMORY_DELAY))
2174 /* We can not swap with a branch instruction. */
2176 & (INSN_UNCOND_BRANCH_DELAY
2177 | INSN_COND_BRANCH_DELAY
2178 | INSN_COND_BRANCH_LIKELY))
2179 /* We do not swap with a trap instruction, since it
2180 complicates trap handlers to have the trap
2181 instruction be in a delay slot. */
2182 || (prev_pinfo & INSN_TRAP)
2183 /* If the branch reads a register that the previous
2184 instruction sets, we can not swap. */
2185 || (! mips_opts.mips16
2186 && (prev_pinfo & INSN_WRITE_GPR_T)
2187 && insn_uses_reg (ip,
2188 ((prev_insn.insn_opcode >> OP_SH_RT)
2191 || (! mips_opts.mips16
2192 && (prev_pinfo & INSN_WRITE_GPR_D)
2193 && insn_uses_reg (ip,
2194 ((prev_insn.insn_opcode >> OP_SH_RD)
2197 || (mips_opts.mips16
2198 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
2199 && insn_uses_reg (ip,
2200 ((prev_insn.insn_opcode
2202 & MIPS16OP_MASK_RX),
2204 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
2205 && insn_uses_reg (ip,
2206 ((prev_insn.insn_opcode
2208 & MIPS16OP_MASK_RY),
2210 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
2211 && insn_uses_reg (ip,
2212 ((prev_insn.insn_opcode
2214 & MIPS16OP_MASK_RZ),
2216 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
2217 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
2218 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
2219 && insn_uses_reg (ip, RA, MIPS_GR_REG))
2220 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2221 && insn_uses_reg (ip,
2222 MIPS16OP_EXTRACT_REG32R (prev_insn.
2225 /* If the branch writes a register that the previous
2226 instruction sets, we can not swap (we know that
2227 branches write only to RD or to $31). */
2228 || (! mips_opts.mips16
2229 && (prev_pinfo & INSN_WRITE_GPR_T)
2230 && (((pinfo & INSN_WRITE_GPR_D)
2231 && (((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT)
2232 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2233 || ((pinfo & INSN_WRITE_GPR_31)
2234 && (((prev_insn.insn_opcode >> OP_SH_RT)
2237 || (! mips_opts.mips16
2238 && (prev_pinfo & INSN_WRITE_GPR_D)
2239 && (((pinfo & INSN_WRITE_GPR_D)
2240 && (((prev_insn.insn_opcode >> OP_SH_RD) & OP_MASK_RD)
2241 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2242 || ((pinfo & INSN_WRITE_GPR_31)
2243 && (((prev_insn.insn_opcode >> OP_SH_RD)
2246 || (mips_opts.mips16
2247 && (pinfo & MIPS16_INSN_WRITE_31)
2248 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
2249 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2250 && (MIPS16OP_EXTRACT_REG32R (prev_insn.insn_opcode)
2252 /* If the branch writes a register that the previous
2253 instruction reads, we can not swap (we know that
2254 branches only write to RD or to $31). */
2255 || (! mips_opts.mips16
2256 && (pinfo & INSN_WRITE_GPR_D)
2257 && insn_uses_reg (&prev_insn,
2258 ((ip->insn_opcode >> OP_SH_RD)
2261 || (! mips_opts.mips16
2262 && (pinfo & INSN_WRITE_GPR_31)
2263 && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG))
2264 || (mips_opts.mips16
2265 && (pinfo & MIPS16_INSN_WRITE_31)
2266 && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG))
2267 /* If we are generating embedded PIC code, the branch
2268 might be expanded into a sequence which uses $at, so
2269 we can't swap with an instruction which reads it. */
2270 || (mips_pic == EMBEDDED_PIC
2271 && insn_uses_reg (&prev_insn, AT, MIPS_GR_REG))
2272 /* If the previous previous instruction has a load
2273 delay, and sets a register that the branch reads, we
2275 || (! mips_opts.mips16
2276 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
2277 /* Itbl support may require additional care here. */
2278 && ((prev_prev_insn.insn_mo->pinfo & INSN_LOAD_COPROC_DELAY)
2279 || (! gpr_interlocks
2280 && (prev_prev_insn.insn_mo->pinfo
2281 & INSN_LOAD_MEMORY_DELAY)))
2282 && insn_uses_reg (ip,
2283 ((prev_prev_insn.insn_opcode >> OP_SH_RT)
2286 /* If one instruction sets a condition code and the
2287 other one uses a condition code, we can not swap. */
2288 || ((pinfo & INSN_READ_COND_CODE)
2289 && (prev_pinfo & INSN_WRITE_COND_CODE))
2290 || ((pinfo & INSN_WRITE_COND_CODE)
2291 && (prev_pinfo & INSN_READ_COND_CODE))
2292 /* If the previous instruction uses the PC, we can not
2294 || (mips_opts.mips16
2295 && (prev_pinfo & MIPS16_INSN_READ_PC))
2296 /* If the previous instruction was extended, we can not
2298 || (mips_opts.mips16 && prev_insn_extended)
2299 /* If the previous instruction had a fixup in mips16
2300 mode, we can not swap. This normally means that the
2301 previous instruction was a 4 byte branch anyhow. */
2302 || (mips_opts.mips16 && prev_insn_fixp[0])
2303 /* If the previous instruction is a sync, sync.l, or
2304 sync.p, we can not swap. */
2305 || (prev_pinfo & INSN_SYNC))
2307 /* We could do even better for unconditional branches to
2308 portions of this object file; we could pick up the
2309 instruction at the destination, put it in the delay
2310 slot, and bump the destination address. */
2312 /* Update the previous insn information. */
2313 prev_prev_insn = *ip;
2314 prev_insn.insn_mo = &dummy_opcode;
2318 /* It looks like we can actually do the swap. */
2319 if (! mips_opts.mips16)
2324 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2325 memcpy (temp, prev_f, 4);
2326 memcpy (prev_f, f, 4);
2327 memcpy (f, temp, 4);
2328 if (prev_insn_fixp[0])
2330 prev_insn_fixp[0]->fx_frag = frag_now;
2331 prev_insn_fixp[0]->fx_where = f - frag_now->fr_literal;
2333 if (prev_insn_fixp[1])
2335 prev_insn_fixp[1]->fx_frag = frag_now;
2336 prev_insn_fixp[1]->fx_where = f - frag_now->fr_literal;
2338 if (prev_insn_fixp[2])
2340 prev_insn_fixp[2]->fx_frag = frag_now;
2341 prev_insn_fixp[2]->fx_where = f - frag_now->fr_literal;
2345 fixp[0]->fx_frag = prev_insn_frag;
2346 fixp[0]->fx_where = prev_insn_where;
2350 fixp[1]->fx_frag = prev_insn_frag;
2351 fixp[1]->fx_where = prev_insn_where;
2355 fixp[2]->fx_frag = prev_insn_frag;
2356 fixp[2]->fx_where = prev_insn_where;
2364 assert (prev_insn_fixp[0] == NULL);
2365 assert (prev_insn_fixp[1] == NULL);
2366 assert (prev_insn_fixp[2] == NULL);
2367 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2368 memcpy (temp, prev_f, 2);
2369 memcpy (prev_f, f, 2);
2370 if (*reloc_type != BFD_RELOC_MIPS16_JMP)
2372 assert (*reloc_type == BFD_RELOC_UNUSED);
2373 memcpy (f, temp, 2);
2377 memcpy (f, f + 2, 2);
2378 memcpy (f + 2, temp, 2);
2382 fixp[0]->fx_frag = prev_insn_frag;
2383 fixp[0]->fx_where = prev_insn_where;
2387 fixp[1]->fx_frag = prev_insn_frag;
2388 fixp[1]->fx_where = prev_insn_where;
2392 fixp[2]->fx_frag = prev_insn_frag;
2393 fixp[2]->fx_where = prev_insn_where;
2397 /* Update the previous insn information; leave prev_insn
2399 prev_prev_insn = *ip;
2401 prev_insn_is_delay_slot = 1;
2403 /* If that was an unconditional branch, forget the previous
2404 insn information. */
2405 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
2407 prev_prev_insn.insn_mo = &dummy_opcode;
2408 prev_insn.insn_mo = &dummy_opcode;
2411 prev_insn_fixp[0] = NULL;
2412 prev_insn_fixp[1] = NULL;
2413 prev_insn_fixp[2] = NULL;
2414 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2415 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2416 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
2417 prev_insn_extended = 0;
2419 else if (pinfo & INSN_COND_BRANCH_LIKELY)
2421 /* We don't yet optimize a branch likely. What we should do
2422 is look at the target, copy the instruction found there
2423 into the delay slot, and increment the branch to jump to
2424 the next instruction. */
2426 /* Update the previous insn information. */
2427 prev_prev_insn = *ip;
2428 prev_insn.insn_mo = &dummy_opcode;
2429 prev_insn_fixp[0] = NULL;
2430 prev_insn_fixp[1] = NULL;
2431 prev_insn_fixp[2] = NULL;
2432 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2433 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2434 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
2435 prev_insn_extended = 0;
2439 /* Update the previous insn information. */
2441 prev_prev_insn.insn_mo = &dummy_opcode;
2443 prev_prev_insn = prev_insn;
2446 /* Any time we see a branch, we always fill the delay slot
2447 immediately; since this insn is not a branch, we know it
2448 is not in a delay slot. */
2449 prev_insn_is_delay_slot = 0;
2451 prev_insn_fixp[0] = fixp[0];
2452 prev_insn_fixp[1] = fixp[1];
2453 prev_insn_fixp[2] = fixp[2];
2454 prev_insn_reloc_type[0] = reloc_type[0];
2455 prev_insn_reloc_type[1] = reloc_type[1];
2456 prev_insn_reloc_type[2] = reloc_type[2];
2457 if (mips_opts.mips16)
2458 prev_insn_extended = (ip->use_extend
2459 || *reloc_type > BFD_RELOC_UNUSED);
2462 prev_prev_insn_unreordered = prev_insn_unreordered;
2463 prev_insn_unreordered = 0;
2464 prev_insn_frag = frag_now;
2465 prev_insn_where = f - frag_now->fr_literal;
2466 prev_insn_valid = 1;
2468 else if (place == NULL)
2470 /* We need to record a bit of information even when we are not
2471 reordering, in order to determine the base address for mips16
2472 PC relative relocs. */
2473 prev_prev_insn = prev_insn;
2475 prev_insn_reloc_type[0] = reloc_type[0];
2476 prev_insn_reloc_type[1] = reloc_type[1];
2477 prev_insn_reloc_type[2] = reloc_type[2];
2478 prev_prev_insn_unreordered = prev_insn_unreordered;
2479 prev_insn_unreordered = 1;
2482 /* We just output an insn, so the next one doesn't have a label. */
2483 mips_clear_insn_labels ();
2485 /* We must ensure that a fixup associated with an unmatched %hi
2486 reloc does not become a variant frag. Otherwise, the
2487 rearrangement of %hi relocs in frob_file may confuse
2491 frag_wane (frag_now);
2496 /* This function forgets that there was any previous instruction or
2497 label. If PRESERVE is non-zero, it remembers enough information to
2498 know whether nops are needed before a noreorder section. */
2501 mips_no_prev_insn (preserve)
2506 prev_insn.insn_mo = &dummy_opcode;
2507 prev_prev_insn.insn_mo = &dummy_opcode;
2508 prev_nop_frag = NULL;
2509 prev_nop_frag_holds = 0;
2510 prev_nop_frag_required = 0;
2511 prev_nop_frag_since = 0;
2513 prev_insn_valid = 0;
2514 prev_insn_is_delay_slot = 0;
2515 prev_insn_unreordered = 0;
2516 prev_insn_extended = 0;
2517 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2518 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2519 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
2520 prev_prev_insn_unreordered = 0;
2521 mips_clear_insn_labels ();
2524 /* This function must be called whenever we turn on noreorder or emit
2525 something other than instructions. It inserts any NOPS which might
2526 be needed by the previous instruction, and clears the information
2527 kept for the previous instructions. The INSNS parameter is true if
2528 instructions are to follow. */
2531 mips_emit_delays (insns)
2534 if (! mips_opts.noreorder)
2539 if ((! mips_opts.mips16
2540 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
2541 && (! cop_interlocks
2542 && (prev_insn.insn_mo->pinfo
2543 & (INSN_LOAD_COPROC_DELAY
2544 | INSN_COPROC_MOVE_DELAY
2545 | INSN_WRITE_COND_CODE))))
2546 || (! hilo_interlocks
2547 && (prev_insn.insn_mo->pinfo
2550 || (! mips_opts.mips16
2552 && (prev_insn.insn_mo->pinfo
2553 & INSN_LOAD_MEMORY_DELAY))
2554 || (! mips_opts.mips16
2555 && mips_opts.isa == ISA_MIPS1
2556 && (prev_insn.insn_mo->pinfo
2557 & INSN_COPROC_MEMORY_DELAY)))
2559 /* Itbl support may require additional care here. */
2561 if ((! mips_opts.mips16
2562 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
2563 && (! cop_interlocks
2564 && prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE))
2565 || (! hilo_interlocks
2566 && ((prev_insn.insn_mo->pinfo & INSN_READ_HI)
2567 || (prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2570 if (prev_insn_unreordered)
2573 else if ((! mips_opts.mips16
2574 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
2575 && (! cop_interlocks
2576 && prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE))
2577 || (! hilo_interlocks
2578 && ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
2579 || (prev_prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2581 /* Itbl support may require additional care here. */
2582 if (! prev_prev_insn_unreordered)
2588 struct insn_label_list *l;
2592 /* Record the frag which holds the nop instructions, so
2593 that we can remove them if we don't need them. */
2594 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
2595 prev_nop_frag = frag_now;
2596 prev_nop_frag_holds = nops;
2597 prev_nop_frag_required = 0;
2598 prev_nop_frag_since = 0;
2601 for (; nops > 0; --nops)
2606 /* Move on to a new frag, so that it is safe to simply
2607 decrease the size of prev_nop_frag. */
2608 frag_wane (frag_now);
2612 for (l = insn_labels; l != NULL; l = l->next)
2616 assert (S_GET_SEGMENT (l->label) == now_seg);
2617 symbol_set_frag (l->label, frag_now);
2618 val = (valueT) frag_now_fix ();
2619 /* mips16 text labels are stored as odd. */
2620 if (mips_opts.mips16)
2622 S_SET_VALUE (l->label, val);
2627 /* Mark instruction labels in mips16 mode. */
2629 mips16_mark_labels ();
2631 mips_no_prev_insn (insns);
2634 /* Build an instruction created by a macro expansion. This is passed
2635 a pointer to the count of instructions created so far, an
2636 expression, the name of the instruction to build, an operand format
2637 string, and corresponding arguments. */
2641 macro_build (char *place,
2649 macro_build (place, counter, ep, name, fmt, va_alist)
2658 struct mips_cl_insn insn;
2659 bfd_reloc_code_real_type r[3];
2663 va_start (args, fmt);
2669 * If the macro is about to expand into a second instruction,
2670 * print a warning if needed. We need to pass ip as a parameter
2671 * to generate a better warning message here...
2673 if (mips_opts.warn_about_macros && place == NULL && *counter == 1)
2674 as_warn (_("Macro instruction expanded into multiple instructions"));
2677 * If the macro is about to expand into a second instruction,
2678 * and it is in a delay slot, print a warning.
2682 && mips_opts.noreorder
2683 && (prev_prev_insn.insn_mo->pinfo
2684 & (INSN_UNCOND_BRANCH_DELAY | INSN_COND_BRANCH_DELAY
2685 | INSN_COND_BRANCH_LIKELY)) != 0)
2686 as_warn (_("Macro instruction expanded into multiple instructions in a branch delay slot"));
2689 ++*counter; /* bump instruction counter */
2691 if (mips_opts.mips16)
2693 mips16_macro_build (place, counter, ep, name, fmt, args);
2698 r[0] = BFD_RELOC_UNUSED;
2699 r[1] = BFD_RELOC_UNUSED;
2700 r[2] = BFD_RELOC_UNUSED;
2701 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
2702 assert (insn.insn_mo);
2703 assert (strcmp (name, insn.insn_mo->name) == 0);
2705 /* Search until we get a match for NAME. */
2708 /* It is assumed here that macros will never generate
2709 MDMX or MIPS-3D instructions. */
2710 if (strcmp (fmt, insn.insn_mo->args) == 0
2711 && insn.insn_mo->pinfo != INSN_MACRO
2712 && OPCODE_IS_MEMBER (insn.insn_mo,
2714 | (mips_opts.mips16 ? INSN_MIPS16 : 0)),
2716 && (mips_arch != CPU_R4650 || (insn.insn_mo->pinfo & FP_D) == 0))
2720 assert (insn.insn_mo->name);
2721 assert (strcmp (name, insn.insn_mo->name) == 0);
2724 insn.insn_opcode = insn.insn_mo->match;
2740 insn.insn_opcode |= va_arg (args, int) << OP_SH_RT;
2744 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE;
2749 insn.insn_opcode |= va_arg (args, int) << OP_SH_FT;
2754 insn.insn_opcode |= va_arg (args, int) << OP_SH_RD;
2759 int tmp = va_arg (args, int);
2761 insn.insn_opcode |= tmp << OP_SH_RT;
2762 insn.insn_opcode |= tmp << OP_SH_RD;
2768 insn.insn_opcode |= va_arg (args, int) << OP_SH_FS;
2775 insn.insn_opcode |= va_arg (args, int) << OP_SH_SHAMT;
2779 insn.insn_opcode |= va_arg (args, int) << OP_SH_FD;
2783 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE20;
2787 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE19;
2791 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE2;
2798 insn.insn_opcode |= va_arg (args, int) << OP_SH_RS;
2804 *r = (bfd_reloc_code_real_type) va_arg (args, int);
2805 assert (*r == BFD_RELOC_GPREL16
2806 || *r == BFD_RELOC_MIPS_LITERAL
2807 || *r == BFD_RELOC_MIPS_HIGHER
2808 || *r == BFD_RELOC_HI16_S
2809 || *r == BFD_RELOC_LO16
2810 || *r == BFD_RELOC_MIPS_GOT16
2811 || *r == BFD_RELOC_MIPS_CALL16
2812 || *r == BFD_RELOC_MIPS_GOT_DISP
2813 || *r == BFD_RELOC_MIPS_GOT_PAGE
2814 || *r == BFD_RELOC_MIPS_GOT_OFST
2815 || *r == BFD_RELOC_MIPS_GOT_LO16
2816 || *r == BFD_RELOC_MIPS_CALL_LO16
2817 || (ep->X_op == O_subtract
2818 && *r == BFD_RELOC_PCREL_LO16));
2822 *r = (bfd_reloc_code_real_type) va_arg (args, int);
2824 && (ep->X_op == O_constant
2825 || (ep->X_op == O_symbol
2826 && (*r == BFD_RELOC_MIPS_HIGHEST
2827 || *r == BFD_RELOC_HI16_S
2828 || *r == BFD_RELOC_HI16
2829 || *r == BFD_RELOC_GPREL16
2830 || *r == BFD_RELOC_MIPS_GOT_HI16
2831 || *r == BFD_RELOC_MIPS_CALL_HI16))
2832 || (ep->X_op == O_subtract
2833 && *r == BFD_RELOC_PCREL_HI16_S)));
2837 assert (ep != NULL);
2839 * This allows macro() to pass an immediate expression for
2840 * creating short branches without creating a symbol.
2841 * Note that the expression still might come from the assembly
2842 * input, in which case the value is not checked for range nor
2843 * is a relocation entry generated (yuck).
2845 if (ep->X_op == O_constant)
2847 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
2851 if (mips_pic == EMBEDDED_PIC)
2852 *r = BFD_RELOC_16_PCREL_S2;
2854 *r = BFD_RELOC_16_PCREL;
2858 assert (ep != NULL);
2859 *r = BFD_RELOC_MIPS_JMP;
2863 insn.insn_opcode |= va_arg (args, unsigned long);
2872 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
2874 append_insn (place, &insn, ep, r, false);
2878 mips16_macro_build (place, counter, ep, name, fmt, args)
2880 int *counter ATTRIBUTE_UNUSED;
2886 struct mips_cl_insn insn;
2887 bfd_reloc_code_real_type r[3]
2888 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
2890 insn.insn_mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
2891 assert (insn.insn_mo);
2892 assert (strcmp (name, insn.insn_mo->name) == 0);
2894 while (strcmp (fmt, insn.insn_mo->args) != 0
2895 || insn.insn_mo->pinfo == INSN_MACRO)
2898 assert (insn.insn_mo->name);
2899 assert (strcmp (name, insn.insn_mo->name) == 0);
2902 insn.insn_opcode = insn.insn_mo->match;
2903 insn.use_extend = false;
2922 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RY;
2927 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RX;
2931 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RZ;
2935 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_MOVE32Z;
2945 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_REGR32;
2952 regno = va_arg (args, int);
2953 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
2954 insn.insn_opcode |= regno << MIPS16OP_SH_REG32R;
2975 assert (ep != NULL);
2977 if (ep->X_op != O_constant)
2978 *r = (int) BFD_RELOC_UNUSED + c;
2981 mips16_immed (NULL, 0, c, ep->X_add_number, false, false,
2982 false, &insn.insn_opcode, &insn.use_extend,
2985 *r = BFD_RELOC_UNUSED;
2991 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_IMM6;
2998 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
3000 append_insn (place, &insn, ep, r, false);
3004 * Generate a "jalr" instruction with a relocation hint to the called
3005 * function. This occurs in NewABI PIC code.
3008 macro_build_jalr (icnt, ep)
3014 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr", "d,s",
3017 fix_new_exp (frag_now, 0, 0, ep, false, BFD_RELOC_MIPS_JALR);
3021 * Generate a "lui" instruction.
3024 macro_build_lui (place, counter, ep, regnum)
3030 expressionS high_expr;
3031 struct mips_cl_insn insn;
3032 bfd_reloc_code_real_type r[3]
3033 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3034 const char *name = "lui";
3035 const char *fmt = "t,u";
3037 assert (! mips_opts.mips16);
3043 high_expr.X_op = O_constant;
3044 high_expr.X_add_number = ep->X_add_number;
3047 if (high_expr.X_op == O_constant)
3049 /* we can compute the instruction now without a relocation entry */
3050 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
3052 *r = BFD_RELOC_UNUSED;
3054 else if (! HAVE_NEWABI)
3056 assert (ep->X_op == O_symbol);
3057 /* _gp_disp is a special case, used from s_cpload. */
3058 assert (mips_pic == NO_PIC
3059 || strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0);
3060 *r = BFD_RELOC_HI16_S;
3064 * If the macro is about to expand into a second instruction,
3065 * print a warning if needed. We need to pass ip as a parameter
3066 * to generate a better warning message here...
3068 if (mips_opts.warn_about_macros && place == NULL && *counter == 1)
3069 as_warn (_("Macro instruction expanded into multiple instructions"));
3072 ++*counter; /* bump instruction counter */
3074 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
3075 assert (insn.insn_mo);
3076 assert (strcmp (name, insn.insn_mo->name) == 0);
3077 assert (strcmp (fmt, insn.insn_mo->args) == 0);
3079 insn.insn_opcode = insn.insn_mo->match | (regnum << OP_SH_RT);
3080 if (*r == BFD_RELOC_UNUSED)
3082 insn.insn_opcode |= high_expr.X_add_number;
3083 append_insn (place, &insn, NULL, r, false);
3086 append_insn (place, &insn, &high_expr, r, false);
3090 * Generates code to set the $at register to true (one)
3091 * if reg is less than the immediate expression.
3094 set_at (counter, reg, unsignedp)
3099 if (imm_expr.X_op == O_constant
3100 && imm_expr.X_add_number >= -0x8000
3101 && imm_expr.X_add_number < 0x8000)
3102 macro_build ((char *) NULL, counter, &imm_expr,
3103 unsignedp ? "sltiu" : "slti",
3104 "t,r,j", AT, reg, (int) BFD_RELOC_LO16);
3107 load_register (counter, AT, &imm_expr, HAVE_64BIT_GPRS);
3108 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3109 unsignedp ? "sltu" : "slt",
3110 "d,v,t", AT, reg, AT);
3114 /* Warn if an expression is not a constant. */
3117 check_absolute_expr (ip, ex)
3118 struct mips_cl_insn *ip;
3121 if (ex->X_op == O_big)
3122 as_bad (_("unsupported large constant"));
3123 else if (ex->X_op != O_constant)
3124 as_bad (_("Instruction %s requires absolute expression"), ip->insn_mo->name);
3127 /* Count the leading zeroes by performing a binary chop. This is a
3128 bulky bit of source, but performance is a LOT better for the
3129 majority of values than a simple loop to count the bits:
3130 for (lcnt = 0; (lcnt < 32); lcnt++)
3131 if ((v) & (1 << (31 - lcnt)))
3133 However it is not code size friendly, and the gain will drop a bit
3134 on certain cached systems.
3136 #define COUNT_TOP_ZEROES(v) \
3137 (((v) & ~0xffff) == 0 \
3138 ? ((v) & ~0xff) == 0 \
3139 ? ((v) & ~0xf) == 0 \
3140 ? ((v) & ~0x3) == 0 \
3141 ? ((v) & ~0x1) == 0 \
3146 : ((v) & ~0x7) == 0 \
3149 : ((v) & ~0x3f) == 0 \
3150 ? ((v) & ~0x1f) == 0 \
3153 : ((v) & ~0x7f) == 0 \
3156 : ((v) & ~0xfff) == 0 \
3157 ? ((v) & ~0x3ff) == 0 \
3158 ? ((v) & ~0x1ff) == 0 \
3161 : ((v) & ~0x7ff) == 0 \
3164 : ((v) & ~0x3fff) == 0 \
3165 ? ((v) & ~0x1fff) == 0 \
3168 : ((v) & ~0x7fff) == 0 \
3171 : ((v) & ~0xffffff) == 0 \
3172 ? ((v) & ~0xfffff) == 0 \
3173 ? ((v) & ~0x3ffff) == 0 \
3174 ? ((v) & ~0x1ffff) == 0 \
3177 : ((v) & ~0x7ffff) == 0 \
3180 : ((v) & ~0x3fffff) == 0 \
3181 ? ((v) & ~0x1fffff) == 0 \
3184 : ((v) & ~0x7fffff) == 0 \
3187 : ((v) & ~0xfffffff) == 0 \
3188 ? ((v) & ~0x3ffffff) == 0 \
3189 ? ((v) & ~0x1ffffff) == 0 \
3192 : ((v) & ~0x7ffffff) == 0 \
3195 : ((v) & ~0x3fffffff) == 0 \
3196 ? ((v) & ~0x1fffffff) == 0 \
3199 : ((v) & ~0x7fffffff) == 0 \
3203 /* Is the given value a sign-extended 32-bit value? */
3204 #define IS_SEXT_32BIT_NUM(x) \
3205 (((x) &~ (offsetT) 0x7fffffff) == 0 \
3206 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
3209 * This routine generates the least number of instructions neccessary to load
3210 * an absolute expression value into a register.
3213 load_register (counter, reg, ep, dbl)
3220 expressionS hi32, lo32;
3222 if (ep->X_op != O_big)
3224 assert (ep->X_op == O_constant);
3225 if (ep->X_add_number < 0x8000
3226 && (ep->X_add_number >= 0
3227 || (ep->X_add_number >= -0x8000
3230 || sizeof (ep->X_add_number) > 4))))
3232 /* We can handle 16 bit signed values with an addiu to
3233 $zero. No need to ever use daddiu here, since $zero and
3234 the result are always correct in 32 bit mode. */
3235 macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
3236 (int) BFD_RELOC_LO16);
3239 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
3241 /* We can handle 16 bit unsigned values with an ori to
3243 macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, 0,
3244 (int) BFD_RELOC_LO16);
3247 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)
3250 || sizeof (ep->X_add_number) > 4
3251 || (ep->X_add_number & 0x80000000) == 0))
3252 || ((HAVE_32BIT_GPRS || ! dbl)
3253 && (ep->X_add_number &~ (offsetT) 0xffffffff) == 0)
3256 && ((ep->X_add_number &~ (offsetT) 0xffffffff)
3257 == ~ (offsetT) 0xffffffff)))
3259 /* 32 bit values require an lui. */
3260 macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
3261 (int) BFD_RELOC_HI16);
3262 if ((ep->X_add_number & 0xffff) != 0)
3263 macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, reg,
3264 (int) BFD_RELOC_LO16);
3269 /* The value is larger than 32 bits. */
3271 if (HAVE_32BIT_GPRS)
3273 as_bad (_("Number (0x%lx) larger than 32 bits"),
3274 (unsigned long) ep->X_add_number);
3275 macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
3276 (int) BFD_RELOC_LO16);
3280 if (ep->X_op != O_big)
3283 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3284 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3285 hi32.X_add_number &= 0xffffffff;
3287 lo32.X_add_number &= 0xffffffff;
3291 assert (ep->X_add_number > 2);
3292 if (ep->X_add_number == 3)
3293 generic_bignum[3] = 0;
3294 else if (ep->X_add_number > 4)
3295 as_bad (_("Number larger than 64 bits"));
3296 lo32.X_op = O_constant;
3297 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
3298 hi32.X_op = O_constant;
3299 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
3302 if (hi32.X_add_number == 0)
3307 unsigned long hi, lo;
3309 if (hi32.X_add_number == (offsetT) 0xffffffff)
3311 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
3313 macro_build ((char *) NULL, counter, &lo32, "addiu", "t,r,j",
3314 reg, 0, (int) BFD_RELOC_LO16);
3317 if (lo32.X_add_number & 0x80000000)
3319 macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
3320 (int) BFD_RELOC_HI16);
3321 if (lo32.X_add_number & 0xffff)
3322 macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i",
3323 reg, reg, (int) BFD_RELOC_LO16);
3328 /* Check for 16bit shifted constant. We know that hi32 is
3329 non-zero, so start the mask on the first bit of the hi32
3334 unsigned long himask, lomask;
3338 himask = 0xffff >> (32 - shift);
3339 lomask = (0xffff << shift) & 0xffffffff;
3343 himask = 0xffff << (shift - 32);
3346 if ((hi32.X_add_number & ~(offsetT) himask) == 0
3347 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
3351 tmp.X_op = O_constant;
3353 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
3354 | (lo32.X_add_number >> shift));
3356 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
3357 macro_build ((char *) NULL, counter, &tmp,
3358 "ori", "t,r,i", reg, 0,
3359 (int) BFD_RELOC_LO16);
3360 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3361 (shift >= 32) ? "dsll32" : "dsll",
3363 (shift >= 32) ? shift - 32 : shift);
3368 while (shift <= (64 - 16));
3370 /* Find the bit number of the lowest one bit, and store the
3371 shifted value in hi/lo. */
3372 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
3373 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
3377 while ((lo & 1) == 0)
3382 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
3388 while ((hi & 1) == 0)
3397 /* Optimize if the shifted value is a (power of 2) - 1. */
3398 if ((hi == 0 && ((lo + 1) & lo) == 0)
3399 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
3401 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
3406 /* This instruction will set the register to be all
3408 tmp.X_op = O_constant;
3409 tmp.X_add_number = (offsetT) -1;
3410 macro_build ((char *) NULL, counter, &tmp, "addiu", "t,r,j",
3411 reg, 0, (int) BFD_RELOC_LO16);
3415 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3416 (bit >= 32) ? "dsll32" : "dsll",
3418 (bit >= 32) ? bit - 32 : bit);
3420 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3421 (shift >= 32) ? "dsrl32" : "dsrl",
3423 (shift >= 32) ? shift - 32 : shift);
3428 /* Sign extend hi32 before calling load_register, because we can
3429 generally get better code when we load a sign extended value. */
3430 if ((hi32.X_add_number & 0x80000000) != 0)
3431 hi32.X_add_number |= ~(offsetT) 0xffffffff;
3432 load_register (counter, reg, &hi32, 0);
3435 if ((lo32.X_add_number & 0xffff0000) == 0)
3439 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3440 "dsll32", "d,w,<", reg, freg, 0);
3448 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
3450 macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
3451 (int) BFD_RELOC_HI16);
3452 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3453 "dsrl32", "d,w,<", reg, reg, 0);
3459 macro_build ((char *) NULL, counter, (expressionS *) NULL, "dsll",
3460 "d,w,<", reg, freg, 16);
3464 mid16.X_add_number >>= 16;
3465 macro_build ((char *) NULL, counter, &mid16, "ori", "t,r,i", reg,
3466 freg, (int) BFD_RELOC_LO16);
3467 macro_build ((char *) NULL, counter, (expressionS *) NULL, "dsll",
3468 "d,w,<", reg, reg, 16);
3471 if ((lo32.X_add_number & 0xffff) != 0)
3472 macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i", reg, freg,
3473 (int) BFD_RELOC_LO16);
3476 /* Load an address into a register. */
3479 load_address (counter, reg, ep, used_at)
3487 if (ep->X_op != O_constant
3488 && ep->X_op != O_symbol)
3490 as_bad (_("expression too complex"));
3491 ep->X_op = O_constant;
3494 if (ep->X_op == O_constant)
3496 load_register (counter, reg, ep, HAVE_64BIT_ADDRESSES);
3500 if (mips_pic == NO_PIC)
3502 /* If this is a reference to a GP relative symbol, we want
3503 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
3505 lui $reg,<sym> (BFD_RELOC_HI16_S)
3506 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3507 If we have an addend, we always use the latter form.
3509 With 64bit address space and a usable $at we want
3510 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3511 lui $at,<sym> (BFD_RELOC_HI16_S)
3512 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3513 daddiu $at,<sym> (BFD_RELOC_LO16)
3517 If $at is already in use, we use an path which is suboptimal
3518 on superscalar processors.
3519 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3520 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3522 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
3524 daddiu $reg,<sym> (BFD_RELOC_LO16)
3526 if (HAVE_64BIT_ADDRESSES)
3528 /* We don't do GP optimization for now because RELAX_ENCODE can't
3529 hold the data for such large chunks. */
3531 if (*used_at == 0 && ! mips_opts.noat)
3533 macro_build (p, counter, ep, "lui", "t,u",
3534 reg, (int) BFD_RELOC_MIPS_HIGHEST);
3535 macro_build (p, counter, ep, "lui", "t,u",
3536 AT, (int) BFD_RELOC_HI16_S);
3537 macro_build (p, counter, ep, "daddiu", "t,r,j",
3538 reg, reg, (int) BFD_RELOC_MIPS_HIGHER);
3539 macro_build (p, counter, ep, "daddiu", "t,r,j",
3540 AT, AT, (int) BFD_RELOC_LO16);
3541 macro_build (p, counter, (expressionS *) NULL, "dsll32",
3542 "d,w,<", reg, reg, 0);
3543 macro_build (p, counter, (expressionS *) NULL, "daddu",
3544 "d,v,t", reg, reg, AT);
3549 macro_build (p, counter, ep, "lui", "t,u",
3550 reg, (int) BFD_RELOC_MIPS_HIGHEST);
3551 macro_build (p, counter, ep, "daddiu", "t,r,j",
3552 reg, reg, (int) BFD_RELOC_MIPS_HIGHER);
3553 macro_build (p, counter, (expressionS *) NULL, "dsll",
3554 "d,w,<", reg, reg, 16);
3555 macro_build (p, counter, ep, "daddiu", "t,r,j",
3556 reg, reg, (int) BFD_RELOC_HI16_S);
3557 macro_build (p, counter, (expressionS *) NULL, "dsll",
3558 "d,w,<", reg, reg, 16);
3559 macro_build (p, counter, ep, "daddiu", "t,r,j",
3560 reg, reg, (int) BFD_RELOC_LO16);
3565 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
3566 && ! nopic_need_relax (ep->X_add_symbol, 1))
3569 macro_build ((char *) NULL, counter, ep,
3570 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
3571 reg, mips_gp_register, (int) BFD_RELOC_GPREL16);
3572 p = frag_var (rs_machine_dependent, 8, 0,
3573 RELAX_ENCODE (4, 8, 0, 4, 0,
3574 mips_opts.warn_about_macros),
3575 ep->X_add_symbol, 0, NULL);
3577 macro_build_lui (p, counter, ep, reg);
3580 macro_build (p, counter, ep,
3581 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3582 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3585 else if (mips_pic == SVR4_PIC && ! mips_big_got)
3589 /* If this is a reference to an external symbol, we want
3590 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3592 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3594 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3595 If there is a constant, it must be added in after. */
3596 ex.X_add_number = ep->X_add_number;
3597 ep->X_add_number = 0;
3599 macro_build ((char *) NULL, counter, ep,
3600 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)",
3601 reg, (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
3602 macro_build ((char *) NULL, counter, (expressionS *) NULL, "nop", "");
3603 p = frag_var (rs_machine_dependent, 4, 0,
3604 RELAX_ENCODE (0, 4, -8, 0, 0, mips_opts.warn_about_macros),
3605 ep->X_add_symbol, (offsetT) 0, (char *) NULL);
3606 macro_build (p, counter, ep,
3607 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3608 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3609 if (ex.X_add_number != 0)
3611 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3612 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3613 ex.X_op = O_constant;
3614 macro_build ((char *) NULL, counter, &ex,
3615 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3616 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3619 else if (mips_pic == SVR4_PIC)
3624 /* This is the large GOT case. If this is a reference to an
3625 external symbol, we want
3626 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
3628 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
3629 Otherwise, for a reference to a local symbol, we want
3630 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3632 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3633 If we have NewABI, we want
3634 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
3635 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
3636 If there is a constant, it must be added in after. */
3637 ex.X_add_number = ep->X_add_number;
3638 ep->X_add_number = 0;
3641 macro_build ((char *) NULL, counter, ep,
3642 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
3643 (int) BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
3644 macro_build (p, counter, ep,
3645 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
3646 reg, reg, (int) BFD_RELOC_MIPS_GOT_OFST);
3650 if (reg_needs_delay (mips_gp_register))
3655 macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
3656 (int) BFD_RELOC_MIPS_GOT_HI16);
3657 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3658 HAVE_32BIT_ADDRESSES ? "addu" : "daddu", "d,v,t", reg,
3659 reg, mips_gp_register);
3660 macro_build ((char *) NULL, counter, ep,
3661 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
3662 "t,o(b)", reg, (int) BFD_RELOC_MIPS_GOT_LO16, reg);
3663 p = frag_var (rs_machine_dependent, 12 + off, 0,
3664 RELAX_ENCODE (12, 12 + off, off, 8 + off, 0,
3665 mips_opts.warn_about_macros),
3666 ep->X_add_symbol, 0, NULL);
3669 /* We need a nop before loading from $gp. This special
3670 check is required because the lui which starts the main
3671 instruction stream does not refer to $gp, and so will not
3672 insert the nop which may be required. */
3673 macro_build (p, counter, (expressionS *) NULL, "nop", "");
3676 macro_build (p, counter, ep,
3677 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
3678 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
3680 macro_build (p, counter, (expressionS *) NULL, "nop", "");
3682 macro_build (p, counter, ep,
3683 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3684 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3687 if (ex.X_add_number != 0)
3689 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3690 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3691 ex.X_op = O_constant;
3692 macro_build ((char *) NULL, counter, &ex,
3693 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3694 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3697 else if (mips_pic == EMBEDDED_PIC)
3700 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
3702 macro_build ((char *) NULL, counter, ep,
3703 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3704 "t,r,j", reg, mips_gp_register, (int) BFD_RELOC_GPREL16);
3710 /* Move the contents of register SOURCE into register DEST. */
3713 move_register (counter, dest, source)
3718 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3719 HAVE_32BIT_GPRS ? "addu" : "daddu",
3720 "d,v,t", dest, source, 0);
3725 * This routine implements the seemingly endless macro or synthesized
3726 * instructions and addressing modes in the mips assembly language. Many
3727 * of these macros are simple and are similar to each other. These could
3728 * probably be handled by some kind of table or grammer aproach instead of
3729 * this verbose method. Others are not simple macros but are more like
3730 * optimizing code generation.
3731 * One interesting optimization is when several store macros appear
3732 * consecutivly that would load AT with the upper half of the same address.
3733 * The ensuing load upper instructions are ommited. This implies some kind
3734 * of global optimization. We currently only optimize within a single macro.
3735 * For many of the load and store macros if the address is specified as a
3736 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
3737 * first load register 'at' with zero and use it as the base register. The
3738 * mips assembler simply uses register $zero. Just one tiny optimization
3743 struct mips_cl_insn *ip;
3745 register int treg, sreg, dreg, breg;
3761 bfd_reloc_code_real_type r;
3762 int hold_mips_optimize;
3764 assert (! mips_opts.mips16);
3766 treg = (ip->insn_opcode >> 16) & 0x1f;
3767 dreg = (ip->insn_opcode >> 11) & 0x1f;
3768 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
3769 mask = ip->insn_mo->mask;
3771 expr1.X_op = O_constant;
3772 expr1.X_op_symbol = NULL;
3773 expr1.X_add_symbol = NULL;
3774 expr1.X_add_number = 1;
3786 mips_emit_delays (true);
3787 ++mips_opts.noreorder;
3788 mips_any_noreorder = 1;
3790 expr1.X_add_number = 8;
3791 macro_build ((char *) NULL, &icnt, &expr1, "bgez", "s,p", sreg);
3793 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
3796 move_register (&icnt, dreg, sreg);
3797 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
3798 dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
3800 --mips_opts.noreorder;
3821 if (imm_expr.X_op == O_constant
3822 && imm_expr.X_add_number >= -0x8000
3823 && imm_expr.X_add_number < 0x8000)
3825 macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,j", treg, sreg,
3826 (int) BFD_RELOC_LO16);
3829 load_register (&icnt, AT, &imm_expr, dbl);
3830 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d,v,t",
3850 if (imm_expr.X_op == O_constant
3851 && imm_expr.X_add_number >= 0
3852 && imm_expr.X_add_number < 0x10000)
3854 if (mask != M_NOR_I)
3855 macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,i", treg,
3856 sreg, (int) BFD_RELOC_LO16);
3859 macro_build ((char *) NULL, &icnt, &imm_expr, "ori", "t,r,i",
3860 treg, sreg, (int) BFD_RELOC_LO16);
3861 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nor",
3862 "d,v,t", treg, treg, 0);
3867 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
3868 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d,v,t",
3886 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
3888 macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg,
3892 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
3893 macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg, AT);
3901 macro_build ((char *) NULL, &icnt, &offset_expr,
3902 likely ? "bgezl" : "bgez", "s,p", sreg);
3907 macro_build ((char *) NULL, &icnt, &offset_expr,
3908 likely ? "blezl" : "blez", "s,p", treg);
3911 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
3913 macro_build ((char *) NULL, &icnt, &offset_expr,
3914 likely ? "beql" : "beq", "s,t,p", AT, 0);
3920 /* check for > max integer */
3921 maxnum = 0x7fffffff;
3922 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
3929 if (imm_expr.X_op == O_constant
3930 && imm_expr.X_add_number >= maxnum
3931 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
3934 /* result is always false */
3938 as_warn (_("Branch %s is always false (nop)"),
3940 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop",
3946 as_warn (_("Branch likely %s is always false"),
3948 macro_build ((char *) NULL, &icnt, &offset_expr, "bnel",
3953 if (imm_expr.X_op != O_constant)
3954 as_bad (_("Unsupported large constant"));
3955 ++imm_expr.X_add_number;
3959 if (mask == M_BGEL_I)
3961 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
3963 macro_build ((char *) NULL, &icnt, &offset_expr,
3964 likely ? "bgezl" : "bgez", "s,p", sreg);
3967 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
3969 macro_build ((char *) NULL, &icnt, &offset_expr,
3970 likely ? "bgtzl" : "bgtz", "s,p", sreg);
3973 maxnum = 0x7fffffff;
3974 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
3981 maxnum = - maxnum - 1;
3982 if (imm_expr.X_op == O_constant
3983 && imm_expr.X_add_number <= maxnum
3984 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
3987 /* result is always true */
3988 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
3989 macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
3992 set_at (&icnt, sreg, 0);
3993 macro_build ((char *) NULL, &icnt, &offset_expr,
3994 likely ? "beql" : "beq", "s,t,p", AT, 0);
4004 macro_build ((char *) NULL, &icnt, &offset_expr,
4005 likely ? "beql" : "beq", "s,t,p", 0, treg);
4008 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4009 "d,v,t", AT, sreg, treg);
4010 macro_build ((char *) NULL, &icnt, &offset_expr,
4011 likely ? "beql" : "beq", "s,t,p", AT, 0);
4019 && imm_expr.X_op == O_constant
4020 && imm_expr.X_add_number == (offsetT) 0xffffffff))
4022 if (imm_expr.X_op != O_constant)
4023 as_bad (_("Unsupported large constant"));
4024 ++imm_expr.X_add_number;
4028 if (mask == M_BGEUL_I)
4030 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4032 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4034 macro_build ((char *) NULL, &icnt, &offset_expr,
4035 likely ? "bnel" : "bne", "s,t,p", sreg, 0);
4038 set_at (&icnt, sreg, 1);
4039 macro_build ((char *) NULL, &icnt, &offset_expr,
4040 likely ? "beql" : "beq", "s,t,p", AT, 0);
4048 macro_build ((char *) NULL, &icnt, &offset_expr,
4049 likely ? "bgtzl" : "bgtz", "s,p", sreg);
4054 macro_build ((char *) NULL, &icnt, &offset_expr,
4055 likely ? "bltzl" : "bltz", "s,p", treg);
4058 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4060 macro_build ((char *) NULL, &icnt, &offset_expr,
4061 likely ? "bnel" : "bne", "s,t,p", AT, 0);
4069 macro_build ((char *) NULL, &icnt, &offset_expr,
4070 likely ? "bnel" : "bne", "s,t,p", sreg, 0);
4075 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4076 "d,v,t", AT, treg, sreg);
4077 macro_build ((char *) NULL, &icnt, &offset_expr,
4078 likely ? "bnel" : "bne", "s,t,p", AT, 0);
4086 macro_build ((char *) NULL, &icnt, &offset_expr,
4087 likely ? "blezl" : "blez", "s,p", sreg);
4092 macro_build ((char *) NULL, &icnt, &offset_expr,
4093 likely ? "bgezl" : "bgez", "s,p", treg);
4096 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4098 macro_build ((char *) NULL, &icnt, &offset_expr,
4099 likely ? "beql" : "beq", "s,t,p", AT, 0);
4105 maxnum = 0x7fffffff;
4106 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4113 if (imm_expr.X_op == O_constant
4114 && imm_expr.X_add_number >= maxnum
4115 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4117 if (imm_expr.X_op != O_constant)
4118 as_bad (_("Unsupported large constant"));
4119 ++imm_expr.X_add_number;
4123 if (mask == M_BLTL_I)
4125 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4127 macro_build ((char *) NULL, &icnt, &offset_expr,
4128 likely ? "bltzl" : "bltz", "s,p", sreg);
4131 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4133 macro_build ((char *) NULL, &icnt, &offset_expr,
4134 likely ? "blezl" : "blez", "s,p", sreg);
4137 set_at (&icnt, sreg, 0);
4138 macro_build ((char *) NULL, &icnt, &offset_expr,
4139 likely ? "bnel" : "bne", "s,t,p", AT, 0);
4147 macro_build ((char *) NULL, &icnt, &offset_expr,
4148 likely ? "beql" : "beq", "s,t,p", sreg, 0);
4153 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4154 "d,v,t", AT, treg, sreg);
4155 macro_build ((char *) NULL, &icnt, &offset_expr,
4156 likely ? "beql" : "beq", "s,t,p", AT, 0);
4164 && imm_expr.X_op == O_constant
4165 && imm_expr.X_add_number == (offsetT) 0xffffffff))
4167 if (imm_expr.X_op != O_constant)
4168 as_bad (_("Unsupported large constant"));
4169 ++imm_expr.X_add_number;
4173 if (mask == M_BLTUL_I)
4175 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4177 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4179 macro_build ((char *) NULL, &icnt, &offset_expr,
4180 likely ? "beql" : "beq",
4184 set_at (&icnt, sreg, 1);
4185 macro_build ((char *) NULL, &icnt, &offset_expr,
4186 likely ? "bnel" : "bne", "s,t,p", AT, 0);
4194 macro_build ((char *) NULL, &icnt, &offset_expr,
4195 likely ? "bltzl" : "bltz", "s,p", sreg);
4200 macro_build ((char *) NULL, &icnt, &offset_expr,
4201 likely ? "bgtzl" : "bgtz", "s,p", treg);
4204 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4206 macro_build ((char *) NULL, &icnt, &offset_expr,
4207 likely ? "bnel" : "bne", "s,t,p", AT, 0);
4217 macro_build ((char *) NULL, &icnt, &offset_expr,
4218 likely ? "bnel" : "bne", "s,t,p", 0, treg);
4221 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4224 macro_build ((char *) NULL, &icnt, &offset_expr,
4225 likely ? "bnel" : "bne", "s,t,p", AT, 0);
4240 as_warn (_("Divide by zero."));
4242 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
4245 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4250 mips_emit_delays (true);
4251 ++mips_opts.noreorder;
4252 mips_any_noreorder = 1;
4255 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
4256 "s,t,q", treg, 0, 7);
4257 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4258 dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
4262 expr1.X_add_number = 8;
4263 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
4264 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4265 dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
4266 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4269 expr1.X_add_number = -1;
4270 macro_build ((char *) NULL, &icnt, &expr1,
4271 dbl ? "daddiu" : "addiu",
4272 "t,r,j", AT, 0, (int) BFD_RELOC_LO16);
4273 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
4274 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, AT);
4277 expr1.X_add_number = 1;
4278 macro_build ((char *) NULL, &icnt, &expr1, "daddiu", "t,r,j", AT, 0,
4279 (int) BFD_RELOC_LO16);
4280 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsll32",
4281 "d,w,<", AT, AT, 31);
4285 expr1.X_add_number = 0x80000000;
4286 macro_build ((char *) NULL, &icnt, &expr1, "lui", "t,u", AT,
4287 (int) BFD_RELOC_HI16);
4291 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
4292 "s,t,q", sreg, AT, 6);
4293 /* We want to close the noreorder block as soon as possible, so
4294 that later insns are available for delay slot filling. */
4295 --mips_opts.noreorder;
4299 expr1.X_add_number = 8;
4300 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", sreg, AT);
4301 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
4304 /* We want to close the noreorder block as soon as possible, so
4305 that later insns are available for delay slot filling. */
4306 --mips_opts.noreorder;
4308 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4311 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d", dreg);
4350 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4352 as_warn (_("Divide by zero."));
4354 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
4357 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4361 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4363 if (strcmp (s2, "mflo") == 0)
4364 move_register (&icnt, dreg, sreg);
4366 move_register (&icnt, dreg, 0);
4369 if (imm_expr.X_op == O_constant
4370 && imm_expr.X_add_number == -1
4371 && s[strlen (s) - 1] != 'u')
4373 if (strcmp (s2, "mflo") == 0)
4375 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4376 dbl ? "dneg" : "neg", "d,w", dreg, sreg);
4379 move_register (&icnt, dreg, 0);
4383 load_register (&icnt, AT, &imm_expr, dbl);
4384 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
4386 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d", dreg);
4405 mips_emit_delays (true);
4406 ++mips_opts.noreorder;
4407 mips_any_noreorder = 1;
4410 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
4411 "s,t,q", treg, 0, 7);
4412 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
4414 /* We want to close the noreorder block as soon as possible, so
4415 that later insns are available for delay slot filling. */
4416 --mips_opts.noreorder;
4420 expr1.X_add_number = 8;
4421 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
4422 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
4425 /* We want to close the noreorder block as soon as possible, so
4426 that later insns are available for delay slot filling. */
4427 --mips_opts.noreorder;
4428 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4431 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d", dreg);
4437 /* Load the address of a symbol into a register. If breg is not
4438 zero, we then add a base register to it. */
4440 if (dbl && HAVE_32BIT_GPRS)
4441 as_warn (_("dla used to load 32-bit register"));
4443 if (! dbl && HAVE_64BIT_OBJECTS)
4444 as_warn (_("la used to load 64-bit address"));
4457 /* When generating embedded PIC code, we permit expressions of
4460 la $treg,foo-bar($breg)
4461 where bar is an address in the current section. These are used
4462 when getting the addresses of functions. We don't permit
4463 X_add_number to be non-zero, because if the symbol is
4464 external the relaxing code needs to know that any addend is
4465 purely the offset to X_op_symbol. */
4466 if (mips_pic == EMBEDDED_PIC
4467 && offset_expr.X_op == O_subtract
4468 && (symbol_constant_p (offset_expr.X_op_symbol)
4469 ? S_GET_SEGMENT (offset_expr.X_op_symbol) == now_seg
4470 : (symbol_equated_p (offset_expr.X_op_symbol)
4472 (symbol_get_value_expression (offset_expr.X_op_symbol)
4475 && (offset_expr.X_add_number == 0
4476 || OUTPUT_FLAVOR == bfd_target_elf_flavour))
4482 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4483 tempreg, (int) BFD_RELOC_PCREL_HI16_S);
4487 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4488 tempreg, (int) BFD_RELOC_PCREL_HI16_S);
4489 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4490 (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu",
4491 "d,v,t", tempreg, tempreg, breg);
4493 macro_build ((char *) NULL, &icnt, &offset_expr,
4494 (dbl || HAVE_64BIT_ADDRESSES) ? "daddiu" : "addiu",
4495 "t,r,j", treg, tempreg, (int) BFD_RELOC_PCREL_LO16);
4501 if (offset_expr.X_op != O_symbol
4502 && offset_expr.X_op != O_constant)
4504 as_bad (_("expression too complex"));
4505 offset_expr.X_op = O_constant;
4508 if (offset_expr.X_op == O_constant)
4509 load_register (&icnt, tempreg, &offset_expr,
4510 ((mips_pic == EMBEDDED_PIC || mips_pic == NO_PIC)
4511 ? (dbl || HAVE_64BIT_ADDRESSES)
4512 : HAVE_64BIT_ADDRESSES));
4513 else if (mips_pic == NO_PIC)
4515 /* If this is a reference to a GP relative symbol, we want
4516 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
4518 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4519 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4520 If we have a constant, we need two instructions anyhow,
4521 so we may as well always use the latter form.
4523 With 64bit address space and a usable $at we want
4524 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4525 lui $at,<sym> (BFD_RELOC_HI16_S)
4526 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4527 daddiu $at,<sym> (BFD_RELOC_LO16)
4529 daddu $tempreg,$tempreg,$at
4531 If $at is already in use, we use an path which is suboptimal
4532 on superscalar processors.
4533 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4534 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4536 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
4538 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
4541 if (HAVE_64BIT_ADDRESSES)
4543 /* We don't do GP optimization for now because RELAX_ENCODE can't
4544 hold the data for such large chunks. */
4546 if (used_at == 0 && ! mips_opts.noat)
4548 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
4549 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
4550 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
4551 AT, (int) BFD_RELOC_HI16_S);
4552 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4553 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
4554 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4555 AT, AT, (int) BFD_RELOC_LO16);
4556 macro_build (p, &icnt, (expressionS *) NULL, "dsll32",
4557 "d,w,<", tempreg, tempreg, 0);
4558 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
4559 "d,v,t", tempreg, tempreg, AT);
4564 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
4565 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
4566 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4567 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
4568 macro_build (p, &icnt, (expressionS *) NULL, "dsll", "d,w,<",
4569 tempreg, tempreg, 16);
4570 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4571 tempreg, tempreg, (int) BFD_RELOC_HI16_S);
4572 macro_build (p, &icnt, (expressionS *) NULL, "dsll", "d,w,<",
4573 tempreg, tempreg, 16);
4574 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4575 tempreg, tempreg, (int) BFD_RELOC_LO16);
4580 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
4581 && ! nopic_need_relax (offset_expr.X_add_symbol, 1))
4584 macro_build ((char *) NULL, &icnt, &offset_expr, "addiu",
4585 "t,r,j", tempreg, mips_gp_register,
4586 (int) BFD_RELOC_GPREL16);
4587 p = frag_var (rs_machine_dependent, 8, 0,
4588 RELAX_ENCODE (4, 8, 0, 4, 0,
4589 mips_opts.warn_about_macros),
4590 offset_expr.X_add_symbol, 0, NULL);
4592 macro_build_lui (p, &icnt, &offset_expr, tempreg);
4595 macro_build (p, &icnt, &offset_expr, "addiu",
4596 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4599 else if (mips_pic == SVR4_PIC && ! mips_big_got)
4601 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
4603 /* If this is a reference to an external symbol, and there
4604 is no constant, we want
4605 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4606 or if tempreg is PIC_CALL_REG
4607 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
4608 For a local symbol, we want
4609 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4611 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4613 If we have a small constant, and this is a reference to
4614 an external symbol, we want
4615 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4617 addiu $tempreg,$tempreg,<constant>
4618 For a local symbol, we want the same instruction
4619 sequence, but we output a BFD_RELOC_LO16 reloc on the
4622 If we have a large constant, and this is a reference to
4623 an external symbol, we want
4624 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4625 lui $at,<hiconstant>
4626 addiu $at,$at,<loconstant>
4627 addu $tempreg,$tempreg,$at
4628 For a local symbol, we want the same instruction
4629 sequence, but we output a BFD_RELOC_LO16 reloc on the
4630 addiu instruction. */
4631 expr1.X_add_number = offset_expr.X_add_number;
4632 offset_expr.X_add_number = 0;
4634 if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
4635 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
4636 macro_build ((char *) NULL, &icnt, &offset_expr,
4637 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
4638 "t,o(b)", tempreg, lw_reloc_type, mips_gp_register);
4639 if (expr1.X_add_number == 0)
4648 /* We're going to put in an addu instruction using
4649 tempreg, so we may as well insert the nop right
4651 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4655 p = frag_var (rs_machine_dependent, 8 - off, 0,
4656 RELAX_ENCODE (0, 8 - off, -4 - off, 4 - off, 0,
4658 ? mips_opts.warn_about_macros
4660 offset_expr.X_add_symbol, 0, NULL);
4663 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4666 macro_build (p, &icnt, &expr1,
4667 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
4668 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4669 /* FIXME: If breg == 0, and the next instruction uses
4670 $tempreg, then if this variant case is used an extra
4671 nop will be generated. */
4673 else if (expr1.X_add_number >= -0x8000
4674 && expr1.X_add_number < 0x8000)
4676 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4678 macro_build ((char *) NULL, &icnt, &expr1,
4679 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
4680 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4681 frag_var (rs_machine_dependent, 0, 0,
4682 RELAX_ENCODE (0, 0, -12, -4, 0, 0),
4683 offset_expr.X_add_symbol, 0, NULL);
4689 /* If we are going to add in a base register, and the
4690 target register and the base register are the same,
4691 then we are using AT as a temporary register. Since
4692 we want to load the constant into AT, we add our
4693 current AT (from the global offset table) and the
4694 register into the register now, and pretend we were
4695 not using a base register. */
4700 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4702 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4703 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
4704 "d,v,t", treg, AT, breg);
4710 /* Set mips_optimize around the lui instruction to avoid
4711 inserting an unnecessary nop after the lw. */
4712 hold_mips_optimize = mips_optimize;
4714 macro_build_lui (NULL, &icnt, &expr1, AT);
4715 mips_optimize = hold_mips_optimize;
4717 macro_build ((char *) NULL, &icnt, &expr1,
4718 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
4719 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
4720 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4721 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
4722 "d,v,t", tempreg, tempreg, AT);
4723 frag_var (rs_machine_dependent, 0, 0,
4724 RELAX_ENCODE (0, 0, -16 + off1, -8, 0, 0),
4725 offset_expr.X_add_symbol, 0, NULL);
4729 else if (mips_pic == SVR4_PIC)
4733 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
4734 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
4736 /* This is the large GOT case. If this is a reference to an
4737 external symbol, and there is no constant, we want
4738 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4739 addu $tempreg,$tempreg,$gp
4740 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
4741 or if tempreg is PIC_CALL_REG
4742 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
4743 addu $tempreg,$tempreg,$gp
4744 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
4745 For a local symbol, we want
4746 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4748 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4750 If we have a small constant, and this is a reference to
4751 an external symbol, we want
4752 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4753 addu $tempreg,$tempreg,$gp
4754 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
4756 addiu $tempreg,$tempreg,<constant>
4757 For a local symbol, we want
4758 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4760 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
4762 If we have a large constant, and this is a reference to
4763 an external symbol, we want
4764 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4765 addu $tempreg,$tempreg,$gp
4766 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
4767 lui $at,<hiconstant>
4768 addiu $at,$at,<loconstant>
4769 addu $tempreg,$tempreg,$at
4770 For a local symbol, we want
4771 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4772 lui $at,<hiconstant>
4773 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
4774 addu $tempreg,$tempreg,$at
4776 For NewABI, we want for data addresses
4777 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
4778 If tempreg is PIC_CALL_REG pointing to a external symbol, we want
4779 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
4783 int reloc_type = (tempreg == PIC_CALL_REG
4784 ? BFD_RELOC_MIPS_CALL16
4785 : BFD_RELOC_MIPS_GOT_DISP);
4787 macro_build ((char *) NULL, &icnt, &offset_expr,
4788 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
4789 "t,o(b)", tempreg, reloc_type, mips_gp_register);
4792 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4793 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
4794 "d,v,t", treg, tempreg, breg);
4801 expr1.X_add_number = offset_expr.X_add_number;
4802 offset_expr.X_add_number = 0;
4804 if (reg_needs_delay (mips_gp_register))
4808 if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
4810 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
4811 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
4813 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4814 tempreg, lui_reloc_type);
4815 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4816 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
4817 "d,v,t", tempreg, tempreg, mips_gp_register);
4818 macro_build ((char *) NULL, &icnt, &offset_expr,
4819 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
4820 "t,o(b)", tempreg, lw_reloc_type, tempreg);
4821 if (expr1.X_add_number == 0)
4829 /* We're going to put in an addu instruction using
4830 tempreg, so we may as well insert the nop right
4832 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4837 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
4838 RELAX_ENCODE (12 + off, 12 + gpdel, gpdel,
4841 ? mips_opts.warn_about_macros
4843 offset_expr.X_add_symbol, 0, NULL);
4845 else if (expr1.X_add_number >= -0x8000
4846 && expr1.X_add_number < 0x8000)
4848 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4850 macro_build ((char *) NULL, &icnt, &expr1,
4851 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
4852 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4854 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
4855 RELAX_ENCODE (20, 12 + gpdel, gpdel, 8 + gpdel, 0,
4857 ? mips_opts.warn_about_macros
4859 offset_expr.X_add_symbol, 0, NULL);
4865 /* If we are going to add in a base register, and the
4866 target register and the base register are the same,
4867 then we are using AT as a temporary register. Since
4868 we want to load the constant into AT, we add our
4869 current AT (from the global offset table) and the
4870 register into the register now, and pretend we were
4871 not using a base register. */
4879 assert (tempreg == AT);
4880 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4882 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4883 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
4884 "d,v,t", treg, AT, breg);
4889 /* Set mips_optimize around the lui instruction to avoid
4890 inserting an unnecessary nop after the lw. */
4891 hold_mips_optimize = mips_optimize;
4893 macro_build_lui (NULL, &icnt, &expr1, AT);
4894 mips_optimize = hold_mips_optimize;
4896 macro_build ((char *) NULL, &icnt, &expr1,
4897 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
4898 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
4899 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4900 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
4901 "d,v,t", dreg, dreg, AT);
4903 p = frag_var (rs_machine_dependent, 16 + gpdel + adj, 0,
4904 RELAX_ENCODE (24 + adj, 16 + gpdel + adj, gpdel,
4907 ? mips_opts.warn_about_macros
4909 offset_expr.X_add_symbol, 0, NULL);
4916 /* This is needed because this instruction uses $gp, but
4917 the first instruction on the main stream does not. */
4918 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4921 macro_build (p, &icnt, &offset_expr,
4922 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
4923 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT16,
4926 if (expr1.X_add_number >= -0x8000
4927 && expr1.X_add_number < 0x8000)
4929 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4931 macro_build (p, &icnt, &expr1,
4932 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
4933 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4934 /* FIXME: If add_number is 0, and there was no base
4935 register, the external symbol case ended with a load,
4936 so if the symbol turns out to not be external, and
4937 the next instruction uses tempreg, an unnecessary nop
4938 will be inserted. */
4944 /* We must add in the base register now, as in the
4945 external symbol case. */
4946 assert (tempreg == AT);
4947 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4949 macro_build (p, &icnt, (expressionS *) NULL,
4950 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
4951 "d,v,t", treg, AT, breg);
4954 /* We set breg to 0 because we have arranged to add
4955 it in in both cases. */
4959 macro_build_lui (p, &icnt, &expr1, AT);
4961 macro_build (p, &icnt, &expr1,
4962 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
4963 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
4965 macro_build (p, &icnt, (expressionS *) NULL,
4966 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
4967 "d,v,t", tempreg, tempreg, AT);
4971 else if (mips_pic == EMBEDDED_PIC)
4974 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
4976 macro_build ((char *) NULL, &icnt, &offset_expr,
4977 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
4978 tempreg, mips_gp_register, (int) BFD_RELOC_GPREL16);
4987 if (mips_pic == EMBEDDED_PIC || mips_pic == NO_PIC)
4988 s = (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu";
4990 s = HAVE_64BIT_ADDRESSES ? "daddu" : "addu";
4992 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s,
4993 "d,v,t", treg, tempreg, breg);
5002 /* The j instruction may not be used in PIC code, since it
5003 requires an absolute address. We convert it to a b
5005 if (mips_pic == NO_PIC)
5006 macro_build ((char *) NULL, &icnt, &offset_expr, "j", "a");
5008 macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
5011 /* The jal instructions must be handled as macros because when
5012 generating PIC code they expand to multi-instruction
5013 sequences. Normally they are simple instructions. */
5018 if (mips_pic == NO_PIC
5019 || mips_pic == EMBEDDED_PIC)
5020 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
5022 else if (mips_pic == SVR4_PIC)
5024 if (sreg != PIC_CALL_REG)
5025 as_warn (_("MIPS PIC call to register other than $25"));
5027 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
5031 if (mips_cprestore_offset < 0)
5032 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5035 if (! mips_frame_reg_valid)
5037 as_warn (_("No .frame pseudo-op used in PIC code"));
5038 /* Quiet this warning. */
5039 mips_frame_reg_valid = 1;
5041 if (! mips_cprestore_valid)
5043 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5044 /* Quiet this warning. */
5045 mips_cprestore_valid = 1;
5047 expr1.X_add_number = mips_cprestore_offset;
5048 macro_build ((char *) NULL, &icnt, &expr1,
5049 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)",
5050 mips_gp_register, (int) BFD_RELOC_LO16,
5061 if (mips_pic == NO_PIC)
5062 macro_build ((char *) NULL, &icnt, &offset_expr, "jal", "a");
5063 else if (mips_pic == SVR4_PIC)
5067 /* If this is a reference to an external symbol, and we are
5068 using a small GOT, we want
5069 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5073 lw $gp,cprestore($sp)
5074 The cprestore value is set using the .cprestore
5075 pseudo-op. If we are using a big GOT, we want
5076 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5078 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
5082 lw $gp,cprestore($sp)
5083 If the symbol is not external, we want
5084 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5086 addiu $25,$25,<sym> (BFD_RELOC_LO16)
5089 lw $gp,cprestore($sp)
5091 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5092 jalr $ra,$25 (BFD_RELOC_MIPS_JALR)
5096 macro_build ((char *) NULL, &icnt, &offset_expr,
5097 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5098 "t,o(b)", PIC_CALL_REG,
5099 (int) BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5100 macro_build_jalr (icnt, &offset_expr);
5107 macro_build ((char *) NULL, &icnt, &offset_expr,
5108 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5109 "t,o(b)", PIC_CALL_REG,
5110 (int) BFD_RELOC_MIPS_CALL16, mips_gp_register);
5111 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5113 p = frag_var (rs_machine_dependent, 4, 0,
5114 RELAX_ENCODE (0, 4, -8, 0, 0, 0),
5115 offset_expr.X_add_symbol, 0, NULL);
5121 if (reg_needs_delay (mips_gp_register))
5125 macro_build ((char *) NULL, &icnt, &offset_expr, "lui",
5126 "t,u", PIC_CALL_REG,
5127 (int) BFD_RELOC_MIPS_CALL_HI16);
5128 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5129 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5130 "d,v,t", PIC_CALL_REG, PIC_CALL_REG,
5132 macro_build ((char *) NULL, &icnt, &offset_expr,
5133 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5134 "t,o(b)", PIC_CALL_REG,
5135 (int) BFD_RELOC_MIPS_CALL_LO16, PIC_CALL_REG);
5136 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5138 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
5139 RELAX_ENCODE (16, 12 + gpdel, gpdel,
5141 offset_expr.X_add_symbol, 0, NULL);
5144 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5147 macro_build (p, &icnt, &offset_expr,
5148 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5149 "t,o(b)", PIC_CALL_REG,
5150 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
5152 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5155 macro_build (p, &icnt, &offset_expr,
5156 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
5157 "t,r,j", PIC_CALL_REG, PIC_CALL_REG,
5158 (int) BFD_RELOC_LO16);
5159 macro_build_jalr (icnt, &offset_expr);
5161 if (mips_cprestore_offset < 0)
5162 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5165 if (! mips_frame_reg_valid)
5167 as_warn (_("No .frame pseudo-op used in PIC code"));
5168 /* Quiet this warning. */
5169 mips_frame_reg_valid = 1;
5171 if (! mips_cprestore_valid)
5173 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5174 /* Quiet this warning. */
5175 mips_cprestore_valid = 1;
5177 if (mips_opts.noreorder)
5178 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5180 expr1.X_add_number = mips_cprestore_offset;
5181 macro_build ((char *) NULL, &icnt, &expr1,
5182 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)",
5183 mips_gp_register, (int) BFD_RELOC_LO16,
5188 else if (mips_pic == EMBEDDED_PIC)
5190 macro_build ((char *) NULL, &icnt, &offset_expr, "bal", "p");
5191 /* The linker may expand the call to a longer sequence which
5192 uses $at, so we must break rather than return. */
5217 /* Itbl support may require additional care here. */
5222 /* Itbl support may require additional care here. */
5227 /* Itbl support may require additional care here. */
5232 /* Itbl support may require additional care here. */
5244 if (mips_arch == CPU_R4650)
5246 as_bad (_("opcode not supported on this processor"));
5250 /* Itbl support may require additional care here. */
5255 /* Itbl support may require additional care here. */
5260 /* Itbl support may require additional care here. */
5280 if (breg == treg || coproc || lr)
5302 /* Itbl support may require additional care here. */
5307 /* Itbl support may require additional care here. */
5312 /* Itbl support may require additional care here. */
5317 /* Itbl support may require additional care here. */
5333 if (mips_arch == CPU_R4650)
5335 as_bad (_("opcode not supported on this processor"));
5340 /* Itbl support may require additional care here. */
5344 /* Itbl support may require additional care here. */
5349 /* Itbl support may require additional care here. */
5361 /* Itbl support may require additional care here. */
5362 if (mask == M_LWC1_AB
5363 || mask == M_SWC1_AB
5364 || mask == M_LDC1_AB
5365 || mask == M_SDC1_AB
5374 /* For embedded PIC, we allow loads where the offset is calculated
5375 by subtracting a symbol in the current segment from an unknown
5376 symbol, relative to a base register, e.g.:
5377 <op> $treg, <sym>-<localsym>($breg)
5378 This is used by the compiler for switch statements. */
5379 if (mips_pic == EMBEDDED_PIC
5380 && offset_expr.X_op == O_subtract
5381 && (symbol_constant_p (offset_expr.X_op_symbol)
5382 ? S_GET_SEGMENT (offset_expr.X_op_symbol) == now_seg
5383 : (symbol_equated_p (offset_expr.X_op_symbol)
5385 (symbol_get_value_expression (offset_expr.X_op_symbol)
5389 && (offset_expr.X_add_number == 0
5390 || OUTPUT_FLAVOR == bfd_target_elf_flavour))
5392 /* For this case, we output the instructions:
5393 lui $tempreg,<sym> (BFD_RELOC_PCREL_HI16_S)
5394 addiu $tempreg,$tempreg,$breg
5395 <op> $treg,<sym>($tempreg) (BFD_RELOC_PCREL_LO16)
5396 If the relocation would fit entirely in 16 bits, it would be
5398 <op> $treg,<sym>($breg) (BFD_RELOC_PCREL_LO16)
5399 instead, but that seems quite difficult. */
5400 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
5401 tempreg, (int) BFD_RELOC_PCREL_HI16_S);
5402 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5403 ((bfd_arch_bits_per_address (stdoutput) == 32
5404 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
5405 ? "addu" : "daddu"),
5406 "d,v,t", tempreg, tempreg, breg);
5407 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt, treg,
5408 (int) BFD_RELOC_PCREL_LO16, tempreg);
5414 if (offset_expr.X_op != O_constant
5415 && offset_expr.X_op != O_symbol)
5417 as_bad (_("expression too complex"));
5418 offset_expr.X_op = O_constant;
5421 /* A constant expression in PIC code can be handled just as it
5422 is in non PIC code. */
5423 if (mips_pic == NO_PIC
5424 || offset_expr.X_op == O_constant)
5428 /* If this is a reference to a GP relative symbol, and there
5429 is no base register, we want
5430 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
5431 Otherwise, if there is no base register, we want
5432 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5433 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5434 If we have a constant, we need two instructions anyhow,
5435 so we always use the latter form.
5437 If we have a base register, and this is a reference to a
5438 GP relative symbol, we want
5439 addu $tempreg,$breg,$gp
5440 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
5442 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5443 addu $tempreg,$tempreg,$breg
5444 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5445 With a constant we always use the latter case.
5447 With 64bit address space and no base register and $at usable,
5449 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5450 lui $at,<sym> (BFD_RELOC_HI16_S)
5451 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5454 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5455 If we have a base register, we want
5456 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5457 lui $at,<sym> (BFD_RELOC_HI16_S)
5458 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5462 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5464 Without $at we can't generate the optimal path for superscalar
5465 processors here since this would require two temporary registers.
5466 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5467 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5469 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5471 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5472 If we have a base register, we want
5473 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5474 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5476 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5478 daddu $tempreg,$tempreg,$breg
5479 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5481 If we have 64-bit addresses, as an optimization, for
5482 addresses which are 32-bit constants (e.g. kseg0/kseg1
5483 addresses) we fall back to the 32-bit address generation
5484 mechanism since it is more efficient. Note that due to
5485 the signed offset used by memory operations, the 32-bit
5486 range is shifted down by 32768 here. This code should
5487 probably attempt to generate 64-bit constants more
5488 efficiently in general.
5490 if (HAVE_64BIT_ADDRESSES
5491 && !(offset_expr.X_op == O_constant
5492 && IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000)))
5496 /* We don't do GP optimization for now because RELAX_ENCODE can't
5497 hold the data for such large chunks. */
5499 if (used_at == 0 && ! mips_opts.noat)
5501 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
5502 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
5503 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
5504 AT, (int) BFD_RELOC_HI16_S);
5505 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
5506 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
5508 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
5509 "d,v,t", AT, AT, breg);
5510 macro_build (p, &icnt, (expressionS *) NULL, "dsll32",
5511 "d,w,<", tempreg, tempreg, 0);
5512 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
5513 "d,v,t", tempreg, tempreg, AT);
5514 macro_build (p, &icnt, &offset_expr, s,
5515 fmt, treg, (int) BFD_RELOC_LO16, tempreg);
5520 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
5521 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
5522 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
5523 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
5524 macro_build (p, &icnt, (expressionS *) NULL, "dsll",
5525 "d,w,<", tempreg, tempreg, 16);
5526 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
5527 tempreg, tempreg, (int) BFD_RELOC_HI16_S);
5528 macro_build (p, &icnt, (expressionS *) NULL, "dsll",
5529 "d,w,<", tempreg, tempreg, 16);
5531 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
5532 "d,v,t", tempreg, tempreg, breg);
5533 macro_build (p, &icnt, &offset_expr, s,
5534 fmt, treg, (int) BFD_RELOC_LO16, tempreg);
5542 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
5543 || nopic_need_relax (offset_expr.X_add_symbol, 1))
5548 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5549 treg, (int) BFD_RELOC_GPREL16,
5551 p = frag_var (rs_machine_dependent, 8, 0,
5552 RELAX_ENCODE (4, 8, 0, 4, 0,
5553 (mips_opts.warn_about_macros
5555 && mips_opts.noat))),
5556 offset_expr.X_add_symbol, 0, NULL);
5559 macro_build_lui (p, &icnt, &offset_expr, tempreg);
5562 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
5563 (int) BFD_RELOC_LO16, tempreg);
5567 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
5568 || nopic_need_relax (offset_expr.X_add_symbol, 1))
5573 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5574 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5575 "d,v,t", tempreg, breg, mips_gp_register);
5576 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5577 treg, (int) BFD_RELOC_GPREL16, tempreg);
5578 p = frag_var (rs_machine_dependent, 12, 0,
5579 RELAX_ENCODE (8, 12, 0, 8, 0, 0),
5580 offset_expr.X_add_symbol, 0, NULL);
5582 macro_build_lui (p, &icnt, &offset_expr, tempreg);
5585 macro_build (p, &icnt, (expressionS *) NULL,
5586 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5587 "d,v,t", tempreg, tempreg, breg);
5590 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
5591 (int) BFD_RELOC_LO16, tempreg);
5594 else if (mips_pic == SVR4_PIC && ! mips_big_got)
5598 /* If this is a reference to an external symbol, we want
5599 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5601 <op> $treg,0($tempreg)
5603 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5605 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5606 <op> $treg,0($tempreg)
5607 If there is a base register, we add it to $tempreg before
5608 the <op>. If there is a constant, we stick it in the
5609 <op> instruction. We don't handle constants larger than
5610 16 bits, because we have no way to load the upper 16 bits
5611 (actually, we could handle them for the subset of cases
5612 in which we are not using $at). */
5613 assert (offset_expr.X_op == O_symbol);
5614 expr1.X_add_number = offset_expr.X_add_number;
5615 offset_expr.X_add_number = 0;
5616 if (expr1.X_add_number < -0x8000
5617 || expr1.X_add_number >= 0x8000)
5618 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
5620 macro_build ((char *) NULL, &icnt, &offset_expr,
5621 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", tempreg,
5622 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
5623 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
5624 p = frag_var (rs_machine_dependent, 4, 0,
5625 RELAX_ENCODE (0, 4, -8, 0, 0, 0),
5626 offset_expr.X_add_symbol, 0, NULL);
5627 macro_build (p, &icnt, &offset_expr,
5628 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
5629 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5631 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5632 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5633 "d,v,t", tempreg, tempreg, breg);
5634 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
5635 (int) BFD_RELOC_LO16, tempreg);
5637 else if (mips_pic == SVR4_PIC)
5642 /* If this is a reference to an external symbol, we want
5643 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5644 addu $tempreg,$tempreg,$gp
5645 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5646 <op> $treg,0($tempreg)
5648 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5650 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5651 <op> $treg,0($tempreg)
5652 If there is a base register, we add it to $tempreg before
5653 the <op>. If there is a constant, we stick it in the
5654 <op> instruction. We don't handle constants larger than
5655 16 bits, because we have no way to load the upper 16 bits
5656 (actually, we could handle them for the subset of cases
5657 in which we are not using $at).
5660 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5661 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5662 <op> $treg,0($tempreg)
5664 assert (offset_expr.X_op == O_symbol);
5665 expr1.X_add_number = offset_expr.X_add_number;
5666 offset_expr.X_add_number = 0;
5667 if (expr1.X_add_number < -0x8000
5668 || expr1.X_add_number >= 0x8000)
5669 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
5672 macro_build ((char *) NULL, &icnt, &offset_expr,
5673 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5674 "t,o(b)", tempreg, BFD_RELOC_MIPS_GOT_PAGE,
5676 macro_build ((char *) NULL, &icnt, &offset_expr,
5677 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
5678 "t,r,j", tempreg, tempreg,
5679 BFD_RELOC_MIPS_GOT_OFST);
5681 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5682 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5683 "d,v,t", tempreg, tempreg, breg);
5684 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
5685 (int) BFD_RELOC_LO16, tempreg);
5692 if (reg_needs_delay (mips_gp_register))
5697 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
5698 tempreg, (int) BFD_RELOC_MIPS_GOT_HI16);
5699 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5700 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5701 "d,v,t", tempreg, tempreg, mips_gp_register);
5702 macro_build ((char *) NULL, &icnt, &offset_expr,
5703 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5704 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT_LO16,
5706 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
5707 RELAX_ENCODE (12, 12 + gpdel, gpdel, 8 + gpdel, 0, 0),
5708 offset_expr.X_add_symbol, 0, NULL);
5711 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5714 macro_build (p, &icnt, &offset_expr,
5715 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5716 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT16,
5719 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5721 macro_build (p, &icnt, &offset_expr,
5722 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
5723 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5725 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5726 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5727 "d,v,t", tempreg, tempreg, breg);
5728 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
5729 (int) BFD_RELOC_LO16, tempreg);
5731 else if (mips_pic == EMBEDDED_PIC)
5733 /* If there is no base register, we want
5734 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
5735 If there is a base register, we want
5736 addu $tempreg,$breg,$gp
5737 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
5739 assert (offset_expr.X_op == O_symbol);
5742 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5743 treg, (int) BFD_RELOC_GPREL16, mips_gp_register);
5748 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5749 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5750 "d,v,t", tempreg, breg, mips_gp_register);
5751 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5752 treg, (int) BFD_RELOC_GPREL16, tempreg);
5765 load_register (&icnt, treg, &imm_expr, 0);
5769 load_register (&icnt, treg, &imm_expr, 1);
5773 if (imm_expr.X_op == O_constant)
5775 load_register (&icnt, AT, &imm_expr, 0);
5776 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5777 "mtc1", "t,G", AT, treg);
5782 assert (offset_expr.X_op == O_symbol
5783 && strcmp (segment_name (S_GET_SEGMENT
5784 (offset_expr.X_add_symbol)),
5786 && offset_expr.X_add_number == 0);
5787 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
5788 treg, (int) BFD_RELOC_MIPS_LITERAL, mips_gp_register);
5793 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
5794 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
5795 order 32 bits of the value and the low order 32 bits are either
5796 zero or in OFFSET_EXPR. */
5797 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
5799 if (HAVE_64BIT_GPRS)
5800 load_register (&icnt, treg, &imm_expr, 1);
5805 if (target_big_endian)
5817 load_register (&icnt, hreg, &imm_expr, 0);
5820 if (offset_expr.X_op == O_absent)
5821 move_register (&icnt, lreg, 0);
5824 assert (offset_expr.X_op == O_constant);
5825 load_register (&icnt, lreg, &offset_expr, 0);
5832 /* We know that sym is in the .rdata section. First we get the
5833 upper 16 bits of the address. */
5834 if (mips_pic == NO_PIC)
5836 macro_build_lui (NULL, &icnt, &offset_expr, AT);
5838 else if (mips_pic == SVR4_PIC)
5840 macro_build ((char *) NULL, &icnt, &offset_expr,
5841 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5842 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
5845 else if (mips_pic == EMBEDDED_PIC)
5847 /* For embedded PIC we pick up the entire address off $gp in
5848 a single instruction. */
5849 macro_build ((char *) NULL, &icnt, &offset_expr,
5850 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j", AT,
5851 mips_gp_register, (int) BFD_RELOC_GPREL16);
5852 offset_expr.X_op = O_constant;
5853 offset_expr.X_add_number = 0;
5858 /* Now we load the register(s). */
5859 if (HAVE_64BIT_GPRS)
5860 macro_build ((char *) NULL, &icnt, &offset_expr, "ld", "t,o(b)",
5861 treg, (int) BFD_RELOC_LO16, AT);
5864 macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
5865 treg, (int) BFD_RELOC_LO16, AT);
5868 /* FIXME: How in the world do we deal with the possible
5870 offset_expr.X_add_number += 4;
5871 macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
5872 treg + 1, (int) BFD_RELOC_LO16, AT);
5876 /* To avoid confusion in tc_gen_reloc, we must ensure that this
5877 does not become a variant frag. */
5878 frag_wane (frag_now);
5884 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
5885 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
5886 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
5887 the value and the low order 32 bits are either zero or in
5889 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
5891 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_FPRS);
5892 if (HAVE_64BIT_FPRS)
5894 assert (HAVE_64BIT_GPRS);
5895 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5896 "dmtc1", "t,S", AT, treg);
5900 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5901 "mtc1", "t,G", AT, treg + 1);
5902 if (offset_expr.X_op == O_absent)
5903 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5904 "mtc1", "t,G", 0, treg);
5907 assert (offset_expr.X_op == O_constant);
5908 load_register (&icnt, AT, &offset_expr, 0);
5909 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5910 "mtc1", "t,G", AT, treg);
5916 assert (offset_expr.X_op == O_symbol
5917 && offset_expr.X_add_number == 0);
5918 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
5919 if (strcmp (s, ".lit8") == 0)
5921 if (mips_opts.isa != ISA_MIPS1)
5923 macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
5924 "T,o(b)", treg, (int) BFD_RELOC_MIPS_LITERAL,
5928 breg = mips_gp_register;
5929 r = BFD_RELOC_MIPS_LITERAL;
5934 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
5935 if (mips_pic == SVR4_PIC)
5936 macro_build ((char *) NULL, &icnt, &offset_expr,
5937 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5938 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
5942 /* FIXME: This won't work for a 64 bit address. */
5943 macro_build_lui (NULL, &icnt, &offset_expr, AT);
5946 if (mips_opts.isa != ISA_MIPS1)
5948 macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
5949 "T,o(b)", treg, (int) BFD_RELOC_LO16, AT);
5951 /* To avoid confusion in tc_gen_reloc, we must ensure
5952 that this does not become a variant frag. */
5953 frag_wane (frag_now);
5964 if (mips_arch == CPU_R4650)
5966 as_bad (_("opcode not supported on this processor"));
5969 /* Even on a big endian machine $fn comes before $fn+1. We have
5970 to adjust when loading from memory. */
5973 assert (mips_opts.isa == ISA_MIPS1);
5974 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
5975 target_big_endian ? treg + 1 : treg,
5977 /* FIXME: A possible overflow which I don't know how to deal
5979 offset_expr.X_add_number += 4;
5980 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
5981 target_big_endian ? treg : treg + 1,
5984 /* To avoid confusion in tc_gen_reloc, we must ensure that this
5985 does not become a variant frag. */
5986 frag_wane (frag_now);
5995 * The MIPS assembler seems to check for X_add_number not
5996 * being double aligned and generating:
5999 * addiu at,at,%lo(foo+1)
6002 * But, the resulting address is the same after relocation so why
6003 * generate the extra instruction?
6005 if (mips_arch == CPU_R4650)
6007 as_bad (_("opcode not supported on this processor"));
6010 /* Itbl support may require additional care here. */
6012 if (mips_opts.isa != ISA_MIPS1)
6023 if (mips_arch == CPU_R4650)
6025 as_bad (_("opcode not supported on this processor"));
6029 if (mips_opts.isa != ISA_MIPS1)
6037 /* Itbl support may require additional care here. */
6042 if (HAVE_64BIT_GPRS)
6053 if (HAVE_64BIT_GPRS)
6063 /* We do _not_ bother to allow embedded PIC (symbol-local_symbol)
6064 loads for the case of doing a pair of loads to simulate an 'ld'.
6065 This is not currently done by the compiler, and assembly coders
6066 writing embedded-pic code can cope. */
6068 if (offset_expr.X_op != O_symbol
6069 && offset_expr.X_op != O_constant)
6071 as_bad (_("expression too complex"));
6072 offset_expr.X_op = O_constant;
6075 /* Even on a big endian machine $fn comes before $fn+1. We have
6076 to adjust when loading from memory. We set coproc if we must
6077 load $fn+1 first. */
6078 /* Itbl support may require additional care here. */
6079 if (! target_big_endian)
6082 if (mips_pic == NO_PIC
6083 || offset_expr.X_op == O_constant)
6087 /* If this is a reference to a GP relative symbol, we want
6088 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6089 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
6090 If we have a base register, we use this
6092 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6093 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
6094 If this is not a GP relative symbol, we want
6095 lui $at,<sym> (BFD_RELOC_HI16_S)
6096 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6097 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6098 If there is a base register, we add it to $at after the
6099 lui instruction. If there is a constant, we always use
6101 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
6102 || nopic_need_relax (offset_expr.X_add_symbol, 1))
6114 tempreg = mips_gp_register;
6121 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6122 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
6123 "d,v,t", AT, breg, mips_gp_register);
6129 /* Itbl support may require additional care here. */
6130 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6131 coproc ? treg + 1 : treg,
6132 (int) BFD_RELOC_GPREL16, tempreg);
6133 offset_expr.X_add_number += 4;
6135 /* Set mips_optimize to 2 to avoid inserting an
6137 hold_mips_optimize = mips_optimize;
6139 /* Itbl support may require additional care here. */
6140 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6141 coproc ? treg : treg + 1,
6142 (int) BFD_RELOC_GPREL16, tempreg);
6143 mips_optimize = hold_mips_optimize;
6145 p = frag_var (rs_machine_dependent, 12 + off, 0,
6146 RELAX_ENCODE (8 + off, 12 + off, 0, 4 + off, 1,
6147 used_at && mips_opts.noat),
6148 offset_expr.X_add_symbol, 0, NULL);
6150 /* We just generated two relocs. When tc_gen_reloc
6151 handles this case, it will skip the first reloc and
6152 handle the second. The second reloc already has an
6153 extra addend of 4, which we added above. We must
6154 subtract it out, and then subtract another 4 to make
6155 the first reloc come out right. The second reloc
6156 will come out right because we are going to add 4 to
6157 offset_expr when we build its instruction below.
6159 If we have a symbol, then we don't want to include
6160 the offset, because it will wind up being included
6161 when we generate the reloc. */
6163 if (offset_expr.X_op == O_constant)
6164 offset_expr.X_add_number -= 8;
6167 offset_expr.X_add_number = -4;
6168 offset_expr.X_op = O_constant;
6171 macro_build_lui (p, &icnt, &offset_expr, AT);
6176 macro_build (p, &icnt, (expressionS *) NULL,
6177 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
6178 "d,v,t", AT, breg, AT);
6182 /* Itbl support may require additional care here. */
6183 macro_build (p, &icnt, &offset_expr, s, fmt,
6184 coproc ? treg + 1 : treg,
6185 (int) BFD_RELOC_LO16, AT);
6188 /* FIXME: How do we handle overflow here? */
6189 offset_expr.X_add_number += 4;
6190 /* Itbl support may require additional care here. */
6191 macro_build (p, &icnt, &offset_expr, s, fmt,
6192 coproc ? treg : treg + 1,
6193 (int) BFD_RELOC_LO16, AT);
6195 else if (mips_pic == SVR4_PIC && ! mips_big_got)
6199 /* If this is a reference to an external symbol, we want
6200 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6205 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6207 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6208 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6209 If there is a base register we add it to $at before the
6210 lwc1 instructions. If there is a constant we include it
6211 in the lwc1 instructions. */
6213 expr1.X_add_number = offset_expr.X_add_number;
6214 offset_expr.X_add_number = 0;
6215 if (expr1.X_add_number < -0x8000
6216 || expr1.X_add_number >= 0x8000 - 4)
6217 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6222 frag_grow (24 + off);
6223 macro_build ((char *) NULL, &icnt, &offset_expr,
6224 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", AT,
6225 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
6226 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
6228 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6229 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
6230 "d,v,t", AT, breg, AT);
6231 /* Itbl support may require additional care here. */
6232 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6233 coproc ? treg + 1 : treg,
6234 (int) BFD_RELOC_LO16, AT);
6235 expr1.X_add_number += 4;
6237 /* Set mips_optimize to 2 to avoid inserting an undesired
6239 hold_mips_optimize = mips_optimize;
6241 /* Itbl support may require additional care here. */
6242 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6243 coproc ? treg : treg + 1,
6244 (int) BFD_RELOC_LO16, AT);
6245 mips_optimize = hold_mips_optimize;
6247 (void) frag_var (rs_machine_dependent, 0, 0,
6248 RELAX_ENCODE (0, 0, -16 - off, -8, 1, 0),
6249 offset_expr.X_add_symbol, 0, NULL);
6251 else if (mips_pic == SVR4_PIC)
6256 /* If this is a reference to an external symbol, we want
6257 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6259 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
6264 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6266 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6267 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6268 If there is a base register we add it to $at before the
6269 lwc1 instructions. If there is a constant we include it
6270 in the lwc1 instructions. */
6272 expr1.X_add_number = offset_expr.X_add_number;
6273 offset_expr.X_add_number = 0;
6274 if (expr1.X_add_number < -0x8000
6275 || expr1.X_add_number >= 0x8000 - 4)
6276 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6277 if (reg_needs_delay (mips_gp_register))
6286 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
6287 AT, (int) BFD_RELOC_MIPS_GOT_HI16);
6288 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6289 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
6290 "d,v,t", AT, AT, mips_gp_register);
6291 macro_build ((char *) NULL, &icnt, &offset_expr,
6292 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
6293 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT_LO16, AT);
6294 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
6296 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6297 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
6298 "d,v,t", AT, breg, AT);
6299 /* Itbl support may require additional care here. */
6300 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6301 coproc ? treg + 1 : treg,
6302 (int) BFD_RELOC_LO16, AT);
6303 expr1.X_add_number += 4;
6305 /* Set mips_optimize to 2 to avoid inserting an undesired
6307 hold_mips_optimize = mips_optimize;
6309 /* Itbl support may require additional care here. */
6310 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6311 coproc ? treg : treg + 1,
6312 (int) BFD_RELOC_LO16, AT);
6313 mips_optimize = hold_mips_optimize;
6314 expr1.X_add_number -= 4;
6316 p = frag_var (rs_machine_dependent, 16 + gpdel + off, 0,
6317 RELAX_ENCODE (24 + off, 16 + gpdel + off, gpdel,
6318 8 + gpdel + off, 1, 0),
6319 offset_expr.X_add_symbol, 0, NULL);
6322 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
6325 macro_build (p, &icnt, &offset_expr,
6326 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
6327 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
6330 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
6334 macro_build (p, &icnt, (expressionS *) NULL,
6335 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
6336 "d,v,t", AT, breg, AT);
6339 /* Itbl support may require additional care here. */
6340 macro_build (p, &icnt, &expr1, s, fmt,
6341 coproc ? treg + 1 : treg,
6342 (int) BFD_RELOC_LO16, AT);
6344 expr1.X_add_number += 4;
6346 /* Set mips_optimize to 2 to avoid inserting an undesired
6348 hold_mips_optimize = mips_optimize;
6350 /* Itbl support may require additional care here. */
6351 macro_build (p, &icnt, &expr1, s, fmt,
6352 coproc ? treg : treg + 1,
6353 (int) BFD_RELOC_LO16, AT);
6354 mips_optimize = hold_mips_optimize;
6356 else if (mips_pic == EMBEDDED_PIC)
6358 /* If there is no base register, we use
6359 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6360 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
6361 If we have a base register, we use
6363 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6364 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
6368 tempreg = mips_gp_register;
6373 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6374 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
6375 "d,v,t", AT, breg, mips_gp_register);
6380 /* Itbl support may require additional care here. */
6381 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6382 coproc ? treg + 1 : treg,
6383 (int) BFD_RELOC_GPREL16, tempreg);
6384 offset_expr.X_add_number += 4;
6385 /* Itbl support may require additional care here. */
6386 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6387 coproc ? treg : treg + 1,
6388 (int) BFD_RELOC_GPREL16, tempreg);
6404 assert (HAVE_32BIT_ADDRESSES);
6405 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
6406 (int) BFD_RELOC_LO16, breg);
6407 offset_expr.X_add_number += 4;
6408 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg + 1,
6409 (int) BFD_RELOC_LO16, breg);
6412 /* New code added to support COPZ instructions.
6413 This code builds table entries out of the macros in mip_opcodes.
6414 R4000 uses interlocks to handle coproc delays.
6415 Other chips (like the R3000) require nops to be inserted for delays.
6417 FIXME: Currently, we require that the user handle delays.
6418 In order to fill delay slots for non-interlocked chips,
6419 we must have a way to specify delays based on the coprocessor.
6420 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
6421 What are the side-effects of the cop instruction?
6422 What cache support might we have and what are its effects?
6423 Both coprocessor & memory require delays. how long???
6424 What registers are read/set/modified?
6426 If an itbl is provided to interpret cop instructions,
6427 this knowledge can be encoded in the itbl spec. */
6441 /* For now we just do C (same as Cz). The parameter will be
6442 stored in insn_opcode by mips_ip. */
6443 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "C",
6448 move_register (&icnt, dreg, sreg);
6451 #ifdef LOSING_COMPILER
6453 /* Try and see if this is a new itbl instruction.
6454 This code builds table entries out of the macros in mip_opcodes.
6455 FIXME: For now we just assemble the expression and pass it's
6456 value along as a 32-bit immediate.
6457 We may want to have the assembler assemble this value,
6458 so that we gain the assembler's knowledge of delay slots,
6460 Would it be more efficient to use mask (id) here? */
6461 if (itbl_have_entries
6462 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
6464 s = ip->insn_mo->name;
6466 coproc = ITBL_DECODE_PNUM (immed_expr);;
6467 macro_build ((char *) NULL, &icnt, &immed_expr, s, "C");
6474 as_warn (_("Macro used $at after \".set noat\""));
6479 struct mips_cl_insn *ip;
6481 register int treg, sreg, dreg, breg;
6497 bfd_reloc_code_real_type r;
6500 treg = (ip->insn_opcode >> 16) & 0x1f;
6501 dreg = (ip->insn_opcode >> 11) & 0x1f;
6502 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
6503 mask = ip->insn_mo->mask;
6505 expr1.X_op = O_constant;
6506 expr1.X_op_symbol = NULL;
6507 expr1.X_add_symbol = NULL;
6508 expr1.X_add_number = 1;
6512 #endif /* LOSING_COMPILER */
6517 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6518 dbl ? "dmultu" : "multu", "s,t", sreg, treg);
6519 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6526 /* The MIPS assembler some times generates shifts and adds. I'm
6527 not trying to be that fancy. GCC should do this for us
6529 load_register (&icnt, AT, &imm_expr, dbl);
6530 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6531 dbl ? "dmult" : "mult", "s,t", sreg, AT);
6532 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6546 mips_emit_delays (true);
6547 ++mips_opts.noreorder;
6548 mips_any_noreorder = 1;
6550 load_register (&icnt, AT, &imm_expr, dbl);
6551 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6552 dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
6553 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6555 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6556 dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
6557 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mfhi", "d",
6560 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "tne",
6561 "s,t,q", dreg, AT, 6);
6564 expr1.X_add_number = 8;
6565 macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", dreg,
6567 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
6569 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
6572 --mips_opts.noreorder;
6573 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d", dreg);
6586 mips_emit_delays (true);
6587 ++mips_opts.noreorder;
6588 mips_any_noreorder = 1;
6590 load_register (&icnt, AT, &imm_expr, dbl);
6591 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6592 dbl ? "dmultu" : "multu",
6593 "s,t", sreg, imm ? AT : treg);
6594 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mfhi", "d",
6596 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6599 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "tne",
6603 expr1.X_add_number = 8;
6604 macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", AT, 0);
6605 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
6607 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
6610 --mips_opts.noreorder;
6614 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
6615 "d,v,t", AT, 0, treg);
6616 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
6617 "d,t,s", AT, sreg, AT);
6618 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
6619 "d,t,s", dreg, sreg, treg);
6620 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6621 "d,v,t", dreg, dreg, AT);
6625 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "subu",
6626 "d,v,t", AT, 0, treg);
6627 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srlv",
6628 "d,t,s", AT, sreg, AT);
6629 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sllv",
6630 "d,t,s", dreg, sreg, treg);
6631 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6632 "d,v,t", dreg, dreg, AT);
6640 if (imm_expr.X_op != O_constant)
6641 as_bad (_("rotate count too large"));
6642 rot = imm_expr.X_add_number & 0x3f;
6645 l = (rot < 0x20) ? "dsll" : "dsll32";
6646 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
6648 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
6649 "d,w,<", AT, sreg, rot);
6650 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
6651 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6652 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6653 "d,v,t", dreg, dreg, AT);
6661 if (imm_expr.X_op != O_constant)
6662 as_bad (_("rotate count too large"));
6663 rot = imm_expr.X_add_number & 0x1f;
6666 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
6667 "d,w,<", AT, sreg, rot);
6668 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
6669 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6670 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6671 "d,v,t", dreg, dreg, AT);
6676 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
6677 "d,v,t", AT, 0, treg);
6678 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
6679 "d,t,s", AT, sreg, AT);
6680 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
6681 "d,t,s", dreg, sreg, treg);
6682 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6683 "d,v,t", dreg, dreg, AT);
6687 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "subu",
6688 "d,v,t", AT, 0, treg);
6689 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sllv",
6690 "d,t,s", AT, sreg, AT);
6691 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srlv",
6692 "d,t,s", dreg, sreg, treg);
6693 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6694 "d,v,t", dreg, dreg, AT);
6702 if (imm_expr.X_op != O_constant)
6703 as_bad (_("rotate count too large"));
6704 rot = imm_expr.X_add_number & 0x3f;
6707 r = (rot < 0x20) ? "dsrl" : "dsrl32";
6708 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
6710 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
6711 "d,w,<", AT, sreg, rot);
6712 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
6713 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6714 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6715 "d,v,t", dreg, dreg, AT);
6723 if (imm_expr.X_op != O_constant)
6724 as_bad (_("rotate count too large"));
6725 rot = imm_expr.X_add_number & 0x1f;
6728 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
6729 "d,w,<", AT, sreg, rot);
6730 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
6731 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6732 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6733 "d,v,t", dreg, dreg, AT);
6738 if (mips_arch == CPU_R4650)
6740 as_bad (_("opcode not supported on this processor"));
6743 assert (mips_opts.isa == ISA_MIPS1);
6744 /* Even on a big endian machine $fn comes before $fn+1. We have
6745 to adjust when storing to memory. */
6746 macro_build ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
6747 target_big_endian ? treg + 1 : treg,
6748 (int) BFD_RELOC_LO16, breg);
6749 offset_expr.X_add_number += 4;
6750 macro_build ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
6751 target_big_endian ? treg : treg + 1,
6752 (int) BFD_RELOC_LO16, breg);
6757 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6758 treg, (int) BFD_RELOC_LO16);
6760 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6761 sreg, (int) BFD_RELOC_LO16);
6764 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
6765 "d,v,t", dreg, sreg, treg);
6766 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6767 dreg, (int) BFD_RELOC_LO16);
6772 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6774 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6775 sreg, (int) BFD_RELOC_LO16);
6780 as_warn (_("Instruction %s: result is always false"),
6782 move_register (&icnt, dreg, 0);
6785 if (imm_expr.X_op == O_constant
6786 && imm_expr.X_add_number >= 0
6787 && imm_expr.X_add_number < 0x10000)
6789 macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i", dreg,
6790 sreg, (int) BFD_RELOC_LO16);
6793 else if (imm_expr.X_op == O_constant
6794 && imm_expr.X_add_number > -0x8000
6795 && imm_expr.X_add_number < 0)
6797 imm_expr.X_add_number = -imm_expr.X_add_number;
6798 macro_build ((char *) NULL, &icnt, &imm_expr,
6799 HAVE_32BIT_GPRS ? "addiu" : "daddiu",
6800 "t,r,j", dreg, sreg,
6801 (int) BFD_RELOC_LO16);
6806 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
6807 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
6808 "d,v,t", dreg, sreg, AT);
6811 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, dreg,
6812 (int) BFD_RELOC_LO16);
6817 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
6823 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6825 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6826 (int) BFD_RELOC_LO16);
6829 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
6831 if (imm_expr.X_op == O_constant
6832 && imm_expr.X_add_number >= -0x8000
6833 && imm_expr.X_add_number < 0x8000)
6835 macro_build ((char *) NULL, &icnt, &imm_expr,
6836 mask == M_SGE_I ? "slti" : "sltiu",
6837 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
6842 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
6843 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6844 mask == M_SGE_I ? "slt" : "sltu", "d,v,t", dreg, sreg,
6848 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6849 (int) BFD_RELOC_LO16);
6854 case M_SGT: /* sreg > treg <==> treg < sreg */
6860 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6864 case M_SGT_I: /* sreg > I <==> I < sreg */
6870 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
6871 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6875 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
6881 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6883 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6884 (int) BFD_RELOC_LO16);
6887 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
6893 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
6894 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6896 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6897 (int) BFD_RELOC_LO16);
6901 if (imm_expr.X_op == O_constant
6902 && imm_expr.X_add_number >= -0x8000
6903 && imm_expr.X_add_number < 0x8000)
6905 macro_build ((char *) NULL, &icnt, &imm_expr, "slti", "t,r,j",
6906 dreg, sreg, (int) BFD_RELOC_LO16);
6909 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
6910 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
6915 if (imm_expr.X_op == O_constant
6916 && imm_expr.X_add_number >= -0x8000
6917 && imm_expr.X_add_number < 0x8000)
6919 macro_build ((char *) NULL, &icnt, &imm_expr, "sltiu", "t,r,j",
6920 dreg, sreg, (int) BFD_RELOC_LO16);
6923 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
6924 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6925 "d,v,t", dreg, sreg, AT);
6930 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6931 "d,v,t", dreg, 0, treg);
6933 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6934 "d,v,t", dreg, 0, sreg);
6937 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
6938 "d,v,t", dreg, sreg, treg);
6939 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6940 "d,v,t", dreg, 0, dreg);
6945 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6947 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6948 "d,v,t", dreg, 0, sreg);
6953 as_warn (_("Instruction %s: result is always true"),
6955 macro_build ((char *) NULL, &icnt, &expr1,
6956 HAVE_32BIT_GPRS ? "addiu" : "daddiu",
6957 "t,r,j", dreg, 0, (int) BFD_RELOC_LO16);
6960 if (imm_expr.X_op == O_constant
6961 && imm_expr.X_add_number >= 0
6962 && imm_expr.X_add_number < 0x10000)
6964 macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i",
6965 dreg, sreg, (int) BFD_RELOC_LO16);
6968 else if (imm_expr.X_op == O_constant
6969 && imm_expr.X_add_number > -0x8000
6970 && imm_expr.X_add_number < 0)
6972 imm_expr.X_add_number = -imm_expr.X_add_number;
6973 macro_build ((char *) NULL, &icnt, &imm_expr,
6974 HAVE_32BIT_GPRS ? "addiu" : "daddiu",
6975 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
6980 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
6981 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
6982 "d,v,t", dreg, sreg, AT);
6985 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6986 "d,v,t", dreg, 0, dreg);
6994 if (imm_expr.X_op == O_constant
6995 && imm_expr.X_add_number > -0x8000
6996 && imm_expr.X_add_number <= 0x8000)
6998 imm_expr.X_add_number = -imm_expr.X_add_number;
6999 macro_build ((char *) NULL, &icnt, &imm_expr,
7000 dbl ? "daddi" : "addi",
7001 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
7004 load_register (&icnt, AT, &imm_expr, dbl);
7005 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7006 dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
7012 if (imm_expr.X_op == O_constant
7013 && imm_expr.X_add_number > -0x8000
7014 && imm_expr.X_add_number <= 0x8000)
7016 imm_expr.X_add_number = -imm_expr.X_add_number;
7017 macro_build ((char *) NULL, &icnt, &imm_expr,
7018 dbl ? "daddiu" : "addiu",
7019 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
7022 load_register (&icnt, AT, &imm_expr, dbl);
7023 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7024 dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
7045 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
7046 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "s,t", sreg,
7052 assert (mips_opts.isa == ISA_MIPS1);
7053 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
7054 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
7057 * Is the double cfc1 instruction a bug in the mips assembler;
7058 * or is there a reason for it?
7060 mips_emit_delays (true);
7061 ++mips_opts.noreorder;
7062 mips_any_noreorder = 1;
7063 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "cfc1", "t,G",
7065 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "cfc1", "t,G",
7067 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
7068 expr1.X_add_number = 3;
7069 macro_build ((char *) NULL, &icnt, &expr1, "ori", "t,r,i", AT, treg,
7070 (int) BFD_RELOC_LO16);
7071 expr1.X_add_number = 2;
7072 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", AT, AT,
7073 (int) BFD_RELOC_LO16);
7074 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "ctc1", "t,G",
7076 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
7077 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7078 mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S", dreg, sreg);
7079 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "ctc1", "t,G",
7081 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
7082 --mips_opts.noreorder;
7091 if (offset_expr.X_add_number >= 0x7fff)
7092 as_bad (_("operand overflow"));
7093 /* avoid load delay */
7094 if (! target_big_endian)
7095 ++offset_expr.X_add_number;
7096 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
7097 (int) BFD_RELOC_LO16, breg);
7098 if (! target_big_endian)
7099 --offset_expr.X_add_number;
7101 ++offset_expr.X_add_number;
7102 macro_build ((char *) NULL, &icnt, &offset_expr, "lbu", "t,o(b)", AT,
7103 (int) BFD_RELOC_LO16, breg);
7104 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
7106 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
7120 if (offset_expr.X_add_number >= 0x8000 - off)
7121 as_bad (_("operand overflow"));
7122 if (! target_big_endian)
7123 offset_expr.X_add_number += off;
7124 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
7125 (int) BFD_RELOC_LO16, breg);
7126 if (! target_big_endian)
7127 offset_expr.X_add_number -= off;
7129 offset_expr.X_add_number += off;
7130 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
7131 (int) BFD_RELOC_LO16, breg);
7145 load_address (&icnt, AT, &offset_expr, &used_at);
7147 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7148 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
7149 "d,v,t", AT, AT, breg);
7150 if (! target_big_endian)
7151 expr1.X_add_number = off;
7153 expr1.X_add_number = 0;
7154 macro_build ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
7155 (int) BFD_RELOC_LO16, AT);
7156 if (! target_big_endian)
7157 expr1.X_add_number = 0;
7159 expr1.X_add_number = off;
7160 macro_build ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
7161 (int) BFD_RELOC_LO16, AT);
7167 load_address (&icnt, AT, &offset_expr, &used_at);
7169 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7170 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
7171 "d,v,t", AT, AT, breg);
7172 if (target_big_endian)
7173 expr1.X_add_number = 0;
7174 macro_build ((char *) NULL, &icnt, &expr1,
7175 mask == M_ULH_A ? "lb" : "lbu", "t,o(b)", treg,
7176 (int) BFD_RELOC_LO16, AT);
7177 if (target_big_endian)
7178 expr1.X_add_number = 1;
7180 expr1.X_add_number = 0;
7181 macro_build ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
7182 (int) BFD_RELOC_LO16, AT);
7183 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
7185 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
7190 if (offset_expr.X_add_number >= 0x7fff)
7191 as_bad (_("operand overflow"));
7192 if (target_big_endian)
7193 ++offset_expr.X_add_number;
7194 macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", treg,
7195 (int) BFD_RELOC_LO16, breg);
7196 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
7198 if (target_big_endian)
7199 --offset_expr.X_add_number;
7201 ++offset_expr.X_add_number;
7202 macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", AT,
7203 (int) BFD_RELOC_LO16, breg);
7216 if (offset_expr.X_add_number >= 0x8000 - off)
7217 as_bad (_("operand overflow"));
7218 if (! target_big_endian)
7219 offset_expr.X_add_number += off;
7220 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
7221 (int) BFD_RELOC_LO16, breg);
7222 if (! target_big_endian)
7223 offset_expr.X_add_number -= off;
7225 offset_expr.X_add_number += off;
7226 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
7227 (int) BFD_RELOC_LO16, breg);
7241 load_address (&icnt, AT, &offset_expr, &used_at);
7243 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7244 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
7245 "d,v,t", AT, AT, breg);
7246 if (! target_big_endian)
7247 expr1.X_add_number = off;
7249 expr1.X_add_number = 0;
7250 macro_build ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
7251 (int) BFD_RELOC_LO16, AT);
7252 if (! target_big_endian)
7253 expr1.X_add_number = 0;
7255 expr1.X_add_number = off;
7256 macro_build ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
7257 (int) BFD_RELOC_LO16, AT);
7262 load_address (&icnt, AT, &offset_expr, &used_at);
7264 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7265 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
7266 "d,v,t", AT, AT, breg);
7267 if (! target_big_endian)
7268 expr1.X_add_number = 0;
7269 macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
7270 (int) BFD_RELOC_LO16, AT);
7271 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
7273 if (! target_big_endian)
7274 expr1.X_add_number = 1;
7276 expr1.X_add_number = 0;
7277 macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
7278 (int) BFD_RELOC_LO16, AT);
7279 if (! target_big_endian)
7280 expr1.X_add_number = 0;
7282 expr1.X_add_number = 1;
7283 macro_build ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
7284 (int) BFD_RELOC_LO16, AT);
7285 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
7287 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
7292 /* FIXME: Check if this is one of the itbl macros, since they
7293 are added dynamically. */
7294 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
7298 as_warn (_("Macro used $at after \".set noat\""));
7301 /* Implement macros in mips16 mode. */
7305 struct mips_cl_insn *ip;
7308 int xreg, yreg, zreg, tmp;
7312 const char *s, *s2, *s3;
7314 mask = ip->insn_mo->mask;
7316 xreg = (ip->insn_opcode >> MIPS16OP_SH_RX) & MIPS16OP_MASK_RX;
7317 yreg = (ip->insn_opcode >> MIPS16OP_SH_RY) & MIPS16OP_MASK_RY;
7318 zreg = (ip->insn_opcode >> MIPS16OP_SH_RZ) & MIPS16OP_MASK_RZ;
7322 expr1.X_op = O_constant;
7323 expr1.X_op_symbol = NULL;
7324 expr1.X_add_symbol = NULL;
7325 expr1.X_add_number = 1;
7344 mips_emit_delays (true);
7345 ++mips_opts.noreorder;
7346 mips_any_noreorder = 1;
7347 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7348 dbl ? "ddiv" : "div",
7349 "0,x,y", xreg, yreg);
7350 expr1.X_add_number = 2;
7351 macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
7352 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break", "6",
7355 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
7356 since that causes an overflow. We should do that as well,
7357 but I don't see how to do the comparisons without a temporary
7359 --mips_opts.noreorder;
7360 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "x", zreg);
7379 mips_emit_delays (true);
7380 ++mips_opts.noreorder;
7381 mips_any_noreorder = 1;
7382 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "0,x,y",
7384 expr1.X_add_number = 2;
7385 macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
7386 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
7388 --mips_opts.noreorder;
7389 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "x", zreg);
7395 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7396 dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
7397 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "x",
7406 if (imm_expr.X_op != O_constant)
7407 as_bad (_("Unsupported large constant"));
7408 imm_expr.X_add_number = -imm_expr.X_add_number;
7409 macro_build ((char *) NULL, &icnt, &imm_expr,
7410 dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
7414 if (imm_expr.X_op != O_constant)
7415 as_bad (_("Unsupported large constant"));
7416 imm_expr.X_add_number = -imm_expr.X_add_number;
7417 macro_build ((char *) NULL, &icnt, &imm_expr, "addiu",
7422 if (imm_expr.X_op != O_constant)
7423 as_bad (_("Unsupported large constant"));
7424 imm_expr.X_add_number = -imm_expr.X_add_number;
7425 macro_build ((char *) NULL, &icnt, &imm_expr, "daddiu",
7448 goto do_reverse_branch;
7452 goto do_reverse_branch;
7464 goto do_reverse_branch;
7475 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "x,y",
7477 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
7504 goto do_addone_branch_i;
7509 goto do_addone_branch_i;
7524 goto do_addone_branch_i;
7531 if (imm_expr.X_op != O_constant)
7532 as_bad (_("Unsupported large constant"));
7533 ++imm_expr.X_add_number;
7536 macro_build ((char *) NULL, &icnt, &imm_expr, s, s3, xreg);
7537 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
7541 expr1.X_add_number = 0;
7542 macro_build ((char *) NULL, &icnt, &expr1, "slti", "x,8", yreg);
7544 move_register (&icnt, xreg, yreg);
7545 expr1.X_add_number = 2;
7546 macro_build ((char *) NULL, &icnt, &expr1, "bteqz", "p");
7547 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7548 "neg", "x,w", xreg, xreg);
7552 /* For consistency checking, verify that all bits are specified either
7553 by the match/mask part of the instruction definition, or by the
7556 validate_mips_insn (opc)
7557 const struct mips_opcode *opc;
7559 const char *p = opc->args;
7561 unsigned long used_bits = opc->mask;
7563 if ((used_bits & opc->match) != opc->match)
7565 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
7566 opc->name, opc->args);
7569 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
7576 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7577 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7579 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
7580 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
7581 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7582 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7584 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7585 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
7587 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
7589 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
7590 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
7591 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
7592 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
7593 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7594 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
7595 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7596 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7597 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7598 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7599 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7600 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7601 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7602 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
7603 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7604 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
7605 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7607 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
7608 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7609 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7610 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
7612 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7613 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7614 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
7615 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7616 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7617 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7618 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7619 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7620 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7623 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
7624 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
7625 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7627 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
7628 c, opc->name, opc->args);
7632 if (used_bits != 0xffffffff)
7634 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
7635 ~used_bits & 0xffffffff, opc->name, opc->args);
7641 /* This routine assembles an instruction into its binary format. As a
7642 side effect, it sets one of the global variables imm_reloc or
7643 offset_reloc to the type of relocation to do if one of the operands
7644 is an address expression. */
7649 struct mips_cl_insn *ip;
7654 struct mips_opcode *insn;
7657 unsigned int lastregno = 0;
7663 /* If the instruction contains a '.', we first try to match an instruction
7664 including the '.'. Then we try again without the '.'. */
7666 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
7669 /* If we stopped on whitespace, then replace the whitespace with null for
7670 the call to hash_find. Save the character we replaced just in case we
7671 have to re-parse the instruction. */
7678 insn = (struct mips_opcode *) hash_find (op_hash, str);
7680 /* If we didn't find the instruction in the opcode table, try again, but
7681 this time with just the instruction up to, but not including the
7685 /* Restore the character we overwrite above (if any). */
7689 /* Scan up to the first '.' or whitespace. */
7691 *s != '\0' && *s != '.' && !ISSPACE (*s);
7695 /* If we did not find a '.', then we can quit now. */
7698 insn_error = "unrecognized opcode";
7702 /* Lookup the instruction in the hash table. */
7704 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
7706 insn_error = "unrecognized opcode";
7716 assert (strcmp (insn->name, str) == 0);
7718 if (OPCODE_IS_MEMBER (insn,
7720 | (mips_opts.mips16 ? INSN_MIPS16 : 0)
7721 | (mips_opts.ase_mdmx ? INSN_MDMX : 0)
7722 | (mips_opts.ase_mips3d ? INSN_MIPS3D : 0)),
7728 if (insn->pinfo != INSN_MACRO)
7730 if (mips_arch == CPU_R4650 && (insn->pinfo & FP_D) != 0)
7736 if (insn + 1 < &mips_opcodes[NUMOPCODES]
7737 && strcmp (insn->name, insn[1].name) == 0)
7746 static char buf[100];
7747 if (mips_arch_info->is_isa)
7749 _("opcode not supported at this ISA level (%s)"),
7750 mips_cpu_info_from_isa (mips_opts.isa)->name);
7753 _("opcode not supported on this processor: %s (%s)"),
7754 mips_arch_info->name,
7755 mips_cpu_info_from_isa (mips_opts.isa)->name);
7765 ip->insn_opcode = insn->match;
7767 for (args = insn->args;; ++args)
7771 s += strspn (s, " \t");
7775 case '\0': /* end of args */
7788 ip->insn_opcode |= lastregno << OP_SH_RS;
7792 ip->insn_opcode |= lastregno << OP_SH_RT;
7796 ip->insn_opcode |= lastregno << OP_SH_FT;
7800 ip->insn_opcode |= lastregno << OP_SH_FS;
7806 /* Handle optional base register.
7807 Either the base register is omitted or
7808 we must have a left paren. */
7809 /* This is dependent on the next operand specifier
7810 is a base register specification. */
7811 assert (args[1] == 'b' || args[1] == '5'
7812 || args[1] == '-' || args[1] == '4');
7816 case ')': /* these must match exactly */
7821 case '<': /* must be at least one digit */
7823 * According to the manual, if the shift amount is greater
7824 * than 31 or less than 0, then the shift amount should be
7825 * mod 32. In reality the mips assembler issues an error.
7826 * We issue a warning and mask out all but the low 5 bits.
7828 my_getExpression (&imm_expr, s);
7829 check_absolute_expr (ip, &imm_expr);
7830 if ((unsigned long) imm_expr.X_add_number > 31)
7832 as_warn (_("Improper shift amount (%lu)"),
7833 (unsigned long) imm_expr.X_add_number);
7834 imm_expr.X_add_number &= OP_MASK_SHAMT;
7836 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_SHAMT;
7837 imm_expr.X_op = O_absent;
7841 case '>': /* shift amount minus 32 */
7842 my_getExpression (&imm_expr, s);
7843 check_absolute_expr (ip, &imm_expr);
7844 if ((unsigned long) imm_expr.X_add_number < 32
7845 || (unsigned long) imm_expr.X_add_number > 63)
7847 ip->insn_opcode |= (imm_expr.X_add_number - 32) << OP_SH_SHAMT;
7848 imm_expr.X_op = O_absent;
7852 case 'k': /* cache code */
7853 case 'h': /* prefx code */
7854 my_getExpression (&imm_expr, s);
7855 check_absolute_expr (ip, &imm_expr);
7856 if ((unsigned long) imm_expr.X_add_number > 31)
7858 as_warn (_("Invalid value for `%s' (%lu)"),
7860 (unsigned long) imm_expr.X_add_number);
7861 imm_expr.X_add_number &= 0x1f;
7864 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CACHE;
7866 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_PREFX;
7867 imm_expr.X_op = O_absent;
7871 case 'c': /* break code */
7872 my_getExpression (&imm_expr, s);
7873 check_absolute_expr (ip, &imm_expr);
7874 if ((unsigned long) imm_expr.X_add_number > 1023)
7876 as_warn (_("Illegal break code (%lu)"),
7877 (unsigned long) imm_expr.X_add_number);
7878 imm_expr.X_add_number &= OP_MASK_CODE;
7880 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE;
7881 imm_expr.X_op = O_absent;
7885 case 'q': /* lower break code */
7886 my_getExpression (&imm_expr, s);
7887 check_absolute_expr (ip, &imm_expr);
7888 if ((unsigned long) imm_expr.X_add_number > 1023)
7890 as_warn (_("Illegal lower break code (%lu)"),
7891 (unsigned long) imm_expr.X_add_number);
7892 imm_expr.X_add_number &= OP_MASK_CODE2;
7894 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE2;
7895 imm_expr.X_op = O_absent;
7899 case 'B': /* 20-bit syscall/break code. */
7900 my_getExpression (&imm_expr, s);
7901 check_absolute_expr (ip, &imm_expr);
7902 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
7903 as_warn (_("Illegal 20-bit code (%lu)"),
7904 (unsigned long) imm_expr.X_add_number);
7905 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE20;
7906 imm_expr.X_op = O_absent;
7910 case 'C': /* Coprocessor code */
7911 my_getExpression (&imm_expr, s);
7912 check_absolute_expr (ip, &imm_expr);
7913 if ((unsigned long) imm_expr.X_add_number >= (1 << 25))
7915 as_warn (_("Coproccesor code > 25 bits (%lu)"),
7916 (unsigned long) imm_expr.X_add_number);
7917 imm_expr.X_add_number &= ((1 << 25) - 1);
7919 ip->insn_opcode |= imm_expr.X_add_number;
7920 imm_expr.X_op = O_absent;
7924 case 'J': /* 19-bit wait code. */
7925 my_getExpression (&imm_expr, s);
7926 check_absolute_expr (ip, &imm_expr);
7927 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
7928 as_warn (_("Illegal 19-bit code (%lu)"),
7929 (unsigned long) imm_expr.X_add_number);
7930 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE19;
7931 imm_expr.X_op = O_absent;
7935 case 'P': /* Performance register */
7936 my_getExpression (&imm_expr, s);
7937 check_absolute_expr (ip, &imm_expr);
7938 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
7940 as_warn (_("Invalid performance register (%lu)"),
7941 (unsigned long) imm_expr.X_add_number);
7942 imm_expr.X_add_number &= OP_MASK_PERFREG;
7944 ip->insn_opcode |= (imm_expr.X_add_number << OP_SH_PERFREG);
7945 imm_expr.X_op = O_absent;
7949 case 'b': /* base register */
7950 case 'd': /* destination register */
7951 case 's': /* source register */
7952 case 't': /* target register */
7953 case 'r': /* both target and source */
7954 case 'v': /* both dest and source */
7955 case 'w': /* both dest and target */
7956 case 'E': /* coprocessor target register */
7957 case 'G': /* coprocessor destination register */
7958 case 'x': /* ignore register name */
7959 case 'z': /* must be zero register */
7960 case 'U': /* destination register (clo/clz). */
7975 while (ISDIGIT (*s));
7977 as_bad (_("Invalid register number (%d)"), regno);
7979 else if (*args == 'E' || *args == 'G')
7983 if (s[1] == 'r' && s[2] == 'a')
7988 else if (s[1] == 'f' && s[2] == 'p')
7993 else if (s[1] == 's' && s[2] == 'p')
7998 else if (s[1] == 'g' && s[2] == 'p')
8003 else if (s[1] == 'a' && s[2] == 't')
8008 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
8013 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
8018 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
8023 else if (itbl_have_entries)
8028 p = s + 1; /* advance past '$' */
8029 n = itbl_get_field (&p); /* n is name */
8031 /* See if this is a register defined in an
8033 if (itbl_get_reg_val (n, &r))
8035 /* Get_field advances to the start of
8036 the next field, so we need to back
8037 rack to the end of the last field. */
8041 s = strchr (s, '\0');
8054 as_warn (_("Used $at without \".set noat\""));
8060 if (c == 'r' || c == 'v' || c == 'w')
8067 /* 'z' only matches $0. */
8068 if (c == 'z' && regno != 0)
8071 /* Now that we have assembled one operand, we use the args string
8072 * to figure out where it goes in the instruction. */
8079 ip->insn_opcode |= regno << OP_SH_RS;
8083 ip->insn_opcode |= regno << OP_SH_RD;
8086 ip->insn_opcode |= regno << OP_SH_RD;
8087 ip->insn_opcode |= regno << OP_SH_RT;
8092 ip->insn_opcode |= regno << OP_SH_RT;
8095 /* This case exists because on the r3000 trunc
8096 expands into a macro which requires a gp
8097 register. On the r6000 or r4000 it is
8098 assembled into a single instruction which
8099 ignores the register. Thus the insn version
8100 is MIPS_ISA2 and uses 'x', and the macro
8101 version is MIPS_ISA1 and uses 't'. */
8104 /* This case is for the div instruction, which
8105 acts differently if the destination argument
8106 is $0. This only matches $0, and is checked
8107 outside the switch. */
8110 /* Itbl operand; not yet implemented. FIXME ?? */
8112 /* What about all other operands like 'i', which
8113 can be specified in the opcode table? */
8123 ip->insn_opcode |= lastregno << OP_SH_RS;
8126 ip->insn_opcode |= lastregno << OP_SH_RT;
8131 case 'O': /* MDMX alignment immediate constant. */
8132 my_getExpression (&imm_expr, s);
8133 check_absolute_expr (ip, &imm_expr);
8134 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
8136 as_warn ("Improper align amount (%ld), using low bits",
8137 (long) imm_expr.X_add_number);
8138 imm_expr.X_add_number &= OP_MASK_ALN;
8140 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_ALN;
8141 imm_expr.X_op = O_absent;
8145 case 'Q': /* MDMX vector, element sel, or const. */
8148 /* MDMX Immediate. */
8149 my_getExpression (&imm_expr, s);
8150 check_absolute_expr (ip, &imm_expr);
8151 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
8153 as_warn (_("Invalid MDMX Immediate (%ld)"),
8154 (long) imm_expr.X_add_number);
8155 imm_expr.X_add_number &= OP_MASK_FT;
8157 imm_expr.X_add_number &= OP_MASK_FT;
8158 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8159 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
8161 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
8162 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_FT;
8163 imm_expr.X_op = O_absent;
8167 /* Not MDMX Immediate. Fall through. */
8168 case 'X': /* MDMX destination register. */
8169 case 'Y': /* MDMX source register. */
8170 case 'Z': /* MDMX target register. */
8172 case 'D': /* floating point destination register */
8173 case 'S': /* floating point source register */
8174 case 'T': /* floating point target register */
8175 case 'R': /* floating point source register */
8179 /* Accept $fN for FP and MDMX register numbers, and in
8180 addition accept $vN for MDMX register numbers. */
8181 if ((s[0] == '$' && s[1] == 'f' && ISDIGIT (s[2]))
8182 || (is_mdmx != 0 && s[0] == '$' && s[1] == 'v'
8193 while (ISDIGIT (*s));
8196 as_bad (_("Invalid float register number (%d)"), regno);
8198 if ((regno & 1) != 0
8200 && ! (strcmp (str, "mtc1") == 0
8201 || strcmp (str, "mfc1") == 0
8202 || strcmp (str, "lwc1") == 0
8203 || strcmp (str, "swc1") == 0
8204 || strcmp (str, "l.s") == 0
8205 || strcmp (str, "s.s") == 0))
8206 as_warn (_("Float register should be even, was %d"),
8214 if (c == 'V' || c == 'W')
8225 ip->insn_opcode |= regno << OP_SH_FD;
8230 ip->insn_opcode |= regno << OP_SH_FS;
8233 /* This is like 'Z', but also needs to fix the MDMX
8234 vector/scalar select bits. Note that the
8235 scalar immediate case is handled above. */
8238 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
8239 int max_el = (is_qh ? 3 : 7);
8241 my_getExpression(&imm_expr, s);
8242 check_absolute_expr (ip, &imm_expr);
8244 if (imm_expr.X_add_number > max_el)
8245 as_bad(_("Bad element selector %ld"),
8246 (long) imm_expr.X_add_number);
8247 imm_expr.X_add_number &= max_el;
8248 ip->insn_opcode |= (imm_expr.X_add_number
8252 as_warn(_("Expecting ']' found '%s'"), s);
8258 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8259 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
8262 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
8269 ip->insn_opcode |= regno << OP_SH_FT;
8272 ip->insn_opcode |= regno << OP_SH_FR;
8282 ip->insn_opcode |= lastregno << OP_SH_FS;
8285 ip->insn_opcode |= lastregno << OP_SH_FT;
8291 my_getExpression (&imm_expr, s);
8292 if (imm_expr.X_op != O_big
8293 && imm_expr.X_op != O_constant)
8294 insn_error = _("absolute expression required");
8299 my_getExpression (&offset_expr, s);
8300 *imm_reloc = BFD_RELOC_32;
8313 unsigned char temp[8];
8315 unsigned int length;
8320 /* These only appear as the last operand in an
8321 instruction, and every instruction that accepts
8322 them in any variant accepts them in all variants.
8323 This means we don't have to worry about backing out
8324 any changes if the instruction does not match.
8326 The difference between them is the size of the
8327 floating point constant and where it goes. For 'F'
8328 and 'L' the constant is 64 bits; for 'f' and 'l' it
8329 is 32 bits. Where the constant is placed is based
8330 on how the MIPS assembler does things:
8333 f -- immediate value
8336 The .lit4 and .lit8 sections are only used if
8337 permitted by the -G argument.
8339 When generating embedded PIC code, we use the
8340 .lit8 section but not the .lit4 section (we can do
8341 .lit4 inline easily; we need to put .lit8
8342 somewhere in the data segment, and using .lit8
8343 permits the linker to eventually combine identical
8346 The code below needs to know whether the target register
8347 is 32 or 64 bits wide. It relies on the fact 'f' and
8348 'F' are used with GPR-based instructions and 'l' and
8349 'L' are used with FPR-based instructions. */
8351 f64 = *args == 'F' || *args == 'L';
8352 using_gprs = *args == 'F' || *args == 'f';
8354 save_in = input_line_pointer;
8355 input_line_pointer = s;
8356 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
8358 s = input_line_pointer;
8359 input_line_pointer = save_in;
8360 if (err != NULL && *err != '\0')
8362 as_bad (_("Bad floating point constant: %s"), err);
8363 memset (temp, '\0', sizeof temp);
8364 length = f64 ? 8 : 4;
8367 assert (length == (unsigned) (f64 ? 8 : 4));
8371 && (! USE_GLOBAL_POINTER_OPT
8372 || mips_pic == EMBEDDED_PIC
8373 || g_switch_value < 4
8374 || (temp[0] == 0 && temp[1] == 0)
8375 || (temp[2] == 0 && temp[3] == 0))))
8377 imm_expr.X_op = O_constant;
8378 if (! target_big_endian)
8379 imm_expr.X_add_number = bfd_getl32 (temp);
8381 imm_expr.X_add_number = bfd_getb32 (temp);
8384 && ! mips_disable_float_construction
8385 /* Constants can only be constructed in GPRs and
8386 copied to FPRs if the GPRs are at least as wide
8387 as the FPRs. Force the constant into memory if
8388 we are using 64-bit FPRs but the GPRs are only
8391 || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
8392 && ((temp[0] == 0 && temp[1] == 0)
8393 || (temp[2] == 0 && temp[3] == 0))
8394 && ((temp[4] == 0 && temp[5] == 0)
8395 || (temp[6] == 0 && temp[7] == 0)))
8397 /* The value is simple enough to load with a couple of
8398 instructions. If using 32-bit registers, set
8399 imm_expr to the high order 32 bits and offset_expr to
8400 the low order 32 bits. Otherwise, set imm_expr to
8401 the entire 64 bit constant. */
8402 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
8404 imm_expr.X_op = O_constant;
8405 offset_expr.X_op = O_constant;
8406 if (! target_big_endian)
8408 imm_expr.X_add_number = bfd_getl32 (temp + 4);
8409 offset_expr.X_add_number = bfd_getl32 (temp);
8413 imm_expr.X_add_number = bfd_getb32 (temp);
8414 offset_expr.X_add_number = bfd_getb32 (temp + 4);
8416 if (offset_expr.X_add_number == 0)
8417 offset_expr.X_op = O_absent;
8419 else if (sizeof (imm_expr.X_add_number) > 4)
8421 imm_expr.X_op = O_constant;
8422 if (! target_big_endian)
8423 imm_expr.X_add_number = bfd_getl64 (temp);
8425 imm_expr.X_add_number = bfd_getb64 (temp);
8429 imm_expr.X_op = O_big;
8430 imm_expr.X_add_number = 4;
8431 if (! target_big_endian)
8433 generic_bignum[0] = bfd_getl16 (temp);
8434 generic_bignum[1] = bfd_getl16 (temp + 2);
8435 generic_bignum[2] = bfd_getl16 (temp + 4);
8436 generic_bignum[3] = bfd_getl16 (temp + 6);
8440 generic_bignum[0] = bfd_getb16 (temp + 6);
8441 generic_bignum[1] = bfd_getb16 (temp + 4);
8442 generic_bignum[2] = bfd_getb16 (temp + 2);
8443 generic_bignum[3] = bfd_getb16 (temp);
8449 const char *newname;
8452 /* Switch to the right section. */
8454 subseg = now_subseg;
8457 default: /* unused default case avoids warnings. */
8459 newname = RDATA_SECTION_NAME;
8460 if ((USE_GLOBAL_POINTER_OPT && g_switch_value >= 8)
8461 || mips_pic == EMBEDDED_PIC)
8465 if (mips_pic == EMBEDDED_PIC)
8468 newname = RDATA_SECTION_NAME;
8471 assert (!USE_GLOBAL_POINTER_OPT
8472 || g_switch_value >= 4);
8476 new_seg = subseg_new (newname, (subsegT) 0);
8477 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
8478 bfd_set_section_flags (stdoutput, new_seg,
8483 frag_align (*args == 'l' ? 2 : 3, 0, 0);
8484 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
8485 && strcmp (TARGET_OS, "elf") != 0)
8486 record_alignment (new_seg, 4);
8488 record_alignment (new_seg, *args == 'l' ? 2 : 3);
8490 as_bad (_("Can't use floating point insn in this section"));
8492 /* Set the argument to the current address in the
8494 offset_expr.X_op = O_symbol;
8495 offset_expr.X_add_symbol =
8496 symbol_new ("L0\001", now_seg,
8497 (valueT) frag_now_fix (), frag_now);
8498 offset_expr.X_add_number = 0;
8500 /* Put the floating point number into the section. */
8501 p = frag_more ((int) length);
8502 memcpy (p, temp, length);
8504 /* Switch back to the original section. */
8505 subseg_set (seg, subseg);
8510 case 'i': /* 16 bit unsigned immediate */
8511 case 'j': /* 16 bit signed immediate */
8512 *imm_reloc = BFD_RELOC_LO16;
8513 c = my_getSmallExpression (&imm_expr, s);
8518 if (imm_expr.X_op == O_constant)
8519 imm_expr.X_add_number =
8520 (imm_expr.X_add_number >> 16) & 0xffff;
8522 else if (c == S_EX_HIGHEST)
8523 *imm_reloc = BFD_RELOC_MIPS_HIGHEST;
8524 else if (c == S_EX_HIGHER)
8525 *imm_reloc = BFD_RELOC_MIPS_HIGHER;
8526 else if (c == S_EX_GP_REL)
8528 /* This occurs in NewABI only. */
8529 c = my_getSmallExpression (&imm_expr, s);
8531 as_bad (_("bad composition of relocations"));
8534 c = my_getSmallExpression (&imm_expr, s);
8536 as_bad (_("bad composition of relocations"));
8539 imm_reloc[0] = BFD_RELOC_GPREL16;
8540 imm_reloc[1] = BFD_RELOC_MIPS_SUB;
8541 imm_reloc[2] = BFD_RELOC_LO16;
8546 else if (c == S_EX_HI)
8548 *imm_reloc = BFD_RELOC_HI16_S;
8549 imm_unmatched_hi = true;
8552 *imm_reloc = BFD_RELOC_HI16;
8554 else if (imm_expr.X_op == O_constant)
8555 imm_expr.X_add_number &= 0xffff;
8559 if ((c == S_EX_NONE && imm_expr.X_op != O_constant)
8560 || ((imm_expr.X_add_number < 0
8561 || imm_expr.X_add_number >= 0x10000)
8562 && imm_expr.X_op == O_constant))
8564 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8565 !strcmp (insn->name, insn[1].name))
8567 if (imm_expr.X_op == O_constant
8568 || imm_expr.X_op == O_big)
8569 as_bad (_("16 bit expression not in range 0..65535"));
8577 /* The upper bound should be 0x8000, but
8578 unfortunately the MIPS assembler accepts numbers
8579 from 0x8000 to 0xffff and sign extends them, and
8580 we want to be compatible. We only permit this
8581 extended range for an instruction which does not
8582 provide any further alternates, since those
8583 alternates may handle other cases. People should
8584 use the numbers they mean, rather than relying on
8585 a mysterious sign extension. */
8586 more = (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8587 strcmp (insn->name, insn[1].name) == 0);
8592 if ((c == S_EX_NONE && imm_expr.X_op != O_constant)
8593 || ((imm_expr.X_add_number < -0x8000
8594 || imm_expr.X_add_number >= max)
8595 && imm_expr.X_op == O_constant)
8597 && imm_expr.X_add_number < 0
8599 && imm_expr.X_unsigned
8600 && sizeof (imm_expr.X_add_number) <= 4))
8604 if (imm_expr.X_op == O_constant
8605 || imm_expr.X_op == O_big)
8606 as_bad (_("16 bit expression not in range -32768..32767"));
8612 case 'o': /* 16 bit offset */
8613 c = my_getSmallExpression (&offset_expr, s);
8615 /* If this value won't fit into a 16 bit offset, then go
8616 find a macro that will generate the 32 bit offset
8619 && (offset_expr.X_op != O_constant
8620 || offset_expr.X_add_number >= 0x8000
8621 || offset_expr.X_add_number < -0x8000))
8626 if (offset_expr.X_op != O_constant)
8628 offset_expr.X_add_number =
8629 (offset_expr.X_add_number >> 16) & 0xffff;
8631 *offset_reloc = BFD_RELOC_LO16;
8635 case 'p': /* pc relative offset */
8636 if (mips_pic == EMBEDDED_PIC)
8637 *offset_reloc = BFD_RELOC_16_PCREL_S2;
8639 *offset_reloc = BFD_RELOC_16_PCREL;
8640 my_getExpression (&offset_expr, s);
8644 case 'u': /* upper 16 bits */
8645 c = my_getSmallExpression (&imm_expr, s);
8646 *imm_reloc = BFD_RELOC_LO16;
8651 if (imm_expr.X_op == O_constant)
8652 imm_expr.X_add_number =
8653 (imm_expr.X_add_number >> 16) & 0xffff;
8654 else if (c == S_EX_HI)
8656 *imm_reloc = BFD_RELOC_HI16_S;
8657 imm_unmatched_hi = true;
8660 else if (c == S_EX_HIGHEST)
8661 *imm_reloc = BFD_RELOC_MIPS_HIGHEST;
8662 else if (c == S_EX_GP_REL)
8664 /* This occurs in NewABI only. */
8665 c = my_getSmallExpression (&imm_expr, s);
8667 as_bad (_("bad composition of relocations"));
8670 c = my_getSmallExpression (&imm_expr, s);
8672 as_bad (_("bad composition of relocations"));
8675 imm_reloc[0] = BFD_RELOC_GPREL16;
8676 imm_reloc[1] = BFD_RELOC_MIPS_SUB;
8677 imm_reloc[2] = BFD_RELOC_HI16_S;
8683 *imm_reloc = BFD_RELOC_HI16;
8685 else if (imm_expr.X_op == O_constant)
8686 imm_expr.X_add_number &= 0xffff;
8688 if (imm_expr.X_op == O_constant
8689 && (imm_expr.X_add_number < 0
8690 || imm_expr.X_add_number >= 0x10000))
8691 as_bad (_("lui expression not in range 0..65535"));
8695 case 'a': /* 26 bit address */
8696 my_getExpression (&offset_expr, s);
8698 *offset_reloc = BFD_RELOC_MIPS_JMP;
8701 case 'N': /* 3 bit branch condition code */
8702 case 'M': /* 3 bit compare condition code */
8703 if (strncmp (s, "$fcc", 4) != 0)
8713 while (ISDIGIT (*s));
8715 as_bad (_("invalid condition code register $fcc%d"), regno);
8717 ip->insn_opcode |= regno << OP_SH_BCC;
8719 ip->insn_opcode |= regno << OP_SH_CCC;
8723 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
8734 while (ISDIGIT (*s));
8737 c = 8; /* Invalid sel value. */
8740 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
8741 ip->insn_opcode |= c;
8745 as_bad (_("bad char = '%c'\n"), *args);
8750 /* Args don't match. */
8751 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8752 !strcmp (insn->name, insn[1].name))
8756 insn_error = _("illegal operands");
8761 insn_error = _("illegal operands");
8766 /* This routine assembles an instruction into its binary format when
8767 assembling for the mips16. As a side effect, it sets one of the
8768 global variables imm_reloc or offset_reloc to the type of
8769 relocation to do if one of the operands is an address expression.
8770 It also sets mips16_small and mips16_ext if the user explicitly
8771 requested a small or extended instruction. */
8776 struct mips_cl_insn *ip;
8780 struct mips_opcode *insn;
8783 unsigned int lastregno = 0;
8788 mips16_small = false;
8791 for (s = str; ISLOWER (*s); ++s)
8803 if (s[1] == 't' && s[2] == ' ')
8806 mips16_small = true;
8810 else if (s[1] == 'e' && s[2] == ' ')
8819 insn_error = _("unknown opcode");
8823 if (mips_opts.noautoextend && ! mips16_ext)
8824 mips16_small = true;
8826 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
8828 insn_error = _("unrecognized opcode");
8835 assert (strcmp (insn->name, str) == 0);
8838 ip->insn_opcode = insn->match;
8839 ip->use_extend = false;
8840 imm_expr.X_op = O_absent;
8841 imm_reloc[0] = BFD_RELOC_UNUSED;
8842 imm_reloc[1] = BFD_RELOC_UNUSED;
8843 imm_reloc[2] = BFD_RELOC_UNUSED;
8844 offset_expr.X_op = O_absent;
8845 offset_reloc[0] = BFD_RELOC_UNUSED;
8846 offset_reloc[1] = BFD_RELOC_UNUSED;
8847 offset_reloc[2] = BFD_RELOC_UNUSED;
8848 for (args = insn->args; 1; ++args)
8855 /* In this switch statement we call break if we did not find
8856 a match, continue if we did find a match, or return if we
8865 /* Stuff the immediate value in now, if we can. */
8866 if (imm_expr.X_op == O_constant
8867 && *imm_reloc > BFD_RELOC_UNUSED
8868 && insn->pinfo != INSN_MACRO)
8870 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
8871 imm_expr.X_add_number, true, mips16_small,
8872 mips16_ext, &ip->insn_opcode,
8873 &ip->use_extend, &ip->extend);
8874 imm_expr.X_op = O_absent;
8875 *imm_reloc = BFD_RELOC_UNUSED;
8889 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
8892 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
8908 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
8910 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
8937 while (ISDIGIT (*s));
8940 as_bad (_("invalid register number (%d)"), regno);
8946 if (s[1] == 'r' && s[2] == 'a')
8951 else if (s[1] == 'f' && s[2] == 'p')
8956 else if (s[1] == 's' && s[2] == 'p')
8961 else if (s[1] == 'g' && s[2] == 'p')
8966 else if (s[1] == 'a' && s[2] == 't')
8971 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
8976 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
8981 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
8994 if (c == 'v' || c == 'w')
8996 regno = mips16_to_32_reg_map[lastregno];
9010 regno = mips32_to_16_reg_map[regno];
9015 regno = ILLEGAL_REG;
9020 regno = ILLEGAL_REG;
9025 regno = ILLEGAL_REG;
9030 if (regno == AT && ! mips_opts.noat)
9031 as_warn (_("used $at without \".set noat\""));
9038 if (regno == ILLEGAL_REG)
9045 ip->insn_opcode |= regno << MIPS16OP_SH_RX;
9049 ip->insn_opcode |= regno << MIPS16OP_SH_RY;
9052 ip->insn_opcode |= regno << MIPS16OP_SH_RZ;
9055 ip->insn_opcode |= regno << MIPS16OP_SH_MOVE32Z;
9061 ip->insn_opcode |= regno << MIPS16OP_SH_REGR32;
9064 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
9065 ip->insn_opcode |= regno << MIPS16OP_SH_REG32R;
9075 if (strncmp (s, "$pc", 3) == 0)
9099 && strncmp (s + 1, "gprel(", sizeof "gprel(" - 1) == 0)
9101 /* This is %gprel(SYMBOL). We need to read SYMBOL,
9102 and generate the appropriate reloc. If the text
9103 inside %gprel is not a symbol name with an
9104 optional offset, then we generate a normal reloc
9105 and will probably fail later. */
9106 my_getExpression (&imm_expr, s + sizeof "%gprel" - 1);
9107 if (imm_expr.X_op == O_symbol)
9110 *imm_reloc = BFD_RELOC_MIPS16_GPREL;
9112 ip->use_extend = true;
9119 /* Just pick up a normal expression. */
9120 my_getExpression (&imm_expr, s);
9123 if (imm_expr.X_op == O_register)
9125 /* What we thought was an expression turned out to
9128 if (s[0] == '(' && args[1] == '(')
9130 /* It looks like the expression was omitted
9131 before a register indirection, which means
9132 that the expression is implicitly zero. We
9133 still set up imm_expr, so that we handle
9134 explicit extensions correctly. */
9135 imm_expr.X_op = O_constant;
9136 imm_expr.X_add_number = 0;
9137 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9144 /* We need to relax this instruction. */
9145 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9154 /* We use offset_reloc rather than imm_reloc for the PC
9155 relative operands. This lets macros with both
9156 immediate and address operands work correctly. */
9157 my_getExpression (&offset_expr, s);
9159 if (offset_expr.X_op == O_register)
9162 /* We need to relax this instruction. */
9163 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
9167 case '6': /* break code */
9168 my_getExpression (&imm_expr, s);
9169 check_absolute_expr (ip, &imm_expr);
9170 if ((unsigned long) imm_expr.X_add_number > 63)
9172 as_warn (_("Invalid value for `%s' (%lu)"),
9174 (unsigned long) imm_expr.X_add_number);
9175 imm_expr.X_add_number &= 0x3f;
9177 ip->insn_opcode |= imm_expr.X_add_number << MIPS16OP_SH_IMM6;
9178 imm_expr.X_op = O_absent;
9182 case 'a': /* 26 bit address */
9183 my_getExpression (&offset_expr, s);
9185 *offset_reloc = BFD_RELOC_MIPS16_JMP;
9186 ip->insn_opcode <<= 16;
9189 case 'l': /* register list for entry macro */
9190 case 'L': /* register list for exit macro */
9200 int freg, reg1, reg2;
9202 while (*s == ' ' || *s == ',')
9206 as_bad (_("can't parse register list"));
9218 while (ISDIGIT (*s))
9240 as_bad (_("invalid register list"));
9245 while (ISDIGIT (*s))
9252 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
9257 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
9262 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
9263 mask |= (reg2 - 3) << 3;
9264 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
9265 mask |= (reg2 - 15) << 1;
9266 else if (reg1 == RA && reg2 == RA)
9270 as_bad (_("invalid register list"));
9274 /* The mask is filled in in the opcode table for the
9275 benefit of the disassembler. We remove it before
9276 applying the actual mask. */
9277 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
9278 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
9282 case 'e': /* extend code */
9283 my_getExpression (&imm_expr, s);
9284 check_absolute_expr (ip, &imm_expr);
9285 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
9287 as_warn (_("Invalid value for `%s' (%lu)"),
9289 (unsigned long) imm_expr.X_add_number);
9290 imm_expr.X_add_number &= 0x7ff;
9292 ip->insn_opcode |= imm_expr.X_add_number;
9293 imm_expr.X_op = O_absent;
9303 /* Args don't match. */
9304 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
9305 strcmp (insn->name, insn[1].name) == 0)
9312 insn_error = _("illegal operands");
9318 /* This structure holds information we know about a mips16 immediate
9321 struct mips16_immed_operand
9323 /* The type code used in the argument string in the opcode table. */
9325 /* The number of bits in the short form of the opcode. */
9327 /* The number of bits in the extended form of the opcode. */
9329 /* The amount by which the short form is shifted when it is used;
9330 for example, the sw instruction has a shift count of 2. */
9332 /* The amount by which the short form is shifted when it is stored
9333 into the instruction code. */
9335 /* Non-zero if the short form is unsigned. */
9337 /* Non-zero if the extended form is unsigned. */
9339 /* Non-zero if the value is PC relative. */
9343 /* The mips16 immediate operand types. */
9345 static const struct mips16_immed_operand mips16_immed_operands[] =
9347 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9348 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9349 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9350 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9351 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
9352 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
9353 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
9354 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
9355 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
9356 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
9357 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
9358 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
9359 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
9360 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
9361 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
9362 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
9363 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9364 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9365 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
9366 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
9367 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
9370 #define MIPS16_NUM_IMMED \
9371 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
9373 /* Handle a mips16 instruction with an immediate value. This or's the
9374 small immediate value into *INSN. It sets *USE_EXTEND to indicate
9375 whether an extended value is needed; if one is needed, it sets
9376 *EXTEND to the value. The argument type is TYPE. The value is VAL.
9377 If SMALL is true, an unextended opcode was explicitly requested.
9378 If EXT is true, an extended opcode was explicitly requested. If
9379 WARN is true, warn if EXT does not match reality. */
9382 mips16_immed (file, line, type, val, warn, small, ext, insn, use_extend,
9391 unsigned long *insn;
9392 boolean *use_extend;
9393 unsigned short *extend;
9395 register const struct mips16_immed_operand *op;
9396 int mintiny, maxtiny;
9399 op = mips16_immed_operands;
9400 while (op->type != type)
9403 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
9408 if (type == '<' || type == '>' || type == '[' || type == ']')
9411 maxtiny = 1 << op->nbits;
9416 maxtiny = (1 << op->nbits) - 1;
9421 mintiny = - (1 << (op->nbits - 1));
9422 maxtiny = (1 << (op->nbits - 1)) - 1;
9425 /* Branch offsets have an implicit 0 in the lowest bit. */
9426 if (type == 'p' || type == 'q')
9429 if ((val & ((1 << op->shift) - 1)) != 0
9430 || val < (mintiny << op->shift)
9431 || val > (maxtiny << op->shift))
9436 if (warn && ext && ! needext)
9437 as_warn_where (file, line,
9438 _("extended operand requested but not required"));
9439 if (small && needext)
9440 as_bad_where (file, line, _("invalid unextended operand value"));
9442 if (small || (! ext && ! needext))
9446 *use_extend = false;
9447 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
9448 insnval <<= op->op_shift;
9453 long minext, maxext;
9459 maxext = (1 << op->extbits) - 1;
9463 minext = - (1 << (op->extbits - 1));
9464 maxext = (1 << (op->extbits - 1)) - 1;
9466 if (val < minext || val > maxext)
9467 as_bad_where (file, line,
9468 _("operand value out of range for instruction"));
9471 if (op->extbits == 16)
9473 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
9476 else if (op->extbits == 15)
9478 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
9483 extval = ((val & 0x1f) << 6) | (val & 0x20);
9487 *extend = (unsigned short) extval;
9492 static struct percent_op_match
9495 const enum small_ex_type type;
9500 {"%call_hi", S_EX_CALL_HI},
9501 {"%call_lo", S_EX_CALL_LO},
9502 {"%call16", S_EX_CALL16},
9503 {"%got_disp", S_EX_GOT_DISP},
9504 {"%got_page", S_EX_GOT_PAGE},
9505 {"%got_ofst", S_EX_GOT_OFST},
9506 {"%got_hi", S_EX_GOT_HI},
9507 {"%got_lo", S_EX_GOT_LO},
9509 {"%gp_rel", S_EX_GP_REL},
9510 {"%half", S_EX_HALF},
9511 {"%highest", S_EX_HIGHEST},
9512 {"%higher", S_EX_HIGHER},
9518 /* Parse small expression input. STR gets adjusted to eat up whitespace.
9519 It detects valid "%percent_op(...)" and "($reg)" strings. Percent_op's
9520 can be nested, this is handled by blanking the innermost, parsing the
9521 rest by subsequent calls. */
9524 my_getSmallParser (str, len, nestlevel)
9530 *str += strspn (*str, " \t");
9531 /* Check for expression in parentheses. */
9534 char *b = *str + 1 + strspn (*str + 1, " \t");
9537 /* Check for base register. */
9541 && (e = b + strcspn (b, ") \t"))
9542 && e - b > 1 && e - b < 4)
9545 && ((b[1] == 'f' && b[2] == 'p')
9546 || (b[1] == 's' && b[2] == 'p')
9547 || (b[1] == 'g' && b[2] == 'p')
9548 || (b[1] == 'a' && b[2] == 't')
9550 && ISDIGIT (b[2]))))
9551 || (ISDIGIT (b[1])))
9553 *len = strcspn (*str, ")") + 1;
9554 return S_EX_REGISTER;
9558 /* Check for percent_op (in parentheses). */
9559 else if (b[0] == '%')
9562 return my_getPercentOp (str, len, nestlevel);
9565 /* Some other expression in the parentheses, which can contain
9566 parentheses itself. Attempt to find the matching one. */
9572 for (s = *str + 1; *s && pcnt; s++, (*len)++)
9581 /* Check for percent_op (outside of parentheses). */
9582 else if (*str[0] == '%')
9583 return my_getPercentOp (str, len, nestlevel);
9585 /* Any other expression. */
9590 my_getPercentOp (str, len, nestlevel)
9595 char *tmp = *str + 1;
9598 while (ISALPHA (*tmp) || *tmp == '_')
9600 *tmp = TOLOWER (*tmp);
9603 while (i < (sizeof (percent_op) / sizeof (struct percent_op_match)))
9605 if (strncmp (*str, percent_op[i].str, strlen (percent_op[i].str)))
9609 int type = percent_op[i].type;
9611 /* Only %hi and %lo are allowed for OldABI. */
9612 if (! HAVE_NEWABI && type != S_EX_HI && type != S_EX_LO)
9615 *len = strlen (percent_op[i].str);
9624 my_getSmallExpression (ep, str)
9628 static char *oldstr = NULL;
9634 /* Don't update oldstr if the last call had nested percent_op's. We need
9635 it to parse the outer ones later. */
9642 c = my_getSmallParser (&str, &len, &nestlevel);
9643 if (c != S_EX_NONE && c != S_EX_REGISTER)
9646 while (c != S_EX_NONE && c != S_EX_REGISTER);
9650 /* A percent_op was encountered. Don't try to get an expression if
9651 it is already blanked out. */
9652 if (*(str + strspn (str + 1, " )")) != ')')
9656 /* Let my_getExpression() stop at the closing parenthesis. */
9657 save = *(str + len);
9658 *(str + len) = '\0';
9659 my_getExpression (ep, str);
9660 *(str + len) = save;
9664 /* Blank out including the % sign and the proper matching
9667 char *s = strrchr (oldstr, '%');
9670 for (end = strchr (s, '(') + 1; *end && pcnt; end++)
9674 else if (*end == ')')
9678 memset (s, ' ', end - s);
9682 expr_end = str + len;
9686 else if (c == S_EX_NONE)
9688 my_getExpression (ep, str);
9690 else if (c == S_EX_REGISTER)
9692 ep->X_op = O_constant;
9694 ep->X_add_symbol = NULL;
9695 ep->X_op_symbol = NULL;
9696 ep->X_add_number = 0;
9700 as_fatal (_("internal error"));
9704 /* All percent_op's have been handled. */
9711 my_getExpression (ep, str)
9718 save_in = input_line_pointer;
9719 input_line_pointer = str;
9721 expr_end = input_line_pointer;
9722 input_line_pointer = save_in;
9724 /* If we are in mips16 mode, and this is an expression based on `.',
9725 then we bump the value of the symbol by 1 since that is how other
9726 text symbols are handled. We don't bother to handle complex
9727 expressions, just `.' plus or minus a constant. */
9728 if (mips_opts.mips16
9729 && ep->X_op == O_symbol
9730 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
9731 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
9732 && symbol_get_frag (ep->X_add_symbol) == frag_now
9733 && symbol_constant_p (ep->X_add_symbol)
9734 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
9735 S_SET_VALUE (ep->X_add_symbol, val + 1);
9738 /* Turn a string in input_line_pointer into a floating point constant
9739 of type TYPE, and store the appropriate bytes in *LITP. The number
9740 of LITTLENUMS emitted is stored in *SIZEP. An error message is
9741 returned, or NULL on OK. */
9744 md_atof (type, litP, sizeP)
9750 LITTLENUM_TYPE words[4];
9766 return _("bad call to md_atof");
9769 t = atof_ieee (input_line_pointer, type, words);
9771 input_line_pointer = t;
9775 if (! target_big_endian)
9777 for (i = prec - 1; i >= 0; i--)
9779 md_number_to_chars (litP, (valueT) words[i], 2);
9785 for (i = 0; i < prec; i++)
9787 md_number_to_chars (litP, (valueT) words[i], 2);
9796 md_number_to_chars (buf, val, n)
9801 if (target_big_endian)
9802 number_to_chars_bigendian (buf, val, n);
9804 number_to_chars_littleendian (buf, val, n);
9808 static int support_64bit_objects(void)
9810 const char **list, **l;
9812 list = bfd_target_list ();
9813 for (l = list; *l != NULL; l++)
9815 /* This is traditional mips */
9816 if (strcmp (*l, "elf64-tradbigmips") == 0
9817 || strcmp (*l, "elf64-tradlittlemips") == 0)
9819 if (strcmp (*l, "elf64-bigmips") == 0
9820 || strcmp (*l, "elf64-littlemips") == 0)
9824 return (*l != NULL);
9826 #endif /* OBJ_ELF */
9828 const char *md_shortopts = "nO::g::G:";
9830 struct option md_longopts[] =
9832 #define OPTION_MIPS1 (OPTION_MD_BASE + 1)
9833 {"mips0", no_argument, NULL, OPTION_MIPS1},
9834 {"mips1", no_argument, NULL, OPTION_MIPS1},
9835 #define OPTION_MIPS2 (OPTION_MD_BASE + 2)
9836 {"mips2", no_argument, NULL, OPTION_MIPS2},
9837 #define OPTION_MIPS3 (OPTION_MD_BASE + 3)
9838 {"mips3", no_argument, NULL, OPTION_MIPS3},
9839 #define OPTION_MIPS4 (OPTION_MD_BASE + 4)
9840 {"mips4", no_argument, NULL, OPTION_MIPS4},
9841 #define OPTION_MIPS5 (OPTION_MD_BASE + 5)
9842 {"mips5", no_argument, NULL, OPTION_MIPS5},
9843 #define OPTION_MIPS32 (OPTION_MD_BASE + 6)
9844 {"mips32", no_argument, NULL, OPTION_MIPS32},
9845 #define OPTION_MIPS64 (OPTION_MD_BASE + 7)
9846 {"mips64", no_argument, NULL, OPTION_MIPS64},
9847 #define OPTION_MEMBEDDED_PIC (OPTION_MD_BASE + 8)
9848 {"membedded-pic", no_argument, NULL, OPTION_MEMBEDDED_PIC},
9849 #define OPTION_TRAP (OPTION_MD_BASE + 9)
9850 {"trap", no_argument, NULL, OPTION_TRAP},
9851 {"no-break", no_argument, NULL, OPTION_TRAP},
9852 #define OPTION_BREAK (OPTION_MD_BASE + 10)
9853 {"break", no_argument, NULL, OPTION_BREAK},
9854 {"no-trap", no_argument, NULL, OPTION_BREAK},
9855 #define OPTION_EB (OPTION_MD_BASE + 11)
9856 {"EB", no_argument, NULL, OPTION_EB},
9857 #define OPTION_EL (OPTION_MD_BASE + 12)
9858 {"EL", no_argument, NULL, OPTION_EL},
9859 #define OPTION_MIPS16 (OPTION_MD_BASE + 13)
9860 {"mips16", no_argument, NULL, OPTION_MIPS16},
9861 #define OPTION_NO_MIPS16 (OPTION_MD_BASE + 14)
9862 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
9863 #define OPTION_M7000_HILO_FIX (OPTION_MD_BASE + 15)
9864 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
9865 #define OPTION_MNO_7000_HILO_FIX (OPTION_MD_BASE + 16)
9866 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
9867 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
9868 #define OPTION_FP32 (OPTION_MD_BASE + 17)
9869 {"mfp32", no_argument, NULL, OPTION_FP32},
9870 #define OPTION_GP32 (OPTION_MD_BASE + 18)
9871 {"mgp32", no_argument, NULL, OPTION_GP32},
9872 #define OPTION_CONSTRUCT_FLOATS (OPTION_MD_BASE + 19)
9873 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
9874 #define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MD_BASE + 20)
9875 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
9876 #define OPTION_MARCH (OPTION_MD_BASE + 21)
9877 {"march", required_argument, NULL, OPTION_MARCH},
9878 #define OPTION_MTUNE (OPTION_MD_BASE + 22)
9879 {"mtune", required_argument, NULL, OPTION_MTUNE},
9880 #define OPTION_FP64 (OPTION_MD_BASE + 23)
9881 {"mfp64", no_argument, NULL, OPTION_FP64},
9882 #define OPTION_M4650 (OPTION_MD_BASE + 24)
9883 {"m4650", no_argument, NULL, OPTION_M4650},
9884 #define OPTION_NO_M4650 (OPTION_MD_BASE + 25)
9885 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
9886 #define OPTION_M4010 (OPTION_MD_BASE + 26)
9887 {"m4010", no_argument, NULL, OPTION_M4010},
9888 #define OPTION_NO_M4010 (OPTION_MD_BASE + 27)
9889 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
9890 #define OPTION_M4100 (OPTION_MD_BASE + 28)
9891 {"m4100", no_argument, NULL, OPTION_M4100},
9892 #define OPTION_NO_M4100 (OPTION_MD_BASE + 29)
9893 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
9894 #define OPTION_M3900 (OPTION_MD_BASE + 30)
9895 {"m3900", no_argument, NULL, OPTION_M3900},
9896 #define OPTION_NO_M3900 (OPTION_MD_BASE + 31)
9897 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
9898 #define OPTION_GP64 (OPTION_MD_BASE + 32)
9899 {"mgp64", no_argument, NULL, OPTION_GP64},
9900 #define OPTION_MIPS3D (OPTION_MD_BASE + 33)
9901 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
9902 #define OPTION_NO_MIPS3D (OPTION_MD_BASE + 34)
9903 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
9904 #define OPTION_MDMX (OPTION_MD_BASE + 35)
9905 {"mdmx", no_argument, NULL, OPTION_MDMX},
9906 #define OPTION_NO_MDMX (OPTION_MD_BASE + 36)
9907 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
9909 #define OPTION_ELF_BASE (OPTION_MD_BASE + 37)
9910 #define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
9911 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
9912 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
9913 #define OPTION_NON_SHARED (OPTION_ELF_BASE + 1)
9914 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
9915 #define OPTION_XGOT (OPTION_ELF_BASE + 2)
9916 {"xgot", no_argument, NULL, OPTION_XGOT},
9917 #define OPTION_MABI (OPTION_ELF_BASE + 3)
9918 {"mabi", required_argument, NULL, OPTION_MABI},
9919 #define OPTION_32 (OPTION_ELF_BASE + 4)
9920 {"32", no_argument, NULL, OPTION_32},
9921 #define OPTION_N32 (OPTION_ELF_BASE + 5)
9922 {"n32", no_argument, NULL, OPTION_N32},
9923 #define OPTION_64 (OPTION_ELF_BASE + 6)
9924 {"64", no_argument, NULL, OPTION_64},
9925 #define OPTION_MDEBUG (OPTION_ELF_BASE + 7)
9926 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
9927 #define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 8)
9928 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
9929 #endif /* OBJ_ELF */
9930 {NULL, no_argument, NULL, 0}
9932 size_t md_longopts_size = sizeof (md_longopts);
9934 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
9935 NEW_VALUE. Warn if another value was already specified. Note:
9936 we have to defer parsing the -march and -mtune arguments in order
9937 to handle 'from-abi' correctly, since the ABI might be specified
9938 in a later argument. */
9941 mips_set_option_string (string_ptr, new_value)
9942 const char **string_ptr, *new_value;
9944 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
9945 as_warn (_("A different %s was already specified, is now %s"),
9946 string_ptr == &mips_arch_string ? "-march" : "-mtune",
9949 *string_ptr = new_value;
9953 md_parse_option (c, arg)
9959 case OPTION_CONSTRUCT_FLOATS:
9960 mips_disable_float_construction = 0;
9963 case OPTION_NO_CONSTRUCT_FLOATS:
9964 mips_disable_float_construction = 1;
9976 target_big_endian = 1;
9980 target_big_endian = 0;
9988 if (arg && arg[1] == '0')
9998 mips_debug = atoi (arg);
9999 /* When the MIPS assembler sees -g or -g2, it does not do
10000 optimizations which limit full symbolic debugging. We take
10001 that to be equivalent to -O0. */
10002 if (mips_debug == 2)
10007 file_mips_isa = ISA_MIPS1;
10011 file_mips_isa = ISA_MIPS2;
10015 file_mips_isa = ISA_MIPS3;
10019 file_mips_isa = ISA_MIPS4;
10023 file_mips_isa = ISA_MIPS5;
10026 case OPTION_MIPS32:
10027 file_mips_isa = ISA_MIPS32;
10030 case OPTION_MIPS64:
10031 file_mips_isa = ISA_MIPS64;
10035 mips_set_option_string (&mips_tune_string, arg);
10039 mips_set_option_string (&mips_arch_string, arg);
10043 mips_set_option_string (&mips_arch_string, "4650");
10044 mips_set_option_string (&mips_tune_string, "4650");
10047 case OPTION_NO_M4650:
10051 mips_set_option_string (&mips_arch_string, "4010");
10052 mips_set_option_string (&mips_tune_string, "4010");
10055 case OPTION_NO_M4010:
10059 mips_set_option_string (&mips_arch_string, "4100");
10060 mips_set_option_string (&mips_tune_string, "4100");
10063 case OPTION_NO_M4100:
10067 mips_set_option_string (&mips_arch_string, "3900");
10068 mips_set_option_string (&mips_tune_string, "3900");
10071 case OPTION_NO_M3900:
10075 mips_opts.ase_mdmx = 1;
10078 case OPTION_NO_MDMX:
10079 mips_opts.ase_mdmx = 0;
10082 case OPTION_MIPS16:
10083 mips_opts.mips16 = 1;
10084 mips_no_prev_insn (false);
10087 case OPTION_NO_MIPS16:
10088 mips_opts.mips16 = 0;
10089 mips_no_prev_insn (false);
10092 case OPTION_MIPS3D:
10093 mips_opts.ase_mips3d = 1;
10096 case OPTION_NO_MIPS3D:
10097 mips_opts.ase_mips3d = 0;
10100 case OPTION_MEMBEDDED_PIC:
10101 mips_pic = EMBEDDED_PIC;
10102 if (USE_GLOBAL_POINTER_OPT && g_switch_seen)
10104 as_bad (_("-G may not be used with embedded PIC code"));
10107 g_switch_value = 0x7fffffff;
10111 /* When generating ELF code, we permit -KPIC and -call_shared to
10112 select SVR4_PIC, and -non_shared to select no PIC. This is
10113 intended to be compatible with Irix 5. */
10114 case OPTION_CALL_SHARED:
10115 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10117 as_bad (_("-call_shared is supported only for ELF format"));
10120 mips_pic = SVR4_PIC;
10121 if (g_switch_seen && g_switch_value != 0)
10123 as_bad (_("-G may not be used with SVR4 PIC code"));
10126 g_switch_value = 0;
10129 case OPTION_NON_SHARED:
10130 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10132 as_bad (_("-non_shared is supported only for ELF format"));
10138 /* The -xgot option tells the assembler to use 32 offsets when
10139 accessing the got in SVR4_PIC mode. It is for Irix
10144 #endif /* OBJ_ELF */
10147 if (! USE_GLOBAL_POINTER_OPT)
10149 as_bad (_("-G is not supported for this configuration"));
10152 else if (mips_pic == SVR4_PIC || mips_pic == EMBEDDED_PIC)
10154 as_bad (_("-G may not be used with SVR4 or embedded PIC code"));
10158 g_switch_value = atoi (arg);
10163 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
10166 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10168 as_bad (_("-32 is supported for ELF format only"));
10171 mips_abi = O32_ABI;
10175 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10177 as_bad (_("-n32 is supported for ELF format only"));
10180 mips_abi = N32_ABI;
10184 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10186 as_bad (_("-64 is supported for ELF format only"));
10189 mips_abi = N64_ABI;
10190 if (! support_64bit_objects())
10191 as_fatal (_("No compiled in support for 64 bit object file format"));
10193 #endif /* OBJ_ELF */
10196 file_mips_gp32 = 1;
10200 file_mips_gp32 = 0;
10204 file_mips_fp32 = 1;
10208 file_mips_fp32 = 0;
10213 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10215 as_bad (_("-mabi is supported for ELF format only"));
10218 if (strcmp (arg, "32") == 0)
10219 mips_abi = O32_ABI;
10220 else if (strcmp (arg, "o64") == 0)
10221 mips_abi = O64_ABI;
10222 else if (strcmp (arg, "n32") == 0)
10223 mips_abi = N32_ABI;
10224 else if (strcmp (arg, "64") == 0)
10226 mips_abi = N64_ABI;
10227 if (! support_64bit_objects())
10228 as_fatal (_("No compiled in support for 64 bit object file "
10231 else if (strcmp (arg, "eabi") == 0)
10232 mips_abi = EABI_ABI;
10235 as_fatal (_("invalid abi -mabi=%s"), arg);
10239 #endif /* OBJ_ELF */
10241 case OPTION_M7000_HILO_FIX:
10242 mips_7000_hilo_fix = true;
10245 case OPTION_MNO_7000_HILO_FIX:
10246 mips_7000_hilo_fix = false;
10250 case OPTION_MDEBUG:
10251 mips_flag_mdebug = true;
10254 case OPTION_NO_MDEBUG:
10255 mips_flag_mdebug = false;
10257 #endif /* OBJ_ELF */
10266 /* Set up globals to generate code for the ISA or processor
10267 described by INFO. */
10270 mips_set_architecture (info)
10271 const struct mips_cpu_info *info;
10275 mips_arch_info = info;
10276 mips_arch = info->cpu;
10277 mips_opts.isa = info->isa;
10282 /* Likewise for tuning. */
10285 mips_set_tune (info)
10286 const struct mips_cpu_info *info;
10290 mips_tune_info = info;
10291 mips_tune = info->cpu;
10297 mips_after_parse_args ()
10299 /* GP relative stuff not working for PE */
10300 if (strncmp (TARGET_OS, "pe", 2) == 0
10301 && g_switch_value != 0)
10304 as_bad (_("-G not supported in this configuration."));
10305 g_switch_value = 0;
10308 /* The following code determines the architecture and register size.
10309 Similar code was added to GCC 3.3 (see override_options() in
10310 config/mips/mips.c). The GAS and GCC code should be kept in sync
10311 as much as possible. */
10313 if (mips_arch_string != 0)
10314 mips_set_architecture (mips_parse_cpu ("-march", mips_arch_string));
10316 if (mips_tune_string != 0)
10317 mips_set_tune (mips_parse_cpu ("-mtune", mips_tune_string));
10319 if (file_mips_isa != ISA_UNKNOWN)
10321 /* Handle -mipsN. At this point, file_mips_isa contains the
10322 ISA level specified by -mipsN, while mips_opts.isa contains
10323 the -march selection (if any). */
10324 if (mips_arch_info != 0)
10326 /* -march takes precedence over -mipsN, since it is more descriptive.
10327 There's no harm in specifying both as long as the ISA levels
10329 if (file_mips_isa != mips_opts.isa)
10330 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
10331 mips_cpu_info_from_isa (file_mips_isa)->name,
10332 mips_cpu_info_from_isa (mips_opts.isa)->name);
10335 mips_set_architecture (mips_cpu_info_from_isa (file_mips_isa));
10338 if (mips_arch_info == 0)
10339 mips_set_architecture (mips_parse_cpu ("default CPU",
10340 MIPS_CPU_STRING_DEFAULT));
10342 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (mips_opts.isa))
10343 as_bad ("-march=%s is not compatible with the selected ABI",
10344 mips_arch_info->name);
10346 /* Optimize for mips_arch, unless -mtune selects a different processor. */
10347 if (mips_tune_info == 0)
10348 mips_set_tune (mips_arch_info);
10350 if (file_mips_gp32 >= 0)
10352 /* The user specified the size of the integer registers. Make sure
10353 it agrees with the ABI and ISA. */
10354 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
10355 as_bad (_("-mgp64 used with a 32-bit processor"));
10356 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
10357 as_bad (_("-mgp32 used with a 64-bit ABI"));
10358 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
10359 as_bad (_("-mgp64 used with a 32-bit ABI"));
10363 /* Infer the integer register size from the ABI and processor.
10364 Restrict ourselves to 32-bit registers if that's all the
10365 processor has, or if the ABI cannot handle 64-bit registers. */
10366 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
10367 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
10370 /* ??? GAS treats single-float processors as though they had 64-bit
10371 float registers (although it complains when double-precision
10372 instructions are used). As things stand, saying they have 32-bit
10373 registers would lead to spurious "register must be even" messages.
10374 So here we assume float registers are always the same size as
10375 integer ones, unless the user says otherwise. */
10376 if (file_mips_fp32 < 0)
10377 file_mips_fp32 = file_mips_gp32;
10379 /* End of GCC-shared inference code. */
10381 /* ??? When do we want this flag to be set? Who uses it? */
10382 if (file_mips_gp32 == 1
10383 && mips_abi == NO_ABI
10384 && ISA_HAS_64BIT_REGS (mips_opts.isa))
10385 mips_32bitmode = 1;
10387 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
10388 as_bad (_("trap exception not supported at ISA 1"));
10390 /* If the selected architecture includes support for ASEs, enable
10391 generation of code for them. */
10392 if (mips_opts.mips16 == -1)
10393 mips_opts.mips16 = (CPU_HAS_MIPS16 (mips_arch)) ? 1 : 0;
10394 if (mips_opts.ase_mips3d == -1)
10395 mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (mips_arch)) ? 1 : 0;
10396 if (mips_opts.ase_mdmx == -1)
10397 mips_opts.ase_mdmx = (CPU_HAS_MDMX (mips_arch)) ? 1 : 0;
10399 file_mips_isa = mips_opts.isa;
10400 file_ase_mips16 = mips_opts.mips16;
10401 file_ase_mips3d = mips_opts.ase_mips3d;
10402 file_ase_mdmx = mips_opts.ase_mdmx;
10403 mips_opts.gp32 = file_mips_gp32;
10404 mips_opts.fp32 = file_mips_fp32;
10409 if (mips_flag_mdebug < 0)
10411 #ifdef OBJ_MAYBE_ECOFF
10412 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
10413 mips_flag_mdebug = 1;
10415 #endif /* OBJ_MAYBE_ECOFF */
10416 mips_flag_mdebug = 0;
10421 mips_init_after_args ()
10423 /* initialize opcodes */
10424 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
10425 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
10429 md_pcrel_from (fixP)
10432 if (OUTPUT_FLAVOR != bfd_target_aout_flavour
10433 && fixP->fx_addsy != (symbolS *) NULL
10434 && ! S_IS_DEFINED (fixP->fx_addsy))
10436 /* This makes a branch to an undefined symbol be a branch to the
10437 current location. */
10438 if (mips_pic == EMBEDDED_PIC)
10444 /* Return the address of the delay slot. */
10445 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
10448 /* This is called before the symbol table is processed. In order to
10449 work with gcc when using mips-tfile, we must keep all local labels.
10450 However, in other cases, we want to discard them. If we were
10451 called with -g, but we didn't see any debugging information, it may
10452 mean that gcc is smuggling debugging information through to
10453 mips-tfile, in which case we must generate all local labels. */
10456 mips_frob_file_before_adjust ()
10458 #ifndef NO_ECOFF_DEBUGGING
10459 if (ECOFF_DEBUGGING
10461 && ! ecoff_debugging_seen)
10462 flag_keep_locals = 1;
10466 /* Sort any unmatched HI16_S relocs so that they immediately precede
10467 the corresponding LO reloc. This is called before md_apply_fix3 and
10468 tc_gen_reloc. Unmatched HI16_S relocs can only be generated by
10469 explicit use of the %hi modifier. */
10474 struct mips_hi_fixup *l;
10476 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
10478 segment_info_type *seginfo;
10481 assert (l->fixp->fx_r_type == BFD_RELOC_HI16_S);
10483 /* Check quickly whether the next fixup happens to be a matching
10485 if (l->fixp->fx_next != NULL
10486 && l->fixp->fx_next->fx_r_type == BFD_RELOC_LO16
10487 && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
10488 && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
10491 /* Look through the fixups for this segment for a matching %lo.
10492 When we find one, move the %hi just in front of it. We do
10493 this in two passes. In the first pass, we try to find a
10494 unique %lo. In the second pass, we permit multiple %hi
10495 relocs for a single %lo (this is a GNU extension). */
10496 seginfo = seg_info (l->seg);
10497 for (pass = 0; pass < 2; pass++)
10502 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
10504 /* Check whether this is a %lo fixup which matches l->fixp. */
10505 if (f->fx_r_type == BFD_RELOC_LO16
10506 && f->fx_addsy == l->fixp->fx_addsy
10507 && f->fx_offset == l->fixp->fx_offset
10510 || prev->fx_r_type != BFD_RELOC_HI16_S
10511 || prev->fx_addsy != f->fx_addsy
10512 || prev->fx_offset != f->fx_offset))
10516 /* Move l->fixp before f. */
10517 for (pf = &seginfo->fix_root;
10519 pf = &(*pf)->fx_next)
10520 assert (*pf != NULL);
10522 *pf = l->fixp->fx_next;
10524 l->fixp->fx_next = f;
10526 seginfo->fix_root = l->fixp;
10528 prev->fx_next = l->fixp;
10539 #if 0 /* GCC code motion plus incomplete dead code elimination
10540 can leave a %hi without a %lo. */
10542 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
10543 _("Unmatched %%hi reloc"));
10549 /* When generating embedded PIC code we need to use a special
10550 relocation to represent the difference of two symbols in the .text
10551 section (switch tables use a difference of this sort). See
10552 include/coff/mips.h for details. This macro checks whether this
10553 fixup requires the special reloc. */
10554 #define SWITCH_TABLE(fixp) \
10555 ((fixp)->fx_r_type == BFD_RELOC_32 \
10556 && OUTPUT_FLAVOR != bfd_target_elf_flavour \
10557 && (fixp)->fx_addsy != NULL \
10558 && (fixp)->fx_subsy != NULL \
10559 && S_GET_SEGMENT ((fixp)->fx_addsy) == text_section \
10560 && S_GET_SEGMENT ((fixp)->fx_subsy) == text_section)
10562 /* When generating embedded PIC code we must keep all PC relative
10563 relocations, in case the linker has to relax a call. We also need
10564 to keep relocations for switch table entries.
10566 We may have combined relocations without symbols in the N32/N64 ABI.
10567 We have to prevent gas from dropping them. */
10570 mips_force_relocation (fixp)
10573 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
10574 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
10578 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
10579 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
10580 || fixp->fx_r_type == BFD_RELOC_HI16_S
10581 || fixp->fx_r_type == BFD_RELOC_LO16))
10584 return (mips_pic == EMBEDDED_PIC
10586 || SWITCH_TABLE (fixp)
10587 || fixp->fx_r_type == BFD_RELOC_PCREL_HI16_S
10588 || fixp->fx_r_type == BFD_RELOC_PCREL_LO16));
10593 mips_need_elf_addend_fixup (fixP)
10596 if (S_GET_OTHER (fixP->fx_addsy) == STO_MIPS16)
10598 if (mips_pic == EMBEDDED_PIC
10599 && S_IS_WEAK (fixP->fx_addsy))
10601 if (mips_pic != EMBEDDED_PIC
10602 && (S_IS_WEAK (fixP->fx_addsy)
10603 || S_IS_EXTERNAL (fixP->fx_addsy))
10604 && !S_IS_COMMON (fixP->fx_addsy))
10606 if (symbol_used_in_reloc_p (fixP->fx_addsy)
10607 && (((bfd_get_section_flags (stdoutput,
10608 S_GET_SEGMENT (fixP->fx_addsy))
10609 & SEC_LINK_ONCE) != 0)
10610 || !strncmp (segment_name (S_GET_SEGMENT (fixP->fx_addsy)),
10612 sizeof (".gnu.linkonce") - 1)))
10618 /* Apply a fixup to the object file. */
10621 md_apply_fix3 (fixP, valP, seg)
10624 segT seg ATTRIBUTE_UNUSED;
10630 assert (fixP->fx_size == 4
10631 || fixP->fx_r_type == BFD_RELOC_16
10632 || fixP->fx_r_type == BFD_RELOC_32
10633 || fixP->fx_r_type == BFD_RELOC_MIPS_JMP
10634 || fixP->fx_r_type == BFD_RELOC_HI16_S
10635 || fixP->fx_r_type == BFD_RELOC_LO16
10636 || fixP->fx_r_type == BFD_RELOC_GPREL16
10637 || fixP->fx_r_type == BFD_RELOC_MIPS_LITERAL
10638 || fixP->fx_r_type == BFD_RELOC_GPREL32
10639 || fixP->fx_r_type == BFD_RELOC_64
10640 || fixP->fx_r_type == BFD_RELOC_CTOR
10641 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
10642 || fixP->fx_r_type == BFD_RELOC_MIPS_HIGHEST
10643 || fixP->fx_r_type == BFD_RELOC_MIPS_HIGHER
10644 || fixP->fx_r_type == BFD_RELOC_MIPS_SCN_DISP
10645 || fixP->fx_r_type == BFD_RELOC_MIPS_REL16
10646 || fixP->fx_r_type == BFD_RELOC_MIPS_RELGOT
10647 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
10648 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
10649 || fixP->fx_r_type == BFD_RELOC_MIPS_JALR);
10653 /* If we aren't adjusting this fixup to be against the section
10654 symbol, we need to adjust the value. */
10656 if (fixP->fx_addsy != NULL && OUTPUT_FLAVOR == bfd_target_elf_flavour)
10658 if (mips_need_elf_addend_fixup (fixP))
10660 reloc_howto_type *howto;
10661 valueT symval = S_GET_VALUE (fixP->fx_addsy);
10665 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
10666 if (value != 0 && howto->partial_inplace && ! fixP->fx_pcrel)
10668 /* In this case, the bfd_install_relocation routine will
10669 incorrectly add the symbol value back in. We just want
10670 the addend to appear in the object file. */
10673 /* Make sure the addend is still non-zero. If it became zero
10674 after the last operation, set it to a spurious value and
10675 subtract the same value from the object file's contents. */
10680 /* The in-place addends for LO16 relocations are signed;
10681 leave the matching HI16 in-place addends as zero. */
10682 if (fixP->fx_r_type != BFD_RELOC_HI16_S)
10684 bfd_vma contents, mask, field;
10686 contents = bfd_get_bits (fixP->fx_frag->fr_literal
10689 target_big_endian);
10691 /* MASK has bits set where the relocation should go.
10692 FIELD is -value, shifted into the appropriate place
10693 for this relocation. */
10694 mask = 1 << (howto->bitsize - 1);
10695 mask = (((mask - 1) << 1) | 1) << howto->bitpos;
10696 field = (-value >> howto->rightshift) << howto->bitpos;
10698 bfd_put_bits ((field & mask) | (contents & ~mask),
10699 fixP->fx_frag->fr_literal + fixP->fx_where,
10701 target_big_endian);
10707 /* This code was generated using trial and error and so is
10708 fragile and not trustworthy. If you change it, you should
10709 rerun the elf-rel, elf-rel2, and empic testcases and ensure
10710 they still pass. */
10711 if (fixP->fx_pcrel || fixP->fx_subsy != NULL)
10713 value += fixP->fx_frag->fr_address + fixP->fx_where;
10715 /* BFD's REL handling, for MIPS, is _very_ weird.
10716 This gives the right results, but it can't possibly
10717 be the way things are supposed to work. */
10718 if ((fixP->fx_r_type != BFD_RELOC_16_PCREL
10719 && fixP->fx_r_type != BFD_RELOC_16_PCREL_S2)
10720 || S_GET_SEGMENT (fixP->fx_addsy) != undefined_section)
10721 value += fixP->fx_frag->fr_address + fixP->fx_where;
10726 fixP->fx_addnumber = value; /* Remember value for tc_gen_reloc. */
10728 if (fixP->fx_addsy == NULL && ! fixP->fx_pcrel)
10731 switch (fixP->fx_r_type)
10733 case BFD_RELOC_MIPS_JMP:
10734 case BFD_RELOC_MIPS_SHIFT5:
10735 case BFD_RELOC_MIPS_SHIFT6:
10736 case BFD_RELOC_MIPS_GOT_DISP:
10737 case BFD_RELOC_MIPS_GOT_PAGE:
10738 case BFD_RELOC_MIPS_GOT_OFST:
10739 case BFD_RELOC_MIPS_SUB:
10740 case BFD_RELOC_MIPS_INSERT_A:
10741 case BFD_RELOC_MIPS_INSERT_B:
10742 case BFD_RELOC_MIPS_DELETE:
10743 case BFD_RELOC_MIPS_HIGHEST:
10744 case BFD_RELOC_MIPS_HIGHER:
10745 case BFD_RELOC_MIPS_SCN_DISP:
10746 case BFD_RELOC_MIPS_REL16:
10747 case BFD_RELOC_MIPS_RELGOT:
10748 case BFD_RELOC_MIPS_JALR:
10749 case BFD_RELOC_HI16:
10750 case BFD_RELOC_HI16_S:
10751 case BFD_RELOC_GPREL16:
10752 case BFD_RELOC_MIPS_LITERAL:
10753 case BFD_RELOC_MIPS_CALL16:
10754 case BFD_RELOC_MIPS_GOT16:
10755 case BFD_RELOC_GPREL32:
10756 case BFD_RELOC_MIPS_GOT_HI16:
10757 case BFD_RELOC_MIPS_GOT_LO16:
10758 case BFD_RELOC_MIPS_CALL_HI16:
10759 case BFD_RELOC_MIPS_CALL_LO16:
10760 case BFD_RELOC_MIPS16_GPREL:
10761 if (fixP->fx_pcrel)
10762 as_bad_where (fixP->fx_file, fixP->fx_line,
10763 _("Invalid PC relative reloc"));
10764 /* Nothing needed to do. The value comes from the reloc entry */
10767 case BFD_RELOC_MIPS16_JMP:
10768 /* We currently always generate a reloc against a symbol, which
10769 means that we don't want an addend even if the symbol is
10771 fixP->fx_addnumber = 0;
10774 case BFD_RELOC_PCREL_HI16_S:
10775 /* The addend for this is tricky if it is internal, so we just
10776 do everything here rather than in bfd_install_relocation. */
10777 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
10782 && (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_SECTION_SYM) == 0)
10784 /* For an external symbol adjust by the address to make it
10785 pcrel_offset. We use the address of the RELLO reloc
10786 which follows this one. */
10787 value += (fixP->fx_next->fx_frag->fr_address
10788 + fixP->fx_next->fx_where);
10790 value = ((value + 0x8000) >> 16) & 0xffff;
10791 buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
10792 if (target_big_endian)
10794 md_number_to_chars ((char *) buf, value, 2);
10797 case BFD_RELOC_PCREL_LO16:
10798 /* The addend for this is tricky if it is internal, so we just
10799 do everything here rather than in bfd_install_relocation. */
10800 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
10805 && (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_SECTION_SYM) == 0)
10806 value += fixP->fx_frag->fr_address + fixP->fx_where;
10807 buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
10808 if (target_big_endian)
10810 md_number_to_chars ((char *) buf, value, 2);
10814 /* This is handled like BFD_RELOC_32, but we output a sign
10815 extended value if we are only 32 bits. */
10817 || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
10819 if (8 <= sizeof (valueT))
10820 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
10827 w1 = w2 = fixP->fx_where;
10828 if (target_big_endian)
10832 md_number_to_chars (fixP->fx_frag->fr_literal + w1, value, 4);
10833 if ((value & 0x80000000) != 0)
10837 md_number_to_chars (fixP->fx_frag->fr_literal + w2, hiv, 4);
10842 case BFD_RELOC_RVA:
10844 /* If we are deleting this reloc entry, we must fill in the
10845 value now. This can happen if we have a .word which is not
10846 resolved when it appears but is later defined. We also need
10847 to fill in the value if this is an embedded PIC switch table
10850 || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
10851 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
10856 /* If we are deleting this reloc entry, we must fill in the
10858 assert (fixP->fx_size == 2);
10860 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
10864 case BFD_RELOC_LO16:
10865 /* When handling an embedded PIC switch statement, we can wind
10866 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
10869 if (value + 0x8000 > 0xffff)
10870 as_bad_where (fixP->fx_file, fixP->fx_line,
10871 _("relocation overflow"));
10872 buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
10873 if (target_big_endian)
10875 md_number_to_chars ((char *) buf, value, 2);
10879 case BFD_RELOC_16_PCREL_S2:
10880 if ((value & 0x3) != 0)
10881 as_bad_where (fixP->fx_file, fixP->fx_line,
10882 _("Branch to odd address (%lx)"), (long) value);
10884 /* Fall through. */
10886 case BFD_RELOC_16_PCREL:
10888 * We need to save the bits in the instruction since fixup_segment()
10889 * might be deleting the relocation entry (i.e., a branch within
10890 * the current segment).
10892 if (!fixP->fx_done && value != 0)
10894 /* If 'value' is zero, the remaining reloc code won't actually
10895 do the store, so it must be done here. This is probably
10896 a bug somewhere. */
10898 && (fixP->fx_r_type != BFD_RELOC_16_PCREL_S2
10899 || fixP->fx_addsy == NULL /* ??? */
10900 || ! S_IS_DEFINED (fixP->fx_addsy)))
10901 value -= fixP->fx_frag->fr_address + fixP->fx_where;
10903 value = (offsetT) value >> 2;
10905 /* update old instruction data */
10906 buf = (bfd_byte *) (fixP->fx_where + fixP->fx_frag->fr_literal);
10907 if (target_big_endian)
10908 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
10910 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
10912 if (value + 0x8000 <= 0xffff)
10913 insn |= value & 0xffff;
10916 /* The branch offset is too large. If this is an
10917 unconditional branch, and we are not generating PIC code,
10918 we can convert it to an absolute jump instruction. */
10919 if (mips_pic == NO_PIC
10921 && fixP->fx_frag->fr_address >= text_section->vma
10922 && (fixP->fx_frag->fr_address
10923 < text_section->vma + text_section->_raw_size)
10924 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
10925 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
10926 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
10928 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
10929 insn = 0x0c000000; /* jal */
10931 insn = 0x08000000; /* j */
10932 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
10934 fixP->fx_addsy = section_symbol (text_section);
10935 fixP->fx_addnumber = (value << 2) + md_pcrel_from (fixP);
10939 /* FIXME. It would be possible in principle to handle
10940 conditional branches which overflow. They could be
10941 transformed into a branch around a jump. This would
10942 require setting up variant frags for each different
10943 branch type. The native MIPS assembler attempts to
10944 handle these cases, but it appears to do it
10946 as_bad_where (fixP->fx_file, fixP->fx_line,
10947 _("Branch out of range"));
10951 md_number_to_chars ((char *) buf, (valueT) insn, 4);
10954 case BFD_RELOC_VTABLE_INHERIT:
10957 && !S_IS_DEFINED (fixP->fx_addsy)
10958 && !S_IS_WEAK (fixP->fx_addsy))
10959 S_SET_WEAK (fixP->fx_addsy);
10962 case BFD_RELOC_VTABLE_ENTRY:
10976 const struct mips_opcode *p;
10977 int treg, sreg, dreg, shamt;
10982 for (i = 0; i < NUMOPCODES; ++i)
10984 p = &mips_opcodes[i];
10985 if (((oc & p->mask) == p->match) && (p->pinfo != INSN_MACRO))
10987 printf ("%08lx %s\t", oc, p->name);
10988 treg = (oc >> 16) & 0x1f;
10989 sreg = (oc >> 21) & 0x1f;
10990 dreg = (oc >> 11) & 0x1f;
10991 shamt = (oc >> 6) & 0x1f;
10993 for (args = p->args;; ++args)
11004 printf ("%c", *args);
11008 assert (treg == sreg);
11009 printf ("$%d,$%d", treg, sreg);
11014 printf ("$%d", dreg);
11019 printf ("$%d", treg);
11023 printf ("0x%x", treg);
11028 printf ("$%d", sreg);
11032 printf ("0x%08lx", oc & 0x1ffffff);
11039 printf ("%d", imm);
11044 printf ("$%d", shamt);
11055 printf (_("%08lx UNDEFINED\n"), oc);
11066 name = input_line_pointer;
11067 c = get_symbol_end ();
11068 p = (symbolS *) symbol_find_or_make (name);
11069 *input_line_pointer = c;
11073 /* Align the current frag to a given power of two. The MIPS assembler
11074 also automatically adjusts any preceding label. */
11077 mips_align (to, fill, label)
11082 mips_emit_delays (false);
11083 frag_align (to, fill, 0);
11084 record_alignment (now_seg, to);
11087 assert (S_GET_SEGMENT (label) == now_seg);
11088 symbol_set_frag (label, frag_now);
11089 S_SET_VALUE (label, (valueT) frag_now_fix ());
11093 /* Align to a given power of two. .align 0 turns off the automatic
11094 alignment used by the data creating pseudo-ops. */
11098 int x ATTRIBUTE_UNUSED;
11101 register long temp_fill;
11102 long max_alignment = 15;
11106 o Note that the assembler pulls down any immediately preceeding label
11107 to the aligned address.
11108 o It's not documented but auto alignment is reinstated by
11109 a .align pseudo instruction.
11110 o Note also that after auto alignment is turned off the mips assembler
11111 issues an error on attempt to assemble an improperly aligned data item.
11116 temp = get_absolute_expression ();
11117 if (temp > max_alignment)
11118 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
11121 as_warn (_("Alignment negative: 0 assumed."));
11124 if (*input_line_pointer == ',')
11126 ++input_line_pointer;
11127 temp_fill = get_absolute_expression ();
11134 mips_align (temp, (int) temp_fill,
11135 insn_labels != NULL ? insn_labels->label : NULL);
11142 demand_empty_rest_of_line ();
11146 mips_flush_pending_output ()
11148 mips_emit_delays (false);
11149 mips_clear_insn_labels ();
11158 /* When generating embedded PIC code, we only use the .text, .lit8,
11159 .sdata and .sbss sections. We change the .data and .rdata
11160 pseudo-ops to use .sdata. */
11161 if (mips_pic == EMBEDDED_PIC
11162 && (sec == 'd' || sec == 'r'))
11166 /* The ELF backend needs to know that we are changing sections, so
11167 that .previous works correctly. We could do something like check
11168 for an obj_section_change_hook macro, but that might be confusing
11169 as it would not be appropriate to use it in the section changing
11170 functions in read.c, since obj-elf.c intercepts those. FIXME:
11171 This should be cleaner, somehow. */
11172 obj_elf_section_change_hook ();
11175 mips_emit_delays (false);
11185 subseg_set (bss_section, (subsegT) get_absolute_expression ());
11186 demand_empty_rest_of_line ();
11190 if (USE_GLOBAL_POINTER_OPT)
11192 seg = subseg_new (RDATA_SECTION_NAME,
11193 (subsegT) get_absolute_expression ());
11194 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11196 bfd_set_section_flags (stdoutput, seg,
11202 if (strcmp (TARGET_OS, "elf") != 0)
11203 record_alignment (seg, 4);
11205 demand_empty_rest_of_line ();
11209 as_bad (_("No read only data section in this object file format"));
11210 demand_empty_rest_of_line ();
11216 if (USE_GLOBAL_POINTER_OPT)
11218 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
11219 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11221 bfd_set_section_flags (stdoutput, seg,
11222 SEC_ALLOC | SEC_LOAD | SEC_RELOC
11224 if (strcmp (TARGET_OS, "elf") != 0)
11225 record_alignment (seg, 4);
11227 demand_empty_rest_of_line ();
11232 as_bad (_("Global pointers not supported; recompile -G 0"));
11233 demand_empty_rest_of_line ();
11242 mips_enable_auto_align ()
11253 label = insn_labels != NULL ? insn_labels->label : NULL;
11254 mips_emit_delays (false);
11255 if (log_size > 0 && auto_align)
11256 mips_align (log_size, 0, label);
11257 mips_clear_insn_labels ();
11258 cons (1 << log_size);
11262 s_float_cons (type)
11267 label = insn_labels != NULL ? insn_labels->label : NULL;
11269 mips_emit_delays (false);
11274 mips_align (3, 0, label);
11276 mips_align (2, 0, label);
11279 mips_clear_insn_labels ();
11284 /* Handle .globl. We need to override it because on Irix 5 you are
11287 where foo is an undefined symbol, to mean that foo should be
11288 considered to be the address of a function. */
11292 int x ATTRIBUTE_UNUSED;
11299 name = input_line_pointer;
11300 c = get_symbol_end ();
11301 symbolP = symbol_find_or_make (name);
11302 *input_line_pointer = c;
11303 SKIP_WHITESPACE ();
11305 /* On Irix 5, every global symbol that is not explicitly labelled as
11306 being a function is apparently labelled as being an object. */
11309 if (! is_end_of_line[(unsigned char) *input_line_pointer])
11314 secname = input_line_pointer;
11315 c = get_symbol_end ();
11316 sec = bfd_get_section_by_name (stdoutput, secname);
11318 as_bad (_("%s: no such section"), secname);
11319 *input_line_pointer = c;
11321 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
11322 flag = BSF_FUNCTION;
11325 symbol_get_bfdsym (symbolP)->flags |= flag;
11327 S_SET_EXTERNAL (symbolP);
11328 demand_empty_rest_of_line ();
11333 int x ATTRIBUTE_UNUSED;
11338 opt = input_line_pointer;
11339 c = get_symbol_end ();
11343 /* FIXME: What does this mean? */
11345 else if (strncmp (opt, "pic", 3) == 0)
11349 i = atoi (opt + 3);
11353 mips_pic = SVR4_PIC;
11355 as_bad (_(".option pic%d not supported"), i);
11357 if (USE_GLOBAL_POINTER_OPT && mips_pic == SVR4_PIC)
11359 if (g_switch_seen && g_switch_value != 0)
11360 as_warn (_("-G may not be used with SVR4 PIC code"));
11361 g_switch_value = 0;
11362 bfd_set_gp_size (stdoutput, 0);
11366 as_warn (_("Unrecognized option \"%s\""), opt);
11368 *input_line_pointer = c;
11369 demand_empty_rest_of_line ();
11372 /* This structure is used to hold a stack of .set values. */
11374 struct mips_option_stack
11376 struct mips_option_stack *next;
11377 struct mips_set_options options;
11380 static struct mips_option_stack *mips_opts_stack;
11382 /* Handle the .set pseudo-op. */
11386 int x ATTRIBUTE_UNUSED;
11388 char *name = input_line_pointer, ch;
11390 while (!is_end_of_line[(unsigned char) *input_line_pointer])
11391 ++input_line_pointer;
11392 ch = *input_line_pointer;
11393 *input_line_pointer = '\0';
11395 if (strcmp (name, "reorder") == 0)
11397 if (mips_opts.noreorder && prev_nop_frag != NULL)
11399 /* If we still have pending nops, we can discard them. The
11400 usual nop handling will insert any that are still
11402 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
11403 * (mips_opts.mips16 ? 2 : 4));
11404 prev_nop_frag = NULL;
11406 mips_opts.noreorder = 0;
11408 else if (strcmp (name, "noreorder") == 0)
11410 mips_emit_delays (true);
11411 mips_opts.noreorder = 1;
11412 mips_any_noreorder = 1;
11414 else if (strcmp (name, "at") == 0)
11416 mips_opts.noat = 0;
11418 else if (strcmp (name, "noat") == 0)
11420 mips_opts.noat = 1;
11422 else if (strcmp (name, "macro") == 0)
11424 mips_opts.warn_about_macros = 0;
11426 else if (strcmp (name, "nomacro") == 0)
11428 if (mips_opts.noreorder == 0)
11429 as_bad (_("`noreorder' must be set before `nomacro'"));
11430 mips_opts.warn_about_macros = 1;
11432 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
11434 mips_opts.nomove = 0;
11436 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
11438 mips_opts.nomove = 1;
11440 else if (strcmp (name, "bopt") == 0)
11442 mips_opts.nobopt = 0;
11444 else if (strcmp (name, "nobopt") == 0)
11446 mips_opts.nobopt = 1;
11448 else if (strcmp (name, "mips16") == 0
11449 || strcmp (name, "MIPS-16") == 0)
11450 mips_opts.mips16 = 1;
11451 else if (strcmp (name, "nomips16") == 0
11452 || strcmp (name, "noMIPS-16") == 0)
11453 mips_opts.mips16 = 0;
11454 else if (strcmp (name, "mips3d") == 0)
11455 mips_opts.ase_mips3d = 1;
11456 else if (strcmp (name, "nomips3d") == 0)
11457 mips_opts.ase_mips3d = 0;
11458 else if (strcmp (name, "mdmx") == 0)
11459 mips_opts.ase_mdmx = 1;
11460 else if (strcmp (name, "nomdmx") == 0)
11461 mips_opts.ase_mdmx = 0;
11462 else if (strncmp (name, "mips", 4) == 0)
11466 /* Permit the user to change the ISA on the fly. Needless to
11467 say, misuse can cause serious problems. */
11468 isa = atoi (name + 4);
11472 mips_opts.gp32 = file_mips_gp32;
11473 mips_opts.fp32 = file_mips_fp32;
11478 mips_opts.gp32 = 1;
11479 mips_opts.fp32 = 1;
11485 mips_opts.gp32 = 0;
11486 mips_opts.fp32 = 0;
11489 as_bad (_("unknown ISA level %s"), name + 4);
11495 case 0: mips_opts.isa = file_mips_isa; break;
11496 case 1: mips_opts.isa = ISA_MIPS1; break;
11497 case 2: mips_opts.isa = ISA_MIPS2; break;
11498 case 3: mips_opts.isa = ISA_MIPS3; break;
11499 case 4: mips_opts.isa = ISA_MIPS4; break;
11500 case 5: mips_opts.isa = ISA_MIPS5; break;
11501 case 32: mips_opts.isa = ISA_MIPS32; break;
11502 case 64: mips_opts.isa = ISA_MIPS64; break;
11503 default: as_bad (_("unknown ISA level %s"), name + 4); break;
11506 else if (strcmp (name, "autoextend") == 0)
11507 mips_opts.noautoextend = 0;
11508 else if (strcmp (name, "noautoextend") == 0)
11509 mips_opts.noautoextend = 1;
11510 else if (strcmp (name, "push") == 0)
11512 struct mips_option_stack *s;
11514 s = (struct mips_option_stack *) xmalloc (sizeof *s);
11515 s->next = mips_opts_stack;
11516 s->options = mips_opts;
11517 mips_opts_stack = s;
11519 else if (strcmp (name, "pop") == 0)
11521 struct mips_option_stack *s;
11523 s = mips_opts_stack;
11525 as_bad (_(".set pop with no .set push"));
11528 /* If we're changing the reorder mode we need to handle
11529 delay slots correctly. */
11530 if (s->options.noreorder && ! mips_opts.noreorder)
11531 mips_emit_delays (true);
11532 else if (! s->options.noreorder && mips_opts.noreorder)
11534 if (prev_nop_frag != NULL)
11536 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
11537 * (mips_opts.mips16 ? 2 : 4));
11538 prev_nop_frag = NULL;
11542 mips_opts = s->options;
11543 mips_opts_stack = s->next;
11549 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
11551 *input_line_pointer = ch;
11552 demand_empty_rest_of_line ();
11555 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
11556 .option pic2. It means to generate SVR4 PIC calls. */
11559 s_abicalls (ignore)
11560 int ignore ATTRIBUTE_UNUSED;
11562 mips_pic = SVR4_PIC;
11563 if (USE_GLOBAL_POINTER_OPT)
11565 if (g_switch_seen && g_switch_value != 0)
11566 as_warn (_("-G may not be used with SVR4 PIC code"));
11567 g_switch_value = 0;
11569 bfd_set_gp_size (stdoutput, 0);
11570 demand_empty_rest_of_line ();
11573 /* Handle the .cpload pseudo-op. This is used when generating SVR4
11574 PIC code. It sets the $gp register for the function based on the
11575 function address, which is in the register named in the argument.
11576 This uses a relocation against _gp_disp, which is handled specially
11577 by the linker. The result is:
11578 lui $gp,%hi(_gp_disp)
11579 addiu $gp,$gp,%lo(_gp_disp)
11580 addu $gp,$gp,.cpload argument
11581 The .cpload argument is normally $25 == $t9. */
11585 int ignore ATTRIBUTE_UNUSED;
11590 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
11591 .cpload is ignored. */
11592 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
11598 /* .cpload should be in a .set noreorder section. */
11599 if (mips_opts.noreorder == 0)
11600 as_warn (_(".cpload not in noreorder section"));
11602 ex.X_op = O_symbol;
11603 ex.X_add_symbol = symbol_find_or_make ("_gp_disp");
11604 ex.X_op_symbol = NULL;
11605 ex.X_add_number = 0;
11607 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
11608 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
11610 macro_build_lui (NULL, &icnt, &ex, mips_gp_register);
11611 macro_build ((char *) NULL, &icnt, &ex, "addiu", "t,r,j",
11612 mips_gp_register, mips_gp_register, (int) BFD_RELOC_LO16);
11614 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "addu", "d,v,t",
11615 mips_gp_register, mips_gp_register, tc_get_register (0));
11617 demand_empty_rest_of_line ();
11620 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
11621 .cpsetup $reg1, offset|$reg2, label
11623 If offset is given, this results in:
11624 sd $gp, offset($sp)
11625 lui $gp, %hi(%neg(%gp_rel(label)))
11626 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11627 daddu $gp, $gp, $reg1
11629 If $reg2 is given, this results in:
11630 daddu $reg2, $gp, $0
11631 lui $gp, %hi(%neg(%gp_rel(label)))
11632 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11633 daddu $gp, $gp, $reg1
11634 $reg1 is normally $25 == $t9. */
11637 int ignore ATTRIBUTE_UNUSED;
11639 expressionS ex_off;
11640 expressionS ex_sym;
11645 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
11646 We also need NewABI support. */
11647 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11653 reg1 = tc_get_register (0);
11654 SKIP_WHITESPACE ();
11655 if (*input_line_pointer != ',')
11657 as_bad (_("missing argument separator ',' for .cpsetup"));
11661 ++input_line_pointer;
11662 SKIP_WHITESPACE ();
11663 if (*input_line_pointer == '$')
11665 mips_cpreturn_register = tc_get_register (0);
11666 mips_cpreturn_offset = -1;
11670 mips_cpreturn_offset = get_absolute_expression ();
11671 mips_cpreturn_register = -1;
11673 SKIP_WHITESPACE ();
11674 if (*input_line_pointer != ',')
11676 as_bad (_("missing argument separator ',' for .cpsetup"));
11680 ++input_line_pointer;
11681 SKIP_WHITESPACE ();
11682 sym = input_line_pointer;
11683 while (ISALNUM (*input_line_pointer))
11684 ++input_line_pointer;
11685 *input_line_pointer = 0;
11687 ex_sym.X_op = O_symbol;
11688 ex_sym.X_add_symbol = symbol_find_or_make (sym);
11689 ex_sym.X_op_symbol = NULL;
11690 ex_sym.X_add_number = 0;
11692 if (mips_cpreturn_register == -1)
11694 ex_off.X_op = O_constant;
11695 ex_off.X_add_symbol = NULL;
11696 ex_off.X_op_symbol = NULL;
11697 ex_off.X_add_number = mips_cpreturn_offset;
11699 macro_build ((char *) NULL, &icnt, &ex_off, "sd", "t,o(b)",
11700 mips_gp_register, (int) BFD_RELOC_LO16, SP);
11703 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "daddu",
11704 "d,v,t", mips_cpreturn_register, mips_gp_register, 0);
11706 macro_build ((char *) NULL, &icnt, &ex_sym, "lui", "t,u", mips_gp_register,
11707 (int) BFD_RELOC_GPREL16);
11708 fix_new (frag_now, prev_insn_where, 0, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
11709 fix_new (frag_now, prev_insn_where, 0, NULL, 0, 0, BFD_RELOC_HI16_S);
11710 macro_build ((char *) NULL, &icnt, &ex_sym, "addiu", "t,r,j",
11711 mips_gp_register, mips_gp_register, (int) BFD_RELOC_GPREL16);
11712 fix_new (frag_now, prev_insn_where, 0, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
11713 fix_new (frag_now, prev_insn_where, 0, NULL, 0, 0, BFD_RELOC_LO16);
11714 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
11715 HAVE_64BIT_ADDRESSES ? "daddu" : "addu", "d,v,t",
11716 mips_gp_register, mips_gp_register, reg1);
11718 demand_empty_rest_of_line ();
11723 int ignore ATTRIBUTE_UNUSED;
11725 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
11726 .cplocal is ignored. */
11727 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11733 mips_gp_register = tc_get_register (0);
11734 demand_empty_rest_of_line ();
11737 /* Handle the .cprestore pseudo-op. This stores $gp into a given
11738 offset from $sp. The offset is remembered, and after making a PIC
11739 call $gp is restored from that location. */
11742 s_cprestore (ignore)
11743 int ignore ATTRIBUTE_UNUSED;
11748 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
11749 .cprestore is ignored. */
11750 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
11756 mips_cprestore_offset = get_absolute_expression ();
11757 mips_cprestore_valid = 1;
11759 ex.X_op = O_constant;
11760 ex.X_add_symbol = NULL;
11761 ex.X_op_symbol = NULL;
11762 ex.X_add_number = mips_cprestore_offset;
11764 macro_build ((char *) NULL, &icnt, &ex, HAVE_32BIT_ADDRESSES ? "sw" : "sd",
11765 "t,o(b)", mips_gp_register, (int) BFD_RELOC_LO16, SP);
11767 demand_empty_rest_of_line ();
11770 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
11771 was given in the preceeding .gpsetup, it results in:
11772 ld $gp, offset($sp)
11774 If a register $reg2 was given there, it results in:
11775 daddiu $gp, $gp, $reg2
11778 s_cpreturn (ignore)
11779 int ignore ATTRIBUTE_UNUSED;
11784 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
11785 We also need NewABI support. */
11786 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11792 if (mips_cpreturn_register == -1)
11794 ex.X_op = O_constant;
11795 ex.X_add_symbol = NULL;
11796 ex.X_op_symbol = NULL;
11797 ex.X_add_number = mips_cpreturn_offset;
11799 macro_build ((char *) NULL, &icnt, &ex, "ld", "t,o(b)",
11800 mips_gp_register, (int) BFD_RELOC_LO16, SP);
11803 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "daddu",
11804 "d,v,t", mips_gp_register, mips_cpreturn_register, 0);
11806 demand_empty_rest_of_line ();
11809 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
11810 code. It sets the offset to use in gp_rel relocations. */
11814 int ignore ATTRIBUTE_UNUSED;
11816 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
11817 We also need NewABI support. */
11818 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11824 mips_gprel_offset = get_absolute_expression ();
11826 demand_empty_rest_of_line ();
11829 /* Handle the .gpword pseudo-op. This is used when generating PIC
11830 code. It generates a 32 bit GP relative reloc. */
11834 int ignore ATTRIBUTE_UNUSED;
11840 /* When not generating PIC code, this is treated as .word. */
11841 if (mips_pic != SVR4_PIC)
11847 label = insn_labels != NULL ? insn_labels->label : NULL;
11848 mips_emit_delays (true);
11850 mips_align (2, 0, label);
11851 mips_clear_insn_labels ();
11855 if (ex.X_op != O_symbol || ex.X_add_number != 0)
11857 as_bad (_("Unsupported use of .gpword"));
11858 ignore_rest_of_line ();
11862 md_number_to_chars (p, (valueT) 0, 4);
11863 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, false,
11864 BFD_RELOC_GPREL32);
11866 demand_empty_rest_of_line ();
11869 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
11870 tables in SVR4 PIC code. */
11874 int ignore ATTRIBUTE_UNUSED;
11879 /* This is ignored when not generating SVR4 PIC code or if this is NewABI
11881 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
11887 /* Add $gp to the register named as an argument. */
11888 reg = tc_get_register (0);
11889 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
11890 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
11891 "d,v,t", reg, reg, mips_gp_register);
11893 demand_empty_rest_of_line ();
11896 /* Handle the .insn pseudo-op. This marks instruction labels in
11897 mips16 mode. This permits the linker to handle them specially,
11898 such as generating jalx instructions when needed. We also make
11899 them odd for the duration of the assembly, in order to generate the
11900 right sort of code. We will make them even in the adjust_symtab
11901 routine, while leaving them marked. This is convenient for the
11902 debugger and the disassembler. The linker knows to make them odd
11907 int ignore ATTRIBUTE_UNUSED;
11909 mips16_mark_labels ();
11911 demand_empty_rest_of_line ();
11914 /* Handle a .stabn directive. We need these in order to mark a label
11915 as being a mips16 text label correctly. Sometimes the compiler
11916 will emit a label, followed by a .stabn, and then switch sections.
11917 If the label and .stabn are in mips16 mode, then the label is
11918 really a mips16 text label. */
11925 mips16_mark_labels ();
11930 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.
11934 s_mips_weakext (ignore)
11935 int ignore ATTRIBUTE_UNUSED;
11942 name = input_line_pointer;
11943 c = get_symbol_end ();
11944 symbolP = symbol_find_or_make (name);
11945 S_SET_WEAK (symbolP);
11946 *input_line_pointer = c;
11948 SKIP_WHITESPACE ();
11950 if (! is_end_of_line[(unsigned char) *input_line_pointer])
11952 if (S_IS_DEFINED (symbolP))
11954 as_bad ("ignoring attempt to redefine symbol %s",
11955 S_GET_NAME (symbolP));
11956 ignore_rest_of_line ();
11960 if (*input_line_pointer == ',')
11962 ++input_line_pointer;
11963 SKIP_WHITESPACE ();
11967 if (exp.X_op != O_symbol)
11969 as_bad ("bad .weakext directive");
11970 ignore_rest_of_line ();
11973 symbol_set_value_expression (symbolP, &exp);
11976 demand_empty_rest_of_line ();
11979 /* Parse a register string into a number. Called from the ECOFF code
11980 to parse .frame. The argument is non-zero if this is the frame
11981 register, so that we can record it in mips_frame_reg. */
11984 tc_get_register (frame)
11989 SKIP_WHITESPACE ();
11990 if (*input_line_pointer++ != '$')
11992 as_warn (_("expected `$'"));
11995 else if (ISDIGIT (*input_line_pointer))
11997 reg = get_absolute_expression ();
11998 if (reg < 0 || reg >= 32)
12000 as_warn (_("Bad register number"));
12006 if (strncmp (input_line_pointer, "ra", 2) == 0)
12009 input_line_pointer += 2;
12011 else if (strncmp (input_line_pointer, "fp", 2) == 0)
12014 input_line_pointer += 2;
12016 else if (strncmp (input_line_pointer, "sp", 2) == 0)
12019 input_line_pointer += 2;
12021 else if (strncmp (input_line_pointer, "gp", 2) == 0)
12024 input_line_pointer += 2;
12026 else if (strncmp (input_line_pointer, "at", 2) == 0)
12029 input_line_pointer += 2;
12031 else if (strncmp (input_line_pointer, "kt0", 3) == 0)
12034 input_line_pointer += 3;
12036 else if (strncmp (input_line_pointer, "kt1", 3) == 0)
12039 input_line_pointer += 3;
12041 else if (strncmp (input_line_pointer, "zero", 4) == 0)
12044 input_line_pointer += 4;
12048 as_warn (_("Unrecognized register name"));
12050 while (ISALNUM(*input_line_pointer))
12051 input_line_pointer++;
12056 mips_frame_reg = reg != 0 ? reg : SP;
12057 mips_frame_reg_valid = 1;
12058 mips_cprestore_valid = 0;
12064 md_section_align (seg, addr)
12068 int align = bfd_get_section_alignment (stdoutput, seg);
12071 /* We don't need to align ELF sections to the full alignment.
12072 However, Irix 5 may prefer that we align them at least to a 16
12073 byte boundary. We don't bother to align the sections if we are
12074 targeted for an embedded system. */
12075 if (strcmp (TARGET_OS, "elf") == 0)
12081 return ((addr + (1 << align) - 1) & (-1 << align));
12084 /* Utility routine, called from above as well. If called while the
12085 input file is still being read, it's only an approximation. (For
12086 example, a symbol may later become defined which appeared to be
12087 undefined earlier.) */
12090 nopic_need_relax (sym, before_relaxing)
12092 int before_relaxing;
12097 if (USE_GLOBAL_POINTER_OPT && g_switch_value > 0)
12099 const char *symname;
12102 /* Find out whether this symbol can be referenced off the $gp
12103 register. It can be if it is smaller than the -G size or if
12104 it is in the .sdata or .sbss section. Certain symbols can
12105 not be referenced off the $gp, although it appears as though
12107 symname = S_GET_NAME (sym);
12108 if (symname != (const char *) NULL
12109 && (strcmp (symname, "eprol") == 0
12110 || strcmp (symname, "etext") == 0
12111 || strcmp (symname, "_gp") == 0
12112 || strcmp (symname, "edata") == 0
12113 || strcmp (symname, "_fbss") == 0
12114 || strcmp (symname, "_fdata") == 0
12115 || strcmp (symname, "_ftext") == 0
12116 || strcmp (symname, "end") == 0
12117 || strcmp (symname, "_gp_disp") == 0))
12119 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
12121 #ifndef NO_ECOFF_DEBUGGING
12122 || (symbol_get_obj (sym)->ecoff_extern_size != 0
12123 && (symbol_get_obj (sym)->ecoff_extern_size
12124 <= g_switch_value))
12126 /* We must defer this decision until after the whole
12127 file has been read, since there might be a .extern
12128 after the first use of this symbol. */
12129 || (before_relaxing
12130 #ifndef NO_ECOFF_DEBUGGING
12131 && symbol_get_obj (sym)->ecoff_extern_size == 0
12133 && S_GET_VALUE (sym) == 0)
12134 || (S_GET_VALUE (sym) != 0
12135 && S_GET_VALUE (sym) <= g_switch_value)))
12139 const char *segname;
12141 segname = segment_name (S_GET_SEGMENT (sym));
12142 assert (strcmp (segname, ".lit8") != 0
12143 && strcmp (segname, ".lit4") != 0);
12144 change = (strcmp (segname, ".sdata") != 0
12145 && strcmp (segname, ".sbss") != 0
12146 && strncmp (segname, ".sdata.", 7) != 0
12147 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
12152 /* We are not optimizing for the $gp register. */
12156 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
12157 extended opcode. SEC is the section the frag is in. */
12160 mips16_extended_frag (fragp, sec, stretch)
12166 register const struct mips16_immed_operand *op;
12168 int mintiny, maxtiny;
12172 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
12174 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
12177 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
12178 op = mips16_immed_operands;
12179 while (op->type != type)
12182 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
12187 if (type == '<' || type == '>' || type == '[' || type == ']')
12190 maxtiny = 1 << op->nbits;
12195 maxtiny = (1 << op->nbits) - 1;
12200 mintiny = - (1 << (op->nbits - 1));
12201 maxtiny = (1 << (op->nbits - 1)) - 1;
12204 sym_frag = symbol_get_frag (fragp->fr_symbol);
12205 val = S_GET_VALUE (fragp->fr_symbol);
12206 symsec = S_GET_SEGMENT (fragp->fr_symbol);
12212 /* We won't have the section when we are called from
12213 mips_relax_frag. However, we will always have been called
12214 from md_estimate_size_before_relax first. If this is a
12215 branch to a different section, we mark it as such. If SEC is
12216 NULL, and the frag is not marked, then it must be a branch to
12217 the same section. */
12220 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
12225 /* Must have been called from md_estimate_size_before_relax. */
12228 fragp->fr_subtype =
12229 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12231 /* FIXME: We should support this, and let the linker
12232 catch branches and loads that are out of range. */
12233 as_bad_where (fragp->fr_file, fragp->fr_line,
12234 _("unsupported PC relative reference to different section"));
12238 if (fragp != sym_frag && sym_frag->fr_address == 0)
12239 /* Assume non-extended on the first relaxation pass.
12240 The address we have calculated will be bogus if this is
12241 a forward branch to another frag, as the forward frag
12242 will have fr_address == 0. */
12246 /* In this case, we know for sure that the symbol fragment is in
12247 the same section. If the relax_marker of the symbol fragment
12248 differs from the relax_marker of this fragment, we have not
12249 yet adjusted the symbol fragment fr_address. We want to add
12250 in STRETCH in order to get a better estimate of the address.
12251 This particularly matters because of the shift bits. */
12253 && sym_frag->relax_marker != fragp->relax_marker)
12257 /* Adjust stretch for any alignment frag. Note that if have
12258 been expanding the earlier code, the symbol may be
12259 defined in what appears to be an earlier frag. FIXME:
12260 This doesn't handle the fr_subtype field, which specifies
12261 a maximum number of bytes to skip when doing an
12263 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
12265 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
12268 stretch = - ((- stretch)
12269 & ~ ((1 << (int) f->fr_offset) - 1));
12271 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
12280 addr = fragp->fr_address + fragp->fr_fix;
12282 /* The base address rules are complicated. The base address of
12283 a branch is the following instruction. The base address of a
12284 PC relative load or add is the instruction itself, but if it
12285 is in a delay slot (in which case it can not be extended) use
12286 the address of the instruction whose delay slot it is in. */
12287 if (type == 'p' || type == 'q')
12291 /* If we are currently assuming that this frag should be
12292 extended, then, the current address is two bytes
12294 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12297 /* Ignore the low bit in the target, since it will be set
12298 for a text label. */
12299 if ((val & 1) != 0)
12302 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
12304 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
12307 val -= addr & ~ ((1 << op->shift) - 1);
12309 /* Branch offsets have an implicit 0 in the lowest bit. */
12310 if (type == 'p' || type == 'q')
12313 /* If any of the shifted bits are set, we must use an extended
12314 opcode. If the address depends on the size of this
12315 instruction, this can lead to a loop, so we arrange to always
12316 use an extended opcode. We only check this when we are in
12317 the main relaxation loop, when SEC is NULL. */
12318 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
12320 fragp->fr_subtype =
12321 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12325 /* If we are about to mark a frag as extended because the value
12326 is precisely maxtiny + 1, then there is a chance of an
12327 infinite loop as in the following code:
12332 In this case when the la is extended, foo is 0x3fc bytes
12333 away, so the la can be shrunk, but then foo is 0x400 away, so
12334 the la must be extended. To avoid this loop, we mark the
12335 frag as extended if it was small, and is about to become
12336 extended with a value of maxtiny + 1. */
12337 if (val == ((maxtiny + 1) << op->shift)
12338 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
12341 fragp->fr_subtype =
12342 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12346 else if (symsec != absolute_section && sec != NULL)
12347 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
12349 if ((val & ((1 << op->shift) - 1)) != 0
12350 || val < (mintiny << op->shift)
12351 || val > (maxtiny << op->shift))
12357 /* Estimate the size of a frag before relaxing. Unless this is the
12358 mips16, we are not really relaxing here, and the final size is
12359 encoded in the subtype information. For the mips16, we have to
12360 decide whether we are using an extended opcode or not. */
12363 md_estimate_size_before_relax (fragp, segtype)
12368 boolean linkonce = false;
12370 if (RELAX_MIPS16_P (fragp->fr_subtype))
12371 /* We don't want to modify the EXTENDED bit here; it might get us
12372 into infinite loops. We change it only in mips_relax_frag(). */
12373 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
12375 if (mips_pic == NO_PIC)
12377 change = nopic_need_relax (fragp->fr_symbol, 0);
12379 else if (mips_pic == SVR4_PIC)
12384 sym = fragp->fr_symbol;
12386 /* Handle the case of a symbol equated to another symbol. */
12387 while (symbol_equated_reloc_p (sym))
12391 /* It's possible to get a loop here in a badly written
12393 n = symbol_get_value_expression (sym)->X_add_symbol;
12399 symsec = S_GET_SEGMENT (sym);
12401 /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */
12402 if (symsec != segtype && ! S_IS_LOCAL (sym))
12404 if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
12408 /* The GNU toolchain uses an extension for ELF: a section
12409 beginning with the magic string .gnu.linkonce is a linkonce
12411 if (strncmp (segment_name (symsec), ".gnu.linkonce",
12412 sizeof ".gnu.linkonce" - 1) == 0)
12416 /* This must duplicate the test in adjust_reloc_syms. */
12417 change = (symsec != &bfd_und_section
12418 && symsec != &bfd_abs_section
12419 && ! bfd_is_com_section (symsec)
12422 /* A global or weak symbol is treated as external. */
12423 && (OUTPUT_FLAVOR != bfd_target_elf_flavour
12424 || (! S_IS_WEAK (sym)
12425 && (! S_IS_EXTERNAL (sym)
12426 || mips_pic == EMBEDDED_PIC)))
12435 /* Record the offset to the first reloc in the fr_opcode field.
12436 This lets md_convert_frag and tc_gen_reloc know that the code
12437 must be expanded. */
12438 fragp->fr_opcode = (fragp->fr_literal
12440 - RELAX_OLD (fragp->fr_subtype)
12441 + RELAX_RELOC1 (fragp->fr_subtype));
12442 /* FIXME: This really needs as_warn_where. */
12443 if (RELAX_WARN (fragp->fr_subtype))
12444 as_warn (_("AT used after \".set noat\" or macro used after "
12445 "\".set nomacro\""));
12447 return RELAX_NEW (fragp->fr_subtype) - RELAX_OLD (fragp->fr_subtype);
12453 /* This is called to see whether a reloc against a defined symbol
12454 should be converted into a reloc against a section. Don't adjust
12455 MIPS16 jump relocations, so we don't have to worry about the format
12456 of the offset in the .o file. Don't adjust relocations against
12457 mips16 symbols, so that the linker can find them if it needs to set
12461 mips_fix_adjustable (fixp)
12465 /* Prevent all adjustments to global symbols. */
12466 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
12467 && mips_pic != EMBEDDED_PIC
12468 && (S_IS_EXTERNAL (fixp->fx_addsy) || S_IS_WEAK (fixp->fx_addsy)))
12471 if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)
12473 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
12474 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
12476 if (fixp->fx_addsy == NULL)
12479 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
12480 && S_GET_OTHER (fixp->fx_addsy) == STO_MIPS16
12481 && fixp->fx_subsy == NULL)
12487 /* Translate internal representation of relocation info to BFD target
12491 tc_gen_reloc (section, fixp)
12492 asection *section ATTRIBUTE_UNUSED;
12495 static arelent *retval[4];
12497 bfd_reloc_code_real_type code;
12499 reloc = retval[0] = (arelent *) xmalloc (sizeof (arelent));
12502 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
12503 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
12504 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
12506 if (mips_pic == EMBEDDED_PIC
12507 && SWITCH_TABLE (fixp))
12509 /* For a switch table entry we use a special reloc. The addend
12510 is actually the difference between the reloc address and the
12512 reloc->addend = reloc->address - S_GET_VALUE (fixp->fx_subsy);
12513 if (OUTPUT_FLAVOR != bfd_target_ecoff_flavour)
12514 as_fatal (_("Double check fx_r_type in tc-mips.c:tc_gen_reloc"));
12515 fixp->fx_r_type = BFD_RELOC_GPREL32;
12517 else if (fixp->fx_r_type == BFD_RELOC_PCREL_LO16)
12519 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
12520 reloc->addend = fixp->fx_addnumber;
12523 /* We use a special addend for an internal RELLO reloc. */
12524 if (symbol_section_p (fixp->fx_addsy))
12525 reloc->addend = reloc->address - S_GET_VALUE (fixp->fx_subsy);
12527 reloc->addend = fixp->fx_addnumber + reloc->address;
12530 else if (fixp->fx_r_type == BFD_RELOC_PCREL_HI16_S)
12532 assert (fixp->fx_next != NULL
12533 && fixp->fx_next->fx_r_type == BFD_RELOC_PCREL_LO16);
12535 /* The reloc is relative to the RELLO; adjust the addend
12537 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
12538 reloc->addend = fixp->fx_next->fx_addnumber;
12541 /* We use a special addend for an internal RELHI reloc. */
12542 if (symbol_section_p (fixp->fx_addsy))
12543 reloc->addend = (fixp->fx_next->fx_frag->fr_address
12544 + fixp->fx_next->fx_where
12545 - S_GET_VALUE (fixp->fx_subsy));
12547 reloc->addend = (fixp->fx_addnumber
12548 + fixp->fx_next->fx_frag->fr_address
12549 + fixp->fx_next->fx_where);
12552 else if (fixp->fx_pcrel == 0 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
12553 reloc->addend = fixp->fx_addnumber;
12556 if (OUTPUT_FLAVOR != bfd_target_aout_flavour)
12557 /* A gruesome hack which is a result of the gruesome gas reloc
12559 reloc->addend = reloc->address;
12561 reloc->addend = -reloc->address;
12564 /* If this is a variant frag, we may need to adjust the existing
12565 reloc and generate a new one. */
12566 if (fixp->fx_frag->fr_opcode != NULL
12567 && (fixp->fx_r_type == BFD_RELOC_GPREL16
12568 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT16
12569 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL16
12570 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT_HI16
12571 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT_LO16
12572 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL_HI16
12573 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL_LO16)
12578 assert (! RELAX_MIPS16_P (fixp->fx_frag->fr_subtype));
12580 /* If this is not the last reloc in this frag, then we have two
12581 GPREL relocs, or a GOT_HI16/GOT_LO16 pair, or a
12582 CALL_HI16/CALL_LO16, both of which are being replaced. Let
12583 the second one handle all of them. */
12584 if (fixp->fx_next != NULL
12585 && fixp->fx_frag == fixp->fx_next->fx_frag)
12587 assert ((fixp->fx_r_type == BFD_RELOC_GPREL16
12588 && fixp->fx_next->fx_r_type == BFD_RELOC_GPREL16)
12589 || (fixp->fx_r_type == BFD_RELOC_MIPS_GOT_HI16
12590 && (fixp->fx_next->fx_r_type
12591 == BFD_RELOC_MIPS_GOT_LO16))
12592 || (fixp->fx_r_type == BFD_RELOC_MIPS_CALL_HI16
12593 && (fixp->fx_next->fx_r_type
12594 == BFD_RELOC_MIPS_CALL_LO16)));
12599 fixp->fx_where = fixp->fx_frag->fr_opcode - fixp->fx_frag->fr_literal;
12600 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
12601 reloc2 = retval[1] = (arelent *) xmalloc (sizeof (arelent));
12603 reloc2->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
12604 *reloc2->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
12605 reloc2->address = (reloc->address
12606 + (RELAX_RELOC2 (fixp->fx_frag->fr_subtype)
12607 - RELAX_RELOC1 (fixp->fx_frag->fr_subtype)));
12608 reloc2->addend = fixp->fx_addnumber;
12609 reloc2->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_LO16);
12610 assert (reloc2->howto != NULL);
12612 if (RELAX_RELOC3 (fixp->fx_frag->fr_subtype))
12616 reloc3 = retval[2] = (arelent *) xmalloc (sizeof (arelent));
12619 reloc3->address += 4;
12622 if (mips_pic == NO_PIC)
12624 assert (fixp->fx_r_type == BFD_RELOC_GPREL16);
12625 fixp->fx_r_type = BFD_RELOC_HI16_S;
12627 else if (mips_pic == SVR4_PIC)
12629 switch (fixp->fx_r_type)
12633 case BFD_RELOC_MIPS_GOT16:
12635 case BFD_RELOC_MIPS_CALL16:
12636 case BFD_RELOC_MIPS_GOT_LO16:
12637 case BFD_RELOC_MIPS_CALL_LO16:
12638 fixp->fx_r_type = BFD_RELOC_MIPS_GOT16;
12646 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
12647 entry to be used in the relocation's section offset. */
12648 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
12650 reloc->address = reloc->addend;
12654 /* Since DIFF_EXPR_OK is defined in tc-mips.h, it is possible that
12655 fixup_segment converted a non-PC relative reloc into a PC
12656 relative reloc. In such a case, we need to convert the reloc
12658 code = fixp->fx_r_type;
12659 if (fixp->fx_pcrel)
12664 code = BFD_RELOC_8_PCREL;
12667 code = BFD_RELOC_16_PCREL;
12670 code = BFD_RELOC_32_PCREL;
12673 code = BFD_RELOC_64_PCREL;
12675 case BFD_RELOC_8_PCREL:
12676 case BFD_RELOC_16_PCREL:
12677 case BFD_RELOC_32_PCREL:
12678 case BFD_RELOC_64_PCREL:
12679 case BFD_RELOC_16_PCREL_S2:
12680 case BFD_RELOC_PCREL_HI16_S:
12681 case BFD_RELOC_PCREL_LO16:
12684 as_bad_where (fixp->fx_file, fixp->fx_line,
12685 _("Cannot make %s relocation PC relative"),
12686 bfd_get_reloc_code_name (code));
12691 /* md_apply_fix3 has a double-subtraction hack to get
12692 bfd_install_relocation to behave nicely. GPREL relocations are
12693 handled correctly without this hack, so undo it here. We can't
12694 stop md_apply_fix3 from subtracting twice in the first place since
12695 the fake addend is required for variant frags above. */
12696 if (fixp->fx_addsy != NULL && OUTPUT_FLAVOR == bfd_target_elf_flavour
12697 && code == BFD_RELOC_GPREL16
12698 && reloc->addend != 0
12699 && mips_need_elf_addend_fixup (fixp))
12700 reloc->addend += S_GET_VALUE (fixp->fx_addsy);
12703 /* To support a PC relative reloc when generating embedded PIC code
12704 for ECOFF, we use a Cygnus extension. We check for that here to
12705 make sure that we don't let such a reloc escape normally. */
12706 if ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
12707 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
12708 && code == BFD_RELOC_16_PCREL_S2
12709 && mips_pic != EMBEDDED_PIC)
12710 reloc->howto = NULL;
12712 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
12714 if (reloc->howto == NULL)
12716 as_bad_where (fixp->fx_file, fixp->fx_line,
12717 _("Can not represent %s relocation in this object file format"),
12718 bfd_get_reloc_code_name (code));
12725 /* Relax a machine dependent frag. This returns the amount by which
12726 the current size of the frag should change. */
12729 mips_relax_frag (fragp, stretch)
12733 if (! RELAX_MIPS16_P (fragp->fr_subtype))
12736 if (mips16_extended_frag (fragp, NULL, stretch))
12738 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12740 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
12745 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12747 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
12754 /* Convert a machine dependent frag. */
12757 md_convert_frag (abfd, asec, fragp)
12758 bfd *abfd ATTRIBUTE_UNUSED;
12765 if (RELAX_MIPS16_P (fragp->fr_subtype))
12768 register const struct mips16_immed_operand *op;
12769 boolean small, ext;
12772 unsigned long insn;
12773 boolean use_extend;
12774 unsigned short extend;
12776 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
12777 op = mips16_immed_operands;
12778 while (op->type != type)
12781 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12792 resolve_symbol_value (fragp->fr_symbol);
12793 val = S_GET_VALUE (fragp->fr_symbol);
12798 addr = fragp->fr_address + fragp->fr_fix;
12800 /* The rules for the base address of a PC relative reloc are
12801 complicated; see mips16_extended_frag. */
12802 if (type == 'p' || type == 'q')
12807 /* Ignore the low bit in the target, since it will be
12808 set for a text label. */
12809 if ((val & 1) != 0)
12812 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
12814 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
12817 addr &= ~ (addressT) ((1 << op->shift) - 1);
12820 /* Make sure the section winds up with the alignment we have
12823 record_alignment (asec, op->shift);
12827 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
12828 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
12829 as_warn_where (fragp->fr_file, fragp->fr_line,
12830 _("extended instruction in delay slot"));
12832 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
12834 if (target_big_endian)
12835 insn = bfd_getb16 (buf);
12837 insn = bfd_getl16 (buf);
12839 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
12840 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
12841 small, ext, &insn, &use_extend, &extend);
12845 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
12846 fragp->fr_fix += 2;
12850 md_number_to_chars ((char *) buf, insn, 2);
12851 fragp->fr_fix += 2;
12856 if (fragp->fr_opcode == NULL)
12859 old = RELAX_OLD (fragp->fr_subtype);
12860 new = RELAX_NEW (fragp->fr_subtype);
12861 fixptr = fragp->fr_literal + fragp->fr_fix;
12864 memcpy (fixptr - old, fixptr, new);
12866 fragp->fr_fix += new - old;
12872 /* This function is called after the relocs have been generated.
12873 We've been storing mips16 text labels as odd. Here we convert them
12874 back to even for the convenience of the debugger. */
12877 mips_frob_file_after_relocs ()
12880 unsigned int count, i;
12882 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
12885 syms = bfd_get_outsymbols (stdoutput);
12886 count = bfd_get_symcount (stdoutput);
12887 for (i = 0; i < count; i++, syms++)
12889 if (elf_symbol (*syms)->internal_elf_sym.st_other == STO_MIPS16
12890 && ((*syms)->value & 1) != 0)
12892 (*syms)->value &= ~1;
12893 /* If the symbol has an odd size, it was probably computed
12894 incorrectly, so adjust that as well. */
12895 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
12896 ++elf_symbol (*syms)->internal_elf_sym.st_size;
12903 /* This function is called whenever a label is defined. It is used
12904 when handling branch delays; if a branch has a label, we assume we
12905 can not move it. */
12908 mips_define_label (sym)
12911 struct insn_label_list *l;
12913 if (free_insn_labels == NULL)
12914 l = (struct insn_label_list *) xmalloc (sizeof *l);
12917 l = free_insn_labels;
12918 free_insn_labels = l->next;
12922 l->next = insn_labels;
12926 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
12928 /* Some special processing for a MIPS ELF file. */
12931 mips_elf_final_processing ()
12933 /* Write out the register information. */
12934 if (mips_abi != N64_ABI)
12938 s.ri_gprmask = mips_gprmask;
12939 s.ri_cprmask[0] = mips_cprmask[0];
12940 s.ri_cprmask[1] = mips_cprmask[1];
12941 s.ri_cprmask[2] = mips_cprmask[2];
12942 s.ri_cprmask[3] = mips_cprmask[3];
12943 /* The gp_value field is set by the MIPS ELF backend. */
12945 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
12946 ((Elf32_External_RegInfo *)
12947 mips_regmask_frag));
12951 Elf64_Internal_RegInfo s;
12953 s.ri_gprmask = mips_gprmask;
12955 s.ri_cprmask[0] = mips_cprmask[0];
12956 s.ri_cprmask[1] = mips_cprmask[1];
12957 s.ri_cprmask[2] = mips_cprmask[2];
12958 s.ri_cprmask[3] = mips_cprmask[3];
12959 /* The gp_value field is set by the MIPS ELF backend. */
12961 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
12962 ((Elf64_External_RegInfo *)
12963 mips_regmask_frag));
12966 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
12967 sort of BFD interface for this. */
12968 if (mips_any_noreorder)
12969 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
12970 if (mips_pic != NO_PIC)
12971 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
12973 /* Set MIPS ELF flags for ASEs. */
12974 if (file_ase_mips16)
12975 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
12976 #if 0 /* XXX FIXME */
12977 if (file_ase_mips3d)
12978 elf_elfheader (stdoutput)->e_flags |= ???;
12981 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
12983 /* Set the MIPS ELF ABI flags. */
12984 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
12985 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
12986 else if (mips_abi == O64_ABI)
12987 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
12988 else if (mips_abi == EABI_ABI)
12990 if (!file_mips_gp32)
12991 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
12993 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
12995 else if (mips_abi == N32_ABI)
12996 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
12998 /* Nothing to do for N64_ABI. */
13000 if (mips_32bitmode)
13001 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
13004 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
13006 typedef struct proc {
13008 unsigned long reg_mask;
13009 unsigned long reg_offset;
13010 unsigned long fpreg_mask;
13011 unsigned long fpreg_offset;
13012 unsigned long frame_offset;
13013 unsigned long frame_reg;
13014 unsigned long pc_reg;
13017 static procS cur_proc;
13018 static procS *cur_proc_ptr;
13019 static int numprocs;
13021 /* Fill in an rs_align_code fragment. */
13024 mips_handle_align (fragp)
13027 if (fragp->fr_type != rs_align_code)
13030 if (mips_opts.mips16)
13032 static const unsigned char be_nop[] = { 0x65, 0x00 };
13033 static const unsigned char le_nop[] = { 0x00, 0x65 };
13038 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
13039 p = fragp->fr_literal + fragp->fr_fix;
13047 memcpy (p, (target_big_endian ? be_nop : le_nop), 2);
13051 /* For mips32, a nop is a zero, which we trivially get by doing nothing. */
13062 /* check for premature end, nesting errors, etc */
13064 as_warn (_("missing .end at end of assembly"));
13073 if (*input_line_pointer == '-')
13075 ++input_line_pointer;
13078 if (!ISDIGIT (*input_line_pointer))
13079 as_bad (_("expected simple number"));
13080 if (input_line_pointer[0] == '0')
13082 if (input_line_pointer[1] == 'x')
13084 input_line_pointer += 2;
13085 while (ISXDIGIT (*input_line_pointer))
13088 val |= hex_value (*input_line_pointer++);
13090 return negative ? -val : val;
13094 ++input_line_pointer;
13095 while (ISDIGIT (*input_line_pointer))
13098 val |= *input_line_pointer++ - '0';
13100 return negative ? -val : val;
13103 if (!ISDIGIT (*input_line_pointer))
13105 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
13106 *input_line_pointer, *input_line_pointer);
13107 as_warn (_("invalid number"));
13110 while (ISDIGIT (*input_line_pointer))
13113 val += *input_line_pointer++ - '0';
13115 return negative ? -val : val;
13118 /* The .file directive; just like the usual .file directive, but there
13119 is an initial number which is the ECOFF file index. In the non-ECOFF
13120 case .file implies DWARF-2. */
13124 int x ATTRIBUTE_UNUSED;
13126 static int first_file_directive = 0;
13128 if (ECOFF_DEBUGGING)
13137 filename = dwarf2_directive_file (0);
13139 /* Versions of GCC up to 3.1 start files with a ".file"
13140 directive even for stabs output. Make sure that this
13141 ".file" is handled. Note that you need a version of GCC
13142 after 3.1 in order to support DWARF-2 on MIPS. */
13143 if (filename != NULL && ! first_file_directive)
13145 (void) new_logical_line (filename, -1);
13146 s_app_file_string (filename);
13148 first_file_directive = 1;
13152 /* The .loc directive, implying DWARF-2. */
13156 int x ATTRIBUTE_UNUSED;
13158 if (!ECOFF_DEBUGGING)
13159 dwarf2_directive_loc (0);
13162 /* The .end directive. */
13166 int x ATTRIBUTE_UNUSED;
13171 /* Following functions need their own .frame and .cprestore directives. */
13172 mips_frame_reg_valid = 0;
13173 mips_cprestore_valid = 0;
13175 if (!is_end_of_line[(unsigned char) *input_line_pointer])
13178 demand_empty_rest_of_line ();
13183 #ifdef BFD_ASSEMBLER
13184 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
13189 if (now_seg != data_section && now_seg != bss_section)
13196 as_warn (_(".end not in text section"));
13200 as_warn (_(".end directive without a preceding .ent directive."));
13201 demand_empty_rest_of_line ();
13207 assert (S_GET_NAME (p));
13208 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->isym)))
13209 as_warn (_(".end symbol does not match .ent symbol."));
13211 if (debug_type == DEBUG_STABS)
13212 stabs_generate_asm_endfunc (S_GET_NAME (p),
13216 as_warn (_(".end directive missing or unknown symbol"));
13219 /* Generate a .pdr section. */
13220 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13222 segT saved_seg = now_seg;
13223 subsegT saved_subseg = now_subseg;
13228 dot = frag_now_fix ();
13230 #ifdef md_flush_pending_output
13231 md_flush_pending_output ();
13235 subseg_set (pdr_seg, 0);
13237 /* Write the symbol. */
13238 exp.X_op = O_symbol;
13239 exp.X_add_symbol = p;
13240 exp.X_add_number = 0;
13241 emit_expr (&exp, 4);
13243 fragp = frag_more (7 * 4);
13245 md_number_to_chars (fragp, (valueT) cur_proc_ptr->reg_mask, 4);
13246 md_number_to_chars (fragp + 4, (valueT) cur_proc_ptr->reg_offset, 4);
13247 md_number_to_chars (fragp + 8, (valueT) cur_proc_ptr->fpreg_mask, 4);
13248 md_number_to_chars (fragp + 12, (valueT) cur_proc_ptr->fpreg_offset, 4);
13249 md_number_to_chars (fragp + 16, (valueT) cur_proc_ptr->frame_offset, 4);
13250 md_number_to_chars (fragp + 20, (valueT) cur_proc_ptr->frame_reg, 4);
13251 md_number_to_chars (fragp + 24, (valueT) cur_proc_ptr->pc_reg, 4);
13253 subseg_set (saved_seg, saved_subseg);
13255 #endif /* OBJ_ELF */
13257 cur_proc_ptr = NULL;
13260 /* The .aent and .ent directives. */
13269 symbolP = get_symbol ();
13270 if (*input_line_pointer == ',')
13271 ++input_line_pointer;
13272 SKIP_WHITESPACE ();
13273 if (ISDIGIT (*input_line_pointer)
13274 || *input_line_pointer == '-')
13277 #ifdef BFD_ASSEMBLER
13278 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
13283 if (now_seg != data_section && now_seg != bss_section)
13290 as_warn (_(".ent or .aent not in text section."));
13292 if (!aent && cur_proc_ptr)
13293 as_warn (_("missing .end"));
13297 /* This function needs its own .frame and .cprestore directives. */
13298 mips_frame_reg_valid = 0;
13299 mips_cprestore_valid = 0;
13301 cur_proc_ptr = &cur_proc;
13302 memset (cur_proc_ptr, '\0', sizeof (procS));
13304 cur_proc_ptr->isym = symbolP;
13306 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
13310 if (debug_type == DEBUG_STABS)
13311 stabs_generate_asm_func (S_GET_NAME (symbolP),
13312 S_GET_NAME (symbolP));
13315 demand_empty_rest_of_line ();
13318 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
13319 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
13320 s_mips_frame is used so that we can set the PDR information correctly.
13321 We can't use the ecoff routines because they make reference to the ecoff
13322 symbol table (in the mdebug section). */
13325 s_mips_frame (ignore)
13326 int ignore ATTRIBUTE_UNUSED;
13329 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13333 if (cur_proc_ptr == (procS *) NULL)
13335 as_warn (_(".frame outside of .ent"));
13336 demand_empty_rest_of_line ();
13340 cur_proc_ptr->frame_reg = tc_get_register (1);
13342 SKIP_WHITESPACE ();
13343 if (*input_line_pointer++ != ','
13344 || get_absolute_expression_and_terminator (&val) != ',')
13346 as_warn (_("Bad .frame directive"));
13347 --input_line_pointer;
13348 demand_empty_rest_of_line ();
13352 cur_proc_ptr->frame_offset = val;
13353 cur_proc_ptr->pc_reg = tc_get_register (0);
13355 demand_empty_rest_of_line ();
13358 #endif /* OBJ_ELF */
13362 /* The .fmask and .mask directives. If the mdebug section is present
13363 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
13364 embedded targets, s_mips_mask is used so that we can set the PDR
13365 information correctly. We can't use the ecoff routines because they
13366 make reference to the ecoff symbol table (in the mdebug section). */
13369 s_mips_mask (reg_type)
13373 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13377 if (cur_proc_ptr == (procS *) NULL)
13379 as_warn (_(".mask/.fmask outside of .ent"));
13380 demand_empty_rest_of_line ();
13384 if (get_absolute_expression_and_terminator (&mask) != ',')
13386 as_warn (_("Bad .mask/.fmask directive"));
13387 --input_line_pointer;
13388 demand_empty_rest_of_line ();
13392 off = get_absolute_expression ();
13394 if (reg_type == 'F')
13396 cur_proc_ptr->fpreg_mask = mask;
13397 cur_proc_ptr->fpreg_offset = off;
13401 cur_proc_ptr->reg_mask = mask;
13402 cur_proc_ptr->reg_offset = off;
13405 demand_empty_rest_of_line ();
13408 #endif /* OBJ_ELF */
13409 s_ignore (reg_type);
13412 /* The .loc directive. */
13423 assert (now_seg == text_section);
13425 lineno = get_number ();
13426 addroff = frag_now_fix ();
13428 symbolP = symbol_new ("", N_SLINE, addroff, frag_now);
13429 S_SET_TYPE (symbolP, N_SLINE);
13430 S_SET_OTHER (symbolP, 0);
13431 S_SET_DESC (symbolP, lineno);
13432 symbolP->sy_segment = now_seg;
13436 /* A table describing all the processors gas knows about. Names are
13437 matched in the order listed.
13439 To ease comparison, please keep this table in the same order as
13440 gcc's mips_cpu_info_table[]. */
13441 static const struct mips_cpu_info mips_cpu_info_table[] =
13443 /* Entries for generic ISAs */
13444 { "mips1", 1, ISA_MIPS1, CPU_R3000 },
13445 { "mips2", 1, ISA_MIPS2, CPU_R6000 },
13446 { "mips3", 1, ISA_MIPS3, CPU_R4000 },
13447 { "mips4", 1, ISA_MIPS4, CPU_R8000 },
13448 { "mips5", 1, ISA_MIPS5, CPU_MIPS5 },
13449 { "mips32", 1, ISA_MIPS32, CPU_MIPS32 },
13450 { "mips64", 1, ISA_MIPS64, CPU_MIPS64 },
13453 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
13454 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
13455 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
13458 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
13461 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
13462 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
13463 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
13464 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
13465 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
13466 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
13467 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
13468 { "orion", 0, ISA_MIPS3, CPU_R4600 },
13469 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
13472 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
13473 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
13474 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
13475 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
13476 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
13477 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
13478 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
13479 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
13480 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
13481 { "r7000", 0, ISA_MIPS4, CPU_R5000 },
13484 { "4kc", 0, ISA_MIPS32, CPU_MIPS32, },
13485 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
13486 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
13489 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
13490 { "20kc", 0, ISA_MIPS64, CPU_MIPS64 },
13492 /* Broadcom SB-1 CPU */
13493 { "SB-1", 0, ISA_MIPS64, CPU_SB1 },
13494 { "sb-1250", 0, ISA_MIPS64, CPU_SB1 },
13495 { "sb1", 0, ISA_MIPS64, CPU_SB1 },
13496 { "sb1250", 0, ISA_MIPS64, CPU_SB1 },
13503 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
13504 with a final "000" replaced by "k". Ignore case.
13506 Note: this function is shared between GCC and GAS. */
13509 mips_strict_matching_cpu_name_p (canonical, given)
13510 const char *canonical, *given;
13512 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
13513 given++, canonical++;
13515 return ((*given == 0 && *canonical == 0)
13516 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
13520 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
13521 CPU name. We've traditionally allowed a lot of variation here.
13523 Note: this function is shared between GCC and GAS. */
13526 mips_matching_cpu_name_p (canonical, given)
13527 const char *canonical, *given;
13529 /* First see if the name matches exactly, or with a final "000"
13530 turned into "k". */
13531 if (mips_strict_matching_cpu_name_p (canonical, given))
13534 /* If not, try comparing based on numerical designation alone.
13535 See if GIVEN is an unadorned number, or 'r' followed by a number. */
13536 if (TOLOWER (*given) == 'r')
13538 if (!ISDIGIT (*given))
13541 /* Skip over some well-known prefixes in the canonical name,
13542 hoping to find a number there too. */
13543 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
13545 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
13547 else if (TOLOWER (canonical[0]) == 'r')
13550 return mips_strict_matching_cpu_name_p (canonical, given);
13554 /* Parse an option that takes the name of a processor as its argument.
13555 OPTION is the name of the option and CPU_STRING is the argument.
13556 Return the corresponding processor enumeration if the CPU_STRING is
13557 recognized, otherwise report an error and return null.
13559 A similar function exists in GCC. */
13561 static const struct mips_cpu_info *
13562 mips_parse_cpu (option, cpu_string)
13563 const char *option, *cpu_string;
13565 const struct mips_cpu_info *p;
13567 /* 'from-abi' selects the most compatible architecture for the given
13568 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
13569 EABIs, we have to decide whether we're using the 32-bit or 64-bit
13570 version. Look first at the -mgp options, if given, otherwise base
13571 the choice on MIPS_DEFAULT_64BIT.
13573 Treat NO_ABI like the EABIs. One reason to do this is that the
13574 plain 'mips' and 'mips64' configs have 'from-abi' as their default
13575 architecture. This code picks MIPS I for 'mips' and MIPS III for
13576 'mips64', just as we did in the days before 'from-abi'. */
13577 if (strcasecmp (cpu_string, "from-abi") == 0)
13579 if (ABI_NEEDS_32BIT_REGS (mips_abi))
13580 return mips_cpu_info_from_isa (ISA_MIPS1);
13582 if (ABI_NEEDS_64BIT_REGS (mips_abi))
13583 return mips_cpu_info_from_isa (ISA_MIPS3);
13585 if (file_mips_gp32 >= 0)
13586 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
13588 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
13593 /* 'default' has traditionally been a no-op. Probably not very useful. */
13594 if (strcasecmp (cpu_string, "default") == 0)
13597 for (p = mips_cpu_info_table; p->name != 0; p++)
13598 if (mips_matching_cpu_name_p (p->name, cpu_string))
13601 as_bad ("Bad value (%s) for %s", cpu_string, option);
13605 /* Return the canonical processor information for ISA (a member of the
13606 ISA_MIPS* enumeration). */
13608 static const struct mips_cpu_info *
13609 mips_cpu_info_from_isa (isa)
13614 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
13615 if (mips_cpu_info_table[i].is_isa
13616 && isa == mips_cpu_info_table[i].isa)
13617 return (&mips_cpu_info_table[i]);
13623 show (stream, string, col_p, first_p)
13625 const char *string;
13631 fprintf (stream, "%24s", "");
13636 fprintf (stream, ", ");
13640 if (*col_p + strlen (string) > 72)
13642 fprintf (stream, "\n%24s", "");
13646 fprintf (stream, "%s", string);
13647 *col_p += strlen (string);
13653 md_show_usage (stream)
13659 fprintf (stream, _("\
13661 -membedded-pic generate embedded position independent code\n\
13662 -EB generate big endian output\n\
13663 -EL generate little endian output\n\
13664 -g, -g2 do not remove unneeded NOPs or swap branches\n\
13665 -G NUM allow referencing objects up to NUM bytes\n\
13666 implicitly with the gp register [default 8]\n"));
13667 fprintf (stream, _("\
13668 -mips1 generate MIPS ISA I instructions\n\
13669 -mips2 generate MIPS ISA II instructions\n\
13670 -mips3 generate MIPS ISA III instructions\n\
13671 -mips4 generate MIPS ISA IV instructions\n\
13672 -mips5 generate MIPS ISA V instructions\n\
13673 -mips32 generate MIPS32 ISA instructions\n\
13674 -mips64 generate MIPS64 ISA instructions\n\
13675 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
13679 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
13680 show (stream, mips_cpu_info_table[i].name, &column, &first);
13681 show (stream, "from-abi", &column, &first);
13682 fputc ('\n', stream);
13684 fprintf (stream, _("\
13685 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
13686 -no-mCPU don't generate code specific to CPU.\n\
13687 For -mCPU and -no-mCPU, CPU must be one of:\n"));
13691 show (stream, "3900", &column, &first);
13692 show (stream, "4010", &column, &first);
13693 show (stream, "4100", &column, &first);
13694 show (stream, "4650", &column, &first);
13695 fputc ('\n', stream);
13697 fprintf (stream, _("\
13698 -mips16 generate mips16 instructions\n\
13699 -no-mips16 do not generate mips16 instructions\n"));
13700 fprintf (stream, _("\
13701 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
13702 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
13703 -O0 remove unneeded NOPs, do not swap branches\n\
13704 -O remove unneeded NOPs and swap branches\n\
13705 -n warn about NOPs generated from macros\n\
13706 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
13707 --trap, --no-break trap exception on div by 0 and mult overflow\n\
13708 --break, --no-trap break exception on div by 0 and mult overflow\n"));
13710 fprintf (stream, _("\
13711 -KPIC, -call_shared generate SVR4 position independent code\n\
13712 -non_shared do not generate position independent code\n\
13713 -xgot assume a 32 bit GOT\n\
13714 -mabi=ABI create ABI conformant object file for:\n"));
13718 show (stream, "32", &column, &first);
13719 show (stream, "o64", &column, &first);
13720 show (stream, "n32", &column, &first);
13721 show (stream, "64", &column, &first);
13722 show (stream, "eabi", &column, &first);
13724 fputc ('\n', stream);
13726 fprintf (stream, _("\
13727 -32 create o32 ABI object file (default)\n\
13728 -n32 create n32 ABI object file\n\
13729 -64 create 64 ABI object file\n"));