/gas/ChangeLog
[binutils-gdb.git] / gas / config / tc-mips.c
1 /* tc-mips.c -- assemble code for a MIPS chip.
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005 Free Software Foundation, Inc.
4 Contributed by the OSF and Ralph Campbell.
5 Written by Keith Knowles and Ralph Campbell, working independently.
6 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
7 Support.
8
9 This file is part of GAS.
10
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)
14 any later version.
15
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.
20
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
24 02111-1307, USA. */
25
26 #include "as.h"
27 #include "config.h"
28 #include "subsegs.h"
29 #include "safe-ctype.h"
30
31 #include <stdarg.h>
32
33 #include "opcode/mips.h"
34 #include "itbl-ops.h"
35 #include "dwarf2dbg.h"
36
37 #ifdef DEBUG
38 #define DBG(x) printf x
39 #else
40 #define DBG(x)
41 #endif
42
43 #ifdef OBJ_MAYBE_ELF
44 /* Clean up namespace so we can include obj-elf.h too. */
45 static int mips_output_flavor (void);
46 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
47 #undef OBJ_PROCESS_STAB
48 #undef OUTPUT_FLAVOR
49 #undef S_GET_ALIGN
50 #undef S_GET_SIZE
51 #undef S_SET_ALIGN
52 #undef S_SET_SIZE
53 #undef obj_frob_file
54 #undef obj_frob_file_after_relocs
55 #undef obj_frob_symbol
56 #undef obj_pop_insert
57 #undef obj_sec_sym_ok_for_reloc
58 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
59
60 #include "obj-elf.h"
61 /* Fix any of them that we actually care about. */
62 #undef OUTPUT_FLAVOR
63 #define OUTPUT_FLAVOR mips_output_flavor()
64 #endif
65
66 #if defined (OBJ_ELF)
67 #include "elf/mips.h"
68 #endif
69
70 #ifndef ECOFF_DEBUGGING
71 #define NO_ECOFF_DEBUGGING
72 #define ECOFF_DEBUGGING 0
73 #endif
74
75 int mips_flag_mdebug = -1;
76
77 /* Control generation of .pdr sections. Off by default on IRIX: the native
78 linker doesn't know about and discards them, but relocations against them
79 remain, leading to rld crashes. */
80 #ifdef TE_IRIX
81 int mips_flag_pdr = FALSE;
82 #else
83 int mips_flag_pdr = TRUE;
84 #endif
85
86 #include "ecoff.h"
87
88 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
89 static char *mips_regmask_frag;
90 #endif
91
92 #define ZERO 0
93 #define AT 1
94 #define TREG 24
95 #define PIC_CALL_REG 25
96 #define KT0 26
97 #define KT1 27
98 #define GP 28
99 #define SP 29
100 #define FP 30
101 #define RA 31
102
103 #define ILLEGAL_REG (32)
104
105 /* Allow override of standard little-endian ECOFF format. */
106
107 #ifndef ECOFF_LITTLE_FORMAT
108 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
109 #endif
110
111 extern int target_big_endian;
112
113 /* The name of the readonly data section. */
114 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
115 ? ".rdata" \
116 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
117 ? ".rdata" \
118 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
119 ? ".rodata" \
120 : (abort (), ""))
121
122 /* The ABI to use. */
123 enum mips_abi_level
124 {
125 NO_ABI = 0,
126 O32_ABI,
127 O64_ABI,
128 N32_ABI,
129 N64_ABI,
130 EABI_ABI
131 };
132
133 /* MIPS ABI we are using for this output file. */
134 static enum mips_abi_level mips_abi = NO_ABI;
135
136 /* Whether or not we have code that can call pic code. */
137 int mips_abicalls = FALSE;
138
139 /* Whether or not we have code which can be put into a shared
140 library. */
141 static bfd_boolean mips_in_shared = TRUE;
142
143 /* This is the set of options which may be modified by the .set
144 pseudo-op. We use a struct so that .set push and .set pop are more
145 reliable. */
146
147 struct mips_set_options
148 {
149 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
150 if it has not been initialized. Changed by `.set mipsN', and the
151 -mipsN command line option, and the default CPU. */
152 int isa;
153 /* Enabled Application Specific Extensions (ASEs). These are set to -1
154 if they have not been initialized. Changed by `.set <asename>', by
155 command line options, and based on the default architecture. */
156 int ase_mips3d;
157 int ase_mdmx;
158 /* Whether we are assembling for the mips16 processor. 0 if we are
159 not, 1 if we are, and -1 if the value has not been initialized.
160 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
161 -nomips16 command line options, and the default CPU. */
162 int mips16;
163 /* Non-zero if we should not reorder instructions. Changed by `.set
164 reorder' and `.set noreorder'. */
165 int noreorder;
166 /* Non-zero if we should not permit the $at ($1) register to be used
167 in instructions. Changed by `.set at' and `.set noat'. */
168 int noat;
169 /* Non-zero if we should warn when a macro instruction expands into
170 more than one machine instruction. Changed by `.set nomacro' and
171 `.set macro'. */
172 int warn_about_macros;
173 /* Non-zero if we should not move instructions. Changed by `.set
174 move', `.set volatile', `.set nomove', and `.set novolatile'. */
175 int nomove;
176 /* Non-zero if we should not optimize branches by moving the target
177 of the branch into the delay slot. Actually, we don't perform
178 this optimization anyhow. Changed by `.set bopt' and `.set
179 nobopt'. */
180 int nobopt;
181 /* Non-zero if we should not autoextend mips16 instructions.
182 Changed by `.set autoextend' and `.set noautoextend'. */
183 int noautoextend;
184 /* Restrict general purpose registers and floating point registers
185 to 32 bit. This is initially determined when -mgp32 or -mfp32
186 is passed but can changed if the assembler code uses .set mipsN. */
187 int gp32;
188 int fp32;
189 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
190 command line option, and the default CPU. */
191 int arch;
192 };
193
194 /* True if -mgp32 was passed. */
195 static int file_mips_gp32 = -1;
196
197 /* True if -mfp32 was passed. */
198 static int file_mips_fp32 = -1;
199
200 /* This is the struct we use to hold the current set of options. Note
201 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
202 -1 to indicate that they have not been initialized. */
203
204 static struct mips_set_options mips_opts =
205 {
206 ISA_UNKNOWN, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, CPU_UNKNOWN
207 };
208
209 /* These variables are filled in with the masks of registers used.
210 The object format code reads them and puts them in the appropriate
211 place. */
212 unsigned long mips_gprmask;
213 unsigned long mips_cprmask[4];
214
215 /* MIPS ISA we are using for this output file. */
216 static int file_mips_isa = ISA_UNKNOWN;
217
218 /* True if -mips16 was passed or implied by arguments passed on the
219 command line (e.g., by -march). */
220 static int file_ase_mips16;
221
222 /* True if -mips3d was passed or implied by arguments passed on the
223 command line (e.g., by -march). */
224 static int file_ase_mips3d;
225
226 /* True if -mdmx was passed or implied by arguments passed on the
227 command line (e.g., by -march). */
228 static int file_ase_mdmx;
229
230 /* The argument of the -march= flag. The architecture we are assembling. */
231 static int file_mips_arch = CPU_UNKNOWN;
232 static const char *mips_arch_string;
233
234 /* The argument of the -mtune= flag. The architecture for which we
235 are optimizing. */
236 static int mips_tune = CPU_UNKNOWN;
237 static const char *mips_tune_string;
238
239 /* True when generating 32-bit code for a 64-bit processor. */
240 static int mips_32bitmode = 0;
241
242 /* True if the given ABI requires 32-bit registers. */
243 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
244
245 /* Likewise 64-bit registers. */
246 #define ABI_NEEDS_64BIT_REGS(ABI) \
247 ((ABI) == N32_ABI \
248 || (ABI) == N64_ABI \
249 || (ABI) == O64_ABI)
250
251 /* Return true if ISA supports 64 bit gp register instructions. */
252 #define ISA_HAS_64BIT_REGS(ISA) ( \
253 (ISA) == ISA_MIPS3 \
254 || (ISA) == ISA_MIPS4 \
255 || (ISA) == ISA_MIPS5 \
256 || (ISA) == ISA_MIPS64 \
257 || (ISA) == ISA_MIPS64R2 \
258 )
259
260 /* Return true if ISA supports 64-bit right rotate (dror et al.)
261 instructions. */
262 #define ISA_HAS_DROR(ISA) ( \
263 (ISA) == ISA_MIPS64R2 \
264 )
265
266 /* Return true if ISA supports 32-bit right rotate (ror et al.)
267 instructions. */
268 #define ISA_HAS_ROR(ISA) ( \
269 (ISA) == ISA_MIPS32R2 \
270 || (ISA) == ISA_MIPS64R2 \
271 )
272
273 #define HAVE_32BIT_GPRS \
274 (mips_opts.gp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
275
276 #define HAVE_32BIT_FPRS \
277 (mips_opts.fp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
278
279 #define HAVE_64BIT_GPRS (! HAVE_32BIT_GPRS)
280 #define HAVE_64BIT_FPRS (! HAVE_32BIT_FPRS)
281
282 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
283
284 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
285
286 /* True if relocations are stored in-place. */
287 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
288
289 /* We can only have 64bit addresses if the object file format supports it. */
290 #define HAVE_32BIT_ADDRESSES \
291 (HAVE_32BIT_GPRS \
292 || (bfd_arch_bits_per_address (stdoutput) == 32 \
293 || ! HAVE_64BIT_OBJECTS)) \
294
295 #define HAVE_64BIT_ADDRESSES (! HAVE_32BIT_ADDRESSES)
296
297 /* Addresses are loaded in different ways, depending on the address size
298 in use. The n32 ABI Documentation also mandates the use of additions
299 with overflow checking, but existing implementations don't follow it. */
300 #define ADDRESS_ADD_INSN \
301 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
302
303 #define ADDRESS_ADDI_INSN \
304 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
305
306 #define ADDRESS_LOAD_INSN \
307 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
308
309 #define ADDRESS_STORE_INSN \
310 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
311
312 /* Return true if the given CPU supports the MIPS16 ASE. */
313 #define CPU_HAS_MIPS16(cpu) \
314 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
315 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
316
317 /* Return true if the given CPU supports the MIPS3D ASE. */
318 #define CPU_HAS_MIPS3D(cpu) ((cpu) == CPU_SB1 \
319 )
320
321 /* Return true if the given CPU supports the MDMX ASE. */
322 #define CPU_HAS_MDMX(cpu) (FALSE \
323 )
324
325 /* True if CPU has a dror instruction. */
326 #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
327
328 /* True if CPU has a ror instruction. */
329 #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
330
331 /* True if mflo and mfhi can be immediately followed by instructions
332 which write to the HI and LO registers.
333
334 According to MIPS specifications, MIPS ISAs I, II, and III need
335 (at least) two instructions between the reads of HI/LO and
336 instructions which write them, and later ISAs do not. Contradicting
337 the MIPS specifications, some MIPS IV processor user manuals (e.g.
338 the UM for the NEC Vr5000) document needing the instructions between
339 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
340 MIPS64 and later ISAs to have the interlocks, plus any specific
341 earlier-ISA CPUs for which CPU documentation declares that the
342 instructions are really interlocked. */
343 #define hilo_interlocks \
344 (mips_opts.isa == ISA_MIPS32 \
345 || mips_opts.isa == ISA_MIPS32R2 \
346 || mips_opts.isa == ISA_MIPS64 \
347 || mips_opts.isa == ISA_MIPS64R2 \
348 || mips_opts.arch == CPU_R4010 \
349 || mips_opts.arch == CPU_R10000 \
350 || mips_opts.arch == CPU_R12000 \
351 || mips_opts.arch == CPU_RM7000 \
352 || mips_opts.arch == CPU_VR5500 \
353 )
354
355 /* Whether the processor uses hardware interlocks to protect reads
356 from the GPRs after they are loaded from memory, and thus does not
357 require nops to be inserted. This applies to instructions marked
358 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
359 level I. */
360 #define gpr_interlocks \
361 (mips_opts.isa != ISA_MIPS1 \
362 || mips_opts.arch == CPU_R3900)
363
364 /* Whether the processor uses hardware interlocks to avoid delays
365 required by coprocessor instructions, and thus does not require
366 nops to be inserted. This applies to instructions marked
367 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
368 between instructions marked INSN_WRITE_COND_CODE and ones marked
369 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
370 levels I, II, and III. */
371 /* Itbl support may require additional care here. */
372 #define cop_interlocks \
373 ((mips_opts.isa != ISA_MIPS1 \
374 && mips_opts.isa != ISA_MIPS2 \
375 && mips_opts.isa != ISA_MIPS3) \
376 || mips_opts.arch == CPU_R4300 \
377 )
378
379 /* Whether the processor uses hardware interlocks to protect reads
380 from coprocessor registers after they are loaded from memory, and
381 thus does not require nops to be inserted. This applies to
382 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
383 requires at MIPS ISA level I. */
384 #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
385
386 /* Is this a mfhi or mflo instruction? */
387 #define MF_HILO_INSN(PINFO) \
388 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
389
390 /* MIPS PIC level. */
391
392 enum mips_pic_level mips_pic;
393
394 /* 1 if we should generate 32 bit offsets from the $gp register in
395 SVR4_PIC mode. Currently has no meaning in other modes. */
396 static int mips_big_got = 0;
397
398 /* 1 if trap instructions should used for overflow rather than break
399 instructions. */
400 static int mips_trap = 0;
401
402 /* 1 if double width floating point constants should not be constructed
403 by assembling two single width halves into two single width floating
404 point registers which just happen to alias the double width destination
405 register. On some architectures this aliasing can be disabled by a bit
406 in the status register, and the setting of this bit cannot be determined
407 automatically at assemble time. */
408 static int mips_disable_float_construction;
409
410 /* Non-zero if any .set noreorder directives were used. */
411
412 static int mips_any_noreorder;
413
414 /* Non-zero if nops should be inserted when the register referenced in
415 an mfhi/mflo instruction is read in the next two instructions. */
416 static int mips_7000_hilo_fix;
417
418 /* The size of the small data section. */
419 static unsigned int g_switch_value = 8;
420 /* Whether the -G option was used. */
421 static int g_switch_seen = 0;
422
423 #define N_RMASK 0xc4
424 #define N_VFP 0xd4
425
426 /* If we can determine in advance that GP optimization won't be
427 possible, we can skip the relaxation stuff that tries to produce
428 GP-relative references. This makes delay slot optimization work
429 better.
430
431 This function can only provide a guess, but it seems to work for
432 gcc output. It needs to guess right for gcc, otherwise gcc
433 will put what it thinks is a GP-relative instruction in a branch
434 delay slot.
435
436 I don't know if a fix is needed for the SVR4_PIC mode. I've only
437 fixed it for the non-PIC mode. KR 95/04/07 */
438 static int nopic_need_relax (symbolS *, int);
439
440 /* handle of the OPCODE hash table */
441 static struct hash_control *op_hash = NULL;
442
443 /* The opcode hash table we use for the mips16. */
444 static struct hash_control *mips16_op_hash = NULL;
445
446 /* This array holds the chars that always start a comment. If the
447 pre-processor is disabled, these aren't very useful */
448 const char comment_chars[] = "#";
449
450 /* This array holds the chars that only start a comment at the beginning of
451 a line. If the line seems to have the form '# 123 filename'
452 .line and .file directives will appear in the pre-processed output */
453 /* Note that input_file.c hand checks for '#' at the beginning of the
454 first line of the input file. This is because the compiler outputs
455 #NO_APP at the beginning of its output. */
456 /* Also note that C style comments are always supported. */
457 const char line_comment_chars[] = "#";
458
459 /* This array holds machine specific line separator characters. */
460 const char line_separator_chars[] = ";";
461
462 /* Chars that can be used to separate mant from exp in floating point nums */
463 const char EXP_CHARS[] = "eE";
464
465 /* Chars that mean this number is a floating point constant */
466 /* As in 0f12.456 */
467 /* or 0d1.2345e12 */
468 const char FLT_CHARS[] = "rRsSfFdDxXpP";
469
470 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
471 changed in read.c . Ideally it shouldn't have to know about it at all,
472 but nothing is ideal around here.
473 */
474
475 static char *insn_error;
476
477 static int auto_align = 1;
478
479 /* When outputting SVR4 PIC code, the assembler needs to know the
480 offset in the stack frame from which to restore the $gp register.
481 This is set by the .cprestore pseudo-op, and saved in this
482 variable. */
483 static offsetT mips_cprestore_offset = -1;
484
485 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
486 more optimizations, it can use a register value instead of a memory-saved
487 offset and even an other register than $gp as global pointer. */
488 static offsetT mips_cpreturn_offset = -1;
489 static int mips_cpreturn_register = -1;
490 static int mips_gp_register = GP;
491 static int mips_gprel_offset = 0;
492
493 /* Whether mips_cprestore_offset has been set in the current function
494 (or whether it has already been warned about, if not). */
495 static int mips_cprestore_valid = 0;
496
497 /* This is the register which holds the stack frame, as set by the
498 .frame pseudo-op. This is needed to implement .cprestore. */
499 static int mips_frame_reg = SP;
500
501 /* Whether mips_frame_reg has been set in the current function
502 (or whether it has already been warned about, if not). */
503 static int mips_frame_reg_valid = 0;
504
505 /* To output NOP instructions correctly, we need to keep information
506 about the previous two instructions. */
507
508 /* Whether we are optimizing. The default value of 2 means to remove
509 unneeded NOPs and swap branch instructions when possible. A value
510 of 1 means to not swap branches. A value of 0 means to always
511 insert NOPs. */
512 static int mips_optimize = 2;
513
514 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
515 equivalent to seeing no -g option at all. */
516 static int mips_debug = 0;
517
518 /* The previous instruction. */
519 static struct mips_cl_insn prev_insn;
520
521 /* The instruction before prev_insn. */
522 static struct mips_cl_insn prev_prev_insn;
523
524 /* If we don't want information for prev_insn or prev_prev_insn, we
525 point the insn_mo field at this dummy integer. */
526 static const struct mips_opcode dummy_opcode = { NULL, NULL, 0, 0, 0, 0, 0 };
527
528 /* Non-zero if prev_insn is valid. */
529 static int prev_insn_valid;
530
531 /* The frag for the previous instruction. */
532 static struct frag *prev_insn_frag;
533
534 /* The offset into prev_insn_frag for the previous instruction. */
535 static long prev_insn_where;
536
537 /* The reloc type for the previous instruction, if any. */
538 static bfd_reloc_code_real_type prev_insn_reloc_type[3];
539
540 /* The reloc for the previous instruction, if any. */
541 static fixS *prev_insn_fixp[3];
542
543 /* Non-zero if the previous instruction was in a delay slot. */
544 static int prev_insn_is_delay_slot;
545
546 /* Non-zero if the previous instruction was in a .set noreorder. */
547 static int prev_insn_unreordered;
548
549 /* Non-zero if the previous instruction uses an extend opcode (if
550 mips16). */
551 static int prev_insn_extended;
552
553 /* Non-zero if the previous previous instruction was in a .set
554 noreorder. */
555 static int prev_prev_insn_unreordered;
556
557 /* If this is set, it points to a frag holding nop instructions which
558 were inserted before the start of a noreorder section. If those
559 nops turn out to be unnecessary, the size of the frag can be
560 decreased. */
561 static fragS *prev_nop_frag;
562
563 /* The number of nop instructions we created in prev_nop_frag. */
564 static int prev_nop_frag_holds;
565
566 /* The number of nop instructions that we know we need in
567 prev_nop_frag. */
568 static int prev_nop_frag_required;
569
570 /* The number of instructions we've seen since prev_nop_frag. */
571 static int prev_nop_frag_since;
572
573 /* For ECOFF and ELF, relocations against symbols are done in two
574 parts, with a HI relocation and a LO relocation. Each relocation
575 has only 16 bits of space to store an addend. This means that in
576 order for the linker to handle carries correctly, it must be able
577 to locate both the HI and the LO relocation. This means that the
578 relocations must appear in order in the relocation table.
579
580 In order to implement this, we keep track of each unmatched HI
581 relocation. We then sort them so that they immediately precede the
582 corresponding LO relocation. */
583
584 struct mips_hi_fixup
585 {
586 /* Next HI fixup. */
587 struct mips_hi_fixup *next;
588 /* This fixup. */
589 fixS *fixp;
590 /* The section this fixup is in. */
591 segT seg;
592 };
593
594 /* The list of unmatched HI relocs. */
595
596 static struct mips_hi_fixup *mips_hi_fixup_list;
597
598 /* The frag containing the last explicit relocation operator.
599 Null if explicit relocations have not been used. */
600
601 static fragS *prev_reloc_op_frag;
602
603 /* Map normal MIPS register numbers to mips16 register numbers. */
604
605 #define X ILLEGAL_REG
606 static const int mips32_to_16_reg_map[] =
607 {
608 X, X, 2, 3, 4, 5, 6, 7,
609 X, X, X, X, X, X, X, X,
610 0, 1, X, X, X, X, X, X,
611 X, X, X, X, X, X, X, X
612 };
613 #undef X
614
615 /* Map mips16 register numbers to normal MIPS register numbers. */
616
617 static const unsigned int mips16_to_32_reg_map[] =
618 {
619 16, 17, 2, 3, 4, 5, 6, 7
620 };
621
622 static int mips_fix_vr4120;
623
624 /* We don't relax branches by default, since this causes us to expand
625 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
626 fail to compute the offset before expanding the macro to the most
627 efficient expansion. */
628
629 static int mips_relax_branch;
630 \f
631 /* The expansion of many macros depends on the type of symbol that
632 they refer to. For example, when generating position-dependent code,
633 a macro that refers to a symbol may have two different expansions,
634 one which uses GP-relative addresses and one which uses absolute
635 addresses. When generating SVR4-style PIC, a macro may have
636 different expansions for local and global symbols.
637
638 We handle these situations by generating both sequences and putting
639 them in variant frags. In position-dependent code, the first sequence
640 will be the GP-relative one and the second sequence will be the
641 absolute one. In SVR4 PIC, the first sequence will be for global
642 symbols and the second will be for local symbols.
643
644 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
645 SECOND are the lengths of the two sequences in bytes. These fields
646 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
647 the subtype has the following flags:
648
649 RELAX_USE_SECOND
650 Set if it has been decided that we should use the second
651 sequence instead of the first.
652
653 RELAX_SECOND_LONGER
654 Set in the first variant frag if the macro's second implementation
655 is longer than its first. This refers to the macro as a whole,
656 not an individual relaxation.
657
658 RELAX_NOMACRO
659 Set in the first variant frag if the macro appeared in a .set nomacro
660 block and if one alternative requires a warning but the other does not.
661
662 RELAX_DELAY_SLOT
663 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
664 delay slot.
665
666 The frag's "opcode" points to the first fixup for relaxable code.
667
668 Relaxable macros are generated using a sequence such as:
669
670 relax_start (SYMBOL);
671 ... generate first expansion ...
672 relax_switch ();
673 ... generate second expansion ...
674 relax_end ();
675
676 The code and fixups for the unwanted alternative are discarded
677 by md_convert_frag. */
678 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
679
680 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
681 #define RELAX_SECOND(X) ((X) & 0xff)
682 #define RELAX_USE_SECOND 0x10000
683 #define RELAX_SECOND_LONGER 0x20000
684 #define RELAX_NOMACRO 0x40000
685 #define RELAX_DELAY_SLOT 0x80000
686
687 /* Branch without likely bit. If label is out of range, we turn:
688
689 beq reg1, reg2, label
690 delay slot
691
692 into
693
694 bne reg1, reg2, 0f
695 nop
696 j label
697 0: delay slot
698
699 with the following opcode replacements:
700
701 beq <-> bne
702 blez <-> bgtz
703 bltz <-> bgez
704 bc1f <-> bc1t
705
706 bltzal <-> bgezal (with jal label instead of j label)
707
708 Even though keeping the delay slot instruction in the delay slot of
709 the branch would be more efficient, it would be very tricky to do
710 correctly, because we'd have to introduce a variable frag *after*
711 the delay slot instruction, and expand that instead. Let's do it
712 the easy way for now, even if the branch-not-taken case now costs
713 one additional instruction. Out-of-range branches are not supposed
714 to be common, anyway.
715
716 Branch likely. If label is out of range, we turn:
717
718 beql reg1, reg2, label
719 delay slot (annulled if branch not taken)
720
721 into
722
723 beql reg1, reg2, 1f
724 nop
725 beql $0, $0, 2f
726 nop
727 1: j[al] label
728 delay slot (executed only if branch taken)
729 2:
730
731 It would be possible to generate a shorter sequence by losing the
732 likely bit, generating something like:
733
734 bne reg1, reg2, 0f
735 nop
736 j[al] label
737 delay slot (executed only if branch taken)
738 0:
739
740 beql -> bne
741 bnel -> beq
742 blezl -> bgtz
743 bgtzl -> blez
744 bltzl -> bgez
745 bgezl -> bltz
746 bc1fl -> bc1t
747 bc1tl -> bc1f
748
749 bltzall -> bgezal (with jal label instead of j label)
750 bgezall -> bltzal (ditto)
751
752
753 but it's not clear that it would actually improve performance. */
754 #define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
755 ((relax_substateT) \
756 (0xc0000000 \
757 | ((toofar) ? 1 : 0) \
758 | ((link) ? 2 : 0) \
759 | ((likely) ? 4 : 0) \
760 | ((uncond) ? 8 : 0)))
761 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
762 #define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
763 #define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
764 #define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
765 #define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
766
767 /* For mips16 code, we use an entirely different form of relaxation.
768 mips16 supports two versions of most instructions which take
769 immediate values: a small one which takes some small value, and a
770 larger one which takes a 16 bit value. Since branches also follow
771 this pattern, relaxing these values is required.
772
773 We can assemble both mips16 and normal MIPS code in a single
774 object. Therefore, we need to support this type of relaxation at
775 the same time that we support the relaxation described above. We
776 use the high bit of the subtype field to distinguish these cases.
777
778 The information we store for this type of relaxation is the
779 argument code found in the opcode file for this relocation, whether
780 the user explicitly requested a small or extended form, and whether
781 the relocation is in a jump or jal delay slot. That tells us the
782 size of the value, and how it should be stored. We also store
783 whether the fragment is considered to be extended or not. We also
784 store whether this is known to be a branch to a different section,
785 whether we have tried to relax this frag yet, and whether we have
786 ever extended a PC relative fragment because of a shift count. */
787 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
788 (0x80000000 \
789 | ((type) & 0xff) \
790 | ((small) ? 0x100 : 0) \
791 | ((ext) ? 0x200 : 0) \
792 | ((dslot) ? 0x400 : 0) \
793 | ((jal_dslot) ? 0x800 : 0))
794 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
795 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
796 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
797 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
798 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
799 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
800 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
801 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
802 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
803 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
804 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
805 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
806
807 /* Is the given value a sign-extended 32-bit value? */
808 #define IS_SEXT_32BIT_NUM(x) \
809 (((x) &~ (offsetT) 0x7fffffff) == 0 \
810 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
811
812 /* Is the given value a sign-extended 16-bit value? */
813 #define IS_SEXT_16BIT_NUM(x) \
814 (((x) &~ (offsetT) 0x7fff) == 0 \
815 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
816
817 \f
818 /* Global variables used when generating relaxable macros. See the
819 comment above RELAX_ENCODE for more details about how relaxation
820 is used. */
821 static struct {
822 /* 0 if we're not emitting a relaxable macro.
823 1 if we're emitting the first of the two relaxation alternatives.
824 2 if we're emitting the second alternative. */
825 int sequence;
826
827 /* The first relaxable fixup in the current frag. (In other words,
828 the first fixup that refers to relaxable code.) */
829 fixS *first_fixup;
830
831 /* sizes[0] says how many bytes of the first alternative are stored in
832 the current frag. Likewise sizes[1] for the second alternative. */
833 unsigned int sizes[2];
834
835 /* The symbol on which the choice of sequence depends. */
836 symbolS *symbol;
837 } mips_relax;
838 \f
839 /* Global variables used to decide whether a macro needs a warning. */
840 static struct {
841 /* True if the macro is in a branch delay slot. */
842 bfd_boolean delay_slot_p;
843
844 /* For relaxable macros, sizes[0] is the length of the first alternative
845 in bytes and sizes[1] is the length of the second alternative.
846 For non-relaxable macros, both elements give the length of the
847 macro in bytes. */
848 unsigned int sizes[2];
849
850 /* The first variant frag for this macro. */
851 fragS *first_frag;
852 } mips_macro_warning;
853 \f
854 /* Prototypes for static functions. */
855
856 #define internalError() \
857 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
858
859 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
860
861 static void append_insn
862 (struct mips_cl_insn *ip, expressionS *p, bfd_reloc_code_real_type *r);
863 static void mips_no_prev_insn (int);
864 static void mips16_macro_build
865 (expressionS *, const char *, const char *, va_list);
866 static void load_register (int, expressionS *, int);
867 static void macro_start (void);
868 static void macro_end (void);
869 static void macro (struct mips_cl_insn * ip);
870 static void mips16_macro (struct mips_cl_insn * ip);
871 #ifdef LOSING_COMPILER
872 static void macro2 (struct mips_cl_insn * ip);
873 #endif
874 static void mips_ip (char *str, struct mips_cl_insn * ip);
875 static void mips16_ip (char *str, struct mips_cl_insn * ip);
876 static void mips16_immed
877 (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
878 unsigned long *, bfd_boolean *, unsigned short *);
879 static size_t my_getSmallExpression
880 (expressionS *, bfd_reloc_code_real_type *, char *);
881 static void my_getExpression (expressionS *, char *);
882 static void s_align (int);
883 static void s_change_sec (int);
884 static void s_change_section (int);
885 static void s_cons (int);
886 static void s_float_cons (int);
887 static void s_mips_globl (int);
888 static void s_option (int);
889 static void s_mipsset (int);
890 static void s_abicalls (int);
891 static void s_cpload (int);
892 static void s_cpsetup (int);
893 static void s_cplocal (int);
894 static void s_cprestore (int);
895 static void s_cpreturn (int);
896 static void s_gpvalue (int);
897 static void s_gpword (int);
898 static void s_gpdword (int);
899 static void s_cpadd (int);
900 static void s_insn (int);
901 static void md_obj_begin (void);
902 static void md_obj_end (void);
903 static void s_mips_ent (int);
904 static void s_mips_end (int);
905 static void s_mips_frame (int);
906 static void s_mips_mask (int reg_type);
907 static void s_mips_stab (int);
908 static void s_mips_weakext (int);
909 static void s_mips_file (int);
910 static void s_mips_loc (int);
911 static bfd_boolean pic_need_relax (symbolS *, asection *);
912 static int relaxed_branch_length (fragS *, asection *, int);
913 static int validate_mips_insn (const struct mips_opcode *);
914
915 /* Table and functions used to map between CPU/ISA names, and
916 ISA levels, and CPU numbers. */
917
918 struct mips_cpu_info
919 {
920 const char *name; /* CPU or ISA name. */
921 int is_isa; /* Is this an ISA? (If 0, a CPU.) */
922 int isa; /* ISA level. */
923 int cpu; /* CPU number (default CPU if ISA). */
924 };
925
926 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
927 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
928 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
929 \f
930 /* Pseudo-op table.
931
932 The following pseudo-ops from the Kane and Heinrich MIPS book
933 should be defined here, but are currently unsupported: .alias,
934 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
935
936 The following pseudo-ops from the Kane and Heinrich MIPS book are
937 specific to the type of debugging information being generated, and
938 should be defined by the object format: .aent, .begin, .bend,
939 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
940 .vreg.
941
942 The following pseudo-ops from the Kane and Heinrich MIPS book are
943 not MIPS CPU specific, but are also not specific to the object file
944 format. This file is probably the best place to define them, but
945 they are not currently supported: .asm0, .endr, .lab, .repeat,
946 .struct. */
947
948 static const pseudo_typeS mips_pseudo_table[] =
949 {
950 /* MIPS specific pseudo-ops. */
951 {"option", s_option, 0},
952 {"set", s_mipsset, 0},
953 {"rdata", s_change_sec, 'r'},
954 {"sdata", s_change_sec, 's'},
955 {"livereg", s_ignore, 0},
956 {"abicalls", s_abicalls, 0},
957 {"cpload", s_cpload, 0},
958 {"cpsetup", s_cpsetup, 0},
959 {"cplocal", s_cplocal, 0},
960 {"cprestore", s_cprestore, 0},
961 {"cpreturn", s_cpreturn, 0},
962 {"gpvalue", s_gpvalue, 0},
963 {"gpword", s_gpword, 0},
964 {"gpdword", s_gpdword, 0},
965 {"cpadd", s_cpadd, 0},
966 {"insn", s_insn, 0},
967
968 /* Relatively generic pseudo-ops that happen to be used on MIPS
969 chips. */
970 {"asciiz", stringer, 1},
971 {"bss", s_change_sec, 'b'},
972 {"err", s_err, 0},
973 {"half", s_cons, 1},
974 {"dword", s_cons, 3},
975 {"weakext", s_mips_weakext, 0},
976
977 /* These pseudo-ops are defined in read.c, but must be overridden
978 here for one reason or another. */
979 {"align", s_align, 0},
980 {"byte", s_cons, 0},
981 {"data", s_change_sec, 'd'},
982 {"double", s_float_cons, 'd'},
983 {"float", s_float_cons, 'f'},
984 {"globl", s_mips_globl, 0},
985 {"global", s_mips_globl, 0},
986 {"hword", s_cons, 1},
987 {"int", s_cons, 2},
988 {"long", s_cons, 2},
989 {"octa", s_cons, 4},
990 {"quad", s_cons, 3},
991 {"section", s_change_section, 0},
992 {"short", s_cons, 1},
993 {"single", s_float_cons, 'f'},
994 {"stabn", s_mips_stab, 'n'},
995 {"text", s_change_sec, 't'},
996 {"word", s_cons, 2},
997
998 { "extern", ecoff_directive_extern, 0},
999
1000 { NULL, NULL, 0 },
1001 };
1002
1003 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1004 {
1005 /* These pseudo-ops should be defined by the object file format.
1006 However, a.out doesn't support them, so we have versions here. */
1007 {"aent", s_mips_ent, 1},
1008 {"bgnb", s_ignore, 0},
1009 {"end", s_mips_end, 0},
1010 {"endb", s_ignore, 0},
1011 {"ent", s_mips_ent, 0},
1012 {"file", s_mips_file, 0},
1013 {"fmask", s_mips_mask, 'F'},
1014 {"frame", s_mips_frame, 0},
1015 {"loc", s_mips_loc, 0},
1016 {"mask", s_mips_mask, 'R'},
1017 {"verstamp", s_ignore, 0},
1018 { NULL, NULL, 0 },
1019 };
1020
1021 extern void pop_insert (const pseudo_typeS *);
1022
1023 void
1024 mips_pop_insert (void)
1025 {
1026 pop_insert (mips_pseudo_table);
1027 if (! ECOFF_DEBUGGING)
1028 pop_insert (mips_nonecoff_pseudo_table);
1029 }
1030 \f
1031 /* Symbols labelling the current insn. */
1032
1033 struct insn_label_list
1034 {
1035 struct insn_label_list *next;
1036 symbolS *label;
1037 };
1038
1039 static struct insn_label_list *insn_labels;
1040 static struct insn_label_list *free_insn_labels;
1041
1042 static void mips_clear_insn_labels (void);
1043
1044 static inline void
1045 mips_clear_insn_labels (void)
1046 {
1047 register struct insn_label_list **pl;
1048
1049 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1050 ;
1051 *pl = insn_labels;
1052 insn_labels = NULL;
1053 }
1054 \f
1055 static char *expr_end;
1056
1057 /* Expressions which appear in instructions. These are set by
1058 mips_ip. */
1059
1060 static expressionS imm_expr;
1061 static expressionS imm2_expr;
1062 static expressionS offset_expr;
1063
1064 /* Relocs associated with imm_expr and offset_expr. */
1065
1066 static bfd_reloc_code_real_type imm_reloc[3]
1067 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1068 static bfd_reloc_code_real_type offset_reloc[3]
1069 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1070
1071 /* These are set by mips16_ip if an explicit extension is used. */
1072
1073 static bfd_boolean mips16_small, mips16_ext;
1074
1075 #ifdef OBJ_ELF
1076 /* The pdr segment for per procedure frame/regmask info. Not used for
1077 ECOFF debugging. */
1078
1079 static segT pdr_seg;
1080 #endif
1081
1082 /* The default target format to use. */
1083
1084 const char *
1085 mips_target_format (void)
1086 {
1087 switch (OUTPUT_FLAVOR)
1088 {
1089 case bfd_target_ecoff_flavour:
1090 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1091 case bfd_target_coff_flavour:
1092 return "pe-mips";
1093 case bfd_target_elf_flavour:
1094 #ifdef TE_TMIPS
1095 /* This is traditional mips. */
1096 return (target_big_endian
1097 ? (HAVE_64BIT_OBJECTS
1098 ? "elf64-tradbigmips"
1099 : (HAVE_NEWABI
1100 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
1101 : (HAVE_64BIT_OBJECTS
1102 ? "elf64-tradlittlemips"
1103 : (HAVE_NEWABI
1104 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
1105 #else
1106 return (target_big_endian
1107 ? (HAVE_64BIT_OBJECTS
1108 ? "elf64-bigmips"
1109 : (HAVE_NEWABI
1110 ? "elf32-nbigmips" : "elf32-bigmips"))
1111 : (HAVE_64BIT_OBJECTS
1112 ? "elf64-littlemips"
1113 : (HAVE_NEWABI
1114 ? "elf32-nlittlemips" : "elf32-littlemips")));
1115 #endif
1116 default:
1117 abort ();
1118 return NULL;
1119 }
1120 }
1121
1122 /* This function is called once, at assembler startup time. It should
1123 set up all the tables, etc. that the MD part of the assembler will need. */
1124
1125 void
1126 md_begin (void)
1127 {
1128 register const char *retval = NULL;
1129 int i = 0;
1130 int broken = 0;
1131
1132 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
1133 as_warn (_("Could not set architecture and machine"));
1134
1135 op_hash = hash_new ();
1136
1137 for (i = 0; i < NUMOPCODES;)
1138 {
1139 const char *name = mips_opcodes[i].name;
1140
1141 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
1142 if (retval != NULL)
1143 {
1144 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1145 mips_opcodes[i].name, retval);
1146 /* Probably a memory allocation problem? Give up now. */
1147 as_fatal (_("Broken assembler. No assembly attempted."));
1148 }
1149 do
1150 {
1151 if (mips_opcodes[i].pinfo != INSN_MACRO)
1152 {
1153 if (!validate_mips_insn (&mips_opcodes[i]))
1154 broken = 1;
1155 }
1156 ++i;
1157 }
1158 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1159 }
1160
1161 mips16_op_hash = hash_new ();
1162
1163 i = 0;
1164 while (i < bfd_mips16_num_opcodes)
1165 {
1166 const char *name = mips16_opcodes[i].name;
1167
1168 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
1169 if (retval != NULL)
1170 as_fatal (_("internal: can't hash `%s': %s"),
1171 mips16_opcodes[i].name, retval);
1172 do
1173 {
1174 if (mips16_opcodes[i].pinfo != INSN_MACRO
1175 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1176 != mips16_opcodes[i].match))
1177 {
1178 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1179 mips16_opcodes[i].name, mips16_opcodes[i].args);
1180 broken = 1;
1181 }
1182 ++i;
1183 }
1184 while (i < bfd_mips16_num_opcodes
1185 && strcmp (mips16_opcodes[i].name, name) == 0);
1186 }
1187
1188 if (broken)
1189 as_fatal (_("Broken assembler. No assembly attempted."));
1190
1191 /* We add all the general register names to the symbol table. This
1192 helps us detect invalid uses of them. */
1193 for (i = 0; i < 32; i++)
1194 {
1195 char buf[5];
1196
1197 sprintf (buf, "$%d", i);
1198 symbol_table_insert (symbol_new (buf, reg_section, i,
1199 &zero_address_frag));
1200 }
1201 symbol_table_insert (symbol_new ("$ra", reg_section, RA,
1202 &zero_address_frag));
1203 symbol_table_insert (symbol_new ("$fp", reg_section, FP,
1204 &zero_address_frag));
1205 symbol_table_insert (symbol_new ("$sp", reg_section, SP,
1206 &zero_address_frag));
1207 symbol_table_insert (symbol_new ("$gp", reg_section, GP,
1208 &zero_address_frag));
1209 symbol_table_insert (symbol_new ("$at", reg_section, AT,
1210 &zero_address_frag));
1211 symbol_table_insert (symbol_new ("$kt0", reg_section, KT0,
1212 &zero_address_frag));
1213 symbol_table_insert (symbol_new ("$kt1", reg_section, KT1,
1214 &zero_address_frag));
1215 symbol_table_insert (symbol_new ("$zero", reg_section, ZERO,
1216 &zero_address_frag));
1217 symbol_table_insert (symbol_new ("$pc", reg_section, -1,
1218 &zero_address_frag));
1219
1220 /* If we don't add these register names to the symbol table, they
1221 may end up being added as regular symbols by operand(), and then
1222 make it to the object file as undefined in case they're not
1223 regarded as local symbols. They're local in o32, since `$' is a
1224 local symbol prefix, but not in n32 or n64. */
1225 for (i = 0; i < 8; i++)
1226 {
1227 char buf[6];
1228
1229 sprintf (buf, "$fcc%i", i);
1230 symbol_table_insert (symbol_new (buf, reg_section, -1,
1231 &zero_address_frag));
1232 }
1233
1234 mips_no_prev_insn (FALSE);
1235
1236 mips_gprmask = 0;
1237 mips_cprmask[0] = 0;
1238 mips_cprmask[1] = 0;
1239 mips_cprmask[2] = 0;
1240 mips_cprmask[3] = 0;
1241
1242 /* set the default alignment for the text section (2**2) */
1243 record_alignment (text_section, 2);
1244
1245 bfd_set_gp_size (stdoutput, g_switch_value);
1246
1247 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1248 {
1249 /* On a native system, sections must be aligned to 16 byte
1250 boundaries. When configured for an embedded ELF target, we
1251 don't bother. */
1252 if (strcmp (TARGET_OS, "elf") != 0)
1253 {
1254 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
1255 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
1256 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
1257 }
1258
1259 /* Create a .reginfo section for register masks and a .mdebug
1260 section for debugging information. */
1261 {
1262 segT seg;
1263 subsegT subseg;
1264 flagword flags;
1265 segT sec;
1266
1267 seg = now_seg;
1268 subseg = now_subseg;
1269
1270 /* The ABI says this section should be loaded so that the
1271 running program can access it. However, we don't load it
1272 if we are configured for an embedded target */
1273 flags = SEC_READONLY | SEC_DATA;
1274 if (strcmp (TARGET_OS, "elf") != 0)
1275 flags |= SEC_ALLOC | SEC_LOAD;
1276
1277 if (mips_abi != N64_ABI)
1278 {
1279 sec = subseg_new (".reginfo", (subsegT) 0);
1280
1281 bfd_set_section_flags (stdoutput, sec, flags);
1282 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
1283
1284 #ifdef OBJ_ELF
1285 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
1286 #endif
1287 }
1288 else
1289 {
1290 /* The 64-bit ABI uses a .MIPS.options section rather than
1291 .reginfo section. */
1292 sec = subseg_new (".MIPS.options", (subsegT) 0);
1293 bfd_set_section_flags (stdoutput, sec, flags);
1294 bfd_set_section_alignment (stdoutput, sec, 3);
1295
1296 #ifdef OBJ_ELF
1297 /* Set up the option header. */
1298 {
1299 Elf_Internal_Options opthdr;
1300 char *f;
1301
1302 opthdr.kind = ODK_REGINFO;
1303 opthdr.size = (sizeof (Elf_External_Options)
1304 + sizeof (Elf64_External_RegInfo));
1305 opthdr.section = 0;
1306 opthdr.info = 0;
1307 f = frag_more (sizeof (Elf_External_Options));
1308 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
1309 (Elf_External_Options *) f);
1310
1311 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
1312 }
1313 #endif
1314 }
1315
1316 if (ECOFF_DEBUGGING)
1317 {
1318 sec = subseg_new (".mdebug", (subsegT) 0);
1319 (void) bfd_set_section_flags (stdoutput, sec,
1320 SEC_HAS_CONTENTS | SEC_READONLY);
1321 (void) bfd_set_section_alignment (stdoutput, sec, 2);
1322 }
1323 #ifdef OBJ_ELF
1324 else if (OUTPUT_FLAVOR == bfd_target_elf_flavour && mips_flag_pdr)
1325 {
1326 pdr_seg = subseg_new (".pdr", (subsegT) 0);
1327 (void) bfd_set_section_flags (stdoutput, pdr_seg,
1328 SEC_READONLY | SEC_RELOC
1329 | SEC_DEBUGGING);
1330 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
1331 }
1332 #endif
1333
1334 subseg_set (seg, subseg);
1335 }
1336 }
1337
1338 if (! ECOFF_DEBUGGING)
1339 md_obj_begin ();
1340 }
1341
1342 void
1343 md_mips_end (void)
1344 {
1345 if (! ECOFF_DEBUGGING)
1346 md_obj_end ();
1347 }
1348
1349 void
1350 md_assemble (char *str)
1351 {
1352 struct mips_cl_insn insn;
1353 bfd_reloc_code_real_type unused_reloc[3]
1354 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1355
1356 imm_expr.X_op = O_absent;
1357 imm2_expr.X_op = O_absent;
1358 offset_expr.X_op = O_absent;
1359 imm_reloc[0] = BFD_RELOC_UNUSED;
1360 imm_reloc[1] = BFD_RELOC_UNUSED;
1361 imm_reloc[2] = BFD_RELOC_UNUSED;
1362 offset_reloc[0] = BFD_RELOC_UNUSED;
1363 offset_reloc[1] = BFD_RELOC_UNUSED;
1364 offset_reloc[2] = BFD_RELOC_UNUSED;
1365
1366 if (mips_opts.mips16)
1367 mips16_ip (str, &insn);
1368 else
1369 {
1370 mips_ip (str, &insn);
1371 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
1372 str, insn.insn_opcode));
1373 }
1374
1375 if (insn_error)
1376 {
1377 as_bad ("%s `%s'", insn_error, str);
1378 return;
1379 }
1380
1381 if (insn.insn_mo->pinfo == INSN_MACRO)
1382 {
1383 macro_start ();
1384 if (mips_opts.mips16)
1385 mips16_macro (&insn);
1386 else
1387 macro (&insn);
1388 macro_end ();
1389 }
1390 else
1391 {
1392 if (imm_expr.X_op != O_absent)
1393 append_insn (&insn, &imm_expr, imm_reloc);
1394 else if (offset_expr.X_op != O_absent)
1395 append_insn (&insn, &offset_expr, offset_reloc);
1396 else
1397 append_insn (&insn, NULL, unused_reloc);
1398 }
1399 }
1400
1401 /* Return true if the given relocation might need a matching %lo().
1402 Note that R_MIPS_GOT16 relocations only need a matching %lo() when
1403 applied to local symbols. */
1404
1405 static inline bfd_boolean
1406 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
1407 {
1408 return (HAVE_IN_PLACE_ADDENDS
1409 && (reloc == BFD_RELOC_HI16_S
1410 || reloc == BFD_RELOC_MIPS_GOT16
1411 || reloc == BFD_RELOC_MIPS16_HI16_S));
1412 }
1413
1414 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
1415 relocation. */
1416
1417 static inline bfd_boolean
1418 fixup_has_matching_lo_p (fixS *fixp)
1419 {
1420 return (fixp->fx_next != NULL
1421 && (fixp->fx_next->fx_r_type == BFD_RELOC_LO16
1422 || fixp->fx_next->fx_r_type == BFD_RELOC_MIPS16_LO16)
1423 && fixp->fx_addsy == fixp->fx_next->fx_addsy
1424 && fixp->fx_offset == fixp->fx_next->fx_offset);
1425 }
1426
1427 /* See whether instruction IP reads register REG. CLASS is the type
1428 of register. */
1429
1430 static int
1431 insn_uses_reg (struct mips_cl_insn *ip, unsigned int reg,
1432 enum mips_regclass class)
1433 {
1434 if (class == MIPS16_REG)
1435 {
1436 assert (mips_opts.mips16);
1437 reg = mips16_to_32_reg_map[reg];
1438 class = MIPS_GR_REG;
1439 }
1440
1441 /* Don't report on general register ZERO, since it never changes. */
1442 if (class == MIPS_GR_REG && reg == ZERO)
1443 return 0;
1444
1445 if (class == MIPS_FP_REG)
1446 {
1447 assert (! mips_opts.mips16);
1448 /* If we are called with either $f0 or $f1, we must check $f0.
1449 This is not optimal, because it will introduce an unnecessary
1450 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
1451 need to distinguish reading both $f0 and $f1 or just one of
1452 them. Note that we don't have to check the other way,
1453 because there is no instruction that sets both $f0 and $f1
1454 and requires a delay. */
1455 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
1456 && ((((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS) &~(unsigned)1)
1457 == (reg &~ (unsigned) 1)))
1458 return 1;
1459 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
1460 && ((((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT) &~(unsigned)1)
1461 == (reg &~ (unsigned) 1)))
1462 return 1;
1463 }
1464 else if (! mips_opts.mips16)
1465 {
1466 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
1467 && ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == reg)
1468 return 1;
1469 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
1470 && ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT) == reg)
1471 return 1;
1472 }
1473 else
1474 {
1475 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
1476 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RX)
1477 & MIPS16OP_MASK_RX)]
1478 == reg))
1479 return 1;
1480 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
1481 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RY)
1482 & MIPS16OP_MASK_RY)]
1483 == reg))
1484 return 1;
1485 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
1486 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
1487 & MIPS16OP_MASK_MOVE32Z)]
1488 == reg))
1489 return 1;
1490 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
1491 return 1;
1492 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
1493 return 1;
1494 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
1495 return 1;
1496 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
1497 && ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
1498 & MIPS16OP_MASK_REGR32) == reg)
1499 return 1;
1500 }
1501
1502 return 0;
1503 }
1504
1505 /* This function returns true if modifying a register requires a
1506 delay. */
1507
1508 static int
1509 reg_needs_delay (unsigned int reg)
1510 {
1511 unsigned long prev_pinfo;
1512
1513 prev_pinfo = prev_insn.insn_mo->pinfo;
1514 if (! mips_opts.noreorder
1515 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
1516 && ! gpr_interlocks)
1517 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1518 && ! cop_interlocks)))
1519 {
1520 /* A load from a coprocessor or from memory. All load delays
1521 delay the use of general register rt for one instruction. */
1522 /* Itbl support may require additional care here. */
1523 know (prev_pinfo & INSN_WRITE_GPR_T);
1524 if (reg == ((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT))
1525 return 1;
1526 }
1527
1528 return 0;
1529 }
1530
1531 /* Mark instruction labels in mips16 mode. This permits the linker to
1532 handle them specially, such as generating jalx instructions when
1533 needed. We also make them odd for the duration of the assembly, in
1534 order to generate the right sort of code. We will make them even
1535 in the adjust_symtab routine, while leaving them marked. This is
1536 convenient for the debugger and the disassembler. The linker knows
1537 to make them odd again. */
1538
1539 static void
1540 mips16_mark_labels (void)
1541 {
1542 if (mips_opts.mips16)
1543 {
1544 struct insn_label_list *l;
1545 valueT val;
1546
1547 for (l = insn_labels; l != NULL; l = l->next)
1548 {
1549 #ifdef OBJ_ELF
1550 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1551 S_SET_OTHER (l->label, STO_MIPS16);
1552 #endif
1553 val = S_GET_VALUE (l->label);
1554 if ((val & 1) == 0)
1555 S_SET_VALUE (l->label, val + 1);
1556 }
1557 }
1558 }
1559
1560 /* End the current frag. Make it a variant frag and record the
1561 relaxation info. */
1562
1563 static void
1564 relax_close_frag (void)
1565 {
1566 mips_macro_warning.first_frag = frag_now;
1567 frag_var (rs_machine_dependent, 0, 0,
1568 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
1569 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
1570
1571 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
1572 mips_relax.first_fixup = 0;
1573 }
1574
1575 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
1576 See the comment above RELAX_ENCODE for more details. */
1577
1578 static void
1579 relax_start (symbolS *symbol)
1580 {
1581 assert (mips_relax.sequence == 0);
1582 mips_relax.sequence = 1;
1583 mips_relax.symbol = symbol;
1584 }
1585
1586 /* Start generating the second version of a relaxable sequence.
1587 See the comment above RELAX_ENCODE for more details. */
1588
1589 static void
1590 relax_switch (void)
1591 {
1592 assert (mips_relax.sequence == 1);
1593 mips_relax.sequence = 2;
1594 }
1595
1596 /* End the current relaxable sequence. */
1597
1598 static void
1599 relax_end (void)
1600 {
1601 assert (mips_relax.sequence == 2);
1602 relax_close_frag ();
1603 mips_relax.sequence = 0;
1604 }
1605
1606 /* Output an instruction. IP is the instruction information.
1607 ADDRESS_EXPR is an operand of the instruction to be used with
1608 RELOC_TYPE. */
1609
1610 static void
1611 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
1612 bfd_reloc_code_real_type *reloc_type)
1613 {
1614 register unsigned long prev_pinfo, pinfo;
1615 char *f;
1616 fixS *fixp[3];
1617 int nops = 0;
1618 relax_stateT prev_insn_frag_type = 0;
1619 bfd_boolean relaxed_branch = FALSE;
1620 bfd_boolean force_new_frag = FALSE;
1621
1622 /* Mark instruction labels in mips16 mode. */
1623 mips16_mark_labels ();
1624
1625 prev_pinfo = prev_insn.insn_mo->pinfo;
1626 pinfo = ip->insn_mo->pinfo;
1627
1628 if (mips_relax.sequence != 2
1629 && (!mips_opts.noreorder || prev_nop_frag != NULL))
1630 {
1631 int prev_prev_nop;
1632
1633 /* If the previous insn required any delay slots, see if we need
1634 to insert a NOP or two. There are eight kinds of possible
1635 hazards, of which an instruction can have at most one type.
1636 (1) a load from memory delay
1637 (2) a load from a coprocessor delay
1638 (3) an unconditional branch delay
1639 (4) a conditional branch delay
1640 (5) a move to coprocessor register delay
1641 (6) a load coprocessor register from memory delay
1642 (7) a coprocessor condition code delay
1643 (8) a HI/LO special register delay
1644
1645 There are a lot of optimizations we could do that we don't.
1646 In particular, we do not, in general, reorder instructions.
1647 If you use gcc with optimization, it will reorder
1648 instructions and generally do much more optimization then we
1649 do here; repeating all that work in the assembler would only
1650 benefit hand written assembly code, and does not seem worth
1651 it. */
1652
1653 /* This is how a NOP is emitted. */
1654 #define emit_nop() \
1655 (mips_opts.mips16 \
1656 ? md_number_to_chars (frag_more (2), 0x6500, 2) \
1657 : md_number_to_chars (frag_more (4), 0, 4))
1658
1659 /* The previous insn might require a delay slot, depending upon
1660 the contents of the current insn. */
1661 if (! mips_opts.mips16
1662 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
1663 && ! gpr_interlocks)
1664 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1665 && ! cop_interlocks)))
1666 {
1667 /* A load from a coprocessor or from memory. All load
1668 delays delay the use of general register rt for one
1669 instruction. */
1670 /* Itbl support may require additional care here. */
1671 know (prev_pinfo & INSN_WRITE_GPR_T);
1672 if (mips_optimize == 0
1673 || insn_uses_reg (ip,
1674 ((prev_insn.insn_opcode >> OP_SH_RT)
1675 & OP_MASK_RT),
1676 MIPS_GR_REG))
1677 ++nops;
1678 }
1679 else if (! mips_opts.mips16
1680 && (((prev_pinfo & INSN_COPROC_MOVE_DELAY)
1681 && ! cop_interlocks)
1682 || ((prev_pinfo & INSN_COPROC_MEMORY_DELAY)
1683 && ! cop_mem_interlocks)))
1684 {
1685 /* A generic coprocessor delay. The previous instruction
1686 modified a coprocessor general or control register. If
1687 it modified a control register, we need to avoid any
1688 coprocessor instruction (this is probably not always
1689 required, but it sometimes is). If it modified a general
1690 register, we avoid using that register.
1691
1692 This case is not handled very well. There is no special
1693 knowledge of CP0 handling, and the coprocessors other
1694 than the floating point unit are not distinguished at
1695 all. */
1696 /* Itbl support may require additional care here. FIXME!
1697 Need to modify this to include knowledge about
1698 user specified delays! */
1699 if (prev_pinfo & INSN_WRITE_FPR_T)
1700 {
1701 if (mips_optimize == 0
1702 || insn_uses_reg (ip,
1703 ((prev_insn.insn_opcode >> OP_SH_FT)
1704 & OP_MASK_FT),
1705 MIPS_FP_REG))
1706 ++nops;
1707 }
1708 else if (prev_pinfo & INSN_WRITE_FPR_S)
1709 {
1710 if (mips_optimize == 0
1711 || insn_uses_reg (ip,
1712 ((prev_insn.insn_opcode >> OP_SH_FS)
1713 & OP_MASK_FS),
1714 MIPS_FP_REG))
1715 ++nops;
1716 }
1717 else
1718 {
1719 /* We don't know exactly what the previous instruction
1720 does. If the current instruction uses a coprocessor
1721 register, we must insert a NOP. If previous
1722 instruction may set the condition codes, and the
1723 current instruction uses them, we must insert two
1724 NOPS. */
1725 /* Itbl support may require additional care here. */
1726 if (mips_optimize == 0
1727 || ((prev_pinfo & INSN_WRITE_COND_CODE)
1728 && (pinfo & INSN_READ_COND_CODE)))
1729 nops += 2;
1730 else if (pinfo & INSN_COP)
1731 ++nops;
1732 }
1733 }
1734 else if (! mips_opts.mips16
1735 && (prev_pinfo & INSN_WRITE_COND_CODE)
1736 && ! cop_interlocks)
1737 {
1738 /* The previous instruction sets the coprocessor condition
1739 codes, but does not require a general coprocessor delay
1740 (this means it is a floating point comparison
1741 instruction). If this instruction uses the condition
1742 codes, we need to insert a single NOP. */
1743 /* Itbl support may require additional care here. */
1744 if (mips_optimize == 0
1745 || (pinfo & INSN_READ_COND_CODE))
1746 ++nops;
1747 }
1748
1749 /* If we're fixing up mfhi/mflo for the r7000 and the
1750 previous insn was an mfhi/mflo and the current insn
1751 reads the register that the mfhi/mflo wrote to, then
1752 insert two nops. */
1753
1754 else if (mips_7000_hilo_fix
1755 && MF_HILO_INSN (prev_pinfo)
1756 && insn_uses_reg (ip, ((prev_insn.insn_opcode >> OP_SH_RD)
1757 & OP_MASK_RD),
1758 MIPS_GR_REG))
1759 {
1760 nops += 2;
1761 }
1762
1763 /* If we're fixing up mfhi/mflo for the r7000 and the
1764 2nd previous insn was an mfhi/mflo and the current insn
1765 reads the register that the mfhi/mflo wrote to, then
1766 insert one nop. */
1767
1768 else if (mips_7000_hilo_fix
1769 && MF_HILO_INSN (prev_prev_insn.insn_opcode)
1770 && insn_uses_reg (ip, ((prev_prev_insn.insn_opcode >> OP_SH_RD)
1771 & OP_MASK_RD),
1772 MIPS_GR_REG))
1773
1774 {
1775 ++nops;
1776 }
1777
1778 else if (prev_pinfo & INSN_READ_LO)
1779 {
1780 /* The previous instruction reads the LO register; if the
1781 current instruction writes to the LO register, we must
1782 insert two NOPS. Some newer processors have interlocks.
1783 Also the tx39's multiply instructions can be executed
1784 immediately after a read from HI/LO (without the delay),
1785 though the tx39's divide insns still do require the
1786 delay. */
1787 if (! (hilo_interlocks
1788 || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT)))
1789 && (mips_optimize == 0
1790 || (pinfo & INSN_WRITE_LO)))
1791 nops += 2;
1792 /* Most mips16 branch insns don't have a delay slot.
1793 If a read from LO is immediately followed by a branch
1794 to a write to LO we have a read followed by a write
1795 less than 2 insns away. We assume the target of
1796 a branch might be a write to LO, and insert a nop
1797 between a read and an immediately following branch. */
1798 else if (mips_opts.mips16
1799 && (mips_optimize == 0
1800 || (pinfo & MIPS16_INSN_BRANCH)))
1801 ++nops;
1802 }
1803 else if (prev_insn.insn_mo->pinfo & INSN_READ_HI)
1804 {
1805 /* The previous instruction reads the HI register; if the
1806 current instruction writes to the HI register, we must
1807 insert a NOP. Some newer processors have interlocks.
1808 Also the note tx39's multiply above. */
1809 if (! (hilo_interlocks
1810 || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT)))
1811 && (mips_optimize == 0
1812 || (pinfo & INSN_WRITE_HI)))
1813 nops += 2;
1814 /* Most mips16 branch insns don't have a delay slot.
1815 If a read from HI is immediately followed by a branch
1816 to a write to HI we have a read followed by a write
1817 less than 2 insns away. We assume the target of
1818 a branch might be a write to HI, and insert a nop
1819 between a read and an immediately following branch. */
1820 else if (mips_opts.mips16
1821 && (mips_optimize == 0
1822 || (pinfo & MIPS16_INSN_BRANCH)))
1823 ++nops;
1824 }
1825
1826 /* If the previous instruction was in a noreorder section, then
1827 we don't want to insert the nop after all. */
1828 /* Itbl support may require additional care here. */
1829 if (prev_insn_unreordered)
1830 nops = 0;
1831
1832 /* There are two cases which require two intervening
1833 instructions: 1) setting the condition codes using a move to
1834 coprocessor instruction which requires a general coprocessor
1835 delay and then reading the condition codes 2) reading the HI
1836 or LO register and then writing to it (except on processors
1837 which have interlocks). If we are not already emitting a NOP
1838 instruction, we must check for these cases compared to the
1839 instruction previous to the previous instruction. */
1840 if ((! mips_opts.mips16
1841 && (prev_prev_insn.insn_mo->pinfo & INSN_COPROC_MOVE_DELAY)
1842 && (prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE)
1843 && (pinfo & INSN_READ_COND_CODE)
1844 && ! cop_interlocks)
1845 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_LO)
1846 && (pinfo & INSN_WRITE_LO)
1847 && ! (hilo_interlocks
1848 || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT))))
1849 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
1850 && (pinfo & INSN_WRITE_HI)
1851 && ! (hilo_interlocks
1852 || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT)))))
1853 prev_prev_nop = 1;
1854 else
1855 prev_prev_nop = 0;
1856
1857 if (prev_prev_insn_unreordered)
1858 prev_prev_nop = 0;
1859
1860 if (prev_prev_nop && nops == 0)
1861 ++nops;
1862
1863 if (mips_fix_vr4120 && prev_insn.insn_mo->name)
1864 {
1865 /* We're out of bits in pinfo, so we must resort to string
1866 ops here. Shortcuts are selected based on opcodes being
1867 limited to the VR4120 instruction set. */
1868 int min_nops = 0;
1869 const char *pn = prev_insn.insn_mo->name;
1870 const char *tn = ip->insn_mo->name;
1871 if (strncmp (pn, "macc", 4) == 0
1872 || strncmp (pn, "dmacc", 5) == 0)
1873 {
1874 /* Errata 21 - [D]DIV[U] after [D]MACC */
1875 if (strstr (tn, "div"))
1876 min_nops = 1;
1877
1878 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1879 instruction is executed immediately after a MACC or
1880 DMACC instruction, the result of [either instruction]
1881 is incorrect." */
1882 if (strncmp (tn, "mult", 4) == 0
1883 || strncmp (tn, "dmult", 5) == 0)
1884 min_nops = 1;
1885
1886 /* Errata 23 - Continuous DMULT[U]/DMACC instructions.
1887 Applies on top of VR4181A MD(1) errata. */
1888 if (pn[0] == 'd' && strncmp (tn, "dmacc", 5) == 0)
1889 min_nops = 1;
1890
1891 /* Errata 24 - MT{LO,HI} after [D]MACC */
1892 if (strcmp (tn, "mtlo") == 0
1893 || strcmp (tn, "mthi") == 0)
1894 min_nops = 1;
1895 }
1896 else if (strncmp (pn, "dmult", 5) == 0
1897 && (strncmp (tn, "dmult", 5) == 0
1898 || strncmp (tn, "dmacc", 5) == 0))
1899 {
1900 /* Here is the rest of errata 23. */
1901 min_nops = 1;
1902 }
1903 else if ((strncmp (pn, "dmult", 5) == 0 || strstr (pn, "div"))
1904 && (strncmp (tn, "macc", 4) == 0
1905 || strncmp (tn, "dmacc", 5) == 0))
1906 {
1907 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1908 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1909 DDIV or DDIVU instruction, the result of the MACC or
1910 DMACC instruction is incorrect.". This partly overlaps
1911 the workaround for errata 23. */
1912 min_nops = 1;
1913 }
1914 if (nops < min_nops)
1915 nops = min_nops;
1916 }
1917
1918 /* If we are being given a nop instruction, don't bother with
1919 one of the nops we would otherwise output. This will only
1920 happen when a nop instruction is used with mips_optimize set
1921 to 0. */
1922 if (nops > 0
1923 && ! mips_opts.noreorder
1924 && ip->insn_opcode == (unsigned) (mips_opts.mips16 ? 0x6500 : 0))
1925 --nops;
1926
1927 /* Now emit the right number of NOP instructions. */
1928 if (nops > 0 && ! mips_opts.noreorder)
1929 {
1930 fragS *old_frag;
1931 unsigned long old_frag_offset;
1932 int i;
1933 struct insn_label_list *l;
1934
1935 old_frag = frag_now;
1936 old_frag_offset = frag_now_fix ();
1937
1938 for (i = 0; i < nops; i++)
1939 emit_nop ();
1940
1941 if (listing)
1942 {
1943 listing_prev_line ();
1944 /* We may be at the start of a variant frag. In case we
1945 are, make sure there is enough space for the frag
1946 after the frags created by listing_prev_line. The
1947 argument to frag_grow here must be at least as large
1948 as the argument to all other calls to frag_grow in
1949 this file. We don't have to worry about being in the
1950 middle of a variant frag, because the variants insert
1951 all needed nop instructions themselves. */
1952 frag_grow (40);
1953 }
1954
1955 for (l = insn_labels; l != NULL; l = l->next)
1956 {
1957 valueT val;
1958
1959 assert (S_GET_SEGMENT (l->label) == now_seg);
1960 symbol_set_frag (l->label, frag_now);
1961 val = (valueT) frag_now_fix ();
1962 /* mips16 text labels are stored as odd. */
1963 if (mips_opts.mips16)
1964 ++val;
1965 S_SET_VALUE (l->label, val);
1966 }
1967
1968 #ifndef NO_ECOFF_DEBUGGING
1969 if (ECOFF_DEBUGGING)
1970 ecoff_fix_loc (old_frag, old_frag_offset);
1971 #endif
1972 }
1973 else if (prev_nop_frag != NULL)
1974 {
1975 /* We have a frag holding nops we may be able to remove. If
1976 we don't need any nops, we can decrease the size of
1977 prev_nop_frag by the size of one instruction. If we do
1978 need some nops, we count them in prev_nops_required. */
1979 if (prev_nop_frag_since == 0)
1980 {
1981 if (nops == 0)
1982 {
1983 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1984 --prev_nop_frag_holds;
1985 }
1986 else
1987 prev_nop_frag_required += nops;
1988 }
1989 else
1990 {
1991 if (prev_prev_nop == 0)
1992 {
1993 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1994 --prev_nop_frag_holds;
1995 }
1996 else
1997 ++prev_nop_frag_required;
1998 }
1999
2000 if (prev_nop_frag_holds <= prev_nop_frag_required)
2001 prev_nop_frag = NULL;
2002
2003 ++prev_nop_frag_since;
2004
2005 /* Sanity check: by the time we reach the second instruction
2006 after prev_nop_frag, we should have used up all the nops
2007 one way or another. */
2008 assert (prev_nop_frag_since <= 1 || prev_nop_frag == NULL);
2009 }
2010 }
2011
2012 /* Record the frag type before frag_var. */
2013 if (prev_insn_frag)
2014 prev_insn_frag_type = prev_insn_frag->fr_type;
2015
2016 if (address_expr
2017 && *reloc_type == BFD_RELOC_16_PCREL_S2
2018 && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
2019 || pinfo & INSN_COND_BRANCH_LIKELY)
2020 && mips_relax_branch
2021 /* Don't try branch relaxation within .set nomacro, or within
2022 .set noat if we use $at for PIC computations. If it turns
2023 out that the branch was out-of-range, we'll get an error. */
2024 && !mips_opts.warn_about_macros
2025 && !(mips_opts.noat && mips_pic != NO_PIC)
2026 && !mips_opts.mips16)
2027 {
2028 relaxed_branch = TRUE;
2029 f = frag_var (rs_machine_dependent,
2030 relaxed_branch_length
2031 (NULL, NULL,
2032 (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
2033 : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1 : 0), 4,
2034 RELAX_BRANCH_ENCODE
2035 (pinfo & INSN_UNCOND_BRANCH_DELAY,
2036 pinfo & INSN_COND_BRANCH_LIKELY,
2037 pinfo & INSN_WRITE_GPR_31,
2038 0),
2039 address_expr->X_add_symbol,
2040 address_expr->X_add_number,
2041 0);
2042 *reloc_type = BFD_RELOC_UNUSED;
2043 }
2044 else if (*reloc_type > BFD_RELOC_UNUSED)
2045 {
2046 /* We need to set up a variant frag. */
2047 assert (mips_opts.mips16 && address_expr != NULL);
2048 f = frag_var (rs_machine_dependent, 4, 0,
2049 RELAX_MIPS16_ENCODE (*reloc_type - BFD_RELOC_UNUSED,
2050 mips16_small, mips16_ext,
2051 (prev_pinfo
2052 & INSN_UNCOND_BRANCH_DELAY),
2053 (*prev_insn_reloc_type
2054 == BFD_RELOC_MIPS16_JMP)),
2055 make_expr_symbol (address_expr), 0, NULL);
2056 }
2057 else if (mips_opts.mips16
2058 && ! ip->use_extend
2059 && *reloc_type != BFD_RELOC_MIPS16_JMP)
2060 {
2061 /* Make sure there is enough room to swap this instruction with
2062 a following jump instruction. */
2063 frag_grow (6);
2064 f = frag_more (2);
2065 }
2066 else
2067 {
2068 if (mips_opts.mips16
2069 && mips_opts.noreorder
2070 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
2071 as_warn (_("extended instruction in delay slot"));
2072
2073 if (mips_relax.sequence)
2074 {
2075 /* If we've reached the end of this frag, turn it into a variant
2076 frag and record the information for the instructions we've
2077 written so far. */
2078 if (frag_room () < 4)
2079 relax_close_frag ();
2080 mips_relax.sizes[mips_relax.sequence - 1] += 4;
2081 }
2082
2083 if (mips_relax.sequence != 2)
2084 mips_macro_warning.sizes[0] += 4;
2085 if (mips_relax.sequence != 1)
2086 mips_macro_warning.sizes[1] += 4;
2087
2088 f = frag_more (4);
2089 }
2090
2091 fixp[0] = fixp[1] = fixp[2] = NULL;
2092 if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED)
2093 {
2094 if (address_expr->X_op == O_constant)
2095 {
2096 unsigned int tmp;
2097
2098 switch (*reloc_type)
2099 {
2100 case BFD_RELOC_32:
2101 ip->insn_opcode |= address_expr->X_add_number;
2102 break;
2103
2104 case BFD_RELOC_MIPS_HIGHEST:
2105 tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
2106 ip->insn_opcode |= tmp & 0xffff;
2107 break;
2108
2109 case BFD_RELOC_MIPS_HIGHER:
2110 tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
2111 ip->insn_opcode |= tmp & 0xffff;
2112 break;
2113
2114 case BFD_RELOC_HI16_S:
2115 tmp = (address_expr->X_add_number + 0x8000) >> 16;
2116 ip->insn_opcode |= tmp & 0xffff;
2117 break;
2118
2119 case BFD_RELOC_HI16:
2120 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
2121 break;
2122
2123 case BFD_RELOC_UNUSED:
2124 case BFD_RELOC_LO16:
2125 case BFD_RELOC_MIPS_GOT_DISP:
2126 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
2127 break;
2128
2129 case BFD_RELOC_MIPS_JMP:
2130 if ((address_expr->X_add_number & 3) != 0)
2131 as_bad (_("jump to misaligned address (0x%lx)"),
2132 (unsigned long) address_expr->X_add_number);
2133 if (address_expr->X_add_number & ~0xfffffff)
2134 as_bad (_("jump address range overflow (0x%lx)"),
2135 (unsigned long) address_expr->X_add_number);
2136 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
2137 break;
2138
2139 case BFD_RELOC_MIPS16_JMP:
2140 if ((address_expr->X_add_number & 3) != 0)
2141 as_bad (_("jump to misaligned address (0x%lx)"),
2142 (unsigned long) address_expr->X_add_number);
2143 if (address_expr->X_add_number & ~0xfffffff)
2144 as_bad (_("jump address range overflow (0x%lx)"),
2145 (unsigned long) address_expr->X_add_number);
2146 ip->insn_opcode |=
2147 (((address_expr->X_add_number & 0x7c0000) << 3)
2148 | ((address_expr->X_add_number & 0xf800000) >> 7)
2149 | ((address_expr->X_add_number & 0x3fffc) >> 2));
2150 break;
2151
2152 case BFD_RELOC_16_PCREL_S2:
2153 goto need_reloc;
2154
2155 default:
2156 internalError ();
2157 }
2158 }
2159 else if (*reloc_type < BFD_RELOC_UNUSED)
2160 need_reloc:
2161 {
2162 reloc_howto_type *howto;
2163 int i;
2164
2165 /* In a compound relocation, it is the final (outermost)
2166 operator that determines the relocated field. */
2167 for (i = 1; i < 3; i++)
2168 if (reloc_type[i] == BFD_RELOC_UNUSED)
2169 break;
2170
2171 howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
2172 fixp[0] = fix_new_exp (frag_now, f - frag_now->fr_literal,
2173 bfd_get_reloc_size(howto),
2174 address_expr,
2175 reloc_type[0] == BFD_RELOC_16_PCREL_S2,
2176 reloc_type[0]);
2177
2178 /* These relocations can have an addend that won't fit in
2179 4 octets for 64bit assembly. */
2180 if (HAVE_64BIT_GPRS
2181 && ! howto->partial_inplace
2182 && (reloc_type[0] == BFD_RELOC_16
2183 || reloc_type[0] == BFD_RELOC_32
2184 || reloc_type[0] == BFD_RELOC_MIPS_JMP
2185 || reloc_type[0] == BFD_RELOC_HI16_S
2186 || reloc_type[0] == BFD_RELOC_LO16
2187 || reloc_type[0] == BFD_RELOC_GPREL16
2188 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
2189 || reloc_type[0] == BFD_RELOC_GPREL32
2190 || reloc_type[0] == BFD_RELOC_64
2191 || reloc_type[0] == BFD_RELOC_CTOR
2192 || reloc_type[0] == BFD_RELOC_MIPS_SUB
2193 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
2194 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
2195 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
2196 || reloc_type[0] == BFD_RELOC_MIPS_REL16
2197 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
2198 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
2199 || reloc_type[0] == BFD_RELOC_MIPS16_HI16_S
2200 || reloc_type[0] == BFD_RELOC_MIPS16_LO16))
2201 fixp[0]->fx_no_overflow = 1;
2202
2203 if (mips_relax.sequence)
2204 {
2205 if (mips_relax.first_fixup == 0)
2206 mips_relax.first_fixup = fixp[0];
2207 }
2208 else if (reloc_needs_lo_p (*reloc_type))
2209 {
2210 struct mips_hi_fixup *hi_fixup;
2211
2212 /* Reuse the last entry if it already has a matching %lo. */
2213 hi_fixup = mips_hi_fixup_list;
2214 if (hi_fixup == 0
2215 || !fixup_has_matching_lo_p (hi_fixup->fixp))
2216 {
2217 hi_fixup = ((struct mips_hi_fixup *)
2218 xmalloc (sizeof (struct mips_hi_fixup)));
2219 hi_fixup->next = mips_hi_fixup_list;
2220 mips_hi_fixup_list = hi_fixup;
2221 }
2222 hi_fixup->fixp = fixp[0];
2223 hi_fixup->seg = now_seg;
2224 }
2225
2226 /* Add fixups for the second and third relocations, if given.
2227 Note that the ABI allows the second relocation to be
2228 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
2229 moment we only use RSS_UNDEF, but we could add support
2230 for the others if it ever becomes necessary. */
2231 for (i = 1; i < 3; i++)
2232 if (reloc_type[i] != BFD_RELOC_UNUSED)
2233 {
2234 fixp[i] = fix_new (frag_now, fixp[0]->fx_where,
2235 fixp[0]->fx_size, NULL, 0,
2236 FALSE, reloc_type[i]);
2237
2238 /* Use fx_tcbit to mark compound relocs. */
2239 fixp[0]->fx_tcbit = 1;
2240 fixp[i]->fx_tcbit = 1;
2241 }
2242 }
2243 }
2244
2245 if (! mips_opts.mips16)
2246 {
2247 md_number_to_chars (f, ip->insn_opcode, 4);
2248 #ifdef OBJ_ELF
2249 dwarf2_emit_insn (4);
2250 #endif
2251 }
2252 else if (*reloc_type == BFD_RELOC_MIPS16_JMP)
2253 {
2254 md_number_to_chars (f, ip->insn_opcode >> 16, 2);
2255 md_number_to_chars (f + 2, ip->insn_opcode & 0xffff, 2);
2256 #ifdef OBJ_ELF
2257 /* The value passed to dwarf2_emit_insn is the distance between
2258 the end of the current instruction and the address that should
2259 be recorded in the debug tables. Since we want to use ISA-encoded
2260 addresses in MIPS16 debug info, the value is one byte less than
2261 the real instruction length. */
2262 dwarf2_emit_insn (3);
2263 #endif
2264 }
2265 else
2266 {
2267 if (ip->use_extend)
2268 {
2269 md_number_to_chars (f, 0xf000 | ip->extend, 2);
2270 f += 2;
2271 }
2272 md_number_to_chars (f, ip->insn_opcode, 2);
2273 #ifdef OBJ_ELF
2274 dwarf2_emit_insn (ip->use_extend ? 3 : 1);
2275 #endif
2276 }
2277
2278 /* Update the register mask information. */
2279 if (! mips_opts.mips16)
2280 {
2281 if (pinfo & INSN_WRITE_GPR_D)
2282 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD);
2283 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
2284 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT);
2285 if (pinfo & INSN_READ_GPR_S)
2286 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS);
2287 if (pinfo & INSN_WRITE_GPR_31)
2288 mips_gprmask |= 1 << RA;
2289 if (pinfo & INSN_WRITE_FPR_D)
2290 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FD) & OP_MASK_FD);
2291 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
2292 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS);
2293 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
2294 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT);
2295 if ((pinfo & INSN_READ_FPR_R) != 0)
2296 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FR) & OP_MASK_FR);
2297 if (pinfo & INSN_COP)
2298 {
2299 /* We don't keep enough information to sort these cases out.
2300 The itbl support does keep this information however, although
2301 we currently don't support itbl fprmats as part of the cop
2302 instruction. May want to add this support in the future. */
2303 }
2304 /* Never set the bit for $0, which is always zero. */
2305 mips_gprmask &= ~1 << 0;
2306 }
2307 else
2308 {
2309 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
2310 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RX)
2311 & MIPS16OP_MASK_RX);
2312 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
2313 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RY)
2314 & MIPS16OP_MASK_RY);
2315 if (pinfo & MIPS16_INSN_WRITE_Z)
2316 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RZ)
2317 & MIPS16OP_MASK_RZ);
2318 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
2319 mips_gprmask |= 1 << TREG;
2320 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
2321 mips_gprmask |= 1 << SP;
2322 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
2323 mips_gprmask |= 1 << RA;
2324 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
2325 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
2326 if (pinfo & MIPS16_INSN_READ_Z)
2327 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
2328 & MIPS16OP_MASK_MOVE32Z);
2329 if (pinfo & MIPS16_INSN_READ_GPR_X)
2330 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
2331 & MIPS16OP_MASK_REGR32);
2332 }
2333
2334 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
2335 {
2336 /* Filling the branch delay slot is more complex. We try to
2337 switch the branch with the previous instruction, which we can
2338 do if the previous instruction does not set up a condition
2339 that the branch tests and if the branch is not itself the
2340 target of any branch. */
2341 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
2342 || (pinfo & INSN_COND_BRANCH_DELAY))
2343 {
2344 if (mips_optimize < 2
2345 /* If we have seen .set volatile or .set nomove, don't
2346 optimize. */
2347 || mips_opts.nomove != 0
2348 /* If we had to emit any NOP instructions, then we
2349 already know we can not swap. */
2350 || nops != 0
2351 /* If we don't even know the previous insn, we can not
2352 swap. */
2353 || ! prev_insn_valid
2354 /* If the previous insn is already in a branch delay
2355 slot, then we can not swap. */
2356 || prev_insn_is_delay_slot
2357 /* If the previous previous insn was in a .set
2358 noreorder, we can't swap. Actually, the MIPS
2359 assembler will swap in this situation. However, gcc
2360 configured -with-gnu-as will generate code like
2361 .set noreorder
2362 lw $4,XXX
2363 .set reorder
2364 INSN
2365 bne $4,$0,foo
2366 in which we can not swap the bne and INSN. If gcc is
2367 not configured -with-gnu-as, it does not output the
2368 .set pseudo-ops. We don't have to check
2369 prev_insn_unreordered, because prev_insn_valid will
2370 be 0 in that case. We don't want to use
2371 prev_prev_insn_valid, because we do want to be able
2372 to swap at the start of a function. */
2373 || prev_prev_insn_unreordered
2374 /* If the branch is itself the target of a branch, we
2375 can not swap. We cheat on this; all we check for is
2376 whether there is a label on this instruction. If
2377 there are any branches to anything other than a
2378 label, users must use .set noreorder. */
2379 || insn_labels != NULL
2380 /* If the previous instruction is in a variant frag
2381 other than this branch's one, we cannot do the swap.
2382 This does not apply to the mips16, which uses variant
2383 frags for different purposes. */
2384 || (! mips_opts.mips16
2385 && prev_insn_frag_type == rs_machine_dependent)
2386 /* If the branch reads the condition codes, we don't
2387 even try to swap, because in the sequence
2388 ctc1 $X,$31
2389 INSN
2390 INSN
2391 bc1t LABEL
2392 we can not swap, and I don't feel like handling that
2393 case. */
2394 || (! mips_opts.mips16
2395 && (pinfo & INSN_READ_COND_CODE)
2396 && ! cop_interlocks)
2397 /* We can not swap with an instruction that requires a
2398 delay slot, because the target of the branch might
2399 interfere with that instruction. */
2400 || (! mips_opts.mips16
2401 && (prev_pinfo
2402 /* Itbl support may require additional care here. */
2403 & (INSN_LOAD_COPROC_DELAY
2404 | INSN_COPROC_MOVE_DELAY
2405 | INSN_WRITE_COND_CODE))
2406 && ! cop_interlocks)
2407 || (! (hilo_interlocks
2408 || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT)))
2409 && (prev_pinfo
2410 & (INSN_READ_LO
2411 | INSN_READ_HI)))
2412 || (! mips_opts.mips16
2413 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY)
2414 && ! gpr_interlocks)
2415 || (! mips_opts.mips16
2416 /* Itbl support may require additional care here. */
2417 && (prev_pinfo & INSN_COPROC_MEMORY_DELAY)
2418 && ! cop_mem_interlocks)
2419 /* We can not swap with a branch instruction. */
2420 || (prev_pinfo
2421 & (INSN_UNCOND_BRANCH_DELAY
2422 | INSN_COND_BRANCH_DELAY
2423 | INSN_COND_BRANCH_LIKELY))
2424 /* We do not swap with a trap instruction, since it
2425 complicates trap handlers to have the trap
2426 instruction be in a delay slot. */
2427 || (prev_pinfo & INSN_TRAP)
2428 /* If the branch reads a register that the previous
2429 instruction sets, we can not swap. */
2430 || (! mips_opts.mips16
2431 && (prev_pinfo & INSN_WRITE_GPR_T)
2432 && insn_uses_reg (ip,
2433 ((prev_insn.insn_opcode >> OP_SH_RT)
2434 & OP_MASK_RT),
2435 MIPS_GR_REG))
2436 || (! mips_opts.mips16
2437 && (prev_pinfo & INSN_WRITE_GPR_D)
2438 && insn_uses_reg (ip,
2439 ((prev_insn.insn_opcode >> OP_SH_RD)
2440 & OP_MASK_RD),
2441 MIPS_GR_REG))
2442 || (mips_opts.mips16
2443 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
2444 && insn_uses_reg (ip,
2445 ((prev_insn.insn_opcode
2446 >> MIPS16OP_SH_RX)
2447 & MIPS16OP_MASK_RX),
2448 MIPS16_REG))
2449 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
2450 && insn_uses_reg (ip,
2451 ((prev_insn.insn_opcode
2452 >> MIPS16OP_SH_RY)
2453 & MIPS16OP_MASK_RY),
2454 MIPS16_REG))
2455 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
2456 && insn_uses_reg (ip,
2457 ((prev_insn.insn_opcode
2458 >> MIPS16OP_SH_RZ)
2459 & MIPS16OP_MASK_RZ),
2460 MIPS16_REG))
2461 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
2462 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
2463 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
2464 && insn_uses_reg (ip, RA, MIPS_GR_REG))
2465 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2466 && insn_uses_reg (ip,
2467 MIPS16OP_EXTRACT_REG32R (prev_insn.
2468 insn_opcode),
2469 MIPS_GR_REG))))
2470 /* If the branch writes a register that the previous
2471 instruction sets, we can not swap (we know that
2472 branches write only to RD or to $31). */
2473 || (! mips_opts.mips16
2474 && (prev_pinfo & INSN_WRITE_GPR_T)
2475 && (((pinfo & INSN_WRITE_GPR_D)
2476 && (((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT)
2477 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2478 || ((pinfo & INSN_WRITE_GPR_31)
2479 && (((prev_insn.insn_opcode >> OP_SH_RT)
2480 & OP_MASK_RT)
2481 == RA))))
2482 || (! mips_opts.mips16
2483 && (prev_pinfo & INSN_WRITE_GPR_D)
2484 && (((pinfo & INSN_WRITE_GPR_D)
2485 && (((prev_insn.insn_opcode >> OP_SH_RD) & OP_MASK_RD)
2486 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2487 || ((pinfo & INSN_WRITE_GPR_31)
2488 && (((prev_insn.insn_opcode >> OP_SH_RD)
2489 & OP_MASK_RD)
2490 == RA))))
2491 || (mips_opts.mips16
2492 && (pinfo & MIPS16_INSN_WRITE_31)
2493 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
2494 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2495 && (MIPS16OP_EXTRACT_REG32R (prev_insn.insn_opcode)
2496 == RA))))
2497 /* If the branch writes a register that the previous
2498 instruction reads, we can not swap (we know that
2499 branches only write to RD or to $31). */
2500 || (! mips_opts.mips16
2501 && (pinfo & INSN_WRITE_GPR_D)
2502 && insn_uses_reg (&prev_insn,
2503 ((ip->insn_opcode >> OP_SH_RD)
2504 & OP_MASK_RD),
2505 MIPS_GR_REG))
2506 || (! mips_opts.mips16
2507 && (pinfo & INSN_WRITE_GPR_31)
2508 && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG))
2509 || (mips_opts.mips16
2510 && (pinfo & MIPS16_INSN_WRITE_31)
2511 && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG))
2512 /* If the previous previous instruction has a load
2513 delay, and sets a register that the branch reads, we
2514 can not swap. */
2515 || (! mips_opts.mips16
2516 /* Itbl support may require additional care here. */
2517 && (((prev_prev_insn.insn_mo->pinfo & INSN_LOAD_COPROC_DELAY)
2518 && ! cop_interlocks)
2519 || ((prev_prev_insn.insn_mo->pinfo
2520 & INSN_LOAD_MEMORY_DELAY)
2521 && ! gpr_interlocks))
2522 && insn_uses_reg (ip,
2523 ((prev_prev_insn.insn_opcode >> OP_SH_RT)
2524 & OP_MASK_RT),
2525 MIPS_GR_REG))
2526 /* If one instruction sets a condition code and the
2527 other one uses a condition code, we can not swap. */
2528 || ((pinfo & INSN_READ_COND_CODE)
2529 && (prev_pinfo & INSN_WRITE_COND_CODE))
2530 || ((pinfo & INSN_WRITE_COND_CODE)
2531 && (prev_pinfo & INSN_READ_COND_CODE))
2532 /* If the previous instruction uses the PC, we can not
2533 swap. */
2534 || (mips_opts.mips16
2535 && (prev_pinfo & MIPS16_INSN_READ_PC))
2536 /* If the previous instruction was extended, we can not
2537 swap. */
2538 || (mips_opts.mips16 && prev_insn_extended)
2539 /* If the previous instruction had a fixup in mips16
2540 mode, we can not swap. This normally means that the
2541 previous instruction was a 4 byte branch anyhow. */
2542 || (mips_opts.mips16 && prev_insn_fixp[0])
2543 /* If the previous instruction is a sync, sync.l, or
2544 sync.p, we can not swap. */
2545 || (prev_pinfo & INSN_SYNC))
2546 {
2547 /* We could do even better for unconditional branches to
2548 portions of this object file; we could pick up the
2549 instruction at the destination, put it in the delay
2550 slot, and bump the destination address. */
2551 emit_nop ();
2552 if (mips_relax.sequence)
2553 mips_relax.sizes[mips_relax.sequence - 1] += 4;
2554 /* Update the previous insn information. */
2555 prev_prev_insn = *ip;
2556 prev_insn.insn_mo = &dummy_opcode;
2557 }
2558 else
2559 {
2560 /* It looks like we can actually do the swap. */
2561 if (! mips_opts.mips16)
2562 {
2563 char *prev_f;
2564 char temp[4];
2565
2566 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2567 if (!relaxed_branch)
2568 {
2569 /* If this is not a relaxed branch, then just
2570 swap the instructions. */
2571 memcpy (temp, prev_f, 4);
2572 memcpy (prev_f, f, 4);
2573 memcpy (f, temp, 4);
2574 }
2575 else
2576 {
2577 /* If this is a relaxed branch, then we move the
2578 instruction to be placed in the delay slot to
2579 the current frag, shrinking the fixed part of
2580 the originating frag. If the branch occupies
2581 the tail of the latter, we move it backwards,
2582 into the space freed by the moved instruction. */
2583 f = frag_more (4);
2584 memcpy (f, prev_f, 4);
2585 prev_insn_frag->fr_fix -= 4;
2586 if (prev_insn_frag->fr_type == rs_machine_dependent)
2587 memmove (prev_f, prev_f + 4, prev_insn_frag->fr_var);
2588 }
2589
2590 if (prev_insn_fixp[0])
2591 {
2592 prev_insn_fixp[0]->fx_frag = frag_now;
2593 prev_insn_fixp[0]->fx_where = f - frag_now->fr_literal;
2594 }
2595 if (prev_insn_fixp[1])
2596 {
2597 prev_insn_fixp[1]->fx_frag = frag_now;
2598 prev_insn_fixp[1]->fx_where = f - frag_now->fr_literal;
2599 }
2600 if (prev_insn_fixp[2])
2601 {
2602 prev_insn_fixp[2]->fx_frag = frag_now;
2603 prev_insn_fixp[2]->fx_where = f - frag_now->fr_literal;
2604 }
2605 if (prev_insn_fixp[0] && HAVE_NEWABI
2606 && prev_insn_frag != frag_now
2607 && (prev_insn_fixp[0]->fx_r_type
2608 == BFD_RELOC_MIPS_GOT_DISP
2609 || (prev_insn_fixp[0]->fx_r_type
2610 == BFD_RELOC_MIPS_CALL16)))
2611 {
2612 /* To avoid confusion in tc_gen_reloc, we must
2613 ensure that this does not become a variant
2614 frag. */
2615 force_new_frag = TRUE;
2616 }
2617
2618 if (!relaxed_branch)
2619 {
2620 if (fixp[0])
2621 {
2622 fixp[0]->fx_frag = prev_insn_frag;
2623 fixp[0]->fx_where = prev_insn_where;
2624 }
2625 if (fixp[1])
2626 {
2627 fixp[1]->fx_frag = prev_insn_frag;
2628 fixp[1]->fx_where = prev_insn_where;
2629 }
2630 if (fixp[2])
2631 {
2632 fixp[2]->fx_frag = prev_insn_frag;
2633 fixp[2]->fx_where = prev_insn_where;
2634 }
2635 }
2636 else if (prev_insn_frag->fr_type == rs_machine_dependent)
2637 {
2638 if (fixp[0])
2639 fixp[0]->fx_where -= 4;
2640 if (fixp[1])
2641 fixp[1]->fx_where -= 4;
2642 if (fixp[2])
2643 fixp[2]->fx_where -= 4;
2644 }
2645 }
2646 else
2647 {
2648 char *prev_f;
2649 char temp[2];
2650
2651 assert (prev_insn_fixp[0] == NULL);
2652 assert (prev_insn_fixp[1] == NULL);
2653 assert (prev_insn_fixp[2] == NULL);
2654 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2655 memcpy (temp, prev_f, 2);
2656 memcpy (prev_f, f, 2);
2657 if (*reloc_type != BFD_RELOC_MIPS16_JMP)
2658 {
2659 assert (*reloc_type == BFD_RELOC_UNUSED);
2660 memcpy (f, temp, 2);
2661 }
2662 else
2663 {
2664 memcpy (f, f + 2, 2);
2665 memcpy (f + 2, temp, 2);
2666 }
2667 if (fixp[0])
2668 {
2669 fixp[0]->fx_frag = prev_insn_frag;
2670 fixp[0]->fx_where = prev_insn_where;
2671 }
2672 if (fixp[1])
2673 {
2674 fixp[1]->fx_frag = prev_insn_frag;
2675 fixp[1]->fx_where = prev_insn_where;
2676 }
2677 if (fixp[2])
2678 {
2679 fixp[2]->fx_frag = prev_insn_frag;
2680 fixp[2]->fx_where = prev_insn_where;
2681 }
2682 }
2683
2684 /* Update the previous insn information; leave prev_insn
2685 unchanged. */
2686 prev_prev_insn = *ip;
2687 }
2688 prev_insn_is_delay_slot = 1;
2689
2690 /* If that was an unconditional branch, forget the previous
2691 insn information. */
2692 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
2693 {
2694 prev_prev_insn.insn_mo = &dummy_opcode;
2695 prev_insn.insn_mo = &dummy_opcode;
2696 }
2697
2698 prev_insn_fixp[0] = NULL;
2699 prev_insn_fixp[1] = NULL;
2700 prev_insn_fixp[2] = NULL;
2701 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2702 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2703 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
2704 prev_insn_extended = 0;
2705 }
2706 else if (pinfo & INSN_COND_BRANCH_LIKELY)
2707 {
2708 /* We don't yet optimize a branch likely. What we should do
2709 is look at the target, copy the instruction found there
2710 into the delay slot, and increment the branch to jump to
2711 the next instruction. */
2712 emit_nop ();
2713 /* Update the previous insn information. */
2714 prev_prev_insn = *ip;
2715 prev_insn.insn_mo = &dummy_opcode;
2716 prev_insn_fixp[0] = NULL;
2717 prev_insn_fixp[1] = NULL;
2718 prev_insn_fixp[2] = NULL;
2719 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2720 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2721 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
2722 prev_insn_extended = 0;
2723 prev_insn_is_delay_slot = 1;
2724 }
2725 else
2726 {
2727 /* Update the previous insn information. */
2728 if (nops > 0)
2729 prev_prev_insn.insn_mo = &dummy_opcode;
2730 else
2731 prev_prev_insn = prev_insn;
2732 prev_insn = *ip;
2733
2734 /* Any time we see a branch, we always fill the delay slot
2735 immediately; since this insn is not a branch, we know it
2736 is not in a delay slot. */
2737 prev_insn_is_delay_slot = 0;
2738
2739 prev_insn_fixp[0] = fixp[0];
2740 prev_insn_fixp[1] = fixp[1];
2741 prev_insn_fixp[2] = fixp[2];
2742 prev_insn_reloc_type[0] = reloc_type[0];
2743 prev_insn_reloc_type[1] = reloc_type[1];
2744 prev_insn_reloc_type[2] = reloc_type[2];
2745 if (mips_opts.mips16)
2746 prev_insn_extended = (ip->use_extend
2747 || *reloc_type > BFD_RELOC_UNUSED);
2748 }
2749
2750 prev_prev_insn_unreordered = prev_insn_unreordered;
2751 prev_insn_unreordered = 0;
2752 prev_insn_frag = frag_now;
2753 prev_insn_where = f - frag_now->fr_literal;
2754 prev_insn_valid = 1;
2755 }
2756 else if (mips_relax.sequence != 2)
2757 {
2758 /* We need to record a bit of information even when we are not
2759 reordering, in order to determine the base address for mips16
2760 PC relative relocs. */
2761 prev_prev_insn = prev_insn;
2762 prev_insn = *ip;
2763 prev_insn_reloc_type[0] = reloc_type[0];
2764 prev_insn_reloc_type[1] = reloc_type[1];
2765 prev_insn_reloc_type[2] = reloc_type[2];
2766 prev_prev_insn_unreordered = prev_insn_unreordered;
2767 prev_insn_unreordered = 1;
2768 }
2769
2770 /* We just output an insn, so the next one doesn't have a label. */
2771 mips_clear_insn_labels ();
2772 }
2773
2774 /* This function forgets that there was any previous instruction or
2775 label. If PRESERVE is non-zero, it remembers enough information to
2776 know whether nops are needed before a noreorder section. */
2777
2778 static void
2779 mips_no_prev_insn (int preserve)
2780 {
2781 if (! preserve)
2782 {
2783 prev_insn.insn_mo = &dummy_opcode;
2784 prev_prev_insn.insn_mo = &dummy_opcode;
2785 prev_nop_frag = NULL;
2786 prev_nop_frag_holds = 0;
2787 prev_nop_frag_required = 0;
2788 prev_nop_frag_since = 0;
2789 }
2790 prev_insn_valid = 0;
2791 prev_insn_is_delay_slot = 0;
2792 prev_insn_unreordered = 0;
2793 prev_insn_extended = 0;
2794 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2795 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2796 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
2797 prev_prev_insn_unreordered = 0;
2798 mips_clear_insn_labels ();
2799 }
2800
2801 /* This function must be called whenever we turn on noreorder or emit
2802 something other than instructions. It inserts any NOPS which might
2803 be needed by the previous instruction, and clears the information
2804 kept for the previous instructions. The INSNS parameter is true if
2805 instructions are to follow. */
2806
2807 static void
2808 mips_emit_delays (bfd_boolean insns)
2809 {
2810 if (! mips_opts.noreorder)
2811 {
2812 int nops;
2813
2814 nops = 0;
2815 if ((! mips_opts.mips16
2816 && ((prev_insn.insn_mo->pinfo
2817 & (INSN_LOAD_COPROC_DELAY
2818 | INSN_COPROC_MOVE_DELAY
2819 | INSN_WRITE_COND_CODE))
2820 && ! cop_interlocks))
2821 || (! hilo_interlocks
2822 && (prev_insn.insn_mo->pinfo
2823 & (INSN_READ_LO
2824 | INSN_READ_HI)))
2825 || (! mips_opts.mips16
2826 && (prev_insn.insn_mo->pinfo & INSN_LOAD_MEMORY_DELAY)
2827 && ! gpr_interlocks)
2828 || (! mips_opts.mips16
2829 && (prev_insn.insn_mo->pinfo & INSN_COPROC_MEMORY_DELAY)
2830 && ! cop_mem_interlocks))
2831 {
2832 /* Itbl support may require additional care here. */
2833 ++nops;
2834 if ((! mips_opts.mips16
2835 && ((prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE)
2836 && ! cop_interlocks))
2837 || (! hilo_interlocks
2838 && ((prev_insn.insn_mo->pinfo & INSN_READ_HI)
2839 || (prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2840 ++nops;
2841
2842 if (prev_insn_unreordered)
2843 nops = 0;
2844 }
2845 else if ((! mips_opts.mips16
2846 && ((prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE)
2847 && ! cop_interlocks))
2848 || (! hilo_interlocks
2849 && ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
2850 || (prev_prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2851 {
2852 /* Itbl support may require additional care here. */
2853 if (! prev_prev_insn_unreordered)
2854 ++nops;
2855 }
2856
2857 if (mips_fix_vr4120 && prev_insn.insn_mo->name)
2858 {
2859 int min_nops = 0;
2860 const char *pn = prev_insn.insn_mo->name;
2861 if (strncmp (pn, "macc", 4) == 0
2862 || strncmp (pn, "dmacc", 5) == 0
2863 || strncmp (pn, "dmult", 5) == 0
2864 || strstr (pn, "div"))
2865 min_nops = 1;
2866 if (nops < min_nops)
2867 nops = min_nops;
2868 }
2869
2870 if (nops > 0)
2871 {
2872 struct insn_label_list *l;
2873
2874 if (insns)
2875 {
2876 /* Record the frag which holds the nop instructions, so
2877 that we can remove them if we don't need them. */
2878 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
2879 prev_nop_frag = frag_now;
2880 prev_nop_frag_holds = nops;
2881 prev_nop_frag_required = 0;
2882 prev_nop_frag_since = 0;
2883 }
2884
2885 for (; nops > 0; --nops)
2886 emit_nop ();
2887
2888 if (insns)
2889 {
2890 /* Move on to a new frag, so that it is safe to simply
2891 decrease the size of prev_nop_frag. */
2892 frag_wane (frag_now);
2893 frag_new (0);
2894 }
2895
2896 for (l = insn_labels; l != NULL; l = l->next)
2897 {
2898 valueT val;
2899
2900 assert (S_GET_SEGMENT (l->label) == now_seg);
2901 symbol_set_frag (l->label, frag_now);
2902 val = (valueT) frag_now_fix ();
2903 /* mips16 text labels are stored as odd. */
2904 if (mips_opts.mips16)
2905 ++val;
2906 S_SET_VALUE (l->label, val);
2907 }
2908 }
2909 }
2910
2911 /* Mark instruction labels in mips16 mode. */
2912 if (insns)
2913 mips16_mark_labels ();
2914
2915 mips_no_prev_insn (insns);
2916 }
2917
2918 /* Set up global variables for the start of a new macro. */
2919
2920 static void
2921 macro_start (void)
2922 {
2923 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
2924 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
2925 && (prev_insn.insn_mo->pinfo
2926 & (INSN_UNCOND_BRANCH_DELAY
2927 | INSN_COND_BRANCH_DELAY
2928 | INSN_COND_BRANCH_LIKELY)) != 0);
2929 }
2930
2931 /* Given that a macro is longer than 4 bytes, return the appropriate warning
2932 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
2933 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
2934
2935 static const char *
2936 macro_warning (relax_substateT subtype)
2937 {
2938 if (subtype & RELAX_DELAY_SLOT)
2939 return _("Macro instruction expanded into multiple instructions"
2940 " in a branch delay slot");
2941 else if (subtype & RELAX_NOMACRO)
2942 return _("Macro instruction expanded into multiple instructions");
2943 else
2944 return 0;
2945 }
2946
2947 /* Finish up a macro. Emit warnings as appropriate. */
2948
2949 static void
2950 macro_end (void)
2951 {
2952 if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
2953 {
2954 relax_substateT subtype;
2955
2956 /* Set up the relaxation warning flags. */
2957 subtype = 0;
2958 if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
2959 subtype |= RELAX_SECOND_LONGER;
2960 if (mips_opts.warn_about_macros)
2961 subtype |= RELAX_NOMACRO;
2962 if (mips_macro_warning.delay_slot_p)
2963 subtype |= RELAX_DELAY_SLOT;
2964
2965 if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
2966 {
2967 /* Either the macro has a single implementation or both
2968 implementations are longer than 4 bytes. Emit the
2969 warning now. */
2970 const char *msg = macro_warning (subtype);
2971 if (msg != 0)
2972 as_warn (msg);
2973 }
2974 else
2975 {
2976 /* One implementation might need a warning but the other
2977 definitely doesn't. */
2978 mips_macro_warning.first_frag->fr_subtype |= subtype;
2979 }
2980 }
2981 }
2982
2983 /* Read a macro's relocation codes from *ARGS and store them in *R.
2984 The first argument in *ARGS will be either the code for a single
2985 relocation or -1 followed by the three codes that make up a
2986 composite relocation. */
2987
2988 static void
2989 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
2990 {
2991 int i, next;
2992
2993 next = va_arg (*args, int);
2994 if (next >= 0)
2995 r[0] = (bfd_reloc_code_real_type) next;
2996 else
2997 for (i = 0; i < 3; i++)
2998 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
2999 }
3000
3001 /* Build an instruction created by a macro expansion. This is passed
3002 a pointer to the count of instructions created so far, an
3003 expression, the name of the instruction to build, an operand format
3004 string, and corresponding arguments. */
3005
3006 static void
3007 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
3008 {
3009 struct mips_cl_insn insn;
3010 bfd_reloc_code_real_type r[3];
3011 va_list args;
3012
3013 va_start (args, fmt);
3014
3015 if (mips_opts.mips16)
3016 {
3017 mips16_macro_build (ep, name, fmt, args);
3018 va_end (args);
3019 return;
3020 }
3021
3022 r[0] = BFD_RELOC_UNUSED;
3023 r[1] = BFD_RELOC_UNUSED;
3024 r[2] = BFD_RELOC_UNUSED;
3025 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
3026 assert (insn.insn_mo);
3027 assert (strcmp (name, insn.insn_mo->name) == 0);
3028
3029 /* Search until we get a match for NAME. */
3030 while (1)
3031 {
3032 /* It is assumed here that macros will never generate
3033 MDMX or MIPS-3D instructions. */
3034 if (strcmp (fmt, insn.insn_mo->args) == 0
3035 && insn.insn_mo->pinfo != INSN_MACRO
3036 && OPCODE_IS_MEMBER (insn.insn_mo,
3037 (mips_opts.isa
3038 | (file_ase_mips16 ? INSN_MIPS16 : 0)),
3039 mips_opts.arch)
3040 && (mips_opts.arch != CPU_R4650 || (insn.insn_mo->pinfo & FP_D) == 0))
3041 break;
3042
3043 ++insn.insn_mo;
3044 assert (insn.insn_mo->name);
3045 assert (strcmp (name, insn.insn_mo->name) == 0);
3046 }
3047
3048 insn.insn_opcode = insn.insn_mo->match;
3049 for (;;)
3050 {
3051 switch (*fmt++)
3052 {
3053 case '\0':
3054 break;
3055
3056 case ',':
3057 case '(':
3058 case ')':
3059 continue;
3060
3061 case '+':
3062 switch (*fmt++)
3063 {
3064 case 'A':
3065 case 'E':
3066 insn.insn_opcode |= (va_arg (args, int)
3067 & OP_MASK_SHAMT) << OP_SH_SHAMT;
3068 continue;
3069
3070 case 'B':
3071 case 'F':
3072 /* Note that in the macro case, these arguments are already
3073 in MSB form. (When handling the instruction in the
3074 non-macro case, these arguments are sizes from which
3075 MSB values must be calculated.) */
3076 insn.insn_opcode |= (va_arg (args, int)
3077 & OP_MASK_INSMSB) << OP_SH_INSMSB;
3078 continue;
3079
3080 case 'C':
3081 case 'G':
3082 case 'H':
3083 /* Note that in the macro case, these arguments are already
3084 in MSBD form. (When handling the instruction in the
3085 non-macro case, these arguments are sizes from which
3086 MSBD values must be calculated.) */
3087 insn.insn_opcode |= (va_arg (args, int)
3088 & OP_MASK_EXTMSBD) << OP_SH_EXTMSBD;
3089 continue;
3090
3091 default:
3092 internalError ();
3093 }
3094 continue;
3095
3096 case 't':
3097 case 'w':
3098 case 'E':
3099 insn.insn_opcode |= va_arg (args, int) << OP_SH_RT;
3100 continue;
3101
3102 case 'c':
3103 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE;
3104 continue;
3105
3106 case 'T':
3107 case 'W':
3108 insn.insn_opcode |= va_arg (args, int) << OP_SH_FT;
3109 continue;
3110
3111 case 'd':
3112 case 'G':
3113 case 'K':
3114 insn.insn_opcode |= va_arg (args, int) << OP_SH_RD;
3115 continue;
3116
3117 case 'U':
3118 {
3119 int tmp = va_arg (args, int);
3120
3121 insn.insn_opcode |= tmp << OP_SH_RT;
3122 insn.insn_opcode |= tmp << OP_SH_RD;
3123 continue;
3124 }
3125
3126 case 'V':
3127 case 'S':
3128 insn.insn_opcode |= va_arg (args, int) << OP_SH_FS;
3129 continue;
3130
3131 case 'z':
3132 continue;
3133
3134 case '<':
3135 insn.insn_opcode |= va_arg (args, int) << OP_SH_SHAMT;
3136 continue;
3137
3138 case 'D':
3139 insn.insn_opcode |= va_arg (args, int) << OP_SH_FD;
3140 continue;
3141
3142 case 'B':
3143 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE20;
3144 continue;
3145
3146 case 'J':
3147 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE19;
3148 continue;
3149
3150 case 'q':
3151 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE2;
3152 continue;
3153
3154 case 'b':
3155 case 's':
3156 case 'r':
3157 case 'v':
3158 insn.insn_opcode |= va_arg (args, int) << OP_SH_RS;
3159 continue;
3160
3161 case 'i':
3162 case 'j':
3163 case 'o':
3164 macro_read_relocs (&args, r);
3165 assert (*r == BFD_RELOC_GPREL16
3166 || *r == BFD_RELOC_MIPS_LITERAL
3167 || *r == BFD_RELOC_MIPS_HIGHER
3168 || *r == BFD_RELOC_HI16_S
3169 || *r == BFD_RELOC_LO16
3170 || *r == BFD_RELOC_MIPS_GOT16
3171 || *r == BFD_RELOC_MIPS_CALL16
3172 || *r == BFD_RELOC_MIPS_GOT_DISP
3173 || *r == BFD_RELOC_MIPS_GOT_PAGE
3174 || *r == BFD_RELOC_MIPS_GOT_OFST
3175 || *r == BFD_RELOC_MIPS_GOT_LO16
3176 || *r == BFD_RELOC_MIPS_CALL_LO16);
3177 continue;
3178
3179 case 'u':
3180 macro_read_relocs (&args, r);
3181 assert (ep != NULL
3182 && (ep->X_op == O_constant
3183 || (ep->X_op == O_symbol
3184 && (*r == BFD_RELOC_MIPS_HIGHEST
3185 || *r == BFD_RELOC_HI16_S
3186 || *r == BFD_RELOC_HI16
3187 || *r == BFD_RELOC_GPREL16
3188 || *r == BFD_RELOC_MIPS_GOT_HI16
3189 || *r == BFD_RELOC_MIPS_CALL_HI16))));
3190 continue;
3191
3192 case 'p':
3193 assert (ep != NULL);
3194 /*
3195 * This allows macro() to pass an immediate expression for
3196 * creating short branches without creating a symbol.
3197 * Note that the expression still might come from the assembly
3198 * input, in which case the value is not checked for range nor
3199 * is a relocation entry generated (yuck).
3200 */
3201 if (ep->X_op == O_constant)
3202 {
3203 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
3204 ep = NULL;
3205 }
3206 else
3207 *r = BFD_RELOC_16_PCREL_S2;
3208 continue;
3209
3210 case 'a':
3211 assert (ep != NULL);
3212 *r = BFD_RELOC_MIPS_JMP;
3213 continue;
3214
3215 case 'C':
3216 insn.insn_opcode |= va_arg (args, unsigned long);
3217 continue;
3218
3219 default:
3220 internalError ();
3221 }
3222 break;
3223 }
3224 va_end (args);
3225 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
3226
3227 append_insn (&insn, ep, r);
3228 }
3229
3230 static void
3231 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
3232 va_list args)
3233 {
3234 struct mips_cl_insn insn;
3235 bfd_reloc_code_real_type r[3]
3236 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3237
3238 insn.insn_mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
3239 assert (insn.insn_mo);
3240 assert (strcmp (name, insn.insn_mo->name) == 0);
3241
3242 while (strcmp (fmt, insn.insn_mo->args) != 0
3243 || insn.insn_mo->pinfo == INSN_MACRO)
3244 {
3245 ++insn.insn_mo;
3246 assert (insn.insn_mo->name);
3247 assert (strcmp (name, insn.insn_mo->name) == 0);
3248 }
3249
3250 insn.insn_opcode = insn.insn_mo->match;
3251 insn.use_extend = FALSE;
3252
3253 for (;;)
3254 {
3255 int c;
3256
3257 c = *fmt++;
3258 switch (c)
3259 {
3260 case '\0':
3261 break;
3262
3263 case ',':
3264 case '(':
3265 case ')':
3266 continue;
3267
3268 case 'y':
3269 case 'w':
3270 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RY;
3271 continue;
3272
3273 case 'x':
3274 case 'v':
3275 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RX;
3276 continue;
3277
3278 case 'z':
3279 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RZ;
3280 continue;
3281
3282 case 'Z':
3283 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_MOVE32Z;
3284 continue;
3285
3286 case '0':
3287 case 'S':
3288 case 'P':
3289 case 'R':
3290 continue;
3291
3292 case 'X':
3293 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_REGR32;
3294 continue;
3295
3296 case 'Y':
3297 {
3298 int regno;
3299
3300 regno = va_arg (args, int);
3301 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
3302 insn.insn_opcode |= regno << MIPS16OP_SH_REG32R;
3303 }
3304 continue;
3305
3306 case '<':
3307 case '>':
3308 case '4':
3309 case '5':
3310 case 'H':
3311 case 'W':
3312 case 'D':
3313 case 'j':
3314 case '8':
3315 case 'V':
3316 case 'C':
3317 case 'U':
3318 case 'k':
3319 case 'K':
3320 case 'p':
3321 case 'q':
3322 {
3323 assert (ep != NULL);
3324
3325 if (ep->X_op != O_constant)
3326 *r = (int) BFD_RELOC_UNUSED + c;
3327 else
3328 {
3329 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
3330 FALSE, &insn.insn_opcode, &insn.use_extend,
3331 &insn.extend);
3332 ep = NULL;
3333 *r = BFD_RELOC_UNUSED;
3334 }
3335 }
3336 continue;
3337
3338 case '6':
3339 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_IMM6;
3340 continue;
3341 }
3342
3343 break;
3344 }
3345
3346 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
3347
3348 append_insn (&insn, ep, r);
3349 }
3350
3351 /*
3352 * Generate a "jalr" instruction with a relocation hint to the called
3353 * function. This occurs in NewABI PIC code.
3354 */
3355 static void
3356 macro_build_jalr (expressionS *ep)
3357 {
3358 char *f = NULL;
3359
3360 if (HAVE_NEWABI)
3361 {
3362 frag_grow (8);
3363 f = frag_more (0);
3364 }
3365 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
3366 if (HAVE_NEWABI)
3367 fix_new_exp (frag_now, f - frag_now->fr_literal,
3368 4, ep, FALSE, BFD_RELOC_MIPS_JALR);
3369 }
3370
3371 /*
3372 * Generate a "lui" instruction.
3373 */
3374 static void
3375 macro_build_lui (expressionS *ep, int regnum)
3376 {
3377 expressionS high_expr;
3378 struct mips_cl_insn insn;
3379 bfd_reloc_code_real_type r[3]
3380 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3381 const char *name = "lui";
3382 const char *fmt = "t,u";
3383
3384 assert (! mips_opts.mips16);
3385
3386 high_expr = *ep;
3387
3388 if (high_expr.X_op == O_constant)
3389 {
3390 /* we can compute the instruction now without a relocation entry */
3391 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
3392 >> 16) & 0xffff;
3393 *r = BFD_RELOC_UNUSED;
3394 }
3395 else
3396 {
3397 assert (ep->X_op == O_symbol);
3398 /* _gp_disp is a special case, used from s_cpload. _gp is used
3399 if mips_no_shared. */
3400 assert (mips_pic == NO_PIC
3401 || (! HAVE_NEWABI
3402 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
3403 || (! mips_in_shared
3404 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp") == 0));
3405 *r = BFD_RELOC_HI16_S;
3406 }
3407
3408 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
3409 assert (insn.insn_mo);
3410 assert (strcmp (name, insn.insn_mo->name) == 0);
3411 assert (strcmp (fmt, insn.insn_mo->args) == 0);
3412
3413 insn.insn_opcode = insn.insn_mo->match | (regnum << OP_SH_RT);
3414 if (*r == BFD_RELOC_UNUSED)
3415 {
3416 insn.insn_opcode |= high_expr.X_add_number;
3417 append_insn (&insn, NULL, r);
3418 }
3419 else
3420 append_insn (&insn, &high_expr, r);
3421 }
3422
3423 /* Generate a sequence of instructions to do a load or store from a constant
3424 offset off of a base register (breg) into/from a target register (treg),
3425 using AT if necessary. */
3426 static void
3427 macro_build_ldst_constoffset (expressionS *ep, const char *op,
3428 int treg, int breg, int dbl)
3429 {
3430 assert (ep->X_op == O_constant);
3431
3432 /* Sign-extending 32-bit constants makes their handling easier. */
3433 if (! dbl && ! ((ep->X_add_number & ~((bfd_vma) 0x7fffffff))
3434 == ~((bfd_vma) 0x7fffffff)))
3435 {
3436 if (ep->X_add_number & ~((bfd_vma) 0xffffffff))
3437 as_bad (_("constant too large"));
3438
3439 ep->X_add_number = (((ep->X_add_number & 0xffffffff) ^ 0x80000000)
3440 - 0x80000000);
3441 }
3442
3443 /* Right now, this routine can only handle signed 32-bit constants. */
3444 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
3445 as_warn (_("operand overflow"));
3446
3447 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
3448 {
3449 /* Signed 16-bit offset will fit in the op. Easy! */
3450 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
3451 }
3452 else
3453 {
3454 /* 32-bit offset, need multiple instructions and AT, like:
3455 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
3456 addu $tempreg,$tempreg,$breg
3457 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
3458 to handle the complete offset. */
3459 macro_build_lui (ep, AT);
3460 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
3461 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
3462
3463 if (mips_opts.noat)
3464 as_bad (_("Macro used $at after \".set noat\""));
3465 }
3466 }
3467
3468 /* set_at()
3469 * Generates code to set the $at register to true (one)
3470 * if reg is less than the immediate expression.
3471 */
3472 static void
3473 set_at (int reg, int unsignedp)
3474 {
3475 if (imm_expr.X_op == O_constant
3476 && imm_expr.X_add_number >= -0x8000
3477 && imm_expr.X_add_number < 0x8000)
3478 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
3479 AT, reg, BFD_RELOC_LO16);
3480 else
3481 {
3482 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
3483 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
3484 }
3485 }
3486
3487 static void
3488 normalize_constant_expr (expressionS *ex)
3489 {
3490 if (ex->X_op == O_constant && HAVE_32BIT_GPRS)
3491 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3492 - 0x80000000);
3493 }
3494
3495 /* Warn if an expression is not a constant. */
3496
3497 static void
3498 check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
3499 {
3500 if (ex->X_op == O_big)
3501 as_bad (_("unsupported large constant"));
3502 else if (ex->X_op != O_constant)
3503 as_bad (_("Instruction %s requires absolute expression"), ip->insn_mo->name);
3504
3505 normalize_constant_expr (ex);
3506 }
3507
3508 /* Count the leading zeroes by performing a binary chop. This is a
3509 bulky bit of source, but performance is a LOT better for the
3510 majority of values than a simple loop to count the bits:
3511 for (lcnt = 0; (lcnt < 32); lcnt++)
3512 if ((v) & (1 << (31 - lcnt)))
3513 break;
3514 However it is not code size friendly, and the gain will drop a bit
3515 on certain cached systems.
3516 */
3517 #define COUNT_TOP_ZEROES(v) \
3518 (((v) & ~0xffff) == 0 \
3519 ? ((v) & ~0xff) == 0 \
3520 ? ((v) & ~0xf) == 0 \
3521 ? ((v) & ~0x3) == 0 \
3522 ? ((v) & ~0x1) == 0 \
3523 ? !(v) \
3524 ? 32 \
3525 : 31 \
3526 : 30 \
3527 : ((v) & ~0x7) == 0 \
3528 ? 29 \
3529 : 28 \
3530 : ((v) & ~0x3f) == 0 \
3531 ? ((v) & ~0x1f) == 0 \
3532 ? 27 \
3533 : 26 \
3534 : ((v) & ~0x7f) == 0 \
3535 ? 25 \
3536 : 24 \
3537 : ((v) & ~0xfff) == 0 \
3538 ? ((v) & ~0x3ff) == 0 \
3539 ? ((v) & ~0x1ff) == 0 \
3540 ? 23 \
3541 : 22 \
3542 : ((v) & ~0x7ff) == 0 \
3543 ? 21 \
3544 : 20 \
3545 : ((v) & ~0x3fff) == 0 \
3546 ? ((v) & ~0x1fff) == 0 \
3547 ? 19 \
3548 : 18 \
3549 : ((v) & ~0x7fff) == 0 \
3550 ? 17 \
3551 : 16 \
3552 : ((v) & ~0xffffff) == 0 \
3553 ? ((v) & ~0xfffff) == 0 \
3554 ? ((v) & ~0x3ffff) == 0 \
3555 ? ((v) & ~0x1ffff) == 0 \
3556 ? 15 \
3557 : 14 \
3558 : ((v) & ~0x7ffff) == 0 \
3559 ? 13 \
3560 : 12 \
3561 : ((v) & ~0x3fffff) == 0 \
3562 ? ((v) & ~0x1fffff) == 0 \
3563 ? 11 \
3564 : 10 \
3565 : ((v) & ~0x7fffff) == 0 \
3566 ? 9 \
3567 : 8 \
3568 : ((v) & ~0xfffffff) == 0 \
3569 ? ((v) & ~0x3ffffff) == 0 \
3570 ? ((v) & ~0x1ffffff) == 0 \
3571 ? 7 \
3572 : 6 \
3573 : ((v) & ~0x7ffffff) == 0 \
3574 ? 5 \
3575 : 4 \
3576 : ((v) & ~0x3fffffff) == 0 \
3577 ? ((v) & ~0x1fffffff) == 0 \
3578 ? 3 \
3579 : 2 \
3580 : ((v) & ~0x7fffffff) == 0 \
3581 ? 1 \
3582 : 0)
3583
3584 /* load_register()
3585 * This routine generates the least number of instructions necessary to load
3586 * an absolute expression value into a register.
3587 */
3588 static void
3589 load_register (int reg, expressionS *ep, int dbl)
3590 {
3591 int freg;
3592 expressionS hi32, lo32;
3593
3594 if (ep->X_op != O_big)
3595 {
3596 assert (ep->X_op == O_constant);
3597
3598 /* Sign-extending 32-bit constants makes their handling easier. */
3599 if (! dbl && ! ((ep->X_add_number & ~((bfd_vma) 0x7fffffff))
3600 == ~((bfd_vma) 0x7fffffff)))
3601 {
3602 if (ep->X_add_number & ~((bfd_vma) 0xffffffff))
3603 as_bad (_("constant too large"));
3604
3605 ep->X_add_number = (((ep->X_add_number & 0xffffffff) ^ 0x80000000)
3606 - 0x80000000);
3607 }
3608
3609 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
3610 {
3611 /* We can handle 16 bit signed values with an addiu to
3612 $zero. No need to ever use daddiu here, since $zero and
3613 the result are always correct in 32 bit mode. */
3614 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3615 return;
3616 }
3617 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
3618 {
3619 /* We can handle 16 bit unsigned values with an ori to
3620 $zero. */
3621 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
3622 return;
3623 }
3624 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
3625 {
3626 /* 32 bit values require an lui. */
3627 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
3628 if ((ep->X_add_number & 0xffff) != 0)
3629 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
3630 return;
3631 }
3632 }
3633
3634 /* The value is larger than 32 bits. */
3635
3636 if (HAVE_32BIT_GPRS)
3637 {
3638 as_bad (_("Number (0x%lx) larger than 32 bits"),
3639 (unsigned long) ep->X_add_number);
3640 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3641 return;
3642 }
3643
3644 if (ep->X_op != O_big)
3645 {
3646 hi32 = *ep;
3647 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3648 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3649 hi32.X_add_number &= 0xffffffff;
3650 lo32 = *ep;
3651 lo32.X_add_number &= 0xffffffff;
3652 }
3653 else
3654 {
3655 assert (ep->X_add_number > 2);
3656 if (ep->X_add_number == 3)
3657 generic_bignum[3] = 0;
3658 else if (ep->X_add_number > 4)
3659 as_bad (_("Number larger than 64 bits"));
3660 lo32.X_op = O_constant;
3661 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
3662 hi32.X_op = O_constant;
3663 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
3664 }
3665
3666 if (hi32.X_add_number == 0)
3667 freg = 0;
3668 else
3669 {
3670 int shift, bit;
3671 unsigned long hi, lo;
3672
3673 if (hi32.X_add_number == (offsetT) 0xffffffff)
3674 {
3675 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
3676 {
3677 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3678 return;
3679 }
3680 if (lo32.X_add_number & 0x80000000)
3681 {
3682 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
3683 if (lo32.X_add_number & 0xffff)
3684 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
3685 return;
3686 }
3687 }
3688
3689 /* Check for 16bit shifted constant. We know that hi32 is
3690 non-zero, so start the mask on the first bit of the hi32
3691 value. */
3692 shift = 17;
3693 do
3694 {
3695 unsigned long himask, lomask;
3696
3697 if (shift < 32)
3698 {
3699 himask = 0xffff >> (32 - shift);
3700 lomask = (0xffff << shift) & 0xffffffff;
3701 }
3702 else
3703 {
3704 himask = 0xffff << (shift - 32);
3705 lomask = 0;
3706 }
3707 if ((hi32.X_add_number & ~(offsetT) himask) == 0
3708 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
3709 {
3710 expressionS tmp;
3711
3712 tmp.X_op = O_constant;
3713 if (shift < 32)
3714 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
3715 | (lo32.X_add_number >> shift));
3716 else
3717 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
3718 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
3719 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
3720 reg, reg, (shift >= 32) ? shift - 32 : shift);
3721 return;
3722 }
3723 ++shift;
3724 }
3725 while (shift <= (64 - 16));
3726
3727 /* Find the bit number of the lowest one bit, and store the
3728 shifted value in hi/lo. */
3729 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
3730 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
3731 if (lo != 0)
3732 {
3733 bit = 0;
3734 while ((lo & 1) == 0)
3735 {
3736 lo >>= 1;
3737 ++bit;
3738 }
3739 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
3740 hi >>= bit;
3741 }
3742 else
3743 {
3744 bit = 32;
3745 while ((hi & 1) == 0)
3746 {
3747 hi >>= 1;
3748 ++bit;
3749 }
3750 lo = hi;
3751 hi = 0;
3752 }
3753
3754 /* Optimize if the shifted value is a (power of 2) - 1. */
3755 if ((hi == 0 && ((lo + 1) & lo) == 0)
3756 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
3757 {
3758 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
3759 if (shift != 0)
3760 {
3761 expressionS tmp;
3762
3763 /* This instruction will set the register to be all
3764 ones. */
3765 tmp.X_op = O_constant;
3766 tmp.X_add_number = (offsetT) -1;
3767 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3768 if (bit != 0)
3769 {
3770 bit += shift;
3771 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
3772 reg, reg, (bit >= 32) ? bit - 32 : bit);
3773 }
3774 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
3775 reg, reg, (shift >= 32) ? shift - 32 : shift);
3776 return;
3777 }
3778 }
3779
3780 /* Sign extend hi32 before calling load_register, because we can
3781 generally get better code when we load a sign extended value. */
3782 if ((hi32.X_add_number & 0x80000000) != 0)
3783 hi32.X_add_number |= ~(offsetT) 0xffffffff;
3784 load_register (reg, &hi32, 0);
3785 freg = reg;
3786 }
3787 if ((lo32.X_add_number & 0xffff0000) == 0)
3788 {
3789 if (freg != 0)
3790 {
3791 macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
3792 freg = reg;
3793 }
3794 }
3795 else
3796 {
3797 expressionS mid16;
3798
3799 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
3800 {
3801 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
3802 macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
3803 return;
3804 }
3805
3806 if (freg != 0)
3807 {
3808 macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
3809 freg = reg;
3810 }
3811 mid16 = lo32;
3812 mid16.X_add_number >>= 16;
3813 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
3814 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
3815 freg = reg;
3816 }
3817 if ((lo32.X_add_number & 0xffff) != 0)
3818 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
3819 }
3820
3821 static inline void
3822 load_delay_nop (void)
3823 {
3824 if (!gpr_interlocks)
3825 macro_build (NULL, "nop", "");
3826 }
3827
3828 /* Load an address into a register. */
3829
3830 static void
3831 load_address (int reg, expressionS *ep, int *used_at)
3832 {
3833 if (ep->X_op != O_constant
3834 && ep->X_op != O_symbol)
3835 {
3836 as_bad (_("expression too complex"));
3837 ep->X_op = O_constant;
3838 }
3839
3840 if (ep->X_op == O_constant)
3841 {
3842 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
3843 return;
3844 }
3845
3846 if (mips_pic == NO_PIC)
3847 {
3848 /* If this is a reference to a GP relative symbol, we want
3849 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
3850 Otherwise we want
3851 lui $reg,<sym> (BFD_RELOC_HI16_S)
3852 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3853 If we have an addend, we always use the latter form.
3854
3855 With 64bit address space and a usable $at we want
3856 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3857 lui $at,<sym> (BFD_RELOC_HI16_S)
3858 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3859 daddiu $at,<sym> (BFD_RELOC_LO16)
3860 dsll32 $reg,0
3861 daddu $reg,$reg,$at
3862
3863 If $at is already in use, we use a path which is suboptimal
3864 on superscalar processors.
3865 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3866 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3867 dsll $reg,16
3868 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
3869 dsll $reg,16
3870 daddiu $reg,<sym> (BFD_RELOC_LO16)
3871 */
3872 if (HAVE_64BIT_ADDRESSES)
3873 {
3874 /* ??? We don't provide a GP-relative alternative for these macros.
3875 It used not to be possible with the original relaxation code,
3876 but it could be done now. */
3877
3878 if (*used_at == 0 && !mips_opts.noat)
3879 {
3880 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
3881 macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
3882 macro_build (ep, "daddiu", "t,r,j", reg, reg,
3883 BFD_RELOC_MIPS_HIGHER);
3884 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
3885 macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
3886 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
3887 *used_at = 1;
3888 }
3889 else
3890 {
3891 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
3892 macro_build (ep, "daddiu", "t,r,j", reg, reg,
3893 BFD_RELOC_MIPS_HIGHER);
3894 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
3895 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
3896 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
3897 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
3898 }
3899 }
3900 else
3901 {
3902 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
3903 && ! nopic_need_relax (ep->X_add_symbol, 1))
3904 {
3905 relax_start (ep->X_add_symbol);
3906 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
3907 mips_gp_register, BFD_RELOC_GPREL16);
3908 relax_switch ();
3909 }
3910 macro_build_lui (ep, reg);
3911 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
3912 reg, reg, BFD_RELOC_LO16);
3913 if (mips_relax.sequence)
3914 relax_end ();
3915 }
3916 }
3917 else if (mips_pic == SVR4_PIC && ! mips_big_got)
3918 {
3919 expressionS ex;
3920
3921 /* If this is a reference to an external symbol, we want
3922 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3923 Otherwise we want
3924 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3925 nop
3926 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3927 If there is a constant, it must be added in after.
3928
3929 If we have NewABI, we want
3930 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
3931 unless we're referencing a global symbol with a non-zero
3932 offset, in which case cst must be added separately. */
3933 if (HAVE_NEWABI)
3934 {
3935 if (ep->X_add_number)
3936 {
3937 ex.X_add_number = ep->X_add_number;
3938 ep->X_add_number = 0;
3939 relax_start (ep->X_add_symbol);
3940 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3941 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
3942 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3943 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3944 ex.X_op = O_constant;
3945 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
3946 reg, reg, BFD_RELOC_LO16);
3947 ep->X_add_number = ex.X_add_number;
3948 relax_switch ();
3949 }
3950 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3951 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
3952 if (mips_relax.sequence)
3953 relax_end ();
3954 }
3955 else
3956 {
3957 ex.X_add_number = ep->X_add_number;
3958 ep->X_add_number = 0;
3959 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3960 BFD_RELOC_MIPS_GOT16, mips_gp_register);
3961 load_delay_nop ();
3962 relax_start (ep->X_add_symbol);
3963 relax_switch ();
3964 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3965 BFD_RELOC_LO16);
3966 relax_end ();
3967
3968 if (ex.X_add_number != 0)
3969 {
3970 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3971 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3972 ex.X_op = O_constant;
3973 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
3974 reg, reg, BFD_RELOC_LO16);
3975 }
3976 }
3977 }
3978 else if (mips_pic == SVR4_PIC)
3979 {
3980 expressionS ex;
3981
3982 /* This is the large GOT case. If this is a reference to an
3983 external symbol, we want
3984 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
3985 addu $reg,$reg,$gp
3986 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
3987
3988 Otherwise, for a reference to a local symbol in old ABI, we want
3989 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3990 nop
3991 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3992 If there is a constant, it must be added in after.
3993
3994 In the NewABI, for local symbols, with or without offsets, we want:
3995 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
3996 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
3997 */
3998 if (HAVE_NEWABI)
3999 {
4000 ex.X_add_number = ep->X_add_number;
4001 ep->X_add_number = 0;
4002 relax_start (ep->X_add_symbol);
4003 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4004 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4005 reg, reg, mips_gp_register);
4006 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4007 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4008 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4009 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4010 else if (ex.X_add_number)
4011 {
4012 ex.X_op = O_constant;
4013 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4014 BFD_RELOC_LO16);
4015 }
4016
4017 ep->X_add_number = ex.X_add_number;
4018 relax_switch ();
4019 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4020 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
4021 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4022 BFD_RELOC_MIPS_GOT_OFST);
4023 relax_end ();
4024 }
4025 else
4026 {
4027 ex.X_add_number = ep->X_add_number;
4028 ep->X_add_number = 0;
4029 relax_start (ep->X_add_symbol);
4030 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4031 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4032 reg, reg, mips_gp_register);
4033 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4034 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4035 relax_switch ();
4036 if (reg_needs_delay (mips_gp_register))
4037 {
4038 /* We need a nop before loading from $gp. This special
4039 check is required because the lui which starts the main
4040 instruction stream does not refer to $gp, and so will not
4041 insert the nop which may be required. */
4042 macro_build (NULL, "nop", "");
4043 }
4044 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4045 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4046 load_delay_nop ();
4047 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4048 BFD_RELOC_LO16);
4049 relax_end ();
4050
4051 if (ex.X_add_number != 0)
4052 {
4053 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4054 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4055 ex.X_op = O_constant;
4056 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4057 BFD_RELOC_LO16);
4058 }
4059 }
4060 }
4061 else
4062 abort ();
4063
4064 if (mips_opts.noat && *used_at == 1)
4065 as_bad (_("Macro used $at after \".set noat\""));
4066 }
4067
4068 /* Move the contents of register SOURCE into register DEST. */
4069
4070 static void
4071 move_register (int dest, int source)
4072 {
4073 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4074 dest, source, 0);
4075 }
4076
4077 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
4078 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4079 The two alternatives are:
4080
4081 Global symbol Local sybmol
4082 ------------- ------------
4083 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4084 ... ...
4085 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4086
4087 load_got_offset emits the first instruction and add_got_offset
4088 emits the second for a 16-bit offset or add_got_offset_hilo emits
4089 a sequence to add a 32-bit offset using a scratch register. */
4090
4091 static void
4092 load_got_offset (int dest, expressionS *local)
4093 {
4094 expressionS global;
4095
4096 global = *local;
4097 global.X_add_number = 0;
4098
4099 relax_start (local->X_add_symbol);
4100 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4101 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4102 relax_switch ();
4103 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4104 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4105 relax_end ();
4106 }
4107
4108 static void
4109 add_got_offset (int dest, expressionS *local)
4110 {
4111 expressionS global;
4112
4113 global.X_op = O_constant;
4114 global.X_op_symbol = NULL;
4115 global.X_add_symbol = NULL;
4116 global.X_add_number = local->X_add_number;
4117
4118 relax_start (local->X_add_symbol);
4119 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4120 dest, dest, BFD_RELOC_LO16);
4121 relax_switch ();
4122 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4123 relax_end ();
4124 }
4125
4126 static void
4127 add_got_offset_hilo (int dest, expressionS *local, int tmp)
4128 {
4129 expressionS global;
4130 int hold_mips_optimize;
4131
4132 global.X_op = O_constant;
4133 global.X_op_symbol = NULL;
4134 global.X_add_symbol = NULL;
4135 global.X_add_number = local->X_add_number;
4136
4137 relax_start (local->X_add_symbol);
4138 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
4139 relax_switch ();
4140 /* Set mips_optimize around the lui instruction to avoid
4141 inserting an unnecessary nop after the lw. */
4142 hold_mips_optimize = mips_optimize;
4143 mips_optimize = 2;
4144 macro_build_lui (&global, tmp);
4145 mips_optimize = hold_mips_optimize;
4146 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
4147 relax_end ();
4148
4149 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
4150 }
4151
4152 /*
4153 * Build macros
4154 * This routine implements the seemingly endless macro or synthesized
4155 * instructions and addressing modes in the mips assembly language. Many
4156 * of these macros are simple and are similar to each other. These could
4157 * probably be handled by some kind of table or grammar approach instead of
4158 * this verbose method. Others are not simple macros but are more like
4159 * optimizing code generation.
4160 * One interesting optimization is when several store macros appear
4161 * consecutively that would load AT with the upper half of the same address.
4162 * The ensuing load upper instructions are ommited. This implies some kind
4163 * of global optimization. We currently only optimize within a single macro.
4164 * For many of the load and store macros if the address is specified as a
4165 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4166 * first load register 'at' with zero and use it as the base register. The
4167 * mips assembler simply uses register $zero. Just one tiny optimization
4168 * we're missing.
4169 */
4170 static void
4171 macro (struct mips_cl_insn *ip)
4172 {
4173 register int treg, sreg, dreg, breg;
4174 int tempreg;
4175 int mask;
4176 int used_at = 0;
4177 expressionS expr1;
4178 const char *s;
4179 const char *s2;
4180 const char *fmt;
4181 int likely = 0;
4182 int dbl = 0;
4183 int coproc = 0;
4184 int lr = 0;
4185 int imm = 0;
4186 int call = 0;
4187 int off;
4188 offsetT maxnum;
4189 bfd_reloc_code_real_type r;
4190 int hold_mips_optimize;
4191
4192 assert (! mips_opts.mips16);
4193
4194 treg = (ip->insn_opcode >> 16) & 0x1f;
4195 dreg = (ip->insn_opcode >> 11) & 0x1f;
4196 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
4197 mask = ip->insn_mo->mask;
4198
4199 expr1.X_op = O_constant;
4200 expr1.X_op_symbol = NULL;
4201 expr1.X_add_symbol = NULL;
4202 expr1.X_add_number = 1;
4203
4204 switch (mask)
4205 {
4206 case M_DABS:
4207 dbl = 1;
4208 case M_ABS:
4209 /* bgez $a0,.+12
4210 move v0,$a0
4211 sub v0,$zero,$a0
4212 */
4213
4214 mips_emit_delays (TRUE);
4215 ++mips_opts.noreorder;
4216 mips_any_noreorder = 1;
4217
4218 expr1.X_add_number = 8;
4219 macro_build (&expr1, "bgez", "s,p", sreg);
4220 if (dreg == sreg)
4221 macro_build (NULL, "nop", "", 0);
4222 else
4223 move_register (dreg, sreg);
4224 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
4225
4226 --mips_opts.noreorder;
4227 break;
4228
4229 case M_ADD_I:
4230 s = "addi";
4231 s2 = "add";
4232 goto do_addi;
4233 case M_ADDU_I:
4234 s = "addiu";
4235 s2 = "addu";
4236 goto do_addi;
4237 case M_DADD_I:
4238 dbl = 1;
4239 s = "daddi";
4240 s2 = "dadd";
4241 goto do_addi;
4242 case M_DADDU_I:
4243 dbl = 1;
4244 s = "daddiu";
4245 s2 = "daddu";
4246 do_addi:
4247 if (imm_expr.X_op == O_constant
4248 && imm_expr.X_add_number >= -0x8000
4249 && imm_expr.X_add_number < 0x8000)
4250 {
4251 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
4252 break;
4253 }
4254 used_at = 1;
4255 load_register (AT, &imm_expr, dbl);
4256 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
4257 break;
4258
4259 case M_AND_I:
4260 s = "andi";
4261 s2 = "and";
4262 goto do_bit;
4263 case M_OR_I:
4264 s = "ori";
4265 s2 = "or";
4266 goto do_bit;
4267 case M_NOR_I:
4268 s = "";
4269 s2 = "nor";
4270 goto do_bit;
4271 case M_XOR_I:
4272 s = "xori";
4273 s2 = "xor";
4274 do_bit:
4275 if (imm_expr.X_op == O_constant
4276 && imm_expr.X_add_number >= 0
4277 && imm_expr.X_add_number < 0x10000)
4278 {
4279 if (mask != M_NOR_I)
4280 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
4281 else
4282 {
4283 macro_build (&imm_expr, "ori", "t,r,i",
4284 treg, sreg, BFD_RELOC_LO16);
4285 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
4286 }
4287 break;
4288 }
4289
4290 used_at = 1;
4291 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4292 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
4293 break;
4294
4295 case M_BEQ_I:
4296 s = "beq";
4297 goto beq_i;
4298 case M_BEQL_I:
4299 s = "beql";
4300 likely = 1;
4301 goto beq_i;
4302 case M_BNE_I:
4303 s = "bne";
4304 goto beq_i;
4305 case M_BNEL_I:
4306 s = "bnel";
4307 likely = 1;
4308 beq_i:
4309 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4310 {
4311 macro_build (&offset_expr, s, "s,t,p", sreg, 0);
4312 break;
4313 }
4314 used_at = 1;
4315 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4316 macro_build (&offset_expr, s, "s,t,p", sreg, AT);
4317 break;
4318
4319 case M_BGEL:
4320 likely = 1;
4321 case M_BGE:
4322 if (treg == 0)
4323 {
4324 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
4325 break;
4326 }
4327 if (sreg == 0)
4328 {
4329 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
4330 break;
4331 }
4332 used_at = 1;
4333 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4334 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4335 break;
4336
4337 case M_BGTL_I:
4338 likely = 1;
4339 case M_BGT_I:
4340 /* check for > max integer */
4341 maxnum = 0x7fffffff;
4342 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4343 {
4344 maxnum <<= 16;
4345 maxnum |= 0xffff;
4346 maxnum <<= 16;
4347 maxnum |= 0xffff;
4348 }
4349 if (imm_expr.X_op == O_constant
4350 && imm_expr.X_add_number >= maxnum
4351 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4352 {
4353 do_false:
4354 /* result is always false */
4355 if (! likely)
4356 macro_build (NULL, "nop", "", 0);
4357 else
4358 macro_build (&offset_expr, "bnel", "s,t,p", 0, 0);
4359 break;
4360 }
4361 if (imm_expr.X_op != O_constant)
4362 as_bad (_("Unsupported large constant"));
4363 ++imm_expr.X_add_number;
4364 /* FALLTHROUGH */
4365 case M_BGE_I:
4366 case M_BGEL_I:
4367 if (mask == M_BGEL_I)
4368 likely = 1;
4369 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4370 {
4371 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
4372 break;
4373 }
4374 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4375 {
4376 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
4377 break;
4378 }
4379 maxnum = 0x7fffffff;
4380 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4381 {
4382 maxnum <<= 16;
4383 maxnum |= 0xffff;
4384 maxnum <<= 16;
4385 maxnum |= 0xffff;
4386 }
4387 maxnum = - maxnum - 1;
4388 if (imm_expr.X_op == O_constant
4389 && imm_expr.X_add_number <= maxnum
4390 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4391 {
4392 do_true:
4393 /* result is always true */
4394 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
4395 macro_build (&offset_expr, "b", "p");
4396 break;
4397 }
4398 used_at = 1;
4399 set_at (sreg, 0);
4400 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4401 break;
4402
4403 case M_BGEUL:
4404 likely = 1;
4405 case M_BGEU:
4406 if (treg == 0)
4407 goto do_true;
4408 if (sreg == 0)
4409 {
4410 macro_build (&offset_expr, likely ? "beql" : "beq",
4411 "s,t,p", 0, treg);
4412 break;
4413 }
4414 used_at = 1;
4415 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4416 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4417 break;
4418
4419 case M_BGTUL_I:
4420 likely = 1;
4421 case M_BGTU_I:
4422 if (sreg == 0
4423 || (HAVE_32BIT_GPRS
4424 && imm_expr.X_op == O_constant
4425 && imm_expr.X_add_number == (offsetT) 0xffffffff))
4426 goto do_false;
4427 if (imm_expr.X_op != O_constant)
4428 as_bad (_("Unsupported large constant"));
4429 ++imm_expr.X_add_number;
4430 /* FALLTHROUGH */
4431 case M_BGEU_I:
4432 case M_BGEUL_I:
4433 if (mask == M_BGEUL_I)
4434 likely = 1;
4435 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4436 goto do_true;
4437 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4438 {
4439 macro_build (&offset_expr, likely ? "bnel" : "bne",
4440 "s,t,p", sreg, 0);
4441 break;
4442 }
4443 used_at = 1;
4444 set_at (sreg, 1);
4445 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4446 break;
4447
4448 case M_BGTL:
4449 likely = 1;
4450 case M_BGT:
4451 if (treg == 0)
4452 {
4453 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
4454 break;
4455 }
4456 if (sreg == 0)
4457 {
4458 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
4459 break;
4460 }
4461 used_at = 1;
4462 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
4463 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4464 break;
4465
4466 case M_BGTUL:
4467 likely = 1;
4468 case M_BGTU:
4469 if (treg == 0)
4470 {
4471 macro_build (&offset_expr, likely ? "bnel" : "bne",
4472 "s,t,p", sreg, 0);
4473 break;
4474 }
4475 if (sreg == 0)
4476 goto do_false;
4477 used_at = 1;
4478 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
4479 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4480 break;
4481
4482 case M_BLEL:
4483 likely = 1;
4484 case M_BLE:
4485 if (treg == 0)
4486 {
4487 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
4488 break;
4489 }
4490 if (sreg == 0)
4491 {
4492 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
4493 break;
4494 }
4495 used_at = 1;
4496 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
4497 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4498 break;
4499
4500 case M_BLEL_I:
4501 likely = 1;
4502 case M_BLE_I:
4503 maxnum = 0x7fffffff;
4504 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4505 {
4506 maxnum <<= 16;
4507 maxnum |= 0xffff;
4508 maxnum <<= 16;
4509 maxnum |= 0xffff;
4510 }
4511 if (imm_expr.X_op == O_constant
4512 && imm_expr.X_add_number >= maxnum
4513 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4514 goto do_true;
4515 if (imm_expr.X_op != O_constant)
4516 as_bad (_("Unsupported large constant"));
4517 ++imm_expr.X_add_number;
4518 /* FALLTHROUGH */
4519 case M_BLT_I:
4520 case M_BLTL_I:
4521 if (mask == M_BLTL_I)
4522 likely = 1;
4523 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4524 {
4525 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
4526 break;
4527 }
4528 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4529 {
4530 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
4531 break;
4532 }
4533 used_at = 1;
4534 set_at (sreg, 0);
4535 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4536 break;
4537
4538 case M_BLEUL:
4539 likely = 1;
4540 case M_BLEU:
4541 if (treg == 0)
4542 {
4543 macro_build (&offset_expr, likely ? "beql" : "beq",
4544 "s,t,p", sreg, 0);
4545 break;
4546 }
4547 if (sreg == 0)
4548 goto do_true;
4549 used_at = 1;
4550 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
4551 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4552 break;
4553
4554 case M_BLEUL_I:
4555 likely = 1;
4556 case M_BLEU_I:
4557 if (sreg == 0
4558 || (HAVE_32BIT_GPRS
4559 && imm_expr.X_op == O_constant
4560 && imm_expr.X_add_number == (offsetT) 0xffffffff))
4561 goto do_true;
4562 if (imm_expr.X_op != O_constant)
4563 as_bad (_("Unsupported large constant"));
4564 ++imm_expr.X_add_number;
4565 /* FALLTHROUGH */
4566 case M_BLTU_I:
4567 case M_BLTUL_I:
4568 if (mask == M_BLTUL_I)
4569 likely = 1;
4570 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4571 goto do_false;
4572 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4573 {
4574 macro_build (&offset_expr, likely ? "beql" : "beq",
4575 "s,t,p", sreg, 0);
4576 break;
4577 }
4578 used_at = 1;
4579 set_at (sreg, 1);
4580 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4581 break;
4582
4583 case M_BLTL:
4584 likely = 1;
4585 case M_BLT:
4586 if (treg == 0)
4587 {
4588 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
4589 break;
4590 }
4591 if (sreg == 0)
4592 {
4593 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
4594 break;
4595 }
4596 used_at = 1;
4597 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4598 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4599 break;
4600
4601 case M_BLTUL:
4602 likely = 1;
4603 case M_BLTU:
4604 if (treg == 0)
4605 goto do_false;
4606 if (sreg == 0)
4607 {
4608 macro_build (&offset_expr, likely ? "bnel" : "bne",
4609 "s,t,p", 0, treg);
4610 break;
4611 }
4612 used_at = 1;
4613 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4614 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4615 break;
4616
4617 case M_DEXT:
4618 {
4619 unsigned long pos;
4620 unsigned long size;
4621
4622 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
4623 {
4624 as_bad (_("Unsupported large constant"));
4625 pos = size = 1;
4626 }
4627 else
4628 {
4629 pos = (unsigned long) imm_expr.X_add_number;
4630 size = (unsigned long) imm2_expr.X_add_number;
4631 }
4632
4633 if (pos > 63)
4634 {
4635 as_bad (_("Improper position (%lu)"), pos);
4636 pos = 1;
4637 }
4638 if (size == 0 || size > 64
4639 || (pos + size - 1) > 63)
4640 {
4641 as_bad (_("Improper extract size (%lu, position %lu)"),
4642 size, pos);
4643 size = 1;
4644 }
4645
4646 if (size <= 32 && pos < 32)
4647 {
4648 s = "dext";
4649 fmt = "t,r,+A,+C";
4650 }
4651 else if (size <= 32)
4652 {
4653 s = "dextu";
4654 fmt = "t,r,+E,+H";
4655 }
4656 else
4657 {
4658 s = "dextm";
4659 fmt = "t,r,+A,+G";
4660 }
4661 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1);
4662 }
4663 break;
4664
4665 case M_DINS:
4666 {
4667 unsigned long pos;
4668 unsigned long size;
4669
4670 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
4671 {
4672 as_bad (_("Unsupported large constant"));
4673 pos = size = 1;
4674 }
4675 else
4676 {
4677 pos = (unsigned long) imm_expr.X_add_number;
4678 size = (unsigned long) imm2_expr.X_add_number;
4679 }
4680
4681 if (pos > 63)
4682 {
4683 as_bad (_("Improper position (%lu)"), pos);
4684 pos = 1;
4685 }
4686 if (size == 0 || size > 64
4687 || (pos + size - 1) > 63)
4688 {
4689 as_bad (_("Improper insert size (%lu, position %lu)"),
4690 size, pos);
4691 size = 1;
4692 }
4693
4694 if (pos < 32 && (pos + size - 1) < 32)
4695 {
4696 s = "dins";
4697 fmt = "t,r,+A,+B";
4698 }
4699 else if (pos >= 32)
4700 {
4701 s = "dinsu";
4702 fmt = "t,r,+E,+F";
4703 }
4704 else
4705 {
4706 s = "dinsm";
4707 fmt = "t,r,+A,+F";
4708 }
4709 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos,
4710 pos + size - 1);
4711 }
4712 break;
4713
4714 case M_DDIV_3:
4715 dbl = 1;
4716 case M_DIV_3:
4717 s = "mflo";
4718 goto do_div3;
4719 case M_DREM_3:
4720 dbl = 1;
4721 case M_REM_3:
4722 s = "mfhi";
4723 do_div3:
4724 if (treg == 0)
4725 {
4726 as_warn (_("Divide by zero."));
4727 if (mips_trap)
4728 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
4729 else
4730 macro_build (NULL, "break", "c", 7);
4731 break;
4732 }
4733
4734 mips_emit_delays (TRUE);
4735 ++mips_opts.noreorder;
4736 mips_any_noreorder = 1;
4737 if (mips_trap)
4738 {
4739 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
4740 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
4741 }
4742 else
4743 {
4744 expr1.X_add_number = 8;
4745 macro_build (&expr1, "bne", "s,t,p", treg, 0);
4746 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
4747 macro_build (NULL, "break", "c", 7);
4748 }
4749 expr1.X_add_number = -1;
4750 used_at = 1;
4751 load_register (AT, &expr1, dbl);
4752 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
4753 macro_build (&expr1, "bne", "s,t,p", treg, AT);
4754 if (dbl)
4755 {
4756 expr1.X_add_number = 1;
4757 load_register (AT, &expr1, dbl);
4758 macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
4759 }
4760 else
4761 {
4762 expr1.X_add_number = 0x80000000;
4763 macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
4764 }
4765 if (mips_trap)
4766 {
4767 macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
4768 /* We want to close the noreorder block as soon as possible, so
4769 that later insns are available for delay slot filling. */
4770 --mips_opts.noreorder;
4771 }
4772 else
4773 {
4774 expr1.X_add_number = 8;
4775 macro_build (&expr1, "bne", "s,t,p", sreg, AT);
4776 macro_build (NULL, "nop", "", 0);
4777
4778 /* We want to close the noreorder block as soon as possible, so
4779 that later insns are available for delay slot filling. */
4780 --mips_opts.noreorder;
4781
4782 macro_build (NULL, "break", "c", 6);
4783 }
4784 macro_build (NULL, s, "d", dreg);
4785 break;
4786
4787 case M_DIV_3I:
4788 s = "div";
4789 s2 = "mflo";
4790 goto do_divi;
4791 case M_DIVU_3I:
4792 s = "divu";
4793 s2 = "mflo";
4794 goto do_divi;
4795 case M_REM_3I:
4796 s = "div";
4797 s2 = "mfhi";
4798 goto do_divi;
4799 case M_REMU_3I:
4800 s = "divu";
4801 s2 = "mfhi";
4802 goto do_divi;
4803 case M_DDIV_3I:
4804 dbl = 1;
4805 s = "ddiv";
4806 s2 = "mflo";
4807 goto do_divi;
4808 case M_DDIVU_3I:
4809 dbl = 1;
4810 s = "ddivu";
4811 s2 = "mflo";
4812 goto do_divi;
4813 case M_DREM_3I:
4814 dbl = 1;
4815 s = "ddiv";
4816 s2 = "mfhi";
4817 goto do_divi;
4818 case M_DREMU_3I:
4819 dbl = 1;
4820 s = "ddivu";
4821 s2 = "mfhi";
4822 do_divi:
4823 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4824 {
4825 as_warn (_("Divide by zero."));
4826 if (mips_trap)
4827 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
4828 else
4829 macro_build (NULL, "break", "c", 7);
4830 break;
4831 }
4832 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4833 {
4834 if (strcmp (s2, "mflo") == 0)
4835 move_register (dreg, sreg);
4836 else
4837 move_register (dreg, 0);
4838 break;
4839 }
4840 if (imm_expr.X_op == O_constant
4841 && imm_expr.X_add_number == -1
4842 && s[strlen (s) - 1] != 'u')
4843 {
4844 if (strcmp (s2, "mflo") == 0)
4845 {
4846 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
4847 }
4848 else
4849 move_register (dreg, 0);
4850 break;
4851 }
4852
4853 used_at = 1;
4854 load_register (AT, &imm_expr, dbl);
4855 macro_build (NULL, s, "z,s,t", sreg, AT);
4856 macro_build (NULL, s2, "d", dreg);
4857 break;
4858
4859 case M_DIVU_3:
4860 s = "divu";
4861 s2 = "mflo";
4862 goto do_divu3;
4863 case M_REMU_3:
4864 s = "divu";
4865 s2 = "mfhi";
4866 goto do_divu3;
4867 case M_DDIVU_3:
4868 s = "ddivu";
4869 s2 = "mflo";
4870 goto do_divu3;
4871 case M_DREMU_3:
4872 s = "ddivu";
4873 s2 = "mfhi";
4874 do_divu3:
4875 mips_emit_delays (TRUE);
4876 ++mips_opts.noreorder;
4877 mips_any_noreorder = 1;
4878 if (mips_trap)
4879 {
4880 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
4881 macro_build (NULL, s, "z,s,t", sreg, treg);
4882 /* We want to close the noreorder block as soon as possible, so
4883 that later insns are available for delay slot filling. */
4884 --mips_opts.noreorder;
4885 }
4886 else
4887 {
4888 expr1.X_add_number = 8;
4889 macro_build (&expr1, "bne", "s,t,p", treg, 0);
4890 macro_build (NULL, s, "z,s,t", sreg, treg);
4891
4892 /* We want to close the noreorder block as soon as possible, so
4893 that later insns are available for delay slot filling. */
4894 --mips_opts.noreorder;
4895 macro_build (NULL, "break", "c", 7);
4896 }
4897 macro_build (NULL, s2, "d", dreg);
4898 break;
4899
4900 case M_DLCA_AB:
4901 dbl = 1;
4902 case M_LCA_AB:
4903 call = 1;
4904 goto do_la;
4905 case M_DLA_AB:
4906 dbl = 1;
4907 case M_LA_AB:
4908 do_la:
4909 /* Load the address of a symbol into a register. If breg is not
4910 zero, we then add a base register to it. */
4911
4912 if (dbl && HAVE_32BIT_GPRS)
4913 as_warn (_("dla used to load 32-bit register"));
4914
4915 if (! dbl && HAVE_64BIT_OBJECTS)
4916 as_warn (_("la used to load 64-bit address"));
4917
4918 if (offset_expr.X_op == O_constant
4919 && offset_expr.X_add_number >= -0x8000
4920 && offset_expr.X_add_number < 0x8000)
4921 {
4922 macro_build (&offset_expr,
4923 (dbl || HAVE_64BIT_ADDRESSES) ? "daddiu" : "addiu",
4924 "t,r,j", treg, sreg, BFD_RELOC_LO16);
4925 break;
4926 }
4927
4928 if (!mips_opts.noat && (treg == breg))
4929 {
4930 tempreg = AT;
4931 used_at = 1;
4932 }
4933 else
4934 {
4935 tempreg = treg;
4936 }
4937
4938 if (offset_expr.X_op != O_symbol
4939 && offset_expr.X_op != O_constant)
4940 {
4941 as_bad (_("expression too complex"));
4942 offset_expr.X_op = O_constant;
4943 }
4944
4945 if (offset_expr.X_op == O_constant)
4946 load_register (tempreg, &offset_expr,
4947 (mips_pic == NO_PIC
4948 ? (dbl || HAVE_64BIT_ADDRESSES)
4949 : HAVE_64BIT_ADDRESSES));
4950 else if (mips_pic == NO_PIC)
4951 {
4952 /* If this is a reference to a GP relative symbol, we want
4953 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
4954 Otherwise we want
4955 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4956 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4957 If we have a constant, we need two instructions anyhow,
4958 so we may as well always use the latter form.
4959
4960 With 64bit address space and a usable $at we want
4961 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4962 lui $at,<sym> (BFD_RELOC_HI16_S)
4963 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4964 daddiu $at,<sym> (BFD_RELOC_LO16)
4965 dsll32 $tempreg,0
4966 daddu $tempreg,$tempreg,$at
4967
4968 If $at is already in use, we use a path which is suboptimal
4969 on superscalar processors.
4970 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4971 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4972 dsll $tempreg,16
4973 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
4974 dsll $tempreg,16
4975 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
4976 */
4977 if (HAVE_64BIT_ADDRESSES)
4978 {
4979 /* ??? We don't provide a GP-relative alternative for
4980 these macros. It used not to be possible with the
4981 original relaxation code, but it could be done now. */
4982
4983 if (used_at == 0 && !mips_opts.noat)
4984 {
4985 macro_build (&offset_expr, "lui", "t,u",
4986 tempreg, BFD_RELOC_MIPS_HIGHEST);
4987 macro_build (&offset_expr, "lui", "t,u",
4988 AT, BFD_RELOC_HI16_S);
4989 macro_build (&offset_expr, "daddiu", "t,r,j",
4990 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
4991 macro_build (&offset_expr, "daddiu", "t,r,j",
4992 AT, AT, BFD_RELOC_LO16);
4993 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
4994 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
4995 used_at = 1;
4996 }
4997 else
4998 {
4999 macro_build (&offset_expr, "lui", "t,u",
5000 tempreg, BFD_RELOC_MIPS_HIGHEST);
5001 macro_build (&offset_expr, "daddiu", "t,r,j",
5002 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
5003 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5004 macro_build (&offset_expr, "daddiu", "t,r,j",
5005 tempreg, tempreg, BFD_RELOC_HI16_S);
5006 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5007 macro_build (&offset_expr, "daddiu", "t,r,j",
5008 tempreg, tempreg, BFD_RELOC_LO16);
5009 }
5010 }
5011 else
5012 {
5013 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5014 && ! nopic_need_relax (offset_expr.X_add_symbol, 1))
5015 {
5016 relax_start (offset_expr.X_add_symbol);
5017 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5018 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5019 relax_switch ();
5020 }
5021 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
5022 as_bad (_("offset too large"));
5023 macro_build_lui (&offset_expr, tempreg);
5024 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5025 tempreg, tempreg, BFD_RELOC_LO16);
5026 if (mips_relax.sequence)
5027 relax_end ();
5028 }
5029 }
5030 else if (mips_pic == SVR4_PIC && ! mips_big_got && ! HAVE_NEWABI)
5031 {
5032 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5033
5034 /* If this is a reference to an external symbol, and there
5035 is no constant, we want
5036 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5037 or for lca or if tempreg is PIC_CALL_REG
5038 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5039 For a local symbol, we want
5040 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5041 nop
5042 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5043
5044 If we have a small constant, and this is a reference to
5045 an external symbol, we want
5046 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5047 nop
5048 addiu $tempreg,$tempreg,<constant>
5049 For a local symbol, we want the same instruction
5050 sequence, but we output a BFD_RELOC_LO16 reloc on the
5051 addiu instruction.
5052
5053 If we have a large constant, and this is a reference to
5054 an external symbol, we want
5055 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5056 lui $at,<hiconstant>
5057 addiu $at,$at,<loconstant>
5058 addu $tempreg,$tempreg,$at
5059 For a local symbol, we want the same instruction
5060 sequence, but we output a BFD_RELOC_LO16 reloc on the
5061 addiu instruction.
5062 */
5063
5064 if (offset_expr.X_add_number == 0)
5065 {
5066 if (breg == 0 && (call || tempreg == PIC_CALL_REG))
5067 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
5068
5069 relax_start (offset_expr.X_add_symbol);
5070 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5071 lw_reloc_type, mips_gp_register);
5072 if (breg != 0)
5073 {
5074 /* We're going to put in an addu instruction using
5075 tempreg, so we may as well insert the nop right
5076 now. */
5077 load_delay_nop ();
5078 }
5079 relax_switch ();
5080 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5081 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
5082 load_delay_nop ();
5083 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5084 tempreg, tempreg, BFD_RELOC_LO16);
5085 relax_end ();
5086 /* FIXME: If breg == 0, and the next instruction uses
5087 $tempreg, then if this variant case is used an extra
5088 nop will be generated. */
5089 }
5090 else if (offset_expr.X_add_number >= -0x8000
5091 && offset_expr.X_add_number < 0x8000)
5092 {
5093 load_got_offset (tempreg, &offset_expr);
5094 load_delay_nop ();
5095 add_got_offset (tempreg, &offset_expr);
5096 }
5097 else
5098 {
5099 expr1.X_add_number = offset_expr.X_add_number;
5100 offset_expr.X_add_number =
5101 ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000;
5102 load_got_offset (tempreg, &offset_expr);
5103 offset_expr.X_add_number = expr1.X_add_number;
5104 /* If we are going to add in a base register, and the
5105 target register and the base register are the same,
5106 then we are using AT as a temporary register. Since
5107 we want to load the constant into AT, we add our
5108 current AT (from the global offset table) and the
5109 register into the register now, and pretend we were
5110 not using a base register. */
5111 if (breg == treg)
5112 {
5113 load_delay_nop ();
5114 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5115 treg, AT, breg);
5116 breg = 0;
5117 tempreg = treg;
5118 }
5119 add_got_offset_hilo (tempreg, &offset_expr, AT);
5120 used_at = 1;
5121 }
5122 }
5123 else if (mips_pic == SVR4_PIC && ! mips_big_got && HAVE_NEWABI)
5124 {
5125 int add_breg_early = 0;
5126
5127 /* If this is a reference to an external, and there is no
5128 constant, or local symbol (*), with or without a
5129 constant, we want
5130 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5131 or for lca or if tempreg is PIC_CALL_REG
5132 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5133
5134 If we have a small constant, and this is a reference to
5135 an external symbol, we want
5136 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5137 addiu $tempreg,$tempreg,<constant>
5138
5139 If we have a large constant, and this is a reference to
5140 an external symbol, we want
5141 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5142 lui $at,<hiconstant>
5143 addiu $at,$at,<loconstant>
5144 addu $tempreg,$tempreg,$at
5145
5146 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
5147 local symbols, even though it introduces an additional
5148 instruction. */
5149
5150 if (offset_expr.X_add_number)
5151 {
5152 expr1.X_add_number = offset_expr.X_add_number;
5153 offset_expr.X_add_number = 0;
5154
5155 relax_start (offset_expr.X_add_symbol);
5156 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5157 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5158
5159 if (expr1.X_add_number >= -0x8000
5160 && expr1.X_add_number < 0x8000)
5161 {
5162 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5163 tempreg, tempreg, BFD_RELOC_LO16);
5164 }
5165 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
5166 {
5167 int dreg;
5168
5169 /* If we are going to add in a base register, and the
5170 target register and the base register are the same,
5171 then we are using AT as a temporary register. Since
5172 we want to load the constant into AT, we add our
5173 current AT (from the global offset table) and the
5174 register into the register now, and pretend we were
5175 not using a base register. */
5176 if (breg != treg)
5177 dreg = tempreg;
5178 else
5179 {
5180 assert (tempreg == AT);
5181 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5182 treg, AT, breg);
5183 dreg = treg;
5184 add_breg_early = 1;
5185 }
5186
5187 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5188 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5189 dreg, dreg, AT);
5190
5191 used_at = 1;
5192 }
5193 else
5194 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5195
5196 relax_switch ();
5197 offset_expr.X_add_number = expr1.X_add_number;
5198
5199 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5200 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5201 if (add_breg_early)
5202 {
5203 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5204 treg, tempreg, breg);
5205 breg = 0;
5206 tempreg = treg;
5207 }
5208 relax_end ();
5209 }
5210 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
5211 {
5212 relax_start (offset_expr.X_add_symbol);
5213 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5214 BFD_RELOC_MIPS_CALL16, mips_gp_register);
5215 relax_switch ();
5216 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5217 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5218 relax_end ();
5219 }
5220 else
5221 {
5222 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5223 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5224 }
5225 }
5226 else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
5227 {
5228 int gpdelay;
5229 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5230 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
5231 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5232
5233 /* This is the large GOT case. If this is a reference to an
5234 external symbol, and there is no constant, we want
5235 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5236 addu $tempreg,$tempreg,$gp
5237 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5238 or for lca or if tempreg is PIC_CALL_REG
5239 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5240 addu $tempreg,$tempreg,$gp
5241 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5242 For a local symbol, we want
5243 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5244 nop
5245 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5246
5247 If we have a small constant, and this is a reference to
5248 an external symbol, we want
5249 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5250 addu $tempreg,$tempreg,$gp
5251 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5252 nop
5253 addiu $tempreg,$tempreg,<constant>
5254 For a local symbol, we want
5255 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5256 nop
5257 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5258
5259 If we have a large constant, and this is a reference to
5260 an external symbol, we want
5261 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5262 addu $tempreg,$tempreg,$gp
5263 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5264 lui $at,<hiconstant>
5265 addiu $at,$at,<loconstant>
5266 addu $tempreg,$tempreg,$at
5267 For a local symbol, we want
5268 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5269 lui $at,<hiconstant>
5270 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5271 addu $tempreg,$tempreg,$at
5272 */
5273
5274 expr1.X_add_number = offset_expr.X_add_number;
5275 offset_expr.X_add_number = 0;
5276 relax_start (offset_expr.X_add_symbol);
5277 gpdelay = reg_needs_delay (mips_gp_register);
5278 if (expr1.X_add_number == 0 && breg == 0
5279 && (call || tempreg == PIC_CALL_REG))
5280 {
5281 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5282 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5283 }
5284 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5285 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5286 tempreg, tempreg, mips_gp_register);
5287 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5288 tempreg, lw_reloc_type, tempreg);
5289 if (expr1.X_add_number == 0)
5290 {
5291 if (breg != 0)
5292 {
5293 /* We're going to put in an addu instruction using
5294 tempreg, so we may as well insert the nop right
5295 now. */
5296 load_delay_nop ();
5297 }
5298 }
5299 else if (expr1.X_add_number >= -0x8000
5300 && expr1.X_add_number < 0x8000)
5301 {
5302 load_delay_nop ();
5303 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5304 tempreg, tempreg, BFD_RELOC_LO16);
5305 }
5306 else
5307 {
5308 int dreg;
5309
5310 /* If we are going to add in a base register, and the
5311 target register and the base register are the same,
5312 then we are using AT as a temporary register. Since
5313 we want to load the constant into AT, we add our
5314 current AT (from the global offset table) and the
5315 register into the register now, and pretend we were
5316 not using a base register. */
5317 if (breg != treg)
5318 dreg = tempreg;
5319 else
5320 {
5321 assert (tempreg == AT);
5322 load_delay_nop ();
5323 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5324 treg, AT, breg);
5325 dreg = treg;
5326 }
5327
5328 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5329 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
5330
5331 used_at = 1;
5332 }
5333 offset_expr.X_add_number =
5334 ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
5335 relax_switch ();
5336
5337 if (gpdelay)
5338 {
5339 /* This is needed because this instruction uses $gp, but
5340 the first instruction on the main stream does not. */
5341 macro_build (NULL, "nop", "");
5342 }
5343
5344 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5345 local_reloc_type, mips_gp_register);
5346 if (expr1.X_add_number >= -0x8000
5347 && expr1.X_add_number < 0x8000)
5348 {
5349 load_delay_nop ();
5350 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5351 tempreg, tempreg, BFD_RELOC_LO16);
5352 /* FIXME: If add_number is 0, and there was no base
5353 register, the external symbol case ended with a load,
5354 so if the symbol turns out to not be external, and
5355 the next instruction uses tempreg, an unnecessary nop
5356 will be inserted. */
5357 }
5358 else
5359 {
5360 if (breg == treg)
5361 {
5362 /* We must add in the base register now, as in the
5363 external symbol case. */
5364 assert (tempreg == AT);
5365 load_delay_nop ();
5366 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5367 treg, AT, breg);
5368 tempreg = treg;
5369 /* We set breg to 0 because we have arranged to add
5370 it in in both cases. */
5371 breg = 0;
5372 }
5373
5374 macro_build_lui (&expr1, AT);
5375 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5376 AT, AT, BFD_RELOC_LO16);
5377 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5378 tempreg, tempreg, AT);
5379 used_at = 1;
5380 }
5381 relax_end ();
5382 }
5383 else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
5384 {
5385 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5386 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
5387 int add_breg_early = 0;
5388
5389 /* This is the large GOT case. If this is a reference to an
5390 external symbol, and there is no constant, we want
5391 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5392 add $tempreg,$tempreg,$gp
5393 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5394 or for lca or if tempreg is PIC_CALL_REG
5395 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5396 add $tempreg,$tempreg,$gp
5397 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5398
5399 If we have a small constant, and this is a reference to
5400 an external symbol, we want
5401 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5402 add $tempreg,$tempreg,$gp
5403 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5404 addi $tempreg,$tempreg,<constant>
5405
5406 If we have a large constant, and this is a reference to
5407 an external symbol, we want
5408 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5409 addu $tempreg,$tempreg,$gp
5410 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5411 lui $at,<hiconstant>
5412 addi $at,$at,<loconstant>
5413 add $tempreg,$tempreg,$at
5414
5415 If we have NewABI, and we know it's a local symbol, we want
5416 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5417 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5418 otherwise we have to resort to GOT_HI16/GOT_LO16. */
5419
5420 relax_start (offset_expr.X_add_symbol);
5421
5422 expr1.X_add_number = offset_expr.X_add_number;
5423 offset_expr.X_add_number = 0;
5424
5425 if (expr1.X_add_number == 0 && breg == 0
5426 && (call || tempreg == PIC_CALL_REG))
5427 {
5428 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5429 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5430 }
5431 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5432 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5433 tempreg, tempreg, mips_gp_register);
5434 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5435 tempreg, lw_reloc_type, tempreg);
5436
5437 if (expr1.X_add_number == 0)
5438 ;
5439 else if (expr1.X_add_number >= -0x8000
5440 && expr1.X_add_number < 0x8000)
5441 {
5442 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5443 tempreg, tempreg, BFD_RELOC_LO16);
5444 }
5445 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
5446 {
5447 int dreg;
5448
5449 /* If we are going to add in a base register, and the
5450 target register and the base register are the same,
5451 then we are using AT as a temporary register. Since
5452 we want to load the constant into AT, we add our
5453 current AT (from the global offset table) and the
5454 register into the register now, and pretend we were
5455 not using a base register. */
5456 if (breg != treg)
5457 dreg = tempreg;
5458 else
5459 {
5460 assert (tempreg == AT);
5461 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5462 treg, AT, breg);
5463 dreg = treg;
5464 add_breg_early = 1;
5465 }
5466
5467 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5468 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
5469
5470 used_at = 1;
5471 }
5472 else
5473 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5474
5475 relax_switch ();
5476 offset_expr.X_add_number = expr1.X_add_number;
5477 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5478 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
5479 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
5480 tempreg, BFD_RELOC_MIPS_GOT_OFST);
5481 if (add_breg_early)
5482 {
5483 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5484 treg, tempreg, breg);
5485 breg = 0;
5486 tempreg = treg;
5487 }
5488 relax_end ();
5489 }
5490 else
5491 abort ();
5492
5493 if (breg != 0)
5494 {
5495 char *s;
5496
5497 if (mips_pic == NO_PIC)
5498 s = (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu";
5499 else
5500 s = ADDRESS_ADD_INSN;
5501
5502 macro_build (NULL, s, "d,v,t", treg, tempreg, breg);
5503 }
5504 break;
5505
5506 case M_J_A:
5507 /* The j instruction may not be used in PIC code, since it
5508 requires an absolute address. We convert it to a b
5509 instruction. */
5510 if (mips_pic == NO_PIC)
5511 macro_build (&offset_expr, "j", "a");
5512 else
5513 macro_build (&offset_expr, "b", "p");
5514 break;
5515
5516 /* The jal instructions must be handled as macros because when
5517 generating PIC code they expand to multi-instruction
5518 sequences. Normally they are simple instructions. */
5519 case M_JAL_1:
5520 dreg = RA;
5521 /* Fall through. */
5522 case M_JAL_2:
5523 if (mips_pic == NO_PIC)
5524 macro_build (NULL, "jalr", "d,s", dreg, sreg);
5525 else if (mips_pic == SVR4_PIC)
5526 {
5527 if (sreg != PIC_CALL_REG)
5528 as_warn (_("MIPS PIC call to register other than $25"));
5529
5530 macro_build (NULL, "jalr", "d,s", dreg, sreg);
5531 if (! HAVE_NEWABI)
5532 {
5533 if (mips_cprestore_offset < 0)
5534 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5535 else
5536 {
5537 if (! mips_frame_reg_valid)
5538 {
5539 as_warn (_("No .frame pseudo-op used in PIC code"));
5540 /* Quiet this warning. */
5541 mips_frame_reg_valid = 1;
5542 }
5543 if (! mips_cprestore_valid)
5544 {
5545 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5546 /* Quiet this warning. */
5547 mips_cprestore_valid = 1;
5548 }
5549 expr1.X_add_number = mips_cprestore_offset;
5550 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
5551 mips_gp_register,
5552 mips_frame_reg,
5553 HAVE_64BIT_ADDRESSES);
5554 }
5555 }
5556 }
5557 else
5558 abort ();
5559
5560 break;
5561
5562 case M_JAL_A:
5563 if (mips_pic == NO_PIC)
5564 macro_build (&offset_expr, "jal", "a");
5565 else if (mips_pic == SVR4_PIC)
5566 {
5567 /* If this is a reference to an external symbol, and we are
5568 using a small GOT, we want
5569 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5570 nop
5571 jalr $ra,$25
5572 nop
5573 lw $gp,cprestore($sp)
5574 The cprestore value is set using the .cprestore
5575 pseudo-op. If we are using a big GOT, we want
5576 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5577 addu $25,$25,$gp
5578 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
5579 nop
5580 jalr $ra,$25
5581 nop
5582 lw $gp,cprestore($sp)
5583 If the symbol is not external, we want
5584 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5585 nop
5586 addiu $25,$25,<sym> (BFD_RELOC_LO16)
5587 jalr $ra,$25
5588 nop
5589 lw $gp,cprestore($sp)
5590
5591 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
5592 sequences above, minus nops, unless the symbol is local,
5593 which enables us to use GOT_PAGE/GOT_OFST (big got) or
5594 GOT_DISP. */
5595 if (HAVE_NEWABI)
5596 {
5597 if (! mips_big_got)
5598 {
5599 relax_start (offset_expr.X_add_symbol);
5600 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5601 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
5602 mips_gp_register);
5603 relax_switch ();
5604 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5605 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
5606 mips_gp_register);
5607 relax_end ();
5608 }
5609 else
5610 {
5611 relax_start (offset_expr.X_add_symbol);
5612 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
5613 BFD_RELOC_MIPS_CALL_HI16);
5614 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
5615 PIC_CALL_REG, mips_gp_register);
5616 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5617 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
5618 PIC_CALL_REG);
5619 relax_switch ();
5620 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5621 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
5622 mips_gp_register);
5623 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5624 PIC_CALL_REG, PIC_CALL_REG,
5625 BFD_RELOC_MIPS_GOT_OFST);
5626 relax_end ();
5627 }
5628
5629 macro_build_jalr (&offset_expr);
5630 }
5631 else
5632 {
5633 relax_start (offset_expr.X_add_symbol);
5634 if (! mips_big_got)
5635 {
5636 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5637 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
5638 mips_gp_register);
5639 load_delay_nop ();
5640 relax_switch ();
5641 }
5642 else
5643 {
5644 int gpdelay;
5645
5646 gpdelay = reg_needs_delay (mips_gp_register);
5647 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
5648 BFD_RELOC_MIPS_CALL_HI16);
5649 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
5650 PIC_CALL_REG, mips_gp_register);
5651 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5652 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
5653 PIC_CALL_REG);
5654 load_delay_nop ();
5655 relax_switch ();
5656 if (gpdelay)
5657 macro_build (NULL, "nop", "");
5658 }
5659 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5660 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
5661 mips_gp_register);
5662 load_delay_nop ();
5663 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5664 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
5665 relax_end ();
5666 macro_build_jalr (&offset_expr);
5667
5668 if (mips_cprestore_offset < 0)
5669 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5670 else
5671 {
5672 if (! mips_frame_reg_valid)
5673 {
5674 as_warn (_("No .frame pseudo-op used in PIC code"));
5675 /* Quiet this warning. */
5676 mips_frame_reg_valid = 1;
5677 }
5678 if (! mips_cprestore_valid)
5679 {
5680 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5681 /* Quiet this warning. */
5682 mips_cprestore_valid = 1;
5683 }
5684 if (mips_opts.noreorder)
5685 macro_build (NULL, "nop", "");
5686 expr1.X_add_number = mips_cprestore_offset;
5687 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
5688 mips_gp_register,
5689 mips_frame_reg,
5690 HAVE_64BIT_ADDRESSES);
5691 }
5692 }
5693 }
5694 else
5695 abort ();
5696
5697 break;
5698
5699 case M_LB_AB:
5700 s = "lb";
5701 goto ld;
5702 case M_LBU_AB:
5703 s = "lbu";
5704 goto ld;
5705 case M_LH_AB:
5706 s = "lh";
5707 goto ld;
5708 case M_LHU_AB:
5709 s = "lhu";
5710 goto ld;
5711 case M_LW_AB:
5712 s = "lw";
5713 goto ld;
5714 case M_LWC0_AB:
5715 s = "lwc0";
5716 /* Itbl support may require additional care here. */
5717 coproc = 1;
5718 goto ld;
5719 case M_LWC1_AB:
5720 s = "lwc1";
5721 /* Itbl support may require additional care here. */
5722 coproc = 1;
5723 goto ld;
5724 case M_LWC2_AB:
5725 s = "lwc2";
5726 /* Itbl support may require additional care here. */
5727 coproc = 1;
5728 goto ld;
5729 case M_LWC3_AB:
5730 s = "lwc3";
5731 /* Itbl support may require additional care here. */
5732 coproc = 1;
5733 goto ld;
5734 case M_LWL_AB:
5735 s = "lwl";
5736 lr = 1;
5737 goto ld;
5738 case M_LWR_AB:
5739 s = "lwr";
5740 lr = 1;
5741 goto ld;
5742 case M_LDC1_AB:
5743 if (mips_opts.arch == CPU_R4650)
5744 {
5745 as_bad (_("opcode not supported on this processor"));
5746 break;
5747 }
5748 s = "ldc1";
5749 /* Itbl support may require additional care here. */
5750 coproc = 1;
5751 goto ld;
5752 case M_LDC2_AB:
5753 s = "ldc2";
5754 /* Itbl support may require additional care here. */
5755 coproc = 1;
5756 goto ld;
5757 case M_LDC3_AB:
5758 s = "ldc3";
5759 /* Itbl support may require additional care here. */
5760 coproc = 1;
5761 goto ld;
5762 case M_LDL_AB:
5763 s = "ldl";
5764 lr = 1;
5765 goto ld;
5766 case M_LDR_AB:
5767 s = "ldr";
5768 lr = 1;
5769 goto ld;
5770 case M_LL_AB:
5771 s = "ll";
5772 goto ld;
5773 case M_LLD_AB:
5774 s = "lld";
5775 goto ld;
5776 case M_LWU_AB:
5777 s = "lwu";
5778 ld:
5779 if (breg == treg || coproc || lr)
5780 {
5781 tempreg = AT;
5782 used_at = 1;
5783 }
5784 else
5785 {
5786 tempreg = treg;
5787 }
5788 goto ld_st;
5789 case M_SB_AB:
5790 s = "sb";
5791 goto st;
5792 case M_SH_AB:
5793 s = "sh";
5794 goto st;
5795 case M_SW_AB:
5796 s = "sw";
5797 goto st;
5798 case M_SWC0_AB:
5799 s = "swc0";
5800 /* Itbl support may require additional care here. */
5801 coproc = 1;
5802 goto st;
5803 case M_SWC1_AB:
5804 s = "swc1";
5805 /* Itbl support may require additional care here. */
5806 coproc = 1;
5807 goto st;
5808 case M_SWC2_AB:
5809 s = "swc2";
5810 /* Itbl support may require additional care here. */
5811 coproc = 1;
5812 goto st;
5813 case M_SWC3_AB:
5814 s = "swc3";
5815 /* Itbl support may require additional care here. */
5816 coproc = 1;
5817 goto st;
5818 case M_SWL_AB:
5819 s = "swl";
5820 goto st;
5821 case M_SWR_AB:
5822 s = "swr";
5823 goto st;
5824 case M_SC_AB:
5825 s = "sc";
5826 goto st;
5827 case M_SCD_AB:
5828 s = "scd";
5829 goto st;
5830 case M_SDC1_AB:
5831 if (mips_opts.arch == CPU_R4650)
5832 {
5833 as_bad (_("opcode not supported on this processor"));
5834 break;
5835 }
5836 s = "sdc1";
5837 coproc = 1;
5838 /* Itbl support may require additional care here. */
5839 goto st;
5840 case M_SDC2_AB:
5841 s = "sdc2";
5842 /* Itbl support may require additional care here. */
5843 coproc = 1;
5844 goto st;
5845 case M_SDC3_AB:
5846 s = "sdc3";
5847 /* Itbl support may require additional care here. */
5848 coproc = 1;
5849 goto st;
5850 case M_SDL_AB:
5851 s = "sdl";
5852 goto st;
5853 case M_SDR_AB:
5854 s = "sdr";
5855 st:
5856 tempreg = AT;
5857 used_at = 1;
5858 ld_st:
5859 /* Itbl support may require additional care here. */
5860 if (mask == M_LWC1_AB
5861 || mask == M_SWC1_AB
5862 || mask == M_LDC1_AB
5863 || mask == M_SDC1_AB
5864 || mask == M_L_DAB
5865 || mask == M_S_DAB)
5866 fmt = "T,o(b)";
5867 else if (coproc)
5868 fmt = "E,o(b)";
5869 else
5870 fmt = "t,o(b)";
5871
5872 /* Sign-extending 32-bit constants makes their handling easier.
5873 The HAVE_64BIT_GPRS... part is due to the linux kernel hack
5874 described below. */
5875 if ((! HAVE_64BIT_ADDRESSES
5876 && (! HAVE_64BIT_GPRS && offset_expr.X_op == O_constant))
5877 && (offset_expr.X_op == O_constant)
5878 && ! ((offset_expr.X_add_number & ~((bfd_vma) 0x7fffffff))
5879 == ~((bfd_vma) 0x7fffffff)))
5880 {
5881 if (offset_expr.X_add_number & ~((bfd_vma) 0xffffffff))
5882 as_bad (_("constant too large"));
5883
5884 offset_expr.X_add_number = (((offset_expr.X_add_number & 0xffffffff)
5885 ^ 0x80000000) - 0x80000000);
5886 }
5887
5888 if (offset_expr.X_op != O_constant
5889 && offset_expr.X_op != O_symbol)
5890 {
5891 as_bad (_("expression too complex"));
5892 offset_expr.X_op = O_constant;
5893 }
5894
5895 /* A constant expression in PIC code can be handled just as it
5896 is in non PIC code. */
5897 if (mips_pic == NO_PIC
5898 || offset_expr.X_op == O_constant)
5899 {
5900 /* If this is a reference to a GP relative symbol, and there
5901 is no base register, we want
5902 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
5903 Otherwise, if there is no base register, we want
5904 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5905 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5906 If we have a constant, we need two instructions anyhow,
5907 so we always use the latter form.
5908
5909 If we have a base register, and this is a reference to a
5910 GP relative symbol, we want
5911 addu $tempreg,$breg,$gp
5912 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
5913 Otherwise we want
5914 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5915 addu $tempreg,$tempreg,$breg
5916 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5917 With a constant we always use the latter case.
5918
5919 With 64bit address space and no base register and $at usable,
5920 we want
5921 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5922 lui $at,<sym> (BFD_RELOC_HI16_S)
5923 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5924 dsll32 $tempreg,0
5925 daddu $tempreg,$at
5926 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5927 If we have a base register, we want
5928 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5929 lui $at,<sym> (BFD_RELOC_HI16_S)
5930 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5931 daddu $at,$breg
5932 dsll32 $tempreg,0
5933 daddu $tempreg,$at
5934 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5935
5936 Without $at we can't generate the optimal path for superscalar
5937 processors here since this would require two temporary registers.
5938 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5939 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5940 dsll $tempreg,16
5941 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5942 dsll $tempreg,16
5943 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5944 If we have a base register, we want
5945 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5946 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5947 dsll $tempreg,16
5948 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5949 dsll $tempreg,16
5950 daddu $tempreg,$tempreg,$breg
5951 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5952
5953 If we have 64-bit addresses, as an optimization, for
5954 addresses which are 32-bit constants (e.g. kseg0/kseg1
5955 addresses) we fall back to the 32-bit address generation
5956 mechanism since it is more efficient. Note that due to
5957 the signed offset used by memory operations, the 32-bit
5958 range is shifted down by 32768 here. This code should
5959 probably attempt to generate 64-bit constants more
5960 efficiently in general.
5961
5962 As an extension for architectures with 64-bit registers,
5963 we don't truncate 64-bit addresses given as literal
5964 constants down to 32 bits, to support existing practice
5965 in the mips64 Linux (the kernel), that compiles source
5966 files with -mabi=64, assembling them as o32 or n32 (with
5967 -Wa,-32 or -Wa,-n32). This is not beautiful, but since
5968 the whole kernel is loaded into a memory region that is
5969 addressable with sign-extended 32-bit addresses, it is
5970 wasteful to compute the upper 32 bits of every
5971 non-literal address, that takes more space and time.
5972 Some day this should probably be implemented as an
5973 assembler option, such that the kernel doesn't have to
5974 use such ugly hacks, even though it will still have to
5975 end up converting the binary to ELF32 for a number of
5976 platforms whose boot loaders don't support ELF64
5977 binaries. */
5978 if ((HAVE_64BIT_ADDRESSES
5979 && ! (offset_expr.X_op == O_constant
5980 && IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000)))
5981 || (HAVE_64BIT_GPRS
5982 && offset_expr.X_op == O_constant
5983 && ! IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000)))
5984 {
5985 /* ??? We don't provide a GP-relative alternative for
5986 these macros. It used not to be possible with the
5987 original relaxation code, but it could be done now. */
5988
5989 if (used_at == 0 && !mips_opts.noat)
5990 {
5991 macro_build (&offset_expr, "lui", "t,u", tempreg,
5992 BFD_RELOC_MIPS_HIGHEST);
5993 macro_build (&offset_expr, "lui", "t,u", AT,
5994 BFD_RELOC_HI16_S);
5995 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
5996 tempreg, BFD_RELOC_MIPS_HIGHER);
5997 if (breg != 0)
5998 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
5999 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
6000 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
6001 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
6002 tempreg);
6003 used_at = 1;
6004 }
6005 else
6006 {
6007 macro_build (&offset_expr, "lui", "t,u", tempreg,
6008 BFD_RELOC_MIPS_HIGHEST);
6009 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6010 tempreg, BFD_RELOC_MIPS_HIGHER);
6011 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6012 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6013 tempreg, BFD_RELOC_HI16_S);
6014 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6015 if (breg != 0)
6016 macro_build (NULL, "daddu", "d,v,t",
6017 tempreg, tempreg, breg);
6018 macro_build (&offset_expr, s, fmt, treg,
6019 BFD_RELOC_LO16, tempreg);
6020 }
6021 break;
6022 }
6023
6024 if (offset_expr.X_op == O_constant
6025 && ! IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000))
6026 as_bad (_("load/store address overflow (max 32 bits)"));
6027
6028 if (breg == 0)
6029 {
6030 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6031 && ! nopic_need_relax (offset_expr.X_add_symbol, 1))
6032 {
6033 relax_start (offset_expr.X_add_symbol);
6034 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
6035 mips_gp_register);
6036 relax_switch ();
6037 }
6038 macro_build_lui (&offset_expr, tempreg);
6039 macro_build (&offset_expr, s, fmt, treg,
6040 BFD_RELOC_LO16, tempreg);
6041 if (mips_relax.sequence)
6042 relax_end ();
6043 }
6044 else
6045 {
6046 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6047 && ! nopic_need_relax (offset_expr.X_add_symbol, 1))
6048 {
6049 relax_start (offset_expr.X_add_symbol);
6050 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6051 tempreg, breg, mips_gp_register);
6052 macro_build (&offset_expr, s, fmt, treg,
6053 BFD_RELOC_GPREL16, tempreg);
6054 relax_switch ();
6055 }
6056 macro_build_lui (&offset_expr, tempreg);
6057 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6058 tempreg, tempreg, breg);
6059 macro_build (&offset_expr, s, fmt, treg,
6060 BFD_RELOC_LO16, tempreg);
6061 if (mips_relax.sequence)
6062 relax_end ();
6063 }
6064 }
6065 else if (mips_pic == SVR4_PIC && ! mips_big_got)
6066 {
6067 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
6068
6069 /* If this is a reference to an external symbol, we want
6070 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6071 nop
6072 <op> $treg,0($tempreg)
6073 Otherwise we want
6074 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6075 nop
6076 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6077 <op> $treg,0($tempreg)
6078
6079 For NewABI, we want
6080 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6081 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
6082
6083 If there is a base register, we add it to $tempreg before
6084 the <op>. If there is a constant, we stick it in the
6085 <op> instruction. We don't handle constants larger than
6086 16 bits, because we have no way to load the upper 16 bits
6087 (actually, we could handle them for the subset of cases
6088 in which we are not using $at). */
6089 assert (offset_expr.X_op == O_symbol);
6090 if (HAVE_NEWABI)
6091 {
6092 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6093 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6094 if (breg != 0)
6095 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6096 tempreg, tempreg, breg);
6097 macro_build (&offset_expr, s, fmt, treg,
6098 BFD_RELOC_MIPS_GOT_OFST, tempreg);
6099 break;
6100 }
6101 expr1.X_add_number = offset_expr.X_add_number;
6102 offset_expr.X_add_number = 0;
6103 if (expr1.X_add_number < -0x8000
6104 || expr1.X_add_number >= 0x8000)
6105 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6106 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6107 lw_reloc_type, mips_gp_register);
6108 load_delay_nop ();
6109 relax_start (offset_expr.X_add_symbol);
6110 relax_switch ();
6111 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6112 tempreg, BFD_RELOC_LO16);
6113 relax_end ();
6114 if (breg != 0)
6115 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6116 tempreg, tempreg, breg);
6117 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6118 }
6119 else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
6120 {
6121 int gpdelay;
6122
6123 /* If this is a reference to an external symbol, we want
6124 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6125 addu $tempreg,$tempreg,$gp
6126 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6127 <op> $treg,0($tempreg)
6128 Otherwise we want
6129 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6130 nop
6131 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6132 <op> $treg,0($tempreg)
6133 If there is a base register, we add it to $tempreg before
6134 the <op>. If there is a constant, we stick it in the
6135 <op> instruction. We don't handle constants larger than
6136 16 bits, because we have no way to load the upper 16 bits
6137 (actually, we could handle them for the subset of cases
6138 in which we are not using $at). */
6139 assert (offset_expr.X_op == O_symbol);
6140 expr1.X_add_number = offset_expr.X_add_number;
6141 offset_expr.X_add_number = 0;
6142 if (expr1.X_add_number < -0x8000
6143 || expr1.X_add_number >= 0x8000)
6144 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6145 gpdelay = reg_needs_delay (mips_gp_register);
6146 relax_start (offset_expr.X_add_symbol);
6147 macro_build (&offset_expr, "lui", "t,u", tempreg,
6148 BFD_RELOC_MIPS_GOT_HI16);
6149 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6150 mips_gp_register);
6151 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6152 BFD_RELOC_MIPS_GOT_LO16, tempreg);
6153 relax_switch ();
6154 if (gpdelay)
6155 macro_build (NULL, "nop", "");
6156 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6157 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6158 load_delay_nop ();
6159 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6160 tempreg, BFD_RELOC_LO16);
6161 relax_end ();
6162
6163 if (breg != 0)
6164 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6165 tempreg, tempreg, breg);
6166 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6167 }
6168 else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
6169 {
6170 /* If this is a reference to an external symbol, we want
6171 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6172 add $tempreg,$tempreg,$gp
6173 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6174 <op> $treg,<ofst>($tempreg)
6175 Otherwise, for local symbols, we want:
6176 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6177 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
6178 assert (offset_expr.X_op == O_symbol);
6179 expr1.X_add_number = offset_expr.X_add_number;
6180 offset_expr.X_add_number = 0;
6181 if (expr1.X_add_number < -0x8000
6182 || expr1.X_add_number >= 0x8000)
6183 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6184 relax_start (offset_expr.X_add_symbol);
6185 macro_build (&offset_expr, "lui", "t,u", tempreg,
6186 BFD_RELOC_MIPS_GOT_HI16);
6187 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6188 mips_gp_register);
6189 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6190 BFD_RELOC_MIPS_GOT_LO16, tempreg);
6191 if (breg != 0)
6192 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6193 tempreg, tempreg, breg);
6194 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6195
6196 relax_switch ();
6197 offset_expr.X_add_number = expr1.X_add_number;
6198 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6199 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6200 if (breg != 0)
6201 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6202 tempreg, tempreg, breg);
6203 macro_build (&offset_expr, s, fmt, treg,
6204 BFD_RELOC_MIPS_GOT_OFST, tempreg);
6205 relax_end ();
6206 }
6207 else
6208 abort ();
6209
6210 break;
6211
6212 case M_LI:
6213 case M_LI_S:
6214 load_register (treg, &imm_expr, 0);
6215 break;
6216
6217 case M_DLI:
6218 load_register (treg, &imm_expr, 1);
6219 break;
6220
6221 case M_LI_SS:
6222 if (imm_expr.X_op == O_constant)
6223 {
6224 used_at = 1;
6225 load_register (AT, &imm_expr, 0);
6226 macro_build (NULL, "mtc1", "t,G", AT, treg);
6227 break;
6228 }
6229 else
6230 {
6231 assert (offset_expr.X_op == O_symbol
6232 && strcmp (segment_name (S_GET_SEGMENT
6233 (offset_expr.X_add_symbol)),
6234 ".lit4") == 0
6235 && offset_expr.X_add_number == 0);
6236 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
6237 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
6238 break;
6239 }
6240
6241 case M_LI_D:
6242 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6243 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6244 order 32 bits of the value and the low order 32 bits are either
6245 zero or in OFFSET_EXPR. */
6246 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6247 {
6248 if (HAVE_64BIT_GPRS)
6249 load_register (treg, &imm_expr, 1);
6250 else
6251 {
6252 int hreg, lreg;
6253
6254 if (target_big_endian)
6255 {
6256 hreg = treg;
6257 lreg = treg + 1;
6258 }
6259 else
6260 {
6261 hreg = treg + 1;
6262 lreg = treg;
6263 }
6264
6265 if (hreg <= 31)
6266 load_register (hreg, &imm_expr, 0);
6267 if (lreg <= 31)
6268 {
6269 if (offset_expr.X_op == O_absent)
6270 move_register (lreg, 0);
6271 else
6272 {
6273 assert (offset_expr.X_op == O_constant);
6274 load_register (lreg, &offset_expr, 0);
6275 }
6276 }
6277 }
6278 break;
6279 }
6280
6281 /* We know that sym is in the .rdata section. First we get the
6282 upper 16 bits of the address. */
6283 if (mips_pic == NO_PIC)
6284 {
6285 macro_build_lui (&offset_expr, AT);
6286 used_at = 1;
6287 }
6288 else if (mips_pic == SVR4_PIC)
6289 {
6290 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6291 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6292 used_at = 1;
6293 }
6294 else
6295 abort ();
6296
6297 /* Now we load the register(s). */
6298 if (HAVE_64BIT_GPRS)
6299 {
6300 used_at = 1;
6301 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6302 }
6303 else
6304 {
6305 used_at = 1;
6306 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6307 if (treg != RA)
6308 {
6309 /* FIXME: How in the world do we deal with the possible
6310 overflow here? */
6311 offset_expr.X_add_number += 4;
6312 macro_build (&offset_expr, "lw", "t,o(b)",
6313 treg + 1, BFD_RELOC_LO16, AT);
6314 }
6315 }
6316 break;
6317
6318 case M_LI_DD:
6319 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
6320 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
6321 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
6322 the value and the low order 32 bits are either zero or in
6323 OFFSET_EXPR. */
6324 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6325 {
6326 used_at = 1;
6327 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
6328 if (HAVE_64BIT_FPRS)
6329 {
6330 assert (HAVE_64BIT_GPRS);
6331 macro_build (NULL, "dmtc1", "t,S", AT, treg);
6332 }
6333 else
6334 {
6335 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
6336 if (offset_expr.X_op == O_absent)
6337 macro_build (NULL, "mtc1", "t,G", 0, treg);
6338 else
6339 {
6340 assert (offset_expr.X_op == O_constant);
6341 load_register (AT, &offset_expr, 0);
6342 macro_build (NULL, "mtc1", "t,G", AT, treg);
6343 }
6344 }
6345 break;
6346 }
6347
6348 assert (offset_expr.X_op == O_symbol
6349 && offset_expr.X_add_number == 0);
6350 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
6351 if (strcmp (s, ".lit8") == 0)
6352 {
6353 if (mips_opts.isa != ISA_MIPS1)
6354 {
6355 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
6356 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
6357 break;
6358 }
6359 breg = mips_gp_register;
6360 r = BFD_RELOC_MIPS_LITERAL;
6361 goto dob;
6362 }
6363 else
6364 {
6365 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
6366 used_at = 1;
6367 if (mips_pic == SVR4_PIC)
6368 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6369 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6370 else
6371 {
6372 /* FIXME: This won't work for a 64 bit address. */
6373 macro_build_lui (&offset_expr, AT);
6374 }
6375
6376 if (mips_opts.isa != ISA_MIPS1)
6377 {
6378 macro_build (&offset_expr, "ldc1", "T,o(b)",
6379 treg, BFD_RELOC_LO16, AT);
6380 break;
6381 }
6382 breg = AT;
6383 r = BFD_RELOC_LO16;
6384 goto dob;
6385 }
6386
6387 case M_L_DOB:
6388 if (mips_opts.arch == CPU_R4650)
6389 {
6390 as_bad (_("opcode not supported on this processor"));
6391 break;
6392 }
6393 /* Even on a big endian machine $fn comes before $fn+1. We have
6394 to adjust when loading from memory. */
6395 r = BFD_RELOC_LO16;
6396 dob:
6397 assert (mips_opts.isa == ISA_MIPS1);
6398 macro_build (&offset_expr, "lwc1", "T,o(b)",
6399 target_big_endian ? treg + 1 : treg, r, breg);
6400 /* FIXME: A possible overflow which I don't know how to deal
6401 with. */
6402 offset_expr.X_add_number += 4;
6403 macro_build (&offset_expr, "lwc1", "T,o(b)",
6404 target_big_endian ? treg : treg + 1, r, breg);
6405 break;
6406
6407 case M_L_DAB:
6408 /*
6409 * The MIPS assembler seems to check for X_add_number not
6410 * being double aligned and generating:
6411 * lui at,%hi(foo+1)
6412 * addu at,at,v1
6413 * addiu at,at,%lo(foo+1)
6414 * lwc1 f2,0(at)
6415 * lwc1 f3,4(at)
6416 * But, the resulting address is the same after relocation so why
6417 * generate the extra instruction?
6418 */
6419 if (mips_opts.arch == CPU_R4650)
6420 {
6421 as_bad (_("opcode not supported on this processor"));
6422 break;
6423 }
6424 /* Itbl support may require additional care here. */
6425 coproc = 1;
6426 if (mips_opts.isa != ISA_MIPS1)
6427 {
6428 s = "ldc1";
6429 goto ld;
6430 }
6431
6432 s = "lwc1";
6433 fmt = "T,o(b)";
6434 goto ldd_std;
6435
6436 case M_S_DAB:
6437 if (mips_opts.arch == CPU_R4650)
6438 {
6439 as_bad (_("opcode not supported on this processor"));
6440 break;
6441 }
6442
6443 if (mips_opts.isa != ISA_MIPS1)
6444 {
6445 s = "sdc1";
6446 goto st;
6447 }
6448
6449 s = "swc1";
6450 fmt = "T,o(b)";
6451 /* Itbl support may require additional care here. */
6452 coproc = 1;
6453 goto ldd_std;
6454
6455 case M_LD_AB:
6456 if (HAVE_64BIT_GPRS)
6457 {
6458 s = "ld";
6459 goto ld;
6460 }
6461
6462 s = "lw";
6463 fmt = "t,o(b)";
6464 goto ldd_std;
6465
6466 case M_SD_AB:
6467 if (HAVE_64BIT_GPRS)
6468 {
6469 s = "sd";
6470 goto st;
6471 }
6472
6473 s = "sw";
6474 fmt = "t,o(b)";
6475
6476 ldd_std:
6477 if (offset_expr.X_op != O_symbol
6478 && offset_expr.X_op != O_constant)
6479 {
6480 as_bad (_("expression too complex"));
6481 offset_expr.X_op = O_constant;
6482 }
6483
6484 /* Even on a big endian machine $fn comes before $fn+1. We have
6485 to adjust when loading from memory. We set coproc if we must
6486 load $fn+1 first. */
6487 /* Itbl support may require additional care here. */
6488 if (! target_big_endian)
6489 coproc = 0;
6490
6491 if (mips_pic == NO_PIC
6492 || offset_expr.X_op == O_constant)
6493 {
6494 /* If this is a reference to a GP relative symbol, we want
6495 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6496 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
6497 If we have a base register, we use this
6498 addu $at,$breg,$gp
6499 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6500 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
6501 If this is not a GP relative symbol, we want
6502 lui $at,<sym> (BFD_RELOC_HI16_S)
6503 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6504 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6505 If there is a base register, we add it to $at after the
6506 lui instruction. If there is a constant, we always use
6507 the last case. */
6508 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
6509 || nopic_need_relax (offset_expr.X_add_symbol, 1))
6510 used_at = 1;
6511 else
6512 {
6513 relax_start (offset_expr.X_add_symbol);
6514 if (breg == 0)
6515 {
6516 tempreg = mips_gp_register;
6517 }
6518 else
6519 {
6520 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6521 AT, breg, mips_gp_register);
6522 tempreg = AT;
6523 used_at = 1;
6524 }
6525
6526 /* Itbl support may require additional care here. */
6527 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6528 BFD_RELOC_GPREL16, tempreg);
6529 offset_expr.X_add_number += 4;
6530
6531 /* Set mips_optimize to 2 to avoid inserting an
6532 undesired nop. */
6533 hold_mips_optimize = mips_optimize;
6534 mips_optimize = 2;
6535 /* Itbl support may require additional care here. */
6536 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6537 BFD_RELOC_GPREL16, tempreg);
6538 mips_optimize = hold_mips_optimize;
6539
6540 relax_switch ();
6541
6542 /* We just generated two relocs. When tc_gen_reloc
6543 handles this case, it will skip the first reloc and
6544 handle the second. The second reloc already has an
6545 extra addend of 4, which we added above. We must
6546 subtract it out, and then subtract another 4 to make
6547 the first reloc come out right. The second reloc
6548 will come out right because we are going to add 4 to
6549 offset_expr when we build its instruction below.
6550
6551 If we have a symbol, then we don't want to include
6552 the offset, because it will wind up being included
6553 when we generate the reloc. */
6554
6555 if (offset_expr.X_op == O_constant)
6556 offset_expr.X_add_number -= 8;
6557 else
6558 {
6559 offset_expr.X_add_number = -4;
6560 offset_expr.X_op = O_constant;
6561 }
6562 }
6563 used_at = 1;
6564 macro_build_lui (&offset_expr, AT);
6565 if (breg != 0)
6566 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6567 /* Itbl support may require additional care here. */
6568 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6569 BFD_RELOC_LO16, AT);
6570 /* FIXME: How do we handle overflow here? */
6571 offset_expr.X_add_number += 4;
6572 /* Itbl support may require additional care here. */
6573 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6574 BFD_RELOC_LO16, AT);
6575 if (mips_relax.sequence)
6576 relax_end ();
6577 }
6578 else if (mips_pic == SVR4_PIC && ! mips_big_got)
6579 {
6580 /* If this is a reference to an external symbol, we want
6581 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6582 nop
6583 <op> $treg,0($at)
6584 <op> $treg+1,4($at)
6585 Otherwise we want
6586 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6587 nop
6588 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6589 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6590 If there is a base register we add it to $at before the
6591 lwc1 instructions. If there is a constant we include it
6592 in the lwc1 instructions. */
6593 used_at = 1;
6594 expr1.X_add_number = offset_expr.X_add_number;
6595 if (expr1.X_add_number < -0x8000
6596 || expr1.X_add_number >= 0x8000 - 4)
6597 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6598 load_got_offset (AT, &offset_expr);
6599 load_delay_nop ();
6600 if (breg != 0)
6601 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6602
6603 /* Set mips_optimize to 2 to avoid inserting an undesired
6604 nop. */
6605 hold_mips_optimize = mips_optimize;
6606 mips_optimize = 2;
6607
6608 /* Itbl support may require additional care here. */
6609 relax_start (offset_expr.X_add_symbol);
6610 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
6611 BFD_RELOC_LO16, AT);
6612 expr1.X_add_number += 4;
6613 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
6614 BFD_RELOC_LO16, AT);
6615 relax_switch ();
6616 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6617 BFD_RELOC_LO16, AT);
6618 offset_expr.X_add_number += 4;
6619 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6620 BFD_RELOC_LO16, AT);
6621 relax_end ();
6622
6623 mips_optimize = hold_mips_optimize;
6624 }
6625 else if (mips_pic == SVR4_PIC)
6626 {
6627 int gpdelay;
6628
6629 /* If this is a reference to an external symbol, we want
6630 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6631 addu $at,$at,$gp
6632 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
6633 nop
6634 <op> $treg,0($at)
6635 <op> $treg+1,4($at)
6636 Otherwise we want
6637 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6638 nop
6639 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6640 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6641 If there is a base register we add it to $at before the
6642 lwc1 instructions. If there is a constant we include it
6643 in the lwc1 instructions. */
6644 used_at = 1;
6645 expr1.X_add_number = offset_expr.X_add_number;
6646 offset_expr.X_add_number = 0;
6647 if (expr1.X_add_number < -0x8000
6648 || expr1.X_add_number >= 0x8000 - 4)
6649 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6650 gpdelay = reg_needs_delay (mips_gp_register);
6651 relax_start (offset_expr.X_add_symbol);
6652 macro_build (&offset_expr, "lui", "t,u",
6653 AT, BFD_RELOC_MIPS_GOT_HI16);
6654 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6655 AT, AT, mips_gp_register);
6656 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6657 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
6658 load_delay_nop ();
6659 if (breg != 0)
6660 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6661 /* Itbl support may require additional care here. */
6662 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
6663 BFD_RELOC_LO16, AT);
6664 expr1.X_add_number += 4;
6665
6666 /* Set mips_optimize to 2 to avoid inserting an undesired
6667 nop. */
6668 hold_mips_optimize = mips_optimize;
6669 mips_optimize = 2;
6670 /* Itbl support may require additional care here. */
6671 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
6672 BFD_RELOC_LO16, AT);
6673 mips_optimize = hold_mips_optimize;
6674 expr1.X_add_number -= 4;
6675
6676 relax_switch ();
6677 offset_expr.X_add_number = expr1.X_add_number;
6678 if (gpdelay)
6679 macro_build (NULL, "nop", "");
6680 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6681 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6682 load_delay_nop ();
6683 if (breg != 0)
6684 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6685 /* Itbl support may require additional care here. */
6686 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6687 BFD_RELOC_LO16, AT);
6688 offset_expr.X_add_number += 4;
6689
6690 /* Set mips_optimize to 2 to avoid inserting an undesired
6691 nop. */
6692 hold_mips_optimize = mips_optimize;
6693 mips_optimize = 2;
6694 /* Itbl support may require additional care here. */
6695 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6696 BFD_RELOC_LO16, AT);
6697 mips_optimize = hold_mips_optimize;
6698 relax_end ();
6699 }
6700 else
6701 abort ();
6702
6703 break;
6704
6705 case M_LD_OB:
6706 s = "lw";
6707 goto sd_ob;
6708 case M_SD_OB:
6709 s = "sw";
6710 sd_ob:
6711 assert (HAVE_32BIT_ADDRESSES);
6712 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
6713 offset_expr.X_add_number += 4;
6714 macro_build (&offset_expr, s, "t,o(b)", treg + 1, BFD_RELOC_LO16, breg);
6715 break;
6716
6717 /* New code added to support COPZ instructions.
6718 This code builds table entries out of the macros in mip_opcodes.
6719 R4000 uses interlocks to handle coproc delays.
6720 Other chips (like the R3000) require nops to be inserted for delays.
6721
6722 FIXME: Currently, we require that the user handle delays.
6723 In order to fill delay slots for non-interlocked chips,
6724 we must have a way to specify delays based on the coprocessor.
6725 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
6726 What are the side-effects of the cop instruction?
6727 What cache support might we have and what are its effects?
6728 Both coprocessor & memory require delays. how long???
6729 What registers are read/set/modified?
6730
6731 If an itbl is provided to interpret cop instructions,
6732 this knowledge can be encoded in the itbl spec. */
6733
6734 case M_COP0:
6735 s = "c0";
6736 goto copz;
6737 case M_COP1:
6738 s = "c1";
6739 goto copz;
6740 case M_COP2:
6741 s = "c2";
6742 goto copz;
6743 case M_COP3:
6744 s = "c3";
6745 copz:
6746 /* For now we just do C (same as Cz). The parameter will be
6747 stored in insn_opcode by mips_ip. */
6748 macro_build (NULL, s, "C", ip->insn_opcode);
6749 break;
6750
6751 case M_MOVE:
6752 move_register (dreg, sreg);
6753 break;
6754
6755 #ifdef LOSING_COMPILER
6756 default:
6757 /* Try and see if this is a new itbl instruction.
6758 This code builds table entries out of the macros in mip_opcodes.
6759 FIXME: For now we just assemble the expression and pass it's
6760 value along as a 32-bit immediate.
6761 We may want to have the assembler assemble this value,
6762 so that we gain the assembler's knowledge of delay slots,
6763 symbols, etc.
6764 Would it be more efficient to use mask (id) here? */
6765 if (itbl_have_entries
6766 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
6767 {
6768 s = ip->insn_mo->name;
6769 s2 = "cop3";
6770 coproc = ITBL_DECODE_PNUM (immed_expr);;
6771 macro_build (&immed_expr, s, "C");
6772 break;
6773 }
6774 macro2 (ip);
6775 break;
6776 }
6777 if (mips_opts.noat && used_at)
6778 as_bad (_("Macro used $at after \".set noat\""));
6779 }
6780
6781 static void
6782 macro2 (struct mips_cl_insn *ip)
6783 {
6784 register int treg, sreg, dreg, breg;
6785 int tempreg;
6786 int mask;
6787 int used_at;
6788 expressionS expr1;
6789 const char *s;
6790 const char *s2;
6791 const char *fmt;
6792 int likely = 0;
6793 int dbl = 0;
6794 int coproc = 0;
6795 int lr = 0;
6796 int imm = 0;
6797 int off;
6798 offsetT maxnum;
6799 bfd_reloc_code_real_type r;
6800
6801 treg = (ip->insn_opcode >> 16) & 0x1f;
6802 dreg = (ip->insn_opcode >> 11) & 0x1f;
6803 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
6804 mask = ip->insn_mo->mask;
6805
6806 expr1.X_op = O_constant;
6807 expr1.X_op_symbol = NULL;
6808 expr1.X_add_symbol = NULL;
6809 expr1.X_add_number = 1;
6810
6811 switch (mask)
6812 {
6813 #endif /* LOSING_COMPILER */
6814
6815 case M_DMUL:
6816 dbl = 1;
6817 case M_MUL:
6818 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
6819 macro_build (NULL, "mflo", "d", dreg);
6820 break;
6821
6822 case M_DMUL_I:
6823 dbl = 1;
6824 case M_MUL_I:
6825 /* The MIPS assembler some times generates shifts and adds. I'm
6826 not trying to be that fancy. GCC should do this for us
6827 anyway. */
6828 used_at = 1;
6829 load_register (AT, &imm_expr, dbl);
6830 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
6831 macro_build (NULL, "mflo", "d", dreg);
6832 break;
6833
6834 case M_DMULO_I:
6835 dbl = 1;
6836 case M_MULO_I:
6837 imm = 1;
6838 goto do_mulo;
6839
6840 case M_DMULO:
6841 dbl = 1;
6842 case M_MULO:
6843 do_mulo:
6844 mips_emit_delays (TRUE);
6845 ++mips_opts.noreorder;
6846 mips_any_noreorder = 1;
6847 used_at = 1;
6848 if (imm)
6849 load_register (AT, &imm_expr, dbl);
6850 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
6851 macro_build (NULL, "mflo", "d", dreg);
6852 macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
6853 macro_build (NULL, "mfhi", "d", AT);
6854 if (mips_trap)
6855 macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
6856 else
6857 {
6858 expr1.X_add_number = 8;
6859 macro_build (&expr1, "beq", "s,t,p", dreg, AT);
6860 macro_build (NULL, "nop", "", 0);
6861 macro_build (NULL, "break", "c", 6);
6862 }
6863 --mips_opts.noreorder;
6864 macro_build (NULL, "mflo", "d", dreg);
6865 break;
6866
6867 case M_DMULOU_I:
6868 dbl = 1;
6869 case M_MULOU_I:
6870 imm = 1;
6871 goto do_mulou;
6872
6873 case M_DMULOU:
6874 dbl = 1;
6875 case M_MULOU:
6876 do_mulou:
6877 mips_emit_delays (TRUE);
6878 ++mips_opts.noreorder;
6879 mips_any_noreorder = 1;
6880 used_at = 1;
6881 if (imm)
6882 load_register (AT, &imm_expr, dbl);
6883 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
6884 sreg, imm ? AT : treg);
6885 macro_build (NULL, "mfhi", "d", AT);
6886 macro_build (NULL, "mflo", "d", dreg);
6887 if (mips_trap)
6888 macro_build (NULL, "tne", "s,t,q", AT, 0, 6);
6889 else
6890 {
6891 expr1.X_add_number = 8;
6892 macro_build (&expr1, "beq", "s,t,p", AT, 0);
6893 macro_build (NULL, "nop", "", 0);
6894 macro_build (NULL, "break", "c", 6);
6895 }
6896 --mips_opts.noreorder;
6897 break;
6898
6899 case M_DROL:
6900 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6901 {
6902 if (dreg == sreg)
6903 {
6904 tempreg = AT;
6905 used_at = 1;
6906 }
6907 else
6908 {
6909 tempreg = dreg;
6910 }
6911 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
6912 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
6913 break;
6914 }
6915 used_at = 1;
6916 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
6917 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
6918 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
6919 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6920 break;
6921
6922 case M_ROL:
6923 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
6924 {
6925 if (dreg == sreg)
6926 {
6927 tempreg = AT;
6928 used_at = 1;
6929 }
6930 else
6931 {
6932 tempreg = dreg;
6933 }
6934 macro_build (NULL, "negu", "d,w", tempreg, treg);
6935 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
6936 break;
6937 }
6938 used_at = 1;
6939 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
6940 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
6941 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
6942 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6943 break;
6944
6945 case M_DROL_I:
6946 {
6947 unsigned int rot;
6948 char *l, *r;
6949
6950 if (imm_expr.X_op != O_constant)
6951 as_bad (_("Improper rotate count"));
6952 rot = imm_expr.X_add_number & 0x3f;
6953 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6954 {
6955 rot = (64 - rot) & 0x3f;
6956 if (rot >= 32)
6957 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
6958 else
6959 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
6960 break;
6961 }
6962 if (rot == 0)
6963 {
6964 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
6965 break;
6966 }
6967 l = (rot < 0x20) ? "dsll" : "dsll32";
6968 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
6969 rot &= 0x1f;
6970 used_at = 1;
6971 macro_build (NULL, l, "d,w,<", AT, sreg, rot);
6972 macro_build (NULL, r, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6973 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6974 }
6975 break;
6976
6977 case M_ROL_I:
6978 {
6979 unsigned int rot;
6980
6981 if (imm_expr.X_op != O_constant)
6982 as_bad (_("Improper rotate count"));
6983 rot = imm_expr.X_add_number & 0x1f;
6984 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
6985 {
6986 macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
6987 break;
6988 }
6989 if (rot == 0)
6990 {
6991 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
6992 break;
6993 }
6994 used_at = 1;
6995 macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
6996 macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6997 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6998 }
6999 break;
7000
7001 case M_DROR:
7002 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7003 {
7004 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
7005 break;
7006 }
7007 used_at = 1;
7008 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
7009 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
7010 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
7011 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7012 break;
7013
7014 case M_ROR:
7015 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7016 {
7017 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
7018 break;
7019 }
7020 used_at = 1;
7021 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
7022 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
7023 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
7024 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7025 break;
7026
7027 case M_DROR_I:
7028 {
7029 unsigned int rot;
7030 char *l, *r;
7031
7032 if (imm_expr.X_op != O_constant)
7033 as_bad (_("Improper rotate count"));
7034 rot = imm_expr.X_add_number & 0x3f;
7035 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7036 {
7037 if (rot >= 32)
7038 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
7039 else
7040 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
7041 break;
7042 }
7043 if (rot == 0)
7044 {
7045 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
7046 break;
7047 }
7048 r = (rot < 0x20) ? "dsrl" : "dsrl32";
7049 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
7050 rot &= 0x1f;
7051 used_at = 1;
7052 macro_build (NULL, r, "d,w,<", AT, sreg, rot);
7053 macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7054 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7055 }
7056 break;
7057
7058 case M_ROR_I:
7059 {
7060 unsigned int rot;
7061
7062 if (imm_expr.X_op != O_constant)
7063 as_bad (_("Improper rotate count"));
7064 rot = imm_expr.X_add_number & 0x1f;
7065 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7066 {
7067 macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
7068 break;
7069 }
7070 if (rot == 0)
7071 {
7072 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
7073 break;
7074 }
7075 used_at = 1;
7076 macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
7077 macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7078 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7079 }
7080 break;
7081
7082 case M_S_DOB:
7083 if (mips_opts.arch == CPU_R4650)
7084 {
7085 as_bad (_("opcode not supported on this processor"));
7086 break;
7087 }
7088 assert (mips_opts.isa == ISA_MIPS1);
7089 /* Even on a big endian machine $fn comes before $fn+1. We have
7090 to adjust when storing to memory. */
7091 macro_build (&offset_expr, "swc1", "T,o(b)",
7092 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
7093 offset_expr.X_add_number += 4;
7094 macro_build (&offset_expr, "swc1", "T,o(b)",
7095 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
7096 break;
7097
7098 case M_SEQ:
7099 if (sreg == 0)
7100 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
7101 else if (treg == 0)
7102 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7103 else
7104 {
7105 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7106 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7107 }
7108 break;
7109
7110 case M_SEQ_I:
7111 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7112 {
7113 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7114 break;
7115 }
7116 if (sreg == 0)
7117 {
7118 as_warn (_("Instruction %s: result is always false"),
7119 ip->insn_mo->name);
7120 move_register (dreg, 0);
7121 break;
7122 }
7123 if (imm_expr.X_op == O_constant
7124 && imm_expr.X_add_number >= 0
7125 && imm_expr.X_add_number < 0x10000)
7126 {
7127 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
7128 }
7129 else if (imm_expr.X_op == O_constant
7130 && imm_expr.X_add_number > -0x8000
7131 && imm_expr.X_add_number < 0)
7132 {
7133 imm_expr.X_add_number = -imm_expr.X_add_number;
7134 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
7135 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7136 }
7137 else
7138 {
7139 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7140 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
7141 used_at = 1;
7142 }
7143 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7144 break;
7145
7146 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
7147 s = "slt";
7148 goto sge;
7149 case M_SGEU:
7150 s = "sltu";
7151 sge:
7152 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
7153 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7154 break;
7155
7156 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
7157 case M_SGEU_I:
7158 if (imm_expr.X_op == O_constant
7159 && imm_expr.X_add_number >= -0x8000
7160 && imm_expr.X_add_number < 0x8000)
7161 {
7162 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
7163 dreg, sreg, BFD_RELOC_LO16);
7164 }
7165 else
7166 {
7167 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7168 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
7169 dreg, sreg, AT);
7170 used_at = 1;
7171 }
7172 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7173 break;
7174
7175 case M_SGT: /* sreg > treg <==> treg < sreg */
7176 s = "slt";
7177 goto sgt;
7178 case M_SGTU:
7179 s = "sltu";
7180 sgt:
7181 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7182 break;
7183
7184 case M_SGT_I: /* sreg > I <==> I < sreg */
7185 s = "slt";
7186 goto sgti;
7187 case M_SGTU_I:
7188 s = "sltu";
7189 sgti:
7190 used_at = 1;
7191 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7192 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7193 break;
7194
7195 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
7196 s = "slt";
7197 goto sle;
7198 case M_SLEU:
7199 s = "sltu";
7200 sle:
7201 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7202 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7203 break;
7204
7205 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
7206 s = "slt";
7207 goto slei;
7208 case M_SLEU_I:
7209 s = "sltu";
7210 slei:
7211 used_at = 1;
7212 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7213 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7214 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7215 break;
7216
7217 case M_SLT_I:
7218 if (imm_expr.X_op == O_constant
7219 && imm_expr.X_add_number >= -0x8000
7220 && imm_expr.X_add_number < 0x8000)
7221 {
7222 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7223 break;
7224 }
7225 used_at = 1;
7226 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7227 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
7228 break;
7229
7230 case M_SLTU_I:
7231 if (imm_expr.X_op == O_constant
7232 && imm_expr.X_add_number >= -0x8000
7233 && imm_expr.X_add_number < 0x8000)
7234 {
7235 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
7236 BFD_RELOC_LO16);
7237 break;
7238 }
7239 used_at = 1;
7240 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7241 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
7242 break;
7243
7244 case M_SNE:
7245 if (sreg == 0)
7246 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
7247 else if (treg == 0)
7248 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
7249 else
7250 {
7251 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7252 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
7253 }
7254 break;
7255
7256 case M_SNE_I:
7257 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7258 {
7259 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
7260 break;
7261 }
7262 if (sreg == 0)
7263 {
7264 as_warn (_("Instruction %s: result is always true"),
7265 ip->insn_mo->name);
7266 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
7267 dreg, 0, BFD_RELOC_LO16);
7268 break;
7269 }
7270 if (imm_expr.X_op == O_constant
7271 && imm_expr.X_add_number >= 0
7272 && imm_expr.X_add_number < 0x10000)
7273 {
7274 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
7275 }
7276 else if (imm_expr.X_op == O_constant
7277 && imm_expr.X_add_number > -0x8000
7278 && imm_expr.X_add_number < 0)
7279 {
7280 imm_expr.X_add_number = -imm_expr.X_add_number;
7281 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
7282 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7283 }
7284 else
7285 {
7286 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7287 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
7288 used_at = 1;
7289 }
7290 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
7291 break;
7292
7293 case M_DSUB_I:
7294 dbl = 1;
7295 case M_SUB_I:
7296 if (imm_expr.X_op == O_constant
7297 && imm_expr.X_add_number > -0x8000
7298 && imm_expr.X_add_number <= 0x8000)
7299 {
7300 imm_expr.X_add_number = -imm_expr.X_add_number;
7301 macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
7302 dreg, sreg, BFD_RELOC_LO16);
7303 break;
7304 }
7305 used_at = 1;
7306 load_register (AT, &imm_expr, dbl);
7307 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
7308 break;
7309
7310 case M_DSUBU_I:
7311 dbl = 1;
7312 case M_SUBU_I:
7313 if (imm_expr.X_op == O_constant
7314 && imm_expr.X_add_number > -0x8000
7315 && imm_expr.X_add_number <= 0x8000)
7316 {
7317 imm_expr.X_add_number = -imm_expr.X_add_number;
7318 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
7319 dreg, sreg, BFD_RELOC_LO16);
7320 break;
7321 }
7322 used_at = 1;
7323 load_register (AT, &imm_expr, dbl);
7324 macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
7325 break;
7326
7327 case M_TEQ_I:
7328 s = "teq";
7329 goto trap;
7330 case M_TGE_I:
7331 s = "tge";
7332 goto trap;
7333 case M_TGEU_I:
7334 s = "tgeu";
7335 goto trap;
7336 case M_TLT_I:
7337 s = "tlt";
7338 goto trap;
7339 case M_TLTU_I:
7340 s = "tltu";
7341 goto trap;
7342 case M_TNE_I:
7343 s = "tne";
7344 trap:
7345 used_at = 1;
7346 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7347 macro_build (NULL, s, "s,t", sreg, AT);
7348 break;
7349
7350 case M_TRUNCWS:
7351 case M_TRUNCWD:
7352 assert (mips_opts.isa == ISA_MIPS1);
7353 used_at = 1;
7354 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
7355 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
7356
7357 /*
7358 * Is the double cfc1 instruction a bug in the mips assembler;
7359 * or is there a reason for it?
7360 */
7361 mips_emit_delays (TRUE);
7362 ++mips_opts.noreorder;
7363 mips_any_noreorder = 1;
7364 macro_build (NULL, "cfc1", "t,G", treg, RA);
7365 macro_build (NULL, "cfc1", "t,G", treg, RA);
7366 macro_build (NULL, "nop", "");
7367 expr1.X_add_number = 3;
7368 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
7369 expr1.X_add_number = 2;
7370 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
7371 macro_build (NULL, "ctc1", "t,G", AT, RA);
7372 macro_build (NULL, "nop", "");
7373 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
7374 dreg, sreg);
7375 macro_build (NULL, "ctc1", "t,G", treg, RA);
7376 macro_build (NULL, "nop", "");
7377 --mips_opts.noreorder;
7378 break;
7379
7380 case M_ULH:
7381 s = "lb";
7382 goto ulh;
7383 case M_ULHU:
7384 s = "lbu";
7385 ulh:
7386 used_at = 1;
7387 if (offset_expr.X_add_number >= 0x7fff)
7388 as_bad (_("operand overflow"));
7389 if (! target_big_endian)
7390 ++offset_expr.X_add_number;
7391 macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
7392 if (! target_big_endian)
7393 --offset_expr.X_add_number;
7394 else
7395 ++offset_expr.X_add_number;
7396 macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
7397 macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
7398 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7399 break;
7400
7401 case M_ULD:
7402 s = "ldl";
7403 s2 = "ldr";
7404 off = 7;
7405 goto ulw;
7406 case M_ULW:
7407 s = "lwl";
7408 s2 = "lwr";
7409 off = 3;
7410 ulw:
7411 if (offset_expr.X_add_number >= 0x8000 - off)
7412 as_bad (_("operand overflow"));
7413 if (treg != breg)
7414 tempreg = treg;
7415 else
7416 {
7417 used_at = 1;
7418 tempreg = AT;
7419 }
7420 if (! target_big_endian)
7421 offset_expr.X_add_number += off;
7422 macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
7423 if (! target_big_endian)
7424 offset_expr.X_add_number -= off;
7425 else
7426 offset_expr.X_add_number += off;
7427 macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
7428
7429 /* If necessary, move the result in tempreg the final destination. */
7430 if (treg == tempreg)
7431 break;
7432 /* Protect second load's delay slot. */
7433 load_delay_nop ();
7434 move_register (treg, tempreg);
7435 break;
7436
7437 case M_ULD_A:
7438 s = "ldl";
7439 s2 = "ldr";
7440 off = 7;
7441 goto ulwa;
7442 case M_ULW_A:
7443 s = "lwl";
7444 s2 = "lwr";
7445 off = 3;
7446 ulwa:
7447 used_at = 1;
7448 load_address (AT, &offset_expr, &used_at);
7449 if (breg != 0)
7450 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7451 if (! target_big_endian)
7452 expr1.X_add_number = off;
7453 else
7454 expr1.X_add_number = 0;
7455 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7456 if (! target_big_endian)
7457 expr1.X_add_number = 0;
7458 else
7459 expr1.X_add_number = off;
7460 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7461 break;
7462
7463 case M_ULH_A:
7464 case M_ULHU_A:
7465 used_at = 1;
7466 load_address (AT, &offset_expr, &used_at);
7467 if (breg != 0)
7468 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7469 if (target_big_endian)
7470 expr1.X_add_number = 0;
7471 macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
7472 treg, BFD_RELOC_LO16, AT);
7473 if (target_big_endian)
7474 expr1.X_add_number = 1;
7475 else
7476 expr1.X_add_number = 0;
7477 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
7478 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
7479 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7480 break;
7481
7482 case M_USH:
7483 used_at = 1;
7484 if (offset_expr.X_add_number >= 0x7fff)
7485 as_bad (_("operand overflow"));
7486 if (target_big_endian)
7487 ++offset_expr.X_add_number;
7488 macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
7489 macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
7490 if (target_big_endian)
7491 --offset_expr.X_add_number;
7492 else
7493 ++offset_expr.X_add_number;
7494 macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
7495 break;
7496
7497 case M_USD:
7498 s = "sdl";
7499 s2 = "sdr";
7500 off = 7;
7501 goto usw;
7502 case M_USW:
7503 s = "swl";
7504 s2 = "swr";
7505 off = 3;
7506 usw:
7507 if (offset_expr.X_add_number >= 0x8000 - off)
7508 as_bad (_("operand overflow"));
7509 if (! target_big_endian)
7510 offset_expr.X_add_number += off;
7511 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
7512 if (! target_big_endian)
7513 offset_expr.X_add_number -= off;
7514 else
7515 offset_expr.X_add_number += off;
7516 macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
7517 break;
7518
7519 case M_USD_A:
7520 s = "sdl";
7521 s2 = "sdr";
7522 off = 7;
7523 goto uswa;
7524 case M_USW_A:
7525 s = "swl";
7526 s2 = "swr";
7527 off = 3;
7528 uswa:
7529 used_at = 1;
7530 load_address (AT, &offset_expr, &used_at);
7531 if (breg != 0)
7532 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7533 if (! target_big_endian)
7534 expr1.X_add_number = off;
7535 else
7536 expr1.X_add_number = 0;
7537 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7538 if (! target_big_endian)
7539 expr1.X_add_number = 0;
7540 else
7541 expr1.X_add_number = off;
7542 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7543 break;
7544
7545 case M_USH_A:
7546 used_at = 1;
7547 load_address (AT, &offset_expr, &used_at);
7548 if (breg != 0)
7549 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7550 if (! target_big_endian)
7551 expr1.X_add_number = 0;
7552 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7553 macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
7554 if (! target_big_endian)
7555 expr1.X_add_number = 1;
7556 else
7557 expr1.X_add_number = 0;
7558 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7559 if (! target_big_endian)
7560 expr1.X_add_number = 0;
7561 else
7562 expr1.X_add_number = 1;
7563 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
7564 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
7565 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7566 break;
7567
7568 default:
7569 /* FIXME: Check if this is one of the itbl macros, since they
7570 are added dynamically. */
7571 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
7572 break;
7573 }
7574 if (mips_opts.noat && used_at)
7575 as_bad (_("Macro used $at after \".set noat\""));
7576 }
7577
7578 /* Implement macros in mips16 mode. */
7579
7580 static void
7581 mips16_macro (struct mips_cl_insn *ip)
7582 {
7583 int mask;
7584 int xreg, yreg, zreg, tmp;
7585 expressionS expr1;
7586 int dbl;
7587 const char *s, *s2, *s3;
7588
7589 mask = ip->insn_mo->mask;
7590
7591 xreg = (ip->insn_opcode >> MIPS16OP_SH_RX) & MIPS16OP_MASK_RX;
7592 yreg = (ip->insn_opcode >> MIPS16OP_SH_RY) & MIPS16OP_MASK_RY;
7593 zreg = (ip->insn_opcode >> MIPS16OP_SH_RZ) & MIPS16OP_MASK_RZ;
7594
7595 expr1.X_op = O_constant;
7596 expr1.X_op_symbol = NULL;
7597 expr1.X_add_symbol = NULL;
7598 expr1.X_add_number = 1;
7599
7600 dbl = 0;
7601
7602 switch (mask)
7603 {
7604 default:
7605 internalError ();
7606
7607 case M_DDIV_3:
7608 dbl = 1;
7609 case M_DIV_3:
7610 s = "mflo";
7611 goto do_div3;
7612 case M_DREM_3:
7613 dbl = 1;
7614 case M_REM_3:
7615 s = "mfhi";
7616 do_div3:
7617 mips_emit_delays (TRUE);
7618 ++mips_opts.noreorder;
7619 mips_any_noreorder = 1;
7620 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
7621 expr1.X_add_number = 2;
7622 macro_build (&expr1, "bnez", "x,p", yreg);
7623 macro_build (NULL, "break", "6", 7);
7624
7625 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
7626 since that causes an overflow. We should do that as well,
7627 but I don't see how to do the comparisons without a temporary
7628 register. */
7629 --mips_opts.noreorder;
7630 macro_build (NULL, s, "x", zreg);
7631 break;
7632
7633 case M_DIVU_3:
7634 s = "divu";
7635 s2 = "mflo";
7636 goto do_divu3;
7637 case M_REMU_3:
7638 s = "divu";
7639 s2 = "mfhi";
7640 goto do_divu3;
7641 case M_DDIVU_3:
7642 s = "ddivu";
7643 s2 = "mflo";
7644 goto do_divu3;
7645 case M_DREMU_3:
7646 s = "ddivu";
7647 s2 = "mfhi";
7648 do_divu3:
7649 mips_emit_delays (TRUE);
7650 ++mips_opts.noreorder;
7651 mips_any_noreorder = 1;
7652 macro_build (NULL, s, "0,x,y", xreg, yreg);
7653 expr1.X_add_number = 2;
7654 macro_build (&expr1, "bnez", "x,p", yreg);
7655 macro_build (NULL, "break", "6", 7);
7656 --mips_opts.noreorder;
7657 macro_build (NULL, s2, "x", zreg);
7658 break;
7659
7660 case M_DMUL:
7661 dbl = 1;
7662 case M_MUL:
7663 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
7664 macro_build (NULL, "mflo", "x", zreg);
7665 break;
7666
7667 case M_DSUBU_I:
7668 dbl = 1;
7669 goto do_subu;
7670 case M_SUBU_I:
7671 do_subu:
7672 if (imm_expr.X_op != O_constant)
7673 as_bad (_("Unsupported large constant"));
7674 imm_expr.X_add_number = -imm_expr.X_add_number;
7675 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
7676 break;
7677
7678 case M_SUBU_I_2:
7679 if (imm_expr.X_op != O_constant)
7680 as_bad (_("Unsupported large constant"));
7681 imm_expr.X_add_number = -imm_expr.X_add_number;
7682 macro_build (&imm_expr, "addiu", "x,k", xreg);
7683 break;
7684
7685 case M_DSUBU_I_2:
7686 if (imm_expr.X_op != O_constant)
7687 as_bad (_("Unsupported large constant"));
7688 imm_expr.X_add_number = -imm_expr.X_add_number;
7689 macro_build (&imm_expr, "daddiu", "y,j", yreg);
7690 break;
7691
7692 case M_BEQ:
7693 s = "cmp";
7694 s2 = "bteqz";
7695 goto do_branch;
7696 case M_BNE:
7697 s = "cmp";
7698 s2 = "btnez";
7699 goto do_branch;
7700 case M_BLT:
7701 s = "slt";
7702 s2 = "btnez";
7703 goto do_branch;
7704 case M_BLTU:
7705 s = "sltu";
7706 s2 = "btnez";
7707 goto do_branch;
7708 case M_BLE:
7709 s = "slt";
7710 s2 = "bteqz";
7711 goto do_reverse_branch;
7712 case M_BLEU:
7713 s = "sltu";
7714 s2 = "bteqz";
7715 goto do_reverse_branch;
7716 case M_BGE:
7717 s = "slt";
7718 s2 = "bteqz";
7719 goto do_branch;
7720 case M_BGEU:
7721 s = "sltu";
7722 s2 = "bteqz";
7723 goto do_branch;
7724 case M_BGT:
7725 s = "slt";
7726 s2 = "btnez";
7727 goto do_reverse_branch;
7728 case M_BGTU:
7729 s = "sltu";
7730 s2 = "btnez";
7731
7732 do_reverse_branch:
7733 tmp = xreg;
7734 xreg = yreg;
7735 yreg = tmp;
7736
7737 do_branch:
7738 macro_build (NULL, s, "x,y", xreg, yreg);
7739 macro_build (&offset_expr, s2, "p");
7740 break;
7741
7742 case M_BEQ_I:
7743 s = "cmpi";
7744 s2 = "bteqz";
7745 s3 = "x,U";
7746 goto do_branch_i;
7747 case M_BNE_I:
7748 s = "cmpi";
7749 s2 = "btnez";
7750 s3 = "x,U";
7751 goto do_branch_i;
7752 case M_BLT_I:
7753 s = "slti";
7754 s2 = "btnez";
7755 s3 = "x,8";
7756 goto do_branch_i;
7757 case M_BLTU_I:
7758 s = "sltiu";
7759 s2 = "btnez";
7760 s3 = "x,8";
7761 goto do_branch_i;
7762 case M_BLE_I:
7763 s = "slti";
7764 s2 = "btnez";
7765 s3 = "x,8";
7766 goto do_addone_branch_i;
7767 case M_BLEU_I:
7768 s = "sltiu";
7769 s2 = "btnez";
7770 s3 = "x,8";
7771 goto do_addone_branch_i;
7772 case M_BGE_I:
7773 s = "slti";
7774 s2 = "bteqz";
7775 s3 = "x,8";
7776 goto do_branch_i;
7777 case M_BGEU_I:
7778 s = "sltiu";
7779 s2 = "bteqz";
7780 s3 = "x,8";
7781 goto do_branch_i;
7782 case M_BGT_I:
7783 s = "slti";
7784 s2 = "bteqz";
7785 s3 = "x,8";
7786 goto do_addone_branch_i;
7787 case M_BGTU_I:
7788 s = "sltiu";
7789 s2 = "bteqz";
7790 s3 = "x,8";
7791
7792 do_addone_branch_i:
7793 if (imm_expr.X_op != O_constant)
7794 as_bad (_("Unsupported large constant"));
7795 ++imm_expr.X_add_number;
7796
7797 do_branch_i:
7798 macro_build (&imm_expr, s, s3, xreg);
7799 macro_build (&offset_expr, s2, "p");
7800 break;
7801
7802 case M_ABS:
7803 expr1.X_add_number = 0;
7804 macro_build (&expr1, "slti", "x,8", yreg);
7805 if (xreg != yreg)
7806 move_register (xreg, yreg);
7807 expr1.X_add_number = 2;
7808 macro_build (&expr1, "bteqz", "p");
7809 macro_build (NULL, "neg", "x,w", xreg, xreg);
7810 }
7811 }
7812
7813 /* For consistency checking, verify that all bits are specified either
7814 by the match/mask part of the instruction definition, or by the
7815 operand list. */
7816 static int
7817 validate_mips_insn (const struct mips_opcode *opc)
7818 {
7819 const char *p = opc->args;
7820 char c;
7821 unsigned long used_bits = opc->mask;
7822
7823 if ((used_bits & opc->match) != opc->match)
7824 {
7825 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
7826 opc->name, opc->args);
7827 return 0;
7828 }
7829 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
7830 while (*p)
7831 switch (c = *p++)
7832 {
7833 case ',': break;
7834 case '(': break;
7835 case ')': break;
7836 case '+':
7837 switch (c = *p++)
7838 {
7839 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7840 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
7841 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
7842 case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD);
7843 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
7844 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7845 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
7846 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
7847 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
7848 case 'I': break;
7849 default:
7850 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
7851 c, opc->name, opc->args);
7852 return 0;
7853 }
7854 break;
7855 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7856 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7857 case 'A': break;
7858 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
7859 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
7860 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7861 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7862 case 'F': break;
7863 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7864 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
7865 case 'I': break;
7866 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
7867 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7868 case 'L': break;
7869 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
7870 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
7871 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
7872 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
7873 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7874 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
7875 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7876 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7877 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7878 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7879 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7880 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7881 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7882 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
7883 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7884 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
7885 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7886 case 'f': break;
7887 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
7888 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7889 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7890 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
7891 case 'l': break;
7892 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7893 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7894 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
7895 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7896 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7897 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7898 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7899 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7900 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7901 case 'x': break;
7902 case 'z': break;
7903 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
7904 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
7905 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7906 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
7907 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
7908 case '[': break;
7909 case ']': break;
7910 default:
7911 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
7912 c, opc->name, opc->args);
7913 return 0;
7914 }
7915 #undef USE_BITS
7916 if (used_bits != 0xffffffff)
7917 {
7918 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
7919 ~used_bits & 0xffffffff, opc->name, opc->args);
7920 return 0;
7921 }
7922 return 1;
7923 }
7924
7925 /* This routine assembles an instruction into its binary format. As a
7926 side effect, it sets one of the global variables imm_reloc or
7927 offset_reloc to the type of relocation to do if one of the operands
7928 is an address expression. */
7929
7930 static void
7931 mips_ip (char *str, struct mips_cl_insn *ip)
7932 {
7933 char *s;
7934 const char *args;
7935 char c = 0;
7936 struct mips_opcode *insn;
7937 char *argsStart;
7938 unsigned int regno;
7939 unsigned int lastregno = 0;
7940 unsigned int lastpos = 0;
7941 unsigned int limlo, limhi;
7942 char *s_reset;
7943 char save_c = 0;
7944
7945 insn_error = NULL;
7946
7947 /* If the instruction contains a '.', we first try to match an instruction
7948 including the '.'. Then we try again without the '.'. */
7949 insn = NULL;
7950 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
7951 continue;
7952
7953 /* If we stopped on whitespace, then replace the whitespace with null for
7954 the call to hash_find. Save the character we replaced just in case we
7955 have to re-parse the instruction. */
7956 if (ISSPACE (*s))
7957 {
7958 save_c = *s;
7959 *s++ = '\0';
7960 }
7961
7962 insn = (struct mips_opcode *) hash_find (op_hash, str);
7963
7964 /* If we didn't find the instruction in the opcode table, try again, but
7965 this time with just the instruction up to, but not including the
7966 first '.'. */
7967 if (insn == NULL)
7968 {
7969 /* Restore the character we overwrite above (if any). */
7970 if (save_c)
7971 *(--s) = save_c;
7972
7973 /* Scan up to the first '.' or whitespace. */
7974 for (s = str;
7975 *s != '\0' && *s != '.' && !ISSPACE (*s);
7976 ++s)
7977 continue;
7978
7979 /* If we did not find a '.', then we can quit now. */
7980 if (*s != '.')
7981 {
7982 insn_error = "unrecognized opcode";
7983 return;
7984 }
7985
7986 /* Lookup the instruction in the hash table. */
7987 *s++ = '\0';
7988 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
7989 {
7990 insn_error = "unrecognized opcode";
7991 return;
7992 }
7993 }
7994
7995 argsStart = s;
7996 for (;;)
7997 {
7998 bfd_boolean ok;
7999
8000 assert (strcmp (insn->name, str) == 0);
8001
8002 if (OPCODE_IS_MEMBER (insn,
8003 (mips_opts.isa
8004 | (file_ase_mips16 ? INSN_MIPS16 : 0)
8005 | (mips_opts.ase_mdmx ? INSN_MDMX : 0)
8006 | (mips_opts.ase_mips3d ? INSN_MIPS3D : 0)),
8007 mips_opts.arch))
8008 ok = TRUE;
8009 else
8010 ok = FALSE;
8011
8012 if (insn->pinfo != INSN_MACRO)
8013 {
8014 if (mips_opts.arch == CPU_R4650 && (insn->pinfo & FP_D) != 0)
8015 ok = FALSE;
8016 }
8017
8018 if (! ok)
8019 {
8020 if (insn + 1 < &mips_opcodes[NUMOPCODES]
8021 && strcmp (insn->name, insn[1].name) == 0)
8022 {
8023 ++insn;
8024 continue;
8025 }
8026 else
8027 {
8028 if (!insn_error)
8029 {
8030 static char buf[100];
8031 sprintf (buf,
8032 _("opcode not supported on this processor: %s (%s)"),
8033 mips_cpu_info_from_arch (mips_opts.arch)->name,
8034 mips_cpu_info_from_isa (mips_opts.isa)->name);
8035 insn_error = buf;
8036 }
8037 if (save_c)
8038 *(--s) = save_c;
8039 return;
8040 }
8041 }
8042
8043 ip->insn_mo = insn;
8044 ip->insn_opcode = insn->match;
8045 insn_error = NULL;
8046 for (args = insn->args;; ++args)
8047 {
8048 int is_mdmx;
8049
8050 s += strspn (s, " \t");
8051 is_mdmx = 0;
8052 switch (*args)
8053 {
8054 case '\0': /* end of args */
8055 if (*s == '\0')
8056 return;
8057 break;
8058
8059 case ',':
8060 if (*s++ == *args)
8061 continue;
8062 s--;
8063 switch (*++args)
8064 {
8065 case 'r':
8066 case 'v':
8067 ip->insn_opcode |= lastregno << OP_SH_RS;
8068 continue;
8069
8070 case 'w':
8071 ip->insn_opcode |= lastregno << OP_SH_RT;
8072 continue;
8073
8074 case 'W':
8075 ip->insn_opcode |= lastregno << OP_SH_FT;
8076 continue;
8077
8078 case 'V':
8079 ip->insn_opcode |= lastregno << OP_SH_FS;
8080 continue;
8081 }
8082 break;
8083
8084 case '(':
8085 /* Handle optional base register.
8086 Either the base register is omitted or
8087 we must have a left paren. */
8088 /* This is dependent on the next operand specifier
8089 is a base register specification. */
8090 assert (args[1] == 'b' || args[1] == '5'
8091 || args[1] == '-' || args[1] == '4');
8092 if (*s == '\0')
8093 return;
8094
8095 case ')': /* these must match exactly */
8096 case '[':
8097 case ']':
8098 if (*s++ == *args)
8099 continue;
8100 break;
8101
8102 case '+': /* Opcode extension character. */
8103 switch (*++args)
8104 {
8105 case 'A': /* ins/ext position, becomes LSB. */
8106 limlo = 0;
8107 limhi = 31;
8108 goto do_lsb;
8109 case 'E':
8110 limlo = 32;
8111 limhi = 63;
8112 goto do_lsb;
8113 do_lsb:
8114 my_getExpression (&imm_expr, s);
8115 check_absolute_expr (ip, &imm_expr);
8116 if ((unsigned long) imm_expr.X_add_number < limlo
8117 || (unsigned long) imm_expr.X_add_number > limhi)
8118 {
8119 as_bad (_("Improper position (%lu)"),
8120 (unsigned long) imm_expr.X_add_number);
8121 imm_expr.X_add_number = limlo;
8122 }
8123 lastpos = imm_expr.X_add_number;
8124 ip->insn_opcode |= (imm_expr.X_add_number
8125 & OP_MASK_SHAMT) << OP_SH_SHAMT;
8126 imm_expr.X_op = O_absent;
8127 s = expr_end;
8128 continue;
8129
8130 case 'B': /* ins size, becomes MSB. */
8131 limlo = 1;
8132 limhi = 32;
8133 goto do_msb;
8134 case 'F':
8135 limlo = 33;
8136 limhi = 64;
8137 goto do_msb;
8138 do_msb:
8139 my_getExpression (&imm_expr, s);
8140 check_absolute_expr (ip, &imm_expr);
8141 /* Check for negative input so that small negative numbers
8142 will not succeed incorrectly. The checks against
8143 (pos+size) transitively check "size" itself,
8144 assuming that "pos" is reasonable. */
8145 if ((long) imm_expr.X_add_number < 0
8146 || ((unsigned long) imm_expr.X_add_number
8147 + lastpos) < limlo
8148 || ((unsigned long) imm_expr.X_add_number
8149 + lastpos) > limhi)
8150 {
8151 as_bad (_("Improper insert size (%lu, position %lu)"),
8152 (unsigned long) imm_expr.X_add_number,
8153 (unsigned long) lastpos);
8154 imm_expr.X_add_number = limlo - lastpos;
8155 }
8156 ip->insn_opcode |= ((lastpos + imm_expr.X_add_number - 1)
8157 & OP_MASK_INSMSB) << OP_SH_INSMSB;
8158 imm_expr.X_op = O_absent;
8159 s = expr_end;
8160 continue;
8161
8162 case 'C': /* ext size, becomes MSBD. */
8163 limlo = 1;
8164 limhi = 32;
8165 goto do_msbd;
8166 case 'G':
8167 limlo = 33;
8168 limhi = 64;
8169 goto do_msbd;
8170 case 'H':
8171 limlo = 33;
8172 limhi = 64;
8173 goto do_msbd;
8174 do_msbd:
8175 my_getExpression (&imm_expr, s);
8176 check_absolute_expr (ip, &imm_expr);
8177 /* Check for negative input so that small negative numbers
8178 will not succeed incorrectly. The checks against
8179 (pos+size) transitively check "size" itself,
8180 assuming that "pos" is reasonable. */
8181 if ((long) imm_expr.X_add_number < 0
8182 || ((unsigned long) imm_expr.X_add_number
8183 + lastpos) < limlo
8184 || ((unsigned long) imm_expr.X_add_number
8185 + lastpos) > limhi)
8186 {
8187 as_bad (_("Improper extract size (%lu, position %lu)"),
8188 (unsigned long) imm_expr.X_add_number,
8189 (unsigned long) lastpos);
8190 imm_expr.X_add_number = limlo - lastpos;
8191 }
8192 ip->insn_opcode |= ((imm_expr.X_add_number - 1)
8193 & OP_MASK_EXTMSBD) << OP_SH_EXTMSBD;
8194 imm_expr.X_op = O_absent;
8195 s = expr_end;
8196 continue;
8197
8198 case 'D':
8199 /* +D is for disassembly only; never match. */
8200 break;
8201
8202 case 'I':
8203 /* "+I" is like "I", except that imm2_expr is used. */
8204 my_getExpression (&imm2_expr, s);
8205 if (imm2_expr.X_op != O_big
8206 && imm2_expr.X_op != O_constant)
8207 insn_error = _("absolute expression required");
8208 normalize_constant_expr (&imm2_expr);
8209 s = expr_end;
8210 continue;
8211
8212 default:
8213 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8214 *args, insn->name, insn->args);
8215 /* Further processing is fruitless. */
8216 return;
8217 }
8218 break;
8219
8220 case '<': /* must be at least one digit */
8221 /*
8222 * According to the manual, if the shift amount is greater
8223 * than 31 or less than 0, then the shift amount should be
8224 * mod 32. In reality the mips assembler issues an error.
8225 * We issue a warning and mask out all but the low 5 bits.
8226 */
8227 my_getExpression (&imm_expr, s);
8228 check_absolute_expr (ip, &imm_expr);
8229 if ((unsigned long) imm_expr.X_add_number > 31)
8230 {
8231 as_warn (_("Improper shift amount (%lu)"),
8232 (unsigned long) imm_expr.X_add_number);
8233 imm_expr.X_add_number &= OP_MASK_SHAMT;
8234 }
8235 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_SHAMT;
8236 imm_expr.X_op = O_absent;
8237 s = expr_end;
8238 continue;
8239
8240 case '>': /* shift amount minus 32 */
8241 my_getExpression (&imm_expr, s);
8242 check_absolute_expr (ip, &imm_expr);
8243 if ((unsigned long) imm_expr.X_add_number < 32
8244 || (unsigned long) imm_expr.X_add_number > 63)
8245 break;
8246 ip->insn_opcode |= (imm_expr.X_add_number - 32) << OP_SH_SHAMT;
8247 imm_expr.X_op = O_absent;
8248 s = expr_end;
8249 continue;
8250
8251 case 'k': /* cache code */
8252 case 'h': /* prefx code */
8253 my_getExpression (&imm_expr, s);
8254 check_absolute_expr (ip, &imm_expr);
8255 if ((unsigned long) imm_expr.X_add_number > 31)
8256 {
8257 as_warn (_("Invalid value for `%s' (%lu)"),
8258 ip->insn_mo->name,
8259 (unsigned long) imm_expr.X_add_number);
8260 imm_expr.X_add_number &= 0x1f;
8261 }
8262 if (*args == 'k')
8263 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CACHE;
8264 else
8265 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_PREFX;
8266 imm_expr.X_op = O_absent;
8267 s = expr_end;
8268 continue;
8269
8270 case 'c': /* break code */
8271 my_getExpression (&imm_expr, s);
8272 check_absolute_expr (ip, &imm_expr);
8273 if ((unsigned long) imm_expr.X_add_number > 1023)
8274 {
8275 as_warn (_("Illegal break code (%lu)"),
8276 (unsigned long) imm_expr.X_add_number);
8277 imm_expr.X_add_number &= OP_MASK_CODE;
8278 }
8279 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE;
8280 imm_expr.X_op = O_absent;
8281 s = expr_end;
8282 continue;
8283
8284 case 'q': /* lower break code */
8285 my_getExpression (&imm_expr, s);
8286 check_absolute_expr (ip, &imm_expr);
8287 if ((unsigned long) imm_expr.X_add_number > 1023)
8288 {
8289 as_warn (_("Illegal lower break code (%lu)"),
8290 (unsigned long) imm_expr.X_add_number);
8291 imm_expr.X_add_number &= OP_MASK_CODE2;
8292 }
8293 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE2;
8294 imm_expr.X_op = O_absent;
8295 s = expr_end;
8296 continue;
8297
8298 case 'B': /* 20-bit syscall/break code. */
8299 my_getExpression (&imm_expr, s);
8300 check_absolute_expr (ip, &imm_expr);
8301 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
8302 as_warn (_("Illegal 20-bit code (%lu)"),
8303 (unsigned long) imm_expr.X_add_number);
8304 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE20;
8305 imm_expr.X_op = O_absent;
8306 s = expr_end;
8307 continue;
8308
8309 case 'C': /* Coprocessor code */
8310 my_getExpression (&imm_expr, s);
8311 check_absolute_expr (ip, &imm_expr);
8312 if ((unsigned long) imm_expr.X_add_number >= (1 << 25))
8313 {
8314 as_warn (_("Coproccesor code > 25 bits (%lu)"),
8315 (unsigned long) imm_expr.X_add_number);
8316 imm_expr.X_add_number &= ((1 << 25) - 1);
8317 }
8318 ip->insn_opcode |= imm_expr.X_add_number;
8319 imm_expr.X_op = O_absent;
8320 s = expr_end;
8321 continue;
8322
8323 case 'J': /* 19-bit wait code. */
8324 my_getExpression (&imm_expr, s);
8325 check_absolute_expr (ip, &imm_expr);
8326 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
8327 as_warn (_("Illegal 19-bit code (%lu)"),
8328 (unsigned long) imm_expr.X_add_number);
8329 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE19;
8330 imm_expr.X_op = O_absent;
8331 s = expr_end;
8332 continue;
8333
8334 case 'P': /* Performance register */
8335 my_getExpression (&imm_expr, s);
8336 check_absolute_expr (ip, &imm_expr);
8337 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
8338 {
8339 as_warn (_("Invalid performance register (%lu)"),
8340 (unsigned long) imm_expr.X_add_number);
8341 imm_expr.X_add_number &= OP_MASK_PERFREG;
8342 }
8343 ip->insn_opcode |= (imm_expr.X_add_number << OP_SH_PERFREG);
8344 imm_expr.X_op = O_absent;
8345 s = expr_end;
8346 continue;
8347
8348 case 'b': /* base register */
8349 case 'd': /* destination register */
8350 case 's': /* source register */
8351 case 't': /* target register */
8352 case 'r': /* both target and source */
8353 case 'v': /* both dest and source */
8354 case 'w': /* both dest and target */
8355 case 'E': /* coprocessor target register */
8356 case 'G': /* coprocessor destination register */
8357 case 'K': /* 'rdhwr' destination register */
8358 case 'x': /* ignore register name */
8359 case 'z': /* must be zero register */
8360 case 'U': /* destination register (clo/clz). */
8361 s_reset = s;
8362 if (s[0] == '$')
8363 {
8364
8365 if (ISDIGIT (s[1]))
8366 {
8367 ++s;
8368 regno = 0;
8369 do
8370 {
8371 regno *= 10;
8372 regno += *s - '0';
8373 ++s;
8374 }
8375 while (ISDIGIT (*s));
8376 if (regno > 31)
8377 as_bad (_("Invalid register number (%d)"), regno);
8378 }
8379 else if (*args == 'E' || *args == 'G' || *args == 'K')
8380 goto notreg;
8381 else
8382 {
8383 if (s[1] == 'r' && s[2] == 'a')
8384 {
8385 s += 3;
8386 regno = RA;
8387 }
8388 else if (s[1] == 'f' && s[2] == 'p')
8389 {
8390 s += 3;
8391 regno = FP;
8392 }
8393 else if (s[1] == 's' && s[2] == 'p')
8394 {
8395 s += 3;
8396 regno = SP;
8397 }
8398 else if (s[1] == 'g' && s[2] == 'p')
8399 {
8400 s += 3;
8401 regno = GP;
8402 }
8403 else if (s[1] == 'a' && s[2] == 't')
8404 {
8405 s += 3;
8406 regno = AT;
8407 }
8408 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
8409 {
8410 s += 4;
8411 regno = KT0;
8412 }
8413 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
8414 {
8415 s += 4;
8416 regno = KT1;
8417 }
8418 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
8419 {
8420 s += 5;
8421 regno = ZERO;
8422 }
8423 else if (itbl_have_entries)
8424 {
8425 char *p, *n;
8426 unsigned long r;
8427
8428 p = s + 1; /* advance past '$' */
8429 n = itbl_get_field (&p); /* n is name */
8430
8431 /* See if this is a register defined in an
8432 itbl entry. */
8433 if (itbl_get_reg_val (n, &r))
8434 {
8435 /* Get_field advances to the start of
8436 the next field, so we need to back
8437 rack to the end of the last field. */
8438 if (p)
8439 s = p - 1;
8440 else
8441 s = strchr (s, '\0');
8442 regno = r;
8443 }
8444 else
8445 goto notreg;
8446 }
8447 else
8448 goto notreg;
8449 }
8450 if (regno == AT
8451 && ! mips_opts.noat
8452 && *args != 'E'
8453 && *args != 'G'
8454 && *args != 'K')
8455 as_warn (_("Used $at without \".set noat\""));
8456 c = *args;
8457 if (*s == ' ')
8458 ++s;
8459 if (args[1] != *s)
8460 {
8461 if (c == 'r' || c == 'v' || c == 'w')
8462 {
8463 regno = lastregno;
8464 s = s_reset;
8465 ++args;
8466 }
8467 }
8468 /* 'z' only matches $0. */
8469 if (c == 'z' && regno != 0)
8470 break;
8471
8472 /* Now that we have assembled one operand, we use the args string
8473 * to figure out where it goes in the instruction. */
8474 switch (c)
8475 {
8476 case 'r':
8477 case 's':
8478 case 'v':
8479 case 'b':
8480 ip->insn_opcode |= regno << OP_SH_RS;
8481 break;
8482 case 'd':
8483 case 'G':
8484 case 'K':
8485 ip->insn_opcode |= regno << OP_SH_RD;
8486 break;
8487 case 'U':
8488 ip->insn_opcode |= regno << OP_SH_RD;
8489 ip->insn_opcode |= regno << OP_SH_RT;
8490 break;
8491 case 'w':
8492 case 't':
8493 case 'E':
8494 ip->insn_opcode |= regno << OP_SH_RT;
8495 break;
8496 case 'x':
8497 /* This case exists because on the r3000 trunc
8498 expands into a macro which requires a gp
8499 register. On the r6000 or r4000 it is
8500 assembled into a single instruction which
8501 ignores the register. Thus the insn version
8502 is MIPS_ISA2 and uses 'x', and the macro
8503 version is MIPS_ISA1 and uses 't'. */
8504 break;
8505 case 'z':
8506 /* This case is for the div instruction, which
8507 acts differently if the destination argument
8508 is $0. This only matches $0, and is checked
8509 outside the switch. */
8510 break;
8511 case 'D':
8512 /* Itbl operand; not yet implemented. FIXME ?? */
8513 break;
8514 /* What about all other operands like 'i', which
8515 can be specified in the opcode table? */
8516 }
8517 lastregno = regno;
8518 continue;
8519 }
8520 notreg:
8521 switch (*args++)
8522 {
8523 case 'r':
8524 case 'v':
8525 ip->insn_opcode |= lastregno << OP_SH_RS;
8526 continue;
8527 case 'w':
8528 ip->insn_opcode |= lastregno << OP_SH_RT;
8529 continue;
8530 }
8531 break;
8532
8533 case 'O': /* MDMX alignment immediate constant. */
8534 my_getExpression (&imm_expr, s);
8535 check_absolute_expr (ip, &imm_expr);
8536 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
8537 {
8538 as_warn ("Improper align amount (%ld), using low bits",
8539 (long) imm_expr.X_add_number);
8540 imm_expr.X_add_number &= OP_MASK_ALN;
8541 }
8542 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_ALN;
8543 imm_expr.X_op = O_absent;
8544 s = expr_end;
8545 continue;
8546
8547 case 'Q': /* MDMX vector, element sel, or const. */
8548 if (s[0] != '$')
8549 {
8550 /* MDMX Immediate. */
8551 my_getExpression (&imm_expr, s);
8552 check_absolute_expr (ip, &imm_expr);
8553 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
8554 {
8555 as_warn (_("Invalid MDMX Immediate (%ld)"),
8556 (long) imm_expr.X_add_number);
8557 imm_expr.X_add_number &= OP_MASK_FT;
8558 }
8559 imm_expr.X_add_number &= OP_MASK_FT;
8560 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8561 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
8562 else
8563 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
8564 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_FT;
8565 imm_expr.X_op = O_absent;
8566 s = expr_end;
8567 continue;
8568 }
8569 /* Not MDMX Immediate. Fall through. */
8570 case 'X': /* MDMX destination register. */
8571 case 'Y': /* MDMX source register. */
8572 case 'Z': /* MDMX target register. */
8573 is_mdmx = 1;
8574 case 'D': /* floating point destination register */
8575 case 'S': /* floating point source register */
8576 case 'T': /* floating point target register */
8577 case 'R': /* floating point source register */
8578 case 'V':
8579 case 'W':
8580 s_reset = s;
8581 /* Accept $fN for FP and MDMX register numbers, and in
8582 addition accept $vN for MDMX register numbers. */
8583 if ((s[0] == '$' && s[1] == 'f' && ISDIGIT (s[2]))
8584 || (is_mdmx != 0 && s[0] == '$' && s[1] == 'v'
8585 && ISDIGIT (s[2])))
8586 {
8587 s += 2;
8588 regno = 0;
8589 do
8590 {
8591 regno *= 10;
8592 regno += *s - '0';
8593 ++s;
8594 }
8595 while (ISDIGIT (*s));
8596
8597 if (regno > 31)
8598 as_bad (_("Invalid float register number (%d)"), regno);
8599
8600 if ((regno & 1) != 0
8601 && HAVE_32BIT_FPRS
8602 && ! (strcmp (str, "mtc1") == 0
8603 || strcmp (str, "mfc1") == 0
8604 || strcmp (str, "lwc1") == 0
8605 || strcmp (str, "swc1") == 0
8606 || strcmp (str, "l.s") == 0
8607 || strcmp (str, "s.s") == 0))
8608 as_warn (_("Float register should be even, was %d"),
8609 regno);
8610
8611 c = *args;
8612 if (*s == ' ')
8613 ++s;
8614 if (args[1] != *s)
8615 {
8616 if (c == 'V' || c == 'W')
8617 {
8618 regno = lastregno;
8619 s = s_reset;
8620 ++args;
8621 }
8622 }
8623 switch (c)
8624 {
8625 case 'D':
8626 case 'X':
8627 ip->insn_opcode |= regno << OP_SH_FD;
8628 break;
8629 case 'V':
8630 case 'S':
8631 case 'Y':
8632 ip->insn_opcode |= regno << OP_SH_FS;
8633 break;
8634 case 'Q':
8635 /* This is like 'Z', but also needs to fix the MDMX
8636 vector/scalar select bits. Note that the
8637 scalar immediate case is handled above. */
8638 if (*s == '[')
8639 {
8640 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
8641 int max_el = (is_qh ? 3 : 7);
8642 s++;
8643 my_getExpression(&imm_expr, s);
8644 check_absolute_expr (ip, &imm_expr);
8645 s = expr_end;
8646 if (imm_expr.X_add_number > max_el)
8647 as_bad(_("Bad element selector %ld"),
8648 (long) imm_expr.X_add_number);
8649 imm_expr.X_add_number &= max_el;
8650 ip->insn_opcode |= (imm_expr.X_add_number
8651 << (OP_SH_VSEL +
8652 (is_qh ? 2 : 1)));
8653 imm_expr.X_op = O_absent;
8654 if (*s != ']')
8655 as_warn(_("Expecting ']' found '%s'"), s);
8656 else
8657 s++;
8658 }
8659 else
8660 {
8661 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8662 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
8663 << OP_SH_VSEL);
8664 else
8665 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
8666 OP_SH_VSEL);
8667 }
8668 /* Fall through */
8669 case 'W':
8670 case 'T':
8671 case 'Z':
8672 ip->insn_opcode |= regno << OP_SH_FT;
8673 break;
8674 case 'R':
8675 ip->insn_opcode |= regno << OP_SH_FR;
8676 break;
8677 }
8678 lastregno = regno;
8679 continue;
8680 }
8681
8682 switch (*args++)
8683 {
8684 case 'V':
8685 ip->insn_opcode |= lastregno << OP_SH_FS;
8686 continue;
8687 case 'W':
8688 ip->insn_opcode |= lastregno << OP_SH_FT;
8689 continue;
8690 }
8691 break;
8692
8693 case 'I':
8694 my_getExpression (&imm_expr, s);
8695 if (imm_expr.X_op != O_big
8696 && imm_expr.X_op != O_constant)
8697 insn_error = _("absolute expression required");
8698 normalize_constant_expr (&imm_expr);
8699 s = expr_end;
8700 continue;
8701
8702 case 'A':
8703 my_getExpression (&offset_expr, s);
8704 *imm_reloc = BFD_RELOC_32;
8705 s = expr_end;
8706 continue;
8707
8708 case 'F':
8709 case 'L':
8710 case 'f':
8711 case 'l':
8712 {
8713 int f64;
8714 int using_gprs;
8715 char *save_in;
8716 char *err;
8717 unsigned char temp[8];
8718 int len;
8719 unsigned int length;
8720 segT seg;
8721 subsegT subseg;
8722 char *p;
8723
8724 /* These only appear as the last operand in an
8725 instruction, and every instruction that accepts
8726 them in any variant accepts them in all variants.
8727 This means we don't have to worry about backing out
8728 any changes if the instruction does not match.
8729
8730 The difference between them is the size of the
8731 floating point constant and where it goes. For 'F'
8732 and 'L' the constant is 64 bits; for 'f' and 'l' it
8733 is 32 bits. Where the constant is placed is based
8734 on how the MIPS assembler does things:
8735 F -- .rdata
8736 L -- .lit8
8737 f -- immediate value
8738 l -- .lit4
8739
8740 The .lit4 and .lit8 sections are only used if
8741 permitted by the -G argument.
8742
8743 The code below needs to know whether the target register
8744 is 32 or 64 bits wide. It relies on the fact 'f' and
8745 'F' are used with GPR-based instructions and 'l' and
8746 'L' are used with FPR-based instructions. */
8747
8748 f64 = *args == 'F' || *args == 'L';
8749 using_gprs = *args == 'F' || *args == 'f';
8750
8751 save_in = input_line_pointer;
8752 input_line_pointer = s;
8753 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
8754 length = len;
8755 s = input_line_pointer;
8756 input_line_pointer = save_in;
8757 if (err != NULL && *err != '\0')
8758 {
8759 as_bad (_("Bad floating point constant: %s"), err);
8760 memset (temp, '\0', sizeof temp);
8761 length = f64 ? 8 : 4;
8762 }
8763
8764 assert (length == (unsigned) (f64 ? 8 : 4));
8765
8766 if (*args == 'f'
8767 || (*args == 'l'
8768 && (g_switch_value < 4
8769 || (temp[0] == 0 && temp[1] == 0)
8770 || (temp[2] == 0 && temp[3] == 0))))
8771 {
8772 imm_expr.X_op = O_constant;
8773 if (! target_big_endian)
8774 imm_expr.X_add_number = bfd_getl32 (temp);
8775 else
8776 imm_expr.X_add_number = bfd_getb32 (temp);
8777 }
8778 else if (length > 4
8779 && ! mips_disable_float_construction
8780 /* Constants can only be constructed in GPRs and
8781 copied to FPRs if the GPRs are at least as wide
8782 as the FPRs. Force the constant into memory if
8783 we are using 64-bit FPRs but the GPRs are only
8784 32 bits wide. */
8785 && (using_gprs
8786 || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
8787 && ((temp[0] == 0 && temp[1] == 0)
8788 || (temp[2] == 0 && temp[3] == 0))
8789 && ((temp[4] == 0 && temp[5] == 0)
8790 || (temp[6] == 0 && temp[7] == 0)))
8791 {
8792 /* The value is simple enough to load with a couple of
8793 instructions. If using 32-bit registers, set
8794 imm_expr to the high order 32 bits and offset_expr to
8795 the low order 32 bits. Otherwise, set imm_expr to
8796 the entire 64 bit constant. */
8797 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
8798 {
8799 imm_expr.X_op = O_constant;
8800 offset_expr.X_op = O_constant;
8801 if (! target_big_endian)
8802 {
8803 imm_expr.X_add_number = bfd_getl32 (temp + 4);
8804 offset_expr.X_add_number = bfd_getl32 (temp);
8805 }
8806 else
8807 {
8808 imm_expr.X_add_number = bfd_getb32 (temp);
8809 offset_expr.X_add_number = bfd_getb32 (temp + 4);
8810 }
8811 if (offset_expr.X_add_number == 0)
8812 offset_expr.X_op = O_absent;
8813 }
8814 else if (sizeof (imm_expr.X_add_number) > 4)
8815 {
8816 imm_expr.X_op = O_constant;
8817 if (! target_big_endian)
8818 imm_expr.X_add_number = bfd_getl64 (temp);
8819 else
8820 imm_expr.X_add_number = bfd_getb64 (temp);
8821 }
8822 else
8823 {
8824 imm_expr.X_op = O_big;
8825 imm_expr.X_add_number = 4;
8826 if (! target_big_endian)
8827 {
8828 generic_bignum[0] = bfd_getl16 (temp);
8829 generic_bignum[1] = bfd_getl16 (temp + 2);
8830 generic_bignum[2] = bfd_getl16 (temp + 4);
8831 generic_bignum[3] = bfd_getl16 (temp + 6);
8832 }
8833 else
8834 {
8835 generic_bignum[0] = bfd_getb16 (temp + 6);
8836 generic_bignum[1] = bfd_getb16 (temp + 4);
8837 generic_bignum[2] = bfd_getb16 (temp + 2);
8838 generic_bignum[3] = bfd_getb16 (temp);
8839 }
8840 }
8841 }
8842 else
8843 {
8844 const char *newname;
8845 segT new_seg;
8846
8847 /* Switch to the right section. */
8848 seg = now_seg;
8849 subseg = now_subseg;
8850 switch (*args)
8851 {
8852 default: /* unused default case avoids warnings. */
8853 case 'L':
8854 newname = RDATA_SECTION_NAME;
8855 if (g_switch_value >= 8)
8856 newname = ".lit8";
8857 break;
8858 case 'F':
8859 newname = RDATA_SECTION_NAME;
8860 break;
8861 case 'l':
8862 assert (g_switch_value >= 4);
8863 newname = ".lit4";
8864 break;
8865 }
8866 new_seg = subseg_new (newname, (subsegT) 0);
8867 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
8868 bfd_set_section_flags (stdoutput, new_seg,
8869 (SEC_ALLOC
8870 | SEC_LOAD
8871 | SEC_READONLY
8872 | SEC_DATA));
8873 frag_align (*args == 'l' ? 2 : 3, 0, 0);
8874 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
8875 && strcmp (TARGET_OS, "elf") != 0)
8876 record_alignment (new_seg, 4);
8877 else
8878 record_alignment (new_seg, *args == 'l' ? 2 : 3);
8879 if (seg == now_seg)
8880 as_bad (_("Can't use floating point insn in this section"));
8881
8882 /* Set the argument to the current address in the
8883 section. */
8884 offset_expr.X_op = O_symbol;
8885 offset_expr.X_add_symbol =
8886 symbol_new ("L0\001", now_seg,
8887 (valueT) frag_now_fix (), frag_now);
8888 offset_expr.X_add_number = 0;
8889
8890 /* Put the floating point number into the section. */
8891 p = frag_more ((int) length);
8892 memcpy (p, temp, length);
8893
8894 /* Switch back to the original section. */
8895 subseg_set (seg, subseg);
8896 }
8897 }
8898 continue;
8899
8900 case 'i': /* 16 bit unsigned immediate */
8901 case 'j': /* 16 bit signed immediate */
8902 *imm_reloc = BFD_RELOC_LO16;
8903 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
8904 {
8905 int more;
8906 offsetT minval, maxval;
8907
8908 more = (insn + 1 < &mips_opcodes[NUMOPCODES]
8909 && strcmp (insn->name, insn[1].name) == 0);
8910
8911 /* If the expression was written as an unsigned number,
8912 only treat it as signed if there are no more
8913 alternatives. */
8914 if (more
8915 && *args == 'j'
8916 && sizeof (imm_expr.X_add_number) <= 4
8917 && imm_expr.X_op == O_constant
8918 && imm_expr.X_add_number < 0
8919 && imm_expr.X_unsigned
8920 && HAVE_64BIT_GPRS)
8921 break;
8922
8923 /* For compatibility with older assemblers, we accept
8924 0x8000-0xffff as signed 16-bit numbers when only
8925 signed numbers are allowed. */
8926 if (*args == 'i')
8927 minval = 0, maxval = 0xffff;
8928 else if (more)
8929 minval = -0x8000, maxval = 0x7fff;
8930 else
8931 minval = -0x8000, maxval = 0xffff;
8932
8933 if (imm_expr.X_op != O_constant
8934 || imm_expr.X_add_number < minval
8935 || imm_expr.X_add_number > maxval)
8936 {
8937 if (more)
8938 break;
8939 if (imm_expr.X_op == O_constant
8940 || imm_expr.X_op == O_big)
8941 as_bad (_("expression out of range"));
8942 }
8943 }
8944 s = expr_end;
8945 continue;
8946
8947 case 'o': /* 16 bit offset */
8948 /* Check whether there is only a single bracketed expression
8949 left. If so, it must be the base register and the
8950 constant must be zero. */
8951 if (*s == '(' && strchr (s + 1, '(') == 0)
8952 {
8953 offset_expr.X_op = O_constant;
8954 offset_expr.X_add_number = 0;
8955 continue;
8956 }
8957
8958 /* If this value won't fit into a 16 bit offset, then go
8959 find a macro that will generate the 32 bit offset
8960 code pattern. */
8961 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
8962 && (offset_expr.X_op != O_constant
8963 || offset_expr.X_add_number >= 0x8000
8964 || offset_expr.X_add_number < -0x8000))
8965 break;
8966
8967 s = expr_end;
8968 continue;
8969
8970 case 'p': /* pc relative offset */
8971 *offset_reloc = BFD_RELOC_16_PCREL_S2;
8972 my_getExpression (&offset_expr, s);
8973 s = expr_end;
8974 continue;
8975
8976 case 'u': /* upper 16 bits */
8977 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
8978 && imm_expr.X_op == O_constant
8979 && (imm_expr.X_add_number < 0
8980 || imm_expr.X_add_number >= 0x10000))
8981 as_bad (_("lui expression not in range 0..65535"));
8982 s = expr_end;
8983 continue;
8984
8985 case 'a': /* 26 bit address */
8986 my_getExpression (&offset_expr, s);
8987 s = expr_end;
8988 *offset_reloc = BFD_RELOC_MIPS_JMP;
8989 continue;
8990
8991 case 'N': /* 3 bit branch condition code */
8992 case 'M': /* 3 bit compare condition code */
8993 if (strncmp (s, "$fcc", 4) != 0)
8994 break;
8995 s += 4;
8996 regno = 0;
8997 do
8998 {
8999 regno *= 10;
9000 regno += *s - '0';
9001 ++s;
9002 }
9003 while (ISDIGIT (*s));
9004 if (regno > 7)
9005 as_bad (_("Invalid condition code register $fcc%d"), regno);
9006 if ((strcmp(str + strlen(str) - 3, ".ps") == 0
9007 || strcmp(str + strlen(str) - 5, "any2f") == 0
9008 || strcmp(str + strlen(str) - 5, "any2t") == 0)
9009 && (regno & 1) != 0)
9010 as_warn(_("Condition code register should be even for %s, was %d"),
9011 str, regno);
9012 if ((strcmp(str + strlen(str) - 5, "any4f") == 0
9013 || strcmp(str + strlen(str) - 5, "any4t") == 0)
9014 && (regno & 3) != 0)
9015 as_warn(_("Condition code register should be 0 or 4 for %s, was %d"),
9016 str, regno);
9017 if (*args == 'N')
9018 ip->insn_opcode |= regno << OP_SH_BCC;
9019 else
9020 ip->insn_opcode |= regno << OP_SH_CCC;
9021 continue;
9022
9023 case 'H':
9024 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
9025 s += 2;
9026 if (ISDIGIT (*s))
9027 {
9028 c = 0;
9029 do
9030 {
9031 c *= 10;
9032 c += *s - '0';
9033 ++s;
9034 }
9035 while (ISDIGIT (*s));
9036 }
9037 else
9038 c = 8; /* Invalid sel value. */
9039
9040 if (c > 7)
9041 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
9042 ip->insn_opcode |= c;
9043 continue;
9044
9045 case 'e':
9046 /* Must be at least one digit. */
9047 my_getExpression (&imm_expr, s);
9048 check_absolute_expr (ip, &imm_expr);
9049
9050 if ((unsigned long) imm_expr.X_add_number
9051 > (unsigned long) OP_MASK_VECBYTE)
9052 {
9053 as_bad (_("bad byte vector index (%ld)"),
9054 (long) imm_expr.X_add_number);
9055 imm_expr.X_add_number = 0;
9056 }
9057
9058 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_VECBYTE;
9059 imm_expr.X_op = O_absent;
9060 s = expr_end;
9061 continue;
9062
9063 case '%':
9064 my_getExpression (&imm_expr, s);
9065 check_absolute_expr (ip, &imm_expr);
9066
9067 if ((unsigned long) imm_expr.X_add_number
9068 > (unsigned long) OP_MASK_VECALIGN)
9069 {
9070 as_bad (_("bad byte vector index (%ld)"),
9071 (long) imm_expr.X_add_number);
9072 imm_expr.X_add_number = 0;
9073 }
9074
9075 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_VECALIGN;
9076 imm_expr.X_op = O_absent;
9077 s = expr_end;
9078 continue;
9079
9080 default:
9081 as_bad (_("bad char = '%c'\n"), *args);
9082 internalError ();
9083 }
9084 break;
9085 }
9086 /* Args don't match. */
9087 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
9088 !strcmp (insn->name, insn[1].name))
9089 {
9090 ++insn;
9091 s = argsStart;
9092 insn_error = _("illegal operands");
9093 continue;
9094 }
9095 if (save_c)
9096 *(--s) = save_c;
9097 insn_error = _("illegal operands");
9098 return;
9099 }
9100 }
9101
9102 /* This routine assembles an instruction into its binary format when
9103 assembling for the mips16. As a side effect, it sets one of the
9104 global variables imm_reloc or offset_reloc to the type of
9105 relocation to do if one of the operands is an address expression.
9106 It also sets mips16_small and mips16_ext if the user explicitly
9107 requested a small or extended instruction. */
9108
9109 static void
9110 mips16_ip (char *str, struct mips_cl_insn *ip)
9111 {
9112 char *s;
9113 const char *args;
9114 struct mips_opcode *insn;
9115 char *argsstart;
9116 unsigned int regno;
9117 unsigned int lastregno = 0;
9118 char *s_reset;
9119 size_t i;
9120
9121 insn_error = NULL;
9122
9123 mips16_small = FALSE;
9124 mips16_ext = FALSE;
9125
9126 for (s = str; ISLOWER (*s); ++s)
9127 ;
9128 switch (*s)
9129 {
9130 case '\0':
9131 break;
9132
9133 case ' ':
9134 *s++ = '\0';
9135 break;
9136
9137 case '.':
9138 if (s[1] == 't' && s[2] == ' ')
9139 {
9140 *s = '\0';
9141 mips16_small = TRUE;
9142 s += 3;
9143 break;
9144 }
9145 else if (s[1] == 'e' && s[2] == ' ')
9146 {
9147 *s = '\0';
9148 mips16_ext = TRUE;
9149 s += 3;
9150 break;
9151 }
9152 /* Fall through. */
9153 default:
9154 insn_error = _("unknown opcode");
9155 return;
9156 }
9157
9158 if (mips_opts.noautoextend && ! mips16_ext)
9159 mips16_small = TRUE;
9160
9161 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
9162 {
9163 insn_error = _("unrecognized opcode");
9164 return;
9165 }
9166
9167 argsstart = s;
9168 for (;;)
9169 {
9170 assert (strcmp (insn->name, str) == 0);
9171
9172 ip->insn_mo = insn;
9173 ip->insn_opcode = insn->match;
9174 ip->use_extend = FALSE;
9175 imm_expr.X_op = O_absent;
9176 imm_reloc[0] = BFD_RELOC_UNUSED;
9177 imm_reloc[1] = BFD_RELOC_UNUSED;
9178 imm_reloc[2] = BFD_RELOC_UNUSED;
9179 imm2_expr.X_op = O_absent;
9180 offset_expr.X_op = O_absent;
9181 offset_reloc[0] = BFD_RELOC_UNUSED;
9182 offset_reloc[1] = BFD_RELOC_UNUSED;
9183 offset_reloc[2] = BFD_RELOC_UNUSED;
9184 for (args = insn->args; 1; ++args)
9185 {
9186 int c;
9187
9188 if (*s == ' ')
9189 ++s;
9190
9191 /* In this switch statement we call break if we did not find
9192 a match, continue if we did find a match, or return if we
9193 are done. */
9194
9195 c = *args;
9196 switch (c)
9197 {
9198 case '\0':
9199 if (*s == '\0')
9200 {
9201 /* Stuff the immediate value in now, if we can. */
9202 if (imm_expr.X_op == O_constant
9203 && *imm_reloc > BFD_RELOC_UNUSED
9204 && insn->pinfo != INSN_MACRO)
9205 {
9206 valueT tmp;
9207
9208 switch (*offset_reloc)
9209 {
9210 case BFD_RELOC_MIPS16_HI16_S:
9211 tmp = (imm_expr.X_add_number + 0x8000) >> 16;
9212 break;
9213
9214 case BFD_RELOC_MIPS16_HI16:
9215 tmp = imm_expr.X_add_number >> 16;
9216 break;
9217
9218 case BFD_RELOC_MIPS16_LO16:
9219 tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff)
9220 - 0x8000;
9221 break;
9222
9223 case BFD_RELOC_UNUSED:
9224 tmp = imm_expr.X_add_number;
9225 break;
9226
9227 default:
9228 internalError ();
9229 }
9230 *offset_reloc = BFD_RELOC_UNUSED;
9231
9232 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
9233 tmp, TRUE, mips16_small,
9234 mips16_ext, &ip->insn_opcode,
9235 &ip->use_extend, &ip->extend);
9236 imm_expr.X_op = O_absent;
9237 *imm_reloc = BFD_RELOC_UNUSED;
9238 }
9239
9240 return;
9241 }
9242 break;
9243
9244 case ',':
9245 if (*s++ == c)
9246 continue;
9247 s--;
9248 switch (*++args)
9249 {
9250 case 'v':
9251 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
9252 continue;
9253 case 'w':
9254 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
9255 continue;
9256 }
9257 break;
9258
9259 case '(':
9260 case ')':
9261 if (*s++ == c)
9262 continue;
9263 break;
9264
9265 case 'v':
9266 case 'w':
9267 if (s[0] != '$')
9268 {
9269 if (c == 'v')
9270 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
9271 else
9272 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
9273 ++args;
9274 continue;
9275 }
9276 /* Fall through. */
9277 case 'x':
9278 case 'y':
9279 case 'z':
9280 case 'Z':
9281 case '0':
9282 case 'S':
9283 case 'R':
9284 case 'X':
9285 case 'Y':
9286 if (s[0] != '$')
9287 break;
9288 s_reset = s;
9289 if (ISDIGIT (s[1]))
9290 {
9291 ++s;
9292 regno = 0;
9293 do
9294 {
9295 regno *= 10;
9296 regno += *s - '0';
9297 ++s;
9298 }
9299 while (ISDIGIT (*s));
9300 if (regno > 31)
9301 {
9302 as_bad (_("invalid register number (%d)"), regno);
9303 regno = 2;
9304 }
9305 }
9306 else
9307 {
9308 if (s[1] == 'r' && s[2] == 'a')
9309 {
9310 s += 3;
9311 regno = RA;
9312 }
9313 else if (s[1] == 'f' && s[2] == 'p')
9314 {
9315 s += 3;
9316 regno = FP;
9317 }
9318 else if (s[1] == 's' && s[2] == 'p')
9319 {
9320 s += 3;
9321 regno = SP;
9322 }
9323 else if (s[1] == 'g' && s[2] == 'p')
9324 {
9325 s += 3;
9326 regno = GP;
9327 }
9328 else if (s[1] == 'a' && s[2] == 't')
9329 {
9330 s += 3;
9331 regno = AT;
9332 }
9333 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
9334 {
9335 s += 4;
9336 regno = KT0;
9337 }
9338 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
9339 {
9340 s += 4;
9341 regno = KT1;
9342 }
9343 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
9344 {
9345 s += 5;
9346 regno = ZERO;
9347 }
9348 else
9349 break;
9350 }
9351
9352 if (*s == ' ')
9353 ++s;
9354 if (args[1] != *s)
9355 {
9356 if (c == 'v' || c == 'w')
9357 {
9358 regno = mips16_to_32_reg_map[lastregno];
9359 s = s_reset;
9360 ++args;
9361 }
9362 }
9363
9364 switch (c)
9365 {
9366 case 'x':
9367 case 'y':
9368 case 'z':
9369 case 'v':
9370 case 'w':
9371 case 'Z':
9372 regno = mips32_to_16_reg_map[regno];
9373 break;
9374
9375 case '0':
9376 if (regno != 0)
9377 regno = ILLEGAL_REG;
9378 break;
9379
9380 case 'S':
9381 if (regno != SP)
9382 regno = ILLEGAL_REG;
9383 break;
9384
9385 case 'R':
9386 if (regno != RA)
9387 regno = ILLEGAL_REG;
9388 break;
9389
9390 case 'X':
9391 case 'Y':
9392 if (regno == AT && ! mips_opts.noat)
9393 as_warn (_("used $at without \".set noat\""));
9394 break;
9395
9396 default:
9397 internalError ();
9398 }
9399
9400 if (regno == ILLEGAL_REG)
9401 break;
9402
9403 switch (c)
9404 {
9405 case 'x':
9406 case 'v':
9407 ip->insn_opcode |= regno << MIPS16OP_SH_RX;
9408 break;
9409 case 'y':
9410 case 'w':
9411 ip->insn_opcode |= regno << MIPS16OP_SH_RY;
9412 break;
9413 case 'z':
9414 ip->insn_opcode |= regno << MIPS16OP_SH_RZ;
9415 break;
9416 case 'Z':
9417 ip->insn_opcode |= regno << MIPS16OP_SH_MOVE32Z;
9418 case '0':
9419 case 'S':
9420 case 'R':
9421 break;
9422 case 'X':
9423 ip->insn_opcode |= regno << MIPS16OP_SH_REGR32;
9424 break;
9425 case 'Y':
9426 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
9427 ip->insn_opcode |= regno << MIPS16OP_SH_REG32R;
9428 break;
9429 default:
9430 internalError ();
9431 }
9432
9433 lastregno = regno;
9434 continue;
9435
9436 case 'P':
9437 if (strncmp (s, "$pc", 3) == 0)
9438 {
9439 s += 3;
9440 continue;
9441 }
9442 break;
9443
9444 case '5':
9445 case 'H':
9446 case 'W':
9447 case 'D':
9448 case 'j':
9449 case 'V':
9450 case 'C':
9451 case 'U':
9452 case 'k':
9453 case 'K':
9454 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
9455 if (i > 0)
9456 {
9457 if (imm_expr.X_op != O_constant)
9458 {
9459 mips16_ext = TRUE;
9460 ip->use_extend = TRUE;
9461 ip->extend = 0;
9462 }
9463 else
9464 {
9465 /* We need to relax this instruction. */
9466 *offset_reloc = *imm_reloc;
9467 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9468 }
9469 s = expr_end;
9470 continue;
9471 }
9472 *imm_reloc = BFD_RELOC_UNUSED;
9473 /* Fall through. */
9474 case '<':
9475 case '>':
9476 case '[':
9477 case ']':
9478 case '4':
9479 case '8':
9480 my_getExpression (&imm_expr, s);
9481 if (imm_expr.X_op == O_register)
9482 {
9483 /* What we thought was an expression turned out to
9484 be a register. */
9485
9486 if (s[0] == '(' && args[1] == '(')
9487 {
9488 /* It looks like the expression was omitted
9489 before a register indirection, which means
9490 that the expression is implicitly zero. We
9491 still set up imm_expr, so that we handle
9492 explicit extensions correctly. */
9493 imm_expr.X_op = O_constant;
9494 imm_expr.X_add_number = 0;
9495 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9496 continue;
9497 }
9498
9499 break;
9500 }
9501
9502 /* We need to relax this instruction. */
9503 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9504 s = expr_end;
9505 continue;
9506
9507 case 'p':
9508 case 'q':
9509 case 'A':
9510 case 'B':
9511 case 'E':
9512 /* We use offset_reloc rather than imm_reloc for the PC
9513 relative operands. This lets macros with both
9514 immediate and address operands work correctly. */
9515 my_getExpression (&offset_expr, s);
9516
9517 if (offset_expr.X_op == O_register)
9518 break;
9519
9520 /* We need to relax this instruction. */
9521 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
9522 s = expr_end;
9523 continue;
9524
9525 case '6': /* break code */
9526 my_getExpression (&imm_expr, s);
9527 check_absolute_expr (ip, &imm_expr);
9528 if ((unsigned long) imm_expr.X_add_number > 63)
9529 {
9530 as_warn (_("Invalid value for `%s' (%lu)"),
9531 ip->insn_mo->name,
9532 (unsigned long) imm_expr.X_add_number);
9533 imm_expr.X_add_number &= 0x3f;
9534 }
9535 ip->insn_opcode |= imm_expr.X_add_number << MIPS16OP_SH_IMM6;
9536 imm_expr.X_op = O_absent;
9537 s = expr_end;
9538 continue;
9539
9540 case 'a': /* 26 bit address */
9541 my_getExpression (&offset_expr, s);
9542 s = expr_end;
9543 *offset_reloc = BFD_RELOC_MIPS16_JMP;
9544 ip->insn_opcode <<= 16;
9545 continue;
9546
9547 case 'l': /* register list for entry macro */
9548 case 'L': /* register list for exit macro */
9549 {
9550 int mask;
9551
9552 if (c == 'l')
9553 mask = 0;
9554 else
9555 mask = 7 << 3;
9556 while (*s != '\0')
9557 {
9558 int freg, reg1, reg2;
9559
9560 while (*s == ' ' || *s == ',')
9561 ++s;
9562 if (*s != '$')
9563 {
9564 as_bad (_("can't parse register list"));
9565 break;
9566 }
9567 ++s;
9568 if (*s != 'f')
9569 freg = 0;
9570 else
9571 {
9572 freg = 1;
9573 ++s;
9574 }
9575 reg1 = 0;
9576 while (ISDIGIT (*s))
9577 {
9578 reg1 *= 10;
9579 reg1 += *s - '0';
9580 ++s;
9581 }
9582 if (*s == ' ')
9583 ++s;
9584 if (*s != '-')
9585 reg2 = reg1;
9586 else
9587 {
9588 ++s;
9589 if (*s != '$')
9590 break;
9591 ++s;
9592 if (freg)
9593 {
9594 if (*s == 'f')
9595 ++s;
9596 else
9597 {
9598 as_bad (_("invalid register list"));
9599 break;
9600 }
9601 }
9602 reg2 = 0;
9603 while (ISDIGIT (*s))
9604 {
9605 reg2 *= 10;
9606 reg2 += *s - '0';
9607 ++s;
9608 }
9609 }
9610 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
9611 {
9612 mask &= ~ (7 << 3);
9613 mask |= 5 << 3;
9614 }
9615 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
9616 {
9617 mask &= ~ (7 << 3);
9618 mask |= 6 << 3;
9619 }
9620 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
9621 mask |= (reg2 - 3) << 3;
9622 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
9623 mask |= (reg2 - 15) << 1;
9624 else if (reg1 == RA && reg2 == RA)
9625 mask |= 1;
9626 else
9627 {
9628 as_bad (_("invalid register list"));
9629 break;
9630 }
9631 }
9632 /* The mask is filled in in the opcode table for the
9633 benefit of the disassembler. We remove it before
9634 applying the actual mask. */
9635 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
9636 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
9637 }
9638 continue;
9639
9640 case 'e': /* extend code */
9641 my_getExpression (&imm_expr, s);
9642 check_absolute_expr (ip, &imm_expr);
9643 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
9644 {
9645 as_warn (_("Invalid value for `%s' (%lu)"),
9646 ip->insn_mo->name,
9647 (unsigned long) imm_expr.X_add_number);
9648 imm_expr.X_add_number &= 0x7ff;
9649 }
9650 ip->insn_opcode |= imm_expr.X_add_number;
9651 imm_expr.X_op = O_absent;
9652 s = expr_end;
9653 continue;
9654
9655 default:
9656 internalError ();
9657 }
9658 break;
9659 }
9660
9661 /* Args don't match. */
9662 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
9663 strcmp (insn->name, insn[1].name) == 0)
9664 {
9665 ++insn;
9666 s = argsstart;
9667 continue;
9668 }
9669
9670 insn_error = _("illegal operands");
9671
9672 return;
9673 }
9674 }
9675
9676 /* This structure holds information we know about a mips16 immediate
9677 argument type. */
9678
9679 struct mips16_immed_operand
9680 {
9681 /* The type code used in the argument string in the opcode table. */
9682 int type;
9683 /* The number of bits in the short form of the opcode. */
9684 int nbits;
9685 /* The number of bits in the extended form of the opcode. */
9686 int extbits;
9687 /* The amount by which the short form is shifted when it is used;
9688 for example, the sw instruction has a shift count of 2. */
9689 int shift;
9690 /* The amount by which the short form is shifted when it is stored
9691 into the instruction code. */
9692 int op_shift;
9693 /* Non-zero if the short form is unsigned. */
9694 int unsp;
9695 /* Non-zero if the extended form is unsigned. */
9696 int extu;
9697 /* Non-zero if the value is PC relative. */
9698 int pcrel;
9699 };
9700
9701 /* The mips16 immediate operand types. */
9702
9703 static const struct mips16_immed_operand mips16_immed_operands[] =
9704 {
9705 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9706 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9707 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9708 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9709 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
9710 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
9711 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
9712 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
9713 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
9714 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
9715 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
9716 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
9717 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
9718 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
9719 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
9720 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
9721 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9722 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9723 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
9724 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
9725 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
9726 };
9727
9728 #define MIPS16_NUM_IMMED \
9729 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
9730
9731 /* Handle a mips16 instruction with an immediate value. This or's the
9732 small immediate value into *INSN. It sets *USE_EXTEND to indicate
9733 whether an extended value is needed; if one is needed, it sets
9734 *EXTEND to the value. The argument type is TYPE. The value is VAL.
9735 If SMALL is true, an unextended opcode was explicitly requested.
9736 If EXT is true, an extended opcode was explicitly requested. If
9737 WARN is true, warn if EXT does not match reality. */
9738
9739 static void
9740 mips16_immed (char *file, unsigned int line, int type, offsetT val,
9741 bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
9742 unsigned long *insn, bfd_boolean *use_extend,
9743 unsigned short *extend)
9744 {
9745 register const struct mips16_immed_operand *op;
9746 int mintiny, maxtiny;
9747 bfd_boolean needext;
9748
9749 op = mips16_immed_operands;
9750 while (op->type != type)
9751 {
9752 ++op;
9753 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
9754 }
9755
9756 if (op->unsp)
9757 {
9758 if (type == '<' || type == '>' || type == '[' || type == ']')
9759 {
9760 mintiny = 1;
9761 maxtiny = 1 << op->nbits;
9762 }
9763 else
9764 {
9765 mintiny = 0;
9766 maxtiny = (1 << op->nbits) - 1;
9767 }
9768 }
9769 else
9770 {
9771 mintiny = - (1 << (op->nbits - 1));
9772 maxtiny = (1 << (op->nbits - 1)) - 1;
9773 }
9774
9775 /* Branch offsets have an implicit 0 in the lowest bit. */
9776 if (type == 'p' || type == 'q')
9777 val /= 2;
9778
9779 if ((val & ((1 << op->shift) - 1)) != 0
9780 || val < (mintiny << op->shift)
9781 || val > (maxtiny << op->shift))
9782 needext = TRUE;
9783 else
9784 needext = FALSE;
9785
9786 if (warn && ext && ! needext)
9787 as_warn_where (file, line,
9788 _("extended operand requested but not required"));
9789 if (small && needext)
9790 as_bad_where (file, line, _("invalid unextended operand value"));
9791
9792 if (small || (! ext && ! needext))
9793 {
9794 int insnval;
9795
9796 *use_extend = FALSE;
9797 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
9798 insnval <<= op->op_shift;
9799 *insn |= insnval;
9800 }
9801 else
9802 {
9803 long minext, maxext;
9804 int extval;
9805
9806 if (op->extu)
9807 {
9808 minext = 0;
9809 maxext = (1 << op->extbits) - 1;
9810 }
9811 else
9812 {
9813 minext = - (1 << (op->extbits - 1));
9814 maxext = (1 << (op->extbits - 1)) - 1;
9815 }
9816 if (val < minext || val > maxext)
9817 as_bad_where (file, line,
9818 _("operand value out of range for instruction"));
9819
9820 *use_extend = TRUE;
9821 if (op->extbits == 16)
9822 {
9823 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
9824 val &= 0x1f;
9825 }
9826 else if (op->extbits == 15)
9827 {
9828 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
9829 val &= 0xf;
9830 }
9831 else
9832 {
9833 extval = ((val & 0x1f) << 6) | (val & 0x20);
9834 val = 0;
9835 }
9836
9837 *extend = (unsigned short) extval;
9838 *insn |= val;
9839 }
9840 }
9841 \f
9842 struct percent_op_match
9843 {
9844 const char *str;
9845 bfd_reloc_code_real_type reloc;
9846 };
9847
9848 static const struct percent_op_match mips_percent_op[] =
9849 {
9850 {"%lo", BFD_RELOC_LO16},
9851 #ifdef OBJ_ELF
9852 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
9853 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
9854 {"%call16", BFD_RELOC_MIPS_CALL16},
9855 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
9856 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
9857 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
9858 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
9859 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
9860 {"%got", BFD_RELOC_MIPS_GOT16},
9861 {"%gp_rel", BFD_RELOC_GPREL16},
9862 {"%half", BFD_RELOC_16},
9863 {"%highest", BFD_RELOC_MIPS_HIGHEST},
9864 {"%higher", BFD_RELOC_MIPS_HIGHER},
9865 {"%neg", BFD_RELOC_MIPS_SUB},
9866 #endif
9867 {"%hi", BFD_RELOC_HI16_S}
9868 };
9869
9870 static const struct percent_op_match mips16_percent_op[] =
9871 {
9872 {"%lo", BFD_RELOC_MIPS16_LO16},
9873 {"%gprel", BFD_RELOC_MIPS16_GPREL},
9874 {"%hi", BFD_RELOC_MIPS16_HI16_S}
9875 };
9876
9877
9878 /* Return true if *STR points to a relocation operator. When returning true,
9879 move *STR over the operator and store its relocation code in *RELOC.
9880 Leave both *STR and *RELOC alone when returning false. */
9881
9882 static bfd_boolean
9883 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
9884 {
9885 const struct percent_op_match *percent_op;
9886 size_t limit, i;
9887
9888 if (mips_opts.mips16)
9889 {
9890 percent_op = mips16_percent_op;
9891 limit = ARRAY_SIZE (mips16_percent_op);
9892 }
9893 else
9894 {
9895 percent_op = mips_percent_op;
9896 limit = ARRAY_SIZE (mips_percent_op);
9897 }
9898
9899 for (i = 0; i < limit; i++)
9900 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
9901 {
9902 *str += strlen (percent_op[i].str);
9903 *reloc = percent_op[i].reloc;
9904
9905 /* Check whether the output BFD supports this relocation.
9906 If not, issue an error and fall back on something safe. */
9907 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
9908 {
9909 as_bad ("relocation %s isn't supported by the current ABI",
9910 percent_op[i].str);
9911 *reloc = BFD_RELOC_UNUSED;
9912 }
9913 return TRUE;
9914 }
9915 return FALSE;
9916 }
9917
9918
9919 /* Parse string STR as a 16-bit relocatable operand. Store the
9920 expression in *EP and the relocations in the array starting
9921 at RELOC. Return the number of relocation operators used.
9922
9923 On exit, EXPR_END points to the first character after the expression. */
9924
9925 static size_t
9926 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
9927 char *str)
9928 {
9929 bfd_reloc_code_real_type reversed_reloc[3];
9930 size_t reloc_index, i;
9931 int crux_depth, str_depth;
9932 char *crux;
9933
9934 /* Search for the start of the main expression, recoding relocations
9935 in REVERSED_RELOC. End the loop with CRUX pointing to the start
9936 of the main expression and with CRUX_DEPTH containing the number
9937 of open brackets at that point. */
9938 reloc_index = -1;
9939 str_depth = 0;
9940 do
9941 {
9942 reloc_index++;
9943 crux = str;
9944 crux_depth = str_depth;
9945
9946 /* Skip over whitespace and brackets, keeping count of the number
9947 of brackets. */
9948 while (*str == ' ' || *str == '\t' || *str == '(')
9949 if (*str++ == '(')
9950 str_depth++;
9951 }
9952 while (*str == '%'
9953 && reloc_index < (HAVE_NEWABI ? 3 : 1)
9954 && parse_relocation (&str, &reversed_reloc[reloc_index]));
9955
9956 my_getExpression (ep, crux);
9957 str = expr_end;
9958
9959 /* Match every open bracket. */
9960 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
9961 if (*str++ == ')')
9962 crux_depth--;
9963
9964 if (crux_depth > 0)
9965 as_bad ("unclosed '('");
9966
9967 expr_end = str;
9968
9969 if (reloc_index != 0)
9970 {
9971 prev_reloc_op_frag = frag_now;
9972 for (i = 0; i < reloc_index; i++)
9973 reloc[i] = reversed_reloc[reloc_index - 1 - i];
9974 }
9975
9976 return reloc_index;
9977 }
9978
9979 static void
9980 my_getExpression (expressionS *ep, char *str)
9981 {
9982 char *save_in;
9983 valueT val;
9984
9985 save_in = input_line_pointer;
9986 input_line_pointer = str;
9987 expression (ep);
9988 expr_end = input_line_pointer;
9989 input_line_pointer = save_in;
9990
9991 /* If we are in mips16 mode, and this is an expression based on `.',
9992 then we bump the value of the symbol by 1 since that is how other
9993 text symbols are handled. We don't bother to handle complex
9994 expressions, just `.' plus or minus a constant. */
9995 if (mips_opts.mips16
9996 && ep->X_op == O_symbol
9997 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
9998 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
9999 && symbol_get_frag (ep->X_add_symbol) == frag_now
10000 && symbol_constant_p (ep->X_add_symbol)
10001 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
10002 S_SET_VALUE (ep->X_add_symbol, val + 1);
10003 }
10004
10005 /* Turn a string in input_line_pointer into a floating point constant
10006 of type TYPE, and store the appropriate bytes in *LITP. The number
10007 of LITTLENUMS emitted is stored in *SIZEP. An error message is
10008 returned, or NULL on OK. */
10009
10010 char *
10011 md_atof (int type, char *litP, int *sizeP)
10012 {
10013 int prec;
10014 LITTLENUM_TYPE words[4];
10015 char *t;
10016 int i;
10017
10018 switch (type)
10019 {
10020 case 'f':
10021 prec = 2;
10022 break;
10023
10024 case 'd':
10025 prec = 4;
10026 break;
10027
10028 default:
10029 *sizeP = 0;
10030 return _("bad call to md_atof");
10031 }
10032
10033 t = atof_ieee (input_line_pointer, type, words);
10034 if (t)
10035 input_line_pointer = t;
10036
10037 *sizeP = prec * 2;
10038
10039 if (! target_big_endian)
10040 {
10041 for (i = prec - 1; i >= 0; i--)
10042 {
10043 md_number_to_chars (litP, words[i], 2);
10044 litP += 2;
10045 }
10046 }
10047 else
10048 {
10049 for (i = 0; i < prec; i++)
10050 {
10051 md_number_to_chars (litP, words[i], 2);
10052 litP += 2;
10053 }
10054 }
10055
10056 return NULL;
10057 }
10058
10059 void
10060 md_number_to_chars (char *buf, valueT val, int n)
10061 {
10062 if (target_big_endian)
10063 number_to_chars_bigendian (buf, val, n);
10064 else
10065 number_to_chars_littleendian (buf, val, n);
10066 }
10067 \f
10068 #ifdef OBJ_ELF
10069 static int support_64bit_objects(void)
10070 {
10071 const char **list, **l;
10072 int yes;
10073
10074 list = bfd_target_list ();
10075 for (l = list; *l != NULL; l++)
10076 #ifdef TE_TMIPS
10077 /* This is traditional mips */
10078 if (strcmp (*l, "elf64-tradbigmips") == 0
10079 || strcmp (*l, "elf64-tradlittlemips") == 0)
10080 #else
10081 if (strcmp (*l, "elf64-bigmips") == 0
10082 || strcmp (*l, "elf64-littlemips") == 0)
10083 #endif
10084 break;
10085 yes = (*l != NULL);
10086 free (list);
10087 return yes;
10088 }
10089 #endif /* OBJ_ELF */
10090
10091 const char *md_shortopts = "O::g::G:";
10092
10093 struct option md_longopts[] =
10094 {
10095 /* Options which specify architecture. */
10096 #define OPTION_ARCH_BASE (OPTION_MD_BASE)
10097 #define OPTION_MARCH (OPTION_ARCH_BASE + 0)
10098 {"march", required_argument, NULL, OPTION_MARCH},
10099 #define OPTION_MTUNE (OPTION_ARCH_BASE + 1)
10100 {"mtune", required_argument, NULL, OPTION_MTUNE},
10101 #define OPTION_MIPS1 (OPTION_ARCH_BASE + 2)
10102 {"mips0", no_argument, NULL, OPTION_MIPS1},
10103 {"mips1", no_argument, NULL, OPTION_MIPS1},
10104 #define OPTION_MIPS2 (OPTION_ARCH_BASE + 3)
10105 {"mips2", no_argument, NULL, OPTION_MIPS2},
10106 #define OPTION_MIPS3 (OPTION_ARCH_BASE + 4)
10107 {"mips3", no_argument, NULL, OPTION_MIPS3},
10108 #define OPTION_MIPS4 (OPTION_ARCH_BASE + 5)
10109 {"mips4", no_argument, NULL, OPTION_MIPS4},
10110 #define OPTION_MIPS5 (OPTION_ARCH_BASE + 6)
10111 {"mips5", no_argument, NULL, OPTION_MIPS5},
10112 #define OPTION_MIPS32 (OPTION_ARCH_BASE + 7)
10113 {"mips32", no_argument, NULL, OPTION_MIPS32},
10114 #define OPTION_MIPS64 (OPTION_ARCH_BASE + 8)
10115 {"mips64", no_argument, NULL, OPTION_MIPS64},
10116 #define OPTION_MIPS32R2 (OPTION_ARCH_BASE + 9)
10117 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
10118 #define OPTION_MIPS64R2 (OPTION_ARCH_BASE + 10)
10119 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
10120
10121 /* Options which specify Application Specific Extensions (ASEs). */
10122 #define OPTION_ASE_BASE (OPTION_ARCH_BASE + 11)
10123 #define OPTION_MIPS16 (OPTION_ASE_BASE + 0)
10124 {"mips16", no_argument, NULL, OPTION_MIPS16},
10125 #define OPTION_NO_MIPS16 (OPTION_ASE_BASE + 1)
10126 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
10127 #define OPTION_MIPS3D (OPTION_ASE_BASE + 2)
10128 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
10129 #define OPTION_NO_MIPS3D (OPTION_ASE_BASE + 3)
10130 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
10131 #define OPTION_MDMX (OPTION_ASE_BASE + 4)
10132 {"mdmx", no_argument, NULL, OPTION_MDMX},
10133 #define OPTION_NO_MDMX (OPTION_ASE_BASE + 5)
10134 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
10135
10136 /* Old-style architecture options. Don't add more of these. */
10137 #define OPTION_COMPAT_ARCH_BASE (OPTION_ASE_BASE + 6)
10138 #define OPTION_M4650 (OPTION_COMPAT_ARCH_BASE + 0)
10139 {"m4650", no_argument, NULL, OPTION_M4650},
10140 #define OPTION_NO_M4650 (OPTION_COMPAT_ARCH_BASE + 1)
10141 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
10142 #define OPTION_M4010 (OPTION_COMPAT_ARCH_BASE + 2)
10143 {"m4010", no_argument, NULL, OPTION_M4010},
10144 #define OPTION_NO_M4010 (OPTION_COMPAT_ARCH_BASE + 3)
10145 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
10146 #define OPTION_M4100 (OPTION_COMPAT_ARCH_BASE + 4)
10147 {"m4100", no_argument, NULL, OPTION_M4100},
10148 #define OPTION_NO_M4100 (OPTION_COMPAT_ARCH_BASE + 5)
10149 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
10150 #define OPTION_M3900 (OPTION_COMPAT_ARCH_BASE + 6)
10151 {"m3900", no_argument, NULL, OPTION_M3900},
10152 #define OPTION_NO_M3900 (OPTION_COMPAT_ARCH_BASE + 7)
10153 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
10154
10155 /* Options which enable bug fixes. */
10156 #define OPTION_FIX_BASE (OPTION_COMPAT_ARCH_BASE + 8)
10157 #define OPTION_M7000_HILO_FIX (OPTION_FIX_BASE + 0)
10158 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
10159 #define OPTION_MNO_7000_HILO_FIX (OPTION_FIX_BASE + 1)
10160 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
10161 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
10162 #define OPTION_FIX_VR4120 (OPTION_FIX_BASE + 2)
10163 #define OPTION_NO_FIX_VR4120 (OPTION_FIX_BASE + 3)
10164 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
10165 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
10166
10167 /* Miscellaneous options. */
10168 #define OPTION_MISC_BASE (OPTION_FIX_BASE + 4)
10169 #define OPTION_TRAP (OPTION_MISC_BASE + 0)
10170 {"trap", no_argument, NULL, OPTION_TRAP},
10171 {"no-break", no_argument, NULL, OPTION_TRAP},
10172 #define OPTION_BREAK (OPTION_MISC_BASE + 1)
10173 {"break", no_argument, NULL, OPTION_BREAK},
10174 {"no-trap", no_argument, NULL, OPTION_BREAK},
10175 #define OPTION_EB (OPTION_MISC_BASE + 2)
10176 {"EB", no_argument, NULL, OPTION_EB},
10177 #define OPTION_EL (OPTION_MISC_BASE + 3)
10178 {"EL", no_argument, NULL, OPTION_EL},
10179 #define OPTION_FP32 (OPTION_MISC_BASE + 4)
10180 {"mfp32", no_argument, NULL, OPTION_FP32},
10181 #define OPTION_GP32 (OPTION_MISC_BASE + 5)
10182 {"mgp32", no_argument, NULL, OPTION_GP32},
10183 #define OPTION_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 6)
10184 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
10185 #define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 7)
10186 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
10187 #define OPTION_FP64 (OPTION_MISC_BASE + 8)
10188 {"mfp64", no_argument, NULL, OPTION_FP64},
10189 #define OPTION_GP64 (OPTION_MISC_BASE + 9)
10190 {"mgp64", no_argument, NULL, OPTION_GP64},
10191 #define OPTION_RELAX_BRANCH (OPTION_MISC_BASE + 10)
10192 #define OPTION_NO_RELAX_BRANCH (OPTION_MISC_BASE + 11)
10193 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
10194 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
10195 #define OPTION_MSHARED (OPTION_MISC_BASE + 12)
10196 #define OPTION_MNO_SHARED (OPTION_MISC_BASE + 13)
10197 {"mshared", no_argument, NULL, OPTION_MSHARED},
10198 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
10199
10200 /* ELF-specific options. */
10201 #ifdef OBJ_ELF
10202 #define OPTION_ELF_BASE (OPTION_MISC_BASE + 14)
10203 #define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
10204 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
10205 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
10206 #define OPTION_NON_SHARED (OPTION_ELF_BASE + 1)
10207 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
10208 #define OPTION_XGOT (OPTION_ELF_BASE + 2)
10209 {"xgot", no_argument, NULL, OPTION_XGOT},
10210 #define OPTION_MABI (OPTION_ELF_BASE + 3)
10211 {"mabi", required_argument, NULL, OPTION_MABI},
10212 #define OPTION_32 (OPTION_ELF_BASE + 4)
10213 {"32", no_argument, NULL, OPTION_32},
10214 #define OPTION_N32 (OPTION_ELF_BASE + 5)
10215 {"n32", no_argument, NULL, OPTION_N32},
10216 #define OPTION_64 (OPTION_ELF_BASE + 6)
10217 {"64", no_argument, NULL, OPTION_64},
10218 #define OPTION_MDEBUG (OPTION_ELF_BASE + 7)
10219 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
10220 #define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 8)
10221 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
10222 #define OPTION_PDR (OPTION_ELF_BASE + 9)
10223 {"mpdr", no_argument, NULL, OPTION_PDR},
10224 #define OPTION_NO_PDR (OPTION_ELF_BASE + 10)
10225 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
10226 #endif /* OBJ_ELF */
10227
10228 {NULL, no_argument, NULL, 0}
10229 };
10230 size_t md_longopts_size = sizeof (md_longopts);
10231
10232 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
10233 NEW_VALUE. Warn if another value was already specified. Note:
10234 we have to defer parsing the -march and -mtune arguments in order
10235 to handle 'from-abi' correctly, since the ABI might be specified
10236 in a later argument. */
10237
10238 static void
10239 mips_set_option_string (const char **string_ptr, const char *new_value)
10240 {
10241 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
10242 as_warn (_("A different %s was already specified, is now %s"),
10243 string_ptr == &mips_arch_string ? "-march" : "-mtune",
10244 new_value);
10245
10246 *string_ptr = new_value;
10247 }
10248
10249 int
10250 md_parse_option (int c, char *arg)
10251 {
10252 switch (c)
10253 {
10254 case OPTION_CONSTRUCT_FLOATS:
10255 mips_disable_float_construction = 0;
10256 break;
10257
10258 case OPTION_NO_CONSTRUCT_FLOATS:
10259 mips_disable_float_construction = 1;
10260 break;
10261
10262 case OPTION_TRAP:
10263 mips_trap = 1;
10264 break;
10265
10266 case OPTION_BREAK:
10267 mips_trap = 0;
10268 break;
10269
10270 case OPTION_EB:
10271 target_big_endian = 1;
10272 break;
10273
10274 case OPTION_EL:
10275 target_big_endian = 0;
10276 break;
10277
10278 case 'O':
10279 if (arg && arg[1] == '0')
10280 mips_optimize = 1;
10281 else
10282 mips_optimize = 2;
10283 break;
10284
10285 case 'g':
10286 if (arg == NULL)
10287 mips_debug = 2;
10288 else
10289 mips_debug = atoi (arg);
10290 /* When the MIPS assembler sees -g or -g2, it does not do
10291 optimizations which limit full symbolic debugging. We take
10292 that to be equivalent to -O0. */
10293 if (mips_debug == 2)
10294 mips_optimize = 1;
10295 break;
10296
10297 case OPTION_MIPS1:
10298 file_mips_isa = ISA_MIPS1;
10299 break;
10300
10301 case OPTION_MIPS2:
10302 file_mips_isa = ISA_MIPS2;
10303 break;
10304
10305 case OPTION_MIPS3:
10306 file_mips_isa = ISA_MIPS3;
10307 break;
10308
10309 case OPTION_MIPS4:
10310 file_mips_isa = ISA_MIPS4;
10311 break;
10312
10313 case OPTION_MIPS5:
10314 file_mips_isa = ISA_MIPS5;
10315 break;
10316
10317 case OPTION_MIPS32:
10318 file_mips_isa = ISA_MIPS32;
10319 break;
10320
10321 case OPTION_MIPS32R2:
10322 file_mips_isa = ISA_MIPS32R2;
10323 break;
10324
10325 case OPTION_MIPS64R2:
10326 file_mips_isa = ISA_MIPS64R2;
10327 break;
10328
10329 case OPTION_MIPS64:
10330 file_mips_isa = ISA_MIPS64;
10331 break;
10332
10333 case OPTION_MTUNE:
10334 mips_set_option_string (&mips_tune_string, arg);
10335 break;
10336
10337 case OPTION_MARCH:
10338 mips_set_option_string (&mips_arch_string, arg);
10339 break;
10340
10341 case OPTION_M4650:
10342 mips_set_option_string (&mips_arch_string, "4650");
10343 mips_set_option_string (&mips_tune_string, "4650");
10344 break;
10345
10346 case OPTION_NO_M4650:
10347 break;
10348
10349 case OPTION_M4010:
10350 mips_set_option_string (&mips_arch_string, "4010");
10351 mips_set_option_string (&mips_tune_string, "4010");
10352 break;
10353
10354 case OPTION_NO_M4010:
10355 break;
10356
10357 case OPTION_M4100:
10358 mips_set_option_string (&mips_arch_string, "4100");
10359 mips_set_option_string (&mips_tune_string, "4100");
10360 break;
10361
10362 case OPTION_NO_M4100:
10363 break;
10364
10365 case OPTION_M3900:
10366 mips_set_option_string (&mips_arch_string, "3900");
10367 mips_set_option_string (&mips_tune_string, "3900");
10368 break;
10369
10370 case OPTION_NO_M3900:
10371 break;
10372
10373 case OPTION_MDMX:
10374 mips_opts.ase_mdmx = 1;
10375 break;
10376
10377 case OPTION_NO_MDMX:
10378 mips_opts.ase_mdmx = 0;
10379 break;
10380
10381 case OPTION_MIPS16:
10382 mips_opts.mips16 = 1;
10383 mips_no_prev_insn (FALSE);
10384 break;
10385
10386 case OPTION_NO_MIPS16:
10387 mips_opts.mips16 = 0;
10388 mips_no_prev_insn (FALSE);
10389 break;
10390
10391 case OPTION_MIPS3D:
10392 mips_opts.ase_mips3d = 1;
10393 break;
10394
10395 case OPTION_NO_MIPS3D:
10396 mips_opts.ase_mips3d = 0;
10397 break;
10398
10399 case OPTION_FIX_VR4120:
10400 mips_fix_vr4120 = 1;
10401 break;
10402
10403 case OPTION_NO_FIX_VR4120:
10404 mips_fix_vr4120 = 0;
10405 break;
10406
10407 case OPTION_RELAX_BRANCH:
10408 mips_relax_branch = 1;
10409 break;
10410
10411 case OPTION_NO_RELAX_BRANCH:
10412 mips_relax_branch = 0;
10413 break;
10414
10415 case OPTION_MSHARED:
10416 mips_in_shared = TRUE;
10417 break;
10418
10419 case OPTION_MNO_SHARED:
10420 mips_in_shared = FALSE;
10421 break;
10422
10423 #ifdef OBJ_ELF
10424 /* When generating ELF code, we permit -KPIC and -call_shared to
10425 select SVR4_PIC, and -non_shared to select no PIC. This is
10426 intended to be compatible with Irix 5. */
10427 case OPTION_CALL_SHARED:
10428 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10429 {
10430 as_bad (_("-call_shared is supported only for ELF format"));
10431 return 0;
10432 }
10433 mips_pic = SVR4_PIC;
10434 mips_abicalls = TRUE;
10435 if (g_switch_seen && g_switch_value != 0)
10436 {
10437 as_bad (_("-G may not be used with SVR4 PIC code"));
10438 return 0;
10439 }
10440 g_switch_value = 0;
10441 break;
10442
10443 case OPTION_NON_SHARED:
10444 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10445 {
10446 as_bad (_("-non_shared is supported only for ELF format"));
10447 return 0;
10448 }
10449 mips_pic = NO_PIC;
10450 mips_abicalls = FALSE;
10451 break;
10452
10453 /* The -xgot option tells the assembler to use 32 offsets when
10454 accessing the got in SVR4_PIC mode. It is for Irix
10455 compatibility. */
10456 case OPTION_XGOT:
10457 mips_big_got = 1;
10458 break;
10459 #endif /* OBJ_ELF */
10460
10461 case 'G':
10462 if (mips_pic == SVR4_PIC)
10463 {
10464 as_bad (_("-G may not be used with SVR4 PIC code"));
10465 return 0;
10466 }
10467 else
10468 g_switch_value = atoi (arg);
10469 g_switch_seen = 1;
10470 break;
10471
10472 #ifdef OBJ_ELF
10473 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
10474 and -mabi=64. */
10475 case OPTION_32:
10476 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10477 {
10478 as_bad (_("-32 is supported for ELF format only"));
10479 return 0;
10480 }
10481 mips_abi = O32_ABI;
10482 break;
10483
10484 case OPTION_N32:
10485 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10486 {
10487 as_bad (_("-n32 is supported for ELF format only"));
10488 return 0;
10489 }
10490 mips_abi = N32_ABI;
10491 break;
10492
10493 case OPTION_64:
10494 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10495 {
10496 as_bad (_("-64 is supported for ELF format only"));
10497 return 0;
10498 }
10499 mips_abi = N64_ABI;
10500 if (! support_64bit_objects())
10501 as_fatal (_("No compiled in support for 64 bit object file format"));
10502 break;
10503 #endif /* OBJ_ELF */
10504
10505 case OPTION_GP32:
10506 file_mips_gp32 = 1;
10507 break;
10508
10509 case OPTION_GP64:
10510 file_mips_gp32 = 0;
10511 break;
10512
10513 case OPTION_FP32:
10514 file_mips_fp32 = 1;
10515 break;
10516
10517 case OPTION_FP64:
10518 file_mips_fp32 = 0;
10519 break;
10520
10521 #ifdef OBJ_ELF
10522 case OPTION_MABI:
10523 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10524 {
10525 as_bad (_("-mabi is supported for ELF format only"));
10526 return 0;
10527 }
10528 if (strcmp (arg, "32") == 0)
10529 mips_abi = O32_ABI;
10530 else if (strcmp (arg, "o64") == 0)
10531 mips_abi = O64_ABI;
10532 else if (strcmp (arg, "n32") == 0)
10533 mips_abi = N32_ABI;
10534 else if (strcmp (arg, "64") == 0)
10535 {
10536 mips_abi = N64_ABI;
10537 if (! support_64bit_objects())
10538 as_fatal (_("No compiled in support for 64 bit object file "
10539 "format"));
10540 }
10541 else if (strcmp (arg, "eabi") == 0)
10542 mips_abi = EABI_ABI;
10543 else
10544 {
10545 as_fatal (_("invalid abi -mabi=%s"), arg);
10546 return 0;
10547 }
10548 break;
10549 #endif /* OBJ_ELF */
10550
10551 case OPTION_M7000_HILO_FIX:
10552 mips_7000_hilo_fix = TRUE;
10553 break;
10554
10555 case OPTION_MNO_7000_HILO_FIX:
10556 mips_7000_hilo_fix = FALSE;
10557 break;
10558
10559 #ifdef OBJ_ELF
10560 case OPTION_MDEBUG:
10561 mips_flag_mdebug = TRUE;
10562 break;
10563
10564 case OPTION_NO_MDEBUG:
10565 mips_flag_mdebug = FALSE;
10566 break;
10567
10568 case OPTION_PDR:
10569 mips_flag_pdr = TRUE;
10570 break;
10571
10572 case OPTION_NO_PDR:
10573 mips_flag_pdr = FALSE;
10574 break;
10575 #endif /* OBJ_ELF */
10576
10577 default:
10578 return 0;
10579 }
10580
10581 return 1;
10582 }
10583 \f
10584 /* Set up globals to generate code for the ISA or processor
10585 described by INFO. */
10586
10587 static void
10588 mips_set_architecture (const struct mips_cpu_info *info)
10589 {
10590 if (info != 0)
10591 {
10592 file_mips_arch = info->cpu;
10593 mips_opts.arch = info->cpu;
10594 mips_opts.isa = info->isa;
10595 }
10596 }
10597
10598
10599 /* Likewise for tuning. */
10600
10601 static void
10602 mips_set_tune (const struct mips_cpu_info *info)
10603 {
10604 if (info != 0)
10605 mips_tune = info->cpu;
10606 }
10607
10608
10609 void
10610 mips_after_parse_args (void)
10611 {
10612 const struct mips_cpu_info *arch_info = 0;
10613 const struct mips_cpu_info *tune_info = 0;
10614
10615 /* GP relative stuff not working for PE */
10616 if (strncmp (TARGET_OS, "pe", 2) == 0
10617 && g_switch_value != 0)
10618 {
10619 if (g_switch_seen)
10620 as_bad (_("-G not supported in this configuration."));
10621 g_switch_value = 0;
10622 }
10623
10624 if (mips_abi == NO_ABI)
10625 mips_abi = MIPS_DEFAULT_ABI;
10626
10627 /* The following code determines the architecture and register size.
10628 Similar code was added to GCC 3.3 (see override_options() in
10629 config/mips/mips.c). The GAS and GCC code should be kept in sync
10630 as much as possible. */
10631
10632 if (mips_arch_string != 0)
10633 arch_info = mips_parse_cpu ("-march", mips_arch_string);
10634
10635 if (file_mips_isa != ISA_UNKNOWN)
10636 {
10637 /* Handle -mipsN. At this point, file_mips_isa contains the
10638 ISA level specified by -mipsN, while arch_info->isa contains
10639 the -march selection (if any). */
10640 if (arch_info != 0)
10641 {
10642 /* -march takes precedence over -mipsN, since it is more descriptive.
10643 There's no harm in specifying both as long as the ISA levels
10644 are the same. */
10645 if (file_mips_isa != arch_info->isa)
10646 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
10647 mips_cpu_info_from_isa (file_mips_isa)->name,
10648 mips_cpu_info_from_isa (arch_info->isa)->name);
10649 }
10650 else
10651 arch_info = mips_cpu_info_from_isa (file_mips_isa);
10652 }
10653
10654 if (arch_info == 0)
10655 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
10656
10657 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
10658 as_bad ("-march=%s is not compatible with the selected ABI",
10659 arch_info->name);
10660
10661 mips_set_architecture (arch_info);
10662
10663 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
10664 if (mips_tune_string != 0)
10665 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
10666
10667 if (tune_info == 0)
10668 mips_set_tune (arch_info);
10669 else
10670 mips_set_tune (tune_info);
10671
10672 if (file_mips_gp32 >= 0)
10673 {
10674 /* The user specified the size of the integer registers. Make sure
10675 it agrees with the ABI and ISA. */
10676 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
10677 as_bad (_("-mgp64 used with a 32-bit processor"));
10678 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
10679 as_bad (_("-mgp32 used with a 64-bit ABI"));
10680 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
10681 as_bad (_("-mgp64 used with a 32-bit ABI"));
10682 }
10683 else
10684 {
10685 /* Infer the integer register size from the ABI and processor.
10686 Restrict ourselves to 32-bit registers if that's all the
10687 processor has, or if the ABI cannot handle 64-bit registers. */
10688 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
10689 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
10690 }
10691
10692 /* ??? GAS treats single-float processors as though they had 64-bit
10693 float registers (although it complains when double-precision
10694 instructions are used). As things stand, saying they have 32-bit
10695 registers would lead to spurious "register must be even" messages.
10696 So here we assume float registers are always the same size as
10697 integer ones, unless the user says otherwise. */
10698 if (file_mips_fp32 < 0)
10699 file_mips_fp32 = file_mips_gp32;
10700
10701 /* End of GCC-shared inference code. */
10702
10703 /* This flag is set when we have a 64-bit capable CPU but use only
10704 32-bit wide registers. Note that EABI does not use it. */
10705 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
10706 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
10707 || mips_abi == O32_ABI))
10708 mips_32bitmode = 1;
10709
10710 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
10711 as_bad (_("trap exception not supported at ISA 1"));
10712
10713 /* If the selected architecture includes support for ASEs, enable
10714 generation of code for them. */
10715 if (mips_opts.mips16 == -1)
10716 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
10717 if (mips_opts.ase_mips3d == -1)
10718 mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (file_mips_arch)) ? 1 : 0;
10719 if (mips_opts.ase_mdmx == -1)
10720 mips_opts.ase_mdmx = (CPU_HAS_MDMX (file_mips_arch)) ? 1 : 0;
10721
10722 file_mips_isa = mips_opts.isa;
10723 file_ase_mips16 = mips_opts.mips16;
10724 file_ase_mips3d = mips_opts.ase_mips3d;
10725 file_ase_mdmx = mips_opts.ase_mdmx;
10726 mips_opts.gp32 = file_mips_gp32;
10727 mips_opts.fp32 = file_mips_fp32;
10728
10729 if (mips_flag_mdebug < 0)
10730 {
10731 #ifdef OBJ_MAYBE_ECOFF
10732 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
10733 mips_flag_mdebug = 1;
10734 else
10735 #endif /* OBJ_MAYBE_ECOFF */
10736 mips_flag_mdebug = 0;
10737 }
10738 }
10739 \f
10740 void
10741 mips_init_after_args (void)
10742 {
10743 /* initialize opcodes */
10744 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
10745 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
10746 }
10747
10748 long
10749 md_pcrel_from (fixS *fixP)
10750 {
10751 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
10752 switch (fixP->fx_r_type)
10753 {
10754 case BFD_RELOC_16_PCREL_S2:
10755 case BFD_RELOC_MIPS_JMP:
10756 /* Return the address of the delay slot. */
10757 return addr + 4;
10758 default:
10759 return addr;
10760 }
10761 }
10762
10763 /* This is called before the symbol table is processed. In order to
10764 work with gcc when using mips-tfile, we must keep all local labels.
10765 However, in other cases, we want to discard them. If we were
10766 called with -g, but we didn't see any debugging information, it may
10767 mean that gcc is smuggling debugging information through to
10768 mips-tfile, in which case we must generate all local labels. */
10769
10770 void
10771 mips_frob_file_before_adjust (void)
10772 {
10773 #ifndef NO_ECOFF_DEBUGGING
10774 if (ECOFF_DEBUGGING
10775 && mips_debug != 0
10776 && ! ecoff_debugging_seen)
10777 flag_keep_locals = 1;
10778 #endif
10779 }
10780
10781 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
10782 the corresponding LO16 reloc. This is called before md_apply_fix3 and
10783 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
10784 relocation operators.
10785
10786 For our purposes, a %lo() expression matches a %got() or %hi()
10787 expression if:
10788
10789 (a) it refers to the same symbol; and
10790 (b) the offset applied in the %lo() expression is no lower than
10791 the offset applied in the %got() or %hi().
10792
10793 (b) allows us to cope with code like:
10794
10795 lui $4,%hi(foo)
10796 lh $4,%lo(foo+2)($4)
10797
10798 ...which is legal on RELA targets, and has a well-defined behaviour
10799 if the user knows that adding 2 to "foo" will not induce a carry to
10800 the high 16 bits.
10801
10802 When several %lo()s match a particular %got() or %hi(), we use the
10803 following rules to distinguish them:
10804
10805 (1) %lo()s with smaller offsets are a better match than %lo()s with
10806 higher offsets.
10807
10808 (2) %lo()s with no matching %got() or %hi() are better than those
10809 that already have a matching %got() or %hi().
10810
10811 (3) later %lo()s are better than earlier %lo()s.
10812
10813 These rules are applied in order.
10814
10815 (1) means, among other things, that %lo()s with identical offsets are
10816 chosen if they exist.
10817
10818 (2) means that we won't associate several high-part relocations with
10819 the same low-part relocation unless there's no alternative. Having
10820 several high parts for the same low part is a GNU extension; this rule
10821 allows careful users to avoid it.
10822
10823 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
10824 with the last high-part relocation being at the front of the list.
10825 It therefore makes sense to choose the last matching low-part
10826 relocation, all other things being equal. It's also easier
10827 to code that way. */
10828
10829 void
10830 mips_frob_file (void)
10831 {
10832 struct mips_hi_fixup *l;
10833
10834 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
10835 {
10836 segment_info_type *seginfo;
10837 bfd_boolean matched_lo_p;
10838 fixS **hi_pos, **lo_pos, **pos;
10839
10840 assert (reloc_needs_lo_p (l->fixp->fx_r_type));
10841
10842 /* If a GOT16 relocation turns out to be against a global symbol,
10843 there isn't supposed to be a matching LO. */
10844 if (l->fixp->fx_r_type == BFD_RELOC_MIPS_GOT16
10845 && !pic_need_relax (l->fixp->fx_addsy, l->seg))
10846 continue;
10847
10848 /* Check quickly whether the next fixup happens to be a matching %lo. */
10849 if (fixup_has_matching_lo_p (l->fixp))
10850 continue;
10851
10852 seginfo = seg_info (l->seg);
10853
10854 /* Set HI_POS to the position of this relocation in the chain.
10855 Set LO_POS to the position of the chosen low-part relocation.
10856 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
10857 relocation that matches an immediately-preceding high-part
10858 relocation. */
10859 hi_pos = NULL;
10860 lo_pos = NULL;
10861 matched_lo_p = FALSE;
10862 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
10863 {
10864 if (*pos == l->fixp)
10865 hi_pos = pos;
10866
10867 if ((*pos)->fx_r_type == BFD_RELOC_LO16
10868 && (*pos)->fx_addsy == l->fixp->fx_addsy
10869 && (*pos)->fx_offset >= l->fixp->fx_offset
10870 && (lo_pos == NULL
10871 || (*pos)->fx_offset < (*lo_pos)->fx_offset
10872 || (!matched_lo_p
10873 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
10874 lo_pos = pos;
10875
10876 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
10877 && fixup_has_matching_lo_p (*pos));
10878 }
10879
10880 /* If we found a match, remove the high-part relocation from its
10881 current position and insert it before the low-part relocation.
10882 Make the offsets match so that fixup_has_matching_lo_p()
10883 will return true.
10884
10885 We don't warn about unmatched high-part relocations since some
10886 versions of gcc have been known to emit dead "lui ...%hi(...)"
10887 instructions. */
10888 if (lo_pos != NULL)
10889 {
10890 l->fixp->fx_offset = (*lo_pos)->fx_offset;
10891 if (l->fixp->fx_next != *lo_pos)
10892 {
10893 *hi_pos = l->fixp->fx_next;
10894 l->fixp->fx_next = *lo_pos;
10895 *lo_pos = l->fixp;
10896 }
10897 }
10898 }
10899 }
10900
10901 /* We may have combined relocations without symbols in the N32/N64 ABI.
10902 We have to prevent gas from dropping them. */
10903
10904 int
10905 mips_force_relocation (fixS *fixp)
10906 {
10907 if (generic_force_reloc (fixp))
10908 return 1;
10909
10910 if (HAVE_NEWABI
10911 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
10912 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
10913 || fixp->fx_r_type == BFD_RELOC_HI16_S
10914 || fixp->fx_r_type == BFD_RELOC_LO16))
10915 return 1;
10916
10917 return 0;
10918 }
10919
10920 /* This hook is called before a fix is simplified. We don't really
10921 decide whether to skip a fix here. Rather, we turn global symbols
10922 used as branch targets into local symbols, such that they undergo
10923 simplification. We can only do this if the symbol is defined and
10924 it is in the same section as the branch. If this doesn't hold, we
10925 emit a better error message than just saying the relocation is not
10926 valid for the selected object format.
10927
10928 FIXP is the fix-up we're going to try to simplify, SEG is the
10929 segment in which the fix up occurs. The return value should be
10930 non-zero to indicate the fix-up is valid for further
10931 simplifications. */
10932
10933 int
10934 mips_validate_fix (struct fix *fixP, asection *seg)
10935 {
10936 /* There's a lot of discussion on whether it should be possible to
10937 use R_MIPS_PC16 to represent branch relocations. The outcome
10938 seems to be that it can, but gas/bfd are very broken in creating
10939 RELA relocations for this, so for now we only accept branches to
10940 symbols in the same section. Anything else is of dubious value,
10941 since there's no guarantee that at link time the symbol would be
10942 in range. Even for branches to local symbols this is arguably
10943 wrong, since it we assume the symbol is not going to be
10944 overridden, which should be possible per ELF library semantics,
10945 but then, there isn't a dynamic relocation that could be used to
10946 this effect, and the target would likely be out of range as well.
10947
10948 Unfortunately, it seems that there is too much code out there
10949 that relies on branches to symbols that are global to be resolved
10950 as if they were local, like the IRIX tools do, so we do it as
10951 well, but with a warning so that people are reminded to fix their
10952 code. If we ever get back to using R_MIPS_PC16 for branch
10953 targets, this entire block should go away (and probably the
10954 whole function). */
10955
10956 if (fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
10957 && ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
10958 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
10959 || bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16_PCREL_S2) == NULL)
10960 && fixP->fx_addsy)
10961 {
10962 if (! S_IS_DEFINED (fixP->fx_addsy))
10963 {
10964 as_bad_where (fixP->fx_file, fixP->fx_line,
10965 _("Cannot branch to undefined symbol."));
10966 /* Avoid any further errors about this fixup. */
10967 fixP->fx_done = 1;
10968 }
10969 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
10970 {
10971 as_bad_where (fixP->fx_file, fixP->fx_line,
10972 _("Cannot branch to symbol in another section."));
10973 fixP->fx_done = 1;
10974 }
10975 else if (S_IS_EXTERNAL (fixP->fx_addsy))
10976 {
10977 symbolS *sym = fixP->fx_addsy;
10978
10979 if (mips_pic == SVR4_PIC)
10980 as_warn_where (fixP->fx_file, fixP->fx_line,
10981 _("Pretending global symbol used as branch target is local."));
10982
10983 fixP->fx_addsy = symbol_create (S_GET_NAME (sym),
10984 S_GET_SEGMENT (sym),
10985 S_GET_VALUE (sym),
10986 symbol_get_frag (sym));
10987 copy_symbol_attributes (fixP->fx_addsy, sym);
10988 S_CLEAR_EXTERNAL (fixP->fx_addsy);
10989 assert (symbol_resolved_p (sym));
10990 symbol_mark_resolved (fixP->fx_addsy);
10991 }
10992 }
10993
10994 return 1;
10995 }
10996
10997 /* Apply a fixup to the object file. */
10998
10999 void
11000 md_apply_fix3 (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
11001 {
11002 bfd_byte *buf;
11003 long insn;
11004 reloc_howto_type *howto;
11005
11006 /* We ignore generic BFD relocations we don't know about. */
11007 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
11008 if (! howto)
11009 return;
11010
11011 assert (fixP->fx_size == 4
11012 || fixP->fx_r_type == BFD_RELOC_16
11013 || fixP->fx_r_type == BFD_RELOC_64
11014 || fixP->fx_r_type == BFD_RELOC_CTOR
11015 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
11016 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
11017 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY);
11018
11019 buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
11020
11021 assert (! fixP->fx_pcrel);
11022
11023 /* Don't treat parts of a composite relocation as done. There are two
11024 reasons for this:
11025
11026 (1) The second and third parts will be against 0 (RSS_UNDEF) but
11027 should nevertheless be emitted if the first part is.
11028
11029 (2) In normal usage, composite relocations are never assembly-time
11030 constants. The easiest way of dealing with the pathological
11031 exceptions is to generate a relocation against STN_UNDEF and
11032 leave everything up to the linker. */
11033 if (fixP->fx_addsy == NULL && fixP->fx_tcbit == 0)
11034 fixP->fx_done = 1;
11035
11036 switch (fixP->fx_r_type)
11037 {
11038 case BFD_RELOC_MIPS_JMP:
11039 case BFD_RELOC_MIPS_SHIFT5:
11040 case BFD_RELOC_MIPS_SHIFT6:
11041 case BFD_RELOC_MIPS_GOT_DISP:
11042 case BFD_RELOC_MIPS_GOT_PAGE:
11043 case BFD_RELOC_MIPS_GOT_OFST:
11044 case BFD_RELOC_MIPS_SUB:
11045 case BFD_RELOC_MIPS_INSERT_A:
11046 case BFD_RELOC_MIPS_INSERT_B:
11047 case BFD_RELOC_MIPS_DELETE:
11048 case BFD_RELOC_MIPS_HIGHEST:
11049 case BFD_RELOC_MIPS_HIGHER:
11050 case BFD_RELOC_MIPS_SCN_DISP:
11051 case BFD_RELOC_MIPS_REL16:
11052 case BFD_RELOC_MIPS_RELGOT:
11053 case BFD_RELOC_MIPS_JALR:
11054 case BFD_RELOC_HI16:
11055 case BFD_RELOC_HI16_S:
11056 case BFD_RELOC_GPREL16:
11057 case BFD_RELOC_MIPS_LITERAL:
11058 case BFD_RELOC_MIPS_CALL16:
11059 case BFD_RELOC_MIPS_GOT16:
11060 case BFD_RELOC_GPREL32:
11061 case BFD_RELOC_MIPS_GOT_HI16:
11062 case BFD_RELOC_MIPS_GOT_LO16:
11063 case BFD_RELOC_MIPS_CALL_HI16:
11064 case BFD_RELOC_MIPS_CALL_LO16:
11065 case BFD_RELOC_MIPS16_GPREL:
11066 case BFD_RELOC_MIPS16_HI16:
11067 case BFD_RELOC_MIPS16_HI16_S:
11068 assert (! fixP->fx_pcrel);
11069 /* Nothing needed to do. The value comes from the reloc entry */
11070 break;
11071
11072 case BFD_RELOC_MIPS16_JMP:
11073 /* We currently always generate a reloc against a symbol, which
11074 means that we don't want an addend even if the symbol is
11075 defined. */
11076 *valP = 0;
11077 break;
11078
11079 case BFD_RELOC_64:
11080 /* This is handled like BFD_RELOC_32, but we output a sign
11081 extended value if we are only 32 bits. */
11082 if (fixP->fx_done)
11083 {
11084 if (8 <= sizeof (valueT))
11085 md_number_to_chars (buf, *valP, 8);
11086 else
11087 {
11088 valueT hiv;
11089
11090 if ((*valP & 0x80000000) != 0)
11091 hiv = 0xffffffff;
11092 else
11093 hiv = 0;
11094 md_number_to_chars ((char *)(buf + target_big_endian ? 4 : 0),
11095 *valP, 4);
11096 md_number_to_chars ((char *)(buf + target_big_endian ? 0 : 4),
11097 hiv, 4);
11098 }
11099 }
11100 break;
11101
11102 case BFD_RELOC_RVA:
11103 case BFD_RELOC_32:
11104 /* If we are deleting this reloc entry, we must fill in the
11105 value now. This can happen if we have a .word which is not
11106 resolved when it appears but is later defined. */
11107 if (fixP->fx_done)
11108 md_number_to_chars (buf, *valP, 4);
11109 break;
11110
11111 case BFD_RELOC_16:
11112 /* If we are deleting this reloc entry, we must fill in the
11113 value now. */
11114 if (fixP->fx_done)
11115 md_number_to_chars (buf, *valP, 2);
11116 break;
11117
11118 case BFD_RELOC_LO16:
11119 case BFD_RELOC_MIPS16_LO16:
11120 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
11121 may be safe to remove, but if so it's not obvious. */
11122 /* When handling an embedded PIC switch statement, we can wind
11123 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
11124 if (fixP->fx_done)
11125 {
11126 if (*valP + 0x8000 > 0xffff)
11127 as_bad_where (fixP->fx_file, fixP->fx_line,
11128 _("relocation overflow"));
11129 if (target_big_endian)
11130 buf += 2;
11131 md_number_to_chars (buf, *valP, 2);
11132 }
11133 break;
11134
11135 case BFD_RELOC_16_PCREL_S2:
11136 if ((*valP & 0x3) != 0)
11137 as_bad_where (fixP->fx_file, fixP->fx_line,
11138 _("Branch to odd address (%lx)"), (long) *valP);
11139
11140 /*
11141 * We need to save the bits in the instruction since fixup_segment()
11142 * might be deleting the relocation entry (i.e., a branch within
11143 * the current segment).
11144 */
11145 if (! fixP->fx_done)
11146 break;
11147
11148 /* update old instruction data */
11149 if (target_big_endian)
11150 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
11151 else
11152 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
11153
11154 if (*valP + 0x20000 <= 0x3ffff)
11155 {
11156 insn |= (*valP >> 2) & 0xffff;
11157 md_number_to_chars (buf, insn, 4);
11158 }
11159 else if (mips_pic == NO_PIC
11160 && fixP->fx_done
11161 && fixP->fx_frag->fr_address >= text_section->vma
11162 && (fixP->fx_frag->fr_address
11163 < text_section->vma + bfd_get_section_size (text_section))
11164 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
11165 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
11166 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
11167 {
11168 /* The branch offset is too large. If this is an
11169 unconditional branch, and we are not generating PIC code,
11170 we can convert it to an absolute jump instruction. */
11171 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
11172 insn = 0x0c000000; /* jal */
11173 else
11174 insn = 0x08000000; /* j */
11175 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
11176 fixP->fx_done = 0;
11177 fixP->fx_addsy = section_symbol (text_section);
11178 *valP += md_pcrel_from (fixP);
11179 md_number_to_chars (buf, insn, 4);
11180 }
11181 else
11182 {
11183 /* If we got here, we have branch-relaxation disabled,
11184 and there's nothing we can do to fix this instruction
11185 without turning it into a longer sequence. */
11186 as_bad_where (fixP->fx_file, fixP->fx_line,
11187 _("Branch out of range"));
11188 }
11189 break;
11190
11191 case BFD_RELOC_VTABLE_INHERIT:
11192 fixP->fx_done = 0;
11193 if (fixP->fx_addsy
11194 && !S_IS_DEFINED (fixP->fx_addsy)
11195 && !S_IS_WEAK (fixP->fx_addsy))
11196 S_SET_WEAK (fixP->fx_addsy);
11197 break;
11198
11199 case BFD_RELOC_VTABLE_ENTRY:
11200 fixP->fx_done = 0;
11201 break;
11202
11203 default:
11204 internalError ();
11205 }
11206
11207 /* Remember value for tc_gen_reloc. */
11208 fixP->fx_addnumber = *valP;
11209 }
11210
11211 static symbolS *
11212 get_symbol (void)
11213 {
11214 int c;
11215 char *name;
11216 symbolS *p;
11217
11218 name = input_line_pointer;
11219 c = get_symbol_end ();
11220 p = (symbolS *) symbol_find_or_make (name);
11221 *input_line_pointer = c;
11222 return p;
11223 }
11224
11225 /* Align the current frag to a given power of two. The MIPS assembler
11226 also automatically adjusts any preceding label. */
11227
11228 static void
11229 mips_align (int to, int fill, symbolS *label)
11230 {
11231 mips_emit_delays (FALSE);
11232 frag_align (to, fill, 0);
11233 record_alignment (now_seg, to);
11234 if (label != NULL)
11235 {
11236 assert (S_GET_SEGMENT (label) == now_seg);
11237 symbol_set_frag (label, frag_now);
11238 S_SET_VALUE (label, (valueT) frag_now_fix ());
11239 }
11240 }
11241
11242 /* Align to a given power of two. .align 0 turns off the automatic
11243 alignment used by the data creating pseudo-ops. */
11244
11245 static void
11246 s_align (int x ATTRIBUTE_UNUSED)
11247 {
11248 register int temp;
11249 register long temp_fill;
11250 long max_alignment = 15;
11251
11252 /*
11253
11254 o Note that the assembler pulls down any immediately preceding label
11255 to the aligned address.
11256 o It's not documented but auto alignment is reinstated by
11257 a .align pseudo instruction.
11258 o Note also that after auto alignment is turned off the mips assembler
11259 issues an error on attempt to assemble an improperly aligned data item.
11260 We don't.
11261
11262 */
11263
11264 temp = get_absolute_expression ();
11265 if (temp > max_alignment)
11266 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
11267 else if (temp < 0)
11268 {
11269 as_warn (_("Alignment negative: 0 assumed."));
11270 temp = 0;
11271 }
11272 if (*input_line_pointer == ',')
11273 {
11274 ++input_line_pointer;
11275 temp_fill = get_absolute_expression ();
11276 }
11277 else
11278 temp_fill = 0;
11279 if (temp)
11280 {
11281 auto_align = 1;
11282 mips_align (temp, (int) temp_fill,
11283 insn_labels != NULL ? insn_labels->label : NULL);
11284 }
11285 else
11286 {
11287 auto_align = 0;
11288 }
11289
11290 demand_empty_rest_of_line ();
11291 }
11292
11293 void
11294 mips_flush_pending_output (void)
11295 {
11296 mips_emit_delays (FALSE);
11297 mips_clear_insn_labels ();
11298 }
11299
11300 static void
11301 s_change_sec (int sec)
11302 {
11303 segT seg;
11304
11305 #ifdef OBJ_ELF
11306 /* The ELF backend needs to know that we are changing sections, so
11307 that .previous works correctly. We could do something like check
11308 for an obj_section_change_hook macro, but that might be confusing
11309 as it would not be appropriate to use it in the section changing
11310 functions in read.c, since obj-elf.c intercepts those. FIXME:
11311 This should be cleaner, somehow. */
11312 obj_elf_section_change_hook ();
11313 #endif
11314
11315 mips_emit_delays (FALSE);
11316 switch (sec)
11317 {
11318 case 't':
11319 s_text (0);
11320 break;
11321 case 'd':
11322 s_data (0);
11323 break;
11324 case 'b':
11325 subseg_set (bss_section, (subsegT) get_absolute_expression ());
11326 demand_empty_rest_of_line ();
11327 break;
11328
11329 case 'r':
11330 seg = subseg_new (RDATA_SECTION_NAME,
11331 (subsegT) get_absolute_expression ());
11332 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11333 {
11334 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
11335 | SEC_READONLY | SEC_RELOC
11336 | SEC_DATA));
11337 if (strcmp (TARGET_OS, "elf") != 0)
11338 record_alignment (seg, 4);
11339 }
11340 demand_empty_rest_of_line ();
11341 break;
11342
11343 case 's':
11344 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
11345 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11346 {
11347 bfd_set_section_flags (stdoutput, seg,
11348 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
11349 if (strcmp (TARGET_OS, "elf") != 0)
11350 record_alignment (seg, 4);
11351 }
11352 demand_empty_rest_of_line ();
11353 break;
11354 }
11355
11356 auto_align = 1;
11357 }
11358
11359 void
11360 s_change_section (int ignore ATTRIBUTE_UNUSED)
11361 {
11362 #ifdef OBJ_ELF
11363 char *section_name;
11364 char c;
11365 char next_c = 0;
11366 int section_type;
11367 int section_flag;
11368 int section_entry_size;
11369 int section_alignment;
11370
11371 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
11372 return;
11373
11374 section_name = input_line_pointer;
11375 c = get_symbol_end ();
11376 if (c)
11377 next_c = *(input_line_pointer + 1);
11378
11379 /* Do we have .section Name<,"flags">? */
11380 if (c != ',' || (c == ',' && next_c == '"'))
11381 {
11382 /* just after name is now '\0'. */
11383 *input_line_pointer = c;
11384 input_line_pointer = section_name;
11385 obj_elf_section (ignore);
11386 return;
11387 }
11388 input_line_pointer++;
11389
11390 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
11391 if (c == ',')
11392 section_type = get_absolute_expression ();
11393 else
11394 section_type = 0;
11395 if (*input_line_pointer++ == ',')
11396 section_flag = get_absolute_expression ();
11397 else
11398 section_flag = 0;
11399 if (*input_line_pointer++ == ',')
11400 section_entry_size = get_absolute_expression ();
11401 else
11402 section_entry_size = 0;
11403 if (*input_line_pointer++ == ',')
11404 section_alignment = get_absolute_expression ();
11405 else
11406 section_alignment = 0;
11407
11408 section_name = xstrdup (section_name);
11409
11410 /* When using the generic form of .section (as implemented by obj-elf.c),
11411 there's no way to set the section type to SHT_MIPS_DWARF. Users have
11412 traditionally had to fall back on the more common @progbits instead.
11413
11414 There's nothing really harmful in this, since bfd will correct
11415 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
11416 means that, for backwards compatibiltiy, the special_section entries
11417 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
11418
11419 Even so, we shouldn't force users of the MIPS .section syntax to
11420 incorrectly label the sections as SHT_PROGBITS. The best compromise
11421 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
11422 generic type-checking code. */
11423 if (section_type == SHT_MIPS_DWARF)
11424 section_type = SHT_PROGBITS;
11425
11426 obj_elf_change_section (section_name, section_type, section_flag,
11427 section_entry_size, 0, 0, 0);
11428
11429 if (now_seg->name != section_name)
11430 free (section_name);
11431 #endif /* OBJ_ELF */
11432 }
11433
11434 void
11435 mips_enable_auto_align (void)
11436 {
11437 auto_align = 1;
11438 }
11439
11440 static void
11441 s_cons (int log_size)
11442 {
11443 symbolS *label;
11444
11445 label = insn_labels != NULL ? insn_labels->label : NULL;
11446 mips_emit_delays (FALSE);
11447 if (log_size > 0 && auto_align)
11448 mips_align (log_size, 0, label);
11449 mips_clear_insn_labels ();
11450 cons (1 << log_size);
11451 }
11452
11453 static void
11454 s_float_cons (int type)
11455 {
11456 symbolS *label;
11457
11458 label = insn_labels != NULL ? insn_labels->label : NULL;
11459
11460 mips_emit_delays (FALSE);
11461
11462 if (auto_align)
11463 {
11464 if (type == 'd')
11465 mips_align (3, 0, label);
11466 else
11467 mips_align (2, 0, label);
11468 }
11469
11470 mips_clear_insn_labels ();
11471
11472 float_cons (type);
11473 }
11474
11475 /* Handle .globl. We need to override it because on Irix 5 you are
11476 permitted to say
11477 .globl foo .text
11478 where foo is an undefined symbol, to mean that foo should be
11479 considered to be the address of a function. */
11480
11481 static void
11482 s_mips_globl (int x ATTRIBUTE_UNUSED)
11483 {
11484 char *name;
11485 int c;
11486 symbolS *symbolP;
11487 flagword flag;
11488
11489 name = input_line_pointer;
11490 c = get_symbol_end ();
11491 symbolP = symbol_find_or_make (name);
11492 *input_line_pointer = c;
11493 SKIP_WHITESPACE ();
11494
11495 /* On Irix 5, every global symbol that is not explicitly labelled as
11496 being a function is apparently labelled as being an object. */
11497 flag = BSF_OBJECT;
11498
11499 if (! is_end_of_line[(unsigned char) *input_line_pointer])
11500 {
11501 char *secname;
11502 asection *sec;
11503
11504 secname = input_line_pointer;
11505 c = get_symbol_end ();
11506 sec = bfd_get_section_by_name (stdoutput, secname);
11507 if (sec == NULL)
11508 as_bad (_("%s: no such section"), secname);
11509 *input_line_pointer = c;
11510
11511 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
11512 flag = BSF_FUNCTION;
11513 }
11514
11515 symbol_get_bfdsym (symbolP)->flags |= flag;
11516
11517 S_SET_EXTERNAL (symbolP);
11518 demand_empty_rest_of_line ();
11519 }
11520
11521 static void
11522 s_option (int x ATTRIBUTE_UNUSED)
11523 {
11524 char *opt;
11525 char c;
11526
11527 opt = input_line_pointer;
11528 c = get_symbol_end ();
11529
11530 if (*opt == 'O')
11531 {
11532 /* FIXME: What does this mean? */
11533 }
11534 else if (strncmp (opt, "pic", 3) == 0)
11535 {
11536 int i;
11537
11538 i = atoi (opt + 3);
11539 if (i == 0)
11540 mips_pic = NO_PIC;
11541 else if (i == 2)
11542 {
11543 mips_pic = SVR4_PIC;
11544 mips_abicalls = TRUE;
11545 }
11546 else
11547 as_bad (_(".option pic%d not supported"), i);
11548
11549 if (mips_pic == SVR4_PIC)
11550 {
11551 if (g_switch_seen && g_switch_value != 0)
11552 as_warn (_("-G may not be used with SVR4 PIC code"));
11553 g_switch_value = 0;
11554 bfd_set_gp_size (stdoutput, 0);
11555 }
11556 }
11557 else
11558 as_warn (_("Unrecognized option \"%s\""), opt);
11559
11560 *input_line_pointer = c;
11561 demand_empty_rest_of_line ();
11562 }
11563
11564 /* This structure is used to hold a stack of .set values. */
11565
11566 struct mips_option_stack
11567 {
11568 struct mips_option_stack *next;
11569 struct mips_set_options options;
11570 };
11571
11572 static struct mips_option_stack *mips_opts_stack;
11573
11574 /* Handle the .set pseudo-op. */
11575
11576 static void
11577 s_mipsset (int x ATTRIBUTE_UNUSED)
11578 {
11579 char *name = input_line_pointer, ch;
11580
11581 while (!is_end_of_line[(unsigned char) *input_line_pointer])
11582 ++input_line_pointer;
11583 ch = *input_line_pointer;
11584 *input_line_pointer = '\0';
11585
11586 if (strcmp (name, "reorder") == 0)
11587 {
11588 if (mips_opts.noreorder && prev_nop_frag != NULL)
11589 {
11590 /* If we still have pending nops, we can discard them. The
11591 usual nop handling will insert any that are still
11592 needed. */
11593 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
11594 * (mips_opts.mips16 ? 2 : 4));
11595 prev_nop_frag = NULL;
11596 }
11597 mips_opts.noreorder = 0;
11598 }
11599 else if (strcmp (name, "noreorder") == 0)
11600 {
11601 mips_emit_delays (TRUE);
11602 mips_opts.noreorder = 1;
11603 mips_any_noreorder = 1;
11604 }
11605 else if (strcmp (name, "at") == 0)
11606 {
11607 mips_opts.noat = 0;
11608 }
11609 else if (strcmp (name, "noat") == 0)
11610 {
11611 mips_opts.noat = 1;
11612 }
11613 else if (strcmp (name, "macro") == 0)
11614 {
11615 mips_opts.warn_about_macros = 0;
11616 }
11617 else if (strcmp (name, "nomacro") == 0)
11618 {
11619 if (mips_opts.noreorder == 0)
11620 as_bad (_("`noreorder' must be set before `nomacro'"));
11621 mips_opts.warn_about_macros = 1;
11622 }
11623 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
11624 {
11625 mips_opts.nomove = 0;
11626 }
11627 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
11628 {
11629 mips_opts.nomove = 1;
11630 }
11631 else if (strcmp (name, "bopt") == 0)
11632 {
11633 mips_opts.nobopt = 0;
11634 }
11635 else if (strcmp (name, "nobopt") == 0)
11636 {
11637 mips_opts.nobopt = 1;
11638 }
11639 else if (strcmp (name, "mips16") == 0
11640 || strcmp (name, "MIPS-16") == 0)
11641 mips_opts.mips16 = 1;
11642 else if (strcmp (name, "nomips16") == 0
11643 || strcmp (name, "noMIPS-16") == 0)
11644 mips_opts.mips16 = 0;
11645 else if (strcmp (name, "mips3d") == 0)
11646 mips_opts.ase_mips3d = 1;
11647 else if (strcmp (name, "nomips3d") == 0)
11648 mips_opts.ase_mips3d = 0;
11649 else if (strcmp (name, "mdmx") == 0)
11650 mips_opts.ase_mdmx = 1;
11651 else if (strcmp (name, "nomdmx") == 0)
11652 mips_opts.ase_mdmx = 0;
11653 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
11654 {
11655 int reset = 0;
11656
11657 /* Permit the user to change the ISA and architecture on the fly.
11658 Needless to say, misuse can cause serious problems. */
11659 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
11660 {
11661 reset = 1;
11662 mips_opts.isa = file_mips_isa;
11663 mips_opts.arch = file_mips_arch;
11664 }
11665 else if (strncmp (name, "arch=", 5) == 0)
11666 {
11667 const struct mips_cpu_info *p;
11668
11669 p = mips_parse_cpu("internal use", name + 5);
11670 if (!p)
11671 as_bad (_("unknown architecture %s"), name + 5);
11672 else
11673 {
11674 mips_opts.arch = p->cpu;
11675 mips_opts.isa = p->isa;
11676 }
11677 }
11678 else if (strncmp (name, "mips", 4) == 0)
11679 {
11680 const struct mips_cpu_info *p;
11681
11682 p = mips_parse_cpu("internal use", name);
11683 if (!p)
11684 as_bad (_("unknown ISA level %s"), name + 4);
11685 else
11686 {
11687 mips_opts.arch = p->cpu;
11688 mips_opts.isa = p->isa;
11689 }
11690 }
11691 else
11692 as_bad (_("unknown ISA or architecture %s"), name);
11693
11694 switch (mips_opts.isa)
11695 {
11696 case 0:
11697 break;
11698 case ISA_MIPS1:
11699 case ISA_MIPS2:
11700 case ISA_MIPS32:
11701 case ISA_MIPS32R2:
11702 mips_opts.gp32 = 1;
11703 mips_opts.fp32 = 1;
11704 break;
11705 case ISA_MIPS3:
11706 case ISA_MIPS4:
11707 case ISA_MIPS5:
11708 case ISA_MIPS64:
11709 case ISA_MIPS64R2:
11710 mips_opts.gp32 = 0;
11711 mips_opts.fp32 = 0;
11712 break;
11713 default:
11714 as_bad (_("unknown ISA level %s"), name + 4);
11715 break;
11716 }
11717 if (reset)
11718 {
11719 mips_opts.gp32 = file_mips_gp32;
11720 mips_opts.fp32 = file_mips_fp32;
11721 }
11722 }
11723 else if (strcmp (name, "autoextend") == 0)
11724 mips_opts.noautoextend = 0;
11725 else if (strcmp (name, "noautoextend") == 0)
11726 mips_opts.noautoextend = 1;
11727 else if (strcmp (name, "push") == 0)
11728 {
11729 struct mips_option_stack *s;
11730
11731 s = (struct mips_option_stack *) xmalloc (sizeof *s);
11732 s->next = mips_opts_stack;
11733 s->options = mips_opts;
11734 mips_opts_stack = s;
11735 }
11736 else if (strcmp (name, "pop") == 0)
11737 {
11738 struct mips_option_stack *s;
11739
11740 s = mips_opts_stack;
11741 if (s == NULL)
11742 as_bad (_(".set pop with no .set push"));
11743 else
11744 {
11745 /* If we're changing the reorder mode we need to handle
11746 delay slots correctly. */
11747 if (s->options.noreorder && ! mips_opts.noreorder)
11748 mips_emit_delays (TRUE);
11749 else if (! s->options.noreorder && mips_opts.noreorder)
11750 {
11751 if (prev_nop_frag != NULL)
11752 {
11753 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
11754 * (mips_opts.mips16 ? 2 : 4));
11755 prev_nop_frag = NULL;
11756 }
11757 }
11758
11759 mips_opts = s->options;
11760 mips_opts_stack = s->next;
11761 free (s);
11762 }
11763 }
11764 else
11765 {
11766 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
11767 }
11768 *input_line_pointer = ch;
11769 demand_empty_rest_of_line ();
11770 }
11771
11772 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
11773 .option pic2. It means to generate SVR4 PIC calls. */
11774
11775 static void
11776 s_abicalls (int ignore ATTRIBUTE_UNUSED)
11777 {
11778 mips_pic = SVR4_PIC;
11779 mips_abicalls = TRUE;
11780
11781 if (g_switch_seen && g_switch_value != 0)
11782 as_warn (_("-G may not be used with SVR4 PIC code"));
11783 g_switch_value = 0;
11784
11785 bfd_set_gp_size (stdoutput, 0);
11786 demand_empty_rest_of_line ();
11787 }
11788
11789 /* Handle the .cpload pseudo-op. This is used when generating SVR4
11790 PIC code. It sets the $gp register for the function based on the
11791 function address, which is in the register named in the argument.
11792 This uses a relocation against _gp_disp, which is handled specially
11793 by the linker. The result is:
11794 lui $gp,%hi(_gp_disp)
11795 addiu $gp,$gp,%lo(_gp_disp)
11796 addu $gp,$gp,.cpload argument
11797 The .cpload argument is normally $25 == $t9.
11798
11799 The -mno-shared option changes this to:
11800 lui $gp,%hi(_gp)
11801 addiu $gp,$gp,%lo(_gp)
11802 and the argument is ignored. This saves an instruction, but the
11803 resulting code is not position independent; it uses an absolute
11804 address for _gp. Thus code assembled with -mno-shared can go into
11805 an ordinary executable, but not into a shared library. */
11806
11807 static void
11808 s_cpload (int ignore ATTRIBUTE_UNUSED)
11809 {
11810 expressionS ex;
11811 int reg;
11812 int in_shared;
11813
11814 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
11815 .cpload is ignored. */
11816 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
11817 {
11818 s_ignore (0);
11819 return;
11820 }
11821
11822 /* .cpload should be in a .set noreorder section. */
11823 if (mips_opts.noreorder == 0)
11824 as_warn (_(".cpload not in noreorder section"));
11825
11826 reg = tc_get_register (0);
11827
11828 /* If we need to produce a 64-bit address, we are better off using
11829 the default instruction sequence. */
11830 in_shared = mips_in_shared || HAVE_64BIT_ADDRESSES;
11831
11832 ex.X_op = O_symbol;
11833 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" : "_gp");
11834 ex.X_op_symbol = NULL;
11835 ex.X_add_number = 0;
11836
11837 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
11838 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
11839
11840 macro_start ();
11841 macro_build_lui (&ex, mips_gp_register);
11842 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
11843 mips_gp_register, BFD_RELOC_LO16);
11844 if (in_shared)
11845 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
11846 mips_gp_register, reg);
11847 macro_end ();
11848
11849 demand_empty_rest_of_line ();
11850 }
11851
11852 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
11853 .cpsetup $reg1, offset|$reg2, label
11854
11855 If offset is given, this results in:
11856 sd $gp, offset($sp)
11857 lui $gp, %hi(%neg(%gp_rel(label)))
11858 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11859 daddu $gp, $gp, $reg1
11860
11861 If $reg2 is given, this results in:
11862 daddu $reg2, $gp, $0
11863 lui $gp, %hi(%neg(%gp_rel(label)))
11864 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11865 daddu $gp, $gp, $reg1
11866 $reg1 is normally $25 == $t9.
11867
11868 The -mno-shared option replaces the last three instructions with
11869 lui $gp,%hi(_gp)
11870 addiu $gp,$gp,%lo(_gp)
11871 */
11872
11873 static void
11874 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
11875 {
11876 expressionS ex_off;
11877 expressionS ex_sym;
11878 int reg1;
11879
11880 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
11881 We also need NewABI support. */
11882 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11883 {
11884 s_ignore (0);
11885 return;
11886 }
11887
11888 reg1 = tc_get_register (0);
11889 SKIP_WHITESPACE ();
11890 if (*input_line_pointer != ',')
11891 {
11892 as_bad (_("missing argument separator ',' for .cpsetup"));
11893 return;
11894 }
11895 else
11896 ++input_line_pointer;
11897 SKIP_WHITESPACE ();
11898 if (*input_line_pointer == '$')
11899 {
11900 mips_cpreturn_register = tc_get_register (0);
11901 mips_cpreturn_offset = -1;
11902 }
11903 else
11904 {
11905 mips_cpreturn_offset = get_absolute_expression ();
11906 mips_cpreturn_register = -1;
11907 }
11908 SKIP_WHITESPACE ();
11909 if (*input_line_pointer != ',')
11910 {
11911 as_bad (_("missing argument separator ',' for .cpsetup"));
11912 return;
11913 }
11914 else
11915 ++input_line_pointer;
11916 SKIP_WHITESPACE ();
11917 expression (&ex_sym);
11918
11919 macro_start ();
11920 if (mips_cpreturn_register == -1)
11921 {
11922 ex_off.X_op = O_constant;
11923 ex_off.X_add_symbol = NULL;
11924 ex_off.X_op_symbol = NULL;
11925 ex_off.X_add_number = mips_cpreturn_offset;
11926
11927 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
11928 BFD_RELOC_LO16, SP);
11929 }
11930 else
11931 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
11932 mips_gp_register, 0);
11933
11934 if (mips_in_shared || HAVE_64BIT_ADDRESSES)
11935 {
11936 macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
11937 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
11938 BFD_RELOC_HI16_S);
11939
11940 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
11941 mips_gp_register, -1, BFD_RELOC_GPREL16,
11942 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
11943
11944 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
11945 mips_gp_register, reg1);
11946 }
11947 else
11948 {
11949 expressionS ex;
11950
11951 ex.X_op = O_symbol;
11952 ex.X_add_symbol = symbol_find_or_make ("_gp");
11953 ex.X_op_symbol = NULL;
11954 ex.X_add_number = 0;
11955
11956 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
11957 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
11958
11959 macro_build_lui (&ex, mips_gp_register);
11960 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
11961 mips_gp_register, BFD_RELOC_LO16);
11962 }
11963
11964 macro_end ();
11965
11966 demand_empty_rest_of_line ();
11967 }
11968
11969 static void
11970 s_cplocal (int ignore ATTRIBUTE_UNUSED)
11971 {
11972 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
11973 .cplocal is ignored. */
11974 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11975 {
11976 s_ignore (0);
11977 return;
11978 }
11979
11980 mips_gp_register = tc_get_register (0);
11981 demand_empty_rest_of_line ();
11982 }
11983
11984 /* Handle the .cprestore pseudo-op. This stores $gp into a given
11985 offset from $sp. The offset is remembered, and after making a PIC
11986 call $gp is restored from that location. */
11987
11988 static void
11989 s_cprestore (int ignore ATTRIBUTE_UNUSED)
11990 {
11991 expressionS ex;
11992
11993 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
11994 .cprestore is ignored. */
11995 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
11996 {
11997 s_ignore (0);
11998 return;
11999 }
12000
12001 mips_cprestore_offset = get_absolute_expression ();
12002 mips_cprestore_valid = 1;
12003
12004 ex.X_op = O_constant;
12005 ex.X_add_symbol = NULL;
12006 ex.X_op_symbol = NULL;
12007 ex.X_add_number = mips_cprestore_offset;
12008
12009 macro_start ();
12010 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
12011 SP, HAVE_64BIT_ADDRESSES);
12012 macro_end ();
12013
12014 demand_empty_rest_of_line ();
12015 }
12016
12017 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
12018 was given in the preceding .cpsetup, it results in:
12019 ld $gp, offset($sp)
12020
12021 If a register $reg2 was given there, it results in:
12022 daddu $gp, $reg2, $0
12023 */
12024 static void
12025 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
12026 {
12027 expressionS ex;
12028
12029 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
12030 We also need NewABI support. */
12031 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12032 {
12033 s_ignore (0);
12034 return;
12035 }
12036
12037 macro_start ();
12038 if (mips_cpreturn_register == -1)
12039 {
12040 ex.X_op = O_constant;
12041 ex.X_add_symbol = NULL;
12042 ex.X_op_symbol = NULL;
12043 ex.X_add_number = mips_cpreturn_offset;
12044
12045 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
12046 }
12047 else
12048 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
12049 mips_cpreturn_register, 0);
12050 macro_end ();
12051
12052 demand_empty_rest_of_line ();
12053 }
12054
12055 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
12056 code. It sets the offset to use in gp_rel relocations. */
12057
12058 static void
12059 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
12060 {
12061 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
12062 We also need NewABI support. */
12063 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12064 {
12065 s_ignore (0);
12066 return;
12067 }
12068
12069 mips_gprel_offset = get_absolute_expression ();
12070
12071 demand_empty_rest_of_line ();
12072 }
12073
12074 /* Handle the .gpword pseudo-op. This is used when generating PIC
12075 code. It generates a 32 bit GP relative reloc. */
12076
12077 static void
12078 s_gpword (int ignore ATTRIBUTE_UNUSED)
12079 {
12080 symbolS *label;
12081 expressionS ex;
12082 char *p;
12083
12084 /* When not generating PIC code, this is treated as .word. */
12085 if (mips_pic != SVR4_PIC)
12086 {
12087 s_cons (2);
12088 return;
12089 }
12090
12091 label = insn_labels != NULL ? insn_labels->label : NULL;
12092 mips_emit_delays (TRUE);
12093 if (auto_align)
12094 mips_align (2, 0, label);
12095 mips_clear_insn_labels ();
12096
12097 expression (&ex);
12098
12099 if (ex.X_op != O_symbol || ex.X_add_number != 0)
12100 {
12101 as_bad (_("Unsupported use of .gpword"));
12102 ignore_rest_of_line ();
12103 }
12104
12105 p = frag_more (4);
12106 md_number_to_chars (p, 0, 4);
12107 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
12108 BFD_RELOC_GPREL32);
12109
12110 demand_empty_rest_of_line ();
12111 }
12112
12113 static void
12114 s_gpdword (int ignore ATTRIBUTE_UNUSED)
12115 {
12116 symbolS *label;
12117 expressionS ex;
12118 char *p;
12119
12120 /* When not generating PIC code, this is treated as .dword. */
12121 if (mips_pic != SVR4_PIC)
12122 {
12123 s_cons (3);
12124 return;
12125 }
12126
12127 label = insn_labels != NULL ? insn_labels->label : NULL;
12128 mips_emit_delays (TRUE);
12129 if (auto_align)
12130 mips_align (3, 0, label);
12131 mips_clear_insn_labels ();
12132
12133 expression (&ex);
12134
12135 if (ex.X_op != O_symbol || ex.X_add_number != 0)
12136 {
12137 as_bad (_("Unsupported use of .gpdword"));
12138 ignore_rest_of_line ();
12139 }
12140
12141 p = frag_more (8);
12142 md_number_to_chars (p, 0, 8);
12143 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
12144 BFD_RELOC_GPREL32)->fx_tcbit = 1;
12145
12146 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
12147 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
12148 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
12149
12150 demand_empty_rest_of_line ();
12151 }
12152
12153 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
12154 tables in SVR4 PIC code. */
12155
12156 static void
12157 s_cpadd (int ignore ATTRIBUTE_UNUSED)
12158 {
12159 int reg;
12160
12161 /* This is ignored when not generating SVR4 PIC code. */
12162 if (mips_pic != SVR4_PIC)
12163 {
12164 s_ignore (0);
12165 return;
12166 }
12167
12168 /* Add $gp to the register named as an argument. */
12169 macro_start ();
12170 reg = tc_get_register (0);
12171 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
12172 macro_end ();
12173
12174 demand_empty_rest_of_line ();
12175 }
12176
12177 /* Handle the .insn pseudo-op. This marks instruction labels in
12178 mips16 mode. This permits the linker to handle them specially,
12179 such as generating jalx instructions when needed. We also make
12180 them odd for the duration of the assembly, in order to generate the
12181 right sort of code. We will make them even in the adjust_symtab
12182 routine, while leaving them marked. This is convenient for the
12183 debugger and the disassembler. The linker knows to make them odd
12184 again. */
12185
12186 static void
12187 s_insn (int ignore ATTRIBUTE_UNUSED)
12188 {
12189 mips16_mark_labels ();
12190
12191 demand_empty_rest_of_line ();
12192 }
12193
12194 /* Handle a .stabn directive. We need these in order to mark a label
12195 as being a mips16 text label correctly. Sometimes the compiler
12196 will emit a label, followed by a .stabn, and then switch sections.
12197 If the label and .stabn are in mips16 mode, then the label is
12198 really a mips16 text label. */
12199
12200 static void
12201 s_mips_stab (int type)
12202 {
12203 if (type == 'n')
12204 mips16_mark_labels ();
12205
12206 s_stab (type);
12207 }
12208
12209 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.
12210 */
12211
12212 static void
12213 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
12214 {
12215 char *name;
12216 int c;
12217 symbolS *symbolP;
12218 expressionS exp;
12219
12220 name = input_line_pointer;
12221 c = get_symbol_end ();
12222 symbolP = symbol_find_or_make (name);
12223 S_SET_WEAK (symbolP);
12224 *input_line_pointer = c;
12225
12226 SKIP_WHITESPACE ();
12227
12228 if (! is_end_of_line[(unsigned char) *input_line_pointer])
12229 {
12230 if (S_IS_DEFINED (symbolP))
12231 {
12232 as_bad ("ignoring attempt to redefine symbol %s",
12233 S_GET_NAME (symbolP));
12234 ignore_rest_of_line ();
12235 return;
12236 }
12237
12238 if (*input_line_pointer == ',')
12239 {
12240 ++input_line_pointer;
12241 SKIP_WHITESPACE ();
12242 }
12243
12244 expression (&exp);
12245 if (exp.X_op != O_symbol)
12246 {
12247 as_bad ("bad .weakext directive");
12248 ignore_rest_of_line ();
12249 return;
12250 }
12251 symbol_set_value_expression (symbolP, &exp);
12252 }
12253
12254 demand_empty_rest_of_line ();
12255 }
12256
12257 /* Parse a register string into a number. Called from the ECOFF code
12258 to parse .frame. The argument is non-zero if this is the frame
12259 register, so that we can record it in mips_frame_reg. */
12260
12261 int
12262 tc_get_register (int frame)
12263 {
12264 int reg;
12265
12266 SKIP_WHITESPACE ();
12267 if (*input_line_pointer++ != '$')
12268 {
12269 as_warn (_("expected `$'"));
12270 reg = ZERO;
12271 }
12272 else if (ISDIGIT (*input_line_pointer))
12273 {
12274 reg = get_absolute_expression ();
12275 if (reg < 0 || reg >= 32)
12276 {
12277 as_warn (_("Bad register number"));
12278 reg = ZERO;
12279 }
12280 }
12281 else
12282 {
12283 if (strncmp (input_line_pointer, "ra", 2) == 0)
12284 {
12285 reg = RA;
12286 input_line_pointer += 2;
12287 }
12288 else if (strncmp (input_line_pointer, "fp", 2) == 0)
12289 {
12290 reg = FP;
12291 input_line_pointer += 2;
12292 }
12293 else if (strncmp (input_line_pointer, "sp", 2) == 0)
12294 {
12295 reg = SP;
12296 input_line_pointer += 2;
12297 }
12298 else if (strncmp (input_line_pointer, "gp", 2) == 0)
12299 {
12300 reg = GP;
12301 input_line_pointer += 2;
12302 }
12303 else if (strncmp (input_line_pointer, "at", 2) == 0)
12304 {
12305 reg = AT;
12306 input_line_pointer += 2;
12307 }
12308 else if (strncmp (input_line_pointer, "kt0", 3) == 0)
12309 {
12310 reg = KT0;
12311 input_line_pointer += 3;
12312 }
12313 else if (strncmp (input_line_pointer, "kt1", 3) == 0)
12314 {
12315 reg = KT1;
12316 input_line_pointer += 3;
12317 }
12318 else if (strncmp (input_line_pointer, "zero", 4) == 0)
12319 {
12320 reg = ZERO;
12321 input_line_pointer += 4;
12322 }
12323 else
12324 {
12325 as_warn (_("Unrecognized register name"));
12326 reg = ZERO;
12327 while (ISALNUM(*input_line_pointer))
12328 input_line_pointer++;
12329 }
12330 }
12331 if (frame)
12332 {
12333 mips_frame_reg = reg != 0 ? reg : SP;
12334 mips_frame_reg_valid = 1;
12335 mips_cprestore_valid = 0;
12336 }
12337 return reg;
12338 }
12339
12340 valueT
12341 md_section_align (asection *seg, valueT addr)
12342 {
12343 int align = bfd_get_section_alignment (stdoutput, seg);
12344
12345 #ifdef OBJ_ELF
12346 /* We don't need to align ELF sections to the full alignment.
12347 However, Irix 5 may prefer that we align them at least to a 16
12348 byte boundary. We don't bother to align the sections if we are
12349 targeted for an embedded system. */
12350 if (strcmp (TARGET_OS, "elf") == 0)
12351 return addr;
12352 if (align > 4)
12353 align = 4;
12354 #endif
12355
12356 return ((addr + (1 << align) - 1) & (-1 << align));
12357 }
12358
12359 /* Utility routine, called from above as well. If called while the
12360 input file is still being read, it's only an approximation. (For
12361 example, a symbol may later become defined which appeared to be
12362 undefined earlier.) */
12363
12364 static int
12365 nopic_need_relax (symbolS *sym, int before_relaxing)
12366 {
12367 if (sym == 0)
12368 return 0;
12369
12370 if (g_switch_value > 0)
12371 {
12372 const char *symname;
12373 int change;
12374
12375 /* Find out whether this symbol can be referenced off the $gp
12376 register. It can be if it is smaller than the -G size or if
12377 it is in the .sdata or .sbss section. Certain symbols can
12378 not be referenced off the $gp, although it appears as though
12379 they can. */
12380 symname = S_GET_NAME (sym);
12381 if (symname != (const char *) NULL
12382 && (strcmp (symname, "eprol") == 0
12383 || strcmp (symname, "etext") == 0
12384 || strcmp (symname, "_gp") == 0
12385 || strcmp (symname, "edata") == 0
12386 || strcmp (symname, "_fbss") == 0
12387 || strcmp (symname, "_fdata") == 0
12388 || strcmp (symname, "_ftext") == 0
12389 || strcmp (symname, "end") == 0
12390 || strcmp (symname, "_gp_disp") == 0))
12391 change = 1;
12392 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
12393 && (0
12394 #ifndef NO_ECOFF_DEBUGGING
12395 || (symbol_get_obj (sym)->ecoff_extern_size != 0
12396 && (symbol_get_obj (sym)->ecoff_extern_size
12397 <= g_switch_value))
12398 #endif
12399 /* We must defer this decision until after the whole
12400 file has been read, since there might be a .extern
12401 after the first use of this symbol. */
12402 || (before_relaxing
12403 #ifndef NO_ECOFF_DEBUGGING
12404 && symbol_get_obj (sym)->ecoff_extern_size == 0
12405 #endif
12406 && S_GET_VALUE (sym) == 0)
12407 || (S_GET_VALUE (sym) != 0
12408 && S_GET_VALUE (sym) <= g_switch_value)))
12409 change = 0;
12410 else
12411 {
12412 const char *segname;
12413
12414 segname = segment_name (S_GET_SEGMENT (sym));
12415 assert (strcmp (segname, ".lit8") != 0
12416 && strcmp (segname, ".lit4") != 0);
12417 change = (strcmp (segname, ".sdata") != 0
12418 && strcmp (segname, ".sbss") != 0
12419 && strncmp (segname, ".sdata.", 7) != 0
12420 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
12421 }
12422 return change;
12423 }
12424 else
12425 /* We are not optimizing for the $gp register. */
12426 return 1;
12427 }
12428
12429
12430 /* Return true if the given symbol should be considered local for SVR4 PIC. */
12431
12432 static bfd_boolean
12433 pic_need_relax (symbolS *sym, asection *segtype)
12434 {
12435 asection *symsec;
12436 bfd_boolean linkonce;
12437
12438 /* Handle the case of a symbol equated to another symbol. */
12439 while (symbol_equated_reloc_p (sym))
12440 {
12441 symbolS *n;
12442
12443 /* It's possible to get a loop here in a badly written
12444 program. */
12445 n = symbol_get_value_expression (sym)->X_add_symbol;
12446 if (n == sym)
12447 break;
12448 sym = n;
12449 }
12450
12451 symsec = S_GET_SEGMENT (sym);
12452
12453 /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */
12454 linkonce = FALSE;
12455 if (symsec != segtype && ! S_IS_LOCAL (sym))
12456 {
12457 if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
12458 != 0)
12459 linkonce = TRUE;
12460
12461 /* The GNU toolchain uses an extension for ELF: a section
12462 beginning with the magic string .gnu.linkonce is a linkonce
12463 section. */
12464 if (strncmp (segment_name (symsec), ".gnu.linkonce",
12465 sizeof ".gnu.linkonce" - 1) == 0)
12466 linkonce = TRUE;
12467 }
12468
12469 /* This must duplicate the test in adjust_reloc_syms. */
12470 return (symsec != &bfd_und_section
12471 && symsec != &bfd_abs_section
12472 && ! bfd_is_com_section (symsec)
12473 && !linkonce
12474 #ifdef OBJ_ELF
12475 /* A global or weak symbol is treated as external. */
12476 && (OUTPUT_FLAVOR != bfd_target_elf_flavour
12477 || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
12478 #endif
12479 );
12480 }
12481
12482
12483 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
12484 extended opcode. SEC is the section the frag is in. */
12485
12486 static int
12487 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
12488 {
12489 int type;
12490 register const struct mips16_immed_operand *op;
12491 offsetT val;
12492 int mintiny, maxtiny;
12493 segT symsec;
12494 fragS *sym_frag;
12495
12496 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
12497 return 0;
12498 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
12499 return 1;
12500
12501 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
12502 op = mips16_immed_operands;
12503 while (op->type != type)
12504 {
12505 ++op;
12506 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
12507 }
12508
12509 if (op->unsp)
12510 {
12511 if (type == '<' || type == '>' || type == '[' || type == ']')
12512 {
12513 mintiny = 1;
12514 maxtiny = 1 << op->nbits;
12515 }
12516 else
12517 {
12518 mintiny = 0;
12519 maxtiny = (1 << op->nbits) - 1;
12520 }
12521 }
12522 else
12523 {
12524 mintiny = - (1 << (op->nbits - 1));
12525 maxtiny = (1 << (op->nbits - 1)) - 1;
12526 }
12527
12528 sym_frag = symbol_get_frag (fragp->fr_symbol);
12529 val = S_GET_VALUE (fragp->fr_symbol);
12530 symsec = S_GET_SEGMENT (fragp->fr_symbol);
12531
12532 if (op->pcrel)
12533 {
12534 addressT addr;
12535
12536 /* We won't have the section when we are called from
12537 mips_relax_frag. However, we will always have been called
12538 from md_estimate_size_before_relax first. If this is a
12539 branch to a different section, we mark it as such. If SEC is
12540 NULL, and the frag is not marked, then it must be a branch to
12541 the same section. */
12542 if (sec == NULL)
12543 {
12544 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
12545 return 1;
12546 }
12547 else
12548 {
12549 /* Must have been called from md_estimate_size_before_relax. */
12550 if (symsec != sec)
12551 {
12552 fragp->fr_subtype =
12553 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12554
12555 /* FIXME: We should support this, and let the linker
12556 catch branches and loads that are out of range. */
12557 as_bad_where (fragp->fr_file, fragp->fr_line,
12558 _("unsupported PC relative reference to different section"));
12559
12560 return 1;
12561 }
12562 if (fragp != sym_frag && sym_frag->fr_address == 0)
12563 /* Assume non-extended on the first relaxation pass.
12564 The address we have calculated will be bogus if this is
12565 a forward branch to another frag, as the forward frag
12566 will have fr_address == 0. */
12567 return 0;
12568 }
12569
12570 /* In this case, we know for sure that the symbol fragment is in
12571 the same section. If the relax_marker of the symbol fragment
12572 differs from the relax_marker of this fragment, we have not
12573 yet adjusted the symbol fragment fr_address. We want to add
12574 in STRETCH in order to get a better estimate of the address.
12575 This particularly matters because of the shift bits. */
12576 if (stretch != 0
12577 && sym_frag->relax_marker != fragp->relax_marker)
12578 {
12579 fragS *f;
12580
12581 /* Adjust stretch for any alignment frag. Note that if have
12582 been expanding the earlier code, the symbol may be
12583 defined in what appears to be an earlier frag. FIXME:
12584 This doesn't handle the fr_subtype field, which specifies
12585 a maximum number of bytes to skip when doing an
12586 alignment. */
12587 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
12588 {
12589 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
12590 {
12591 if (stretch < 0)
12592 stretch = - ((- stretch)
12593 & ~ ((1 << (int) f->fr_offset) - 1));
12594 else
12595 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
12596 if (stretch == 0)
12597 break;
12598 }
12599 }
12600 if (f != NULL)
12601 val += stretch;
12602 }
12603
12604 addr = fragp->fr_address + fragp->fr_fix;
12605
12606 /* The base address rules are complicated. The base address of
12607 a branch is the following instruction. The base address of a
12608 PC relative load or add is the instruction itself, but if it
12609 is in a delay slot (in which case it can not be extended) use
12610 the address of the instruction whose delay slot it is in. */
12611 if (type == 'p' || type == 'q')
12612 {
12613 addr += 2;
12614
12615 /* If we are currently assuming that this frag should be
12616 extended, then, the current address is two bytes
12617 higher. */
12618 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12619 addr += 2;
12620
12621 /* Ignore the low bit in the target, since it will be set
12622 for a text label. */
12623 if ((val & 1) != 0)
12624 --val;
12625 }
12626 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
12627 addr -= 4;
12628 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
12629 addr -= 2;
12630
12631 val -= addr & ~ ((1 << op->shift) - 1);
12632
12633 /* Branch offsets have an implicit 0 in the lowest bit. */
12634 if (type == 'p' || type == 'q')
12635 val /= 2;
12636
12637 /* If any of the shifted bits are set, we must use an extended
12638 opcode. If the address depends on the size of this
12639 instruction, this can lead to a loop, so we arrange to always
12640 use an extended opcode. We only check this when we are in
12641 the main relaxation loop, when SEC is NULL. */
12642 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
12643 {
12644 fragp->fr_subtype =
12645 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12646 return 1;
12647 }
12648
12649 /* If we are about to mark a frag as extended because the value
12650 is precisely maxtiny + 1, then there is a chance of an
12651 infinite loop as in the following code:
12652 la $4,foo
12653 .skip 1020
12654 .align 2
12655 foo:
12656 In this case when the la is extended, foo is 0x3fc bytes
12657 away, so the la can be shrunk, but then foo is 0x400 away, so
12658 the la must be extended. To avoid this loop, we mark the
12659 frag as extended if it was small, and is about to become
12660 extended with a value of maxtiny + 1. */
12661 if (val == ((maxtiny + 1) << op->shift)
12662 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
12663 && sec == NULL)
12664 {
12665 fragp->fr_subtype =
12666 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12667 return 1;
12668 }
12669 }
12670 else if (symsec != absolute_section && sec != NULL)
12671 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
12672
12673 if ((val & ((1 << op->shift) - 1)) != 0
12674 || val < (mintiny << op->shift)
12675 || val > (maxtiny << op->shift))
12676 return 1;
12677 else
12678 return 0;
12679 }
12680
12681 /* Compute the length of a branch sequence, and adjust the
12682 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
12683 worst-case length is computed, with UPDATE being used to indicate
12684 whether an unconditional (-1), branch-likely (+1) or regular (0)
12685 branch is to be computed. */
12686 static int
12687 relaxed_branch_length (fragS *fragp, asection *sec, int update)
12688 {
12689 bfd_boolean toofar;
12690 int length;
12691
12692 if (fragp
12693 && S_IS_DEFINED (fragp->fr_symbol)
12694 && sec == S_GET_SEGMENT (fragp->fr_symbol))
12695 {
12696 addressT addr;
12697 offsetT val;
12698
12699 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
12700
12701 addr = fragp->fr_address + fragp->fr_fix + 4;
12702
12703 val -= addr;
12704
12705 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
12706 }
12707 else if (fragp)
12708 /* If the symbol is not defined or it's in a different segment,
12709 assume the user knows what's going on and emit a short
12710 branch. */
12711 toofar = FALSE;
12712 else
12713 toofar = TRUE;
12714
12715 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
12716 fragp->fr_subtype
12717 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype),
12718 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
12719 RELAX_BRANCH_LINK (fragp->fr_subtype),
12720 toofar);
12721
12722 length = 4;
12723 if (toofar)
12724 {
12725 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
12726 length += 8;
12727
12728 if (mips_pic != NO_PIC)
12729 {
12730 /* Additional space for PIC loading of target address. */
12731 length += 8;
12732 if (mips_opts.isa == ISA_MIPS1)
12733 /* Additional space for $at-stabilizing nop. */
12734 length += 4;
12735 }
12736
12737 /* If branch is conditional. */
12738 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
12739 length += 8;
12740 }
12741
12742 return length;
12743 }
12744
12745 /* Estimate the size of a frag before relaxing. Unless this is the
12746 mips16, we are not really relaxing here, and the final size is
12747 encoded in the subtype information. For the mips16, we have to
12748 decide whether we are using an extended opcode or not. */
12749
12750 int
12751 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
12752 {
12753 int change;
12754
12755 if (RELAX_BRANCH_P (fragp->fr_subtype))
12756 {
12757
12758 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
12759
12760 return fragp->fr_var;
12761 }
12762
12763 if (RELAX_MIPS16_P (fragp->fr_subtype))
12764 /* We don't want to modify the EXTENDED bit here; it might get us
12765 into infinite loops. We change it only in mips_relax_frag(). */
12766 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
12767
12768 if (mips_pic == NO_PIC)
12769 change = nopic_need_relax (fragp->fr_symbol, 0);
12770 else if (mips_pic == SVR4_PIC)
12771 change = pic_need_relax (fragp->fr_symbol, segtype);
12772 else
12773 abort ();
12774
12775 if (change)
12776 {
12777 fragp->fr_subtype |= RELAX_USE_SECOND;
12778 return -RELAX_FIRST (fragp->fr_subtype);
12779 }
12780 else
12781 return -RELAX_SECOND (fragp->fr_subtype);
12782 }
12783
12784 /* This is called to see whether a reloc against a defined symbol
12785 should be converted into a reloc against a section. */
12786
12787 int
12788 mips_fix_adjustable (fixS *fixp)
12789 {
12790 /* Don't adjust MIPS16 jump relocations, so we don't have to worry
12791 about the format of the offset in the .o file. */
12792 if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)
12793 return 0;
12794
12795 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
12796 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
12797 return 0;
12798
12799 if (fixp->fx_addsy == NULL)
12800 return 1;
12801
12802 /* If symbol SYM is in a mergeable section, relocations of the form
12803 SYM + 0 can usually be made section-relative. The mergeable data
12804 is then identified by the section offset rather than by the symbol.
12805
12806 However, if we're generating REL LO16 relocations, the offset is split
12807 between the LO16 and parterning high part relocation. The linker will
12808 need to recalculate the complete offset in order to correctly identify
12809 the merge data.
12810
12811 The linker has traditionally not looked for the parterning high part
12812 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
12813 placed anywhere. Rather than break backwards compatibility by changing
12814 this, it seems better not to force the issue, and instead keep the
12815 original symbol. This will work with either linker behavior. */
12816 if ((fixp->fx_r_type == BFD_RELOC_LO16 || reloc_needs_lo_p (fixp->fx_r_type))
12817 && HAVE_IN_PLACE_ADDENDS
12818 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
12819 return 0;
12820
12821 #ifdef OBJ_ELF
12822 /* Don't adjust relocations against mips16 symbols, so that the linker
12823 can find them if it needs to set up a stub. */
12824 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
12825 && S_GET_OTHER (fixp->fx_addsy) == STO_MIPS16
12826 && fixp->fx_subsy == NULL)
12827 return 0;
12828 #endif
12829
12830 return 1;
12831 }
12832
12833 /* Translate internal representation of relocation info to BFD target
12834 format. */
12835
12836 arelent **
12837 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
12838 {
12839 static arelent *retval[4];
12840 arelent *reloc;
12841 bfd_reloc_code_real_type code;
12842
12843 memset (retval, 0, sizeof(retval));
12844 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
12845 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
12846 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
12847 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
12848
12849 assert (! fixp->fx_pcrel);
12850 reloc->addend = fixp->fx_addnumber;
12851
12852 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
12853 entry to be used in the relocation's section offset. */
12854 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
12855 {
12856 reloc->address = reloc->addend;
12857 reloc->addend = 0;
12858 }
12859
12860 code = fixp->fx_r_type;
12861
12862 /* To support a PC relative reloc, we used a Cygnus extension.
12863 We check for that here to make sure that we don't let such a
12864 reloc escape normally. (FIXME: This was formerly used by
12865 embedded-PIC support, but is now used by branch handling in
12866 general. That probably should be fixed.) */
12867 if ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
12868 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
12869 && code == BFD_RELOC_16_PCREL_S2)
12870 reloc->howto = NULL;
12871 else
12872 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
12873
12874 if (reloc->howto == NULL)
12875 {
12876 as_bad_where (fixp->fx_file, fixp->fx_line,
12877 _("Can not represent %s relocation in this object file format"),
12878 bfd_get_reloc_code_name (code));
12879 retval[0] = NULL;
12880 }
12881
12882 return retval;
12883 }
12884
12885 /* Relax a machine dependent frag. This returns the amount by which
12886 the current size of the frag should change. */
12887
12888 int
12889 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
12890 {
12891 if (RELAX_BRANCH_P (fragp->fr_subtype))
12892 {
12893 offsetT old_var = fragp->fr_var;
12894
12895 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
12896
12897 return fragp->fr_var - old_var;
12898 }
12899
12900 if (! RELAX_MIPS16_P (fragp->fr_subtype))
12901 return 0;
12902
12903 if (mips16_extended_frag (fragp, NULL, stretch))
12904 {
12905 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12906 return 0;
12907 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
12908 return 2;
12909 }
12910 else
12911 {
12912 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12913 return 0;
12914 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
12915 return -2;
12916 }
12917
12918 return 0;
12919 }
12920
12921 /* Convert a machine dependent frag. */
12922
12923 void
12924 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
12925 {
12926 if (RELAX_BRANCH_P (fragp->fr_subtype))
12927 {
12928 bfd_byte *buf;
12929 unsigned long insn;
12930 expressionS exp;
12931 fixS *fixp;
12932
12933 buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
12934
12935 if (target_big_endian)
12936 insn = bfd_getb32 (buf);
12937 else
12938 insn = bfd_getl32 (buf);
12939
12940 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
12941 {
12942 /* We generate a fixup instead of applying it right now
12943 because, if there are linker relaxations, we're going to
12944 need the relocations. */
12945 exp.X_op = O_symbol;
12946 exp.X_add_symbol = fragp->fr_symbol;
12947 exp.X_add_number = fragp->fr_offset;
12948
12949 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
12950 4, &exp, 1,
12951 BFD_RELOC_16_PCREL_S2);
12952 fixp->fx_file = fragp->fr_file;
12953 fixp->fx_line = fragp->fr_line;
12954
12955 md_number_to_chars (buf, insn, 4);
12956 buf += 4;
12957 }
12958 else
12959 {
12960 int i;
12961
12962 as_warn_where (fragp->fr_file, fragp->fr_line,
12963 _("relaxed out-of-range branch into a jump"));
12964
12965 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
12966 goto uncond;
12967
12968 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
12969 {
12970 /* Reverse the branch. */
12971 switch ((insn >> 28) & 0xf)
12972 {
12973 case 4:
12974 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
12975 have the condition reversed by tweaking a single
12976 bit, and their opcodes all have 0x4???????. */
12977 assert ((insn & 0xf1000000) == 0x41000000);
12978 insn ^= 0x00010000;
12979 break;
12980
12981 case 0:
12982 /* bltz 0x04000000 bgez 0x04010000
12983 bltzal 0x04100000 bgezal 0x04110000 */
12984 assert ((insn & 0xfc0e0000) == 0x04000000);
12985 insn ^= 0x00010000;
12986 break;
12987
12988 case 1:
12989 /* beq 0x10000000 bne 0x14000000
12990 blez 0x18000000 bgtz 0x1c000000 */
12991 insn ^= 0x04000000;
12992 break;
12993
12994 default:
12995 abort ();
12996 }
12997 }
12998
12999 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
13000 {
13001 /* Clear the and-link bit. */
13002 assert ((insn & 0xfc1c0000) == 0x04100000);
13003
13004 /* bltzal 0x04100000 bgezal 0x04110000
13005 bltzall 0x04120000 bgezall 0x04130000 */
13006 insn &= ~0x00100000;
13007 }
13008
13009 /* Branch over the branch (if the branch was likely) or the
13010 full jump (not likely case). Compute the offset from the
13011 current instruction to branch to. */
13012 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
13013 i = 16;
13014 else
13015 {
13016 /* How many bytes in instructions we've already emitted? */
13017 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
13018 /* How many bytes in instructions from here to the end? */
13019 i = fragp->fr_var - i;
13020 }
13021 /* Convert to instruction count. */
13022 i >>= 2;
13023 /* Branch counts from the next instruction. */
13024 i--;
13025 insn |= i;
13026 /* Branch over the jump. */
13027 md_number_to_chars (buf, insn, 4);
13028 buf += 4;
13029
13030 /* Nop */
13031 md_number_to_chars (buf, 0, 4);
13032 buf += 4;
13033
13034 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
13035 {
13036 /* beql $0, $0, 2f */
13037 insn = 0x50000000;
13038 /* Compute the PC offset from the current instruction to
13039 the end of the variable frag. */
13040 /* How many bytes in instructions we've already emitted? */
13041 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
13042 /* How many bytes in instructions from here to the end? */
13043 i = fragp->fr_var - i;
13044 /* Convert to instruction count. */
13045 i >>= 2;
13046 /* Don't decrement i, because we want to branch over the
13047 delay slot. */
13048
13049 insn |= i;
13050 md_number_to_chars (buf, insn, 4);
13051 buf += 4;
13052
13053 md_number_to_chars (buf, 0, 4);
13054 buf += 4;
13055 }
13056
13057 uncond:
13058 if (mips_pic == NO_PIC)
13059 {
13060 /* j or jal. */
13061 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
13062 ? 0x0c000000 : 0x08000000);
13063 exp.X_op = O_symbol;
13064 exp.X_add_symbol = fragp->fr_symbol;
13065 exp.X_add_number = fragp->fr_offset;
13066
13067 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13068 4, &exp, 0, BFD_RELOC_MIPS_JMP);
13069 fixp->fx_file = fragp->fr_file;
13070 fixp->fx_line = fragp->fr_line;
13071
13072 md_number_to_chars (buf, insn, 4);
13073 buf += 4;
13074 }
13075 else
13076 {
13077 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
13078 insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000;
13079 exp.X_op = O_symbol;
13080 exp.X_add_symbol = fragp->fr_symbol;
13081 exp.X_add_number = fragp->fr_offset;
13082
13083 if (fragp->fr_offset)
13084 {
13085 exp.X_add_symbol = make_expr_symbol (&exp);
13086 exp.X_add_number = 0;
13087 }
13088
13089 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13090 4, &exp, 0, BFD_RELOC_MIPS_GOT16);
13091 fixp->fx_file = fragp->fr_file;
13092 fixp->fx_line = fragp->fr_line;
13093
13094 md_number_to_chars (buf, insn, 4);
13095 buf += 4;
13096
13097 if (mips_opts.isa == ISA_MIPS1)
13098 {
13099 /* nop */
13100 md_number_to_chars (buf, 0, 4);
13101 buf += 4;
13102 }
13103
13104 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
13105 insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000;
13106
13107 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13108 4, &exp, 0, BFD_RELOC_LO16);
13109 fixp->fx_file = fragp->fr_file;
13110 fixp->fx_line = fragp->fr_line;
13111
13112 md_number_to_chars (buf, insn, 4);
13113 buf += 4;
13114
13115 /* j(al)r $at. */
13116 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
13117 insn = 0x0020f809;
13118 else
13119 insn = 0x00200008;
13120
13121 md_number_to_chars (buf, insn, 4);
13122 buf += 4;
13123 }
13124 }
13125
13126 assert (buf == (bfd_byte *)fragp->fr_literal
13127 + fragp->fr_fix + fragp->fr_var);
13128
13129 fragp->fr_fix += fragp->fr_var;
13130
13131 return;
13132 }
13133
13134 if (RELAX_MIPS16_P (fragp->fr_subtype))
13135 {
13136 int type;
13137 register const struct mips16_immed_operand *op;
13138 bfd_boolean small, ext;
13139 offsetT val;
13140 bfd_byte *buf;
13141 unsigned long insn;
13142 bfd_boolean use_extend;
13143 unsigned short extend;
13144
13145 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
13146 op = mips16_immed_operands;
13147 while (op->type != type)
13148 ++op;
13149
13150 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13151 {
13152 small = FALSE;
13153 ext = TRUE;
13154 }
13155 else
13156 {
13157 small = TRUE;
13158 ext = FALSE;
13159 }
13160
13161 resolve_symbol_value (fragp->fr_symbol);
13162 val = S_GET_VALUE (fragp->fr_symbol);
13163 if (op->pcrel)
13164 {
13165 addressT addr;
13166
13167 addr = fragp->fr_address + fragp->fr_fix;
13168
13169 /* The rules for the base address of a PC relative reloc are
13170 complicated; see mips16_extended_frag. */
13171 if (type == 'p' || type == 'q')
13172 {
13173 addr += 2;
13174 if (ext)
13175 addr += 2;
13176 /* Ignore the low bit in the target, since it will be
13177 set for a text label. */
13178 if ((val & 1) != 0)
13179 --val;
13180 }
13181 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
13182 addr -= 4;
13183 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
13184 addr -= 2;
13185
13186 addr &= ~ (addressT) ((1 << op->shift) - 1);
13187 val -= addr;
13188
13189 /* Make sure the section winds up with the alignment we have
13190 assumed. */
13191 if (op->shift > 0)
13192 record_alignment (asec, op->shift);
13193 }
13194
13195 if (ext
13196 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
13197 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
13198 as_warn_where (fragp->fr_file, fragp->fr_line,
13199 _("extended instruction in delay slot"));
13200
13201 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
13202
13203 if (target_big_endian)
13204 insn = bfd_getb16 (buf);
13205 else
13206 insn = bfd_getl16 (buf);
13207
13208 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
13209 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
13210 small, ext, &insn, &use_extend, &extend);
13211
13212 if (use_extend)
13213 {
13214 md_number_to_chars (buf, 0xf000 | extend, 2);
13215 fragp->fr_fix += 2;
13216 buf += 2;
13217 }
13218
13219 md_number_to_chars (buf, insn, 2);
13220 fragp->fr_fix += 2;
13221 buf += 2;
13222 }
13223 else
13224 {
13225 int first, second;
13226 fixS *fixp;
13227
13228 first = RELAX_FIRST (fragp->fr_subtype);
13229 second = RELAX_SECOND (fragp->fr_subtype);
13230 fixp = (fixS *) fragp->fr_opcode;
13231
13232 /* Possibly emit a warning if we've chosen the longer option. */
13233 if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
13234 == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
13235 {
13236 const char *msg = macro_warning (fragp->fr_subtype);
13237 if (msg != 0)
13238 as_warn_where (fragp->fr_file, fragp->fr_line, msg);
13239 }
13240
13241 /* Go through all the fixups for the first sequence. Disable them
13242 (by marking them as done) if we're going to use the second
13243 sequence instead. */
13244 while (fixp
13245 && fixp->fx_frag == fragp
13246 && fixp->fx_where < fragp->fr_fix - second)
13247 {
13248 if (fragp->fr_subtype & RELAX_USE_SECOND)
13249 fixp->fx_done = 1;
13250 fixp = fixp->fx_next;
13251 }
13252
13253 /* Go through the fixups for the second sequence. Disable them if
13254 we're going to use the first sequence, otherwise adjust their
13255 addresses to account for the relaxation. */
13256 while (fixp && fixp->fx_frag == fragp)
13257 {
13258 if (fragp->fr_subtype & RELAX_USE_SECOND)
13259 fixp->fx_where -= first;
13260 else
13261 fixp->fx_done = 1;
13262 fixp = fixp->fx_next;
13263 }
13264
13265 /* Now modify the frag contents. */
13266 if (fragp->fr_subtype & RELAX_USE_SECOND)
13267 {
13268 char *start;
13269
13270 start = fragp->fr_literal + fragp->fr_fix - first - second;
13271 memmove (start, start + first, second);
13272 fragp->fr_fix -= first;
13273 }
13274 else
13275 fragp->fr_fix -= second;
13276 }
13277 }
13278
13279 #ifdef OBJ_ELF
13280
13281 /* This function is called after the relocs have been generated.
13282 We've been storing mips16 text labels as odd. Here we convert them
13283 back to even for the convenience of the debugger. */
13284
13285 void
13286 mips_frob_file_after_relocs (void)
13287 {
13288 asymbol **syms;
13289 unsigned int count, i;
13290
13291 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
13292 return;
13293
13294 syms = bfd_get_outsymbols (stdoutput);
13295 count = bfd_get_symcount (stdoutput);
13296 for (i = 0; i < count; i++, syms++)
13297 {
13298 if (elf_symbol (*syms)->internal_elf_sym.st_other == STO_MIPS16
13299 && ((*syms)->value & 1) != 0)
13300 {
13301 (*syms)->value &= ~1;
13302 /* If the symbol has an odd size, it was probably computed
13303 incorrectly, so adjust that as well. */
13304 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
13305 ++elf_symbol (*syms)->internal_elf_sym.st_size;
13306 }
13307 }
13308 }
13309
13310 #endif
13311
13312 /* This function is called whenever a label is defined. It is used
13313 when handling branch delays; if a branch has a label, we assume we
13314 can not move it. */
13315
13316 void
13317 mips_define_label (symbolS *sym)
13318 {
13319 struct insn_label_list *l;
13320
13321 if (free_insn_labels == NULL)
13322 l = (struct insn_label_list *) xmalloc (sizeof *l);
13323 else
13324 {
13325 l = free_insn_labels;
13326 free_insn_labels = l->next;
13327 }
13328
13329 l->label = sym;
13330 l->next = insn_labels;
13331 insn_labels = l;
13332 }
13333 \f
13334 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13335
13336 /* Some special processing for a MIPS ELF file. */
13337
13338 void
13339 mips_elf_final_processing (void)
13340 {
13341 /* Write out the register information. */
13342 if (mips_abi != N64_ABI)
13343 {
13344 Elf32_RegInfo s;
13345
13346 s.ri_gprmask = mips_gprmask;
13347 s.ri_cprmask[0] = mips_cprmask[0];
13348 s.ri_cprmask[1] = mips_cprmask[1];
13349 s.ri_cprmask[2] = mips_cprmask[2];
13350 s.ri_cprmask[3] = mips_cprmask[3];
13351 /* The gp_value field is set by the MIPS ELF backend. */
13352
13353 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
13354 ((Elf32_External_RegInfo *)
13355 mips_regmask_frag));
13356 }
13357 else
13358 {
13359 Elf64_Internal_RegInfo s;
13360
13361 s.ri_gprmask = mips_gprmask;
13362 s.ri_pad = 0;
13363 s.ri_cprmask[0] = mips_cprmask[0];
13364 s.ri_cprmask[1] = mips_cprmask[1];
13365 s.ri_cprmask[2] = mips_cprmask[2];
13366 s.ri_cprmask[3] = mips_cprmask[3];
13367 /* The gp_value field is set by the MIPS ELF backend. */
13368
13369 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
13370 ((Elf64_External_RegInfo *)
13371 mips_regmask_frag));
13372 }
13373
13374 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
13375 sort of BFD interface for this. */
13376 if (mips_any_noreorder)
13377 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
13378 if (mips_pic != NO_PIC)
13379 {
13380 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
13381 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
13382 }
13383 if (mips_abicalls)
13384 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
13385
13386 /* Set MIPS ELF flags for ASEs. */
13387 if (file_ase_mips16)
13388 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
13389 #if 0 /* XXX FIXME */
13390 if (file_ase_mips3d)
13391 elf_elfheader (stdoutput)->e_flags |= ???;
13392 #endif
13393 if (file_ase_mdmx)
13394 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
13395
13396 /* Set the MIPS ELF ABI flags. */
13397 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
13398 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
13399 else if (mips_abi == O64_ABI)
13400 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
13401 else if (mips_abi == EABI_ABI)
13402 {
13403 if (!file_mips_gp32)
13404 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
13405 else
13406 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
13407 }
13408 else if (mips_abi == N32_ABI)
13409 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
13410
13411 /* Nothing to do for N64_ABI. */
13412
13413 if (mips_32bitmode)
13414 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
13415 }
13416
13417 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
13418 \f
13419 typedef struct proc {
13420 symbolS *isym;
13421 unsigned long reg_mask;
13422 unsigned long reg_offset;
13423 unsigned long fpreg_mask;
13424 unsigned long fpreg_offset;
13425 unsigned long frame_offset;
13426 unsigned long frame_reg;
13427 unsigned long pc_reg;
13428 } procS;
13429
13430 static procS cur_proc;
13431 static procS *cur_proc_ptr;
13432 static int numprocs;
13433
13434 /* Fill in an rs_align_code fragment. */
13435
13436 void
13437 mips_handle_align (fragS *fragp)
13438 {
13439 if (fragp->fr_type != rs_align_code)
13440 return;
13441
13442 if (mips_opts.mips16)
13443 {
13444 static const unsigned char be_nop[] = { 0x65, 0x00 };
13445 static const unsigned char le_nop[] = { 0x00, 0x65 };
13446
13447 int bytes;
13448 char *p;
13449
13450 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
13451 p = fragp->fr_literal + fragp->fr_fix;
13452
13453 if (bytes & 1)
13454 {
13455 *p++ = 0;
13456 fragp->fr_fix++;
13457 }
13458
13459 memcpy (p, (target_big_endian ? be_nop : le_nop), 2);
13460 fragp->fr_var = 2;
13461 }
13462
13463 /* For mips32, a nop is a zero, which we trivially get by doing nothing. */
13464 }
13465
13466 static void
13467 md_obj_begin (void)
13468 {
13469 }
13470
13471 static void
13472 md_obj_end (void)
13473 {
13474 /* check for premature end, nesting errors, etc */
13475 if (cur_proc_ptr)
13476 as_warn (_("missing .end at end of assembly"));
13477 }
13478
13479 static long
13480 get_number (void)
13481 {
13482 int negative = 0;
13483 long val = 0;
13484
13485 if (*input_line_pointer == '-')
13486 {
13487 ++input_line_pointer;
13488 negative = 1;
13489 }
13490 if (!ISDIGIT (*input_line_pointer))
13491 as_bad (_("expected simple number"));
13492 if (input_line_pointer[0] == '0')
13493 {
13494 if (input_line_pointer[1] == 'x')
13495 {
13496 input_line_pointer += 2;
13497 while (ISXDIGIT (*input_line_pointer))
13498 {
13499 val <<= 4;
13500 val |= hex_value (*input_line_pointer++);
13501 }
13502 return negative ? -val : val;
13503 }
13504 else
13505 {
13506 ++input_line_pointer;
13507 while (ISDIGIT (*input_line_pointer))
13508 {
13509 val <<= 3;
13510 val |= *input_line_pointer++ - '0';
13511 }
13512 return negative ? -val : val;
13513 }
13514 }
13515 if (!ISDIGIT (*input_line_pointer))
13516 {
13517 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
13518 *input_line_pointer, *input_line_pointer);
13519 as_warn (_("invalid number"));
13520 return -1;
13521 }
13522 while (ISDIGIT (*input_line_pointer))
13523 {
13524 val *= 10;
13525 val += *input_line_pointer++ - '0';
13526 }
13527 return negative ? -val : val;
13528 }
13529
13530 /* The .file directive; just like the usual .file directive, but there
13531 is an initial number which is the ECOFF file index. In the non-ECOFF
13532 case .file implies DWARF-2. */
13533
13534 static void
13535 s_mips_file (int x ATTRIBUTE_UNUSED)
13536 {
13537 static int first_file_directive = 0;
13538
13539 if (ECOFF_DEBUGGING)
13540 {
13541 get_number ();
13542 s_app_file (0);
13543 }
13544 else
13545 {
13546 char *filename;
13547
13548 filename = dwarf2_directive_file (0);
13549
13550 /* Versions of GCC up to 3.1 start files with a ".file"
13551 directive even for stabs output. Make sure that this
13552 ".file" is handled. Note that you need a version of GCC
13553 after 3.1 in order to support DWARF-2 on MIPS. */
13554 if (filename != NULL && ! first_file_directive)
13555 {
13556 (void) new_logical_line (filename, -1);
13557 s_app_file_string (filename, 0);
13558 }
13559 first_file_directive = 1;
13560 }
13561 }
13562
13563 /* The .loc directive, implying DWARF-2. */
13564
13565 static void
13566 s_mips_loc (int x ATTRIBUTE_UNUSED)
13567 {
13568 if (!ECOFF_DEBUGGING)
13569 dwarf2_directive_loc (0);
13570 }
13571
13572 /* The .end directive. */
13573
13574 static void
13575 s_mips_end (int x ATTRIBUTE_UNUSED)
13576 {
13577 symbolS *p;
13578
13579 /* Following functions need their own .frame and .cprestore directives. */
13580 mips_frame_reg_valid = 0;
13581 mips_cprestore_valid = 0;
13582
13583 if (!is_end_of_line[(unsigned char) *input_line_pointer])
13584 {
13585 p = get_symbol ();
13586 demand_empty_rest_of_line ();
13587 }
13588 else
13589 p = NULL;
13590
13591 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
13592 as_warn (_(".end not in text section"));
13593
13594 if (!cur_proc_ptr)
13595 {
13596 as_warn (_(".end directive without a preceding .ent directive."));
13597 demand_empty_rest_of_line ();
13598 return;
13599 }
13600
13601 if (p != NULL)
13602 {
13603 assert (S_GET_NAME (p));
13604 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->isym)))
13605 as_warn (_(".end symbol does not match .ent symbol."));
13606
13607 if (debug_type == DEBUG_STABS)
13608 stabs_generate_asm_endfunc (S_GET_NAME (p),
13609 S_GET_NAME (p));
13610 }
13611 else
13612 as_warn (_(".end directive missing or unknown symbol"));
13613
13614 #ifdef OBJ_ELF
13615 /* Generate a .pdr section. */
13616 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING
13617 && mips_flag_pdr)
13618 {
13619 segT saved_seg = now_seg;
13620 subsegT saved_subseg = now_subseg;
13621 valueT dot;
13622 expressionS exp;
13623 char *fragp;
13624
13625 dot = frag_now_fix ();
13626
13627 #ifdef md_flush_pending_output
13628 md_flush_pending_output ();
13629 #endif
13630
13631 assert (pdr_seg);
13632 subseg_set (pdr_seg, 0);
13633
13634 /* Write the symbol. */
13635 exp.X_op = O_symbol;
13636 exp.X_add_symbol = p;
13637 exp.X_add_number = 0;
13638 emit_expr (&exp, 4);
13639
13640 fragp = frag_more (7 * 4);
13641
13642 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
13643 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
13644 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
13645 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
13646 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
13647 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
13648 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
13649
13650 subseg_set (saved_seg, saved_subseg);
13651 }
13652 #endif /* OBJ_ELF */
13653
13654 cur_proc_ptr = NULL;
13655 }
13656
13657 /* The .aent and .ent directives. */
13658
13659 static void
13660 s_mips_ent (int aent)
13661 {
13662 symbolS *symbolP;
13663
13664 symbolP = get_symbol ();
13665 if (*input_line_pointer == ',')
13666 ++input_line_pointer;
13667 SKIP_WHITESPACE ();
13668 if (ISDIGIT (*input_line_pointer)
13669 || *input_line_pointer == '-')
13670 get_number ();
13671
13672 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
13673 as_warn (_(".ent or .aent not in text section."));
13674
13675 if (!aent && cur_proc_ptr)
13676 as_warn (_("missing .end"));
13677
13678 if (!aent)
13679 {
13680 /* This function needs its own .frame and .cprestore directives. */
13681 mips_frame_reg_valid = 0;
13682 mips_cprestore_valid = 0;
13683
13684 cur_proc_ptr = &cur_proc;
13685 memset (cur_proc_ptr, '\0', sizeof (procS));
13686
13687 cur_proc_ptr->isym = symbolP;
13688
13689 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
13690
13691 ++numprocs;
13692
13693 if (debug_type == DEBUG_STABS)
13694 stabs_generate_asm_func (S_GET_NAME (symbolP),
13695 S_GET_NAME (symbolP));
13696 }
13697
13698 demand_empty_rest_of_line ();
13699 }
13700
13701 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
13702 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
13703 s_mips_frame is used so that we can set the PDR information correctly.
13704 We can't use the ecoff routines because they make reference to the ecoff
13705 symbol table (in the mdebug section). */
13706
13707 static void
13708 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
13709 {
13710 #ifdef OBJ_ELF
13711 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13712 {
13713 long val;
13714
13715 if (cur_proc_ptr == (procS *) NULL)
13716 {
13717 as_warn (_(".frame outside of .ent"));
13718 demand_empty_rest_of_line ();
13719 return;
13720 }
13721
13722 cur_proc_ptr->frame_reg = tc_get_register (1);
13723
13724 SKIP_WHITESPACE ();
13725 if (*input_line_pointer++ != ','
13726 || get_absolute_expression_and_terminator (&val) != ',')
13727 {
13728 as_warn (_("Bad .frame directive"));
13729 --input_line_pointer;
13730 demand_empty_rest_of_line ();
13731 return;
13732 }
13733
13734 cur_proc_ptr->frame_offset = val;
13735 cur_proc_ptr->pc_reg = tc_get_register (0);
13736
13737 demand_empty_rest_of_line ();
13738 }
13739 else
13740 #endif /* OBJ_ELF */
13741 s_ignore (ignore);
13742 }
13743
13744 /* The .fmask and .mask directives. If the mdebug section is present
13745 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
13746 embedded targets, s_mips_mask is used so that we can set the PDR
13747 information correctly. We can't use the ecoff routines because they
13748 make reference to the ecoff symbol table (in the mdebug section). */
13749
13750 static void
13751 s_mips_mask (int reg_type)
13752 {
13753 #ifdef OBJ_ELF
13754 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13755 {
13756 long mask, off;
13757
13758 if (cur_proc_ptr == (procS *) NULL)
13759 {
13760 as_warn (_(".mask/.fmask outside of .ent"));
13761 demand_empty_rest_of_line ();
13762 return;
13763 }
13764
13765 if (get_absolute_expression_and_terminator (&mask) != ',')
13766 {
13767 as_warn (_("Bad .mask/.fmask directive"));
13768 --input_line_pointer;
13769 demand_empty_rest_of_line ();
13770 return;
13771 }
13772
13773 off = get_absolute_expression ();
13774
13775 if (reg_type == 'F')
13776 {
13777 cur_proc_ptr->fpreg_mask = mask;
13778 cur_proc_ptr->fpreg_offset = off;
13779 }
13780 else
13781 {
13782 cur_proc_ptr->reg_mask = mask;
13783 cur_proc_ptr->reg_offset = off;
13784 }
13785
13786 demand_empty_rest_of_line ();
13787 }
13788 else
13789 #endif /* OBJ_ELF */
13790 s_ignore (reg_type);
13791 }
13792
13793 /* A table describing all the processors gas knows about. Names are
13794 matched in the order listed.
13795
13796 To ease comparison, please keep this table in the same order as
13797 gcc's mips_cpu_info_table[]. */
13798 static const struct mips_cpu_info mips_cpu_info_table[] =
13799 {
13800 /* Entries for generic ISAs */
13801 { "mips1", 1, ISA_MIPS1, CPU_R3000 },
13802 { "mips2", 1, ISA_MIPS2, CPU_R6000 },
13803 { "mips3", 1, ISA_MIPS3, CPU_R4000 },
13804 { "mips4", 1, ISA_MIPS4, CPU_R8000 },
13805 { "mips5", 1, ISA_MIPS5, CPU_MIPS5 },
13806 { "mips32", 1, ISA_MIPS32, CPU_MIPS32 },
13807 { "mips32r2", 1, ISA_MIPS32R2, CPU_MIPS32R2 },
13808 { "mips64", 1, ISA_MIPS64, CPU_MIPS64 },
13809 { "mips64r2", 1, ISA_MIPS64R2, CPU_MIPS64R2 },
13810
13811 /* MIPS I */
13812 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
13813 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
13814 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
13815
13816 /* MIPS II */
13817 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
13818
13819 /* MIPS III */
13820 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
13821 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
13822 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
13823 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
13824 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
13825 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
13826 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
13827 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
13828 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
13829 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
13830 { "orion", 0, ISA_MIPS3, CPU_R4600 },
13831 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
13832
13833 /* MIPS IV */
13834 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
13835 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
13836 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
13837 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
13838 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
13839 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
13840 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
13841 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
13842 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
13843 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
13844 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
13845 { "rm7000", 0, ISA_MIPS4, CPU_RM7000 },
13846 { "rm9000", 0, ISA_MIPS4, CPU_RM9000 },
13847
13848 /* MIPS 32 */
13849 { "4kc", 0, ISA_MIPS32, CPU_MIPS32 },
13850 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
13851 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
13852
13853 /* MIPS 64 */
13854 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
13855 { "20kc", 0, ISA_MIPS64, CPU_MIPS64 },
13856
13857 /* Broadcom SB-1 CPU core */
13858 { "sb1", 0, ISA_MIPS64, CPU_SB1 },
13859
13860 /* End marker */
13861 { NULL, 0, 0, 0 }
13862 };
13863
13864
13865 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
13866 with a final "000" replaced by "k". Ignore case.
13867
13868 Note: this function is shared between GCC and GAS. */
13869
13870 static bfd_boolean
13871 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
13872 {
13873 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
13874 given++, canonical++;
13875
13876 return ((*given == 0 && *canonical == 0)
13877 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
13878 }
13879
13880
13881 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
13882 CPU name. We've traditionally allowed a lot of variation here.
13883
13884 Note: this function is shared between GCC and GAS. */
13885
13886 static bfd_boolean
13887 mips_matching_cpu_name_p (const char *canonical, const char *given)
13888 {
13889 /* First see if the name matches exactly, or with a final "000"
13890 turned into "k". */
13891 if (mips_strict_matching_cpu_name_p (canonical, given))
13892 return TRUE;
13893
13894 /* If not, try comparing based on numerical designation alone.
13895 See if GIVEN is an unadorned number, or 'r' followed by a number. */
13896 if (TOLOWER (*given) == 'r')
13897 given++;
13898 if (!ISDIGIT (*given))
13899 return FALSE;
13900
13901 /* Skip over some well-known prefixes in the canonical name,
13902 hoping to find a number there too. */
13903 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
13904 canonical += 2;
13905 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
13906 canonical += 2;
13907 else if (TOLOWER (canonical[0]) == 'r')
13908 canonical += 1;
13909
13910 return mips_strict_matching_cpu_name_p (canonical, given);
13911 }
13912
13913
13914 /* Parse an option that takes the name of a processor as its argument.
13915 OPTION is the name of the option and CPU_STRING is the argument.
13916 Return the corresponding processor enumeration if the CPU_STRING is
13917 recognized, otherwise report an error and return null.
13918
13919 A similar function exists in GCC. */
13920
13921 static const struct mips_cpu_info *
13922 mips_parse_cpu (const char *option, const char *cpu_string)
13923 {
13924 const struct mips_cpu_info *p;
13925
13926 /* 'from-abi' selects the most compatible architecture for the given
13927 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
13928 EABIs, we have to decide whether we're using the 32-bit or 64-bit
13929 version. Look first at the -mgp options, if given, otherwise base
13930 the choice on MIPS_DEFAULT_64BIT.
13931
13932 Treat NO_ABI like the EABIs. One reason to do this is that the
13933 plain 'mips' and 'mips64' configs have 'from-abi' as their default
13934 architecture. This code picks MIPS I for 'mips' and MIPS III for
13935 'mips64', just as we did in the days before 'from-abi'. */
13936 if (strcasecmp (cpu_string, "from-abi") == 0)
13937 {
13938 if (ABI_NEEDS_32BIT_REGS (mips_abi))
13939 return mips_cpu_info_from_isa (ISA_MIPS1);
13940
13941 if (ABI_NEEDS_64BIT_REGS (mips_abi))
13942 return mips_cpu_info_from_isa (ISA_MIPS3);
13943
13944 if (file_mips_gp32 >= 0)
13945 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
13946
13947 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
13948 ? ISA_MIPS3
13949 : ISA_MIPS1);
13950 }
13951
13952 /* 'default' has traditionally been a no-op. Probably not very useful. */
13953 if (strcasecmp (cpu_string, "default") == 0)
13954 return 0;
13955
13956 for (p = mips_cpu_info_table; p->name != 0; p++)
13957 if (mips_matching_cpu_name_p (p->name, cpu_string))
13958 return p;
13959
13960 as_bad ("Bad value (%s) for %s", cpu_string, option);
13961 return 0;
13962 }
13963
13964 /* Return the canonical processor information for ISA (a member of the
13965 ISA_MIPS* enumeration). */
13966
13967 static const struct mips_cpu_info *
13968 mips_cpu_info_from_isa (int isa)
13969 {
13970 int i;
13971
13972 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
13973 if (mips_cpu_info_table[i].is_isa
13974 && isa == mips_cpu_info_table[i].isa)
13975 return (&mips_cpu_info_table[i]);
13976
13977 return NULL;
13978 }
13979
13980 static const struct mips_cpu_info *
13981 mips_cpu_info_from_arch (int arch)
13982 {
13983 int i;
13984
13985 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
13986 if (arch == mips_cpu_info_table[i].cpu)
13987 return (&mips_cpu_info_table[i]);
13988
13989 return NULL;
13990 }
13991 \f
13992 static void
13993 show (FILE *stream, const char *string, int *col_p, int *first_p)
13994 {
13995 if (*first_p)
13996 {
13997 fprintf (stream, "%24s", "");
13998 *col_p = 24;
13999 }
14000 else
14001 {
14002 fprintf (stream, ", ");
14003 *col_p += 2;
14004 }
14005
14006 if (*col_p + strlen (string) > 72)
14007 {
14008 fprintf (stream, "\n%24s", "");
14009 *col_p = 24;
14010 }
14011
14012 fprintf (stream, "%s", string);
14013 *col_p += strlen (string);
14014
14015 *first_p = 0;
14016 }
14017
14018 void
14019 md_show_usage (FILE *stream)
14020 {
14021 int column, first;
14022 size_t i;
14023
14024 fprintf (stream, _("\
14025 MIPS options:\n\
14026 -EB generate big endian output\n\
14027 -EL generate little endian output\n\
14028 -g, -g2 do not remove unneeded NOPs or swap branches\n\
14029 -G NUM allow referencing objects up to NUM bytes\n\
14030 implicitly with the gp register [default 8]\n"));
14031 fprintf (stream, _("\
14032 -mips1 generate MIPS ISA I instructions\n\
14033 -mips2 generate MIPS ISA II instructions\n\
14034 -mips3 generate MIPS ISA III instructions\n\
14035 -mips4 generate MIPS ISA IV instructions\n\
14036 -mips5 generate MIPS ISA V instructions\n\
14037 -mips32 generate MIPS32 ISA instructions\n\
14038 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
14039 -mips64 generate MIPS64 ISA instructions\n\
14040 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
14041 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
14042
14043 first = 1;
14044
14045 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
14046 show (stream, mips_cpu_info_table[i].name, &column, &first);
14047 show (stream, "from-abi", &column, &first);
14048 fputc ('\n', stream);
14049
14050 fprintf (stream, _("\
14051 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
14052 -no-mCPU don't generate code specific to CPU.\n\
14053 For -mCPU and -no-mCPU, CPU must be one of:\n"));
14054
14055 first = 1;
14056
14057 show (stream, "3900", &column, &first);
14058 show (stream, "4010", &column, &first);
14059 show (stream, "4100", &column, &first);
14060 show (stream, "4650", &column, &first);
14061 fputc ('\n', stream);
14062
14063 fprintf (stream, _("\
14064 -mips16 generate mips16 instructions\n\
14065 -no-mips16 do not generate mips16 instructions\n"));
14066 fprintf (stream, _("\
14067 -mfix-vr4120 work around certain VR4120 errata\n\
14068 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
14069 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
14070 -O0 remove unneeded NOPs, do not swap branches\n\
14071 -O remove unneeded NOPs and swap branches\n\
14072 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
14073 --trap, --no-break trap exception on div by 0 and mult overflow\n\
14074 --break, --no-trap break exception on div by 0 and mult overflow\n"));
14075 #ifdef OBJ_ELF
14076 fprintf (stream, _("\
14077 -KPIC, -call_shared generate SVR4 position independent code\n\
14078 -non_shared do not generate position independent code\n\
14079 -xgot assume a 32 bit GOT\n\
14080 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
14081 -mabi=ABI create ABI conformant object file for:\n"));
14082
14083 first = 1;
14084
14085 show (stream, "32", &column, &first);
14086 show (stream, "o64", &column, &first);
14087 show (stream, "n32", &column, &first);
14088 show (stream, "64", &column, &first);
14089 show (stream, "eabi", &column, &first);
14090
14091 fputc ('\n', stream);
14092
14093 fprintf (stream, _("\
14094 -32 create o32 ABI object file (default)\n\
14095 -n32 create n32 ABI object file\n\
14096 -64 create 64 ABI object file\n"));
14097 #endif
14098 }
14099
14100 enum dwarf2_format
14101 mips_dwarf2_format (void)
14102 {
14103 if (mips_abi == N64_ABI)
14104 {
14105 #ifdef TE_IRIX
14106 return dwarf2_format_64bit_irix;
14107 #else
14108 return dwarf2_format_64bit;
14109 #endif
14110 }
14111 else
14112 return dwarf2_format_32bit;
14113 }
14114
14115 int
14116 mips_dwarf2_addr_size (void)
14117 {
14118 if (mips_abi == N64_ABI)
14119 return 8;
14120 else
14121 return 4;
14122 }