gas/
[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, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
4 Free Software Foundation, Inc.
5 Contributed by the OSF and Ralph Campbell.
6 Written by Keith Knowles and Ralph Campbell, working independently.
7 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
8 Support.
9
10 This file is part of GAS.
11
12 GAS is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3, or (at your option)
15 any later version.
16
17 GAS is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with GAS; see the file COPYING. If not, write to the Free
24 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
25 02110-1301, USA. */
26
27 #include "as.h"
28 #include "config.h"
29 #include "subsegs.h"
30 #include "safe-ctype.h"
31
32 #include "opcode/mips.h"
33 #include "itbl-ops.h"
34 #include "dwarf2dbg.h"
35 #include "dw2gencfi.h"
36
37 /* Check assumptions made in this file. */
38 typedef char static_assert1[sizeof (offsetT) < 8 ? -1 : 1];
39 typedef char static_assert2[sizeof (valueT) < 8 ? -1 : 1];
40
41 #ifdef DEBUG
42 #define DBG(x) printf x
43 #else
44 #define DBG(x)
45 #endif
46
47 #define SKIP_SPACE_TABS(S) \
48 do { while (*(S) == ' ' || *(S) == '\t') ++(S); } while (0)
49
50 /* Clean up namespace so we can include obj-elf.h too. */
51 static int mips_output_flavor (void);
52 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
53 #undef OBJ_PROCESS_STAB
54 #undef OUTPUT_FLAVOR
55 #undef S_GET_ALIGN
56 #undef S_GET_SIZE
57 #undef S_SET_ALIGN
58 #undef S_SET_SIZE
59 #undef obj_frob_file
60 #undef obj_frob_file_after_relocs
61 #undef obj_frob_symbol
62 #undef obj_pop_insert
63 #undef obj_sec_sym_ok_for_reloc
64 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
65
66 #include "obj-elf.h"
67 /* Fix any of them that we actually care about. */
68 #undef OUTPUT_FLAVOR
69 #define OUTPUT_FLAVOR mips_output_flavor()
70
71 #include "elf/mips.h"
72
73 #ifndef ECOFF_DEBUGGING
74 #define NO_ECOFF_DEBUGGING
75 #define ECOFF_DEBUGGING 0
76 #endif
77
78 int mips_flag_mdebug = -1;
79
80 /* Control generation of .pdr sections. Off by default on IRIX: the native
81 linker doesn't know about and discards them, but relocations against them
82 remain, leading to rld crashes. */
83 #ifdef TE_IRIX
84 int mips_flag_pdr = FALSE;
85 #else
86 int mips_flag_pdr = TRUE;
87 #endif
88
89 #include "ecoff.h"
90
91 static char *mips_regmask_frag;
92
93 #define ZERO 0
94 #define ATREG 1
95 #define S0 16
96 #define S7 23
97 #define TREG 24
98 #define PIC_CALL_REG 25
99 #define KT0 26
100 #define KT1 27
101 #define GP 28
102 #define SP 29
103 #define FP 30
104 #define RA 31
105
106 #define ILLEGAL_REG (32)
107
108 #define AT mips_opts.at
109
110 extern int target_big_endian;
111
112 /* The name of the readonly data section. */
113 #define RDATA_SECTION_NAME ".rodata"
114
115 /* Ways in which an instruction can be "appended" to the output. */
116 enum append_method {
117 /* Just add it normally. */
118 APPEND_ADD,
119
120 /* Add it normally and then add a nop. */
121 APPEND_ADD_WITH_NOP,
122
123 /* Turn an instruction with a delay slot into a "compact" version. */
124 APPEND_ADD_COMPACT,
125
126 /* Insert the instruction before the last one. */
127 APPEND_SWAP
128 };
129
130 /* Information about an instruction, including its format, operands
131 and fixups. */
132 struct mips_cl_insn
133 {
134 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
135 const struct mips_opcode *insn_mo;
136
137 /* The 16-bit or 32-bit bitstring of the instruction itself. This is
138 a copy of INSN_MO->match with the operands filled in. If we have
139 decided to use an extended MIPS16 instruction, this includes the
140 extension. */
141 unsigned long insn_opcode;
142
143 /* The frag that contains the instruction. */
144 struct frag *frag;
145
146 /* The offset into FRAG of the first instruction byte. */
147 long where;
148
149 /* The relocs associated with the instruction, if any. */
150 fixS *fixp[3];
151
152 /* True if this entry cannot be moved from its current position. */
153 unsigned int fixed_p : 1;
154
155 /* True if this instruction occurred in a .set noreorder block. */
156 unsigned int noreorder_p : 1;
157
158 /* True for mips16 instructions that jump to an absolute address. */
159 unsigned int mips16_absolute_jump_p : 1;
160
161 /* True if this instruction is complete. */
162 unsigned int complete_p : 1;
163
164 /* True if this instruction is cleared from history by unconditional
165 branch. */
166 unsigned int cleared_p : 1;
167 };
168
169 /* The ABI to use. */
170 enum mips_abi_level
171 {
172 NO_ABI = 0,
173 O32_ABI,
174 O64_ABI,
175 N32_ABI,
176 N64_ABI,
177 EABI_ABI
178 };
179
180 /* MIPS ABI we are using for this output file. */
181 static enum mips_abi_level mips_abi = NO_ABI;
182
183 /* Whether or not we have code that can call pic code. */
184 int mips_abicalls = FALSE;
185
186 /* Whether or not we have code which can be put into a shared
187 library. */
188 static bfd_boolean mips_in_shared = TRUE;
189
190 /* This is the set of options which may be modified by the .set
191 pseudo-op. We use a struct so that .set push and .set pop are more
192 reliable. */
193
194 struct mips_set_options
195 {
196 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
197 if it has not been initialized. Changed by `.set mipsN', and the
198 -mipsN command line option, and the default CPU. */
199 int isa;
200 /* Enabled Application Specific Extensions (ASEs). Changed by `.set
201 <asename>', by command line options, and based on the default
202 architecture. */
203 int ase;
204 /* Whether we are assembling for the mips16 processor. 0 if we are
205 not, 1 if we are, and -1 if the value has not been initialized.
206 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
207 -nomips16 command line options, and the default CPU. */
208 int mips16;
209 /* Whether we are assembling for the mipsMIPS ASE. 0 if we are not,
210 1 if we are, and -1 if the value has not been initialized. Changed
211 by `.set micromips' and `.set nomicromips', and the -mmicromips
212 and -mno-micromips command line options, and the default CPU. */
213 int micromips;
214 /* Non-zero if we should not reorder instructions. Changed by `.set
215 reorder' and `.set noreorder'. */
216 int noreorder;
217 /* Non-zero if we should not permit the register designated "assembler
218 temporary" to be used in instructions. The value is the register
219 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
220 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
221 unsigned int at;
222 /* Non-zero if we should warn when a macro instruction expands into
223 more than one machine instruction. Changed by `.set nomacro' and
224 `.set macro'. */
225 int warn_about_macros;
226 /* Non-zero if we should not move instructions. Changed by `.set
227 move', `.set volatile', `.set nomove', and `.set novolatile'. */
228 int nomove;
229 /* Non-zero if we should not optimize branches by moving the target
230 of the branch into the delay slot. Actually, we don't perform
231 this optimization anyhow. Changed by `.set bopt' and `.set
232 nobopt'. */
233 int nobopt;
234 /* Non-zero if we should not autoextend mips16 instructions.
235 Changed by `.set autoextend' and `.set noautoextend'. */
236 int noautoextend;
237 /* True if we should only emit 32-bit microMIPS instructions.
238 Changed by `.set insn32' and `.set noinsn32', and the -minsn32
239 and -mno-insn32 command line options. */
240 bfd_boolean insn32;
241 /* Restrict general purpose registers and floating point registers
242 to 32 bit. This is initially determined when -mgp32 or -mfp32
243 is passed but can changed if the assembler code uses .set mipsN. */
244 int gp32;
245 int fp32;
246 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
247 command line option, and the default CPU. */
248 int arch;
249 /* True if ".set sym32" is in effect. */
250 bfd_boolean sym32;
251 /* True if floating-point operations are not allowed. Changed by .set
252 softfloat or .set hardfloat, by command line options -msoft-float or
253 -mhard-float. The default is false. */
254 bfd_boolean soft_float;
255
256 /* True if only single-precision floating-point operations are allowed.
257 Changed by .set singlefloat or .set doublefloat, command-line options
258 -msingle-float or -mdouble-float. The default is false. */
259 bfd_boolean single_float;
260 };
261
262 /* This is the struct we use to hold the current set of options. Note
263 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
264 -1 to indicate that they have not been initialized. */
265
266 /* True if -mgp32 was passed. */
267 static int file_mips_gp32 = -1;
268
269 /* True if -mfp32 was passed. */
270 static int file_mips_fp32 = -1;
271
272 /* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
273 static int file_mips_soft_float = 0;
274
275 /* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
276 static int file_mips_single_float = 0;
277
278 /* True if -mnan=2008, false if -mnan=legacy. */
279 static bfd_boolean mips_flag_nan2008 = FALSE;
280
281 static struct mips_set_options mips_opts =
282 {
283 /* isa */ ISA_UNKNOWN, /* ase */ 0, /* mips16 */ -1, /* micromips */ -1,
284 /* noreorder */ 0, /* at */ ATREG, /* warn_about_macros */ 0,
285 /* nomove */ 0, /* nobopt */ 0, /* noautoextend */ 0, /* insn32 */ FALSE,
286 /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN, /* sym32 */ FALSE,
287 /* soft_float */ FALSE, /* single_float */ FALSE
288 };
289
290 /* The set of ASEs that were selected on the command line, either
291 explicitly via ASE options or implicitly through things like -march. */
292 static unsigned int file_ase;
293
294 /* Which bits of file_ase were explicitly set or cleared by ASE options. */
295 static unsigned int file_ase_explicit;
296
297 /* These variables are filled in with the masks of registers used.
298 The object format code reads them and puts them in the appropriate
299 place. */
300 unsigned long mips_gprmask;
301 unsigned long mips_cprmask[4];
302
303 /* MIPS ISA we are using for this output file. */
304 static int file_mips_isa = ISA_UNKNOWN;
305
306 /* True if any MIPS16 code was produced. */
307 static int file_ase_mips16;
308
309 #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \
310 || mips_opts.isa == ISA_MIPS32R2 \
311 || mips_opts.isa == ISA_MIPS64 \
312 || mips_opts.isa == ISA_MIPS64R2)
313
314 /* True if any microMIPS code was produced. */
315 static int file_ase_micromips;
316
317 /* True if we want to create R_MIPS_JALR for jalr $25. */
318 #ifdef TE_IRIX
319 #define MIPS_JALR_HINT_P(EXPR) HAVE_NEWABI
320 #else
321 /* As a GNU extension, we use R_MIPS_JALR for o32 too. However,
322 because there's no place for any addend, the only acceptable
323 expression is a bare symbol. */
324 #define MIPS_JALR_HINT_P(EXPR) \
325 (!HAVE_IN_PLACE_ADDENDS \
326 || ((EXPR)->X_op == O_symbol && (EXPR)->X_add_number == 0))
327 #endif
328
329 /* The argument of the -march= flag. The architecture we are assembling. */
330 static int file_mips_arch = CPU_UNKNOWN;
331 static const char *mips_arch_string;
332
333 /* The argument of the -mtune= flag. The architecture for which we
334 are optimizing. */
335 static int mips_tune = CPU_UNKNOWN;
336 static const char *mips_tune_string;
337
338 /* True when generating 32-bit code for a 64-bit processor. */
339 static int mips_32bitmode = 0;
340
341 /* True if the given ABI requires 32-bit registers. */
342 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
343
344 /* Likewise 64-bit registers. */
345 #define ABI_NEEDS_64BIT_REGS(ABI) \
346 ((ABI) == N32_ABI \
347 || (ABI) == N64_ABI \
348 || (ABI) == O64_ABI)
349
350 /* Return true if ISA supports 64 bit wide gp registers. */
351 #define ISA_HAS_64BIT_REGS(ISA) \
352 ((ISA) == ISA_MIPS3 \
353 || (ISA) == ISA_MIPS4 \
354 || (ISA) == ISA_MIPS5 \
355 || (ISA) == ISA_MIPS64 \
356 || (ISA) == ISA_MIPS64R2)
357
358 /* Return true if ISA supports 64 bit wide float registers. */
359 #define ISA_HAS_64BIT_FPRS(ISA) \
360 ((ISA) == ISA_MIPS3 \
361 || (ISA) == ISA_MIPS4 \
362 || (ISA) == ISA_MIPS5 \
363 || (ISA) == ISA_MIPS32R2 \
364 || (ISA) == ISA_MIPS64 \
365 || (ISA) == ISA_MIPS64R2)
366
367 /* Return true if ISA supports 64-bit right rotate (dror et al.)
368 instructions. */
369 #define ISA_HAS_DROR(ISA) \
370 ((ISA) == ISA_MIPS64R2 \
371 || (mips_opts.micromips \
372 && ISA_HAS_64BIT_REGS (ISA)) \
373 )
374
375 /* Return true if ISA supports 32-bit right rotate (ror et al.)
376 instructions. */
377 #define ISA_HAS_ROR(ISA) \
378 ((ISA) == ISA_MIPS32R2 \
379 || (ISA) == ISA_MIPS64R2 \
380 || (mips_opts.ase & ASE_SMARTMIPS) \
381 || mips_opts.micromips \
382 )
383
384 /* Return true if ISA supports single-precision floats in odd registers. */
385 #define ISA_HAS_ODD_SINGLE_FPR(ISA) \
386 ((ISA) == ISA_MIPS32 \
387 || (ISA) == ISA_MIPS32R2 \
388 || (ISA) == ISA_MIPS64 \
389 || (ISA) == ISA_MIPS64R2)
390
391 /* Return true if ISA supports move to/from high part of a 64-bit
392 floating-point register. */
393 #define ISA_HAS_MXHC1(ISA) \
394 ((ISA) == ISA_MIPS32R2 \
395 || (ISA) == ISA_MIPS64R2)
396
397 #define HAVE_32BIT_GPRS \
398 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
399
400 #define HAVE_32BIT_FPRS \
401 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
402
403 #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
404 #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
405
406 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
407
408 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
409
410 /* True if relocations are stored in-place. */
411 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
412
413 /* The ABI-derived address size. */
414 #define HAVE_64BIT_ADDRESSES \
415 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
416 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
417
418 /* The size of symbolic constants (i.e., expressions of the form
419 "SYMBOL" or "SYMBOL + OFFSET"). */
420 #define HAVE_32BIT_SYMBOLS \
421 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
422 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
423
424 /* Addresses are loaded in different ways, depending on the address size
425 in use. The n32 ABI Documentation also mandates the use of additions
426 with overflow checking, but existing implementations don't follow it. */
427 #define ADDRESS_ADD_INSN \
428 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
429
430 #define ADDRESS_ADDI_INSN \
431 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
432
433 #define ADDRESS_LOAD_INSN \
434 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
435
436 #define ADDRESS_STORE_INSN \
437 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
438
439 /* Return true if the given CPU supports the MIPS16 ASE. */
440 #define CPU_HAS_MIPS16(cpu) \
441 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
442 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
443
444 /* Return true if the given CPU supports the microMIPS ASE. */
445 #define CPU_HAS_MICROMIPS(cpu) 0
446
447 /* True if CPU has a dror instruction. */
448 #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
449
450 /* True if CPU has a ror instruction. */
451 #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
452
453 /* True if CPU is in the Octeon family */
454 #define CPU_IS_OCTEON(CPU) ((CPU) == CPU_OCTEON || (CPU) == CPU_OCTEONP || (CPU) == CPU_OCTEON2)
455
456 /* True if CPU has seq/sne and seqi/snei instructions. */
457 #define CPU_HAS_SEQ(CPU) (CPU_IS_OCTEON (CPU))
458
459 /* True, if CPU has support for ldc1 and sdc1. */
460 #define CPU_HAS_LDC1_SDC1(CPU) \
461 ((mips_opts.isa != ISA_MIPS1) && ((CPU) != CPU_R5900))
462
463 /* True if mflo and mfhi can be immediately followed by instructions
464 which write to the HI and LO registers.
465
466 According to MIPS specifications, MIPS ISAs I, II, and III need
467 (at least) two instructions between the reads of HI/LO and
468 instructions which write them, and later ISAs do not. Contradicting
469 the MIPS specifications, some MIPS IV processor user manuals (e.g.
470 the UM for the NEC Vr5000) document needing the instructions between
471 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
472 MIPS64 and later ISAs to have the interlocks, plus any specific
473 earlier-ISA CPUs for which CPU documentation declares that the
474 instructions are really interlocked. */
475 #define hilo_interlocks \
476 (mips_opts.isa == ISA_MIPS32 \
477 || mips_opts.isa == ISA_MIPS32R2 \
478 || mips_opts.isa == ISA_MIPS64 \
479 || mips_opts.isa == ISA_MIPS64R2 \
480 || mips_opts.arch == CPU_R4010 \
481 || mips_opts.arch == CPU_R5900 \
482 || mips_opts.arch == CPU_R10000 \
483 || mips_opts.arch == CPU_R12000 \
484 || mips_opts.arch == CPU_R14000 \
485 || mips_opts.arch == CPU_R16000 \
486 || mips_opts.arch == CPU_RM7000 \
487 || mips_opts.arch == CPU_VR5500 \
488 || mips_opts.micromips \
489 )
490
491 /* Whether the processor uses hardware interlocks to protect reads
492 from the GPRs after they are loaded from memory, and thus does not
493 require nops to be inserted. This applies to instructions marked
494 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
495 level I and microMIPS mode instructions are always interlocked. */
496 #define gpr_interlocks \
497 (mips_opts.isa != ISA_MIPS1 \
498 || mips_opts.arch == CPU_R3900 \
499 || mips_opts.arch == CPU_R5900 \
500 || mips_opts.micromips \
501 )
502
503 /* Whether the processor uses hardware interlocks to avoid delays
504 required by coprocessor instructions, and thus does not require
505 nops to be inserted. This applies to instructions marked
506 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
507 between instructions marked INSN_WRITE_COND_CODE and ones marked
508 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
509 levels I, II, and III and microMIPS mode instructions are always
510 interlocked. */
511 /* Itbl support may require additional care here. */
512 #define cop_interlocks \
513 ((mips_opts.isa != ISA_MIPS1 \
514 && mips_opts.isa != ISA_MIPS2 \
515 && mips_opts.isa != ISA_MIPS3) \
516 || mips_opts.arch == CPU_R4300 \
517 || mips_opts.micromips \
518 )
519
520 /* Whether the processor uses hardware interlocks to protect reads
521 from coprocessor registers after they are loaded from memory, and
522 thus does not require nops to be inserted. This applies to
523 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
524 requires at MIPS ISA level I and microMIPS mode instructions are
525 always interlocked. */
526 #define cop_mem_interlocks \
527 (mips_opts.isa != ISA_MIPS1 \
528 || mips_opts.micromips \
529 )
530
531 /* Is this a mfhi or mflo instruction? */
532 #define MF_HILO_INSN(PINFO) \
533 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
534
535 /* Whether code compression (either of the MIPS16 or the microMIPS ASEs)
536 has been selected. This implies, in particular, that addresses of text
537 labels have their LSB set. */
538 #define HAVE_CODE_COMPRESSION \
539 ((mips_opts.mips16 | mips_opts.micromips) != 0)
540
541 /* The minimum and maximum signed values that can be stored in a GPR. */
542 #define GPR_SMAX ((offsetT) (((valueT) 1 << (HAVE_64BIT_GPRS ? 63 : 31)) - 1))
543 #define GPR_SMIN (-GPR_SMAX - 1)
544
545 /* MIPS PIC level. */
546
547 enum mips_pic_level mips_pic;
548
549 /* 1 if we should generate 32 bit offsets from the $gp register in
550 SVR4_PIC mode. Currently has no meaning in other modes. */
551 static int mips_big_got = 0;
552
553 /* 1 if trap instructions should used for overflow rather than break
554 instructions. */
555 static int mips_trap = 0;
556
557 /* 1 if double width floating point constants should not be constructed
558 by assembling two single width halves into two single width floating
559 point registers which just happen to alias the double width destination
560 register. On some architectures this aliasing can be disabled by a bit
561 in the status register, and the setting of this bit cannot be determined
562 automatically at assemble time. */
563 static int mips_disable_float_construction;
564
565 /* Non-zero if any .set noreorder directives were used. */
566
567 static int mips_any_noreorder;
568
569 /* Non-zero if nops should be inserted when the register referenced in
570 an mfhi/mflo instruction is read in the next two instructions. */
571 static int mips_7000_hilo_fix;
572
573 /* The size of objects in the small data section. */
574 static unsigned int g_switch_value = 8;
575 /* Whether the -G option was used. */
576 static int g_switch_seen = 0;
577
578 #define N_RMASK 0xc4
579 #define N_VFP 0xd4
580
581 /* If we can determine in advance that GP optimization won't be
582 possible, we can skip the relaxation stuff that tries to produce
583 GP-relative references. This makes delay slot optimization work
584 better.
585
586 This function can only provide a guess, but it seems to work for
587 gcc output. It needs to guess right for gcc, otherwise gcc
588 will put what it thinks is a GP-relative instruction in a branch
589 delay slot.
590
591 I don't know if a fix is needed for the SVR4_PIC mode. I've only
592 fixed it for the non-PIC mode. KR 95/04/07 */
593 static int nopic_need_relax (symbolS *, int);
594
595 /* handle of the OPCODE hash table */
596 static struct hash_control *op_hash = NULL;
597
598 /* The opcode hash table we use for the mips16. */
599 static struct hash_control *mips16_op_hash = NULL;
600
601 /* The opcode hash table we use for the microMIPS ASE. */
602 static struct hash_control *micromips_op_hash = NULL;
603
604 /* This array holds the chars that always start a comment. If the
605 pre-processor is disabled, these aren't very useful */
606 const char comment_chars[] = "#";
607
608 /* This array holds the chars that only start a comment at the beginning of
609 a line. If the line seems to have the form '# 123 filename'
610 .line and .file directives will appear in the pre-processed output */
611 /* Note that input_file.c hand checks for '#' at the beginning of the
612 first line of the input file. This is because the compiler outputs
613 #NO_APP at the beginning of its output. */
614 /* Also note that C style comments are always supported. */
615 const char line_comment_chars[] = "#";
616
617 /* This array holds machine specific line separator characters. */
618 const char line_separator_chars[] = ";";
619
620 /* Chars that can be used to separate mant from exp in floating point nums */
621 const char EXP_CHARS[] = "eE";
622
623 /* Chars that mean this number is a floating point constant */
624 /* As in 0f12.456 */
625 /* or 0d1.2345e12 */
626 const char FLT_CHARS[] = "rRsSfFdDxXpP";
627
628 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
629 changed in read.c . Ideally it shouldn't have to know about it at all,
630 but nothing is ideal around here.
631 */
632
633 /* Types of printf format used for instruction-related error messages.
634 "I" means int ("%d") and "S" means string ("%s"). */
635 enum mips_insn_error_format {
636 ERR_FMT_PLAIN,
637 ERR_FMT_I,
638 ERR_FMT_SS,
639 };
640
641 /* Information about an error that was found while assembling the current
642 instruction. */
643 struct mips_insn_error {
644 /* We sometimes need to match an instruction against more than one
645 opcode table entry. Errors found during this matching are reported
646 against a particular syntactic argument rather than against the
647 instruction as a whole. We grade these messages so that errors
648 against argument N have a greater priority than an error against
649 any argument < N, since the former implies that arguments up to N
650 were acceptable and that the opcode entry was therefore a closer match.
651 If several matches report an error against the same argument,
652 we only use that error if it is the same in all cases.
653
654 min_argnum is the minimum argument number for which an error message
655 should be accepted. It is 0 if MSG is against the instruction as
656 a whole. */
657 int min_argnum;
658
659 /* The printf()-style message, including its format and arguments. */
660 enum mips_insn_error_format format;
661 const char *msg;
662 union {
663 int i;
664 const char *ss[2];
665 } u;
666 };
667
668 /* The error that should be reported for the current instruction. */
669 static struct mips_insn_error insn_error;
670
671 static int auto_align = 1;
672
673 /* When outputting SVR4 PIC code, the assembler needs to know the
674 offset in the stack frame from which to restore the $gp register.
675 This is set by the .cprestore pseudo-op, and saved in this
676 variable. */
677 static offsetT mips_cprestore_offset = -1;
678
679 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
680 more optimizations, it can use a register value instead of a memory-saved
681 offset and even an other register than $gp as global pointer. */
682 static offsetT mips_cpreturn_offset = -1;
683 static int mips_cpreturn_register = -1;
684 static int mips_gp_register = GP;
685 static int mips_gprel_offset = 0;
686
687 /* Whether mips_cprestore_offset has been set in the current function
688 (or whether it has already been warned about, if not). */
689 static int mips_cprestore_valid = 0;
690
691 /* This is the register which holds the stack frame, as set by the
692 .frame pseudo-op. This is needed to implement .cprestore. */
693 static int mips_frame_reg = SP;
694
695 /* Whether mips_frame_reg has been set in the current function
696 (or whether it has already been warned about, if not). */
697 static int mips_frame_reg_valid = 0;
698
699 /* To output NOP instructions correctly, we need to keep information
700 about the previous two instructions. */
701
702 /* Whether we are optimizing. The default value of 2 means to remove
703 unneeded NOPs and swap branch instructions when possible. A value
704 of 1 means to not swap branches. A value of 0 means to always
705 insert NOPs. */
706 static int mips_optimize = 2;
707
708 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
709 equivalent to seeing no -g option at all. */
710 static int mips_debug = 0;
711
712 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
713 #define MAX_VR4130_NOPS 4
714
715 /* The maximum number of NOPs needed to fill delay slots. */
716 #define MAX_DELAY_NOPS 2
717
718 /* The maximum number of NOPs needed for any purpose. */
719 #define MAX_NOPS 4
720
721 /* A list of previous instructions, with index 0 being the most recent.
722 We need to look back MAX_NOPS instructions when filling delay slots
723 or working around processor errata. We need to look back one
724 instruction further if we're thinking about using history[0] to
725 fill a branch delay slot. */
726 static struct mips_cl_insn history[1 + MAX_NOPS];
727
728 /* Arrays of operands for each instruction. */
729 #define MAX_OPERANDS 6
730 struct mips_operand_array {
731 const struct mips_operand *operand[MAX_OPERANDS];
732 };
733 static struct mips_operand_array *mips_operands;
734 static struct mips_operand_array *mips16_operands;
735 static struct mips_operand_array *micromips_operands;
736
737 /* Nop instructions used by emit_nop. */
738 static struct mips_cl_insn nop_insn;
739 static struct mips_cl_insn mips16_nop_insn;
740 static struct mips_cl_insn micromips_nop16_insn;
741 static struct mips_cl_insn micromips_nop32_insn;
742
743 /* The appropriate nop for the current mode. */
744 #define NOP_INSN (mips_opts.mips16 \
745 ? &mips16_nop_insn \
746 : (mips_opts.micromips \
747 ? (mips_opts.insn32 \
748 ? &micromips_nop32_insn \
749 : &micromips_nop16_insn) \
750 : &nop_insn))
751
752 /* The size of NOP_INSN in bytes. */
753 #define NOP_INSN_SIZE ((mips_opts.mips16 \
754 || (mips_opts.micromips && !mips_opts.insn32)) \
755 ? 2 : 4)
756
757 /* If this is set, it points to a frag holding nop instructions which
758 were inserted before the start of a noreorder section. If those
759 nops turn out to be unnecessary, the size of the frag can be
760 decreased. */
761 static fragS *prev_nop_frag;
762
763 /* The number of nop instructions we created in prev_nop_frag. */
764 static int prev_nop_frag_holds;
765
766 /* The number of nop instructions that we know we need in
767 prev_nop_frag. */
768 static int prev_nop_frag_required;
769
770 /* The number of instructions we've seen since prev_nop_frag. */
771 static int prev_nop_frag_since;
772
773 /* Relocations against symbols are sometimes done in two parts, with a HI
774 relocation and a LO relocation. Each relocation has only 16 bits of
775 space to store an addend. This means that in order for the linker to
776 handle carries correctly, it must be able to locate both the HI and
777 the LO relocation. This means that the relocations must appear in
778 order in the relocation table.
779
780 In order to implement this, we keep track of each unmatched HI
781 relocation. We then sort them so that they immediately precede the
782 corresponding LO relocation. */
783
784 struct mips_hi_fixup
785 {
786 /* Next HI fixup. */
787 struct mips_hi_fixup *next;
788 /* This fixup. */
789 fixS *fixp;
790 /* The section this fixup is in. */
791 segT seg;
792 };
793
794 /* The list of unmatched HI relocs. */
795
796 static struct mips_hi_fixup *mips_hi_fixup_list;
797
798 /* The frag containing the last explicit relocation operator.
799 Null if explicit relocations have not been used. */
800
801 static fragS *prev_reloc_op_frag;
802
803 /* Map mips16 register numbers to normal MIPS register numbers. */
804
805 static const unsigned int mips16_to_32_reg_map[] =
806 {
807 16, 17, 2, 3, 4, 5, 6, 7
808 };
809
810 /* Map microMIPS register numbers to normal MIPS register numbers. */
811
812 #define micromips_to_32_reg_d_map mips16_to_32_reg_map
813
814 /* The microMIPS registers with type h. */
815 static const unsigned int micromips_to_32_reg_h_map1[] =
816 {
817 5, 5, 6, 4, 4, 4, 4, 4
818 };
819 static const unsigned int micromips_to_32_reg_h_map2[] =
820 {
821 6, 7, 7, 21, 22, 5, 6, 7
822 };
823
824 /* The microMIPS registers with type m. */
825 static const unsigned int micromips_to_32_reg_m_map[] =
826 {
827 0, 17, 2, 3, 16, 18, 19, 20
828 };
829
830 #define micromips_to_32_reg_n_map micromips_to_32_reg_m_map
831
832 /* Classifies the kind of instructions we're interested in when
833 implementing -mfix-vr4120. */
834 enum fix_vr4120_class
835 {
836 FIX_VR4120_MACC,
837 FIX_VR4120_DMACC,
838 FIX_VR4120_MULT,
839 FIX_VR4120_DMULT,
840 FIX_VR4120_DIV,
841 FIX_VR4120_MTHILO,
842 NUM_FIX_VR4120_CLASSES
843 };
844
845 /* ...likewise -mfix-loongson2f-jump. */
846 static bfd_boolean mips_fix_loongson2f_jump;
847
848 /* ...likewise -mfix-loongson2f-nop. */
849 static bfd_boolean mips_fix_loongson2f_nop;
850
851 /* True if -mfix-loongson2f-nop or -mfix-loongson2f-jump passed. */
852 static bfd_boolean mips_fix_loongson2f;
853
854 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
855 there must be at least one other instruction between an instruction
856 of type X and an instruction of type Y. */
857 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
858
859 /* True if -mfix-vr4120 is in force. */
860 static int mips_fix_vr4120;
861
862 /* ...likewise -mfix-vr4130. */
863 static int mips_fix_vr4130;
864
865 /* ...likewise -mfix-24k. */
866 static int mips_fix_24k;
867
868 /* ...likewise -mfix-cn63xxp1 */
869 static bfd_boolean mips_fix_cn63xxp1;
870
871 /* We don't relax branches by default, since this causes us to expand
872 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
873 fail to compute the offset before expanding the macro to the most
874 efficient expansion. */
875
876 static int mips_relax_branch;
877 \f
878 /* The expansion of many macros depends on the type of symbol that
879 they refer to. For example, when generating position-dependent code,
880 a macro that refers to a symbol may have two different expansions,
881 one which uses GP-relative addresses and one which uses absolute
882 addresses. When generating SVR4-style PIC, a macro may have
883 different expansions for local and global symbols.
884
885 We handle these situations by generating both sequences and putting
886 them in variant frags. In position-dependent code, the first sequence
887 will be the GP-relative one and the second sequence will be the
888 absolute one. In SVR4 PIC, the first sequence will be for global
889 symbols and the second will be for local symbols.
890
891 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
892 SECOND are the lengths of the two sequences in bytes. These fields
893 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
894 the subtype has the following flags:
895
896 RELAX_USE_SECOND
897 Set if it has been decided that we should use the second
898 sequence instead of the first.
899
900 RELAX_SECOND_LONGER
901 Set in the first variant frag if the macro's second implementation
902 is longer than its first. This refers to the macro as a whole,
903 not an individual relaxation.
904
905 RELAX_NOMACRO
906 Set in the first variant frag if the macro appeared in a .set nomacro
907 block and if one alternative requires a warning but the other does not.
908
909 RELAX_DELAY_SLOT
910 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
911 delay slot.
912
913 RELAX_DELAY_SLOT_16BIT
914 Like RELAX_DELAY_SLOT, but indicates that the delay slot requires a
915 16-bit instruction.
916
917 RELAX_DELAY_SLOT_SIZE_FIRST
918 Like RELAX_DELAY_SLOT, but indicates that the first implementation of
919 the macro is of the wrong size for the branch delay slot.
920
921 RELAX_DELAY_SLOT_SIZE_SECOND
922 Like RELAX_DELAY_SLOT, but indicates that the second implementation of
923 the macro is of the wrong size for the branch delay slot.
924
925 The frag's "opcode" points to the first fixup for relaxable code.
926
927 Relaxable macros are generated using a sequence such as:
928
929 relax_start (SYMBOL);
930 ... generate first expansion ...
931 relax_switch ();
932 ... generate second expansion ...
933 relax_end ();
934
935 The code and fixups for the unwanted alternative are discarded
936 by md_convert_frag. */
937 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
938
939 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
940 #define RELAX_SECOND(X) ((X) & 0xff)
941 #define RELAX_USE_SECOND 0x10000
942 #define RELAX_SECOND_LONGER 0x20000
943 #define RELAX_NOMACRO 0x40000
944 #define RELAX_DELAY_SLOT 0x80000
945 #define RELAX_DELAY_SLOT_16BIT 0x100000
946 #define RELAX_DELAY_SLOT_SIZE_FIRST 0x200000
947 #define RELAX_DELAY_SLOT_SIZE_SECOND 0x400000
948
949 /* Branch without likely bit. If label is out of range, we turn:
950
951 beq reg1, reg2, label
952 delay slot
953
954 into
955
956 bne reg1, reg2, 0f
957 nop
958 j label
959 0: delay slot
960
961 with the following opcode replacements:
962
963 beq <-> bne
964 blez <-> bgtz
965 bltz <-> bgez
966 bc1f <-> bc1t
967
968 bltzal <-> bgezal (with jal label instead of j label)
969
970 Even though keeping the delay slot instruction in the delay slot of
971 the branch would be more efficient, it would be very tricky to do
972 correctly, because we'd have to introduce a variable frag *after*
973 the delay slot instruction, and expand that instead. Let's do it
974 the easy way for now, even if the branch-not-taken case now costs
975 one additional instruction. Out-of-range branches are not supposed
976 to be common, anyway.
977
978 Branch likely. If label is out of range, we turn:
979
980 beql reg1, reg2, label
981 delay slot (annulled if branch not taken)
982
983 into
984
985 beql reg1, reg2, 1f
986 nop
987 beql $0, $0, 2f
988 nop
989 1: j[al] label
990 delay slot (executed only if branch taken)
991 2:
992
993 It would be possible to generate a shorter sequence by losing the
994 likely bit, generating something like:
995
996 bne reg1, reg2, 0f
997 nop
998 j[al] label
999 delay slot (executed only if branch taken)
1000 0:
1001
1002 beql -> bne
1003 bnel -> beq
1004 blezl -> bgtz
1005 bgtzl -> blez
1006 bltzl -> bgez
1007 bgezl -> bltz
1008 bc1fl -> bc1t
1009 bc1tl -> bc1f
1010
1011 bltzall -> bgezal (with jal label instead of j label)
1012 bgezall -> bltzal (ditto)
1013
1014
1015 but it's not clear that it would actually improve performance. */
1016 #define RELAX_BRANCH_ENCODE(at, uncond, likely, link, toofar) \
1017 ((relax_substateT) \
1018 (0xc0000000 \
1019 | ((at) & 0x1f) \
1020 | ((toofar) ? 0x20 : 0) \
1021 | ((link) ? 0x40 : 0) \
1022 | ((likely) ? 0x80 : 0) \
1023 | ((uncond) ? 0x100 : 0)))
1024 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
1025 #define RELAX_BRANCH_UNCOND(i) (((i) & 0x100) != 0)
1026 #define RELAX_BRANCH_LIKELY(i) (((i) & 0x80) != 0)
1027 #define RELAX_BRANCH_LINK(i) (((i) & 0x40) != 0)
1028 #define RELAX_BRANCH_TOOFAR(i) (((i) & 0x20) != 0)
1029 #define RELAX_BRANCH_AT(i) ((i) & 0x1f)
1030
1031 /* For mips16 code, we use an entirely different form of relaxation.
1032 mips16 supports two versions of most instructions which take
1033 immediate values: a small one which takes some small value, and a
1034 larger one which takes a 16 bit value. Since branches also follow
1035 this pattern, relaxing these values is required.
1036
1037 We can assemble both mips16 and normal MIPS code in a single
1038 object. Therefore, we need to support this type of relaxation at
1039 the same time that we support the relaxation described above. We
1040 use the high bit of the subtype field to distinguish these cases.
1041
1042 The information we store for this type of relaxation is the
1043 argument code found in the opcode file for this relocation, whether
1044 the user explicitly requested a small or extended form, and whether
1045 the relocation is in a jump or jal delay slot. That tells us the
1046 size of the value, and how it should be stored. We also store
1047 whether the fragment is considered to be extended or not. We also
1048 store whether this is known to be a branch to a different section,
1049 whether we have tried to relax this frag yet, and whether we have
1050 ever extended a PC relative fragment because of a shift count. */
1051 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
1052 (0x80000000 \
1053 | ((type) & 0xff) \
1054 | ((small) ? 0x100 : 0) \
1055 | ((ext) ? 0x200 : 0) \
1056 | ((dslot) ? 0x400 : 0) \
1057 | ((jal_dslot) ? 0x800 : 0))
1058 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
1059 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
1060 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
1061 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
1062 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
1063 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
1064 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
1065 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
1066 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
1067 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
1068 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
1069 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
1070
1071 /* For microMIPS code, we use relaxation similar to one we use for
1072 MIPS16 code. Some instructions that take immediate values support
1073 two encodings: a small one which takes some small value, and a
1074 larger one which takes a 16 bit value. As some branches also follow
1075 this pattern, relaxing these values is required.
1076
1077 We can assemble both microMIPS and normal MIPS code in a single
1078 object. Therefore, we need to support this type of relaxation at
1079 the same time that we support the relaxation described above. We
1080 use one of the high bits of the subtype field to distinguish these
1081 cases.
1082
1083 The information we store for this type of relaxation is the argument
1084 code found in the opcode file for this relocation, the register
1085 selected as the assembler temporary, whether the branch is
1086 unconditional, whether it is compact, whether it stores the link
1087 address implicitly in $ra, whether relaxation of out-of-range 32-bit
1088 branches to a sequence of instructions is enabled, and whether the
1089 displacement of a branch is too large to fit as an immediate argument
1090 of a 16-bit and a 32-bit branch, respectively. */
1091 #define RELAX_MICROMIPS_ENCODE(type, at, uncond, compact, link, \
1092 relax32, toofar16, toofar32) \
1093 (0x40000000 \
1094 | ((type) & 0xff) \
1095 | (((at) & 0x1f) << 8) \
1096 | ((uncond) ? 0x2000 : 0) \
1097 | ((compact) ? 0x4000 : 0) \
1098 | ((link) ? 0x8000 : 0) \
1099 | ((relax32) ? 0x10000 : 0) \
1100 | ((toofar16) ? 0x20000 : 0) \
1101 | ((toofar32) ? 0x40000 : 0))
1102 #define RELAX_MICROMIPS_P(i) (((i) & 0xc0000000) == 0x40000000)
1103 #define RELAX_MICROMIPS_TYPE(i) ((i) & 0xff)
1104 #define RELAX_MICROMIPS_AT(i) (((i) >> 8) & 0x1f)
1105 #define RELAX_MICROMIPS_UNCOND(i) (((i) & 0x2000) != 0)
1106 #define RELAX_MICROMIPS_COMPACT(i) (((i) & 0x4000) != 0)
1107 #define RELAX_MICROMIPS_LINK(i) (((i) & 0x8000) != 0)
1108 #define RELAX_MICROMIPS_RELAX32(i) (((i) & 0x10000) != 0)
1109
1110 #define RELAX_MICROMIPS_TOOFAR16(i) (((i) & 0x20000) != 0)
1111 #define RELAX_MICROMIPS_MARK_TOOFAR16(i) ((i) | 0x20000)
1112 #define RELAX_MICROMIPS_CLEAR_TOOFAR16(i) ((i) & ~0x20000)
1113 #define RELAX_MICROMIPS_TOOFAR32(i) (((i) & 0x40000) != 0)
1114 #define RELAX_MICROMIPS_MARK_TOOFAR32(i) ((i) | 0x40000)
1115 #define RELAX_MICROMIPS_CLEAR_TOOFAR32(i) ((i) & ~0x40000)
1116
1117 /* Sign-extend 16-bit value X. */
1118 #define SEXT_16BIT(X) ((((X) + 0x8000) & 0xffff) - 0x8000)
1119
1120 /* Is the given value a sign-extended 32-bit value? */
1121 #define IS_SEXT_32BIT_NUM(x) \
1122 (((x) &~ (offsetT) 0x7fffffff) == 0 \
1123 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
1124
1125 /* Is the given value a sign-extended 16-bit value? */
1126 #define IS_SEXT_16BIT_NUM(x) \
1127 (((x) &~ (offsetT) 0x7fff) == 0 \
1128 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
1129
1130 /* Is the given value a sign-extended 12-bit value? */
1131 #define IS_SEXT_12BIT_NUM(x) \
1132 (((((x) & 0xfff) ^ 0x800LL) - 0x800LL) == (x))
1133
1134 /* Is the given value a sign-extended 9-bit value? */
1135 #define IS_SEXT_9BIT_NUM(x) \
1136 (((((x) & 0x1ff) ^ 0x100LL) - 0x100LL) == (x))
1137
1138 /* Is the given value a zero-extended 32-bit value? Or a negated one? */
1139 #define IS_ZEXT_32BIT_NUM(x) \
1140 (((x) &~ (offsetT) 0xffffffff) == 0 \
1141 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
1142
1143 /* Extract bits MASK << SHIFT from STRUCT and shift them right
1144 SHIFT places. */
1145 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
1146 (((STRUCT) >> (SHIFT)) & (MASK))
1147
1148 /* Extract the operand given by FIELD from mips_cl_insn INSN. */
1149 #define EXTRACT_OPERAND(MICROMIPS, FIELD, INSN) \
1150 (!(MICROMIPS) \
1151 ? EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD) \
1152 : EXTRACT_BITS ((INSN).insn_opcode, \
1153 MICROMIPSOP_MASK_##FIELD, MICROMIPSOP_SH_##FIELD))
1154 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
1155 EXTRACT_BITS ((INSN).insn_opcode, \
1156 MIPS16OP_MASK_##FIELD, \
1157 MIPS16OP_SH_##FIELD)
1158
1159 /* The MIPS16 EXTEND opcode, shifted left 16 places. */
1160 #define MIPS16_EXTEND (0xf000U << 16)
1161 \f
1162 /* Whether or not we are emitting a branch-likely macro. */
1163 static bfd_boolean emit_branch_likely_macro = FALSE;
1164
1165 /* Global variables used when generating relaxable macros. See the
1166 comment above RELAX_ENCODE for more details about how relaxation
1167 is used. */
1168 static struct {
1169 /* 0 if we're not emitting a relaxable macro.
1170 1 if we're emitting the first of the two relaxation alternatives.
1171 2 if we're emitting the second alternative. */
1172 int sequence;
1173
1174 /* The first relaxable fixup in the current frag. (In other words,
1175 the first fixup that refers to relaxable code.) */
1176 fixS *first_fixup;
1177
1178 /* sizes[0] says how many bytes of the first alternative are stored in
1179 the current frag. Likewise sizes[1] for the second alternative. */
1180 unsigned int sizes[2];
1181
1182 /* The symbol on which the choice of sequence depends. */
1183 symbolS *symbol;
1184 } mips_relax;
1185 \f
1186 /* Global variables used to decide whether a macro needs a warning. */
1187 static struct {
1188 /* True if the macro is in a branch delay slot. */
1189 bfd_boolean delay_slot_p;
1190
1191 /* Set to the length in bytes required if the macro is in a delay slot
1192 that requires a specific length of instruction, otherwise zero. */
1193 unsigned int delay_slot_length;
1194
1195 /* For relaxable macros, sizes[0] is the length of the first alternative
1196 in bytes and sizes[1] is the length of the second alternative.
1197 For non-relaxable macros, both elements give the length of the
1198 macro in bytes. */
1199 unsigned int sizes[2];
1200
1201 /* For relaxable macros, first_insn_sizes[0] is the length of the first
1202 instruction of the first alternative in bytes and first_insn_sizes[1]
1203 is the length of the first instruction of the second alternative.
1204 For non-relaxable macros, both elements give the length of the first
1205 instruction in bytes.
1206
1207 Set to zero if we haven't yet seen the first instruction. */
1208 unsigned int first_insn_sizes[2];
1209
1210 /* For relaxable macros, insns[0] is the number of instructions for the
1211 first alternative and insns[1] is the number of instructions for the
1212 second alternative.
1213
1214 For non-relaxable macros, both elements give the number of
1215 instructions for the macro. */
1216 unsigned int insns[2];
1217
1218 /* The first variant frag for this macro. */
1219 fragS *first_frag;
1220 } mips_macro_warning;
1221 \f
1222 /* Prototypes for static functions. */
1223
1224 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1225
1226 static void append_insn
1227 (struct mips_cl_insn *, expressionS *, bfd_reloc_code_real_type *,
1228 bfd_boolean expansionp);
1229 static void mips_no_prev_insn (void);
1230 static void macro_build (expressionS *, const char *, const char *, ...);
1231 static void mips16_macro_build
1232 (expressionS *, const char *, const char *, va_list *);
1233 static void load_register (int, expressionS *, int);
1234 static void macro_start (void);
1235 static void macro_end (void);
1236 static void macro (struct mips_cl_insn *ip, char *str);
1237 static void mips16_macro (struct mips_cl_insn * ip);
1238 static void mips_ip (char *str, struct mips_cl_insn * ip);
1239 static void mips16_ip (char *str, struct mips_cl_insn * ip);
1240 static void mips16_immed
1241 (char *, unsigned int, int, bfd_reloc_code_real_type, offsetT,
1242 unsigned int, unsigned long *);
1243 static size_t my_getSmallExpression
1244 (expressionS *, bfd_reloc_code_real_type *, char *);
1245 static void my_getExpression (expressionS *, char *);
1246 static void s_align (int);
1247 static void s_change_sec (int);
1248 static void s_change_section (int);
1249 static void s_cons (int);
1250 static void s_float_cons (int);
1251 static void s_mips_globl (int);
1252 static void s_option (int);
1253 static void s_mipsset (int);
1254 static void s_abicalls (int);
1255 static void s_cpload (int);
1256 static void s_cpsetup (int);
1257 static void s_cplocal (int);
1258 static void s_cprestore (int);
1259 static void s_cpreturn (int);
1260 static void s_dtprelword (int);
1261 static void s_dtpreldword (int);
1262 static void s_tprelword (int);
1263 static void s_tpreldword (int);
1264 static void s_gpvalue (int);
1265 static void s_gpword (int);
1266 static void s_gpdword (int);
1267 static void s_ehword (int);
1268 static void s_cpadd (int);
1269 static void s_insn (int);
1270 static void s_nan (int);
1271 static void md_obj_begin (void);
1272 static void md_obj_end (void);
1273 static void s_mips_ent (int);
1274 static void s_mips_end (int);
1275 static void s_mips_frame (int);
1276 static void s_mips_mask (int reg_type);
1277 static void s_mips_stab (int);
1278 static void s_mips_weakext (int);
1279 static void s_mips_file (int);
1280 static void s_mips_loc (int);
1281 static bfd_boolean pic_need_relax (symbolS *, asection *);
1282 static int relaxed_branch_length (fragS *, asection *, int);
1283 static int relaxed_micromips_16bit_branch_length (fragS *, asection *, int);
1284 static int relaxed_micromips_32bit_branch_length (fragS *, asection *, int);
1285
1286 /* Table and functions used to map between CPU/ISA names, and
1287 ISA levels, and CPU numbers. */
1288
1289 struct mips_cpu_info
1290 {
1291 const char *name; /* CPU or ISA name. */
1292 int flags; /* MIPS_CPU_* flags. */
1293 int ase; /* Set of ASEs implemented by the CPU. */
1294 int isa; /* ISA level. */
1295 int cpu; /* CPU number (default CPU if ISA). */
1296 };
1297
1298 #define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1299
1300 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1301 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1302 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1303 \f
1304 /* Command-line options. */
1305 const char *md_shortopts = "O::g::G:";
1306
1307 enum options
1308 {
1309 OPTION_MARCH = OPTION_MD_BASE,
1310 OPTION_MTUNE,
1311 OPTION_MIPS1,
1312 OPTION_MIPS2,
1313 OPTION_MIPS3,
1314 OPTION_MIPS4,
1315 OPTION_MIPS5,
1316 OPTION_MIPS32,
1317 OPTION_MIPS64,
1318 OPTION_MIPS32R2,
1319 OPTION_MIPS64R2,
1320 OPTION_MIPS16,
1321 OPTION_NO_MIPS16,
1322 OPTION_MIPS3D,
1323 OPTION_NO_MIPS3D,
1324 OPTION_MDMX,
1325 OPTION_NO_MDMX,
1326 OPTION_DSP,
1327 OPTION_NO_DSP,
1328 OPTION_MT,
1329 OPTION_NO_MT,
1330 OPTION_VIRT,
1331 OPTION_NO_VIRT,
1332 OPTION_SMARTMIPS,
1333 OPTION_NO_SMARTMIPS,
1334 OPTION_DSPR2,
1335 OPTION_NO_DSPR2,
1336 OPTION_EVA,
1337 OPTION_NO_EVA,
1338 OPTION_MICROMIPS,
1339 OPTION_NO_MICROMIPS,
1340 OPTION_MCU,
1341 OPTION_NO_MCU,
1342 OPTION_COMPAT_ARCH_BASE,
1343 OPTION_M4650,
1344 OPTION_NO_M4650,
1345 OPTION_M4010,
1346 OPTION_NO_M4010,
1347 OPTION_M4100,
1348 OPTION_NO_M4100,
1349 OPTION_M3900,
1350 OPTION_NO_M3900,
1351 OPTION_M7000_HILO_FIX,
1352 OPTION_MNO_7000_HILO_FIX,
1353 OPTION_FIX_24K,
1354 OPTION_NO_FIX_24K,
1355 OPTION_FIX_LOONGSON2F_JUMP,
1356 OPTION_NO_FIX_LOONGSON2F_JUMP,
1357 OPTION_FIX_LOONGSON2F_NOP,
1358 OPTION_NO_FIX_LOONGSON2F_NOP,
1359 OPTION_FIX_VR4120,
1360 OPTION_NO_FIX_VR4120,
1361 OPTION_FIX_VR4130,
1362 OPTION_NO_FIX_VR4130,
1363 OPTION_FIX_CN63XXP1,
1364 OPTION_NO_FIX_CN63XXP1,
1365 OPTION_TRAP,
1366 OPTION_BREAK,
1367 OPTION_EB,
1368 OPTION_EL,
1369 OPTION_FP32,
1370 OPTION_GP32,
1371 OPTION_CONSTRUCT_FLOATS,
1372 OPTION_NO_CONSTRUCT_FLOATS,
1373 OPTION_FP64,
1374 OPTION_GP64,
1375 OPTION_RELAX_BRANCH,
1376 OPTION_NO_RELAX_BRANCH,
1377 OPTION_INSN32,
1378 OPTION_NO_INSN32,
1379 OPTION_MSHARED,
1380 OPTION_MNO_SHARED,
1381 OPTION_MSYM32,
1382 OPTION_MNO_SYM32,
1383 OPTION_SOFT_FLOAT,
1384 OPTION_HARD_FLOAT,
1385 OPTION_SINGLE_FLOAT,
1386 OPTION_DOUBLE_FLOAT,
1387 OPTION_32,
1388 OPTION_CALL_SHARED,
1389 OPTION_CALL_NONPIC,
1390 OPTION_NON_SHARED,
1391 OPTION_XGOT,
1392 OPTION_MABI,
1393 OPTION_N32,
1394 OPTION_64,
1395 OPTION_MDEBUG,
1396 OPTION_NO_MDEBUG,
1397 OPTION_PDR,
1398 OPTION_NO_PDR,
1399 OPTION_MVXWORKS_PIC,
1400 OPTION_NAN,
1401 OPTION_END_OF_ENUM
1402 };
1403
1404 struct option md_longopts[] =
1405 {
1406 /* Options which specify architecture. */
1407 {"march", required_argument, NULL, OPTION_MARCH},
1408 {"mtune", required_argument, NULL, OPTION_MTUNE},
1409 {"mips0", no_argument, NULL, OPTION_MIPS1},
1410 {"mips1", no_argument, NULL, OPTION_MIPS1},
1411 {"mips2", no_argument, NULL, OPTION_MIPS2},
1412 {"mips3", no_argument, NULL, OPTION_MIPS3},
1413 {"mips4", no_argument, NULL, OPTION_MIPS4},
1414 {"mips5", no_argument, NULL, OPTION_MIPS5},
1415 {"mips32", no_argument, NULL, OPTION_MIPS32},
1416 {"mips64", no_argument, NULL, OPTION_MIPS64},
1417 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
1418 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
1419
1420 /* Options which specify Application Specific Extensions (ASEs). */
1421 {"mips16", no_argument, NULL, OPTION_MIPS16},
1422 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
1423 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
1424 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
1425 {"mdmx", no_argument, NULL, OPTION_MDMX},
1426 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
1427 {"mdsp", no_argument, NULL, OPTION_DSP},
1428 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
1429 {"mmt", no_argument, NULL, OPTION_MT},
1430 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
1431 {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
1432 {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
1433 {"mdspr2", no_argument, NULL, OPTION_DSPR2},
1434 {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
1435 {"meva", no_argument, NULL, OPTION_EVA},
1436 {"mno-eva", no_argument, NULL, OPTION_NO_EVA},
1437 {"mmicromips", no_argument, NULL, OPTION_MICROMIPS},
1438 {"mno-micromips", no_argument, NULL, OPTION_NO_MICROMIPS},
1439 {"mmcu", no_argument, NULL, OPTION_MCU},
1440 {"mno-mcu", no_argument, NULL, OPTION_NO_MCU},
1441 {"mvirt", no_argument, NULL, OPTION_VIRT},
1442 {"mno-virt", no_argument, NULL, OPTION_NO_VIRT},
1443
1444 /* Old-style architecture options. Don't add more of these. */
1445 {"m4650", no_argument, NULL, OPTION_M4650},
1446 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
1447 {"m4010", no_argument, NULL, OPTION_M4010},
1448 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
1449 {"m4100", no_argument, NULL, OPTION_M4100},
1450 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
1451 {"m3900", no_argument, NULL, OPTION_M3900},
1452 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
1453
1454 /* Options which enable bug fixes. */
1455 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
1456 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1457 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
1458 {"mfix-loongson2f-jump", no_argument, NULL, OPTION_FIX_LOONGSON2F_JUMP},
1459 {"mno-fix-loongson2f-jump", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_JUMP},
1460 {"mfix-loongson2f-nop", no_argument, NULL, OPTION_FIX_LOONGSON2F_NOP},
1461 {"mno-fix-loongson2f-nop", no_argument, NULL, OPTION_NO_FIX_LOONGSON2F_NOP},
1462 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
1463 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
1464 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
1465 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
1466 {"mfix-24k", no_argument, NULL, OPTION_FIX_24K},
1467 {"mno-fix-24k", no_argument, NULL, OPTION_NO_FIX_24K},
1468 {"mfix-cn63xxp1", no_argument, NULL, OPTION_FIX_CN63XXP1},
1469 {"mno-fix-cn63xxp1", no_argument, NULL, OPTION_NO_FIX_CN63XXP1},
1470
1471 /* Miscellaneous options. */
1472 {"trap", no_argument, NULL, OPTION_TRAP},
1473 {"no-break", no_argument, NULL, OPTION_TRAP},
1474 {"break", no_argument, NULL, OPTION_BREAK},
1475 {"no-trap", no_argument, NULL, OPTION_BREAK},
1476 {"EB", no_argument, NULL, OPTION_EB},
1477 {"EL", no_argument, NULL, OPTION_EL},
1478 {"mfp32", no_argument, NULL, OPTION_FP32},
1479 {"mgp32", no_argument, NULL, OPTION_GP32},
1480 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
1481 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
1482 {"mfp64", no_argument, NULL, OPTION_FP64},
1483 {"mgp64", no_argument, NULL, OPTION_GP64},
1484 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
1485 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
1486 {"minsn32", no_argument, NULL, OPTION_INSN32},
1487 {"mno-insn32", no_argument, NULL, OPTION_NO_INSN32},
1488 {"mshared", no_argument, NULL, OPTION_MSHARED},
1489 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
1490 {"msym32", no_argument, NULL, OPTION_MSYM32},
1491 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
1492 {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
1493 {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
1494 {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
1495 {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
1496
1497 /* Strictly speaking this next option is ELF specific,
1498 but we allow it for other ports as well in order to
1499 make testing easier. */
1500 {"32", no_argument, NULL, OPTION_32},
1501
1502 /* ELF-specific options. */
1503 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
1504 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
1505 {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
1506 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
1507 {"xgot", no_argument, NULL, OPTION_XGOT},
1508 {"mabi", required_argument, NULL, OPTION_MABI},
1509 {"n32", no_argument, NULL, OPTION_N32},
1510 {"64", no_argument, NULL, OPTION_64},
1511 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
1512 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
1513 {"mpdr", no_argument, NULL, OPTION_PDR},
1514 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
1515 {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
1516 {"mnan", required_argument, NULL, OPTION_NAN},
1517
1518 {NULL, no_argument, NULL, 0}
1519 };
1520 size_t md_longopts_size = sizeof (md_longopts);
1521 \f
1522 /* Information about either an Application Specific Extension or an
1523 optional architecture feature that, for simplicity, we treat in the
1524 same way as an ASE. */
1525 struct mips_ase
1526 {
1527 /* The name of the ASE, used in both the command-line and .set options. */
1528 const char *name;
1529
1530 /* The associated ASE_* flags. If the ASE is available on both 32-bit
1531 and 64-bit architectures, the flags here refer to the subset that
1532 is available on both. */
1533 unsigned int flags;
1534
1535 /* The ASE_* flag used for instructions that are available on 64-bit
1536 architectures but that are not included in FLAGS. */
1537 unsigned int flags64;
1538
1539 /* The command-line options that turn the ASE on and off. */
1540 int option_on;
1541 int option_off;
1542
1543 /* The minimum required architecture revisions for MIPS32, MIPS64,
1544 microMIPS32 and microMIPS64, or -1 if the extension isn't supported. */
1545 int mips32_rev;
1546 int mips64_rev;
1547 int micromips32_rev;
1548 int micromips64_rev;
1549 };
1550
1551 /* A table of all supported ASEs. */
1552 static const struct mips_ase mips_ases[] = {
1553 { "dsp", ASE_DSP, ASE_DSP64,
1554 OPTION_DSP, OPTION_NO_DSP,
1555 2, 2, 2, 2 },
1556
1557 { "dspr2", ASE_DSP | ASE_DSPR2, 0,
1558 OPTION_DSPR2, OPTION_NO_DSPR2,
1559 2, 2, 2, 2 },
1560
1561 { "eva", ASE_EVA, 0,
1562 OPTION_EVA, OPTION_NO_EVA,
1563 2, 2, 2, 2 },
1564
1565 { "mcu", ASE_MCU, 0,
1566 OPTION_MCU, OPTION_NO_MCU,
1567 2, 2, 2, 2 },
1568
1569 /* Deprecated in MIPS64r5, but we don't implement that yet. */
1570 { "mdmx", ASE_MDMX, 0,
1571 OPTION_MDMX, OPTION_NO_MDMX,
1572 -1, 1, -1, -1 },
1573
1574 /* Requires 64-bit FPRs, so the minimum MIPS32 revision is 2. */
1575 { "mips3d", ASE_MIPS3D, 0,
1576 OPTION_MIPS3D, OPTION_NO_MIPS3D,
1577 2, 1, -1, -1 },
1578
1579 { "mt", ASE_MT, 0,
1580 OPTION_MT, OPTION_NO_MT,
1581 2, 2, -1, -1 },
1582
1583 { "smartmips", ASE_SMARTMIPS, 0,
1584 OPTION_SMARTMIPS, OPTION_NO_SMARTMIPS,
1585 1, -1, -1, -1 },
1586
1587 { "virt", ASE_VIRT, ASE_VIRT64,
1588 OPTION_VIRT, OPTION_NO_VIRT,
1589 2, 2, 2, 2 }
1590 };
1591
1592 /* The set of ASEs that require -mfp64. */
1593 #define FP64_ASES (ASE_MIPS3D | ASE_MDMX)
1594
1595 /* Groups of ASE_* flags that represent different revisions of an ASE. */
1596 static const unsigned int mips_ase_groups[] = {
1597 ASE_DSP | ASE_DSPR2
1598 };
1599 \f
1600 /* Pseudo-op table.
1601
1602 The following pseudo-ops from the Kane and Heinrich MIPS book
1603 should be defined here, but are currently unsupported: .alias,
1604 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1605
1606 The following pseudo-ops from the Kane and Heinrich MIPS book are
1607 specific to the type of debugging information being generated, and
1608 should be defined by the object format: .aent, .begin, .bend,
1609 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1610 .vreg.
1611
1612 The following pseudo-ops from the Kane and Heinrich MIPS book are
1613 not MIPS CPU specific, but are also not specific to the object file
1614 format. This file is probably the best place to define them, but
1615 they are not currently supported: .asm0, .endr, .lab, .struct. */
1616
1617 static const pseudo_typeS mips_pseudo_table[] =
1618 {
1619 /* MIPS specific pseudo-ops. */
1620 {"option", s_option, 0},
1621 {"set", s_mipsset, 0},
1622 {"rdata", s_change_sec, 'r'},
1623 {"sdata", s_change_sec, 's'},
1624 {"livereg", s_ignore, 0},
1625 {"abicalls", s_abicalls, 0},
1626 {"cpload", s_cpload, 0},
1627 {"cpsetup", s_cpsetup, 0},
1628 {"cplocal", s_cplocal, 0},
1629 {"cprestore", s_cprestore, 0},
1630 {"cpreturn", s_cpreturn, 0},
1631 {"dtprelword", s_dtprelword, 0},
1632 {"dtpreldword", s_dtpreldword, 0},
1633 {"tprelword", s_tprelword, 0},
1634 {"tpreldword", s_tpreldword, 0},
1635 {"gpvalue", s_gpvalue, 0},
1636 {"gpword", s_gpword, 0},
1637 {"gpdword", s_gpdword, 0},
1638 {"ehword", s_ehword, 0},
1639 {"cpadd", s_cpadd, 0},
1640 {"insn", s_insn, 0},
1641 {"nan", s_nan, 0},
1642
1643 /* Relatively generic pseudo-ops that happen to be used on MIPS
1644 chips. */
1645 {"asciiz", stringer, 8 + 1},
1646 {"bss", s_change_sec, 'b'},
1647 {"err", s_err, 0},
1648 {"half", s_cons, 1},
1649 {"dword", s_cons, 3},
1650 {"weakext", s_mips_weakext, 0},
1651 {"origin", s_org, 0},
1652 {"repeat", s_rept, 0},
1653
1654 /* For MIPS this is non-standard, but we define it for consistency. */
1655 {"sbss", s_change_sec, 'B'},
1656
1657 /* These pseudo-ops are defined in read.c, but must be overridden
1658 here for one reason or another. */
1659 {"align", s_align, 0},
1660 {"byte", s_cons, 0},
1661 {"data", s_change_sec, 'd'},
1662 {"double", s_float_cons, 'd'},
1663 {"float", s_float_cons, 'f'},
1664 {"globl", s_mips_globl, 0},
1665 {"global", s_mips_globl, 0},
1666 {"hword", s_cons, 1},
1667 {"int", s_cons, 2},
1668 {"long", s_cons, 2},
1669 {"octa", s_cons, 4},
1670 {"quad", s_cons, 3},
1671 {"section", s_change_section, 0},
1672 {"short", s_cons, 1},
1673 {"single", s_float_cons, 'f'},
1674 {"stabd", s_mips_stab, 'd'},
1675 {"stabn", s_mips_stab, 'n'},
1676 {"stabs", s_mips_stab, 's'},
1677 {"text", s_change_sec, 't'},
1678 {"word", s_cons, 2},
1679
1680 { "extern", ecoff_directive_extern, 0},
1681
1682 { NULL, NULL, 0 },
1683 };
1684
1685 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1686 {
1687 /* These pseudo-ops should be defined by the object file format.
1688 However, a.out doesn't support them, so we have versions here. */
1689 {"aent", s_mips_ent, 1},
1690 {"bgnb", s_ignore, 0},
1691 {"end", s_mips_end, 0},
1692 {"endb", s_ignore, 0},
1693 {"ent", s_mips_ent, 0},
1694 {"file", s_mips_file, 0},
1695 {"fmask", s_mips_mask, 'F'},
1696 {"frame", s_mips_frame, 0},
1697 {"loc", s_mips_loc, 0},
1698 {"mask", s_mips_mask, 'R'},
1699 {"verstamp", s_ignore, 0},
1700 { NULL, NULL, 0 },
1701 };
1702
1703 /* Export the ABI address size for use by TC_ADDRESS_BYTES for the
1704 purpose of the `.dc.a' internal pseudo-op. */
1705
1706 int
1707 mips_address_bytes (void)
1708 {
1709 return HAVE_64BIT_ADDRESSES ? 8 : 4;
1710 }
1711
1712 extern void pop_insert (const pseudo_typeS *);
1713
1714 void
1715 mips_pop_insert (void)
1716 {
1717 pop_insert (mips_pseudo_table);
1718 if (! ECOFF_DEBUGGING)
1719 pop_insert (mips_nonecoff_pseudo_table);
1720 }
1721 \f
1722 /* Symbols labelling the current insn. */
1723
1724 struct insn_label_list
1725 {
1726 struct insn_label_list *next;
1727 symbolS *label;
1728 };
1729
1730 static struct insn_label_list *free_insn_labels;
1731 #define label_list tc_segment_info_data.labels
1732
1733 static void mips_clear_insn_labels (void);
1734 static void mips_mark_labels (void);
1735 static void mips_compressed_mark_labels (void);
1736
1737 static inline void
1738 mips_clear_insn_labels (void)
1739 {
1740 register struct insn_label_list **pl;
1741 segment_info_type *si;
1742
1743 if (now_seg)
1744 {
1745 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1746 ;
1747
1748 si = seg_info (now_seg);
1749 *pl = si->label_list;
1750 si->label_list = NULL;
1751 }
1752 }
1753
1754 /* Mark instruction labels in MIPS16/microMIPS mode. */
1755
1756 static inline void
1757 mips_mark_labels (void)
1758 {
1759 if (HAVE_CODE_COMPRESSION)
1760 mips_compressed_mark_labels ();
1761 }
1762 \f
1763 static char *expr_end;
1764
1765 /* Expressions which appear in macro instructions. These are set by
1766 mips_ip and read by macro. */
1767
1768 static expressionS imm_expr;
1769 static expressionS imm2_expr;
1770
1771 /* The relocatable field in an instruction and the relocs associated
1772 with it. These variables are used for instructions like LUI and
1773 JAL as well as true offsets. They are also used for address
1774 operands in macros. */
1775
1776 static expressionS offset_expr;
1777 static bfd_reloc_code_real_type offset_reloc[3]
1778 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1779
1780 /* This is set to the resulting size of the instruction to be produced
1781 by mips16_ip if an explicit extension is used or by mips_ip if an
1782 explicit size is supplied. */
1783
1784 static unsigned int forced_insn_length;
1785
1786 /* True if we are assembling an instruction. All dot symbols defined during
1787 this time should be treated as code labels. */
1788
1789 static bfd_boolean mips_assembling_insn;
1790
1791 /* The pdr segment for per procedure frame/regmask info. Not used for
1792 ECOFF debugging. */
1793
1794 static segT pdr_seg;
1795
1796 /* The default target format to use. */
1797
1798 #if defined (TE_FreeBSD)
1799 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips-freebsd"
1800 #elif defined (TE_TMIPS)
1801 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX "trad" ENDIAN "mips"
1802 #else
1803 #define ELF_TARGET(PREFIX, ENDIAN) PREFIX ENDIAN "mips"
1804 #endif
1805
1806 const char *
1807 mips_target_format (void)
1808 {
1809 switch (OUTPUT_FLAVOR)
1810 {
1811 case bfd_target_elf_flavour:
1812 #ifdef TE_VXWORKS
1813 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1814 return (target_big_endian
1815 ? "elf32-bigmips-vxworks"
1816 : "elf32-littlemips-vxworks");
1817 #endif
1818 return (target_big_endian
1819 ? (HAVE_64BIT_OBJECTS
1820 ? ELF_TARGET ("elf64-", "big")
1821 : (HAVE_NEWABI
1822 ? ELF_TARGET ("elf32-n", "big")
1823 : ELF_TARGET ("elf32-", "big")))
1824 : (HAVE_64BIT_OBJECTS
1825 ? ELF_TARGET ("elf64-", "little")
1826 : (HAVE_NEWABI
1827 ? ELF_TARGET ("elf32-n", "little")
1828 : ELF_TARGET ("elf32-", "little"))));
1829 default:
1830 abort ();
1831 return NULL;
1832 }
1833 }
1834
1835 /* Return the ISA revision that is currently in use, or 0 if we are
1836 generating code for MIPS V or below. */
1837
1838 static int
1839 mips_isa_rev (void)
1840 {
1841 if (mips_opts.isa == ISA_MIPS32R2 || mips_opts.isa == ISA_MIPS64R2)
1842 return 2;
1843
1844 /* microMIPS implies revision 2 or above. */
1845 if (mips_opts.micromips)
1846 return 2;
1847
1848 if (mips_opts.isa == ISA_MIPS32 || mips_opts.isa == ISA_MIPS64)
1849 return 1;
1850
1851 return 0;
1852 }
1853
1854 /* Return the mask of all ASEs that are revisions of those in FLAGS. */
1855
1856 static unsigned int
1857 mips_ase_mask (unsigned int flags)
1858 {
1859 unsigned int i;
1860
1861 for (i = 0; i < ARRAY_SIZE (mips_ase_groups); i++)
1862 if (flags & mips_ase_groups[i])
1863 flags |= mips_ase_groups[i];
1864 return flags;
1865 }
1866
1867 /* Check whether the current ISA supports ASE. Issue a warning if
1868 appropriate. */
1869
1870 static void
1871 mips_check_isa_supports_ase (const struct mips_ase *ase)
1872 {
1873 const char *base;
1874 int min_rev, size;
1875 static unsigned int warned_isa;
1876 static unsigned int warned_fp32;
1877
1878 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
1879 min_rev = mips_opts.micromips ? ase->micromips64_rev : ase->mips64_rev;
1880 else
1881 min_rev = mips_opts.micromips ? ase->micromips32_rev : ase->mips32_rev;
1882 if ((min_rev < 0 || mips_isa_rev () < min_rev)
1883 && (warned_isa & ase->flags) != ase->flags)
1884 {
1885 warned_isa |= ase->flags;
1886 base = mips_opts.micromips ? "microMIPS" : "MIPS";
1887 size = ISA_HAS_64BIT_REGS (mips_opts.isa) ? 64 : 32;
1888 if (min_rev < 0)
1889 as_warn (_("The %d-bit %s architecture does not support the"
1890 " `%s' extension"), size, base, ase->name);
1891 else
1892 as_warn (_("The `%s' extension requires %s%d revision %d or greater"),
1893 ase->name, base, size, min_rev);
1894 }
1895 if ((ase->flags & FP64_ASES)
1896 && mips_opts.fp32
1897 && (warned_fp32 & ase->flags) != ase->flags)
1898 {
1899 warned_fp32 |= ase->flags;
1900 as_warn (_("The `%s' extension requires 64-bit FPRs"), ase->name);
1901 }
1902 }
1903
1904 /* Check all enabled ASEs to see whether they are supported by the
1905 chosen architecture. */
1906
1907 static void
1908 mips_check_isa_supports_ases (void)
1909 {
1910 unsigned int i, mask;
1911
1912 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
1913 {
1914 mask = mips_ase_mask (mips_ases[i].flags);
1915 if ((mips_opts.ase & mask) == mips_ases[i].flags)
1916 mips_check_isa_supports_ase (&mips_ases[i]);
1917 }
1918 }
1919
1920 /* Set the state of ASE to ENABLED_P. Return the mask of ASE_* flags
1921 that were affected. */
1922
1923 static unsigned int
1924 mips_set_ase (const struct mips_ase *ase, bfd_boolean enabled_p)
1925 {
1926 unsigned int mask;
1927
1928 mask = mips_ase_mask (ase->flags);
1929 mips_opts.ase &= ~mask;
1930 if (enabled_p)
1931 mips_opts.ase |= ase->flags;
1932 return mask;
1933 }
1934
1935 /* Return the ASE called NAME, or null if none. */
1936
1937 static const struct mips_ase *
1938 mips_lookup_ase (const char *name)
1939 {
1940 unsigned int i;
1941
1942 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
1943 if (strcmp (name, mips_ases[i].name) == 0)
1944 return &mips_ases[i];
1945 return NULL;
1946 }
1947
1948 /* Return the length of a microMIPS instruction in bytes. If bits of
1949 the mask beyond the low 16 are 0, then it is a 16-bit instruction.
1950 Otherwise assume a 32-bit instruction; 48-bit instructions (0x1f
1951 major opcode) will require further modifications to the opcode
1952 table. */
1953
1954 static inline unsigned int
1955 micromips_insn_length (const struct mips_opcode *mo)
1956 {
1957 return (mo->mask >> 16) == 0 ? 2 : 4;
1958 }
1959
1960 /* Return the length of MIPS16 instruction OPCODE. */
1961
1962 static inline unsigned int
1963 mips16_opcode_length (unsigned long opcode)
1964 {
1965 return (opcode >> 16) == 0 ? 2 : 4;
1966 }
1967
1968 /* Return the length of instruction INSN. */
1969
1970 static inline unsigned int
1971 insn_length (const struct mips_cl_insn *insn)
1972 {
1973 if (mips_opts.micromips)
1974 return micromips_insn_length (insn->insn_mo);
1975 else if (mips_opts.mips16)
1976 return mips16_opcode_length (insn->insn_opcode);
1977 else
1978 return 4;
1979 }
1980
1981 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1982
1983 static void
1984 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1985 {
1986 size_t i;
1987
1988 insn->insn_mo = mo;
1989 insn->insn_opcode = mo->match;
1990 insn->frag = NULL;
1991 insn->where = 0;
1992 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1993 insn->fixp[i] = NULL;
1994 insn->fixed_p = (mips_opts.noreorder > 0);
1995 insn->noreorder_p = (mips_opts.noreorder > 0);
1996 insn->mips16_absolute_jump_p = 0;
1997 insn->complete_p = 0;
1998 insn->cleared_p = 0;
1999 }
2000
2001 /* Get a list of all the operands in INSN. */
2002
2003 static const struct mips_operand_array *
2004 insn_operands (const struct mips_cl_insn *insn)
2005 {
2006 if (insn->insn_mo >= &mips_opcodes[0]
2007 && insn->insn_mo < &mips_opcodes[NUMOPCODES])
2008 return &mips_operands[insn->insn_mo - &mips_opcodes[0]];
2009
2010 if (insn->insn_mo >= &mips16_opcodes[0]
2011 && insn->insn_mo < &mips16_opcodes[bfd_mips16_num_opcodes])
2012 return &mips16_operands[insn->insn_mo - &mips16_opcodes[0]];
2013
2014 if (insn->insn_mo >= &micromips_opcodes[0]
2015 && insn->insn_mo < &micromips_opcodes[bfd_micromips_num_opcodes])
2016 return &micromips_operands[insn->insn_mo - &micromips_opcodes[0]];
2017
2018 abort ();
2019 }
2020
2021 /* Get a description of operand OPNO of INSN. */
2022
2023 static const struct mips_operand *
2024 insn_opno (const struct mips_cl_insn *insn, unsigned opno)
2025 {
2026 const struct mips_operand_array *operands;
2027
2028 operands = insn_operands (insn);
2029 if (opno >= MAX_OPERANDS || !operands->operand[opno])
2030 abort ();
2031 return operands->operand[opno];
2032 }
2033
2034 /* Install UVAL as the value of OPERAND in INSN. */
2035
2036 static inline void
2037 insn_insert_operand (struct mips_cl_insn *insn,
2038 const struct mips_operand *operand, unsigned int uval)
2039 {
2040 insn->insn_opcode = mips_insert_operand (operand, insn->insn_opcode, uval);
2041 }
2042
2043 /* Extract the value of OPERAND from INSN. */
2044
2045 static inline unsigned
2046 insn_extract_operand (const struct mips_cl_insn *insn,
2047 const struct mips_operand *operand)
2048 {
2049 return mips_extract_operand (operand, insn->insn_opcode);
2050 }
2051
2052 /* Record the current MIPS16/microMIPS mode in now_seg. */
2053
2054 static void
2055 mips_record_compressed_mode (void)
2056 {
2057 segment_info_type *si;
2058
2059 si = seg_info (now_seg);
2060 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
2061 si->tc_segment_info_data.mips16 = mips_opts.mips16;
2062 if (si->tc_segment_info_data.micromips != mips_opts.micromips)
2063 si->tc_segment_info_data.micromips = mips_opts.micromips;
2064 }
2065
2066 /* Read a standard MIPS instruction from BUF. */
2067
2068 static unsigned long
2069 read_insn (char *buf)
2070 {
2071 if (target_big_endian)
2072 return bfd_getb32 ((bfd_byte *) buf);
2073 else
2074 return bfd_getl32 ((bfd_byte *) buf);
2075 }
2076
2077 /* Write standard MIPS instruction INSN to BUF. Return a pointer to
2078 the next byte. */
2079
2080 static char *
2081 write_insn (char *buf, unsigned int insn)
2082 {
2083 md_number_to_chars (buf, insn, 4);
2084 return buf + 4;
2085 }
2086
2087 /* Read a microMIPS or MIPS16 opcode from BUF, given that it
2088 has length LENGTH. */
2089
2090 static unsigned long
2091 read_compressed_insn (char *buf, unsigned int length)
2092 {
2093 unsigned long insn;
2094 unsigned int i;
2095
2096 insn = 0;
2097 for (i = 0; i < length; i += 2)
2098 {
2099 insn <<= 16;
2100 if (target_big_endian)
2101 insn |= bfd_getb16 ((char *) buf);
2102 else
2103 insn |= bfd_getl16 ((char *) buf);
2104 buf += 2;
2105 }
2106 return insn;
2107 }
2108
2109 /* Write microMIPS or MIPS16 instruction INSN to BUF, given that the
2110 instruction is LENGTH bytes long. Return a pointer to the next byte. */
2111
2112 static char *
2113 write_compressed_insn (char *buf, unsigned int insn, unsigned int length)
2114 {
2115 unsigned int i;
2116
2117 for (i = 0; i < length; i += 2)
2118 md_number_to_chars (buf + i, insn >> ((length - i - 2) * 8), 2);
2119 return buf + length;
2120 }
2121
2122 /* Install INSN at the location specified by its "frag" and "where" fields. */
2123
2124 static void
2125 install_insn (const struct mips_cl_insn *insn)
2126 {
2127 char *f = insn->frag->fr_literal + insn->where;
2128 if (HAVE_CODE_COMPRESSION)
2129 write_compressed_insn (f, insn->insn_opcode, insn_length (insn));
2130 else
2131 write_insn (f, insn->insn_opcode);
2132 mips_record_compressed_mode ();
2133 }
2134
2135 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
2136 and install the opcode in the new location. */
2137
2138 static void
2139 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
2140 {
2141 size_t i;
2142
2143 insn->frag = frag;
2144 insn->where = where;
2145 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
2146 if (insn->fixp[i] != NULL)
2147 {
2148 insn->fixp[i]->fx_frag = frag;
2149 insn->fixp[i]->fx_where = where;
2150 }
2151 install_insn (insn);
2152 }
2153
2154 /* Add INSN to the end of the output. */
2155
2156 static void
2157 add_fixed_insn (struct mips_cl_insn *insn)
2158 {
2159 char *f = frag_more (insn_length (insn));
2160 move_insn (insn, frag_now, f - frag_now->fr_literal);
2161 }
2162
2163 /* Start a variant frag and move INSN to the start of the variant part,
2164 marking it as fixed. The other arguments are as for frag_var. */
2165
2166 static void
2167 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
2168 relax_substateT subtype, symbolS *symbol, offsetT offset)
2169 {
2170 frag_grow (max_chars);
2171 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
2172 insn->fixed_p = 1;
2173 frag_var (rs_machine_dependent, max_chars, var,
2174 subtype, symbol, offset, NULL);
2175 }
2176
2177 /* Insert N copies of INSN into the history buffer, starting at
2178 position FIRST. Neither FIRST nor N need to be clipped. */
2179
2180 static void
2181 insert_into_history (unsigned int first, unsigned int n,
2182 const struct mips_cl_insn *insn)
2183 {
2184 if (mips_relax.sequence != 2)
2185 {
2186 unsigned int i;
2187
2188 for (i = ARRAY_SIZE (history); i-- > first;)
2189 if (i >= first + n)
2190 history[i] = history[i - n];
2191 else
2192 history[i] = *insn;
2193 }
2194 }
2195
2196 /* Clear the error in insn_error. */
2197
2198 static void
2199 clear_insn_error (void)
2200 {
2201 memset (&insn_error, 0, sizeof (insn_error));
2202 }
2203
2204 /* Possibly record error message MSG for the current instruction.
2205 If the error is about a particular argument, ARGNUM is the 1-based
2206 number of that argument, otherwise it is 0. FORMAT is the format
2207 of MSG. Return true if MSG was used, false if the current message
2208 was kept. */
2209
2210 static bfd_boolean
2211 set_insn_error_format (int argnum, enum mips_insn_error_format format,
2212 const char *msg)
2213 {
2214 if (argnum == 0)
2215 {
2216 /* Give priority to errors against specific arguments, and to
2217 the first whole-instruction message. */
2218 if (insn_error.msg)
2219 return FALSE;
2220 }
2221 else
2222 {
2223 /* Keep insn_error if it is against a later argument. */
2224 if (argnum < insn_error.min_argnum)
2225 return FALSE;
2226
2227 /* If both errors are against the same argument but are different,
2228 give up on reporting a specific error for this argument.
2229 See the comment about mips_insn_error for details. */
2230 if (argnum == insn_error.min_argnum
2231 && insn_error.msg
2232 && strcmp (insn_error.msg, msg) != 0)
2233 {
2234 insn_error.msg = 0;
2235 insn_error.min_argnum += 1;
2236 return FALSE;
2237 }
2238 }
2239 insn_error.min_argnum = argnum;
2240 insn_error.format = format;
2241 insn_error.msg = msg;
2242 return TRUE;
2243 }
2244
2245 /* Record an instruction error with no % format fields. ARGNUM and MSG are
2246 as for set_insn_error_format. */
2247
2248 static void
2249 set_insn_error (int argnum, const char *msg)
2250 {
2251 set_insn_error_format (argnum, ERR_FMT_PLAIN, msg);
2252 }
2253
2254 /* Record an instruction error with one %d field I. ARGNUM and MSG are
2255 as for set_insn_error_format. */
2256
2257 static void
2258 set_insn_error_i (int argnum, const char *msg, int i)
2259 {
2260 if (set_insn_error_format (argnum, ERR_FMT_I, msg))
2261 insn_error.u.i = i;
2262 }
2263
2264 /* Record an instruction error with two %s fields S1 and S2. ARGNUM and MSG
2265 are as for set_insn_error_format. */
2266
2267 static void
2268 set_insn_error_ss (int argnum, const char *msg, const char *s1, const char *s2)
2269 {
2270 if (set_insn_error_format (argnum, ERR_FMT_SS, msg))
2271 {
2272 insn_error.u.ss[0] = s1;
2273 insn_error.u.ss[1] = s2;
2274 }
2275 }
2276
2277 /* Report the error in insn_error, which is against assembly code STR. */
2278
2279 static void
2280 report_insn_error (const char *str)
2281 {
2282 const char *msg;
2283
2284 msg = ACONCAT ((insn_error.msg, " `%s'", NULL));
2285 switch (insn_error.format)
2286 {
2287 case ERR_FMT_PLAIN:
2288 as_bad (msg, str);
2289 break;
2290
2291 case ERR_FMT_I:
2292 as_bad (msg, insn_error.u.i, str);
2293 break;
2294
2295 case ERR_FMT_SS:
2296 as_bad (msg, insn_error.u.ss[0], insn_error.u.ss[1], str);
2297 break;
2298 }
2299 }
2300
2301 /* Initialize vr4120_conflicts. There is a bit of duplication here:
2302 the idea is to make it obvious at a glance that each errata is
2303 included. */
2304
2305 static void
2306 init_vr4120_conflicts (void)
2307 {
2308 #define CONFLICT(FIRST, SECOND) \
2309 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
2310
2311 /* Errata 21 - [D]DIV[U] after [D]MACC */
2312 CONFLICT (MACC, DIV);
2313 CONFLICT (DMACC, DIV);
2314
2315 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
2316 CONFLICT (DMULT, DMULT);
2317 CONFLICT (DMULT, DMACC);
2318 CONFLICT (DMACC, DMULT);
2319 CONFLICT (DMACC, DMACC);
2320
2321 /* Errata 24 - MT{LO,HI} after [D]MACC */
2322 CONFLICT (MACC, MTHILO);
2323 CONFLICT (DMACC, MTHILO);
2324
2325 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
2326 instruction is executed immediately after a MACC or DMACC
2327 instruction, the result of [either instruction] is incorrect." */
2328 CONFLICT (MACC, MULT);
2329 CONFLICT (MACC, DMULT);
2330 CONFLICT (DMACC, MULT);
2331 CONFLICT (DMACC, DMULT);
2332
2333 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
2334 executed immediately after a DMULT, DMULTU, DIV, DIVU,
2335 DDIV or DDIVU instruction, the result of the MACC or
2336 DMACC instruction is incorrect.". */
2337 CONFLICT (DMULT, MACC);
2338 CONFLICT (DMULT, DMACC);
2339 CONFLICT (DIV, MACC);
2340 CONFLICT (DIV, DMACC);
2341
2342 #undef CONFLICT
2343 }
2344
2345 struct regname {
2346 const char *name;
2347 unsigned int num;
2348 };
2349
2350 #define RNUM_MASK 0x00000ff
2351 #define RTYPE_MASK 0x0efff00
2352 #define RTYPE_NUM 0x0000100
2353 #define RTYPE_FPU 0x0000200
2354 #define RTYPE_FCC 0x0000400
2355 #define RTYPE_VEC 0x0000800
2356 #define RTYPE_GP 0x0001000
2357 #define RTYPE_CP0 0x0002000
2358 #define RTYPE_PC 0x0004000
2359 #define RTYPE_ACC 0x0008000
2360 #define RTYPE_CCC 0x0010000
2361 #define RTYPE_VI 0x0020000
2362 #define RTYPE_VF 0x0040000
2363 #define RTYPE_R5900_I 0x0080000
2364 #define RTYPE_R5900_Q 0x0100000
2365 #define RTYPE_R5900_R 0x0200000
2366 #define RTYPE_R5900_ACC 0x0400000
2367 #define RWARN 0x8000000
2368
2369 #define GENERIC_REGISTER_NUMBERS \
2370 {"$0", RTYPE_NUM | 0}, \
2371 {"$1", RTYPE_NUM | 1}, \
2372 {"$2", RTYPE_NUM | 2}, \
2373 {"$3", RTYPE_NUM | 3}, \
2374 {"$4", RTYPE_NUM | 4}, \
2375 {"$5", RTYPE_NUM | 5}, \
2376 {"$6", RTYPE_NUM | 6}, \
2377 {"$7", RTYPE_NUM | 7}, \
2378 {"$8", RTYPE_NUM | 8}, \
2379 {"$9", RTYPE_NUM | 9}, \
2380 {"$10", RTYPE_NUM | 10}, \
2381 {"$11", RTYPE_NUM | 11}, \
2382 {"$12", RTYPE_NUM | 12}, \
2383 {"$13", RTYPE_NUM | 13}, \
2384 {"$14", RTYPE_NUM | 14}, \
2385 {"$15", RTYPE_NUM | 15}, \
2386 {"$16", RTYPE_NUM | 16}, \
2387 {"$17", RTYPE_NUM | 17}, \
2388 {"$18", RTYPE_NUM | 18}, \
2389 {"$19", RTYPE_NUM | 19}, \
2390 {"$20", RTYPE_NUM | 20}, \
2391 {"$21", RTYPE_NUM | 21}, \
2392 {"$22", RTYPE_NUM | 22}, \
2393 {"$23", RTYPE_NUM | 23}, \
2394 {"$24", RTYPE_NUM | 24}, \
2395 {"$25", RTYPE_NUM | 25}, \
2396 {"$26", RTYPE_NUM | 26}, \
2397 {"$27", RTYPE_NUM | 27}, \
2398 {"$28", RTYPE_NUM | 28}, \
2399 {"$29", RTYPE_NUM | 29}, \
2400 {"$30", RTYPE_NUM | 30}, \
2401 {"$31", RTYPE_NUM | 31}
2402
2403 #define FPU_REGISTER_NAMES \
2404 {"$f0", RTYPE_FPU | 0}, \
2405 {"$f1", RTYPE_FPU | 1}, \
2406 {"$f2", RTYPE_FPU | 2}, \
2407 {"$f3", RTYPE_FPU | 3}, \
2408 {"$f4", RTYPE_FPU | 4}, \
2409 {"$f5", RTYPE_FPU | 5}, \
2410 {"$f6", RTYPE_FPU | 6}, \
2411 {"$f7", RTYPE_FPU | 7}, \
2412 {"$f8", RTYPE_FPU | 8}, \
2413 {"$f9", RTYPE_FPU | 9}, \
2414 {"$f10", RTYPE_FPU | 10}, \
2415 {"$f11", RTYPE_FPU | 11}, \
2416 {"$f12", RTYPE_FPU | 12}, \
2417 {"$f13", RTYPE_FPU | 13}, \
2418 {"$f14", RTYPE_FPU | 14}, \
2419 {"$f15", RTYPE_FPU | 15}, \
2420 {"$f16", RTYPE_FPU | 16}, \
2421 {"$f17", RTYPE_FPU | 17}, \
2422 {"$f18", RTYPE_FPU | 18}, \
2423 {"$f19", RTYPE_FPU | 19}, \
2424 {"$f20", RTYPE_FPU | 20}, \
2425 {"$f21", RTYPE_FPU | 21}, \
2426 {"$f22", RTYPE_FPU | 22}, \
2427 {"$f23", RTYPE_FPU | 23}, \
2428 {"$f24", RTYPE_FPU | 24}, \
2429 {"$f25", RTYPE_FPU | 25}, \
2430 {"$f26", RTYPE_FPU | 26}, \
2431 {"$f27", RTYPE_FPU | 27}, \
2432 {"$f28", RTYPE_FPU | 28}, \
2433 {"$f29", RTYPE_FPU | 29}, \
2434 {"$f30", RTYPE_FPU | 30}, \
2435 {"$f31", RTYPE_FPU | 31}
2436
2437 #define FPU_CONDITION_CODE_NAMES \
2438 {"$fcc0", RTYPE_FCC | 0}, \
2439 {"$fcc1", RTYPE_FCC | 1}, \
2440 {"$fcc2", RTYPE_FCC | 2}, \
2441 {"$fcc3", RTYPE_FCC | 3}, \
2442 {"$fcc4", RTYPE_FCC | 4}, \
2443 {"$fcc5", RTYPE_FCC | 5}, \
2444 {"$fcc6", RTYPE_FCC | 6}, \
2445 {"$fcc7", RTYPE_FCC | 7}
2446
2447 #define COPROC_CONDITION_CODE_NAMES \
2448 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
2449 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
2450 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
2451 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
2452 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
2453 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
2454 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
2455 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
2456
2457 #define N32N64_SYMBOLIC_REGISTER_NAMES \
2458 {"$a4", RTYPE_GP | 8}, \
2459 {"$a5", RTYPE_GP | 9}, \
2460 {"$a6", RTYPE_GP | 10}, \
2461 {"$a7", RTYPE_GP | 11}, \
2462 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
2463 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
2464 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
2465 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
2466 {"$t0", RTYPE_GP | 12}, \
2467 {"$t1", RTYPE_GP | 13}, \
2468 {"$t2", RTYPE_GP | 14}, \
2469 {"$t3", RTYPE_GP | 15}
2470
2471 #define O32_SYMBOLIC_REGISTER_NAMES \
2472 {"$t0", RTYPE_GP | 8}, \
2473 {"$t1", RTYPE_GP | 9}, \
2474 {"$t2", RTYPE_GP | 10}, \
2475 {"$t3", RTYPE_GP | 11}, \
2476 {"$t4", RTYPE_GP | 12}, \
2477 {"$t5", RTYPE_GP | 13}, \
2478 {"$t6", RTYPE_GP | 14}, \
2479 {"$t7", RTYPE_GP | 15}, \
2480 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
2481 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
2482 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
2483 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
2484
2485 /* Remaining symbolic register names */
2486 #define SYMBOLIC_REGISTER_NAMES \
2487 {"$zero", RTYPE_GP | 0}, \
2488 {"$at", RTYPE_GP | 1}, \
2489 {"$AT", RTYPE_GP | 1}, \
2490 {"$v0", RTYPE_GP | 2}, \
2491 {"$v1", RTYPE_GP | 3}, \
2492 {"$a0", RTYPE_GP | 4}, \
2493 {"$a1", RTYPE_GP | 5}, \
2494 {"$a2", RTYPE_GP | 6}, \
2495 {"$a3", RTYPE_GP | 7}, \
2496 {"$s0", RTYPE_GP | 16}, \
2497 {"$s1", RTYPE_GP | 17}, \
2498 {"$s2", RTYPE_GP | 18}, \
2499 {"$s3", RTYPE_GP | 19}, \
2500 {"$s4", RTYPE_GP | 20}, \
2501 {"$s5", RTYPE_GP | 21}, \
2502 {"$s6", RTYPE_GP | 22}, \
2503 {"$s7", RTYPE_GP | 23}, \
2504 {"$t8", RTYPE_GP | 24}, \
2505 {"$t9", RTYPE_GP | 25}, \
2506 {"$k0", RTYPE_GP | 26}, \
2507 {"$kt0", RTYPE_GP | 26}, \
2508 {"$k1", RTYPE_GP | 27}, \
2509 {"$kt1", RTYPE_GP | 27}, \
2510 {"$gp", RTYPE_GP | 28}, \
2511 {"$sp", RTYPE_GP | 29}, \
2512 {"$s8", RTYPE_GP | 30}, \
2513 {"$fp", RTYPE_GP | 30}, \
2514 {"$ra", RTYPE_GP | 31}
2515
2516 #define MIPS16_SPECIAL_REGISTER_NAMES \
2517 {"$pc", RTYPE_PC | 0}
2518
2519 #define MDMX_VECTOR_REGISTER_NAMES \
2520 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
2521 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
2522 {"$v2", RTYPE_VEC | 2}, \
2523 {"$v3", RTYPE_VEC | 3}, \
2524 {"$v4", RTYPE_VEC | 4}, \
2525 {"$v5", RTYPE_VEC | 5}, \
2526 {"$v6", RTYPE_VEC | 6}, \
2527 {"$v7", RTYPE_VEC | 7}, \
2528 {"$v8", RTYPE_VEC | 8}, \
2529 {"$v9", RTYPE_VEC | 9}, \
2530 {"$v10", RTYPE_VEC | 10}, \
2531 {"$v11", RTYPE_VEC | 11}, \
2532 {"$v12", RTYPE_VEC | 12}, \
2533 {"$v13", RTYPE_VEC | 13}, \
2534 {"$v14", RTYPE_VEC | 14}, \
2535 {"$v15", RTYPE_VEC | 15}, \
2536 {"$v16", RTYPE_VEC | 16}, \
2537 {"$v17", RTYPE_VEC | 17}, \
2538 {"$v18", RTYPE_VEC | 18}, \
2539 {"$v19", RTYPE_VEC | 19}, \
2540 {"$v20", RTYPE_VEC | 20}, \
2541 {"$v21", RTYPE_VEC | 21}, \
2542 {"$v22", RTYPE_VEC | 22}, \
2543 {"$v23", RTYPE_VEC | 23}, \
2544 {"$v24", RTYPE_VEC | 24}, \
2545 {"$v25", RTYPE_VEC | 25}, \
2546 {"$v26", RTYPE_VEC | 26}, \
2547 {"$v27", RTYPE_VEC | 27}, \
2548 {"$v28", RTYPE_VEC | 28}, \
2549 {"$v29", RTYPE_VEC | 29}, \
2550 {"$v30", RTYPE_VEC | 30}, \
2551 {"$v31", RTYPE_VEC | 31}
2552
2553 #define R5900_I_NAMES \
2554 {"$I", RTYPE_R5900_I | 0}
2555
2556 #define R5900_Q_NAMES \
2557 {"$Q", RTYPE_R5900_Q | 0}
2558
2559 #define R5900_R_NAMES \
2560 {"$R", RTYPE_R5900_R | 0}
2561
2562 #define R5900_ACC_NAMES \
2563 {"$ACC", RTYPE_R5900_ACC | 0 }
2564
2565 #define MIPS_DSP_ACCUMULATOR_NAMES \
2566 {"$ac0", RTYPE_ACC | 0}, \
2567 {"$ac1", RTYPE_ACC | 1}, \
2568 {"$ac2", RTYPE_ACC | 2}, \
2569 {"$ac3", RTYPE_ACC | 3}
2570
2571 static const struct regname reg_names[] = {
2572 GENERIC_REGISTER_NUMBERS,
2573 FPU_REGISTER_NAMES,
2574 FPU_CONDITION_CODE_NAMES,
2575 COPROC_CONDITION_CODE_NAMES,
2576
2577 /* The $txx registers depends on the abi,
2578 these will be added later into the symbol table from
2579 one of the tables below once mips_abi is set after
2580 parsing of arguments from the command line. */
2581 SYMBOLIC_REGISTER_NAMES,
2582
2583 MIPS16_SPECIAL_REGISTER_NAMES,
2584 MDMX_VECTOR_REGISTER_NAMES,
2585 R5900_I_NAMES,
2586 R5900_Q_NAMES,
2587 R5900_R_NAMES,
2588 R5900_ACC_NAMES,
2589 MIPS_DSP_ACCUMULATOR_NAMES,
2590 {0, 0}
2591 };
2592
2593 static const struct regname reg_names_o32[] = {
2594 O32_SYMBOLIC_REGISTER_NAMES,
2595 {0, 0}
2596 };
2597
2598 static const struct regname reg_names_n32n64[] = {
2599 N32N64_SYMBOLIC_REGISTER_NAMES,
2600 {0, 0}
2601 };
2602
2603 /* Register symbols $v0 and $v1 map to GPRs 2 and 3, but they can also be
2604 interpreted as vector registers 0 and 1. If SYMVAL is the value of one
2605 of these register symbols, return the associated vector register,
2606 otherwise return SYMVAL itself. */
2607
2608 static unsigned int
2609 mips_prefer_vec_regno (unsigned int symval)
2610 {
2611 if ((symval & -2) == (RTYPE_GP | 2))
2612 return RTYPE_VEC | (symval & 1);
2613 return symval;
2614 }
2615
2616 /* Return true if string [S, E) is a valid register name, storing its
2617 symbol value in *SYMVAL_PTR if so. */
2618
2619 static bfd_boolean
2620 mips_parse_register_1 (char *s, char *e, unsigned int *symval_ptr)
2621 {
2622 char save_c;
2623 symbolS *symbol;
2624
2625 /* Terminate name. */
2626 save_c = *e;
2627 *e = '\0';
2628
2629 /* Look up the name. */
2630 symbol = symbol_find (s);
2631 *e = save_c;
2632
2633 if (!symbol || S_GET_SEGMENT (symbol) != reg_section)
2634 return FALSE;
2635
2636 *symval_ptr = S_GET_VALUE (symbol);
2637 return TRUE;
2638 }
2639
2640 /* Return true if the string at *SPTR is a valid register name. Allow it
2641 to have a VU0-style channel suffix of the form x?y?z?w? if CHANNELS_PTR
2642 is nonnull.
2643
2644 When returning true, move *SPTR past the register, store the
2645 register's symbol value in *SYMVAL_PTR and the channel mask in
2646 *CHANNELS_PTR (if nonnull). The symbol value includes the register
2647 number (RNUM_MASK) and register type (RTYPE_MASK). The channel mask
2648 is a 4-bit value of the form XYZW and is 0 if no suffix was given. */
2649
2650 static bfd_boolean
2651 mips_parse_register (char **sptr, unsigned int *symval_ptr,
2652 unsigned int *channels_ptr)
2653 {
2654 char *s, *e, *m;
2655 const char *q;
2656 unsigned int channels, symval, bit;
2657
2658 /* Find end of name. */
2659 s = e = *sptr;
2660 if (is_name_beginner (*e))
2661 ++e;
2662 while (is_part_of_name (*e))
2663 ++e;
2664
2665 channels = 0;
2666 if (!mips_parse_register_1 (s, e, &symval))
2667 {
2668 if (!channels_ptr)
2669 return FALSE;
2670
2671 /* Eat characters from the end of the string that are valid
2672 channel suffixes. The preceding register must be $ACC or
2673 end with a digit, so there is no ambiguity. */
2674 bit = 1;
2675 m = e;
2676 for (q = "wzyx"; *q; q++, bit <<= 1)
2677 if (m > s && m[-1] == *q)
2678 {
2679 --m;
2680 channels |= bit;
2681 }
2682
2683 if (channels == 0
2684 || !mips_parse_register_1 (s, m, &symval)
2685 || (symval & (RTYPE_VI | RTYPE_VF | RTYPE_R5900_ACC)) == 0)
2686 return FALSE;
2687 }
2688
2689 *sptr = e;
2690 *symval_ptr = symval;
2691 if (channels_ptr)
2692 *channels_ptr = channels;
2693 return TRUE;
2694 }
2695
2696 /* Check if SPTR points at a valid register specifier according to TYPES.
2697 If so, then return 1, advance S to consume the specifier and store
2698 the register's number in REGNOP, otherwise return 0. */
2699
2700 static int
2701 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
2702 {
2703 unsigned int regno;
2704
2705 if (mips_parse_register (s, &regno, NULL))
2706 {
2707 if (types & RTYPE_VEC)
2708 regno = mips_prefer_vec_regno (regno);
2709 if (regno & types)
2710 regno &= RNUM_MASK;
2711 else
2712 regno = ~0;
2713 }
2714 else
2715 {
2716 if (types & RWARN)
2717 as_warn (_("Unrecognized register name `%s'"), *s);
2718 regno = ~0;
2719 }
2720 if (regnop)
2721 *regnop = regno;
2722 return regno <= RNUM_MASK;
2723 }
2724
2725 /* Parse a VU0 "x?y?z?w?" channel mask at S and store the associated
2726 mask in *CHANNELS. Return a pointer to the first unconsumed character. */
2727
2728 static char *
2729 mips_parse_vu0_channels (char *s, unsigned int *channels)
2730 {
2731 unsigned int i;
2732
2733 *channels = 0;
2734 for (i = 0; i < 4; i++)
2735 if (*s == "xyzw"[i])
2736 {
2737 *channels |= 1 << (3 - i);
2738 ++s;
2739 }
2740 return s;
2741 }
2742
2743 /* Token types for parsed operand lists. */
2744 enum mips_operand_token_type {
2745 /* A plain register, e.g. $f2. */
2746 OT_REG,
2747
2748 /* A 4-bit XYZW channel mask. */
2749 OT_CHANNELS,
2750
2751 /* An element of a vector, e.g. $v0[1]. */
2752 OT_REG_ELEMENT,
2753
2754 /* A continuous range of registers, e.g. $s0-$s4. */
2755 OT_REG_RANGE,
2756
2757 /* A (possibly relocated) expression. */
2758 OT_INTEGER,
2759
2760 /* A floating-point value. */
2761 OT_FLOAT,
2762
2763 /* A single character. This can be '(', ')' or ',', but '(' only appears
2764 before OT_REGs. */
2765 OT_CHAR,
2766
2767 /* A doubled character, either "--" or "++". */
2768 OT_DOUBLE_CHAR,
2769
2770 /* The end of the operand list. */
2771 OT_END
2772 };
2773
2774 /* A parsed operand token. */
2775 struct mips_operand_token
2776 {
2777 /* The type of token. */
2778 enum mips_operand_token_type type;
2779 union
2780 {
2781 /* The register symbol value for an OT_REG. */
2782 unsigned int regno;
2783
2784 /* The 4-bit channel mask for an OT_CHANNEL_SUFFIX. */
2785 unsigned int channels;
2786
2787 /* The register symbol value and index for an OT_REG_ELEMENT. */
2788 struct {
2789 unsigned int regno;
2790 addressT index;
2791 } reg_element;
2792
2793 /* The two register symbol values involved in an OT_REG_RANGE. */
2794 struct {
2795 unsigned int regno1;
2796 unsigned int regno2;
2797 } reg_range;
2798
2799 /* The value of an OT_INTEGER. The value is represented as an
2800 expression and the relocation operators that were applied to
2801 that expression. The reloc entries are BFD_RELOC_UNUSED if no
2802 relocation operators were used. */
2803 struct {
2804 expressionS value;
2805 bfd_reloc_code_real_type relocs[3];
2806 } integer;
2807
2808 /* The binary data for an OT_FLOAT constant, and the number of bytes
2809 in the constant. */
2810 struct {
2811 unsigned char data[8];
2812 int length;
2813 } flt;
2814
2815 /* The character represented by an OT_CHAR or OT_DOUBLE_CHAR. */
2816 char ch;
2817 } u;
2818 };
2819
2820 /* An obstack used to construct lists of mips_operand_tokens. */
2821 static struct obstack mips_operand_tokens;
2822
2823 /* Give TOKEN type TYPE and add it to mips_operand_tokens. */
2824
2825 static void
2826 mips_add_token (struct mips_operand_token *token,
2827 enum mips_operand_token_type type)
2828 {
2829 token->type = type;
2830 obstack_grow (&mips_operand_tokens, token, sizeof (*token));
2831 }
2832
2833 /* Check whether S is '(' followed by a register name. Add OT_CHAR
2834 and OT_REG tokens for them if so, and return a pointer to the first
2835 unconsumed character. Return null otherwise. */
2836
2837 static char *
2838 mips_parse_base_start (char *s)
2839 {
2840 struct mips_operand_token token;
2841 unsigned int regno, channels;
2842 bfd_boolean decrement_p;
2843
2844 if (*s != '(')
2845 return 0;
2846
2847 ++s;
2848 SKIP_SPACE_TABS (s);
2849
2850 /* Only match "--" as part of a base expression. In other contexts "--X"
2851 is a double negative. */
2852 decrement_p = (s[0] == '-' && s[1] == '-');
2853 if (decrement_p)
2854 {
2855 s += 2;
2856 SKIP_SPACE_TABS (s);
2857 }
2858
2859 /* Allow a channel specifier because that leads to better error messages
2860 than treating something like "$vf0x++" as an expression. */
2861 if (!mips_parse_register (&s, &regno, &channels))
2862 return 0;
2863
2864 token.u.ch = '(';
2865 mips_add_token (&token, OT_CHAR);
2866
2867 if (decrement_p)
2868 {
2869 token.u.ch = '-';
2870 mips_add_token (&token, OT_DOUBLE_CHAR);
2871 }
2872
2873 token.u.regno = regno;
2874 mips_add_token (&token, OT_REG);
2875
2876 if (channels)
2877 {
2878 token.u.channels = channels;
2879 mips_add_token (&token, OT_CHANNELS);
2880 }
2881
2882 /* For consistency, only match "++" as part of base expressions too. */
2883 SKIP_SPACE_TABS (s);
2884 if (s[0] == '+' && s[1] == '+')
2885 {
2886 s += 2;
2887 token.u.ch = '+';
2888 mips_add_token (&token, OT_DOUBLE_CHAR);
2889 }
2890
2891 return s;
2892 }
2893
2894 /* Parse one or more tokens from S. Return a pointer to the first
2895 unconsumed character on success. Return null if an error was found
2896 and store the error text in insn_error. FLOAT_FORMAT is as for
2897 mips_parse_arguments. */
2898
2899 static char *
2900 mips_parse_argument_token (char *s, char float_format)
2901 {
2902 char *end, *save_in, *err;
2903 unsigned int regno1, regno2, channels;
2904 struct mips_operand_token token;
2905
2906 /* First look for "($reg", since we want to treat that as an
2907 OT_CHAR and OT_REG rather than an expression. */
2908 end = mips_parse_base_start (s);
2909 if (end)
2910 return end;
2911
2912 /* Handle other characters that end up as OT_CHARs. */
2913 if (*s == ')' || *s == ',')
2914 {
2915 token.u.ch = *s;
2916 mips_add_token (&token, OT_CHAR);
2917 ++s;
2918 return s;
2919 }
2920
2921 /* Handle tokens that start with a register. */
2922 if (mips_parse_register (&s, &regno1, &channels))
2923 {
2924 if (channels)
2925 {
2926 /* A register and a VU0 channel suffix. */
2927 token.u.regno = regno1;
2928 mips_add_token (&token, OT_REG);
2929
2930 token.u.channels = channels;
2931 mips_add_token (&token, OT_CHANNELS);
2932 return s;
2933 }
2934
2935 SKIP_SPACE_TABS (s);
2936 if (*s == '-')
2937 {
2938 /* A register range. */
2939 ++s;
2940 SKIP_SPACE_TABS (s);
2941 if (!mips_parse_register (&s, &regno2, NULL))
2942 {
2943 set_insn_error (0, _("Invalid register range"));
2944 return 0;
2945 }
2946
2947 token.u.reg_range.regno1 = regno1;
2948 token.u.reg_range.regno2 = regno2;
2949 mips_add_token (&token, OT_REG_RANGE);
2950 return s;
2951 }
2952 else if (*s == '[')
2953 {
2954 /* A vector element. */
2955 expressionS element;
2956
2957 ++s;
2958 SKIP_SPACE_TABS (s);
2959 my_getExpression (&element, s);
2960 if (element.X_op != O_constant)
2961 {
2962 set_insn_error (0, _("Vector element must be constant"));
2963 return 0;
2964 }
2965 s = expr_end;
2966 SKIP_SPACE_TABS (s);
2967 if (*s != ']')
2968 {
2969 set_insn_error (0, _("Missing `]'"));
2970 return 0;
2971 }
2972 ++s;
2973
2974 token.u.reg_element.regno = regno1;
2975 token.u.reg_element.index = element.X_add_number;
2976 mips_add_token (&token, OT_REG_ELEMENT);
2977 return s;
2978 }
2979
2980 /* Looks like just a plain register. */
2981 token.u.regno = regno1;
2982 mips_add_token (&token, OT_REG);
2983 return s;
2984 }
2985
2986 if (float_format)
2987 {
2988 /* First try to treat expressions as floats. */
2989 save_in = input_line_pointer;
2990 input_line_pointer = s;
2991 err = md_atof (float_format, (char *) token.u.flt.data,
2992 &token.u.flt.length);
2993 end = input_line_pointer;
2994 input_line_pointer = save_in;
2995 if (err && *err)
2996 {
2997 set_insn_error (0, err);
2998 return 0;
2999 }
3000 if (s != end)
3001 {
3002 mips_add_token (&token, OT_FLOAT);
3003 return end;
3004 }
3005 }
3006
3007 /* Treat everything else as an integer expression. */
3008 token.u.integer.relocs[0] = BFD_RELOC_UNUSED;
3009 token.u.integer.relocs[1] = BFD_RELOC_UNUSED;
3010 token.u.integer.relocs[2] = BFD_RELOC_UNUSED;
3011 my_getSmallExpression (&token.u.integer.value, token.u.integer.relocs, s);
3012 s = expr_end;
3013 mips_add_token (&token, OT_INTEGER);
3014 return s;
3015 }
3016
3017 /* S points to the operand list for an instruction. FLOAT_FORMAT is 'f'
3018 if expressions should be treated as 32-bit floating-point constants,
3019 'd' if they should be treated as 64-bit floating-point constants,
3020 or 0 if they should be treated as integer expressions (the usual case).
3021
3022 Return a list of tokens on success, otherwise return 0. The caller
3023 must obstack_free the list after use. */
3024
3025 static struct mips_operand_token *
3026 mips_parse_arguments (char *s, char float_format)
3027 {
3028 struct mips_operand_token token;
3029
3030 SKIP_SPACE_TABS (s);
3031 while (*s)
3032 {
3033 s = mips_parse_argument_token (s, float_format);
3034 if (!s)
3035 {
3036 obstack_free (&mips_operand_tokens,
3037 obstack_finish (&mips_operand_tokens));
3038 return 0;
3039 }
3040 SKIP_SPACE_TABS (s);
3041 }
3042 mips_add_token (&token, OT_END);
3043 return (struct mips_operand_token *) obstack_finish (&mips_operand_tokens);
3044 }
3045
3046 /* Return TRUE if opcode MO is valid on the currently selected ISA, ASE
3047 and architecture. Use is_opcode_valid_16 for MIPS16 opcodes. */
3048
3049 static bfd_boolean
3050 is_opcode_valid (const struct mips_opcode *mo)
3051 {
3052 int isa = mips_opts.isa;
3053 int ase = mips_opts.ase;
3054 int fp_s, fp_d;
3055 unsigned int i;
3056
3057 if (ISA_HAS_64BIT_REGS (mips_opts.isa))
3058 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
3059 if ((ase & mips_ases[i].flags) == mips_ases[i].flags)
3060 ase |= mips_ases[i].flags64;
3061
3062 if (!opcode_is_member (mo, isa, ase, mips_opts.arch))
3063 return FALSE;
3064
3065 /* Check whether the instruction or macro requires single-precision or
3066 double-precision floating-point support. Note that this information is
3067 stored differently in the opcode table for insns and macros. */
3068 if (mo->pinfo == INSN_MACRO)
3069 {
3070 fp_s = mo->pinfo2 & INSN2_M_FP_S;
3071 fp_d = mo->pinfo2 & INSN2_M_FP_D;
3072 }
3073 else
3074 {
3075 fp_s = mo->pinfo & FP_S;
3076 fp_d = mo->pinfo & FP_D;
3077 }
3078
3079 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
3080 return FALSE;
3081
3082 if (fp_s && mips_opts.soft_float)
3083 return FALSE;
3084
3085 return TRUE;
3086 }
3087
3088 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
3089 selected ISA and architecture. */
3090
3091 static bfd_boolean
3092 is_opcode_valid_16 (const struct mips_opcode *mo)
3093 {
3094 return opcode_is_member (mo, mips_opts.isa, 0, mips_opts.arch);
3095 }
3096
3097 /* Return TRUE if the size of the microMIPS opcode MO matches one
3098 explicitly requested. Always TRUE in the standard MIPS mode. */
3099
3100 static bfd_boolean
3101 is_size_valid (const struct mips_opcode *mo)
3102 {
3103 if (!mips_opts.micromips)
3104 return TRUE;
3105
3106 if (mips_opts.insn32)
3107 {
3108 if (mo->pinfo != INSN_MACRO && micromips_insn_length (mo) != 4)
3109 return FALSE;
3110 if ((mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0)
3111 return FALSE;
3112 }
3113 if (!forced_insn_length)
3114 return TRUE;
3115 if (mo->pinfo == INSN_MACRO)
3116 return FALSE;
3117 return forced_insn_length == micromips_insn_length (mo);
3118 }
3119
3120 /* Return TRUE if the microMIPS opcode MO is valid for the delay slot
3121 of the preceding instruction. Always TRUE in the standard MIPS mode.
3122
3123 We don't accept macros in 16-bit delay slots to avoid a case where
3124 a macro expansion fails because it relies on a preceding 32-bit real
3125 instruction to have matched and does not handle the operands correctly.
3126 The only macros that may expand to 16-bit instructions are JAL that
3127 cannot be placed in a delay slot anyway, and corner cases of BALIGN
3128 and BGT (that likewise cannot be placed in a delay slot) that decay to
3129 a NOP. In all these cases the macros precede any corresponding real
3130 instruction definitions in the opcode table, so they will match in the
3131 second pass where the size of the delay slot is ignored and therefore
3132 produce correct code. */
3133
3134 static bfd_boolean
3135 is_delay_slot_valid (const struct mips_opcode *mo)
3136 {
3137 if (!mips_opts.micromips)
3138 return TRUE;
3139
3140 if (mo->pinfo == INSN_MACRO)
3141 return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;
3142 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
3143 && micromips_insn_length (mo) != 4)
3144 return FALSE;
3145 if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
3146 && micromips_insn_length (mo) != 2)
3147 return FALSE;
3148
3149 return TRUE;
3150 }
3151
3152 /* For consistency checking, verify that all bits of OPCODE are specified
3153 either by the match/mask part of the instruction definition, or by the
3154 operand list. Also build up a list of operands in OPERANDS.
3155
3156 INSN_BITS says which bits of the instruction are significant.
3157 If OPCODE is a standard or microMIPS instruction, DECODE_OPERAND
3158 provides the mips_operand description of each operand. DECODE_OPERAND
3159 is null for MIPS16 instructions. */
3160
3161 static int
3162 validate_mips_insn (const struct mips_opcode *opcode,
3163 unsigned long insn_bits,
3164 const struct mips_operand *(*decode_operand) (const char *),
3165 struct mips_operand_array *operands)
3166 {
3167 const char *s;
3168 unsigned long used_bits, doubled, undefined, opno, mask;
3169 const struct mips_operand *operand;
3170
3171 mask = (opcode->pinfo == INSN_MACRO ? 0 : opcode->mask);
3172 if ((mask & opcode->match) != opcode->match)
3173 {
3174 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
3175 opcode->name, opcode->args);
3176 return 0;
3177 }
3178 used_bits = 0;
3179 opno = 0;
3180 if (opcode->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX)
3181 used_bits = mips_insert_operand (&mips_vu0_channel_mask, used_bits, -1);
3182 for (s = opcode->args; *s; ++s)
3183 switch (*s)
3184 {
3185 case ',':
3186 case '(':
3187 case ')':
3188 break;
3189
3190 case '#':
3191 s++;
3192 break;
3193
3194 default:
3195 if (!decode_operand)
3196 operand = decode_mips16_operand (*s, FALSE);
3197 else
3198 operand = decode_operand (s);
3199 if (!operand && opcode->pinfo != INSN_MACRO)
3200 {
3201 as_bad (_("internal: unknown operand type: %s %s"),
3202 opcode->name, opcode->args);
3203 return 0;
3204 }
3205 gas_assert (opno < MAX_OPERANDS);
3206 operands->operand[opno] = operand;
3207 if (operand && operand->type != OP_VU0_MATCH_SUFFIX)
3208 {
3209 used_bits = mips_insert_operand (operand, used_bits, -1);
3210 if (operand->type == OP_MDMX_IMM_REG)
3211 /* Bit 5 is the format selector (OB vs QH). The opcode table
3212 has separate entries for each format. */
3213 used_bits &= ~(1 << (operand->lsb + 5));
3214 if (operand->type == OP_ENTRY_EXIT_LIST)
3215 used_bits &= ~(mask & 0x700);
3216 }
3217 /* Skip prefix characters. */
3218 if (decode_operand && (*s == '+' || *s == 'm'))
3219 ++s;
3220 opno += 1;
3221 break;
3222 }
3223 doubled = used_bits & mask & insn_bits;
3224 if (doubled)
3225 {
3226 as_bad (_("internal: bad mips opcode (bits 0x%08lx doubly defined):"
3227 " %s %s"), doubled, opcode->name, opcode->args);
3228 return 0;
3229 }
3230 used_bits |= mask;
3231 undefined = ~used_bits & insn_bits;
3232 if (opcode->pinfo != INSN_MACRO && undefined)
3233 {
3234 as_bad (_("internal: bad mips opcode (bits 0x%08lx undefined): %s %s"),
3235 undefined, opcode->name, opcode->args);
3236 return 0;
3237 }
3238 used_bits &= ~insn_bits;
3239 if (used_bits)
3240 {
3241 as_bad (_("internal: bad mips opcode (bits 0x%08lx defined): %s %s"),
3242 used_bits, opcode->name, opcode->args);
3243 return 0;
3244 }
3245 return 1;
3246 }
3247
3248 /* The MIPS16 version of validate_mips_insn. */
3249
3250 static int
3251 validate_mips16_insn (const struct mips_opcode *opcode,
3252 struct mips_operand_array *operands)
3253 {
3254 if (opcode->args[0] == 'a' || opcode->args[0] == 'i')
3255 {
3256 /* In this case OPCODE defines the first 16 bits in a 32-bit jump
3257 instruction. Use TMP to describe the full instruction. */
3258 struct mips_opcode tmp;
3259
3260 tmp = *opcode;
3261 tmp.match <<= 16;
3262 tmp.mask <<= 16;
3263 return validate_mips_insn (&tmp, 0xffffffff, 0, operands);
3264 }
3265 return validate_mips_insn (opcode, 0xffff, 0, operands);
3266 }
3267
3268 /* The microMIPS version of validate_mips_insn. */
3269
3270 static int
3271 validate_micromips_insn (const struct mips_opcode *opc,
3272 struct mips_operand_array *operands)
3273 {
3274 unsigned long insn_bits;
3275 unsigned long major;
3276 unsigned int length;
3277
3278 if (opc->pinfo == INSN_MACRO)
3279 return validate_mips_insn (opc, 0xffffffff, decode_micromips_operand,
3280 operands);
3281
3282 length = micromips_insn_length (opc);
3283 if (length != 2 && length != 4)
3284 {
3285 as_bad (_("Internal error: bad microMIPS opcode (incorrect length: %u): "
3286 "%s %s"), length, opc->name, opc->args);
3287 return 0;
3288 }
3289 major = opc->match >> (10 + 8 * (length - 2));
3290 if ((length == 2 && (major & 7) != 1 && (major & 6) != 2)
3291 || (length == 4 && (major & 7) != 0 && (major & 4) != 4))
3292 {
3293 as_bad (_("Internal error: bad microMIPS opcode "
3294 "(opcode/length mismatch): %s %s"), opc->name, opc->args);
3295 return 0;
3296 }
3297
3298 /* Shift piecewise to avoid an overflow where unsigned long is 32-bit. */
3299 insn_bits = 1 << 4 * length;
3300 insn_bits <<= 4 * length;
3301 insn_bits -= 1;
3302 return validate_mips_insn (opc, insn_bits, decode_micromips_operand,
3303 operands);
3304 }
3305
3306 /* This function is called once, at assembler startup time. It should set up
3307 all the tables, etc. that the MD part of the assembler will need. */
3308
3309 void
3310 md_begin (void)
3311 {
3312 const char *retval = NULL;
3313 int i = 0;
3314 int broken = 0;
3315
3316 if (mips_pic != NO_PIC)
3317 {
3318 if (g_switch_seen && g_switch_value != 0)
3319 as_bad (_("-G may not be used in position-independent code"));
3320 g_switch_value = 0;
3321 }
3322
3323 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
3324 as_warn (_("Could not set architecture and machine"));
3325
3326 op_hash = hash_new ();
3327
3328 mips_operands = XCNEWVEC (struct mips_operand_array, NUMOPCODES);
3329 for (i = 0; i < NUMOPCODES;)
3330 {
3331 const char *name = mips_opcodes[i].name;
3332
3333 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
3334 if (retval != NULL)
3335 {
3336 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
3337 mips_opcodes[i].name, retval);
3338 /* Probably a memory allocation problem? Give up now. */
3339 as_fatal (_("Broken assembler. No assembly attempted."));
3340 }
3341 do
3342 {
3343 if (!validate_mips_insn (&mips_opcodes[i], 0xffffffff,
3344 decode_mips_operand, &mips_operands[i]))
3345 broken = 1;
3346 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
3347 {
3348 create_insn (&nop_insn, mips_opcodes + i);
3349 if (mips_fix_loongson2f_nop)
3350 nop_insn.insn_opcode = LOONGSON2F_NOP_INSN;
3351 nop_insn.fixed_p = 1;
3352 }
3353 ++i;
3354 }
3355 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
3356 }
3357
3358 mips16_op_hash = hash_new ();
3359 mips16_operands = XCNEWVEC (struct mips_operand_array,
3360 bfd_mips16_num_opcodes);
3361
3362 i = 0;
3363 while (i < bfd_mips16_num_opcodes)
3364 {
3365 const char *name = mips16_opcodes[i].name;
3366
3367 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
3368 if (retval != NULL)
3369 as_fatal (_("internal: can't hash `%s': %s"),
3370 mips16_opcodes[i].name, retval);
3371 do
3372 {
3373 if (!validate_mips16_insn (&mips16_opcodes[i], &mips16_operands[i]))
3374 broken = 1;
3375 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
3376 {
3377 create_insn (&mips16_nop_insn, mips16_opcodes + i);
3378 mips16_nop_insn.fixed_p = 1;
3379 }
3380 ++i;
3381 }
3382 while (i < bfd_mips16_num_opcodes
3383 && strcmp (mips16_opcodes[i].name, name) == 0);
3384 }
3385
3386 micromips_op_hash = hash_new ();
3387 micromips_operands = XCNEWVEC (struct mips_operand_array,
3388 bfd_micromips_num_opcodes);
3389
3390 i = 0;
3391 while (i < bfd_micromips_num_opcodes)
3392 {
3393 const char *name = micromips_opcodes[i].name;
3394
3395 retval = hash_insert (micromips_op_hash, name,
3396 (void *) &micromips_opcodes[i]);
3397 if (retval != NULL)
3398 as_fatal (_("internal: can't hash `%s': %s"),
3399 micromips_opcodes[i].name, retval);
3400 do
3401 {
3402 struct mips_cl_insn *micromips_nop_insn;
3403
3404 if (!validate_micromips_insn (&micromips_opcodes[i],
3405 &micromips_operands[i]))
3406 broken = 1;
3407
3408 if (micromips_opcodes[i].pinfo != INSN_MACRO)
3409 {
3410 if (micromips_insn_length (micromips_opcodes + i) == 2)
3411 micromips_nop_insn = &micromips_nop16_insn;
3412 else if (micromips_insn_length (micromips_opcodes + i) == 4)
3413 micromips_nop_insn = &micromips_nop32_insn;
3414 else
3415 continue;
3416
3417 if (micromips_nop_insn->insn_mo == NULL
3418 && strcmp (name, "nop") == 0)
3419 {
3420 create_insn (micromips_nop_insn, micromips_opcodes + i);
3421 micromips_nop_insn->fixed_p = 1;
3422 }
3423 }
3424 }
3425 while (++i < bfd_micromips_num_opcodes
3426 && strcmp (micromips_opcodes[i].name, name) == 0);
3427 }
3428
3429 if (broken)
3430 as_fatal (_("Broken assembler. No assembly attempted."));
3431
3432 /* We add all the general register names to the symbol table. This
3433 helps us detect invalid uses of them. */
3434 for (i = 0; reg_names[i].name; i++)
3435 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
3436 reg_names[i].num, /* & RNUM_MASK, */
3437 &zero_address_frag));
3438 if (HAVE_NEWABI)
3439 for (i = 0; reg_names_n32n64[i].name; i++)
3440 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
3441 reg_names_n32n64[i].num, /* & RNUM_MASK, */
3442 &zero_address_frag));
3443 else
3444 for (i = 0; reg_names_o32[i].name; i++)
3445 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
3446 reg_names_o32[i].num, /* & RNUM_MASK, */
3447 &zero_address_frag));
3448
3449 for (i = 0; i < 32; i++)
3450 {
3451 char regname[7];
3452
3453 /* R5900 VU0 floating-point register. */
3454 regname[sizeof (rename) - 1] = 0;
3455 snprintf (regname, sizeof (regname) - 1, "$vf%d", i);
3456 symbol_table_insert (symbol_new (regname, reg_section,
3457 RTYPE_VF | i, &zero_address_frag));
3458
3459 /* R5900 VU0 integer register. */
3460 snprintf (regname, sizeof (regname) - 1, "$vi%d", i);
3461 symbol_table_insert (symbol_new (regname, reg_section,
3462 RTYPE_VI | i, &zero_address_frag));
3463
3464 }
3465
3466 obstack_init (&mips_operand_tokens);
3467
3468 mips_no_prev_insn ();
3469
3470 mips_gprmask = 0;
3471 mips_cprmask[0] = 0;
3472 mips_cprmask[1] = 0;
3473 mips_cprmask[2] = 0;
3474 mips_cprmask[3] = 0;
3475
3476 /* set the default alignment for the text section (2**2) */
3477 record_alignment (text_section, 2);
3478
3479 bfd_set_gp_size (stdoutput, g_switch_value);
3480
3481 /* On a native system other than VxWorks, sections must be aligned
3482 to 16 byte boundaries. When configured for an embedded ELF
3483 target, we don't bother. */
3484 if (strncmp (TARGET_OS, "elf", 3) != 0
3485 && strncmp (TARGET_OS, "vxworks", 7) != 0)
3486 {
3487 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
3488 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
3489 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
3490 }
3491
3492 /* Create a .reginfo section for register masks and a .mdebug
3493 section for debugging information. */
3494 {
3495 segT seg;
3496 subsegT subseg;
3497 flagword flags;
3498 segT sec;
3499
3500 seg = now_seg;
3501 subseg = now_subseg;
3502
3503 /* The ABI says this section should be loaded so that the
3504 running program can access it. However, we don't load it
3505 if we are configured for an embedded target */
3506 flags = SEC_READONLY | SEC_DATA;
3507 if (strncmp (TARGET_OS, "elf", 3) != 0)
3508 flags |= SEC_ALLOC | SEC_LOAD;
3509
3510 if (mips_abi != N64_ABI)
3511 {
3512 sec = subseg_new (".reginfo", (subsegT) 0);
3513
3514 bfd_set_section_flags (stdoutput, sec, flags);
3515 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
3516
3517 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
3518 }
3519 else
3520 {
3521 /* The 64-bit ABI uses a .MIPS.options section rather than
3522 .reginfo section. */
3523 sec = subseg_new (".MIPS.options", (subsegT) 0);
3524 bfd_set_section_flags (stdoutput, sec, flags);
3525 bfd_set_section_alignment (stdoutput, sec, 3);
3526
3527 /* Set up the option header. */
3528 {
3529 Elf_Internal_Options opthdr;
3530 char *f;
3531
3532 opthdr.kind = ODK_REGINFO;
3533 opthdr.size = (sizeof (Elf_External_Options)
3534 + sizeof (Elf64_External_RegInfo));
3535 opthdr.section = 0;
3536 opthdr.info = 0;
3537 f = frag_more (sizeof (Elf_External_Options));
3538 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
3539 (Elf_External_Options *) f);
3540
3541 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
3542 }
3543 }
3544
3545 if (ECOFF_DEBUGGING)
3546 {
3547 sec = subseg_new (".mdebug", (subsegT) 0);
3548 (void) bfd_set_section_flags (stdoutput, sec,
3549 SEC_HAS_CONTENTS | SEC_READONLY);
3550 (void) bfd_set_section_alignment (stdoutput, sec, 2);
3551 }
3552 else if (mips_flag_pdr)
3553 {
3554 pdr_seg = subseg_new (".pdr", (subsegT) 0);
3555 (void) bfd_set_section_flags (stdoutput, pdr_seg,
3556 SEC_READONLY | SEC_RELOC
3557 | SEC_DEBUGGING);
3558 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
3559 }
3560
3561 subseg_set (seg, subseg);
3562 }
3563
3564 if (! ECOFF_DEBUGGING)
3565 md_obj_begin ();
3566
3567 if (mips_fix_vr4120)
3568 init_vr4120_conflicts ();
3569 }
3570
3571 void
3572 md_mips_end (void)
3573 {
3574 mips_emit_delays ();
3575 if (! ECOFF_DEBUGGING)
3576 md_obj_end ();
3577 }
3578
3579 void
3580 md_assemble (char *str)
3581 {
3582 struct mips_cl_insn insn;
3583 bfd_reloc_code_real_type unused_reloc[3]
3584 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3585
3586 imm_expr.X_op = O_absent;
3587 imm2_expr.X_op = O_absent;
3588 offset_expr.X_op = O_absent;
3589 offset_reloc[0] = BFD_RELOC_UNUSED;
3590 offset_reloc[1] = BFD_RELOC_UNUSED;
3591 offset_reloc[2] = BFD_RELOC_UNUSED;
3592
3593 mips_mark_labels ();
3594 mips_assembling_insn = TRUE;
3595 clear_insn_error ();
3596
3597 if (mips_opts.mips16)
3598 mips16_ip (str, &insn);
3599 else
3600 {
3601 mips_ip (str, &insn);
3602 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
3603 str, insn.insn_opcode));
3604 }
3605
3606 if (insn_error.msg)
3607 report_insn_error (str);
3608 else if (insn.insn_mo->pinfo == INSN_MACRO)
3609 {
3610 macro_start ();
3611 if (mips_opts.mips16)
3612 mips16_macro (&insn);
3613 else
3614 macro (&insn, str);
3615 macro_end ();
3616 }
3617 else
3618 {
3619 if (offset_expr.X_op != O_absent)
3620 append_insn (&insn, &offset_expr, offset_reloc, FALSE);
3621 else
3622 append_insn (&insn, NULL, unused_reloc, FALSE);
3623 }
3624
3625 mips_assembling_insn = FALSE;
3626 }
3627
3628 /* Convenience functions for abstracting away the differences between
3629 MIPS16 and non-MIPS16 relocations. */
3630
3631 static inline bfd_boolean
3632 mips16_reloc_p (bfd_reloc_code_real_type reloc)
3633 {
3634 switch (reloc)
3635 {
3636 case BFD_RELOC_MIPS16_JMP:
3637 case BFD_RELOC_MIPS16_GPREL:
3638 case BFD_RELOC_MIPS16_GOT16:
3639 case BFD_RELOC_MIPS16_CALL16:
3640 case BFD_RELOC_MIPS16_HI16_S:
3641 case BFD_RELOC_MIPS16_HI16:
3642 case BFD_RELOC_MIPS16_LO16:
3643 return TRUE;
3644
3645 default:
3646 return FALSE;
3647 }
3648 }
3649
3650 static inline bfd_boolean
3651 micromips_reloc_p (bfd_reloc_code_real_type reloc)
3652 {
3653 switch (reloc)
3654 {
3655 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
3656 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
3657 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
3658 case BFD_RELOC_MICROMIPS_GPREL16:
3659 case BFD_RELOC_MICROMIPS_JMP:
3660 case BFD_RELOC_MICROMIPS_HI16:
3661 case BFD_RELOC_MICROMIPS_HI16_S:
3662 case BFD_RELOC_MICROMIPS_LO16:
3663 case BFD_RELOC_MICROMIPS_LITERAL:
3664 case BFD_RELOC_MICROMIPS_GOT16:
3665 case BFD_RELOC_MICROMIPS_CALL16:
3666 case BFD_RELOC_MICROMIPS_GOT_HI16:
3667 case BFD_RELOC_MICROMIPS_GOT_LO16:
3668 case BFD_RELOC_MICROMIPS_CALL_HI16:
3669 case BFD_RELOC_MICROMIPS_CALL_LO16:
3670 case BFD_RELOC_MICROMIPS_SUB:
3671 case BFD_RELOC_MICROMIPS_GOT_PAGE:
3672 case BFD_RELOC_MICROMIPS_GOT_OFST:
3673 case BFD_RELOC_MICROMIPS_GOT_DISP:
3674 case BFD_RELOC_MICROMIPS_HIGHEST:
3675 case BFD_RELOC_MICROMIPS_HIGHER:
3676 case BFD_RELOC_MICROMIPS_SCN_DISP:
3677 case BFD_RELOC_MICROMIPS_JALR:
3678 return TRUE;
3679
3680 default:
3681 return FALSE;
3682 }
3683 }
3684
3685 static inline bfd_boolean
3686 jmp_reloc_p (bfd_reloc_code_real_type reloc)
3687 {
3688 return reloc == BFD_RELOC_MIPS_JMP || reloc == BFD_RELOC_MICROMIPS_JMP;
3689 }
3690
3691 static inline bfd_boolean
3692 got16_reloc_p (bfd_reloc_code_real_type reloc)
3693 {
3694 return (reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16
3695 || reloc == BFD_RELOC_MICROMIPS_GOT16);
3696 }
3697
3698 static inline bfd_boolean
3699 hi16_reloc_p (bfd_reloc_code_real_type reloc)
3700 {
3701 return (reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S
3702 || reloc == BFD_RELOC_MICROMIPS_HI16_S);
3703 }
3704
3705 static inline bfd_boolean
3706 lo16_reloc_p (bfd_reloc_code_real_type reloc)
3707 {
3708 return (reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16
3709 || reloc == BFD_RELOC_MICROMIPS_LO16);
3710 }
3711
3712 static inline bfd_boolean
3713 jalr_reloc_p (bfd_reloc_code_real_type reloc)
3714 {
3715 return reloc == BFD_RELOC_MIPS_JALR || reloc == BFD_RELOC_MICROMIPS_JALR;
3716 }
3717
3718 static inline bfd_boolean
3719 gprel16_reloc_p (bfd_reloc_code_real_type reloc)
3720 {
3721 return (reloc == BFD_RELOC_GPREL16 || reloc == BFD_RELOC_MIPS16_GPREL
3722 || reloc == BFD_RELOC_MICROMIPS_GPREL16);
3723 }
3724
3725 /* Return true if RELOC is a PC-relative relocation that does not have
3726 full address range. */
3727
3728 static inline bfd_boolean
3729 limited_pcrel_reloc_p (bfd_reloc_code_real_type reloc)
3730 {
3731 switch (reloc)
3732 {
3733 case BFD_RELOC_16_PCREL_S2:
3734 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
3735 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
3736 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
3737 return TRUE;
3738
3739 case BFD_RELOC_32_PCREL:
3740 return HAVE_64BIT_ADDRESSES;
3741
3742 default:
3743 return FALSE;
3744 }
3745 }
3746
3747 /* Return true if the given relocation might need a matching %lo().
3748 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
3749 need a matching %lo() when applied to local symbols. */
3750
3751 static inline bfd_boolean
3752 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
3753 {
3754 return (HAVE_IN_PLACE_ADDENDS
3755 && (hi16_reloc_p (reloc)
3756 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
3757 all GOT16 relocations evaluate to "G". */
3758 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
3759 }
3760
3761 /* Return the type of %lo() reloc needed by RELOC, given that
3762 reloc_needs_lo_p. */
3763
3764 static inline bfd_reloc_code_real_type
3765 matching_lo_reloc (bfd_reloc_code_real_type reloc)
3766 {
3767 return (mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16
3768 : (micromips_reloc_p (reloc) ? BFD_RELOC_MICROMIPS_LO16
3769 : BFD_RELOC_LO16));
3770 }
3771
3772 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
3773 relocation. */
3774
3775 static inline bfd_boolean
3776 fixup_has_matching_lo_p (fixS *fixp)
3777 {
3778 return (fixp->fx_next != NULL
3779 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
3780 && fixp->fx_addsy == fixp->fx_next->fx_addsy
3781 && fixp->fx_offset == fixp->fx_next->fx_offset);
3782 }
3783
3784 /* Move all labels in LABELS to the current insertion point. TEXT_P
3785 says whether the labels refer to text or data. */
3786
3787 static void
3788 mips_move_labels (struct insn_label_list *labels, bfd_boolean text_p)
3789 {
3790 struct insn_label_list *l;
3791 valueT val;
3792
3793 for (l = labels; l != NULL; l = l->next)
3794 {
3795 gas_assert (S_GET_SEGMENT (l->label) == now_seg);
3796 symbol_set_frag (l->label, frag_now);
3797 val = (valueT) frag_now_fix ();
3798 /* MIPS16/microMIPS text labels are stored as odd. */
3799 if (text_p && HAVE_CODE_COMPRESSION)
3800 ++val;
3801 S_SET_VALUE (l->label, val);
3802 }
3803 }
3804
3805 /* Move all labels in insn_labels to the current insertion point
3806 and treat them as text labels. */
3807
3808 static void
3809 mips_move_text_labels (void)
3810 {
3811 mips_move_labels (seg_info (now_seg)->label_list, TRUE);
3812 }
3813
3814 static bfd_boolean
3815 s_is_linkonce (symbolS *sym, segT from_seg)
3816 {
3817 bfd_boolean linkonce = FALSE;
3818 segT symseg = S_GET_SEGMENT (sym);
3819
3820 if (symseg != from_seg && !S_IS_LOCAL (sym))
3821 {
3822 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
3823 linkonce = TRUE;
3824 /* The GNU toolchain uses an extension for ELF: a section
3825 beginning with the magic string .gnu.linkonce is a
3826 linkonce section. */
3827 if (strncmp (segment_name (symseg), ".gnu.linkonce",
3828 sizeof ".gnu.linkonce" - 1) == 0)
3829 linkonce = TRUE;
3830 }
3831 return linkonce;
3832 }
3833
3834 /* Mark MIPS16 or microMIPS instruction label LABEL. This permits the
3835 linker to handle them specially, such as generating jalx instructions
3836 when needed. We also make them odd for the duration of the assembly,
3837 in order to generate the right sort of code. We will make them even
3838 in the adjust_symtab routine, while leaving them marked. This is
3839 convenient for the debugger and the disassembler. The linker knows
3840 to make them odd again. */
3841
3842 static void
3843 mips_compressed_mark_label (symbolS *label)
3844 {
3845 gas_assert (HAVE_CODE_COMPRESSION);
3846
3847 if (mips_opts.mips16)
3848 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
3849 else
3850 S_SET_OTHER (label, ELF_ST_SET_MICROMIPS (S_GET_OTHER (label)));
3851 if ((S_GET_VALUE (label) & 1) == 0
3852 /* Don't adjust the address if the label is global or weak, or
3853 in a link-once section, since we'll be emitting symbol reloc
3854 references to it which will be patched up by the linker, and
3855 the final value of the symbol may or may not be MIPS16/microMIPS. */
3856 && !S_IS_WEAK (label)
3857 && !S_IS_EXTERNAL (label)
3858 && !s_is_linkonce (label, now_seg))
3859 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
3860 }
3861
3862 /* Mark preceding MIPS16 or microMIPS instruction labels. */
3863
3864 static void
3865 mips_compressed_mark_labels (void)
3866 {
3867 struct insn_label_list *l;
3868
3869 for (l = seg_info (now_seg)->label_list; l != NULL; l = l->next)
3870 mips_compressed_mark_label (l->label);
3871 }
3872
3873 /* End the current frag. Make it a variant frag and record the
3874 relaxation info. */
3875
3876 static void
3877 relax_close_frag (void)
3878 {
3879 mips_macro_warning.first_frag = frag_now;
3880 frag_var (rs_machine_dependent, 0, 0,
3881 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
3882 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
3883
3884 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
3885 mips_relax.first_fixup = 0;
3886 }
3887
3888 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
3889 See the comment above RELAX_ENCODE for more details. */
3890
3891 static void
3892 relax_start (symbolS *symbol)
3893 {
3894 gas_assert (mips_relax.sequence == 0);
3895 mips_relax.sequence = 1;
3896 mips_relax.symbol = symbol;
3897 }
3898
3899 /* Start generating the second version of a relaxable sequence.
3900 See the comment above RELAX_ENCODE for more details. */
3901
3902 static void
3903 relax_switch (void)
3904 {
3905 gas_assert (mips_relax.sequence == 1);
3906 mips_relax.sequence = 2;
3907 }
3908
3909 /* End the current relaxable sequence. */
3910
3911 static void
3912 relax_end (void)
3913 {
3914 gas_assert (mips_relax.sequence == 2);
3915 relax_close_frag ();
3916 mips_relax.sequence = 0;
3917 }
3918
3919 /* Return true if IP is a delayed branch or jump. */
3920
3921 static inline bfd_boolean
3922 delayed_branch_p (const struct mips_cl_insn *ip)
3923 {
3924 return (ip->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
3925 | INSN_COND_BRANCH_DELAY
3926 | INSN_COND_BRANCH_LIKELY)) != 0;
3927 }
3928
3929 /* Return true if IP is a compact branch or jump. */
3930
3931 static inline bfd_boolean
3932 compact_branch_p (const struct mips_cl_insn *ip)
3933 {
3934 return (ip->insn_mo->pinfo2 & (INSN2_UNCOND_BRANCH
3935 | INSN2_COND_BRANCH)) != 0;
3936 }
3937
3938 /* Return true if IP is an unconditional branch or jump. */
3939
3940 static inline bfd_boolean
3941 uncond_branch_p (const struct mips_cl_insn *ip)
3942 {
3943 return ((ip->insn_mo->pinfo & INSN_UNCOND_BRANCH_DELAY) != 0
3944 || (ip->insn_mo->pinfo2 & INSN2_UNCOND_BRANCH) != 0);
3945 }
3946
3947 /* Return true if IP is a branch-likely instruction. */
3948
3949 static inline bfd_boolean
3950 branch_likely_p (const struct mips_cl_insn *ip)
3951 {
3952 return (ip->insn_mo->pinfo & INSN_COND_BRANCH_LIKELY) != 0;
3953 }
3954
3955 /* Return the type of nop that should be used to fill the delay slot
3956 of delayed branch IP. */
3957
3958 static struct mips_cl_insn *
3959 get_delay_slot_nop (const struct mips_cl_insn *ip)
3960 {
3961 if (mips_opts.micromips
3962 && (ip->insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
3963 return &micromips_nop32_insn;
3964 return NOP_INSN;
3965 }
3966
3967 /* Return a mask that has bit N set if OPCODE reads the register(s)
3968 in operand N. */
3969
3970 static unsigned int
3971 insn_read_mask (const struct mips_opcode *opcode)
3972 {
3973 return (opcode->pinfo & INSN_READ_ALL) >> INSN_READ_SHIFT;
3974 }
3975
3976 /* Return a mask that has bit N set if OPCODE writes to the register(s)
3977 in operand N. */
3978
3979 static unsigned int
3980 insn_write_mask (const struct mips_opcode *opcode)
3981 {
3982 return (opcode->pinfo & INSN_WRITE_ALL) >> INSN_WRITE_SHIFT;
3983 }
3984
3985 /* Return a mask of the registers specified by operand OPERAND of INSN.
3986 Ignore registers of type OP_REG_<t> unless bit OP_REG_<t> of TYPE_MASK
3987 is set. */
3988
3989 static unsigned int
3990 operand_reg_mask (const struct mips_cl_insn *insn,
3991 const struct mips_operand *operand,
3992 unsigned int type_mask)
3993 {
3994 unsigned int uval, vsel;
3995
3996 switch (operand->type)
3997 {
3998 case OP_INT:
3999 case OP_MAPPED_INT:
4000 case OP_MSB:
4001 case OP_PCREL:
4002 case OP_PERF_REG:
4003 case OP_ADDIUSP_INT:
4004 case OP_ENTRY_EXIT_LIST:
4005 case OP_REPEAT_DEST_REG:
4006 case OP_REPEAT_PREV_REG:
4007 case OP_PC:
4008 case OP_VU0_SUFFIX:
4009 case OP_VU0_MATCH_SUFFIX:
4010 abort ();
4011
4012 case OP_REG:
4013 case OP_OPTIONAL_REG:
4014 {
4015 const struct mips_reg_operand *reg_op;
4016
4017 reg_op = (const struct mips_reg_operand *) operand;
4018 if (!(type_mask & (1 << reg_op->reg_type)))
4019 return 0;
4020 uval = insn_extract_operand (insn, operand);
4021 return 1 << mips_decode_reg_operand (reg_op, uval);
4022 }
4023
4024 case OP_REG_PAIR:
4025 {
4026 const struct mips_reg_pair_operand *pair_op;
4027
4028 pair_op = (const struct mips_reg_pair_operand *) operand;
4029 if (!(type_mask & (1 << pair_op->reg_type)))
4030 return 0;
4031 uval = insn_extract_operand (insn, operand);
4032 return (1 << pair_op->reg1_map[uval]) | (1 << pair_op->reg2_map[uval]);
4033 }
4034
4035 case OP_CLO_CLZ_DEST:
4036 if (!(type_mask & (1 << OP_REG_GP)))
4037 return 0;
4038 uval = insn_extract_operand (insn, operand);
4039 return (1 << (uval & 31)) | (1 << (uval >> 5));
4040
4041 case OP_LWM_SWM_LIST:
4042 abort ();
4043
4044 case OP_SAVE_RESTORE_LIST:
4045 abort ();
4046
4047 case OP_MDMX_IMM_REG:
4048 if (!(type_mask & (1 << OP_REG_VEC)))
4049 return 0;
4050 uval = insn_extract_operand (insn, operand);
4051 vsel = uval >> 5;
4052 if ((vsel & 0x18) == 0x18)
4053 return 0;
4054 return 1 << (uval & 31);
4055 }
4056 abort ();
4057 }
4058
4059 /* Return a mask of the registers specified by operands OPNO_MASK of INSN,
4060 where bit N of OPNO_MASK is set if operand N should be included.
4061 Ignore registers of type OP_REG_<t> unless bit OP_REG_<t> of TYPE_MASK
4062 is set. */
4063
4064 static unsigned int
4065 insn_reg_mask (const struct mips_cl_insn *insn,
4066 unsigned int type_mask, unsigned int opno_mask)
4067 {
4068 unsigned int opno, reg_mask;
4069
4070 opno = 0;
4071 reg_mask = 0;
4072 while (opno_mask != 0)
4073 {
4074 if (opno_mask & 1)
4075 reg_mask |= operand_reg_mask (insn, insn_opno (insn, opno), type_mask);
4076 opno_mask >>= 1;
4077 opno += 1;
4078 }
4079 return reg_mask;
4080 }
4081
4082 /* Return the mask of core registers that IP reads. */
4083
4084 static unsigned int
4085 gpr_read_mask (const struct mips_cl_insn *ip)
4086 {
4087 unsigned long pinfo, pinfo2;
4088 unsigned int mask;
4089
4090 mask = insn_reg_mask (ip, 1 << OP_REG_GP, insn_read_mask (ip->insn_mo));
4091 pinfo = ip->insn_mo->pinfo;
4092 pinfo2 = ip->insn_mo->pinfo2;
4093 if (pinfo & INSN_UDI)
4094 {
4095 /* UDI instructions have traditionally been assumed to read RS
4096 and RT. */
4097 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RT, *ip);
4098 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RS, *ip);
4099 }
4100 if (pinfo & INSN_READ_GPR_24)
4101 mask |= 1 << 24;
4102 if (pinfo2 & INSN2_READ_GPR_16)
4103 mask |= 1 << 16;
4104 if (pinfo2 & INSN2_READ_SP)
4105 mask |= 1 << SP;
4106 if (pinfo2 & INSN2_READ_GPR_31)
4107 mask |= 1 << 31;
4108 /* Don't include register 0. */
4109 return mask & ~1;
4110 }
4111
4112 /* Return the mask of core registers that IP writes. */
4113
4114 static unsigned int
4115 gpr_write_mask (const struct mips_cl_insn *ip)
4116 {
4117 unsigned long pinfo, pinfo2;
4118 unsigned int mask;
4119
4120 mask = insn_reg_mask (ip, 1 << OP_REG_GP, insn_write_mask (ip->insn_mo));
4121 pinfo = ip->insn_mo->pinfo;
4122 pinfo2 = ip->insn_mo->pinfo2;
4123 if (pinfo & INSN_WRITE_GPR_24)
4124 mask |= 1 << 24;
4125 if (pinfo & INSN_WRITE_GPR_31)
4126 mask |= 1 << 31;
4127 if (pinfo & INSN_UDI)
4128 /* UDI instructions have traditionally been assumed to write to RD. */
4129 mask |= 1 << EXTRACT_OPERAND (mips_opts.micromips, RD, *ip);
4130 if (pinfo2 & INSN2_WRITE_SP)
4131 mask |= 1 << SP;
4132 /* Don't include register 0. */
4133 return mask & ~1;
4134 }
4135
4136 /* Return the mask of floating-point registers that IP reads. */
4137
4138 static unsigned int
4139 fpr_read_mask (const struct mips_cl_insn *ip)
4140 {
4141 unsigned long pinfo;
4142 unsigned int mask;
4143
4144 mask = insn_reg_mask (ip, (1 << OP_REG_FP) | (1 << OP_REG_VEC),
4145 insn_read_mask (ip->insn_mo));
4146 pinfo = ip->insn_mo->pinfo;
4147 /* Conservatively treat all operands to an FP_D instruction are doubles.
4148 (This is overly pessimistic for things like cvt.d.s.) */
4149 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
4150 mask |= mask << 1;
4151 return mask;
4152 }
4153
4154 /* Return the mask of floating-point registers that IP writes. */
4155
4156 static unsigned int
4157 fpr_write_mask (const struct mips_cl_insn *ip)
4158 {
4159 unsigned long pinfo;
4160 unsigned int mask;
4161
4162 mask = insn_reg_mask (ip, (1 << OP_REG_FP) | (1 << OP_REG_VEC),
4163 insn_write_mask (ip->insn_mo));
4164 pinfo = ip->insn_mo->pinfo;
4165 /* Conservatively treat all operands to an FP_D instruction are doubles.
4166 (This is overly pessimistic for things like cvt.s.d.) */
4167 if (HAVE_32BIT_FPRS && (pinfo & FP_D))
4168 mask |= mask << 1;
4169 return mask;
4170 }
4171
4172 /* Operand OPNUM of INSN is an odd-numbered floating-point register.
4173 Check whether that is allowed. */
4174
4175 static bfd_boolean
4176 mips_oddfpreg_ok (const struct mips_opcode *insn, int opnum)
4177 {
4178 const char *s = insn->name;
4179
4180 if (insn->pinfo == INSN_MACRO)
4181 /* Let a macro pass, we'll catch it later when it is expanded. */
4182 return TRUE;
4183
4184 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa) || mips_opts.arch == CPU_R5900)
4185 {
4186 /* Allow odd registers for single-precision ops. */
4187 switch (insn->pinfo & (FP_S | FP_D))
4188 {
4189 case FP_S:
4190 case 0:
4191 return TRUE;
4192 case FP_D:
4193 return FALSE;
4194 default:
4195 break;
4196 }
4197
4198 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
4199 s = strchr (insn->name, '.');
4200 if (s != NULL && opnum == 2)
4201 s = strchr (s + 1, '.');
4202 return (s != NULL && (s[1] == 'w' || s[1] == 's'));
4203 }
4204
4205 /* Single-precision coprocessor loads and moves are OK too. */
4206 if ((insn->pinfo & FP_S)
4207 && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
4208 | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
4209 return TRUE;
4210
4211 return FALSE;
4212 }
4213
4214 /* Report that user-supplied argument ARGNUM for INSN was VAL, but should
4215 have been in the range [MIN_VAL, MAX_VAL]. PRINT_HEX says whether
4216 this operand is normally printed in hex or decimal. */
4217
4218 static void
4219 report_bad_range (struct mips_cl_insn *insn, int argnum,
4220 offsetT val, int min_val, int max_val,
4221 bfd_boolean print_hex)
4222 {
4223 if (print_hex && val >= 0)
4224 as_bad (_("Operand %d of `%s' must be in the range [0x%x, 0x%x],"
4225 " was 0x%lx."),
4226 argnum, insn->insn_mo->name, min_val, max_val, (unsigned long) val);
4227 else if (print_hex)
4228 as_bad (_("Operand %d of `%s' must be in the range [0x%x, 0x%x],"
4229 " was %ld."),
4230 argnum, insn->insn_mo->name, min_val, max_val, (unsigned long) val);
4231 else
4232 as_bad (_("Operand %d of `%s' must be in the range [%d, %d],"
4233 " was %ld."),
4234 argnum, insn->insn_mo->name, min_val, max_val, (unsigned long) val);
4235 }
4236
4237 /* Report an invalid combination of position and size operands for a bitfield
4238 operation. POS and SIZE are the values that were given. */
4239
4240 static void
4241 report_bad_field (offsetT pos, offsetT size)
4242 {
4243 as_bad (_("Invalid field specification (position %ld, size %ld)"),
4244 (unsigned long) pos, (unsigned long) size);
4245 }
4246
4247 /* Information about an instruction argument that we're trying to match. */
4248 struct mips_arg_info
4249 {
4250 /* The instruction so far. */
4251 struct mips_cl_insn *insn;
4252
4253 /* The first unconsumed operand token. */
4254 struct mips_operand_token *token;
4255
4256 /* The 1-based operand number, in terms of insn->insn_mo->args. */
4257 int opnum;
4258
4259 /* The 1-based argument number, for error reporting. This does not
4260 count elided optional registers, etc.. */
4261 int argnum;
4262
4263 /* The last OP_REG operand seen, or ILLEGAL_REG if none. */
4264 unsigned int last_regno;
4265
4266 /* If the first operand was an OP_REG, this is the register that it
4267 specified, otherwise it is ILLEGAL_REG. */
4268 unsigned int dest_regno;
4269
4270 /* The value of the last OP_INT operand. Only used for OP_MSB,
4271 where it gives the lsb position. */
4272 unsigned int last_op_int;
4273
4274 /* If true, match routines should silently reject invalid arguments.
4275 If false, match routines can accept invalid arguments as long as
4276 they report an appropriate error. They still have the option of
4277 silently rejecting arguments, in which case a generic "Invalid operands"
4278 style of error will be used instead. */
4279 bfd_boolean soft_match;
4280
4281 /* If true, the OP_INT match routine should treat plain symbolic operands
4282 as if a relocation operator like %lo(...) had been used. This is only
4283 ever true if the operand can be relocated. */
4284 bfd_boolean allow_nonconst;
4285
4286 /* When true, the OP_INT match routine should allow unsigned N-bit
4287 arguments to be used where a signed N-bit operand is expected. */
4288 bfd_boolean lax_max;
4289
4290 /* True if a reference to the current AT register was seen. */
4291 bfd_boolean seen_at;
4292 };
4293
4294 /* Try to match an OT_CHAR token for character CH. Consume the token
4295 and return true on success, otherwise return false. */
4296
4297 static bfd_boolean
4298 match_char (struct mips_arg_info *arg, char ch)
4299 {
4300 if (arg->token->type == OT_CHAR && arg->token->u.ch == ch)
4301 {
4302 ++arg->token;
4303 if (ch == ',')
4304 arg->argnum += 1;
4305 return TRUE;
4306 }
4307 return FALSE;
4308 }
4309
4310 /* Try to get an expression from the next tokens in ARG. Consume the
4311 tokens and return true on success, storing the expression value in
4312 VALUE and relocation types in R. */
4313
4314 static bfd_boolean
4315 match_expression (struct mips_arg_info *arg, expressionS *value,
4316 bfd_reloc_code_real_type *r)
4317 {
4318 if (arg->token->type == OT_INTEGER)
4319 {
4320 *value = arg->token->u.integer.value;
4321 memcpy (r, arg->token->u.integer.relocs, 3 * sizeof (*r));
4322 ++arg->token;
4323 return TRUE;
4324 }
4325
4326 /* Error-reporting is more consistent if we treat registers as O_register
4327 rather than rejecting them outright. "$1", "($1)" and "(($1))" are
4328 then handled in the same way. */
4329 if (arg->token->type == OT_REG)
4330 {
4331 value->X_add_number = arg->token->u.regno;
4332 ++arg->token;
4333 }
4334 else if (arg->token[0].type == OT_CHAR
4335 && arg->token[0].u.ch == '('
4336 && arg->token[1].type == OT_REG
4337 && arg->token[2].type == OT_CHAR
4338 && arg->token[2].u.ch == ')')
4339 {
4340 value->X_add_number = arg->token[1].u.regno;
4341 arg->token += 3;
4342 }
4343 else
4344 return FALSE;
4345
4346 value->X_op = O_register;
4347 r[0] = r[1] = r[2] = BFD_RELOC_UNUSED;
4348 return TRUE;
4349 }
4350
4351 /* Try to get a constant expression from the next tokens in ARG. Consume
4352 the tokens and return return true on success, storing the constant value
4353 in *VALUE. Use FALLBACK as the value if the match succeeded with an
4354 error. */
4355
4356 static bfd_boolean
4357 match_const_int (struct mips_arg_info *arg, offsetT *value, offsetT fallback)
4358 {
4359 expressionS ex;
4360 bfd_reloc_code_real_type r[3];
4361
4362 if (!match_expression (arg, &ex, r))
4363 return FALSE;
4364
4365 if (r[0] == BFD_RELOC_UNUSED && ex.X_op == O_constant)
4366 *value = ex.X_add_number;
4367 else
4368 {
4369 if (arg->soft_match)
4370 return FALSE;
4371 as_bad (_("Operand %d of `%s' must be constant"),
4372 arg->argnum, arg->insn->insn_mo->name);
4373 *value = fallback;
4374 }
4375 return TRUE;
4376 }
4377
4378 /* Return the RTYPE_* flags for a register operand of type TYPE that
4379 appears in instruction OPCODE. */
4380
4381 static unsigned int
4382 convert_reg_type (const struct mips_opcode *opcode,
4383 enum mips_reg_operand_type type)
4384 {
4385 switch (type)
4386 {
4387 case OP_REG_GP:
4388 return RTYPE_NUM | RTYPE_GP;
4389
4390 case OP_REG_FP:
4391 /* Allow vector register names for MDMX if the instruction is a 64-bit
4392 FPR load, store or move (including moves to and from GPRs). */
4393 if ((mips_opts.ase & ASE_MDMX)
4394 && (opcode->pinfo & FP_D)
4395 && (opcode->pinfo & (INSN_COPROC_MOVE_DELAY
4396 | INSN_COPROC_MEMORY_DELAY
4397 | INSN_LOAD_COPROC_DELAY
4398 | INSN_LOAD_MEMORY_DELAY
4399 | INSN_STORE_MEMORY)))
4400 return RTYPE_FPU | RTYPE_VEC;
4401 return RTYPE_FPU;
4402
4403 case OP_REG_CCC:
4404 if (opcode->pinfo & (FP_D | FP_S))
4405 return RTYPE_CCC | RTYPE_FCC;
4406 return RTYPE_CCC;
4407
4408 case OP_REG_VEC:
4409 if (opcode->membership & INSN_5400)
4410 return RTYPE_FPU;
4411 return RTYPE_FPU | RTYPE_VEC;
4412
4413 case OP_REG_ACC:
4414 return RTYPE_ACC;
4415
4416 case OP_REG_COPRO:
4417 if (opcode->name[strlen (opcode->name) - 1] == '0')
4418 return RTYPE_NUM | RTYPE_CP0;
4419 return RTYPE_NUM;
4420
4421 case OP_REG_HW:
4422 return RTYPE_NUM;
4423
4424 case OP_REG_VI:
4425 return RTYPE_NUM | RTYPE_VI;
4426
4427 case OP_REG_VF:
4428 return RTYPE_NUM | RTYPE_VF;
4429
4430 case OP_REG_R5900_I:
4431 return RTYPE_R5900_I;
4432
4433 case OP_REG_R5900_Q:
4434 return RTYPE_R5900_Q;
4435
4436 case OP_REG_R5900_R:
4437 return RTYPE_R5900_R;
4438
4439 case OP_REG_R5900_ACC:
4440 return RTYPE_R5900_ACC;
4441 }
4442 abort ();
4443 }
4444
4445 /* ARG is register REGNO, of type TYPE. Warn about any dubious registers. */
4446
4447 static void
4448 check_regno (struct mips_arg_info *arg,
4449 enum mips_reg_operand_type type, unsigned int regno)
4450 {
4451 if (AT && type == OP_REG_GP && regno == AT)
4452 arg->seen_at = TRUE;
4453
4454 if (type == OP_REG_FP
4455 && (regno & 1) != 0
4456 && HAVE_32BIT_FPRS
4457 && !mips_oddfpreg_ok (arg->insn->insn_mo, arg->opnum))
4458 as_warn (_("Float register should be even, was %d"), regno);
4459
4460 if (type == OP_REG_CCC)
4461 {
4462 const char *name;
4463 size_t length;
4464
4465 name = arg->insn->insn_mo->name;
4466 length = strlen (name);
4467 if ((regno & 1) != 0
4468 && ((length >= 3 && strcmp (name + length - 3, ".ps") == 0)
4469 || (length >= 5 && strncmp (name + length - 5, "any2", 4) == 0)))
4470 as_warn (_("Condition code register should be even for %s, was %d"),
4471 name, regno);
4472
4473 if ((regno & 3) != 0
4474 && (length >= 5 && strncmp (name + length - 5, "any4", 4) == 0))
4475 as_warn (_("Condition code register should be 0 or 4 for %s, was %d"),
4476 name, regno);
4477 }
4478 }
4479
4480 /* ARG is a register with symbol value SYMVAL. Try to interpret it as
4481 a register of type TYPE. Return true on success, storing the register
4482 number in *REGNO and warning about any dubious uses. */
4483
4484 static bfd_boolean
4485 match_regno (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4486 unsigned int symval, unsigned int *regno)
4487 {
4488 if (type == OP_REG_VEC)
4489 symval = mips_prefer_vec_regno (symval);
4490 if (!(symval & convert_reg_type (arg->insn->insn_mo, type)))
4491 return FALSE;
4492
4493 *regno = symval & RNUM_MASK;
4494 check_regno (arg, type, *regno);
4495 return TRUE;
4496 }
4497
4498 /* Try to interpret the next token in ARG as a register of type TYPE.
4499 Consume the token and return true on success, storing the register
4500 number in *REGNO. Return false on failure. */
4501
4502 static bfd_boolean
4503 match_reg (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4504 unsigned int *regno)
4505 {
4506 if (arg->token->type == OT_REG
4507 && match_regno (arg, type, arg->token->u.regno, regno))
4508 {
4509 ++arg->token;
4510 return TRUE;
4511 }
4512 return FALSE;
4513 }
4514
4515 /* Try to interpret the next token in ARG as a range of registers of type TYPE.
4516 Consume the token and return true on success, storing the register numbers
4517 in *REGNO1 and *REGNO2. Return false on failure. */
4518
4519 static bfd_boolean
4520 match_reg_range (struct mips_arg_info *arg, enum mips_reg_operand_type type,
4521 unsigned int *regno1, unsigned int *regno2)
4522 {
4523 if (match_reg (arg, type, regno1))
4524 {
4525 *regno2 = *regno1;
4526 return TRUE;
4527 }
4528 if (arg->token->type == OT_REG_RANGE
4529 && match_regno (arg, type, arg->token->u.reg_range.regno1, regno1)
4530 && match_regno (arg, type, arg->token->u.reg_range.regno2, regno2)
4531 && *regno1 <= *regno2)
4532 {
4533 ++arg->token;
4534 return TRUE;
4535 }
4536 return FALSE;
4537 }
4538
4539 /* OP_INT matcher. */
4540
4541 static bfd_boolean
4542 match_int_operand (struct mips_arg_info *arg,
4543 const struct mips_operand *operand_base)
4544 {
4545 const struct mips_int_operand *operand;
4546 unsigned int uval;
4547 int min_val, max_val, factor;
4548 offsetT sval;
4549 bfd_boolean print_hex;
4550
4551 operand = (const struct mips_int_operand *) operand_base;
4552 factor = 1 << operand->shift;
4553 min_val = mips_int_operand_min (operand);
4554 max_val = mips_int_operand_max (operand);
4555 if (arg->lax_max)
4556 max_val = ((1 << operand_base->size) - 1) << operand->shift;
4557
4558 if (arg->token->type == OT_CHAR && arg->token->u.ch == '(')
4559 /* Assume we have an elided offset. The later match will fail
4560 if this turns out to be wrong. */
4561 sval = 0;
4562 else if (operand_base->lsb == 0
4563 && operand_base->size == 16
4564 && operand->shift == 0
4565 && operand->bias == 0
4566 && (operand->max_val == 32767 || operand->max_val == 65535))
4567 {
4568 /* The operand can be relocated. */
4569 if (!match_expression (arg, &offset_expr, offset_reloc))
4570 return FALSE;
4571
4572 if (offset_reloc[0] != BFD_RELOC_UNUSED)
4573 /* Relocation operators were used. Accept the arguent and
4574 leave the relocation value in offset_expr and offset_relocs
4575 for the caller to process. */
4576 return TRUE;
4577
4578 if (offset_expr.X_op != O_constant)
4579 {
4580 /* If non-constant operands are allowed then leave them for
4581 the caller to process, otherwise fail the match. */
4582 if (!arg->allow_nonconst)
4583 return FALSE;
4584 offset_reloc[0] = BFD_RELOC_LO16;
4585 return TRUE;
4586 }
4587
4588 /* Clear the global state; we're going to install the operand
4589 ourselves. */
4590 sval = offset_expr.X_add_number;
4591 offset_expr.X_op = O_absent;
4592 }
4593 else
4594 {
4595 if (!match_const_int (arg, &sval, min_val))
4596 return FALSE;
4597 }
4598
4599 arg->last_op_int = sval;
4600
4601 /* Check the range. If there's a problem, record the lowest acceptable
4602 value in arg->last_op_int in order to prevent an unhelpful error
4603 from OP_MSB too.
4604
4605 Bit counts have traditionally been printed in hex by the disassembler
4606 but printed as decimal in error messages. Only resort to hex if
4607 the operand is bigger than 6 bits. */
4608 print_hex = operand->print_hex && operand_base->size > 6;
4609 if (sval < min_val || sval > max_val)
4610 {
4611 if (arg->soft_match)
4612 return FALSE;
4613 report_bad_range (arg->insn, arg->argnum, sval, min_val, max_val,
4614 print_hex);
4615 arg->last_op_int = min_val;
4616 }
4617 else if (sval % factor)
4618 {
4619 if (arg->soft_match)
4620 return FALSE;
4621 as_bad (print_hex && sval >= 0
4622 ? _("Operand %d of `%s' must be a factor of %d, was 0x%lx.")
4623 : _("Operand %d of `%s' must be a factor of %d, was %ld."),
4624 arg->argnum, arg->insn->insn_mo->name, factor,
4625 (unsigned long) sval);
4626 arg->last_op_int = min_val;
4627 }
4628
4629 uval = (unsigned int) sval >> operand->shift;
4630 uval -= operand->bias;
4631
4632 /* Handle -mfix-cn63xxp1. */
4633 if (arg->opnum == 1
4634 && mips_fix_cn63xxp1
4635 && !mips_opts.micromips
4636 && strcmp ("pref", arg->insn->insn_mo->name) == 0)
4637 switch (uval)
4638 {
4639 case 5:
4640 case 25:
4641 case 26:
4642 case 27:
4643 case 28:
4644 case 29:
4645 case 30:
4646 case 31:
4647 /* These are ok. */
4648 break;
4649
4650 default:
4651 /* The rest must be changed to 28. */
4652 uval = 28;
4653 break;
4654 }
4655
4656 insn_insert_operand (arg->insn, operand_base, uval);
4657 return TRUE;
4658 }
4659
4660 /* OP_MAPPED_INT matcher. */
4661
4662 static bfd_boolean
4663 match_mapped_int_operand (struct mips_arg_info *arg,
4664 const struct mips_operand *operand_base)
4665 {
4666 const struct mips_mapped_int_operand *operand;
4667 unsigned int uval, num_vals;
4668 offsetT sval;
4669
4670 operand = (const struct mips_mapped_int_operand *) operand_base;
4671 if (!match_const_int (arg, &sval, operand->int_map[0]))
4672 return FALSE;
4673
4674 num_vals = 1 << operand_base->size;
4675 for (uval = 0; uval < num_vals; uval++)
4676 if (operand->int_map[uval] == sval)
4677 break;
4678 if (uval == num_vals)
4679 return FALSE;
4680
4681 insn_insert_operand (arg->insn, operand_base, uval);
4682 return TRUE;
4683 }
4684
4685 /* OP_MSB matcher. */
4686
4687 static bfd_boolean
4688 match_msb_operand (struct mips_arg_info *arg,
4689 const struct mips_operand *operand_base)
4690 {
4691 const struct mips_msb_operand *operand;
4692 int min_val, max_val, max_high;
4693 offsetT size, sval, high;
4694
4695 operand = (const struct mips_msb_operand *) operand_base;
4696 min_val = operand->bias;
4697 max_val = min_val + (1 << operand_base->size) - 1;
4698 max_high = operand->opsize;
4699
4700 if (!match_const_int (arg, &size, 1))
4701 return FALSE;
4702
4703 high = size + arg->last_op_int;
4704 sval = operand->add_lsb ? high : size;
4705
4706 if (size < 0 || high > max_high || sval < min_val || sval > max_val)
4707 {
4708 if (arg->soft_match)
4709 return FALSE;
4710 report_bad_field (arg->last_op_int, size);
4711 sval = min_val;
4712 }
4713 insn_insert_operand (arg->insn, operand_base, sval - min_val);
4714 return TRUE;
4715 }
4716
4717 /* OP_REG matcher. */
4718
4719 static bfd_boolean
4720 match_reg_operand (struct mips_arg_info *arg,
4721 const struct mips_operand *operand_base)
4722 {
4723 const struct mips_reg_operand *operand;
4724 unsigned int regno, uval, num_vals;
4725
4726 operand = (const struct mips_reg_operand *) operand_base;
4727 if (!match_reg (arg, operand->reg_type, &regno))
4728 return FALSE;
4729
4730 if (operand->reg_map)
4731 {
4732 num_vals = 1 << operand->root.size;
4733 for (uval = 0; uval < num_vals; uval++)
4734 if (operand->reg_map[uval] == regno)
4735 break;
4736 if (num_vals == uval)
4737 return FALSE;
4738 }
4739 else
4740 uval = regno;
4741
4742 arg->last_regno = regno;
4743 if (arg->opnum == 1)
4744 arg->dest_regno = regno;
4745 insn_insert_operand (arg->insn, operand_base, uval);
4746 return TRUE;
4747 }
4748
4749 /* OP_REG_PAIR matcher. */
4750
4751 static bfd_boolean
4752 match_reg_pair_operand (struct mips_arg_info *arg,
4753 const struct mips_operand *operand_base)
4754 {
4755 const struct mips_reg_pair_operand *operand;
4756 unsigned int regno1, regno2, uval, num_vals;
4757
4758 operand = (const struct mips_reg_pair_operand *) operand_base;
4759 if (!match_reg (arg, operand->reg_type, &regno1)
4760 || !match_char (arg, ',')
4761 || !match_reg (arg, operand->reg_type, &regno2))
4762 return FALSE;
4763
4764 num_vals = 1 << operand_base->size;
4765 for (uval = 0; uval < num_vals; uval++)
4766 if (operand->reg1_map[uval] == regno1 && operand->reg2_map[uval] == regno2)
4767 break;
4768 if (uval == num_vals)
4769 return FALSE;
4770
4771 insn_insert_operand (arg->insn, operand_base, uval);
4772 return TRUE;
4773 }
4774
4775 /* OP_PCREL matcher. The caller chooses the relocation type. */
4776
4777 static bfd_boolean
4778 match_pcrel_operand (struct mips_arg_info *arg)
4779 {
4780 bfd_reloc_code_real_type r[3];
4781
4782 return match_expression (arg, &offset_expr, r) && r[0] == BFD_RELOC_UNUSED;
4783 }
4784
4785 /* OP_PERF_REG matcher. */
4786
4787 static bfd_boolean
4788 match_perf_reg_operand (struct mips_arg_info *arg,
4789 const struct mips_operand *operand)
4790 {
4791 offsetT sval;
4792
4793 if (!match_const_int (arg, &sval, 0))
4794 return FALSE;
4795
4796 if (sval != 0
4797 && (sval != 1
4798 || (mips_opts.arch == CPU_R5900
4799 && (strcmp (arg->insn->insn_mo->name, "mfps") == 0
4800 || strcmp (arg->insn->insn_mo->name, "mtps") == 0))))
4801 {
4802 if (arg->soft_match)
4803 return FALSE;
4804 as_bad (_("Invalid performance register (%ld)"), (unsigned long) sval);
4805 }
4806
4807 insn_insert_operand (arg->insn, operand, sval);
4808 return TRUE;
4809 }
4810
4811 /* OP_ADDIUSP matcher. */
4812
4813 static bfd_boolean
4814 match_addiusp_operand (struct mips_arg_info *arg,
4815 const struct mips_operand *operand)
4816 {
4817 offsetT sval;
4818 unsigned int uval;
4819
4820 if (!match_const_int (arg, &sval, -256))
4821 return FALSE;
4822
4823 if (sval % 4)
4824 return FALSE;
4825
4826 sval /= 4;
4827 if (!(sval >= -258 && sval <= 257) || (sval >= -2 && sval <= 1))
4828 return FALSE;
4829
4830 uval = (unsigned int) sval;
4831 uval = ((uval >> 1) & ~0xff) | (uval & 0xff);
4832 insn_insert_operand (arg->insn, operand, uval);
4833 return TRUE;
4834 }
4835
4836 /* OP_CLO_CLZ_DEST matcher. */
4837
4838 static bfd_boolean
4839 match_clo_clz_dest_operand (struct mips_arg_info *arg,
4840 const struct mips_operand *operand)
4841 {
4842 unsigned int regno;
4843
4844 if (!match_reg (arg, OP_REG_GP, &regno))
4845 return FALSE;
4846
4847 insn_insert_operand (arg->insn, operand, regno | (regno << 5));
4848 return TRUE;
4849 }
4850
4851 /* OP_LWM_SWM_LIST matcher. */
4852
4853 static bfd_boolean
4854 match_lwm_swm_list_operand (struct mips_arg_info *arg,
4855 const struct mips_operand *operand)
4856 {
4857 unsigned int reglist, sregs, ra, regno1, regno2;
4858 struct mips_arg_info reset;
4859
4860 reglist = 0;
4861 if (!match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
4862 return FALSE;
4863 do
4864 {
4865 if (regno2 == FP && regno1 >= S0 && regno1 <= S7)
4866 {
4867 reglist |= 1 << FP;
4868 regno2 = S7;
4869 }
4870 reglist |= ((1U << regno2 << 1) - 1) & -(1U << regno1);
4871 reset = *arg;
4872 }
4873 while (match_char (arg, ',')
4874 && match_reg_range (arg, OP_REG_GP, &regno1, &regno2));
4875 *arg = reset;
4876
4877 if (operand->size == 2)
4878 {
4879 /* The list must include both ra and s0-sN, for 0 <= N <= 3. E.g.:
4880
4881 s0, ra
4882 s0, s1, ra, s2, s3
4883 s0-s2, ra
4884
4885 and any permutations of these. */
4886 if ((reglist & 0xfff1ffff) != 0x80010000)
4887 return FALSE;
4888
4889 sregs = (reglist >> 17) & 7;
4890 ra = 0;
4891 }
4892 else
4893 {
4894 /* The list must include at least one of ra and s0-sN,
4895 for 0 <= N <= 8. (Note that there is a gap between s7 and s8,
4896 which are $23 and $30 respectively.) E.g.:
4897
4898 ra
4899 s0
4900 ra, s0, s1, s2
4901 s0-s8
4902 s0-s5, ra
4903
4904 and any permutations of these. */
4905 if ((reglist & 0x3f00ffff) != 0)
4906 return FALSE;
4907
4908 ra = (reglist >> 27) & 0x10;
4909 sregs = ((reglist >> 22) & 0x100) | ((reglist >> 16) & 0xff);
4910 }
4911 sregs += 1;
4912 if ((sregs & -sregs) != sregs)
4913 return FALSE;
4914
4915 insn_insert_operand (arg->insn, operand, (ffs (sregs) - 1) | ra);
4916 return TRUE;
4917 }
4918
4919 /* OP_ENTRY_EXIT_LIST matcher. */
4920
4921 static unsigned int
4922 match_entry_exit_operand (struct mips_arg_info *arg,
4923 const struct mips_operand *operand)
4924 {
4925 unsigned int mask;
4926 bfd_boolean is_exit;
4927
4928 /* The format is the same for both ENTRY and EXIT, but the constraints
4929 are different. */
4930 is_exit = strcmp (arg->insn->insn_mo->name, "exit") == 0;
4931 mask = (is_exit ? 7 << 3 : 0);
4932 do
4933 {
4934 unsigned int regno1, regno2;
4935 bfd_boolean is_freg;
4936
4937 if (match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
4938 is_freg = FALSE;
4939 else if (match_reg_range (arg, OP_REG_FP, &regno1, &regno2))
4940 is_freg = TRUE;
4941 else
4942 return FALSE;
4943
4944 if (is_exit && is_freg && regno1 == 0 && regno2 < 2)
4945 {
4946 mask &= ~(7 << 3);
4947 mask |= (5 + regno2) << 3;
4948 }
4949 else if (!is_exit && regno1 == 4 && regno2 >= 4 && regno2 <= 7)
4950 mask |= (regno2 - 3) << 3;
4951 else if (regno1 == 16 && regno2 >= 16 && regno2 <= 17)
4952 mask |= (regno2 - 15) << 1;
4953 else if (regno1 == RA && regno2 == RA)
4954 mask |= 1;
4955 else
4956 return FALSE;
4957 }
4958 while (match_char (arg, ','));
4959
4960 insn_insert_operand (arg->insn, operand, mask);
4961 return TRUE;
4962 }
4963
4964 /* OP_SAVE_RESTORE_LIST matcher. */
4965
4966 static bfd_boolean
4967 match_save_restore_list_operand (struct mips_arg_info *arg)
4968 {
4969 unsigned int opcode, args, statics, sregs;
4970 unsigned int num_frame_sizes, num_args, num_statics, num_sregs;
4971 offsetT frame_size;
4972 const char *error;
4973
4974 error = 0;
4975 opcode = arg->insn->insn_opcode;
4976 frame_size = 0;
4977 num_frame_sizes = 0;
4978 args = 0;
4979 statics = 0;
4980 sregs = 0;
4981 do
4982 {
4983 unsigned int regno1, regno2;
4984
4985 if (arg->token->type == OT_INTEGER)
4986 {
4987 /* Handle the frame size. */
4988 if (!match_const_int (arg, &frame_size, 0))
4989 return FALSE;
4990 num_frame_sizes += 1;
4991 }
4992 else
4993 {
4994 if (!match_reg_range (arg, OP_REG_GP, &regno1, &regno2))
4995 return FALSE;
4996
4997 while (regno1 <= regno2)
4998 {
4999 if (regno1 >= 4 && regno1 <= 7)
5000 {
5001 if (num_frame_sizes == 0)
5002 /* args $a0-$a3 */
5003 args |= 1 << (regno1 - 4);
5004 else
5005 /* statics $a0-$a3 */
5006 statics |= 1 << (regno1 - 4);
5007 }
5008 else if (regno1 >= 16 && regno1 <= 23)
5009 /* $s0-$s7 */
5010 sregs |= 1 << (regno1 - 16);
5011 else if (regno1 == 30)
5012 /* $s8 */
5013 sregs |= 1 << 8;
5014 else if (regno1 == 31)
5015 /* Add $ra to insn. */
5016 opcode |= 0x40;
5017 else
5018 return FALSE;
5019 regno1 += 1;
5020 if (regno1 == 24)
5021 regno1 = 30;
5022 }
5023 }
5024 }
5025 while (match_char (arg, ','));
5026
5027 /* Encode args/statics combination. */
5028 if (args & statics)
5029 return FALSE;
5030 else if (args == 0xf)
5031 /* All $a0-$a3 are args. */
5032 opcode |= MIPS16_ALL_ARGS << 16;
5033 else if (statics == 0xf)
5034 /* All $a0-$a3 are statics. */
5035 opcode |= MIPS16_ALL_STATICS << 16;
5036 else
5037 {
5038 /* Count arg registers. */
5039 num_args = 0;
5040 while (args & 0x1)
5041 {
5042 args >>= 1;
5043 num_args += 1;
5044 }
5045 if (args != 0)
5046 return FALSE;
5047
5048 /* Count static registers. */
5049 num_statics = 0;
5050 while (statics & 0x8)
5051 {
5052 statics = (statics << 1) & 0xf;
5053 num_statics += 1;
5054 }
5055 if (statics != 0)
5056 return FALSE;
5057
5058 /* Encode args/statics. */
5059 opcode |= ((num_args << 2) | num_statics) << 16;
5060 }
5061
5062 /* Encode $s0/$s1. */
5063 if (sregs & (1 << 0)) /* $s0 */
5064 opcode |= 0x20;
5065 if (sregs & (1 << 1)) /* $s1 */
5066 opcode |= 0x10;
5067 sregs >>= 2;
5068
5069 /* Encode $s2-$s8. */
5070 num_sregs = 0;
5071 while (sregs & 1)
5072 {
5073 sregs >>= 1;
5074 num_sregs += 1;
5075 }
5076 if (sregs != 0)
5077 return FALSE;
5078 opcode |= num_sregs << 24;
5079
5080 /* Encode frame size. */
5081 if (num_frame_sizes == 0)
5082 error = _("Missing frame size");
5083 else if (num_frame_sizes > 1)
5084 error = _("Frame size specified twice");
5085 else if ((frame_size & 7) != 0 || frame_size < 0 || frame_size > 0xff * 8)
5086 error = _("Invalid frame size");
5087 else if (frame_size != 128 || (opcode >> 16) != 0)
5088 {
5089 frame_size /= 8;
5090 opcode |= (((frame_size & 0xf0) << 16)
5091 | (frame_size & 0x0f));
5092 }
5093
5094 if (error)
5095 {
5096 if (arg->soft_match)
5097 return FALSE;
5098 as_bad ("%s", error);
5099 }
5100
5101 /* Finally build the instruction. */
5102 if ((opcode >> 16) != 0 || frame_size == 0)
5103 opcode |= MIPS16_EXTEND;
5104 arg->insn->insn_opcode = opcode;
5105 return TRUE;
5106 }
5107
5108 /* OP_MDMX_IMM_REG matcher. */
5109
5110 static bfd_boolean
5111 match_mdmx_imm_reg_operand (struct mips_arg_info *arg,
5112 const struct mips_operand *operand)
5113 {
5114 unsigned int regno, uval;
5115 bfd_boolean is_qh;
5116 const struct mips_opcode *opcode;
5117
5118 /* The mips_opcode records whether this is an octobyte or quadhalf
5119 instruction. Start out with that bit in place. */
5120 opcode = arg->insn->insn_mo;
5121 uval = mips_extract_operand (operand, opcode->match);
5122 is_qh = (uval != 0);
5123
5124 if (arg->token->type == OT_REG || arg->token->type == OT_REG_ELEMENT)
5125 {
5126 if ((opcode->membership & INSN_5400)
5127 && strcmp (opcode->name, "rzu.ob") == 0)
5128 {
5129 if (arg->soft_match)
5130 return FALSE;
5131 as_bad (_("Operand %d of `%s' must be an immediate"),
5132 arg->argnum, opcode->name);
5133 }
5134
5135 /* Check whether this is a vector register or a broadcast of
5136 a single element. */
5137 if (arg->token->type == OT_REG_ELEMENT)
5138 {
5139 if (!match_regno (arg, OP_REG_VEC, arg->token->u.reg_element.regno,
5140 &regno))
5141 return FALSE;
5142 if (arg->token->u.reg_element.index > (is_qh ? 3 : 7))
5143 {
5144 if (arg->soft_match)
5145 return FALSE;
5146 as_bad (_("Invalid element selector"));
5147 }
5148 else
5149 uval |= arg->token->u.reg_element.index << (is_qh ? 2 : 1) << 5;
5150 }
5151 else
5152 {
5153 /* A full vector. */
5154 if ((opcode->membership & INSN_5400)
5155 && (strcmp (opcode->name, "sll.ob") == 0
5156 || strcmp (opcode->name, "srl.ob") == 0))
5157 {
5158 if (arg->soft_match)
5159 return FALSE;
5160 as_bad (_("Operand %d of `%s' must be scalar"),
5161 arg->argnum, opcode->name);
5162 }
5163
5164 if (!match_regno (arg, OP_REG_VEC, arg->token->u.regno, &regno))
5165 return FALSE;
5166 if (is_qh)
5167 uval |= MDMX_FMTSEL_VEC_QH << 5;
5168 else
5169 uval |= MDMX_FMTSEL_VEC_OB << 5;
5170 }
5171 uval |= regno;
5172 ++arg->token;
5173 }
5174 else
5175 {
5176 offsetT sval;
5177
5178 if (!match_const_int (arg, &sval, 0))
5179 return FALSE;
5180 if (sval < 0 || sval > 31)
5181 {
5182 if (arg->soft_match)
5183 return FALSE;
5184 report_bad_range (arg->insn, arg->argnum, sval, 0, 31, FALSE);
5185 }
5186 uval |= (sval & 31);
5187 if (is_qh)
5188 uval |= MDMX_FMTSEL_IMM_QH << 5;
5189 else
5190 uval |= MDMX_FMTSEL_IMM_OB << 5;
5191 }
5192 insn_insert_operand (arg->insn, operand, uval);
5193 return TRUE;
5194 }
5195
5196 /* OP_PC matcher. */
5197
5198 static bfd_boolean
5199 match_pc_operand (struct mips_arg_info *arg)
5200 {
5201 if (arg->token->type == OT_REG && (arg->token->u.regno & RTYPE_PC))
5202 {
5203 ++arg->token;
5204 return TRUE;
5205 }
5206 return FALSE;
5207 }
5208
5209 /* OP_REPEAT_DEST_REG and OP_REPEAT_PREV_REG matcher. OTHER_REGNO is the
5210 register that we need to match. */
5211
5212 static bfd_boolean
5213 match_tied_reg_operand (struct mips_arg_info *arg, unsigned int other_regno)
5214 {
5215 unsigned int regno;
5216
5217 return match_reg (arg, OP_REG_GP, &regno) && regno == other_regno;
5218 }
5219
5220 /* Read a floating-point constant from S for LI.S or LI.D. LENGTH is
5221 the length of the value in bytes (4 for float, 8 for double) and
5222 USING_GPRS says whether the destination is a GPR rather than an FPR.
5223
5224 Return the constant in IMM and OFFSET as follows:
5225
5226 - If the constant should be loaded via memory, set IMM to O_absent and
5227 OFFSET to the memory address.
5228
5229 - Otherwise, if the constant should be loaded into two 32-bit registers,
5230 set IMM to the O_constant to load into the high register and OFFSET
5231 to the corresponding value for the low register.
5232
5233 - Otherwise, set IMM to the full O_constant and set OFFSET to O_absent.
5234
5235 These constants only appear as the last operand in an instruction,
5236 and every instruction that accepts them in any variant accepts them
5237 in all variants. This means we don't have to worry about backing out
5238 any changes if the instruction does not match. We just match
5239 unconditionally and report an error if the constant is invalid. */
5240
5241 static bfd_boolean
5242 match_float_constant (struct mips_arg_info *arg, expressionS *imm,
5243 expressionS *offset, int length, bfd_boolean using_gprs)
5244 {
5245 char *p;
5246 segT seg, new_seg;
5247 subsegT subseg;
5248 const char *newname;
5249 unsigned char *data;
5250
5251 /* Where the constant is placed is based on how the MIPS assembler
5252 does things:
5253
5254 length == 4 && using_gprs -- immediate value only
5255 length == 8 && using_gprs -- .rdata or immediate value
5256 length == 4 && !using_gprs -- .lit4 or immediate value
5257 length == 8 && !using_gprs -- .lit8 or immediate value
5258
5259 The .lit4 and .lit8 sections are only used if permitted by the
5260 -G argument. */
5261 if (arg->token->type != OT_FLOAT)
5262 return FALSE;
5263
5264 gas_assert (arg->token->u.flt.length == length);
5265 data = arg->token->u.flt.data;
5266 ++arg->token;
5267
5268 /* Handle 32-bit constants for which an immediate value is best. */
5269 if (length == 4
5270 && (using_gprs
5271 || g_switch_value < 4
5272 || (data[0] == 0 && data[1] == 0)
5273 || (data[2] == 0 && data[3] == 0)))
5274 {
5275 imm->X_op = O_constant;
5276 if (!target_big_endian)
5277 imm->X_add_number = bfd_getl32 (data);
5278 else
5279 imm->X_add_number = bfd_getb32 (data);
5280 offset->X_op = O_absent;
5281 return TRUE;
5282 }
5283
5284 /* Handle 64-bit constants for which an immediate value is best. */
5285 if (length == 8
5286 && !mips_disable_float_construction
5287 /* Constants can only be constructed in GPRs and copied
5288 to FPRs if the GPRs are at least as wide as the FPRs.
5289 Force the constant into memory if we are using 64-bit FPRs
5290 but the GPRs are only 32 bits wide. */
5291 /* ??? No longer true with the addition of MTHC1, but this
5292 is legacy code... */
5293 && (using_gprs || !(HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
5294 && ((data[0] == 0 && data[1] == 0)
5295 || (data[2] == 0 && data[3] == 0))
5296 && ((data[4] == 0 && data[5] == 0)
5297 || (data[6] == 0 && data[7] == 0)))
5298 {
5299 /* The value is simple enough to load with a couple of instructions.
5300 If using 32-bit registers, set IMM to the high order 32 bits and
5301 OFFSET to the low order 32 bits. Otherwise, set IMM to the entire
5302 64 bit constant. */
5303 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
5304 {
5305 imm->X_op = O_constant;
5306 offset->X_op = O_constant;
5307 if (!target_big_endian)
5308 {
5309 imm->X_add_number = bfd_getl32 (data + 4);
5310 offset->X_add_number = bfd_getl32 (data);
5311 }
5312 else
5313 {
5314 imm->X_add_number = bfd_getb32 (data);
5315 offset->X_add_number = bfd_getb32 (data + 4);
5316 }
5317 if (offset->X_add_number == 0)
5318 offset->X_op = O_absent;
5319 }
5320 else
5321 {
5322 imm->X_op = O_constant;
5323 if (!target_big_endian)
5324 imm->X_add_number = bfd_getl64 (data);
5325 else
5326 imm->X_add_number = bfd_getb64 (data);
5327 offset->X_op = O_absent;
5328 }
5329 return TRUE;
5330 }
5331
5332 /* Switch to the right section. */
5333 seg = now_seg;
5334 subseg = now_subseg;
5335 if (length == 4)
5336 {
5337 gas_assert (!using_gprs && g_switch_value >= 4);
5338 newname = ".lit4";
5339 }
5340 else
5341 {
5342 if (using_gprs || g_switch_value < 8)
5343 newname = RDATA_SECTION_NAME;
5344 else
5345 newname = ".lit8";
5346 }
5347
5348 new_seg = subseg_new (newname, (subsegT) 0);
5349 bfd_set_section_flags (stdoutput, new_seg,
5350 SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA);
5351 frag_align (length == 4 ? 2 : 3, 0, 0);
5352 if (strncmp (TARGET_OS, "elf", 3) != 0)
5353 record_alignment (new_seg, 4);
5354 else
5355 record_alignment (new_seg, length == 4 ? 2 : 3);
5356 if (seg == now_seg)
5357 as_bad (_("Can't use floating point insn in this section"));
5358
5359 /* Set the argument to the current address in the section. */
5360 imm->X_op = O_absent;
5361 offset->X_op = O_symbol;
5362 offset->X_add_symbol = symbol_temp_new_now ();
5363 offset->X_add_number = 0;
5364
5365 /* Put the floating point number into the section. */
5366 p = frag_more (length);
5367 memcpy (p, data, length);
5368
5369 /* Switch back to the original section. */
5370 subseg_set (seg, subseg);
5371 return TRUE;
5372 }
5373
5374 /* OP_VU0_SUFFIX and OP_VU0_MATCH_SUFFIX matcher; MATCH_P selects between
5375 them. */
5376
5377 static bfd_boolean
5378 match_vu0_suffix_operand (struct mips_arg_info *arg,
5379 const struct mips_operand *operand,
5380 bfd_boolean match_p)
5381 {
5382 unsigned int uval;
5383
5384 /* The operand can be an XYZW mask or a single 2-bit channel index
5385 (with X being 0). */
5386 gas_assert (operand->size == 2 || operand->size == 4);
5387
5388 /* The suffix can be omitted when it is already part of the opcode. */
5389 if (arg->token->type != OT_CHANNELS)
5390 return match_p;
5391
5392 uval = arg->token->u.channels;
5393 if (operand->size == 2)
5394 {
5395 /* Check that a single bit is set and convert it into a 2-bit index. */
5396 if ((uval & -uval) != uval)
5397 return FALSE;
5398 uval = 4 - ffs (uval);
5399 }
5400
5401 if (match_p && insn_extract_operand (arg->insn, operand) != uval)
5402 return FALSE;
5403
5404 ++arg->token;
5405 if (!match_p)
5406 insn_insert_operand (arg->insn, operand, uval);
5407 return TRUE;
5408 }
5409
5410 /* S is the text seen for ARG. Match it against OPERAND. Return the end
5411 of the argument text if the match is successful, otherwise return null. */
5412
5413 static bfd_boolean
5414 match_operand (struct mips_arg_info *arg,
5415 const struct mips_operand *operand)
5416 {
5417 switch (operand->type)
5418 {
5419 case OP_INT:
5420 return match_int_operand (arg, operand);
5421
5422 case OP_MAPPED_INT:
5423 return match_mapped_int_operand (arg, operand);
5424
5425 case OP_MSB:
5426 return match_msb_operand (arg, operand);
5427
5428 case OP_REG:
5429 case OP_OPTIONAL_REG:
5430 return match_reg_operand (arg, operand);
5431
5432 case OP_REG_PAIR:
5433 return match_reg_pair_operand (arg, operand);
5434
5435 case OP_PCREL:
5436 return match_pcrel_operand (arg);
5437
5438 case OP_PERF_REG:
5439 return match_perf_reg_operand (arg, operand);
5440
5441 case OP_ADDIUSP_INT:
5442 return match_addiusp_operand (arg, operand);
5443
5444 case OP_CLO_CLZ_DEST:
5445 return match_clo_clz_dest_operand (arg, operand);
5446
5447 case OP_LWM_SWM_LIST:
5448 return match_lwm_swm_list_operand (arg, operand);
5449
5450 case OP_ENTRY_EXIT_LIST:
5451 return match_entry_exit_operand (arg, operand);
5452
5453 case OP_SAVE_RESTORE_LIST:
5454 return match_save_restore_list_operand (arg);
5455
5456 case OP_MDMX_IMM_REG:
5457 return match_mdmx_imm_reg_operand (arg, operand);
5458
5459 case OP_REPEAT_DEST_REG:
5460 return match_tied_reg_operand (arg, arg->dest_regno);
5461
5462 case OP_REPEAT_PREV_REG:
5463 return match_tied_reg_operand (arg, arg->last_regno);
5464
5465 case OP_PC:
5466 return match_pc_operand (arg);
5467
5468 case OP_VU0_SUFFIX:
5469 return match_vu0_suffix_operand (arg, operand, FALSE);
5470
5471 case OP_VU0_MATCH_SUFFIX:
5472 return match_vu0_suffix_operand (arg, operand, TRUE);
5473 }
5474 abort ();
5475 }
5476
5477 /* ARG is the state after successfully matching an instruction.
5478 Issue any queued-up warnings. */
5479
5480 static void
5481 check_completed_insn (struct mips_arg_info *arg)
5482 {
5483 if (arg->seen_at)
5484 {
5485 if (AT == ATREG)
5486 as_warn (_("Used $at without \".set noat\""));
5487 else
5488 as_warn (_("Used $%u with \".set at=$%u\""), AT, AT);
5489 }
5490 }
5491
5492 /* Return true if modifying general-purpose register REG needs a delay. */
5493
5494 static bfd_boolean
5495 reg_needs_delay (unsigned int reg)
5496 {
5497 unsigned long prev_pinfo;
5498
5499 prev_pinfo = history[0].insn_mo->pinfo;
5500 if (!mips_opts.noreorder
5501 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY) && !gpr_interlocks)
5502 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY) && !cop_interlocks))
5503 && (gpr_write_mask (&history[0]) & (1 << reg)))
5504 return TRUE;
5505
5506 return FALSE;
5507 }
5508
5509 /* Classify an instruction according to the FIX_VR4120_* enumeration.
5510 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
5511 by VR4120 errata. */
5512
5513 static unsigned int
5514 classify_vr4120_insn (const char *name)
5515 {
5516 if (strncmp (name, "macc", 4) == 0)
5517 return FIX_VR4120_MACC;
5518 if (strncmp (name, "dmacc", 5) == 0)
5519 return FIX_VR4120_DMACC;
5520 if (strncmp (name, "mult", 4) == 0)
5521 return FIX_VR4120_MULT;
5522 if (strncmp (name, "dmult", 5) == 0)
5523 return FIX_VR4120_DMULT;
5524 if (strstr (name, "div"))
5525 return FIX_VR4120_DIV;
5526 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
5527 return FIX_VR4120_MTHILO;
5528 return NUM_FIX_VR4120_CLASSES;
5529 }
5530
5531 #define INSN_ERET 0x42000018
5532 #define INSN_DERET 0x4200001f
5533
5534 /* Return the number of instructions that must separate INSN1 and INSN2,
5535 where INSN1 is the earlier instruction. Return the worst-case value
5536 for any INSN2 if INSN2 is null. */
5537
5538 static unsigned int
5539 insns_between (const struct mips_cl_insn *insn1,
5540 const struct mips_cl_insn *insn2)
5541 {
5542 unsigned long pinfo1, pinfo2;
5543 unsigned int mask;
5544
5545 /* If INFO2 is null, pessimistically assume that all flags are set for
5546 the second instruction. */
5547 pinfo1 = insn1->insn_mo->pinfo;
5548 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
5549
5550 /* For most targets, write-after-read dependencies on the HI and LO
5551 registers must be separated by at least two instructions. */
5552 if (!hilo_interlocks)
5553 {
5554 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
5555 return 2;
5556 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
5557 return 2;
5558 }
5559
5560 /* If we're working around r7000 errata, there must be two instructions
5561 between an mfhi or mflo and any instruction that uses the result. */
5562 if (mips_7000_hilo_fix
5563 && !mips_opts.micromips
5564 && MF_HILO_INSN (pinfo1)
5565 && (insn2 == NULL || (gpr_read_mask (insn2) & gpr_write_mask (insn1))))
5566 return 2;
5567
5568 /* If we're working around 24K errata, one instruction is required
5569 if an ERET or DERET is followed by a branch instruction. */
5570 if (mips_fix_24k && !mips_opts.micromips)
5571 {
5572 if (insn1->insn_opcode == INSN_ERET
5573 || insn1->insn_opcode == INSN_DERET)
5574 {
5575 if (insn2 == NULL
5576 || insn2->insn_opcode == INSN_ERET
5577 || insn2->insn_opcode == INSN_DERET
5578 || delayed_branch_p (insn2))
5579 return 1;
5580 }
5581 }
5582
5583 /* If working around VR4120 errata, check for combinations that need
5584 a single intervening instruction. */
5585 if (mips_fix_vr4120 && !mips_opts.micromips)
5586 {
5587 unsigned int class1, class2;
5588
5589 class1 = classify_vr4120_insn (insn1->insn_mo->name);
5590 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
5591 {
5592 if (insn2 == NULL)
5593 return 1;
5594 class2 = classify_vr4120_insn (insn2->insn_mo->name);
5595 if (vr4120_conflicts[class1] & (1 << class2))
5596 return 1;
5597 }
5598 }
5599
5600 if (!HAVE_CODE_COMPRESSION)
5601 {
5602 /* Check for GPR or coprocessor load delays. All such delays
5603 are on the RT register. */
5604 /* Itbl support may require additional care here. */
5605 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
5606 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
5607 {
5608 if (insn2 == NULL || (gpr_read_mask (insn2) & gpr_write_mask (insn1)))
5609 return 1;
5610 }
5611
5612 /* Check for generic coprocessor hazards.
5613
5614 This case is not handled very well. There is no special
5615 knowledge of CP0 handling, and the coprocessors other than
5616 the floating point unit are not distinguished at all. */
5617 /* Itbl support may require additional care here. FIXME!
5618 Need to modify this to include knowledge about
5619 user specified delays! */
5620 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
5621 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
5622 {
5623 /* Handle cases where INSN1 writes to a known general coprocessor
5624 register. There must be a one instruction delay before INSN2
5625 if INSN2 reads that register, otherwise no delay is needed. */
5626 mask = fpr_write_mask (insn1);
5627 if (mask != 0)
5628 {
5629 if (!insn2 || (mask & fpr_read_mask (insn2)) != 0)
5630 return 1;
5631 }
5632 else
5633 {
5634 /* Read-after-write dependencies on the control registers
5635 require a two-instruction gap. */
5636 if ((pinfo1 & INSN_WRITE_COND_CODE)
5637 && (pinfo2 & INSN_READ_COND_CODE))
5638 return 2;
5639
5640 /* We don't know exactly what INSN1 does. If INSN2 is
5641 also a coprocessor instruction, assume there must be
5642 a one instruction gap. */
5643 if (pinfo2 & INSN_COP)
5644 return 1;
5645 }
5646 }
5647
5648 /* Check for read-after-write dependencies on the coprocessor
5649 control registers in cases where INSN1 does not need a general
5650 coprocessor delay. This means that INSN1 is a floating point
5651 comparison instruction. */
5652 /* Itbl support may require additional care here. */
5653 else if (!cop_interlocks
5654 && (pinfo1 & INSN_WRITE_COND_CODE)
5655 && (pinfo2 & INSN_READ_COND_CODE))
5656 return 1;
5657 }
5658
5659 return 0;
5660 }
5661
5662 /* Return the number of nops that would be needed to work around the
5663 VR4130 mflo/mfhi errata if instruction INSN immediately followed
5664 the MAX_VR4130_NOPS instructions described by HIST. Ignore hazards
5665 that are contained within the first IGNORE instructions of HIST. */
5666
5667 static int
5668 nops_for_vr4130 (int ignore, const struct mips_cl_insn *hist,
5669 const struct mips_cl_insn *insn)
5670 {
5671 int i, j;
5672 unsigned int mask;
5673
5674 /* Check if the instruction writes to HI or LO. MTHI and MTLO
5675 are not affected by the errata. */
5676 if (insn != 0
5677 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
5678 || strcmp (insn->insn_mo->name, "mtlo") == 0
5679 || strcmp (insn->insn_mo->name, "mthi") == 0))
5680 return 0;
5681
5682 /* Search for the first MFLO or MFHI. */
5683 for (i = 0; i < MAX_VR4130_NOPS; i++)
5684 if (MF_HILO_INSN (hist[i].insn_mo->pinfo))
5685 {
5686 /* Extract the destination register. */
5687 mask = gpr_write_mask (&hist[i]);
5688
5689 /* No nops are needed if INSN reads that register. */
5690 if (insn != NULL && (gpr_read_mask (insn) & mask) != 0)
5691 return 0;
5692
5693 /* ...or if any of the intervening instructions do. */
5694 for (j = 0; j < i; j++)
5695 if (gpr_read_mask (&hist[j]) & mask)
5696 return 0;
5697
5698 if (i >= ignore)
5699 return MAX_VR4130_NOPS - i;
5700 }
5701 return 0;
5702 }
5703
5704 #define BASE_REG_EQ(INSN1, INSN2) \
5705 ((((INSN1) >> OP_SH_RS) & OP_MASK_RS) \
5706 == (((INSN2) >> OP_SH_RS) & OP_MASK_RS))
5707
5708 /* Return the minimum alignment for this store instruction. */
5709
5710 static int
5711 fix_24k_align_to (const struct mips_opcode *mo)
5712 {
5713 if (strcmp (mo->name, "sh") == 0)
5714 return 2;
5715
5716 if (strcmp (mo->name, "swc1") == 0
5717 || strcmp (mo->name, "swc2") == 0
5718 || strcmp (mo->name, "sw") == 0
5719 || strcmp (mo->name, "sc") == 0
5720 || strcmp (mo->name, "s.s") == 0)
5721 return 4;
5722
5723 if (strcmp (mo->name, "sdc1") == 0
5724 || strcmp (mo->name, "sdc2") == 0
5725 || strcmp (mo->name, "s.d") == 0)
5726 return 8;
5727
5728 /* sb, swl, swr */
5729 return 1;
5730 }
5731
5732 struct fix_24k_store_info
5733 {
5734 /* Immediate offset, if any, for this store instruction. */
5735 short off;
5736 /* Alignment required by this store instruction. */
5737 int align_to;
5738 /* True for register offsets. */
5739 int register_offset;
5740 };
5741
5742 /* Comparison function used by qsort. */
5743
5744 static int
5745 fix_24k_sort (const void *a, const void *b)
5746 {
5747 const struct fix_24k_store_info *pos1 = a;
5748 const struct fix_24k_store_info *pos2 = b;
5749
5750 return (pos1->off - pos2->off);
5751 }
5752
5753 /* INSN is a store instruction. Try to record the store information
5754 in STINFO. Return false if the information isn't known. */
5755
5756 static bfd_boolean
5757 fix_24k_record_store_info (struct fix_24k_store_info *stinfo,
5758 const struct mips_cl_insn *insn)
5759 {
5760 /* The instruction must have a known offset. */
5761 if (!insn->complete_p || !strstr (insn->insn_mo->args, "o("))
5762 return FALSE;
5763
5764 stinfo->off = (insn->insn_opcode >> OP_SH_IMMEDIATE) & OP_MASK_IMMEDIATE;
5765 stinfo->align_to = fix_24k_align_to (insn->insn_mo);
5766 return TRUE;
5767 }
5768
5769 /* Return the number of nops that would be needed to work around the 24k
5770 "lost data on stores during refill" errata if instruction INSN
5771 immediately followed the 2 instructions described by HIST.
5772 Ignore hazards that are contained within the first IGNORE
5773 instructions of HIST.
5774
5775 Problem: The FSB (fetch store buffer) acts as an intermediate buffer
5776 for the data cache refills and store data. The following describes
5777 the scenario where the store data could be lost.
5778
5779 * A data cache miss, due to either a load or a store, causing fill
5780 data to be supplied by the memory subsystem
5781 * The first three doublewords of fill data are returned and written
5782 into the cache
5783 * A sequence of four stores occurs in consecutive cycles around the
5784 final doubleword of the fill:
5785 * Store A
5786 * Store B
5787 * Store C
5788 * Zero, One or more instructions
5789 * Store D
5790
5791 The four stores A-D must be to different doublewords of the line that
5792 is being filled. The fourth instruction in the sequence above permits
5793 the fill of the final doubleword to be transferred from the FSB into
5794 the cache. In the sequence above, the stores may be either integer
5795 (sb, sh, sw, swr, swl, sc) or coprocessor (swc1/swc2, sdc1/sdc2,
5796 swxc1, sdxc1, suxc1) stores, as long as the four stores are to
5797 different doublewords on the line. If the floating point unit is
5798 running in 1:2 mode, it is not possible to create the sequence above
5799 using only floating point store instructions.
5800
5801 In this case, the cache line being filled is incorrectly marked
5802 invalid, thereby losing the data from any store to the line that
5803 occurs between the original miss and the completion of the five
5804 cycle sequence shown above.
5805
5806 The workarounds are:
5807
5808 * Run the data cache in write-through mode.
5809 * Insert a non-store instruction between
5810 Store A and Store B or Store B and Store C. */
5811
5812 static int
5813 nops_for_24k (int ignore, const struct mips_cl_insn *hist,
5814 const struct mips_cl_insn *insn)
5815 {
5816 struct fix_24k_store_info pos[3];
5817 int align, i, base_offset;
5818
5819 if (ignore >= 2)
5820 return 0;
5821
5822 /* If the previous instruction wasn't a store, there's nothing to
5823 worry about. */
5824 if ((hist[0].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
5825 return 0;
5826
5827 /* If the instructions after the previous one are unknown, we have
5828 to assume the worst. */
5829 if (!insn)
5830 return 1;
5831
5832 /* Check whether we are dealing with three consecutive stores. */
5833 if ((insn->insn_mo->pinfo & INSN_STORE_MEMORY) == 0
5834 || (hist[1].insn_mo->pinfo & INSN_STORE_MEMORY) == 0)
5835 return 0;
5836
5837 /* If we don't know the relationship between the store addresses,
5838 assume the worst. */
5839 if (!BASE_REG_EQ (insn->insn_opcode, hist[0].insn_opcode)
5840 || !BASE_REG_EQ (insn->insn_opcode, hist[1].insn_opcode))
5841 return 1;
5842
5843 if (!fix_24k_record_store_info (&pos[0], insn)
5844 || !fix_24k_record_store_info (&pos[1], &hist[0])
5845 || !fix_24k_record_store_info (&pos[2], &hist[1]))
5846 return 1;
5847
5848 qsort (&pos, 3, sizeof (struct fix_24k_store_info), fix_24k_sort);
5849
5850 /* Pick a value of ALIGN and X such that all offsets are adjusted by
5851 X bytes and such that the base register + X is known to be aligned
5852 to align bytes. */
5853
5854 if (((insn->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == SP)
5855 align = 8;
5856 else
5857 {
5858 align = pos[0].align_to;
5859 base_offset = pos[0].off;
5860 for (i = 1; i < 3; i++)
5861 if (align < pos[i].align_to)
5862 {
5863 align = pos[i].align_to;
5864 base_offset = pos[i].off;
5865 }
5866 for (i = 0; i < 3; i++)
5867 pos[i].off -= base_offset;
5868 }
5869
5870 pos[0].off &= ~align + 1;
5871 pos[1].off &= ~align + 1;
5872 pos[2].off &= ~align + 1;
5873
5874 /* If any two stores write to the same chunk, they also write to the
5875 same doubleword. The offsets are still sorted at this point. */
5876 if (pos[0].off == pos[1].off || pos[1].off == pos[2].off)
5877 return 0;
5878
5879 /* A range of at least 9 bytes is needed for the stores to be in
5880 non-overlapping doublewords. */
5881 if (pos[2].off - pos[0].off <= 8)
5882 return 0;
5883
5884 if (pos[2].off - pos[1].off >= 24
5885 || pos[1].off - pos[0].off >= 24
5886 || pos[2].off - pos[0].off >= 32)
5887 return 0;
5888
5889 return 1;
5890 }
5891
5892 /* Return the number of nops that would be needed if instruction INSN
5893 immediately followed the MAX_NOPS instructions given by HIST,
5894 where HIST[0] is the most recent instruction. Ignore hazards
5895 between INSN and the first IGNORE instructions in HIST.
5896
5897 If INSN is null, return the worse-case number of nops for any
5898 instruction. */
5899
5900 static int
5901 nops_for_insn (int ignore, const struct mips_cl_insn *hist,
5902 const struct mips_cl_insn *insn)
5903 {
5904 int i, nops, tmp_nops;
5905
5906 nops = 0;
5907 for (i = ignore; i < MAX_DELAY_NOPS; i++)
5908 {
5909 tmp_nops = insns_between (hist + i, insn) - i;
5910 if (tmp_nops > nops)
5911 nops = tmp_nops;
5912 }
5913
5914 if (mips_fix_vr4130 && !mips_opts.micromips)
5915 {
5916 tmp_nops = nops_for_vr4130 (ignore, hist, insn);
5917 if (tmp_nops > nops)
5918 nops = tmp_nops;
5919 }
5920
5921 if (mips_fix_24k && !mips_opts.micromips)
5922 {
5923 tmp_nops = nops_for_24k (ignore, hist, insn);
5924 if (tmp_nops > nops)
5925 nops = tmp_nops;
5926 }
5927
5928 return nops;
5929 }
5930
5931 /* The variable arguments provide NUM_INSNS extra instructions that
5932 might be added to HIST. Return the largest number of nops that
5933 would be needed after the extended sequence, ignoring hazards
5934 in the first IGNORE instructions. */
5935
5936 static int
5937 nops_for_sequence (int num_insns, int ignore,
5938 const struct mips_cl_insn *hist, ...)
5939 {
5940 va_list args;
5941 struct mips_cl_insn buffer[MAX_NOPS];
5942 struct mips_cl_insn *cursor;
5943 int nops;
5944
5945 va_start (args, hist);
5946 cursor = buffer + num_insns;
5947 memcpy (cursor, hist, (MAX_NOPS - num_insns) * sizeof (*cursor));
5948 while (cursor > buffer)
5949 *--cursor = *va_arg (args, const struct mips_cl_insn *);
5950
5951 nops = nops_for_insn (ignore, buffer, NULL);
5952 va_end (args);
5953 return nops;
5954 }
5955
5956 /* Like nops_for_insn, but if INSN is a branch, take into account the
5957 worst-case delay for the branch target. */
5958
5959 static int
5960 nops_for_insn_or_target (int ignore, const struct mips_cl_insn *hist,
5961 const struct mips_cl_insn *insn)
5962 {
5963 int nops, tmp_nops;
5964
5965 nops = nops_for_insn (ignore, hist, insn);
5966 if (delayed_branch_p (insn))
5967 {
5968 tmp_nops = nops_for_sequence (2, ignore ? ignore + 2 : 0,
5969 hist, insn, get_delay_slot_nop (insn));
5970 if (tmp_nops > nops)
5971 nops = tmp_nops;
5972 }
5973 else if (compact_branch_p (insn))
5974 {
5975 tmp_nops = nops_for_sequence (1, ignore ? ignore + 1 : 0, hist, insn);
5976 if (tmp_nops > nops)
5977 nops = tmp_nops;
5978 }
5979 return nops;
5980 }
5981
5982 /* Fix NOP issue: Replace nops by "or at,at,zero". */
5983
5984 static void
5985 fix_loongson2f_nop (struct mips_cl_insn * ip)
5986 {
5987 gas_assert (!HAVE_CODE_COMPRESSION);
5988 if (strcmp (ip->insn_mo->name, "nop") == 0)
5989 ip->insn_opcode = LOONGSON2F_NOP_INSN;
5990 }
5991
5992 /* Fix Jump Issue: Eliminate instruction fetch from outside 256M region
5993 jr target pc &= 'hffff_ffff_cfff_ffff. */
5994
5995 static void
5996 fix_loongson2f_jump (struct mips_cl_insn * ip)
5997 {
5998 gas_assert (!HAVE_CODE_COMPRESSION);
5999 if (strcmp (ip->insn_mo->name, "j") == 0
6000 || strcmp (ip->insn_mo->name, "jr") == 0
6001 || strcmp (ip->insn_mo->name, "jalr") == 0)
6002 {
6003 int sreg;
6004 expressionS ep;
6005
6006 if (! mips_opts.at)
6007 return;
6008
6009 sreg = EXTRACT_OPERAND (0, RS, *ip);
6010 if (sreg == ZERO || sreg == KT0 || sreg == KT1 || sreg == ATREG)
6011 return;
6012
6013 ep.X_op = O_constant;
6014 ep.X_add_number = 0xcfff0000;
6015 macro_build (&ep, "lui", "t,u", ATREG, BFD_RELOC_HI16);
6016 ep.X_add_number = 0xffff;
6017 macro_build (&ep, "ori", "t,r,i", ATREG, ATREG, BFD_RELOC_LO16);
6018 macro_build (NULL, "and", "d,v,t", sreg, sreg, ATREG);
6019 }
6020 }
6021
6022 static void
6023 fix_loongson2f (struct mips_cl_insn * ip)
6024 {
6025 if (mips_fix_loongson2f_nop)
6026 fix_loongson2f_nop (ip);
6027
6028 if (mips_fix_loongson2f_jump)
6029 fix_loongson2f_jump (ip);
6030 }
6031
6032 /* IP is a branch that has a delay slot, and we need to fill it
6033 automatically. Return true if we can do that by swapping IP
6034 with the previous instruction.
6035 ADDRESS_EXPR is an operand of the instruction to be used with
6036 RELOC_TYPE. */
6037
6038 static bfd_boolean
6039 can_swap_branch_p (struct mips_cl_insn *ip, expressionS *address_expr,
6040 bfd_reloc_code_real_type *reloc_type)
6041 {
6042 unsigned long pinfo, pinfo2, prev_pinfo, prev_pinfo2;
6043 unsigned int gpr_read, gpr_write, prev_gpr_read, prev_gpr_write;
6044
6045 /* -O2 and above is required for this optimization. */
6046 if (mips_optimize < 2)
6047 return FALSE;
6048
6049 /* If we have seen .set volatile or .set nomove, don't optimize. */
6050 if (mips_opts.nomove)
6051 return FALSE;
6052
6053 /* We can't swap if the previous instruction's position is fixed. */
6054 if (history[0].fixed_p)
6055 return FALSE;
6056
6057 /* If the previous previous insn was in a .set noreorder, we can't
6058 swap. Actually, the MIPS assembler will swap in this situation.
6059 However, gcc configured -with-gnu-as will generate code like
6060
6061 .set noreorder
6062 lw $4,XXX
6063 .set reorder
6064 INSN
6065 bne $4,$0,foo
6066
6067 in which we can not swap the bne and INSN. If gcc is not configured
6068 -with-gnu-as, it does not output the .set pseudo-ops. */
6069 if (history[1].noreorder_p)
6070 return FALSE;
6071
6072 /* If the previous instruction had a fixup in mips16 mode, we can not swap.
6073 This means that the previous instruction was a 4-byte one anyhow. */
6074 if (mips_opts.mips16 && history[0].fixp[0])
6075 return FALSE;
6076
6077 /* If the branch is itself the target of a branch, we can not swap.
6078 We cheat on this; all we check for is whether there is a label on
6079 this instruction. If there are any branches to anything other than
6080 a label, users must use .set noreorder. */
6081 if (seg_info (now_seg)->label_list)
6082 return FALSE;
6083
6084 /* If the previous instruction is in a variant frag other than this
6085 branch's one, we cannot do the swap. This does not apply to
6086 MIPS16 code, which uses variant frags for different purposes. */
6087 if (!mips_opts.mips16
6088 && history[0].frag
6089 && history[0].frag->fr_type == rs_machine_dependent)
6090 return FALSE;
6091
6092 /* We do not swap with instructions that cannot architecturally
6093 be placed in a branch delay slot, such as SYNC or ERET. We
6094 also refrain from swapping with a trap instruction, since it
6095 complicates trap handlers to have the trap instruction be in
6096 a delay slot. */
6097 prev_pinfo = history[0].insn_mo->pinfo;
6098 if (prev_pinfo & INSN_NO_DELAY_SLOT)
6099 return FALSE;
6100
6101 /* Check for conflicts between the branch and the instructions
6102 before the candidate delay slot. */
6103 if (nops_for_insn (0, history + 1, ip) > 0)
6104 return FALSE;
6105
6106 /* Check for conflicts between the swapped sequence and the
6107 target of the branch. */
6108 if (nops_for_sequence (2, 0, history + 1, ip, history) > 0)
6109 return FALSE;
6110
6111 /* If the branch reads a register that the previous
6112 instruction sets, we can not swap. */
6113 gpr_read = gpr_read_mask (ip);
6114 prev_gpr_write = gpr_write_mask (&history[0]);
6115 if (gpr_read & prev_gpr_write)
6116 return FALSE;
6117
6118 /* If the branch writes a register that the previous
6119 instruction sets, we can not swap. */
6120 gpr_write = gpr_write_mask (ip);
6121 if (gpr_write & prev_gpr_write)
6122 return FALSE;
6123
6124 /* If the branch writes a register that the previous
6125 instruction reads, we can not swap. */
6126 prev_gpr_read = gpr_read_mask (&history[0]);
6127 if (gpr_write & prev_gpr_read)
6128 return FALSE;
6129
6130 /* If one instruction sets a condition code and the
6131 other one uses a condition code, we can not swap. */
6132 pinfo = ip->insn_mo->pinfo;
6133 if ((pinfo & INSN_READ_COND_CODE)
6134 && (prev_pinfo & INSN_WRITE_COND_CODE))
6135 return FALSE;
6136 if ((pinfo & INSN_WRITE_COND_CODE)
6137 && (prev_pinfo & INSN_READ_COND_CODE))
6138 return FALSE;
6139
6140 /* If the previous instruction uses the PC, we can not swap. */
6141 prev_pinfo2 = history[0].insn_mo->pinfo2;
6142 if (prev_pinfo2 & INSN2_READ_PC)
6143 return FALSE;
6144
6145 /* If the previous instruction has an incorrect size for a fixed
6146 branch delay slot in microMIPS mode, we cannot swap. */
6147 pinfo2 = ip->insn_mo->pinfo2;
6148 if (mips_opts.micromips
6149 && (pinfo2 & INSN2_BRANCH_DELAY_16BIT)
6150 && insn_length (history) != 2)
6151 return FALSE;
6152 if (mips_opts.micromips
6153 && (pinfo2 & INSN2_BRANCH_DELAY_32BIT)
6154 && insn_length (history) != 4)
6155 return FALSE;
6156
6157 /* On R5900 short loops need to be fixed by inserting a nop in
6158 the branch delay slots.
6159 A short loop can be terminated too early. */
6160 if (mips_opts.arch == CPU_R5900
6161 /* Check if instruction has a parameter, ignore "j $31". */
6162 && (address_expr != NULL)
6163 /* Parameter must be 16 bit. */
6164 && (*reloc_type == BFD_RELOC_16_PCREL_S2)
6165 /* Branch to same segment. */
6166 && (S_GET_SEGMENT(address_expr->X_add_symbol) == now_seg)
6167 /* Branch to same code fragment. */
6168 && (symbol_get_frag(address_expr->X_add_symbol) == frag_now)
6169 /* Can only calculate branch offset if value is known. */
6170 && symbol_constant_p(address_expr->X_add_symbol)
6171 /* Check if branch is really conditional. */
6172 && !((ip->insn_opcode & 0xffff0000) == 0x10000000 /* beq $0,$0 */
6173 || (ip->insn_opcode & 0xffff0000) == 0x04010000 /* bgez $0 */
6174 || (ip->insn_opcode & 0xffff0000) == 0x04110000)) /* bgezal $0 */
6175 {
6176 int distance;
6177 /* Check if loop is shorter than 6 instructions including
6178 branch and delay slot. */
6179 distance = frag_now_fix() - S_GET_VALUE(address_expr->X_add_symbol);
6180 if (distance <= 20)
6181 {
6182 int i;
6183 int rv;
6184
6185 rv = FALSE;
6186 /* When the loop includes branches or jumps,
6187 it is not a short loop. */
6188 for (i = 0; i < (distance / 4); i++)
6189 {
6190 if ((history[i].cleared_p)
6191 || delayed_branch_p(&history[i]))
6192 {
6193 rv = TRUE;
6194 break;
6195 }
6196 }
6197 if (rv == FALSE)
6198 {
6199 /* Insert nop after branch to fix short loop. */
6200 return FALSE;
6201 }
6202 }
6203 }
6204
6205 return TRUE;
6206 }
6207
6208 /* Decide how we should add IP to the instruction stream.
6209 ADDRESS_EXPR is an operand of the instruction to be used with
6210 RELOC_TYPE. */
6211
6212 static enum append_method
6213 get_append_method (struct mips_cl_insn *ip, expressionS *address_expr,
6214 bfd_reloc_code_real_type *reloc_type)
6215 {
6216 /* The relaxed version of a macro sequence must be inherently
6217 hazard-free. */
6218 if (mips_relax.sequence == 2)
6219 return APPEND_ADD;
6220
6221 /* We must not dabble with instructions in a ".set norerorder" block. */
6222 if (mips_opts.noreorder)
6223 return APPEND_ADD;
6224
6225 /* Otherwise, it's our responsibility to fill branch delay slots. */
6226 if (delayed_branch_p (ip))
6227 {
6228 if (!branch_likely_p (ip)
6229 && can_swap_branch_p (ip, address_expr, reloc_type))
6230 return APPEND_SWAP;
6231
6232 if (mips_opts.mips16
6233 && ISA_SUPPORTS_MIPS16E
6234 && gpr_read_mask (ip) != 0)
6235 return APPEND_ADD_COMPACT;
6236
6237 return APPEND_ADD_WITH_NOP;
6238 }
6239
6240 return APPEND_ADD;
6241 }
6242
6243 /* IP is a MIPS16 instruction whose opcode we have just changed.
6244 Point IP->insn_mo to the new opcode's definition. */
6245
6246 static void
6247 find_altered_mips16_opcode (struct mips_cl_insn *ip)
6248 {
6249 const struct mips_opcode *mo, *end;
6250
6251 end = &mips16_opcodes[bfd_mips16_num_opcodes];
6252 for (mo = ip->insn_mo; mo < end; mo++)
6253 if ((ip->insn_opcode & mo->mask) == mo->match)
6254 {
6255 ip->insn_mo = mo;
6256 return;
6257 }
6258 abort ();
6259 }
6260
6261 /* For microMIPS macros, we need to generate a local number label
6262 as the target of branches. */
6263 #define MICROMIPS_LABEL_CHAR '\037'
6264 static unsigned long micromips_target_label;
6265 static char micromips_target_name[32];
6266
6267 static char *
6268 micromips_label_name (void)
6269 {
6270 char *p = micromips_target_name;
6271 char symbol_name_temporary[24];
6272 unsigned long l;
6273 int i;
6274
6275 if (*p)
6276 return p;
6277
6278 i = 0;
6279 l = micromips_target_label;
6280 #ifdef LOCAL_LABEL_PREFIX
6281 *p++ = LOCAL_LABEL_PREFIX;
6282 #endif
6283 *p++ = 'L';
6284 *p++ = MICROMIPS_LABEL_CHAR;
6285 do
6286 {
6287 symbol_name_temporary[i++] = l % 10 + '0';
6288 l /= 10;
6289 }
6290 while (l != 0);
6291 while (i > 0)
6292 *p++ = symbol_name_temporary[--i];
6293 *p = '\0';
6294
6295 return micromips_target_name;
6296 }
6297
6298 static void
6299 micromips_label_expr (expressionS *label_expr)
6300 {
6301 label_expr->X_op = O_symbol;
6302 label_expr->X_add_symbol = symbol_find_or_make (micromips_label_name ());
6303 label_expr->X_add_number = 0;
6304 }
6305
6306 static void
6307 micromips_label_inc (void)
6308 {
6309 micromips_target_label++;
6310 *micromips_target_name = '\0';
6311 }
6312
6313 static void
6314 micromips_add_label (void)
6315 {
6316 symbolS *s;
6317
6318 s = colon (micromips_label_name ());
6319 micromips_label_inc ();
6320 S_SET_OTHER (s, ELF_ST_SET_MICROMIPS (S_GET_OTHER (s)));
6321 }
6322
6323 /* If assembling microMIPS code, then return the microMIPS reloc
6324 corresponding to the requested one if any. Otherwise return
6325 the reloc unchanged. */
6326
6327 static bfd_reloc_code_real_type
6328 micromips_map_reloc (bfd_reloc_code_real_type reloc)
6329 {
6330 static const bfd_reloc_code_real_type relocs[][2] =
6331 {
6332 /* Keep sorted incrementally by the left-hand key. */
6333 { BFD_RELOC_16_PCREL_S2, BFD_RELOC_MICROMIPS_16_PCREL_S1 },
6334 { BFD_RELOC_GPREL16, BFD_RELOC_MICROMIPS_GPREL16 },
6335 { BFD_RELOC_MIPS_JMP, BFD_RELOC_MICROMIPS_JMP },
6336 { BFD_RELOC_HI16, BFD_RELOC_MICROMIPS_HI16 },
6337 { BFD_RELOC_HI16_S, BFD_RELOC_MICROMIPS_HI16_S },
6338 { BFD_RELOC_LO16, BFD_RELOC_MICROMIPS_LO16 },
6339 { BFD_RELOC_MIPS_LITERAL, BFD_RELOC_MICROMIPS_LITERAL },
6340 { BFD_RELOC_MIPS_GOT16, BFD_RELOC_MICROMIPS_GOT16 },
6341 { BFD_RELOC_MIPS_CALL16, BFD_RELOC_MICROMIPS_CALL16 },
6342 { BFD_RELOC_MIPS_GOT_HI16, BFD_RELOC_MICROMIPS_GOT_HI16 },
6343 { BFD_RELOC_MIPS_GOT_LO16, BFD_RELOC_MICROMIPS_GOT_LO16 },
6344 { BFD_RELOC_MIPS_CALL_HI16, BFD_RELOC_MICROMIPS_CALL_HI16 },
6345 { BFD_RELOC_MIPS_CALL_LO16, BFD_RELOC_MICROMIPS_CALL_LO16 },
6346 { BFD_RELOC_MIPS_SUB, BFD_RELOC_MICROMIPS_SUB },
6347 { BFD_RELOC_MIPS_GOT_PAGE, BFD_RELOC_MICROMIPS_GOT_PAGE },
6348 { BFD_RELOC_MIPS_GOT_OFST, BFD_RELOC_MICROMIPS_GOT_OFST },
6349 { BFD_RELOC_MIPS_GOT_DISP, BFD_RELOC_MICROMIPS_GOT_DISP },
6350 { BFD_RELOC_MIPS_HIGHEST, BFD_RELOC_MICROMIPS_HIGHEST },
6351 { BFD_RELOC_MIPS_HIGHER, BFD_RELOC_MICROMIPS_HIGHER },
6352 { BFD_RELOC_MIPS_SCN_DISP, BFD_RELOC_MICROMIPS_SCN_DISP },
6353 { BFD_RELOC_MIPS_TLS_GD, BFD_RELOC_MICROMIPS_TLS_GD },
6354 { BFD_RELOC_MIPS_TLS_LDM, BFD_RELOC_MICROMIPS_TLS_LDM },
6355 { BFD_RELOC_MIPS_TLS_DTPREL_HI16, BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16 },
6356 { BFD_RELOC_MIPS_TLS_DTPREL_LO16, BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16 },
6357 { BFD_RELOC_MIPS_TLS_GOTTPREL, BFD_RELOC_MICROMIPS_TLS_GOTTPREL },
6358 { BFD_RELOC_MIPS_TLS_TPREL_HI16, BFD_RELOC_MICROMIPS_TLS_TPREL_HI16 },
6359 { BFD_RELOC_MIPS_TLS_TPREL_LO16, BFD_RELOC_MICROMIPS_TLS_TPREL_LO16 }
6360 };
6361 bfd_reloc_code_real_type r;
6362 size_t i;
6363
6364 if (!mips_opts.micromips)
6365 return reloc;
6366 for (i = 0; i < ARRAY_SIZE (relocs); i++)
6367 {
6368 r = relocs[i][0];
6369 if (r > reloc)
6370 return reloc;
6371 if (r == reloc)
6372 return relocs[i][1];
6373 }
6374 return reloc;
6375 }
6376
6377 /* Try to resolve relocation RELOC against constant OPERAND at assembly time.
6378 Return true on success, storing the resolved value in RESULT. */
6379
6380 static bfd_boolean
6381 calculate_reloc (bfd_reloc_code_real_type reloc, offsetT operand,
6382 offsetT *result)
6383 {
6384 switch (reloc)
6385 {
6386 case BFD_RELOC_MIPS_HIGHEST:
6387 case BFD_RELOC_MICROMIPS_HIGHEST:
6388 *result = ((operand + 0x800080008000ull) >> 48) & 0xffff;
6389 return TRUE;
6390
6391 case BFD_RELOC_MIPS_HIGHER:
6392 case BFD_RELOC_MICROMIPS_HIGHER:
6393 *result = ((operand + 0x80008000ull) >> 32) & 0xffff;
6394 return TRUE;
6395
6396 case BFD_RELOC_HI16_S:
6397 case BFD_RELOC_MICROMIPS_HI16_S:
6398 case BFD_RELOC_MIPS16_HI16_S:
6399 *result = ((operand + 0x8000) >> 16) & 0xffff;
6400 return TRUE;
6401
6402 case BFD_RELOC_HI16:
6403 case BFD_RELOC_MICROMIPS_HI16:
6404 case BFD_RELOC_MIPS16_HI16:
6405 *result = (operand >> 16) & 0xffff;
6406 return TRUE;
6407
6408 case BFD_RELOC_LO16:
6409 case BFD_RELOC_MICROMIPS_LO16:
6410 case BFD_RELOC_MIPS16_LO16:
6411 *result = operand & 0xffff;
6412 return TRUE;
6413
6414 case BFD_RELOC_UNUSED:
6415 *result = operand;
6416 return TRUE;
6417
6418 default:
6419 return FALSE;
6420 }
6421 }
6422
6423 /* Output an instruction. IP is the instruction information.
6424 ADDRESS_EXPR is an operand of the instruction to be used with
6425 RELOC_TYPE. EXPANSIONP is true if the instruction is part of
6426 a macro expansion. */
6427
6428 static void
6429 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
6430 bfd_reloc_code_real_type *reloc_type, bfd_boolean expansionp)
6431 {
6432 unsigned long prev_pinfo2, pinfo;
6433 bfd_boolean relaxed_branch = FALSE;
6434 enum append_method method;
6435 bfd_boolean relax32;
6436 int branch_disp;
6437
6438 if (mips_fix_loongson2f && !HAVE_CODE_COMPRESSION)
6439 fix_loongson2f (ip);
6440
6441 file_ase_mips16 |= mips_opts.mips16;
6442 file_ase_micromips |= mips_opts.micromips;
6443
6444 prev_pinfo2 = history[0].insn_mo->pinfo2;
6445 pinfo = ip->insn_mo->pinfo;
6446
6447 if (mips_opts.micromips
6448 && !expansionp
6449 && (((prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0
6450 && micromips_insn_length (ip->insn_mo) != 2)
6451 || ((prev_pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
6452 && micromips_insn_length (ip->insn_mo) != 4)))
6453 as_warn (_("Wrong size instruction in a %u-bit branch delay slot"),
6454 (prev_pinfo2 & INSN2_BRANCH_DELAY_16BIT) != 0 ? 16 : 32);
6455
6456 if (address_expr == NULL)
6457 ip->complete_p = 1;
6458 else if (reloc_type[0] <= BFD_RELOC_UNUSED
6459 && reloc_type[1] == BFD_RELOC_UNUSED
6460 && reloc_type[2] == BFD_RELOC_UNUSED
6461 && address_expr->X_op == O_constant)
6462 {
6463 switch (*reloc_type)
6464 {
6465 case BFD_RELOC_MIPS_JMP:
6466 {
6467 int shift;
6468
6469 shift = mips_opts.micromips ? 1 : 2;
6470 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
6471 as_bad (_("jump to misaligned address (0x%lx)"),
6472 (unsigned long) address_expr->X_add_number);
6473 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
6474 & 0x3ffffff);
6475 ip->complete_p = 1;
6476 }
6477 break;
6478
6479 case BFD_RELOC_MIPS16_JMP:
6480 if ((address_expr->X_add_number & 3) != 0)
6481 as_bad (_("jump to misaligned address (0x%lx)"),
6482 (unsigned long) address_expr->X_add_number);
6483 ip->insn_opcode |=
6484 (((address_expr->X_add_number & 0x7c0000) << 3)
6485 | ((address_expr->X_add_number & 0xf800000) >> 7)
6486 | ((address_expr->X_add_number & 0x3fffc) >> 2));
6487 ip->complete_p = 1;
6488 break;
6489
6490 case BFD_RELOC_16_PCREL_S2:
6491 {
6492 int shift;
6493
6494 shift = mips_opts.micromips ? 1 : 2;
6495 if ((address_expr->X_add_number & ((1 << shift) - 1)) != 0)
6496 as_bad (_("branch to misaligned address (0x%lx)"),
6497 (unsigned long) address_expr->X_add_number);
6498 if (!mips_relax_branch)
6499 {
6500 if ((address_expr->X_add_number + (1 << (shift + 15)))
6501 & ~((1 << (shift + 16)) - 1))
6502 as_bad (_("branch address range overflow (0x%lx)"),
6503 (unsigned long) address_expr->X_add_number);
6504 ip->insn_opcode |= ((address_expr->X_add_number >> shift)
6505 & 0xffff);
6506 }
6507 }
6508 break;
6509
6510 default:
6511 {
6512 offsetT value;
6513
6514 if (calculate_reloc (*reloc_type, address_expr->X_add_number,
6515 &value))
6516 {
6517 ip->insn_opcode |= value & 0xffff;
6518 ip->complete_p = 1;
6519 }
6520 }
6521 break;
6522 }
6523 }
6524
6525 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
6526 {
6527 /* There are a lot of optimizations we could do that we don't.
6528 In particular, we do not, in general, reorder instructions.
6529 If you use gcc with optimization, it will reorder
6530 instructions and generally do much more optimization then we
6531 do here; repeating all that work in the assembler would only
6532 benefit hand written assembly code, and does not seem worth
6533 it. */
6534 int nops = (mips_optimize == 0
6535 ? nops_for_insn (0, history, NULL)
6536 : nops_for_insn_or_target (0, history, ip));
6537 if (nops > 0)
6538 {
6539 fragS *old_frag;
6540 unsigned long old_frag_offset;
6541 int i;
6542
6543 old_frag = frag_now;
6544 old_frag_offset = frag_now_fix ();
6545
6546 for (i = 0; i < nops; i++)
6547 add_fixed_insn (NOP_INSN);
6548 insert_into_history (0, nops, NOP_INSN);
6549
6550 if (listing)
6551 {
6552 listing_prev_line ();
6553 /* We may be at the start of a variant frag. In case we
6554 are, make sure there is enough space for the frag
6555 after the frags created by listing_prev_line. The
6556 argument to frag_grow here must be at least as large
6557 as the argument to all other calls to frag_grow in
6558 this file. We don't have to worry about being in the
6559 middle of a variant frag, because the variants insert
6560 all needed nop instructions themselves. */
6561 frag_grow (40);
6562 }
6563
6564 mips_move_text_labels ();
6565
6566 #ifndef NO_ECOFF_DEBUGGING
6567 if (ECOFF_DEBUGGING)
6568 ecoff_fix_loc (old_frag, old_frag_offset);
6569 #endif
6570 }
6571 }
6572 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
6573 {
6574 int nops;
6575
6576 /* Work out how many nops in prev_nop_frag are needed by IP,
6577 ignoring hazards generated by the first prev_nop_frag_since
6578 instructions. */
6579 nops = nops_for_insn_or_target (prev_nop_frag_since, history, ip);
6580 gas_assert (nops <= prev_nop_frag_holds);
6581
6582 /* Enforce NOPS as a minimum. */
6583 if (nops > prev_nop_frag_required)
6584 prev_nop_frag_required = nops;
6585
6586 if (prev_nop_frag_holds == prev_nop_frag_required)
6587 {
6588 /* Settle for the current number of nops. Update the history
6589 accordingly (for the benefit of any future .set reorder code). */
6590 prev_nop_frag = NULL;
6591 insert_into_history (prev_nop_frag_since,
6592 prev_nop_frag_holds, NOP_INSN);
6593 }
6594 else
6595 {
6596 /* Allow this instruction to replace one of the nops that was
6597 tentatively added to prev_nop_frag. */
6598 prev_nop_frag->fr_fix -= NOP_INSN_SIZE;
6599 prev_nop_frag_holds--;
6600 prev_nop_frag_since++;
6601 }
6602 }
6603
6604 method = get_append_method (ip, address_expr, reloc_type);
6605 branch_disp = method == APPEND_SWAP ? insn_length (history) : 0;
6606
6607 dwarf2_emit_insn (0);
6608 /* We want MIPS16 and microMIPS debug info to use ISA-encoded addresses,
6609 so "move" the instruction address accordingly.
6610
6611 Also, it doesn't seem appropriate for the assembler to reorder .loc
6612 entries. If this instruction is a branch that we are going to swap
6613 with the previous instruction, the two instructions should be
6614 treated as a unit, and the debug information for both instructions
6615 should refer to the start of the branch sequence. Using the
6616 current position is certainly wrong when swapping a 32-bit branch
6617 and a 16-bit delay slot, since the current position would then be
6618 in the middle of a branch. */
6619 dwarf2_move_insn ((HAVE_CODE_COMPRESSION ? 1 : 0) - branch_disp);
6620
6621 relax32 = (mips_relax_branch
6622 /* Don't try branch relaxation within .set nomacro, or within
6623 .set noat if we use $at for PIC computations. If it turns
6624 out that the branch was out-of-range, we'll get an error. */
6625 && !mips_opts.warn_about_macros
6626 && (mips_opts.at || mips_pic == NO_PIC)
6627 /* Don't relax BPOSGE32/64 or BC1ANY2T/F and BC1ANY4T/F
6628 as they have no complementing branches. */
6629 && !(ip->insn_mo->ase & (ASE_MIPS3D | ASE_DSP64 | ASE_DSP)));
6630
6631 if (!HAVE_CODE_COMPRESSION
6632 && address_expr
6633 && relax32
6634 && *reloc_type == BFD_RELOC_16_PCREL_S2
6635 && delayed_branch_p (ip))
6636 {
6637 relaxed_branch = TRUE;
6638 add_relaxed_insn (ip, (relaxed_branch_length
6639 (NULL, NULL,
6640 uncond_branch_p (ip) ? -1
6641 : branch_likely_p (ip) ? 1
6642 : 0)), 4,
6643 RELAX_BRANCH_ENCODE
6644 (AT,
6645 uncond_branch_p (ip),
6646 branch_likely_p (ip),
6647 pinfo & INSN_WRITE_GPR_31,
6648 0),
6649 address_expr->X_add_symbol,
6650 address_expr->X_add_number);
6651 *reloc_type = BFD_RELOC_UNUSED;
6652 }
6653 else if (mips_opts.micromips
6654 && address_expr
6655 && ((relax32 && *reloc_type == BFD_RELOC_16_PCREL_S2)
6656 || *reloc_type > BFD_RELOC_UNUSED)
6657 && (delayed_branch_p (ip) || compact_branch_p (ip))
6658 /* Don't try branch relaxation when users specify
6659 16-bit/32-bit instructions. */
6660 && !forced_insn_length)
6661 {
6662 bfd_boolean relax16 = *reloc_type > BFD_RELOC_UNUSED;
6663 int type = relax16 ? *reloc_type - BFD_RELOC_UNUSED : 0;
6664 int uncond = uncond_branch_p (ip) ? -1 : 0;
6665 int compact = compact_branch_p (ip);
6666 int al = pinfo & INSN_WRITE_GPR_31;
6667 int length32;
6668
6669 gas_assert (address_expr != NULL);
6670 gas_assert (!mips_relax.sequence);
6671
6672 relaxed_branch = TRUE;
6673 length32 = relaxed_micromips_32bit_branch_length (NULL, NULL, uncond);
6674 add_relaxed_insn (ip, relax32 ? length32 : 4, relax16 ? 2 : 4,
6675 RELAX_MICROMIPS_ENCODE (type, AT, uncond, compact, al,
6676 relax32, 0, 0),
6677 address_expr->X_add_symbol,
6678 address_expr->X_add_number);
6679 *reloc_type = BFD_RELOC_UNUSED;
6680 }
6681 else if (mips_opts.mips16 && *reloc_type > BFD_RELOC_UNUSED)
6682 {
6683 /* We need to set up a variant frag. */
6684 gas_assert (address_expr != NULL);
6685 add_relaxed_insn (ip, 4, 0,
6686 RELAX_MIPS16_ENCODE
6687 (*reloc_type - BFD_RELOC_UNUSED,
6688 forced_insn_length == 2, forced_insn_length == 4,
6689 delayed_branch_p (&history[0]),
6690 history[0].mips16_absolute_jump_p),
6691 make_expr_symbol (address_expr), 0);
6692 }
6693 else if (mips_opts.mips16 && insn_length (ip) == 2)
6694 {
6695 if (!delayed_branch_p (ip))
6696 /* Make sure there is enough room to swap this instruction with
6697 a following jump instruction. */
6698 frag_grow (6);
6699 add_fixed_insn (ip);
6700 }
6701 else
6702 {
6703 if (mips_opts.mips16
6704 && mips_opts.noreorder
6705 && delayed_branch_p (&history[0]))
6706 as_warn (_("extended instruction in delay slot"));
6707
6708 if (mips_relax.sequence)
6709 {
6710 /* If we've reached the end of this frag, turn it into a variant
6711 frag and record the information for the instructions we've
6712 written so far. */
6713 if (frag_room () < 4)
6714 relax_close_frag ();
6715 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (ip);
6716 }
6717
6718 if (mips_relax.sequence != 2)
6719 {
6720 if (mips_macro_warning.first_insn_sizes[0] == 0)
6721 mips_macro_warning.first_insn_sizes[0] = insn_length (ip);
6722 mips_macro_warning.sizes[0] += insn_length (ip);
6723 mips_macro_warning.insns[0]++;
6724 }
6725 if (mips_relax.sequence != 1)
6726 {
6727 if (mips_macro_warning.first_insn_sizes[1] == 0)
6728 mips_macro_warning.first_insn_sizes[1] = insn_length (ip);
6729 mips_macro_warning.sizes[1] += insn_length (ip);
6730 mips_macro_warning.insns[1]++;
6731 }
6732
6733 if (mips_opts.mips16)
6734 {
6735 ip->fixed_p = 1;
6736 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
6737 }
6738 add_fixed_insn (ip);
6739 }
6740
6741 if (!ip->complete_p && *reloc_type < BFD_RELOC_UNUSED)
6742 {
6743 bfd_reloc_code_real_type final_type[3];
6744 reloc_howto_type *howto0;
6745 reloc_howto_type *howto;
6746 int i;
6747
6748 /* Perform any necessary conversion to microMIPS relocations
6749 and find out how many relocations there actually are. */
6750 for (i = 0; i < 3 && reloc_type[i] != BFD_RELOC_UNUSED; i++)
6751 final_type[i] = micromips_map_reloc (reloc_type[i]);
6752
6753 /* In a compound relocation, it is the final (outermost)
6754 operator that determines the relocated field. */
6755 howto = howto0 = bfd_reloc_type_lookup (stdoutput, final_type[i - 1]);
6756 if (!howto)
6757 abort ();
6758
6759 if (i > 1)
6760 howto0 = bfd_reloc_type_lookup (stdoutput, final_type[0]);
6761 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
6762 bfd_get_reloc_size (howto),
6763 address_expr,
6764 howto0 && howto0->pc_relative,
6765 final_type[0]);
6766
6767 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
6768 if (final_type[0] == BFD_RELOC_MIPS16_JMP && ip->fixp[0]->fx_addsy)
6769 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
6770
6771 /* These relocations can have an addend that won't fit in
6772 4 octets for 64bit assembly. */
6773 if (HAVE_64BIT_GPRS
6774 && ! howto->partial_inplace
6775 && (reloc_type[0] == BFD_RELOC_16
6776 || reloc_type[0] == BFD_RELOC_32
6777 || reloc_type[0] == BFD_RELOC_MIPS_JMP
6778 || reloc_type[0] == BFD_RELOC_GPREL16
6779 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
6780 || reloc_type[0] == BFD_RELOC_GPREL32
6781 || reloc_type[0] == BFD_RELOC_64
6782 || reloc_type[0] == BFD_RELOC_CTOR
6783 || reloc_type[0] == BFD_RELOC_MIPS_SUB
6784 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
6785 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
6786 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
6787 || reloc_type[0] == BFD_RELOC_MIPS_REL16
6788 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
6789 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
6790 || hi16_reloc_p (reloc_type[0])
6791 || lo16_reloc_p (reloc_type[0])))
6792 ip->fixp[0]->fx_no_overflow = 1;
6793
6794 /* These relocations can have an addend that won't fit in 2 octets. */
6795 if (reloc_type[0] == BFD_RELOC_MICROMIPS_7_PCREL_S1
6796 || reloc_type[0] == BFD_RELOC_MICROMIPS_10_PCREL_S1)
6797 ip->fixp[0]->fx_no_overflow = 1;
6798
6799 if (mips_relax.sequence)
6800 {
6801 if (mips_relax.first_fixup == 0)
6802 mips_relax.first_fixup = ip->fixp[0];
6803 }
6804 else if (reloc_needs_lo_p (*reloc_type))
6805 {
6806 struct mips_hi_fixup *hi_fixup;
6807
6808 /* Reuse the last entry if it already has a matching %lo. */
6809 hi_fixup = mips_hi_fixup_list;
6810 if (hi_fixup == 0
6811 || !fixup_has_matching_lo_p (hi_fixup->fixp))
6812 {
6813 hi_fixup = ((struct mips_hi_fixup *)
6814 xmalloc (sizeof (struct mips_hi_fixup)));
6815 hi_fixup->next = mips_hi_fixup_list;
6816 mips_hi_fixup_list = hi_fixup;
6817 }
6818 hi_fixup->fixp = ip->fixp[0];
6819 hi_fixup->seg = now_seg;
6820 }
6821
6822 /* Add fixups for the second and third relocations, if given.
6823 Note that the ABI allows the second relocation to be
6824 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
6825 moment we only use RSS_UNDEF, but we could add support
6826 for the others if it ever becomes necessary. */
6827 for (i = 1; i < 3; i++)
6828 if (reloc_type[i] != BFD_RELOC_UNUSED)
6829 {
6830 ip->fixp[i] = fix_new (ip->frag, ip->where,
6831 ip->fixp[0]->fx_size, NULL, 0,
6832 FALSE, final_type[i]);
6833
6834 /* Use fx_tcbit to mark compound relocs. */
6835 ip->fixp[0]->fx_tcbit = 1;
6836 ip->fixp[i]->fx_tcbit = 1;
6837 }
6838 }
6839 install_insn (ip);
6840
6841 /* Update the register mask information. */
6842 mips_gprmask |= gpr_read_mask (ip) | gpr_write_mask (ip);
6843 mips_cprmask[1] |= fpr_read_mask (ip) | fpr_write_mask (ip);
6844
6845 switch (method)
6846 {
6847 case APPEND_ADD:
6848 insert_into_history (0, 1, ip);
6849 break;
6850
6851 case APPEND_ADD_WITH_NOP:
6852 {
6853 struct mips_cl_insn *nop;
6854
6855 insert_into_history (0, 1, ip);
6856 nop = get_delay_slot_nop (ip);
6857 add_fixed_insn (nop);
6858 insert_into_history (0, 1, nop);
6859 if (mips_relax.sequence)
6860 mips_relax.sizes[mips_relax.sequence - 1] += insn_length (nop);
6861 }
6862 break;
6863
6864 case APPEND_ADD_COMPACT:
6865 /* Convert MIPS16 jr/jalr into a "compact" jump. */
6866 gas_assert (mips_opts.mips16);
6867 ip->insn_opcode |= 0x0080;
6868 find_altered_mips16_opcode (ip);
6869 install_insn (ip);
6870 insert_into_history (0, 1, ip);
6871 break;
6872
6873 case APPEND_SWAP:
6874 {
6875 struct mips_cl_insn delay = history[0];
6876 if (mips_opts.mips16)
6877 {
6878 know (delay.frag == ip->frag);
6879 move_insn (ip, delay.frag, delay.where);
6880 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
6881 }
6882 else if (relaxed_branch || delay.frag != ip->frag)
6883 {
6884 /* Add the delay slot instruction to the end of the
6885 current frag and shrink the fixed part of the
6886 original frag. If the branch occupies the tail of
6887 the latter, move it backwards to cover the gap. */
6888 delay.frag->fr_fix -= branch_disp;
6889 if (delay.frag == ip->frag)
6890 move_insn (ip, ip->frag, ip->where - branch_disp);
6891 add_fixed_insn (&delay);
6892 }
6893 else
6894 {
6895 move_insn (&delay, ip->frag,
6896 ip->where - branch_disp + insn_length (ip));
6897 move_insn (ip, history[0].frag, history[0].where);
6898 }
6899 history[0] = *ip;
6900 delay.fixed_p = 1;
6901 insert_into_history (0, 1, &delay);
6902 }
6903 break;
6904 }
6905
6906 /* If we have just completed an unconditional branch, clear the history. */
6907 if ((delayed_branch_p (&history[1]) && uncond_branch_p (&history[1]))
6908 || (compact_branch_p (&history[0]) && uncond_branch_p (&history[0])))
6909 {
6910 unsigned int i;
6911
6912 mips_no_prev_insn ();
6913
6914 for (i = 0; i < ARRAY_SIZE (history); i++)
6915 history[i].cleared_p = 1;
6916 }
6917
6918 /* We need to emit a label at the end of branch-likely macros. */
6919 if (emit_branch_likely_macro)
6920 {
6921 emit_branch_likely_macro = FALSE;
6922 micromips_add_label ();
6923 }
6924
6925 /* We just output an insn, so the next one doesn't have a label. */
6926 mips_clear_insn_labels ();
6927 }
6928
6929 /* Forget that there was any previous instruction or label.
6930 When BRANCH is true, the branch history is also flushed. */
6931
6932 static void
6933 mips_no_prev_insn (void)
6934 {
6935 prev_nop_frag = NULL;
6936 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
6937 mips_clear_insn_labels ();
6938 }
6939
6940 /* This function must be called before we emit something other than
6941 instructions. It is like mips_no_prev_insn except that it inserts
6942 any NOPS that might be needed by previous instructions. */
6943
6944 void
6945 mips_emit_delays (void)
6946 {
6947 if (! mips_opts.noreorder)
6948 {
6949 int nops = nops_for_insn (0, history, NULL);
6950 if (nops > 0)
6951 {
6952 while (nops-- > 0)
6953 add_fixed_insn (NOP_INSN);
6954 mips_move_text_labels ();
6955 }
6956 }
6957 mips_no_prev_insn ();
6958 }
6959
6960 /* Start a (possibly nested) noreorder block. */
6961
6962 static void
6963 start_noreorder (void)
6964 {
6965 if (mips_opts.noreorder == 0)
6966 {
6967 unsigned int i;
6968 int nops;
6969
6970 /* None of the instructions before the .set noreorder can be moved. */
6971 for (i = 0; i < ARRAY_SIZE (history); i++)
6972 history[i].fixed_p = 1;
6973
6974 /* Insert any nops that might be needed between the .set noreorder
6975 block and the previous instructions. We will later remove any
6976 nops that turn out not to be needed. */
6977 nops = nops_for_insn (0, history, NULL);
6978 if (nops > 0)
6979 {
6980 if (mips_optimize != 0)
6981 {
6982 /* Record the frag which holds the nop instructions, so
6983 that we can remove them if we don't need them. */
6984 frag_grow (nops * NOP_INSN_SIZE);
6985 prev_nop_frag = frag_now;
6986 prev_nop_frag_holds = nops;
6987 prev_nop_frag_required = 0;
6988 prev_nop_frag_since = 0;
6989 }
6990
6991 for (; nops > 0; --nops)
6992 add_fixed_insn (NOP_INSN);
6993
6994 /* Move on to a new frag, so that it is safe to simply
6995 decrease the size of prev_nop_frag. */
6996 frag_wane (frag_now);
6997 frag_new (0);
6998 mips_move_text_labels ();
6999 }
7000 mips_mark_labels ();
7001 mips_clear_insn_labels ();
7002 }
7003 mips_opts.noreorder++;
7004 mips_any_noreorder = 1;
7005 }
7006
7007 /* End a nested noreorder block. */
7008
7009 static void
7010 end_noreorder (void)
7011 {
7012 mips_opts.noreorder--;
7013 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
7014 {
7015 /* Commit to inserting prev_nop_frag_required nops and go back to
7016 handling nop insertion the .set reorder way. */
7017 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
7018 * NOP_INSN_SIZE);
7019 insert_into_history (prev_nop_frag_since,
7020 prev_nop_frag_required, NOP_INSN);
7021 prev_nop_frag = NULL;
7022 }
7023 }
7024
7025 /* Sign-extend 32-bit mode constants that have bit 31 set and all
7026 higher bits unset. */
7027
7028 static void
7029 normalize_constant_expr (expressionS *ex)
7030 {
7031 if (ex->X_op == O_constant
7032 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
7033 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
7034 - 0x80000000);
7035 }
7036
7037 /* Sign-extend 32-bit mode address offsets that have bit 31 set and
7038 all higher bits unset. */
7039
7040 static void
7041 normalize_address_expr (expressionS *ex)
7042 {
7043 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
7044 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
7045 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
7046 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
7047 - 0x80000000);
7048 }
7049
7050 /* Try to match TOKENS against OPCODE, storing the result in INSN.
7051 Return true if the match was successful.
7052
7053 OPCODE_EXTRA is a value that should be ORed into the opcode
7054 (used for VU0 channel suffixes, etc.). MORE_ALTS is true if
7055 there are more alternatives after OPCODE and SOFT_MATCH is
7056 as for mips_arg_info. */
7057
7058 static bfd_boolean
7059 match_insn (struct mips_cl_insn *insn, const struct mips_opcode *opcode,
7060 struct mips_operand_token *tokens, unsigned int opcode_extra,
7061 bfd_boolean more_alts, bfd_boolean soft_match)
7062 {
7063 const char *args;
7064 struct mips_arg_info arg;
7065 const struct mips_operand *operand;
7066 char c;
7067
7068 imm_expr.X_op = O_absent;
7069 imm2_expr.X_op = O_absent;
7070 offset_expr.X_op = O_absent;
7071 offset_reloc[0] = BFD_RELOC_UNUSED;
7072 offset_reloc[1] = BFD_RELOC_UNUSED;
7073 offset_reloc[2] = BFD_RELOC_UNUSED;
7074
7075 create_insn (insn, opcode);
7076 insn->insn_opcode |= opcode_extra;
7077 memset (&arg, 0, sizeof (arg));
7078 arg.insn = insn;
7079 arg.token = tokens;
7080 arg.argnum = 1;
7081 arg.last_regno = ILLEGAL_REG;
7082 arg.dest_regno = ILLEGAL_REG;
7083 arg.soft_match = soft_match;
7084 for (args = opcode->args;; ++args)
7085 {
7086 if (arg.token->type == OT_END)
7087 {
7088 /* Handle unary instructions in which only one operand is given.
7089 The source is then the same as the destination. */
7090 if (arg.opnum == 1 && *args == ',')
7091 {
7092 operand = (mips_opts.micromips
7093 ? decode_micromips_operand (args + 1)
7094 : decode_mips_operand (args + 1));
7095 if (operand && mips_optional_operand_p (operand))
7096 {
7097 arg.token = tokens;
7098 arg.argnum = 1;
7099 continue;
7100 }
7101 }
7102
7103 /* Treat elided base registers as $0. */
7104 if (strcmp (args, "(b)") == 0)
7105 args += 3;
7106
7107 if (args[0] == '+')
7108 switch (args[1])
7109 {
7110 case 'K':
7111 case 'N':
7112 /* The register suffix is optional. */
7113 args += 2;
7114 break;
7115 }
7116
7117 /* Fail the match if there were too few operands. */
7118 if (*args)
7119 return FALSE;
7120
7121 /* Successful match. */
7122 clear_insn_error ();
7123 if (arg.dest_regno == arg.last_regno
7124 && strncmp (insn->insn_mo->name, "jalr", 4) == 0)
7125 {
7126 if (arg.opnum == 2)
7127 set_insn_error
7128 (0, _("Source and destination must be different"));
7129 else if (arg.last_regno == 31)
7130 set_insn_error
7131 (0, _("A destination register must be supplied"));
7132 }
7133 check_completed_insn (&arg);
7134 return TRUE;
7135 }
7136
7137 /* Fail the match if the line has too many operands. */
7138 if (*args == 0)
7139 return FALSE;
7140
7141 /* Handle characters that need to match exactly. */
7142 if (*args == '(' || *args == ')' || *args == ',')
7143 {
7144 if (match_char (&arg, *args))
7145 continue;
7146 return FALSE;
7147 }
7148 if (*args == '#')
7149 {
7150 ++args;
7151 if (arg.token->type == OT_DOUBLE_CHAR
7152 && arg.token->u.ch == *args)
7153 {
7154 ++arg.token;
7155 continue;
7156 }
7157 return FALSE;
7158 }
7159
7160 /* Handle special macro operands. Work out the properties of
7161 other operands. */
7162 arg.opnum += 1;
7163 arg.lax_max = FALSE;
7164 switch (*args)
7165 {
7166 case '+':
7167 switch (args[1])
7168 {
7169 case '1':
7170 case '2':
7171 case '3':
7172 case '4':
7173 case 'B':
7174 case 'C':
7175 case 'F':
7176 case 'G':
7177 case 'H':
7178 case 'J':
7179 case 'Q':
7180 case 'S':
7181 case 's':
7182 /* If these integer forms come last, there is no other
7183 form of the instruction that could match. Prefer to
7184 give detailed error messages where possible. */
7185 if (args[2] == 0)
7186 arg.soft_match = FALSE;
7187 break;
7188
7189 case 'I':
7190 /* "+I" is like "I", except that imm2_expr is used. */
7191 if (match_const_int (&arg, &imm2_expr.X_add_number, 0))
7192 imm2_expr.X_op = O_constant;
7193 else
7194 set_insn_error (arg.argnum, _("absolute expression required"));
7195 if (HAVE_32BIT_GPRS)
7196 normalize_constant_expr (&imm2_expr);
7197 ++args;
7198 continue;
7199
7200 case 'i':
7201 *offset_reloc = BFD_RELOC_MIPS_JMP;
7202 break;
7203 }
7204 break;
7205
7206 case '\'':
7207 case ':':
7208 case '@':
7209 case '^':
7210 case '$':
7211 case '\\':
7212 case '%':
7213 case '|':
7214 case '0':
7215 case '1':
7216 case '2':
7217 case '3':
7218 case '4':
7219 case '5':
7220 case '6':
7221 case '8':
7222 case 'B':
7223 case 'C':
7224 case 'J':
7225 case 'O':
7226 case 'P':
7227 case 'Q':
7228 case 'c':
7229 case 'h':
7230 case 'q':
7231 /* If these integer forms come last, there is no other
7232 form of the instruction that could match. Prefer to
7233 give detailed error messages where possible. */
7234 if (args[1] == 0)
7235 arg.soft_match = FALSE;
7236 break;
7237
7238 case 'I':
7239 if (match_const_int (&arg, &imm_expr.X_add_number, 0))
7240 imm_expr.X_op = O_constant;
7241 else
7242 set_insn_error (arg.argnum, _("absolute expression required"));
7243 if (HAVE_32BIT_GPRS)
7244 normalize_constant_expr (&imm_expr);
7245 continue;
7246
7247 case 'A':
7248 if (arg.token->type == OT_CHAR && arg.token->u.ch == '(')
7249 {
7250 /* Assume that the offset has been elided and that what
7251 we saw was a base register. The match will fail later
7252 if that assumption turns out to be wrong. */
7253 offset_expr.X_op = O_constant;
7254 offset_expr.X_add_number = 0;
7255 }
7256 else if (match_expression (&arg, &offset_expr, offset_reloc))
7257 normalize_address_expr (&offset_expr);
7258 else
7259 set_insn_error (arg.argnum, _("absolute expression required"));
7260 continue;
7261
7262 case 'F':
7263 if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7264 8, TRUE))
7265 set_insn_error (arg.argnum,
7266 _("floating-point expression required"));
7267 continue;
7268
7269 case 'L':
7270 if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7271 8, FALSE))
7272 set_insn_error (arg.argnum,
7273 _("floating-point expression required"));
7274 continue;
7275
7276 case 'f':
7277 if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7278 4, TRUE))
7279 set_insn_error (arg.argnum,
7280 _("floating-point expression required"));
7281 continue;
7282
7283 case 'l':
7284 if (!match_float_constant (&arg, &imm_expr, &offset_expr,
7285 4, FALSE))
7286 set_insn_error (arg.argnum,
7287 _("floating-point expression required"));
7288 continue;
7289
7290 /* ??? This is the traditional behavior, but is flaky if
7291 there are alternative versions of the same instruction
7292 for different subarchitectures. The next alternative
7293 might not be suitable. */
7294 case 'j':
7295 /* For compatibility with older assemblers, we accept
7296 0x8000-0xffff as signed 16-bit numbers when only
7297 signed numbers are allowed. */
7298 arg.lax_max = !more_alts;
7299 case 'i':
7300 /* Only accept non-constant operands if this is the
7301 final alternative. Later alternatives might include
7302 a macro implementation. */
7303 arg.allow_nonconst = !more_alts;
7304 break;
7305
7306 case 'u':
7307 /* There are no macro implementations for out-of-range values. */
7308 arg.allow_nonconst = TRUE;
7309 break;
7310
7311 case 'o':
7312 /* There should always be a macro implementation. */
7313 arg.allow_nonconst = FALSE;
7314 break;
7315
7316 case 'p':
7317 *offset_reloc = BFD_RELOC_16_PCREL_S2;
7318 break;
7319
7320 case 'a':
7321 *offset_reloc = BFD_RELOC_MIPS_JMP;
7322 break;
7323
7324 case 'm':
7325 gas_assert (mips_opts.micromips);
7326 c = args[1];
7327 switch (c)
7328 {
7329 case 'D':
7330 case 'E':
7331 if (!forced_insn_length)
7332 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
7333 else if (c == 'D')
7334 *offset_reloc = BFD_RELOC_MICROMIPS_10_PCREL_S1;
7335 else
7336 *offset_reloc = BFD_RELOC_MICROMIPS_7_PCREL_S1;
7337 break;
7338 }
7339 break;
7340 }
7341
7342 operand = (mips_opts.micromips
7343 ? decode_micromips_operand (args)
7344 : decode_mips_operand (args));
7345 if (!operand)
7346 abort ();
7347
7348 /* Skip prefixes. */
7349 if (*args == '+' || *args == 'm')
7350 args++;
7351
7352 if (mips_optional_operand_p (operand)
7353 && args[1] == ','
7354 && (arg.token[0].type != OT_REG
7355 || arg.token[1].type == OT_END))
7356 {
7357 /* Assume that the register has been elided and is the
7358 same as the first operand. */
7359 arg.token = tokens;
7360 arg.argnum = 1;
7361 }
7362
7363 if (!match_operand (&arg, operand))
7364 return FALSE;
7365 }
7366 }
7367
7368 /* Like match_insn, but for MIPS16. */
7369
7370 static bfd_boolean
7371 match_mips16_insn (struct mips_cl_insn *insn, const struct mips_opcode *opcode,
7372 struct mips_operand_token *tokens, bfd_boolean soft_match)
7373 {
7374 const char *args;
7375 const struct mips_operand *operand;
7376 const struct mips_operand *ext_operand;
7377 struct mips_arg_info arg;
7378 int relax_char;
7379
7380 create_insn (insn, opcode);
7381 imm_expr.X_op = O_absent;
7382 imm2_expr.X_op = O_absent;
7383 offset_expr.X_op = O_absent;
7384 offset_reloc[0] = BFD_RELOC_UNUSED;
7385 offset_reloc[1] = BFD_RELOC_UNUSED;
7386 offset_reloc[2] = BFD_RELOC_UNUSED;
7387 relax_char = 0;
7388
7389 memset (&arg, 0, sizeof (arg));
7390 arg.insn = insn;
7391 arg.token = tokens;
7392 arg.argnum = 1;
7393 arg.last_regno = ILLEGAL_REG;
7394 arg.dest_regno = ILLEGAL_REG;
7395 arg.soft_match = soft_match;
7396 relax_char = 0;
7397 for (args = opcode->args;; ++args)
7398 {
7399 int c;
7400
7401 if (arg.token->type == OT_END)
7402 {
7403 offsetT value;
7404
7405 /* Handle unary instructions in which only one operand is given.
7406 The source is then the same as the destination. */
7407 if (arg.opnum == 1 && *args == ',')
7408 {
7409 operand = decode_mips16_operand (args[1], FALSE);
7410 if (operand && mips_optional_operand_p (operand))
7411 {
7412 arg.token = tokens;
7413 arg.argnum = 1;
7414 continue;
7415 }
7416 }
7417
7418 /* Fail the match if there were too few operands. */
7419 if (*args)
7420 return FALSE;
7421
7422 /* Successful match. Stuff the immediate value in now, if
7423 we can. */
7424 clear_insn_error ();
7425 if (opcode->pinfo == INSN_MACRO)
7426 {
7427 gas_assert (relax_char == 0 || relax_char == 'p');
7428 gas_assert (*offset_reloc == BFD_RELOC_UNUSED);
7429 }
7430 else if (relax_char
7431 && offset_expr.X_op == O_constant
7432 && calculate_reloc (*offset_reloc,
7433 offset_expr.X_add_number,
7434 &value))
7435 {
7436 mips16_immed (NULL, 0, relax_char, *offset_reloc, value,
7437 forced_insn_length, &insn->insn_opcode);
7438 offset_expr.X_op = O_absent;
7439 *offset_reloc = BFD_RELOC_UNUSED;
7440 }
7441 else if (relax_char && *offset_reloc != BFD_RELOC_UNUSED)
7442 {
7443 if (forced_insn_length == 2)
7444 set_insn_error (0, _("invalid unextended operand value"));
7445 forced_insn_length = 4;
7446 insn->insn_opcode |= MIPS16_EXTEND;
7447 }
7448 else if (relax_char)
7449 *offset_reloc = (int) BFD_RELOC_UNUSED + relax_char;
7450
7451 check_completed_insn (&arg);
7452 return TRUE;
7453 }
7454
7455 /* Fail the match if the line has too many operands. */
7456 if (*args == 0)
7457 return FALSE;
7458
7459 /* Handle characters that need to match exactly. */
7460 if (*args == '(' || *args == ')' || *args == ',')
7461 {
7462 if (match_char (&arg, *args))
7463 continue;
7464 return FALSE;
7465 }
7466
7467 arg.opnum += 1;
7468 c = *args;
7469 switch (c)
7470 {
7471 case 'p':
7472 case 'q':
7473 case 'A':
7474 case 'B':
7475 case 'E':
7476 relax_char = c;
7477 break;
7478
7479 case 'I':
7480 if (match_const_int (&arg, &imm_expr.X_add_number, 0))
7481 imm_expr.X_op = O_constant;
7482 else
7483 set_insn_error (arg.argnum, _("absolute expression required"));
7484 if (HAVE_32BIT_GPRS)
7485 normalize_constant_expr (&imm_expr);
7486 continue;
7487
7488 case 'a':
7489 case 'i':
7490 *offset_reloc = BFD_RELOC_MIPS16_JMP;
7491 insn->insn_opcode <<= 16;
7492 break;
7493 }
7494
7495 operand = decode_mips16_operand (c, FALSE);
7496 if (!operand)
7497 abort ();
7498
7499 /* '6' is a special case. It is used for BREAK and SDBBP,
7500 whose operands are only meaningful to the software that decodes
7501 them. This means that there is no architectural reason why
7502 they cannot be prefixed by EXTEND, but in practice,
7503 exception handlers will only look at the instruction
7504 itself. We therefore allow '6' to be extended when
7505 disassembling but not when assembling. */
7506 if (operand->type != OP_PCREL && c != '6')
7507 {
7508 ext_operand = decode_mips16_operand (c, TRUE);
7509 if (operand != ext_operand)
7510 {
7511 if (arg.token->type == OT_CHAR && arg.token->u.ch == '(')
7512 {
7513 offset_expr.X_op = O_constant;
7514 offset_expr.X_add_number = 0;
7515 relax_char = c;
7516 continue;
7517 }
7518
7519 /* We need the OT_INTEGER check because some MIPS16
7520 immediate variants are listed before the register ones. */
7521 if (arg.token->type != OT_INTEGER
7522 || !match_expression (&arg, &offset_expr, offset_reloc))
7523 return FALSE;
7524
7525 /* '8' is used for SLTI(U) and has traditionally not
7526 been allowed to take relocation operators. */
7527 if (offset_reloc[0] != BFD_RELOC_UNUSED
7528 && (ext_operand->size != 16 || c == '8'))
7529 return FALSE;
7530
7531 relax_char = c;
7532 continue;
7533 }
7534 }
7535
7536 if (mips_optional_operand_p (operand)
7537 && args[1] == ','
7538 && (arg.token[0].type != OT_REG
7539 || arg.token[1].type == OT_END))
7540 {
7541 /* Assume that the register has been elided and is the
7542 same as the first operand. */
7543 arg.token = tokens;
7544 arg.argnum = 1;
7545 }
7546
7547 if (!match_operand (&arg, operand))
7548 return FALSE;
7549 }
7550 }
7551
7552 /* Set up global variables for the start of a new macro. */
7553
7554 static void
7555 macro_start (void)
7556 {
7557 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
7558 memset (&mips_macro_warning.first_insn_sizes, 0,
7559 sizeof (mips_macro_warning.first_insn_sizes));
7560 memset (&mips_macro_warning.insns, 0, sizeof (mips_macro_warning.insns));
7561 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
7562 && delayed_branch_p (&history[0]));
7563 switch (history[0].insn_mo->pinfo2
7564 & (INSN2_BRANCH_DELAY_32BIT | INSN2_BRANCH_DELAY_16BIT))
7565 {
7566 case INSN2_BRANCH_DELAY_32BIT:
7567 mips_macro_warning.delay_slot_length = 4;
7568 break;
7569 case INSN2_BRANCH_DELAY_16BIT:
7570 mips_macro_warning.delay_slot_length = 2;
7571 break;
7572 default:
7573 mips_macro_warning.delay_slot_length = 0;
7574 break;
7575 }
7576 mips_macro_warning.first_frag = NULL;
7577 }
7578
7579 /* Given that a macro is longer than one instruction or of the wrong size,
7580 return the appropriate warning for it. Return null if no warning is
7581 needed. SUBTYPE is a bitmask of RELAX_DELAY_SLOT, RELAX_DELAY_SLOT_16BIT,
7582 RELAX_DELAY_SLOT_SIZE_FIRST, RELAX_DELAY_SLOT_SIZE_SECOND,
7583 and RELAX_NOMACRO. */
7584
7585 static const char *
7586 macro_warning (relax_substateT subtype)
7587 {
7588 if (subtype & RELAX_DELAY_SLOT)
7589 return _("Macro instruction expanded into multiple instructions"
7590 " in a branch delay slot");
7591 else if (subtype & RELAX_NOMACRO)
7592 return _("Macro instruction expanded into multiple instructions");
7593 else if (subtype & (RELAX_DELAY_SLOT_SIZE_FIRST
7594 | RELAX_DELAY_SLOT_SIZE_SECOND))
7595 return ((subtype & RELAX_DELAY_SLOT_16BIT)
7596 ? _("Macro instruction expanded into a wrong size instruction"
7597 " in a 16-bit branch delay slot")
7598 : _("Macro instruction expanded into a wrong size instruction"
7599 " in a 32-bit branch delay slot"));
7600 else
7601 return 0;
7602 }
7603
7604 /* Finish up a macro. Emit warnings as appropriate. */
7605
7606 static void
7607 macro_end (void)
7608 {
7609 /* Relaxation warning flags. */
7610 relax_substateT subtype = 0;
7611
7612 /* Check delay slot size requirements. */
7613 if (mips_macro_warning.delay_slot_length == 2)
7614 subtype |= RELAX_DELAY_SLOT_16BIT;
7615 if (mips_macro_warning.delay_slot_length != 0)
7616 {
7617 if (mips_macro_warning.delay_slot_length
7618 != mips_macro_warning.first_insn_sizes[0])
7619 subtype |= RELAX_DELAY_SLOT_SIZE_FIRST;
7620 if (mips_macro_warning.delay_slot_length
7621 != mips_macro_warning.first_insn_sizes[1])
7622 subtype |= RELAX_DELAY_SLOT_SIZE_SECOND;
7623 }
7624
7625 /* Check instruction count requirements. */
7626 if (mips_macro_warning.insns[0] > 1 || mips_macro_warning.insns[1] > 1)
7627 {
7628 if (mips_macro_warning.insns[1] > mips_macro_warning.insns[0])
7629 subtype |= RELAX_SECOND_LONGER;
7630 if (mips_opts.warn_about_macros)
7631 subtype |= RELAX_NOMACRO;
7632 if (mips_macro_warning.delay_slot_p)
7633 subtype |= RELAX_DELAY_SLOT;
7634 }
7635
7636 /* If both alternatives fail to fill a delay slot correctly,
7637 emit the warning now. */
7638 if ((subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0
7639 && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0)
7640 {
7641 relax_substateT s;
7642 const char *msg;
7643
7644 s = subtype & (RELAX_DELAY_SLOT_16BIT
7645 | RELAX_DELAY_SLOT_SIZE_FIRST
7646 | RELAX_DELAY_SLOT_SIZE_SECOND);
7647 msg = macro_warning (s);
7648 if (msg != NULL)
7649 as_warn ("%s", msg);
7650 subtype &= ~s;
7651 }
7652
7653 /* If both implementations are longer than 1 instruction, then emit the
7654 warning now. */
7655 if (mips_macro_warning.insns[0] > 1 && mips_macro_warning.insns[1] > 1)
7656 {
7657 relax_substateT s;
7658 const char *msg;
7659
7660 s = subtype & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT);
7661 msg = macro_warning (s);
7662 if (msg != NULL)
7663 as_warn ("%s", msg);
7664 subtype &= ~s;
7665 }
7666
7667 /* If any flags still set, then one implementation might need a warning
7668 and the other either will need one of a different kind or none at all.
7669 Pass any remaining flags over to relaxation. */
7670 if (mips_macro_warning.first_frag != NULL)
7671 mips_macro_warning.first_frag->fr_subtype |= subtype;
7672 }
7673
7674 /* Instruction operand formats used in macros that vary between
7675 standard MIPS and microMIPS code. */
7676
7677 static const char * const brk_fmt[2][2] = { { "c", "c" }, { "mF", "c" } };
7678 static const char * const cop12_fmt[2] = { "E,o(b)", "E,~(b)" };
7679 static const char * const jalr_fmt[2] = { "d,s", "t,s" };
7680 static const char * const lui_fmt[2] = { "t,u", "s,u" };
7681 static const char * const mem12_fmt[2] = { "t,o(b)", "t,~(b)" };
7682 static const char * const mfhl_fmt[2][2] = { { "d", "d" }, { "mj", "s" } };
7683 static const char * const shft_fmt[2] = { "d,w,<", "t,r,<" };
7684 static const char * const trap_fmt[2] = { "s,t,q", "s,t,|" };
7685
7686 #define BRK_FMT (brk_fmt[mips_opts.micromips][mips_opts.insn32])
7687 #define COP12_FMT (cop12_fmt[mips_opts.micromips])
7688 #define JALR_FMT (jalr_fmt[mips_opts.micromips])
7689 #define LUI_FMT (lui_fmt[mips_opts.micromips])
7690 #define MEM12_FMT (mem12_fmt[mips_opts.micromips])
7691 #define MFHL_FMT (mfhl_fmt[mips_opts.micromips][mips_opts.insn32])
7692 #define SHFT_FMT (shft_fmt[mips_opts.micromips])
7693 #define TRAP_FMT (trap_fmt[mips_opts.micromips])
7694
7695 /* Read a macro's relocation codes from *ARGS and store them in *R.
7696 The first argument in *ARGS will be either the code for a single
7697 relocation or -1 followed by the three codes that make up a
7698 composite relocation. */
7699
7700 static void
7701 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
7702 {
7703 int i, next;
7704
7705 next = va_arg (*args, int);
7706 if (next >= 0)
7707 r[0] = (bfd_reloc_code_real_type) next;
7708 else
7709 {
7710 for (i = 0; i < 3; i++)
7711 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
7712 /* This function is only used for 16-bit relocation fields.
7713 To make the macro code simpler, treat an unrelocated value
7714 in the same way as BFD_RELOC_LO16. */
7715 if (r[0] == BFD_RELOC_UNUSED)
7716 r[0] = BFD_RELOC_LO16;
7717 }
7718 }
7719
7720 /* Build an instruction created by a macro expansion. This is passed
7721 a pointer to the count of instructions created so far, an
7722 expression, the name of the instruction to build, an operand format
7723 string, and corresponding arguments. */
7724
7725 static void
7726 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
7727 {
7728 const struct mips_opcode *mo = NULL;
7729 bfd_reloc_code_real_type r[3];
7730 const struct mips_opcode *amo;
7731 const struct mips_operand *operand;
7732 struct hash_control *hash;
7733 struct mips_cl_insn insn;
7734 va_list args;
7735 unsigned int uval;
7736
7737 va_start (args, fmt);
7738
7739 if (mips_opts.mips16)
7740 {
7741 mips16_macro_build (ep, name, fmt, &args);
7742 va_end (args);
7743 return;
7744 }
7745
7746 r[0] = BFD_RELOC_UNUSED;
7747 r[1] = BFD_RELOC_UNUSED;
7748 r[2] = BFD_RELOC_UNUSED;
7749 hash = mips_opts.micromips ? micromips_op_hash : op_hash;
7750 amo = (struct mips_opcode *) hash_find (hash, name);
7751 gas_assert (amo);
7752 gas_assert (strcmp (name, amo->name) == 0);
7753
7754 do
7755 {
7756 /* Search until we get a match for NAME. It is assumed here that
7757 macros will never generate MDMX, MIPS-3D, or MT instructions.
7758 We try to match an instruction that fulfils the branch delay
7759 slot instruction length requirement (if any) of the previous
7760 instruction. While doing this we record the first instruction
7761 seen that matches all the other conditions and use it anyway
7762 if the requirement cannot be met; we will issue an appropriate
7763 warning later on. */
7764 if (strcmp (fmt, amo->args) == 0
7765 && amo->pinfo != INSN_MACRO
7766 && is_opcode_valid (amo)
7767 && is_size_valid (amo))
7768 {
7769 if (is_delay_slot_valid (amo))
7770 {
7771 mo = amo;
7772 break;
7773 }
7774 else if (!mo)
7775 mo = amo;
7776 }
7777
7778 ++amo;
7779 gas_assert (amo->name);
7780 }
7781 while (strcmp (name, amo->name) == 0);
7782
7783 gas_assert (mo);
7784 create_insn (&insn, mo);
7785 for (; *fmt; ++fmt)
7786 {
7787 switch (*fmt)
7788 {
7789 case ',':
7790 case '(':
7791 case ')':
7792 case 'z':
7793 break;
7794
7795 case 'i':
7796 case 'j':
7797 macro_read_relocs (&args, r);
7798 gas_assert (*r == BFD_RELOC_GPREL16
7799 || *r == BFD_RELOC_MIPS_HIGHER
7800 || *r == BFD_RELOC_HI16_S
7801 || *r == BFD_RELOC_LO16
7802 || *r == BFD_RELOC_MIPS_GOT_OFST);
7803 break;
7804
7805 case 'o':
7806 macro_read_relocs (&args, r);
7807 break;
7808
7809 case 'u':
7810 macro_read_relocs (&args, r);
7811 gas_assert (ep != NULL
7812 && (ep->X_op == O_constant
7813 || (ep->X_op == O_symbol
7814 && (*r == BFD_RELOC_MIPS_HIGHEST
7815 || *r == BFD_RELOC_HI16_S
7816 || *r == BFD_RELOC_HI16
7817 || *r == BFD_RELOC_GPREL16
7818 || *r == BFD_RELOC_MIPS_GOT_HI16
7819 || *r == BFD_RELOC_MIPS_CALL_HI16))));
7820 break;
7821
7822 case 'p':
7823 gas_assert (ep != NULL);
7824
7825 /*
7826 * This allows macro() to pass an immediate expression for
7827 * creating short branches without creating a symbol.
7828 *
7829 * We don't allow branch relaxation for these branches, as
7830 * they should only appear in ".set nomacro" anyway.
7831 */
7832 if (ep->X_op == O_constant)
7833 {
7834 /* For microMIPS we always use relocations for branches.
7835 So we should not resolve immediate values. */
7836 gas_assert (!mips_opts.micromips);
7837
7838 if ((ep->X_add_number & 3) != 0)
7839 as_bad (_("branch to misaligned address (0x%lx)"),
7840 (unsigned long) ep->X_add_number);
7841 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
7842 as_bad (_("branch address range overflow (0x%lx)"),
7843 (unsigned long) ep->X_add_number);
7844 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
7845 ep = NULL;
7846 }
7847 else
7848 *r = BFD_RELOC_16_PCREL_S2;
7849 break;
7850
7851 case 'a':
7852 gas_assert (ep != NULL);
7853 *r = BFD_RELOC_MIPS_JMP;
7854 break;
7855
7856 default:
7857 operand = (mips_opts.micromips
7858 ? decode_micromips_operand (fmt)
7859 : decode_mips_operand (fmt));
7860 if (!operand)
7861 abort ();
7862
7863 uval = va_arg (args, int);
7864 if (operand->type == OP_CLO_CLZ_DEST)
7865 uval |= (uval << 5);
7866 insn_insert_operand (&insn, operand, uval);
7867
7868 if (*fmt == '+' || *fmt == 'm')
7869 ++fmt;
7870 break;
7871 }
7872 }
7873 va_end (args);
7874 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
7875
7876 append_insn (&insn, ep, r, TRUE);
7877 }
7878
7879 static void
7880 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
7881 va_list *args)
7882 {
7883 struct mips_opcode *mo;
7884 struct mips_cl_insn insn;
7885 const struct mips_operand *operand;
7886 bfd_reloc_code_real_type r[3]
7887 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
7888
7889 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
7890 gas_assert (mo);
7891 gas_assert (strcmp (name, mo->name) == 0);
7892
7893 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
7894 {
7895 ++mo;
7896 gas_assert (mo->name);
7897 gas_assert (strcmp (name, mo->name) == 0);
7898 }
7899
7900 create_insn (&insn, mo);
7901 for (; *fmt; ++fmt)
7902 {
7903 int c;
7904
7905 c = *fmt;
7906 switch (c)
7907 {
7908 case ',':
7909 case '(':
7910 case ')':
7911 break;
7912
7913 case '0':
7914 case 'S':
7915 case 'P':
7916 case 'R':
7917 break;
7918
7919 case '<':
7920 case '>':
7921 case '4':
7922 case '5':
7923 case 'H':
7924 case 'W':
7925 case 'D':
7926 case 'j':
7927 case '8':
7928 case 'V':
7929 case 'C':
7930 case 'U':
7931 case 'k':
7932 case 'K':
7933 case 'p':
7934 case 'q':
7935 {
7936 offsetT value;
7937
7938 gas_assert (ep != NULL);
7939
7940 if (ep->X_op != O_constant)
7941 *r = (int) BFD_RELOC_UNUSED + c;
7942 else if (calculate_reloc (*r, ep->X_add_number, &value))
7943 {
7944 mips16_immed (NULL, 0, c, *r, value, 0, &insn.insn_opcode);
7945 ep = NULL;
7946 *r = BFD_RELOC_UNUSED;
7947 }
7948 }
7949 break;
7950
7951 default:
7952 operand = decode_mips16_operand (c, FALSE);
7953 if (!operand)
7954 abort ();
7955
7956 insn_insert_operand (&insn, operand, va_arg (*args, int));
7957 break;
7958 }
7959 }
7960
7961 gas_assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
7962
7963 append_insn (&insn, ep, r, TRUE);
7964 }
7965
7966 /*
7967 * Generate a "jalr" instruction with a relocation hint to the called
7968 * function. This occurs in NewABI PIC code.
7969 */
7970 static void
7971 macro_build_jalr (expressionS *ep, int cprestore)
7972 {
7973 static const bfd_reloc_code_real_type jalr_relocs[2]
7974 = { BFD_RELOC_MIPS_JALR, BFD_RELOC_MICROMIPS_JALR };
7975 bfd_reloc_code_real_type jalr_reloc = jalr_relocs[mips_opts.micromips];
7976 const char *jalr;
7977 char *f = NULL;
7978
7979 if (MIPS_JALR_HINT_P (ep))
7980 {
7981 frag_grow (8);
7982 f = frag_more (0);
7983 }
7984 if (mips_opts.micromips)
7985 {
7986 jalr = ((mips_opts.noreorder && !cprestore) || mips_opts.insn32
7987 ? "jalr" : "jalrs");
7988 if (MIPS_JALR_HINT_P (ep)
7989 || mips_opts.insn32
7990 || (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
7991 macro_build (NULL, jalr, "t,s", RA, PIC_CALL_REG);
7992 else
7993 macro_build (NULL, jalr, "mj", PIC_CALL_REG);
7994 }
7995 else
7996 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
7997 if (MIPS_JALR_HINT_P (ep))
7998 fix_new_exp (frag_now, f - frag_now->fr_literal, 4, ep, FALSE, jalr_reloc);
7999 }
8000
8001 /*
8002 * Generate a "lui" instruction.
8003 */
8004 static void
8005 macro_build_lui (expressionS *ep, int regnum)
8006 {
8007 gas_assert (! mips_opts.mips16);
8008
8009 if (ep->X_op != O_constant)
8010 {
8011 gas_assert (ep->X_op == O_symbol);
8012 /* _gp_disp is a special case, used from s_cpload.
8013 __gnu_local_gp is used if mips_no_shared. */
8014 gas_assert (mips_pic == NO_PIC
8015 || (! HAVE_NEWABI
8016 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
8017 || (! mips_in_shared
8018 && strcmp (S_GET_NAME (ep->X_add_symbol),
8019 "__gnu_local_gp") == 0));
8020 }
8021
8022 macro_build (ep, "lui", LUI_FMT, regnum, BFD_RELOC_HI16_S);
8023 }
8024
8025 /* Generate a sequence of instructions to do a load or store from a constant
8026 offset off of a base register (breg) into/from a target register (treg),
8027 using AT if necessary. */
8028 static void
8029 macro_build_ldst_constoffset (expressionS *ep, const char *op,
8030 int treg, int breg, int dbl)
8031 {
8032 gas_assert (ep->X_op == O_constant);
8033
8034 /* Sign-extending 32-bit constants makes their handling easier. */
8035 if (!dbl)
8036 normalize_constant_expr (ep);
8037
8038 /* Right now, this routine can only handle signed 32-bit constants. */
8039 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
8040 as_warn (_("operand overflow"));
8041
8042 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
8043 {
8044 /* Signed 16-bit offset will fit in the op. Easy! */
8045 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8046 }
8047 else
8048 {
8049 /* 32-bit offset, need multiple instructions and AT, like:
8050 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
8051 addu $tempreg,$tempreg,$breg
8052 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
8053 to handle the complete offset. */
8054 macro_build_lui (ep, AT);
8055 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8056 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8057
8058 if (!mips_opts.at)
8059 as_bad (_("Macro used $at after \".set noat\""));
8060 }
8061 }
8062
8063 /* set_at()
8064 * Generates code to set the $at register to true (one)
8065 * if reg is less than the immediate expression.
8066 */
8067 static void
8068 set_at (int reg, int unsignedp)
8069 {
8070 if (imm_expr.X_op == O_constant
8071 && imm_expr.X_add_number >= -0x8000
8072 && imm_expr.X_add_number < 0x8000)
8073 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
8074 AT, reg, BFD_RELOC_LO16);
8075 else
8076 {
8077 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
8078 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
8079 }
8080 }
8081
8082 /* Count the leading zeroes by performing a binary chop. This is a
8083 bulky bit of source, but performance is a LOT better for the
8084 majority of values than a simple loop to count the bits:
8085 for (lcnt = 0; (lcnt < 32); lcnt++)
8086 if ((v) & (1 << (31 - lcnt)))
8087 break;
8088 However it is not code size friendly, and the gain will drop a bit
8089 on certain cached systems.
8090 */
8091 #define COUNT_TOP_ZEROES(v) \
8092 (((v) & ~0xffff) == 0 \
8093 ? ((v) & ~0xff) == 0 \
8094 ? ((v) & ~0xf) == 0 \
8095 ? ((v) & ~0x3) == 0 \
8096 ? ((v) & ~0x1) == 0 \
8097 ? !(v) \
8098 ? 32 \
8099 : 31 \
8100 : 30 \
8101 : ((v) & ~0x7) == 0 \
8102 ? 29 \
8103 : 28 \
8104 : ((v) & ~0x3f) == 0 \
8105 ? ((v) & ~0x1f) == 0 \
8106 ? 27 \
8107 : 26 \
8108 : ((v) & ~0x7f) == 0 \
8109 ? 25 \
8110 : 24 \
8111 : ((v) & ~0xfff) == 0 \
8112 ? ((v) & ~0x3ff) == 0 \
8113 ? ((v) & ~0x1ff) == 0 \
8114 ? 23 \
8115 : 22 \
8116 : ((v) & ~0x7ff) == 0 \
8117 ? 21 \
8118 : 20 \
8119 : ((v) & ~0x3fff) == 0 \
8120 ? ((v) & ~0x1fff) == 0 \
8121 ? 19 \
8122 : 18 \
8123 : ((v) & ~0x7fff) == 0 \
8124 ? 17 \
8125 : 16 \
8126 : ((v) & ~0xffffff) == 0 \
8127 ? ((v) & ~0xfffff) == 0 \
8128 ? ((v) & ~0x3ffff) == 0 \
8129 ? ((v) & ~0x1ffff) == 0 \
8130 ? 15 \
8131 : 14 \
8132 : ((v) & ~0x7ffff) == 0 \
8133 ? 13 \
8134 : 12 \
8135 : ((v) & ~0x3fffff) == 0 \
8136 ? ((v) & ~0x1fffff) == 0 \
8137 ? 11 \
8138 : 10 \
8139 : ((v) & ~0x7fffff) == 0 \
8140 ? 9 \
8141 : 8 \
8142 : ((v) & ~0xfffffff) == 0 \
8143 ? ((v) & ~0x3ffffff) == 0 \
8144 ? ((v) & ~0x1ffffff) == 0 \
8145 ? 7 \
8146 : 6 \
8147 : ((v) & ~0x7ffffff) == 0 \
8148 ? 5 \
8149 : 4 \
8150 : ((v) & ~0x3fffffff) == 0 \
8151 ? ((v) & ~0x1fffffff) == 0 \
8152 ? 3 \
8153 : 2 \
8154 : ((v) & ~0x7fffffff) == 0 \
8155 ? 1 \
8156 : 0)
8157
8158 /* load_register()
8159 * This routine generates the least number of instructions necessary to load
8160 * an absolute expression value into a register.
8161 */
8162 static void
8163 load_register (int reg, expressionS *ep, int dbl)
8164 {
8165 int freg;
8166 expressionS hi32, lo32;
8167
8168 if (ep->X_op != O_big)
8169 {
8170 gas_assert (ep->X_op == O_constant);
8171
8172 /* Sign-extending 32-bit constants makes their handling easier. */
8173 if (!dbl)
8174 normalize_constant_expr (ep);
8175
8176 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
8177 {
8178 /* We can handle 16 bit signed values with an addiu to
8179 $zero. No need to ever use daddiu here, since $zero and
8180 the result are always correct in 32 bit mode. */
8181 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8182 return;
8183 }
8184 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
8185 {
8186 /* We can handle 16 bit unsigned values with an ori to
8187 $zero. */
8188 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
8189 return;
8190 }
8191 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
8192 {
8193 /* 32 bit values require an lui. */
8194 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
8195 if ((ep->X_add_number & 0xffff) != 0)
8196 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
8197 return;
8198 }
8199 }
8200
8201 /* The value is larger than 32 bits. */
8202
8203 if (!dbl || HAVE_32BIT_GPRS)
8204 {
8205 char value[32];
8206
8207 sprintf_vma (value, ep->X_add_number);
8208 as_bad (_("Number (0x%s) larger than 32 bits"), value);
8209 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8210 return;
8211 }
8212
8213 if (ep->X_op != O_big)
8214 {
8215 hi32 = *ep;
8216 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
8217 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
8218 hi32.X_add_number &= 0xffffffff;
8219 lo32 = *ep;
8220 lo32.X_add_number &= 0xffffffff;
8221 }
8222 else
8223 {
8224 gas_assert (ep->X_add_number > 2);
8225 if (ep->X_add_number == 3)
8226 generic_bignum[3] = 0;
8227 else if (ep->X_add_number > 4)
8228 as_bad (_("Number larger than 64 bits"));
8229 lo32.X_op = O_constant;
8230 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
8231 hi32.X_op = O_constant;
8232 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
8233 }
8234
8235 if (hi32.X_add_number == 0)
8236 freg = 0;
8237 else
8238 {
8239 int shift, bit;
8240 unsigned long hi, lo;
8241
8242 if (hi32.X_add_number == (offsetT) 0xffffffff)
8243 {
8244 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
8245 {
8246 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8247 return;
8248 }
8249 if (lo32.X_add_number & 0x80000000)
8250 {
8251 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
8252 if (lo32.X_add_number & 0xffff)
8253 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
8254 return;
8255 }
8256 }
8257
8258 /* Check for 16bit shifted constant. We know that hi32 is
8259 non-zero, so start the mask on the first bit of the hi32
8260 value. */
8261 shift = 17;
8262 do
8263 {
8264 unsigned long himask, lomask;
8265
8266 if (shift < 32)
8267 {
8268 himask = 0xffff >> (32 - shift);
8269 lomask = (0xffff << shift) & 0xffffffff;
8270 }
8271 else
8272 {
8273 himask = 0xffff << (shift - 32);
8274 lomask = 0;
8275 }
8276 if ((hi32.X_add_number & ~(offsetT) himask) == 0
8277 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
8278 {
8279 expressionS tmp;
8280
8281 tmp.X_op = O_constant;
8282 if (shift < 32)
8283 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
8284 | (lo32.X_add_number >> shift));
8285 else
8286 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
8287 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
8288 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", SHFT_FMT,
8289 reg, reg, (shift >= 32) ? shift - 32 : shift);
8290 return;
8291 }
8292 ++shift;
8293 }
8294 while (shift <= (64 - 16));
8295
8296 /* Find the bit number of the lowest one bit, and store the
8297 shifted value in hi/lo. */
8298 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
8299 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
8300 if (lo != 0)
8301 {
8302 bit = 0;
8303 while ((lo & 1) == 0)
8304 {
8305 lo >>= 1;
8306 ++bit;
8307 }
8308 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
8309 hi >>= bit;
8310 }
8311 else
8312 {
8313 bit = 32;
8314 while ((hi & 1) == 0)
8315 {
8316 hi >>= 1;
8317 ++bit;
8318 }
8319 lo = hi;
8320 hi = 0;
8321 }
8322
8323 /* Optimize if the shifted value is a (power of 2) - 1. */
8324 if ((hi == 0 && ((lo + 1) & lo) == 0)
8325 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
8326 {
8327 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
8328 if (shift != 0)
8329 {
8330 expressionS tmp;
8331
8332 /* This instruction will set the register to be all
8333 ones. */
8334 tmp.X_op = O_constant;
8335 tmp.X_add_number = (offsetT) -1;
8336 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
8337 if (bit != 0)
8338 {
8339 bit += shift;
8340 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", SHFT_FMT,
8341 reg, reg, (bit >= 32) ? bit - 32 : bit);
8342 }
8343 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", SHFT_FMT,
8344 reg, reg, (shift >= 32) ? shift - 32 : shift);
8345 return;
8346 }
8347 }
8348
8349 /* Sign extend hi32 before calling load_register, because we can
8350 generally get better code when we load a sign extended value. */
8351 if ((hi32.X_add_number & 0x80000000) != 0)
8352 hi32.X_add_number |= ~(offsetT) 0xffffffff;
8353 load_register (reg, &hi32, 0);
8354 freg = reg;
8355 }
8356 if ((lo32.X_add_number & 0xffff0000) == 0)
8357 {
8358 if (freg != 0)
8359 {
8360 macro_build (NULL, "dsll32", SHFT_FMT, reg, freg, 0);
8361 freg = reg;
8362 }
8363 }
8364 else
8365 {
8366 expressionS mid16;
8367
8368 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
8369 {
8370 macro_build (&lo32, "lui", LUI_FMT, reg, BFD_RELOC_HI16);
8371 macro_build (NULL, "dsrl32", SHFT_FMT, reg, reg, 0);
8372 return;
8373 }
8374
8375 if (freg != 0)
8376 {
8377 macro_build (NULL, "dsll", SHFT_FMT, reg, freg, 16);
8378 freg = reg;
8379 }
8380 mid16 = lo32;
8381 mid16.X_add_number >>= 16;
8382 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
8383 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
8384 freg = reg;
8385 }
8386 if ((lo32.X_add_number & 0xffff) != 0)
8387 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
8388 }
8389
8390 static inline void
8391 load_delay_nop (void)
8392 {
8393 if (!gpr_interlocks)
8394 macro_build (NULL, "nop", "");
8395 }
8396
8397 /* Load an address into a register. */
8398
8399 static void
8400 load_address (int reg, expressionS *ep, int *used_at)
8401 {
8402 if (ep->X_op != O_constant
8403 && ep->X_op != O_symbol)
8404 {
8405 as_bad (_("expression too complex"));
8406 ep->X_op = O_constant;
8407 }
8408
8409 if (ep->X_op == O_constant)
8410 {
8411 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
8412 return;
8413 }
8414
8415 if (mips_pic == NO_PIC)
8416 {
8417 /* If this is a reference to a GP relative symbol, we want
8418 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
8419 Otherwise we want
8420 lui $reg,<sym> (BFD_RELOC_HI16_S)
8421 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
8422 If we have an addend, we always use the latter form.
8423
8424 With 64bit address space and a usable $at we want
8425 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8426 lui $at,<sym> (BFD_RELOC_HI16_S)
8427 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
8428 daddiu $at,<sym> (BFD_RELOC_LO16)
8429 dsll32 $reg,0
8430 daddu $reg,$reg,$at
8431
8432 If $at is already in use, we use a path which is suboptimal
8433 on superscalar processors.
8434 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
8435 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
8436 dsll $reg,16
8437 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
8438 dsll $reg,16
8439 daddiu $reg,<sym> (BFD_RELOC_LO16)
8440
8441 For GP relative symbols in 64bit address space we can use
8442 the same sequence as in 32bit address space. */
8443 if (HAVE_64BIT_SYMBOLS)
8444 {
8445 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
8446 && !nopic_need_relax (ep->X_add_symbol, 1))
8447 {
8448 relax_start (ep->X_add_symbol);
8449 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
8450 mips_gp_register, BFD_RELOC_GPREL16);
8451 relax_switch ();
8452 }
8453
8454 if (*used_at == 0 && mips_opts.at)
8455 {
8456 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
8457 macro_build (ep, "lui", LUI_FMT, AT, BFD_RELOC_HI16_S);
8458 macro_build (ep, "daddiu", "t,r,j", reg, reg,
8459 BFD_RELOC_MIPS_HIGHER);
8460 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
8461 macro_build (NULL, "dsll32", SHFT_FMT, reg, reg, 0);
8462 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
8463 *used_at = 1;
8464 }
8465 else
8466 {
8467 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_HIGHEST);
8468 macro_build (ep, "daddiu", "t,r,j", reg, reg,
8469 BFD_RELOC_MIPS_HIGHER);
8470 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
8471 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
8472 macro_build (NULL, "dsll", SHFT_FMT, reg, reg, 16);
8473 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
8474 }
8475
8476 if (mips_relax.sequence)
8477 relax_end ();
8478 }
8479 else
8480 {
8481 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
8482 && !nopic_need_relax (ep->X_add_symbol, 1))
8483 {
8484 relax_start (ep->X_add_symbol);
8485 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
8486 mips_gp_register, BFD_RELOC_GPREL16);
8487 relax_switch ();
8488 }
8489 macro_build_lui (ep, reg);
8490 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
8491 reg, reg, BFD_RELOC_LO16);
8492 if (mips_relax.sequence)
8493 relax_end ();
8494 }
8495 }
8496 else if (!mips_big_got)
8497 {
8498 expressionS ex;
8499
8500 /* If this is a reference to an external symbol, we want
8501 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
8502 Otherwise we want
8503 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
8504 nop
8505 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
8506 If there is a constant, it must be added in after.
8507
8508 If we have NewABI, we want
8509 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
8510 unless we're referencing a global symbol with a non-zero
8511 offset, in which case cst must be added separately. */
8512 if (HAVE_NEWABI)
8513 {
8514 if (ep->X_add_number)
8515 {
8516 ex.X_add_number = ep->X_add_number;
8517 ep->X_add_number = 0;
8518 relax_start (ep->X_add_symbol);
8519 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
8520 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
8521 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
8522 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
8523 ex.X_op = O_constant;
8524 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
8525 reg, reg, BFD_RELOC_LO16);
8526 ep->X_add_number = ex.X_add_number;
8527 relax_switch ();
8528 }
8529 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
8530 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
8531 if (mips_relax.sequence)
8532 relax_end ();
8533 }
8534 else
8535 {
8536 ex.X_add_number = ep->X_add_number;
8537 ep->X_add_number = 0;
8538 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
8539 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8540 load_delay_nop ();
8541 relax_start (ep->X_add_symbol);
8542 relax_switch ();
8543 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
8544 BFD_RELOC_LO16);
8545 relax_end ();
8546
8547 if (ex.X_add_number != 0)
8548 {
8549 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
8550 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
8551 ex.X_op = O_constant;
8552 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
8553 reg, reg, BFD_RELOC_LO16);
8554 }
8555 }
8556 }
8557 else if (mips_big_got)
8558 {
8559 expressionS ex;
8560
8561 /* This is the large GOT case. If this is a reference to an
8562 external symbol, we want
8563 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
8564 addu $reg,$reg,$gp
8565 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
8566
8567 Otherwise, for a reference to a local symbol in old ABI, we want
8568 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
8569 nop
8570 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
8571 If there is a constant, it must be added in after.
8572
8573 In the NewABI, for local symbols, with or without offsets, we want:
8574 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
8575 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
8576 */
8577 if (HAVE_NEWABI)
8578 {
8579 ex.X_add_number = ep->X_add_number;
8580 ep->X_add_number = 0;
8581 relax_start (ep->X_add_symbol);
8582 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
8583 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8584 reg, reg, mips_gp_register);
8585 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
8586 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
8587 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
8588 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
8589 else if (ex.X_add_number)
8590 {
8591 ex.X_op = O_constant;
8592 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
8593 BFD_RELOC_LO16);
8594 }
8595
8596 ep->X_add_number = ex.X_add_number;
8597 relax_switch ();
8598 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
8599 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
8600 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
8601 BFD_RELOC_MIPS_GOT_OFST);
8602 relax_end ();
8603 }
8604 else
8605 {
8606 ex.X_add_number = ep->X_add_number;
8607 ep->X_add_number = 0;
8608 relax_start (ep->X_add_symbol);
8609 macro_build (ep, "lui", LUI_FMT, reg, BFD_RELOC_MIPS_GOT_HI16);
8610 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
8611 reg, reg, mips_gp_register);
8612 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
8613 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
8614 relax_switch ();
8615 if (reg_needs_delay (mips_gp_register))
8616 {
8617 /* We need a nop before loading from $gp. This special
8618 check is required because the lui which starts the main
8619 instruction stream does not refer to $gp, and so will not
8620 insert the nop which may be required. */
8621 macro_build (NULL, "nop", "");
8622 }
8623 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
8624 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8625 load_delay_nop ();
8626 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
8627 BFD_RELOC_LO16);
8628 relax_end ();
8629
8630 if (ex.X_add_number != 0)
8631 {
8632 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
8633 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
8634 ex.X_op = O_constant;
8635 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
8636 BFD_RELOC_LO16);
8637 }
8638 }
8639 }
8640 else
8641 abort ();
8642
8643 if (!mips_opts.at && *used_at == 1)
8644 as_bad (_("Macro used $at after \".set noat\""));
8645 }
8646
8647 /* Move the contents of register SOURCE into register DEST. */
8648
8649 static void
8650 move_register (int dest, int source)
8651 {
8652 /* Prefer to use a 16-bit microMIPS instruction unless the previous
8653 instruction specifically requires a 32-bit one. */
8654 if (mips_opts.micromips
8655 && !mips_opts.insn32
8656 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
8657 macro_build (NULL, "move", "mp,mj", dest, source);
8658 else
8659 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
8660 dest, source, 0);
8661 }
8662
8663 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
8664 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
8665 The two alternatives are:
8666
8667 Global symbol Local sybmol
8668 ------------- ------------
8669 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
8670 ... ...
8671 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
8672
8673 load_got_offset emits the first instruction and add_got_offset
8674 emits the second for a 16-bit offset or add_got_offset_hilo emits
8675 a sequence to add a 32-bit offset using a scratch register. */
8676
8677 static void
8678 load_got_offset (int dest, expressionS *local)
8679 {
8680 expressionS global;
8681
8682 global = *local;
8683 global.X_add_number = 0;
8684
8685 relax_start (local->X_add_symbol);
8686 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
8687 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8688 relax_switch ();
8689 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
8690 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8691 relax_end ();
8692 }
8693
8694 static void
8695 add_got_offset (int dest, expressionS *local)
8696 {
8697 expressionS global;
8698
8699 global.X_op = O_constant;
8700 global.X_op_symbol = NULL;
8701 global.X_add_symbol = NULL;
8702 global.X_add_number = local->X_add_number;
8703
8704 relax_start (local->X_add_symbol);
8705 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
8706 dest, dest, BFD_RELOC_LO16);
8707 relax_switch ();
8708 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
8709 relax_end ();
8710 }
8711
8712 static void
8713 add_got_offset_hilo (int dest, expressionS *local, int tmp)
8714 {
8715 expressionS global;
8716 int hold_mips_optimize;
8717
8718 global.X_op = O_constant;
8719 global.X_op_symbol = NULL;
8720 global.X_add_symbol = NULL;
8721 global.X_add_number = local->X_add_number;
8722
8723 relax_start (local->X_add_symbol);
8724 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
8725 relax_switch ();
8726 /* Set mips_optimize around the lui instruction to avoid
8727 inserting an unnecessary nop after the lw. */
8728 hold_mips_optimize = mips_optimize;
8729 mips_optimize = 2;
8730 macro_build_lui (&global, tmp);
8731 mips_optimize = hold_mips_optimize;
8732 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
8733 relax_end ();
8734
8735 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
8736 }
8737
8738 /* Emit a sequence of instructions to emulate a branch likely operation.
8739 BR is an ordinary branch corresponding to one to be emulated. BRNEG
8740 is its complementing branch with the original condition negated.
8741 CALL is set if the original branch specified the link operation.
8742 EP, FMT, SREG and TREG specify the usual macro_build() parameters.
8743
8744 Code like this is produced in the noreorder mode:
8745
8746 BRNEG <args>, 1f
8747 nop
8748 b <sym>
8749 delay slot (executed only if branch taken)
8750 1:
8751
8752 or, if CALL is set:
8753
8754 BRNEG <args>, 1f
8755 nop
8756 bal <sym>
8757 delay slot (executed only if branch taken)
8758 1:
8759
8760 In the reorder mode the delay slot would be filled with a nop anyway,
8761 so code produced is simply:
8762
8763 BR <args>, <sym>
8764 nop
8765
8766 This function is used when producing code for the microMIPS ASE that
8767 does not implement branch likely instructions in hardware. */
8768
8769 static void
8770 macro_build_branch_likely (const char *br, const char *brneg,
8771 int call, expressionS *ep, const char *fmt,
8772 unsigned int sreg, unsigned int treg)
8773 {
8774 int noreorder = mips_opts.noreorder;
8775 expressionS expr1;
8776
8777 gas_assert (mips_opts.micromips);
8778 start_noreorder ();
8779 if (noreorder)
8780 {
8781 micromips_label_expr (&expr1);
8782 macro_build (&expr1, brneg, fmt, sreg, treg);
8783 macro_build (NULL, "nop", "");
8784 macro_build (ep, call ? "bal" : "b", "p");
8785
8786 /* Set to true so that append_insn adds a label. */
8787 emit_branch_likely_macro = TRUE;
8788 }
8789 else
8790 {
8791 macro_build (ep, br, fmt, sreg, treg);
8792 macro_build (NULL, "nop", "");
8793 }
8794 end_noreorder ();
8795 }
8796
8797 /* Emit a coprocessor branch-likely macro specified by TYPE, using CC as
8798 the condition code tested. EP specifies the branch target. */
8799
8800 static void
8801 macro_build_branch_ccl (int type, expressionS *ep, unsigned int cc)
8802 {
8803 const int call = 0;
8804 const char *brneg;
8805 const char *br;
8806
8807 switch (type)
8808 {
8809 case M_BC1FL:
8810 br = "bc1f";
8811 brneg = "bc1t";
8812 break;
8813 case M_BC1TL:
8814 br = "bc1t";
8815 brneg = "bc1f";
8816 break;
8817 case M_BC2FL:
8818 br = "bc2f";
8819 brneg = "bc2t";
8820 break;
8821 case M_BC2TL:
8822 br = "bc2t";
8823 brneg = "bc2f";
8824 break;
8825 default:
8826 abort ();
8827 }
8828 macro_build_branch_likely (br, brneg, call, ep, "N,p", cc, ZERO);
8829 }
8830
8831 /* Emit a two-argument branch macro specified by TYPE, using SREG as
8832 the register tested. EP specifies the branch target. */
8833
8834 static void
8835 macro_build_branch_rs (int type, expressionS *ep, unsigned int sreg)
8836 {
8837 const char *brneg = NULL;
8838 const char *br;
8839 int call = 0;
8840
8841 switch (type)
8842 {
8843 case M_BGEZ:
8844 br = "bgez";
8845 break;
8846 case M_BGEZL:
8847 br = mips_opts.micromips ? "bgez" : "bgezl";
8848 brneg = "bltz";
8849 break;
8850 case M_BGEZALL:
8851 gas_assert (mips_opts.micromips);
8852 br = mips_opts.insn32 ? "bgezal" : "bgezals";
8853 brneg = "bltz";
8854 call = 1;
8855 break;
8856 case M_BGTZ:
8857 br = "bgtz";
8858 break;
8859 case M_BGTZL:
8860 br = mips_opts.micromips ? "bgtz" : "bgtzl";
8861 brneg = "blez";
8862 break;
8863 case M_BLEZ:
8864 br = "blez";
8865 break;
8866 case M_BLEZL:
8867 br = mips_opts.micromips ? "blez" : "blezl";
8868 brneg = "bgtz";
8869 break;
8870 case M_BLTZ:
8871 br = "bltz";
8872 break;
8873 case M_BLTZL:
8874 br = mips_opts.micromips ? "bltz" : "bltzl";
8875 brneg = "bgez";
8876 break;
8877 case M_BLTZALL:
8878 gas_assert (mips_opts.micromips);
8879 br = mips_opts.insn32 ? "bltzal" : "bltzals";
8880 brneg = "bgez";
8881 call = 1;
8882 break;
8883 default:
8884 abort ();
8885 }
8886 if (mips_opts.micromips && brneg)
8887 macro_build_branch_likely (br, brneg, call, ep, "s,p", sreg, ZERO);
8888 else
8889 macro_build (ep, br, "s,p", sreg);
8890 }
8891
8892 /* Emit a three-argument branch macro specified by TYPE, using SREG and
8893 TREG as the registers tested. EP specifies the branch target. */
8894
8895 static void
8896 macro_build_branch_rsrt (int type, expressionS *ep,
8897 unsigned int sreg, unsigned int treg)
8898 {
8899 const char *brneg = NULL;
8900 const int call = 0;
8901 const char *br;
8902
8903 switch (type)
8904 {
8905 case M_BEQ:
8906 case M_BEQ_I:
8907 br = "beq";
8908 break;
8909 case M_BEQL:
8910 case M_BEQL_I:
8911 br = mips_opts.micromips ? "beq" : "beql";
8912 brneg = "bne";
8913 break;
8914 case M_BNE:
8915 case M_BNE_I:
8916 br = "bne";
8917 break;
8918 case M_BNEL:
8919 case M_BNEL_I:
8920 br = mips_opts.micromips ? "bne" : "bnel";
8921 brneg = "beq";
8922 break;
8923 default:
8924 abort ();
8925 }
8926 if (mips_opts.micromips && brneg)
8927 macro_build_branch_likely (br, brneg, call, ep, "s,t,p", sreg, treg);
8928 else
8929 macro_build (ep, br, "s,t,p", sreg, treg);
8930 }
8931
8932 /* Return the high part that should be loaded in order to make the low
8933 part of VALUE accessible using an offset of OFFBITS bits. */
8934
8935 static offsetT
8936 offset_high_part (offsetT value, unsigned int offbits)
8937 {
8938 offsetT bias;
8939 addressT low_mask;
8940
8941 if (offbits == 0)
8942 return value;
8943 bias = 1 << (offbits - 1);
8944 low_mask = bias * 2 - 1;
8945 return (value + bias) & ~low_mask;
8946 }
8947
8948 /* Return true if the value stored in offset_expr and offset_reloc
8949 fits into a signed offset of OFFBITS bits. RANGE is the maximum
8950 amount that the caller wants to add without inducing overflow
8951 and ALIGN is the known alignment of the value in bytes. */
8952
8953 static bfd_boolean
8954 small_offset_p (unsigned int range, unsigned int align, unsigned int offbits)
8955 {
8956 if (offbits == 16)
8957 {
8958 /* Accept any relocation operator if overflow isn't a concern. */
8959 if (range < align && *offset_reloc != BFD_RELOC_UNUSED)
8960 return TRUE;
8961
8962 /* These relocations are guaranteed not to overflow in correct links. */
8963 if (*offset_reloc == BFD_RELOC_MIPS_LITERAL
8964 || gprel16_reloc_p (*offset_reloc))
8965 return TRUE;
8966 }
8967 if (offset_expr.X_op == O_constant
8968 && offset_high_part (offset_expr.X_add_number, offbits) == 0
8969 && offset_high_part (offset_expr.X_add_number + range, offbits) == 0)
8970 return TRUE;
8971 return FALSE;
8972 }
8973
8974 /*
8975 * Build macros
8976 * This routine implements the seemingly endless macro or synthesized
8977 * instructions and addressing modes in the mips assembly language. Many
8978 * of these macros are simple and are similar to each other. These could
8979 * probably be handled by some kind of table or grammar approach instead of
8980 * this verbose method. Others are not simple macros but are more like
8981 * optimizing code generation.
8982 * One interesting optimization is when several store macros appear
8983 * consecutively that would load AT with the upper half of the same address.
8984 * The ensuing load upper instructions are ommited. This implies some kind
8985 * of global optimization. We currently only optimize within a single macro.
8986 * For many of the load and store macros if the address is specified as a
8987 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
8988 * first load register 'at' with zero and use it as the base register. The
8989 * mips assembler simply uses register $zero. Just one tiny optimization
8990 * we're missing.
8991 */
8992 static void
8993 macro (struct mips_cl_insn *ip, char *str)
8994 {
8995 const struct mips_operand_array *operands;
8996 unsigned int breg, i;
8997 unsigned int tempreg;
8998 int mask;
8999 int used_at = 0;
9000 expressionS label_expr;
9001 expressionS expr1;
9002 expressionS *ep;
9003 const char *s;
9004 const char *s2;
9005 const char *fmt;
9006 int likely = 0;
9007 int coproc = 0;
9008 int offbits = 16;
9009 int call = 0;
9010 int jals = 0;
9011 int dbl = 0;
9012 int imm = 0;
9013 int ust = 0;
9014 int lp = 0;
9015 bfd_boolean large_offset;
9016 int off;
9017 int hold_mips_optimize;
9018 unsigned int align;
9019 unsigned int op[MAX_OPERANDS];
9020
9021 gas_assert (! mips_opts.mips16);
9022
9023 operands = insn_operands (ip);
9024 for (i = 0; i < MAX_OPERANDS; i++)
9025 if (operands->operand[i])
9026 op[i] = insn_extract_operand (ip, operands->operand[i]);
9027 else
9028 op[i] = -1;
9029
9030 mask = ip->insn_mo->mask;
9031
9032 label_expr.X_op = O_constant;
9033 label_expr.X_op_symbol = NULL;
9034 label_expr.X_add_symbol = NULL;
9035 label_expr.X_add_number = 0;
9036
9037 expr1.X_op = O_constant;
9038 expr1.X_op_symbol = NULL;
9039 expr1.X_add_symbol = NULL;
9040 expr1.X_add_number = 1;
9041 align = 1;
9042
9043 switch (mask)
9044 {
9045 case M_DABS:
9046 dbl = 1;
9047 case M_ABS:
9048 /* bgez $a0,1f
9049 move v0,$a0
9050 sub v0,$zero,$a0
9051 1:
9052 */
9053
9054 start_noreorder ();
9055
9056 if (mips_opts.micromips)
9057 micromips_label_expr (&label_expr);
9058 else
9059 label_expr.X_add_number = 8;
9060 macro_build (&label_expr, "bgez", "s,p", op[1]);
9061 if (op[0] == op[1])
9062 macro_build (NULL, "nop", "");
9063 else
9064 move_register (op[0], op[1]);
9065 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", op[0], 0, op[1]);
9066 if (mips_opts.micromips)
9067 micromips_add_label ();
9068
9069 end_noreorder ();
9070 break;
9071
9072 case M_ADD_I:
9073 s = "addi";
9074 s2 = "add";
9075 goto do_addi;
9076 case M_ADDU_I:
9077 s = "addiu";
9078 s2 = "addu";
9079 goto do_addi;
9080 case M_DADD_I:
9081 dbl = 1;
9082 s = "daddi";
9083 s2 = "dadd";
9084 if (!mips_opts.micromips)
9085 goto do_addi;
9086 if (imm_expr.X_op == O_constant
9087 && imm_expr.X_add_number >= -0x200
9088 && imm_expr.X_add_number < 0x200)
9089 {
9090 macro_build (NULL, s, "t,r,.", op[0], op[1], imm_expr.X_add_number);
9091 break;
9092 }
9093 goto do_addi_i;
9094 case M_DADDU_I:
9095 dbl = 1;
9096 s = "daddiu";
9097 s2 = "daddu";
9098 do_addi:
9099 if (imm_expr.X_op == O_constant
9100 && imm_expr.X_add_number >= -0x8000
9101 && imm_expr.X_add_number < 0x8000)
9102 {
9103 macro_build (&imm_expr, s, "t,r,j", op[0], op[1], BFD_RELOC_LO16);
9104 break;
9105 }
9106 do_addi_i:
9107 used_at = 1;
9108 load_register (AT, &imm_expr, dbl);
9109 macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
9110 break;
9111
9112 case M_AND_I:
9113 s = "andi";
9114 s2 = "and";
9115 goto do_bit;
9116 case M_OR_I:
9117 s = "ori";
9118 s2 = "or";
9119 goto do_bit;
9120 case M_NOR_I:
9121 s = "";
9122 s2 = "nor";
9123 goto do_bit;
9124 case M_XOR_I:
9125 s = "xori";
9126 s2 = "xor";
9127 do_bit:
9128 if (imm_expr.X_op == O_constant
9129 && imm_expr.X_add_number >= 0
9130 && imm_expr.X_add_number < 0x10000)
9131 {
9132 if (mask != M_NOR_I)
9133 macro_build (&imm_expr, s, "t,r,i", op[0], op[1], BFD_RELOC_LO16);
9134 else
9135 {
9136 macro_build (&imm_expr, "ori", "t,r,i",
9137 op[0], op[1], BFD_RELOC_LO16);
9138 macro_build (NULL, "nor", "d,v,t", op[0], op[0], 0);
9139 }
9140 break;
9141 }
9142
9143 used_at = 1;
9144 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
9145 macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
9146 break;
9147
9148 case M_BALIGN:
9149 switch (imm_expr.X_add_number)
9150 {
9151 case 0:
9152 macro_build (NULL, "nop", "");
9153 break;
9154 case 2:
9155 macro_build (NULL, "packrl.ph", "d,s,t", op[0], op[0], op[1]);
9156 break;
9157 case 1:
9158 case 3:
9159 macro_build (NULL, "balign", "t,s,2", op[0], op[1],
9160 (int) imm_expr.X_add_number);
9161 break;
9162 default:
9163 as_bad (_("BALIGN immediate not 0, 1, 2 or 3 (%lu)"),
9164 (unsigned long) imm_expr.X_add_number);
9165 break;
9166 }
9167 break;
9168
9169 case M_BC1FL:
9170 case M_BC1TL:
9171 case M_BC2FL:
9172 case M_BC2TL:
9173 gas_assert (mips_opts.micromips);
9174 macro_build_branch_ccl (mask, &offset_expr,
9175 EXTRACT_OPERAND (1, BCC, *ip));
9176 break;
9177
9178 case M_BEQ_I:
9179 case M_BEQL_I:
9180 case M_BNE_I:
9181 case M_BNEL_I:
9182 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
9183 op[1] = 0;
9184 else
9185 {
9186 op[1] = AT;
9187 used_at = 1;
9188 load_register (op[1], &imm_expr, HAVE_64BIT_GPRS);
9189 }
9190 /* Fall through. */
9191 case M_BEQL:
9192 case M_BNEL:
9193 macro_build_branch_rsrt (mask, &offset_expr, op[0], op[1]);
9194 break;
9195
9196 case M_BGEL:
9197 likely = 1;
9198 case M_BGE:
9199 if (op[1] == 0)
9200 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, op[0]);
9201 else if (op[0] == 0)
9202 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[1]);
9203 else
9204 {
9205 used_at = 1;
9206 macro_build (NULL, "slt", "d,v,t", AT, op[0], op[1]);
9207 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9208 &offset_expr, AT, ZERO);
9209 }
9210 break;
9211
9212 case M_BGEZL:
9213 case M_BGEZALL:
9214 case M_BGTZL:
9215 case M_BLEZL:
9216 case M_BLTZL:
9217 case M_BLTZALL:
9218 macro_build_branch_rs (mask, &offset_expr, op[0]);
9219 break;
9220
9221 case M_BGTL_I:
9222 likely = 1;
9223 case M_BGT_I:
9224 /* Check for > max integer. */
9225 if (imm_expr.X_op == O_constant && imm_expr.X_add_number >= GPR_SMAX)
9226 {
9227 do_false:
9228 /* Result is always false. */
9229 if (! likely)
9230 macro_build (NULL, "nop", "");
9231 else
9232 macro_build_branch_rsrt (M_BNEL, &offset_expr, ZERO, ZERO);
9233 break;
9234 }
9235 if (imm_expr.X_op != O_constant)
9236 as_bad (_("Unsupported large constant"));
9237 ++imm_expr.X_add_number;
9238 /* FALLTHROUGH */
9239 case M_BGE_I:
9240 case M_BGEL_I:
9241 if (mask == M_BGEL_I)
9242 likely = 1;
9243 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
9244 {
9245 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ,
9246 &offset_expr, op[0]);
9247 break;
9248 }
9249 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
9250 {
9251 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ,
9252 &offset_expr, op[0]);
9253 break;
9254 }
9255 if (imm_expr.X_op == O_constant && imm_expr.X_add_number <= GPR_SMIN)
9256 {
9257 do_true:
9258 /* result is always true */
9259 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
9260 macro_build (&offset_expr, "b", "p");
9261 break;
9262 }
9263 used_at = 1;
9264 set_at (op[0], 0);
9265 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9266 &offset_expr, AT, ZERO);
9267 break;
9268
9269 case M_BGEUL:
9270 likely = 1;
9271 case M_BGEU:
9272 if (op[1] == 0)
9273 goto do_true;
9274 else if (op[0] == 0)
9275 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9276 &offset_expr, ZERO, op[1]);
9277 else
9278 {
9279 used_at = 1;
9280 macro_build (NULL, "sltu", "d,v,t", AT, op[0], op[1]);
9281 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9282 &offset_expr, AT, ZERO);
9283 }
9284 break;
9285
9286 case M_BGTUL_I:
9287 likely = 1;
9288 case M_BGTU_I:
9289 if (op[0] == 0
9290 || (HAVE_32BIT_GPRS
9291 && imm_expr.X_op == O_constant
9292 && imm_expr.X_add_number == -1))
9293 goto do_false;
9294 if (imm_expr.X_op != O_constant)
9295 as_bad (_("Unsupported large constant"));
9296 ++imm_expr.X_add_number;
9297 /* FALLTHROUGH */
9298 case M_BGEU_I:
9299 case M_BGEUL_I:
9300 if (mask == M_BGEUL_I)
9301 likely = 1;
9302 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
9303 goto do_true;
9304 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
9305 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9306 &offset_expr, op[0], ZERO);
9307 else
9308 {
9309 used_at = 1;
9310 set_at (op[0], 1);
9311 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9312 &offset_expr, AT, ZERO);
9313 }
9314 break;
9315
9316 case M_BGTL:
9317 likely = 1;
9318 case M_BGT:
9319 if (op[1] == 0)
9320 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, op[0]);
9321 else if (op[0] == 0)
9322 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[1]);
9323 else
9324 {
9325 used_at = 1;
9326 macro_build (NULL, "slt", "d,v,t", AT, op[1], op[0]);
9327 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9328 &offset_expr, AT, ZERO);
9329 }
9330 break;
9331
9332 case M_BGTUL:
9333 likely = 1;
9334 case M_BGTU:
9335 if (op[1] == 0)
9336 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9337 &offset_expr, op[0], ZERO);
9338 else if (op[0] == 0)
9339 goto do_false;
9340 else
9341 {
9342 used_at = 1;
9343 macro_build (NULL, "sltu", "d,v,t", AT, op[1], op[0]);
9344 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9345 &offset_expr, AT, ZERO);
9346 }
9347 break;
9348
9349 case M_BLEL:
9350 likely = 1;
9351 case M_BLE:
9352 if (op[1] == 0)
9353 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[0]);
9354 else if (op[0] == 0)
9355 macro_build_branch_rs (likely ? M_BGEZL : M_BGEZ, &offset_expr, op[1]);
9356 else
9357 {
9358 used_at = 1;
9359 macro_build (NULL, "slt", "d,v,t", AT, op[1], op[0]);
9360 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9361 &offset_expr, AT, ZERO);
9362 }
9363 break;
9364
9365 case M_BLEL_I:
9366 likely = 1;
9367 case M_BLE_I:
9368 if (imm_expr.X_op == O_constant && imm_expr.X_add_number >= GPR_SMAX)
9369 goto do_true;
9370 if (imm_expr.X_op != O_constant)
9371 as_bad (_("Unsupported large constant"));
9372 ++imm_expr.X_add_number;
9373 /* FALLTHROUGH */
9374 case M_BLT_I:
9375 case M_BLTL_I:
9376 if (mask == M_BLTL_I)
9377 likely = 1;
9378 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
9379 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[0]);
9380 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
9381 macro_build_branch_rs (likely ? M_BLEZL : M_BLEZ, &offset_expr, op[0]);
9382 else
9383 {
9384 used_at = 1;
9385 set_at (op[0], 0);
9386 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9387 &offset_expr, AT, ZERO);
9388 }
9389 break;
9390
9391 case M_BLEUL:
9392 likely = 1;
9393 case M_BLEU:
9394 if (op[1] == 0)
9395 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9396 &offset_expr, op[0], ZERO);
9397 else if (op[0] == 0)
9398 goto do_true;
9399 else
9400 {
9401 used_at = 1;
9402 macro_build (NULL, "sltu", "d,v,t", AT, op[1], op[0]);
9403 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9404 &offset_expr, AT, ZERO);
9405 }
9406 break;
9407
9408 case M_BLEUL_I:
9409 likely = 1;
9410 case M_BLEU_I:
9411 if (op[0] == 0
9412 || (HAVE_32BIT_GPRS
9413 && imm_expr.X_op == O_constant
9414 && imm_expr.X_add_number == -1))
9415 goto do_true;
9416 if (imm_expr.X_op != O_constant)
9417 as_bad (_("Unsupported large constant"));
9418 ++imm_expr.X_add_number;
9419 /* FALLTHROUGH */
9420 case M_BLTU_I:
9421 case M_BLTUL_I:
9422 if (mask == M_BLTUL_I)
9423 likely = 1;
9424 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
9425 goto do_false;
9426 else if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
9427 macro_build_branch_rsrt (likely ? M_BEQL : M_BEQ,
9428 &offset_expr, op[0], ZERO);
9429 else
9430 {
9431 used_at = 1;
9432 set_at (op[0], 1);
9433 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9434 &offset_expr, AT, ZERO);
9435 }
9436 break;
9437
9438 case M_BLTL:
9439 likely = 1;
9440 case M_BLT:
9441 if (op[1] == 0)
9442 macro_build_branch_rs (likely ? M_BLTZL : M_BLTZ, &offset_expr, op[0]);
9443 else if (op[0] == 0)
9444 macro_build_branch_rs (likely ? M_BGTZL : M_BGTZ, &offset_expr, op[1]);
9445 else
9446 {
9447 used_at = 1;
9448 macro_build (NULL, "slt", "d,v,t", AT, op[0], op[1]);
9449 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9450 &offset_expr, AT, ZERO);
9451 }
9452 break;
9453
9454 case M_BLTUL:
9455 likely = 1;
9456 case M_BLTU:
9457 if (op[1] == 0)
9458 goto do_false;
9459 else if (op[0] == 0)
9460 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9461 &offset_expr, ZERO, op[1]);
9462 else
9463 {
9464 used_at = 1;
9465 macro_build (NULL, "sltu", "d,v,t", AT, op[0], op[1]);
9466 macro_build_branch_rsrt (likely ? M_BNEL : M_BNE,
9467 &offset_expr, AT, ZERO);
9468 }
9469 break;
9470
9471 case M_DEXT:
9472 {
9473 /* Use unsigned arithmetic. */
9474 addressT pos;
9475 addressT size;
9476
9477 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
9478 {
9479 as_bad (_("Unsupported large constant"));
9480 pos = size = 1;
9481 }
9482 else
9483 {
9484 pos = imm_expr.X_add_number;
9485 size = imm2_expr.X_add_number;
9486 }
9487
9488 if (pos > 63)
9489 {
9490 report_bad_range (ip, 3, pos, 0, 63, FALSE);
9491 pos = 1;
9492 }
9493 if (size == 0 || size > 64 || (pos + size - 1) > 63)
9494 {
9495 report_bad_field (pos, size);
9496 size = 1;
9497 }
9498
9499 if (size <= 32 && pos < 32)
9500 {
9501 s = "dext";
9502 fmt = "t,r,+A,+C";
9503 }
9504 else if (size <= 32)
9505 {
9506 s = "dextu";
9507 fmt = "t,r,+E,+H";
9508 }
9509 else
9510 {
9511 s = "dextm";
9512 fmt = "t,r,+A,+G";
9513 }
9514 macro_build ((expressionS *) NULL, s, fmt, op[0], op[1], (int) pos,
9515 (int) (size - 1));
9516 }
9517 break;
9518
9519 case M_DINS:
9520 {
9521 /* Use unsigned arithmetic. */
9522 addressT pos;
9523 addressT size;
9524
9525 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
9526 {
9527 as_bad (_("Unsupported large constant"));
9528 pos = size = 1;
9529 }
9530 else
9531 {
9532 pos = imm_expr.X_add_number;
9533 size = imm2_expr.X_add_number;
9534 }
9535
9536 if (pos > 63)
9537 {
9538 report_bad_range (ip, 3, pos, 0, 63, FALSE);
9539 pos = 1;
9540 }
9541 if (size == 0 || size > 64 || (pos + size - 1) > 63)
9542 {
9543 report_bad_field (pos, size);
9544 size = 1;
9545 }
9546
9547 if (pos < 32 && (pos + size - 1) < 32)
9548 {
9549 s = "dins";
9550 fmt = "t,r,+A,+B";
9551 }
9552 else if (pos >= 32)
9553 {
9554 s = "dinsu";
9555 fmt = "t,r,+E,+F";
9556 }
9557 else
9558 {
9559 s = "dinsm";
9560 fmt = "t,r,+A,+F";
9561 }
9562 macro_build ((expressionS *) NULL, s, fmt, op[0], op[1], (int) pos,
9563 (int) (pos + size - 1));
9564 }
9565 break;
9566
9567 case M_DDIV_3:
9568 dbl = 1;
9569 case M_DIV_3:
9570 s = "mflo";
9571 goto do_div3;
9572 case M_DREM_3:
9573 dbl = 1;
9574 case M_REM_3:
9575 s = "mfhi";
9576 do_div3:
9577 if (op[2] == 0)
9578 {
9579 as_warn (_("Divide by zero."));
9580 if (mips_trap)
9581 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
9582 else
9583 macro_build (NULL, "break", BRK_FMT, 7);
9584 break;
9585 }
9586
9587 start_noreorder ();
9588 if (mips_trap)
9589 {
9590 macro_build (NULL, "teq", TRAP_FMT, op[2], ZERO, 7);
9591 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", op[1], op[2]);
9592 }
9593 else
9594 {
9595 if (mips_opts.micromips)
9596 micromips_label_expr (&label_expr);
9597 else
9598 label_expr.X_add_number = 8;
9599 macro_build (&label_expr, "bne", "s,t,p", op[2], ZERO);
9600 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", op[1], op[2]);
9601 macro_build (NULL, "break", BRK_FMT, 7);
9602 if (mips_opts.micromips)
9603 micromips_add_label ();
9604 }
9605 expr1.X_add_number = -1;
9606 used_at = 1;
9607 load_register (AT, &expr1, dbl);
9608 if (mips_opts.micromips)
9609 micromips_label_expr (&label_expr);
9610 else
9611 label_expr.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
9612 macro_build (&label_expr, "bne", "s,t,p", op[2], AT);
9613 if (dbl)
9614 {
9615 expr1.X_add_number = 1;
9616 load_register (AT, &expr1, dbl);
9617 macro_build (NULL, "dsll32", SHFT_FMT, AT, AT, 31);
9618 }
9619 else
9620 {
9621 expr1.X_add_number = 0x80000000;
9622 macro_build (&expr1, "lui", LUI_FMT, AT, BFD_RELOC_HI16);
9623 }
9624 if (mips_trap)
9625 {
9626 macro_build (NULL, "teq", TRAP_FMT, op[1], AT, 6);
9627 /* We want to close the noreorder block as soon as possible, so
9628 that later insns are available for delay slot filling. */
9629 end_noreorder ();
9630 }
9631 else
9632 {
9633 if (mips_opts.micromips)
9634 micromips_label_expr (&label_expr);
9635 else
9636 label_expr.X_add_number = 8;
9637 macro_build (&label_expr, "bne", "s,t,p", op[1], AT);
9638 macro_build (NULL, "nop", "");
9639
9640 /* We want to close the noreorder block as soon as possible, so
9641 that later insns are available for delay slot filling. */
9642 end_noreorder ();
9643
9644 macro_build (NULL, "break", BRK_FMT, 6);
9645 }
9646 if (mips_opts.micromips)
9647 micromips_add_label ();
9648 macro_build (NULL, s, MFHL_FMT, op[0]);
9649 break;
9650
9651 case M_DIV_3I:
9652 s = "div";
9653 s2 = "mflo";
9654 goto do_divi;
9655 case M_DIVU_3I:
9656 s = "divu";
9657 s2 = "mflo";
9658 goto do_divi;
9659 case M_REM_3I:
9660 s = "div";
9661 s2 = "mfhi";
9662 goto do_divi;
9663 case M_REMU_3I:
9664 s = "divu";
9665 s2 = "mfhi";
9666 goto do_divi;
9667 case M_DDIV_3I:
9668 dbl = 1;
9669 s = "ddiv";
9670 s2 = "mflo";
9671 goto do_divi;
9672 case M_DDIVU_3I:
9673 dbl = 1;
9674 s = "ddivu";
9675 s2 = "mflo";
9676 goto do_divi;
9677 case M_DREM_3I:
9678 dbl = 1;
9679 s = "ddiv";
9680 s2 = "mfhi";
9681 goto do_divi;
9682 case M_DREMU_3I:
9683 dbl = 1;
9684 s = "ddivu";
9685 s2 = "mfhi";
9686 do_divi:
9687 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
9688 {
9689 as_warn (_("Divide by zero."));
9690 if (mips_trap)
9691 macro_build (NULL, "teq", TRAP_FMT, ZERO, ZERO, 7);
9692 else
9693 macro_build (NULL, "break", BRK_FMT, 7);
9694 break;
9695 }
9696 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
9697 {
9698 if (strcmp (s2, "mflo") == 0)
9699 move_register (op[0], op[1]);
9700 else
9701 move_register (op[0], ZERO);
9702 break;
9703 }
9704 if (imm_expr.X_op == O_constant
9705 && imm_expr.X_add_number == -1
9706 && s[strlen (s) - 1] != 'u')
9707 {
9708 if (strcmp (s2, "mflo") == 0)
9709 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", op[0], op[1]);
9710 else
9711 move_register (op[0], ZERO);
9712 break;
9713 }
9714
9715 used_at = 1;
9716 load_register (AT, &imm_expr, dbl);
9717 macro_build (NULL, s, "z,s,t", op[1], AT);
9718 macro_build (NULL, s2, MFHL_FMT, op[0]);
9719 break;
9720
9721 case M_DIVU_3:
9722 s = "divu";
9723 s2 = "mflo";
9724 goto do_divu3;
9725 case M_REMU_3:
9726 s = "divu";
9727 s2 = "mfhi";
9728 goto do_divu3;
9729 case M_DDIVU_3:
9730 s = "ddivu";
9731 s2 = "mflo";
9732 goto do_divu3;
9733 case M_DREMU_3:
9734 s = "ddivu";
9735 s2 = "mfhi";
9736 do_divu3:
9737 start_noreorder ();
9738 if (mips_trap)
9739 {
9740 macro_build (NULL, "teq", TRAP_FMT, op[2], ZERO, 7);
9741 macro_build (NULL, s, "z,s,t", op[1], op[2]);
9742 /* We want to close the noreorder block as soon as possible, so
9743 that later insns are available for delay slot filling. */
9744 end_noreorder ();
9745 }
9746 else
9747 {
9748 if (mips_opts.micromips)
9749 micromips_label_expr (&label_expr);
9750 else
9751 label_expr.X_add_number = 8;
9752 macro_build (&label_expr, "bne", "s,t,p", op[2], ZERO);
9753 macro_build (NULL, s, "z,s,t", op[1], op[2]);
9754
9755 /* We want to close the noreorder block as soon as possible, so
9756 that later insns are available for delay slot filling. */
9757 end_noreorder ();
9758 macro_build (NULL, "break", BRK_FMT, 7);
9759 if (mips_opts.micromips)
9760 micromips_add_label ();
9761 }
9762 macro_build (NULL, s2, MFHL_FMT, op[0]);
9763 break;
9764
9765 case M_DLCA_AB:
9766 dbl = 1;
9767 case M_LCA_AB:
9768 call = 1;
9769 goto do_la;
9770 case M_DLA_AB:
9771 dbl = 1;
9772 case M_LA_AB:
9773 do_la:
9774 /* Load the address of a symbol into a register. If breg is not
9775 zero, we then add a base register to it. */
9776
9777 breg = op[2];
9778 if (dbl && HAVE_32BIT_GPRS)
9779 as_warn (_("dla used to load 32-bit register"));
9780
9781 if (!dbl && HAVE_64BIT_OBJECTS)
9782 as_warn (_("la used to load 64-bit address"));
9783
9784 if (small_offset_p (0, align, 16))
9785 {
9786 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", op[0], breg,
9787 -1, offset_reloc[0], offset_reloc[1], offset_reloc[2]);
9788 break;
9789 }
9790
9791 if (mips_opts.at && (op[0] == breg))
9792 {
9793 tempreg = AT;
9794 used_at = 1;
9795 }
9796 else
9797 tempreg = op[0];
9798
9799 if (offset_expr.X_op != O_symbol
9800 && offset_expr.X_op != O_constant)
9801 {
9802 as_bad (_("Expression too complex"));
9803 offset_expr.X_op = O_constant;
9804 }
9805
9806 if (offset_expr.X_op == O_constant)
9807 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
9808 else if (mips_pic == NO_PIC)
9809 {
9810 /* If this is a reference to a GP relative symbol, we want
9811 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
9812 Otherwise we want
9813 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
9814 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
9815 If we have a constant, we need two instructions anyhow,
9816 so we may as well always use the latter form.
9817
9818 With 64bit address space and a usable $at we want
9819 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
9820 lui $at,<sym> (BFD_RELOC_HI16_S)
9821 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
9822 daddiu $at,<sym> (BFD_RELOC_LO16)
9823 dsll32 $tempreg,0
9824 daddu $tempreg,$tempreg,$at
9825
9826 If $at is already in use, we use a path which is suboptimal
9827 on superscalar processors.
9828 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
9829 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
9830 dsll $tempreg,16
9831 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
9832 dsll $tempreg,16
9833 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
9834
9835 For GP relative symbols in 64bit address space we can use
9836 the same sequence as in 32bit address space. */
9837 if (HAVE_64BIT_SYMBOLS)
9838 {
9839 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9840 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9841 {
9842 relax_start (offset_expr.X_add_symbol);
9843 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
9844 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
9845 relax_switch ();
9846 }
9847
9848 if (used_at == 0 && mips_opts.at)
9849 {
9850 macro_build (&offset_expr, "lui", LUI_FMT,
9851 tempreg, BFD_RELOC_MIPS_HIGHEST);
9852 macro_build (&offset_expr, "lui", LUI_FMT,
9853 AT, BFD_RELOC_HI16_S);
9854 macro_build (&offset_expr, "daddiu", "t,r,j",
9855 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
9856 macro_build (&offset_expr, "daddiu", "t,r,j",
9857 AT, AT, BFD_RELOC_LO16);
9858 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
9859 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
9860 used_at = 1;
9861 }
9862 else
9863 {
9864 macro_build (&offset_expr, "lui", LUI_FMT,
9865 tempreg, BFD_RELOC_MIPS_HIGHEST);
9866 macro_build (&offset_expr, "daddiu", "t,r,j",
9867 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
9868 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
9869 macro_build (&offset_expr, "daddiu", "t,r,j",
9870 tempreg, tempreg, BFD_RELOC_HI16_S);
9871 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
9872 macro_build (&offset_expr, "daddiu", "t,r,j",
9873 tempreg, tempreg, BFD_RELOC_LO16);
9874 }
9875
9876 if (mips_relax.sequence)
9877 relax_end ();
9878 }
9879 else
9880 {
9881 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
9882 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
9883 {
9884 relax_start (offset_expr.X_add_symbol);
9885 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
9886 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
9887 relax_switch ();
9888 }
9889 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
9890 as_bad (_("Offset too large"));
9891 macro_build_lui (&offset_expr, tempreg);
9892 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
9893 tempreg, tempreg, BFD_RELOC_LO16);
9894 if (mips_relax.sequence)
9895 relax_end ();
9896 }
9897 }
9898 else if (!mips_big_got && !HAVE_NEWABI)
9899 {
9900 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
9901
9902 /* If this is a reference to an external symbol, and there
9903 is no constant, we want
9904 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9905 or for lca or if tempreg is PIC_CALL_REG
9906 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
9907 For a local symbol, we want
9908 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9909 nop
9910 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
9911
9912 If we have a small constant, and this is a reference to
9913 an external symbol, we want
9914 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9915 nop
9916 addiu $tempreg,$tempreg,<constant>
9917 For a local symbol, we want the same instruction
9918 sequence, but we output a BFD_RELOC_LO16 reloc on the
9919 addiu instruction.
9920
9921 If we have a large constant, and this is a reference to
9922 an external symbol, we want
9923 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9924 lui $at,<hiconstant>
9925 addiu $at,$at,<loconstant>
9926 addu $tempreg,$tempreg,$at
9927 For a local symbol, we want the same instruction
9928 sequence, but we output a BFD_RELOC_LO16 reloc on the
9929 addiu instruction.
9930 */
9931
9932 if (offset_expr.X_add_number == 0)
9933 {
9934 if (mips_pic == SVR4_PIC
9935 && breg == 0
9936 && (call || tempreg == PIC_CALL_REG))
9937 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
9938
9939 relax_start (offset_expr.X_add_symbol);
9940 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
9941 lw_reloc_type, mips_gp_register);
9942 if (breg != 0)
9943 {
9944 /* We're going to put in an addu instruction using
9945 tempreg, so we may as well insert the nop right
9946 now. */
9947 load_delay_nop ();
9948 }
9949 relax_switch ();
9950 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
9951 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
9952 load_delay_nop ();
9953 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
9954 tempreg, tempreg, BFD_RELOC_LO16);
9955 relax_end ();
9956 /* FIXME: If breg == 0, and the next instruction uses
9957 $tempreg, then if this variant case is used an extra
9958 nop will be generated. */
9959 }
9960 else if (offset_expr.X_add_number >= -0x8000
9961 && offset_expr.X_add_number < 0x8000)
9962 {
9963 load_got_offset (tempreg, &offset_expr);
9964 load_delay_nop ();
9965 add_got_offset (tempreg, &offset_expr);
9966 }
9967 else
9968 {
9969 expr1.X_add_number = offset_expr.X_add_number;
9970 offset_expr.X_add_number =
9971 SEXT_16BIT (offset_expr.X_add_number);
9972 load_got_offset (tempreg, &offset_expr);
9973 offset_expr.X_add_number = expr1.X_add_number;
9974 /* If we are going to add in a base register, and the
9975 target register and the base register are the same,
9976 then we are using AT as a temporary register. Since
9977 we want to load the constant into AT, we add our
9978 current AT (from the global offset table) and the
9979 register into the register now, and pretend we were
9980 not using a base register. */
9981 if (breg == op[0])
9982 {
9983 load_delay_nop ();
9984 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
9985 op[0], AT, breg);
9986 breg = 0;
9987 tempreg = op[0];
9988 }
9989 add_got_offset_hilo (tempreg, &offset_expr, AT);
9990 used_at = 1;
9991 }
9992 }
9993 else if (!mips_big_got && HAVE_NEWABI)
9994 {
9995 int add_breg_early = 0;
9996
9997 /* If this is a reference to an external, and there is no
9998 constant, or local symbol (*), with or without a
9999 constant, we want
10000 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
10001 or for lca or if tempreg is PIC_CALL_REG
10002 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
10003
10004 If we have a small constant, and this is a reference to
10005 an external symbol, we want
10006 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
10007 addiu $tempreg,$tempreg,<constant>
10008
10009 If we have a large constant, and this is a reference to
10010 an external symbol, we want
10011 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
10012 lui $at,<hiconstant>
10013 addiu $at,$at,<loconstant>
10014 addu $tempreg,$tempreg,$at
10015
10016 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
10017 local symbols, even though it introduces an additional
10018 instruction. */
10019
10020 if (offset_expr.X_add_number)
10021 {
10022 expr1.X_add_number = offset_expr.X_add_number;
10023 offset_expr.X_add_number = 0;
10024
10025 relax_start (offset_expr.X_add_symbol);
10026 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10027 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10028
10029 if (expr1.X_add_number >= -0x8000
10030 && expr1.X_add_number < 0x8000)
10031 {
10032 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10033 tempreg, tempreg, BFD_RELOC_LO16);
10034 }
10035 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
10036 {
10037 unsigned int dreg;
10038
10039 /* If we are going to add in a base register, and the
10040 target register and the base register are the same,
10041 then we are using AT as a temporary register. Since
10042 we want to load the constant into AT, we add our
10043 current AT (from the global offset table) and the
10044 register into the register now, and pretend we were
10045 not using a base register. */
10046 if (breg != op[0])
10047 dreg = tempreg;
10048 else
10049 {
10050 gas_assert (tempreg == AT);
10051 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10052 op[0], AT, breg);
10053 dreg = op[0];
10054 add_breg_early = 1;
10055 }
10056
10057 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
10058 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10059 dreg, dreg, AT);
10060
10061 used_at = 1;
10062 }
10063 else
10064 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
10065
10066 relax_switch ();
10067 offset_expr.X_add_number = expr1.X_add_number;
10068
10069 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10070 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10071 if (add_breg_early)
10072 {
10073 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10074 op[0], tempreg, breg);
10075 breg = 0;
10076 tempreg = op[0];
10077 }
10078 relax_end ();
10079 }
10080 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
10081 {
10082 relax_start (offset_expr.X_add_symbol);
10083 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10084 BFD_RELOC_MIPS_CALL16, mips_gp_register);
10085 relax_switch ();
10086 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10087 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10088 relax_end ();
10089 }
10090 else
10091 {
10092 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10093 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
10094 }
10095 }
10096 else if (mips_big_got && !HAVE_NEWABI)
10097 {
10098 int gpdelay;
10099 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
10100 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
10101 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
10102
10103 /* This is the large GOT case. If this is a reference to an
10104 external symbol, and there is no constant, we want
10105 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10106 addu $tempreg,$tempreg,$gp
10107 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10108 or for lca or if tempreg is PIC_CALL_REG
10109 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
10110 addu $tempreg,$tempreg,$gp
10111 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
10112 For a local symbol, we want
10113 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10114 nop
10115 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
10116
10117 If we have a small constant, and this is a reference to
10118 an external symbol, we want
10119 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10120 addu $tempreg,$tempreg,$gp
10121 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10122 nop
10123 addiu $tempreg,$tempreg,<constant>
10124 For a local symbol, we want
10125 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10126 nop
10127 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
10128
10129 If we have a large constant, and this is a reference to
10130 an external symbol, we want
10131 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10132 addu $tempreg,$tempreg,$gp
10133 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10134 lui $at,<hiconstant>
10135 addiu $at,$at,<loconstant>
10136 addu $tempreg,$tempreg,$at
10137 For a local symbol, we want
10138 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10139 lui $at,<hiconstant>
10140 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
10141 addu $tempreg,$tempreg,$at
10142 */
10143
10144 expr1.X_add_number = offset_expr.X_add_number;
10145 offset_expr.X_add_number = 0;
10146 relax_start (offset_expr.X_add_symbol);
10147 gpdelay = reg_needs_delay (mips_gp_register);
10148 if (expr1.X_add_number == 0 && breg == 0
10149 && (call || tempreg == PIC_CALL_REG))
10150 {
10151 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
10152 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
10153 }
10154 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
10155 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10156 tempreg, tempreg, mips_gp_register);
10157 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10158 tempreg, lw_reloc_type, tempreg);
10159 if (expr1.X_add_number == 0)
10160 {
10161 if (breg != 0)
10162 {
10163 /* We're going to put in an addu instruction using
10164 tempreg, so we may as well insert the nop right
10165 now. */
10166 load_delay_nop ();
10167 }
10168 }
10169 else if (expr1.X_add_number >= -0x8000
10170 && expr1.X_add_number < 0x8000)
10171 {
10172 load_delay_nop ();
10173 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10174 tempreg, tempreg, BFD_RELOC_LO16);
10175 }
10176 else
10177 {
10178 unsigned int dreg;
10179
10180 /* If we are going to add in a base register, and the
10181 target register and the base register are the same,
10182 then we are using AT as a temporary register. Since
10183 we want to load the constant into AT, we add our
10184 current AT (from the global offset table) and the
10185 register into the register now, and pretend we were
10186 not using a base register. */
10187 if (breg != op[0])
10188 dreg = tempreg;
10189 else
10190 {
10191 gas_assert (tempreg == AT);
10192 load_delay_nop ();
10193 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10194 op[0], AT, breg);
10195 dreg = op[0];
10196 }
10197
10198 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
10199 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
10200
10201 used_at = 1;
10202 }
10203 offset_expr.X_add_number = SEXT_16BIT (expr1.X_add_number);
10204 relax_switch ();
10205
10206 if (gpdelay)
10207 {
10208 /* This is needed because this instruction uses $gp, but
10209 the first instruction on the main stream does not. */
10210 macro_build (NULL, "nop", "");
10211 }
10212
10213 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10214 local_reloc_type, mips_gp_register);
10215 if (expr1.X_add_number >= -0x8000
10216 && expr1.X_add_number < 0x8000)
10217 {
10218 load_delay_nop ();
10219 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10220 tempreg, tempreg, BFD_RELOC_LO16);
10221 /* FIXME: If add_number is 0, and there was no base
10222 register, the external symbol case ended with a load,
10223 so if the symbol turns out to not be external, and
10224 the next instruction uses tempreg, an unnecessary nop
10225 will be inserted. */
10226 }
10227 else
10228 {
10229 if (breg == op[0])
10230 {
10231 /* We must add in the base register now, as in the
10232 external symbol case. */
10233 gas_assert (tempreg == AT);
10234 load_delay_nop ();
10235 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10236 op[0], AT, breg);
10237 tempreg = op[0];
10238 /* We set breg to 0 because we have arranged to add
10239 it in in both cases. */
10240 breg = 0;
10241 }
10242
10243 macro_build_lui (&expr1, AT);
10244 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10245 AT, AT, BFD_RELOC_LO16);
10246 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10247 tempreg, tempreg, AT);
10248 used_at = 1;
10249 }
10250 relax_end ();
10251 }
10252 else if (mips_big_got && HAVE_NEWABI)
10253 {
10254 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
10255 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
10256 int add_breg_early = 0;
10257
10258 /* This is the large GOT case. If this is a reference to an
10259 external symbol, and there is no constant, we want
10260 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10261 add $tempreg,$tempreg,$gp
10262 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10263 or for lca or if tempreg is PIC_CALL_REG
10264 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
10265 add $tempreg,$tempreg,$gp
10266 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
10267
10268 If we have a small constant, and this is a reference to
10269 an external symbol, we want
10270 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10271 add $tempreg,$tempreg,$gp
10272 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10273 addi $tempreg,$tempreg,<constant>
10274
10275 If we have a large constant, and this is a reference to
10276 an external symbol, we want
10277 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
10278 addu $tempreg,$tempreg,$gp
10279 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
10280 lui $at,<hiconstant>
10281 addi $at,$at,<loconstant>
10282 add $tempreg,$tempreg,$at
10283
10284 If we have NewABI, and we know it's a local symbol, we want
10285 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
10286 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
10287 otherwise we have to resort to GOT_HI16/GOT_LO16. */
10288
10289 relax_start (offset_expr.X_add_symbol);
10290
10291 expr1.X_add_number = offset_expr.X_add_number;
10292 offset_expr.X_add_number = 0;
10293
10294 if (expr1.X_add_number == 0 && breg == 0
10295 && (call || tempreg == PIC_CALL_REG))
10296 {
10297 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
10298 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
10299 }
10300 macro_build (&offset_expr, "lui", LUI_FMT, tempreg, lui_reloc_type);
10301 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10302 tempreg, tempreg, mips_gp_register);
10303 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10304 tempreg, lw_reloc_type, tempreg);
10305
10306 if (expr1.X_add_number == 0)
10307 ;
10308 else if (expr1.X_add_number >= -0x8000
10309 && expr1.X_add_number < 0x8000)
10310 {
10311 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
10312 tempreg, tempreg, BFD_RELOC_LO16);
10313 }
10314 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
10315 {
10316 unsigned int dreg;
10317
10318 /* If we are going to add in a base register, and the
10319 target register and the base register are the same,
10320 then we are using AT as a temporary register. Since
10321 we want to load the constant into AT, we add our
10322 current AT (from the global offset table) and the
10323 register into the register now, and pretend we were
10324 not using a base register. */
10325 if (breg != op[0])
10326 dreg = tempreg;
10327 else
10328 {
10329 gas_assert (tempreg == AT);
10330 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10331 op[0], AT, breg);
10332 dreg = op[0];
10333 add_breg_early = 1;
10334 }
10335
10336 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
10337 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
10338
10339 used_at = 1;
10340 }
10341 else
10342 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
10343
10344 relax_switch ();
10345 offset_expr.X_add_number = expr1.X_add_number;
10346 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
10347 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
10348 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
10349 tempreg, BFD_RELOC_MIPS_GOT_OFST);
10350 if (add_breg_early)
10351 {
10352 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
10353 op[0], tempreg, breg);
10354 breg = 0;
10355 tempreg = op[0];
10356 }
10357 relax_end ();
10358 }
10359 else
10360 abort ();
10361
10362 if (breg != 0)
10363 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", op[0], tempreg, breg);
10364 break;
10365
10366 case M_MSGSND:
10367 gas_assert (!mips_opts.micromips);
10368 macro_build (NULL, "c2", "C", (op[0] << 16) | 0x01);
10369 break;
10370
10371 case M_MSGLD:
10372 gas_assert (!mips_opts.micromips);
10373 macro_build (NULL, "c2", "C", 0x02);
10374 break;
10375
10376 case M_MSGLD_T:
10377 gas_assert (!mips_opts.micromips);
10378 macro_build (NULL, "c2", "C", (op[0] << 16) | 0x02);
10379 break;
10380
10381 case M_MSGWAIT:
10382 gas_assert (!mips_opts.micromips);
10383 macro_build (NULL, "c2", "C", 3);
10384 break;
10385
10386 case M_MSGWAIT_T:
10387 gas_assert (!mips_opts.micromips);
10388 macro_build (NULL, "c2", "C", (op[0] << 16) | 0x03);
10389 break;
10390
10391 case M_J_A:
10392 /* The j instruction may not be used in PIC code, since it
10393 requires an absolute address. We convert it to a b
10394 instruction. */
10395 if (mips_pic == NO_PIC)
10396 macro_build (&offset_expr, "j", "a");
10397 else
10398 macro_build (&offset_expr, "b", "p");
10399 break;
10400
10401 /* The jal instructions must be handled as macros because when
10402 generating PIC code they expand to multi-instruction
10403 sequences. Normally they are simple instructions. */
10404 case M_JALS_1:
10405 op[1] = op[0];
10406 op[0] = RA;
10407 /* Fall through. */
10408 case M_JALS_2:
10409 gas_assert (mips_opts.micromips);
10410 if (mips_opts.insn32)
10411 {
10412 as_bad (_("Opcode not supported in the `insn32' mode `%s'"), str);
10413 break;
10414 }
10415 jals = 1;
10416 goto jal;
10417 case M_JAL_1:
10418 op[1] = op[0];
10419 op[0] = RA;
10420 /* Fall through. */
10421 case M_JAL_2:
10422 jal:
10423 if (mips_pic == NO_PIC)
10424 {
10425 s = jals ? "jalrs" : "jalr";
10426 if (mips_opts.micromips
10427 && !mips_opts.insn32
10428 && op[0] == RA
10429 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
10430 macro_build (NULL, s, "mj", op[1]);
10431 else
10432 macro_build (NULL, s, JALR_FMT, op[0], op[1]);
10433 }
10434 else
10435 {
10436 int cprestore = (mips_pic == SVR4_PIC && !HAVE_NEWABI
10437 && mips_cprestore_offset >= 0);
10438
10439 if (op[1] != PIC_CALL_REG)
10440 as_warn (_("MIPS PIC call to register other than $25"));
10441
10442 s = ((mips_opts.micromips
10443 && !mips_opts.insn32
10444 && (!mips_opts.noreorder || cprestore))
10445 ? "jalrs" : "jalr");
10446 if (mips_opts.micromips
10447 && !mips_opts.insn32
10448 && op[0] == RA
10449 && !(history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT))
10450 macro_build (NULL, s, "mj", op[1]);
10451 else
10452 macro_build (NULL, s, JALR_FMT, op[0], op[1]);
10453 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
10454 {
10455 if (mips_cprestore_offset < 0)
10456 as_warn (_("No .cprestore pseudo-op used in PIC code"));
10457 else
10458 {
10459 if (!mips_frame_reg_valid)
10460 {
10461 as_warn (_("No .frame pseudo-op used in PIC code"));
10462 /* Quiet this warning. */
10463 mips_frame_reg_valid = 1;
10464 }
10465 if (!mips_cprestore_valid)
10466 {
10467 as_warn (_("No .cprestore pseudo-op used in PIC code"));
10468 /* Quiet this warning. */
10469 mips_cprestore_valid = 1;
10470 }
10471 if (mips_opts.noreorder)
10472 macro_build (NULL, "nop", "");
10473 expr1.X_add_number = mips_cprestore_offset;
10474 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
10475 mips_gp_register,
10476 mips_frame_reg,
10477 HAVE_64BIT_ADDRESSES);
10478 }
10479 }
10480 }
10481
10482 break;
10483
10484 case M_JALS_A:
10485 gas_assert (mips_opts.micromips);
10486 if (mips_opts.insn32)
10487 {
10488 as_bad (_("Opcode not supported in the `insn32' mode `%s'"), str);
10489 break;
10490 }
10491 jals = 1;
10492 /* Fall through. */
10493 case M_JAL_A:
10494 if (mips_pic == NO_PIC)
10495 macro_build (&offset_expr, jals ? "jals" : "jal", "a");
10496 else if (mips_pic == SVR4_PIC)
10497 {
10498 /* If this is a reference to an external symbol, and we are
10499 using a small GOT, we want
10500 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
10501 nop
10502 jalr $ra,$25
10503 nop
10504 lw $gp,cprestore($sp)
10505 The cprestore value is set using the .cprestore
10506 pseudo-op. If we are using a big GOT, we want
10507 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
10508 addu $25,$25,$gp
10509 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
10510 nop
10511 jalr $ra,$25
10512 nop
10513 lw $gp,cprestore($sp)
10514 If the symbol is not external, we want
10515 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
10516 nop
10517 addiu $25,$25,<sym> (BFD_RELOC_LO16)
10518 jalr $ra,$25
10519 nop
10520 lw $gp,cprestore($sp)
10521
10522 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
10523 sequences above, minus nops, unless the symbol is local,
10524 which enables us to use GOT_PAGE/GOT_OFST (big got) or
10525 GOT_DISP. */
10526 if (HAVE_NEWABI)
10527 {
10528 if (!mips_big_got)
10529 {
10530 relax_start (offset_expr.X_add_symbol);
10531 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10532 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
10533 mips_gp_register);
10534 relax_switch ();
10535 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10536 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
10537 mips_gp_register);
10538 relax_end ();
10539 }
10540 else
10541 {
10542 relax_start (offset_expr.X_add_symbol);
10543 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
10544 BFD_RELOC_MIPS_CALL_HI16);
10545 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
10546 PIC_CALL_REG, mips_gp_register);
10547 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10548 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
10549 PIC_CALL_REG);
10550 relax_switch ();
10551 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10552 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
10553 mips_gp_register);
10554 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10555 PIC_CALL_REG, PIC_CALL_REG,
10556 BFD_RELOC_MIPS_GOT_OFST);
10557 relax_end ();
10558 }
10559
10560 macro_build_jalr (&offset_expr, 0);
10561 }
10562 else
10563 {
10564 relax_start (offset_expr.X_add_symbol);
10565 if (!mips_big_got)
10566 {
10567 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10568 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
10569 mips_gp_register);
10570 load_delay_nop ();
10571 relax_switch ();
10572 }
10573 else
10574 {
10575 int gpdelay;
10576
10577 gpdelay = reg_needs_delay (mips_gp_register);
10578 macro_build (&offset_expr, "lui", LUI_FMT, PIC_CALL_REG,
10579 BFD_RELOC_MIPS_CALL_HI16);
10580 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
10581 PIC_CALL_REG, mips_gp_register);
10582 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10583 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
10584 PIC_CALL_REG);
10585 load_delay_nop ();
10586 relax_switch ();
10587 if (gpdelay)
10588 macro_build (NULL, "nop", "");
10589 }
10590 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
10591 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
10592 mips_gp_register);
10593 load_delay_nop ();
10594 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
10595 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
10596 relax_end ();
10597 macro_build_jalr (&offset_expr, mips_cprestore_offset >= 0);
10598
10599 if (mips_cprestore_offset < 0)
10600 as_warn (_("No .cprestore pseudo-op used in PIC code"));
10601 else
10602 {
10603 if (!mips_frame_reg_valid)
10604 {
10605 as_warn (_("No .frame pseudo-op used in PIC code"));
10606 /* Quiet this warning. */
10607 mips_frame_reg_valid = 1;
10608 }
10609 if (!mips_cprestore_valid)
10610 {
10611 as_warn (_("No .cprestore pseudo-op used in PIC code"));
10612 /* Quiet this warning. */
10613 mips_cprestore_valid = 1;
10614 }
10615 if (mips_opts.noreorder)
10616 macro_build (NULL, "nop", "");
10617 expr1.X_add_number = mips_cprestore_offset;
10618 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
10619 mips_gp_register,
10620 mips_frame_reg,
10621 HAVE_64BIT_ADDRESSES);
10622 }
10623 }
10624 }
10625 else if (mips_pic == VXWORKS_PIC)
10626 as_bad (_("Non-PIC jump used in PIC library"));
10627 else
10628 abort ();
10629
10630 break;
10631
10632 case M_LBUE_AB:
10633 s = "lbue";
10634 fmt = "t,+j(b)";
10635 offbits = 9;
10636 goto ld_st;
10637 case M_LHUE_AB:
10638 s = "lhue";
10639 fmt = "t,+j(b)";
10640 offbits = 9;
10641 goto ld_st;
10642 case M_LBE_AB:
10643 s = "lbe";
10644 fmt = "t,+j(b)";
10645 offbits = 9;
10646 goto ld_st;
10647 case M_LHE_AB:
10648 s = "lhe";
10649 fmt = "t,+j(b)";
10650 offbits = 9;
10651 goto ld_st;
10652 case M_LLE_AB:
10653 s = "lle";
10654 fmt = "t,+j(b)";
10655 offbits = 9;
10656 goto ld_st;
10657 case M_LWE_AB:
10658 s = "lwe";
10659 fmt = "t,+j(b)";
10660 offbits = 9;
10661 goto ld_st;
10662 case M_LWLE_AB:
10663 s = "lwle";
10664 fmt = "t,+j(b)";
10665 offbits = 9;
10666 goto ld_st;
10667 case M_LWRE_AB:
10668 s = "lwre";
10669 fmt = "t,+j(b)";
10670 offbits = 9;
10671 goto ld_st;
10672 case M_SBE_AB:
10673 s = "sbe";
10674 fmt = "t,+j(b)";
10675 offbits = 9;
10676 goto ld_st;
10677 case M_SCE_AB:
10678 s = "sce";
10679 fmt = "t,+j(b)";
10680 offbits = 9;
10681 goto ld_st;
10682 case M_SHE_AB:
10683 s = "she";
10684 fmt = "t,+j(b)";
10685 offbits = 9;
10686 goto ld_st;
10687 case M_SWE_AB:
10688 s = "swe";
10689 fmt = "t,+j(b)";
10690 offbits = 9;
10691 goto ld_st;
10692 case M_SWLE_AB:
10693 s = "swle";
10694 fmt = "t,+j(b)";
10695 offbits = 9;
10696 goto ld_st;
10697 case M_SWRE_AB:
10698 s = "swre";
10699 fmt = "t,+j(b)";
10700 offbits = 9;
10701 goto ld_st;
10702 case M_ACLR_AB:
10703 s = "aclr";
10704 fmt = "\\,~(b)";
10705 offbits = 12;
10706 goto ld_st;
10707 case M_ASET_AB:
10708 s = "aset";
10709 fmt = "\\,~(b)";
10710 offbits = 12;
10711 goto ld_st;
10712 case M_LB_AB:
10713 s = "lb";
10714 fmt = "t,o(b)";
10715 goto ld;
10716 case M_LBU_AB:
10717 s = "lbu";
10718 fmt = "t,o(b)";
10719 goto ld;
10720 case M_LH_AB:
10721 s = "lh";
10722 fmt = "t,o(b)";
10723 goto ld;
10724 case M_LHU_AB:
10725 s = "lhu";
10726 fmt = "t,o(b)";
10727 goto ld;
10728 case M_LW_AB:
10729 s = "lw";
10730 fmt = "t,o(b)";
10731 goto ld;
10732 case M_LWC0_AB:
10733 gas_assert (!mips_opts.micromips);
10734 s = "lwc0";
10735 fmt = "E,o(b)";
10736 /* Itbl support may require additional care here. */
10737 coproc = 1;
10738 goto ld_st;
10739 case M_LWC1_AB:
10740 s = "lwc1";
10741 fmt = "T,o(b)";
10742 /* Itbl support may require additional care here. */
10743 coproc = 1;
10744 goto ld_st;
10745 case M_LWC2_AB:
10746 s = "lwc2";
10747 fmt = COP12_FMT;
10748 offbits = (mips_opts.micromips ? 12 : 16);
10749 /* Itbl support may require additional care here. */
10750 coproc = 1;
10751 goto ld_st;
10752 case M_LWC3_AB:
10753 gas_assert (!mips_opts.micromips);
10754 s = "lwc3";
10755 fmt = "E,o(b)";
10756 /* Itbl support may require additional care here. */
10757 coproc = 1;
10758 goto ld_st;
10759 case M_LWL_AB:
10760 s = "lwl";
10761 fmt = MEM12_FMT;
10762 offbits = (mips_opts.micromips ? 12 : 16);
10763 goto ld_st;
10764 case M_LWR_AB:
10765 s = "lwr";
10766 fmt = MEM12_FMT;
10767 offbits = (mips_opts.micromips ? 12 : 16);
10768 goto ld_st;
10769 case M_LDC1_AB:
10770 s = "ldc1";
10771 fmt = "T,o(b)";
10772 /* Itbl support may require additional care here. */
10773 coproc = 1;
10774 goto ld_st;
10775 case M_LDC2_AB:
10776 s = "ldc2";
10777 fmt = COP12_FMT;
10778 offbits = (mips_opts.micromips ? 12 : 16);
10779 /* Itbl support may require additional care here. */
10780 coproc = 1;
10781 goto ld_st;
10782 case M_LQC2_AB:
10783 s = "lqc2";
10784 fmt = "+7,o(b)";
10785 /* Itbl support may require additional care here. */
10786 coproc = 1;
10787 goto ld_st;
10788 case M_LDC3_AB:
10789 s = "ldc3";
10790 fmt = "E,o(b)";
10791 /* Itbl support may require additional care here. */
10792 coproc = 1;
10793 goto ld_st;
10794 case M_LDL_AB:
10795 s = "ldl";
10796 fmt = MEM12_FMT;
10797 offbits = (mips_opts.micromips ? 12 : 16);
10798 goto ld_st;
10799 case M_LDR_AB:
10800 s = "ldr";
10801 fmt = MEM12_FMT;
10802 offbits = (mips_opts.micromips ? 12 : 16);
10803 goto ld_st;
10804 case M_LL_AB:
10805 s = "ll";
10806 fmt = MEM12_FMT;
10807 offbits = (mips_opts.micromips ? 12 : 16);
10808 goto ld;
10809 case M_LLD_AB:
10810 s = "lld";
10811 fmt = MEM12_FMT;
10812 offbits = (mips_opts.micromips ? 12 : 16);
10813 goto ld;
10814 case M_LWU_AB:
10815 s = "lwu";
10816 fmt = MEM12_FMT;
10817 offbits = (mips_opts.micromips ? 12 : 16);
10818 goto ld;
10819 case M_LWP_AB:
10820 gas_assert (mips_opts.micromips);
10821 s = "lwp";
10822 fmt = "t,~(b)";
10823 offbits = 12;
10824 lp = 1;
10825 goto ld;
10826 case M_LDP_AB:
10827 gas_assert (mips_opts.micromips);
10828 s = "ldp";
10829 fmt = "t,~(b)";
10830 offbits = 12;
10831 lp = 1;
10832 goto ld;
10833 case M_LWM_AB:
10834 gas_assert (mips_opts.micromips);
10835 s = "lwm";
10836 fmt = "n,~(b)";
10837 offbits = 12;
10838 goto ld_st;
10839 case M_LDM_AB:
10840 gas_assert (mips_opts.micromips);
10841 s = "ldm";
10842 fmt = "n,~(b)";
10843 offbits = 12;
10844 goto ld_st;
10845
10846 ld:
10847 /* We don't want to use $0 as tempreg. */
10848 if (op[2] == op[0] + lp || op[0] + lp == ZERO)
10849 goto ld_st;
10850 else
10851 tempreg = op[0] + lp;
10852 goto ld_noat;
10853
10854 case M_SB_AB:
10855 s = "sb";
10856 fmt = "t,o(b)";
10857 goto ld_st;
10858 case M_SH_AB:
10859 s = "sh";
10860 fmt = "t,o(b)";
10861 goto ld_st;
10862 case M_SW_AB:
10863 s = "sw";
10864 fmt = "t,o(b)";
10865 goto ld_st;
10866 case M_SWC0_AB:
10867 gas_assert (!mips_opts.micromips);
10868 s = "swc0";
10869 fmt = "E,o(b)";
10870 /* Itbl support may require additional care here. */
10871 coproc = 1;
10872 goto ld_st;
10873 case M_SWC1_AB:
10874 s = "swc1";
10875 fmt = "T,o(b)";
10876 /* Itbl support may require additional care here. */
10877 coproc = 1;
10878 goto ld_st;
10879 case M_SWC2_AB:
10880 s = "swc2";
10881 fmt = COP12_FMT;
10882 offbits = (mips_opts.micromips ? 12 : 16);
10883 /* Itbl support may require additional care here. */
10884 coproc = 1;
10885 goto ld_st;
10886 case M_SWC3_AB:
10887 gas_assert (!mips_opts.micromips);
10888 s = "swc3";
10889 fmt = "E,o(b)";
10890 /* Itbl support may require additional care here. */
10891 coproc = 1;
10892 goto ld_st;
10893 case M_SWL_AB:
10894 s = "swl";
10895 fmt = MEM12_FMT;
10896 offbits = (mips_opts.micromips ? 12 : 16);
10897 goto ld_st;
10898 case M_SWR_AB:
10899 s = "swr";
10900 fmt = MEM12_FMT;
10901 offbits = (mips_opts.micromips ? 12 : 16);
10902 goto ld_st;
10903 case M_SC_AB:
10904 s = "sc";
10905 fmt = MEM12_FMT;
10906 offbits = (mips_opts.micromips ? 12 : 16);
10907 goto ld_st;
10908 case M_SCD_AB:
10909 s = "scd";
10910 fmt = MEM12_FMT;
10911 offbits = (mips_opts.micromips ? 12 : 16);
10912 goto ld_st;
10913 case M_CACHE_AB:
10914 s = "cache";
10915 fmt = mips_opts.micromips ? "k,~(b)" : "k,o(b)";
10916 offbits = (mips_opts.micromips ? 12 : 16);
10917 goto ld_st;
10918 case M_CACHEE_AB:
10919 s = "cachee";
10920 fmt = "k,+j(b)";
10921 offbits = 9;
10922 goto ld_st;
10923 case M_PREF_AB:
10924 s = "pref";
10925 fmt = !mips_opts.micromips ? "k,o(b)" : "k,~(b)";
10926 offbits = (mips_opts.micromips ? 12 : 16);
10927 goto ld_st;
10928 case M_PREFE_AB:
10929 s = "prefe";
10930 fmt = "k,+j(b)";
10931 offbits = 9;
10932 goto ld_st;
10933 case M_SDC1_AB:
10934 s = "sdc1";
10935 fmt = "T,o(b)";
10936 coproc = 1;
10937 /* Itbl support may require additional care here. */
10938 goto ld_st;
10939 case M_SDC2_AB:
10940 s = "sdc2";
10941 fmt = COP12_FMT;
10942 offbits = (mips_opts.micromips ? 12 : 16);
10943 /* Itbl support may require additional care here. */
10944 coproc = 1;
10945 goto ld_st;
10946 case M_SQC2_AB:
10947 s = "sqc2";
10948 fmt = "+7,o(b)";
10949 /* Itbl support may require additional care here. */
10950 coproc = 1;
10951 goto ld_st;
10952 case M_SDC3_AB:
10953 gas_assert (!mips_opts.micromips);
10954 s = "sdc3";
10955 fmt = "E,o(b)";
10956 /* Itbl support may require additional care here. */
10957 coproc = 1;
10958 goto ld_st;
10959 case M_SDL_AB:
10960 s = "sdl";
10961 fmt = MEM12_FMT;
10962 offbits = (mips_opts.micromips ? 12 : 16);
10963 goto ld_st;
10964 case M_SDR_AB:
10965 s = "sdr";
10966 fmt = MEM12_FMT;
10967 offbits = (mips_opts.micromips ? 12 : 16);
10968 goto ld_st;
10969 case M_SWP_AB:
10970 gas_assert (mips_opts.micromips);
10971 s = "swp";
10972 fmt = "t,~(b)";
10973 offbits = 12;
10974 goto ld_st;
10975 case M_SDP_AB:
10976 gas_assert (mips_opts.micromips);
10977 s = "sdp";
10978 fmt = "t,~(b)";
10979 offbits = 12;
10980 goto ld_st;
10981 case M_SWM_AB:
10982 gas_assert (mips_opts.micromips);
10983 s = "swm";
10984 fmt = "n,~(b)";
10985 offbits = 12;
10986 goto ld_st;
10987 case M_SDM_AB:
10988 gas_assert (mips_opts.micromips);
10989 s = "sdm";
10990 fmt = "n,~(b)";
10991 offbits = 12;
10992
10993 ld_st:
10994 tempreg = AT;
10995 ld_noat:
10996 breg = op[2];
10997 if (small_offset_p (0, align, 16))
10998 {
10999 /* The first case exists for M_LD_AB and M_SD_AB, which are
11000 macros for o32 but which should act like normal instructions
11001 otherwise. */
11002 if (offbits == 16)
11003 macro_build (&offset_expr, s, fmt, op[0], -1, offset_reloc[0],
11004 offset_reloc[1], offset_reloc[2], breg);
11005 else if (small_offset_p (0, align, offbits))
11006 {
11007 if (offbits == 0)
11008 macro_build (NULL, s, fmt, op[0], breg);
11009 else
11010 macro_build (NULL, s, fmt, op[0],
11011 (int) offset_expr.X_add_number, breg);
11012 }
11013 else
11014 {
11015 if (tempreg == AT)
11016 used_at = 1;
11017 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
11018 tempreg, breg, -1, offset_reloc[0],
11019 offset_reloc[1], offset_reloc[2]);
11020 if (offbits == 0)
11021 macro_build (NULL, s, fmt, op[0], tempreg);
11022 else
11023 macro_build (NULL, s, fmt, op[0], 0, tempreg);
11024 }
11025 break;
11026 }
11027
11028 if (tempreg == AT)
11029 used_at = 1;
11030
11031 if (offset_expr.X_op != O_constant
11032 && offset_expr.X_op != O_symbol)
11033 {
11034 as_bad (_("Expression too complex"));
11035 offset_expr.X_op = O_constant;
11036 }
11037
11038 if (HAVE_32BIT_ADDRESSES
11039 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
11040 {
11041 char value [32];
11042
11043 sprintf_vma (value, offset_expr.X_add_number);
11044 as_bad (_("Number (0x%s) larger than 32 bits"), value);
11045 }
11046
11047 /* A constant expression in PIC code can be handled just as it
11048 is in non PIC code. */
11049 if (offset_expr.X_op == O_constant)
11050 {
11051 expr1.X_add_number = offset_high_part (offset_expr.X_add_number,
11052 offbits == 0 ? 16 : offbits);
11053 offset_expr.X_add_number -= expr1.X_add_number;
11054
11055 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
11056 if (breg != 0)
11057 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11058 tempreg, tempreg, breg);
11059 if (offbits == 0)
11060 {
11061 if (offset_expr.X_add_number != 0)
11062 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
11063 "t,r,j", tempreg, tempreg, BFD_RELOC_LO16);
11064 macro_build (NULL, s, fmt, op[0], tempreg);
11065 }
11066 else if (offbits == 16)
11067 macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11068 else
11069 macro_build (NULL, s, fmt, op[0],
11070 (int) offset_expr.X_add_number, tempreg);
11071 }
11072 else if (offbits != 16)
11073 {
11074 /* The offset field is too narrow to be used for a low-part
11075 relocation, so load the whole address into the auxillary
11076 register. */
11077 load_address (tempreg, &offset_expr, &used_at);
11078 if (breg != 0)
11079 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11080 tempreg, tempreg, breg);
11081 if (offbits == 0)
11082 macro_build (NULL, s, fmt, op[0], tempreg);
11083 else
11084 macro_build (NULL, s, fmt, op[0], 0, tempreg);
11085 }
11086 else if (mips_pic == NO_PIC)
11087 {
11088 /* If this is a reference to a GP relative symbol, and there
11089 is no base register, we want
11090 <op> op[0],<sym>($gp) (BFD_RELOC_GPREL16)
11091 Otherwise, if there is no base register, we want
11092 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
11093 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
11094 If we have a constant, we need two instructions anyhow,
11095 so we always use the latter form.
11096
11097 If we have a base register, and this is a reference to a
11098 GP relative symbol, we want
11099 addu $tempreg,$breg,$gp
11100 <op> op[0],<sym>($tempreg) (BFD_RELOC_GPREL16)
11101 Otherwise we want
11102 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
11103 addu $tempreg,$tempreg,$breg
11104 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
11105 With a constant we always use the latter case.
11106
11107 With 64bit address space and no base register and $at usable,
11108 we want
11109 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
11110 lui $at,<sym> (BFD_RELOC_HI16_S)
11111 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
11112 dsll32 $tempreg,0
11113 daddu $tempreg,$at
11114 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
11115 If we have a base register, we want
11116 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
11117 lui $at,<sym> (BFD_RELOC_HI16_S)
11118 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
11119 daddu $at,$breg
11120 dsll32 $tempreg,0
11121 daddu $tempreg,$at
11122 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
11123
11124 Without $at we can't generate the optimal path for superscalar
11125 processors here since this would require two temporary registers.
11126 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
11127 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
11128 dsll $tempreg,16
11129 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
11130 dsll $tempreg,16
11131 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
11132 If we have a base register, we want
11133 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
11134 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
11135 dsll $tempreg,16
11136 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
11137 dsll $tempreg,16
11138 daddu $tempreg,$tempreg,$breg
11139 <op> op[0],<sym>($tempreg) (BFD_RELOC_LO16)
11140
11141 For GP relative symbols in 64bit address space we can use
11142 the same sequence as in 32bit address space. */
11143 if (HAVE_64BIT_SYMBOLS)
11144 {
11145 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11146 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11147 {
11148 relax_start (offset_expr.X_add_symbol);
11149 if (breg == 0)
11150 {
11151 macro_build (&offset_expr, s, fmt, op[0],
11152 BFD_RELOC_GPREL16, mips_gp_register);
11153 }
11154 else
11155 {
11156 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11157 tempreg, breg, mips_gp_register);
11158 macro_build (&offset_expr, s, fmt, op[0],
11159 BFD_RELOC_GPREL16, tempreg);
11160 }
11161 relax_switch ();
11162 }
11163
11164 if (used_at == 0 && mips_opts.at)
11165 {
11166 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11167 BFD_RELOC_MIPS_HIGHEST);
11168 macro_build (&offset_expr, "lui", LUI_FMT, AT,
11169 BFD_RELOC_HI16_S);
11170 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11171 tempreg, BFD_RELOC_MIPS_HIGHER);
11172 if (breg != 0)
11173 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
11174 macro_build (NULL, "dsll32", SHFT_FMT, tempreg, tempreg, 0);
11175 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
11176 macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_LO16,
11177 tempreg);
11178 used_at = 1;
11179 }
11180 else
11181 {
11182 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11183 BFD_RELOC_MIPS_HIGHEST);
11184 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11185 tempreg, BFD_RELOC_MIPS_HIGHER);
11186 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
11187 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
11188 tempreg, BFD_RELOC_HI16_S);
11189 macro_build (NULL, "dsll", SHFT_FMT, tempreg, tempreg, 16);
11190 if (breg != 0)
11191 macro_build (NULL, "daddu", "d,v,t",
11192 tempreg, tempreg, breg);
11193 macro_build (&offset_expr, s, fmt, op[0],
11194 BFD_RELOC_LO16, tempreg);
11195 }
11196
11197 if (mips_relax.sequence)
11198 relax_end ();
11199 break;
11200 }
11201
11202 if (breg == 0)
11203 {
11204 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11205 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11206 {
11207 relax_start (offset_expr.X_add_symbol);
11208 macro_build (&offset_expr, s, fmt, op[0], BFD_RELOC_GPREL16,
11209 mips_gp_register);
11210 relax_switch ();
11211 }
11212 macro_build_lui (&offset_expr, tempreg);
11213 macro_build (&offset_expr, s, fmt, op[0],
11214 BFD_RELOC_LO16, tempreg);
11215 if (mips_relax.sequence)
11216 relax_end ();
11217 }
11218 else
11219 {
11220 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11221 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11222 {
11223 relax_start (offset_expr.X_add_symbol);
11224 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11225 tempreg, breg, mips_gp_register);
11226 macro_build (&offset_expr, s, fmt, op[0],
11227 BFD_RELOC_GPREL16, tempreg);
11228 relax_switch ();
11229 }
11230 macro_build_lui (&offset_expr, tempreg);
11231 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11232 tempreg, tempreg, breg);
11233 macro_build (&offset_expr, s, fmt, op[0],
11234 BFD_RELOC_LO16, tempreg);
11235 if (mips_relax.sequence)
11236 relax_end ();
11237 }
11238 }
11239 else if (!mips_big_got)
11240 {
11241 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
11242
11243 /* If this is a reference to an external symbol, we want
11244 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11245 nop
11246 <op> op[0],0($tempreg)
11247 Otherwise we want
11248 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11249 nop
11250 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
11251 <op> op[0],0($tempreg)
11252
11253 For NewABI, we want
11254 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
11255 <op> op[0],<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
11256
11257 If there is a base register, we add it to $tempreg before
11258 the <op>. If there is a constant, we stick it in the
11259 <op> instruction. We don't handle constants larger than
11260 16 bits, because we have no way to load the upper 16 bits
11261 (actually, we could handle them for the subset of cases
11262 in which we are not using $at). */
11263 gas_assert (offset_expr.X_op == O_symbol);
11264 if (HAVE_NEWABI)
11265 {
11266 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11267 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
11268 if (breg != 0)
11269 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11270 tempreg, tempreg, breg);
11271 macro_build (&offset_expr, s, fmt, op[0],
11272 BFD_RELOC_MIPS_GOT_OFST, tempreg);
11273 break;
11274 }
11275 expr1.X_add_number = offset_expr.X_add_number;
11276 offset_expr.X_add_number = 0;
11277 if (expr1.X_add_number < -0x8000
11278 || expr1.X_add_number >= 0x8000)
11279 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11280 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11281 lw_reloc_type, mips_gp_register);
11282 load_delay_nop ();
11283 relax_start (offset_expr.X_add_symbol);
11284 relax_switch ();
11285 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
11286 tempreg, BFD_RELOC_LO16);
11287 relax_end ();
11288 if (breg != 0)
11289 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11290 tempreg, tempreg, breg);
11291 macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11292 }
11293 else if (mips_big_got && !HAVE_NEWABI)
11294 {
11295 int gpdelay;
11296
11297 /* If this is a reference to an external symbol, we want
11298 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
11299 addu $tempreg,$tempreg,$gp
11300 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
11301 <op> op[0],0($tempreg)
11302 Otherwise we want
11303 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11304 nop
11305 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
11306 <op> op[0],0($tempreg)
11307 If there is a base register, we add it to $tempreg before
11308 the <op>. If there is a constant, we stick it in the
11309 <op> instruction. We don't handle constants larger than
11310 16 bits, because we have no way to load the upper 16 bits
11311 (actually, we could handle them for the subset of cases
11312 in which we are not using $at). */
11313 gas_assert (offset_expr.X_op == O_symbol);
11314 expr1.X_add_number = offset_expr.X_add_number;
11315 offset_expr.X_add_number = 0;
11316 if (expr1.X_add_number < -0x8000
11317 || expr1.X_add_number >= 0x8000)
11318 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11319 gpdelay = reg_needs_delay (mips_gp_register);
11320 relax_start (offset_expr.X_add_symbol);
11321 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11322 BFD_RELOC_MIPS_GOT_HI16);
11323 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
11324 mips_gp_register);
11325 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11326 BFD_RELOC_MIPS_GOT_LO16, tempreg);
11327 relax_switch ();
11328 if (gpdelay)
11329 macro_build (NULL, "nop", "");
11330 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11331 BFD_RELOC_MIPS_GOT16, mips_gp_register);
11332 load_delay_nop ();
11333 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
11334 tempreg, BFD_RELOC_LO16);
11335 relax_end ();
11336
11337 if (breg != 0)
11338 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11339 tempreg, tempreg, breg);
11340 macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11341 }
11342 else if (mips_big_got && HAVE_NEWABI)
11343 {
11344 /* If this is a reference to an external symbol, we want
11345 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
11346 add $tempreg,$tempreg,$gp
11347 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
11348 <op> op[0],<ofst>($tempreg)
11349 Otherwise, for local symbols, we want:
11350 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
11351 <op> op[0],<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
11352 gas_assert (offset_expr.X_op == O_symbol);
11353 expr1.X_add_number = offset_expr.X_add_number;
11354 offset_expr.X_add_number = 0;
11355 if (expr1.X_add_number < -0x8000
11356 || expr1.X_add_number >= 0x8000)
11357 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11358 relax_start (offset_expr.X_add_symbol);
11359 macro_build (&offset_expr, "lui", LUI_FMT, tempreg,
11360 BFD_RELOC_MIPS_GOT_HI16);
11361 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
11362 mips_gp_register);
11363 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11364 BFD_RELOC_MIPS_GOT_LO16, tempreg);
11365 if (breg != 0)
11366 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11367 tempreg, tempreg, breg);
11368 macro_build (&expr1, s, fmt, op[0], BFD_RELOC_LO16, tempreg);
11369
11370 relax_switch ();
11371 offset_expr.X_add_number = expr1.X_add_number;
11372 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
11373 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
11374 if (breg != 0)
11375 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11376 tempreg, tempreg, breg);
11377 macro_build (&offset_expr, s, fmt, op[0],
11378 BFD_RELOC_MIPS_GOT_OFST, tempreg);
11379 relax_end ();
11380 }
11381 else
11382 abort ();
11383
11384 break;
11385
11386 case M_JRADDIUSP:
11387 gas_assert (mips_opts.micromips);
11388 gas_assert (mips_opts.insn32);
11389 start_noreorder ();
11390 macro_build (NULL, "jr", "s", RA);
11391 expr1.X_add_number = op[0] << 2;
11392 macro_build (&expr1, "addiu", "t,r,j", SP, SP, BFD_RELOC_LO16);
11393 end_noreorder ();
11394 break;
11395
11396 case M_JRC:
11397 gas_assert (mips_opts.micromips);
11398 gas_assert (mips_opts.insn32);
11399 macro_build (NULL, "jr", "s", op[0]);
11400 if (mips_opts.noreorder)
11401 macro_build (NULL, "nop", "");
11402 break;
11403
11404 case M_LI:
11405 case M_LI_S:
11406 load_register (op[0], &imm_expr, 0);
11407 break;
11408
11409 case M_DLI:
11410 load_register (op[0], &imm_expr, 1);
11411 break;
11412
11413 case M_LI_SS:
11414 if (imm_expr.X_op == O_constant)
11415 {
11416 used_at = 1;
11417 load_register (AT, &imm_expr, 0);
11418 macro_build (NULL, "mtc1", "t,G", AT, op[0]);
11419 break;
11420 }
11421 else
11422 {
11423 gas_assert (offset_expr.X_op == O_symbol
11424 && strcmp (segment_name (S_GET_SEGMENT
11425 (offset_expr.X_add_symbol)),
11426 ".lit4") == 0
11427 && offset_expr.X_add_number == 0);
11428 macro_build (&offset_expr, "lwc1", "T,o(b)", op[0],
11429 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
11430 break;
11431 }
11432
11433 case M_LI_D:
11434 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
11435 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
11436 order 32 bits of the value and the low order 32 bits are either
11437 zero or in OFFSET_EXPR. */
11438 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
11439 {
11440 if (HAVE_64BIT_GPRS)
11441 load_register (op[0], &imm_expr, 1);
11442 else
11443 {
11444 int hreg, lreg;
11445
11446 if (target_big_endian)
11447 {
11448 hreg = op[0];
11449 lreg = op[0] + 1;
11450 }
11451 else
11452 {
11453 hreg = op[0] + 1;
11454 lreg = op[0];
11455 }
11456
11457 if (hreg <= 31)
11458 load_register (hreg, &imm_expr, 0);
11459 if (lreg <= 31)
11460 {
11461 if (offset_expr.X_op == O_absent)
11462 move_register (lreg, 0);
11463 else
11464 {
11465 gas_assert (offset_expr.X_op == O_constant);
11466 load_register (lreg, &offset_expr, 0);
11467 }
11468 }
11469 }
11470 break;
11471 }
11472
11473 /* We know that sym is in the .rdata section. First we get the
11474 upper 16 bits of the address. */
11475 if (mips_pic == NO_PIC)
11476 {
11477 macro_build_lui (&offset_expr, AT);
11478 used_at = 1;
11479 }
11480 else
11481 {
11482 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
11483 BFD_RELOC_MIPS_GOT16, mips_gp_register);
11484 used_at = 1;
11485 }
11486
11487 /* Now we load the register(s). */
11488 if (HAVE_64BIT_GPRS)
11489 {
11490 used_at = 1;
11491 macro_build (&offset_expr, "ld", "t,o(b)", op[0],
11492 BFD_RELOC_LO16, AT);
11493 }
11494 else
11495 {
11496 used_at = 1;
11497 macro_build (&offset_expr, "lw", "t,o(b)", op[0],
11498 BFD_RELOC_LO16, AT);
11499 if (op[0] != RA)
11500 {
11501 /* FIXME: How in the world do we deal with the possible
11502 overflow here? */
11503 offset_expr.X_add_number += 4;
11504 macro_build (&offset_expr, "lw", "t,o(b)",
11505 op[0] + 1, BFD_RELOC_LO16, AT);
11506 }
11507 }
11508 break;
11509
11510 case M_LI_DD:
11511 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
11512 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
11513 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
11514 the value and the low order 32 bits are either zero or in
11515 OFFSET_EXPR. */
11516 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
11517 {
11518 used_at = 1;
11519 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
11520 if (HAVE_64BIT_FPRS)
11521 {
11522 gas_assert (HAVE_64BIT_GPRS);
11523 macro_build (NULL, "dmtc1", "t,S", AT, op[0]);
11524 }
11525 else
11526 {
11527 macro_build (NULL, "mtc1", "t,G", AT, op[0] + 1);
11528 if (offset_expr.X_op == O_absent)
11529 macro_build (NULL, "mtc1", "t,G", 0, op[0]);
11530 else
11531 {
11532 gas_assert (offset_expr.X_op == O_constant);
11533 load_register (AT, &offset_expr, 0);
11534 macro_build (NULL, "mtc1", "t,G", AT, op[0]);
11535 }
11536 }
11537 break;
11538 }
11539
11540 gas_assert (offset_expr.X_op == O_symbol
11541 && offset_expr.X_add_number == 0);
11542 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
11543 if (strcmp (s, ".lit8") == 0)
11544 {
11545 op[2] = mips_gp_register;
11546 offset_reloc[0] = BFD_RELOC_MIPS_LITERAL;
11547 offset_reloc[1] = BFD_RELOC_UNUSED;
11548 offset_reloc[2] = BFD_RELOC_UNUSED;
11549 }
11550 else
11551 {
11552 gas_assert (strcmp (s, RDATA_SECTION_NAME) == 0);
11553 used_at = 1;
11554 if (mips_pic != NO_PIC)
11555 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
11556 BFD_RELOC_MIPS_GOT16, mips_gp_register);
11557 else
11558 {
11559 /* FIXME: This won't work for a 64 bit address. */
11560 macro_build_lui (&offset_expr, AT);
11561 }
11562
11563 op[2] = AT;
11564 offset_reloc[0] = BFD_RELOC_LO16;
11565 offset_reloc[1] = BFD_RELOC_UNUSED;
11566 offset_reloc[2] = BFD_RELOC_UNUSED;
11567 }
11568 align = 8;
11569 /* Fall through */
11570
11571 case M_L_DAB:
11572 /*
11573 * The MIPS assembler seems to check for X_add_number not
11574 * being double aligned and generating:
11575 * lui at,%hi(foo+1)
11576 * addu at,at,v1
11577 * addiu at,at,%lo(foo+1)
11578 * lwc1 f2,0(at)
11579 * lwc1 f3,4(at)
11580 * But, the resulting address is the same after relocation so why
11581 * generate the extra instruction?
11582 */
11583 /* Itbl support may require additional care here. */
11584 coproc = 1;
11585 fmt = "T,o(b)";
11586 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
11587 {
11588 s = "ldc1";
11589 goto ld_st;
11590 }
11591 s = "lwc1";
11592 goto ldd_std;
11593
11594 case M_S_DAB:
11595 gas_assert (!mips_opts.micromips);
11596 /* Itbl support may require additional care here. */
11597 coproc = 1;
11598 fmt = "T,o(b)";
11599 if (CPU_HAS_LDC1_SDC1 (mips_opts.arch))
11600 {
11601 s = "sdc1";
11602 goto ld_st;
11603 }
11604 s = "swc1";
11605 goto ldd_std;
11606
11607 case M_LQ_AB:
11608 fmt = "t,o(b)";
11609 s = "lq";
11610 goto ld;
11611
11612 case M_SQ_AB:
11613 fmt = "t,o(b)";
11614 s = "sq";
11615 goto ld_st;
11616
11617 case M_LD_AB:
11618 fmt = "t,o(b)";
11619 if (HAVE_64BIT_GPRS)
11620 {
11621 s = "ld";
11622 goto ld;
11623 }
11624 s = "lw";
11625 goto ldd_std;
11626
11627 case M_SD_AB:
11628 fmt = "t,o(b)";
11629 if (HAVE_64BIT_GPRS)
11630 {
11631 s = "sd";
11632 goto ld_st;
11633 }
11634 s = "sw";
11635
11636 ldd_std:
11637 /* Even on a big endian machine $fn comes before $fn+1. We have
11638 to adjust when loading from memory. We set coproc if we must
11639 load $fn+1 first. */
11640 /* Itbl support may require additional care here. */
11641 if (!target_big_endian)
11642 coproc = 0;
11643
11644 breg = op[2];
11645 if (small_offset_p (0, align, 16))
11646 {
11647 ep = &offset_expr;
11648 if (!small_offset_p (4, align, 16))
11649 {
11650 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", AT, breg,
11651 -1, offset_reloc[0], offset_reloc[1],
11652 offset_reloc[2]);
11653 expr1.X_add_number = 0;
11654 ep = &expr1;
11655 breg = AT;
11656 used_at = 1;
11657 offset_reloc[0] = BFD_RELOC_LO16;
11658 offset_reloc[1] = BFD_RELOC_UNUSED;
11659 offset_reloc[2] = BFD_RELOC_UNUSED;
11660 }
11661 if (strcmp (s, "lw") == 0 && op[0] == breg)
11662 {
11663 ep->X_add_number += 4;
11664 macro_build (ep, s, fmt, op[0] + 1, -1, offset_reloc[0],
11665 offset_reloc[1], offset_reloc[2], breg);
11666 ep->X_add_number -= 4;
11667 macro_build (ep, s, fmt, op[0], -1, offset_reloc[0],
11668 offset_reloc[1], offset_reloc[2], breg);
11669 }
11670 else
11671 {
11672 macro_build (ep, s, fmt, coproc ? op[0] + 1 : op[0], -1,
11673 offset_reloc[0], offset_reloc[1], offset_reloc[2],
11674 breg);
11675 ep->X_add_number += 4;
11676 macro_build (ep, s, fmt, coproc ? op[0] : op[0] + 1, -1,
11677 offset_reloc[0], offset_reloc[1], offset_reloc[2],
11678 breg);
11679 }
11680 break;
11681 }
11682
11683 if (offset_expr.X_op != O_symbol
11684 && offset_expr.X_op != O_constant)
11685 {
11686 as_bad (_("Expression too complex"));
11687 offset_expr.X_op = O_constant;
11688 }
11689
11690 if (HAVE_32BIT_ADDRESSES
11691 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
11692 {
11693 char value [32];
11694
11695 sprintf_vma (value, offset_expr.X_add_number);
11696 as_bad (_("Number (0x%s) larger than 32 bits"), value);
11697 }
11698
11699 if (mips_pic == NO_PIC || offset_expr.X_op == O_constant)
11700 {
11701 /* If this is a reference to a GP relative symbol, we want
11702 <op> op[0],<sym>($gp) (BFD_RELOC_GPREL16)
11703 <op> op[0]+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
11704 If we have a base register, we use this
11705 addu $at,$breg,$gp
11706 <op> op[0],<sym>($at) (BFD_RELOC_GPREL16)
11707 <op> op[0]+1,<sym>+4($at) (BFD_RELOC_GPREL16)
11708 If this is not a GP relative symbol, we want
11709 lui $at,<sym> (BFD_RELOC_HI16_S)
11710 <op> op[0],<sym>($at) (BFD_RELOC_LO16)
11711 <op> op[0]+1,<sym>+4($at) (BFD_RELOC_LO16)
11712 If there is a base register, we add it to $at after the
11713 lui instruction. If there is a constant, we always use
11714 the last case. */
11715 if (offset_expr.X_op == O_symbol
11716 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
11717 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
11718 {
11719 relax_start (offset_expr.X_add_symbol);
11720 if (breg == 0)
11721 {
11722 tempreg = mips_gp_register;
11723 }
11724 else
11725 {
11726 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11727 AT, breg, mips_gp_register);
11728 tempreg = AT;
11729 used_at = 1;
11730 }
11731
11732 /* Itbl support may require additional care here. */
11733 macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
11734 BFD_RELOC_GPREL16, tempreg);
11735 offset_expr.X_add_number += 4;
11736
11737 /* Set mips_optimize to 2 to avoid inserting an
11738 undesired nop. */
11739 hold_mips_optimize = mips_optimize;
11740 mips_optimize = 2;
11741 /* Itbl support may require additional care here. */
11742 macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
11743 BFD_RELOC_GPREL16, tempreg);
11744 mips_optimize = hold_mips_optimize;
11745
11746 relax_switch ();
11747
11748 offset_expr.X_add_number -= 4;
11749 }
11750 used_at = 1;
11751 if (offset_high_part (offset_expr.X_add_number, 16)
11752 != offset_high_part (offset_expr.X_add_number + 4, 16))
11753 {
11754 load_address (AT, &offset_expr, &used_at);
11755 offset_expr.X_op = O_constant;
11756 offset_expr.X_add_number = 0;
11757 }
11758 else
11759 macro_build_lui (&offset_expr, AT);
11760 if (breg != 0)
11761 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
11762 /* Itbl support may require additional care here. */
11763 macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
11764 BFD_RELOC_LO16, AT);
11765 /* FIXME: How do we handle overflow here? */
11766 offset_expr.X_add_number += 4;
11767 /* Itbl support may require additional care here. */
11768 macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
11769 BFD_RELOC_LO16, AT);
11770 if (mips_relax.sequence)
11771 relax_end ();
11772 }
11773 else if (!mips_big_got)
11774 {
11775 /* If this is a reference to an external symbol, we want
11776 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11777 nop
11778 <op> op[0],0($at)
11779 <op> op[0]+1,4($at)
11780 Otherwise we want
11781 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11782 nop
11783 <op> op[0],<sym>($at) (BFD_RELOC_LO16)
11784 <op> op[0]+1,<sym>+4($at) (BFD_RELOC_LO16)
11785 If there is a base register we add it to $at before the
11786 lwc1 instructions. If there is a constant we include it
11787 in the lwc1 instructions. */
11788 used_at = 1;
11789 expr1.X_add_number = offset_expr.X_add_number;
11790 if (expr1.X_add_number < -0x8000
11791 || expr1.X_add_number >= 0x8000 - 4)
11792 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11793 load_got_offset (AT, &offset_expr);
11794 load_delay_nop ();
11795 if (breg != 0)
11796 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
11797
11798 /* Set mips_optimize to 2 to avoid inserting an undesired
11799 nop. */
11800 hold_mips_optimize = mips_optimize;
11801 mips_optimize = 2;
11802
11803 /* Itbl support may require additional care here. */
11804 relax_start (offset_expr.X_add_symbol);
11805 macro_build (&expr1, s, fmt, coproc ? op[0] + 1 : op[0],
11806 BFD_RELOC_LO16, AT);
11807 expr1.X_add_number += 4;
11808 macro_build (&expr1, s, fmt, coproc ? op[0] : op[0] + 1,
11809 BFD_RELOC_LO16, AT);
11810 relax_switch ();
11811 macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
11812 BFD_RELOC_LO16, AT);
11813 offset_expr.X_add_number += 4;
11814 macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
11815 BFD_RELOC_LO16, AT);
11816 relax_end ();
11817
11818 mips_optimize = hold_mips_optimize;
11819 }
11820 else if (mips_big_got)
11821 {
11822 int gpdelay;
11823
11824 /* If this is a reference to an external symbol, we want
11825 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
11826 addu $at,$at,$gp
11827 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
11828 nop
11829 <op> op[0],0($at)
11830 <op> op[0]+1,4($at)
11831 Otherwise we want
11832 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
11833 nop
11834 <op> op[0],<sym>($at) (BFD_RELOC_LO16)
11835 <op> op[0]+1,<sym>+4($at) (BFD_RELOC_LO16)
11836 If there is a base register we add it to $at before the
11837 lwc1 instructions. If there is a constant we include it
11838 in the lwc1 instructions. */
11839 used_at = 1;
11840 expr1.X_add_number = offset_expr.X_add_number;
11841 offset_expr.X_add_number = 0;
11842 if (expr1.X_add_number < -0x8000
11843 || expr1.X_add_number >= 0x8000 - 4)
11844 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
11845 gpdelay = reg_needs_delay (mips_gp_register);
11846 relax_start (offset_expr.X_add_symbol);
11847 macro_build (&offset_expr, "lui", LUI_FMT,
11848 AT, BFD_RELOC_MIPS_GOT_HI16);
11849 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
11850 AT, AT, mips_gp_register);
11851 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
11852 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
11853 load_delay_nop ();
11854 if (breg != 0)
11855 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
11856 /* Itbl support may require additional care here. */
11857 macro_build (&expr1, s, fmt, coproc ? op[0] + 1 : op[0],
11858 BFD_RELOC_LO16, AT);
11859 expr1.X_add_number += 4;
11860
11861 /* Set mips_optimize to 2 to avoid inserting an undesired
11862 nop. */
11863 hold_mips_optimize = mips_optimize;
11864 mips_optimize = 2;
11865 /* Itbl support may require additional care here. */
11866 macro_build (&expr1, s, fmt, coproc ? op[0] : op[0] + 1,
11867 BFD_RELOC_LO16, AT);
11868 mips_optimize = hold_mips_optimize;
11869 expr1.X_add_number -= 4;
11870
11871 relax_switch ();
11872 offset_expr.X_add_number = expr1.X_add_number;
11873 if (gpdelay)
11874 macro_build (NULL, "nop", "");
11875 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
11876 BFD_RELOC_MIPS_GOT16, mips_gp_register);
11877 load_delay_nop ();
11878 if (breg != 0)
11879 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
11880 /* Itbl support may require additional care here. */
11881 macro_build (&offset_expr, s, fmt, coproc ? op[0] + 1 : op[0],
11882 BFD_RELOC_LO16, AT);
11883 offset_expr.X_add_number += 4;
11884
11885 /* Set mips_optimize to 2 to avoid inserting an undesired
11886 nop. */
11887 hold_mips_optimize = mips_optimize;
11888 mips_optimize = 2;
11889 /* Itbl support may require additional care here. */
11890 macro_build (&offset_expr, s, fmt, coproc ? op[0] : op[0] + 1,
11891 BFD_RELOC_LO16, AT);
11892 mips_optimize = hold_mips_optimize;
11893 relax_end ();
11894 }
11895 else
11896 abort ();
11897
11898 break;
11899
11900 case M_SAA_AB:
11901 s = "saa";
11902 offbits = 0;
11903 fmt = "t,(b)";
11904 goto ld_st;
11905 case M_SAAD_AB:
11906 s = "saad";
11907 offbits = 0;
11908 fmt = "t,(b)";
11909 goto ld_st;
11910
11911 /* New code added to support COPZ instructions.
11912 This code builds table entries out of the macros in mip_opcodes.
11913 R4000 uses interlocks to handle coproc delays.
11914 Other chips (like the R3000) require nops to be inserted for delays.
11915
11916 FIXME: Currently, we require that the user handle delays.
11917 In order to fill delay slots for non-interlocked chips,
11918 we must have a way to specify delays based on the coprocessor.
11919 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
11920 What are the side-effects of the cop instruction?
11921 What cache support might we have and what are its effects?
11922 Both coprocessor & memory require delays. how long???
11923 What registers are read/set/modified?
11924
11925 If an itbl is provided to interpret cop instructions,
11926 this knowledge can be encoded in the itbl spec. */
11927
11928 case M_COP0:
11929 s = "c0";
11930 goto copz;
11931 case M_COP1:
11932 s = "c1";
11933 goto copz;
11934 case M_COP2:
11935 s = "c2";
11936 goto copz;
11937 case M_COP3:
11938 s = "c3";
11939 copz:
11940 gas_assert (!mips_opts.micromips);
11941 /* For now we just do C (same as Cz). The parameter will be
11942 stored in insn_opcode by mips_ip. */
11943 macro_build (NULL, s, "C", (int) ip->insn_opcode);
11944 break;
11945
11946 case M_MOVE:
11947 move_register (op[0], op[1]);
11948 break;
11949
11950 case M_MOVEP:
11951 gas_assert (mips_opts.micromips);
11952 gas_assert (mips_opts.insn32);
11953 move_register (micromips_to_32_reg_h_map1[op[0]],
11954 micromips_to_32_reg_m_map[op[1]]);
11955 move_register (micromips_to_32_reg_h_map2[op[0]],
11956 micromips_to_32_reg_n_map[op[2]]);
11957 break;
11958
11959 case M_DMUL:
11960 dbl = 1;
11961 case M_MUL:
11962 if (mips_opts.arch == CPU_R5900)
11963 macro_build (NULL, dbl ? "dmultu" : "multu", "d,s,t", op[0], op[1],
11964 op[2]);
11965 else
11966 {
11967 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", op[1], op[2]);
11968 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
11969 }
11970 break;
11971
11972 case M_DMUL_I:
11973 dbl = 1;
11974 case M_MUL_I:
11975 /* The MIPS assembler some times generates shifts and adds. I'm
11976 not trying to be that fancy. GCC should do this for us
11977 anyway. */
11978 used_at = 1;
11979 load_register (AT, &imm_expr, dbl);
11980 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", op[1], AT);
11981 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
11982 break;
11983
11984 case M_DMULO_I:
11985 dbl = 1;
11986 case M_MULO_I:
11987 imm = 1;
11988 goto do_mulo;
11989
11990 case M_DMULO:
11991 dbl = 1;
11992 case M_MULO:
11993 do_mulo:
11994 start_noreorder ();
11995 used_at = 1;
11996 if (imm)
11997 load_register (AT, &imm_expr, dbl);
11998 macro_build (NULL, dbl ? "dmult" : "mult", "s,t",
11999 op[1], imm ? AT : op[2]);
12000 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12001 macro_build (NULL, dbl ? "dsra32" : "sra", SHFT_FMT, op[0], op[0], 31);
12002 macro_build (NULL, "mfhi", MFHL_FMT, AT);
12003 if (mips_trap)
12004 macro_build (NULL, "tne", TRAP_FMT, op[0], AT, 6);
12005 else
12006 {
12007 if (mips_opts.micromips)
12008 micromips_label_expr (&label_expr);
12009 else
12010 label_expr.X_add_number = 8;
12011 macro_build (&label_expr, "beq", "s,t,p", op[0], AT);
12012 macro_build (NULL, "nop", "");
12013 macro_build (NULL, "break", BRK_FMT, 6);
12014 if (mips_opts.micromips)
12015 micromips_add_label ();
12016 }
12017 end_noreorder ();
12018 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12019 break;
12020
12021 case M_DMULOU_I:
12022 dbl = 1;
12023 case M_MULOU_I:
12024 imm = 1;
12025 goto do_mulou;
12026
12027 case M_DMULOU:
12028 dbl = 1;
12029 case M_MULOU:
12030 do_mulou:
12031 start_noreorder ();
12032 used_at = 1;
12033 if (imm)
12034 load_register (AT, &imm_expr, dbl);
12035 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
12036 op[1], imm ? AT : op[2]);
12037 macro_build (NULL, "mfhi", MFHL_FMT, AT);
12038 macro_build (NULL, "mflo", MFHL_FMT, op[0]);
12039 if (mips_trap)
12040 macro_build (NULL, "tne", TRAP_FMT, AT, ZERO, 6);
12041 else
12042 {
12043 if (mips_opts.micromips)
12044 micromips_label_expr (&label_expr);
12045 else
12046 label_expr.X_add_number = 8;
12047 macro_build (&label_expr, "beq", "s,t,p", AT, ZERO);
12048 macro_build (NULL, "nop", "");
12049 macro_build (NULL, "break", BRK_FMT, 6);
12050 if (mips_opts.micromips)
12051 micromips_add_label ();
12052 }
12053 end_noreorder ();
12054 break;
12055
12056 case M_DROL:
12057 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12058 {
12059 if (op[0] == op[1])
12060 {
12061 tempreg = AT;
12062 used_at = 1;
12063 }
12064 else
12065 tempreg = op[0];
12066 macro_build (NULL, "dnegu", "d,w", tempreg, op[2]);
12067 macro_build (NULL, "drorv", "d,t,s", op[0], op[1], tempreg);
12068 break;
12069 }
12070 used_at = 1;
12071 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, op[2]);
12072 macro_build (NULL, "dsrlv", "d,t,s", AT, op[1], AT);
12073 macro_build (NULL, "dsllv", "d,t,s", op[0], op[1], op[2]);
12074 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12075 break;
12076
12077 case M_ROL:
12078 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12079 {
12080 if (op[0] == op[1])
12081 {
12082 tempreg = AT;
12083 used_at = 1;
12084 }
12085 else
12086 tempreg = op[0];
12087 macro_build (NULL, "negu", "d,w", tempreg, op[2]);
12088 macro_build (NULL, "rorv", "d,t,s", op[0], op[1], tempreg);
12089 break;
12090 }
12091 used_at = 1;
12092 macro_build (NULL, "subu", "d,v,t", AT, ZERO, op[2]);
12093 macro_build (NULL, "srlv", "d,t,s", AT, op[1], AT);
12094 macro_build (NULL, "sllv", "d,t,s", op[0], op[1], op[2]);
12095 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12096 break;
12097
12098 case M_DROL_I:
12099 {
12100 unsigned int rot;
12101 char *l;
12102 char *rr;
12103
12104 if (imm_expr.X_op != O_constant)
12105 as_bad (_("Improper rotate count"));
12106 rot = imm_expr.X_add_number & 0x3f;
12107 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12108 {
12109 rot = (64 - rot) & 0x3f;
12110 if (rot >= 32)
12111 macro_build (NULL, "dror32", SHFT_FMT, op[0], op[1], rot - 32);
12112 else
12113 macro_build (NULL, "dror", SHFT_FMT, op[0], op[1], rot);
12114 break;
12115 }
12116 if (rot == 0)
12117 {
12118 macro_build (NULL, "dsrl", SHFT_FMT, op[0], op[1], 0);
12119 break;
12120 }
12121 l = (rot < 0x20) ? "dsll" : "dsll32";
12122 rr = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
12123 rot &= 0x1f;
12124 used_at = 1;
12125 macro_build (NULL, l, SHFT_FMT, AT, op[1], rot);
12126 macro_build (NULL, rr, SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12127 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12128 }
12129 break;
12130
12131 case M_ROL_I:
12132 {
12133 unsigned int rot;
12134
12135 if (imm_expr.X_op != O_constant)
12136 as_bad (_("Improper rotate count"));
12137 rot = imm_expr.X_add_number & 0x1f;
12138 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12139 {
12140 macro_build (NULL, "ror", SHFT_FMT, op[0], op[1],
12141 (32 - rot) & 0x1f);
12142 break;
12143 }
12144 if (rot == 0)
12145 {
12146 macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], 0);
12147 break;
12148 }
12149 used_at = 1;
12150 macro_build (NULL, "sll", SHFT_FMT, AT, op[1], rot);
12151 macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12152 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12153 }
12154 break;
12155
12156 case M_DROR:
12157 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12158 {
12159 macro_build (NULL, "drorv", "d,t,s", op[0], op[1], op[2]);
12160 break;
12161 }
12162 used_at = 1;
12163 macro_build (NULL, "dsubu", "d,v,t", AT, ZERO, op[2]);
12164 macro_build (NULL, "dsllv", "d,t,s", AT, op[1], AT);
12165 macro_build (NULL, "dsrlv", "d,t,s", op[0], op[1], op[2]);
12166 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12167 break;
12168
12169 case M_ROR:
12170 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12171 {
12172 macro_build (NULL, "rorv", "d,t,s", op[0], op[1], op[2]);
12173 break;
12174 }
12175 used_at = 1;
12176 macro_build (NULL, "subu", "d,v,t", AT, ZERO, op[2]);
12177 macro_build (NULL, "sllv", "d,t,s", AT, op[1], AT);
12178 macro_build (NULL, "srlv", "d,t,s", op[0], op[1], op[2]);
12179 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12180 break;
12181
12182 case M_DROR_I:
12183 {
12184 unsigned int rot;
12185 char *l;
12186 char *rr;
12187
12188 if (imm_expr.X_op != O_constant)
12189 as_bad (_("Improper rotate count"));
12190 rot = imm_expr.X_add_number & 0x3f;
12191 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
12192 {
12193 if (rot >= 32)
12194 macro_build (NULL, "dror32", SHFT_FMT, op[0], op[1], rot - 32);
12195 else
12196 macro_build (NULL, "dror", SHFT_FMT, op[0], op[1], rot);
12197 break;
12198 }
12199 if (rot == 0)
12200 {
12201 macro_build (NULL, "dsrl", SHFT_FMT, op[0], op[1], 0);
12202 break;
12203 }
12204 rr = (rot < 0x20) ? "dsrl" : "dsrl32";
12205 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
12206 rot &= 0x1f;
12207 used_at = 1;
12208 macro_build (NULL, rr, SHFT_FMT, AT, op[1], rot);
12209 macro_build (NULL, l, SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12210 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12211 }
12212 break;
12213
12214 case M_ROR_I:
12215 {
12216 unsigned int rot;
12217
12218 if (imm_expr.X_op != O_constant)
12219 as_bad (_("Improper rotate count"));
12220 rot = imm_expr.X_add_number & 0x1f;
12221 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
12222 {
12223 macro_build (NULL, "ror", SHFT_FMT, op[0], op[1], rot);
12224 break;
12225 }
12226 if (rot == 0)
12227 {
12228 macro_build (NULL, "srl", SHFT_FMT, op[0], op[1], 0);
12229 break;
12230 }
12231 used_at = 1;
12232 macro_build (NULL, "srl", SHFT_FMT, AT, op[1], rot);
12233 macro_build (NULL, "sll", SHFT_FMT, op[0], op[1], (0x20 - rot) & 0x1f);
12234 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12235 }
12236 break;
12237
12238 case M_SEQ:
12239 if (op[1] == 0)
12240 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[2], BFD_RELOC_LO16);
12241 else if (op[2] == 0)
12242 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12243 else
12244 {
12245 macro_build (NULL, "xor", "d,v,t", op[0], op[1], op[2]);
12246 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[0], BFD_RELOC_LO16);
12247 }
12248 break;
12249
12250 case M_SEQ_I:
12251 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
12252 {
12253 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12254 break;
12255 }
12256 if (op[1] == 0)
12257 {
12258 as_warn (_("Instruction %s: result is always false"),
12259 ip->insn_mo->name);
12260 move_register (op[0], 0);
12261 break;
12262 }
12263 if (CPU_HAS_SEQ (mips_opts.arch)
12264 && -512 <= imm_expr.X_add_number
12265 && imm_expr.X_add_number < 512)
12266 {
12267 macro_build (NULL, "seqi", "t,r,+Q", op[0], op[1],
12268 (int) imm_expr.X_add_number);
12269 break;
12270 }
12271 if (imm_expr.X_op == O_constant
12272 && imm_expr.X_add_number >= 0
12273 && imm_expr.X_add_number < 0x10000)
12274 macro_build (&imm_expr, "xori", "t,r,i", op[0], op[1], BFD_RELOC_LO16);
12275 else if (imm_expr.X_op == O_constant
12276 && imm_expr.X_add_number > -0x8000
12277 && imm_expr.X_add_number < 0)
12278 {
12279 imm_expr.X_add_number = -imm_expr.X_add_number;
12280 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
12281 "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12282 }
12283 else if (CPU_HAS_SEQ (mips_opts.arch))
12284 {
12285 used_at = 1;
12286 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12287 macro_build (NULL, "seq", "d,v,t", op[0], op[1], AT);
12288 break;
12289 }
12290 else
12291 {
12292 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12293 macro_build (NULL, "xor", "d,v,t", op[0], op[1], AT);
12294 used_at = 1;
12295 }
12296 macro_build (&expr1, "sltiu", "t,r,j", op[0], op[0], BFD_RELOC_LO16);
12297 break;
12298
12299 case M_SGE: /* X >= Y <==> not (X < Y) */
12300 s = "slt";
12301 goto sge;
12302 case M_SGEU:
12303 s = "sltu";
12304 sge:
12305 macro_build (NULL, s, "d,v,t", op[0], op[1], op[2]);
12306 macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12307 break;
12308
12309 case M_SGE_I: /* X >= I <==> not (X < I) */
12310 case M_SGEU_I:
12311 if (imm_expr.X_op == O_constant
12312 && imm_expr.X_add_number >= -0x8000
12313 && imm_expr.X_add_number < 0x8000)
12314 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
12315 op[0], op[1], BFD_RELOC_LO16);
12316 else
12317 {
12318 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12319 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
12320 op[0], op[1], AT);
12321 used_at = 1;
12322 }
12323 macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12324 break;
12325
12326 case M_SGT: /* X > Y <==> Y < X */
12327 s = "slt";
12328 goto sgt;
12329 case M_SGTU:
12330 s = "sltu";
12331 sgt:
12332 macro_build (NULL, s, "d,v,t", op[0], op[2], op[1]);
12333 break;
12334
12335 case M_SGT_I: /* X > I <==> I < X */
12336 s = "slt";
12337 goto sgti;
12338 case M_SGTU_I:
12339 s = "sltu";
12340 sgti:
12341 used_at = 1;
12342 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12343 macro_build (NULL, s, "d,v,t", op[0], AT, op[1]);
12344 break;
12345
12346 case M_SLE: /* X <= Y <==> Y >= X <==> not (Y < X) */
12347 s = "slt";
12348 goto sle;
12349 case M_SLEU:
12350 s = "sltu";
12351 sle:
12352 macro_build (NULL, s, "d,v,t", op[0], op[2], op[1]);
12353 macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12354 break;
12355
12356 case M_SLE_I: /* X <= I <==> I >= X <==> not (I < X) */
12357 s = "slt";
12358 goto slei;
12359 case M_SLEU_I:
12360 s = "sltu";
12361 slei:
12362 used_at = 1;
12363 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12364 macro_build (NULL, s, "d,v,t", op[0], AT, op[1]);
12365 macro_build (&expr1, "xori", "t,r,i", op[0], op[0], BFD_RELOC_LO16);
12366 break;
12367
12368 case M_SLT_I:
12369 if (imm_expr.X_op == O_constant
12370 && imm_expr.X_add_number >= -0x8000
12371 && imm_expr.X_add_number < 0x8000)
12372 {
12373 macro_build (&imm_expr, "slti", "t,r,j", op[0], op[1],
12374 BFD_RELOC_LO16);
12375 break;
12376 }
12377 used_at = 1;
12378 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12379 macro_build (NULL, "slt", "d,v,t", op[0], op[1], AT);
12380 break;
12381
12382 case M_SLTU_I:
12383 if (imm_expr.X_op == O_constant
12384 && imm_expr.X_add_number >= -0x8000
12385 && imm_expr.X_add_number < 0x8000)
12386 {
12387 macro_build (&imm_expr, "sltiu", "t,r,j", op[0], op[1],
12388 BFD_RELOC_LO16);
12389 break;
12390 }
12391 used_at = 1;
12392 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12393 macro_build (NULL, "sltu", "d,v,t", op[0], op[1], AT);
12394 break;
12395
12396 case M_SNE:
12397 if (op[1] == 0)
12398 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[2]);
12399 else if (op[2] == 0)
12400 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[1]);
12401 else
12402 {
12403 macro_build (NULL, "xor", "d,v,t", op[0], op[1], op[2]);
12404 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[0]);
12405 }
12406 break;
12407
12408 case M_SNE_I:
12409 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
12410 {
12411 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[1]);
12412 break;
12413 }
12414 if (op[1] == 0)
12415 {
12416 as_warn (_("Instruction %s: result is always true"),
12417 ip->insn_mo->name);
12418 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
12419 op[0], 0, BFD_RELOC_LO16);
12420 break;
12421 }
12422 if (CPU_HAS_SEQ (mips_opts.arch)
12423 && -512 <= imm_expr.X_add_number
12424 && imm_expr.X_add_number < 512)
12425 {
12426 macro_build (NULL, "snei", "t,r,+Q", op[0], op[1],
12427 (int) imm_expr.X_add_number);
12428 break;
12429 }
12430 if (imm_expr.X_op == O_constant
12431 && imm_expr.X_add_number >= 0
12432 && imm_expr.X_add_number < 0x10000)
12433 {
12434 macro_build (&imm_expr, "xori", "t,r,i", op[0], op[1],
12435 BFD_RELOC_LO16);
12436 }
12437 else if (imm_expr.X_op == O_constant
12438 && imm_expr.X_add_number > -0x8000
12439 && imm_expr.X_add_number < 0)
12440 {
12441 imm_expr.X_add_number = -imm_expr.X_add_number;
12442 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
12443 "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12444 }
12445 else if (CPU_HAS_SEQ (mips_opts.arch))
12446 {
12447 used_at = 1;
12448 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12449 macro_build (NULL, "sne", "d,v,t", op[0], op[1], AT);
12450 break;
12451 }
12452 else
12453 {
12454 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12455 macro_build (NULL, "xor", "d,v,t", op[0], op[1], AT);
12456 used_at = 1;
12457 }
12458 macro_build (NULL, "sltu", "d,v,t", op[0], 0, op[0]);
12459 break;
12460
12461 case M_SUB_I:
12462 s = "addi";
12463 s2 = "sub";
12464 goto do_subi;
12465 case M_SUBU_I:
12466 s = "addiu";
12467 s2 = "subu";
12468 goto do_subi;
12469 case M_DSUB_I:
12470 dbl = 1;
12471 s = "daddi";
12472 s2 = "dsub";
12473 if (!mips_opts.micromips)
12474 goto do_subi;
12475 if (imm_expr.X_op == O_constant
12476 && imm_expr.X_add_number > -0x200
12477 && imm_expr.X_add_number <= 0x200)
12478 {
12479 macro_build (NULL, s, "t,r,.", op[0], op[1], -imm_expr.X_add_number);
12480 break;
12481 }
12482 goto do_subi_i;
12483 case M_DSUBU_I:
12484 dbl = 1;
12485 s = "daddiu";
12486 s2 = "dsubu";
12487 do_subi:
12488 if (imm_expr.X_op == O_constant
12489 && imm_expr.X_add_number > -0x8000
12490 && imm_expr.X_add_number <= 0x8000)
12491 {
12492 imm_expr.X_add_number = -imm_expr.X_add_number;
12493 macro_build (&imm_expr, s, "t,r,j", op[0], op[1], BFD_RELOC_LO16);
12494 break;
12495 }
12496 do_subi_i:
12497 used_at = 1;
12498 load_register (AT, &imm_expr, dbl);
12499 macro_build (NULL, s2, "d,v,t", op[0], op[1], AT);
12500 break;
12501
12502 case M_TEQ_I:
12503 s = "teq";
12504 goto trap;
12505 case M_TGE_I:
12506 s = "tge";
12507 goto trap;
12508 case M_TGEU_I:
12509 s = "tgeu";
12510 goto trap;
12511 case M_TLT_I:
12512 s = "tlt";
12513 goto trap;
12514 case M_TLTU_I:
12515 s = "tltu";
12516 goto trap;
12517 case M_TNE_I:
12518 s = "tne";
12519 trap:
12520 used_at = 1;
12521 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
12522 macro_build (NULL, s, "s,t", op[0], AT);
12523 break;
12524
12525 case M_TRUNCWS:
12526 case M_TRUNCWD:
12527 gas_assert (!mips_opts.micromips);
12528 gas_assert (mips_opts.isa == ISA_MIPS1);
12529 used_at = 1;
12530
12531 /*
12532 * Is the double cfc1 instruction a bug in the mips assembler;
12533 * or is there a reason for it?
12534 */
12535 start_noreorder ();
12536 macro_build (NULL, "cfc1", "t,G", op[2], RA);
12537 macro_build (NULL, "cfc1", "t,G", op[2], RA);
12538 macro_build (NULL, "nop", "");
12539 expr1.X_add_number = 3;
12540 macro_build (&expr1, "ori", "t,r,i", AT, op[2], BFD_RELOC_LO16);
12541 expr1.X_add_number = 2;
12542 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
12543 macro_build (NULL, "ctc1", "t,G", AT, RA);
12544 macro_build (NULL, "nop", "");
12545 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
12546 op[0], op[1]);
12547 macro_build (NULL, "ctc1", "t,G", op[2], RA);
12548 macro_build (NULL, "nop", "");
12549 end_noreorder ();
12550 break;
12551
12552 case M_ULH_AB:
12553 s = "lb";
12554 s2 = "lbu";
12555 off = 1;
12556 goto uld_st;
12557 case M_ULHU_AB:
12558 s = "lbu";
12559 s2 = "lbu";
12560 off = 1;
12561 goto uld_st;
12562 case M_ULW_AB:
12563 s = "lwl";
12564 s2 = "lwr";
12565 offbits = (mips_opts.micromips ? 12 : 16);
12566 off = 3;
12567 goto uld_st;
12568 case M_ULD_AB:
12569 s = "ldl";
12570 s2 = "ldr";
12571 offbits = (mips_opts.micromips ? 12 : 16);
12572 off = 7;
12573 goto uld_st;
12574 case M_USH_AB:
12575 s = "sb";
12576 s2 = "sb";
12577 off = 1;
12578 ust = 1;
12579 goto uld_st;
12580 case M_USW_AB:
12581 s = "swl";
12582 s2 = "swr";
12583 offbits = (mips_opts.micromips ? 12 : 16);
12584 off = 3;
12585 ust = 1;
12586 goto uld_st;
12587 case M_USD_AB:
12588 s = "sdl";
12589 s2 = "sdr";
12590 offbits = (mips_opts.micromips ? 12 : 16);
12591 off = 7;
12592 ust = 1;
12593
12594 uld_st:
12595 breg = op[2];
12596 large_offset = !small_offset_p (off, align, offbits);
12597 ep = &offset_expr;
12598 expr1.X_add_number = 0;
12599 if (large_offset)
12600 {
12601 used_at = 1;
12602 tempreg = AT;
12603 if (small_offset_p (0, align, 16))
12604 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", tempreg, breg, -1,
12605 offset_reloc[0], offset_reloc[1], offset_reloc[2]);
12606 else
12607 {
12608 load_address (tempreg, ep, &used_at);
12609 if (breg != 0)
12610 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
12611 tempreg, tempreg, breg);
12612 }
12613 offset_reloc[0] = BFD_RELOC_LO16;
12614 offset_reloc[1] = BFD_RELOC_UNUSED;
12615 offset_reloc[2] = BFD_RELOC_UNUSED;
12616 breg = tempreg;
12617 tempreg = op[0];
12618 ep = &expr1;
12619 }
12620 else if (!ust && op[0] == breg)
12621 {
12622 used_at = 1;
12623 tempreg = AT;
12624 }
12625 else
12626 tempreg = op[0];
12627
12628 if (off == 1)
12629 goto ulh_sh;
12630
12631 if (!target_big_endian)
12632 ep->X_add_number += off;
12633 if (offbits == 12)
12634 macro_build (NULL, s, "t,~(b)", tempreg, (int) ep->X_add_number, breg);
12635 else
12636 macro_build (ep, s, "t,o(b)", tempreg, -1,
12637 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
12638
12639 if (!target_big_endian)
12640 ep->X_add_number -= off;
12641 else
12642 ep->X_add_number += off;
12643 if (offbits == 12)
12644 macro_build (NULL, s2, "t,~(b)",
12645 tempreg, (int) ep->X_add_number, breg);
12646 else
12647 macro_build (ep, s2, "t,o(b)", tempreg, -1,
12648 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
12649
12650 /* If necessary, move the result in tempreg to the final destination. */
12651 if (!ust && op[0] != tempreg)
12652 {
12653 /* Protect second load's delay slot. */
12654 load_delay_nop ();
12655 move_register (op[0], tempreg);
12656 }
12657 break;
12658
12659 ulh_sh:
12660 used_at = 1;
12661 if (target_big_endian == ust)
12662 ep->X_add_number += off;
12663 tempreg = ust || large_offset ? op[0] : AT;
12664 macro_build (ep, s, "t,o(b)", tempreg, -1,
12665 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
12666
12667 /* For halfword transfers we need a temporary register to shuffle
12668 bytes. Unfortunately for M_USH_A we have none available before
12669 the next store as AT holds the base address. We deal with this
12670 case by clobbering TREG and then restoring it as with ULH. */
12671 tempreg = ust == large_offset ? op[0] : AT;
12672 if (ust)
12673 macro_build (NULL, "srl", SHFT_FMT, tempreg, op[0], 8);
12674
12675 if (target_big_endian == ust)
12676 ep->X_add_number -= off;
12677 else
12678 ep->X_add_number += off;
12679 macro_build (ep, s2, "t,o(b)", tempreg, -1,
12680 offset_reloc[0], offset_reloc[1], offset_reloc[2], breg);
12681
12682 /* For M_USH_A re-retrieve the LSB. */
12683 if (ust && large_offset)
12684 {
12685 if (target_big_endian)
12686 ep->X_add_number += off;
12687 else
12688 ep->X_add_number -= off;
12689 macro_build (&expr1, "lbu", "t,o(b)", AT, -1,
12690 offset_reloc[0], offset_reloc[1], offset_reloc[2], AT);
12691 }
12692 /* For ULH and M_USH_A OR the LSB in. */
12693 if (!ust || large_offset)
12694 {
12695 tempreg = !large_offset ? AT : op[0];
12696 macro_build (NULL, "sll", SHFT_FMT, tempreg, tempreg, 8);
12697 macro_build (NULL, "or", "d,v,t", op[0], op[0], AT);
12698 }
12699 break;
12700
12701 default:
12702 /* FIXME: Check if this is one of the itbl macros, since they
12703 are added dynamically. */
12704 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
12705 break;
12706 }
12707 if (!mips_opts.at && used_at)
12708 as_bad (_("Macro used $at after \".set noat\""));
12709 }
12710
12711 /* Implement macros in mips16 mode. */
12712
12713 static void
12714 mips16_macro (struct mips_cl_insn *ip)
12715 {
12716 const struct mips_operand_array *operands;
12717 int mask;
12718 int tmp;
12719 expressionS expr1;
12720 int dbl;
12721 const char *s, *s2, *s3;
12722 unsigned int op[MAX_OPERANDS];
12723 unsigned int i;
12724
12725 mask = ip->insn_mo->mask;
12726
12727 operands = insn_operands (ip);
12728 for (i = 0; i < MAX_OPERANDS; i++)
12729 if (operands->operand[i])
12730 op[i] = insn_extract_operand (ip, operands->operand[i]);
12731 else
12732 op[i] = -1;
12733
12734 expr1.X_op = O_constant;
12735 expr1.X_op_symbol = NULL;
12736 expr1.X_add_symbol = NULL;
12737 expr1.X_add_number = 1;
12738
12739 dbl = 0;
12740
12741 switch (mask)
12742 {
12743 default:
12744 abort ();
12745
12746 case M_DDIV_3:
12747 dbl = 1;
12748 case M_DIV_3:
12749 s = "mflo";
12750 goto do_div3;
12751 case M_DREM_3:
12752 dbl = 1;
12753 case M_REM_3:
12754 s = "mfhi";
12755 do_div3:
12756 start_noreorder ();
12757 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", op[1], op[2]);
12758 expr1.X_add_number = 2;
12759 macro_build (&expr1, "bnez", "x,p", op[2]);
12760 macro_build (NULL, "break", "6", 7);
12761
12762 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
12763 since that causes an overflow. We should do that as well,
12764 but I don't see how to do the comparisons without a temporary
12765 register. */
12766 end_noreorder ();
12767 macro_build (NULL, s, "x", op[0]);
12768 break;
12769
12770 case M_DIVU_3:
12771 s = "divu";
12772 s2 = "mflo";
12773 goto do_divu3;
12774 case M_REMU_3:
12775 s = "divu";
12776 s2 = "mfhi";
12777 goto do_divu3;
12778 case M_DDIVU_3:
12779 s = "ddivu";
12780 s2 = "mflo";
12781 goto do_divu3;
12782 case M_DREMU_3:
12783 s = "ddivu";
12784 s2 = "mfhi";
12785 do_divu3:
12786 start_noreorder ();
12787 macro_build (NULL, s, "0,x,y", op[1], op[2]);
12788 expr1.X_add_number = 2;
12789 macro_build (&expr1, "bnez", "x,p", op[2]);
12790 macro_build (NULL, "break", "6", 7);
12791 end_noreorder ();
12792 macro_build (NULL, s2, "x", op[0]);
12793 break;
12794
12795 case M_DMUL:
12796 dbl = 1;
12797 case M_MUL:
12798 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", op[1], op[2]);
12799 macro_build (NULL, "mflo", "x", op[0]);
12800 break;
12801
12802 case M_DSUBU_I:
12803 dbl = 1;
12804 goto do_subu;
12805 case M_SUBU_I:
12806 do_subu:
12807 if (imm_expr.X_op != O_constant)
12808 as_bad (_("Unsupported large constant"));
12809 imm_expr.X_add_number = -imm_expr.X_add_number;
12810 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", op[0], op[1]);
12811 break;
12812
12813 case M_SUBU_I_2:
12814 if (imm_expr.X_op != O_constant)
12815 as_bad (_("Unsupported large constant"));
12816 imm_expr.X_add_number = -imm_expr.X_add_number;
12817 macro_build (&imm_expr, "addiu", "x,k", op[0]);
12818 break;
12819
12820 case M_DSUBU_I_2:
12821 if (imm_expr.X_op != O_constant)
12822 as_bad (_("Unsupported large constant"));
12823 imm_expr.X_add_number = -imm_expr.X_add_number;
12824 macro_build (&imm_expr, "daddiu", "y,j", op[0]);
12825 break;
12826
12827 case M_BEQ:
12828 s = "cmp";
12829 s2 = "bteqz";
12830 goto do_branch;
12831 case M_BNE:
12832 s = "cmp";
12833 s2 = "btnez";
12834 goto do_branch;
12835 case M_BLT:
12836 s = "slt";
12837 s2 = "btnez";
12838 goto do_branch;
12839 case M_BLTU:
12840 s = "sltu";
12841 s2 = "btnez";
12842 goto do_branch;
12843 case M_BLE:
12844 s = "slt";
12845 s2 = "bteqz";
12846 goto do_reverse_branch;
12847 case M_BLEU:
12848 s = "sltu";
12849 s2 = "bteqz";
12850 goto do_reverse_branch;
12851 case M_BGE:
12852 s = "slt";
12853 s2 = "bteqz";
12854 goto do_branch;
12855 case M_BGEU:
12856 s = "sltu";
12857 s2 = "bteqz";
12858 goto do_branch;
12859 case M_BGT:
12860 s = "slt";
12861 s2 = "btnez";
12862 goto do_reverse_branch;
12863 case M_BGTU:
12864 s = "sltu";
12865 s2 = "btnez";
12866
12867 do_reverse_branch:
12868 tmp = op[1];
12869 op[1] = op[0];
12870 op[0] = tmp;
12871
12872 do_branch:
12873 macro_build (NULL, s, "x,y", op[0], op[1]);
12874 macro_build (&offset_expr, s2, "p");
12875 break;
12876
12877 case M_BEQ_I:
12878 s = "cmpi";
12879 s2 = "bteqz";
12880 s3 = "x,U";
12881 goto do_branch_i;
12882 case M_BNE_I:
12883 s = "cmpi";
12884 s2 = "btnez";
12885 s3 = "x,U";
12886 goto do_branch_i;
12887 case M_BLT_I:
12888 s = "slti";
12889 s2 = "btnez";
12890 s3 = "x,8";
12891 goto do_branch_i;
12892 case M_BLTU_I:
12893 s = "sltiu";
12894 s2 = "btnez";
12895 s3 = "x,8";
12896 goto do_branch_i;
12897 case M_BLE_I:
12898 s = "slti";
12899 s2 = "btnez";
12900 s3 = "x,8";
12901 goto do_addone_branch_i;
12902 case M_BLEU_I:
12903 s = "sltiu";
12904 s2 = "btnez";
12905 s3 = "x,8";
12906 goto do_addone_branch_i;
12907 case M_BGE_I:
12908 s = "slti";
12909 s2 = "bteqz";
12910 s3 = "x,8";
12911 goto do_branch_i;
12912 case M_BGEU_I:
12913 s = "sltiu";
12914 s2 = "bteqz";
12915 s3 = "x,8";
12916 goto do_branch_i;
12917 case M_BGT_I:
12918 s = "slti";
12919 s2 = "bteqz";
12920 s3 = "x,8";
12921 goto do_addone_branch_i;
12922 case M_BGTU_I:
12923 s = "sltiu";
12924 s2 = "bteqz";
12925 s3 = "x,8";
12926
12927 do_addone_branch_i:
12928 if (imm_expr.X_op != O_constant)
12929 as_bad (_("Unsupported large constant"));
12930 ++imm_expr.X_add_number;
12931
12932 do_branch_i:
12933 macro_build (&imm_expr, s, s3, op[0]);
12934 macro_build (&offset_expr, s2, "p");
12935 break;
12936
12937 case M_ABS:
12938 expr1.X_add_number = 0;
12939 macro_build (&expr1, "slti", "x,8", op[1]);
12940 if (op[0] != op[1])
12941 macro_build (NULL, "move", "y,X", op[0], mips16_to_32_reg_map[op[1]]);
12942 expr1.X_add_number = 2;
12943 macro_build (&expr1, "bteqz", "p");
12944 macro_build (NULL, "neg", "x,w", op[0], op[0]);
12945 break;
12946 }
12947 }
12948
12949 /* Look up instruction [START, START + LENGTH) in HASH. Record any extra
12950 opcode bits in *OPCODE_EXTRA. */
12951
12952 static struct mips_opcode *
12953 mips_lookup_insn (struct hash_control *hash, const char *start,
12954 ssize_t length, unsigned int *opcode_extra)
12955 {
12956 char *name, *dot, *p;
12957 unsigned int mask, suffix;
12958 ssize_t opend;
12959 struct mips_opcode *insn;
12960
12961 /* Make a copy of the instruction so that we can fiddle with it. */
12962 name = alloca (length + 1);
12963 memcpy (name, start, length);
12964 name[length] = '\0';
12965
12966 /* Look up the instruction as-is. */
12967 insn = (struct mips_opcode *) hash_find (hash, name);
12968 if (insn)
12969 return insn;
12970
12971 dot = strchr (name, '.');
12972 if (dot && dot[1])
12973 {
12974 /* Try to interpret the text after the dot as a VU0 channel suffix. */
12975 p = mips_parse_vu0_channels (dot + 1, &mask);
12976 if (*p == 0 && mask != 0)
12977 {
12978 *dot = 0;
12979 insn = (struct mips_opcode *) hash_find (hash, name);
12980 *dot = '.';
12981 if (insn && (insn->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX) != 0)
12982 {
12983 *opcode_extra |= mask << mips_vu0_channel_mask.lsb;
12984 return insn;
12985 }
12986 }
12987 }
12988
12989 if (mips_opts.micromips)
12990 {
12991 /* See if there's an instruction size override suffix,
12992 either `16' or `32', at the end of the mnemonic proper,
12993 that defines the operation, i.e. before the first `.'
12994 character if any. Strip it and retry. */
12995 opend = dot != NULL ? dot - name : length;
12996 if (opend >= 3 && name[opend - 2] == '1' && name[opend - 1] == '6')
12997 suffix = 2;
12998 else if (name[opend - 2] == '3' && name[opend - 1] == '2')
12999 suffix = 4;
13000 else
13001 suffix = 0;
13002 if (suffix)
13003 {
13004 memcpy (name + opend - 2, name + opend, length - opend + 1);
13005 insn = (struct mips_opcode *) hash_find (hash, name);
13006 if (insn)
13007 {
13008 forced_insn_length = suffix;
13009 return insn;
13010 }
13011 }
13012 }
13013
13014 return NULL;
13015 }
13016
13017 /* Assemble an instruction into its binary format. If the instruction
13018 is a macro, set imm_expr, imm2_expr and offset_expr to the values
13019 associated with "I", "+I" and "A" operands respectively. Otherwise
13020 store the value of the relocatable field (if any) in offset_expr.
13021 In both cases set offset_reloc to the relocation operators applied
13022 to offset_expr. */
13023
13024 static void
13025 mips_ip (char *str, struct mips_cl_insn *ip)
13026 {
13027 bfd_boolean wrong_delay_slot_insns = FALSE;
13028 bfd_boolean need_delay_slot_ok = TRUE;
13029 struct mips_opcode *firstinsn = NULL;
13030 const struct mips_opcode *past;
13031 struct hash_control *hash;
13032 struct mips_opcode *first, *insn;
13033 char format;
13034 size_t end;
13035 struct mips_operand_token *tokens;
13036 unsigned int opcode_extra;
13037
13038 if (mips_opts.micromips)
13039 {
13040 hash = micromips_op_hash;
13041 past = &micromips_opcodes[bfd_micromips_num_opcodes];
13042 }
13043 else
13044 {
13045 hash = op_hash;
13046 past = &mips_opcodes[NUMOPCODES];
13047 }
13048 forced_insn_length = 0;
13049 insn = NULL;
13050 opcode_extra = 0;
13051
13052 /* We first try to match an instruction up to a space or to the end. */
13053 for (end = 0; str[end] != '\0' && !ISSPACE (str[end]); end++)
13054 continue;
13055
13056 first = insn = mips_lookup_insn (hash, str, end, &opcode_extra);
13057 if (insn == NULL)
13058 {
13059 set_insn_error (0, _("Unrecognized opcode"));
13060 return;
13061 }
13062 /* When no opcode suffix is specified, assume ".xyzw". */
13063 if ((insn->pinfo2 & INSN2_VU0_CHANNEL_SUFFIX) != 0 && opcode_extra == 0)
13064 opcode_extra = 0xf << mips_vu0_channel_mask.lsb;
13065
13066 if (strcmp (insn->name, "li.s") == 0)
13067 format = 'f';
13068 else if (strcmp (insn->name, "li.d") == 0)
13069 format = 'd';
13070 else
13071 format = 0;
13072 tokens = mips_parse_arguments (str + end, format);
13073 if (!tokens)
13074 return;
13075
13076 /* For microMIPS instructions placed in a fixed-length branch delay slot
13077 we make up to two passes over the relevant fragment of the opcode
13078 table. First we try instructions that meet the delay slot's length
13079 requirement. If none matched, then we retry with the remaining ones
13080 and if one matches, then we use it and then issue an appropriate
13081 warning later on. */
13082 for (;;)
13083 {
13084 bfd_boolean delay_slot_ok;
13085 bfd_boolean size_ok;
13086 bfd_boolean ok;
13087 bfd_boolean more_alts;
13088
13089 gas_assert (strcmp (insn->name, first->name) == 0);
13090
13091 ok = is_opcode_valid (insn);
13092 size_ok = is_size_valid (insn);
13093 delay_slot_ok = is_delay_slot_valid (insn);
13094 if (!delay_slot_ok && !wrong_delay_slot_insns)
13095 {
13096 firstinsn = insn;
13097 wrong_delay_slot_insns = TRUE;
13098 }
13099 more_alts = (insn + 1 < past
13100 && strcmp (insn[0].name, insn[1].name) == 0);
13101 if (!ok || !size_ok || delay_slot_ok != need_delay_slot_ok)
13102 {
13103 if (more_alts)
13104 {
13105 ++insn;
13106 continue;
13107 }
13108 if (wrong_delay_slot_insns && need_delay_slot_ok)
13109 {
13110 gas_assert (firstinsn);
13111 need_delay_slot_ok = FALSE;
13112 past = insn + 1;
13113 insn = firstinsn;
13114 continue;
13115 }
13116
13117 if (!ok)
13118 set_insn_error_ss
13119 (0, _("Opcode not supported on this processor: %s (%s)"),
13120 mips_cpu_info_from_arch (mips_opts.arch)->name,
13121 mips_cpu_info_from_isa (mips_opts.isa)->name);
13122 else if (mips_opts.insn32)
13123 set_insn_error
13124 (0, _("Opcode not supported in the `insn32' mode"));
13125 else
13126 set_insn_error_i
13127 (0, _("Unrecognized %d-bit version of microMIPS opcode"),
13128 8 * forced_insn_length);
13129 break;
13130 }
13131
13132 if (match_insn (ip, insn, tokens, opcode_extra, more_alts,
13133 more_alts || (wrong_delay_slot_insns
13134 && need_delay_slot_ok)))
13135 break;
13136
13137 /* Args don't match. */
13138 set_insn_error (0, _("Illegal operands"));
13139 if (more_alts)
13140 {
13141 ++insn;
13142 continue;
13143 }
13144 if (wrong_delay_slot_insns && need_delay_slot_ok)
13145 {
13146 gas_assert (firstinsn);
13147 need_delay_slot_ok = FALSE;
13148 past = insn + 1;
13149 insn = firstinsn;
13150 continue;
13151 }
13152 break;
13153 }
13154 obstack_free (&mips_operand_tokens, tokens);
13155 }
13156
13157 /* As for mips_ip, but used when assembling MIPS16 code.
13158 Also set forced_insn_length to the resulting instruction size in
13159 bytes if the user explicitly requested a small or extended instruction. */
13160
13161 static void
13162 mips16_ip (char *str, struct mips_cl_insn *ip)
13163 {
13164 char *s;
13165 struct mips_opcode *insn;
13166 struct mips_operand_token *tokens;
13167
13168 forced_insn_length = 0;
13169
13170 for (s = str; ISLOWER (*s); ++s)
13171 ;
13172 switch (*s)
13173 {
13174 case '\0':
13175 break;
13176
13177 case ' ':
13178 *s++ = '\0';
13179 break;
13180
13181 case '.':
13182 if (s[1] == 't' && s[2] == ' ')
13183 {
13184 *s = '\0';
13185 forced_insn_length = 2;
13186 s += 3;
13187 break;
13188 }
13189 else if (s[1] == 'e' && s[2] == ' ')
13190 {
13191 *s = '\0';
13192 forced_insn_length = 4;
13193 s += 3;
13194 break;
13195 }
13196 /* Fall through. */
13197 default:
13198 set_insn_error (0, _("Unrecognized opcode"));
13199 return;
13200 }
13201
13202 if (mips_opts.noautoextend && !forced_insn_length)
13203 forced_insn_length = 2;
13204
13205 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
13206 {
13207 set_insn_error (0, _("Unrecognized opcode"));
13208 return;
13209 }
13210
13211 tokens = mips_parse_arguments (s, 0);
13212 if (!tokens)
13213 return;
13214
13215 for (;;)
13216 {
13217 bfd_boolean ok;
13218 bfd_boolean more_alts;
13219
13220 gas_assert (strcmp (insn->name, str) == 0);
13221
13222 ok = is_opcode_valid_16 (insn);
13223 more_alts = (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
13224 && strcmp (insn[0].name, insn[1].name) == 0);
13225 if (! ok)
13226 {
13227 if (more_alts)
13228 {
13229 ++insn;
13230 continue;
13231 }
13232 else
13233 {
13234 set_insn_error_ss
13235 (0, _("Opcode not supported on this processor: %s (%s)"),
13236 mips_cpu_info_from_arch (mips_opts.arch)->name,
13237 mips_cpu_info_from_isa (mips_opts.isa)->name);
13238 break;
13239 }
13240 }
13241
13242 if (match_mips16_insn (ip, insn, tokens, more_alts))
13243 break;
13244
13245 /* Args don't match. */
13246 set_insn_error (0, _("Illegal operands"));
13247 if (more_alts)
13248 {
13249 ++insn;
13250 continue;
13251 }
13252 break;
13253 }
13254 obstack_free (&mips_operand_tokens, tokens);
13255 }
13256
13257 /* Marshal immediate value VAL for an extended MIPS16 instruction.
13258 NBITS is the number of significant bits in VAL. */
13259
13260 static unsigned long
13261 mips16_immed_extend (offsetT val, unsigned int nbits)
13262 {
13263 int extval;
13264 if (nbits == 16)
13265 {
13266 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
13267 val &= 0x1f;
13268 }
13269 else if (nbits == 15)
13270 {
13271 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
13272 val &= 0xf;
13273 }
13274 else
13275 {
13276 extval = ((val & 0x1f) << 6) | (val & 0x20);
13277 val = 0;
13278 }
13279 return (extval << 16) | val;
13280 }
13281
13282 /* Like decode_mips16_operand, but require the operand to be defined and
13283 require it to be an integer. */
13284
13285 static const struct mips_int_operand *
13286 mips16_immed_operand (int type, bfd_boolean extended_p)
13287 {
13288 const struct mips_operand *operand;
13289
13290 operand = decode_mips16_operand (type, extended_p);
13291 if (!operand || (operand->type != OP_INT && operand->type != OP_PCREL))
13292 abort ();
13293 return (const struct mips_int_operand *) operand;
13294 }
13295
13296 /* Return true if SVAL fits OPERAND. RELOC is as for mips16_immed. */
13297
13298 static bfd_boolean
13299 mips16_immed_in_range_p (const struct mips_int_operand *operand,
13300 bfd_reloc_code_real_type reloc, offsetT sval)
13301 {
13302 int min_val, max_val;
13303
13304 min_val = mips_int_operand_min (operand);
13305 max_val = mips_int_operand_max (operand);
13306 if (reloc != BFD_RELOC_UNUSED)
13307 {
13308 if (min_val < 0)
13309 sval = SEXT_16BIT (sval);
13310 else
13311 sval &= 0xffff;
13312 }
13313
13314 return (sval >= min_val
13315 && sval <= max_val
13316 && (sval & ((1 << operand->shift) - 1)) == 0);
13317 }
13318
13319 /* Install immediate value VAL into MIPS16 instruction *INSN,
13320 extending it if necessary. The instruction in *INSN may
13321 already be extended.
13322
13323 RELOC is the relocation that produced VAL, or BFD_RELOC_UNUSED
13324 if none. In the former case, VAL is a 16-bit number with no
13325 defined signedness.
13326
13327 TYPE is the type of the immediate field. USER_INSN_LENGTH
13328 is the length that the user requested, or 0 if none. */
13329
13330 static void
13331 mips16_immed (char *file, unsigned int line, int type,
13332 bfd_reloc_code_real_type reloc, offsetT val,
13333 unsigned int user_insn_length, unsigned long *insn)
13334 {
13335 const struct mips_int_operand *operand;
13336 unsigned int uval, length;
13337
13338 operand = mips16_immed_operand (type, FALSE);
13339 if (!mips16_immed_in_range_p (operand, reloc, val))
13340 {
13341 /* We need an extended instruction. */
13342 if (user_insn_length == 2)
13343 as_bad_where (file, line, _("invalid unextended operand value"));
13344 else
13345 *insn |= MIPS16_EXTEND;
13346 }
13347 else if (user_insn_length == 4)
13348 {
13349 /* The operand doesn't force an unextended instruction to be extended.
13350 Warn if the user wanted an extended instruction anyway. */
13351 *insn |= MIPS16_EXTEND;
13352 as_warn_where (file, line,
13353 _("extended operand requested but not required"));
13354 }
13355
13356 length = mips16_opcode_length (*insn);
13357 if (length == 4)
13358 {
13359 operand = mips16_immed_operand (type, TRUE);
13360 if (!mips16_immed_in_range_p (operand, reloc, val))
13361 as_bad_where (file, line,
13362 _("operand value out of range for instruction"));
13363 }
13364 uval = ((unsigned int) val >> operand->shift) - operand->bias;
13365 if (length == 2)
13366 *insn = mips_insert_operand (&operand->root, *insn, uval);
13367 else
13368 *insn |= mips16_immed_extend (uval, operand->root.size);
13369 }
13370 \f
13371 struct percent_op_match
13372 {
13373 const char *str;
13374 bfd_reloc_code_real_type reloc;
13375 };
13376
13377 static const struct percent_op_match mips_percent_op[] =
13378 {
13379 {"%lo", BFD_RELOC_LO16},
13380 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
13381 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
13382 {"%call16", BFD_RELOC_MIPS_CALL16},
13383 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
13384 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
13385 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
13386 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
13387 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
13388 {"%got", BFD_RELOC_MIPS_GOT16},
13389 {"%gp_rel", BFD_RELOC_GPREL16},
13390 {"%half", BFD_RELOC_16},
13391 {"%highest", BFD_RELOC_MIPS_HIGHEST},
13392 {"%higher", BFD_RELOC_MIPS_HIGHER},
13393 {"%neg", BFD_RELOC_MIPS_SUB},
13394 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
13395 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
13396 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
13397 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
13398 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
13399 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
13400 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
13401 {"%hi", BFD_RELOC_HI16_S}
13402 };
13403
13404 static const struct percent_op_match mips16_percent_op[] =
13405 {
13406 {"%lo", BFD_RELOC_MIPS16_LO16},
13407 {"%gprel", BFD_RELOC_MIPS16_GPREL},
13408 {"%got", BFD_RELOC_MIPS16_GOT16},
13409 {"%call16", BFD_RELOC_MIPS16_CALL16},
13410 {"%hi", BFD_RELOC_MIPS16_HI16_S},
13411 {"%tlsgd", BFD_RELOC_MIPS16_TLS_GD},
13412 {"%tlsldm", BFD_RELOC_MIPS16_TLS_LDM},
13413 {"%dtprel_hi", BFD_RELOC_MIPS16_TLS_DTPREL_HI16},
13414 {"%dtprel_lo", BFD_RELOC_MIPS16_TLS_DTPREL_LO16},
13415 {"%tprel_hi", BFD_RELOC_MIPS16_TLS_TPREL_HI16},
13416 {"%tprel_lo", BFD_RELOC_MIPS16_TLS_TPREL_LO16},
13417 {"%gottprel", BFD_RELOC_MIPS16_TLS_GOTTPREL}
13418 };
13419
13420
13421 /* Return true if *STR points to a relocation operator. When returning true,
13422 move *STR over the operator and store its relocation code in *RELOC.
13423 Leave both *STR and *RELOC alone when returning false. */
13424
13425 static bfd_boolean
13426 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
13427 {
13428 const struct percent_op_match *percent_op;
13429 size_t limit, i;
13430
13431 if (mips_opts.mips16)
13432 {
13433 percent_op = mips16_percent_op;
13434 limit = ARRAY_SIZE (mips16_percent_op);
13435 }
13436 else
13437 {
13438 percent_op = mips_percent_op;
13439 limit = ARRAY_SIZE (mips_percent_op);
13440 }
13441
13442 for (i = 0; i < limit; i++)
13443 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
13444 {
13445 int len = strlen (percent_op[i].str);
13446
13447 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
13448 continue;
13449
13450 *str += strlen (percent_op[i].str);
13451 *reloc = percent_op[i].reloc;
13452
13453 /* Check whether the output BFD supports this relocation.
13454 If not, issue an error and fall back on something safe. */
13455 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
13456 {
13457 as_bad (_("relocation %s isn't supported by the current ABI"),
13458 percent_op[i].str);
13459 *reloc = BFD_RELOC_UNUSED;
13460 }
13461 return TRUE;
13462 }
13463 return FALSE;
13464 }
13465
13466
13467 /* Parse string STR as a 16-bit relocatable operand. Store the
13468 expression in *EP and the relocations in the array starting
13469 at RELOC. Return the number of relocation operators used.
13470
13471 On exit, EXPR_END points to the first character after the expression. */
13472
13473 static size_t
13474 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
13475 char *str)
13476 {
13477 bfd_reloc_code_real_type reversed_reloc[3];
13478 size_t reloc_index, i;
13479 int crux_depth, str_depth;
13480 char *crux;
13481
13482 /* Search for the start of the main expression, recoding relocations
13483 in REVERSED_RELOC. End the loop with CRUX pointing to the start
13484 of the main expression and with CRUX_DEPTH containing the number
13485 of open brackets at that point. */
13486 reloc_index = -1;
13487 str_depth = 0;
13488 do
13489 {
13490 reloc_index++;
13491 crux = str;
13492 crux_depth = str_depth;
13493
13494 /* Skip over whitespace and brackets, keeping count of the number
13495 of brackets. */
13496 while (*str == ' ' || *str == '\t' || *str == '(')
13497 if (*str++ == '(')
13498 str_depth++;
13499 }
13500 while (*str == '%'
13501 && reloc_index < (HAVE_NEWABI ? 3 : 1)
13502 && parse_relocation (&str, &reversed_reloc[reloc_index]));
13503
13504 my_getExpression (ep, crux);
13505 str = expr_end;
13506
13507 /* Match every open bracket. */
13508 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
13509 if (*str++ == ')')
13510 crux_depth--;
13511
13512 if (crux_depth > 0)
13513 as_bad (_("unclosed '('"));
13514
13515 expr_end = str;
13516
13517 if (reloc_index != 0)
13518 {
13519 prev_reloc_op_frag = frag_now;
13520 for (i = 0; i < reloc_index; i++)
13521 reloc[i] = reversed_reloc[reloc_index - 1 - i];
13522 }
13523
13524 return reloc_index;
13525 }
13526
13527 static void
13528 my_getExpression (expressionS *ep, char *str)
13529 {
13530 char *save_in;
13531
13532 save_in = input_line_pointer;
13533 input_line_pointer = str;
13534 expression (ep);
13535 expr_end = input_line_pointer;
13536 input_line_pointer = save_in;
13537 }
13538
13539 char *
13540 md_atof (int type, char *litP, int *sizeP)
13541 {
13542 return ieee_md_atof (type, litP, sizeP, target_big_endian);
13543 }
13544
13545 void
13546 md_number_to_chars (char *buf, valueT val, int n)
13547 {
13548 if (target_big_endian)
13549 number_to_chars_bigendian (buf, val, n);
13550 else
13551 number_to_chars_littleendian (buf, val, n);
13552 }
13553 \f
13554 static int support_64bit_objects(void)
13555 {
13556 const char **list, **l;
13557 int yes;
13558
13559 list = bfd_target_list ();
13560 for (l = list; *l != NULL; l++)
13561 if (strcmp (*l, ELF_TARGET ("elf64-", "big")) == 0
13562 || strcmp (*l, ELF_TARGET ("elf64-", "little")) == 0)
13563 break;
13564 yes = (*l != NULL);
13565 free (list);
13566 return yes;
13567 }
13568
13569 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
13570 NEW_VALUE. Warn if another value was already specified. Note:
13571 we have to defer parsing the -march and -mtune arguments in order
13572 to handle 'from-abi' correctly, since the ABI might be specified
13573 in a later argument. */
13574
13575 static void
13576 mips_set_option_string (const char **string_ptr, const char *new_value)
13577 {
13578 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
13579 as_warn (_("A different %s was already specified, is now %s"),
13580 string_ptr == &mips_arch_string ? "-march" : "-mtune",
13581 new_value);
13582
13583 *string_ptr = new_value;
13584 }
13585
13586 int
13587 md_parse_option (int c, char *arg)
13588 {
13589 unsigned int i;
13590
13591 for (i = 0; i < ARRAY_SIZE (mips_ases); i++)
13592 if (c == mips_ases[i].option_on || c == mips_ases[i].option_off)
13593 {
13594 file_ase_explicit |= mips_set_ase (&mips_ases[i],
13595 c == mips_ases[i].option_on);
13596 return 1;
13597 }
13598
13599 switch (c)
13600 {
13601 case OPTION_CONSTRUCT_FLOATS:
13602 mips_disable_float_construction = 0;
13603 break;
13604
13605 case OPTION_NO_CONSTRUCT_FLOATS:
13606 mips_disable_float_construction = 1;
13607 break;
13608
13609 case OPTION_TRAP:
13610 mips_trap = 1;
13611 break;
13612
13613 case OPTION_BREAK:
13614 mips_trap = 0;
13615 break;
13616
13617 case OPTION_EB:
13618 target_big_endian = 1;
13619 break;
13620
13621 case OPTION_EL:
13622 target_big_endian = 0;
13623 break;
13624
13625 case 'O':
13626 if (arg == NULL)
13627 mips_optimize = 1;
13628 else if (arg[0] == '0')
13629 mips_optimize = 0;
13630 else if (arg[0] == '1')
13631 mips_optimize = 1;
13632 else
13633 mips_optimize = 2;
13634 break;
13635
13636 case 'g':
13637 if (arg == NULL)
13638 mips_debug = 2;
13639 else
13640 mips_debug = atoi (arg);
13641 break;
13642
13643 case OPTION_MIPS1:
13644 file_mips_isa = ISA_MIPS1;
13645 break;
13646
13647 case OPTION_MIPS2:
13648 file_mips_isa = ISA_MIPS2;
13649 break;
13650
13651 case OPTION_MIPS3:
13652 file_mips_isa = ISA_MIPS3;
13653 break;
13654
13655 case OPTION_MIPS4:
13656 file_mips_isa = ISA_MIPS4;
13657 break;
13658
13659 case OPTION_MIPS5:
13660 file_mips_isa = ISA_MIPS5;
13661 break;
13662
13663 case OPTION_MIPS32:
13664 file_mips_isa = ISA_MIPS32;
13665 break;
13666
13667 case OPTION_MIPS32R2:
13668 file_mips_isa = ISA_MIPS32R2;
13669 break;
13670
13671 case OPTION_MIPS64R2:
13672 file_mips_isa = ISA_MIPS64R2;
13673 break;
13674
13675 case OPTION_MIPS64:
13676 file_mips_isa = ISA_MIPS64;
13677 break;
13678
13679 case OPTION_MTUNE:
13680 mips_set_option_string (&mips_tune_string, arg);
13681 break;
13682
13683 case OPTION_MARCH:
13684 mips_set_option_string (&mips_arch_string, arg);
13685 break;
13686
13687 case OPTION_M4650:
13688 mips_set_option_string (&mips_arch_string, "4650");
13689 mips_set_option_string (&mips_tune_string, "4650");
13690 break;
13691
13692 case OPTION_NO_M4650:
13693 break;
13694
13695 case OPTION_M4010:
13696 mips_set_option_string (&mips_arch_string, "4010");
13697 mips_set_option_string (&mips_tune_string, "4010");
13698 break;
13699
13700 case OPTION_NO_M4010:
13701 break;
13702
13703 case OPTION_M4100:
13704 mips_set_option_string (&mips_arch_string, "4100");
13705 mips_set_option_string (&mips_tune_string, "4100");
13706 break;
13707
13708 case OPTION_NO_M4100:
13709 break;
13710
13711 case OPTION_M3900:
13712 mips_set_option_string (&mips_arch_string, "3900");
13713 mips_set_option_string (&mips_tune_string, "3900");
13714 break;
13715
13716 case OPTION_NO_M3900:
13717 break;
13718
13719 case OPTION_MICROMIPS:
13720 if (mips_opts.mips16 == 1)
13721 {
13722 as_bad (_("-mmicromips cannot be used with -mips16"));
13723 return 0;
13724 }
13725 mips_opts.micromips = 1;
13726 mips_no_prev_insn ();
13727 break;
13728
13729 case OPTION_NO_MICROMIPS:
13730 mips_opts.micromips = 0;
13731 mips_no_prev_insn ();
13732 break;
13733
13734 case OPTION_MIPS16:
13735 if (mips_opts.micromips == 1)
13736 {
13737 as_bad (_("-mips16 cannot be used with -micromips"));
13738 return 0;
13739 }
13740 mips_opts.mips16 = 1;
13741 mips_no_prev_insn ();
13742 break;
13743
13744 case OPTION_NO_MIPS16:
13745 mips_opts.mips16 = 0;
13746 mips_no_prev_insn ();
13747 break;
13748
13749 case OPTION_FIX_24K:
13750 mips_fix_24k = 1;
13751 break;
13752
13753 case OPTION_NO_FIX_24K:
13754 mips_fix_24k = 0;
13755 break;
13756
13757 case OPTION_FIX_LOONGSON2F_JUMP:
13758 mips_fix_loongson2f_jump = TRUE;
13759 break;
13760
13761 case OPTION_NO_FIX_LOONGSON2F_JUMP:
13762 mips_fix_loongson2f_jump = FALSE;
13763 break;
13764
13765 case OPTION_FIX_LOONGSON2F_NOP:
13766 mips_fix_loongson2f_nop = TRUE;
13767 break;
13768
13769 case OPTION_NO_FIX_LOONGSON2F_NOP:
13770 mips_fix_loongson2f_nop = FALSE;
13771 break;
13772
13773 case OPTION_FIX_VR4120:
13774 mips_fix_vr4120 = 1;
13775 break;
13776
13777 case OPTION_NO_FIX_VR4120:
13778 mips_fix_vr4120 = 0;
13779 break;
13780
13781 case OPTION_FIX_VR4130:
13782 mips_fix_vr4130 = 1;
13783 break;
13784
13785 case OPTION_NO_FIX_VR4130:
13786 mips_fix_vr4130 = 0;
13787 break;
13788
13789 case OPTION_FIX_CN63XXP1:
13790 mips_fix_cn63xxp1 = TRUE;
13791 break;
13792
13793 case OPTION_NO_FIX_CN63XXP1:
13794 mips_fix_cn63xxp1 = FALSE;
13795 break;
13796
13797 case OPTION_RELAX_BRANCH:
13798 mips_relax_branch = 1;
13799 break;
13800
13801 case OPTION_NO_RELAX_BRANCH:
13802 mips_relax_branch = 0;
13803 break;
13804
13805 case OPTION_INSN32:
13806 mips_opts.insn32 = TRUE;
13807 break;
13808
13809 case OPTION_NO_INSN32:
13810 mips_opts.insn32 = FALSE;
13811 break;
13812
13813 case OPTION_MSHARED:
13814 mips_in_shared = TRUE;
13815 break;
13816
13817 case OPTION_MNO_SHARED:
13818 mips_in_shared = FALSE;
13819 break;
13820
13821 case OPTION_MSYM32:
13822 mips_opts.sym32 = TRUE;
13823 break;
13824
13825 case OPTION_MNO_SYM32:
13826 mips_opts.sym32 = FALSE;
13827 break;
13828
13829 /* When generating ELF code, we permit -KPIC and -call_shared to
13830 select SVR4_PIC, and -non_shared to select no PIC. This is
13831 intended to be compatible with Irix 5. */
13832 case OPTION_CALL_SHARED:
13833 mips_pic = SVR4_PIC;
13834 mips_abicalls = TRUE;
13835 break;
13836
13837 case OPTION_CALL_NONPIC:
13838 mips_pic = NO_PIC;
13839 mips_abicalls = TRUE;
13840 break;
13841
13842 case OPTION_NON_SHARED:
13843 mips_pic = NO_PIC;
13844 mips_abicalls = FALSE;
13845 break;
13846
13847 /* The -xgot option tells the assembler to use 32 bit offsets
13848 when accessing the got in SVR4_PIC mode. It is for Irix
13849 compatibility. */
13850 case OPTION_XGOT:
13851 mips_big_got = 1;
13852 break;
13853
13854 case 'G':
13855 g_switch_value = atoi (arg);
13856 g_switch_seen = 1;
13857 break;
13858
13859 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
13860 and -mabi=64. */
13861 case OPTION_32:
13862 mips_abi = O32_ABI;
13863 break;
13864
13865 case OPTION_N32:
13866 mips_abi = N32_ABI;
13867 break;
13868
13869 case OPTION_64:
13870 mips_abi = N64_ABI;
13871 if (!support_64bit_objects())
13872 as_fatal (_("No compiled in support for 64 bit object file format"));
13873 break;
13874
13875 case OPTION_GP32:
13876 file_mips_gp32 = 1;
13877 break;
13878
13879 case OPTION_GP64:
13880 file_mips_gp32 = 0;
13881 break;
13882
13883 case OPTION_FP32:
13884 file_mips_fp32 = 1;
13885 break;
13886
13887 case OPTION_FP64:
13888 file_mips_fp32 = 0;
13889 break;
13890
13891 case OPTION_SINGLE_FLOAT:
13892 file_mips_single_float = 1;
13893 break;
13894
13895 case OPTION_DOUBLE_FLOAT:
13896 file_mips_single_float = 0;
13897 break;
13898
13899 case OPTION_SOFT_FLOAT:
13900 file_mips_soft_float = 1;
13901 break;
13902
13903 case OPTION_HARD_FLOAT:
13904 file_mips_soft_float = 0;
13905 break;
13906
13907 case OPTION_MABI:
13908 if (strcmp (arg, "32") == 0)
13909 mips_abi = O32_ABI;
13910 else if (strcmp (arg, "o64") == 0)
13911 mips_abi = O64_ABI;
13912 else if (strcmp (arg, "n32") == 0)
13913 mips_abi = N32_ABI;
13914 else if (strcmp (arg, "64") == 0)
13915 {
13916 mips_abi = N64_ABI;
13917 if (! support_64bit_objects())
13918 as_fatal (_("No compiled in support for 64 bit object file "
13919 "format"));
13920 }
13921 else if (strcmp (arg, "eabi") == 0)
13922 mips_abi = EABI_ABI;
13923 else
13924 {
13925 as_fatal (_("invalid abi -mabi=%s"), arg);
13926 return 0;
13927 }
13928 break;
13929
13930 case OPTION_M7000_HILO_FIX:
13931 mips_7000_hilo_fix = TRUE;
13932 break;
13933
13934 case OPTION_MNO_7000_HILO_FIX:
13935 mips_7000_hilo_fix = FALSE;
13936 break;
13937
13938 case OPTION_MDEBUG:
13939 mips_flag_mdebug = TRUE;
13940 break;
13941
13942 case OPTION_NO_MDEBUG:
13943 mips_flag_mdebug = FALSE;
13944 break;
13945
13946 case OPTION_PDR:
13947 mips_flag_pdr = TRUE;
13948 break;
13949
13950 case OPTION_NO_PDR:
13951 mips_flag_pdr = FALSE;
13952 break;
13953
13954 case OPTION_MVXWORKS_PIC:
13955 mips_pic = VXWORKS_PIC;
13956 break;
13957
13958 case OPTION_NAN:
13959 if (strcmp (arg, "2008") == 0)
13960 mips_flag_nan2008 = TRUE;
13961 else if (strcmp (arg, "legacy") == 0)
13962 mips_flag_nan2008 = FALSE;
13963 else
13964 {
13965 as_fatal (_("Invalid NaN setting -mnan=%s"), arg);
13966 return 0;
13967 }
13968 break;
13969
13970 default:
13971 return 0;
13972 }
13973
13974 mips_fix_loongson2f = mips_fix_loongson2f_nop || mips_fix_loongson2f_jump;
13975
13976 return 1;
13977 }
13978 \f
13979 /* Set up globals to generate code for the ISA or processor
13980 described by INFO. */
13981
13982 static void
13983 mips_set_architecture (const struct mips_cpu_info *info)
13984 {
13985 if (info != 0)
13986 {
13987 file_mips_arch = info->cpu;
13988 mips_opts.arch = info->cpu;
13989 mips_opts.isa = info->isa;
13990 }
13991 }
13992
13993
13994 /* Likewise for tuning. */
13995
13996 static void
13997 mips_set_tune (const struct mips_cpu_info *info)
13998 {
13999 if (info != 0)
14000 mips_tune = info->cpu;
14001 }
14002
14003
14004 void
14005 mips_after_parse_args (void)
14006 {
14007 const struct mips_cpu_info *arch_info = 0;
14008 const struct mips_cpu_info *tune_info = 0;
14009
14010 /* GP relative stuff not working for PE */
14011 if (strncmp (TARGET_OS, "pe", 2) == 0)
14012 {
14013 if (g_switch_seen && g_switch_value != 0)
14014 as_bad (_("-G not supported in this configuration."));
14015 g_switch_value = 0;
14016 }
14017
14018 if (mips_abi == NO_ABI)
14019 mips_abi = MIPS_DEFAULT_ABI;
14020
14021 /* The following code determines the architecture and register size.
14022 Similar code was added to GCC 3.3 (see override_options() in
14023 config/mips/mips.c). The GAS and GCC code should be kept in sync
14024 as much as possible. */
14025
14026 if (mips_arch_string != 0)
14027 arch_info = mips_parse_cpu ("-march", mips_arch_string);
14028
14029 if (file_mips_isa != ISA_UNKNOWN)
14030 {
14031 /* Handle -mipsN. At this point, file_mips_isa contains the
14032 ISA level specified by -mipsN, while arch_info->isa contains
14033 the -march selection (if any). */
14034 if (arch_info != 0)
14035 {
14036 /* -march takes precedence over -mipsN, since it is more descriptive.
14037 There's no harm in specifying both as long as the ISA levels
14038 are the same. */
14039 if (file_mips_isa != arch_info->isa)
14040 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
14041 mips_cpu_info_from_isa (file_mips_isa)->name,
14042 mips_cpu_info_from_isa (arch_info->isa)->name);
14043 }
14044 else
14045 arch_info = mips_cpu_info_from_isa (file_mips_isa);
14046 }
14047
14048 if (arch_info == 0)
14049 {
14050 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
14051 gas_assert (arch_info);
14052 }
14053
14054 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
14055 as_bad (_("-march=%s is not compatible with the selected ABI"),
14056 arch_info->name);
14057
14058 mips_set_architecture (arch_info);
14059
14060 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
14061 if (mips_tune_string != 0)
14062 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
14063
14064 if (tune_info == 0)
14065 mips_set_tune (arch_info);
14066 else
14067 mips_set_tune (tune_info);
14068
14069 if (file_mips_gp32 >= 0)
14070 {
14071 /* The user specified the size of the integer registers. Make sure
14072 it agrees with the ABI and ISA. */
14073 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
14074 as_bad (_("-mgp64 used with a 32-bit processor"));
14075 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
14076 as_bad (_("-mgp32 used with a 64-bit ABI"));
14077 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
14078 as_bad (_("-mgp64 used with a 32-bit ABI"));
14079 }
14080 else
14081 {
14082 /* Infer the integer register size from the ABI and processor.
14083 Restrict ourselves to 32-bit registers if that's all the
14084 processor has, or if the ABI cannot handle 64-bit registers. */
14085 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
14086 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
14087 }
14088
14089 switch (file_mips_fp32)
14090 {
14091 default:
14092 case -1:
14093 /* No user specified float register size.
14094 ??? GAS treats single-float processors as though they had 64-bit
14095 float registers (although it complains when double-precision
14096 instructions are used). As things stand, saying they have 32-bit
14097 registers would lead to spurious "register must be even" messages.
14098 So here we assume float registers are never smaller than the
14099 integer ones. */
14100 if (file_mips_gp32 == 0)
14101 /* 64-bit integer registers implies 64-bit float registers. */
14102 file_mips_fp32 = 0;
14103 else if ((mips_opts.ase & FP64_ASES)
14104 && ISA_HAS_64BIT_FPRS (mips_opts.isa))
14105 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
14106 file_mips_fp32 = 0;
14107 else
14108 /* 32-bit float registers. */
14109 file_mips_fp32 = 1;
14110 break;
14111
14112 /* The user specified the size of the float registers. Check if it
14113 agrees with the ABI and ISA. */
14114 case 0:
14115 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
14116 as_bad (_("-mfp64 used with a 32-bit fpu"));
14117 else if (ABI_NEEDS_32BIT_REGS (mips_abi)
14118 && !ISA_HAS_MXHC1 (mips_opts.isa))
14119 as_warn (_("-mfp64 used with a 32-bit ABI"));
14120 break;
14121 case 1:
14122 if (ABI_NEEDS_64BIT_REGS (mips_abi))
14123 as_warn (_("-mfp32 used with a 64-bit ABI"));
14124 break;
14125 }
14126
14127 /* End of GCC-shared inference code. */
14128
14129 /* This flag is set when we have a 64-bit capable CPU but use only
14130 32-bit wide registers. Note that EABI does not use it. */
14131 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
14132 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
14133 || mips_abi == O32_ABI))
14134 mips_32bitmode = 1;
14135
14136 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
14137 as_bad (_("trap exception not supported at ISA 1"));
14138
14139 /* If the selected architecture includes support for ASEs, enable
14140 generation of code for them. */
14141 if (mips_opts.mips16 == -1)
14142 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
14143 if (mips_opts.micromips == -1)
14144 mips_opts.micromips = (CPU_HAS_MICROMIPS (file_mips_arch)) ? 1 : 0;
14145
14146 /* MIPS3D and MDMX require 64-bit FPRs, so -mfp32 should stop those
14147 ASEs from being selected implicitly. */
14148 if (file_mips_fp32 == 1)
14149 file_ase_explicit |= ASE_MIPS3D | ASE_MDMX;
14150
14151 /* If the user didn't explicitly select or deselect a particular ASE,
14152 use the default setting for the CPU. */
14153 mips_opts.ase |= (arch_info->ase & ~file_ase_explicit);
14154
14155 file_mips_isa = mips_opts.isa;
14156 file_ase = mips_opts.ase;
14157 mips_opts.gp32 = file_mips_gp32;
14158 mips_opts.fp32 = file_mips_fp32;
14159 mips_opts.soft_float = file_mips_soft_float;
14160 mips_opts.single_float = file_mips_single_float;
14161
14162 mips_check_isa_supports_ases ();
14163
14164 if (mips_flag_mdebug < 0)
14165 mips_flag_mdebug = 0;
14166 }
14167 \f
14168 void
14169 mips_init_after_args (void)
14170 {
14171 /* initialize opcodes */
14172 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
14173 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
14174 }
14175
14176 long
14177 md_pcrel_from (fixS *fixP)
14178 {
14179 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
14180 switch (fixP->fx_r_type)
14181 {
14182 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
14183 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
14184 /* Return the address of the delay slot. */
14185 return addr + 2;
14186
14187 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
14188 case BFD_RELOC_MICROMIPS_JMP:
14189 case BFD_RELOC_16_PCREL_S2:
14190 case BFD_RELOC_MIPS_JMP:
14191 /* Return the address of the delay slot. */
14192 return addr + 4;
14193
14194 case BFD_RELOC_32_PCREL:
14195 return addr;
14196
14197 default:
14198 /* We have no relocation type for PC relative MIPS16 instructions. */
14199 if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
14200 as_bad_where (fixP->fx_file, fixP->fx_line,
14201 _("PC relative MIPS16 instruction references a different section"));
14202 return addr;
14203 }
14204 }
14205
14206 /* This is called before the symbol table is processed. In order to
14207 work with gcc when using mips-tfile, we must keep all local labels.
14208 However, in other cases, we want to discard them. If we were
14209 called with -g, but we didn't see any debugging information, it may
14210 mean that gcc is smuggling debugging information through to
14211 mips-tfile, in which case we must generate all local labels. */
14212
14213 void
14214 mips_frob_file_before_adjust (void)
14215 {
14216 #ifndef NO_ECOFF_DEBUGGING
14217 if (ECOFF_DEBUGGING
14218 && mips_debug != 0
14219 && ! ecoff_debugging_seen)
14220 flag_keep_locals = 1;
14221 #endif
14222 }
14223
14224 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
14225 the corresponding LO16 reloc. This is called before md_apply_fix and
14226 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
14227 relocation operators.
14228
14229 For our purposes, a %lo() expression matches a %got() or %hi()
14230 expression if:
14231
14232 (a) it refers to the same symbol; and
14233 (b) the offset applied in the %lo() expression is no lower than
14234 the offset applied in the %got() or %hi().
14235
14236 (b) allows us to cope with code like:
14237
14238 lui $4,%hi(foo)
14239 lh $4,%lo(foo+2)($4)
14240
14241 ...which is legal on RELA targets, and has a well-defined behaviour
14242 if the user knows that adding 2 to "foo" will not induce a carry to
14243 the high 16 bits.
14244
14245 When several %lo()s match a particular %got() or %hi(), we use the
14246 following rules to distinguish them:
14247
14248 (1) %lo()s with smaller offsets are a better match than %lo()s with
14249 higher offsets.
14250
14251 (2) %lo()s with no matching %got() or %hi() are better than those
14252 that already have a matching %got() or %hi().
14253
14254 (3) later %lo()s are better than earlier %lo()s.
14255
14256 These rules are applied in order.
14257
14258 (1) means, among other things, that %lo()s with identical offsets are
14259 chosen if they exist.
14260
14261 (2) means that we won't associate several high-part relocations with
14262 the same low-part relocation unless there's no alternative. Having
14263 several high parts for the same low part is a GNU extension; this rule
14264 allows careful users to avoid it.
14265
14266 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
14267 with the last high-part relocation being at the front of the list.
14268 It therefore makes sense to choose the last matching low-part
14269 relocation, all other things being equal. It's also easier
14270 to code that way. */
14271
14272 void
14273 mips_frob_file (void)
14274 {
14275 struct mips_hi_fixup *l;
14276 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
14277
14278 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
14279 {
14280 segment_info_type *seginfo;
14281 bfd_boolean matched_lo_p;
14282 fixS **hi_pos, **lo_pos, **pos;
14283
14284 gas_assert (reloc_needs_lo_p (l->fixp->fx_r_type));
14285
14286 /* If a GOT16 relocation turns out to be against a global symbol,
14287 there isn't supposed to be a matching LO. Ignore %gots against
14288 constants; we'll report an error for those later. */
14289 if (got16_reloc_p (l->fixp->fx_r_type)
14290 && !(l->fixp->fx_addsy
14291 && pic_need_relax (l->fixp->fx_addsy, l->seg)))
14292 continue;
14293
14294 /* Check quickly whether the next fixup happens to be a matching %lo. */
14295 if (fixup_has_matching_lo_p (l->fixp))
14296 continue;
14297
14298 seginfo = seg_info (l->seg);
14299
14300 /* Set HI_POS to the position of this relocation in the chain.
14301 Set LO_POS to the position of the chosen low-part relocation.
14302 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
14303 relocation that matches an immediately-preceding high-part
14304 relocation. */
14305 hi_pos = NULL;
14306 lo_pos = NULL;
14307 matched_lo_p = FALSE;
14308 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
14309
14310 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
14311 {
14312 if (*pos == l->fixp)
14313 hi_pos = pos;
14314
14315 if ((*pos)->fx_r_type == looking_for_rtype
14316 && symbol_same_p ((*pos)->fx_addsy, l->fixp->fx_addsy)
14317 && (*pos)->fx_offset >= l->fixp->fx_offset
14318 && (lo_pos == NULL
14319 || (*pos)->fx_offset < (*lo_pos)->fx_offset
14320 || (!matched_lo_p
14321 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
14322 lo_pos = pos;
14323
14324 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
14325 && fixup_has_matching_lo_p (*pos));
14326 }
14327
14328 /* If we found a match, remove the high-part relocation from its
14329 current position and insert it before the low-part relocation.
14330 Make the offsets match so that fixup_has_matching_lo_p()
14331 will return true.
14332
14333 We don't warn about unmatched high-part relocations since some
14334 versions of gcc have been known to emit dead "lui ...%hi(...)"
14335 instructions. */
14336 if (lo_pos != NULL)
14337 {
14338 l->fixp->fx_offset = (*lo_pos)->fx_offset;
14339 if (l->fixp->fx_next != *lo_pos)
14340 {
14341 *hi_pos = l->fixp->fx_next;
14342 l->fixp->fx_next = *lo_pos;
14343 *lo_pos = l->fixp;
14344 }
14345 }
14346 }
14347 }
14348
14349 int
14350 mips_force_relocation (fixS *fixp)
14351 {
14352 if (generic_force_reloc (fixp))
14353 return 1;
14354
14355 /* We want to keep BFD_RELOC_MICROMIPS_*_PCREL_S1 relocation,
14356 so that the linker relaxation can update targets. */
14357 if (fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
14358 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
14359 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1)
14360 return 1;
14361
14362 return 0;
14363 }
14364
14365 /* Read the instruction associated with RELOC from BUF. */
14366
14367 static unsigned int
14368 read_reloc_insn (char *buf, bfd_reloc_code_real_type reloc)
14369 {
14370 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
14371 return read_compressed_insn (buf, 4);
14372 else
14373 return read_insn (buf);
14374 }
14375
14376 /* Write instruction INSN to BUF, given that it has been relocated
14377 by RELOC. */
14378
14379 static void
14380 write_reloc_insn (char *buf, bfd_reloc_code_real_type reloc,
14381 unsigned long insn)
14382 {
14383 if (mips16_reloc_p (reloc) || micromips_reloc_p (reloc))
14384 write_compressed_insn (buf, insn, 4);
14385 else
14386 write_insn (buf, insn);
14387 }
14388
14389 /* Apply a fixup to the object file. */
14390
14391 void
14392 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
14393 {
14394 char *buf;
14395 unsigned long insn;
14396 reloc_howto_type *howto;
14397
14398 /* We ignore generic BFD relocations we don't know about. */
14399 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
14400 if (! howto)
14401 return;
14402
14403 gas_assert (fixP->fx_size == 2
14404 || fixP->fx_size == 4
14405 || fixP->fx_r_type == BFD_RELOC_16
14406 || fixP->fx_r_type == BFD_RELOC_64
14407 || fixP->fx_r_type == BFD_RELOC_CTOR
14408 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
14409 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_SUB
14410 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
14411 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
14412 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
14413
14414 buf = fixP->fx_frag->fr_literal + fixP->fx_where;
14415
14416 gas_assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
14417 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
14418 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
14419 || fixP->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
14420 || fixP->fx_r_type == BFD_RELOC_32_PCREL);
14421
14422 /* Don't treat parts of a composite relocation as done. There are two
14423 reasons for this:
14424
14425 (1) The second and third parts will be against 0 (RSS_UNDEF) but
14426 should nevertheless be emitted if the first part is.
14427
14428 (2) In normal usage, composite relocations are never assembly-time
14429 constants. The easiest way of dealing with the pathological
14430 exceptions is to generate a relocation against STN_UNDEF and
14431 leave everything up to the linker. */
14432 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
14433 fixP->fx_done = 1;
14434
14435 switch (fixP->fx_r_type)
14436 {
14437 case BFD_RELOC_MIPS_TLS_GD:
14438 case BFD_RELOC_MIPS_TLS_LDM:
14439 case BFD_RELOC_MIPS_TLS_DTPREL32:
14440 case BFD_RELOC_MIPS_TLS_DTPREL64:
14441 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
14442 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
14443 case BFD_RELOC_MIPS_TLS_GOTTPREL:
14444 case BFD_RELOC_MIPS_TLS_TPREL32:
14445 case BFD_RELOC_MIPS_TLS_TPREL64:
14446 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
14447 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
14448 case BFD_RELOC_MICROMIPS_TLS_GD:
14449 case BFD_RELOC_MICROMIPS_TLS_LDM:
14450 case BFD_RELOC_MICROMIPS_TLS_DTPREL_HI16:
14451 case BFD_RELOC_MICROMIPS_TLS_DTPREL_LO16:
14452 case BFD_RELOC_MICROMIPS_TLS_GOTTPREL:
14453 case BFD_RELOC_MICROMIPS_TLS_TPREL_HI16:
14454 case BFD_RELOC_MICROMIPS_TLS_TPREL_LO16:
14455 case BFD_RELOC_MIPS16_TLS_GD:
14456 case BFD_RELOC_MIPS16_TLS_LDM:
14457 case BFD_RELOC_MIPS16_TLS_DTPREL_HI16:
14458 case BFD_RELOC_MIPS16_TLS_DTPREL_LO16:
14459 case BFD_RELOC_MIPS16_TLS_GOTTPREL:
14460 case BFD_RELOC_MIPS16_TLS_TPREL_HI16:
14461 case BFD_RELOC_MIPS16_TLS_TPREL_LO16:
14462 if (!fixP->fx_addsy)
14463 {
14464 as_bad_where (fixP->fx_file, fixP->fx_line,
14465 _("TLS relocation against a constant"));
14466 break;
14467 }
14468 S_SET_THREAD_LOCAL (fixP->fx_addsy);
14469 /* fall through */
14470
14471 case BFD_RELOC_MIPS_JMP:
14472 case BFD_RELOC_MIPS_SHIFT5:
14473 case BFD_RELOC_MIPS_SHIFT6:
14474 case BFD_RELOC_MIPS_GOT_DISP:
14475 case BFD_RELOC_MIPS_GOT_PAGE:
14476 case BFD_RELOC_MIPS_GOT_OFST:
14477 case BFD_RELOC_MIPS_SUB:
14478 case BFD_RELOC_MIPS_INSERT_A:
14479 case BFD_RELOC_MIPS_INSERT_B:
14480 case BFD_RELOC_MIPS_DELETE:
14481 case BFD_RELOC_MIPS_HIGHEST:
14482 case BFD_RELOC_MIPS_HIGHER:
14483 case BFD_RELOC_MIPS_SCN_DISP:
14484 case BFD_RELOC_MIPS_REL16:
14485 case BFD_RELOC_MIPS_RELGOT:
14486 case BFD_RELOC_MIPS_JALR:
14487 case BFD_RELOC_HI16:
14488 case BFD_RELOC_HI16_S:
14489 case BFD_RELOC_LO16:
14490 case BFD_RELOC_GPREL16:
14491 case BFD_RELOC_MIPS_LITERAL:
14492 case BFD_RELOC_MIPS_CALL16:
14493 case BFD_RELOC_MIPS_GOT16:
14494 case BFD_RELOC_GPREL32:
14495 case BFD_RELOC_MIPS_GOT_HI16:
14496 case BFD_RELOC_MIPS_GOT_LO16:
14497 case BFD_RELOC_MIPS_CALL_HI16:
14498 case BFD_RELOC_MIPS_CALL_LO16:
14499 case BFD_RELOC_MIPS16_GPREL:
14500 case BFD_RELOC_MIPS16_GOT16:
14501 case BFD_RELOC_MIPS16_CALL16:
14502 case BFD_RELOC_MIPS16_HI16:
14503 case BFD_RELOC_MIPS16_HI16_S:
14504 case BFD_RELOC_MIPS16_LO16:
14505 case BFD_RELOC_MIPS16_JMP:
14506 case BFD_RELOC_MICROMIPS_JMP:
14507 case BFD_RELOC_MICROMIPS_GOT_DISP:
14508 case BFD_RELOC_MICROMIPS_GOT_PAGE:
14509 case BFD_RELOC_MICROMIPS_GOT_OFST:
14510 case BFD_RELOC_MICROMIPS_SUB:
14511 case BFD_RELOC_MICROMIPS_HIGHEST:
14512 case BFD_RELOC_MICROMIPS_HIGHER:
14513 case BFD_RELOC_MICROMIPS_SCN_DISP:
14514 case BFD_RELOC_MICROMIPS_JALR:
14515 case BFD_RELOC_MICROMIPS_HI16:
14516 case BFD_RELOC_MICROMIPS_HI16_S:
14517 case BFD_RELOC_MICROMIPS_LO16:
14518 case BFD_RELOC_MICROMIPS_GPREL16:
14519 case BFD_RELOC_MICROMIPS_LITERAL:
14520 case BFD_RELOC_MICROMIPS_CALL16:
14521 case BFD_RELOC_MICROMIPS_GOT16:
14522 case BFD_RELOC_MICROMIPS_GOT_HI16:
14523 case BFD_RELOC_MICROMIPS_GOT_LO16:
14524 case BFD_RELOC_MICROMIPS_CALL_HI16:
14525 case BFD_RELOC_MICROMIPS_CALL_LO16:
14526 case BFD_RELOC_MIPS_EH:
14527 if (fixP->fx_done)
14528 {
14529 offsetT value;
14530
14531 if (calculate_reloc (fixP->fx_r_type, *valP, &value))
14532 {
14533 insn = read_reloc_insn (buf, fixP->fx_r_type);
14534 if (mips16_reloc_p (fixP->fx_r_type))
14535 insn |= mips16_immed_extend (value, 16);
14536 else
14537 insn |= (value & 0xffff);
14538 write_reloc_insn (buf, fixP->fx_r_type, insn);
14539 }
14540 else
14541 as_bad_where (fixP->fx_file, fixP->fx_line,
14542 _("Unsupported constant in relocation"));
14543 }
14544 break;
14545
14546 case BFD_RELOC_64:
14547 /* This is handled like BFD_RELOC_32, but we output a sign
14548 extended value if we are only 32 bits. */
14549 if (fixP->fx_done)
14550 {
14551 if (8 <= sizeof (valueT))
14552 md_number_to_chars (buf, *valP, 8);
14553 else
14554 {
14555 valueT hiv;
14556
14557 if ((*valP & 0x80000000) != 0)
14558 hiv = 0xffffffff;
14559 else
14560 hiv = 0;
14561 md_number_to_chars (buf + (target_big_endian ? 4 : 0), *valP, 4);
14562 md_number_to_chars (buf + (target_big_endian ? 0 : 4), hiv, 4);
14563 }
14564 }
14565 break;
14566
14567 case BFD_RELOC_RVA:
14568 case BFD_RELOC_32:
14569 case BFD_RELOC_32_PCREL:
14570 case BFD_RELOC_16:
14571 /* If we are deleting this reloc entry, we must fill in the
14572 value now. This can happen if we have a .word which is not
14573 resolved when it appears but is later defined. */
14574 if (fixP->fx_done)
14575 md_number_to_chars (buf, *valP, fixP->fx_size);
14576 break;
14577
14578 case BFD_RELOC_16_PCREL_S2:
14579 if ((*valP & 0x3) != 0)
14580 as_bad_where (fixP->fx_file, fixP->fx_line,
14581 _("Branch to misaligned address (%lx)"), (long) *valP);
14582
14583 /* We need to save the bits in the instruction since fixup_segment()
14584 might be deleting the relocation entry (i.e., a branch within
14585 the current segment). */
14586 if (! fixP->fx_done)
14587 break;
14588
14589 /* Update old instruction data. */
14590 insn = read_insn (buf);
14591
14592 if (*valP + 0x20000 <= 0x3ffff)
14593 {
14594 insn |= (*valP >> 2) & 0xffff;
14595 write_insn (buf, insn);
14596 }
14597 else if (mips_pic == NO_PIC
14598 && fixP->fx_done
14599 && fixP->fx_frag->fr_address >= text_section->vma
14600 && (fixP->fx_frag->fr_address
14601 < text_section->vma + bfd_get_section_size (text_section))
14602 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
14603 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
14604 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
14605 {
14606 /* The branch offset is too large. If this is an
14607 unconditional branch, and we are not generating PIC code,
14608 we can convert it to an absolute jump instruction. */
14609 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
14610 insn = 0x0c000000; /* jal */
14611 else
14612 insn = 0x08000000; /* j */
14613 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
14614 fixP->fx_done = 0;
14615 fixP->fx_addsy = section_symbol (text_section);
14616 *valP += md_pcrel_from (fixP);
14617 write_insn (buf, insn);
14618 }
14619 else
14620 {
14621 /* If we got here, we have branch-relaxation disabled,
14622 and there's nothing we can do to fix this instruction
14623 without turning it into a longer sequence. */
14624 as_bad_where (fixP->fx_file, fixP->fx_line,
14625 _("Branch out of range"));
14626 }
14627 break;
14628
14629 case BFD_RELOC_MICROMIPS_7_PCREL_S1:
14630 case BFD_RELOC_MICROMIPS_10_PCREL_S1:
14631 case BFD_RELOC_MICROMIPS_16_PCREL_S1:
14632 /* We adjust the offset back to even. */
14633 if ((*valP & 0x1) != 0)
14634 --(*valP);
14635
14636 if (! fixP->fx_done)
14637 break;
14638
14639 /* Should never visit here, because we keep the relocation. */
14640 abort ();
14641 break;
14642
14643 case BFD_RELOC_VTABLE_INHERIT:
14644 fixP->fx_done = 0;
14645 if (fixP->fx_addsy
14646 && !S_IS_DEFINED (fixP->fx_addsy)
14647 && !S_IS_WEAK (fixP->fx_addsy))
14648 S_SET_WEAK (fixP->fx_addsy);
14649 break;
14650
14651 case BFD_RELOC_VTABLE_ENTRY:
14652 fixP->fx_done = 0;
14653 break;
14654
14655 default:
14656 abort ();
14657 }
14658
14659 /* Remember value for tc_gen_reloc. */
14660 fixP->fx_addnumber = *valP;
14661 }
14662
14663 static symbolS *
14664 get_symbol (void)
14665 {
14666 int c;
14667 char *name;
14668 symbolS *p;
14669
14670 name = input_line_pointer;
14671 c = get_symbol_end ();
14672 p = (symbolS *) symbol_find_or_make (name);
14673 *input_line_pointer = c;
14674 return p;
14675 }
14676
14677 /* Align the current frag to a given power of two. If a particular
14678 fill byte should be used, FILL points to an integer that contains
14679 that byte, otherwise FILL is null.
14680
14681 This function used to have the comment:
14682
14683 The MIPS assembler also automatically adjusts any preceding label.
14684
14685 The implementation therefore applied the adjustment to a maximum of
14686 one label. However, other label adjustments are applied to batches
14687 of labels, and adjusting just one caused problems when new labels
14688 were added for the sake of debugging or unwind information.
14689 We therefore adjust all preceding labels (given as LABELS) instead. */
14690
14691 static void
14692 mips_align (int to, int *fill, struct insn_label_list *labels)
14693 {
14694 mips_emit_delays ();
14695 mips_record_compressed_mode ();
14696 if (fill == NULL && subseg_text_p (now_seg))
14697 frag_align_code (to, 0);
14698 else
14699 frag_align (to, fill ? *fill : 0, 0);
14700 record_alignment (now_seg, to);
14701 mips_move_labels (labels, FALSE);
14702 }
14703
14704 /* Align to a given power of two. .align 0 turns off the automatic
14705 alignment used by the data creating pseudo-ops. */
14706
14707 static void
14708 s_align (int x ATTRIBUTE_UNUSED)
14709 {
14710 int temp, fill_value, *fill_ptr;
14711 long max_alignment = 28;
14712
14713 /* o Note that the assembler pulls down any immediately preceding label
14714 to the aligned address.
14715 o It's not documented but auto alignment is reinstated by
14716 a .align pseudo instruction.
14717 o Note also that after auto alignment is turned off the mips assembler
14718 issues an error on attempt to assemble an improperly aligned data item.
14719 We don't. */
14720
14721 temp = get_absolute_expression ();
14722 if (temp > max_alignment)
14723 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
14724 else if (temp < 0)
14725 {
14726 as_warn (_("Alignment negative: 0 assumed."));
14727 temp = 0;
14728 }
14729 if (*input_line_pointer == ',')
14730 {
14731 ++input_line_pointer;
14732 fill_value = get_absolute_expression ();
14733 fill_ptr = &fill_value;
14734 }
14735 else
14736 fill_ptr = 0;
14737 if (temp)
14738 {
14739 segment_info_type *si = seg_info (now_seg);
14740 struct insn_label_list *l = si->label_list;
14741 /* Auto alignment should be switched on by next section change. */
14742 auto_align = 1;
14743 mips_align (temp, fill_ptr, l);
14744 }
14745 else
14746 {
14747 auto_align = 0;
14748 }
14749
14750 demand_empty_rest_of_line ();
14751 }
14752
14753 static void
14754 s_change_sec (int sec)
14755 {
14756 segT seg;
14757
14758 /* The ELF backend needs to know that we are changing sections, so
14759 that .previous works correctly. We could do something like check
14760 for an obj_section_change_hook macro, but that might be confusing
14761 as it would not be appropriate to use it in the section changing
14762 functions in read.c, since obj-elf.c intercepts those. FIXME:
14763 This should be cleaner, somehow. */
14764 obj_elf_section_change_hook ();
14765
14766 mips_emit_delays ();
14767
14768 switch (sec)
14769 {
14770 case 't':
14771 s_text (0);
14772 break;
14773 case 'd':
14774 s_data (0);
14775 break;
14776 case 'b':
14777 subseg_set (bss_section, (subsegT) get_absolute_expression ());
14778 demand_empty_rest_of_line ();
14779 break;
14780
14781 case 'r':
14782 seg = subseg_new (RDATA_SECTION_NAME,
14783 (subsegT) get_absolute_expression ());
14784 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
14785 | SEC_READONLY | SEC_RELOC
14786 | SEC_DATA));
14787 if (strncmp (TARGET_OS, "elf", 3) != 0)
14788 record_alignment (seg, 4);
14789 demand_empty_rest_of_line ();
14790 break;
14791
14792 case 's':
14793 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
14794 bfd_set_section_flags (stdoutput, seg,
14795 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
14796 if (strncmp (TARGET_OS, "elf", 3) != 0)
14797 record_alignment (seg, 4);
14798 demand_empty_rest_of_line ();
14799 break;
14800
14801 case 'B':
14802 seg = subseg_new (".sbss", (subsegT) get_absolute_expression ());
14803 bfd_set_section_flags (stdoutput, seg, SEC_ALLOC);
14804 if (strncmp (TARGET_OS, "elf", 3) != 0)
14805 record_alignment (seg, 4);
14806 demand_empty_rest_of_line ();
14807 break;
14808 }
14809
14810 auto_align = 1;
14811 }
14812
14813 void
14814 s_change_section (int ignore ATTRIBUTE_UNUSED)
14815 {
14816 char *section_name;
14817 char c;
14818 char next_c = 0;
14819 int section_type;
14820 int section_flag;
14821 int section_entry_size;
14822 int section_alignment;
14823
14824 section_name = input_line_pointer;
14825 c = get_symbol_end ();
14826 if (c)
14827 next_c = *(input_line_pointer + 1);
14828
14829 /* Do we have .section Name<,"flags">? */
14830 if (c != ',' || (c == ',' && next_c == '"'))
14831 {
14832 /* just after name is now '\0'. */
14833 *input_line_pointer = c;
14834 input_line_pointer = section_name;
14835 obj_elf_section (ignore);
14836 return;
14837 }
14838 input_line_pointer++;
14839
14840 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
14841 if (c == ',')
14842 section_type = get_absolute_expression ();
14843 else
14844 section_type = 0;
14845 if (*input_line_pointer++ == ',')
14846 section_flag = get_absolute_expression ();
14847 else
14848 section_flag = 0;
14849 if (*input_line_pointer++ == ',')
14850 section_entry_size = get_absolute_expression ();
14851 else
14852 section_entry_size = 0;
14853 if (*input_line_pointer++ == ',')
14854 section_alignment = get_absolute_expression ();
14855 else
14856 section_alignment = 0;
14857 /* FIXME: really ignore? */
14858 (void) section_alignment;
14859
14860 section_name = xstrdup (section_name);
14861
14862 /* When using the generic form of .section (as implemented by obj-elf.c),
14863 there's no way to set the section type to SHT_MIPS_DWARF. Users have
14864 traditionally had to fall back on the more common @progbits instead.
14865
14866 There's nothing really harmful in this, since bfd will correct
14867 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
14868 means that, for backwards compatibility, the special_section entries
14869 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
14870
14871 Even so, we shouldn't force users of the MIPS .section syntax to
14872 incorrectly label the sections as SHT_PROGBITS. The best compromise
14873 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
14874 generic type-checking code. */
14875 if (section_type == SHT_MIPS_DWARF)
14876 section_type = SHT_PROGBITS;
14877
14878 obj_elf_change_section (section_name, section_type, section_flag,
14879 section_entry_size, 0, 0, 0);
14880
14881 if (now_seg->name != section_name)
14882 free (section_name);
14883 }
14884
14885 void
14886 mips_enable_auto_align (void)
14887 {
14888 auto_align = 1;
14889 }
14890
14891 static void
14892 s_cons (int log_size)
14893 {
14894 segment_info_type *si = seg_info (now_seg);
14895 struct insn_label_list *l = si->label_list;
14896
14897 mips_emit_delays ();
14898 if (log_size > 0 && auto_align)
14899 mips_align (log_size, 0, l);
14900 cons (1 << log_size);
14901 mips_clear_insn_labels ();
14902 }
14903
14904 static void
14905 s_float_cons (int type)
14906 {
14907 segment_info_type *si = seg_info (now_seg);
14908 struct insn_label_list *l = si->label_list;
14909
14910 mips_emit_delays ();
14911
14912 if (auto_align)
14913 {
14914 if (type == 'd')
14915 mips_align (3, 0, l);
14916 else
14917 mips_align (2, 0, l);
14918 }
14919
14920 float_cons (type);
14921 mips_clear_insn_labels ();
14922 }
14923
14924 /* Handle .globl. We need to override it because on Irix 5 you are
14925 permitted to say
14926 .globl foo .text
14927 where foo is an undefined symbol, to mean that foo should be
14928 considered to be the address of a function. */
14929
14930 static void
14931 s_mips_globl (int x ATTRIBUTE_UNUSED)
14932 {
14933 char *name;
14934 int c;
14935 symbolS *symbolP;
14936 flagword flag;
14937
14938 do
14939 {
14940 name = input_line_pointer;
14941 c = get_symbol_end ();
14942 symbolP = symbol_find_or_make (name);
14943 S_SET_EXTERNAL (symbolP);
14944
14945 *input_line_pointer = c;
14946 SKIP_WHITESPACE ();
14947
14948 /* On Irix 5, every global symbol that is not explicitly labelled as
14949 being a function is apparently labelled as being an object. */
14950 flag = BSF_OBJECT;
14951
14952 if (!is_end_of_line[(unsigned char) *input_line_pointer]
14953 && (*input_line_pointer != ','))
14954 {
14955 char *secname;
14956 asection *sec;
14957
14958 secname = input_line_pointer;
14959 c = get_symbol_end ();
14960 sec = bfd_get_section_by_name (stdoutput, secname);
14961 if (sec == NULL)
14962 as_bad (_("%s: no such section"), secname);
14963 *input_line_pointer = c;
14964
14965 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
14966 flag = BSF_FUNCTION;
14967 }
14968
14969 symbol_get_bfdsym (symbolP)->flags |= flag;
14970
14971 c = *input_line_pointer;
14972 if (c == ',')
14973 {
14974 input_line_pointer++;
14975 SKIP_WHITESPACE ();
14976 if (is_end_of_line[(unsigned char) *input_line_pointer])
14977 c = '\n';
14978 }
14979 }
14980 while (c == ',');
14981
14982 demand_empty_rest_of_line ();
14983 }
14984
14985 static void
14986 s_option (int x ATTRIBUTE_UNUSED)
14987 {
14988 char *opt;
14989 char c;
14990
14991 opt = input_line_pointer;
14992 c = get_symbol_end ();
14993
14994 if (*opt == 'O')
14995 {
14996 /* FIXME: What does this mean? */
14997 }
14998 else if (strncmp (opt, "pic", 3) == 0)
14999 {
15000 int i;
15001
15002 i = atoi (opt + 3);
15003 if (i == 0)
15004 mips_pic = NO_PIC;
15005 else if (i == 2)
15006 {
15007 mips_pic = SVR4_PIC;
15008 mips_abicalls = TRUE;
15009 }
15010 else
15011 as_bad (_(".option pic%d not supported"), i);
15012
15013 if (mips_pic == SVR4_PIC)
15014 {
15015 if (g_switch_seen && g_switch_value != 0)
15016 as_warn (_("-G may not be used with SVR4 PIC code"));
15017 g_switch_value = 0;
15018 bfd_set_gp_size (stdoutput, 0);
15019 }
15020 }
15021 else
15022 as_warn (_("Unrecognized option \"%s\""), opt);
15023
15024 *input_line_pointer = c;
15025 demand_empty_rest_of_line ();
15026 }
15027
15028 /* This structure is used to hold a stack of .set values. */
15029
15030 struct mips_option_stack
15031 {
15032 struct mips_option_stack *next;
15033 struct mips_set_options options;
15034 };
15035
15036 static struct mips_option_stack *mips_opts_stack;
15037
15038 /* Handle the .set pseudo-op. */
15039
15040 static void
15041 s_mipsset (int x ATTRIBUTE_UNUSED)
15042 {
15043 char *name = input_line_pointer, ch;
15044 const struct mips_ase *ase;
15045
15046 while (!is_end_of_line[(unsigned char) *input_line_pointer])
15047 ++input_line_pointer;
15048 ch = *input_line_pointer;
15049 *input_line_pointer = '\0';
15050
15051 if (strcmp (name, "reorder") == 0)
15052 {
15053 if (mips_opts.noreorder)
15054 end_noreorder ();
15055 }
15056 else if (strcmp (name, "noreorder") == 0)
15057 {
15058 if (!mips_opts.noreorder)
15059 start_noreorder ();
15060 }
15061 else if (strncmp (name, "at=", 3) == 0)
15062 {
15063 char *s = name + 3;
15064
15065 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
15066 as_bad (_("Unrecognized register name `%s'"), s);
15067 }
15068 else if (strcmp (name, "at") == 0)
15069 {
15070 mips_opts.at = ATREG;
15071 }
15072 else if (strcmp (name, "noat") == 0)
15073 {
15074 mips_opts.at = ZERO;
15075 }
15076 else if (strcmp (name, "macro") == 0)
15077 {
15078 mips_opts.warn_about_macros = 0;
15079 }
15080 else if (strcmp (name, "nomacro") == 0)
15081 {
15082 if (mips_opts.noreorder == 0)
15083 as_bad (_("`noreorder' must be set before `nomacro'"));
15084 mips_opts.warn_about_macros = 1;
15085 }
15086 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
15087 {
15088 mips_opts.nomove = 0;
15089 }
15090 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
15091 {
15092 mips_opts.nomove = 1;
15093 }
15094 else if (strcmp (name, "bopt") == 0)
15095 {
15096 mips_opts.nobopt = 0;
15097 }
15098 else if (strcmp (name, "nobopt") == 0)
15099 {
15100 mips_opts.nobopt = 1;
15101 }
15102 else if (strcmp (name, "gp=default") == 0)
15103 mips_opts.gp32 = file_mips_gp32;
15104 else if (strcmp (name, "gp=32") == 0)
15105 mips_opts.gp32 = 1;
15106 else if (strcmp (name, "gp=64") == 0)
15107 {
15108 if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
15109 as_warn (_("%s isa does not support 64-bit registers"),
15110 mips_cpu_info_from_isa (mips_opts.isa)->name);
15111 mips_opts.gp32 = 0;
15112 }
15113 else if (strcmp (name, "fp=default") == 0)
15114 mips_opts.fp32 = file_mips_fp32;
15115 else if (strcmp (name, "fp=32") == 0)
15116 mips_opts.fp32 = 1;
15117 else if (strcmp (name, "fp=64") == 0)
15118 {
15119 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
15120 as_warn (_("%s isa does not support 64-bit floating point registers"),
15121 mips_cpu_info_from_isa (mips_opts.isa)->name);
15122 mips_opts.fp32 = 0;
15123 }
15124 else if (strcmp (name, "softfloat") == 0)
15125 mips_opts.soft_float = 1;
15126 else if (strcmp (name, "hardfloat") == 0)
15127 mips_opts.soft_float = 0;
15128 else if (strcmp (name, "singlefloat") == 0)
15129 mips_opts.single_float = 1;
15130 else if (strcmp (name, "doublefloat") == 0)
15131 mips_opts.single_float = 0;
15132 else if (strcmp (name, "mips16") == 0
15133 || strcmp (name, "MIPS-16") == 0)
15134 {
15135 if (mips_opts.micromips == 1)
15136 as_fatal (_("`mips16' cannot be used with `micromips'"));
15137 mips_opts.mips16 = 1;
15138 }
15139 else if (strcmp (name, "nomips16") == 0
15140 || strcmp (name, "noMIPS-16") == 0)
15141 mips_opts.mips16 = 0;
15142 else if (strcmp (name, "micromips") == 0)
15143 {
15144 if (mips_opts.mips16 == 1)
15145 as_fatal (_("`micromips' cannot be used with `mips16'"));
15146 mips_opts.micromips = 1;
15147 }
15148 else if (strcmp (name, "nomicromips") == 0)
15149 mips_opts.micromips = 0;
15150 else if (name[0] == 'n'
15151 && name[1] == 'o'
15152 && (ase = mips_lookup_ase (name + 2)))
15153 mips_set_ase (ase, FALSE);
15154 else if ((ase = mips_lookup_ase (name)))
15155 mips_set_ase (ase, TRUE);
15156 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
15157 {
15158 int reset = 0;
15159
15160 /* Permit the user to change the ISA and architecture on the fly.
15161 Needless to say, misuse can cause serious problems. */
15162 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
15163 {
15164 reset = 1;
15165 mips_opts.isa = file_mips_isa;
15166 mips_opts.arch = file_mips_arch;
15167 }
15168 else if (strncmp (name, "arch=", 5) == 0)
15169 {
15170 const struct mips_cpu_info *p;
15171
15172 p = mips_parse_cpu("internal use", name + 5);
15173 if (!p)
15174 as_bad (_("unknown architecture %s"), name + 5);
15175 else
15176 {
15177 mips_opts.arch = p->cpu;
15178 mips_opts.isa = p->isa;
15179 }
15180 }
15181 else if (strncmp (name, "mips", 4) == 0)
15182 {
15183 const struct mips_cpu_info *p;
15184
15185 p = mips_parse_cpu("internal use", name);
15186 if (!p)
15187 as_bad (_("unknown ISA level %s"), name + 4);
15188 else
15189 {
15190 mips_opts.arch = p->cpu;
15191 mips_opts.isa = p->isa;
15192 }
15193 }
15194 else
15195 as_bad (_("unknown ISA or architecture %s"), name);
15196
15197 switch (mips_opts.isa)
15198 {
15199 case 0:
15200 break;
15201 case ISA_MIPS1:
15202 case ISA_MIPS2:
15203 case ISA_MIPS32:
15204 case ISA_MIPS32R2:
15205 mips_opts.gp32 = 1;
15206 mips_opts.fp32 = 1;
15207 break;
15208 case ISA_MIPS3:
15209 case ISA_MIPS4:
15210 case ISA_MIPS5:
15211 case ISA_MIPS64:
15212 case ISA_MIPS64R2:
15213 mips_opts.gp32 = 0;
15214 if (mips_opts.arch == CPU_R5900)
15215 {
15216 mips_opts.fp32 = 1;
15217 }
15218 else
15219 {
15220 mips_opts.fp32 = 0;
15221 }
15222 break;
15223 default:
15224 as_bad (_("unknown ISA level %s"), name + 4);
15225 break;
15226 }
15227 if (reset)
15228 {
15229 mips_opts.gp32 = file_mips_gp32;
15230 mips_opts.fp32 = file_mips_fp32;
15231 }
15232 }
15233 else if (strcmp (name, "autoextend") == 0)
15234 mips_opts.noautoextend = 0;
15235 else if (strcmp (name, "noautoextend") == 0)
15236 mips_opts.noautoextend = 1;
15237 else if (strcmp (name, "insn32") == 0)
15238 mips_opts.insn32 = TRUE;
15239 else if (strcmp (name, "noinsn32") == 0)
15240 mips_opts.insn32 = FALSE;
15241 else if (strcmp (name, "push") == 0)
15242 {
15243 struct mips_option_stack *s;
15244
15245 s = (struct mips_option_stack *) xmalloc (sizeof *s);
15246 s->next = mips_opts_stack;
15247 s->options = mips_opts;
15248 mips_opts_stack = s;
15249 }
15250 else if (strcmp (name, "pop") == 0)
15251 {
15252 struct mips_option_stack *s;
15253
15254 s = mips_opts_stack;
15255 if (s == NULL)
15256 as_bad (_(".set pop with no .set push"));
15257 else
15258 {
15259 /* If we're changing the reorder mode we need to handle
15260 delay slots correctly. */
15261 if (s->options.noreorder && ! mips_opts.noreorder)
15262 start_noreorder ();
15263 else if (! s->options.noreorder && mips_opts.noreorder)
15264 end_noreorder ();
15265
15266 mips_opts = s->options;
15267 mips_opts_stack = s->next;
15268 free (s);
15269 }
15270 }
15271 else if (strcmp (name, "sym32") == 0)
15272 mips_opts.sym32 = TRUE;
15273 else if (strcmp (name, "nosym32") == 0)
15274 mips_opts.sym32 = FALSE;
15275 else if (strchr (name, ','))
15276 {
15277 /* Generic ".set" directive; use the generic handler. */
15278 *input_line_pointer = ch;
15279 input_line_pointer = name;
15280 s_set (0);
15281 return;
15282 }
15283 else
15284 {
15285 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
15286 }
15287 mips_check_isa_supports_ases ();
15288 *input_line_pointer = ch;
15289 demand_empty_rest_of_line ();
15290 }
15291
15292 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
15293 .option pic2. It means to generate SVR4 PIC calls. */
15294
15295 static void
15296 s_abicalls (int ignore ATTRIBUTE_UNUSED)
15297 {
15298 mips_pic = SVR4_PIC;
15299 mips_abicalls = TRUE;
15300
15301 if (g_switch_seen && g_switch_value != 0)
15302 as_warn (_("-G may not be used with SVR4 PIC code"));
15303 g_switch_value = 0;
15304
15305 bfd_set_gp_size (stdoutput, 0);
15306 demand_empty_rest_of_line ();
15307 }
15308
15309 /* Handle the .cpload pseudo-op. This is used when generating SVR4
15310 PIC code. It sets the $gp register for the function based on the
15311 function address, which is in the register named in the argument.
15312 This uses a relocation against _gp_disp, which is handled specially
15313 by the linker. The result is:
15314 lui $gp,%hi(_gp_disp)
15315 addiu $gp,$gp,%lo(_gp_disp)
15316 addu $gp,$gp,.cpload argument
15317 The .cpload argument is normally $25 == $t9.
15318
15319 The -mno-shared option changes this to:
15320 lui $gp,%hi(__gnu_local_gp)
15321 addiu $gp,$gp,%lo(__gnu_local_gp)
15322 and the argument is ignored. This saves an instruction, but the
15323 resulting code is not position independent; it uses an absolute
15324 address for __gnu_local_gp. Thus code assembled with -mno-shared
15325 can go into an ordinary executable, but not into a shared library. */
15326
15327 static void
15328 s_cpload (int ignore ATTRIBUTE_UNUSED)
15329 {
15330 expressionS ex;
15331 int reg;
15332 int in_shared;
15333
15334 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
15335 .cpload is ignored. */
15336 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
15337 {
15338 s_ignore (0);
15339 return;
15340 }
15341
15342 if (mips_opts.mips16)
15343 {
15344 as_bad (_("%s not supported in MIPS16 mode"), ".cpload");
15345 ignore_rest_of_line ();
15346 return;
15347 }
15348
15349 /* .cpload should be in a .set noreorder section. */
15350 if (mips_opts.noreorder == 0)
15351 as_warn (_(".cpload not in noreorder section"));
15352
15353 reg = tc_get_register (0);
15354
15355 /* If we need to produce a 64-bit address, we are better off using
15356 the default instruction sequence. */
15357 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
15358
15359 ex.X_op = O_symbol;
15360 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
15361 "__gnu_local_gp");
15362 ex.X_op_symbol = NULL;
15363 ex.X_add_number = 0;
15364
15365 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
15366 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
15367
15368 mips_mark_labels ();
15369 mips_assembling_insn = TRUE;
15370
15371 macro_start ();
15372 macro_build_lui (&ex, mips_gp_register);
15373 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
15374 mips_gp_register, BFD_RELOC_LO16);
15375 if (in_shared)
15376 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
15377 mips_gp_register, reg);
15378 macro_end ();
15379
15380 mips_assembling_insn = FALSE;
15381 demand_empty_rest_of_line ();
15382 }
15383
15384 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
15385 .cpsetup $reg1, offset|$reg2, label
15386
15387 If offset is given, this results in:
15388 sd $gp, offset($sp)
15389 lui $gp, %hi(%neg(%gp_rel(label)))
15390 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
15391 daddu $gp, $gp, $reg1
15392
15393 If $reg2 is given, this results in:
15394 daddu $reg2, $gp, $0
15395 lui $gp, %hi(%neg(%gp_rel(label)))
15396 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
15397 daddu $gp, $gp, $reg1
15398 $reg1 is normally $25 == $t9.
15399
15400 The -mno-shared option replaces the last three instructions with
15401 lui $gp,%hi(_gp)
15402 addiu $gp,$gp,%lo(_gp) */
15403
15404 static void
15405 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
15406 {
15407 expressionS ex_off;
15408 expressionS ex_sym;
15409 int reg1;
15410
15411 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
15412 We also need NewABI support. */
15413 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
15414 {
15415 s_ignore (0);
15416 return;
15417 }
15418
15419 if (mips_opts.mips16)
15420 {
15421 as_bad (_("%s not supported in MIPS16 mode"), ".cpsetup");
15422 ignore_rest_of_line ();
15423 return;
15424 }
15425
15426 reg1 = tc_get_register (0);
15427 SKIP_WHITESPACE ();
15428 if (*input_line_pointer != ',')
15429 {
15430 as_bad (_("missing argument separator ',' for .cpsetup"));
15431 return;
15432 }
15433 else
15434 ++input_line_pointer;
15435 SKIP_WHITESPACE ();
15436 if (*input_line_pointer == '$')
15437 {
15438 mips_cpreturn_register = tc_get_register (0);
15439 mips_cpreturn_offset = -1;
15440 }
15441 else
15442 {
15443 mips_cpreturn_offset = get_absolute_expression ();
15444 mips_cpreturn_register = -1;
15445 }
15446 SKIP_WHITESPACE ();
15447 if (*input_line_pointer != ',')
15448 {
15449 as_bad (_("missing argument separator ',' for .cpsetup"));
15450 return;
15451 }
15452 else
15453 ++input_line_pointer;
15454 SKIP_WHITESPACE ();
15455 expression (&ex_sym);
15456
15457 mips_mark_labels ();
15458 mips_assembling_insn = TRUE;
15459
15460 macro_start ();
15461 if (mips_cpreturn_register == -1)
15462 {
15463 ex_off.X_op = O_constant;
15464 ex_off.X_add_symbol = NULL;
15465 ex_off.X_op_symbol = NULL;
15466 ex_off.X_add_number = mips_cpreturn_offset;
15467
15468 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
15469 BFD_RELOC_LO16, SP);
15470 }
15471 else
15472 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
15473 mips_gp_register, 0);
15474
15475 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
15476 {
15477 macro_build (&ex_sym, "lui", LUI_FMT, mips_gp_register,
15478 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
15479 BFD_RELOC_HI16_S);
15480
15481 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
15482 mips_gp_register, -1, BFD_RELOC_GPREL16,
15483 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
15484
15485 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
15486 mips_gp_register, reg1);
15487 }
15488 else
15489 {
15490 expressionS ex;
15491
15492 ex.X_op = O_symbol;
15493 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
15494 ex.X_op_symbol = NULL;
15495 ex.X_add_number = 0;
15496
15497 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
15498 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
15499
15500 macro_build_lui (&ex, mips_gp_register);
15501 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
15502 mips_gp_register, BFD_RELOC_LO16);
15503 }
15504
15505 macro_end ();
15506
15507 mips_assembling_insn = FALSE;
15508 demand_empty_rest_of_line ();
15509 }
15510
15511 static void
15512 s_cplocal (int ignore ATTRIBUTE_UNUSED)
15513 {
15514 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
15515 .cplocal is ignored. */
15516 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
15517 {
15518 s_ignore (0);
15519 return;
15520 }
15521
15522 if (mips_opts.mips16)
15523 {
15524 as_bad (_("%s not supported in MIPS16 mode"), ".cplocal");
15525 ignore_rest_of_line ();
15526 return;
15527 }
15528
15529 mips_gp_register = tc_get_register (0);
15530 demand_empty_rest_of_line ();
15531 }
15532
15533 /* Handle the .cprestore pseudo-op. This stores $gp into a given
15534 offset from $sp. The offset is remembered, and after making a PIC
15535 call $gp is restored from that location. */
15536
15537 static void
15538 s_cprestore (int ignore ATTRIBUTE_UNUSED)
15539 {
15540 expressionS ex;
15541
15542 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
15543 .cprestore is ignored. */
15544 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
15545 {
15546 s_ignore (0);
15547 return;
15548 }
15549
15550 if (mips_opts.mips16)
15551 {
15552 as_bad (_("%s not supported in MIPS16 mode"), ".cprestore");
15553 ignore_rest_of_line ();
15554 return;
15555 }
15556
15557 mips_cprestore_offset = get_absolute_expression ();
15558 mips_cprestore_valid = 1;
15559
15560 ex.X_op = O_constant;
15561 ex.X_add_symbol = NULL;
15562 ex.X_op_symbol = NULL;
15563 ex.X_add_number = mips_cprestore_offset;
15564
15565 mips_mark_labels ();
15566 mips_assembling_insn = TRUE;
15567
15568 macro_start ();
15569 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
15570 SP, HAVE_64BIT_ADDRESSES);
15571 macro_end ();
15572
15573 mips_assembling_insn = FALSE;
15574 demand_empty_rest_of_line ();
15575 }
15576
15577 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
15578 was given in the preceding .cpsetup, it results in:
15579 ld $gp, offset($sp)
15580
15581 If a register $reg2 was given there, it results in:
15582 daddu $gp, $reg2, $0 */
15583
15584 static void
15585 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
15586 {
15587 expressionS ex;
15588
15589 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
15590 We also need NewABI support. */
15591 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
15592 {
15593 s_ignore (0);
15594 return;
15595 }
15596
15597 if (mips_opts.mips16)
15598 {
15599 as_bad (_("%s not supported in MIPS16 mode"), ".cpreturn");
15600 ignore_rest_of_line ();
15601 return;
15602 }
15603
15604 mips_mark_labels ();
15605 mips_assembling_insn = TRUE;
15606
15607 macro_start ();
15608 if (mips_cpreturn_register == -1)
15609 {
15610 ex.X_op = O_constant;
15611 ex.X_add_symbol = NULL;
15612 ex.X_op_symbol = NULL;
15613 ex.X_add_number = mips_cpreturn_offset;
15614
15615 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
15616 }
15617 else
15618 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
15619 mips_cpreturn_register, 0);
15620 macro_end ();
15621
15622 mips_assembling_insn = FALSE;
15623 demand_empty_rest_of_line ();
15624 }
15625
15626 /* Handle a .dtprelword, .dtpreldword, .tprelword, or .tpreldword
15627 pseudo-op; DIRSTR says which. The pseudo-op generates a BYTES-size
15628 DTP- or TP-relative relocation of type RTYPE, for use in either DWARF
15629 debug information or MIPS16 TLS. */
15630
15631 static void
15632 s_tls_rel_directive (const size_t bytes, const char *dirstr,
15633 bfd_reloc_code_real_type rtype)
15634 {
15635 expressionS ex;
15636 char *p;
15637
15638 expression (&ex);
15639
15640 if (ex.X_op != O_symbol)
15641 {
15642 as_bad (_("Unsupported use of %s"), dirstr);
15643 ignore_rest_of_line ();
15644 }
15645
15646 p = frag_more (bytes);
15647 md_number_to_chars (p, 0, bytes);
15648 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, rtype);
15649 demand_empty_rest_of_line ();
15650 mips_clear_insn_labels ();
15651 }
15652
15653 /* Handle .dtprelword. */
15654
15655 static void
15656 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
15657 {
15658 s_tls_rel_directive (4, ".dtprelword", BFD_RELOC_MIPS_TLS_DTPREL32);
15659 }
15660
15661 /* Handle .dtpreldword. */
15662
15663 static void
15664 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
15665 {
15666 s_tls_rel_directive (8, ".dtpreldword", BFD_RELOC_MIPS_TLS_DTPREL64);
15667 }
15668
15669 /* Handle .tprelword. */
15670
15671 static void
15672 s_tprelword (int ignore ATTRIBUTE_UNUSED)
15673 {
15674 s_tls_rel_directive (4, ".tprelword", BFD_RELOC_MIPS_TLS_TPREL32);
15675 }
15676
15677 /* Handle .tpreldword. */
15678
15679 static void
15680 s_tpreldword (int ignore ATTRIBUTE_UNUSED)
15681 {
15682 s_tls_rel_directive (8, ".tpreldword", BFD_RELOC_MIPS_TLS_TPREL64);
15683 }
15684
15685 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
15686 code. It sets the offset to use in gp_rel relocations. */
15687
15688 static void
15689 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
15690 {
15691 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
15692 We also need NewABI support. */
15693 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
15694 {
15695 s_ignore (0);
15696 return;
15697 }
15698
15699 mips_gprel_offset = get_absolute_expression ();
15700
15701 demand_empty_rest_of_line ();
15702 }
15703
15704 /* Handle the .gpword pseudo-op. This is used when generating PIC
15705 code. It generates a 32 bit GP relative reloc. */
15706
15707 static void
15708 s_gpword (int ignore ATTRIBUTE_UNUSED)
15709 {
15710 segment_info_type *si;
15711 struct insn_label_list *l;
15712 expressionS ex;
15713 char *p;
15714
15715 /* When not generating PIC code, this is treated as .word. */
15716 if (mips_pic != SVR4_PIC)
15717 {
15718 s_cons (2);
15719 return;
15720 }
15721
15722 si = seg_info (now_seg);
15723 l = si->label_list;
15724 mips_emit_delays ();
15725 if (auto_align)
15726 mips_align (2, 0, l);
15727
15728 expression (&ex);
15729 mips_clear_insn_labels ();
15730
15731 if (ex.X_op != O_symbol || ex.X_add_number != 0)
15732 {
15733 as_bad (_("Unsupported use of .gpword"));
15734 ignore_rest_of_line ();
15735 }
15736
15737 p = frag_more (4);
15738 md_number_to_chars (p, 0, 4);
15739 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
15740 BFD_RELOC_GPREL32);
15741
15742 demand_empty_rest_of_line ();
15743 }
15744
15745 static void
15746 s_gpdword (int ignore ATTRIBUTE_UNUSED)
15747 {
15748 segment_info_type *si;
15749 struct insn_label_list *l;
15750 expressionS ex;
15751 char *p;
15752
15753 /* When not generating PIC code, this is treated as .dword. */
15754 if (mips_pic != SVR4_PIC)
15755 {
15756 s_cons (3);
15757 return;
15758 }
15759
15760 si = seg_info (now_seg);
15761 l = si->label_list;
15762 mips_emit_delays ();
15763 if (auto_align)
15764 mips_align (3, 0, l);
15765
15766 expression (&ex);
15767 mips_clear_insn_labels ();
15768
15769 if (ex.X_op != O_symbol || ex.X_add_number != 0)
15770 {
15771 as_bad (_("Unsupported use of .gpdword"));
15772 ignore_rest_of_line ();
15773 }
15774
15775 p = frag_more (8);
15776 md_number_to_chars (p, 0, 8);
15777 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
15778 BFD_RELOC_GPREL32)->fx_tcbit = 1;
15779
15780 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
15781 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
15782 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
15783
15784 demand_empty_rest_of_line ();
15785 }
15786
15787 /* Handle the .ehword pseudo-op. This is used when generating unwinding
15788 tables. It generates a R_MIPS_EH reloc. */
15789
15790 static void
15791 s_ehword (int ignore ATTRIBUTE_UNUSED)
15792 {
15793 expressionS ex;
15794 char *p;
15795
15796 mips_emit_delays ();
15797
15798 expression (&ex);
15799 mips_clear_insn_labels ();
15800
15801 if (ex.X_op != O_symbol || ex.X_add_number != 0)
15802 {
15803 as_bad (_("Unsupported use of .ehword"));
15804 ignore_rest_of_line ();
15805 }
15806
15807 p = frag_more (4);
15808 md_number_to_chars (p, 0, 4);
15809 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
15810 BFD_RELOC_MIPS_EH);
15811
15812 demand_empty_rest_of_line ();
15813 }
15814
15815 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
15816 tables in SVR4 PIC code. */
15817
15818 static void
15819 s_cpadd (int ignore ATTRIBUTE_UNUSED)
15820 {
15821 int reg;
15822
15823 /* This is ignored when not generating SVR4 PIC code. */
15824 if (mips_pic != SVR4_PIC)
15825 {
15826 s_ignore (0);
15827 return;
15828 }
15829
15830 mips_mark_labels ();
15831 mips_assembling_insn = TRUE;
15832
15833 /* Add $gp to the register named as an argument. */
15834 macro_start ();
15835 reg = tc_get_register (0);
15836 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
15837 macro_end ();
15838
15839 mips_assembling_insn = FALSE;
15840 demand_empty_rest_of_line ();
15841 }
15842
15843 /* Handle the .insn pseudo-op. This marks instruction labels in
15844 mips16/micromips mode. This permits the linker to handle them specially,
15845 such as generating jalx instructions when needed. We also make
15846 them odd for the duration of the assembly, in order to generate the
15847 right sort of code. We will make them even in the adjust_symtab
15848 routine, while leaving them marked. This is convenient for the
15849 debugger and the disassembler. The linker knows to make them odd
15850 again. */
15851
15852 static void
15853 s_insn (int ignore ATTRIBUTE_UNUSED)
15854 {
15855 mips_mark_labels ();
15856
15857 demand_empty_rest_of_line ();
15858 }
15859
15860 /* Handle the .nan pseudo-op. */
15861
15862 static void
15863 s_nan (int ignore ATTRIBUTE_UNUSED)
15864 {
15865 static const char str_legacy[] = "legacy";
15866 static const char str_2008[] = "2008";
15867 size_t i;
15868
15869 for (i = 0; !is_end_of_line[(unsigned char) input_line_pointer[i]]; i++);
15870
15871 if (i == sizeof (str_2008) - 1
15872 && memcmp (input_line_pointer, str_2008, i) == 0)
15873 mips_flag_nan2008 = TRUE;
15874 else if (i == sizeof (str_legacy) - 1
15875 && memcmp (input_line_pointer, str_legacy, i) == 0)
15876 mips_flag_nan2008 = FALSE;
15877 else
15878 as_bad (_("Bad .nan directive"));
15879
15880 input_line_pointer += i;
15881 demand_empty_rest_of_line ();
15882 }
15883
15884 /* Handle a .stab[snd] directive. Ideally these directives would be
15885 implemented in a transparent way, so that removing them would not
15886 have any effect on the generated instructions. However, s_stab
15887 internally changes the section, so in practice we need to decide
15888 now whether the preceding label marks compressed code. We do not
15889 support changing the compression mode of a label after a .stab*
15890 directive, such as in:
15891
15892 foo:
15893 .stabs ...
15894 .set mips16
15895
15896 so the current mode wins. */
15897
15898 static void
15899 s_mips_stab (int type)
15900 {
15901 mips_mark_labels ();
15902 s_stab (type);
15903 }
15904
15905 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
15906
15907 static void
15908 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
15909 {
15910 char *name;
15911 int c;
15912 symbolS *symbolP;
15913 expressionS exp;
15914
15915 name = input_line_pointer;
15916 c = get_symbol_end ();
15917 symbolP = symbol_find_or_make (name);
15918 S_SET_WEAK (symbolP);
15919 *input_line_pointer = c;
15920
15921 SKIP_WHITESPACE ();
15922
15923 if (! is_end_of_line[(unsigned char) *input_line_pointer])
15924 {
15925 if (S_IS_DEFINED (symbolP))
15926 {
15927 as_bad (_("ignoring attempt to redefine symbol %s"),
15928 S_GET_NAME (symbolP));
15929 ignore_rest_of_line ();
15930 return;
15931 }
15932
15933 if (*input_line_pointer == ',')
15934 {
15935 ++input_line_pointer;
15936 SKIP_WHITESPACE ();
15937 }
15938
15939 expression (&exp);
15940 if (exp.X_op != O_symbol)
15941 {
15942 as_bad (_("bad .weakext directive"));
15943 ignore_rest_of_line ();
15944 return;
15945 }
15946 symbol_set_value_expression (symbolP, &exp);
15947 }
15948
15949 demand_empty_rest_of_line ();
15950 }
15951
15952 /* Parse a register string into a number. Called from the ECOFF code
15953 to parse .frame. The argument is non-zero if this is the frame
15954 register, so that we can record it in mips_frame_reg. */
15955
15956 int
15957 tc_get_register (int frame)
15958 {
15959 unsigned int reg;
15960
15961 SKIP_WHITESPACE ();
15962 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
15963 reg = 0;
15964 if (frame)
15965 {
15966 mips_frame_reg = reg != 0 ? reg : SP;
15967 mips_frame_reg_valid = 1;
15968 mips_cprestore_valid = 0;
15969 }
15970 return reg;
15971 }
15972
15973 valueT
15974 md_section_align (asection *seg, valueT addr)
15975 {
15976 int align = bfd_get_section_alignment (stdoutput, seg);
15977
15978 /* We don't need to align ELF sections to the full alignment.
15979 However, Irix 5 may prefer that we align them at least to a 16
15980 byte boundary. We don't bother to align the sections if we
15981 are targeted for an embedded system. */
15982 if (strncmp (TARGET_OS, "elf", 3) == 0)
15983 return addr;
15984 if (align > 4)
15985 align = 4;
15986
15987 return ((addr + (1 << align) - 1) & (-1 << align));
15988 }
15989
15990 /* Utility routine, called from above as well. If called while the
15991 input file is still being read, it's only an approximation. (For
15992 example, a symbol may later become defined which appeared to be
15993 undefined earlier.) */
15994
15995 static int
15996 nopic_need_relax (symbolS *sym, int before_relaxing)
15997 {
15998 if (sym == 0)
15999 return 0;
16000
16001 if (g_switch_value > 0)
16002 {
16003 const char *symname;
16004 int change;
16005
16006 /* Find out whether this symbol can be referenced off the $gp
16007 register. It can be if it is smaller than the -G size or if
16008 it is in the .sdata or .sbss section. Certain symbols can
16009 not be referenced off the $gp, although it appears as though
16010 they can. */
16011 symname = S_GET_NAME (sym);
16012 if (symname != (const char *) NULL
16013 && (strcmp (symname, "eprol") == 0
16014 || strcmp (symname, "etext") == 0
16015 || strcmp (symname, "_gp") == 0
16016 || strcmp (symname, "edata") == 0
16017 || strcmp (symname, "_fbss") == 0
16018 || strcmp (symname, "_fdata") == 0
16019 || strcmp (symname, "_ftext") == 0
16020 || strcmp (symname, "end") == 0
16021 || strcmp (symname, "_gp_disp") == 0))
16022 change = 1;
16023 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
16024 && (0
16025 #ifndef NO_ECOFF_DEBUGGING
16026 || (symbol_get_obj (sym)->ecoff_extern_size != 0
16027 && (symbol_get_obj (sym)->ecoff_extern_size
16028 <= g_switch_value))
16029 #endif
16030 /* We must defer this decision until after the whole
16031 file has been read, since there might be a .extern
16032 after the first use of this symbol. */
16033 || (before_relaxing
16034 #ifndef NO_ECOFF_DEBUGGING
16035 && symbol_get_obj (sym)->ecoff_extern_size == 0
16036 #endif
16037 && S_GET_VALUE (sym) == 0)
16038 || (S_GET_VALUE (sym) != 0
16039 && S_GET_VALUE (sym) <= g_switch_value)))
16040 change = 0;
16041 else
16042 {
16043 const char *segname;
16044
16045 segname = segment_name (S_GET_SEGMENT (sym));
16046 gas_assert (strcmp (segname, ".lit8") != 0
16047 && strcmp (segname, ".lit4") != 0);
16048 change = (strcmp (segname, ".sdata") != 0
16049 && strcmp (segname, ".sbss") != 0
16050 && strncmp (segname, ".sdata.", 7) != 0
16051 && strncmp (segname, ".sbss.", 6) != 0
16052 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
16053 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
16054 }
16055 return change;
16056 }
16057 else
16058 /* We are not optimizing for the $gp register. */
16059 return 1;
16060 }
16061
16062
16063 /* Return true if the given symbol should be considered local for SVR4 PIC. */
16064
16065 static bfd_boolean
16066 pic_need_relax (symbolS *sym, asection *segtype)
16067 {
16068 asection *symsec;
16069
16070 /* Handle the case of a symbol equated to another symbol. */
16071 while (symbol_equated_reloc_p (sym))
16072 {
16073 symbolS *n;
16074
16075 /* It's possible to get a loop here in a badly written program. */
16076 n = symbol_get_value_expression (sym)->X_add_symbol;
16077 if (n == sym)
16078 break;
16079 sym = n;
16080 }
16081
16082 if (symbol_section_p (sym))
16083 return TRUE;
16084
16085 symsec = S_GET_SEGMENT (sym);
16086
16087 /* This must duplicate the test in adjust_reloc_syms. */
16088 return (!bfd_is_und_section (symsec)
16089 && !bfd_is_abs_section (symsec)
16090 && !bfd_is_com_section (symsec)
16091 && !s_is_linkonce (sym, segtype)
16092 /* A global or weak symbol is treated as external. */
16093 && (!S_IS_WEAK (sym) && !S_IS_EXTERNAL (sym)));
16094 }
16095
16096
16097 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
16098 extended opcode. SEC is the section the frag is in. */
16099
16100 static int
16101 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
16102 {
16103 int type;
16104 const struct mips_int_operand *operand;
16105 offsetT val;
16106 segT symsec;
16107 fragS *sym_frag;
16108
16109 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
16110 return 0;
16111 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
16112 return 1;
16113
16114 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
16115 operand = mips16_immed_operand (type, FALSE);
16116
16117 sym_frag = symbol_get_frag (fragp->fr_symbol);
16118 val = S_GET_VALUE (fragp->fr_symbol);
16119 symsec = S_GET_SEGMENT (fragp->fr_symbol);
16120
16121 if (operand->root.type == OP_PCREL)
16122 {
16123 const struct mips_pcrel_operand *pcrel_op;
16124 addressT addr;
16125 offsetT maxtiny;
16126
16127 /* We won't have the section when we are called from
16128 mips_relax_frag. However, we will always have been called
16129 from md_estimate_size_before_relax first. If this is a
16130 branch to a different section, we mark it as such. If SEC is
16131 NULL, and the frag is not marked, then it must be a branch to
16132 the same section. */
16133 pcrel_op = (const struct mips_pcrel_operand *) operand;
16134 if (sec == NULL)
16135 {
16136 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
16137 return 1;
16138 }
16139 else
16140 {
16141 /* Must have been called from md_estimate_size_before_relax. */
16142 if (symsec != sec)
16143 {
16144 fragp->fr_subtype =
16145 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16146
16147 /* FIXME: We should support this, and let the linker
16148 catch branches and loads that are out of range. */
16149 as_bad_where (fragp->fr_file, fragp->fr_line,
16150 _("unsupported PC relative reference to different section"));
16151
16152 return 1;
16153 }
16154 if (fragp != sym_frag && sym_frag->fr_address == 0)
16155 /* Assume non-extended on the first relaxation pass.
16156 The address we have calculated will be bogus if this is
16157 a forward branch to another frag, as the forward frag
16158 will have fr_address == 0. */
16159 return 0;
16160 }
16161
16162 /* In this case, we know for sure that the symbol fragment is in
16163 the same section. If the relax_marker of the symbol fragment
16164 differs from the relax_marker of this fragment, we have not
16165 yet adjusted the symbol fragment fr_address. We want to add
16166 in STRETCH in order to get a better estimate of the address.
16167 This particularly matters because of the shift bits. */
16168 if (stretch != 0
16169 && sym_frag->relax_marker != fragp->relax_marker)
16170 {
16171 fragS *f;
16172
16173 /* Adjust stretch for any alignment frag. Note that if have
16174 been expanding the earlier code, the symbol may be
16175 defined in what appears to be an earlier frag. FIXME:
16176 This doesn't handle the fr_subtype field, which specifies
16177 a maximum number of bytes to skip when doing an
16178 alignment. */
16179 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
16180 {
16181 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
16182 {
16183 if (stretch < 0)
16184 stretch = - ((- stretch)
16185 & ~ ((1 << (int) f->fr_offset) - 1));
16186 else
16187 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
16188 if (stretch == 0)
16189 break;
16190 }
16191 }
16192 if (f != NULL)
16193 val += stretch;
16194 }
16195
16196 addr = fragp->fr_address + fragp->fr_fix;
16197
16198 /* The base address rules are complicated. The base address of
16199 a branch is the following instruction. The base address of a
16200 PC relative load or add is the instruction itself, but if it
16201 is in a delay slot (in which case it can not be extended) use
16202 the address of the instruction whose delay slot it is in. */
16203 if (pcrel_op->include_isa_bit)
16204 {
16205 addr += 2;
16206
16207 /* If we are currently assuming that this frag should be
16208 extended, then, the current address is two bytes
16209 higher. */
16210 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
16211 addr += 2;
16212
16213 /* Ignore the low bit in the target, since it will be set
16214 for a text label. */
16215 val &= -2;
16216 }
16217 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
16218 addr -= 4;
16219 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
16220 addr -= 2;
16221
16222 val -= addr & -(1 << pcrel_op->align_log2);
16223
16224 /* If any of the shifted bits are set, we must use an extended
16225 opcode. If the address depends on the size of this
16226 instruction, this can lead to a loop, so we arrange to always
16227 use an extended opcode. We only check this when we are in
16228 the main relaxation loop, when SEC is NULL. */
16229 if ((val & ((1 << operand->shift) - 1)) != 0 && sec == NULL)
16230 {
16231 fragp->fr_subtype =
16232 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16233 return 1;
16234 }
16235
16236 /* If we are about to mark a frag as extended because the value
16237 is precisely the next value above maxtiny, then there is a
16238 chance of an infinite loop as in the following code:
16239 la $4,foo
16240 .skip 1020
16241 .align 2
16242 foo:
16243 In this case when the la is extended, foo is 0x3fc bytes
16244 away, so the la can be shrunk, but then foo is 0x400 away, so
16245 the la must be extended. To avoid this loop, we mark the
16246 frag as extended if it was small, and is about to become
16247 extended with the next value above maxtiny. */
16248 maxtiny = mips_int_operand_max (operand);
16249 if (val == maxtiny + (1 << operand->shift)
16250 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
16251 && sec == NULL)
16252 {
16253 fragp->fr_subtype =
16254 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
16255 return 1;
16256 }
16257 }
16258 else if (symsec != absolute_section && sec != NULL)
16259 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
16260
16261 return !mips16_immed_in_range_p (operand, BFD_RELOC_UNUSED, val);
16262 }
16263
16264 /* Compute the length of a branch sequence, and adjust the
16265 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
16266 worst-case length is computed, with UPDATE being used to indicate
16267 whether an unconditional (-1), branch-likely (+1) or regular (0)
16268 branch is to be computed. */
16269 static int
16270 relaxed_branch_length (fragS *fragp, asection *sec, int update)
16271 {
16272 bfd_boolean toofar;
16273 int length;
16274
16275 if (fragp
16276 && S_IS_DEFINED (fragp->fr_symbol)
16277 && sec == S_GET_SEGMENT (fragp->fr_symbol))
16278 {
16279 addressT addr;
16280 offsetT val;
16281
16282 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16283
16284 addr = fragp->fr_address + fragp->fr_fix + 4;
16285
16286 val -= addr;
16287
16288 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
16289 }
16290 else if (fragp)
16291 /* If the symbol is not defined or it's in a different segment,
16292 assume the user knows what's going on and emit a short
16293 branch. */
16294 toofar = FALSE;
16295 else
16296 toofar = TRUE;
16297
16298 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
16299 fragp->fr_subtype
16300 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_AT (fragp->fr_subtype),
16301 RELAX_BRANCH_UNCOND (fragp->fr_subtype),
16302 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
16303 RELAX_BRANCH_LINK (fragp->fr_subtype),
16304 toofar);
16305
16306 length = 4;
16307 if (toofar)
16308 {
16309 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
16310 length += 8;
16311
16312 if (mips_pic != NO_PIC)
16313 {
16314 /* Additional space for PIC loading of target address. */
16315 length += 8;
16316 if (mips_opts.isa == ISA_MIPS1)
16317 /* Additional space for $at-stabilizing nop. */
16318 length += 4;
16319 }
16320
16321 /* If branch is conditional. */
16322 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
16323 length += 8;
16324 }
16325
16326 return length;
16327 }
16328
16329 /* Compute the length of a branch sequence, and adjust the
16330 RELAX_MICROMIPS_TOOFAR32 bit accordingly. If FRAGP is NULL, the
16331 worst-case length is computed, with UPDATE being used to indicate
16332 whether an unconditional (-1), or regular (0) branch is to be
16333 computed. */
16334
16335 static int
16336 relaxed_micromips_32bit_branch_length (fragS *fragp, asection *sec, int update)
16337 {
16338 bfd_boolean toofar;
16339 int length;
16340
16341 if (fragp
16342 && S_IS_DEFINED (fragp->fr_symbol)
16343 && sec == S_GET_SEGMENT (fragp->fr_symbol))
16344 {
16345 addressT addr;
16346 offsetT val;
16347
16348 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16349 /* Ignore the low bit in the target, since it will be set
16350 for a text label. */
16351 if ((val & 1) != 0)
16352 --val;
16353
16354 addr = fragp->fr_address + fragp->fr_fix + 4;
16355
16356 val -= addr;
16357
16358 toofar = val < - (0x8000 << 1) || val >= (0x8000 << 1);
16359 }
16360 else if (fragp)
16361 /* If the symbol is not defined or it's in a different segment,
16362 assume the user knows what's going on and emit a short
16363 branch. */
16364 toofar = FALSE;
16365 else
16366 toofar = TRUE;
16367
16368 if (fragp && update
16369 && toofar != RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
16370 fragp->fr_subtype = (toofar
16371 ? RELAX_MICROMIPS_MARK_TOOFAR32 (fragp->fr_subtype)
16372 : RELAX_MICROMIPS_CLEAR_TOOFAR32 (fragp->fr_subtype));
16373
16374 length = 4;
16375 if (toofar)
16376 {
16377 bfd_boolean compact_known = fragp != NULL;
16378 bfd_boolean compact = FALSE;
16379 bfd_boolean uncond;
16380
16381 if (compact_known)
16382 compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
16383 if (fragp)
16384 uncond = RELAX_MICROMIPS_UNCOND (fragp->fr_subtype);
16385 else
16386 uncond = update < 0;
16387
16388 /* If label is out of range, we turn branch <br>:
16389
16390 <br> label # 4 bytes
16391 0:
16392
16393 into:
16394
16395 j label # 4 bytes
16396 nop # 2 bytes if compact && !PIC
16397 0:
16398 */
16399 if (mips_pic == NO_PIC && (!compact_known || compact))
16400 length += 2;
16401
16402 /* If assembling PIC code, we further turn:
16403
16404 j label # 4 bytes
16405
16406 into:
16407
16408 lw/ld at, %got(label)(gp) # 4 bytes
16409 d/addiu at, %lo(label) # 4 bytes
16410 jr/c at # 2 bytes
16411 */
16412 if (mips_pic != NO_PIC)
16413 length += 6;
16414
16415 /* If branch <br> is conditional, we prepend negated branch <brneg>:
16416
16417 <brneg> 0f # 4 bytes
16418 nop # 2 bytes if !compact
16419 */
16420 if (!uncond)
16421 length += (compact_known && compact) ? 4 : 6;
16422 }
16423
16424 return length;
16425 }
16426
16427 /* Compute the length of a branch, and adjust the RELAX_MICROMIPS_TOOFAR16
16428 bit accordingly. */
16429
16430 static int
16431 relaxed_micromips_16bit_branch_length (fragS *fragp, asection *sec, int update)
16432 {
16433 bfd_boolean toofar;
16434
16435 if (fragp
16436 && S_IS_DEFINED (fragp->fr_symbol)
16437 && sec == S_GET_SEGMENT (fragp->fr_symbol))
16438 {
16439 addressT addr;
16440 offsetT val;
16441 int type;
16442
16443 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
16444 /* Ignore the low bit in the target, since it will be set
16445 for a text label. */
16446 if ((val & 1) != 0)
16447 --val;
16448
16449 /* Assume this is a 2-byte branch. */
16450 addr = fragp->fr_address + fragp->fr_fix + 2;
16451
16452 /* We try to avoid the infinite loop by not adding 2 more bytes for
16453 long branches. */
16454
16455 val -= addr;
16456
16457 type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
16458 if (type == 'D')
16459 toofar = val < - (0x200 << 1) || val >= (0x200 << 1);
16460 else if (type == 'E')
16461 toofar = val < - (0x40 << 1) || val >= (0x40 << 1);
16462 else
16463 abort ();
16464 }
16465 else
16466 /* If the symbol is not defined or it's in a different segment,
16467 we emit a normal 32-bit branch. */
16468 toofar = TRUE;
16469
16470 if (fragp && update
16471 && toofar != RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
16472 fragp->fr_subtype
16473 = toofar ? RELAX_MICROMIPS_MARK_TOOFAR16 (fragp->fr_subtype)
16474 : RELAX_MICROMIPS_CLEAR_TOOFAR16 (fragp->fr_subtype);
16475
16476 if (toofar)
16477 return 4;
16478
16479 return 2;
16480 }
16481
16482 /* Estimate the size of a frag before relaxing. Unless this is the
16483 mips16, we are not really relaxing here, and the final size is
16484 encoded in the subtype information. For the mips16, we have to
16485 decide whether we are using an extended opcode or not. */
16486
16487 int
16488 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
16489 {
16490 int change;
16491
16492 if (RELAX_BRANCH_P (fragp->fr_subtype))
16493 {
16494
16495 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
16496
16497 return fragp->fr_var;
16498 }
16499
16500 if (RELAX_MIPS16_P (fragp->fr_subtype))
16501 /* We don't want to modify the EXTENDED bit here; it might get us
16502 into infinite loops. We change it only in mips_relax_frag(). */
16503 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
16504
16505 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
16506 {
16507 int length = 4;
16508
16509 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
16510 length = relaxed_micromips_16bit_branch_length (fragp, segtype, FALSE);
16511 if (length == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
16512 length = relaxed_micromips_32bit_branch_length (fragp, segtype, FALSE);
16513 fragp->fr_var = length;
16514
16515 return length;
16516 }
16517
16518 if (mips_pic == NO_PIC)
16519 change = nopic_need_relax (fragp->fr_symbol, 0);
16520 else if (mips_pic == SVR4_PIC)
16521 change = pic_need_relax (fragp->fr_symbol, segtype);
16522 else if (mips_pic == VXWORKS_PIC)
16523 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
16524 change = 0;
16525 else
16526 abort ();
16527
16528 if (change)
16529 {
16530 fragp->fr_subtype |= RELAX_USE_SECOND;
16531 return -RELAX_FIRST (fragp->fr_subtype);
16532 }
16533 else
16534 return -RELAX_SECOND (fragp->fr_subtype);
16535 }
16536
16537 /* This is called to see whether a reloc against a defined symbol
16538 should be converted into a reloc against a section. */
16539
16540 int
16541 mips_fix_adjustable (fixS *fixp)
16542 {
16543 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
16544 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
16545 return 0;
16546
16547 if (fixp->fx_addsy == NULL)
16548 return 1;
16549
16550 /* If symbol SYM is in a mergeable section, relocations of the form
16551 SYM + 0 can usually be made section-relative. The mergeable data
16552 is then identified by the section offset rather than by the symbol.
16553
16554 However, if we're generating REL LO16 relocations, the offset is split
16555 between the LO16 and parterning high part relocation. The linker will
16556 need to recalculate the complete offset in order to correctly identify
16557 the merge data.
16558
16559 The linker has traditionally not looked for the parterning high part
16560 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
16561 placed anywhere. Rather than break backwards compatibility by changing
16562 this, it seems better not to force the issue, and instead keep the
16563 original symbol. This will work with either linker behavior. */
16564 if ((lo16_reloc_p (fixp->fx_r_type)
16565 || reloc_needs_lo_p (fixp->fx_r_type))
16566 && HAVE_IN_PLACE_ADDENDS
16567 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
16568 return 0;
16569
16570 /* There is no place to store an in-place offset for JALR relocations.
16571 Likewise an in-range offset of limited PC-relative relocations may
16572 overflow the in-place relocatable field if recalculated against the
16573 start address of the symbol's containing section. */
16574 if (HAVE_IN_PLACE_ADDENDS
16575 && (limited_pcrel_reloc_p (fixp->fx_r_type)
16576 || jalr_reloc_p (fixp->fx_r_type)))
16577 return 0;
16578
16579 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
16580 to a floating-point stub. The same is true for non-R_MIPS16_26
16581 relocations against MIPS16 functions; in this case, the stub becomes
16582 the function's canonical address.
16583
16584 Floating-point stubs are stored in unique .mips16.call.* or
16585 .mips16.fn.* sections. If a stub T for function F is in section S,
16586 the first relocation in section S must be against F; this is how the
16587 linker determines the target function. All relocations that might
16588 resolve to T must also be against F. We therefore have the following
16589 restrictions, which are given in an intentionally-redundant way:
16590
16591 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
16592 symbols.
16593
16594 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
16595 if that stub might be used.
16596
16597 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
16598 symbols.
16599
16600 4. We cannot reduce a stub's relocations against MIPS16 symbols if
16601 that stub might be used.
16602
16603 There is a further restriction:
16604
16605 5. We cannot reduce jump relocations (R_MIPS_26, R_MIPS16_26 or
16606 R_MICROMIPS_26_S1) against MIPS16 or microMIPS symbols on
16607 targets with in-place addends; the relocation field cannot
16608 encode the low bit.
16609
16610 For simplicity, we deal with (3)-(4) by not reducing _any_ relocation
16611 against a MIPS16 symbol. We deal with (5) by by not reducing any
16612 such relocations on REL targets.
16613
16614 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
16615 relocation against some symbol R, no relocation against R may be
16616 reduced. (Note that this deals with (2) as well as (1) because
16617 relocations against global symbols will never be reduced on ELF
16618 targets.) This approach is a little simpler than trying to detect
16619 stub sections, and gives the "all or nothing" per-symbol consistency
16620 that we have for MIPS16 symbols. */
16621 if (fixp->fx_subsy == NULL
16622 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
16623 || *symbol_get_tc (fixp->fx_addsy)
16624 || (HAVE_IN_PLACE_ADDENDS
16625 && ELF_ST_IS_MICROMIPS (S_GET_OTHER (fixp->fx_addsy))
16626 && jmp_reloc_p (fixp->fx_r_type))))
16627 return 0;
16628
16629 return 1;
16630 }
16631
16632 /* Translate internal representation of relocation info to BFD target
16633 format. */
16634
16635 arelent **
16636 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
16637 {
16638 static arelent *retval[4];
16639 arelent *reloc;
16640 bfd_reloc_code_real_type code;
16641
16642 memset (retval, 0, sizeof(retval));
16643 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
16644 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
16645 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
16646 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
16647
16648 if (fixp->fx_pcrel)
16649 {
16650 gas_assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2
16651 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_7_PCREL_S1
16652 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_10_PCREL_S1
16653 || fixp->fx_r_type == BFD_RELOC_MICROMIPS_16_PCREL_S1
16654 || fixp->fx_r_type == BFD_RELOC_32_PCREL);
16655
16656 /* At this point, fx_addnumber is "symbol offset - pcrel address".
16657 Relocations want only the symbol offset. */
16658 reloc->addend = fixp->fx_addnumber + reloc->address;
16659 }
16660 else
16661 reloc->addend = fixp->fx_addnumber;
16662
16663 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
16664 entry to be used in the relocation's section offset. */
16665 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
16666 {
16667 reloc->address = reloc->addend;
16668 reloc->addend = 0;
16669 }
16670
16671 code = fixp->fx_r_type;
16672
16673 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
16674 if (reloc->howto == NULL)
16675 {
16676 as_bad_where (fixp->fx_file, fixp->fx_line,
16677 _("Can not represent %s relocation in this object file format"),
16678 bfd_get_reloc_code_name (code));
16679 retval[0] = NULL;
16680 }
16681
16682 return retval;
16683 }
16684
16685 /* Relax a machine dependent frag. This returns the amount by which
16686 the current size of the frag should change. */
16687
16688 int
16689 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
16690 {
16691 if (RELAX_BRANCH_P (fragp->fr_subtype))
16692 {
16693 offsetT old_var = fragp->fr_var;
16694
16695 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
16696
16697 return fragp->fr_var - old_var;
16698 }
16699
16700 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
16701 {
16702 offsetT old_var = fragp->fr_var;
16703 offsetT new_var = 4;
16704
16705 if (RELAX_MICROMIPS_TYPE (fragp->fr_subtype) != 0)
16706 new_var = relaxed_micromips_16bit_branch_length (fragp, sec, TRUE);
16707 if (new_var == 4 && RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype))
16708 new_var = relaxed_micromips_32bit_branch_length (fragp, sec, TRUE);
16709 fragp->fr_var = new_var;
16710
16711 return new_var - old_var;
16712 }
16713
16714 if (! RELAX_MIPS16_P (fragp->fr_subtype))
16715 return 0;
16716
16717 if (mips16_extended_frag (fragp, NULL, stretch))
16718 {
16719 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
16720 return 0;
16721 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
16722 return 2;
16723 }
16724 else
16725 {
16726 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
16727 return 0;
16728 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
16729 return -2;
16730 }
16731
16732 return 0;
16733 }
16734
16735 /* Convert a machine dependent frag. */
16736
16737 void
16738 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
16739 {
16740 if (RELAX_BRANCH_P (fragp->fr_subtype))
16741 {
16742 char *buf;
16743 unsigned long insn;
16744 expressionS exp;
16745 fixS *fixp;
16746
16747 buf = fragp->fr_literal + fragp->fr_fix;
16748 insn = read_insn (buf);
16749
16750 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
16751 {
16752 /* We generate a fixup instead of applying it right now
16753 because, if there are linker relaxations, we're going to
16754 need the relocations. */
16755 exp.X_op = O_symbol;
16756 exp.X_add_symbol = fragp->fr_symbol;
16757 exp.X_add_number = fragp->fr_offset;
16758
16759 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
16760 BFD_RELOC_16_PCREL_S2);
16761 fixp->fx_file = fragp->fr_file;
16762 fixp->fx_line = fragp->fr_line;
16763
16764 buf = write_insn (buf, insn);
16765 }
16766 else
16767 {
16768 int i;
16769
16770 as_warn_where (fragp->fr_file, fragp->fr_line,
16771 _("Relaxed out-of-range branch into a jump"));
16772
16773 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
16774 goto uncond;
16775
16776 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
16777 {
16778 /* Reverse the branch. */
16779 switch ((insn >> 28) & 0xf)
16780 {
16781 case 4:
16782 /* bc[0-3][tf]l? instructions can have the condition
16783 reversed by tweaking a single TF bit, and their
16784 opcodes all have 0x4???????. */
16785 gas_assert ((insn & 0xf3e00000) == 0x41000000);
16786 insn ^= 0x00010000;
16787 break;
16788
16789 case 0:
16790 /* bltz 0x04000000 bgez 0x04010000
16791 bltzal 0x04100000 bgezal 0x04110000 */
16792 gas_assert ((insn & 0xfc0e0000) == 0x04000000);
16793 insn ^= 0x00010000;
16794 break;
16795
16796 case 1:
16797 /* beq 0x10000000 bne 0x14000000
16798 blez 0x18000000 bgtz 0x1c000000 */
16799 insn ^= 0x04000000;
16800 break;
16801
16802 default:
16803 abort ();
16804 }
16805 }
16806
16807 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
16808 {
16809 /* Clear the and-link bit. */
16810 gas_assert ((insn & 0xfc1c0000) == 0x04100000);
16811
16812 /* bltzal 0x04100000 bgezal 0x04110000
16813 bltzall 0x04120000 bgezall 0x04130000 */
16814 insn &= ~0x00100000;
16815 }
16816
16817 /* Branch over the branch (if the branch was likely) or the
16818 full jump (not likely case). Compute the offset from the
16819 current instruction to branch to. */
16820 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
16821 i = 16;
16822 else
16823 {
16824 /* How many bytes in instructions we've already emitted? */
16825 i = buf - fragp->fr_literal - fragp->fr_fix;
16826 /* How many bytes in instructions from here to the end? */
16827 i = fragp->fr_var - i;
16828 }
16829 /* Convert to instruction count. */
16830 i >>= 2;
16831 /* Branch counts from the next instruction. */
16832 i--;
16833 insn |= i;
16834 /* Branch over the jump. */
16835 buf = write_insn (buf, insn);
16836
16837 /* nop */
16838 buf = write_insn (buf, 0);
16839
16840 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
16841 {
16842 /* beql $0, $0, 2f */
16843 insn = 0x50000000;
16844 /* Compute the PC offset from the current instruction to
16845 the end of the variable frag. */
16846 /* How many bytes in instructions we've already emitted? */
16847 i = buf - fragp->fr_literal - fragp->fr_fix;
16848 /* How many bytes in instructions from here to the end? */
16849 i = fragp->fr_var - i;
16850 /* Convert to instruction count. */
16851 i >>= 2;
16852 /* Don't decrement i, because we want to branch over the
16853 delay slot. */
16854 insn |= i;
16855
16856 buf = write_insn (buf, insn);
16857 buf = write_insn (buf, 0);
16858 }
16859
16860 uncond:
16861 if (mips_pic == NO_PIC)
16862 {
16863 /* j or jal. */
16864 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
16865 ? 0x0c000000 : 0x08000000);
16866 exp.X_op = O_symbol;
16867 exp.X_add_symbol = fragp->fr_symbol;
16868 exp.X_add_number = fragp->fr_offset;
16869
16870 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
16871 FALSE, BFD_RELOC_MIPS_JMP);
16872 fixp->fx_file = fragp->fr_file;
16873 fixp->fx_line = fragp->fr_line;
16874
16875 buf = write_insn (buf, insn);
16876 }
16877 else
16878 {
16879 unsigned long at = RELAX_BRANCH_AT (fragp->fr_subtype);
16880
16881 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
16882 insn = HAVE_64BIT_ADDRESSES ? 0xdf800000 : 0x8f800000;
16883 insn |= at << OP_SH_RT;
16884 exp.X_op = O_symbol;
16885 exp.X_add_symbol = fragp->fr_symbol;
16886 exp.X_add_number = fragp->fr_offset;
16887
16888 if (fragp->fr_offset)
16889 {
16890 exp.X_add_symbol = make_expr_symbol (&exp);
16891 exp.X_add_number = 0;
16892 }
16893
16894 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
16895 FALSE, BFD_RELOC_MIPS_GOT16);
16896 fixp->fx_file = fragp->fr_file;
16897 fixp->fx_line = fragp->fr_line;
16898
16899 buf = write_insn (buf, insn);
16900
16901 if (mips_opts.isa == ISA_MIPS1)
16902 /* nop */
16903 buf = write_insn (buf, 0);
16904
16905 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
16906 insn = HAVE_64BIT_ADDRESSES ? 0x64000000 : 0x24000000;
16907 insn |= at << OP_SH_RS | at << OP_SH_RT;
16908
16909 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp,
16910 FALSE, BFD_RELOC_LO16);
16911 fixp->fx_file = fragp->fr_file;
16912 fixp->fx_line = fragp->fr_line;
16913
16914 buf = write_insn (buf, insn);
16915
16916 /* j(al)r $at. */
16917 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
16918 insn = 0x0000f809;
16919 else
16920 insn = 0x00000008;
16921 insn |= at << OP_SH_RS;
16922
16923 buf = write_insn (buf, insn);
16924 }
16925 }
16926
16927 fragp->fr_fix += fragp->fr_var;
16928 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
16929 return;
16930 }
16931
16932 /* Relax microMIPS branches. */
16933 if (RELAX_MICROMIPS_P (fragp->fr_subtype))
16934 {
16935 char *buf = fragp->fr_literal + fragp->fr_fix;
16936 bfd_boolean compact = RELAX_MICROMIPS_COMPACT (fragp->fr_subtype);
16937 bfd_boolean al = RELAX_MICROMIPS_LINK (fragp->fr_subtype);
16938 int type = RELAX_MICROMIPS_TYPE (fragp->fr_subtype);
16939 bfd_boolean short_ds;
16940 unsigned long insn;
16941 expressionS exp;
16942 fixS *fixp;
16943
16944 exp.X_op = O_symbol;
16945 exp.X_add_symbol = fragp->fr_symbol;
16946 exp.X_add_number = fragp->fr_offset;
16947
16948 fragp->fr_fix += fragp->fr_var;
16949
16950 /* Handle 16-bit branches that fit or are forced to fit. */
16951 if (type != 0 && !RELAX_MICROMIPS_TOOFAR16 (fragp->fr_subtype))
16952 {
16953 /* We generate a fixup instead of applying it right now,
16954 because if there is linker relaxation, we're going to
16955 need the relocations. */
16956 if (type == 'D')
16957 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
16958 BFD_RELOC_MICROMIPS_10_PCREL_S1);
16959 else if (type == 'E')
16960 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 2, &exp, TRUE,
16961 BFD_RELOC_MICROMIPS_7_PCREL_S1);
16962 else
16963 abort ();
16964
16965 fixp->fx_file = fragp->fr_file;
16966 fixp->fx_line = fragp->fr_line;
16967
16968 /* These relocations can have an addend that won't fit in
16969 2 octets. */
16970 fixp->fx_no_overflow = 1;
16971
16972 return;
16973 }
16974
16975 /* Handle 32-bit branches that fit or are forced to fit. */
16976 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
16977 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
16978 {
16979 /* We generate a fixup instead of applying it right now,
16980 because if there is linker relaxation, we're going to
16981 need the relocations. */
16982 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, TRUE,
16983 BFD_RELOC_MICROMIPS_16_PCREL_S1);
16984 fixp->fx_file = fragp->fr_file;
16985 fixp->fx_line = fragp->fr_line;
16986
16987 if (type == 0)
16988 return;
16989 }
16990
16991 /* Relax 16-bit branches to 32-bit branches. */
16992 if (type != 0)
16993 {
16994 insn = read_compressed_insn (buf, 2);
16995
16996 if ((insn & 0xfc00) == 0xcc00) /* b16 */
16997 insn = 0x94000000; /* beq */
16998 else if ((insn & 0xdc00) == 0x8c00) /* beqz16/bnez16 */
16999 {
17000 unsigned long regno;
17001
17002 regno = (insn >> MICROMIPSOP_SH_MD) & MICROMIPSOP_MASK_MD;
17003 regno = micromips_to_32_reg_d_map [regno];
17004 insn = ((insn & 0x2000) << 16) | 0x94000000; /* beq/bne */
17005 insn |= regno << MICROMIPSOP_SH_RS;
17006 }
17007 else
17008 abort ();
17009
17010 /* Nothing else to do, just write it out. */
17011 if (!RELAX_MICROMIPS_RELAX32 (fragp->fr_subtype)
17012 || !RELAX_MICROMIPS_TOOFAR32 (fragp->fr_subtype))
17013 {
17014 buf = write_compressed_insn (buf, insn, 4);
17015 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
17016 return;
17017 }
17018 }
17019 else
17020 insn = read_compressed_insn (buf, 4);
17021
17022 /* Relax 32-bit branches to a sequence of instructions. */
17023 as_warn_where (fragp->fr_file, fragp->fr_line,
17024 _("Relaxed out-of-range branch into a jump"));
17025
17026 /* Set the short-delay-slot bit. */
17027 short_ds = al && (insn & 0x02000000) != 0;
17028
17029 if (!RELAX_MICROMIPS_UNCOND (fragp->fr_subtype))
17030 {
17031 symbolS *l;
17032
17033 /* Reverse the branch. */
17034 if ((insn & 0xfc000000) == 0x94000000 /* beq */
17035 || (insn & 0xfc000000) == 0xb4000000) /* bne */
17036 insn ^= 0x20000000;
17037 else if ((insn & 0xffe00000) == 0x40000000 /* bltz */
17038 || (insn & 0xffe00000) == 0x40400000 /* bgez */
17039 || (insn & 0xffe00000) == 0x40800000 /* blez */
17040 || (insn & 0xffe00000) == 0x40c00000 /* bgtz */
17041 || (insn & 0xffe00000) == 0x40a00000 /* bnezc */
17042 || (insn & 0xffe00000) == 0x40e00000 /* beqzc */
17043 || (insn & 0xffe00000) == 0x40200000 /* bltzal */
17044 || (insn & 0xffe00000) == 0x40600000 /* bgezal */
17045 || (insn & 0xffe00000) == 0x42200000 /* bltzals */
17046 || (insn & 0xffe00000) == 0x42600000) /* bgezals */
17047 insn ^= 0x00400000;
17048 else if ((insn & 0xffe30000) == 0x43800000 /* bc1f */
17049 || (insn & 0xffe30000) == 0x43a00000 /* bc1t */
17050 || (insn & 0xffe30000) == 0x42800000 /* bc2f */
17051 || (insn & 0xffe30000) == 0x42a00000) /* bc2t */
17052 insn ^= 0x00200000;
17053 else
17054 abort ();
17055
17056 if (al)
17057 {
17058 /* Clear the and-link and short-delay-slot bits. */
17059 gas_assert ((insn & 0xfda00000) == 0x40200000);
17060
17061 /* bltzal 0x40200000 bgezal 0x40600000 */
17062 /* bltzals 0x42200000 bgezals 0x42600000 */
17063 insn &= ~0x02200000;
17064 }
17065
17066 /* Make a label at the end for use with the branch. */
17067 l = symbol_new (micromips_label_name (), asec, fragp->fr_fix, fragp);
17068 micromips_label_inc ();
17069 S_SET_OTHER (l, ELF_ST_SET_MICROMIPS (S_GET_OTHER (l)));
17070
17071 /* Refer to it. */
17072 fixp = fix_new (fragp, buf - fragp->fr_literal, 4, l, 0, TRUE,
17073 BFD_RELOC_MICROMIPS_16_PCREL_S1);
17074 fixp->fx_file = fragp->fr_file;
17075 fixp->fx_line = fragp->fr_line;
17076
17077 /* Branch over the jump. */
17078 buf = write_compressed_insn (buf, insn, 4);
17079 if (!compact)
17080 /* nop */
17081 buf = write_compressed_insn (buf, 0x0c00, 2);
17082 }
17083
17084 if (mips_pic == NO_PIC)
17085 {
17086 unsigned long jal = short_ds ? 0x74000000 : 0xf4000000; /* jal/s */
17087
17088 /* j/jal/jals <sym> R_MICROMIPS_26_S1 */
17089 insn = al ? jal : 0xd4000000;
17090
17091 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17092 BFD_RELOC_MICROMIPS_JMP);
17093 fixp->fx_file = fragp->fr_file;
17094 fixp->fx_line = fragp->fr_line;
17095
17096 buf = write_compressed_insn (buf, insn, 4);
17097 if (compact)
17098 /* nop */
17099 buf = write_compressed_insn (buf, 0x0c00, 2);
17100 }
17101 else
17102 {
17103 unsigned long at = RELAX_MICROMIPS_AT (fragp->fr_subtype);
17104 unsigned long jalr = short_ds ? 0x45e0 : 0x45c0; /* jalr/s */
17105 unsigned long jr = compact ? 0x45a0 : 0x4580; /* jr/c */
17106
17107 /* lw/ld $at, <sym>($gp) R_MICROMIPS_GOT16 */
17108 insn = HAVE_64BIT_ADDRESSES ? 0xdc1c0000 : 0xfc1c0000;
17109 insn |= at << MICROMIPSOP_SH_RT;
17110
17111 if (exp.X_add_number)
17112 {
17113 exp.X_add_symbol = make_expr_symbol (&exp);
17114 exp.X_add_number = 0;
17115 }
17116
17117 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17118 BFD_RELOC_MICROMIPS_GOT16);
17119 fixp->fx_file = fragp->fr_file;
17120 fixp->fx_line = fragp->fr_line;
17121
17122 buf = write_compressed_insn (buf, insn, 4);
17123
17124 /* d/addiu $at, $at, <sym> R_MICROMIPS_LO16 */
17125 insn = HAVE_64BIT_ADDRESSES ? 0x5c000000 : 0x30000000;
17126 insn |= at << MICROMIPSOP_SH_RT | at << MICROMIPSOP_SH_RS;
17127
17128 fixp = fix_new_exp (fragp, buf - fragp->fr_literal, 4, &exp, FALSE,
17129 BFD_RELOC_MICROMIPS_LO16);
17130 fixp->fx_file = fragp->fr_file;
17131 fixp->fx_line = fragp->fr_line;
17132
17133 buf = write_compressed_insn (buf, insn, 4);
17134
17135 /* jr/jrc/jalr/jalrs $at */
17136 insn = al ? jalr : jr;
17137 insn |= at << MICROMIPSOP_SH_MJ;
17138
17139 buf = write_compressed_insn (buf, insn, 2);
17140 }
17141
17142 gas_assert (buf == fragp->fr_literal + fragp->fr_fix);
17143 return;
17144 }
17145
17146 if (RELAX_MIPS16_P (fragp->fr_subtype))
17147 {
17148 int type;
17149 const struct mips_int_operand *operand;
17150 offsetT val;
17151 char *buf;
17152 unsigned int user_length, length;
17153 unsigned long insn;
17154 bfd_boolean ext;
17155
17156 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
17157 operand = mips16_immed_operand (type, FALSE);
17158
17159 ext = RELAX_MIPS16_EXTENDED (fragp->fr_subtype);
17160 val = resolve_symbol_value (fragp->fr_symbol);
17161 if (operand->root.type == OP_PCREL)
17162 {
17163 const struct mips_pcrel_operand *pcrel_op;
17164 addressT addr;
17165
17166 pcrel_op = (const struct mips_pcrel_operand *) operand;
17167 addr = fragp->fr_address + fragp->fr_fix;
17168
17169 /* The rules for the base address of a PC relative reloc are
17170 complicated; see mips16_extended_frag. */
17171 if (pcrel_op->include_isa_bit)
17172 {
17173 addr += 2;
17174 if (ext)
17175 addr += 2;
17176 /* Ignore the low bit in the target, since it will be
17177 set for a text label. */
17178 val &= -2;
17179 }
17180 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
17181 addr -= 4;
17182 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
17183 addr -= 2;
17184
17185 addr &= -(1 << pcrel_op->align_log2);
17186 val -= addr;
17187
17188 /* Make sure the section winds up with the alignment we have
17189 assumed. */
17190 if (operand->shift > 0)
17191 record_alignment (asec, operand->shift);
17192 }
17193
17194 if (ext
17195 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
17196 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
17197 as_warn_where (fragp->fr_file, fragp->fr_line,
17198 _("extended instruction in delay slot"));
17199
17200 buf = fragp->fr_literal + fragp->fr_fix;
17201
17202 insn = read_compressed_insn (buf, 2);
17203 if (ext)
17204 insn |= MIPS16_EXTEND;
17205
17206 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
17207 user_length = 4;
17208 else if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
17209 user_length = 2;
17210 else
17211 user_length = 0;
17212
17213 mips16_immed (fragp->fr_file, fragp->fr_line, type,
17214 BFD_RELOC_UNUSED, val, user_length, &insn);
17215
17216 length = (ext ? 4 : 2);
17217 gas_assert (mips16_opcode_length (insn) == length);
17218 write_compressed_insn (buf, insn, length);
17219 fragp->fr_fix += length;
17220 }
17221 else
17222 {
17223 relax_substateT subtype = fragp->fr_subtype;
17224 bfd_boolean second_longer = (subtype & RELAX_SECOND_LONGER) != 0;
17225 bfd_boolean use_second = (subtype & RELAX_USE_SECOND) != 0;
17226 int first, second;
17227 fixS *fixp;
17228
17229 first = RELAX_FIRST (subtype);
17230 second = RELAX_SECOND (subtype);
17231 fixp = (fixS *) fragp->fr_opcode;
17232
17233 /* If the delay slot chosen does not match the size of the instruction,
17234 then emit a warning. */
17235 if ((!use_second && (subtype & RELAX_DELAY_SLOT_SIZE_FIRST) != 0)
17236 || (use_second && (subtype & RELAX_DELAY_SLOT_SIZE_SECOND) != 0))
17237 {
17238 relax_substateT s;
17239 const char *msg;
17240
17241 s = subtype & (RELAX_DELAY_SLOT_16BIT
17242 | RELAX_DELAY_SLOT_SIZE_FIRST
17243 | RELAX_DELAY_SLOT_SIZE_SECOND);
17244 msg = macro_warning (s);
17245 if (msg != NULL)
17246 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
17247 subtype &= ~s;
17248 }
17249
17250 /* Possibly emit a warning if we've chosen the longer option. */
17251 if (use_second == second_longer)
17252 {
17253 relax_substateT s;
17254 const char *msg;
17255
17256 s = (subtype
17257 & (RELAX_SECOND_LONGER | RELAX_NOMACRO | RELAX_DELAY_SLOT));
17258 msg = macro_warning (s);
17259 if (msg != NULL)
17260 as_warn_where (fragp->fr_file, fragp->fr_line, "%s", msg);
17261 subtype &= ~s;
17262 }
17263
17264 /* Go through all the fixups for the first sequence. Disable them
17265 (by marking them as done) if we're going to use the second
17266 sequence instead. */
17267 while (fixp
17268 && fixp->fx_frag == fragp
17269 && fixp->fx_where < fragp->fr_fix - second)
17270 {
17271 if (subtype & RELAX_USE_SECOND)
17272 fixp->fx_done = 1;
17273 fixp = fixp->fx_next;
17274 }
17275
17276 /* Go through the fixups for the second sequence. Disable them if
17277 we're going to use the first sequence, otherwise adjust their
17278 addresses to account for the relaxation. */
17279 while (fixp && fixp->fx_frag == fragp)
17280 {
17281 if (subtype & RELAX_USE_SECOND)
17282 fixp->fx_where -= first;
17283 else
17284 fixp->fx_done = 1;
17285 fixp = fixp->fx_next;
17286 }
17287
17288 /* Now modify the frag contents. */
17289 if (subtype & RELAX_USE_SECOND)
17290 {
17291 char *start;
17292
17293 start = fragp->fr_literal + fragp->fr_fix - first - second;
17294 memmove (start, start + first, second);
17295 fragp->fr_fix -= first;
17296 }
17297 else
17298 fragp->fr_fix -= second;
17299 }
17300 }
17301
17302 /* This function is called after the relocs have been generated.
17303 We've been storing mips16 text labels as odd. Here we convert them
17304 back to even for the convenience of the debugger. */
17305
17306 void
17307 mips_frob_file_after_relocs (void)
17308 {
17309 asymbol **syms;
17310 unsigned int count, i;
17311
17312 syms = bfd_get_outsymbols (stdoutput);
17313 count = bfd_get_symcount (stdoutput);
17314 for (i = 0; i < count; i++, syms++)
17315 if (ELF_ST_IS_COMPRESSED (elf_symbol (*syms)->internal_elf_sym.st_other)
17316 && ((*syms)->value & 1) != 0)
17317 {
17318 (*syms)->value &= ~1;
17319 /* If the symbol has an odd size, it was probably computed
17320 incorrectly, so adjust that as well. */
17321 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
17322 ++elf_symbol (*syms)->internal_elf_sym.st_size;
17323 }
17324 }
17325
17326 /* This function is called whenever a label is defined, including fake
17327 labels instantiated off the dot special symbol. It is used when
17328 handling branch delays; if a branch has a label, we assume we cannot
17329 move it. This also bumps the value of the symbol by 1 in compressed
17330 code. */
17331
17332 static void
17333 mips_record_label (symbolS *sym)
17334 {
17335 segment_info_type *si = seg_info (now_seg);
17336 struct insn_label_list *l;
17337
17338 if (free_insn_labels == NULL)
17339 l = (struct insn_label_list *) xmalloc (sizeof *l);
17340 else
17341 {
17342 l = free_insn_labels;
17343 free_insn_labels = l->next;
17344 }
17345
17346 l->label = sym;
17347 l->next = si->label_list;
17348 si->label_list = l;
17349 }
17350
17351 /* This function is called as tc_frob_label() whenever a label is defined
17352 and adds a DWARF-2 record we only want for true labels. */
17353
17354 void
17355 mips_define_label (symbolS *sym)
17356 {
17357 mips_record_label (sym);
17358 dwarf2_emit_label (sym);
17359 }
17360
17361 /* This function is called by tc_new_dot_label whenever a new dot symbol
17362 is defined. */
17363
17364 void
17365 mips_add_dot_label (symbolS *sym)
17366 {
17367 mips_record_label (sym);
17368 if (mips_assembling_insn && HAVE_CODE_COMPRESSION)
17369 mips_compressed_mark_label (sym);
17370 }
17371 \f
17372 /* Some special processing for a MIPS ELF file. */
17373
17374 void
17375 mips_elf_final_processing (void)
17376 {
17377 /* Write out the register information. */
17378 if (mips_abi != N64_ABI)
17379 {
17380 Elf32_RegInfo s;
17381
17382 s.ri_gprmask = mips_gprmask;
17383 s.ri_cprmask[0] = mips_cprmask[0];
17384 s.ri_cprmask[1] = mips_cprmask[1];
17385 s.ri_cprmask[2] = mips_cprmask[2];
17386 s.ri_cprmask[3] = mips_cprmask[3];
17387 /* The gp_value field is set by the MIPS ELF backend. */
17388
17389 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
17390 ((Elf32_External_RegInfo *)
17391 mips_regmask_frag));
17392 }
17393 else
17394 {
17395 Elf64_Internal_RegInfo s;
17396
17397 s.ri_gprmask = mips_gprmask;
17398 s.ri_pad = 0;
17399 s.ri_cprmask[0] = mips_cprmask[0];
17400 s.ri_cprmask[1] = mips_cprmask[1];
17401 s.ri_cprmask[2] = mips_cprmask[2];
17402 s.ri_cprmask[3] = mips_cprmask[3];
17403 /* The gp_value field is set by the MIPS ELF backend. */
17404
17405 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
17406 ((Elf64_External_RegInfo *)
17407 mips_regmask_frag));
17408 }
17409
17410 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
17411 sort of BFD interface for this. */
17412 if (mips_any_noreorder)
17413 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
17414 if (mips_pic != NO_PIC)
17415 {
17416 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
17417 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
17418 }
17419 if (mips_abicalls)
17420 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
17421
17422 /* Set MIPS ELF flags for ASEs. Note that not all ASEs have flags
17423 defined at present; this might need to change in future. */
17424 if (file_ase_mips16)
17425 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
17426 if (file_ase_micromips)
17427 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MICROMIPS;
17428 if (file_ase & ASE_MDMX)
17429 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
17430
17431 /* Set the MIPS ELF ABI flags. */
17432 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
17433 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
17434 else if (mips_abi == O64_ABI)
17435 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
17436 else if (mips_abi == EABI_ABI)
17437 {
17438 if (!file_mips_gp32)
17439 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
17440 else
17441 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
17442 }
17443 else if (mips_abi == N32_ABI)
17444 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
17445
17446 /* Nothing to do for N64_ABI. */
17447
17448 if (mips_32bitmode)
17449 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
17450
17451 if (mips_flag_nan2008)
17452 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NAN2008;
17453
17454 #if 0 /* XXX FIXME */
17455 /* 32 bit code with 64 bit FP registers. */
17456 if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
17457 elf_elfheader (stdoutput)->e_flags |= ???;
17458 #endif
17459 }
17460 \f
17461 typedef struct proc {
17462 symbolS *func_sym;
17463 symbolS *func_end_sym;
17464 unsigned long reg_mask;
17465 unsigned long reg_offset;
17466 unsigned long fpreg_mask;
17467 unsigned long fpreg_offset;
17468 unsigned long frame_offset;
17469 unsigned long frame_reg;
17470 unsigned long pc_reg;
17471 } procS;
17472
17473 static procS cur_proc;
17474 static procS *cur_proc_ptr;
17475 static int numprocs;
17476
17477 /* Implement NOP_OPCODE. We encode a MIPS16 nop as "1", a microMIPS nop
17478 as "2", and a normal nop as "0". */
17479
17480 #define NOP_OPCODE_MIPS 0
17481 #define NOP_OPCODE_MIPS16 1
17482 #define NOP_OPCODE_MICROMIPS 2
17483
17484 char
17485 mips_nop_opcode (void)
17486 {
17487 if (seg_info (now_seg)->tc_segment_info_data.micromips)
17488 return NOP_OPCODE_MICROMIPS;
17489 else if (seg_info (now_seg)->tc_segment_info_data.mips16)
17490 return NOP_OPCODE_MIPS16;
17491 else
17492 return NOP_OPCODE_MIPS;
17493 }
17494
17495 /* Fill in an rs_align_code fragment. Unlike elsewhere we want to use
17496 32-bit microMIPS NOPs here (if applicable). */
17497
17498 void
17499 mips_handle_align (fragS *fragp)
17500 {
17501 char nop_opcode;
17502 char *p;
17503 int bytes, size, excess;
17504 valueT opcode;
17505
17506 if (fragp->fr_type != rs_align_code)
17507 return;
17508
17509 p = fragp->fr_literal + fragp->fr_fix;
17510 nop_opcode = *p;
17511 switch (nop_opcode)
17512 {
17513 case NOP_OPCODE_MICROMIPS:
17514 opcode = micromips_nop32_insn.insn_opcode;
17515 size = 4;
17516 break;
17517 case NOP_OPCODE_MIPS16:
17518 opcode = mips16_nop_insn.insn_opcode;
17519 size = 2;
17520 break;
17521 case NOP_OPCODE_MIPS:
17522 default:
17523 opcode = nop_insn.insn_opcode;
17524 size = 4;
17525 break;
17526 }
17527
17528 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
17529 excess = bytes % size;
17530
17531 /* Handle the leading part if we're not inserting a whole number of
17532 instructions, and make it the end of the fixed part of the frag.
17533 Try to fit in a short microMIPS NOP if applicable and possible,
17534 and use zeroes otherwise. */
17535 gas_assert (excess < 4);
17536 fragp->fr_fix += excess;
17537 switch (excess)
17538 {
17539 case 3:
17540 *p++ = '\0';
17541 /* Fall through. */
17542 case 2:
17543 if (nop_opcode == NOP_OPCODE_MICROMIPS && !mips_opts.insn32)
17544 {
17545 p = write_compressed_insn (p, micromips_nop16_insn.insn_opcode, 2);
17546 break;
17547 }
17548 *p++ = '\0';
17549 /* Fall through. */
17550 case 1:
17551 *p++ = '\0';
17552 /* Fall through. */
17553 case 0:
17554 break;
17555 }
17556
17557 md_number_to_chars (p, opcode, size);
17558 fragp->fr_var = size;
17559 }
17560
17561 static void
17562 md_obj_begin (void)
17563 {
17564 }
17565
17566 static void
17567 md_obj_end (void)
17568 {
17569 /* Check for premature end, nesting errors, etc. */
17570 if (cur_proc_ptr)
17571 as_warn (_("missing .end at end of assembly"));
17572 }
17573
17574 static long
17575 get_number (void)
17576 {
17577 int negative = 0;
17578 long val = 0;
17579
17580 if (*input_line_pointer == '-')
17581 {
17582 ++input_line_pointer;
17583 negative = 1;
17584 }
17585 if (!ISDIGIT (*input_line_pointer))
17586 as_bad (_("expected simple number"));
17587 if (input_line_pointer[0] == '0')
17588 {
17589 if (input_line_pointer[1] == 'x')
17590 {
17591 input_line_pointer += 2;
17592 while (ISXDIGIT (*input_line_pointer))
17593 {
17594 val <<= 4;
17595 val |= hex_value (*input_line_pointer++);
17596 }
17597 return negative ? -val : val;
17598 }
17599 else
17600 {
17601 ++input_line_pointer;
17602 while (ISDIGIT (*input_line_pointer))
17603 {
17604 val <<= 3;
17605 val |= *input_line_pointer++ - '0';
17606 }
17607 return negative ? -val : val;
17608 }
17609 }
17610 if (!ISDIGIT (*input_line_pointer))
17611 {
17612 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
17613 *input_line_pointer, *input_line_pointer);
17614 as_warn (_("invalid number"));
17615 return -1;
17616 }
17617 while (ISDIGIT (*input_line_pointer))
17618 {
17619 val *= 10;
17620 val += *input_line_pointer++ - '0';
17621 }
17622 return negative ? -val : val;
17623 }
17624
17625 /* The .file directive; just like the usual .file directive, but there
17626 is an initial number which is the ECOFF file index. In the non-ECOFF
17627 case .file implies DWARF-2. */
17628
17629 static void
17630 s_mips_file (int x ATTRIBUTE_UNUSED)
17631 {
17632 static int first_file_directive = 0;
17633
17634 if (ECOFF_DEBUGGING)
17635 {
17636 get_number ();
17637 s_app_file (0);
17638 }
17639 else
17640 {
17641 char *filename;
17642
17643 filename = dwarf2_directive_file (0);
17644
17645 /* Versions of GCC up to 3.1 start files with a ".file"
17646 directive even for stabs output. Make sure that this
17647 ".file" is handled. Note that you need a version of GCC
17648 after 3.1 in order to support DWARF-2 on MIPS. */
17649 if (filename != NULL && ! first_file_directive)
17650 {
17651 (void) new_logical_line (filename, -1);
17652 s_app_file_string (filename, 0);
17653 }
17654 first_file_directive = 1;
17655 }
17656 }
17657
17658 /* The .loc directive, implying DWARF-2. */
17659
17660 static void
17661 s_mips_loc (int x ATTRIBUTE_UNUSED)
17662 {
17663 if (!ECOFF_DEBUGGING)
17664 dwarf2_directive_loc (0);
17665 }
17666
17667 /* The .end directive. */
17668
17669 static void
17670 s_mips_end (int x ATTRIBUTE_UNUSED)
17671 {
17672 symbolS *p;
17673
17674 /* Following functions need their own .frame and .cprestore directives. */
17675 mips_frame_reg_valid = 0;
17676 mips_cprestore_valid = 0;
17677
17678 if (!is_end_of_line[(unsigned char) *input_line_pointer])
17679 {
17680 p = get_symbol ();
17681 demand_empty_rest_of_line ();
17682 }
17683 else
17684 p = NULL;
17685
17686 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
17687 as_warn (_(".end not in text section"));
17688
17689 if (!cur_proc_ptr)
17690 {
17691 as_warn (_(".end directive without a preceding .ent directive."));
17692 demand_empty_rest_of_line ();
17693 return;
17694 }
17695
17696 if (p != NULL)
17697 {
17698 gas_assert (S_GET_NAME (p));
17699 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
17700 as_warn (_(".end symbol does not match .ent symbol."));
17701
17702 if (debug_type == DEBUG_STABS)
17703 stabs_generate_asm_endfunc (S_GET_NAME (p),
17704 S_GET_NAME (p));
17705 }
17706 else
17707 as_warn (_(".end directive missing or unknown symbol"));
17708
17709 /* Create an expression to calculate the size of the function. */
17710 if (p && cur_proc_ptr)
17711 {
17712 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
17713 expressionS *exp = xmalloc (sizeof (expressionS));
17714
17715 obj->size = exp;
17716 exp->X_op = O_subtract;
17717 exp->X_add_symbol = symbol_temp_new_now ();
17718 exp->X_op_symbol = p;
17719 exp->X_add_number = 0;
17720
17721 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
17722 }
17723
17724 /* Generate a .pdr section. */
17725 if (!ECOFF_DEBUGGING && mips_flag_pdr)
17726 {
17727 segT saved_seg = now_seg;
17728 subsegT saved_subseg = now_subseg;
17729 expressionS exp;
17730 char *fragp;
17731
17732 #ifdef md_flush_pending_output
17733 md_flush_pending_output ();
17734 #endif
17735
17736 gas_assert (pdr_seg);
17737 subseg_set (pdr_seg, 0);
17738
17739 /* Write the symbol. */
17740 exp.X_op = O_symbol;
17741 exp.X_add_symbol = p;
17742 exp.X_add_number = 0;
17743 emit_expr (&exp, 4);
17744
17745 fragp = frag_more (7 * 4);
17746
17747 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
17748 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
17749 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
17750 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
17751 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
17752 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
17753 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
17754
17755 subseg_set (saved_seg, saved_subseg);
17756 }
17757
17758 cur_proc_ptr = NULL;
17759 }
17760
17761 /* The .aent and .ent directives. */
17762
17763 static void
17764 s_mips_ent (int aent)
17765 {
17766 symbolS *symbolP;
17767
17768 symbolP = get_symbol ();
17769 if (*input_line_pointer == ',')
17770 ++input_line_pointer;
17771 SKIP_WHITESPACE ();
17772 if (ISDIGIT (*input_line_pointer)
17773 || *input_line_pointer == '-')
17774 get_number ();
17775
17776 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
17777 as_warn (_(".ent or .aent not in text section."));
17778
17779 if (!aent && cur_proc_ptr)
17780 as_warn (_("missing .end"));
17781
17782 if (!aent)
17783 {
17784 /* This function needs its own .frame and .cprestore directives. */
17785 mips_frame_reg_valid = 0;
17786 mips_cprestore_valid = 0;
17787
17788 cur_proc_ptr = &cur_proc;
17789 memset (cur_proc_ptr, '\0', sizeof (procS));
17790
17791 cur_proc_ptr->func_sym = symbolP;
17792
17793 ++numprocs;
17794
17795 if (debug_type == DEBUG_STABS)
17796 stabs_generate_asm_func (S_GET_NAME (symbolP),
17797 S_GET_NAME (symbolP));
17798 }
17799
17800 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
17801
17802 demand_empty_rest_of_line ();
17803 }
17804
17805 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
17806 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
17807 s_mips_frame is used so that we can set the PDR information correctly.
17808 We can't use the ecoff routines because they make reference to the ecoff
17809 symbol table (in the mdebug section). */
17810
17811 static void
17812 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
17813 {
17814 if (ECOFF_DEBUGGING)
17815 s_ignore (ignore);
17816 else
17817 {
17818 long val;
17819
17820 if (cur_proc_ptr == (procS *) NULL)
17821 {
17822 as_warn (_(".frame outside of .ent"));
17823 demand_empty_rest_of_line ();
17824 return;
17825 }
17826
17827 cur_proc_ptr->frame_reg = tc_get_register (1);
17828
17829 SKIP_WHITESPACE ();
17830 if (*input_line_pointer++ != ','
17831 || get_absolute_expression_and_terminator (&val) != ',')
17832 {
17833 as_warn (_("Bad .frame directive"));
17834 --input_line_pointer;
17835 demand_empty_rest_of_line ();
17836 return;
17837 }
17838
17839 cur_proc_ptr->frame_offset = val;
17840 cur_proc_ptr->pc_reg = tc_get_register (0);
17841
17842 demand_empty_rest_of_line ();
17843 }
17844 }
17845
17846 /* The .fmask and .mask directives. If the mdebug section is present
17847 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
17848 embedded targets, s_mips_mask is used so that we can set the PDR
17849 information correctly. We can't use the ecoff routines because they
17850 make reference to the ecoff symbol table (in the mdebug section). */
17851
17852 static void
17853 s_mips_mask (int reg_type)
17854 {
17855 if (ECOFF_DEBUGGING)
17856 s_ignore (reg_type);
17857 else
17858 {
17859 long mask, off;
17860
17861 if (cur_proc_ptr == (procS *) NULL)
17862 {
17863 as_warn (_(".mask/.fmask outside of .ent"));
17864 demand_empty_rest_of_line ();
17865 return;
17866 }
17867
17868 if (get_absolute_expression_and_terminator (&mask) != ',')
17869 {
17870 as_warn (_("Bad .mask/.fmask directive"));
17871 --input_line_pointer;
17872 demand_empty_rest_of_line ();
17873 return;
17874 }
17875
17876 off = get_absolute_expression ();
17877
17878 if (reg_type == 'F')
17879 {
17880 cur_proc_ptr->fpreg_mask = mask;
17881 cur_proc_ptr->fpreg_offset = off;
17882 }
17883 else
17884 {
17885 cur_proc_ptr->reg_mask = mask;
17886 cur_proc_ptr->reg_offset = off;
17887 }
17888
17889 demand_empty_rest_of_line ();
17890 }
17891 }
17892
17893 /* A table describing all the processors gas knows about. Names are
17894 matched in the order listed.
17895
17896 To ease comparison, please keep this table in the same order as
17897 gcc's mips_cpu_info_table[]. */
17898 static const struct mips_cpu_info mips_cpu_info_table[] =
17899 {
17900 /* Entries for generic ISAs */
17901 { "mips1", MIPS_CPU_IS_ISA, 0, ISA_MIPS1, CPU_R3000 },
17902 { "mips2", MIPS_CPU_IS_ISA, 0, ISA_MIPS2, CPU_R6000 },
17903 { "mips3", MIPS_CPU_IS_ISA, 0, ISA_MIPS3, CPU_R4000 },
17904 { "mips4", MIPS_CPU_IS_ISA, 0, ISA_MIPS4, CPU_R8000 },
17905 { "mips5", MIPS_CPU_IS_ISA, 0, ISA_MIPS5, CPU_MIPS5 },
17906 { "mips32", MIPS_CPU_IS_ISA, 0, ISA_MIPS32, CPU_MIPS32 },
17907 { "mips32r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17908 { "mips64", MIPS_CPU_IS_ISA, 0, ISA_MIPS64, CPU_MIPS64 },
17909 { "mips64r2", MIPS_CPU_IS_ISA, 0, ISA_MIPS64R2, CPU_MIPS64R2 },
17910
17911 /* MIPS I */
17912 { "r3000", 0, 0, ISA_MIPS1, CPU_R3000 },
17913 { "r2000", 0, 0, ISA_MIPS1, CPU_R3000 },
17914 { "r3900", 0, 0, ISA_MIPS1, CPU_R3900 },
17915
17916 /* MIPS II */
17917 { "r6000", 0, 0, ISA_MIPS2, CPU_R6000 },
17918
17919 /* MIPS III */
17920 { "r4000", 0, 0, ISA_MIPS3, CPU_R4000 },
17921 { "r4010", 0, 0, ISA_MIPS2, CPU_R4010 },
17922 { "vr4100", 0, 0, ISA_MIPS3, CPU_VR4100 },
17923 { "vr4111", 0, 0, ISA_MIPS3, CPU_R4111 },
17924 { "vr4120", 0, 0, ISA_MIPS3, CPU_VR4120 },
17925 { "vr4130", 0, 0, ISA_MIPS3, CPU_VR4120 },
17926 { "vr4181", 0, 0, ISA_MIPS3, CPU_R4111 },
17927 { "vr4300", 0, 0, ISA_MIPS3, CPU_R4300 },
17928 { "r4400", 0, 0, ISA_MIPS3, CPU_R4400 },
17929 { "r4600", 0, 0, ISA_MIPS3, CPU_R4600 },
17930 { "orion", 0, 0, ISA_MIPS3, CPU_R4600 },
17931 { "r4650", 0, 0, ISA_MIPS3, CPU_R4650 },
17932 { "r5900", 0, 0, ISA_MIPS3, CPU_R5900 },
17933 /* ST Microelectronics Loongson 2E and 2F cores */
17934 { "loongson2e", 0, 0, ISA_MIPS3, CPU_LOONGSON_2E },
17935 { "loongson2f", 0, 0, ISA_MIPS3, CPU_LOONGSON_2F },
17936
17937 /* MIPS IV */
17938 { "r8000", 0, 0, ISA_MIPS4, CPU_R8000 },
17939 { "r10000", 0, 0, ISA_MIPS4, CPU_R10000 },
17940 { "r12000", 0, 0, ISA_MIPS4, CPU_R12000 },
17941 { "r14000", 0, 0, ISA_MIPS4, CPU_R14000 },
17942 { "r16000", 0, 0, ISA_MIPS4, CPU_R16000 },
17943 { "vr5000", 0, 0, ISA_MIPS4, CPU_R5000 },
17944 { "vr5400", 0, 0, ISA_MIPS4, CPU_VR5400 },
17945 { "vr5500", 0, 0, ISA_MIPS4, CPU_VR5500 },
17946 { "rm5200", 0, 0, ISA_MIPS4, CPU_R5000 },
17947 { "rm5230", 0, 0, ISA_MIPS4, CPU_R5000 },
17948 { "rm5231", 0, 0, ISA_MIPS4, CPU_R5000 },
17949 { "rm5261", 0, 0, ISA_MIPS4, CPU_R5000 },
17950 { "rm5721", 0, 0, ISA_MIPS4, CPU_R5000 },
17951 { "rm7000", 0, 0, ISA_MIPS4, CPU_RM7000 },
17952 { "rm9000", 0, 0, ISA_MIPS4, CPU_RM9000 },
17953
17954 /* MIPS 32 */
17955 { "4kc", 0, 0, ISA_MIPS32, CPU_MIPS32 },
17956 { "4km", 0, 0, ISA_MIPS32, CPU_MIPS32 },
17957 { "4kp", 0, 0, ISA_MIPS32, CPU_MIPS32 },
17958 { "4ksc", 0, ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
17959
17960 /* MIPS 32 Release 2 */
17961 { "4kec", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17962 { "4kem", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17963 { "4kep", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17964 { "4ksd", 0, ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
17965 { "m4k", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17966 { "m4kp", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17967 { "m14k", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
17968 { "m14kc", 0, ASE_MCU, ISA_MIPS32R2, CPU_MIPS32R2 },
17969 { "m14ke", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
17970 ISA_MIPS32R2, CPU_MIPS32R2 },
17971 { "m14kec", 0, ASE_DSP | ASE_DSPR2 | ASE_MCU,
17972 ISA_MIPS32R2, CPU_MIPS32R2 },
17973 { "24kc", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17974 { "24kf2_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17975 { "24kf", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17976 { "24kf1_1", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17977 /* Deprecated forms of the above. */
17978 { "24kfx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17979 { "24kx", 0, 0, ISA_MIPS32R2, CPU_MIPS32R2 },
17980 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
17981 { "24kec", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
17982 { "24kef2_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
17983 { "24kef", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
17984 { "24kef1_1", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
17985 /* Deprecated forms of the above. */
17986 { "24kefx", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
17987 { "24kex", 0, ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
17988 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
17989 { "34kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
17990 { "34kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
17991 { "34kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
17992 { "34kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
17993 /* Deprecated forms of the above. */
17994 { "34kfx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
17995 { "34kx", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
17996 /* 34Kn is a 34kc without DSP. */
17997 { "34kn", 0, ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
17998 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
17999 { "74kc", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18000 { "74kf2_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18001 { "74kf", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18002 { "74kf1_1", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18003 { "74kf3_2", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18004 /* Deprecated forms of the above. */
18005 { "74kfx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18006 { "74kx", 0, ASE_DSP | ASE_DSPR2, ISA_MIPS32R2, CPU_MIPS32R2 },
18007 /* 1004K cores are multiprocessor versions of the 34K. */
18008 { "1004kc", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18009 { "1004kf2_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18010 { "1004kf", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18011 { "1004kf1_1", 0, ASE_DSP | ASE_MT, ISA_MIPS32R2, CPU_MIPS32R2 },
18012
18013 /* MIPS 64 */
18014 { "5kc", 0, 0, ISA_MIPS64, CPU_MIPS64 },
18015 { "5kf", 0, 0, ISA_MIPS64, CPU_MIPS64 },
18016 { "20kc", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
18017 { "25kf", 0, ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
18018
18019 /* Broadcom SB-1 CPU core */
18020 { "sb1", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
18021 /* Broadcom SB-1A CPU core */
18022 { "sb1a", 0, ASE_MIPS3D | ASE_MDMX, ISA_MIPS64, CPU_SB1 },
18023
18024 { "loongson3a", 0, 0, ISA_MIPS64, CPU_LOONGSON_3A },
18025
18026 /* MIPS 64 Release 2 */
18027
18028 /* Cavium Networks Octeon CPU core */
18029 { "octeon", 0, 0, ISA_MIPS64R2, CPU_OCTEON },
18030 { "octeon+", 0, 0, ISA_MIPS64R2, CPU_OCTEONP },
18031 { "octeon2", 0, 0, ISA_MIPS64R2, CPU_OCTEON2 },
18032
18033 /* RMI Xlr */
18034 { "xlr", 0, 0, ISA_MIPS64, CPU_XLR },
18035
18036 /* Broadcom XLP.
18037 XLP is mostly like XLR, with the prominent exception that it is
18038 MIPS64R2 rather than MIPS64. */
18039 { "xlp", 0, 0, ISA_MIPS64R2, CPU_XLR },
18040
18041 /* End marker */
18042 { NULL, 0, 0, 0, 0 }
18043 };
18044
18045
18046 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
18047 with a final "000" replaced by "k". Ignore case.
18048
18049 Note: this function is shared between GCC and GAS. */
18050
18051 static bfd_boolean
18052 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
18053 {
18054 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
18055 given++, canonical++;
18056
18057 return ((*given == 0 && *canonical == 0)
18058 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
18059 }
18060
18061
18062 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
18063 CPU name. We've traditionally allowed a lot of variation here.
18064
18065 Note: this function is shared between GCC and GAS. */
18066
18067 static bfd_boolean
18068 mips_matching_cpu_name_p (const char *canonical, const char *given)
18069 {
18070 /* First see if the name matches exactly, or with a final "000"
18071 turned into "k". */
18072 if (mips_strict_matching_cpu_name_p (canonical, given))
18073 return TRUE;
18074
18075 /* If not, try comparing based on numerical designation alone.
18076 See if GIVEN is an unadorned number, or 'r' followed by a number. */
18077 if (TOLOWER (*given) == 'r')
18078 given++;
18079 if (!ISDIGIT (*given))
18080 return FALSE;
18081
18082 /* Skip over some well-known prefixes in the canonical name,
18083 hoping to find a number there too. */
18084 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
18085 canonical += 2;
18086 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
18087 canonical += 2;
18088 else if (TOLOWER (canonical[0]) == 'r')
18089 canonical += 1;
18090
18091 return mips_strict_matching_cpu_name_p (canonical, given);
18092 }
18093
18094
18095 /* Parse an option that takes the name of a processor as its argument.
18096 OPTION is the name of the option and CPU_STRING is the argument.
18097 Return the corresponding processor enumeration if the CPU_STRING is
18098 recognized, otherwise report an error and return null.
18099
18100 A similar function exists in GCC. */
18101
18102 static const struct mips_cpu_info *
18103 mips_parse_cpu (const char *option, const char *cpu_string)
18104 {
18105 const struct mips_cpu_info *p;
18106
18107 /* 'from-abi' selects the most compatible architecture for the given
18108 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
18109 EABIs, we have to decide whether we're using the 32-bit or 64-bit
18110 version. Look first at the -mgp options, if given, otherwise base
18111 the choice on MIPS_DEFAULT_64BIT.
18112
18113 Treat NO_ABI like the EABIs. One reason to do this is that the
18114 plain 'mips' and 'mips64' configs have 'from-abi' as their default
18115 architecture. This code picks MIPS I for 'mips' and MIPS III for
18116 'mips64', just as we did in the days before 'from-abi'. */
18117 if (strcasecmp (cpu_string, "from-abi") == 0)
18118 {
18119 if (ABI_NEEDS_32BIT_REGS (mips_abi))
18120 return mips_cpu_info_from_isa (ISA_MIPS1);
18121
18122 if (ABI_NEEDS_64BIT_REGS (mips_abi))
18123 return mips_cpu_info_from_isa (ISA_MIPS3);
18124
18125 if (file_mips_gp32 >= 0)
18126 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
18127
18128 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
18129 ? ISA_MIPS3
18130 : ISA_MIPS1);
18131 }
18132
18133 /* 'default' has traditionally been a no-op. Probably not very useful. */
18134 if (strcasecmp (cpu_string, "default") == 0)
18135 return 0;
18136
18137 for (p = mips_cpu_info_table; p->name != 0; p++)
18138 if (mips_matching_cpu_name_p (p->name, cpu_string))
18139 return p;
18140
18141 as_bad (_("Bad value (%s) for %s"), cpu_string, option);
18142 return 0;
18143 }
18144
18145 /* Return the canonical processor information for ISA (a member of the
18146 ISA_MIPS* enumeration). */
18147
18148 static const struct mips_cpu_info *
18149 mips_cpu_info_from_isa (int isa)
18150 {
18151 int i;
18152
18153 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
18154 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
18155 && isa == mips_cpu_info_table[i].isa)
18156 return (&mips_cpu_info_table[i]);
18157
18158 return NULL;
18159 }
18160
18161 static const struct mips_cpu_info *
18162 mips_cpu_info_from_arch (int arch)
18163 {
18164 int i;
18165
18166 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
18167 if (arch == mips_cpu_info_table[i].cpu)
18168 return (&mips_cpu_info_table[i]);
18169
18170 return NULL;
18171 }
18172 \f
18173 static void
18174 show (FILE *stream, const char *string, int *col_p, int *first_p)
18175 {
18176 if (*first_p)
18177 {
18178 fprintf (stream, "%24s", "");
18179 *col_p = 24;
18180 }
18181 else
18182 {
18183 fprintf (stream, ", ");
18184 *col_p += 2;
18185 }
18186
18187 if (*col_p + strlen (string) > 72)
18188 {
18189 fprintf (stream, "\n%24s", "");
18190 *col_p = 24;
18191 }
18192
18193 fprintf (stream, "%s", string);
18194 *col_p += strlen (string);
18195
18196 *first_p = 0;
18197 }
18198
18199 void
18200 md_show_usage (FILE *stream)
18201 {
18202 int column, first;
18203 size_t i;
18204
18205 fprintf (stream, _("\
18206 MIPS options:\n\
18207 -EB generate big endian output\n\
18208 -EL generate little endian output\n\
18209 -g, -g2 do not remove unneeded NOPs or swap branches\n\
18210 -G NUM allow referencing objects up to NUM bytes\n\
18211 implicitly with the gp register [default 8]\n"));
18212 fprintf (stream, _("\
18213 -mips1 generate MIPS ISA I instructions\n\
18214 -mips2 generate MIPS ISA II instructions\n\
18215 -mips3 generate MIPS ISA III instructions\n\
18216 -mips4 generate MIPS ISA IV instructions\n\
18217 -mips5 generate MIPS ISA V instructions\n\
18218 -mips32 generate MIPS32 ISA instructions\n\
18219 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
18220 -mips64 generate MIPS64 ISA instructions\n\
18221 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
18222 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
18223
18224 first = 1;
18225
18226 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
18227 show (stream, mips_cpu_info_table[i].name, &column, &first);
18228 show (stream, "from-abi", &column, &first);
18229 fputc ('\n', stream);
18230
18231 fprintf (stream, _("\
18232 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
18233 -no-mCPU don't generate code specific to CPU.\n\
18234 For -mCPU and -no-mCPU, CPU must be one of:\n"));
18235
18236 first = 1;
18237
18238 show (stream, "3900", &column, &first);
18239 show (stream, "4010", &column, &first);
18240 show (stream, "4100", &column, &first);
18241 show (stream, "4650", &column, &first);
18242 fputc ('\n', stream);
18243
18244 fprintf (stream, _("\
18245 -mips16 generate mips16 instructions\n\
18246 -no-mips16 do not generate mips16 instructions\n"));
18247 fprintf (stream, _("\
18248 -mmicromips generate microMIPS instructions\n\
18249 -mno-micromips do not generate microMIPS instructions\n"));
18250 fprintf (stream, _("\
18251 -msmartmips generate smartmips instructions\n\
18252 -mno-smartmips do not generate smartmips instructions\n"));
18253 fprintf (stream, _("\
18254 -mdsp generate DSP instructions\n\
18255 -mno-dsp do not generate DSP instructions\n"));
18256 fprintf (stream, _("\
18257 -mdspr2 generate DSP R2 instructions\n\
18258 -mno-dspr2 do not generate DSP R2 instructions\n"));
18259 fprintf (stream, _("\
18260 -mmt generate MT instructions\n\
18261 -mno-mt do not generate MT instructions\n"));
18262 fprintf (stream, _("\
18263 -mmcu generate MCU instructions\n\
18264 -mno-mcu do not generate MCU instructions\n"));
18265 fprintf (stream, _("\
18266 -mvirt generate Virtualization instructions\n\
18267 -mno-virt do not generate Virtualization instructions\n"));
18268 fprintf (stream, _("\
18269 -minsn32 only generate 32-bit microMIPS instructions\n\
18270 -mno-insn32 generate all microMIPS instructions\n"));
18271 fprintf (stream, _("\
18272 -mfix-loongson2f-jump work around Loongson2F JUMP instructions\n\
18273 -mfix-loongson2f-nop work around Loongson2F NOP errata\n\
18274 -mfix-vr4120 work around certain VR4120 errata\n\
18275 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
18276 -mfix-24k insert a nop after ERET and DERET instructions\n\
18277 -mfix-cn63xxp1 work around CN63XXP1 PREF errata\n\
18278 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
18279 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
18280 -msym32 assume all symbols have 32-bit values\n\
18281 -O0 remove unneeded NOPs, do not swap branches\n\
18282 -O remove unneeded NOPs and swap branches\n\
18283 --trap, --no-break trap exception on div by 0 and mult overflow\n\
18284 --break, --no-trap break exception on div by 0 and mult overflow\n"));
18285 fprintf (stream, _("\
18286 -mhard-float allow floating-point instructions\n\
18287 -msoft-float do not allow floating-point instructions\n\
18288 -msingle-float only allow 32-bit floating-point operations\n\
18289 -mdouble-float allow 32-bit and 64-bit floating-point operations\n\
18290 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
18291 --[no-]relax-branch [dis]allow out-of-range branches to be relaxed\n\
18292 -mnan=ENCODING select an IEEE 754 NaN encoding convention, either of:\n"));
18293
18294 first = 1;
18295
18296 show (stream, "legacy", &column, &first);
18297 show (stream, "2008", &column, &first);
18298
18299 fputc ('\n', stream);
18300
18301 fprintf (stream, _("\
18302 -KPIC, -call_shared generate SVR4 position independent code\n\
18303 -call_nonpic generate non-PIC code that can operate with DSOs\n\
18304 -mvxworks-pic generate VxWorks position independent code\n\
18305 -non_shared do not generate code that can operate with DSOs\n\
18306 -xgot assume a 32 bit GOT\n\
18307 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
18308 -mshared, -mno-shared disable/enable .cpload optimization for\n\
18309 position dependent (non shared) code\n\
18310 -mabi=ABI create ABI conformant object file for:\n"));
18311
18312 first = 1;
18313
18314 show (stream, "32", &column, &first);
18315 show (stream, "o64", &column, &first);
18316 show (stream, "n32", &column, &first);
18317 show (stream, "64", &column, &first);
18318 show (stream, "eabi", &column, &first);
18319
18320 fputc ('\n', stream);
18321
18322 fprintf (stream, _("\
18323 -32 create o32 ABI object file (default)\n\
18324 -n32 create n32 ABI object file\n\
18325 -64 create 64 ABI object file\n"));
18326 }
18327
18328 #ifdef TE_IRIX
18329 enum dwarf2_format
18330 mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
18331 {
18332 if (HAVE_64BIT_SYMBOLS)
18333 return dwarf2_format_64bit_irix;
18334 else
18335 return dwarf2_format_32bit;
18336 }
18337 #endif
18338
18339 int
18340 mips_dwarf2_addr_size (void)
18341 {
18342 if (HAVE_64BIT_OBJECTS)
18343 return 8;
18344 else
18345 return 4;
18346 }
18347
18348 /* Standard calling conventions leave the CFA at SP on entry. */
18349 void
18350 mips_cfi_frame_initial_instructions (void)
18351 {
18352 cfi_add_CFA_def_cfa_register (SP);
18353 }
18354
18355 int
18356 tc_mips_regname_to_dw2regnum (char *regname)
18357 {
18358 unsigned int regnum = -1;
18359 unsigned int reg;
18360
18361 if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
18362 regnum = reg;
18363
18364 return regnum;
18365 }