/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 Free Software Foundation, Inc.
4 Contributed by the OSF and Ralph Campbell.
5 Written by Keith Knowles and Ralph Campbell, working independently.
6 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
7 Support.
8
9 This file is part of GAS.
10
11 GAS is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3, or (at your option)
14 any later version.
15
16 GAS is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GAS; see the file COPYING. If not, write to the Free
23 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
24 02110-1301, USA. */
25
26 #include "as.h"
27 #include "config.h"
28 #include "subsegs.h"
29 #include "safe-ctype.h"
30
31 #include "opcode/mips.h"
32 #include "itbl-ops.h"
33 #include "dwarf2dbg.h"
34 #include "dw2gencfi.h"
35
36 #ifdef DEBUG
37 #define DBG(x) printf x
38 #else
39 #define DBG(x)
40 #endif
41
42 #ifdef OBJ_MAYBE_ELF
43 /* Clean up namespace so we can include obj-elf.h too. */
44 static int mips_output_flavor (void);
45 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
46 #undef OBJ_PROCESS_STAB
47 #undef OUTPUT_FLAVOR
48 #undef S_GET_ALIGN
49 #undef S_GET_SIZE
50 #undef S_SET_ALIGN
51 #undef S_SET_SIZE
52 #undef obj_frob_file
53 #undef obj_frob_file_after_relocs
54 #undef obj_frob_symbol
55 #undef obj_pop_insert
56 #undef obj_sec_sym_ok_for_reloc
57 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
58
59 #include "obj-elf.h"
60 /* Fix any of them that we actually care about. */
61 #undef OUTPUT_FLAVOR
62 #define OUTPUT_FLAVOR mips_output_flavor()
63 #endif
64
65 #if defined (OBJ_ELF)
66 #include "elf/mips.h"
67 #endif
68
69 #ifndef ECOFF_DEBUGGING
70 #define NO_ECOFF_DEBUGGING
71 #define ECOFF_DEBUGGING 0
72 #endif
73
74 int mips_flag_mdebug = -1;
75
76 /* Control generation of .pdr sections. Off by default on IRIX: the native
77 linker doesn't know about and discards them, but relocations against them
78 remain, leading to rld crashes. */
79 #ifdef TE_IRIX
80 int mips_flag_pdr = FALSE;
81 #else
82 int mips_flag_pdr = TRUE;
83 #endif
84
85 #include "ecoff.h"
86
87 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
88 static char *mips_regmask_frag;
89 #endif
90
91 #define ZERO 0
92 #define ATREG 1
93 #define TREG 24
94 #define PIC_CALL_REG 25
95 #define KT0 26
96 #define KT1 27
97 #define GP 28
98 #define SP 29
99 #define FP 30
100 #define RA 31
101
102 #define ILLEGAL_REG (32)
103
104 #define AT mips_opts.at
105
106 /* Allow override of standard little-endian ECOFF format. */
107
108 #ifndef ECOFF_LITTLE_FORMAT
109 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
110 #endif
111
112 extern int target_big_endian;
113
114 /* The name of the readonly data section. */
115 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
116 ? ".rdata" \
117 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
118 ? ".rdata" \
119 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
120 ? ".rodata" \
121 : (abort (), ""))
122
123 /* Information about an instruction, including its format, operands
124 and fixups. */
125 struct mips_cl_insn
126 {
127 /* The opcode's entry in mips_opcodes or mips16_opcodes. */
128 const struct mips_opcode *insn_mo;
129
130 /* True if this is a mips16 instruction and if we want the extended
131 form of INSN_MO. */
132 bfd_boolean use_extend;
133
134 /* The 16-bit extension instruction to use when USE_EXTEND is true. */
135 unsigned short extend;
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. */
139 unsigned long insn_opcode;
140
141 /* The frag that contains the instruction. */
142 struct frag *frag;
143
144 /* The offset into FRAG of the first instruction byte. */
145 long where;
146
147 /* The relocs associated with the instruction, if any. */
148 fixS *fixp[3];
149
150 /* True if this entry cannot be moved from its current position. */
151 unsigned int fixed_p : 1;
152
153 /* True if this instruction occurred in a .set noreorder block. */
154 unsigned int noreorder_p : 1;
155
156 /* True for mips16 instructions that jump to an absolute address. */
157 unsigned int mips16_absolute_jump_p : 1;
158 };
159
160 /* The ABI to use. */
161 enum mips_abi_level
162 {
163 NO_ABI = 0,
164 O32_ABI,
165 O64_ABI,
166 N32_ABI,
167 N64_ABI,
168 EABI_ABI
169 };
170
171 /* MIPS ABI we are using for this output file. */
172 static enum mips_abi_level mips_abi = NO_ABI;
173
174 /* Whether or not we have code that can call pic code. */
175 int mips_abicalls = FALSE;
176
177 /* Whether or not we have code which can be put into a shared
178 library. */
179 static bfd_boolean mips_in_shared = TRUE;
180
181 /* This is the set of options which may be modified by the .set
182 pseudo-op. We use a struct so that .set push and .set pop are more
183 reliable. */
184
185 struct mips_set_options
186 {
187 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
188 if it has not been initialized. Changed by `.set mipsN', and the
189 -mipsN command line option, and the default CPU. */
190 int isa;
191 /* Enabled Application Specific Extensions (ASEs). These are set to -1
192 if they have not been initialized. Changed by `.set <asename>', by
193 command line options, and based on the default architecture. */
194 int ase_mips3d;
195 int ase_mdmx;
196 int ase_smartmips;
197 int ase_dsp;
198 int ase_dspr2;
199 int ase_mt;
200 /* Whether we are assembling for the mips16 processor. 0 if we are
201 not, 1 if we are, and -1 if the value has not been initialized.
202 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
203 -nomips16 command line options, and the default CPU. */
204 int mips16;
205 /* Non-zero if we should not reorder instructions. Changed by `.set
206 reorder' and `.set noreorder'. */
207 int noreorder;
208 /* Non-zero if we should not permit the register designated "assembler
209 temporary" to be used in instructions. The value is the register
210 number, normally $at ($1). Changed by `.set at=REG', `.set noat'
211 (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */
212 unsigned int at;
213 /* Non-zero if we should warn when a macro instruction expands into
214 more than one machine instruction. Changed by `.set nomacro' and
215 `.set macro'. */
216 int warn_about_macros;
217 /* Non-zero if we should not move instructions. Changed by `.set
218 move', `.set volatile', `.set nomove', and `.set novolatile'. */
219 int nomove;
220 /* Non-zero if we should not optimize branches by moving the target
221 of the branch into the delay slot. Actually, we don't perform
222 this optimization anyhow. Changed by `.set bopt' and `.set
223 nobopt'. */
224 int nobopt;
225 /* Non-zero if we should not autoextend mips16 instructions.
226 Changed by `.set autoextend' and `.set noautoextend'. */
227 int noautoextend;
228 /* Restrict general purpose registers and floating point registers
229 to 32 bit. This is initially determined when -mgp32 or -mfp32
230 is passed but can changed if the assembler code uses .set mipsN. */
231 int gp32;
232 int fp32;
233 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
234 command line option, and the default CPU. */
235 int arch;
236 /* True if ".set sym32" is in effect. */
237 bfd_boolean sym32;
238 /* True if floating-point operations are not allowed. Changed by .set
239 softfloat or .set hardfloat, by command line options -msoft-float or
240 -mhard-float. The default is false. */
241 bfd_boolean soft_float;
242
243 /* True if only single-precision floating-point operations are allowed.
244 Changed by .set singlefloat or .set doublefloat, command-line options
245 -msingle-float or -mdouble-float. The default is false. */
246 bfd_boolean single_float;
247 };
248
249 /* This is the struct we use to hold the current set of options. Note
250 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
251 -1 to indicate that they have not been initialized. */
252
253 /* True if -mgp32 was passed. */
254 static int file_mips_gp32 = -1;
255
256 /* True if -mfp32 was passed. */
257 static int file_mips_fp32 = -1;
258
259 /* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */
260 static int file_mips_soft_float = 0;
261
262 /* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */
263 static int file_mips_single_float = 0;
264
265 static struct mips_set_options mips_opts =
266 {
267 /* isa */ ISA_UNKNOWN, /* ase_mips3d */ -1, /* ase_mdmx */ -1,
268 /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1,
269 /* mips16 */ -1, /* noreorder */ 0, /* at */ ATREG,
270 /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0,
271 /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN,
272 /* sym32 */ FALSE, /* soft_float */ FALSE, /* single_float */ FALSE
273 };
274
275 /* These variables are filled in with the masks of registers used.
276 The object format code reads them and puts them in the appropriate
277 place. */
278 unsigned long mips_gprmask;
279 unsigned long mips_cprmask[4];
280
281 /* MIPS ISA we are using for this output file. */
282 static int file_mips_isa = ISA_UNKNOWN;
283
284 /* True if -mips16 was passed or implied by arguments passed on the
285 command line (e.g., by -march). */
286 static int file_ase_mips16;
287
288 #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \
289 || mips_opts.isa == ISA_MIPS32R2 \
290 || mips_opts.isa == ISA_MIPS64 \
291 || mips_opts.isa == ISA_MIPS64R2)
292
293 /* True if -mips3d was passed or implied by arguments passed on the
294 command line (e.g., by -march). */
295 static int file_ase_mips3d;
296
297 /* True if -mdmx was passed or implied by arguments passed on the
298 command line (e.g., by -march). */
299 static int file_ase_mdmx;
300
301 /* True if -msmartmips was passed or implied by arguments passed on the
302 command line (e.g., by -march). */
303 static int file_ase_smartmips;
304
305 #define ISA_SUPPORTS_SMARTMIPS (mips_opts.isa == ISA_MIPS32 \
306 || mips_opts.isa == ISA_MIPS32R2)
307
308 /* True if -mdsp was passed or implied by arguments passed on the
309 command line (e.g., by -march). */
310 static int file_ase_dsp;
311
312 #define ISA_SUPPORTS_DSP_ASE (mips_opts.isa == ISA_MIPS32R2 \
313 || mips_opts.isa == ISA_MIPS64R2)
314
315 #define ISA_SUPPORTS_DSP64_ASE (mips_opts.isa == ISA_MIPS64R2)
316
317 /* True if -mdspr2 was passed or implied by arguments passed on the
318 command line (e.g., by -march). */
319 static int file_ase_dspr2;
320
321 #define ISA_SUPPORTS_DSPR2_ASE (mips_opts.isa == ISA_MIPS32R2 \
322 || mips_opts.isa == ISA_MIPS64R2)
323
324 /* True if -mmt was passed or implied by arguments passed on the
325 command line (e.g., by -march). */
326 static int file_ase_mt;
327
328 #define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2 \
329 || mips_opts.isa == ISA_MIPS64R2)
330
331 /* The argument of the -march= flag. The architecture we are assembling. */
332 static int file_mips_arch = CPU_UNKNOWN;
333 static const char *mips_arch_string;
334
335 /* The argument of the -mtune= flag. The architecture for which we
336 are optimizing. */
337 static int mips_tune = CPU_UNKNOWN;
338 static const char *mips_tune_string;
339
340 /* True when generating 32-bit code for a 64-bit processor. */
341 static int mips_32bitmode = 0;
342
343 /* True if the given ABI requires 32-bit registers. */
344 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
345
346 /* Likewise 64-bit registers. */
347 #define ABI_NEEDS_64BIT_REGS(ABI) \
348 ((ABI) == N32_ABI \
349 || (ABI) == N64_ABI \
350 || (ABI) == O64_ABI)
351
352 /* Return true if ISA supports 64 bit wide gp registers. */
353 #define ISA_HAS_64BIT_REGS(ISA) \
354 ((ISA) == ISA_MIPS3 \
355 || (ISA) == ISA_MIPS4 \
356 || (ISA) == ISA_MIPS5 \
357 || (ISA) == ISA_MIPS64 \
358 || (ISA) == ISA_MIPS64R2)
359
360 /* Return true if ISA supports 64 bit wide float registers. */
361 #define ISA_HAS_64BIT_FPRS(ISA) \
362 ((ISA) == ISA_MIPS3 \
363 || (ISA) == ISA_MIPS4 \
364 || (ISA) == ISA_MIPS5 \
365 || (ISA) == ISA_MIPS32R2 \
366 || (ISA) == ISA_MIPS64 \
367 || (ISA) == ISA_MIPS64R2)
368
369 /* Return true if ISA supports 64-bit right rotate (dror et al.)
370 instructions. */
371 #define ISA_HAS_DROR(ISA) \
372 ((ISA) == ISA_MIPS64R2)
373
374 /* Return true if ISA supports 32-bit right rotate (ror et al.)
375 instructions. */
376 #define ISA_HAS_ROR(ISA) \
377 ((ISA) == ISA_MIPS32R2 \
378 || (ISA) == ISA_MIPS64R2 \
379 || mips_opts.ase_smartmips)
380
381 /* Return true if ISA supports single-precision floats in odd registers. */
382 #define ISA_HAS_ODD_SINGLE_FPR(ISA) \
383 ((ISA) == ISA_MIPS32 \
384 || (ISA) == ISA_MIPS32R2 \
385 || (ISA) == ISA_MIPS64 \
386 || (ISA) == ISA_MIPS64R2)
387
388 /* Return true if ISA supports move to/from high part of a 64-bit
389 floating-point register. */
390 #define ISA_HAS_MXHC1(ISA) \
391 ((ISA) == ISA_MIPS32R2 \
392 || (ISA) == ISA_MIPS64R2)
393
394 #define HAVE_32BIT_GPRS \
395 (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa))
396
397 #define HAVE_32BIT_FPRS \
398 (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa))
399
400 #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS)
401 #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS)
402
403 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
404
405 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
406
407 /* True if relocations are stored in-place. */
408 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
409
410 /* The ABI-derived address size. */
411 #define HAVE_64BIT_ADDRESSES \
412 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
413 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
414
415 /* The size of symbolic constants (i.e., expressions of the form
416 "SYMBOL" or "SYMBOL + OFFSET"). */
417 #define HAVE_32BIT_SYMBOLS \
418 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
419 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
420
421 /* Addresses are loaded in different ways, depending on the address size
422 in use. The n32 ABI Documentation also mandates the use of additions
423 with overflow checking, but existing implementations don't follow it. */
424 #define ADDRESS_ADD_INSN \
425 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
426
427 #define ADDRESS_ADDI_INSN \
428 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
429
430 #define ADDRESS_LOAD_INSN \
431 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
432
433 #define ADDRESS_STORE_INSN \
434 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
435
436 /* Return true if the given CPU supports the MIPS16 ASE. */
437 #define CPU_HAS_MIPS16(cpu) \
438 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
439 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
440
441 /* True if CPU has a dror instruction. */
442 #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
443
444 /* True if CPU has a ror instruction. */
445 #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
446
447 /* True if CPU has seq/sne and seqi/snei instructions. */
448 #define CPU_HAS_SEQ(CPU) ((CPU) == CPU_OCTEON)
449
450 /* True if CPU does not implement the all the coprocessor insns. For these
451 CPUs only those COP insns are accepted that are explicitly marked to be
452 available on the CPU. ISA membership for COP insns is ignored. */
453 #define NO_ISA_COP(CPU) ((CPU) == CPU_OCTEON)
454
455 /* True if mflo and mfhi can be immediately followed by instructions
456 which write to the HI and LO registers.
457
458 According to MIPS specifications, MIPS ISAs I, II, and III need
459 (at least) two instructions between the reads of HI/LO and
460 instructions which write them, and later ISAs do not. Contradicting
461 the MIPS specifications, some MIPS IV processor user manuals (e.g.
462 the UM for the NEC Vr5000) document needing the instructions between
463 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
464 MIPS64 and later ISAs to have the interlocks, plus any specific
465 earlier-ISA CPUs for which CPU documentation declares that the
466 instructions are really interlocked. */
467 #define hilo_interlocks \
468 (mips_opts.isa == ISA_MIPS32 \
469 || mips_opts.isa == ISA_MIPS32R2 \
470 || mips_opts.isa == ISA_MIPS64 \
471 || mips_opts.isa == ISA_MIPS64R2 \
472 || mips_opts.arch == CPU_R4010 \
473 || mips_opts.arch == CPU_R10000 \
474 || mips_opts.arch == CPU_R12000 \
475 || mips_opts.arch == CPU_R14000 \
476 || mips_opts.arch == CPU_R16000 \
477 || mips_opts.arch == CPU_RM7000 \
478 || mips_opts.arch == CPU_VR5500 \
479 )
480
481 /* Whether the processor uses hardware interlocks to protect reads
482 from the GPRs after they are loaded from memory, and thus does not
483 require nops to be inserted. This applies to instructions marked
484 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
485 level I. */
486 #define gpr_interlocks \
487 (mips_opts.isa != ISA_MIPS1 \
488 || mips_opts.arch == CPU_R3900)
489
490 /* Whether the processor uses hardware interlocks to avoid delays
491 required by coprocessor instructions, and thus does not require
492 nops to be inserted. This applies to instructions marked
493 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
494 between instructions marked INSN_WRITE_COND_CODE and ones marked
495 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
496 levels I, II, and III. */
497 /* Itbl support may require additional care here. */
498 #define cop_interlocks \
499 ((mips_opts.isa != ISA_MIPS1 \
500 && mips_opts.isa != ISA_MIPS2 \
501 && mips_opts.isa != ISA_MIPS3) \
502 || mips_opts.arch == CPU_R4300 \
503 )
504
505 /* Whether the processor uses hardware interlocks to protect reads
506 from coprocessor registers after they are loaded from memory, and
507 thus does not require nops to be inserted. This applies to
508 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
509 requires at MIPS ISA level I. */
510 #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
511
512 /* Is this a mfhi or mflo instruction? */
513 #define MF_HILO_INSN(PINFO) \
514 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
515
516 /* Returns true for a (non floating-point) coprocessor instruction. Reading
517 or writing the condition code is only possible on the coprocessors and
518 these insns are not marked with INSN_COP. Thus for these insns use the
519 condition-code flags. */
520 #define COP_INSN(PINFO) \
521 (PINFO != INSN_MACRO \
522 && ((PINFO) & (FP_S | FP_D)) == 0 \
523 && ((PINFO) & (INSN_COP | INSN_READ_COND_CODE | INSN_WRITE_COND_CODE)))
524
525 /* MIPS PIC level. */
526
527 enum mips_pic_level mips_pic;
528
529 /* 1 if we should generate 32 bit offsets from the $gp register in
530 SVR4_PIC mode. Currently has no meaning in other modes. */
531 static int mips_big_got = 0;
532
533 /* 1 if trap instructions should used for overflow rather than break
534 instructions. */
535 static int mips_trap = 0;
536
537 /* 1 if double width floating point constants should not be constructed
538 by assembling two single width halves into two single width floating
539 point registers which just happen to alias the double width destination
540 register. On some architectures this aliasing can be disabled by a bit
541 in the status register, and the setting of this bit cannot be determined
542 automatically at assemble time. */
543 static int mips_disable_float_construction;
544
545 /* Non-zero if any .set noreorder directives were used. */
546
547 static int mips_any_noreorder;
548
549 /* Non-zero if nops should be inserted when the register referenced in
550 an mfhi/mflo instruction is read in the next two instructions. */
551 static int mips_7000_hilo_fix;
552
553 /* The size of objects in the small data section. */
554 static unsigned int g_switch_value = 8;
555 /* Whether the -G option was used. */
556 static int g_switch_seen = 0;
557
558 #define N_RMASK 0xc4
559 #define N_VFP 0xd4
560
561 /* If we can determine in advance that GP optimization won't be
562 possible, we can skip the relaxation stuff that tries to produce
563 GP-relative references. This makes delay slot optimization work
564 better.
565
566 This function can only provide a guess, but it seems to work for
567 gcc output. It needs to guess right for gcc, otherwise gcc
568 will put what it thinks is a GP-relative instruction in a branch
569 delay slot.
570
571 I don't know if a fix is needed for the SVR4_PIC mode. I've only
572 fixed it for the non-PIC mode. KR 95/04/07 */
573 static int nopic_need_relax (symbolS *, int);
574
575 /* handle of the OPCODE hash table */
576 static struct hash_control *op_hash = NULL;
577
578 /* The opcode hash table we use for the mips16. */
579 static struct hash_control *mips16_op_hash = NULL;
580
581 /* This array holds the chars that always start a comment. If the
582 pre-processor is disabled, these aren't very useful */
583 const char comment_chars[] = "#";
584
585 /* This array holds the chars that only start a comment at the beginning of
586 a line. If the line seems to have the form '# 123 filename'
587 .line and .file directives will appear in the pre-processed output */
588 /* Note that input_file.c hand checks for '#' at the beginning of the
589 first line of the input file. This is because the compiler outputs
590 #NO_APP at the beginning of its output. */
591 /* Also note that C style comments are always supported. */
592 const char line_comment_chars[] = "#";
593
594 /* This array holds machine specific line separator characters. */
595 const char line_separator_chars[] = ";";
596
597 /* Chars that can be used to separate mant from exp in floating point nums */
598 const char EXP_CHARS[] = "eE";
599
600 /* Chars that mean this number is a floating point constant */
601 /* As in 0f12.456 */
602 /* or 0d1.2345e12 */
603 const char FLT_CHARS[] = "rRsSfFdDxXpP";
604
605 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
606 changed in read.c . Ideally it shouldn't have to know about it at all,
607 but nothing is ideal around here.
608 */
609
610 static char *insn_error;
611
612 static int auto_align = 1;
613
614 /* When outputting SVR4 PIC code, the assembler needs to know the
615 offset in the stack frame from which to restore the $gp register.
616 This is set by the .cprestore pseudo-op, and saved in this
617 variable. */
618 static offsetT mips_cprestore_offset = -1;
619
620 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
621 more optimizations, it can use a register value instead of a memory-saved
622 offset and even an other register than $gp as global pointer. */
623 static offsetT mips_cpreturn_offset = -1;
624 static int mips_cpreturn_register = -1;
625 static int mips_gp_register = GP;
626 static int mips_gprel_offset = 0;
627
628 /* Whether mips_cprestore_offset has been set in the current function
629 (or whether it has already been warned about, if not). */
630 static int mips_cprestore_valid = 0;
631
632 /* This is the register which holds the stack frame, as set by the
633 .frame pseudo-op. This is needed to implement .cprestore. */
634 static int mips_frame_reg = SP;
635
636 /* Whether mips_frame_reg has been set in the current function
637 (or whether it has already been warned about, if not). */
638 static int mips_frame_reg_valid = 0;
639
640 /* To output NOP instructions correctly, we need to keep information
641 about the previous two instructions. */
642
643 /* Whether we are optimizing. The default value of 2 means to remove
644 unneeded NOPs and swap branch instructions when possible. A value
645 of 1 means to not swap branches. A value of 0 means to always
646 insert NOPs. */
647 static int mips_optimize = 2;
648
649 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
650 equivalent to seeing no -g option at all. */
651 static int mips_debug = 0;
652
653 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
654 #define MAX_VR4130_NOPS 4
655
656 /* The maximum number of NOPs needed to fill delay slots. */
657 #define MAX_DELAY_NOPS 2
658
659 /* The maximum number of NOPs needed for any purpose. */
660 #define MAX_NOPS 4
661
662 /* A list of previous instructions, with index 0 being the most recent.
663 We need to look back MAX_NOPS instructions when filling delay slots
664 or working around processor errata. We need to look back one
665 instruction further if we're thinking about using history[0] to
666 fill a branch delay slot. */
667 static struct mips_cl_insn history[1 + MAX_NOPS];
668
669 /* Nop instructions used by emit_nop. */
670 static struct mips_cl_insn nop_insn, mips16_nop_insn;
671
672 /* The appropriate nop for the current mode. */
673 #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
674
675 /* If this is set, it points to a frag holding nop instructions which
676 were inserted before the start of a noreorder section. If those
677 nops turn out to be unnecessary, the size of the frag can be
678 decreased. */
679 static fragS *prev_nop_frag;
680
681 /* The number of nop instructions we created in prev_nop_frag. */
682 static int prev_nop_frag_holds;
683
684 /* The number of nop instructions that we know we need in
685 prev_nop_frag. */
686 static int prev_nop_frag_required;
687
688 /* The number of instructions we've seen since prev_nop_frag. */
689 static int prev_nop_frag_since;
690
691 /* For ECOFF and ELF, relocations against symbols are done in two
692 parts, with a HI relocation and a LO relocation. Each relocation
693 has only 16 bits of space to store an addend. This means that in
694 order for the linker to handle carries correctly, it must be able
695 to locate both the HI and the LO relocation. This means that the
696 relocations must appear in order in the relocation table.
697
698 In order to implement this, we keep track of each unmatched HI
699 relocation. We then sort them so that they immediately precede the
700 corresponding LO relocation. */
701
702 struct mips_hi_fixup
703 {
704 /* Next HI fixup. */
705 struct mips_hi_fixup *next;
706 /* This fixup. */
707 fixS *fixp;
708 /* The section this fixup is in. */
709 segT seg;
710 };
711
712 /* The list of unmatched HI relocs. */
713
714 static struct mips_hi_fixup *mips_hi_fixup_list;
715
716 /* The frag containing the last explicit relocation operator.
717 Null if explicit relocations have not been used. */
718
719 static fragS *prev_reloc_op_frag;
720
721 /* Map normal MIPS register numbers to mips16 register numbers. */
722
723 #define X ILLEGAL_REG
724 static const int mips32_to_16_reg_map[] =
725 {
726 X, X, 2, 3, 4, 5, 6, 7,
727 X, X, X, X, X, X, X, X,
728 0, 1, X, X, X, X, X, X,
729 X, X, X, X, X, X, X, X
730 };
731 #undef X
732
733 /* Map mips16 register numbers to normal MIPS register numbers. */
734
735 static const unsigned int mips16_to_32_reg_map[] =
736 {
737 16, 17, 2, 3, 4, 5, 6, 7
738 };
739
740 /* Classifies the kind of instructions we're interested in when
741 implementing -mfix-vr4120. */
742 enum fix_vr4120_class {
743 FIX_VR4120_MACC,
744 FIX_VR4120_DMACC,
745 FIX_VR4120_MULT,
746 FIX_VR4120_DMULT,
747 FIX_VR4120_DIV,
748 FIX_VR4120_MTHILO,
749 NUM_FIX_VR4120_CLASSES
750 };
751
752 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
753 there must be at least one other instruction between an instruction
754 of type X and an instruction of type Y. */
755 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
756
757 /* True if -mfix-vr4120 is in force. */
758 static int mips_fix_vr4120;
759
760 /* ...likewise -mfix-vr4130. */
761 static int mips_fix_vr4130;
762
763 /* We don't relax branches by default, since this causes us to expand
764 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
765 fail to compute the offset before expanding the macro to the most
766 efficient expansion. */
767
768 static int mips_relax_branch;
769 \f
770 /* The expansion of many macros depends on the type of symbol that
771 they refer to. For example, when generating position-dependent code,
772 a macro that refers to a symbol may have two different expansions,
773 one which uses GP-relative addresses and one which uses absolute
774 addresses. When generating SVR4-style PIC, a macro may have
775 different expansions for local and global symbols.
776
777 We handle these situations by generating both sequences and putting
778 them in variant frags. In position-dependent code, the first sequence
779 will be the GP-relative one and the second sequence will be the
780 absolute one. In SVR4 PIC, the first sequence will be for global
781 symbols and the second will be for local symbols.
782
783 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
784 SECOND are the lengths of the two sequences in bytes. These fields
785 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
786 the subtype has the following flags:
787
788 RELAX_USE_SECOND
789 Set if it has been decided that we should use the second
790 sequence instead of the first.
791
792 RELAX_SECOND_LONGER
793 Set in the first variant frag if the macro's second implementation
794 is longer than its first. This refers to the macro as a whole,
795 not an individual relaxation.
796
797 RELAX_NOMACRO
798 Set in the first variant frag if the macro appeared in a .set nomacro
799 block and if one alternative requires a warning but the other does not.
800
801 RELAX_DELAY_SLOT
802 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
803 delay slot.
804
805 The frag's "opcode" points to the first fixup for relaxable code.
806
807 Relaxable macros are generated using a sequence such as:
808
809 relax_start (SYMBOL);
810 ... generate first expansion ...
811 relax_switch ();
812 ... generate second expansion ...
813 relax_end ();
814
815 The code and fixups for the unwanted alternative are discarded
816 by md_convert_frag. */
817 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
818
819 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
820 #define RELAX_SECOND(X) ((X) & 0xff)
821 #define RELAX_USE_SECOND 0x10000
822 #define RELAX_SECOND_LONGER 0x20000
823 #define RELAX_NOMACRO 0x40000
824 #define RELAX_DELAY_SLOT 0x80000
825
826 /* Branch without likely bit. If label is out of range, we turn:
827
828 beq reg1, reg2, label
829 delay slot
830
831 into
832
833 bne reg1, reg2, 0f
834 nop
835 j label
836 0: delay slot
837
838 with the following opcode replacements:
839
840 beq <-> bne
841 blez <-> bgtz
842 bltz <-> bgez
843 bc1f <-> bc1t
844
845 bltzal <-> bgezal (with jal label instead of j label)
846
847 Even though keeping the delay slot instruction in the delay slot of
848 the branch would be more efficient, it would be very tricky to do
849 correctly, because we'd have to introduce a variable frag *after*
850 the delay slot instruction, and expand that instead. Let's do it
851 the easy way for now, even if the branch-not-taken case now costs
852 one additional instruction. Out-of-range branches are not supposed
853 to be common, anyway.
854
855 Branch likely. If label is out of range, we turn:
856
857 beql reg1, reg2, label
858 delay slot (annulled if branch not taken)
859
860 into
861
862 beql reg1, reg2, 1f
863 nop
864 beql $0, $0, 2f
865 nop
866 1: j[al] label
867 delay slot (executed only if branch taken)
868 2:
869
870 It would be possible to generate a shorter sequence by losing the
871 likely bit, generating something like:
872
873 bne reg1, reg2, 0f
874 nop
875 j[al] label
876 delay slot (executed only if branch taken)
877 0:
878
879 beql -> bne
880 bnel -> beq
881 blezl -> bgtz
882 bgtzl -> blez
883 bltzl -> bgez
884 bgezl -> bltz
885 bc1fl -> bc1t
886 bc1tl -> bc1f
887
888 bltzall -> bgezal (with jal label instead of j label)
889 bgezall -> bltzal (ditto)
890
891
892 but it's not clear that it would actually improve performance. */
893 #define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
894 ((relax_substateT) \
895 (0xc0000000 \
896 | ((toofar) ? 1 : 0) \
897 | ((link) ? 2 : 0) \
898 | ((likely) ? 4 : 0) \
899 | ((uncond) ? 8 : 0)))
900 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
901 #define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
902 #define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
903 #define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
904 #define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
905
906 /* For mips16 code, we use an entirely different form of relaxation.
907 mips16 supports two versions of most instructions which take
908 immediate values: a small one which takes some small value, and a
909 larger one which takes a 16 bit value. Since branches also follow
910 this pattern, relaxing these values is required.
911
912 We can assemble both mips16 and normal MIPS code in a single
913 object. Therefore, we need to support this type of relaxation at
914 the same time that we support the relaxation described above. We
915 use the high bit of the subtype field to distinguish these cases.
916
917 The information we store for this type of relaxation is the
918 argument code found in the opcode file for this relocation, whether
919 the user explicitly requested a small or extended form, and whether
920 the relocation is in a jump or jal delay slot. That tells us the
921 size of the value, and how it should be stored. We also store
922 whether the fragment is considered to be extended or not. We also
923 store whether this is known to be a branch to a different section,
924 whether we have tried to relax this frag yet, and whether we have
925 ever extended a PC relative fragment because of a shift count. */
926 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
927 (0x80000000 \
928 | ((type) & 0xff) \
929 | ((small) ? 0x100 : 0) \
930 | ((ext) ? 0x200 : 0) \
931 | ((dslot) ? 0x400 : 0) \
932 | ((jal_dslot) ? 0x800 : 0))
933 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
934 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
935 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
936 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
937 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
938 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
939 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
940 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
941 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
942 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
943 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
944 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
945
946 /* Is the given value a sign-extended 32-bit value? */
947 #define IS_SEXT_32BIT_NUM(x) \
948 (((x) &~ (offsetT) 0x7fffffff) == 0 \
949 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
950
951 /* Is the given value a sign-extended 16-bit value? */
952 #define IS_SEXT_16BIT_NUM(x) \
953 (((x) &~ (offsetT) 0x7fff) == 0 \
954 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
955
956 /* Is the given value a zero-extended 32-bit value? Or a negated one? */
957 #define IS_ZEXT_32BIT_NUM(x) \
958 (((x) &~ (offsetT) 0xffffffff) == 0 \
959 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
960
961 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
962 VALUE << SHIFT. VALUE is evaluated exactly once. */
963 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
964 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
965 | (((VALUE) & (MASK)) << (SHIFT)))
966
967 /* Extract bits MASK << SHIFT from STRUCT and shift them right
968 SHIFT places. */
969 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
970 (((STRUCT) >> (SHIFT)) & (MASK))
971
972 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
973 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
974
975 include/opcode/mips.h specifies operand fields using the macros
976 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
977 with "MIPS16OP" instead of "OP". */
978 #define INSERT_OPERAND(FIELD, INSN, VALUE) \
979 INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
980 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
981 INSERT_BITS ((INSN).insn_opcode, VALUE, \
982 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
983
984 /* Extract the operand given by FIELD from mips_cl_insn INSN. */
985 #define EXTRACT_OPERAND(FIELD, INSN) \
986 EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
987 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
988 EXTRACT_BITS ((INSN).insn_opcode, \
989 MIPS16OP_MASK_##FIELD, \
990 MIPS16OP_SH_##FIELD)
991 \f
992 /* Global variables used when generating relaxable macros. See the
993 comment above RELAX_ENCODE for more details about how relaxation
994 is used. */
995 static struct {
996 /* 0 if we're not emitting a relaxable macro.
997 1 if we're emitting the first of the two relaxation alternatives.
998 2 if we're emitting the second alternative. */
999 int sequence;
1000
1001 /* The first relaxable fixup in the current frag. (In other words,
1002 the first fixup that refers to relaxable code.) */
1003 fixS *first_fixup;
1004
1005 /* sizes[0] says how many bytes of the first alternative are stored in
1006 the current frag. Likewise sizes[1] for the second alternative. */
1007 unsigned int sizes[2];
1008
1009 /* The symbol on which the choice of sequence depends. */
1010 symbolS *symbol;
1011 } mips_relax;
1012 \f
1013 /* Global variables used to decide whether a macro needs a warning. */
1014 static struct {
1015 /* True if the macro is in a branch delay slot. */
1016 bfd_boolean delay_slot_p;
1017
1018 /* For relaxable macros, sizes[0] is the length of the first alternative
1019 in bytes and sizes[1] is the length of the second alternative.
1020 For non-relaxable macros, both elements give the length of the
1021 macro in bytes. */
1022 unsigned int sizes[2];
1023
1024 /* The first variant frag for this macro. */
1025 fragS *first_frag;
1026 } mips_macro_warning;
1027 \f
1028 /* Prototypes for static functions. */
1029
1030 #define internalError() \
1031 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
1032
1033 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
1034
1035 static void append_insn
1036 (struct mips_cl_insn *ip, expressionS *p, bfd_reloc_code_real_type *r);
1037 static void mips_no_prev_insn (void);
1038 static void mips16_macro_build
1039 (expressionS *, const char *, const char *, va_list);
1040 static void load_register (int, expressionS *, int);
1041 static void macro_start (void);
1042 static void macro_end (void);
1043 static void macro (struct mips_cl_insn * ip);
1044 static void mips16_macro (struct mips_cl_insn * ip);
1045 #ifdef LOSING_COMPILER
1046 static void macro2 (struct mips_cl_insn * ip);
1047 #endif
1048 static void mips_ip (char *str, struct mips_cl_insn * ip);
1049 static void mips16_ip (char *str, struct mips_cl_insn * ip);
1050 static void mips16_immed
1051 (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
1052 unsigned long *, bfd_boolean *, unsigned short *);
1053 static size_t my_getSmallExpression
1054 (expressionS *, bfd_reloc_code_real_type *, char *);
1055 static void my_getExpression (expressionS *, char *);
1056 static void s_align (int);
1057 static void s_change_sec (int);
1058 static void s_change_section (int);
1059 static void s_cons (int);
1060 static void s_float_cons (int);
1061 static void s_mips_globl (int);
1062 static void s_option (int);
1063 static void s_mipsset (int);
1064 static void s_abicalls (int);
1065 static void s_cpload (int);
1066 static void s_cpsetup (int);
1067 static void s_cplocal (int);
1068 static void s_cprestore (int);
1069 static void s_cpreturn (int);
1070 static void s_dtprelword (int);
1071 static void s_dtpreldword (int);
1072 static void s_gpvalue (int);
1073 static void s_gpword (int);
1074 static void s_gpdword (int);
1075 static void s_cpadd (int);
1076 static void s_insn (int);
1077 static void md_obj_begin (void);
1078 static void md_obj_end (void);
1079 static void s_mips_ent (int);
1080 static void s_mips_end (int);
1081 static void s_mips_frame (int);
1082 static void s_mips_mask (int reg_type);
1083 static void s_mips_stab (int);
1084 static void s_mips_weakext (int);
1085 static void s_mips_file (int);
1086 static void s_mips_loc (int);
1087 static bfd_boolean pic_need_relax (symbolS *, asection *);
1088 static int relaxed_branch_length (fragS *, asection *, int);
1089 static int validate_mips_insn (const struct mips_opcode *);
1090
1091 /* Table and functions used to map between CPU/ISA names, and
1092 ISA levels, and CPU numbers. */
1093
1094 struct mips_cpu_info
1095 {
1096 const char *name; /* CPU or ISA name. */
1097 int flags; /* ASEs available, or ISA flag. */
1098 int isa; /* ISA level. */
1099 int cpu; /* CPU number (default CPU if ISA). */
1100 };
1101
1102 #define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */
1103 #define MIPS_CPU_ASE_SMARTMIPS 0x0002 /* CPU implements SmartMIPS ASE */
1104 #define MIPS_CPU_ASE_DSP 0x0004 /* CPU implements DSP ASE */
1105 #define MIPS_CPU_ASE_MT 0x0008 /* CPU implements MT ASE */
1106 #define MIPS_CPU_ASE_MIPS3D 0x0010 /* CPU implements MIPS-3D ASE */
1107 #define MIPS_CPU_ASE_MDMX 0x0020 /* CPU implements MDMX ASE */
1108 #define MIPS_CPU_ASE_DSPR2 0x0040 /* CPU implements DSP R2 ASE */
1109
1110 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1111 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1112 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1113 \f
1114 /* Pseudo-op table.
1115
1116 The following pseudo-ops from the Kane and Heinrich MIPS book
1117 should be defined here, but are currently unsupported: .alias,
1118 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1119
1120 The following pseudo-ops from the Kane and Heinrich MIPS book are
1121 specific to the type of debugging information being generated, and
1122 should be defined by the object format: .aent, .begin, .bend,
1123 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1124 .vreg.
1125
1126 The following pseudo-ops from the Kane and Heinrich MIPS book are
1127 not MIPS CPU specific, but are also not specific to the object file
1128 format. This file is probably the best place to define them, but
1129 they are not currently supported: .asm0, .endr, .lab, .struct. */
1130
1131 static const pseudo_typeS mips_pseudo_table[] =
1132 {
1133 /* MIPS specific pseudo-ops. */
1134 {"option", s_option, 0},
1135 {"set", s_mipsset, 0},
1136 {"rdata", s_change_sec, 'r'},
1137 {"sdata", s_change_sec, 's'},
1138 {"livereg", s_ignore, 0},
1139 {"abicalls", s_abicalls, 0},
1140 {"cpload", s_cpload, 0},
1141 {"cpsetup", s_cpsetup, 0},
1142 {"cplocal", s_cplocal, 0},
1143 {"cprestore", s_cprestore, 0},
1144 {"cpreturn", s_cpreturn, 0},
1145 {"dtprelword", s_dtprelword, 0},
1146 {"dtpreldword", s_dtpreldword, 0},
1147 {"gpvalue", s_gpvalue, 0},
1148 {"gpword", s_gpword, 0},
1149 {"gpdword", s_gpdword, 0},
1150 {"cpadd", s_cpadd, 0},
1151 {"insn", s_insn, 0},
1152
1153 /* Relatively generic pseudo-ops that happen to be used on MIPS
1154 chips. */
1155 {"asciiz", stringer, 8 + 1},
1156 {"bss", s_change_sec, 'b'},
1157 {"err", s_err, 0},
1158 {"half", s_cons, 1},
1159 {"dword", s_cons, 3},
1160 {"weakext", s_mips_weakext, 0},
1161 {"origin", s_org, 0},
1162 {"repeat", s_rept, 0},
1163
1164 /* These pseudo-ops are defined in read.c, but must be overridden
1165 here for one reason or another. */
1166 {"align", s_align, 0},
1167 {"byte", s_cons, 0},
1168 {"data", s_change_sec, 'd'},
1169 {"double", s_float_cons, 'd'},
1170 {"float", s_float_cons, 'f'},
1171 {"globl", s_mips_globl, 0},
1172 {"global", s_mips_globl, 0},
1173 {"hword", s_cons, 1},
1174 {"int", s_cons, 2},
1175 {"long", s_cons, 2},
1176 {"octa", s_cons, 4},
1177 {"quad", s_cons, 3},
1178 {"section", s_change_section, 0},
1179 {"short", s_cons, 1},
1180 {"single", s_float_cons, 'f'},
1181 {"stabn", s_mips_stab, 'n'},
1182 {"text", s_change_sec, 't'},
1183 {"word", s_cons, 2},
1184
1185 { "extern", ecoff_directive_extern, 0},
1186
1187 { NULL, NULL, 0 },
1188 };
1189
1190 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1191 {
1192 /* These pseudo-ops should be defined by the object file format.
1193 However, a.out doesn't support them, so we have versions here. */
1194 {"aent", s_mips_ent, 1},
1195 {"bgnb", s_ignore, 0},
1196 {"end", s_mips_end, 0},
1197 {"endb", s_ignore, 0},
1198 {"ent", s_mips_ent, 0},
1199 {"file", s_mips_file, 0},
1200 {"fmask", s_mips_mask, 'F'},
1201 {"frame", s_mips_frame, 0},
1202 {"loc", s_mips_loc, 0},
1203 {"mask", s_mips_mask, 'R'},
1204 {"verstamp", s_ignore, 0},
1205 { NULL, NULL, 0 },
1206 };
1207
1208 extern void pop_insert (const pseudo_typeS *);
1209
1210 void
1211 mips_pop_insert (void)
1212 {
1213 pop_insert (mips_pseudo_table);
1214 if (! ECOFF_DEBUGGING)
1215 pop_insert (mips_nonecoff_pseudo_table);
1216 }
1217 \f
1218 /* Symbols labelling the current insn. */
1219
1220 struct insn_label_list
1221 {
1222 struct insn_label_list *next;
1223 symbolS *label;
1224 };
1225
1226 static struct insn_label_list *free_insn_labels;
1227 #define label_list tc_segment_info_data.labels
1228
1229 static void mips_clear_insn_labels (void);
1230
1231 static inline void
1232 mips_clear_insn_labels (void)
1233 {
1234 register struct insn_label_list **pl;
1235 segment_info_type *si;
1236
1237 if (now_seg)
1238 {
1239 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1240 ;
1241
1242 si = seg_info (now_seg);
1243 *pl = si->label_list;
1244 si->label_list = NULL;
1245 }
1246 }
1247
1248 \f
1249 static char *expr_end;
1250
1251 /* Expressions which appear in instructions. These are set by
1252 mips_ip. */
1253
1254 static expressionS imm_expr;
1255 static expressionS imm2_expr;
1256 static expressionS offset_expr;
1257
1258 /* Relocs associated with imm_expr and offset_expr. */
1259
1260 static bfd_reloc_code_real_type imm_reloc[3]
1261 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1262 static bfd_reloc_code_real_type offset_reloc[3]
1263 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1264
1265 /* These are set by mips16_ip if an explicit extension is used. */
1266
1267 static bfd_boolean mips16_small, mips16_ext;
1268
1269 #ifdef OBJ_ELF
1270 /* The pdr segment for per procedure frame/regmask info. Not used for
1271 ECOFF debugging. */
1272
1273 static segT pdr_seg;
1274 #endif
1275
1276 /* The default target format to use. */
1277
1278 const char *
1279 mips_target_format (void)
1280 {
1281 switch (OUTPUT_FLAVOR)
1282 {
1283 case bfd_target_ecoff_flavour:
1284 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1285 case bfd_target_coff_flavour:
1286 return "pe-mips";
1287 case bfd_target_elf_flavour:
1288 #ifdef TE_VXWORKS
1289 if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI)
1290 return (target_big_endian
1291 ? "elf32-bigmips-vxworks"
1292 : "elf32-littlemips-vxworks");
1293 #endif
1294 #ifdef TE_TMIPS
1295 /* This is traditional mips. */
1296 return (target_big_endian
1297 ? (HAVE_64BIT_OBJECTS
1298 ? "elf64-tradbigmips"
1299 : (HAVE_NEWABI
1300 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
1301 : (HAVE_64BIT_OBJECTS
1302 ? "elf64-tradlittlemips"
1303 : (HAVE_NEWABI
1304 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
1305 #else
1306 return (target_big_endian
1307 ? (HAVE_64BIT_OBJECTS
1308 ? "elf64-bigmips"
1309 : (HAVE_NEWABI
1310 ? "elf32-nbigmips" : "elf32-bigmips"))
1311 : (HAVE_64BIT_OBJECTS
1312 ? "elf64-littlemips"
1313 : (HAVE_NEWABI
1314 ? "elf32-nlittlemips" : "elf32-littlemips")));
1315 #endif
1316 default:
1317 abort ();
1318 return NULL;
1319 }
1320 }
1321
1322 /* Return the length of instruction INSN. */
1323
1324 static inline unsigned int
1325 insn_length (const struct mips_cl_insn *insn)
1326 {
1327 if (!mips_opts.mips16)
1328 return 4;
1329 return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
1330 }
1331
1332 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1333
1334 static void
1335 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1336 {
1337 size_t i;
1338
1339 insn->insn_mo = mo;
1340 insn->use_extend = FALSE;
1341 insn->extend = 0;
1342 insn->insn_opcode = mo->match;
1343 insn->frag = NULL;
1344 insn->where = 0;
1345 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1346 insn->fixp[i] = NULL;
1347 insn->fixed_p = (mips_opts.noreorder > 0);
1348 insn->noreorder_p = (mips_opts.noreorder > 0);
1349 insn->mips16_absolute_jump_p = 0;
1350 }
1351
1352 /* Record the current MIPS16 mode in now_seg. */
1353
1354 static void
1355 mips_record_mips16_mode (void)
1356 {
1357 segment_info_type *si;
1358
1359 si = seg_info (now_seg);
1360 if (si->tc_segment_info_data.mips16 != mips_opts.mips16)
1361 si->tc_segment_info_data.mips16 = mips_opts.mips16;
1362 }
1363
1364 /* Install INSN at the location specified by its "frag" and "where" fields. */
1365
1366 static void
1367 install_insn (const struct mips_cl_insn *insn)
1368 {
1369 char *f = insn->frag->fr_literal + insn->where;
1370 if (!mips_opts.mips16)
1371 md_number_to_chars (f, insn->insn_opcode, 4);
1372 else if (insn->mips16_absolute_jump_p)
1373 {
1374 md_number_to_chars (f, insn->insn_opcode >> 16, 2);
1375 md_number_to_chars (f + 2, insn->insn_opcode & 0xffff, 2);
1376 }
1377 else
1378 {
1379 if (insn->use_extend)
1380 {
1381 md_number_to_chars (f, 0xf000 | insn->extend, 2);
1382 f += 2;
1383 }
1384 md_number_to_chars (f, insn->insn_opcode, 2);
1385 }
1386 mips_record_mips16_mode ();
1387 }
1388
1389 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1390 and install the opcode in the new location. */
1391
1392 static void
1393 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
1394 {
1395 size_t i;
1396
1397 insn->frag = frag;
1398 insn->where = where;
1399 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1400 if (insn->fixp[i] != NULL)
1401 {
1402 insn->fixp[i]->fx_frag = frag;
1403 insn->fixp[i]->fx_where = where;
1404 }
1405 install_insn (insn);
1406 }
1407
1408 /* Add INSN to the end of the output. */
1409
1410 static void
1411 add_fixed_insn (struct mips_cl_insn *insn)
1412 {
1413 char *f = frag_more (insn_length (insn));
1414 move_insn (insn, frag_now, f - frag_now->fr_literal);
1415 }
1416
1417 /* Start a variant frag and move INSN to the start of the variant part,
1418 marking it as fixed. The other arguments are as for frag_var. */
1419
1420 static void
1421 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
1422 relax_substateT subtype, symbolS *symbol, offsetT offset)
1423 {
1424 frag_grow (max_chars);
1425 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
1426 insn->fixed_p = 1;
1427 frag_var (rs_machine_dependent, max_chars, var,
1428 subtype, symbol, offset, NULL);
1429 }
1430
1431 /* Insert N copies of INSN into the history buffer, starting at
1432 position FIRST. Neither FIRST nor N need to be clipped. */
1433
1434 static void
1435 insert_into_history (unsigned int first, unsigned int n,
1436 const struct mips_cl_insn *insn)
1437 {
1438 if (mips_relax.sequence != 2)
1439 {
1440 unsigned int i;
1441
1442 for (i = ARRAY_SIZE (history); i-- > first;)
1443 if (i >= first + n)
1444 history[i] = history[i - n];
1445 else
1446 history[i] = *insn;
1447 }
1448 }
1449
1450 /* Emit a nop instruction, recording it in the history buffer. */
1451
1452 static void
1453 emit_nop (void)
1454 {
1455 add_fixed_insn (NOP_INSN);
1456 insert_into_history (0, 1, NOP_INSN);
1457 }
1458
1459 /* Initialize vr4120_conflicts. There is a bit of duplication here:
1460 the idea is to make it obvious at a glance that each errata is
1461 included. */
1462
1463 static void
1464 init_vr4120_conflicts (void)
1465 {
1466 #define CONFLICT(FIRST, SECOND) \
1467 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1468
1469 /* Errata 21 - [D]DIV[U] after [D]MACC */
1470 CONFLICT (MACC, DIV);
1471 CONFLICT (DMACC, DIV);
1472
1473 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1474 CONFLICT (DMULT, DMULT);
1475 CONFLICT (DMULT, DMACC);
1476 CONFLICT (DMACC, DMULT);
1477 CONFLICT (DMACC, DMACC);
1478
1479 /* Errata 24 - MT{LO,HI} after [D]MACC */
1480 CONFLICT (MACC, MTHILO);
1481 CONFLICT (DMACC, MTHILO);
1482
1483 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1484 instruction is executed immediately after a MACC or DMACC
1485 instruction, the result of [either instruction] is incorrect." */
1486 CONFLICT (MACC, MULT);
1487 CONFLICT (MACC, DMULT);
1488 CONFLICT (DMACC, MULT);
1489 CONFLICT (DMACC, DMULT);
1490
1491 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1492 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1493 DDIV or DDIVU instruction, the result of the MACC or
1494 DMACC instruction is incorrect.". */
1495 CONFLICT (DMULT, MACC);
1496 CONFLICT (DMULT, DMACC);
1497 CONFLICT (DIV, MACC);
1498 CONFLICT (DIV, DMACC);
1499
1500 #undef CONFLICT
1501 }
1502
1503 struct regname {
1504 const char *name;
1505 unsigned int num;
1506 };
1507
1508 #define RTYPE_MASK 0x1ff00
1509 #define RTYPE_NUM 0x00100
1510 #define RTYPE_FPU 0x00200
1511 #define RTYPE_FCC 0x00400
1512 #define RTYPE_VEC 0x00800
1513 #define RTYPE_GP 0x01000
1514 #define RTYPE_CP0 0x02000
1515 #define RTYPE_PC 0x04000
1516 #define RTYPE_ACC 0x08000
1517 #define RTYPE_CCC 0x10000
1518 #define RNUM_MASK 0x000ff
1519 #define RWARN 0x80000
1520
1521 #define GENERIC_REGISTER_NUMBERS \
1522 {"$0", RTYPE_NUM | 0}, \
1523 {"$1", RTYPE_NUM | 1}, \
1524 {"$2", RTYPE_NUM | 2}, \
1525 {"$3", RTYPE_NUM | 3}, \
1526 {"$4", RTYPE_NUM | 4}, \
1527 {"$5", RTYPE_NUM | 5}, \
1528 {"$6", RTYPE_NUM | 6}, \
1529 {"$7", RTYPE_NUM | 7}, \
1530 {"$8", RTYPE_NUM | 8}, \
1531 {"$9", RTYPE_NUM | 9}, \
1532 {"$10", RTYPE_NUM | 10}, \
1533 {"$11", RTYPE_NUM | 11}, \
1534 {"$12", RTYPE_NUM | 12}, \
1535 {"$13", RTYPE_NUM | 13}, \
1536 {"$14", RTYPE_NUM | 14}, \
1537 {"$15", RTYPE_NUM | 15}, \
1538 {"$16", RTYPE_NUM | 16}, \
1539 {"$17", RTYPE_NUM | 17}, \
1540 {"$18", RTYPE_NUM | 18}, \
1541 {"$19", RTYPE_NUM | 19}, \
1542 {"$20", RTYPE_NUM | 20}, \
1543 {"$21", RTYPE_NUM | 21}, \
1544 {"$22", RTYPE_NUM | 22}, \
1545 {"$23", RTYPE_NUM | 23}, \
1546 {"$24", RTYPE_NUM | 24}, \
1547 {"$25", RTYPE_NUM | 25}, \
1548 {"$26", RTYPE_NUM | 26}, \
1549 {"$27", RTYPE_NUM | 27}, \
1550 {"$28", RTYPE_NUM | 28}, \
1551 {"$29", RTYPE_NUM | 29}, \
1552 {"$30", RTYPE_NUM | 30}, \
1553 {"$31", RTYPE_NUM | 31}
1554
1555 #define FPU_REGISTER_NAMES \
1556 {"$f0", RTYPE_FPU | 0}, \
1557 {"$f1", RTYPE_FPU | 1}, \
1558 {"$f2", RTYPE_FPU | 2}, \
1559 {"$f3", RTYPE_FPU | 3}, \
1560 {"$f4", RTYPE_FPU | 4}, \
1561 {"$f5", RTYPE_FPU | 5}, \
1562 {"$f6", RTYPE_FPU | 6}, \
1563 {"$f7", RTYPE_FPU | 7}, \
1564 {"$f8", RTYPE_FPU | 8}, \
1565 {"$f9", RTYPE_FPU | 9}, \
1566 {"$f10", RTYPE_FPU | 10}, \
1567 {"$f11", RTYPE_FPU | 11}, \
1568 {"$f12", RTYPE_FPU | 12}, \
1569 {"$f13", RTYPE_FPU | 13}, \
1570 {"$f14", RTYPE_FPU | 14}, \
1571 {"$f15", RTYPE_FPU | 15}, \
1572 {"$f16", RTYPE_FPU | 16}, \
1573 {"$f17", RTYPE_FPU | 17}, \
1574 {"$f18", RTYPE_FPU | 18}, \
1575 {"$f19", RTYPE_FPU | 19}, \
1576 {"$f20", RTYPE_FPU | 20}, \
1577 {"$f21", RTYPE_FPU | 21}, \
1578 {"$f22", RTYPE_FPU | 22}, \
1579 {"$f23", RTYPE_FPU | 23}, \
1580 {"$f24", RTYPE_FPU | 24}, \
1581 {"$f25", RTYPE_FPU | 25}, \
1582 {"$f26", RTYPE_FPU | 26}, \
1583 {"$f27", RTYPE_FPU | 27}, \
1584 {"$f28", RTYPE_FPU | 28}, \
1585 {"$f29", RTYPE_FPU | 29}, \
1586 {"$f30", RTYPE_FPU | 30}, \
1587 {"$f31", RTYPE_FPU | 31}
1588
1589 #define FPU_CONDITION_CODE_NAMES \
1590 {"$fcc0", RTYPE_FCC | 0}, \
1591 {"$fcc1", RTYPE_FCC | 1}, \
1592 {"$fcc2", RTYPE_FCC | 2}, \
1593 {"$fcc3", RTYPE_FCC | 3}, \
1594 {"$fcc4", RTYPE_FCC | 4}, \
1595 {"$fcc5", RTYPE_FCC | 5}, \
1596 {"$fcc6", RTYPE_FCC | 6}, \
1597 {"$fcc7", RTYPE_FCC | 7}
1598
1599 #define COPROC_CONDITION_CODE_NAMES \
1600 {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \
1601 {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \
1602 {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \
1603 {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \
1604 {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \
1605 {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \
1606 {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \
1607 {"$cc7", RTYPE_FCC | RTYPE_CCC | 7}
1608
1609 #define N32N64_SYMBOLIC_REGISTER_NAMES \
1610 {"$a4", RTYPE_GP | 8}, \
1611 {"$a5", RTYPE_GP | 9}, \
1612 {"$a6", RTYPE_GP | 10}, \
1613 {"$a7", RTYPE_GP | 11}, \
1614 {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \
1615 {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \
1616 {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \
1617 {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \
1618 {"$t0", RTYPE_GP | 12}, \
1619 {"$t1", RTYPE_GP | 13}, \
1620 {"$t2", RTYPE_GP | 14}, \
1621 {"$t3", RTYPE_GP | 15}
1622
1623 #define O32_SYMBOLIC_REGISTER_NAMES \
1624 {"$t0", RTYPE_GP | 8}, \
1625 {"$t1", RTYPE_GP | 9}, \
1626 {"$t2", RTYPE_GP | 10}, \
1627 {"$t3", RTYPE_GP | 11}, \
1628 {"$t4", RTYPE_GP | 12}, \
1629 {"$t5", RTYPE_GP | 13}, \
1630 {"$t6", RTYPE_GP | 14}, \
1631 {"$t7", RTYPE_GP | 15}, \
1632 {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \
1633 {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \
1634 {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \
1635 {"$ta3", RTYPE_GP | 15} /* alias for $t7 */
1636
1637 /* Remaining symbolic register names */
1638 #define SYMBOLIC_REGISTER_NAMES \
1639 {"$zero", RTYPE_GP | 0}, \
1640 {"$at", RTYPE_GP | 1}, \
1641 {"$AT", RTYPE_GP | 1}, \
1642 {"$v0", RTYPE_GP | 2}, \
1643 {"$v1", RTYPE_GP | 3}, \
1644 {"$a0", RTYPE_GP | 4}, \
1645 {"$a1", RTYPE_GP | 5}, \
1646 {"$a2", RTYPE_GP | 6}, \
1647 {"$a3", RTYPE_GP | 7}, \
1648 {"$s0", RTYPE_GP | 16}, \
1649 {"$s1", RTYPE_GP | 17}, \
1650 {"$s2", RTYPE_GP | 18}, \
1651 {"$s3", RTYPE_GP | 19}, \
1652 {"$s4", RTYPE_GP | 20}, \
1653 {"$s5", RTYPE_GP | 21}, \
1654 {"$s6", RTYPE_GP | 22}, \
1655 {"$s7", RTYPE_GP | 23}, \
1656 {"$t8", RTYPE_GP | 24}, \
1657 {"$t9", RTYPE_GP | 25}, \
1658 {"$k0", RTYPE_GP | 26}, \
1659 {"$kt0", RTYPE_GP | 26}, \
1660 {"$k1", RTYPE_GP | 27}, \
1661 {"$kt1", RTYPE_GP | 27}, \
1662 {"$gp", RTYPE_GP | 28}, \
1663 {"$sp", RTYPE_GP | 29}, \
1664 {"$s8", RTYPE_GP | 30}, \
1665 {"$fp", RTYPE_GP | 30}, \
1666 {"$ra", RTYPE_GP | 31}
1667
1668 #define MIPS16_SPECIAL_REGISTER_NAMES \
1669 {"$pc", RTYPE_PC | 0}
1670
1671 #define MDMX_VECTOR_REGISTER_NAMES \
1672 /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \
1673 /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \
1674 {"$v2", RTYPE_VEC | 2}, \
1675 {"$v3", RTYPE_VEC | 3}, \
1676 {"$v4", RTYPE_VEC | 4}, \
1677 {"$v5", RTYPE_VEC | 5}, \
1678 {"$v6", RTYPE_VEC | 6}, \
1679 {"$v7", RTYPE_VEC | 7}, \
1680 {"$v8", RTYPE_VEC | 8}, \
1681 {"$v9", RTYPE_VEC | 9}, \
1682 {"$v10", RTYPE_VEC | 10}, \
1683 {"$v11", RTYPE_VEC | 11}, \
1684 {"$v12", RTYPE_VEC | 12}, \
1685 {"$v13", RTYPE_VEC | 13}, \
1686 {"$v14", RTYPE_VEC | 14}, \
1687 {"$v15", RTYPE_VEC | 15}, \
1688 {"$v16", RTYPE_VEC | 16}, \
1689 {"$v17", RTYPE_VEC | 17}, \
1690 {"$v18", RTYPE_VEC | 18}, \
1691 {"$v19", RTYPE_VEC | 19}, \
1692 {"$v20", RTYPE_VEC | 20}, \
1693 {"$v21", RTYPE_VEC | 21}, \
1694 {"$v22", RTYPE_VEC | 22}, \
1695 {"$v23", RTYPE_VEC | 23}, \
1696 {"$v24", RTYPE_VEC | 24}, \
1697 {"$v25", RTYPE_VEC | 25}, \
1698 {"$v26", RTYPE_VEC | 26}, \
1699 {"$v27", RTYPE_VEC | 27}, \
1700 {"$v28", RTYPE_VEC | 28}, \
1701 {"$v29", RTYPE_VEC | 29}, \
1702 {"$v30", RTYPE_VEC | 30}, \
1703 {"$v31", RTYPE_VEC | 31}
1704
1705 #define MIPS_DSP_ACCUMULATOR_NAMES \
1706 {"$ac0", RTYPE_ACC | 0}, \
1707 {"$ac1", RTYPE_ACC | 1}, \
1708 {"$ac2", RTYPE_ACC | 2}, \
1709 {"$ac3", RTYPE_ACC | 3}
1710
1711 static const struct regname reg_names[] = {
1712 GENERIC_REGISTER_NUMBERS,
1713 FPU_REGISTER_NAMES,
1714 FPU_CONDITION_CODE_NAMES,
1715 COPROC_CONDITION_CODE_NAMES,
1716
1717 /* The $txx registers depends on the abi,
1718 these will be added later into the symbol table from
1719 one of the tables below once mips_abi is set after
1720 parsing of arguments from the command line. */
1721 SYMBOLIC_REGISTER_NAMES,
1722
1723 MIPS16_SPECIAL_REGISTER_NAMES,
1724 MDMX_VECTOR_REGISTER_NAMES,
1725 MIPS_DSP_ACCUMULATOR_NAMES,
1726 {0, 0}
1727 };
1728
1729 static const struct regname reg_names_o32[] = {
1730 O32_SYMBOLIC_REGISTER_NAMES,
1731 {0, 0}
1732 };
1733
1734 static const struct regname reg_names_n32n64[] = {
1735 N32N64_SYMBOLIC_REGISTER_NAMES,
1736 {0, 0}
1737 };
1738
1739 static int
1740 reg_lookup (char **s, unsigned int types, unsigned int *regnop)
1741 {
1742 symbolS *symbolP;
1743 char *e;
1744 char save_c;
1745 int reg = -1;
1746
1747 /* Find end of name. */
1748 e = *s;
1749 if (is_name_beginner (*e))
1750 ++e;
1751 while (is_part_of_name (*e))
1752 ++e;
1753
1754 /* Terminate name. */
1755 save_c = *e;
1756 *e = '\0';
1757
1758 /* Look for a register symbol. */
1759 if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section)
1760 {
1761 int r = S_GET_VALUE (symbolP);
1762 if (r & types)
1763 reg = r & RNUM_MASK;
1764 else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2))
1765 /* Convert GP reg $v0/1 to MDMX reg $v0/1! */
1766 reg = (r & RNUM_MASK) - 2;
1767 }
1768 /* Else see if this is a register defined in an itbl entry. */
1769 else if ((types & RTYPE_GP) && itbl_have_entries)
1770 {
1771 char *n = *s;
1772 unsigned long r;
1773
1774 if (*n == '$')
1775 ++n;
1776 if (itbl_get_reg_val (n, &r))
1777 reg = r & RNUM_MASK;
1778 }
1779
1780 /* Advance to next token if a register was recognised. */
1781 if (reg >= 0)
1782 *s = e;
1783 else if (types & RWARN)
1784 as_warn ("Unrecognized register name `%s'", *s);
1785
1786 *e = save_c;
1787 if (regnop)
1788 *regnop = reg;
1789 return reg >= 0;
1790 }
1791
1792 /* Return TRUE if opcode MO is valid on the currently selected ISA and
1793 architecture. If EXPANSIONP is TRUE then this check is done while
1794 expanding a macro. Use is_opcode_valid_16 for MIPS16 opcodes. */
1795
1796 static bfd_boolean
1797 is_opcode_valid (const struct mips_opcode *mo, bfd_boolean expansionp)
1798 {
1799 int isa = mips_opts.isa;
1800 int fp_s, fp_d;
1801
1802 if (mips_opts.ase_mdmx)
1803 isa |= INSN_MDMX;
1804 if (mips_opts.ase_dsp)
1805 isa |= INSN_DSP;
1806 if (mips_opts.ase_dsp && ISA_SUPPORTS_DSP64_ASE)
1807 isa |= INSN_DSP64;
1808 if (mips_opts.ase_dspr2)
1809 isa |= INSN_DSPR2;
1810 if (mips_opts.ase_mt)
1811 isa |= INSN_MT;
1812 if (mips_opts.ase_mips3d)
1813 isa |= INSN_MIPS3D;
1814 if (mips_opts.ase_smartmips)
1815 isa |= INSN_SMARTMIPS;
1816
1817 /* For user code we don't check for mips_opts.mips16 since we want
1818 to allow jalx if -mips16 was specified on the command line. */
1819 if (expansionp ? mips_opts.mips16 : file_ase_mips16)
1820 isa |= INSN_MIPS16;
1821
1822 /* Don't accept instructions based on the ISA if the CPU does not implement
1823 all the coprocessor insns. */
1824 if (NO_ISA_COP (mips_opts.arch)
1825 && COP_INSN (mo->pinfo))
1826 isa = 0;
1827
1828 if (!OPCODE_IS_MEMBER (mo, isa, mips_opts.arch))
1829 return FALSE;
1830
1831 /* Check whether the instruction or macro requires single-precision or
1832 double-precision floating-point support. Note that this information is
1833 stored differently in the opcode table for insns and macros. */
1834 if (mo->pinfo == INSN_MACRO)
1835 {
1836 fp_s = mo->pinfo2 & INSN2_M_FP_S;
1837 fp_d = mo->pinfo2 & INSN2_M_FP_D;
1838 }
1839 else
1840 {
1841 fp_s = mo->pinfo & FP_S;
1842 fp_d = mo->pinfo & FP_D;
1843 }
1844
1845 if (fp_d && (mips_opts.soft_float || mips_opts.single_float))
1846 return FALSE;
1847
1848 if (fp_s && mips_opts.soft_float)
1849 return FALSE;
1850
1851 return TRUE;
1852 }
1853
1854 /* Return TRUE if the MIPS16 opcode MO is valid on the currently
1855 selected ISA and architecture. */
1856
1857 static bfd_boolean
1858 is_opcode_valid_16 (const struct mips_opcode *mo)
1859 {
1860 return OPCODE_IS_MEMBER (mo, mips_opts.isa, mips_opts.arch) ? TRUE : FALSE;
1861 }
1862
1863 /* This function is called once, at assembler startup time. It should set up
1864 all the tables, etc. that the MD part of the assembler will need. */
1865
1866 void
1867 md_begin (void)
1868 {
1869 const char *retval = NULL;
1870 int i = 0;
1871 int broken = 0;
1872
1873 if (mips_pic != NO_PIC)
1874 {
1875 if (g_switch_seen && g_switch_value != 0)
1876 as_bad (_("-G may not be used in position-independent code"));
1877 g_switch_value = 0;
1878 }
1879
1880 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
1881 as_warn (_("Could not set architecture and machine"));
1882
1883 op_hash = hash_new ();
1884
1885 for (i = 0; i < NUMOPCODES;)
1886 {
1887 const char *name = mips_opcodes[i].name;
1888
1889 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
1890 if (retval != NULL)
1891 {
1892 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1893 mips_opcodes[i].name, retval);
1894 /* Probably a memory allocation problem? Give up now. */
1895 as_fatal (_("Broken assembler. No assembly attempted."));
1896 }
1897 do
1898 {
1899 if (mips_opcodes[i].pinfo != INSN_MACRO)
1900 {
1901 if (!validate_mips_insn (&mips_opcodes[i]))
1902 broken = 1;
1903 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1904 {
1905 create_insn (&nop_insn, mips_opcodes + i);
1906 nop_insn.fixed_p = 1;
1907 }
1908 }
1909 ++i;
1910 }
1911 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1912 }
1913
1914 mips16_op_hash = hash_new ();
1915
1916 i = 0;
1917 while (i < bfd_mips16_num_opcodes)
1918 {
1919 const char *name = mips16_opcodes[i].name;
1920
1921 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
1922 if (retval != NULL)
1923 as_fatal (_("internal: can't hash `%s': %s"),
1924 mips16_opcodes[i].name, retval);
1925 do
1926 {
1927 if (mips16_opcodes[i].pinfo != INSN_MACRO
1928 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1929 != mips16_opcodes[i].match))
1930 {
1931 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1932 mips16_opcodes[i].name, mips16_opcodes[i].args);
1933 broken = 1;
1934 }
1935 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1936 {
1937 create_insn (&mips16_nop_insn, mips16_opcodes + i);
1938 mips16_nop_insn.fixed_p = 1;
1939 }
1940 ++i;
1941 }
1942 while (i < bfd_mips16_num_opcodes
1943 && strcmp (mips16_opcodes[i].name, name) == 0);
1944 }
1945
1946 if (broken)
1947 as_fatal (_("Broken assembler. No assembly attempted."));
1948
1949 /* We add all the general register names to the symbol table. This
1950 helps us detect invalid uses of them. */
1951 for (i = 0; reg_names[i].name; i++)
1952 symbol_table_insert (symbol_new (reg_names[i].name, reg_section,
1953 reg_names[i].num, /* & RNUM_MASK, */
1954 &zero_address_frag));
1955 if (HAVE_NEWABI)
1956 for (i = 0; reg_names_n32n64[i].name; i++)
1957 symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section,
1958 reg_names_n32n64[i].num, /* & RNUM_MASK, */
1959 &zero_address_frag));
1960 else
1961 for (i = 0; reg_names_o32[i].name; i++)
1962 symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section,
1963 reg_names_o32[i].num, /* & RNUM_MASK, */
1964 &zero_address_frag));
1965
1966 mips_no_prev_insn ();
1967
1968 mips_gprmask = 0;
1969 mips_cprmask[0] = 0;
1970 mips_cprmask[1] = 0;
1971 mips_cprmask[2] = 0;
1972 mips_cprmask[3] = 0;
1973
1974 /* set the default alignment for the text section (2**2) */
1975 record_alignment (text_section, 2);
1976
1977 bfd_set_gp_size (stdoutput, g_switch_value);
1978
1979 #ifdef OBJ_ELF
1980 if (IS_ELF)
1981 {
1982 /* On a native system other than VxWorks, sections must be aligned
1983 to 16 byte boundaries. When configured for an embedded ELF
1984 target, we don't bother. */
1985 if (strncmp (TARGET_OS, "elf", 3) != 0
1986 && strncmp (TARGET_OS, "vxworks", 7) != 0)
1987 {
1988 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
1989 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
1990 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
1991 }
1992
1993 /* Create a .reginfo section for register masks and a .mdebug
1994 section for debugging information. */
1995 {
1996 segT seg;
1997 subsegT subseg;
1998 flagword flags;
1999 segT sec;
2000
2001 seg = now_seg;
2002 subseg = now_subseg;
2003
2004 /* The ABI says this section should be loaded so that the
2005 running program can access it. However, we don't load it
2006 if we are configured for an embedded target */
2007 flags = SEC_READONLY | SEC_DATA;
2008 if (strncmp (TARGET_OS, "elf", 3) != 0)
2009 flags |= SEC_ALLOC | SEC_LOAD;
2010
2011 if (mips_abi != N64_ABI)
2012 {
2013 sec = subseg_new (".reginfo", (subsegT) 0);
2014
2015 bfd_set_section_flags (stdoutput, sec, flags);
2016 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
2017
2018 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
2019 }
2020 else
2021 {
2022 /* The 64-bit ABI uses a .MIPS.options section rather than
2023 .reginfo section. */
2024 sec = subseg_new (".MIPS.options", (subsegT) 0);
2025 bfd_set_section_flags (stdoutput, sec, flags);
2026 bfd_set_section_alignment (stdoutput, sec, 3);
2027
2028 /* Set up the option header. */
2029 {
2030 Elf_Internal_Options opthdr;
2031 char *f;
2032
2033 opthdr.kind = ODK_REGINFO;
2034 opthdr.size = (sizeof (Elf_External_Options)
2035 + sizeof (Elf64_External_RegInfo));
2036 opthdr.section = 0;
2037 opthdr.info = 0;
2038 f = frag_more (sizeof (Elf_External_Options));
2039 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
2040 (Elf_External_Options *) f);
2041
2042 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
2043 }
2044 }
2045
2046 if (ECOFF_DEBUGGING)
2047 {
2048 sec = subseg_new (".mdebug", (subsegT) 0);
2049 (void) bfd_set_section_flags (stdoutput, sec,
2050 SEC_HAS_CONTENTS | SEC_READONLY);
2051 (void) bfd_set_section_alignment (stdoutput, sec, 2);
2052 }
2053 else if (mips_flag_pdr)
2054 {
2055 pdr_seg = subseg_new (".pdr", (subsegT) 0);
2056 (void) bfd_set_section_flags (stdoutput, pdr_seg,
2057 SEC_READONLY | SEC_RELOC
2058 | SEC_DEBUGGING);
2059 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
2060 }
2061
2062 subseg_set (seg, subseg);
2063 }
2064 }
2065 #endif /* OBJ_ELF */
2066
2067 if (! ECOFF_DEBUGGING)
2068 md_obj_begin ();
2069
2070 if (mips_fix_vr4120)
2071 init_vr4120_conflicts ();
2072 }
2073
2074 void
2075 md_mips_end (void)
2076 {
2077 if (! ECOFF_DEBUGGING)
2078 md_obj_end ();
2079 }
2080
2081 void
2082 md_assemble (char *str)
2083 {
2084 struct mips_cl_insn insn;
2085 bfd_reloc_code_real_type unused_reloc[3]
2086 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
2087
2088 imm_expr.X_op = O_absent;
2089 imm2_expr.X_op = O_absent;
2090 offset_expr.X_op = O_absent;
2091 imm_reloc[0] = BFD_RELOC_UNUSED;
2092 imm_reloc[1] = BFD_RELOC_UNUSED;
2093 imm_reloc[2] = BFD_RELOC_UNUSED;
2094 offset_reloc[0] = BFD_RELOC_UNUSED;
2095 offset_reloc[1] = BFD_RELOC_UNUSED;
2096 offset_reloc[2] = BFD_RELOC_UNUSED;
2097
2098 if (mips_opts.mips16)
2099 mips16_ip (str, &insn);
2100 else
2101 {
2102 mips_ip (str, &insn);
2103 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
2104 str, insn.insn_opcode));
2105 }
2106
2107 if (insn_error)
2108 {
2109 as_bad ("%s `%s'", insn_error, str);
2110 return;
2111 }
2112
2113 if (insn.insn_mo->pinfo == INSN_MACRO)
2114 {
2115 macro_start ();
2116 if (mips_opts.mips16)
2117 mips16_macro (&insn);
2118 else
2119 macro (&insn);
2120 macro_end ();
2121 }
2122 else
2123 {
2124 if (imm_expr.X_op != O_absent)
2125 append_insn (&insn, &imm_expr, imm_reloc);
2126 else if (offset_expr.X_op != O_absent)
2127 append_insn (&insn, &offset_expr, offset_reloc);
2128 else
2129 append_insn (&insn, NULL, unused_reloc);
2130 }
2131 }
2132
2133 /* Convenience functions for abstracting away the differences between
2134 MIPS16 and non-MIPS16 relocations. */
2135
2136 static inline bfd_boolean
2137 mips16_reloc_p (bfd_reloc_code_real_type reloc)
2138 {
2139 switch (reloc)
2140 {
2141 case BFD_RELOC_MIPS16_JMP:
2142 case BFD_RELOC_MIPS16_GPREL:
2143 case BFD_RELOC_MIPS16_GOT16:
2144 case BFD_RELOC_MIPS16_CALL16:
2145 case BFD_RELOC_MIPS16_HI16_S:
2146 case BFD_RELOC_MIPS16_HI16:
2147 case BFD_RELOC_MIPS16_LO16:
2148 return TRUE;
2149
2150 default:
2151 return FALSE;
2152 }
2153 }
2154
2155 static inline bfd_boolean
2156 got16_reloc_p (bfd_reloc_code_real_type reloc)
2157 {
2158 return reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16;
2159 }
2160
2161 static inline bfd_boolean
2162 hi16_reloc_p (bfd_reloc_code_real_type reloc)
2163 {
2164 return reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S;
2165 }
2166
2167 static inline bfd_boolean
2168 lo16_reloc_p (bfd_reloc_code_real_type reloc)
2169 {
2170 return reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16;
2171 }
2172
2173 /* Return true if the given relocation might need a matching %lo().
2174 This is only "might" because SVR4 R_MIPS_GOT16 relocations only
2175 need a matching %lo() when applied to local symbols. */
2176
2177 static inline bfd_boolean
2178 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
2179 {
2180 return (HAVE_IN_PLACE_ADDENDS
2181 && (hi16_reloc_p (reloc)
2182 /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo();
2183 all GOT16 relocations evaluate to "G". */
2184 || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC)));
2185 }
2186
2187 /* Return the type of %lo() reloc needed by RELOC, given that
2188 reloc_needs_lo_p. */
2189
2190 static inline bfd_reloc_code_real_type
2191 matching_lo_reloc (bfd_reloc_code_real_type reloc)
2192 {
2193 return mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16 : BFD_RELOC_LO16;
2194 }
2195
2196 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
2197 relocation. */
2198
2199 static inline bfd_boolean
2200 fixup_has_matching_lo_p (fixS *fixp)
2201 {
2202 return (fixp->fx_next != NULL
2203 && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type)
2204 && fixp->fx_addsy == fixp->fx_next->fx_addsy
2205 && fixp->fx_offset == fixp->fx_next->fx_offset);
2206 }
2207
2208 /* See whether instruction IP reads register REG. CLASS is the type
2209 of register. */
2210
2211 static int
2212 insn_uses_reg (const struct mips_cl_insn *ip, unsigned int reg,
2213 enum mips_regclass class)
2214 {
2215 if (class == MIPS16_REG)
2216 {
2217 assert (mips_opts.mips16);
2218 reg = mips16_to_32_reg_map[reg];
2219 class = MIPS_GR_REG;
2220 }
2221
2222 /* Don't report on general register ZERO, since it never changes. */
2223 if (class == MIPS_GR_REG && reg == ZERO)
2224 return 0;
2225
2226 if (class == MIPS_FP_REG)
2227 {
2228 assert (! mips_opts.mips16);
2229 /* If we are called with either $f0 or $f1, we must check $f0.
2230 This is not optimal, because it will introduce an unnecessary
2231 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
2232 need to distinguish reading both $f0 and $f1 or just one of
2233 them. Note that we don't have to check the other way,
2234 because there is no instruction that sets both $f0 and $f1
2235 and requires a delay. */
2236 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
2237 && ((EXTRACT_OPERAND (FS, *ip) & ~(unsigned) 1)
2238 == (reg &~ (unsigned) 1)))
2239 return 1;
2240 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
2241 && ((EXTRACT_OPERAND (FT, *ip) & ~(unsigned) 1)
2242 == (reg &~ (unsigned) 1)))
2243 return 1;
2244 }
2245 else if (! mips_opts.mips16)
2246 {
2247 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
2248 && EXTRACT_OPERAND (RS, *ip) == reg)
2249 return 1;
2250 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
2251 && EXTRACT_OPERAND (RT, *ip) == reg)
2252 return 1;
2253 }
2254 else
2255 {
2256 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
2257 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)] == reg)
2258 return 1;
2259 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
2260 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)] == reg)
2261 return 1;
2262 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
2263 && (mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]
2264 == reg))
2265 return 1;
2266 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
2267 return 1;
2268 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
2269 return 1;
2270 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
2271 return 1;
2272 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
2273 && MIPS16_EXTRACT_OPERAND (REGR32, *ip) == reg)
2274 return 1;
2275 }
2276
2277 return 0;
2278 }
2279
2280 /* This function returns true if modifying a register requires a
2281 delay. */
2282
2283 static int
2284 reg_needs_delay (unsigned int reg)
2285 {
2286 unsigned long prev_pinfo;
2287
2288 prev_pinfo = history[0].insn_mo->pinfo;
2289 if (! mips_opts.noreorder
2290 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
2291 && ! gpr_interlocks)
2292 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
2293 && ! cop_interlocks)))
2294 {
2295 /* A load from a coprocessor or from memory. All load delays
2296 delay the use of general register rt for one instruction. */
2297 /* Itbl support may require additional care here. */
2298 know (prev_pinfo & INSN_WRITE_GPR_T);
2299 if (reg == EXTRACT_OPERAND (RT, history[0]))
2300 return 1;
2301 }
2302
2303 return 0;
2304 }
2305
2306 /* Move all labels in insn_labels to the current insertion point. */
2307
2308 static void
2309 mips_move_labels (void)
2310 {
2311 segment_info_type *si = seg_info (now_seg);
2312 struct insn_label_list *l;
2313 valueT val;
2314
2315 for (l = si->label_list; l != NULL; l = l->next)
2316 {
2317 assert (S_GET_SEGMENT (l->label) == now_seg);
2318 symbol_set_frag (l->label, frag_now);
2319 val = (valueT) frag_now_fix ();
2320 /* mips16 text labels are stored as odd. */
2321 if (mips_opts.mips16)
2322 ++val;
2323 S_SET_VALUE (l->label, val);
2324 }
2325 }
2326
2327 static bfd_boolean
2328 s_is_linkonce (symbolS *sym, segT from_seg)
2329 {
2330 bfd_boolean linkonce = FALSE;
2331 segT symseg = S_GET_SEGMENT (sym);
2332
2333 if (symseg != from_seg && !S_IS_LOCAL (sym))
2334 {
2335 if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE))
2336 linkonce = TRUE;
2337 #ifdef OBJ_ELF
2338 /* The GNU toolchain uses an extension for ELF: a section
2339 beginning with the magic string .gnu.linkonce is a
2340 linkonce section. */
2341 if (strncmp (segment_name (symseg), ".gnu.linkonce",
2342 sizeof ".gnu.linkonce" - 1) == 0)
2343 linkonce = TRUE;
2344 #endif
2345 }
2346 return linkonce;
2347 }
2348
2349 /* Mark instruction labels in mips16 mode. This permits the linker to
2350 handle them specially, such as generating jalx instructions when
2351 needed. We also make them odd for the duration of the assembly, in
2352 order to generate the right sort of code. We will make them even
2353 in the adjust_symtab routine, while leaving them marked. This is
2354 convenient for the debugger and the disassembler. The linker knows
2355 to make them odd again. */
2356
2357 static void
2358 mips16_mark_labels (void)
2359 {
2360 segment_info_type *si = seg_info (now_seg);
2361 struct insn_label_list *l;
2362
2363 if (!mips_opts.mips16)
2364 return;
2365
2366 for (l = si->label_list; l != NULL; l = l->next)
2367 {
2368 symbolS *label = l->label;
2369
2370 #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF)
2371 if (IS_ELF)
2372 S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label)));
2373 #endif
2374 if ((S_GET_VALUE (label) & 1) == 0
2375 /* Don't adjust the address if the label is global or weak, or
2376 in a link-once section, since we'll be emitting symbol reloc
2377 references to it which will be patched up by the linker, and
2378 the final value of the symbol may or may not be MIPS16. */
2379 && ! S_IS_WEAK (label)
2380 && ! S_IS_EXTERNAL (label)
2381 && ! s_is_linkonce (label, now_seg))
2382 S_SET_VALUE (label, S_GET_VALUE (label) | 1);
2383 }
2384 }
2385
2386 /* End the current frag. Make it a variant frag and record the
2387 relaxation info. */
2388
2389 static void
2390 relax_close_frag (void)
2391 {
2392 mips_macro_warning.first_frag = frag_now;
2393 frag_var (rs_machine_dependent, 0, 0,
2394 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
2395 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
2396
2397 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
2398 mips_relax.first_fixup = 0;
2399 }
2400
2401 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
2402 See the comment above RELAX_ENCODE for more details. */
2403
2404 static void
2405 relax_start (symbolS *symbol)
2406 {
2407 assert (mips_relax.sequence == 0);
2408 mips_relax.sequence = 1;
2409 mips_relax.symbol = symbol;
2410 }
2411
2412 /* Start generating the second version of a relaxable sequence.
2413 See the comment above RELAX_ENCODE for more details. */
2414
2415 static void
2416 relax_switch (void)
2417 {
2418 assert (mips_relax.sequence == 1);
2419 mips_relax.sequence = 2;
2420 }
2421
2422 /* End the current relaxable sequence. */
2423
2424 static void
2425 relax_end (void)
2426 {
2427 assert (mips_relax.sequence == 2);
2428 relax_close_frag ();
2429 mips_relax.sequence = 0;
2430 }
2431
2432 /* Classify an instruction according to the FIX_VR4120_* enumeration.
2433 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
2434 by VR4120 errata. */
2435
2436 static unsigned int
2437 classify_vr4120_insn (const char *name)
2438 {
2439 if (strncmp (name, "macc", 4) == 0)
2440 return FIX_VR4120_MACC;
2441 if (strncmp (name, "dmacc", 5) == 0)
2442 return FIX_VR4120_DMACC;
2443 if (strncmp (name, "mult", 4) == 0)
2444 return FIX_VR4120_MULT;
2445 if (strncmp (name, "dmult", 5) == 0)
2446 return FIX_VR4120_DMULT;
2447 if (strstr (name, "div"))
2448 return FIX_VR4120_DIV;
2449 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
2450 return FIX_VR4120_MTHILO;
2451 return NUM_FIX_VR4120_CLASSES;
2452 }
2453
2454 /* Return the number of instructions that must separate INSN1 and INSN2,
2455 where INSN1 is the earlier instruction. Return the worst-case value
2456 for any INSN2 if INSN2 is null. */
2457
2458 static unsigned int
2459 insns_between (const struct mips_cl_insn *insn1,
2460 const struct mips_cl_insn *insn2)
2461 {
2462 unsigned long pinfo1, pinfo2;
2463
2464 /* This function needs to know which pinfo flags are set for INSN2
2465 and which registers INSN2 uses. The former is stored in PINFO2 and
2466 the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2
2467 will have every flag set and INSN2_USES_REG will always return true. */
2468 pinfo1 = insn1->insn_mo->pinfo;
2469 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
2470
2471 #define INSN2_USES_REG(REG, CLASS) \
2472 (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
2473
2474 /* For most targets, write-after-read dependencies on the HI and LO
2475 registers must be separated by at least two instructions. */
2476 if (!hilo_interlocks)
2477 {
2478 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
2479 return 2;
2480 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
2481 return 2;
2482 }
2483
2484 /* If we're working around r7000 errata, there must be two instructions
2485 between an mfhi or mflo and any instruction that uses the result. */
2486 if (mips_7000_hilo_fix
2487 && MF_HILO_INSN (pinfo1)
2488 && INSN2_USES_REG (EXTRACT_OPERAND (RD, *insn1), MIPS_GR_REG))
2489 return 2;
2490
2491 /* If working around VR4120 errata, check for combinations that need
2492 a single intervening instruction. */
2493 if (mips_fix_vr4120)
2494 {
2495 unsigned int class1, class2;
2496
2497 class1 = classify_vr4120_insn (insn1->insn_mo->name);
2498 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
2499 {
2500 if (insn2 == NULL)
2501 return 1;
2502 class2 = classify_vr4120_insn (insn2->insn_mo->name);
2503 if (vr4120_conflicts[class1] & (1 << class2))
2504 return 1;
2505 }
2506 }
2507
2508 if (!mips_opts.mips16)
2509 {
2510 /* Check for GPR or coprocessor load delays. All such delays
2511 are on the RT register. */
2512 /* Itbl support may require additional care here. */
2513 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
2514 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
2515 {
2516 know (pinfo1 & INSN_WRITE_GPR_T);
2517 if (INSN2_USES_REG (EXTRACT_OPERAND (RT, *insn1), MIPS_GR_REG))
2518 return 1;
2519 }
2520
2521 /* Check for generic coprocessor hazards.
2522
2523 This case is not handled very well. There is no special
2524 knowledge of CP0 handling, and the coprocessors other than
2525 the floating point unit are not distinguished at all. */
2526 /* Itbl support may require additional care here. FIXME!
2527 Need to modify this to include knowledge about
2528 user specified delays! */
2529 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
2530 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
2531 {
2532 /* Handle cases where INSN1 writes to a known general coprocessor
2533 register. There must be a one instruction delay before INSN2
2534 if INSN2 reads that register, otherwise no delay is needed. */
2535 if (pinfo1 & INSN_WRITE_FPR_T)
2536 {
2537 if (INSN2_USES_REG (EXTRACT_OPERAND (FT, *insn1), MIPS_FP_REG))
2538 return 1;
2539 }
2540 else if (pinfo1 & INSN_WRITE_FPR_S)
2541 {
2542 if (INSN2_USES_REG (EXTRACT_OPERAND (FS, *insn1), MIPS_FP_REG))
2543 return 1;
2544 }
2545 else
2546 {
2547 /* Read-after-write dependencies on the control registers
2548 require a two-instruction gap. */
2549 if ((pinfo1 & INSN_WRITE_COND_CODE)
2550 && (pinfo2 & INSN_READ_COND_CODE))
2551 return 2;
2552
2553 /* We don't know exactly what INSN1 does. If INSN2 is
2554 also a coprocessor instruction, assume there must be
2555 a one instruction gap. */
2556 if (pinfo2 & INSN_COP)
2557 return 1;
2558 }
2559 }
2560
2561 /* Check for read-after-write dependencies on the coprocessor
2562 control registers in cases where INSN1 does not need a general
2563 coprocessor delay. This means that INSN1 is a floating point
2564 comparison instruction. */
2565 /* Itbl support may require additional care here. */
2566 else if (!cop_interlocks
2567 && (pinfo1 & INSN_WRITE_COND_CODE)
2568 && (pinfo2 & INSN_READ_COND_CODE))
2569 return 1;
2570 }
2571
2572 #undef INSN2_USES_REG
2573
2574 return 0;
2575 }
2576
2577 /* Return the number of nops that would be needed to work around the
2578 VR4130 mflo/mfhi errata if instruction INSN immediately followed
2579 the MAX_VR4130_NOPS instructions described by HISTORY. */
2580
2581 static int
2582 nops_for_vr4130 (const struct mips_cl_insn *history,
2583 const struct mips_cl_insn *insn)
2584 {
2585 int i, j, reg;
2586
2587 /* Check if the instruction writes to HI or LO. MTHI and MTLO
2588 are not affected by the errata. */
2589 if (insn != 0
2590 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
2591 || strcmp (insn->insn_mo->name, "mtlo") == 0
2592 || strcmp (insn->insn_mo->name, "mthi") == 0))
2593 return 0;
2594
2595 /* Search for the first MFLO or MFHI. */
2596 for (i = 0; i < MAX_VR4130_NOPS; i++)
2597 if (!history[i].noreorder_p && MF_HILO_INSN (history[i].insn_mo->pinfo))
2598 {
2599 /* Extract the destination register. */
2600 if (mips_opts.mips16)
2601 reg = mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, history[i])];
2602 else
2603 reg = EXTRACT_OPERAND (RD, history[i]);
2604
2605 /* No nops are needed if INSN reads that register. */
2606 if (insn != NULL && insn_uses_reg (insn, reg, MIPS_GR_REG))
2607 return 0;
2608
2609 /* ...or if any of the intervening instructions do. */
2610 for (j = 0; j < i; j++)
2611 if (insn_uses_reg (&history[j], reg, MIPS_GR_REG))
2612 return 0;
2613
2614 return MAX_VR4130_NOPS - i;
2615 }
2616 return 0;
2617 }
2618
2619 /* Return the number of nops that would be needed if instruction INSN
2620 immediately followed the MAX_NOPS instructions given by HISTORY,
2621 where HISTORY[0] is the most recent instruction. If INSN is null,
2622 return the worse-case number of nops for any instruction. */
2623
2624 static int
2625 nops_for_insn (const struct mips_cl_insn *history,
2626 const struct mips_cl_insn *insn)
2627 {
2628 int i, nops, tmp_nops;
2629
2630 nops = 0;
2631 for (i = 0; i < MAX_DELAY_NOPS; i++)
2632 if (!history[i].noreorder_p)
2633 {
2634 tmp_nops = insns_between (history + i, insn) - i;
2635 if (tmp_nops > nops)
2636 nops = tmp_nops;
2637 }
2638
2639 if (mips_fix_vr4130)
2640 {
2641 tmp_nops = nops_for_vr4130 (history, insn);
2642 if (tmp_nops > nops)
2643 nops = tmp_nops;
2644 }
2645
2646 return nops;
2647 }
2648
2649 /* The variable arguments provide NUM_INSNS extra instructions that
2650 might be added to HISTORY. Return the largest number of nops that
2651 would be needed after the extended sequence. */
2652
2653 static int
2654 nops_for_sequence (int num_insns, const struct mips_cl_insn *history, ...)
2655 {
2656 va_list args;
2657 struct mips_cl_insn buffer[MAX_NOPS];
2658 struct mips_cl_insn *cursor;
2659 int nops;
2660
2661 va_start (args, history);
2662 cursor = buffer + num_insns;
2663 memcpy (cursor, history, (MAX_NOPS - num_insns) * sizeof (*cursor));
2664 while (cursor > buffer)
2665 *--cursor = *va_arg (args, const struct mips_cl_insn *);
2666
2667 nops = nops_for_insn (buffer, NULL);
2668 va_end (args);
2669 return nops;
2670 }
2671
2672 /* Like nops_for_insn, but if INSN is a branch, take into account the
2673 worst-case delay for the branch target. */
2674
2675 static int
2676 nops_for_insn_or_target (const struct mips_cl_insn *history,
2677 const struct mips_cl_insn *insn)
2678 {
2679 int nops, tmp_nops;
2680
2681 nops = nops_for_insn (history, insn);
2682 if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
2683 | INSN_COND_BRANCH_DELAY
2684 | INSN_COND_BRANCH_LIKELY))
2685 {
2686 tmp_nops = nops_for_sequence (2, history, insn, NOP_INSN);
2687 if (tmp_nops > nops)
2688 nops = tmp_nops;
2689 }
2690 else if (mips_opts.mips16 && (insn->insn_mo->pinfo & MIPS16_INSN_BRANCH))
2691 {
2692 tmp_nops = nops_for_sequence (1, history, insn);
2693 if (tmp_nops > nops)
2694 nops = tmp_nops;
2695 }
2696 return nops;
2697 }
2698
2699 /* Output an instruction. IP is the instruction information.
2700 ADDRESS_EXPR is an operand of the instruction to be used with
2701 RELOC_TYPE. */
2702
2703 static void
2704 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
2705 bfd_reloc_code_real_type *reloc_type)
2706 {
2707 unsigned long prev_pinfo, pinfo;
2708 relax_stateT prev_insn_frag_type = 0;
2709 bfd_boolean relaxed_branch = FALSE;
2710 segment_info_type *si = seg_info (now_seg);
2711
2712 /* Mark instruction labels in mips16 mode. */
2713 mips16_mark_labels ();
2714
2715 prev_pinfo = history[0].insn_mo->pinfo;
2716 pinfo = ip->insn_mo->pinfo;
2717
2718 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
2719 {
2720 /* There are a lot of optimizations we could do that we don't.
2721 In particular, we do not, in general, reorder instructions.
2722 If you use gcc with optimization, it will reorder
2723 instructions and generally do much more optimization then we
2724 do here; repeating all that work in the assembler would only
2725 benefit hand written assembly code, and does not seem worth
2726 it. */
2727 int nops = (mips_optimize == 0
2728 ? nops_for_insn (history, NULL)
2729 : nops_for_insn_or_target (history, ip));
2730 if (nops > 0)
2731 {
2732 fragS *old_frag;
2733 unsigned long old_frag_offset;
2734 int i;
2735
2736 old_frag = frag_now;
2737 old_frag_offset = frag_now_fix ();
2738
2739 for (i = 0; i < nops; i++)
2740 emit_nop ();
2741
2742 if (listing)
2743 {
2744 listing_prev_line ();
2745 /* We may be at the start of a variant frag. In case we
2746 are, make sure there is enough space for the frag
2747 after the frags created by listing_prev_line. The
2748 argument to frag_grow here must be at least as large
2749 as the argument to all other calls to frag_grow in
2750 this file. We don't have to worry about being in the
2751 middle of a variant frag, because the variants insert
2752 all needed nop instructions themselves. */
2753 frag_grow (40);
2754 }
2755
2756 mips_move_labels ();
2757
2758 #ifndef NO_ECOFF_DEBUGGING
2759 if (ECOFF_DEBUGGING)
2760 ecoff_fix_loc (old_frag, old_frag_offset);
2761 #endif
2762 }
2763 }
2764 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
2765 {
2766 /* Work out how many nops in prev_nop_frag are needed by IP. */
2767 int nops = nops_for_insn_or_target (history, ip);
2768 assert (nops <= prev_nop_frag_holds);
2769
2770 /* Enforce NOPS as a minimum. */
2771 if (nops > prev_nop_frag_required)
2772 prev_nop_frag_required = nops;
2773
2774 if (prev_nop_frag_holds == prev_nop_frag_required)
2775 {
2776 /* Settle for the current number of nops. Update the history
2777 accordingly (for the benefit of any future .set reorder code). */
2778 prev_nop_frag = NULL;
2779 insert_into_history (prev_nop_frag_since,
2780 prev_nop_frag_holds, NOP_INSN);
2781 }
2782 else
2783 {
2784 /* Allow this instruction to replace one of the nops that was
2785 tentatively added to prev_nop_frag. */
2786 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
2787 prev_nop_frag_holds--;
2788 prev_nop_frag_since++;
2789 }
2790 }
2791
2792 #ifdef OBJ_ELF
2793 /* The value passed to dwarf2_emit_insn is the distance between
2794 the beginning of the current instruction and the address that
2795 should be recorded in the debug tables. For MIPS16 debug info
2796 we want to use ISA-encoded addresses, so we pass -1 for an
2797 address higher by one than the current. */
2798 dwarf2_emit_insn (mips_opts.mips16 ? -1 : 0);
2799 #endif
2800
2801 /* Record the frag type before frag_var. */
2802 if (history[0].frag)
2803 prev_insn_frag_type = history[0].frag->fr_type;
2804
2805 if (address_expr
2806 && *reloc_type == BFD_RELOC_16_PCREL_S2
2807 && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
2808 || pinfo & INSN_COND_BRANCH_LIKELY)
2809 && mips_relax_branch
2810 /* Don't try branch relaxation within .set nomacro, or within
2811 .set noat if we use $at for PIC computations. If it turns
2812 out that the branch was out-of-range, we'll get an error. */
2813 && !mips_opts.warn_about_macros
2814 && (mips_opts.at || mips_pic == NO_PIC)
2815 && !mips_opts.mips16)
2816 {
2817 relaxed_branch = TRUE;
2818 add_relaxed_insn (ip, (relaxed_branch_length
2819 (NULL, NULL,
2820 (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
2821 : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1
2822 : 0)), 4,
2823 RELAX_BRANCH_ENCODE
2824 (pinfo & INSN_UNCOND_BRANCH_DELAY,
2825 pinfo & INSN_COND_BRANCH_LIKELY,
2826 pinfo & INSN_WRITE_GPR_31,
2827 0),
2828 address_expr->X_add_symbol,
2829 address_expr->X_add_number);
2830 *reloc_type = BFD_RELOC_UNUSED;
2831 }
2832 else if (*reloc_type > BFD_RELOC_UNUSED)
2833 {
2834 /* We need to set up a variant frag. */
2835 assert (mips_opts.mips16 && address_expr != NULL);
2836 add_relaxed_insn (ip, 4, 0,
2837 RELAX_MIPS16_ENCODE
2838 (*reloc_type - BFD_RELOC_UNUSED,
2839 mips16_small, mips16_ext,
2840 prev_pinfo & INSN_UNCOND_BRANCH_DELAY,
2841 history[0].mips16_absolute_jump_p),
2842 make_expr_symbol (address_expr), 0);
2843 }
2844 else if (mips_opts.mips16
2845 && ! ip->use_extend
2846 && *reloc_type != BFD_RELOC_MIPS16_JMP)
2847 {
2848 if ((pinfo & INSN_UNCOND_BRANCH_DELAY) == 0)
2849 /* Make sure there is enough room to swap this instruction with
2850 a following jump instruction. */
2851 frag_grow (6);
2852 add_fixed_insn (ip);
2853 }
2854 else
2855 {
2856 if (mips_opts.mips16
2857 && mips_opts.noreorder
2858 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
2859 as_warn (_("extended instruction in delay slot"));
2860
2861 if (mips_relax.sequence)
2862 {
2863 /* If we've reached the end of this frag, turn it into a variant
2864 frag and record the information for the instructions we've
2865 written so far. */
2866 if (frag_room () < 4)
2867 relax_close_frag ();
2868 mips_relax.sizes[mips_relax.sequence - 1] += 4;
2869 }
2870
2871 if (mips_relax.sequence != 2)
2872 mips_macro_warning.sizes[0] += 4;
2873 if (mips_relax.sequence != 1)
2874 mips_macro_warning.sizes[1] += 4;
2875
2876 if (mips_opts.mips16)
2877 {
2878 ip->fixed_p = 1;
2879 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
2880 }
2881 add_fixed_insn (ip);
2882 }
2883
2884 if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED)
2885 {
2886 if (address_expr->X_op == O_constant)
2887 {
2888 unsigned int tmp;
2889
2890 switch (*reloc_type)
2891 {
2892 case BFD_RELOC_32:
2893 ip->insn_opcode |= address_expr->X_add_number;
2894 break;
2895
2896 case BFD_RELOC_MIPS_HIGHEST:
2897 tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
2898 ip->insn_opcode |= tmp & 0xffff;
2899 break;
2900
2901 case BFD_RELOC_MIPS_HIGHER:
2902 tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
2903 ip->insn_opcode |= tmp & 0xffff;
2904 break;
2905
2906 case BFD_RELOC_HI16_S:
2907 tmp = (address_expr->X_add_number + 0x8000) >> 16;
2908 ip->insn_opcode |= tmp & 0xffff;
2909 break;
2910
2911 case BFD_RELOC_HI16:
2912 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
2913 break;
2914
2915 case BFD_RELOC_UNUSED:
2916 case BFD_RELOC_LO16:
2917 case BFD_RELOC_MIPS_GOT_DISP:
2918 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
2919 break;
2920
2921 case BFD_RELOC_MIPS_JMP:
2922 if ((address_expr->X_add_number & 3) != 0)
2923 as_bad (_("jump to misaligned address (0x%lx)"),
2924 (unsigned long) address_expr->X_add_number);
2925 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
2926 break;
2927
2928 case BFD_RELOC_MIPS16_JMP:
2929 if ((address_expr->X_add_number & 3) != 0)
2930 as_bad (_("jump to misaligned address (0x%lx)"),
2931 (unsigned long) address_expr->X_add_number);
2932 ip->insn_opcode |=
2933 (((address_expr->X_add_number & 0x7c0000) << 3)
2934 | ((address_expr->X_add_number & 0xf800000) >> 7)
2935 | ((address_expr->X_add_number & 0x3fffc) >> 2));
2936 break;
2937
2938 case BFD_RELOC_16_PCREL_S2:
2939 if ((address_expr->X_add_number & 3) != 0)
2940 as_bad (_("branch to misaligned address (0x%lx)"),
2941 (unsigned long) address_expr->X_add_number);
2942 if (mips_relax_branch)
2943 goto need_reloc;
2944 if ((address_expr->X_add_number + 0x20000) & ~0x3ffff)
2945 as_bad (_("branch address range overflow (0x%lx)"),
2946 (unsigned long) address_expr->X_add_number);
2947 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0xffff;
2948 break;
2949
2950 default:
2951 internalError ();
2952 }
2953 }
2954 else if (*reloc_type < BFD_RELOC_UNUSED)
2955 need_reloc:
2956 {
2957 reloc_howto_type *howto;
2958 int i;
2959
2960 /* In a compound relocation, it is the final (outermost)
2961 operator that determines the relocated field. */
2962 for (i = 1; i < 3; i++)
2963 if (reloc_type[i] == BFD_RELOC_UNUSED)
2964 break;
2965
2966 howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
2967 if (howto == NULL)
2968 {
2969 /* To reproduce this failure try assembling gas/testsuites/
2970 gas/mips/mips16-intermix.s with a mips-ecoff targeted
2971 assembler. */
2972 as_bad (_("Unsupported MIPS relocation number %d"), reloc_type[i - 1]);
2973 howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16);
2974 }
2975
2976 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
2977 bfd_get_reloc_size (howto),
2978 address_expr,
2979 reloc_type[0] == BFD_RELOC_16_PCREL_S2,
2980 reloc_type[0]);
2981
2982 /* Tag symbols that have a R_MIPS16_26 relocation against them. */
2983 if (reloc_type[0] == BFD_RELOC_MIPS16_JMP
2984 && ip->fixp[0]->fx_addsy)
2985 *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1;
2986
2987 /* These relocations can have an addend that won't fit in
2988 4 octets for 64bit assembly. */
2989 if (HAVE_64BIT_GPRS
2990 && ! howto->partial_inplace
2991 && (reloc_type[0] == BFD_RELOC_16
2992 || reloc_type[0] == BFD_RELOC_32
2993 || reloc_type[0] == BFD_RELOC_MIPS_JMP
2994 || reloc_type[0] == BFD_RELOC_GPREL16
2995 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
2996 || reloc_type[0] == BFD_RELOC_GPREL32
2997 || reloc_type[0] == BFD_RELOC_64
2998 || reloc_type[0] == BFD_RELOC_CTOR
2999 || reloc_type[0] == BFD_RELOC_MIPS_SUB
3000 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
3001 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
3002 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
3003 || reloc_type[0] == BFD_RELOC_MIPS_REL16
3004 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
3005 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
3006 || hi16_reloc_p (reloc_type[0])
3007 || lo16_reloc_p (reloc_type[0])))
3008 ip->fixp[0]->fx_no_overflow = 1;
3009
3010 if (mips_relax.sequence)
3011 {
3012 if (mips_relax.first_fixup == 0)
3013 mips_relax.first_fixup = ip->fixp[0];
3014 }
3015 else if (reloc_needs_lo_p (*reloc_type))
3016 {
3017 struct mips_hi_fixup *hi_fixup;
3018
3019 /* Reuse the last entry if it already has a matching %lo. */
3020 hi_fixup = mips_hi_fixup_list;
3021 if (hi_fixup == 0
3022 || !fixup_has_matching_lo_p (hi_fixup->fixp))
3023 {
3024 hi_fixup = ((struct mips_hi_fixup *)
3025 xmalloc (sizeof (struct mips_hi_fixup)));
3026 hi_fixup->next = mips_hi_fixup_list;
3027 mips_hi_fixup_list = hi_fixup;
3028 }
3029 hi_fixup->fixp = ip->fixp[0];
3030 hi_fixup->seg = now_seg;
3031 }
3032
3033 /* Add fixups for the second and third relocations, if given.
3034 Note that the ABI allows the second relocation to be
3035 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
3036 moment we only use RSS_UNDEF, but we could add support
3037 for the others if it ever becomes necessary. */
3038 for (i = 1; i < 3; i++)
3039 if (reloc_type[i] != BFD_RELOC_UNUSED)
3040 {
3041 ip->fixp[i] = fix_new (ip->frag, ip->where,
3042 ip->fixp[0]->fx_size, NULL, 0,
3043 FALSE, reloc_type[i]);
3044
3045 /* Use fx_tcbit to mark compound relocs. */
3046 ip->fixp[0]->fx_tcbit = 1;
3047 ip->fixp[i]->fx_tcbit = 1;
3048 }
3049 }
3050 }
3051 install_insn (ip);
3052
3053 /* Update the register mask information. */
3054 if (! mips_opts.mips16)
3055 {
3056 if (pinfo & INSN_WRITE_GPR_D)
3057 mips_gprmask |= 1 << EXTRACT_OPERAND (RD, *ip);
3058 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
3059 mips_gprmask |= 1 << EXTRACT_OPERAND (RT, *ip);
3060 if (pinfo & INSN_READ_GPR_S)
3061 mips_gprmask |= 1 << EXTRACT_OPERAND (RS, *ip);
3062 if (pinfo & INSN_WRITE_GPR_31)
3063 mips_gprmask |= 1 << RA;
3064 if (pinfo & INSN_WRITE_FPR_D)
3065 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FD, *ip);
3066 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
3067 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FS, *ip);
3068 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
3069 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FT, *ip);
3070 if ((pinfo & INSN_READ_FPR_R) != 0)
3071 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FR, *ip);
3072 if (pinfo & INSN_COP)
3073 {
3074 /* We don't keep enough information to sort these cases out.
3075 The itbl support does keep this information however, although
3076 we currently don't support itbl fprmats as part of the cop
3077 instruction. May want to add this support in the future. */
3078 }
3079 /* Never set the bit for $0, which is always zero. */
3080 mips_gprmask &= ~1 << 0;
3081 }
3082 else
3083 {
3084 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
3085 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RX, *ip);
3086 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
3087 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RY, *ip);
3088 if (pinfo & MIPS16_INSN_WRITE_Z)
3089 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RZ, *ip);
3090 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
3091 mips_gprmask |= 1 << TREG;
3092 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
3093 mips_gprmask |= 1 << SP;
3094 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
3095 mips_gprmask |= 1 << RA;
3096 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
3097 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
3098 if (pinfo & MIPS16_INSN_READ_Z)
3099 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip);
3100 if (pinfo & MIPS16_INSN_READ_GPR_X)
3101 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
3102 }
3103
3104 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
3105 {
3106 /* Filling the branch delay slot is more complex. We try to
3107 switch the branch with the previous instruction, which we can
3108 do if the previous instruction does not set up a condition
3109 that the branch tests and if the branch is not itself the
3110 target of any branch. */
3111 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
3112 || (pinfo & INSN_COND_BRANCH_DELAY))
3113 {
3114 if (mips_optimize < 2
3115 /* If we have seen .set volatile or .set nomove, don't
3116 optimize. */
3117 || mips_opts.nomove != 0
3118 /* We can't swap if the previous instruction's position
3119 is fixed. */
3120 || history[0].fixed_p
3121 /* If the previous previous insn was in a .set
3122 noreorder, we can't swap. Actually, the MIPS
3123 assembler will swap in this situation. However, gcc
3124 configured -with-gnu-as will generate code like
3125 .set noreorder
3126 lw $4,XXX
3127 .set reorder
3128 INSN
3129 bne $4,$0,foo
3130 in which we can not swap the bne and INSN. If gcc is
3131 not configured -with-gnu-as, it does not output the
3132 .set pseudo-ops. */
3133 || history[1].noreorder_p
3134 /* If the branch is itself the target of a branch, we
3135 can not swap. We cheat on this; all we check for is
3136 whether there is a label on this instruction. If
3137 there are any branches to anything other than a
3138 label, users must use .set noreorder. */
3139 || si->label_list != NULL
3140 /* If the previous instruction is in a variant frag
3141 other than this branch's one, we cannot do the swap.
3142 This does not apply to the mips16, which uses variant
3143 frags for different purposes. */
3144 || (! mips_opts.mips16
3145 && prev_insn_frag_type == rs_machine_dependent)
3146 /* Check for conflicts between the branch and the instructions
3147 before the candidate delay slot. */
3148 || nops_for_insn (history + 1, ip) > 0
3149 /* Check for conflicts between the swapped sequence and the
3150 target of the branch. */
3151 || nops_for_sequence (2, history + 1, ip, history) > 0
3152 /* We do not swap with a trap instruction, since it
3153 complicates trap handlers to have the trap
3154 instruction be in a delay slot. */
3155 || (prev_pinfo & INSN_TRAP)
3156 /* If the branch reads a register that the previous
3157 instruction sets, we can not swap. */
3158 || (! mips_opts.mips16
3159 && (prev_pinfo & INSN_WRITE_GPR_T)
3160 && insn_uses_reg (ip, EXTRACT_OPERAND (RT, history[0]),
3161 MIPS_GR_REG))
3162 || (! mips_opts.mips16
3163 && (prev_pinfo & INSN_WRITE_GPR_D)
3164 && insn_uses_reg (ip, EXTRACT_OPERAND (RD, history[0]),
3165 MIPS_GR_REG))
3166 || (mips_opts.mips16
3167 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
3168 && (insn_uses_reg
3169 (ip, MIPS16_EXTRACT_OPERAND (RX, history[0]),
3170 MIPS16_REG)))
3171 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
3172 && (insn_uses_reg
3173 (ip, MIPS16_EXTRACT_OPERAND (RY, history[0]),
3174 MIPS16_REG)))
3175 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
3176 && (insn_uses_reg
3177 (ip, MIPS16_EXTRACT_OPERAND (RZ, history[0]),
3178 MIPS16_REG)))
3179 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
3180 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
3181 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
3182 && insn_uses_reg (ip, RA, MIPS_GR_REG))
3183 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
3184 && insn_uses_reg (ip,
3185 MIPS16OP_EXTRACT_REG32R
3186 (history[0].insn_opcode),
3187 MIPS_GR_REG))))
3188 /* If the branch writes a register that the previous
3189 instruction sets, we can not swap (we know that
3190 branches write only to RD or to $31). */
3191 || (! mips_opts.mips16
3192 && (prev_pinfo & INSN_WRITE_GPR_T)
3193 && (((pinfo & INSN_WRITE_GPR_D)
3194 && (EXTRACT_OPERAND (RT, history[0])
3195 == EXTRACT_OPERAND (RD, *ip)))
3196 || ((pinfo & INSN_WRITE_GPR_31)
3197 && EXTRACT_OPERAND (RT, history[0]) == RA)))
3198 || (! mips_opts.mips16
3199 && (prev_pinfo & INSN_WRITE_GPR_D)
3200 && (((pinfo & INSN_WRITE_GPR_D)
3201 && (EXTRACT_OPERAND (RD, history[0])
3202 == EXTRACT_OPERAND (RD, *ip)))
3203 || ((pinfo & INSN_WRITE_GPR_31)
3204 && EXTRACT_OPERAND (RD, history[0]) == RA)))
3205 || (mips_opts.mips16
3206 && (pinfo & MIPS16_INSN_WRITE_31)
3207 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
3208 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
3209 && (MIPS16OP_EXTRACT_REG32R (history[0].insn_opcode)
3210 == RA))))
3211 /* If the branch writes a register that the previous
3212 instruction reads, we can not swap (we know that
3213 branches only write to RD or to $31). */
3214 || (! mips_opts.mips16
3215 && (pinfo & INSN_WRITE_GPR_D)
3216 && insn_uses_reg (&history[0],
3217 EXTRACT_OPERAND (RD, *ip),
3218 MIPS_GR_REG))
3219 || (! mips_opts.mips16
3220 && (pinfo & INSN_WRITE_GPR_31)
3221 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
3222 || (mips_opts.mips16
3223 && (pinfo & MIPS16_INSN_WRITE_31)
3224 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
3225 /* If one instruction sets a condition code and the
3226 other one uses a condition code, we can not swap. */
3227 || ((pinfo & INSN_READ_COND_CODE)
3228 && (prev_pinfo & INSN_WRITE_COND_CODE))
3229 || ((pinfo & INSN_WRITE_COND_CODE)
3230 && (prev_pinfo & INSN_READ_COND_CODE))
3231 /* If the previous instruction uses the PC, we can not
3232 swap. */
3233 || (mips_opts.mips16
3234 && (prev_pinfo & MIPS16_INSN_READ_PC))
3235 /* If the previous instruction had a fixup in mips16
3236 mode, we can not swap. This normally means that the
3237 previous instruction was a 4 byte branch anyhow. */
3238 || (mips_opts.mips16 && history[0].fixp[0])
3239 /* If the previous instruction is a sync, sync.l, or
3240 sync.p, we can not swap. */
3241 || (prev_pinfo & INSN_SYNC))
3242 {
3243 if (mips_opts.mips16
3244 && (pinfo & INSN_UNCOND_BRANCH_DELAY)
3245 && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31))
3246 && ISA_SUPPORTS_MIPS16E)
3247 {
3248 /* Convert MIPS16 jr/jalr into a "compact" jump. */
3249 ip->insn_opcode |= 0x0080;
3250 install_insn (ip);
3251 insert_into_history (0, 1, ip);
3252 }
3253 else
3254 {
3255 /* We could do even better for unconditional branches to
3256 portions of this object file; we could pick up the
3257 instruction at the destination, put it in the delay
3258 slot, and bump the destination address. */
3259 insert_into_history (0, 1, ip);
3260 emit_nop ();
3261 }
3262
3263 if (mips_relax.sequence)
3264 mips_relax.sizes[mips_relax.sequence - 1] += 4;
3265 }
3266 else
3267 {
3268 /* It looks like we can actually do the swap. */
3269 struct mips_cl_insn delay = history[0];
3270 if (mips_opts.mips16)
3271 {
3272 know (delay.frag == ip->frag);
3273 move_insn (ip, delay.frag, delay.where);
3274 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
3275 }
3276 else if (relaxed_branch)
3277 {
3278 /* Add the delay slot instruction to the end of the
3279 current frag and shrink the fixed part of the
3280 original frag. If the branch occupies the tail of
3281 the latter, move it backwards to cover the gap. */
3282 delay.frag->fr_fix -= 4;
3283 if (delay.frag == ip->frag)
3284 move_insn (ip, ip->frag, ip->where - 4);
3285 add_fixed_insn (&delay);
3286 }
3287 else
3288 {
3289 move_insn (&delay, ip->frag, ip->where);
3290 move_insn (ip, history[0].frag, history[0].where);
3291 }
3292 history[0] = *ip;
3293 delay.fixed_p = 1;
3294 insert_into_history (0, 1, &delay);
3295 }
3296
3297 /* If that was an unconditional branch, forget the previous
3298 insn information. */
3299 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
3300 mips_no_prev_insn ();
3301 }
3302 else if (pinfo & INSN_COND_BRANCH_LIKELY)
3303 {
3304 /* We don't yet optimize a branch likely. What we should do
3305 is look at the target, copy the instruction found there
3306 into the delay slot, and increment the branch to jump to
3307 the next instruction. */
3308 insert_into_history (0, 1, ip);
3309 emit_nop ();
3310 }
3311 else
3312 insert_into_history (0, 1, ip);
3313 }
3314 else
3315 insert_into_history (0, 1, ip);
3316
3317 /* We just output an insn, so the next one doesn't have a label. */
3318 mips_clear_insn_labels ();
3319 }
3320
3321 /* Forget that there was any previous instruction or label. */
3322
3323 static void
3324 mips_no_prev_insn (void)
3325 {
3326 prev_nop_frag = NULL;
3327 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
3328 mips_clear_insn_labels ();
3329 }
3330
3331 /* This function must be called before we emit something other than
3332 instructions. It is like mips_no_prev_insn except that it inserts
3333 any NOPS that might be needed by previous instructions. */
3334
3335 void
3336 mips_emit_delays (void)
3337 {
3338 if (! mips_opts.noreorder)
3339 {
3340 int nops = nops_for_insn (history, NULL);
3341 if (nops > 0)
3342 {
3343 while (nops-- > 0)
3344 add_fixed_insn (NOP_INSN);
3345 mips_move_labels ();
3346 }
3347 }
3348 mips_no_prev_insn ();
3349 }
3350
3351 /* Start a (possibly nested) noreorder block. */
3352
3353 static void
3354 start_noreorder (void)
3355 {
3356 if (mips_opts.noreorder == 0)
3357 {
3358 unsigned int i;
3359 int nops;
3360
3361 /* None of the instructions before the .set noreorder can be moved. */
3362 for (i = 0; i < ARRAY_SIZE (history); i++)
3363 history[i].fixed_p = 1;
3364
3365 /* Insert any nops that might be needed between the .set noreorder
3366 block and the previous instructions. We will later remove any
3367 nops that turn out not to be needed. */
3368 nops = nops_for_insn (history, NULL);
3369 if (nops > 0)
3370 {
3371 if (mips_optimize != 0)
3372 {
3373 /* Record the frag which holds the nop instructions, so
3374 that we can remove them if we don't need them. */
3375 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
3376 prev_nop_frag = frag_now;
3377 prev_nop_frag_holds = nops;
3378 prev_nop_frag_required = 0;
3379 prev_nop_frag_since = 0;
3380 }
3381
3382 for (; nops > 0; --nops)
3383 add_fixed_insn (NOP_INSN);
3384
3385 /* Move on to a new frag, so that it is safe to simply
3386 decrease the size of prev_nop_frag. */
3387 frag_wane (frag_now);
3388 frag_new (0);
3389 mips_move_labels ();
3390 }
3391 mips16_mark_labels ();
3392 mips_clear_insn_labels ();
3393 }
3394 mips_opts.noreorder++;
3395 mips_any_noreorder = 1;
3396 }
3397
3398 /* End a nested noreorder block. */
3399
3400 static void
3401 end_noreorder (void)
3402 {
3403 mips_opts.noreorder--;
3404 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
3405 {
3406 /* Commit to inserting prev_nop_frag_required nops and go back to
3407 handling nop insertion the .set reorder way. */
3408 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
3409 * (mips_opts.mips16 ? 2 : 4));
3410 insert_into_history (prev_nop_frag_since,
3411 prev_nop_frag_required, NOP_INSN);
3412 prev_nop_frag = NULL;
3413 }
3414 }
3415
3416 /* Set up global variables for the start of a new macro. */
3417
3418 static void
3419 macro_start (void)
3420 {
3421 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
3422 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
3423 && (history[0].insn_mo->pinfo
3424 & (INSN_UNCOND_BRANCH_DELAY
3425 | INSN_COND_BRANCH_DELAY
3426 | INSN_COND_BRANCH_LIKELY)) != 0);
3427 }
3428
3429 /* Given that a macro is longer than 4 bytes, return the appropriate warning
3430 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
3431 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
3432
3433 static const char *
3434 macro_warning (relax_substateT subtype)
3435 {
3436 if (subtype & RELAX_DELAY_SLOT)
3437 return _("Macro instruction expanded into multiple instructions"
3438 " in a branch delay slot");
3439 else if (subtype & RELAX_NOMACRO)
3440 return _("Macro instruction expanded into multiple instructions");
3441 else
3442 return 0;
3443 }
3444
3445 /* Finish up a macro. Emit warnings as appropriate. */
3446
3447 static void
3448 macro_end (void)
3449 {
3450 if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
3451 {
3452 relax_substateT subtype;
3453
3454 /* Set up the relaxation warning flags. */
3455 subtype = 0;
3456 if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
3457 subtype |= RELAX_SECOND_LONGER;
3458 if (mips_opts.warn_about_macros)
3459 subtype |= RELAX_NOMACRO;
3460 if (mips_macro_warning.delay_slot_p)
3461 subtype |= RELAX_DELAY_SLOT;
3462
3463 if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
3464 {
3465 /* Either the macro has a single implementation or both
3466 implementations are longer than 4 bytes. Emit the
3467 warning now. */
3468 const char *msg = macro_warning (subtype);
3469 if (msg != 0)
3470 as_warn (msg);
3471 }
3472 else
3473 {
3474 /* One implementation might need a warning but the other
3475 definitely doesn't. */
3476 mips_macro_warning.first_frag->fr_subtype |= subtype;
3477 }
3478 }
3479 }
3480
3481 /* Read a macro's relocation codes from *ARGS and store them in *R.
3482 The first argument in *ARGS will be either the code for a single
3483 relocation or -1 followed by the three codes that make up a
3484 composite relocation. */
3485
3486 static void
3487 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
3488 {
3489 int i, next;
3490
3491 next = va_arg (*args, int);
3492 if (next >= 0)
3493 r[0] = (bfd_reloc_code_real_type) next;
3494 else
3495 for (i = 0; i < 3; i++)
3496 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
3497 }
3498
3499 /* Build an instruction created by a macro expansion. This is passed
3500 a pointer to the count of instructions created so far, an
3501 expression, the name of the instruction to build, an operand format
3502 string, and corresponding arguments. */
3503
3504 static void
3505 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
3506 {
3507 const struct mips_opcode *mo;
3508 struct mips_cl_insn insn;
3509 bfd_reloc_code_real_type r[3];
3510 va_list args;
3511
3512 va_start (args, fmt);
3513
3514 if (mips_opts.mips16)
3515 {
3516 mips16_macro_build (ep, name, fmt, args);
3517 va_end (args);
3518 return;
3519 }
3520
3521 r[0] = BFD_RELOC_UNUSED;
3522 r[1] = BFD_RELOC_UNUSED;
3523 r[2] = BFD_RELOC_UNUSED;
3524 mo = (struct mips_opcode *) hash_find (op_hash, name);
3525 assert (mo);
3526 assert (strcmp (name, mo->name) == 0);
3527
3528 while (1)
3529 {
3530 /* Search until we get a match for NAME. It is assumed here that
3531 macros will never generate MDMX, MIPS-3D, or MT instructions. */
3532 if (strcmp (fmt, mo->args) == 0
3533 && mo->pinfo != INSN_MACRO
3534 && is_opcode_valid (mo, TRUE))
3535 break;
3536
3537 ++mo;
3538 assert (mo->name);
3539 assert (strcmp (name, mo->name) == 0);
3540 }
3541
3542 create_insn (&insn, mo);
3543 for (;;)
3544 {
3545 switch (*fmt++)
3546 {
3547 case '\0':
3548 break;
3549
3550 case ',':
3551 case '(':
3552 case ')':
3553 continue;
3554
3555 case '+':
3556 switch (*fmt++)
3557 {
3558 case 'A':
3559 case 'E':
3560 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
3561 continue;
3562
3563 case 'B':
3564 case 'F':
3565 /* Note that in the macro case, these arguments are already
3566 in MSB form. (When handling the instruction in the
3567 non-macro case, these arguments are sizes from which
3568 MSB values must be calculated.) */
3569 INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
3570 continue;
3571
3572 case 'C':
3573 case 'G':
3574 case 'H':
3575 /* Note that in the macro case, these arguments are already
3576 in MSBD form. (When handling the instruction in the
3577 non-macro case, these arguments are sizes from which
3578 MSBD values must be calculated.) */
3579 INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
3580 continue;
3581
3582 case 'Q':
3583 INSERT_OPERAND (SEQI, insn, va_arg (args, int));
3584 continue;
3585
3586 default:
3587 internalError ();
3588 }
3589 continue;
3590
3591 case '2':
3592 INSERT_OPERAND (BP, insn, va_arg (args, int));
3593 continue;
3594
3595 case 't':
3596 case 'w':
3597 case 'E':
3598 INSERT_OPERAND (RT, insn, va_arg (args, int));
3599 continue;
3600
3601 case 'c':
3602 INSERT_OPERAND (CODE, insn, va_arg (args, int));
3603 continue;
3604
3605 case 'T':
3606 case 'W':
3607 INSERT_OPERAND (FT, insn, va_arg (args, int));
3608 continue;
3609
3610 case 'd':
3611 case 'G':
3612 case 'K':
3613 INSERT_OPERAND (RD, insn, va_arg (args, int));
3614 continue;
3615
3616 case 'U':
3617 {
3618 int tmp = va_arg (args, int);
3619
3620 INSERT_OPERAND (RT, insn, tmp);
3621 INSERT_OPERAND (RD, insn, tmp);
3622 continue;
3623 }
3624
3625 case 'V':
3626 case 'S':
3627 INSERT_OPERAND (FS, insn, va_arg (args, int));
3628 continue;
3629
3630 case 'z':
3631 continue;
3632
3633 case '<':
3634 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
3635 continue;
3636
3637 case 'D':
3638 INSERT_OPERAND (FD, insn, va_arg (args, int));
3639 continue;
3640
3641 case 'B':
3642 INSERT_OPERAND (CODE20, insn, va_arg (args, int));
3643 continue;
3644
3645 case 'J':
3646 INSERT_OPERAND (CODE19, insn, va_arg (args, int));
3647 continue;
3648
3649 case 'q':
3650 INSERT_OPERAND (CODE2, insn, va_arg (args, int));
3651 continue;
3652
3653 case 'b':
3654 case 's':
3655 case 'r':
3656 case 'v':
3657 INSERT_OPERAND (RS, insn, va_arg (args, int));
3658 continue;
3659
3660 case 'i':
3661 case 'j':
3662 case 'o':
3663 macro_read_relocs (&args, r);
3664 assert (*r == BFD_RELOC_GPREL16
3665 || *r == BFD_RELOC_MIPS_LITERAL
3666 || *r == BFD_RELOC_MIPS_HIGHER
3667 || *r == BFD_RELOC_HI16_S
3668 || *r == BFD_RELOC_LO16
3669 || *r == BFD_RELOC_MIPS_GOT16
3670 || *r == BFD_RELOC_MIPS_CALL16
3671 || *r == BFD_RELOC_MIPS_GOT_DISP
3672 || *r == BFD_RELOC_MIPS_GOT_PAGE
3673 || *r == BFD_RELOC_MIPS_GOT_OFST
3674 || *r == BFD_RELOC_MIPS_GOT_LO16
3675 || *r == BFD_RELOC_MIPS_CALL_LO16);
3676 continue;
3677
3678 case 'u':
3679 macro_read_relocs (&args, r);
3680 assert (ep != NULL
3681 && (ep->X_op == O_constant
3682 || (ep->X_op == O_symbol
3683 && (*r == BFD_RELOC_MIPS_HIGHEST
3684 || *r == BFD_RELOC_HI16_S
3685 || *r == BFD_RELOC_HI16
3686 || *r == BFD_RELOC_GPREL16
3687 || *r == BFD_RELOC_MIPS_GOT_HI16
3688 || *r == BFD_RELOC_MIPS_CALL_HI16))));
3689 continue;
3690
3691 case 'p':
3692 assert (ep != NULL);
3693
3694 /*
3695 * This allows macro() to pass an immediate expression for
3696 * creating short branches without creating a symbol.
3697 *
3698 * We don't allow branch relaxation for these branches, as
3699 * they should only appear in ".set nomacro" anyway.
3700 */
3701 if (ep->X_op == O_constant)
3702 {
3703 if ((ep->X_add_number & 3) != 0)
3704 as_bad (_("branch to misaligned address (0x%lx)"),
3705 (unsigned long) ep->X_add_number);
3706 if ((ep->X_add_number + 0x20000) & ~0x3ffff)
3707 as_bad (_("branch address range overflow (0x%lx)"),
3708 (unsigned long) ep->X_add_number);
3709 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
3710 ep = NULL;
3711 }
3712 else
3713 *r = BFD_RELOC_16_PCREL_S2;
3714 continue;
3715
3716 case 'a':
3717 assert (ep != NULL);
3718 *r = BFD_RELOC_MIPS_JMP;
3719 continue;
3720
3721 case 'C':
3722 INSERT_OPERAND (COPZ, insn, va_arg (args, unsigned long));
3723 continue;
3724
3725 case 'k':
3726 INSERT_OPERAND (CACHE, insn, va_arg (args, unsigned long));
3727 continue;
3728
3729 default:
3730 internalError ();
3731 }
3732 break;
3733 }
3734 va_end (args);
3735 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
3736
3737 append_insn (&insn, ep, r);
3738 }
3739
3740 static void
3741 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
3742 va_list args)
3743 {
3744 struct mips_opcode *mo;
3745 struct mips_cl_insn insn;
3746 bfd_reloc_code_real_type r[3]
3747 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3748
3749 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
3750 assert (mo);
3751 assert (strcmp (name, mo->name) == 0);
3752
3753 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
3754 {
3755 ++mo;
3756 assert (mo->name);
3757 assert (strcmp (name, mo->name) == 0);
3758 }
3759
3760 create_insn (&insn, mo);
3761 for (;;)
3762 {
3763 int c;
3764
3765 c = *fmt++;
3766 switch (c)
3767 {
3768 case '\0':
3769 break;
3770
3771 case ',':
3772 case '(':
3773 case ')':
3774 continue;
3775
3776 case 'y':
3777 case 'w':
3778 MIPS16_INSERT_OPERAND (RY, insn, va_arg (args, int));
3779 continue;
3780
3781 case 'x':
3782 case 'v':
3783 MIPS16_INSERT_OPERAND (RX, insn, va_arg (args, int));
3784 continue;
3785
3786 case 'z':
3787 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (args, int));
3788 continue;
3789
3790 case 'Z':
3791 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (args, int));
3792 continue;
3793
3794 case '0':
3795 case 'S':
3796 case 'P':
3797 case 'R':
3798 continue;
3799
3800 case 'X':
3801 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (args, int));
3802 continue;
3803
3804 case 'Y':
3805 {
3806 int regno;
3807
3808 regno = va_arg (args, int);
3809 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
3810 MIPS16_INSERT_OPERAND (REG32R, insn, regno);
3811 }
3812 continue;
3813
3814 case '<':
3815 case '>':
3816 case '4':
3817 case '5':
3818 case 'H':
3819 case 'W':
3820 case 'D':
3821 case 'j':
3822 case '8':
3823 case 'V':
3824 case 'C':
3825 case 'U':
3826 case 'k':
3827 case 'K':
3828 case 'p':
3829 case 'q':
3830 {
3831 assert (ep != NULL);
3832
3833 if (ep->X_op != O_constant)
3834 *r = (int) BFD_RELOC_UNUSED + c;
3835 else
3836 {
3837 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
3838 FALSE, &insn.insn_opcode, &insn.use_extend,
3839 &insn.extend);
3840 ep = NULL;
3841 *r = BFD_RELOC_UNUSED;
3842 }
3843 }
3844 continue;
3845
3846 case '6':
3847 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (args, int));
3848 continue;
3849 }
3850
3851 break;
3852 }
3853
3854 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
3855
3856 append_insn (&insn, ep, r);
3857 }
3858
3859 /*
3860 * Sign-extend 32-bit mode constants that have bit 31 set and all
3861 * higher bits unset.
3862 */
3863 static void
3864 normalize_constant_expr (expressionS *ex)
3865 {
3866 if (ex->X_op == O_constant
3867 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3868 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3869 - 0x80000000);
3870 }
3871
3872 /*
3873 * Sign-extend 32-bit mode address offsets that have bit 31 set and
3874 * all higher bits unset.
3875 */
3876 static void
3877 normalize_address_expr (expressionS *ex)
3878 {
3879 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
3880 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
3881 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3882 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3883 - 0x80000000);
3884 }
3885
3886 /*
3887 * Generate a "jalr" instruction with a relocation hint to the called
3888 * function. This occurs in NewABI PIC code.
3889 */
3890 static void
3891 macro_build_jalr (expressionS *ep)
3892 {
3893 char *f = NULL;
3894
3895 if (HAVE_NEWABI)
3896 {
3897 frag_grow (8);
3898 f = frag_more (0);
3899 }
3900 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
3901 if (HAVE_NEWABI)
3902 fix_new_exp (frag_now, f - frag_now->fr_literal,
3903 4, ep, FALSE, BFD_RELOC_MIPS_JALR);
3904 }
3905
3906 /*
3907 * Generate a "lui" instruction.
3908 */
3909 static void
3910 macro_build_lui (expressionS *ep, int regnum)
3911 {
3912 expressionS high_expr;
3913 const struct mips_opcode *mo;
3914 struct mips_cl_insn insn;
3915 bfd_reloc_code_real_type r[3]
3916 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3917 const char *name = "lui";
3918 const char *fmt = "t,u";
3919
3920 assert (! mips_opts.mips16);
3921
3922 high_expr = *ep;
3923
3924 if (high_expr.X_op == O_constant)
3925 {
3926 /* We can compute the instruction now without a relocation entry. */
3927 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
3928 >> 16) & 0xffff;
3929 *r = BFD_RELOC_UNUSED;
3930 }
3931 else
3932 {
3933 assert (ep->X_op == O_symbol);
3934 /* _gp_disp is a special case, used from s_cpload.
3935 __gnu_local_gp is used if mips_no_shared. */
3936 assert (mips_pic == NO_PIC
3937 || (! HAVE_NEWABI
3938 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
3939 || (! mips_in_shared
3940 && strcmp (S_GET_NAME (ep->X_add_symbol),
3941 "__gnu_local_gp") == 0));
3942 *r = BFD_RELOC_HI16_S;
3943 }
3944
3945 mo = hash_find (op_hash, name);
3946 assert (strcmp (name, mo->name) == 0);
3947 assert (strcmp (fmt, mo->args) == 0);
3948 create_insn (&insn, mo);
3949
3950 insn.insn_opcode = insn.insn_mo->match;
3951 INSERT_OPERAND (RT, insn, regnum);
3952 if (*r == BFD_RELOC_UNUSED)
3953 {
3954 insn.insn_opcode |= high_expr.X_add_number;
3955 append_insn (&insn, NULL, r);
3956 }
3957 else
3958 append_insn (&insn, &high_expr, r);
3959 }
3960
3961 /* Generate a sequence of instructions to do a load or store from a constant
3962 offset off of a base register (breg) into/from a target register (treg),
3963 using AT if necessary. */
3964 static void
3965 macro_build_ldst_constoffset (expressionS *ep, const char *op,
3966 int treg, int breg, int dbl)
3967 {
3968 assert (ep->X_op == O_constant);
3969
3970 /* Sign-extending 32-bit constants makes their handling easier. */
3971 if (!dbl)
3972 normalize_constant_expr (ep);
3973
3974 /* Right now, this routine can only handle signed 32-bit constants. */
3975 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
3976 as_warn (_("operand overflow"));
3977
3978 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
3979 {
3980 /* Signed 16-bit offset will fit in the op. Easy! */
3981 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
3982 }
3983 else
3984 {
3985 /* 32-bit offset, need multiple instructions and AT, like:
3986 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
3987 addu $tempreg,$tempreg,$breg
3988 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
3989 to handle the complete offset. */
3990 macro_build_lui (ep, AT);
3991 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
3992 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
3993
3994 if (!mips_opts.at)
3995 as_bad (_("Macro used $at after \".set noat\""));
3996 }
3997 }
3998
3999 /* set_at()
4000 * Generates code to set the $at register to true (one)
4001 * if reg is less than the immediate expression.
4002 */
4003 static void
4004 set_at (int reg, int unsignedp)
4005 {
4006 if (imm_expr.X_op == O_constant
4007 && imm_expr.X_add_number >= -0x8000
4008 && imm_expr.X_add_number < 0x8000)
4009 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
4010 AT, reg, BFD_RELOC_LO16);
4011 else
4012 {
4013 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4014 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
4015 }
4016 }
4017
4018 /* Warn if an expression is not a constant. */
4019
4020 static void
4021 check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
4022 {
4023 if (ex->X_op == O_big)
4024 as_bad (_("unsupported large constant"));
4025 else if (ex->X_op != O_constant)
4026 as_bad (_("Instruction %s requires absolute expression"),
4027 ip->insn_mo->name);
4028
4029 if (HAVE_32BIT_GPRS)
4030 normalize_constant_expr (ex);
4031 }
4032
4033 /* Count the leading zeroes by performing a binary chop. This is a
4034 bulky bit of source, but performance is a LOT better for the
4035 majority of values than a simple loop to count the bits:
4036 for (lcnt = 0; (lcnt < 32); lcnt++)
4037 if ((v) & (1 << (31 - lcnt)))
4038 break;
4039 However it is not code size friendly, and the gain will drop a bit
4040 on certain cached systems.
4041 */
4042 #define COUNT_TOP_ZEROES(v) \
4043 (((v) & ~0xffff) == 0 \
4044 ? ((v) & ~0xff) == 0 \
4045 ? ((v) & ~0xf) == 0 \
4046 ? ((v) & ~0x3) == 0 \
4047 ? ((v) & ~0x1) == 0 \
4048 ? !(v) \
4049 ? 32 \
4050 : 31 \
4051 : 30 \
4052 : ((v) & ~0x7) == 0 \
4053 ? 29 \
4054 : 28 \
4055 : ((v) & ~0x3f) == 0 \
4056 ? ((v) & ~0x1f) == 0 \
4057 ? 27 \
4058 : 26 \
4059 : ((v) & ~0x7f) == 0 \
4060 ? 25 \
4061 : 24 \
4062 : ((v) & ~0xfff) == 0 \
4063 ? ((v) & ~0x3ff) == 0 \
4064 ? ((v) & ~0x1ff) == 0 \
4065 ? 23 \
4066 : 22 \
4067 : ((v) & ~0x7ff) == 0 \
4068 ? 21 \
4069 : 20 \
4070 : ((v) & ~0x3fff) == 0 \
4071 ? ((v) & ~0x1fff) == 0 \
4072 ? 19 \
4073 : 18 \
4074 : ((v) & ~0x7fff) == 0 \
4075 ? 17 \
4076 : 16 \
4077 : ((v) & ~0xffffff) == 0 \
4078 ? ((v) & ~0xfffff) == 0 \
4079 ? ((v) & ~0x3ffff) == 0 \
4080 ? ((v) & ~0x1ffff) == 0 \
4081 ? 15 \
4082 : 14 \
4083 : ((v) & ~0x7ffff) == 0 \
4084 ? 13 \
4085 : 12 \
4086 : ((v) & ~0x3fffff) == 0 \
4087 ? ((v) & ~0x1fffff) == 0 \
4088 ? 11 \
4089 : 10 \
4090 : ((v) & ~0x7fffff) == 0 \
4091 ? 9 \
4092 : 8 \
4093 : ((v) & ~0xfffffff) == 0 \
4094 ? ((v) & ~0x3ffffff) == 0 \
4095 ? ((v) & ~0x1ffffff) == 0 \
4096 ? 7 \
4097 : 6 \
4098 : ((v) & ~0x7ffffff) == 0 \
4099 ? 5 \
4100 : 4 \
4101 : ((v) & ~0x3fffffff) == 0 \
4102 ? ((v) & ~0x1fffffff) == 0 \
4103 ? 3 \
4104 : 2 \
4105 : ((v) & ~0x7fffffff) == 0 \
4106 ? 1 \
4107 : 0)
4108
4109 /* load_register()
4110 * This routine generates the least number of instructions necessary to load
4111 * an absolute expression value into a register.
4112 */
4113 static void
4114 load_register (int reg, expressionS *ep, int dbl)
4115 {
4116 int freg;
4117 expressionS hi32, lo32;
4118
4119 if (ep->X_op != O_big)
4120 {
4121 assert (ep->X_op == O_constant);
4122
4123 /* Sign-extending 32-bit constants makes their handling easier. */
4124 if (!dbl)
4125 normalize_constant_expr (ep);
4126
4127 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
4128 {
4129 /* We can handle 16 bit signed values with an addiu to
4130 $zero. No need to ever use daddiu here, since $zero and
4131 the result are always correct in 32 bit mode. */
4132 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4133 return;
4134 }
4135 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
4136 {
4137 /* We can handle 16 bit unsigned values with an ori to
4138 $zero. */
4139 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
4140 return;
4141 }
4142 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
4143 {
4144 /* 32 bit values require an lui. */
4145 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
4146 if ((ep->X_add_number & 0xffff) != 0)
4147 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
4148 return;
4149 }
4150 }
4151
4152 /* The value is larger than 32 bits. */
4153
4154 if (!dbl || HAVE_32BIT_GPRS)
4155 {
4156 char value[32];
4157
4158 sprintf_vma (value, ep->X_add_number);
4159 as_bad (_("Number (0x%s) larger than 32 bits"), value);
4160 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4161 return;
4162 }
4163
4164 if (ep->X_op != O_big)
4165 {
4166 hi32 = *ep;
4167 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4168 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
4169 hi32.X_add_number &= 0xffffffff;
4170 lo32 = *ep;
4171 lo32.X_add_number &= 0xffffffff;
4172 }
4173 else
4174 {
4175 assert (ep->X_add_number > 2);
4176 if (ep->X_add_number == 3)
4177 generic_bignum[3] = 0;
4178 else if (ep->X_add_number > 4)
4179 as_bad (_("Number larger than 64 bits"));
4180 lo32.X_op = O_constant;
4181 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
4182 hi32.X_op = O_constant;
4183 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
4184 }
4185
4186 if (hi32.X_add_number == 0)
4187 freg = 0;
4188 else
4189 {
4190 int shift, bit;
4191 unsigned long hi, lo;
4192
4193 if (hi32.X_add_number == (offsetT) 0xffffffff)
4194 {
4195 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
4196 {
4197 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4198 return;
4199 }
4200 if (lo32.X_add_number & 0x80000000)
4201 {
4202 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
4203 if (lo32.X_add_number & 0xffff)
4204 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
4205 return;
4206 }
4207 }
4208
4209 /* Check for 16bit shifted constant. We know that hi32 is
4210 non-zero, so start the mask on the first bit of the hi32
4211 value. */
4212 shift = 17;
4213 do
4214 {
4215 unsigned long himask, lomask;
4216
4217 if (shift < 32)
4218 {
4219 himask = 0xffff >> (32 - shift);
4220 lomask = (0xffff << shift) & 0xffffffff;
4221 }
4222 else
4223 {
4224 himask = 0xffff << (shift - 32);
4225 lomask = 0;
4226 }
4227 if ((hi32.X_add_number & ~(offsetT) himask) == 0
4228 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
4229 {
4230 expressionS tmp;
4231
4232 tmp.X_op = O_constant;
4233 if (shift < 32)
4234 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
4235 | (lo32.X_add_number >> shift));
4236 else
4237 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
4238 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
4239 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
4240 reg, reg, (shift >= 32) ? shift - 32 : shift);
4241 return;
4242 }
4243 ++shift;
4244 }
4245 while (shift <= (64 - 16));
4246
4247 /* Find the bit number of the lowest one bit, and store the
4248 shifted value in hi/lo. */
4249 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
4250 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
4251 if (lo != 0)
4252 {
4253 bit = 0;
4254 while ((lo & 1) == 0)
4255 {
4256 lo >>= 1;
4257 ++bit;
4258 }
4259 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
4260 hi >>= bit;
4261 }
4262 else
4263 {
4264 bit = 32;
4265 while ((hi & 1) == 0)
4266 {
4267 hi >>= 1;
4268 ++bit;
4269 }
4270 lo = hi;
4271 hi = 0;
4272 }
4273
4274 /* Optimize if the shifted value is a (power of 2) - 1. */
4275 if ((hi == 0 && ((lo + 1) & lo) == 0)
4276 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
4277 {
4278 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
4279 if (shift != 0)
4280 {
4281 expressionS tmp;
4282
4283 /* This instruction will set the register to be all
4284 ones. */
4285 tmp.X_op = O_constant;
4286 tmp.X_add_number = (offsetT) -1;
4287 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
4288 if (bit != 0)
4289 {
4290 bit += shift;
4291 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
4292 reg, reg, (bit >= 32) ? bit - 32 : bit);
4293 }
4294 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
4295 reg, reg, (shift >= 32) ? shift - 32 : shift);
4296 return;
4297 }
4298 }
4299
4300 /* Sign extend hi32 before calling load_register, because we can
4301 generally get better code when we load a sign extended value. */
4302 if ((hi32.X_add_number & 0x80000000) != 0)
4303 hi32.X_add_number |= ~(offsetT) 0xffffffff;
4304 load_register (reg, &hi32, 0);
4305 freg = reg;
4306 }
4307 if ((lo32.X_add_number & 0xffff0000) == 0)
4308 {
4309 if (freg != 0)
4310 {
4311 macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
4312 freg = reg;
4313 }
4314 }
4315 else
4316 {
4317 expressionS mid16;
4318
4319 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
4320 {
4321 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
4322 macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
4323 return;
4324 }
4325
4326 if (freg != 0)
4327 {
4328 macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
4329 freg = reg;
4330 }
4331 mid16 = lo32;
4332 mid16.X_add_number >>= 16;
4333 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
4334 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4335 freg = reg;
4336 }
4337 if ((lo32.X_add_number & 0xffff) != 0)
4338 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
4339 }
4340
4341 static inline void
4342 load_delay_nop (void)
4343 {
4344 if (!gpr_interlocks)
4345 macro_build (NULL, "nop", "");
4346 }
4347
4348 /* Load an address into a register. */
4349
4350 static void
4351 load_address (int reg, expressionS *ep, int *used_at)
4352 {
4353 if (ep->X_op != O_constant
4354 && ep->X_op != O_symbol)
4355 {
4356 as_bad (_("expression too complex"));
4357 ep->X_op = O_constant;
4358 }
4359
4360 if (ep->X_op == O_constant)
4361 {
4362 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
4363 return;
4364 }
4365
4366 if (mips_pic == NO_PIC)
4367 {
4368 /* If this is a reference to a GP relative symbol, we want
4369 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
4370 Otherwise we want
4371 lui $reg,<sym> (BFD_RELOC_HI16_S)
4372 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
4373 If we have an addend, we always use the latter form.
4374
4375 With 64bit address space and a usable $at we want
4376 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4377 lui $at,<sym> (BFD_RELOC_HI16_S)
4378 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4379 daddiu $at,<sym> (BFD_RELOC_LO16)
4380 dsll32 $reg,0
4381 daddu $reg,$reg,$at
4382
4383 If $at is already in use, we use a path which is suboptimal
4384 on superscalar processors.
4385 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4386 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
4387 dsll $reg,16
4388 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
4389 dsll $reg,16
4390 daddiu $reg,<sym> (BFD_RELOC_LO16)
4391
4392 For GP relative symbols in 64bit address space we can use
4393 the same sequence as in 32bit address space. */
4394 if (HAVE_64BIT_SYMBOLS)
4395 {
4396 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
4397 && !nopic_need_relax (ep->X_add_symbol, 1))
4398 {
4399 relax_start (ep->X_add_symbol);
4400 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
4401 mips_gp_register, BFD_RELOC_GPREL16);
4402 relax_switch ();
4403 }
4404
4405 if (*used_at == 0 && mips_opts.at)
4406 {
4407 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4408 macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
4409 macro_build (ep, "daddiu", "t,r,j", reg, reg,
4410 BFD_RELOC_MIPS_HIGHER);
4411 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
4412 macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
4413 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
4414 *used_at = 1;
4415 }
4416 else
4417 {
4418 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
4419 macro_build (ep, "daddiu", "t,r,j", reg, reg,
4420 BFD_RELOC_MIPS_HIGHER);
4421 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4422 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
4423 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
4424 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
4425 }
4426
4427 if (mips_relax.sequence)
4428 relax_end ();
4429 }
4430 else
4431 {
4432 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
4433 && !nopic_need_relax (ep->X_add_symbol, 1))
4434 {
4435 relax_start (ep->X_add_symbol);
4436 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
4437 mips_gp_register, BFD_RELOC_GPREL16);
4438 relax_switch ();
4439 }
4440 macro_build_lui (ep, reg);
4441 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
4442 reg, reg, BFD_RELOC_LO16);
4443 if (mips_relax.sequence)
4444 relax_end ();
4445 }
4446 }
4447 else if (!mips_big_got)
4448 {
4449 expressionS ex;
4450
4451 /* If this is a reference to an external symbol, we want
4452 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4453 Otherwise we want
4454 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4455 nop
4456 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
4457 If there is a constant, it must be added in after.
4458
4459 If we have NewABI, we want
4460 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
4461 unless we're referencing a global symbol with a non-zero
4462 offset, in which case cst must be added separately. */
4463 if (HAVE_NEWABI)
4464 {
4465 if (ep->X_add_number)
4466 {
4467 ex.X_add_number = ep->X_add_number;
4468 ep->X_add_number = 0;
4469 relax_start (ep->X_add_symbol);
4470 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4471 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4472 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4473 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4474 ex.X_op = O_constant;
4475 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
4476 reg, reg, BFD_RELOC_LO16);
4477 ep->X_add_number = ex.X_add_number;
4478 relax_switch ();
4479 }
4480 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4481 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4482 if (mips_relax.sequence)
4483 relax_end ();
4484 }
4485 else
4486 {
4487 ex.X_add_number = ep->X_add_number;
4488 ep->X_add_number = 0;
4489 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4490 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4491 load_delay_nop ();
4492 relax_start (ep->X_add_symbol);
4493 relax_switch ();
4494 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4495 BFD_RELOC_LO16);
4496 relax_end ();
4497
4498 if (ex.X_add_number != 0)
4499 {
4500 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4501 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4502 ex.X_op = O_constant;
4503 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
4504 reg, reg, BFD_RELOC_LO16);
4505 }
4506 }
4507 }
4508 else if (mips_big_got)
4509 {
4510 expressionS ex;
4511
4512 /* This is the large GOT case. If this is a reference to an
4513 external symbol, we want
4514 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4515 addu $reg,$reg,$gp
4516 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
4517
4518 Otherwise, for a reference to a local symbol in old ABI, we want
4519 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4520 nop
4521 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
4522 If there is a constant, it must be added in after.
4523
4524 In the NewABI, for local symbols, with or without offsets, we want:
4525 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
4526 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
4527 */
4528 if (HAVE_NEWABI)
4529 {
4530 ex.X_add_number = ep->X_add_number;
4531 ep->X_add_number = 0;
4532 relax_start (ep->X_add_symbol);
4533 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4534 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4535 reg, reg, mips_gp_register);
4536 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4537 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4538 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4539 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4540 else if (ex.X_add_number)
4541 {
4542 ex.X_op = O_constant;
4543 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4544 BFD_RELOC_LO16);
4545 }
4546
4547 ep->X_add_number = ex.X_add_number;
4548 relax_switch ();
4549 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4550 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
4551 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4552 BFD_RELOC_MIPS_GOT_OFST);
4553 relax_end ();
4554 }
4555 else
4556 {
4557 ex.X_add_number = ep->X_add_number;
4558 ep->X_add_number = 0;
4559 relax_start (ep->X_add_symbol);
4560 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
4561 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
4562 reg, reg, mips_gp_register);
4563 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
4564 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
4565 relax_switch ();
4566 if (reg_needs_delay (mips_gp_register))
4567 {
4568 /* We need a nop before loading from $gp. This special
4569 check is required because the lui which starts the main
4570 instruction stream does not refer to $gp, and so will not
4571 insert the nop which may be required. */
4572 macro_build (NULL, "nop", "");
4573 }
4574 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
4575 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4576 load_delay_nop ();
4577 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4578 BFD_RELOC_LO16);
4579 relax_end ();
4580
4581 if (ex.X_add_number != 0)
4582 {
4583 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4584 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4585 ex.X_op = O_constant;
4586 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4587 BFD_RELOC_LO16);
4588 }
4589 }
4590 }
4591 else
4592 abort ();
4593
4594 if (!mips_opts.at && *used_at == 1)
4595 as_bad (_("Macro used $at after \".set noat\""));
4596 }
4597
4598 /* Move the contents of register SOURCE into register DEST. */
4599
4600 static void
4601 move_register (int dest, int source)
4602 {
4603 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4604 dest, source, 0);
4605 }
4606
4607 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
4608 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4609 The two alternatives are:
4610
4611 Global symbol Local sybmol
4612 ------------- ------------
4613 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4614 ... ...
4615 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4616
4617 load_got_offset emits the first instruction and add_got_offset
4618 emits the second for a 16-bit offset or add_got_offset_hilo emits
4619 a sequence to add a 32-bit offset using a scratch register. */
4620
4621 static void
4622 load_got_offset (int dest, expressionS *local)
4623 {
4624 expressionS global;
4625
4626 global = *local;
4627 global.X_add_number = 0;
4628
4629 relax_start (local->X_add_symbol);
4630 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4631 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4632 relax_switch ();
4633 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4634 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4635 relax_end ();
4636 }
4637
4638 static void
4639 add_got_offset (int dest, expressionS *local)
4640 {
4641 expressionS global;
4642
4643 global.X_op = O_constant;
4644 global.X_op_symbol = NULL;
4645 global.X_add_symbol = NULL;
4646 global.X_add_number = local->X_add_number;
4647
4648 relax_start (local->X_add_symbol);
4649 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4650 dest, dest, BFD_RELOC_LO16);
4651 relax_switch ();
4652 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4653 relax_end ();
4654 }
4655
4656 static void
4657 add_got_offset_hilo (int dest, expressionS *local, int tmp)
4658 {
4659 expressionS global;
4660 int hold_mips_optimize;
4661
4662 global.X_op = O_constant;
4663 global.X_op_symbol = NULL;
4664 global.X_add_symbol = NULL;
4665 global.X_add_number = local->X_add_number;
4666
4667 relax_start (local->X_add_symbol);
4668 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
4669 relax_switch ();
4670 /* Set mips_optimize around the lui instruction to avoid
4671 inserting an unnecessary nop after the lw. */
4672 hold_mips_optimize = mips_optimize;
4673 mips_optimize = 2;
4674 macro_build_lui (&global, tmp);
4675 mips_optimize = hold_mips_optimize;
4676 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
4677 relax_end ();
4678
4679 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
4680 }
4681
4682 /*
4683 * Build macros
4684 * This routine implements the seemingly endless macro or synthesized
4685 * instructions and addressing modes in the mips assembly language. Many
4686 * of these macros are simple and are similar to each other. These could
4687 * probably be handled by some kind of table or grammar approach instead of
4688 * this verbose method. Others are not simple macros but are more like
4689 * optimizing code generation.
4690 * One interesting optimization is when several store macros appear
4691 * consecutively that would load AT with the upper half of the same address.
4692 * The ensuing load upper instructions are ommited. This implies some kind
4693 * of global optimization. We currently only optimize within a single macro.
4694 * For many of the load and store macros if the address is specified as a
4695 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4696 * first load register 'at' with zero and use it as the base register. The
4697 * mips assembler simply uses register $zero. Just one tiny optimization
4698 * we're missing.
4699 */
4700 static void
4701 macro (struct mips_cl_insn *ip)
4702 {
4703 unsigned int treg, sreg, dreg, breg;
4704 unsigned int tempreg;
4705 int mask;
4706 int used_at = 0;
4707 expressionS expr1;
4708 const char *s;
4709 const char *s2;
4710 const char *fmt;
4711 int likely = 0;
4712 int dbl = 0;
4713 int coproc = 0;
4714 int lr = 0;
4715 int imm = 0;
4716 int call = 0;
4717 int off;
4718 offsetT maxnum;
4719 bfd_reloc_code_real_type r;
4720 int hold_mips_optimize;
4721
4722 assert (! mips_opts.mips16);
4723
4724 treg = (ip->insn_opcode >> 16) & 0x1f;
4725 dreg = (ip->insn_opcode >> 11) & 0x1f;
4726 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
4727 mask = ip->insn_mo->mask;
4728
4729 expr1.X_op = O_constant;
4730 expr1.X_op_symbol = NULL;
4731 expr1.X_add_symbol = NULL;
4732 expr1.X_add_number = 1;
4733
4734 switch (mask)
4735 {
4736 case M_DABS:
4737 dbl = 1;
4738 case M_ABS:
4739 /* bgez $a0,.+12
4740 move v0,$a0
4741 sub v0,$zero,$a0
4742 */
4743
4744 start_noreorder ();
4745
4746 expr1.X_add_number = 8;
4747 macro_build (&expr1, "bgez", "s,p", sreg);
4748 if (dreg == sreg)
4749 macro_build (NULL, "nop", "", 0);
4750 else
4751 move_register (dreg, sreg);
4752 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
4753
4754 end_noreorder ();
4755 break;
4756
4757 case M_ADD_I:
4758 s = "addi";
4759 s2 = "add";
4760 goto do_addi;
4761 case M_ADDU_I:
4762 s = "addiu";
4763 s2 = "addu";
4764 goto do_addi;
4765 case M_DADD_I:
4766 dbl = 1;
4767 s = "daddi";
4768 s2 = "dadd";
4769 goto do_addi;
4770 case M_DADDU_I:
4771 dbl = 1;
4772 s = "daddiu";
4773 s2 = "daddu";
4774 do_addi:
4775 if (imm_expr.X_op == O_constant
4776 && imm_expr.X_add_number >= -0x8000
4777 && imm_expr.X_add_number < 0x8000)
4778 {
4779 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
4780 break;
4781 }
4782 used_at = 1;
4783 load_register (AT, &imm_expr, dbl);
4784 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
4785 break;
4786
4787 case M_AND_I:
4788 s = "andi";
4789 s2 = "and";
4790 goto do_bit;
4791 case M_OR_I:
4792 s = "ori";
4793 s2 = "or";
4794 goto do_bit;
4795 case M_NOR_I:
4796 s = "";
4797 s2 = "nor";
4798 goto do_bit;
4799 case M_XOR_I:
4800 s = "xori";
4801 s2 = "xor";
4802 do_bit:
4803 if (imm_expr.X_op == O_constant
4804 && imm_expr.X_add_number >= 0
4805 && imm_expr.X_add_number < 0x10000)
4806 {
4807 if (mask != M_NOR_I)
4808 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
4809 else
4810 {
4811 macro_build (&imm_expr, "ori", "t,r,i",
4812 treg, sreg, BFD_RELOC_LO16);
4813 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
4814 }
4815 break;
4816 }
4817
4818 used_at = 1;
4819 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4820 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
4821 break;
4822
4823 case M_BALIGN:
4824 switch (imm_expr.X_add_number)
4825 {
4826 case 0:
4827 macro_build (NULL, "nop", "");
4828 break;
4829 case 2:
4830 macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg);
4831 break;
4832 default:
4833 macro_build (NULL, "balign", "t,s,2", treg, sreg,
4834 (int)imm_expr.X_add_number);
4835 break;
4836 }
4837 break;
4838
4839 case M_BEQ_I:
4840 s = "beq";
4841 goto beq_i;
4842 case M_BEQL_I:
4843 s = "beql";
4844 likely = 1;
4845 goto beq_i;
4846 case M_BNE_I:
4847 s = "bne";
4848 goto beq_i;
4849 case M_BNEL_I:
4850 s = "bnel";
4851 likely = 1;
4852 beq_i:
4853 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4854 {
4855 macro_build (&offset_expr, s, "s,t,p", sreg, 0);
4856 break;
4857 }
4858 used_at = 1;
4859 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4860 macro_build (&offset_expr, s, "s,t,p", sreg, AT);
4861 break;
4862
4863 case M_BGEL:
4864 likely = 1;
4865 case M_BGE:
4866 if (treg == 0)
4867 {
4868 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
4869 break;
4870 }
4871 if (sreg == 0)
4872 {
4873 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
4874 break;
4875 }
4876 used_at = 1;
4877 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4878 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4879 break;
4880
4881 case M_BGTL_I:
4882 likely = 1;
4883 case M_BGT_I:
4884 /* check for > max integer */
4885 maxnum = 0x7fffffff;
4886 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4887 {
4888 maxnum <<= 16;
4889 maxnum |= 0xffff;
4890 maxnum <<= 16;
4891 maxnum |= 0xffff;
4892 }
4893 if (imm_expr.X_op == O_constant
4894 && imm_expr.X_add_number >= maxnum
4895 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4896 {
4897 do_false:
4898 /* result is always false */
4899 if (! likely)
4900 macro_build (NULL, "nop", "", 0);
4901 else
4902 macro_build (&offset_expr, "bnel", "s,t,p", 0, 0);
4903 break;
4904 }
4905 if (imm_expr.X_op != O_constant)
4906 as_bad (_("Unsupported large constant"));
4907 ++imm_expr.X_add_number;
4908 /* FALLTHROUGH */
4909 case M_BGE_I:
4910 case M_BGEL_I:
4911 if (mask == M_BGEL_I)
4912 likely = 1;
4913 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4914 {
4915 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
4916 break;
4917 }
4918 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4919 {
4920 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
4921 break;
4922 }
4923 maxnum = 0x7fffffff;
4924 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4925 {
4926 maxnum <<= 16;
4927 maxnum |= 0xffff;
4928 maxnum <<= 16;
4929 maxnum |= 0xffff;
4930 }
4931 maxnum = - maxnum - 1;
4932 if (imm_expr.X_op == O_constant
4933 && imm_expr.X_add_number <= maxnum
4934 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4935 {
4936 do_true:
4937 /* result is always true */
4938 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
4939 macro_build (&offset_expr, "b", "p");
4940 break;
4941 }
4942 used_at = 1;
4943 set_at (sreg, 0);
4944 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4945 break;
4946
4947 case M_BGEUL:
4948 likely = 1;
4949 case M_BGEU:
4950 if (treg == 0)
4951 goto do_true;
4952 if (sreg == 0)
4953 {
4954 macro_build (&offset_expr, likely ? "beql" : "beq",
4955 "s,t,p", 0, treg);
4956 break;
4957 }
4958 used_at = 1;
4959 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4960 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4961 break;
4962
4963 case M_BGTUL_I:
4964 likely = 1;
4965 case M_BGTU_I:
4966 if (sreg == 0
4967 || (HAVE_32BIT_GPRS
4968 && imm_expr.X_op == O_constant
4969 && imm_expr.X_add_number == (offsetT) 0xffffffff))
4970 goto do_false;
4971 if (imm_expr.X_op != O_constant)
4972 as_bad (_("Unsupported large constant"));
4973 ++imm_expr.X_add_number;
4974 /* FALLTHROUGH */
4975 case M_BGEU_I:
4976 case M_BGEUL_I:
4977 if (mask == M_BGEUL_I)
4978 likely = 1;
4979 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4980 goto do_true;
4981 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4982 {
4983 macro_build (&offset_expr, likely ? "bnel" : "bne",
4984 "s,t,p", sreg, 0);
4985 break;
4986 }
4987 used_at = 1;
4988 set_at (sreg, 1);
4989 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4990 break;
4991
4992 case M_BGTL:
4993 likely = 1;
4994 case M_BGT:
4995 if (treg == 0)
4996 {
4997 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
4998 break;
4999 }
5000 if (sreg == 0)
5001 {
5002 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
5003 break;
5004 }
5005 used_at = 1;
5006 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5007 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
5008 break;
5009
5010 case M_BGTUL:
5011 likely = 1;
5012 case M_BGTU:
5013 if (treg == 0)
5014 {
5015 macro_build (&offset_expr, likely ? "bnel" : "bne",
5016 "s,t,p", sreg, 0);
5017 break;
5018 }
5019 if (sreg == 0)
5020 goto do_false;
5021 used_at = 1;
5022 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5023 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
5024 break;
5025
5026 case M_BLEL:
5027 likely = 1;
5028 case M_BLE:
5029 if (treg == 0)
5030 {
5031 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
5032 break;
5033 }
5034 if (sreg == 0)
5035 {
5036 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
5037 break;
5038 }
5039 used_at = 1;
5040 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
5041 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
5042 break;
5043
5044 case M_BLEL_I:
5045 likely = 1;
5046 case M_BLE_I:
5047 maxnum = 0x7fffffff;
5048 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
5049 {
5050 maxnum <<= 16;
5051 maxnum |= 0xffff;
5052 maxnum <<= 16;
5053 maxnum |= 0xffff;
5054 }
5055 if (imm_expr.X_op == O_constant
5056 && imm_expr.X_add_number >= maxnum
5057 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
5058 goto do_true;
5059 if (imm_expr.X_op != O_constant)
5060 as_bad (_("Unsupported large constant"));
5061 ++imm_expr.X_add_number;
5062 /* FALLTHROUGH */
5063 case M_BLT_I:
5064 case M_BLTL_I:
5065 if (mask == M_BLTL_I)
5066 likely = 1;
5067 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5068 {
5069 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
5070 break;
5071 }
5072 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5073 {
5074 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
5075 break;
5076 }
5077 used_at = 1;
5078 set_at (sreg, 0);
5079 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
5080 break;
5081
5082 case M_BLEUL:
5083 likely = 1;
5084 case M_BLEU:
5085 if (treg == 0)
5086 {
5087 macro_build (&offset_expr, likely ? "beql" : "beq",
5088 "s,t,p", sreg, 0);
5089 break;
5090 }
5091 if (sreg == 0)
5092 goto do_true;
5093 used_at = 1;
5094 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
5095 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
5096 break;
5097
5098 case M_BLEUL_I:
5099 likely = 1;
5100 case M_BLEU_I:
5101 if (sreg == 0
5102 || (HAVE_32BIT_GPRS
5103 && imm_expr.X_op == O_constant
5104 && imm_expr.X_add_number == (offsetT) 0xffffffff))
5105 goto do_true;
5106 if (imm_expr.X_op != O_constant)
5107 as_bad (_("Unsupported large constant"));
5108 ++imm_expr.X_add_number;
5109 /* FALLTHROUGH */
5110 case M_BLTU_I:
5111 case M_BLTUL_I:
5112 if (mask == M_BLTUL_I)
5113 likely = 1;
5114 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5115 goto do_false;
5116 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5117 {
5118 macro_build (&offset_expr, likely ? "beql" : "beq",
5119 "s,t,p", sreg, 0);
5120 break;
5121 }
5122 used_at = 1;
5123 set_at (sreg, 1);
5124 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
5125 break;
5126
5127 case M_BLTL:
5128 likely = 1;
5129 case M_BLT:
5130 if (treg == 0)
5131 {
5132 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
5133 break;
5134 }
5135 if (sreg == 0)
5136 {
5137 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
5138 break;
5139 }
5140 used_at = 1;
5141 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
5142 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
5143 break;
5144
5145 case M_BLTUL:
5146 likely = 1;
5147 case M_BLTU:
5148 if (treg == 0)
5149 goto do_false;
5150 if (sreg == 0)
5151 {
5152 macro_build (&offset_expr, likely ? "bnel" : "bne",
5153 "s,t,p", 0, treg);
5154 break;
5155 }
5156 used_at = 1;
5157 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
5158 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
5159 break;
5160
5161 case M_DEXT:
5162 {
5163 unsigned long pos;
5164 unsigned long size;
5165
5166 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5167 {
5168 as_bad (_("Unsupported large constant"));
5169 pos = size = 1;
5170 }
5171 else
5172 {
5173 pos = (unsigned long) imm_expr.X_add_number;
5174 size = (unsigned long) imm2_expr.X_add_number;
5175 }
5176
5177 if (pos > 63)
5178 {
5179 as_bad (_("Improper position (%lu)"), pos);
5180 pos = 1;
5181 }
5182 if (size == 0 || size > 64
5183 || (pos + size - 1) > 63)
5184 {
5185 as_bad (_("Improper extract size (%lu, position %lu)"),
5186 size, pos);
5187 size = 1;
5188 }
5189
5190 if (size <= 32 && pos < 32)
5191 {
5192 s = "dext";
5193 fmt = "t,r,+A,+C";
5194 }
5195 else if (size <= 32)
5196 {
5197 s = "dextu";
5198 fmt = "t,r,+E,+H";
5199 }
5200 else
5201 {
5202 s = "dextm";
5203 fmt = "t,r,+A,+G";
5204 }
5205 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1);
5206 }
5207 break;
5208
5209 case M_DINS:
5210 {
5211 unsigned long pos;
5212 unsigned long size;
5213
5214 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
5215 {
5216 as_bad (_("Unsupported large constant"));
5217 pos = size = 1;
5218 }
5219 else
5220 {
5221 pos = (unsigned long) imm_expr.X_add_number;
5222 size = (unsigned long) imm2_expr.X_add_number;
5223 }
5224
5225 if (pos > 63)
5226 {
5227 as_bad (_("Improper position (%lu)"), pos);
5228 pos = 1;
5229 }
5230 if (size == 0 || size > 64
5231 || (pos + size - 1) > 63)
5232 {
5233 as_bad (_("Improper insert size (%lu, position %lu)"),
5234 size, pos);
5235 size = 1;
5236 }
5237
5238 if (pos < 32 && (pos + size - 1) < 32)
5239 {
5240 s = "dins";
5241 fmt = "t,r,+A,+B";
5242 }
5243 else if (pos >= 32)
5244 {
5245 s = "dinsu";
5246 fmt = "t,r,+E,+F";
5247 }
5248 else
5249 {
5250 s = "dinsm";
5251 fmt = "t,r,+A,+F";
5252 }
5253 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, (int) pos,
5254 (int) (pos + size - 1));
5255 }
5256 break;
5257
5258 case M_DDIV_3:
5259 dbl = 1;
5260 case M_DIV_3:
5261 s = "mflo";
5262 goto do_div3;
5263 case M_DREM_3:
5264 dbl = 1;
5265 case M_REM_3:
5266 s = "mfhi";
5267 do_div3:
5268 if (treg == 0)
5269 {
5270 as_warn (_("Divide by zero."));
5271 if (mips_trap)
5272 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
5273 else
5274 macro_build (NULL, "break", "c", 7);
5275 break;
5276 }
5277
5278 start_noreorder ();
5279 if (mips_trap)
5280 {
5281 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
5282 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
5283 }
5284 else
5285 {
5286 expr1.X_add_number = 8;
5287 macro_build (&expr1, "bne", "s,t,p", treg, 0);
5288 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
5289 macro_build (NULL, "break", "c", 7);
5290 }
5291 expr1.X_add_number = -1;
5292 used_at = 1;
5293 load_register (AT, &expr1, dbl);
5294 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
5295 macro_build (&expr1, "bne", "s,t,p", treg, AT);
5296 if (dbl)
5297 {
5298 expr1.X_add_number = 1;
5299 load_register (AT, &expr1, dbl);
5300 macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
5301 }
5302 else
5303 {
5304 expr1.X_add_number = 0x80000000;
5305 macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
5306 }
5307 if (mips_trap)
5308 {
5309 macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
5310 /* We want to close the noreorder block as soon as possible, so
5311 that later insns are available for delay slot filling. */
5312 end_noreorder ();
5313 }
5314 else
5315 {
5316 expr1.X_add_number = 8;
5317 macro_build (&expr1, "bne", "s,t,p", sreg, AT);
5318 macro_build (NULL, "nop", "", 0);
5319
5320 /* We want to close the noreorder block as soon as possible, so
5321 that later insns are available for delay slot filling. */
5322 end_noreorder ();
5323
5324 macro_build (NULL, "break", "c", 6);
5325 }
5326 macro_build (NULL, s, "d", dreg);
5327 break;
5328
5329 case M_DIV_3I:
5330 s = "div";
5331 s2 = "mflo";
5332 goto do_divi;
5333 case M_DIVU_3I:
5334 s = "divu";
5335 s2 = "mflo";
5336 goto do_divi;
5337 case M_REM_3I:
5338 s = "div";
5339 s2 = "mfhi";
5340 goto do_divi;
5341 case M_REMU_3I:
5342 s = "divu";
5343 s2 = "mfhi";
5344 goto do_divi;
5345 case M_DDIV_3I:
5346 dbl = 1;
5347 s = "ddiv";
5348 s2 = "mflo";
5349 goto do_divi;
5350 case M_DDIVU_3I:
5351 dbl = 1;
5352 s = "ddivu";
5353 s2 = "mflo";
5354 goto do_divi;
5355 case M_DREM_3I:
5356 dbl = 1;
5357 s = "ddiv";
5358 s2 = "mfhi";
5359 goto do_divi;
5360 case M_DREMU_3I:
5361 dbl = 1;
5362 s = "ddivu";
5363 s2 = "mfhi";
5364 do_divi:
5365 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
5366 {
5367 as_warn (_("Divide by zero."));
5368 if (mips_trap)
5369 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
5370 else
5371 macro_build (NULL, "break", "c", 7);
5372 break;
5373 }
5374 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
5375 {
5376 if (strcmp (s2, "mflo") == 0)
5377 move_register (dreg, sreg);
5378 else
5379 move_register (dreg, 0);
5380 break;
5381 }
5382 if (imm_expr.X_op == O_constant
5383 && imm_expr.X_add_number == -1
5384 && s[strlen (s) - 1] != 'u')
5385 {
5386 if (strcmp (s2, "mflo") == 0)
5387 {
5388 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
5389 }
5390 else
5391 move_register (dreg, 0);
5392 break;
5393 }
5394
5395 used_at = 1;
5396 load_register (AT, &imm_expr, dbl);
5397 macro_build (NULL, s, "z,s,t", sreg, AT);
5398 macro_build (NULL, s2, "d", dreg);
5399 break;
5400
5401 case M_DIVU_3:
5402 s = "divu";
5403 s2 = "mflo";
5404 goto do_divu3;
5405 case M_REMU_3:
5406 s = "divu";
5407 s2 = "mfhi";
5408 goto do_divu3;
5409 case M_DDIVU_3:
5410 s = "ddivu";
5411 s2 = "mflo";
5412 goto do_divu3;
5413 case M_DREMU_3:
5414 s = "ddivu";
5415 s2 = "mfhi";
5416 do_divu3:
5417 start_noreorder ();
5418 if (mips_trap)
5419 {
5420 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
5421 macro_build (NULL, s, "z,s,t", sreg, treg);
5422 /* We want to close the noreorder block as soon as possible, so
5423 that later insns are available for delay slot filling. */
5424 end_noreorder ();
5425 }
5426 else
5427 {
5428 expr1.X_add_number = 8;
5429 macro_build (&expr1, "bne", "s,t,p", treg, 0);
5430 macro_build (NULL, s, "z,s,t", sreg, treg);
5431
5432 /* We want to close the noreorder block as soon as possible, so
5433 that later insns are available for delay slot filling. */
5434 end_noreorder ();
5435 macro_build (NULL, "break", "c", 7);
5436 }
5437 macro_build (NULL, s2, "d", dreg);
5438 break;
5439
5440 case M_DLCA_AB:
5441 dbl = 1;
5442 case M_LCA_AB:
5443 call = 1;
5444 goto do_la;
5445 case M_DLA_AB:
5446 dbl = 1;
5447 case M_LA_AB:
5448 do_la:
5449 /* Load the address of a symbol into a register. If breg is not
5450 zero, we then add a base register to it. */
5451
5452 if (dbl && HAVE_32BIT_GPRS)
5453 as_warn (_("dla used to load 32-bit register"));
5454
5455 if (! dbl && HAVE_64BIT_OBJECTS)
5456 as_warn (_("la used to load 64-bit address"));
5457
5458 if (offset_expr.X_op == O_constant
5459 && offset_expr.X_add_number >= -0x8000
5460 && offset_expr.X_add_number < 0x8000)
5461 {
5462 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
5463 "t,r,j", treg, sreg, BFD_RELOC_LO16);
5464 break;
5465 }
5466
5467 if (mips_opts.at && (treg == breg))
5468 {
5469 tempreg = AT;
5470 used_at = 1;
5471 }
5472 else
5473 {
5474 tempreg = treg;
5475 }
5476
5477 if (offset_expr.X_op != O_symbol
5478 && offset_expr.X_op != O_constant)
5479 {
5480 as_bad (_("expression too complex"));
5481 offset_expr.X_op = O_constant;
5482 }
5483
5484 if (offset_expr.X_op == O_constant)
5485 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
5486 else if (mips_pic == NO_PIC)
5487 {
5488 /* If this is a reference to a GP relative symbol, we want
5489 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
5490 Otherwise we want
5491 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5492 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5493 If we have a constant, we need two instructions anyhow,
5494 so we may as well always use the latter form.
5495
5496 With 64bit address space and a usable $at we want
5497 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5498 lui $at,<sym> (BFD_RELOC_HI16_S)
5499 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5500 daddiu $at,<sym> (BFD_RELOC_LO16)
5501 dsll32 $tempreg,0
5502 daddu $tempreg,$tempreg,$at
5503
5504 If $at is already in use, we use a path which is suboptimal
5505 on superscalar processors.
5506 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5507 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5508 dsll $tempreg,16
5509 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5510 dsll $tempreg,16
5511 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
5512
5513 For GP relative symbols in 64bit address space we can use
5514 the same sequence as in 32bit address space. */
5515 if (HAVE_64BIT_SYMBOLS)
5516 {
5517 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5518 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5519 {
5520 relax_start (offset_expr.X_add_symbol);
5521 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5522 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5523 relax_switch ();
5524 }
5525
5526 if (used_at == 0 && mips_opts.at)
5527 {
5528 macro_build (&offset_expr, "lui", "t,u",
5529 tempreg, BFD_RELOC_MIPS_HIGHEST);
5530 macro_build (&offset_expr, "lui", "t,u",
5531 AT, BFD_RELOC_HI16_S);
5532 macro_build (&offset_expr, "daddiu", "t,r,j",
5533 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
5534 macro_build (&offset_expr, "daddiu", "t,r,j",
5535 AT, AT, BFD_RELOC_LO16);
5536 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
5537 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
5538 used_at = 1;
5539 }
5540 else
5541 {
5542 macro_build (&offset_expr, "lui", "t,u",
5543 tempreg, BFD_RELOC_MIPS_HIGHEST);
5544 macro_build (&offset_expr, "daddiu", "t,r,j",
5545 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
5546 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5547 macro_build (&offset_expr, "daddiu", "t,r,j",
5548 tempreg, tempreg, BFD_RELOC_HI16_S);
5549 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5550 macro_build (&offset_expr, "daddiu", "t,r,j",
5551 tempreg, tempreg, BFD_RELOC_LO16);
5552 }
5553
5554 if (mips_relax.sequence)
5555 relax_end ();
5556 }
5557 else
5558 {
5559 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5560 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5561 {
5562 relax_start (offset_expr.X_add_symbol);
5563 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5564 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
5565 relax_switch ();
5566 }
5567 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
5568 as_bad (_("offset too large"));
5569 macro_build_lui (&offset_expr, tempreg);
5570 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5571 tempreg, tempreg, BFD_RELOC_LO16);
5572 if (mips_relax.sequence)
5573 relax_end ();
5574 }
5575 }
5576 else if (!mips_big_got && !HAVE_NEWABI)
5577 {
5578 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5579
5580 /* If this is a reference to an external symbol, and there
5581 is no constant, we want
5582 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5583 or for lca or if tempreg is PIC_CALL_REG
5584 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5585 For a local symbol, we want
5586 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5587 nop
5588 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5589
5590 If we have a small constant, and this is a reference to
5591 an external symbol, we want
5592 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5593 nop
5594 addiu $tempreg,$tempreg,<constant>
5595 For a local symbol, we want the same instruction
5596 sequence, but we output a BFD_RELOC_LO16 reloc on the
5597 addiu instruction.
5598
5599 If we have a large constant, and this is a reference to
5600 an external symbol, we want
5601 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5602 lui $at,<hiconstant>
5603 addiu $at,$at,<loconstant>
5604 addu $tempreg,$tempreg,$at
5605 For a local symbol, we want the same instruction
5606 sequence, but we output a BFD_RELOC_LO16 reloc on the
5607 addiu instruction.
5608 */
5609
5610 if (offset_expr.X_add_number == 0)
5611 {
5612 if (mips_pic == SVR4_PIC
5613 && breg == 0
5614 && (call || tempreg == PIC_CALL_REG))
5615 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
5616
5617 relax_start (offset_expr.X_add_symbol);
5618 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5619 lw_reloc_type, mips_gp_register);
5620 if (breg != 0)
5621 {
5622 /* We're going to put in an addu instruction using
5623 tempreg, so we may as well insert the nop right
5624 now. */
5625 load_delay_nop ();
5626 }
5627 relax_switch ();
5628 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5629 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
5630 load_delay_nop ();
5631 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5632 tempreg, tempreg, BFD_RELOC_LO16);
5633 relax_end ();
5634 /* FIXME: If breg == 0, and the next instruction uses
5635 $tempreg, then if this variant case is used an extra
5636 nop will be generated. */
5637 }
5638 else if (offset_expr.X_add_number >= -0x8000
5639 && offset_expr.X_add_number < 0x8000)
5640 {
5641 load_got_offset (tempreg, &offset_expr);
5642 load_delay_nop ();
5643 add_got_offset (tempreg, &offset_expr);
5644 }
5645 else
5646 {
5647 expr1.X_add_number = offset_expr.X_add_number;
5648 offset_expr.X_add_number =
5649 ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000;
5650 load_got_offset (tempreg, &offset_expr);
5651 offset_expr.X_add_number = expr1.X_add_number;
5652 /* If we are going to add in a base register, and the
5653 target register and the base register are the same,
5654 then we are using AT as a temporary register. Since
5655 we want to load the constant into AT, we add our
5656 current AT (from the global offset table) and the
5657 register into the register now, and pretend we were
5658 not using a base register. */
5659 if (breg == treg)
5660 {
5661 load_delay_nop ();
5662 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5663 treg, AT, breg);
5664 breg = 0;
5665 tempreg = treg;
5666 }
5667 add_got_offset_hilo (tempreg, &offset_expr, AT);
5668 used_at = 1;
5669 }
5670 }
5671 else if (!mips_big_got && HAVE_NEWABI)
5672 {
5673 int add_breg_early = 0;
5674
5675 /* If this is a reference to an external, and there is no
5676 constant, or local symbol (*), with or without a
5677 constant, we want
5678 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5679 or for lca or if tempreg is PIC_CALL_REG
5680 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5681
5682 If we have a small constant, and this is a reference to
5683 an external symbol, we want
5684 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5685 addiu $tempreg,$tempreg,<constant>
5686
5687 If we have a large constant, and this is a reference to
5688 an external symbol, we want
5689 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5690 lui $at,<hiconstant>
5691 addiu $at,$at,<loconstant>
5692 addu $tempreg,$tempreg,$at
5693
5694 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
5695 local symbols, even though it introduces an additional
5696 instruction. */
5697
5698 if (offset_expr.X_add_number)
5699 {
5700 expr1.X_add_number = offset_expr.X_add_number;
5701 offset_expr.X_add_number = 0;
5702
5703 relax_start (offset_expr.X_add_symbol);
5704 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5705 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5706
5707 if (expr1.X_add_number >= -0x8000
5708 && expr1.X_add_number < 0x8000)
5709 {
5710 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5711 tempreg, tempreg, BFD_RELOC_LO16);
5712 }
5713 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
5714 {
5715 int dreg;
5716
5717 /* If we are going to add in a base register, and the
5718 target register and the base register are the same,
5719 then we are using AT as a temporary register. Since
5720 we want to load the constant into AT, we add our
5721 current AT (from the global offset table) and the
5722 register into the register now, and pretend we were
5723 not using a base register. */
5724 if (breg != treg)
5725 dreg = tempreg;
5726 else
5727 {
5728 assert (tempreg == AT);
5729 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5730 treg, AT, breg);
5731 dreg = treg;
5732 add_breg_early = 1;
5733 }
5734
5735 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5736 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5737 dreg, dreg, AT);
5738
5739 used_at = 1;
5740 }
5741 else
5742 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5743
5744 relax_switch ();
5745 offset_expr.X_add_number = expr1.X_add_number;
5746
5747 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5748 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5749 if (add_breg_early)
5750 {
5751 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5752 treg, tempreg, breg);
5753 breg = 0;
5754 tempreg = treg;
5755 }
5756 relax_end ();
5757 }
5758 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
5759 {
5760 relax_start (offset_expr.X_add_symbol);
5761 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5762 BFD_RELOC_MIPS_CALL16, mips_gp_register);
5763 relax_switch ();
5764 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5765 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5766 relax_end ();
5767 }
5768 else
5769 {
5770 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5771 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5772 }
5773 }
5774 else if (mips_big_got && !HAVE_NEWABI)
5775 {
5776 int gpdelay;
5777 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5778 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
5779 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5780
5781 /* This is the large GOT case. If this is a reference to an
5782 external symbol, and there is no constant, we want
5783 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5784 addu $tempreg,$tempreg,$gp
5785 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5786 or for lca or if tempreg is PIC_CALL_REG
5787 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5788 addu $tempreg,$tempreg,$gp
5789 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5790 For a local symbol, we want
5791 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5792 nop
5793 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5794
5795 If we have a small constant, and this is a reference to
5796 an external symbol, we want
5797 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5798 addu $tempreg,$tempreg,$gp
5799 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5800 nop
5801 addiu $tempreg,$tempreg,<constant>
5802 For a local symbol, we want
5803 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5804 nop
5805 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5806
5807 If we have a large constant, and this is a reference to
5808 an external symbol, we want
5809 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5810 addu $tempreg,$tempreg,$gp
5811 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5812 lui $at,<hiconstant>
5813 addiu $at,$at,<loconstant>
5814 addu $tempreg,$tempreg,$at
5815 For a local symbol, we want
5816 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5817 lui $at,<hiconstant>
5818 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5819 addu $tempreg,$tempreg,$at
5820 */
5821
5822 expr1.X_add_number = offset_expr.X_add_number;
5823 offset_expr.X_add_number = 0;
5824 relax_start (offset_expr.X_add_symbol);
5825 gpdelay = reg_needs_delay (mips_gp_register);
5826 if (expr1.X_add_number == 0 && breg == 0
5827 && (call || tempreg == PIC_CALL_REG))
5828 {
5829 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5830 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5831 }
5832 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5833 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5834 tempreg, tempreg, mips_gp_register);
5835 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5836 tempreg, lw_reloc_type, tempreg);
5837 if (expr1.X_add_number == 0)
5838 {
5839 if (breg != 0)
5840 {
5841 /* We're going to put in an addu instruction using
5842 tempreg, so we may as well insert the nop right
5843 now. */
5844 load_delay_nop ();
5845 }
5846 }
5847 else if (expr1.X_add_number >= -0x8000
5848 && expr1.X_add_number < 0x8000)
5849 {
5850 load_delay_nop ();
5851 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5852 tempreg, tempreg, BFD_RELOC_LO16);
5853 }
5854 else
5855 {
5856 int dreg;
5857
5858 /* If we are going to add in a base register, and the
5859 target register and the base register are the same,
5860 then we are using AT as a temporary register. Since
5861 we want to load the constant into AT, we add our
5862 current AT (from the global offset table) and the
5863 register into the register now, and pretend we were
5864 not using a base register. */
5865 if (breg != treg)
5866 dreg = tempreg;
5867 else
5868 {
5869 assert (tempreg == AT);
5870 load_delay_nop ();
5871 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5872 treg, AT, breg);
5873 dreg = treg;
5874 }
5875
5876 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5877 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
5878
5879 used_at = 1;
5880 }
5881 offset_expr.X_add_number =
5882 ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
5883 relax_switch ();
5884
5885 if (gpdelay)
5886 {
5887 /* This is needed because this instruction uses $gp, but
5888 the first instruction on the main stream does not. */
5889 macro_build (NULL, "nop", "");
5890 }
5891
5892 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5893 local_reloc_type, mips_gp_register);
5894 if (expr1.X_add_number >= -0x8000
5895 && expr1.X_add_number < 0x8000)
5896 {
5897 load_delay_nop ();
5898 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5899 tempreg, tempreg, BFD_RELOC_LO16);
5900 /* FIXME: If add_number is 0, and there was no base
5901 register, the external symbol case ended with a load,
5902 so if the symbol turns out to not be external, and
5903 the next instruction uses tempreg, an unnecessary nop
5904 will be inserted. */
5905 }
5906 else
5907 {
5908 if (breg == treg)
5909 {
5910 /* We must add in the base register now, as in the
5911 external symbol case. */
5912 assert (tempreg == AT);
5913 load_delay_nop ();
5914 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5915 treg, AT, breg);
5916 tempreg = treg;
5917 /* We set breg to 0 because we have arranged to add
5918 it in in both cases. */
5919 breg = 0;
5920 }
5921
5922 macro_build_lui (&expr1, AT);
5923 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5924 AT, AT, BFD_RELOC_LO16);
5925 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5926 tempreg, tempreg, AT);
5927 used_at = 1;
5928 }
5929 relax_end ();
5930 }
5931 else if (mips_big_got && HAVE_NEWABI)
5932 {
5933 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5934 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
5935 int add_breg_early = 0;
5936
5937 /* This is the large GOT case. If this is a reference to an
5938 external symbol, and there is no constant, we want
5939 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5940 add $tempreg,$tempreg,$gp
5941 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5942 or for lca or if tempreg is PIC_CALL_REG
5943 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5944 add $tempreg,$tempreg,$gp
5945 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5946
5947 If we have a small constant, and this is a reference to
5948 an external symbol, we want
5949 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5950 add $tempreg,$tempreg,$gp
5951 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5952 addi $tempreg,$tempreg,<constant>
5953
5954 If we have a large constant, and this is a reference to
5955 an external symbol, we want
5956 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5957 addu $tempreg,$tempreg,$gp
5958 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5959 lui $at,<hiconstant>
5960 addi $at,$at,<loconstant>
5961 add $tempreg,$tempreg,$at
5962
5963 If we have NewABI, and we know it's a local symbol, we want
5964 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5965 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5966 otherwise we have to resort to GOT_HI16/GOT_LO16. */
5967
5968 relax_start (offset_expr.X_add_symbol);
5969
5970 expr1.X_add_number = offset_expr.X_add_number;
5971 offset_expr.X_add_number = 0;
5972
5973 if (expr1.X_add_number == 0 && breg == 0
5974 && (call || tempreg == PIC_CALL_REG))
5975 {
5976 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5977 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5978 }
5979 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5980 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5981 tempreg, tempreg, mips_gp_register);
5982 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5983 tempreg, lw_reloc_type, tempreg);
5984
5985 if (expr1.X_add_number == 0)
5986 ;
5987 else if (expr1.X_add_number >= -0x8000
5988 && expr1.X_add_number < 0x8000)
5989 {
5990 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5991 tempreg, tempreg, BFD_RELOC_LO16);
5992 }
5993 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
5994 {
5995 int dreg;
5996
5997 /* If we are going to add in a base register, and the
5998 target register and the base register are the same,
5999 then we are using AT as a temporary register. Since
6000 we want to load the constant into AT, we add our
6001 current AT (from the global offset table) and the
6002 register into the register now, and pretend we were
6003 not using a base register. */
6004 if (breg != treg)
6005 dreg = tempreg;
6006 else
6007 {
6008 assert (tempreg == AT);
6009 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6010 treg, AT, breg);
6011 dreg = treg;
6012 add_breg_early = 1;
6013 }
6014
6015 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
6016 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
6017
6018 used_at = 1;
6019 }
6020 else
6021 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
6022
6023 relax_switch ();
6024 offset_expr.X_add_number = expr1.X_add_number;
6025 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6026 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6027 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6028 tempreg, BFD_RELOC_MIPS_GOT_OFST);
6029 if (add_breg_early)
6030 {
6031 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6032 treg, tempreg, breg);
6033 breg = 0;
6034 tempreg = treg;
6035 }
6036 relax_end ();
6037 }
6038 else
6039 abort ();
6040
6041 if (breg != 0)
6042 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
6043 break;
6044
6045 case M_J_A:
6046 /* The j instruction may not be used in PIC code, since it
6047 requires an absolute address. We convert it to a b
6048 instruction. */
6049 if (mips_pic == NO_PIC)
6050 macro_build (&offset_expr, "j", "a");
6051 else
6052 macro_build (&offset_expr, "b", "p");
6053 break;
6054
6055 /* The jal instructions must be handled as macros because when
6056 generating PIC code they expand to multi-instruction
6057 sequences. Normally they are simple instructions. */
6058 case M_JAL_1:
6059 dreg = RA;
6060 /* Fall through. */
6061 case M_JAL_2:
6062 if (mips_pic == NO_PIC)
6063 macro_build (NULL, "jalr", "d,s", dreg, sreg);
6064 else
6065 {
6066 if (sreg != PIC_CALL_REG)
6067 as_warn (_("MIPS PIC call to register other than $25"));
6068
6069 macro_build (NULL, "jalr", "d,s", dreg, sreg);
6070 if (mips_pic == SVR4_PIC && !HAVE_NEWABI)
6071 {
6072 if (mips_cprestore_offset < 0)
6073 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6074 else
6075 {
6076 if (! mips_frame_reg_valid)
6077 {
6078 as_warn (_("No .frame pseudo-op used in PIC code"));
6079 /* Quiet this warning. */
6080 mips_frame_reg_valid = 1;
6081 }
6082 if (! mips_cprestore_valid)
6083 {
6084 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6085 /* Quiet this warning. */
6086 mips_cprestore_valid = 1;
6087 }
6088 expr1.X_add_number = mips_cprestore_offset;
6089 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
6090 mips_gp_register,
6091 mips_frame_reg,
6092 HAVE_64BIT_ADDRESSES);
6093 }
6094 }
6095 }
6096
6097 break;
6098
6099 case M_JAL_A:
6100 if (mips_pic == NO_PIC)
6101 macro_build (&offset_expr, "jal", "a");
6102 else if (mips_pic == SVR4_PIC)
6103 {
6104 /* If this is a reference to an external symbol, and we are
6105 using a small GOT, we want
6106 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
6107 nop
6108 jalr $ra,$25
6109 nop
6110 lw $gp,cprestore($sp)
6111 The cprestore value is set using the .cprestore
6112 pseudo-op. If we are using a big GOT, we want
6113 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
6114 addu $25,$25,$gp
6115 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
6116 nop
6117 jalr $ra,$25
6118 nop
6119 lw $gp,cprestore($sp)
6120 If the symbol is not external, we want
6121 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6122 nop
6123 addiu $25,$25,<sym> (BFD_RELOC_LO16)
6124 jalr $ra,$25
6125 nop
6126 lw $gp,cprestore($sp)
6127
6128 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
6129 sequences above, minus nops, unless the symbol is local,
6130 which enables us to use GOT_PAGE/GOT_OFST (big got) or
6131 GOT_DISP. */
6132 if (HAVE_NEWABI)
6133 {
6134 if (! mips_big_got)
6135 {
6136 relax_start (offset_expr.X_add_symbol);
6137 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6138 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
6139 mips_gp_register);
6140 relax_switch ();
6141 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6142 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
6143 mips_gp_register);
6144 relax_end ();
6145 }
6146 else
6147 {
6148 relax_start (offset_expr.X_add_symbol);
6149 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6150 BFD_RELOC_MIPS_CALL_HI16);
6151 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6152 PIC_CALL_REG, mips_gp_register);
6153 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6154 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6155 PIC_CALL_REG);
6156 relax_switch ();
6157 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6158 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
6159 mips_gp_register);
6160 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6161 PIC_CALL_REG, PIC_CALL_REG,
6162 BFD_RELOC_MIPS_GOT_OFST);
6163 relax_end ();
6164 }
6165
6166 macro_build_jalr (&offset_expr);
6167 }
6168 else
6169 {
6170 relax_start (offset_expr.X_add_symbol);
6171 if (! mips_big_got)
6172 {
6173 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6174 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
6175 mips_gp_register);
6176 load_delay_nop ();
6177 relax_switch ();
6178 }
6179 else
6180 {
6181 int gpdelay;
6182
6183 gpdelay = reg_needs_delay (mips_gp_register);
6184 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
6185 BFD_RELOC_MIPS_CALL_HI16);
6186 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
6187 PIC_CALL_REG, mips_gp_register);
6188 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6189 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
6190 PIC_CALL_REG);
6191 load_delay_nop ();
6192 relax_switch ();
6193 if (gpdelay)
6194 macro_build (NULL, "nop", "");
6195 }
6196 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6197 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
6198 mips_gp_register);
6199 load_delay_nop ();
6200 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
6201 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
6202 relax_end ();
6203 macro_build_jalr (&offset_expr);
6204
6205 if (mips_cprestore_offset < 0)
6206 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6207 else
6208 {
6209 if (! mips_frame_reg_valid)
6210 {
6211 as_warn (_("No .frame pseudo-op used in PIC code"));
6212 /* Quiet this warning. */
6213 mips_frame_reg_valid = 1;
6214 }
6215 if (! mips_cprestore_valid)
6216 {
6217 as_warn (_("No .cprestore pseudo-op used in PIC code"));
6218 /* Quiet this warning. */
6219 mips_cprestore_valid = 1;
6220 }
6221 if (mips_opts.noreorder)
6222 macro_build (NULL, "nop", "");
6223 expr1.X_add_number = mips_cprestore_offset;
6224 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
6225 mips_gp_register,
6226 mips_frame_reg,
6227 HAVE_64BIT_ADDRESSES);
6228 }
6229 }
6230 }
6231 else if (mips_pic == VXWORKS_PIC)
6232 as_bad (_("Non-PIC jump used in PIC library"));
6233 else
6234 abort ();
6235
6236 break;
6237
6238 case M_LB_AB:
6239 s = "lb";
6240 goto ld;
6241 case M_LBU_AB:
6242 s = "lbu";
6243 goto ld;
6244 case M_LH_AB:
6245 s = "lh";
6246 goto ld;
6247 case M_LHU_AB:
6248 s = "lhu";
6249 goto ld;
6250 case M_LW_AB:
6251 s = "lw";
6252 goto ld;
6253 case M_LWC0_AB:
6254 s = "lwc0";
6255 /* Itbl support may require additional care here. */
6256 coproc = 1;
6257 goto ld;
6258 case M_LWC1_AB:
6259 s = "lwc1";
6260 /* Itbl support may require additional care here. */
6261 coproc = 1;
6262 goto ld;
6263 case M_LWC2_AB:
6264 s = "lwc2";
6265 /* Itbl support may require additional care here. */
6266 coproc = 1;
6267 goto ld;
6268 case M_LWC3_AB:
6269 s = "lwc3";
6270 /* Itbl support may require additional care here. */
6271 coproc = 1;
6272 goto ld;
6273 case M_LWL_AB:
6274 s = "lwl";
6275 lr = 1;
6276 goto ld;
6277 case M_LWR_AB:
6278 s = "lwr";
6279 lr = 1;
6280 goto ld;
6281 case M_LDC1_AB:
6282 s = "ldc1";
6283 /* Itbl support may require additional care here. */
6284 coproc = 1;
6285 goto ld;
6286 case M_LDC2_AB:
6287 s = "ldc2";
6288 /* Itbl support may require additional care here. */
6289 coproc = 1;
6290 goto ld;
6291 case M_LDC3_AB:
6292 s = "ldc3";
6293 /* Itbl support may require additional care here. */
6294 coproc = 1;
6295 goto ld;
6296 case M_LDL_AB:
6297 s = "ldl";
6298 lr = 1;
6299 goto ld;
6300 case M_LDR_AB:
6301 s = "ldr";
6302 lr = 1;
6303 goto ld;
6304 case M_LL_AB:
6305 s = "ll";
6306 goto ld;
6307 case M_LLD_AB:
6308 s = "lld";
6309 goto ld;
6310 case M_LWU_AB:
6311 s = "lwu";
6312 ld:
6313 if (breg == treg || coproc || lr)
6314 {
6315 tempreg = AT;
6316 used_at = 1;
6317 }
6318 else
6319 {
6320 tempreg = treg;
6321 }
6322 goto ld_st;
6323 case M_SB_AB:
6324 s = "sb";
6325 goto st;
6326 case M_SH_AB:
6327 s = "sh";
6328 goto st;
6329 case M_SW_AB:
6330 s = "sw";
6331 goto st;
6332 case M_SWC0_AB:
6333 s = "swc0";
6334 /* Itbl support may require additional care here. */
6335 coproc = 1;
6336 goto st;
6337 case M_SWC1_AB:
6338 s = "swc1";
6339 /* Itbl support may require additional care here. */
6340 coproc = 1;
6341 goto st;
6342 case M_SWC2_AB:
6343 s = "swc2";
6344 /* Itbl support may require additional care here. */
6345 coproc = 1;
6346 goto st;
6347 case M_SWC3_AB:
6348 s = "swc3";
6349 /* Itbl support may require additional care here. */
6350 coproc = 1;
6351 goto st;
6352 case M_SWL_AB:
6353 s = "swl";
6354 goto st;
6355 case M_SWR_AB:
6356 s = "swr";
6357 goto st;
6358 case M_SC_AB:
6359 s = "sc";
6360 goto st;
6361 case M_SCD_AB:
6362 s = "scd";
6363 goto st;
6364 case M_CACHE_AB:
6365 s = "cache";
6366 goto st;
6367 case M_SDC1_AB:
6368 s = "sdc1";
6369 coproc = 1;
6370 /* Itbl support may require additional care here. */
6371 goto st;
6372 case M_SDC2_AB:
6373 s = "sdc2";
6374 /* Itbl support may require additional care here. */
6375 coproc = 1;
6376 goto st;
6377 case M_SDC3_AB:
6378 s = "sdc3";
6379 /* Itbl support may require additional care here. */
6380 coproc = 1;
6381 goto st;
6382 case M_SDL_AB:
6383 s = "sdl";
6384 goto st;
6385 case M_SDR_AB:
6386 s = "sdr";
6387 st:
6388 tempreg = AT;
6389 used_at = 1;
6390 ld_st:
6391 if (coproc
6392 && NO_ISA_COP (mips_opts.arch)
6393 && (ip->insn_mo->pinfo2 & (INSN2_M_FP_S | INSN2_M_FP_D)) == 0)
6394 {
6395 as_bad (_("opcode not supported on this processor: %s"),
6396 mips_cpu_info_from_arch (mips_opts.arch)->name);
6397 break;
6398 }
6399
6400 /* Itbl support may require additional care here. */
6401 if (mask == M_LWC1_AB
6402 || mask == M_SWC1_AB
6403 || mask == M_LDC1_AB
6404 || mask == M_SDC1_AB
6405 || mask == M_L_DAB
6406 || mask == M_S_DAB)
6407 fmt = "T,o(b)";
6408 else if (mask == M_CACHE_AB)
6409 fmt = "k,o(b)";
6410 else if (coproc)
6411 fmt = "E,o(b)";
6412 else
6413 fmt = "t,o(b)";
6414
6415 if (offset_expr.X_op != O_constant
6416 && offset_expr.X_op != O_symbol)
6417 {
6418 as_bad (_("expression too complex"));
6419 offset_expr.X_op = O_constant;
6420 }
6421
6422 if (HAVE_32BIT_ADDRESSES
6423 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
6424 {
6425 char value [32];
6426
6427 sprintf_vma (value, offset_expr.X_add_number);
6428 as_bad (_("Number (0x%s) larger than 32 bits"), value);
6429 }
6430
6431 /* A constant expression in PIC code can be handled just as it
6432 is in non PIC code. */
6433 if (offset_expr.X_op == O_constant)
6434 {
6435 expr1.X_add_number = ((offset_expr.X_add_number + 0x8000)
6436 & ~(bfd_vma) 0xffff);
6437 normalize_address_expr (&expr1);
6438 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
6439 if (breg != 0)
6440 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6441 tempreg, tempreg, breg);
6442 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6443 }
6444 else if (mips_pic == NO_PIC)
6445 {
6446 /* If this is a reference to a GP relative symbol, and there
6447 is no base register, we want
6448 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6449 Otherwise, if there is no base register, we want
6450 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6451 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6452 If we have a constant, we need two instructions anyhow,
6453 so we always use the latter form.
6454
6455 If we have a base register, and this is a reference to a
6456 GP relative symbol, we want
6457 addu $tempreg,$breg,$gp
6458 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
6459 Otherwise we want
6460 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
6461 addu $tempreg,$tempreg,$breg
6462 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6463 With a constant we always use the latter case.
6464
6465 With 64bit address space and no base register and $at usable,
6466 we want
6467 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6468 lui $at,<sym> (BFD_RELOC_HI16_S)
6469 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6470 dsll32 $tempreg,0
6471 daddu $tempreg,$at
6472 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6473 If we have a base register, we want
6474 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6475 lui $at,<sym> (BFD_RELOC_HI16_S)
6476 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6477 daddu $at,$breg
6478 dsll32 $tempreg,0
6479 daddu $tempreg,$at
6480 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6481
6482 Without $at we can't generate the optimal path for superscalar
6483 processors here since this would require two temporary registers.
6484 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6485 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6486 dsll $tempreg,16
6487 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6488 dsll $tempreg,16
6489 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6490 If we have a base register, we want
6491 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
6492 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
6493 dsll $tempreg,16
6494 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
6495 dsll $tempreg,16
6496 daddu $tempreg,$tempreg,$breg
6497 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6498
6499 For GP relative symbols in 64bit address space we can use
6500 the same sequence as in 32bit address space. */
6501 if (HAVE_64BIT_SYMBOLS)
6502 {
6503 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6504 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6505 {
6506 relax_start (offset_expr.X_add_symbol);
6507 if (breg == 0)
6508 {
6509 macro_build (&offset_expr, s, fmt, treg,
6510 BFD_RELOC_GPREL16, mips_gp_register);
6511 }
6512 else
6513 {
6514 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6515 tempreg, breg, mips_gp_register);
6516 macro_build (&offset_expr, s, fmt, treg,
6517 BFD_RELOC_GPREL16, tempreg);
6518 }
6519 relax_switch ();
6520 }
6521
6522 if (used_at == 0 && mips_opts.at)
6523 {
6524 macro_build (&offset_expr, "lui", "t,u", tempreg,
6525 BFD_RELOC_MIPS_HIGHEST);
6526 macro_build (&offset_expr, "lui", "t,u", AT,
6527 BFD_RELOC_HI16_S);
6528 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6529 tempreg, BFD_RELOC_MIPS_HIGHER);
6530 if (breg != 0)
6531 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
6532 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
6533 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
6534 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
6535 tempreg);
6536 used_at = 1;
6537 }
6538 else
6539 {
6540 macro_build (&offset_expr, "lui", "t,u", tempreg,
6541 BFD_RELOC_MIPS_HIGHEST);
6542 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6543 tempreg, BFD_RELOC_MIPS_HIGHER);
6544 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6545 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
6546 tempreg, BFD_RELOC_HI16_S);
6547 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
6548 if (breg != 0)
6549 macro_build (NULL, "daddu", "d,v,t",
6550 tempreg, tempreg, breg);
6551 macro_build (&offset_expr, s, fmt, treg,
6552 BFD_RELOC_LO16, tempreg);
6553 }
6554
6555 if (mips_relax.sequence)
6556 relax_end ();
6557 break;
6558 }
6559
6560 if (breg == 0)
6561 {
6562 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6563 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6564 {
6565 relax_start (offset_expr.X_add_symbol);
6566 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
6567 mips_gp_register);
6568 relax_switch ();
6569 }
6570 macro_build_lui (&offset_expr, tempreg);
6571 macro_build (&offset_expr, s, fmt, treg,
6572 BFD_RELOC_LO16, tempreg);
6573 if (mips_relax.sequence)
6574 relax_end ();
6575 }
6576 else
6577 {
6578 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6579 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6580 {
6581 relax_start (offset_expr.X_add_symbol);
6582 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6583 tempreg, breg, mips_gp_register);
6584 macro_build (&offset_expr, s, fmt, treg,
6585 BFD_RELOC_GPREL16, tempreg);
6586 relax_switch ();
6587 }
6588 macro_build_lui (&offset_expr, tempreg);
6589 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6590 tempreg, tempreg, breg);
6591 macro_build (&offset_expr, s, fmt, treg,
6592 BFD_RELOC_LO16, tempreg);
6593 if (mips_relax.sequence)
6594 relax_end ();
6595 }
6596 }
6597 else if (!mips_big_got)
6598 {
6599 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
6600
6601 /* If this is a reference to an external symbol, we want
6602 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6603 nop
6604 <op> $treg,0($tempreg)
6605 Otherwise we want
6606 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6607 nop
6608 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6609 <op> $treg,0($tempreg)
6610
6611 For NewABI, we want
6612 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6613 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
6614
6615 If there is a base register, we add it to $tempreg before
6616 the <op>. If there is a constant, we stick it in the
6617 <op> instruction. We don't handle constants larger than
6618 16 bits, because we have no way to load the upper 16 bits
6619 (actually, we could handle them for the subset of cases
6620 in which we are not using $at). */
6621 assert (offset_expr.X_op == O_symbol);
6622 if (HAVE_NEWABI)
6623 {
6624 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6625 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6626 if (breg != 0)
6627 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6628 tempreg, tempreg, breg);
6629 macro_build (&offset_expr, s, fmt, treg,
6630 BFD_RELOC_MIPS_GOT_OFST, tempreg);
6631 break;
6632 }
6633 expr1.X_add_number = offset_expr.X_add_number;
6634 offset_expr.X_add_number = 0;
6635 if (expr1.X_add_number < -0x8000
6636 || expr1.X_add_number >= 0x8000)
6637 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6638 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6639 lw_reloc_type, mips_gp_register);
6640 load_delay_nop ();
6641 relax_start (offset_expr.X_add_symbol);
6642 relax_switch ();
6643 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6644 tempreg, BFD_RELOC_LO16);
6645 relax_end ();
6646 if (breg != 0)
6647 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6648 tempreg, tempreg, breg);
6649 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6650 }
6651 else if (mips_big_got && !HAVE_NEWABI)
6652 {
6653 int gpdelay;
6654
6655 /* If this is a reference to an external symbol, we want
6656 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6657 addu $tempreg,$tempreg,$gp
6658 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6659 <op> $treg,0($tempreg)
6660 Otherwise we want
6661 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6662 nop
6663 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6664 <op> $treg,0($tempreg)
6665 If there is a base register, we add it to $tempreg before
6666 the <op>. If there is a constant, we stick it in the
6667 <op> instruction. We don't handle constants larger than
6668 16 bits, because we have no way to load the upper 16 bits
6669 (actually, we could handle them for the subset of cases
6670 in which we are not using $at). */
6671 assert (offset_expr.X_op == O_symbol);
6672 expr1.X_add_number = offset_expr.X_add_number;
6673 offset_expr.X_add_number = 0;
6674 if (expr1.X_add_number < -0x8000
6675 || expr1.X_add_number >= 0x8000)
6676 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6677 gpdelay = reg_needs_delay (mips_gp_register);
6678 relax_start (offset_expr.X_add_symbol);
6679 macro_build (&offset_expr, "lui", "t,u", tempreg,
6680 BFD_RELOC_MIPS_GOT_HI16);
6681 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6682 mips_gp_register);
6683 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6684 BFD_RELOC_MIPS_GOT_LO16, tempreg);
6685 relax_switch ();
6686 if (gpdelay)
6687 macro_build (NULL, "nop", "");
6688 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6689 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6690 load_delay_nop ();
6691 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6692 tempreg, BFD_RELOC_LO16);
6693 relax_end ();
6694
6695 if (breg != 0)
6696 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6697 tempreg, tempreg, breg);
6698 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6699 }
6700 else if (mips_big_got && HAVE_NEWABI)
6701 {
6702 /* If this is a reference to an external symbol, we want
6703 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6704 add $tempreg,$tempreg,$gp
6705 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6706 <op> $treg,<ofst>($tempreg)
6707 Otherwise, for local symbols, we want:
6708 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6709 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
6710 assert (offset_expr.X_op == O_symbol);
6711 expr1.X_add_number = offset_expr.X_add_number;
6712 offset_expr.X_add_number = 0;
6713 if (expr1.X_add_number < -0x8000
6714 || expr1.X_add_number >= 0x8000)
6715 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6716 relax_start (offset_expr.X_add_symbol);
6717 macro_build (&offset_expr, "lui", "t,u", tempreg,
6718 BFD_RELOC_MIPS_GOT_HI16);
6719 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6720 mips_gp_register);
6721 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6722 BFD_RELOC_MIPS_GOT_LO16, tempreg);
6723 if (breg != 0)
6724 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6725 tempreg, tempreg, breg);
6726 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6727
6728 relax_switch ();
6729 offset_expr.X_add_number = expr1.X_add_number;
6730 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6731 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6732 if (breg != 0)
6733 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6734 tempreg, tempreg, breg);
6735 macro_build (&offset_expr, s, fmt, treg,
6736 BFD_RELOC_MIPS_GOT_OFST, tempreg);
6737 relax_end ();
6738 }
6739 else
6740 abort ();
6741
6742 break;
6743
6744 case M_LI:
6745 case M_LI_S:
6746 load_register (treg, &imm_expr, 0);
6747 break;
6748
6749 case M_DLI:
6750 load_register (treg, &imm_expr, 1);
6751 break;
6752
6753 case M_LI_SS:
6754 if (imm_expr.X_op == O_constant)
6755 {
6756 used_at = 1;
6757 load_register (AT, &imm_expr, 0);
6758 macro_build (NULL, "mtc1", "t,G", AT, treg);
6759 break;
6760 }
6761 else
6762 {
6763 assert (offset_expr.X_op == O_symbol
6764 && strcmp (segment_name (S_GET_SEGMENT
6765 (offset_expr.X_add_symbol)),
6766 ".lit4") == 0
6767 && offset_expr.X_add_number == 0);
6768 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
6769 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
6770 break;
6771 }
6772
6773 case M_LI_D:
6774 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6775 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6776 order 32 bits of the value and the low order 32 bits are either
6777 zero or in OFFSET_EXPR. */
6778 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6779 {
6780 if (HAVE_64BIT_GPRS)
6781 load_register (treg, &imm_expr, 1);
6782 else
6783 {
6784 int hreg, lreg;
6785
6786 if (target_big_endian)
6787 {
6788 hreg = treg;
6789 lreg = treg + 1;
6790 }
6791 else
6792 {
6793 hreg = treg + 1;
6794 lreg = treg;
6795 }
6796
6797 if (hreg <= 31)
6798 load_register (hreg, &imm_expr, 0);
6799 if (lreg <= 31)
6800 {
6801 if (offset_expr.X_op == O_absent)
6802 move_register (lreg, 0);
6803 else
6804 {
6805 assert (offset_expr.X_op == O_constant);
6806 load_register (lreg, &offset_expr, 0);
6807 }
6808 }
6809 }
6810 break;
6811 }
6812
6813 /* We know that sym is in the .rdata section. First we get the
6814 upper 16 bits of the address. */
6815 if (mips_pic == NO_PIC)
6816 {
6817 macro_build_lui (&offset_expr, AT);
6818 used_at = 1;
6819 }
6820 else
6821 {
6822 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6823 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6824 used_at = 1;
6825 }
6826
6827 /* Now we load the register(s). */
6828 if (HAVE_64BIT_GPRS)
6829 {
6830 used_at = 1;
6831 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6832 }
6833 else
6834 {
6835 used_at = 1;
6836 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6837 if (treg != RA)
6838 {
6839 /* FIXME: How in the world do we deal with the possible
6840 overflow here? */
6841 offset_expr.X_add_number += 4;
6842 macro_build (&offset_expr, "lw", "t,o(b)",
6843 treg + 1, BFD_RELOC_LO16, AT);
6844 }
6845 }
6846 break;
6847
6848 case M_LI_DD:
6849 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
6850 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
6851 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
6852 the value and the low order 32 bits are either zero or in
6853 OFFSET_EXPR. */
6854 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6855 {
6856 used_at = 1;
6857 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
6858 if (HAVE_64BIT_FPRS)
6859 {
6860 assert (HAVE_64BIT_GPRS);
6861 macro_build (NULL, "dmtc1", "t,S", AT, treg);
6862 }
6863 else
6864 {
6865 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
6866 if (offset_expr.X_op == O_absent)
6867 macro_build (NULL, "mtc1", "t,G", 0, treg);
6868 else
6869 {
6870 assert (offset_expr.X_op == O_constant);
6871 load_register (AT, &offset_expr, 0);
6872 macro_build (NULL, "mtc1", "t,G", AT, treg);
6873 }
6874 }
6875 break;
6876 }
6877
6878 assert (offset_expr.X_op == O_symbol
6879 && offset_expr.X_add_number == 0);
6880 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
6881 if (strcmp (s, ".lit8") == 0)
6882 {
6883 if (mips_opts.isa != ISA_MIPS1)
6884 {
6885 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
6886 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
6887 break;
6888 }
6889 breg = mips_gp_register;
6890 r = BFD_RELOC_MIPS_LITERAL;
6891 goto dob;
6892 }
6893 else
6894 {
6895 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
6896 used_at = 1;
6897 if (mips_pic != NO_PIC)
6898 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6899 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6900 else
6901 {
6902 /* FIXME: This won't work for a 64 bit address. */
6903 macro_build_lui (&offset_expr, AT);
6904 }
6905
6906 if (mips_opts.isa != ISA_MIPS1)
6907 {
6908 macro_build (&offset_expr, "ldc1", "T,o(b)",
6909 treg, BFD_RELOC_LO16, AT);
6910 break;
6911 }
6912 breg = AT;
6913 r = BFD_RELOC_LO16;
6914 goto dob;
6915 }
6916
6917 case M_L_DOB:
6918 /* Even on a big endian machine $fn comes before $fn+1. We have
6919 to adjust when loading from memory. */
6920 r = BFD_RELOC_LO16;
6921 dob:
6922 assert (mips_opts.isa == ISA_MIPS1);
6923 macro_build (&offset_expr, "lwc1", "T,o(b)",
6924 target_big_endian ? treg + 1 : treg, r, breg);
6925 /* FIXME: A possible overflow which I don't know how to deal
6926 with. */
6927 offset_expr.X_add_number += 4;
6928 macro_build (&offset_expr, "lwc1", "T,o(b)",
6929 target_big_endian ? treg : treg + 1, r, breg);
6930 break;
6931
6932 case M_L_DAB:
6933 /*
6934 * The MIPS assembler seems to check for X_add_number not
6935 * being double aligned and generating:
6936 * lui at,%hi(foo+1)
6937 * addu at,at,v1
6938 * addiu at,at,%lo(foo+1)
6939 * lwc1 f2,0(at)
6940 * lwc1 f3,4(at)
6941 * But, the resulting address is the same after relocation so why
6942 * generate the extra instruction?
6943 */
6944 /* Itbl support may require additional care here. */
6945 coproc = 1;
6946 if (mips_opts.isa != ISA_MIPS1)
6947 {
6948 s = "ldc1";
6949 goto ld;
6950 }
6951
6952 s = "lwc1";
6953 fmt = "T,o(b)";
6954 goto ldd_std;
6955
6956 case M_S_DAB:
6957 if (mips_opts.isa != ISA_MIPS1)
6958 {
6959 s = "sdc1";
6960 goto st;
6961 }
6962
6963 s = "swc1";
6964 fmt = "T,o(b)";
6965 /* Itbl support may require additional care here. */
6966 coproc = 1;
6967 goto ldd_std;
6968
6969 case M_LD_AB:
6970 if (HAVE_64BIT_GPRS)
6971 {
6972 s = "ld";
6973 goto ld;
6974 }
6975
6976 s = "lw";
6977 fmt = "t,o(b)";
6978 goto ldd_std;
6979
6980 case M_SD_AB:
6981 if (HAVE_64BIT_GPRS)
6982 {
6983 s = "sd";
6984 goto st;
6985 }
6986
6987 s = "sw";
6988 fmt = "t,o(b)";
6989
6990 ldd_std:
6991 if (offset_expr.X_op != O_symbol
6992 && offset_expr.X_op != O_constant)
6993 {
6994 as_bad (_("expression too complex"));
6995 offset_expr.X_op = O_constant;
6996 }
6997
6998 if (HAVE_32BIT_ADDRESSES
6999 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
7000 {
7001 char value [32];
7002
7003 sprintf_vma (value, offset_expr.X_add_number);
7004 as_bad (_("Number (0x%s) larger than 32 bits"), value);
7005 }
7006
7007 /* Even on a big endian machine $fn comes before $fn+1. We have
7008 to adjust when loading from memory. We set coproc if we must
7009 load $fn+1 first. */
7010 /* Itbl support may require additional care here. */
7011 if (! target_big_endian)
7012 coproc = 0;
7013
7014 if (mips_pic == NO_PIC
7015 || offset_expr.X_op == O_constant)
7016 {
7017 /* If this is a reference to a GP relative symbol, we want
7018 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
7019 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
7020 If we have a base register, we use this
7021 addu $at,$breg,$gp
7022 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
7023 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
7024 If this is not a GP relative symbol, we want
7025 lui $at,<sym> (BFD_RELOC_HI16_S)
7026 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7027 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7028 If there is a base register, we add it to $at after the
7029 lui instruction. If there is a constant, we always use
7030 the last case. */
7031 if (offset_expr.X_op == O_symbol
7032 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
7033 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
7034 {
7035 relax_start (offset_expr.X_add_symbol);
7036 if (breg == 0)
7037 {
7038 tempreg = mips_gp_register;
7039 }
7040 else
7041 {
7042 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7043 AT, breg, mips_gp_register);
7044 tempreg = AT;
7045 used_at = 1;
7046 }
7047
7048 /* Itbl support may require additional care here. */
7049 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7050 BFD_RELOC_GPREL16, tempreg);
7051 offset_expr.X_add_number += 4;
7052
7053 /* Set mips_optimize to 2 to avoid inserting an
7054 undesired nop. */
7055 hold_mips_optimize = mips_optimize;
7056 mips_optimize = 2;
7057 /* Itbl support may require additional care here. */
7058 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7059 BFD_RELOC_GPREL16, tempreg);
7060 mips_optimize = hold_mips_optimize;
7061
7062 relax_switch ();
7063
7064 /* We just generated two relocs. When tc_gen_reloc
7065 handles this case, it will skip the first reloc and
7066 handle the second. The second reloc already has an
7067 extra addend of 4, which we added above. We must
7068 subtract it out, and then subtract another 4 to make
7069 the first reloc come out right. The second reloc
7070 will come out right because we are going to add 4 to
7071 offset_expr when we build its instruction below.
7072
7073 If we have a symbol, then we don't want to include
7074 the offset, because it will wind up being included
7075 when we generate the reloc. */
7076
7077 if (offset_expr.X_op == O_constant)
7078 offset_expr.X_add_number -= 8;
7079 else
7080 {
7081 offset_expr.X_add_number = -4;
7082 offset_expr.X_op = O_constant;
7083 }
7084 }
7085 used_at = 1;
7086 macro_build_lui (&offset_expr, AT);
7087 if (breg != 0)
7088 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7089 /* Itbl support may require additional care here. */
7090 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7091 BFD_RELOC_LO16, AT);
7092 /* FIXME: How do we handle overflow here? */
7093 offset_expr.X_add_number += 4;
7094 /* Itbl support may require additional care here. */
7095 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7096 BFD_RELOC_LO16, AT);
7097 if (mips_relax.sequence)
7098 relax_end ();
7099 }
7100 else if (!mips_big_got)
7101 {
7102 /* If this is a reference to an external symbol, we want
7103 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7104 nop
7105 <op> $treg,0($at)
7106 <op> $treg+1,4($at)
7107 Otherwise we want
7108 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7109 nop
7110 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7111 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7112 If there is a base register we add it to $at before the
7113 lwc1 instructions. If there is a constant we include it
7114 in the lwc1 instructions. */
7115 used_at = 1;
7116 expr1.X_add_number = offset_expr.X_add_number;
7117 if (expr1.X_add_number < -0x8000
7118 || expr1.X_add_number >= 0x8000 - 4)
7119 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7120 load_got_offset (AT, &offset_expr);
7121 load_delay_nop ();
7122 if (breg != 0)
7123 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7124
7125 /* Set mips_optimize to 2 to avoid inserting an undesired
7126 nop. */
7127 hold_mips_optimize = mips_optimize;
7128 mips_optimize = 2;
7129
7130 /* Itbl support may require additional care here. */
7131 relax_start (offset_expr.X_add_symbol);
7132 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
7133 BFD_RELOC_LO16, AT);
7134 expr1.X_add_number += 4;
7135 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
7136 BFD_RELOC_LO16, AT);
7137 relax_switch ();
7138 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7139 BFD_RELOC_LO16, AT);
7140 offset_expr.X_add_number += 4;
7141 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7142 BFD_RELOC_LO16, AT);
7143 relax_end ();
7144
7145 mips_optimize = hold_mips_optimize;
7146 }
7147 else if (mips_big_got)
7148 {
7149 int gpdelay;
7150
7151 /* If this is a reference to an external symbol, we want
7152 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
7153 addu $at,$at,$gp
7154 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
7155 nop
7156 <op> $treg,0($at)
7157 <op> $treg+1,4($at)
7158 Otherwise we want
7159 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
7160 nop
7161 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
7162 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
7163 If there is a base register we add it to $at before the
7164 lwc1 instructions. If there is a constant we include it
7165 in the lwc1 instructions. */
7166 used_at = 1;
7167 expr1.X_add_number = offset_expr.X_add_number;
7168 offset_expr.X_add_number = 0;
7169 if (expr1.X_add_number < -0x8000
7170 || expr1.X_add_number >= 0x8000 - 4)
7171 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
7172 gpdelay = reg_needs_delay (mips_gp_register);
7173 relax_start (offset_expr.X_add_symbol);
7174 macro_build (&offset_expr, "lui", "t,u",
7175 AT, BFD_RELOC_MIPS_GOT_HI16);
7176 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
7177 AT, AT, mips_gp_register);
7178 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
7179 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
7180 load_delay_nop ();
7181 if (breg != 0)
7182 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7183 /* Itbl support may require additional care here. */
7184 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
7185 BFD_RELOC_LO16, AT);
7186 expr1.X_add_number += 4;
7187
7188 /* Set mips_optimize to 2 to avoid inserting an undesired
7189 nop. */
7190 hold_mips_optimize = mips_optimize;
7191 mips_optimize = 2;
7192 /* Itbl support may require additional care here. */
7193 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
7194 BFD_RELOC_LO16, AT);
7195 mips_optimize = hold_mips_optimize;
7196 expr1.X_add_number -= 4;
7197
7198 relax_switch ();
7199 offset_expr.X_add_number = expr1.X_add_number;
7200 if (gpdelay)
7201 macro_build (NULL, "nop", "");
7202 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
7203 BFD_RELOC_MIPS_GOT16, mips_gp_register);
7204 load_delay_nop ();
7205 if (breg != 0)
7206 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
7207 /* Itbl support may require additional care here. */
7208 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
7209 BFD_RELOC_LO16, AT);
7210 offset_expr.X_add_number += 4;
7211
7212 /* Set mips_optimize to 2 to avoid inserting an undesired
7213 nop. */
7214 hold_mips_optimize = mips_optimize;
7215 mips_optimize = 2;
7216 /* Itbl support may require additional care here. */
7217 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
7218 BFD_RELOC_LO16, AT);
7219 mips_optimize = hold_mips_optimize;
7220 relax_end ();
7221 }
7222 else
7223 abort ();
7224
7225 break;
7226
7227 case M_LD_OB:
7228 s = "lw";
7229 goto sd_ob;
7230 case M_SD_OB:
7231 s = "sw";
7232 sd_ob:
7233 assert (HAVE_32BIT_ADDRESSES);
7234 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
7235 offset_expr.X_add_number += 4;
7236 macro_build (&offset_expr, s, "t,o(b)", treg + 1, BFD_RELOC_LO16, breg);
7237 break;
7238
7239 /* New code added to support COPZ instructions.
7240 This code builds table entries out of the macros in mip_opcodes.
7241 R4000 uses interlocks to handle coproc delays.
7242 Other chips (like the R3000) require nops to be inserted for delays.
7243
7244 FIXME: Currently, we require that the user handle delays.
7245 In order to fill delay slots for non-interlocked chips,
7246 we must have a way to specify delays based on the coprocessor.
7247 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
7248 What are the side-effects of the cop instruction?
7249 What cache support might we have and what are its effects?
7250 Both coprocessor & memory require delays. how long???
7251 What registers are read/set/modified?
7252
7253 If an itbl is provided to interpret cop instructions,
7254 this knowledge can be encoded in the itbl spec. */
7255
7256 case M_COP0:
7257 s = "c0";
7258 goto copz;
7259 case M_COP1:
7260 s = "c1";
7261 goto copz;
7262 case M_COP2:
7263 s = "c2";
7264 goto copz;
7265 case M_COP3:
7266 s = "c3";
7267 copz:
7268 if (NO_ISA_COP (mips_opts.arch)
7269 && (ip->insn_mo->pinfo2 & INSN2_M_FP_S) == 0)
7270 {
7271 as_bad (_("opcode not supported on this processor: %s"),
7272 mips_cpu_info_from_arch (mips_opts.arch)->name);
7273 break;
7274 }
7275
7276 /* For now we just do C (same as Cz). The parameter will be
7277 stored in insn_opcode by mips_ip. */
7278 macro_build (NULL, s, "C", ip->insn_opcode);
7279 break;
7280
7281 case M_MOVE:
7282 move_register (dreg, sreg);
7283 break;
7284
7285 #ifdef LOSING_COMPILER
7286 default:
7287 /* Try and see if this is a new itbl instruction.
7288 This code builds table entries out of the macros in mip_opcodes.
7289 FIXME: For now we just assemble the expression and pass it's
7290 value along as a 32-bit immediate.
7291 We may want to have the assembler assemble this value,
7292 so that we gain the assembler's knowledge of delay slots,
7293 symbols, etc.
7294 Would it be more efficient to use mask (id) here? */
7295 if (itbl_have_entries
7296 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
7297 {
7298 s = ip->insn_mo->name;
7299 s2 = "cop3";
7300 coproc = ITBL_DECODE_PNUM (immed_expr);;
7301 macro_build (&immed_expr, s, "C");
7302 break;
7303 }
7304 macro2 (ip);
7305 break;
7306 }
7307 if (!mips_opts.at && used_at)
7308 as_bad (_("Macro used $at after \".set noat\""));
7309 }
7310
7311 static void
7312 macro2 (struct mips_cl_insn *ip)
7313 {
7314 unsigned int treg, sreg, dreg, breg;
7315 unsigned int tempreg;
7316 int mask;
7317 int used_at;
7318 expressionS expr1;
7319 const char *s;
7320 const char *s2;
7321 const char *fmt;
7322 int likely = 0;
7323 int dbl = 0;
7324 int coproc = 0;
7325 int lr = 0;
7326 int imm = 0;
7327 int off;
7328 offsetT maxnum;
7329 bfd_reloc_code_real_type r;
7330
7331 treg = (ip->insn_opcode >> 16) & 0x1f;
7332 dreg = (ip->insn_opcode >> 11) & 0x1f;
7333 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
7334 mask = ip->insn_mo->mask;
7335
7336 expr1.X_op = O_constant;
7337 expr1.X_op_symbol = NULL;
7338 expr1.X_add_symbol = NULL;
7339 expr1.X_add_number = 1;
7340
7341 switch (mask)
7342 {
7343 #endif /* LOSING_COMPILER */
7344
7345 case M_DMUL:
7346 dbl = 1;
7347 case M_MUL:
7348 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
7349 macro_build (NULL, "mflo", "d", dreg);
7350 break;
7351
7352 case M_DMUL_I:
7353 dbl = 1;
7354 case M_MUL_I:
7355 /* The MIPS assembler some times generates shifts and adds. I'm
7356 not trying to be that fancy. GCC should do this for us
7357 anyway. */
7358 used_at = 1;
7359 load_register (AT, &imm_expr, dbl);
7360 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
7361 macro_build (NULL, "mflo", "d", dreg);
7362 break;
7363
7364 case M_DMULO_I:
7365 dbl = 1;
7366 case M_MULO_I:
7367 imm = 1;
7368 goto do_mulo;
7369
7370 case M_DMULO:
7371 dbl = 1;
7372 case M_MULO:
7373 do_mulo:
7374 start_noreorder ();
7375 used_at = 1;
7376 if (imm)
7377 load_register (AT, &imm_expr, dbl);
7378 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
7379 macro_build (NULL, "mflo", "d", dreg);
7380 macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
7381 macro_build (NULL, "mfhi", "d", AT);
7382 if (mips_trap)
7383 macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
7384 else
7385 {
7386 expr1.X_add_number = 8;
7387 macro_build (&expr1, "beq", "s,t,p", dreg, AT);
7388 macro_build (NULL, "nop", "", 0);
7389 macro_build (NULL, "break", "c", 6);
7390 }
7391 end_noreorder ();
7392 macro_build (NULL, "mflo", "d", dreg);
7393 break;
7394
7395 case M_DMULOU_I:
7396 dbl = 1;
7397 case M_MULOU_I:
7398 imm = 1;
7399 goto do_mulou;
7400
7401 case M_DMULOU:
7402 dbl = 1;
7403 case M_MULOU:
7404 do_mulou:
7405 start_noreorder ();
7406 used_at = 1;
7407 if (imm)
7408 load_register (AT, &imm_expr, dbl);
7409 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
7410 sreg, imm ? AT : treg);
7411 macro_build (NULL, "mfhi", "d", AT);
7412 macro_build (NULL, "mflo", "d", dreg);
7413 if (mips_trap)
7414 macro_build (NULL, "tne", "s,t,q", AT, 0, 6);
7415 else
7416 {
7417 expr1.X_add_number = 8;
7418 macro_build (&expr1, "beq", "s,t,p", AT, 0);
7419 macro_build (NULL, "nop", "", 0);
7420 macro_build (NULL, "break", "c", 6);
7421 }
7422 end_noreorder ();
7423 break;
7424
7425 case M_DROL:
7426 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7427 {
7428 if (dreg == sreg)
7429 {
7430 tempreg = AT;
7431 used_at = 1;
7432 }
7433 else
7434 {
7435 tempreg = dreg;
7436 }
7437 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
7438 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
7439 break;
7440 }
7441 used_at = 1;
7442 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
7443 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
7444 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
7445 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7446 break;
7447
7448 case M_ROL:
7449 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7450 {
7451 if (dreg == sreg)
7452 {
7453 tempreg = AT;
7454 used_at = 1;
7455 }
7456 else
7457 {
7458 tempreg = dreg;
7459 }
7460 macro_build (NULL, "negu", "d,w", tempreg, treg);
7461 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
7462 break;
7463 }
7464 used_at = 1;
7465 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
7466 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
7467 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
7468 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7469 break;
7470
7471 case M_DROL_I:
7472 {
7473 unsigned int rot;
7474 char *l, *r;
7475
7476 if (imm_expr.X_op != O_constant)
7477 as_bad (_("Improper rotate count"));
7478 rot = imm_expr.X_add_number & 0x3f;
7479 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7480 {
7481 rot = (64 - rot) & 0x3f;
7482 if (rot >= 32)
7483 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
7484 else
7485 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
7486 break;
7487 }
7488 if (rot == 0)
7489 {
7490 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
7491 break;
7492 }
7493 l = (rot < 0x20) ? "dsll" : "dsll32";
7494 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
7495 rot &= 0x1f;
7496 used_at = 1;
7497 macro_build (NULL, l, "d,w,<", AT, sreg, rot);
7498 macro_build (NULL, r, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7499 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7500 }
7501 break;
7502
7503 case M_ROL_I:
7504 {
7505 unsigned int rot;
7506
7507 if (imm_expr.X_op != O_constant)
7508 as_bad (_("Improper rotate count"));
7509 rot = imm_expr.X_add_number & 0x1f;
7510 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7511 {
7512 macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
7513 break;
7514 }
7515 if (rot == 0)
7516 {
7517 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
7518 break;
7519 }
7520 used_at = 1;
7521 macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
7522 macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7523 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7524 }
7525 break;
7526
7527 case M_DROR:
7528 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7529 {
7530 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
7531 break;
7532 }
7533 used_at = 1;
7534 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
7535 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
7536 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
7537 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7538 break;
7539
7540 case M_ROR:
7541 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7542 {
7543 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
7544 break;
7545 }
7546 used_at = 1;
7547 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
7548 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
7549 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
7550 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7551 break;
7552
7553 case M_DROR_I:
7554 {
7555 unsigned int rot;
7556 char *l, *r;
7557
7558 if (imm_expr.X_op != O_constant)
7559 as_bad (_("Improper rotate count"));
7560 rot = imm_expr.X_add_number & 0x3f;
7561 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
7562 {
7563 if (rot >= 32)
7564 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
7565 else
7566 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
7567 break;
7568 }
7569 if (rot == 0)
7570 {
7571 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
7572 break;
7573 }
7574 r = (rot < 0x20) ? "dsrl" : "dsrl32";
7575 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
7576 rot &= 0x1f;
7577 used_at = 1;
7578 macro_build (NULL, r, "d,w,<", AT, sreg, rot);
7579 macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7580 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7581 }
7582 break;
7583
7584 case M_ROR_I:
7585 {
7586 unsigned int rot;
7587
7588 if (imm_expr.X_op != O_constant)
7589 as_bad (_("Improper rotate count"));
7590 rot = imm_expr.X_add_number & 0x1f;
7591 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7592 {
7593 macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
7594 break;
7595 }
7596 if (rot == 0)
7597 {
7598 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
7599 break;
7600 }
7601 used_at = 1;
7602 macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
7603 macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7604 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7605 }
7606 break;
7607
7608 case M_S_DOB:
7609 assert (mips_opts.isa == ISA_MIPS1);
7610 /* Even on a big endian machine $fn comes before $fn+1. We have
7611 to adjust when storing to memory. */
7612 macro_build (&offset_expr, "swc1", "T,o(b)",
7613 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
7614 offset_expr.X_add_number += 4;
7615 macro_build (&offset_expr, "swc1", "T,o(b)",
7616 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
7617 break;
7618
7619 case M_SEQ:
7620 if (sreg == 0)
7621 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
7622 else if (treg == 0)
7623 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7624 else
7625 {
7626 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7627 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7628 }
7629 break;
7630
7631 case M_SEQ_I:
7632 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7633 {
7634 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7635 break;
7636 }
7637 if (sreg == 0)
7638 {
7639 as_warn (_("Instruction %s: result is always false"),
7640 ip->insn_mo->name);
7641 move_register (dreg, 0);
7642 break;
7643 }
7644 if (CPU_HAS_SEQ (mips_opts.arch)
7645 && -512 <= imm_expr.X_add_number
7646 && imm_expr.X_add_number < 512)
7647 {
7648 macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg,
7649 (int) imm_expr.X_add_number);
7650 break;
7651 }
7652 if (imm_expr.X_op == O_constant
7653 && imm_expr.X_add_number >= 0
7654 && imm_expr.X_add_number < 0x10000)
7655 {
7656 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
7657 }
7658 else if (imm_expr.X_op == O_constant
7659 && imm_expr.X_add_number > -0x8000
7660 && imm_expr.X_add_number < 0)
7661 {
7662 imm_expr.X_add_number = -imm_expr.X_add_number;
7663 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
7664 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7665 }
7666 else if (CPU_HAS_SEQ (mips_opts.arch))
7667 {
7668 used_at = 1;
7669 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7670 macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT);
7671 break;
7672 }
7673 else
7674 {
7675 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7676 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
7677 used_at = 1;
7678 }
7679 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7680 break;
7681
7682 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
7683 s = "slt";
7684 goto sge;
7685 case M_SGEU:
7686 s = "sltu";
7687 sge:
7688 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
7689 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7690 break;
7691
7692 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
7693 case M_SGEU_I:
7694 if (imm_expr.X_op == O_constant
7695 && imm_expr.X_add_number >= -0x8000
7696 && imm_expr.X_add_number < 0x8000)
7697 {
7698 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
7699 dreg, sreg, BFD_RELOC_LO16);
7700 }
7701 else
7702 {
7703 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7704 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
7705 dreg, sreg, AT);
7706 used_at = 1;
7707 }
7708 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7709 break;
7710
7711 case M_SGT: /* sreg > treg <==> treg < sreg */
7712 s = "slt";
7713 goto sgt;
7714 case M_SGTU:
7715 s = "sltu";
7716 sgt:
7717 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7718 break;
7719
7720 case M_SGT_I: /* sreg > I <==> I < sreg */
7721 s = "slt";
7722 goto sgti;
7723 case M_SGTU_I:
7724 s = "sltu";
7725 sgti:
7726 used_at = 1;
7727 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7728 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7729 break;
7730
7731 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
7732 s = "slt";
7733 goto sle;
7734 case M_SLEU:
7735 s = "sltu";
7736 sle:
7737 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7738 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7739 break;
7740
7741 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
7742 s = "slt";
7743 goto slei;
7744 case M_SLEU_I:
7745 s = "sltu";
7746 slei:
7747 used_at = 1;
7748 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7749 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7750 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7751 break;
7752
7753 case M_SLT_I:
7754 if (imm_expr.X_op == O_constant
7755 && imm_expr.X_add_number >= -0x8000
7756 && imm_expr.X_add_number < 0x8000)
7757 {
7758 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7759 break;
7760 }
7761 used_at = 1;
7762 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7763 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
7764 break;
7765
7766 case M_SLTU_I:
7767 if (imm_expr.X_op == O_constant
7768 && imm_expr.X_add_number >= -0x8000
7769 && imm_expr.X_add_number < 0x8000)
7770 {
7771 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
7772 BFD_RELOC_LO16);
7773 break;
7774 }
7775 used_at = 1;
7776 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7777 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
7778 break;
7779
7780 case M_SNE:
7781 if (sreg == 0)
7782 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
7783 else if (treg == 0)
7784 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
7785 else
7786 {
7787 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7788 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
7789 }
7790 break;
7791
7792 case M_SNE_I:
7793 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7794 {
7795 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
7796 break;
7797 }
7798 if (sreg == 0)
7799 {
7800 as_warn (_("Instruction %s: result is always true"),
7801 ip->insn_mo->name);
7802 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
7803 dreg, 0, BFD_RELOC_LO16);
7804 break;
7805 }
7806 if (CPU_HAS_SEQ (mips_opts.arch)
7807 && -512 <= imm_expr.X_add_number
7808 && imm_expr.X_add_number < 512)
7809 {
7810 macro_build (NULL, "snei", "t,r,+Q", dreg, sreg,
7811 (int) imm_expr.X_add_number);
7812 break;
7813 }
7814 if (imm_expr.X_op == O_constant
7815 && imm_expr.X_add_number >= 0
7816 && imm_expr.X_add_number < 0x10000)
7817 {
7818 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
7819 }
7820 else if (imm_expr.X_op == O_constant
7821 && imm_expr.X_add_number > -0x8000
7822 && imm_expr.X_add_number < 0)
7823 {
7824 imm_expr.X_add_number = -imm_expr.X_add_number;
7825 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
7826 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7827 }
7828 else if (CPU_HAS_SEQ (mips_opts.arch))
7829 {
7830 used_at = 1;
7831 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7832 macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT);
7833 break;
7834 }
7835 else
7836 {
7837 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7838 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
7839 used_at = 1;
7840 }
7841 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
7842 break;
7843
7844 case M_DSUB_I:
7845 dbl = 1;
7846 case M_SUB_I:
7847 if (imm_expr.X_op == O_constant
7848 && imm_expr.X_add_number > -0x8000
7849 && imm_expr.X_add_number <= 0x8000)
7850 {
7851 imm_expr.X_add_number = -imm_expr.X_add_number;
7852 macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
7853 dreg, sreg, BFD_RELOC_LO16);
7854 break;
7855 }
7856 used_at = 1;
7857 load_register (AT, &imm_expr, dbl);
7858 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
7859 break;
7860
7861 case M_DSUBU_I:
7862 dbl = 1;
7863 case M_SUBU_I:
7864 if (imm_expr.X_op == O_constant
7865 && imm_expr.X_add_number > -0x8000
7866 && imm_expr.X_add_number <= 0x8000)
7867 {
7868 imm_expr.X_add_number = -imm_expr.X_add_number;
7869 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
7870 dreg, sreg, BFD_RELOC_LO16);
7871 break;
7872 }
7873 used_at = 1;
7874 load_register (AT, &imm_expr, dbl);
7875 macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
7876 break;
7877
7878 case M_TEQ_I:
7879 s = "teq";
7880 goto trap;
7881 case M_TGE_I:
7882 s = "tge";
7883 goto trap;
7884 case M_TGEU_I:
7885 s = "tgeu";
7886 goto trap;
7887 case M_TLT_I:
7888 s = "tlt";
7889 goto trap;
7890 case M_TLTU_I:
7891 s = "tltu";
7892 goto trap;
7893 case M_TNE_I:
7894 s = "tne";
7895 trap:
7896 used_at = 1;
7897 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7898 macro_build (NULL, s, "s,t", sreg, AT);
7899 break;
7900
7901 case M_TRUNCWS:
7902 case M_TRUNCWD:
7903 assert (mips_opts.isa == ISA_MIPS1);
7904 used_at = 1;
7905 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
7906 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
7907
7908 /*
7909 * Is the double cfc1 instruction a bug in the mips assembler;
7910 * or is there a reason for it?
7911 */
7912 start_noreorder ();
7913 macro_build (NULL, "cfc1", "t,G", treg, RA);
7914 macro_build (NULL, "cfc1", "t,G", treg, RA);
7915 macro_build (NULL, "nop", "");
7916 expr1.X_add_number = 3;
7917 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
7918 expr1.X_add_number = 2;
7919 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
7920 macro_build (NULL, "ctc1", "t,G", AT, RA);
7921 macro_build (NULL, "nop", "");
7922 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
7923 dreg, sreg);
7924 macro_build (NULL, "ctc1", "t,G", treg, RA);
7925 macro_build (NULL, "nop", "");
7926 end_noreorder ();
7927 break;
7928
7929 case M_ULH:
7930 s = "lb";
7931 goto ulh;
7932 case M_ULHU:
7933 s = "lbu";
7934 ulh:
7935 used_at = 1;
7936 if (offset_expr.X_add_number >= 0x7fff)
7937 as_bad (_("operand overflow"));
7938 if (! target_big_endian)
7939 ++offset_expr.X_add_number;
7940 macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
7941 if (! target_big_endian)
7942 --offset_expr.X_add_number;
7943 else
7944 ++offset_expr.X_add_number;
7945 macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
7946 macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
7947 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7948 break;
7949
7950 case M_ULD:
7951 s = "ldl";
7952 s2 = "ldr";
7953 off = 7;
7954 goto ulw;
7955 case M_ULW:
7956 s = "lwl";
7957 s2 = "lwr";
7958 off = 3;
7959 ulw:
7960 if (offset_expr.X_add_number >= 0x8000 - off)
7961 as_bad (_("operand overflow"));
7962 if (treg != breg)
7963 tempreg = treg;
7964 else
7965 {
7966 used_at = 1;
7967 tempreg = AT;
7968 }
7969 if (! target_big_endian)
7970 offset_expr.X_add_number += off;
7971 macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
7972 if (! target_big_endian)
7973 offset_expr.X_add_number -= off;
7974 else
7975 offset_expr.X_add_number += off;
7976 macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
7977
7978 /* If necessary, move the result in tempreg the final destination. */
7979 if (treg == tempreg)
7980 break;
7981 /* Protect second load's delay slot. */
7982 load_delay_nop ();
7983 move_register (treg, tempreg);
7984 break;
7985
7986 case M_ULD_A:
7987 s = "ldl";
7988 s2 = "ldr";
7989 off = 7;
7990 goto ulwa;
7991 case M_ULW_A:
7992 s = "lwl";
7993 s2 = "lwr";
7994 off = 3;
7995 ulwa:
7996 used_at = 1;
7997 load_address (AT, &offset_expr, &used_at);
7998 if (breg != 0)
7999 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8000 if (! target_big_endian)
8001 expr1.X_add_number = off;
8002 else
8003 expr1.X_add_number = 0;
8004 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8005 if (! target_big_endian)
8006 expr1.X_add_number = 0;
8007 else
8008 expr1.X_add_number = off;
8009 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8010 break;
8011
8012 case M_ULH_A:
8013 case M_ULHU_A:
8014 used_at = 1;
8015 load_address (AT, &offset_expr, &used_at);
8016 if (breg != 0)
8017 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8018 if (target_big_endian)
8019 expr1.X_add_number = 0;
8020 macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
8021 treg, BFD_RELOC_LO16, AT);
8022 if (target_big_endian)
8023 expr1.X_add_number = 1;
8024 else
8025 expr1.X_add_number = 0;
8026 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8027 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8028 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
8029 break;
8030
8031 case M_USH:
8032 used_at = 1;
8033 if (offset_expr.X_add_number >= 0x7fff)
8034 as_bad (_("operand overflow"));
8035 if (target_big_endian)
8036 ++offset_expr.X_add_number;
8037 macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
8038 macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
8039 if (target_big_endian)
8040 --offset_expr.X_add_number;
8041 else
8042 ++offset_expr.X_add_number;
8043 macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
8044 break;
8045
8046 case M_USD:
8047 s = "sdl";
8048 s2 = "sdr";
8049 off = 7;
8050 goto usw;
8051 case M_USW:
8052 s = "swl";
8053 s2 = "swr";
8054 off = 3;
8055 usw:
8056 if (offset_expr.X_add_number >= 0x8000 - off)
8057 as_bad (_("operand overflow"));
8058 if (! target_big_endian)
8059 offset_expr.X_add_number += off;
8060 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8061 if (! target_big_endian)
8062 offset_expr.X_add_number -= off;
8063 else
8064 offset_expr.X_add_number += off;
8065 macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8066 break;
8067
8068 case M_USD_A:
8069 s = "sdl";
8070 s2 = "sdr";
8071 off = 7;
8072 goto uswa;
8073 case M_USW_A:
8074 s = "swl";
8075 s2 = "swr";
8076 off = 3;
8077 uswa:
8078 used_at = 1;
8079 load_address (AT, &offset_expr, &used_at);
8080 if (breg != 0)
8081 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8082 if (! target_big_endian)
8083 expr1.X_add_number = off;
8084 else
8085 expr1.X_add_number = 0;
8086 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8087 if (! target_big_endian)
8088 expr1.X_add_number = 0;
8089 else
8090 expr1.X_add_number = off;
8091 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
8092 break;
8093
8094 case M_USH_A:
8095 used_at = 1;
8096 load_address (AT, &offset_expr, &used_at);
8097 if (breg != 0)
8098 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
8099 if (! target_big_endian)
8100 expr1.X_add_number = 0;
8101 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8102 macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
8103 if (! target_big_endian)
8104 expr1.X_add_number = 1;
8105 else
8106 expr1.X_add_number = 0;
8107 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
8108 if (! target_big_endian)
8109 expr1.X_add_number = 0;
8110 else
8111 expr1.X_add_number = 1;
8112 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
8113 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
8114 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
8115 break;
8116
8117 default:
8118 /* FIXME: Check if this is one of the itbl macros, since they
8119 are added dynamically. */
8120 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
8121 break;
8122 }
8123 if (!mips_opts.at && used_at)
8124 as_bad (_("Macro used $at after \".set noat\""));
8125 }
8126
8127 /* Implement macros in mips16 mode. */
8128
8129 static void
8130 mips16_macro (struct mips_cl_insn *ip)
8131 {
8132 int mask;
8133 int xreg, yreg, zreg, tmp;
8134 expressionS expr1;
8135 int dbl;
8136 const char *s, *s2, *s3;
8137
8138 mask = ip->insn_mo->mask;
8139
8140 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
8141 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
8142 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
8143
8144 expr1.X_op = O_constant;
8145 expr1.X_op_symbol = NULL;
8146 expr1.X_add_symbol = NULL;
8147 expr1.X_add_number = 1;
8148
8149 dbl = 0;
8150
8151 switch (mask)
8152 {
8153 default:
8154 internalError ();
8155
8156 case M_DDIV_3:
8157 dbl = 1;
8158 case M_DIV_3:
8159 s = "mflo";
8160 goto do_div3;
8161 case M_DREM_3:
8162 dbl = 1;
8163 case M_REM_3:
8164 s = "mfhi";
8165 do_div3:
8166 start_noreorder ();
8167 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
8168 expr1.X_add_number = 2;
8169 macro_build (&expr1, "bnez", "x,p", yreg);
8170 macro_build (NULL, "break", "6", 7);
8171
8172 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
8173 since that causes an overflow. We should do that as well,
8174 but I don't see how to do the comparisons without a temporary
8175 register. */
8176 end_noreorder ();
8177 macro_build (NULL, s, "x", zreg);
8178 break;
8179
8180 case M_DIVU_3:
8181 s = "divu";
8182 s2 = "mflo";
8183 goto do_divu3;
8184 case M_REMU_3:
8185 s = "divu";
8186 s2 = "mfhi";
8187 goto do_divu3;
8188 case M_DDIVU_3:
8189 s = "ddivu";
8190 s2 = "mflo";
8191 goto do_divu3;
8192 case M_DREMU_3:
8193 s = "ddivu";
8194 s2 = "mfhi";
8195 do_divu3:
8196 start_noreorder ();
8197 macro_build (NULL, s, "0,x,y", xreg, yreg);
8198 expr1.X_add_number = 2;
8199 macro_build (&expr1, "bnez", "x,p", yreg);
8200 macro_build (NULL, "break", "6", 7);
8201 end_noreorder ();
8202 macro_build (NULL, s2, "x", zreg);
8203 break;
8204
8205 case M_DMUL:
8206 dbl = 1;
8207 case M_MUL:
8208 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
8209 macro_build (NULL, "mflo", "x", zreg);
8210 break;
8211
8212 case M_DSUBU_I:
8213 dbl = 1;
8214 goto do_subu;
8215 case M_SUBU_I:
8216 do_subu:
8217 if (imm_expr.X_op != O_constant)
8218 as_bad (_("Unsupported large constant"));
8219 imm_expr.X_add_number = -imm_expr.X_add_number;
8220 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
8221 break;
8222
8223 case M_SUBU_I_2:
8224 if (imm_expr.X_op != O_constant)
8225 as_bad (_("Unsupported large constant"));
8226 imm_expr.X_add_number = -imm_expr.X_add_number;
8227 macro_build (&imm_expr, "addiu", "x,k", xreg);
8228 break;
8229
8230 case M_DSUBU_I_2:
8231 if (imm_expr.X_op != O_constant)
8232 as_bad (_("Unsupported large constant"));
8233 imm_expr.X_add_number = -imm_expr.X_add_number;
8234 macro_build (&imm_expr, "daddiu", "y,j", yreg);
8235 break;
8236
8237 case M_BEQ:
8238 s = "cmp";
8239 s2 = "bteqz";
8240 goto do_branch;
8241 case M_BNE:
8242 s = "cmp";
8243 s2 = "btnez";
8244 goto do_branch;
8245 case M_BLT:
8246 s = "slt";
8247 s2 = "btnez";
8248 goto do_branch;
8249 case M_BLTU:
8250 s = "sltu";
8251 s2 = "btnez";
8252 goto do_branch;
8253 case M_BLE:
8254 s = "slt";
8255 s2 = "bteqz";
8256 goto do_reverse_branch;
8257 case M_BLEU:
8258 s = "sltu";
8259 s2 = "bteqz";
8260 goto do_reverse_branch;
8261 case M_BGE:
8262 s = "slt";
8263 s2 = "bteqz";
8264 goto do_branch;
8265 case M_BGEU:
8266 s = "sltu";
8267 s2 = "bteqz";
8268 goto do_branch;
8269 case M_BGT:
8270 s = "slt";
8271 s2 = "btnez";
8272 goto do_reverse_branch;
8273 case M_BGTU:
8274 s = "sltu";
8275 s2 = "btnez";
8276
8277 do_reverse_branch:
8278 tmp = xreg;
8279 xreg = yreg;
8280 yreg = tmp;
8281
8282 do_branch:
8283 macro_build (NULL, s, "x,y", xreg, yreg);
8284 macro_build (&offset_expr, s2, "p");
8285 break;
8286
8287 case M_BEQ_I:
8288 s = "cmpi";
8289 s2 = "bteqz";
8290 s3 = "x,U";
8291 goto do_branch_i;
8292 case M_BNE_I:
8293 s = "cmpi";
8294 s2 = "btnez";
8295 s3 = "x,U";
8296 goto do_branch_i;
8297 case M_BLT_I:
8298 s = "slti";
8299 s2 = "btnez";
8300 s3 = "x,8";
8301 goto do_branch_i;
8302 case M_BLTU_I:
8303 s = "sltiu";
8304 s2 = "btnez";
8305 s3 = "x,8";
8306 goto do_branch_i;
8307 case M_BLE_I:
8308 s = "slti";
8309 s2 = "btnez";
8310 s3 = "x,8";
8311 goto do_addone_branch_i;
8312 case M_BLEU_I:
8313 s = "sltiu";
8314 s2 = "btnez";
8315 s3 = "x,8";
8316 goto do_addone_branch_i;
8317 case M_BGE_I:
8318 s = "slti";
8319 s2 = "bteqz";
8320 s3 = "x,8";
8321 goto do_branch_i;
8322 case M_BGEU_I:
8323 s = "sltiu";
8324 s2 = "bteqz";
8325 s3 = "x,8";
8326 goto do_branch_i;
8327 case M_BGT_I:
8328 s = "slti";
8329 s2 = "bteqz";
8330 s3 = "x,8";
8331 goto do_addone_branch_i;
8332 case M_BGTU_I:
8333 s = "sltiu";
8334 s2 = "bteqz";
8335 s3 = "x,8";
8336
8337 do_addone_branch_i:
8338 if (imm_expr.X_op != O_constant)
8339 as_bad (_("Unsupported large constant"));
8340 ++imm_expr.X_add_number;
8341
8342 do_branch_i:
8343 macro_build (&imm_expr, s, s3, xreg);
8344 macro_build (&offset_expr, s2, "p");
8345 break;
8346
8347 case M_ABS:
8348 expr1.X_add_number = 0;
8349 macro_build (&expr1, "slti", "x,8", yreg);
8350 if (xreg != yreg)
8351 move_register (xreg, yreg);
8352 expr1.X_add_number = 2;
8353 macro_build (&expr1, "bteqz", "p");
8354 macro_build (NULL, "neg", "x,w", xreg, xreg);
8355 }
8356 }
8357
8358 /* For consistency checking, verify that all bits are specified either
8359 by the match/mask part of the instruction definition, or by the
8360 operand list. */
8361 static int
8362 validate_mips_insn (const struct mips_opcode *opc)
8363 {
8364 const char *p = opc->args;
8365 char c;
8366 unsigned long used_bits = opc->mask;
8367
8368 if ((used_bits & opc->match) != opc->match)
8369 {
8370 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
8371 opc->name, opc->args);
8372 return 0;
8373 }
8374 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
8375 while (*p)
8376 switch (c = *p++)
8377 {
8378 case ',': break;
8379 case '(': break;
8380 case ')': break;
8381 case '+':
8382 switch (c = *p++)
8383 {
8384 case '1': USE_BITS (OP_MASK_UDI1, OP_SH_UDI1); break;
8385 case '2': USE_BITS (OP_MASK_UDI2, OP_SH_UDI2); break;
8386 case '3': USE_BITS (OP_MASK_UDI3, OP_SH_UDI3); break;
8387 case '4': USE_BITS (OP_MASK_UDI4, OP_SH_UDI4); break;
8388 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8389 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
8390 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
8391 case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD);
8392 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
8393 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8394 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
8395 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
8396 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
8397 case 'I': break;
8398 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8399 case 'T': USE_BITS (OP_MASK_RT, OP_SH_RT);
8400 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
8401 case 'x': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
8402 case 'X': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break;
8403 case 'p': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
8404 case 'P': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break;
8405 case 'Q': USE_BITS (OP_MASK_SEQI, OP_SH_SEQI); break;
8406 case 's': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
8407 case 'S': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break;
8408
8409 default:
8410 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8411 c, opc->name, opc->args);
8412 return 0;
8413 }
8414 break;
8415 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8416 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8417 case 'A': break;
8418 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
8419 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
8420 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
8421 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8422 case 'F': break;
8423 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
8424 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
8425 case 'I': break;
8426 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
8427 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
8428 case 'L': break;
8429 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
8430 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
8431 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
8432 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
8433 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
8434 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
8435 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8436 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
8437 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8438 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
8439 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
8440 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
8441 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
8442 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
8443 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8444 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
8445 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
8446 case 'f': break;
8447 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
8448 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
8449 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8450 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
8451 case 'l': break;
8452 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8453 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
8454 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
8455 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8456 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8457 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8458 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
8459 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8460 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8461 case 'x': break;
8462 case 'z': break;
8463 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
8464 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
8465 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
8466 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
8467 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
8468 case '[': break;
8469 case ']': break;
8470 case '1': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
8471 case '2': USE_BITS (OP_MASK_BP, OP_SH_BP); break;
8472 case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break;
8473 case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break;
8474 case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break;
8475 case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
8476 case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break;
8477 case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break;
8478 case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break;
8479 case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break;
8480 case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break;
8481 case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break;
8482 case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break;
8483 case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break;
8484 case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break;
8485 case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break;
8486 case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break;
8487 case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
8488 default:
8489 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
8490 c, opc->name, opc->args);
8491 return 0;
8492 }
8493 #undef USE_BITS
8494 if (used_bits != 0xffffffff)
8495 {
8496 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
8497 ~used_bits & 0xffffffff, opc->name, opc->args);
8498 return 0;
8499 }
8500 return 1;
8501 }
8502
8503 /* UDI immediates. */
8504 struct mips_immed {
8505 char type;
8506 unsigned int shift;
8507 unsigned long mask;
8508 const char * desc;
8509 };
8510
8511 static const struct mips_immed mips_immed[] = {
8512 { '1', OP_SH_UDI1, OP_MASK_UDI1, 0},
8513 { '2', OP_SH_UDI2, OP_MASK_UDI2, 0},
8514 { '3', OP_SH_UDI3, OP_MASK_UDI3, 0},
8515 { '4', OP_SH_UDI4, OP_MASK_UDI4, 0},
8516 { 0,0,0,0 }
8517 };
8518
8519 /* Check whether an odd floating-point register is allowed. */
8520 static int
8521 mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum)
8522 {
8523 const char *s = insn->name;
8524
8525 if (insn->pinfo == INSN_MACRO)
8526 /* Let a macro pass, we'll catch it later when it is expanded. */
8527 return 1;
8528
8529 if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa))
8530 {
8531 /* Allow odd registers for single-precision ops. */
8532 switch (insn->pinfo & (FP_S | FP_D))
8533 {
8534 case FP_S:
8535 case 0:
8536 return 1; /* both single precision - ok */
8537 case FP_D:
8538 return 0; /* both double precision - fail */
8539 default:
8540 break;
8541 }
8542
8543 /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */
8544 s = strchr (insn->name, '.');
8545 if (argnum == 2)
8546 s = s != NULL ? strchr (s + 1, '.') : NULL;
8547 return (s != NULL && (s[1] == 'w' || s[1] == 's'));
8548 }
8549
8550 /* Single-precision coprocessor loads and moves are OK too. */
8551 if ((insn->pinfo & FP_S)
8552 && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY
8553 | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY)))
8554 return 1;
8555
8556 return 0;
8557 }
8558
8559 /* This routine assembles an instruction into its binary format. As a
8560 side effect, it sets one of the global variables imm_reloc or
8561 offset_reloc to the type of relocation to do if one of the operands
8562 is an address expression. */
8563
8564 static void
8565 mips_ip (char *str, struct mips_cl_insn *ip)
8566 {
8567 char *s;
8568 const char *args;
8569 char c = 0;
8570 struct mips_opcode *insn;
8571 char *argsStart;
8572 unsigned int regno;
8573 unsigned int lastregno = 0;
8574 unsigned int lastpos = 0;
8575 unsigned int limlo, limhi;
8576 char *s_reset;
8577 char save_c = 0;
8578 offsetT min_range, max_range;
8579 int argnum;
8580 unsigned int rtype;
8581
8582 insn_error = NULL;
8583
8584 /* If the instruction contains a '.', we first try to match an instruction
8585 including the '.'. Then we try again without the '.'. */
8586 insn = NULL;
8587 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
8588 continue;
8589
8590 /* If we stopped on whitespace, then replace the whitespace with null for
8591 the call to hash_find. Save the character we replaced just in case we
8592 have to re-parse the instruction. */
8593 if (ISSPACE (*s))
8594 {
8595 save_c = *s;
8596 *s++ = '\0';
8597 }
8598
8599 insn = (struct mips_opcode *) hash_find (op_hash, str);
8600
8601 /* If we didn't find the instruction in the opcode table, try again, but
8602 this time with just the instruction up to, but not including the
8603 first '.'. */
8604 if (insn == NULL)
8605 {
8606 /* Restore the character we overwrite above (if any). */
8607 if (save_c)
8608 *(--s) = save_c;
8609
8610 /* Scan up to the first '.' or whitespace. */
8611 for (s = str;
8612 *s != '\0' && *s != '.' && !ISSPACE (*s);
8613 ++s)
8614 continue;
8615
8616 /* If we did not find a '.', then we can quit now. */
8617 if (*s != '.')
8618 {
8619 insn_error = "unrecognized opcode";
8620 return;
8621 }
8622
8623 /* Lookup the instruction in the hash table. */
8624 *s++ = '\0';
8625 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
8626 {
8627 insn_error = "unrecognized opcode";
8628 return;
8629 }
8630 }
8631
8632 argsStart = s;
8633 for (;;)
8634 {
8635 bfd_boolean ok;
8636
8637 assert (strcmp (insn->name, str) == 0);
8638
8639 ok = is_opcode_valid (insn, FALSE);
8640 if (! ok)
8641 {
8642 if (insn + 1 < &mips_opcodes[NUMOPCODES]
8643 && strcmp (insn->name, insn[1].name) == 0)
8644 {
8645 ++insn;
8646 continue;
8647 }
8648 else
8649 {
8650 if (!insn_error)
8651 {
8652 static char buf[100];
8653 sprintf (buf,
8654 _("opcode not supported on this processor: %s (%s)"),
8655 mips_cpu_info_from_arch (mips_opts.arch)->name,
8656 mips_cpu_info_from_isa (mips_opts.isa)->name);
8657 insn_error = buf;
8658 }
8659 if (save_c)
8660 *(--s) = save_c;
8661 return;
8662 }
8663 }
8664
8665 create_insn (ip, insn);
8666 insn_error = NULL;
8667 argnum = 1;
8668 lastregno = 0xffffffff;
8669 for (args = insn->args;; ++args)
8670 {
8671 int is_mdmx;
8672
8673 s += strspn (s, " \t");
8674 is_mdmx = 0;
8675 switch (*args)
8676 {
8677 case '\0': /* end of args */
8678 if (*s == '\0')
8679 return;
8680 break;
8681
8682 case '2': /* dsp 2-bit unsigned immediate in bit 11 */
8683 my_getExpression (&imm_expr, s);
8684 check_absolute_expr (ip, &imm_expr);
8685 if ((unsigned long) imm_expr.X_add_number != 1
8686 && (unsigned long) imm_expr.X_add_number != 3)
8687 {
8688 as_bad (_("BALIGN immediate not 1 or 3 (%lu)"),
8689 (unsigned long) imm_expr.X_add_number);
8690 }
8691 INSERT_OPERAND (BP, *ip, imm_expr.X_add_number);
8692 imm_expr.X_op = O_absent;
8693 s = expr_end;
8694 continue;
8695
8696 case '3': /* dsp 3-bit unsigned immediate in bit 21 */
8697 my_getExpression (&imm_expr, s);
8698 check_absolute_expr (ip, &imm_expr);
8699 if (imm_expr.X_add_number & ~OP_MASK_SA3)
8700 {
8701 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8702 OP_MASK_SA3, (unsigned long) imm_expr.X_add_number);
8703 }
8704 INSERT_OPERAND (SA3, *ip, imm_expr.X_add_number);
8705 imm_expr.X_op = O_absent;
8706 s = expr_end;
8707 continue;
8708
8709 case '4': /* dsp 4-bit unsigned immediate in bit 21 */
8710 my_getExpression (&imm_expr, s);
8711 check_absolute_expr (ip, &imm_expr);
8712 if (imm_expr.X_add_number & ~OP_MASK_SA4)
8713 {
8714 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8715 OP_MASK_SA4, (unsigned long) imm_expr.X_add_number);
8716 }
8717 INSERT_OPERAND (SA4, *ip, imm_expr.X_add_number);
8718 imm_expr.X_op = O_absent;
8719 s = expr_end;
8720 continue;
8721
8722 case '5': /* dsp 8-bit unsigned immediate in bit 16 */
8723 my_getExpression (&imm_expr, s);
8724 check_absolute_expr (ip, &imm_expr);
8725 if (imm_expr.X_add_number & ~OP_MASK_IMM8)
8726 {
8727 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8728 OP_MASK_IMM8, (unsigned long) imm_expr.X_add_number);
8729 }
8730 INSERT_OPERAND (IMM8, *ip, imm_expr.X_add_number);
8731 imm_expr.X_op = O_absent;
8732 s = expr_end;
8733 continue;
8734
8735 case '6': /* dsp 5-bit unsigned immediate in bit 21 */
8736 my_getExpression (&imm_expr, s);
8737 check_absolute_expr (ip, &imm_expr);
8738 if (imm_expr.X_add_number & ~OP_MASK_RS)
8739 {
8740 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8741 OP_MASK_RS, (unsigned long) imm_expr.X_add_number);
8742 }
8743 INSERT_OPERAND (RS, *ip, imm_expr.X_add_number);
8744 imm_expr.X_op = O_absent;
8745 s = expr_end;
8746 continue;
8747
8748 case '7': /* four dsp accumulators in bits 11,12 */
8749 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8750 s[3] >= '0' && s[3] <= '3')
8751 {
8752 regno = s[3] - '0';
8753 s += 4;
8754 INSERT_OPERAND (DSPACC, *ip, regno);
8755 continue;
8756 }
8757 else
8758 as_bad (_("Invalid dsp acc register"));
8759 break;
8760
8761 case '8': /* dsp 6-bit unsigned immediate in bit 11 */
8762 my_getExpression (&imm_expr, s);
8763 check_absolute_expr (ip, &imm_expr);
8764 if (imm_expr.X_add_number & ~OP_MASK_WRDSP)
8765 {
8766 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8767 OP_MASK_WRDSP,
8768 (unsigned long) imm_expr.X_add_number);
8769 }
8770 INSERT_OPERAND (WRDSP, *ip, imm_expr.X_add_number);
8771 imm_expr.X_op = O_absent;
8772 s = expr_end;
8773 continue;
8774
8775 case '9': /* four dsp accumulators in bits 21,22 */
8776 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8777 s[3] >= '0' && s[3] <= '3')
8778 {
8779 regno = s[3] - '0';
8780 s += 4;
8781 INSERT_OPERAND (DSPACC_S, *ip, regno);
8782 continue;
8783 }
8784 else
8785 as_bad (_("Invalid dsp acc register"));
8786 break;
8787
8788 case '0': /* dsp 6-bit signed immediate in bit 20 */
8789 my_getExpression (&imm_expr, s);
8790 check_absolute_expr (ip, &imm_expr);
8791 min_range = -((OP_MASK_DSPSFT + 1) >> 1);
8792 max_range = ((OP_MASK_DSPSFT + 1) >> 1) - 1;
8793 if (imm_expr.X_add_number < min_range ||
8794 imm_expr.X_add_number > max_range)
8795 {
8796 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8797 (long) min_range, (long) max_range,
8798 (long) imm_expr.X_add_number);
8799 }
8800 INSERT_OPERAND (DSPSFT, *ip, imm_expr.X_add_number);
8801 imm_expr.X_op = O_absent;
8802 s = expr_end;
8803 continue;
8804
8805 case '\'': /* dsp 6-bit unsigned immediate in bit 16 */
8806 my_getExpression (&imm_expr, s);
8807 check_absolute_expr (ip, &imm_expr);
8808 if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
8809 {
8810 as_bad (_("DSP immediate not in range 0..%d (%lu)"),
8811 OP_MASK_RDDSP,
8812 (unsigned long) imm_expr.X_add_number);
8813 }
8814 INSERT_OPERAND (RDDSP, *ip, imm_expr.X_add_number);
8815 imm_expr.X_op = O_absent;
8816 s = expr_end;
8817 continue;
8818
8819 case ':': /* dsp 7-bit signed immediate in bit 19 */
8820 my_getExpression (&imm_expr, s);
8821 check_absolute_expr (ip, &imm_expr);
8822 min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
8823 max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
8824 if (imm_expr.X_add_number < min_range ||
8825 imm_expr.X_add_number > max_range)
8826 {
8827 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8828 (long) min_range, (long) max_range,
8829 (long) imm_expr.X_add_number);
8830 }
8831 INSERT_OPERAND (DSPSFT_7, *ip, imm_expr.X_add_number);
8832 imm_expr.X_op = O_absent;
8833 s = expr_end;
8834 continue;
8835
8836 case '@': /* dsp 10-bit signed immediate in bit 16 */
8837 my_getExpression (&imm_expr, s);
8838 check_absolute_expr (ip, &imm_expr);
8839 min_range = -((OP_MASK_IMM10 + 1) >> 1);
8840 max_range = ((OP_MASK_IMM10 + 1) >> 1) - 1;
8841 if (imm_expr.X_add_number < min_range ||
8842 imm_expr.X_add_number > max_range)
8843 {
8844 as_bad (_("DSP immediate not in range %ld..%ld (%ld)"),
8845 (long) min_range, (long) max_range,
8846 (long) imm_expr.X_add_number);
8847 }
8848 INSERT_OPERAND (IMM10, *ip, imm_expr.X_add_number);
8849 imm_expr.X_op = O_absent;
8850 s = expr_end;
8851 continue;
8852
8853 case '!': /* MT usermode flag bit. */
8854 my_getExpression (&imm_expr, s);
8855 check_absolute_expr (ip, &imm_expr);
8856 if (imm_expr.X_add_number & ~OP_MASK_MT_U)
8857 as_bad (_("MT usermode bit not 0 or 1 (%lu)"),
8858 (unsigned long) imm_expr.X_add_number);
8859 INSERT_OPERAND (MT_U, *ip, imm_expr.X_add_number);
8860 imm_expr.X_op = O_absent;
8861 s = expr_end;
8862 continue;
8863
8864 case '$': /* MT load high flag bit. */
8865 my_getExpression (&imm_expr, s);
8866 check_absolute_expr (ip, &imm_expr);
8867 if (imm_expr.X_add_number & ~OP_MASK_MT_H)
8868 as_bad (_("MT load high bit not 0 or 1 (%lu)"),
8869 (unsigned long) imm_expr.X_add_number);
8870 INSERT_OPERAND (MT_H, *ip, imm_expr.X_add_number);
8871 imm_expr.X_op = O_absent;
8872 s = expr_end;
8873 continue;
8874
8875 case '*': /* four dsp accumulators in bits 18,19 */
8876 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8877 s[3] >= '0' && s[3] <= '3')
8878 {
8879 regno = s[3] - '0';
8880 s += 4;
8881 INSERT_OPERAND (MTACC_T, *ip, regno);
8882 continue;
8883 }
8884 else
8885 as_bad (_("Invalid dsp/smartmips acc register"));
8886 break;
8887
8888 case '&': /* four dsp accumulators in bits 13,14 */
8889 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8890 s[3] >= '0' && s[3] <= '3')
8891 {
8892 regno = s[3] - '0';
8893 s += 4;
8894 INSERT_OPERAND (MTACC_D, *ip, regno);
8895 continue;
8896 }
8897 else
8898 as_bad (_("Invalid dsp/smartmips acc register"));
8899 break;
8900
8901 case ',':
8902 ++argnum;
8903 if (*s++ == *args)
8904 continue;
8905 s--;
8906 switch (*++args)
8907 {
8908 case 'r':
8909 case 'v':
8910 INSERT_OPERAND (RS, *ip, lastregno);
8911 continue;
8912
8913 case 'w':
8914 INSERT_OPERAND (RT, *ip, lastregno);
8915 continue;
8916
8917 case 'W':
8918 INSERT_OPERAND (FT, *ip, lastregno);
8919 continue;
8920
8921 case 'V':
8922 INSERT_OPERAND (FS, *ip, lastregno);
8923 continue;
8924 }
8925 break;
8926
8927 case '(':
8928 /* Handle optional base register.
8929 Either the base register is omitted or
8930 we must have a left paren. */
8931 /* This is dependent on the next operand specifier
8932 is a base register specification. */
8933 assert (args[1] == 'b' || args[1] == '5'
8934 || args[1] == '-' || args[1] == '4');
8935 if (*s == '\0')
8936 return;
8937
8938 case ')': /* these must match exactly */
8939 case '[':
8940 case ']':
8941 if (*s++ == *args)
8942 continue;
8943 break;
8944
8945 case '+': /* Opcode extension character. */
8946 switch (*++args)
8947 {
8948 case '1': /* UDI immediates. */
8949 case '2':
8950 case '3':
8951 case '4':
8952 {
8953 const struct mips_immed *imm = mips_immed;
8954
8955 while (imm->type && imm->type != *args)
8956 ++imm;
8957 if (! imm->type)
8958 internalError ();
8959 my_getExpression (&imm_expr, s);
8960 check_absolute_expr (ip, &imm_expr);
8961 if ((unsigned long) imm_expr.X_add_number & ~imm->mask)
8962 {
8963 as_warn (_("Illegal %s number (%lu, 0x%lx)"),
8964 imm->desc ? imm->desc : ip->insn_mo->name,
8965 (unsigned long) imm_expr.X_add_number,
8966 (unsigned long) imm_expr.X_add_number);
8967 imm_expr.X_add_number &= imm->mask;
8968 }
8969 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
8970 << imm->shift);
8971 imm_expr.X_op = O_absent;
8972 s = expr_end;
8973 }
8974 continue;
8975
8976 case 'A': /* ins/ext position, becomes LSB. */
8977 limlo = 0;
8978 limhi = 31;
8979 goto do_lsb;
8980 case 'E':
8981 limlo = 32;
8982 limhi = 63;
8983 goto do_lsb;
8984 do_lsb:
8985 my_getExpression (&imm_expr, s);
8986 check_absolute_expr (ip, &imm_expr);
8987 if ((unsigned long) imm_expr.X_add_number < limlo
8988 || (unsigned long) imm_expr.X_add_number > limhi)
8989 {
8990 as_bad (_("Improper position (%lu)"),
8991 (unsigned long) imm_expr.X_add_number);
8992 imm_expr.X_add_number = limlo;
8993 }
8994 lastpos = imm_expr.X_add_number;
8995 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
8996 imm_expr.X_op = O_absent;
8997 s = expr_end;
8998 continue;
8999
9000 case 'B': /* ins size, becomes MSB. */
9001 limlo = 1;
9002 limhi = 32;
9003 goto do_msb;
9004 case 'F':
9005 limlo = 33;
9006 limhi = 64;
9007 goto do_msb;
9008 do_msb:
9009 my_getExpression (&imm_expr, s);
9010 check_absolute_expr (ip, &imm_expr);
9011 /* Check for negative input so that small negative numbers
9012 will not succeed incorrectly. The checks against
9013 (pos+size) transitively check "size" itself,
9014 assuming that "pos" is reasonable. */
9015 if ((long) imm_expr.X_add_number < 0
9016 || ((unsigned long) imm_expr.X_add_number
9017 + lastpos) < limlo
9018 || ((unsigned long) imm_expr.X_add_number
9019 + lastpos) > limhi)
9020 {
9021 as_bad (_("Improper insert size (%lu, position %lu)"),
9022 (unsigned long) imm_expr.X_add_number,
9023 (unsigned long) lastpos);
9024 imm_expr.X_add_number = limlo - lastpos;
9025 }
9026 INSERT_OPERAND (INSMSB, *ip,
9027 lastpos + imm_expr.X_add_number - 1);
9028 imm_expr.X_op = O_absent;
9029 s = expr_end;
9030 continue;
9031
9032 case 'C': /* ext size, becomes MSBD. */
9033 limlo = 1;
9034 limhi = 32;
9035 goto do_msbd;
9036 case 'G':
9037 limlo = 33;
9038 limhi = 64;
9039 goto do_msbd;
9040 case 'H':
9041 limlo = 33;
9042 limhi = 64;
9043 goto do_msbd;
9044 do_msbd:
9045 my_getExpression (&imm_expr, s);
9046 check_absolute_expr (ip, &imm_expr);
9047 /* Check for negative input so that small negative numbers
9048 will not succeed incorrectly. The checks against
9049 (pos+size) transitively check "size" itself,
9050 assuming that "pos" is reasonable. */
9051 if ((long) imm_expr.X_add_number < 0
9052 || ((unsigned long) imm_expr.X_add_number
9053 + lastpos) < limlo
9054 || ((unsigned long) imm_expr.X_add_number
9055 + lastpos) > limhi)
9056 {
9057 as_bad (_("Improper extract size (%lu, position %lu)"),
9058 (unsigned long) imm_expr.X_add_number,
9059 (unsigned long) lastpos);
9060 imm_expr.X_add_number = limlo - lastpos;
9061 }
9062 INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
9063 imm_expr.X_op = O_absent;
9064 s = expr_end;
9065 continue;
9066
9067 case 'D':
9068 /* +D is for disassembly only; never match. */
9069 break;
9070
9071 case 'I':
9072 /* "+I" is like "I", except that imm2_expr is used. */
9073 my_getExpression (&imm2_expr, s);
9074 if (imm2_expr.X_op != O_big
9075 && imm2_expr.X_op != O_constant)
9076 insn_error = _("absolute expression required");
9077 if (HAVE_32BIT_GPRS)
9078 normalize_constant_expr (&imm2_expr);
9079 s = expr_end;
9080 continue;
9081
9082 case 'T': /* Coprocessor register. */
9083 /* +T is for disassembly only; never match. */
9084 break;
9085
9086 case 't': /* Coprocessor register number. */
9087 if (s[0] == '$' && ISDIGIT (s[1]))
9088 {
9089 ++s;
9090 regno = 0;
9091 do
9092 {
9093 regno *= 10;
9094 regno += *s - '0';
9095 ++s;
9096 }
9097 while (ISDIGIT (*s));
9098 if (regno > 31)
9099 as_bad (_("Invalid register number (%d)"), regno);
9100 else
9101 {
9102 INSERT_OPERAND (RT, *ip, regno);
9103 continue;
9104 }
9105 }
9106 else
9107 as_bad (_("Invalid coprocessor 0 register number"));
9108 break;
9109
9110 case 'x':
9111 /* bbit[01] and bbit[01]32 bit index. Give error if index
9112 is not in the valid range. */
9113 my_getExpression (&imm_expr, s);
9114 check_absolute_expr (ip, &imm_expr);
9115 if ((unsigned) imm_expr.X_add_number > 31)
9116 {
9117 as_bad (_("Improper bit index (%lu)"),
9118 (unsigned long) imm_expr.X_add_number);
9119 imm_expr.X_add_number = 0;
9120 }
9121 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number);
9122 imm_expr.X_op = O_absent;
9123 s = expr_end;
9124 continue;
9125
9126 case 'X':
9127 /* bbit[01] bit index when bbit is used but we generate
9128 bbit[01]32 because the index is over 32. Move to the
9129 next candidate if index is not in the valid range. */
9130 my_getExpression (&imm_expr, s);
9131 check_absolute_expr (ip, &imm_expr);
9132 if ((unsigned) imm_expr.X_add_number < 32
9133 || (unsigned) imm_expr.X_add_number > 63)
9134 break;
9135 INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number - 32);
9136 imm_expr.X_op = O_absent;
9137 s = expr_end;
9138 continue;
9139
9140 case 'p':
9141 /* cins, cins32, exts and exts32 position field. Give error
9142 if it's not in the valid range. */
9143 my_getExpression (&imm_expr, s);
9144 check_absolute_expr (ip, &imm_expr);
9145 if ((unsigned) imm_expr.X_add_number > 31)
9146 {
9147 as_bad (_("Improper position (%lu)"),
9148 (unsigned long) imm_expr.X_add_number);
9149 imm_expr.X_add_number = 0;
9150 }
9151 /* Make the pos explicit to simplify +S. */
9152 lastpos = imm_expr.X_add_number + 32;
9153 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number);
9154 imm_expr.X_op = O_absent;
9155 s = expr_end;
9156 continue;
9157
9158 case 'P':
9159 /* cins, cins32, exts and exts32 position field. Move to
9160 the next candidate if it's not in the valid range. */
9161 my_getExpression (&imm_expr, s);
9162 check_absolute_expr (ip, &imm_expr);
9163 if ((unsigned) imm_expr.X_add_number < 32
9164 || (unsigned) imm_expr.X_add_number > 63)
9165 break;
9166 lastpos = imm_expr.X_add_number;
9167 INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number - 32);
9168 imm_expr.X_op = O_absent;
9169 s = expr_end;
9170 continue;
9171
9172 case 's':
9173 /* cins and exts length-minus-one field. */
9174 my_getExpression (&imm_expr, s);
9175 check_absolute_expr (ip, &imm_expr);
9176 if ((unsigned long) imm_expr.X_add_number > 31)
9177 {
9178 as_bad (_("Improper size (%lu)"),
9179 (unsigned long) imm_expr.X_add_number);
9180 imm_expr.X_add_number = 0;
9181 }
9182 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9183 imm_expr.X_op = O_absent;
9184 s = expr_end;
9185 continue;
9186
9187 case 'S':
9188 /* cins32/exts32 and cins/exts aliasing cint32/exts32
9189 length-minus-one field. */
9190 my_getExpression (&imm_expr, s);
9191 check_absolute_expr (ip, &imm_expr);
9192 if ((long) imm_expr.X_add_number < 0
9193 || (unsigned long) imm_expr.X_add_number + lastpos > 63)
9194 {
9195 as_bad (_("Improper size (%lu)"),
9196 (unsigned long) imm_expr.X_add_number);
9197 imm_expr.X_add_number = 0;
9198 }
9199 INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number);
9200 imm_expr.X_op = O_absent;
9201 s = expr_end;
9202 continue;
9203
9204 case 'Q':
9205 /* seqi/snei immediate field. */
9206 my_getExpression (&imm_expr, s);
9207 check_absolute_expr (ip, &imm_expr);
9208 if ((long) imm_expr.X_add_number < -512
9209 || (long) imm_expr.X_add_number >= 512)
9210 {
9211 as_bad (_("Improper immediate (%ld)"),
9212 (long) imm_expr.X_add_number);
9213 imm_expr.X_add_number = 0;
9214 }
9215 INSERT_OPERAND (SEQI, *ip, imm_expr.X_add_number);
9216 imm_expr.X_op = O_absent;
9217 s = expr_end;
9218 continue;
9219
9220 default:
9221 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
9222 *args, insn->name, insn->args);
9223 /* Further processing is fruitless. */
9224 return;
9225 }
9226 break;
9227
9228 case '<': /* must be at least one digit */
9229 /*
9230 * According to the manual, if the shift amount is greater
9231 * than 31 or less than 0, then the shift amount should be
9232 * mod 32. In reality the mips assembler issues an error.
9233 * We issue a warning and mask out all but the low 5 bits.
9234 */
9235 my_getExpression (&imm_expr, s);
9236 check_absolute_expr (ip, &imm_expr);
9237 if ((unsigned long) imm_expr.X_add_number > 31)
9238 as_warn (_("Improper shift amount (%lu)"),
9239 (unsigned long) imm_expr.X_add_number);
9240 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
9241 imm_expr.X_op = O_absent;
9242 s = expr_end;
9243 continue;
9244
9245 case '>': /* shift amount minus 32 */
9246 my_getExpression (&imm_expr, s);
9247 check_absolute_expr (ip, &imm_expr);
9248 if ((unsigned long) imm_expr.X_add_number < 32
9249 || (unsigned long) imm_expr.X_add_number > 63)
9250 break;
9251 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
9252 imm_expr.X_op = O_absent;
9253 s = expr_end;
9254 continue;
9255
9256 case 'k': /* cache code */
9257 case 'h': /* prefx code */
9258 case '1': /* sync type */
9259 my_getExpression (&imm_expr, s);
9260 check_absolute_expr (ip, &imm_expr);
9261 if ((unsigned long) imm_expr.X_add_number > 31)
9262 as_warn (_("Invalid value for `%s' (%lu)"),
9263 ip->insn_mo->name,
9264 (unsigned long) imm_expr.X_add_number);
9265 if (*args == 'k')
9266 INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
9267 else if (*args == 'h')
9268 INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
9269 else
9270 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
9271 imm_expr.X_op = O_absent;
9272 s = expr_end;
9273 continue;
9274
9275 case 'c': /* break code */
9276 my_getExpression (&imm_expr, s);
9277 check_absolute_expr (ip, &imm_expr);
9278 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE)
9279 as_warn (_("Code for %s not in range 0..1023 (%lu)"),
9280 ip->insn_mo->name,
9281 (unsigned long) imm_expr.X_add_number);
9282 INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number);
9283 imm_expr.X_op = O_absent;
9284 s = expr_end;
9285 continue;
9286
9287 case 'q': /* lower break code */
9288 my_getExpression (&imm_expr, s);
9289 check_absolute_expr (ip, &imm_expr);
9290 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE2)
9291 as_warn (_("Lower code for %s not in range 0..1023 (%lu)"),
9292 ip->insn_mo->name,
9293 (unsigned long) imm_expr.X_add_number);
9294 INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number);
9295 imm_expr.X_op = O_absent;
9296 s = expr_end;
9297 continue;
9298
9299 case 'B': /* 20-bit syscall/break code. */
9300 my_getExpression (&imm_expr, s);
9301 check_absolute_expr (ip, &imm_expr);
9302 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
9303 as_warn (_("Code for %s not in range 0..1048575 (%lu)"),
9304 ip->insn_mo->name,
9305 (unsigned long) imm_expr.X_add_number);
9306 INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
9307 imm_expr.X_op = O_absent;
9308 s = expr_end;
9309 continue;
9310
9311 case 'C': /* Coprocessor code */
9312 my_getExpression (&imm_expr, s);
9313 check_absolute_expr (ip, &imm_expr);
9314 if ((unsigned long) imm_expr.X_add_number > OP_MASK_COPZ)
9315 {
9316 as_warn (_("Coproccesor code > 25 bits (%lu)"),
9317 (unsigned long) imm_expr.X_add_number);
9318 imm_expr.X_add_number &= OP_MASK_COPZ;
9319 }
9320 INSERT_OPERAND (COPZ, *ip, imm_expr.X_add_number);
9321 imm_expr.X_op = O_absent;
9322 s = expr_end;
9323 continue;
9324
9325 case 'J': /* 19-bit wait code. */
9326 my_getExpression (&imm_expr, s);
9327 check_absolute_expr (ip, &imm_expr);
9328 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
9329 {
9330 as_warn (_("Illegal 19-bit code (%lu)"),
9331 (unsigned long) imm_expr.X_add_number);
9332 imm_expr.X_add_number &= OP_MASK_CODE19;
9333 }
9334 INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
9335 imm_expr.X_op = O_absent;
9336 s = expr_end;
9337 continue;
9338
9339 case 'P': /* Performance register. */
9340 my_getExpression (&imm_expr, s);
9341 check_absolute_expr (ip, &imm_expr);
9342 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
9343 as_warn (_("Invalid performance register (%lu)"),
9344 (unsigned long) imm_expr.X_add_number);
9345 INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number);
9346 imm_expr.X_op = O_absent;
9347 s = expr_end;
9348 continue;
9349
9350 case 'G': /* Coprocessor destination register. */
9351 if (((ip->insn_opcode >> OP_SH_OP) & OP_MASK_OP) == OP_OP_COP0)
9352 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_CP0, &regno);
9353 else
9354 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
9355 INSERT_OPERAND (RD, *ip, regno);
9356 if (ok)
9357 {
9358 lastregno = regno;
9359 continue;
9360 }
9361 else
9362 break;
9363
9364 case 'b': /* base register */
9365 case 'd': /* destination register */
9366 case 's': /* source register */
9367 case 't': /* target register */
9368 case 'r': /* both target and source */
9369 case 'v': /* both dest and source */
9370 case 'w': /* both dest and target */
9371 case 'E': /* coprocessor target register */
9372 case 'K': /* 'rdhwr' destination register */
9373 case 'x': /* ignore register name */
9374 case 'z': /* must be zero register */
9375 case 'U': /* destination register (clo/clz). */
9376 case 'g': /* coprocessor destination register */
9377 s_reset = s;
9378 if (*args == 'E' || *args == 'K')
9379 ok = reg_lookup (&s, RTYPE_NUM, &regno);
9380 else
9381 {
9382 ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno);
9383 if (regno == AT && mips_opts.at)
9384 {
9385 if (mips_opts.at == ATREG)
9386 as_warn (_("used $at without \".set noat\""));
9387 else
9388 as_warn (_("used $%u with \".set at=$%u\""),
9389 regno, mips_opts.at);
9390 }
9391 }
9392 if (ok)
9393 {
9394 c = *args;
9395 if (*s == ' ')
9396 ++s;
9397 if (args[1] != *s)
9398 {
9399 if (c == 'r' || c == 'v' || c == 'w')
9400 {
9401 regno = lastregno;
9402 s = s_reset;
9403 ++args;
9404 }
9405 }
9406 /* 'z' only matches $0. */
9407 if (c == 'z' && regno != 0)
9408 break;
9409
9410 if (c == 's' && !strncmp (ip->insn_mo->name, "jalr", 4))
9411 {
9412 if (regno == lastregno)
9413 {
9414 insn_error = _("source and destination must be different");
9415 continue;
9416 }
9417 if (regno == 31 && lastregno == 0xffffffff)
9418 {
9419 insn_error = _("a destination register must be supplied");
9420 continue;
9421 }
9422 }
9423 /* Now that we have assembled one operand, we use the args string
9424 * to figure out where it goes in the instruction. */
9425 switch (c)
9426 {
9427 case 'r':
9428 case 's':
9429 case 'v':
9430 case 'b':
9431 INSERT_OPERAND (RS, *ip, regno);
9432 break;
9433 case 'd':
9434 case 'G':
9435 case 'K':
9436 case 'g':
9437 INSERT_OPERAND (RD, *ip, regno);
9438 break;
9439 case 'U':
9440 INSERT_OPERAND (RD, *ip, regno);
9441 INSERT_OPERAND (RT, *ip, regno);
9442 break;
9443 case 'w':
9444 case 't':
9445 case 'E':
9446 INSERT_OPERAND (RT, *ip, regno);
9447 break;
9448 case 'x':
9449 /* This case exists because on the r3000 trunc
9450 expands into a macro which requires a gp
9451 register. On the r6000 or r4000 it is
9452 assembled into a single instruction which
9453 ignores the register. Thus the insn version
9454 is MIPS_ISA2 and uses 'x', and the macro
9455 version is MIPS_ISA1 and uses 't'. */
9456 break;
9457 case 'z':
9458 /* This case is for the div instruction, which
9459 acts differently if the destination argument
9460 is $0. This only matches $0, and is checked
9461 outside the switch. */
9462 break;
9463 case 'D':
9464 /* Itbl operand; not yet implemented. FIXME ?? */
9465 break;
9466 /* What about all other operands like 'i', which
9467 can be specified in the opcode table? */
9468 }
9469 lastregno = regno;
9470 continue;
9471 }
9472 switch (*args++)
9473 {
9474 case 'r':
9475 case 'v':
9476 INSERT_OPERAND (RS, *ip, lastregno);
9477 continue;
9478 case 'w':
9479 INSERT_OPERAND (RT, *ip, lastregno);
9480 continue;
9481 }
9482 break;
9483
9484 case 'O': /* MDMX alignment immediate constant. */
9485 my_getExpression (&imm_expr, s);
9486 check_absolute_expr (ip, &imm_expr);
9487 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
9488 as_warn ("Improper align amount (%ld), using low bits",
9489 (long) imm_expr.X_add_number);
9490 INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number);
9491 imm_expr.X_op = O_absent;
9492 s = expr_end;
9493 continue;
9494
9495 case 'Q': /* MDMX vector, element sel, or const. */
9496 if (s[0] != '$')
9497 {
9498 /* MDMX Immediate. */
9499 my_getExpression (&imm_expr, s);
9500 check_absolute_expr (ip, &imm_expr);
9501 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
9502 as_warn (_("Invalid MDMX Immediate (%ld)"),
9503 (long) imm_expr.X_add_number);
9504 INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
9505 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
9506 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
9507 else
9508 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
9509 imm_expr.X_op = O_absent;
9510 s = expr_end;
9511 continue;
9512 }
9513 /* Not MDMX Immediate. Fall through. */
9514 case 'X': /* MDMX destination register. */
9515 case 'Y': /* MDMX source register. */
9516 case 'Z': /* MDMX target register. */
9517 is_mdmx = 1;
9518 case 'D': /* floating point destination register */
9519 case 'S': /* floating point source register */
9520 case 'T': /* floating point target register */
9521 case 'R': /* floating point source register */
9522 case 'V':
9523 case 'W':
9524 rtype = RTYPE_FPU;
9525 if (is_mdmx
9526 || (mips_opts.ase_mdmx
9527 && (ip->insn_mo->pinfo & FP_D)
9528 && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY
9529 | INSN_COPROC_MEMORY_DELAY
9530 | INSN_LOAD_COPROC_DELAY
9531 | INSN_LOAD_MEMORY_DELAY
9532 | INSN_STORE_MEMORY))))
9533 rtype |= RTYPE_VEC;
9534 s_reset = s;
9535 if (reg_lookup (&s, rtype, &regno))
9536 {
9537 if ((regno & 1) != 0
9538 && HAVE_32BIT_FPRS
9539 && ! mips_oddfpreg_ok (ip->insn_mo, argnum))
9540 as_warn (_("Float register should be even, was %d"),
9541 regno);
9542
9543 c = *args;
9544 if (*s == ' ')
9545 ++s;
9546 if (args[1] != *s)
9547 {
9548 if (c == 'V' || c == 'W')
9549 {
9550 regno = lastregno;
9551 s = s_reset;
9552 ++args;
9553 }
9554 }
9555 switch (c)
9556 {
9557 case 'D':
9558 case 'X':
9559 INSERT_OPERAND (FD, *ip, regno);
9560 break;
9561 case 'V':
9562 case 'S':
9563 case 'Y':
9564 INSERT_OPERAND (FS, *ip, regno);
9565 break;
9566 case 'Q':
9567 /* This is like 'Z', but also needs to fix the MDMX
9568 vector/scalar select bits. Note that the
9569 scalar immediate case is handled above. */
9570 if (*s == '[')
9571 {
9572 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
9573 int max_el = (is_qh ? 3 : 7);
9574 s++;
9575 my_getExpression(&imm_expr, s);
9576 check_absolute_expr (ip, &imm_expr);
9577 s = expr_end;
9578 if (imm_expr.X_add_number > max_el)
9579 as_bad(_("Bad element selector %ld"),
9580 (long) imm_expr.X_add_number);
9581 imm_expr.X_add_number &= max_el;
9582 ip->insn_opcode |= (imm_expr.X_add_number
9583 << (OP_SH_VSEL +
9584 (is_qh ? 2 : 1)));
9585 imm_expr.X_op = O_absent;
9586 if (*s != ']')
9587 as_warn(_("Expecting ']' found '%s'"), s);
9588 else
9589 s++;
9590 }
9591 else
9592 {
9593 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
9594 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
9595 << OP_SH_VSEL);
9596 else
9597 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
9598 OP_SH_VSEL);
9599 }
9600 /* Fall through */
9601 case 'W':
9602 case 'T':
9603 case 'Z':
9604 INSERT_OPERAND (FT, *ip, regno);
9605 break;
9606 case 'R':
9607 INSERT_OPERAND (FR, *ip, regno);
9608 break;
9609 }
9610 lastregno = regno;
9611 continue;
9612 }
9613
9614 switch (*args++)
9615 {
9616 case 'V':
9617 INSERT_OPERAND (FS, *ip, lastregno);
9618 continue;
9619 case 'W':
9620 INSERT_OPERAND (FT, *ip, lastregno);
9621 continue;
9622 }
9623 break;
9624
9625 case 'I':
9626 my_getExpression (&imm_expr, s);
9627 if (imm_expr.X_op != O_big
9628 && imm_expr.X_op != O_constant)
9629 insn_error = _("absolute expression required");
9630 if (HAVE_32BIT_GPRS)
9631 normalize_constant_expr (&imm_expr);
9632 s = expr_end;
9633 continue;
9634
9635 case 'A':
9636 my_getExpression (&offset_expr, s);
9637 normalize_address_expr (&offset_expr);
9638 *imm_reloc = BFD_RELOC_32;
9639 s = expr_end;
9640 continue;
9641
9642 case 'F':
9643 case 'L':
9644 case 'f':
9645 case 'l':
9646 {
9647 int f64;
9648 int using_gprs;
9649 char *save_in;
9650 char *err;
9651 unsigned char temp[8];
9652 int len;
9653 unsigned int length;
9654 segT seg;
9655 subsegT subseg;
9656 char *p;
9657
9658 /* These only appear as the last operand in an
9659 instruction, and every instruction that accepts
9660 them in any variant accepts them in all variants.
9661 This means we don't have to worry about backing out
9662 any changes if the instruction does not match.
9663
9664 The difference between them is the size of the
9665 floating point constant and where it goes. For 'F'
9666 and 'L' the constant is 64 bits; for 'f' and 'l' it
9667 is 32 bits. Where the constant is placed is based
9668 on how the MIPS assembler does things:
9669 F -- .rdata
9670 L -- .lit8
9671 f -- immediate value
9672 l -- .lit4
9673
9674 The .lit4 and .lit8 sections are only used if
9675 permitted by the -G argument.
9676
9677 The code below needs to know whether the target register
9678 is 32 or 64 bits wide. It relies on the fact 'f' and
9679 'F' are used with GPR-based instructions and 'l' and
9680 'L' are used with FPR-based instructions. */
9681
9682 f64 = *args == 'F' || *args == 'L';
9683 using_gprs = *args == 'F' || *args == 'f';
9684
9685 save_in = input_line_pointer;
9686 input_line_pointer = s;
9687 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
9688 length = len;
9689 s = input_line_pointer;
9690 input_line_pointer = save_in;
9691 if (err != NULL && *err != '\0')
9692 {
9693 as_bad (_("Bad floating point constant: %s"), err);
9694 memset (temp, '\0', sizeof temp);
9695 length = f64 ? 8 : 4;
9696 }
9697
9698 assert (length == (unsigned) (f64 ? 8 : 4));
9699
9700 if (*args == 'f'
9701 || (*args == 'l'
9702 && (g_switch_value < 4
9703 || (temp[0] == 0 && temp[1] == 0)
9704 || (temp[2] == 0 && temp[3] == 0))))
9705 {
9706 imm_expr.X_op = O_constant;
9707 if (! target_big_endian)
9708 imm_expr.X_add_number = bfd_getl32 (temp);
9709 else
9710 imm_expr.X_add_number = bfd_getb32 (temp);
9711 }
9712 else if (length > 4
9713 && ! mips_disable_float_construction
9714 /* Constants can only be constructed in GPRs and
9715 copied to FPRs if the GPRs are at least as wide
9716 as the FPRs. Force the constant into memory if
9717 we are using 64-bit FPRs but the GPRs are only
9718 32 bits wide. */
9719 && (using_gprs
9720 || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
9721 && ((temp[0] == 0 && temp[1] == 0)
9722 || (temp[2] == 0 && temp[3] == 0))
9723 && ((temp[4] == 0 && temp[5] == 0)
9724 || (temp[6] == 0 && temp[7] == 0)))
9725 {
9726 /* The value is simple enough to load with a couple of
9727 instructions. If using 32-bit registers, set
9728 imm_expr to the high order 32 bits and offset_expr to
9729 the low order 32 bits. Otherwise, set imm_expr to
9730 the entire 64 bit constant. */
9731 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
9732 {
9733 imm_expr.X_op = O_constant;
9734 offset_expr.X_op = O_constant;
9735 if (! target_big_endian)
9736 {
9737 imm_expr.X_add_number = bfd_getl32 (temp + 4);
9738 offset_expr.X_add_number = bfd_getl32 (temp);
9739 }
9740 else
9741 {
9742 imm_expr.X_add_number = bfd_getb32 (temp);
9743 offset_expr.X_add_number = bfd_getb32 (temp + 4);
9744 }
9745 if (offset_expr.X_add_number == 0)
9746 offset_expr.X_op = O_absent;
9747 }
9748 else if (sizeof (imm_expr.X_add_number) > 4)
9749 {
9750 imm_expr.X_op = O_constant;
9751 if (! target_big_endian)
9752 imm_expr.X_add_number = bfd_getl64 (temp);
9753 else
9754 imm_expr.X_add_number = bfd_getb64 (temp);
9755 }
9756 else
9757 {
9758 imm_expr.X_op = O_big;
9759 imm_expr.X_add_number = 4;
9760 if (! target_big_endian)
9761 {
9762 generic_bignum[0] = bfd_getl16 (temp);
9763 generic_bignum[1] = bfd_getl16 (temp + 2);
9764 generic_bignum[2] = bfd_getl16 (temp + 4);
9765 generic_bignum[3] = bfd_getl16 (temp + 6);
9766 }
9767 else
9768 {
9769 generic_bignum[0] = bfd_getb16 (temp + 6);
9770 generic_bignum[1] = bfd_getb16 (temp + 4);
9771 generic_bignum[2] = bfd_getb16 (temp + 2);
9772 generic_bignum[3] = bfd_getb16 (temp);
9773 }
9774 }
9775 }
9776 else
9777 {
9778 const char *newname;
9779 segT new_seg;
9780
9781 /* Switch to the right section. */
9782 seg = now_seg;
9783 subseg = now_subseg;
9784 switch (*args)
9785 {
9786 default: /* unused default case avoids warnings. */
9787 case 'L':
9788 newname = RDATA_SECTION_NAME;
9789 if (g_switch_value >= 8)
9790 newname = ".lit8";
9791 break;
9792 case 'F':
9793 newname = RDATA_SECTION_NAME;
9794 break;
9795 case 'l':
9796 assert (g_switch_value >= 4);
9797 newname = ".lit4";
9798 break;
9799 }
9800 new_seg = subseg_new (newname, (subsegT) 0);
9801 if (IS_ELF)
9802 bfd_set_section_flags (stdoutput, new_seg,
9803 (SEC_ALLOC
9804 | SEC_LOAD
9805 | SEC_READONLY
9806 | SEC_DATA));
9807 frag_align (*args == 'l' ? 2 : 3, 0, 0);
9808 if (IS_ELF && strncmp (TARGET_OS, "elf", 3) != 0)
9809 record_alignment (new_seg, 4);
9810 else
9811 record_alignment (new_seg, *args == 'l' ? 2 : 3);
9812 if (seg == now_seg)
9813 as_bad (_("Can't use floating point insn in this section"));
9814
9815 /* Set the argument to the current address in the
9816 section. */
9817 offset_expr.X_op = O_symbol;
9818 offset_expr.X_add_symbol =
9819 symbol_new ("L0\001", now_seg,
9820 (valueT) frag_now_fix (), frag_now);
9821 offset_expr.X_add_number = 0;
9822
9823 /* Put the floating point number into the section. */
9824 p = frag_more ((int) length);
9825 memcpy (p, temp, length);
9826
9827 /* Switch back to the original section. */
9828 subseg_set (seg, subseg);
9829 }
9830 }
9831 continue;
9832
9833 case 'i': /* 16 bit unsigned immediate */
9834 case 'j': /* 16 bit signed immediate */
9835 *imm_reloc = BFD_RELOC_LO16;
9836 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
9837 {
9838 int more;
9839 offsetT minval, maxval;
9840
9841 more = (insn + 1 < &mips_opcodes[NUMOPCODES]
9842 && strcmp (insn->name, insn[1].name) == 0);
9843
9844 /* If the expression was written as an unsigned number,
9845 only treat it as signed if there are no more
9846 alternatives. */
9847 if (more
9848 && *args == 'j'
9849 && sizeof (imm_expr.X_add_number) <= 4
9850 && imm_expr.X_op == O_constant
9851 && imm_expr.X_add_number < 0
9852 && imm_expr.X_unsigned
9853 && HAVE_64BIT_GPRS)
9854 break;
9855
9856 /* For compatibility with older assemblers, we accept
9857 0x8000-0xffff as signed 16-bit numbers when only
9858 signed numbers are allowed. */
9859 if (*args == 'i')
9860 minval = 0, maxval = 0xffff;
9861 else if (more)
9862 minval = -0x8000, maxval = 0x7fff;
9863 else
9864 minval = -0x8000, maxval = 0xffff;
9865
9866 if (imm_expr.X_op != O_constant
9867 || imm_expr.X_add_number < minval
9868 || imm_expr.X_add_number > maxval)
9869 {
9870 if (more)
9871 break;
9872 if (imm_expr.X_op == O_constant
9873 || imm_expr.X_op == O_big)
9874 as_bad (_("expression out of range"));
9875 }
9876 }
9877 s = expr_end;
9878 continue;
9879
9880 case 'o': /* 16 bit offset */
9881 /* Check whether there is only a single bracketed expression
9882 left. If so, it must be the base register and the
9883 constant must be zero. */
9884 if (*s == '(' && strchr (s + 1, '(') == 0)
9885 {
9886 offset_expr.X_op = O_constant;
9887 offset_expr.X_add_number = 0;
9888 continue;
9889 }
9890
9891 /* If this value won't fit into a 16 bit offset, then go
9892 find a macro that will generate the 32 bit offset
9893 code pattern. */
9894 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
9895 && (offset_expr.X_op != O_constant
9896 || offset_expr.X_add_number >= 0x8000
9897 || offset_expr.X_add_number < -0x8000))
9898 break;
9899
9900 s = expr_end;
9901 continue;
9902
9903 case 'p': /* pc relative offset */
9904 *offset_reloc = BFD_RELOC_16_PCREL_S2;
9905 my_getExpression (&offset_expr, s);
9906 s = expr_end;
9907 continue;
9908
9909 case 'u': /* upper 16 bits */
9910 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
9911 && imm_expr.X_op == O_constant
9912 && (imm_expr.X_add_number < 0
9913 || imm_expr.X_add_number >= 0x10000))
9914 as_bad (_("lui expression not in range 0..65535"));
9915 s = expr_end;
9916 continue;
9917
9918 case 'a': /* 26 bit address */
9919 my_getExpression (&offset_expr, s);
9920 s = expr_end;
9921 *offset_reloc = BFD_RELOC_MIPS_JMP;
9922 continue;
9923
9924 case 'N': /* 3 bit branch condition code */
9925 case 'M': /* 3 bit compare condition code */
9926 rtype = RTYPE_CCC;
9927 if (ip->insn_mo->pinfo & (FP_D| FP_S))
9928 rtype |= RTYPE_FCC;
9929 if (!reg_lookup (&s, rtype, &regno))
9930 break;
9931 if ((strcmp(str + strlen(str) - 3, ".ps") == 0
9932 || strcmp(str + strlen(str) - 5, "any2f") == 0
9933 || strcmp(str + strlen(str) - 5, "any2t") == 0)
9934 && (regno & 1) != 0)
9935 as_warn(_("Condition code register should be even for %s, was %d"),
9936 str, regno);
9937 if ((strcmp(str + strlen(str) - 5, "any4f") == 0
9938 || strcmp(str + strlen(str) - 5, "any4t") == 0)
9939 && (regno & 3) != 0)
9940 as_warn(_("Condition code register should be 0 or 4 for %s, was %d"),
9941 str, regno);
9942 if (*args == 'N')
9943 INSERT_OPERAND (BCC, *ip, regno);
9944 else
9945 INSERT_OPERAND (CCC, *ip, regno);
9946 continue;
9947
9948 case 'H':
9949 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
9950 s += 2;
9951 if (ISDIGIT (*s))
9952 {
9953 c = 0;
9954 do
9955 {
9956 c *= 10;
9957 c += *s - '0';
9958 ++s;
9959 }
9960 while (ISDIGIT (*s));
9961 }
9962 else
9963 c = 8; /* Invalid sel value. */
9964
9965 if (c > 7)
9966 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
9967 ip->insn_opcode |= c;
9968 continue;
9969
9970 case 'e':
9971 /* Must be at least one digit. */
9972 my_getExpression (&imm_expr, s);
9973 check_absolute_expr (ip, &imm_expr);
9974
9975 if ((unsigned long) imm_expr.X_add_number
9976 > (unsigned long) OP_MASK_VECBYTE)
9977 {
9978 as_bad (_("bad byte vector index (%ld)"),
9979 (long) imm_expr.X_add_number);
9980 imm_expr.X_add_number = 0;
9981 }
9982
9983 INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
9984 imm_expr.X_op = O_absent;
9985 s = expr_end;
9986 continue;
9987
9988 case '%':
9989 my_getExpression (&imm_expr, s);
9990 check_absolute_expr (ip, &imm_expr);
9991
9992 if ((unsigned long) imm_expr.X_add_number
9993 > (unsigned long) OP_MASK_VECALIGN)
9994 {
9995 as_bad (_("bad byte vector index (%ld)"),
9996 (long) imm_expr.X_add_number);
9997 imm_expr.X_add_number = 0;
9998 }
9999
10000 INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
10001 imm_expr.X_op = O_absent;
10002 s = expr_end;
10003 continue;
10004
10005 default:
10006 as_bad (_("bad char = '%c'\n"), *args);
10007 internalError ();
10008 }
10009 break;
10010 }
10011 /* Args don't match. */
10012 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
10013 !strcmp (insn->name, insn[1].name))
10014 {
10015 ++insn;
10016 s = argsStart;
10017 insn_error = _("illegal operands");
10018 continue;
10019 }
10020 if (save_c)
10021 *(--argsStart) = save_c;
10022 insn_error = _("illegal operands");
10023 return;
10024 }
10025 }
10026
10027 #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); }
10028
10029 /* This routine assembles an instruction into its binary format when
10030 assembling for the mips16. As a side effect, it sets one of the
10031 global variables imm_reloc or offset_reloc to the type of
10032 relocation to do if one of the operands is an address expression.
10033 It also sets mips16_small and mips16_ext if the user explicitly
10034 requested a small or extended instruction. */
10035
10036 static void
10037 mips16_ip (char *str, struct mips_cl_insn *ip)
10038 {
10039 char *s;
10040 const char *args;
10041 struct mips_opcode *insn;
10042 char *argsstart;
10043 unsigned int regno;
10044 unsigned int lastregno = 0;
10045 char *s_reset;
10046 size_t i;
10047
10048 insn_error = NULL;
10049
10050 mips16_small = FALSE;
10051 mips16_ext = FALSE;
10052
10053 for (s = str; ISLOWER (*s); ++s)
10054 ;
10055 switch (*s)
10056 {
10057 case '\0':
10058 break;
10059
10060 case ' ':
10061 *s++ = '\0';
10062 break;
10063
10064 case '.':
10065 if (s[1] == 't' && s[2] == ' ')
10066 {
10067 *s = '\0';
10068 mips16_small = TRUE;
10069 s += 3;
10070 break;
10071 }
10072 else if (s[1] == 'e' && s[2] == ' ')
10073 {
10074 *s = '\0';
10075 mips16_ext = TRUE;
10076 s += 3;
10077 break;
10078 }
10079 /* Fall through. */
10080 default:
10081 insn_error = _("unknown opcode");
10082 return;
10083 }
10084
10085 if (mips_opts.noautoextend && ! mips16_ext)
10086 mips16_small = TRUE;
10087
10088 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
10089 {
10090 insn_error = _("unrecognized opcode");
10091 return;
10092 }
10093
10094 argsstart = s;
10095 for (;;)
10096 {
10097 bfd_boolean ok;
10098
10099 assert (strcmp (insn->name, str) == 0);
10100
10101 ok = is_opcode_valid_16 (insn);
10102 if (! ok)
10103 {
10104 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes]
10105 && strcmp (insn->name, insn[1].name) == 0)
10106 {
10107 ++insn;
10108 continue;
10109 }
10110 else
10111 {
10112 if (!insn_error)
10113 {
10114 static char buf[100];
10115 sprintf (buf,
10116 _("opcode not supported on this processor: %s (%s)"),
10117 mips_cpu_info_from_arch (mips_opts.arch)->name,
10118 mips_cpu_info_from_isa (mips_opts.isa)->name);
10119 insn_error = buf;
10120 }
10121 return;
10122 }
10123 }
10124
10125 create_insn (ip, insn);
10126 imm_expr.X_op = O_absent;
10127 imm_reloc[0] = BFD_RELOC_UNUSED;
10128 imm_reloc[1] = BFD_RELOC_UNUSED;
10129 imm_reloc[2] = BFD_RELOC_UNUSED;
10130 imm2_expr.X_op = O_absent;
10131 offset_expr.X_op = O_absent;
10132 offset_reloc[0] = BFD_RELOC_UNUSED;
10133 offset_reloc[1] = BFD_RELOC_UNUSED;
10134 offset_reloc[2] = BFD_RELOC_UNUSED;
10135 for (args = insn->args; 1; ++args)
10136 {
10137 int c;
10138
10139 if (*s == ' ')
10140 ++s;
10141
10142 /* In this switch statement we call break if we did not find
10143 a match, continue if we did find a match, or return if we
10144 are done. */
10145
10146 c = *args;
10147 switch (c)
10148 {
10149 case '\0':
10150 if (*s == '\0')
10151 {
10152 /* Stuff the immediate value in now, if we can. */
10153 if (imm_expr.X_op == O_constant
10154 && *imm_reloc > BFD_RELOC_UNUSED
10155 && *imm_reloc != BFD_RELOC_MIPS16_GOT16
10156 && *imm_reloc != BFD_RELOC_MIPS16_CALL16
10157 && insn->pinfo != INSN_MACRO)
10158 {
10159 valueT tmp;
10160
10161 switch (*offset_reloc)
10162 {
10163 case BFD_RELOC_MIPS16_HI16_S:
10164 tmp = (imm_expr.X_add_number + 0x8000) >> 16;
10165 break;
10166
10167 case BFD_RELOC_MIPS16_HI16:
10168 tmp = imm_expr.X_add_number >> 16;
10169 break;
10170
10171 case BFD_RELOC_MIPS16_LO16:
10172 tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff)
10173 - 0x8000;
10174 break;
10175
10176 case BFD_RELOC_UNUSED:
10177 tmp = imm_expr.X_add_number;
10178 break;
10179
10180 default:
10181 internalError ();
10182 }
10183 *offset_reloc = BFD_RELOC_UNUSED;
10184
10185 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
10186 tmp, TRUE, mips16_small,
10187 mips16_ext, &ip->insn_opcode,
10188 &ip->use_extend, &ip->extend);
10189 imm_expr.X_op = O_absent;
10190 *imm_reloc = BFD_RELOC_UNUSED;
10191 }
10192
10193 return;
10194 }
10195 break;
10196
10197 case ',':
10198 if (*s++ == c)
10199 continue;
10200 s--;
10201 switch (*++args)
10202 {
10203 case 'v':
10204 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
10205 continue;
10206 case 'w':
10207 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
10208 continue;
10209 }
10210 break;
10211
10212 case '(':
10213 case ')':
10214 if (*s++ == c)
10215 continue;
10216 break;
10217
10218 case 'v':
10219 case 'w':
10220 if (s[0] != '$')
10221 {
10222 if (c == 'v')
10223 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
10224 else
10225 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
10226 ++args;
10227 continue;
10228 }
10229 /* Fall through. */
10230 case 'x':
10231 case 'y':
10232 case 'z':
10233 case 'Z':
10234 case '0':
10235 case 'S':
10236 case 'R':
10237 case 'X':
10238 case 'Y':
10239 s_reset = s;
10240 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &regno))
10241 {
10242 if (c == 'v' || c == 'w')
10243 {
10244 if (c == 'v')
10245 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
10246 else
10247 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
10248 ++args;
10249 continue;
10250 }
10251 break;
10252 }
10253
10254 if (*s == ' ')
10255 ++s;
10256 if (args[1] != *s)
10257 {
10258 if (c == 'v' || c == 'w')
10259 {
10260 regno = mips16_to_32_reg_map[lastregno];
10261 s = s_reset;
10262 ++args;
10263 }
10264 }
10265
10266 switch (c)
10267 {
10268 case 'x':
10269 case 'y':
10270 case 'z':
10271 case 'v':
10272 case 'w':
10273 case 'Z':
10274 regno = mips32_to_16_reg_map[regno];
10275 break;
10276
10277 case '0':
10278 if (regno != 0)
10279 regno = ILLEGAL_REG;
10280 break;
10281
10282 case 'S':
10283 if (regno != SP)
10284 regno = ILLEGAL_REG;
10285 break;
10286
10287 case 'R':
10288 if (regno != RA)
10289 regno = ILLEGAL_REG;
10290 break;
10291
10292 case 'X':
10293 case 'Y':
10294 if (regno == AT && mips_opts.at)
10295 {
10296 if (mips_opts.at == ATREG)
10297 as_warn (_("used $at without \".set noat\""));
10298 else
10299 as_warn (_("used $%u with \".set at=$%u\""),
10300 regno, mips_opts.at);
10301 }
10302 break;
10303
10304 default:
10305 internalError ();
10306 }
10307
10308 if (regno == ILLEGAL_REG)
10309 break;
10310
10311 switch (c)
10312 {
10313 case 'x':
10314 case 'v':
10315 MIPS16_INSERT_OPERAND (RX, *ip, regno);
10316 break;
10317 case 'y':
10318 case 'w':
10319 MIPS16_INSERT_OPERAND (RY, *ip, regno);
10320 break;
10321 case 'z':
10322 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
10323 break;
10324 case 'Z':
10325 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
10326 case '0':
10327 case 'S':
10328 case 'R':
10329 break;
10330 case 'X':
10331 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
10332 break;
10333 case 'Y':
10334 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
10335 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
10336 break;
10337 default:
10338 internalError ();
10339 }
10340
10341 lastregno = regno;
10342 continue;
10343
10344 case 'P':
10345 if (strncmp (s, "$pc", 3) == 0)
10346 {
10347 s += 3;
10348 continue;
10349 }
10350 break;
10351
10352 case '5':
10353 case 'H':
10354 case 'W':
10355 case 'D':
10356 case 'j':
10357 case 'V':
10358 case 'C':
10359 case 'U':
10360 case 'k':
10361 case 'K':
10362 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
10363 if (i > 0)
10364 {
10365 if (imm_expr.X_op != O_constant)
10366 {
10367 mips16_ext = TRUE;
10368 ip->use_extend = TRUE;
10369 ip->extend = 0;
10370 }
10371 else
10372 {
10373 /* We need to relax this instruction. */
10374 *offset_reloc = *imm_reloc;
10375 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10376 }
10377 s = expr_end;
10378 continue;
10379 }
10380 *imm_reloc = BFD_RELOC_UNUSED;
10381 /* Fall through. */
10382 case '<':
10383 case '>':
10384 case '[':
10385 case ']':
10386 case '4':
10387 case '8':
10388 my_getExpression (&imm_expr, s);
10389 if (imm_expr.X_op == O_register)
10390 {
10391 /* What we thought was an expression turned out to
10392 be a register. */
10393
10394 if (s[0] == '(' && args[1] == '(')
10395 {
10396 /* It looks like the expression was omitted
10397 before a register indirection, which means
10398 that the expression is implicitly zero. We
10399 still set up imm_expr, so that we handle
10400 explicit extensions correctly. */
10401 imm_expr.X_op = O_constant;
10402 imm_expr.X_add_number = 0;
10403 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10404 continue;
10405 }
10406
10407 break;
10408 }
10409
10410 /* We need to relax this instruction. */
10411 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
10412 s = expr_end;
10413 continue;
10414
10415 case 'p':
10416 case 'q':
10417 case 'A':
10418 case 'B':
10419 case 'E':
10420 /* We use offset_reloc rather than imm_reloc for the PC
10421 relative operands. This lets macros with both
10422 immediate and address operands work correctly. */
10423 my_getExpression (&offset_expr, s);
10424
10425 if (offset_expr.X_op == O_register)
10426 break;
10427
10428 /* We need to relax this instruction. */
10429 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
10430 s = expr_end;
10431 continue;
10432
10433 case '6': /* break code */
10434 my_getExpression (&imm_expr, s);
10435 check_absolute_expr (ip, &imm_expr);
10436 if ((unsigned long) imm_expr.X_add_number > 63)
10437 as_warn (_("Invalid value for `%s' (%lu)"),
10438 ip->insn_mo->name,
10439 (unsigned long) imm_expr.X_add_number);
10440 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
10441 imm_expr.X_op = O_absent;
10442 s = expr_end;
10443 continue;
10444
10445 case 'a': /* 26 bit address */
10446 my_getExpression (&offset_expr, s);
10447 s = expr_end;
10448 *offset_reloc = BFD_RELOC_MIPS16_JMP;
10449 ip->insn_opcode <<= 16;
10450 continue;
10451
10452 case 'l': /* register list for entry macro */
10453 case 'L': /* register list for exit macro */
10454 {
10455 int mask;
10456
10457 if (c == 'l')
10458 mask = 0;
10459 else
10460 mask = 7 << 3;
10461 while (*s != '\0')
10462 {
10463 unsigned int freg, reg1, reg2;
10464
10465 while (*s == ' ' || *s == ',')
10466 ++s;
10467 if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
10468 freg = 0;
10469 else if (reg_lookup (&s, RTYPE_FPU, &reg1))
10470 freg = 1;
10471 else
10472 {
10473 as_bad (_("can't parse register list"));
10474 break;
10475 }
10476 if (*s == ' ')
10477 ++s;
10478 if (*s != '-')
10479 reg2 = reg1;
10480 else
10481 {
10482 ++s;
10483 if (!reg_lookup (&s, freg ? RTYPE_FPU
10484 : (RTYPE_GP | RTYPE_NUM), &reg2))
10485 {
10486 as_bad (_("invalid register list"));
10487 break;
10488 }
10489 }
10490 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
10491 {
10492 mask &= ~ (7 << 3);
10493 mask |= 5 << 3;
10494 }
10495 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
10496 {
10497 mask &= ~ (7 << 3);
10498 mask |= 6 << 3;
10499 }
10500 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
10501 mask |= (reg2 - 3) << 3;
10502 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
10503 mask |= (reg2 - 15) << 1;
10504 else if (reg1 == RA && reg2 == RA)
10505 mask |= 1;
10506 else
10507 {
10508 as_bad (_("invalid register list"));
10509 break;
10510 }
10511 }
10512 /* The mask is filled in in the opcode table for the
10513 benefit of the disassembler. We remove it before
10514 applying the actual mask. */
10515 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
10516 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
10517 }
10518 continue;
10519
10520 case 'm': /* Register list for save insn. */
10521 case 'M': /* Register list for restore insn. */
10522 {
10523 int opcode = 0;
10524 int framesz = 0, seen_framesz = 0;
10525 int args = 0, statics = 0, sregs = 0;
10526
10527 while (*s != '\0')
10528 {
10529 unsigned int reg1, reg2;
10530
10531 SKIP_SPACE_TABS (s);
10532 while (*s == ',')
10533 ++s;
10534 SKIP_SPACE_TABS (s);
10535
10536 my_getExpression (&imm_expr, s);
10537 if (imm_expr.X_op == O_constant)
10538 {
10539 /* Handle the frame size. */
10540 if (seen_framesz)
10541 {
10542 as_bad (_("more than one frame size in list"));
10543 break;
10544 }
10545 seen_framesz = 1;
10546 framesz = imm_expr.X_add_number;
10547 imm_expr.X_op = O_absent;
10548 s = expr_end;
10549 continue;
10550 }
10551
10552 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg1))
10553 {
10554 as_bad (_("can't parse register list"));
10555 break;
10556 }
10557
10558 while (*s == ' ')
10559 ++s;
10560
10561 if (*s != '-')
10562 reg2 = reg1;
10563 else
10564 {
10565 ++s;
10566 if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, &reg2)
10567 || reg2 < reg1)
10568 {
10569 as_bad (_("can't parse register list"));
10570 break;
10571 }
10572 }
10573
10574 while (reg1 <= reg2)
10575 {
10576 if (reg1 >= 4 && reg1 <= 7)
10577 {
10578 if (!seen_framesz)
10579 /* args $a0-$a3 */
10580 args |= 1 << (reg1 - 4);
10581 else
10582 /* statics $a0-$a3 */
10583 statics |= 1 << (reg1 - 4);
10584 }
10585 else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30)
10586 {
10587 /* $s0-$s8 */
10588 sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16));
10589 }
10590 else if (reg1 == 31)
10591 {
10592 /* Add $ra to insn. */
10593 opcode |= 0x40;
10594 }
10595 else
10596 {
10597 as_bad (_("unexpected register in list"));
10598 break;
10599 }
10600 if (++reg1 == 24)
10601 reg1 = 30;
10602 }
10603 }
10604
10605 /* Encode args/statics combination. */
10606 if (args & statics)
10607 as_bad (_("arg/static registers overlap"));
10608 else if (args == 0xf)
10609 /* All $a0-$a3 are args. */
10610 opcode |= MIPS16_ALL_ARGS << 16;
10611 else if (statics == 0xf)
10612 /* All $a0-$a3 are statics. */
10613 opcode |= MIPS16_ALL_STATICS << 16;
10614 else
10615 {
10616 int narg = 0, nstat = 0;
10617
10618 /* Count arg registers. */
10619 while (args & 0x1)
10620 {
10621 args >>= 1;
10622 narg++;
10623 }
10624 if (args != 0)
10625 as_bad (_("invalid arg register list"));
10626
10627 /* Count static registers. */
10628 while (statics & 0x8)
10629 {
10630 statics = (statics << 1) & 0xf;
10631 nstat++;
10632 }
10633 if (statics != 0)
10634 as_bad (_("invalid static register list"));
10635
10636 /* Encode args/statics. */
10637 opcode |= ((narg << 2) | nstat) << 16;
10638 }
10639
10640 /* Encode $s0/$s1. */
10641 if (sregs & (1 << 0)) /* $s0 */
10642 opcode |= 0x20;
10643 if (sregs & (1 << 1)) /* $s1 */
10644 opcode |= 0x10;
10645 sregs >>= 2;
10646
10647 if (sregs != 0)
10648 {
10649 /* Count regs $s2-$s8. */
10650 int nsreg = 0;
10651 while (sregs & 1)
10652 {
10653 sregs >>= 1;
10654 nsreg++;
10655 }
10656 if (sregs != 0)
10657 as_bad (_("invalid static register list"));
10658 /* Encode $s2-$s8. */
10659 opcode |= nsreg << 24;
10660 }
10661
10662 /* Encode frame size. */
10663 if (!seen_framesz)
10664 as_bad (_("missing frame size"));
10665 else if ((framesz & 7) != 0 || framesz < 0
10666 || framesz > 0xff * 8)
10667 as_bad (_("invalid frame size"));
10668 else if (framesz != 128 || (opcode >> 16) != 0)
10669 {
10670 framesz /= 8;
10671 opcode |= (((framesz & 0xf0) << 16)
10672 | (framesz & 0x0f));
10673 }
10674
10675 /* Finally build the instruction. */
10676 if ((opcode >> 16) != 0 || framesz == 0)
10677 {
10678 ip->use_extend = TRUE;
10679 ip->extend = opcode >> 16;
10680 }
10681 ip->insn_opcode |= opcode & 0x7f;
10682 }
10683 continue;
10684
10685 case 'e': /* extend code */
10686 my_getExpression (&imm_expr, s);
10687 check_absolute_expr (ip, &imm_expr);
10688 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
10689 {
10690 as_warn (_("Invalid value for `%s' (%lu)"),
10691 ip->insn_mo->name,
10692 (unsigned long) imm_expr.X_add_number);
10693 imm_expr.X_add_number &= 0x7ff;
10694 }
10695 ip->insn_opcode |= imm_expr.X_add_number;
10696 imm_expr.X_op = O_absent;
10697 s = expr_end;
10698 continue;
10699
10700 default:
10701 internalError ();
10702 }
10703 break;
10704 }
10705
10706 /* Args don't match. */
10707 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
10708 strcmp (insn->name, insn[1].name) == 0)
10709 {
10710 ++insn;
10711 s = argsstart;
10712 continue;
10713 }
10714
10715 insn_error = _("illegal operands");
10716
10717 return;
10718 }
10719 }
10720
10721 /* This structure holds information we know about a mips16 immediate
10722 argument type. */
10723
10724 struct mips16_immed_operand
10725 {
10726 /* The type code used in the argument string in the opcode table. */
10727 int type;
10728 /* The number of bits in the short form of the opcode. */
10729 int nbits;
10730 /* The number of bits in the extended form of the opcode. */
10731 int extbits;
10732 /* The amount by which the short form is shifted when it is used;
10733 for example, the sw instruction has a shift count of 2. */
10734 int shift;
10735 /* The amount by which the short form is shifted when it is stored
10736 into the instruction code. */
10737 int op_shift;
10738 /* Non-zero if the short form is unsigned. */
10739 int unsp;
10740 /* Non-zero if the extended form is unsigned. */
10741 int extu;
10742 /* Non-zero if the value is PC relative. */
10743 int pcrel;
10744 };
10745
10746 /* The mips16 immediate operand types. */
10747
10748 static const struct mips16_immed_operand mips16_immed_operands[] =
10749 {
10750 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
10751 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
10752 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
10753 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
10754 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
10755 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
10756 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
10757 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
10758 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
10759 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
10760 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
10761 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
10762 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
10763 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
10764 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
10765 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
10766 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
10767 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
10768 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
10769 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
10770 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
10771 };
10772
10773 #define MIPS16_NUM_IMMED \
10774 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
10775
10776 /* Handle a mips16 instruction with an immediate value. This or's the
10777 small immediate value into *INSN. It sets *USE_EXTEND to indicate
10778 whether an extended value is needed; if one is needed, it sets
10779 *EXTEND to the value. The argument type is TYPE. The value is VAL.
10780 If SMALL is true, an unextended opcode was explicitly requested.
10781 If EXT is true, an extended opcode was explicitly requested. If
10782 WARN is true, warn if EXT does not match reality. */
10783
10784 static void
10785 mips16_immed (char *file, unsigned int line, int type, offsetT val,
10786 bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
10787 unsigned long *insn, bfd_boolean *use_extend,
10788 unsigned short *extend)
10789 {
10790 const struct mips16_immed_operand *op;
10791 int mintiny, maxtiny;
10792 bfd_boolean needext;
10793
10794 op = mips16_immed_operands;
10795 while (op->type != type)
10796 {
10797 ++op;
10798 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
10799 }
10800
10801 if (op->unsp)
10802 {
10803 if (type == '<' || type == '>' || type == '[' || type == ']')
10804 {
10805 mintiny = 1;
10806 maxtiny = 1 << op->nbits;
10807 }
10808 else
10809 {
10810 mintiny = 0;
10811 maxtiny = (1 << op->nbits) - 1;
10812 }
10813 }
10814 else
10815 {
10816 mintiny = - (1 << (op->nbits - 1));
10817 maxtiny = (1 << (op->nbits - 1)) - 1;
10818 }
10819
10820 /* Branch offsets have an implicit 0 in the lowest bit. */
10821 if (type == 'p' || type == 'q')
10822 val /= 2;
10823
10824 if ((val & ((1 << op->shift) - 1)) != 0
10825 || val < (mintiny << op->shift)
10826 || val > (maxtiny << op->shift))
10827 needext = TRUE;
10828 else
10829 needext = FALSE;
10830
10831 if (warn && ext && ! needext)
10832 as_warn_where (file, line,
10833 _("extended operand requested but not required"));
10834 if (small && needext)
10835 as_bad_where (file, line, _("invalid unextended operand value"));
10836
10837 if (small || (! ext && ! needext))
10838 {
10839 int insnval;
10840
10841 *use_extend = FALSE;
10842 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
10843 insnval <<= op->op_shift;
10844 *insn |= insnval;
10845 }
10846 else
10847 {
10848 long minext, maxext;
10849 int extval;
10850
10851 if (op->extu)
10852 {
10853 minext = 0;
10854 maxext = (1 << op->extbits) - 1;
10855 }
10856 else
10857 {
10858 minext = - (1 << (op->extbits - 1));
10859 maxext = (1 << (op->extbits - 1)) - 1;
10860 }
10861 if (val < minext || val > maxext)
10862 as_bad_where (file, line,
10863 _("operand value out of range for instruction"));
10864
10865 *use_extend = TRUE;
10866 if (op->extbits == 16)
10867 {
10868 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
10869 val &= 0x1f;
10870 }
10871 else if (op->extbits == 15)
10872 {
10873 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
10874 val &= 0xf;
10875 }
10876 else
10877 {
10878 extval = ((val & 0x1f) << 6) | (val & 0x20);
10879 val = 0;
10880 }
10881
10882 *extend = (unsigned short) extval;
10883 *insn |= val;
10884 }
10885 }
10886 \f
10887 struct percent_op_match
10888 {
10889 const char *str;
10890 bfd_reloc_code_real_type reloc;
10891 };
10892
10893 static const struct percent_op_match mips_percent_op[] =
10894 {
10895 {"%lo", BFD_RELOC_LO16},
10896 #ifdef OBJ_ELF
10897 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
10898 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
10899 {"%call16", BFD_RELOC_MIPS_CALL16},
10900 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
10901 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
10902 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
10903 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
10904 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
10905 {"%got", BFD_RELOC_MIPS_GOT16},
10906 {"%gp_rel", BFD_RELOC_GPREL16},
10907 {"%half", BFD_RELOC_16},
10908 {"%highest", BFD_RELOC_MIPS_HIGHEST},
10909 {"%higher", BFD_RELOC_MIPS_HIGHER},
10910 {"%neg", BFD_RELOC_MIPS_SUB},
10911 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
10912 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
10913 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
10914 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
10915 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
10916 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
10917 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
10918 #endif
10919 {"%hi", BFD_RELOC_HI16_S}
10920 };
10921
10922 static const struct percent_op_match mips16_percent_op[] =
10923 {
10924 {"%lo", BFD_RELOC_MIPS16_LO16},
10925 {"%gprel", BFD_RELOC_MIPS16_GPREL},
10926 {"%got", BFD_RELOC_MIPS16_GOT16},
10927 {"%call16", BFD_RELOC_MIPS16_CALL16},
10928 {"%hi", BFD_RELOC_MIPS16_HI16_S}
10929 };
10930
10931
10932 /* Return true if *STR points to a relocation operator. When returning true,
10933 move *STR over the operator and store its relocation code in *RELOC.
10934 Leave both *STR and *RELOC alone when returning false. */
10935
10936 static bfd_boolean
10937 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
10938 {
10939 const struct percent_op_match *percent_op;
10940 size_t limit, i;
10941
10942 if (mips_opts.mips16)
10943 {
10944 percent_op = mips16_percent_op;
10945 limit = ARRAY_SIZE (mips16_percent_op);
10946 }
10947 else
10948 {
10949 percent_op = mips_percent_op;
10950 limit = ARRAY_SIZE (mips_percent_op);
10951 }
10952
10953 for (i = 0; i < limit; i++)
10954 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
10955 {
10956 int len = strlen (percent_op[i].str);
10957
10958 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
10959 continue;
10960
10961 *str += strlen (percent_op[i].str);
10962 *reloc = percent_op[i].reloc;
10963
10964 /* Check whether the output BFD supports this relocation.
10965 If not, issue an error and fall back on something safe. */
10966 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
10967 {
10968 as_bad ("relocation %s isn't supported by the current ABI",
10969 percent_op[i].str);
10970 *reloc = BFD_RELOC_UNUSED;
10971 }
10972 return TRUE;
10973 }
10974 return FALSE;
10975 }
10976
10977
10978 /* Parse string STR as a 16-bit relocatable operand. Store the
10979 expression in *EP and the relocations in the array starting
10980 at RELOC. Return the number of relocation operators used.
10981
10982 On exit, EXPR_END points to the first character after the expression. */
10983
10984 static size_t
10985 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
10986 char *str)
10987 {
10988 bfd_reloc_code_real_type reversed_reloc[3];
10989 size_t reloc_index, i;
10990 int crux_depth, str_depth;
10991 char *crux;
10992
10993 /* Search for the start of the main expression, recoding relocations
10994 in REVERSED_RELOC. End the loop with CRUX pointing to the start
10995 of the main expression and with CRUX_DEPTH containing the number
10996 of open brackets at that point. */
10997 reloc_index = -1;
10998 str_depth = 0;
10999 do
11000 {
11001 reloc_index++;
11002 crux = str;
11003 crux_depth = str_depth;
11004
11005 /* Skip over whitespace and brackets, keeping count of the number
11006 of brackets. */
11007 while (*str == ' ' || *str == '\t' || *str == '(')
11008 if (*str++ == '(')
11009 str_depth++;
11010 }
11011 while (*str == '%'
11012 && reloc_index < (HAVE_NEWABI ? 3 : 1)
11013 && parse_relocation (&str, &reversed_reloc[reloc_index]));
11014
11015 my_getExpression (ep, crux);
11016 str = expr_end;
11017
11018 /* Match every open bracket. */
11019 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
11020 if (*str++ == ')')
11021 crux_depth--;
11022
11023 if (crux_depth > 0)
11024 as_bad ("unclosed '('");
11025
11026 expr_end = str;
11027
11028 if (reloc_index != 0)
11029 {
11030 prev_reloc_op_frag = frag_now;
11031 for (i = 0; i < reloc_index; i++)
11032 reloc[i] = reversed_reloc[reloc_index - 1 - i];
11033 }
11034
11035 return reloc_index;
11036 }
11037
11038 static void
11039 my_getExpression (expressionS *ep, char *str)
11040 {
11041 char *save_in;
11042 valueT val;
11043
11044 save_in = input_line_pointer;
11045 input_line_pointer = str;
11046 expression (ep);
11047 expr_end = input_line_pointer;
11048 input_line_pointer = save_in;
11049
11050 /* If we are in mips16 mode, and this is an expression based on `.',
11051 then we bump the value of the symbol by 1 since that is how other
11052 text symbols are handled. We don't bother to handle complex
11053 expressions, just `.' plus or minus a constant. */
11054 if (mips_opts.mips16
11055 && ep->X_op == O_symbol
11056 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
11057 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
11058 && symbol_get_frag (ep->X_add_symbol) == frag_now
11059 && symbol_constant_p (ep->X_add_symbol)
11060 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
11061 S_SET_VALUE (ep->X_add_symbol, val + 1);
11062 }
11063
11064 char *
11065 md_atof (int type, char *litP, int *sizeP)
11066 {
11067 return ieee_md_atof (type, litP, sizeP, target_big_endian);
11068 }
11069
11070 void
11071 md_number_to_chars (char *buf, valueT val, int n)
11072 {
11073 if (target_big_endian)
11074 number_to_chars_bigendian (buf, val, n);
11075 else
11076 number_to_chars_littleendian (buf, val, n);
11077 }
11078 \f
11079 #ifdef OBJ_ELF
11080 static int support_64bit_objects(void)
11081 {
11082 const char **list, **l;
11083 int yes;
11084
11085 list = bfd_target_list ();
11086 for (l = list; *l != NULL; l++)
11087 #ifdef TE_TMIPS
11088 /* This is traditional mips */
11089 if (strcmp (*l, "elf64-tradbigmips") == 0
11090 || strcmp (*l, "elf64-tradlittlemips") == 0)
11091 #else
11092 if (strcmp (*l, "elf64-bigmips") == 0
11093 || strcmp (*l, "elf64-littlemips") == 0)
11094 #endif
11095 break;
11096 yes = (*l != NULL);
11097 free (list);
11098 return yes;
11099 }
11100 #endif /* OBJ_ELF */
11101
11102 const char *md_shortopts = "O::g::G:";
11103
11104 enum options
11105 {
11106 OPTION_MARCH = OPTION_MD_BASE,
11107 OPTION_MTUNE,
11108 OPTION_MIPS1,
11109 OPTION_MIPS2,
11110 OPTION_MIPS3,
11111 OPTION_MIPS4,
11112 OPTION_MIPS5,
11113 OPTION_MIPS32,
11114 OPTION_MIPS64,
11115 OPTION_MIPS32R2,
11116 OPTION_MIPS64R2,
11117 OPTION_MIPS16,
11118 OPTION_NO_MIPS16,
11119 OPTION_MIPS3D,
11120 OPTION_NO_MIPS3D,
11121 OPTION_MDMX,
11122 OPTION_NO_MDMX,
11123 OPTION_DSP,
11124 OPTION_NO_DSP,
11125 OPTION_MT,
11126 OPTION_NO_MT,
11127 OPTION_SMARTMIPS,
11128 OPTION_NO_SMARTMIPS,
11129 OPTION_DSPR2,
11130 OPTION_NO_DSPR2,
11131 OPTION_COMPAT_ARCH_BASE,
11132 OPTION_M4650,
11133 OPTION_NO_M4650,
11134 OPTION_M4010,
11135 OPTION_NO_M4010,
11136 OPTION_M4100,
11137 OPTION_NO_M4100,
11138 OPTION_M3900,
11139 OPTION_NO_M3900,
11140 OPTION_M7000_HILO_FIX,
11141 OPTION_MNO_7000_HILO_FIX,
11142 OPTION_FIX_VR4120,
11143 OPTION_NO_FIX_VR4120,
11144 OPTION_FIX_VR4130,
11145 OPTION_NO_FIX_VR4130,
11146 OPTION_TRAP,
11147 OPTION_BREAK,
11148 OPTION_EB,
11149 OPTION_EL,
11150 OPTION_FP32,
11151 OPTION_GP32,
11152 OPTION_CONSTRUCT_FLOATS,
11153 OPTION_NO_CONSTRUCT_FLOATS,
11154 OPTION_FP64,
11155 OPTION_GP64,
11156 OPTION_RELAX_BRANCH,
11157 OPTION_NO_RELAX_BRANCH,
11158 OPTION_MSHARED,
11159 OPTION_MNO_SHARED,
11160 OPTION_MSYM32,
11161 OPTION_MNO_SYM32,
11162 OPTION_SOFT_FLOAT,
11163 OPTION_HARD_FLOAT,
11164 OPTION_SINGLE_FLOAT,
11165 OPTION_DOUBLE_FLOAT,
11166 OPTION_32,
11167 #ifdef OBJ_ELF
11168 OPTION_CALL_SHARED,
11169 OPTION_CALL_NONPIC,
11170 OPTION_NON_SHARED,
11171 OPTION_XGOT,
11172 OPTION_MABI,
11173 OPTION_N32,
11174 OPTION_64,
11175 OPTION_MDEBUG,
11176 OPTION_NO_MDEBUG,
11177 OPTION_PDR,
11178 OPTION_NO_PDR,
11179 OPTION_MVXWORKS_PIC,
11180 #endif /* OBJ_ELF */
11181 OPTION_END_OF_ENUM
11182 };
11183
11184 struct option md_longopts[] =
11185 {
11186 /* Options which specify architecture. */
11187 {"march", required_argument, NULL, OPTION_MARCH},
11188 {"mtune", required_argument, NULL, OPTION_MTUNE},
11189 {"mips0", no_argument, NULL, OPTION_MIPS1},
11190 {"mips1", no_argument, NULL, OPTION_MIPS1},
11191 {"mips2", no_argument, NULL, OPTION_MIPS2},
11192 {"mips3", no_argument, NULL, OPTION_MIPS3},
11193 {"mips4", no_argument, NULL, OPTION_MIPS4},
11194 {"mips5", no_argument, NULL, OPTION_MIPS5},
11195 {"mips32", no_argument, NULL, OPTION_MIPS32},
11196 {"mips64", no_argument, NULL, OPTION_MIPS64},
11197 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
11198 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
11199
11200 /* Options which specify Application Specific Extensions (ASEs). */
11201 {"mips16", no_argument, NULL, OPTION_MIPS16},
11202 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
11203 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
11204 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
11205 {"mdmx", no_argument, NULL, OPTION_MDMX},
11206 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
11207 {"mdsp", no_argument, NULL, OPTION_DSP},
11208 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
11209 {"mmt", no_argument, NULL, OPTION_MT},
11210 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
11211 {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS},
11212 {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS},
11213 {"mdspr2", no_argument, NULL, OPTION_DSPR2},
11214 {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2},
11215
11216 /* Old-style architecture options. Don't add more of these. */
11217 {"m4650", no_argument, NULL, OPTION_M4650},
11218 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
11219 {"m4010", no_argument, NULL, OPTION_M4010},
11220 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
11221 {"m4100", no_argument, NULL, OPTION_M4100},
11222 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
11223 {"m3900", no_argument, NULL, OPTION_M3900},
11224 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
11225
11226 /* Options which enable bug fixes. */
11227 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
11228 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
11229 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
11230 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
11231 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
11232 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
11233 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
11234
11235 /* Miscellaneous options. */
11236 {"trap", no_argument, NULL, OPTION_TRAP},
11237 {"no-break", no_argument, NULL, OPTION_TRAP},
11238 {"break", no_argument, NULL, OPTION_BREAK},
11239 {"no-trap", no_argument, NULL, OPTION_BREAK},
11240 {"EB", no_argument, NULL, OPTION_EB},
11241 {"EL", no_argument, NULL, OPTION_EL},
11242 {"mfp32", no_argument, NULL, OPTION_FP32},
11243 {"mgp32", no_argument, NULL, OPTION_GP32},
11244 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
11245 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
11246 {"mfp64", no_argument, NULL, OPTION_FP64},
11247 {"mgp64", no_argument, NULL, OPTION_GP64},
11248 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
11249 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
11250 {"mshared", no_argument, NULL, OPTION_MSHARED},
11251 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
11252 {"msym32", no_argument, NULL, OPTION_MSYM32},
11253 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
11254 {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT},
11255 {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT},
11256 {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT},
11257 {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT},
11258
11259 /* Strictly speaking this next option is ELF specific,
11260 but we allow it for other ports as well in order to
11261 make testing easier. */
11262 {"32", no_argument, NULL, OPTION_32},
11263
11264 /* ELF-specific options. */
11265 #ifdef OBJ_ELF
11266 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
11267 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
11268 {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC},
11269 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
11270 {"xgot", no_argument, NULL, OPTION_XGOT},
11271 {"mabi", required_argument, NULL, OPTION_MABI},
11272 {"n32", no_argument, NULL, OPTION_N32},
11273 {"64", no_argument, NULL, OPTION_64},
11274 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
11275 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
11276 {"mpdr", no_argument, NULL, OPTION_PDR},
11277 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
11278 {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC},
11279 #endif /* OBJ_ELF */
11280
11281 {NULL, no_argument, NULL, 0}
11282 };
11283 size_t md_longopts_size = sizeof (md_longopts);
11284
11285 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
11286 NEW_VALUE. Warn if another value was already specified. Note:
11287 we have to defer parsing the -march and -mtune arguments in order
11288 to handle 'from-abi' correctly, since the ABI might be specified
11289 in a later argument. */
11290
11291 static void
11292 mips_set_option_string (const char **string_ptr, const char *new_value)
11293 {
11294 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
11295 as_warn (_("A different %s was already specified, is now %s"),
11296 string_ptr == &mips_arch_string ? "-march" : "-mtune",
11297 new_value);
11298
11299 *string_ptr = new_value;
11300 }
11301
11302 int
11303 md_parse_option (int c, char *arg)
11304 {
11305 switch (c)
11306 {
11307 case OPTION_CONSTRUCT_FLOATS:
11308 mips_disable_float_construction = 0;
11309 break;
11310
11311 case OPTION_NO_CONSTRUCT_FLOATS:
11312 mips_disable_float_construction = 1;
11313 break;
11314
11315 case OPTION_TRAP:
11316 mips_trap = 1;
11317 break;
11318
11319 case OPTION_BREAK:
11320 mips_trap = 0;
11321 break;
11322
11323 case OPTION_EB:
11324 target_big_endian = 1;
11325 break;
11326
11327 case OPTION_EL:
11328 target_big_endian = 0;
11329 break;
11330
11331 case 'O':
11332 if (arg == NULL)
11333 mips_optimize = 1;
11334 else if (arg[0] == '0')
11335 mips_optimize = 0;
11336 else if (arg[0] == '1')
11337 mips_optimize = 1;
11338 else
11339 mips_optimize = 2;
11340 break;
11341
11342 case 'g':
11343 if (arg == NULL)
11344 mips_debug = 2;
11345 else
11346 mips_debug = atoi (arg);
11347 break;
11348
11349 case OPTION_MIPS1:
11350 file_mips_isa = ISA_MIPS1;
11351 break;
11352
11353 case OPTION_MIPS2:
11354 file_mips_isa = ISA_MIPS2;
11355 break;
11356
11357 case OPTION_MIPS3:
11358 file_mips_isa = ISA_MIPS3;
11359 break;
11360
11361 case OPTION_MIPS4:
11362 file_mips_isa = ISA_MIPS4;
11363 break;
11364
11365 case OPTION_MIPS5:
11366 file_mips_isa = ISA_MIPS5;
11367 break;
11368
11369 case OPTION_MIPS32:
11370 file_mips_isa = ISA_MIPS32;
11371 break;
11372
11373 case OPTION_MIPS32R2:
11374 file_mips_isa = ISA_MIPS32R2;
11375 break;
11376
11377 case OPTION_MIPS64R2:
11378 file_mips_isa = ISA_MIPS64R2;
11379 break;
11380
11381 case OPTION_MIPS64:
11382 file_mips_isa = ISA_MIPS64;
11383 break;
11384
11385 case OPTION_MTUNE:
11386 mips_set_option_string (&mips_tune_string, arg);
11387 break;
11388
11389 case OPTION_MARCH:
11390 mips_set_option_string (&mips_arch_string, arg);
11391 break;
11392
11393 case OPTION_M4650:
11394 mips_set_option_string (&mips_arch_string, "4650");
11395 mips_set_option_string (&mips_tune_string, "4650");
11396 break;
11397
11398 case OPTION_NO_M4650:
11399 break;
11400
11401 case OPTION_M4010:
11402 mips_set_option_string (&mips_arch_string, "4010");
11403 mips_set_option_string (&mips_tune_string, "4010");
11404 break;
11405
11406 case OPTION_NO_M4010:
11407 break;
11408
11409 case OPTION_M4100:
11410 mips_set_option_string (&mips_arch_string, "4100");
11411 mips_set_option_string (&mips_tune_string, "4100");
11412 break;
11413
11414 case OPTION_NO_M4100:
11415 break;
11416
11417 case OPTION_M3900:
11418 mips_set_option_string (&mips_arch_string, "3900");
11419 mips_set_option_string (&mips_tune_string, "3900");
11420 break;
11421
11422 case OPTION_NO_M3900:
11423 break;
11424
11425 case OPTION_MDMX:
11426 mips_opts.ase_mdmx = 1;
11427 break;
11428
11429 case OPTION_NO_MDMX:
11430 mips_opts.ase_mdmx = 0;
11431 break;
11432
11433 case OPTION_DSP:
11434 mips_opts.ase_dsp = 1;
11435 mips_opts.ase_dspr2 = 0;
11436 break;
11437
11438 case OPTION_NO_DSP:
11439 mips_opts.ase_dsp = 0;
11440 mips_opts.ase_dspr2 = 0;
11441 break;
11442
11443 case OPTION_DSPR2:
11444 mips_opts.ase_dspr2 = 1;
11445 mips_opts.ase_dsp = 1;
11446 break;
11447
11448 case OPTION_NO_DSPR2:
11449 mips_opts.ase_dspr2 = 0;
11450 mips_opts.ase_dsp = 0;
11451 break;
11452
11453 case OPTION_MT:
11454 mips_opts.ase_mt = 1;
11455 break;
11456
11457 case OPTION_NO_MT:
11458 mips_opts.ase_mt = 0;
11459 break;
11460
11461 case OPTION_MIPS16:
11462 mips_opts.mips16 = 1;
11463 mips_no_prev_insn ();
11464 break;
11465
11466 case OPTION_NO_MIPS16:
11467 mips_opts.mips16 = 0;
11468 mips_no_prev_insn ();
11469 break;
11470
11471 case OPTION_MIPS3D:
11472 mips_opts.ase_mips3d = 1;
11473 break;
11474
11475 case OPTION_NO_MIPS3D:
11476 mips_opts.ase_mips3d = 0;
11477 break;
11478
11479 case OPTION_SMARTMIPS:
11480 mips_opts.ase_smartmips = 1;
11481 break;
11482
11483 case OPTION_NO_SMARTMIPS:
11484 mips_opts.ase_smartmips = 0;
11485 break;
11486
11487 case OPTION_FIX_VR4120:
11488 mips_fix_vr4120 = 1;
11489 break;
11490
11491 case OPTION_NO_FIX_VR4120:
11492 mips_fix_vr4120 = 0;
11493 break;
11494
11495 case OPTION_FIX_VR4130:
11496 mips_fix_vr4130 = 1;
11497 break;
11498
11499 case OPTION_NO_FIX_VR4130:
11500 mips_fix_vr4130 = 0;
11501 break;
11502
11503 case OPTION_RELAX_BRANCH:
11504 mips_relax_branch = 1;
11505 break;
11506
11507 case OPTION_NO_RELAX_BRANCH:
11508 mips_relax_branch = 0;
11509 break;
11510
11511 case OPTION_MSHARED:
11512 mips_in_shared = TRUE;
11513 break;
11514
11515 case OPTION_MNO_SHARED:
11516 mips_in_shared = FALSE;
11517 break;
11518
11519 case OPTION_MSYM32:
11520 mips_opts.sym32 = TRUE;
11521 break;
11522
11523 case OPTION_MNO_SYM32:
11524 mips_opts.sym32 = FALSE;
11525 break;
11526
11527 #ifdef OBJ_ELF
11528 /* When generating ELF code, we permit -KPIC and -call_shared to
11529 select SVR4_PIC, and -non_shared to select no PIC. This is
11530 intended to be compatible with Irix 5. */
11531 case OPTION_CALL_SHARED:
11532 if (!IS_ELF)
11533 {
11534 as_bad (_("-call_shared is supported only for ELF format"));
11535 return 0;
11536 }
11537 mips_pic = SVR4_PIC;
11538 mips_abicalls = TRUE;
11539 break;
11540
11541 case OPTION_CALL_NONPIC:
11542 if (!IS_ELF)
11543 {
11544 as_bad (_("-call_nonpic is supported only for ELF format"));
11545 return 0;
11546 }
11547 mips_pic = NO_PIC;
11548 mips_abicalls = TRUE;
11549 break;
11550
11551 case OPTION_NON_SHARED:
11552 if (!IS_ELF)
11553 {
11554 as_bad (_("-non_shared is supported only for ELF format"));
11555 return 0;
11556 }
11557 mips_pic = NO_PIC;
11558 mips_abicalls = FALSE;
11559 break;
11560
11561 /* The -xgot option tells the assembler to use 32 bit offsets
11562 when accessing the got in SVR4_PIC mode. It is for Irix
11563 compatibility. */
11564 case OPTION_XGOT:
11565 mips_big_got = 1;
11566 break;
11567 #endif /* OBJ_ELF */
11568
11569 case 'G':
11570 g_switch_value = atoi (arg);
11571 g_switch_seen = 1;
11572 break;
11573
11574 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
11575 and -mabi=64. */
11576 case OPTION_32:
11577 if (IS_ELF)
11578 mips_abi = O32_ABI;
11579 /* We silently ignore -32 for non-ELF targets. This greatly
11580 simplifies the construction of the MIPS GAS test cases. */
11581 break;
11582
11583 #ifdef OBJ_ELF
11584 case OPTION_N32:
11585 if (!IS_ELF)
11586 {
11587 as_bad (_("-n32 is supported for ELF format only"));
11588 return 0;
11589 }
11590 mips_abi = N32_ABI;
11591 break;
11592
11593 case OPTION_64:
11594 if (!IS_ELF)
11595 {
11596 as_bad (_("-64 is supported for ELF format only"));
11597 return 0;
11598 }
11599 mips_abi = N64_ABI;
11600 if (!support_64bit_objects())
11601 as_fatal (_("No compiled in support for 64 bit object file format"));
11602 break;
11603 #endif /* OBJ_ELF */
11604
11605 case OPTION_GP32:
11606 file_mips_gp32 = 1;
11607 break;
11608
11609 case OPTION_GP64:
11610 file_mips_gp32 = 0;
11611 break;
11612
11613 case OPTION_FP32:
11614 file_mips_fp32 = 1;
11615 break;
11616
11617 case OPTION_FP64:
11618 file_mips_fp32 = 0;
11619 break;
11620
11621 case OPTION_SINGLE_FLOAT:
11622 file_mips_single_float = 1;
11623 break;
11624
11625 case OPTION_DOUBLE_FLOAT:
11626 file_mips_single_float = 0;
11627 break;
11628
11629 case OPTION_SOFT_FLOAT:
11630 file_mips_soft_float = 1;
11631 break;
11632
11633 case OPTION_HARD_FLOAT:
11634 file_mips_soft_float = 0;
11635 break;
11636
11637 #ifdef OBJ_ELF
11638 case OPTION_MABI:
11639 if (!IS_ELF)
11640 {
11641 as_bad (_("-mabi is supported for ELF format only"));
11642 return 0;
11643 }
11644 if (strcmp (arg, "32") == 0)
11645 mips_abi = O32_ABI;
11646 else if (strcmp (arg, "o64") == 0)
11647 mips_abi = O64_ABI;
11648 else if (strcmp (arg, "n32") == 0)
11649 mips_abi = N32_ABI;
11650 else if (strcmp (arg, "64") == 0)
11651 {
11652 mips_abi = N64_ABI;
11653 if (! support_64bit_objects())
11654 as_fatal (_("No compiled in support for 64 bit object file "
11655 "format"));
11656 }
11657 else if (strcmp (arg, "eabi") == 0)
11658 mips_abi = EABI_ABI;
11659 else
11660 {
11661 as_fatal (_("invalid abi -mabi=%s"), arg);
11662 return 0;
11663 }
11664 break;
11665 #endif /* OBJ_ELF */
11666
11667 case OPTION_M7000_HILO_FIX:
11668 mips_7000_hilo_fix = TRUE;
11669 break;
11670
11671 case OPTION_MNO_7000_HILO_FIX:
11672 mips_7000_hilo_fix = FALSE;
11673 break;
11674
11675 #ifdef OBJ_ELF
11676 case OPTION_MDEBUG:
11677 mips_flag_mdebug = TRUE;
11678 break;
11679
11680 case OPTION_NO_MDEBUG:
11681 mips_flag_mdebug = FALSE;
11682 break;
11683
11684 case OPTION_PDR:
11685 mips_flag_pdr = TRUE;
11686 break;
11687
11688 case OPTION_NO_PDR:
11689 mips_flag_pdr = FALSE;
11690 break;
11691
11692 case OPTION_MVXWORKS_PIC:
11693 mips_pic = VXWORKS_PIC;
11694 break;
11695 #endif /* OBJ_ELF */
11696
11697 default:
11698 return 0;
11699 }
11700
11701 return 1;
11702 }
11703 \f
11704 /* Set up globals to generate code for the ISA or processor
11705 described by INFO. */
11706
11707 static void
11708 mips_set_architecture (const struct mips_cpu_info *info)
11709 {
11710 if (info != 0)
11711 {
11712 file_mips_arch = info->cpu;
11713 mips_opts.arch = info->cpu;
11714 mips_opts.isa = info->isa;
11715 }
11716 }
11717
11718
11719 /* Likewise for tuning. */
11720
11721 static void
11722 mips_set_tune (const struct mips_cpu_info *info)
11723 {
11724 if (info != 0)
11725 mips_tune = info->cpu;
11726 }
11727
11728
11729 void
11730 mips_after_parse_args (void)
11731 {
11732 const struct mips_cpu_info *arch_info = 0;
11733 const struct mips_cpu_info *tune_info = 0;
11734
11735 /* GP relative stuff not working for PE */
11736 if (strncmp (TARGET_OS, "pe", 2) == 0)
11737 {
11738 if (g_switch_seen && g_switch_value != 0)
11739 as_bad (_("-G not supported in this configuration."));
11740 g_switch_value = 0;
11741 }
11742
11743 if (mips_abi == NO_ABI)
11744 mips_abi = MIPS_DEFAULT_ABI;
11745
11746 /* The following code determines the architecture and register size.
11747 Similar code was added to GCC 3.3 (see override_options() in
11748 config/mips/mips.c). The GAS and GCC code should be kept in sync
11749 as much as possible. */
11750
11751 if (mips_arch_string != 0)
11752 arch_info = mips_parse_cpu ("-march", mips_arch_string);
11753
11754 if (file_mips_isa != ISA_UNKNOWN)
11755 {
11756 /* Handle -mipsN. At this point, file_mips_isa contains the
11757 ISA level specified by -mipsN, while arch_info->isa contains
11758 the -march selection (if any). */
11759 if (arch_info != 0)
11760 {
11761 /* -march takes precedence over -mipsN, since it is more descriptive.
11762 There's no harm in specifying both as long as the ISA levels
11763 are the same. */
11764 if (file_mips_isa != arch_info->isa)
11765 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
11766 mips_cpu_info_from_isa (file_mips_isa)->name,
11767 mips_cpu_info_from_isa (arch_info->isa)->name);
11768 }
11769 else
11770 arch_info = mips_cpu_info_from_isa (file_mips_isa);
11771 }
11772
11773 if (arch_info == 0)
11774 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
11775
11776 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
11777 as_bad ("-march=%s is not compatible with the selected ABI",
11778 arch_info->name);
11779
11780 mips_set_architecture (arch_info);
11781
11782 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
11783 if (mips_tune_string != 0)
11784 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
11785
11786 if (tune_info == 0)
11787 mips_set_tune (arch_info);
11788 else
11789 mips_set_tune (tune_info);
11790
11791 if (file_mips_gp32 >= 0)
11792 {
11793 /* The user specified the size of the integer registers. Make sure
11794 it agrees with the ABI and ISA. */
11795 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
11796 as_bad (_("-mgp64 used with a 32-bit processor"));
11797 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
11798 as_bad (_("-mgp32 used with a 64-bit ABI"));
11799 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
11800 as_bad (_("-mgp64 used with a 32-bit ABI"));
11801 }
11802 else
11803 {
11804 /* Infer the integer register size from the ABI and processor.
11805 Restrict ourselves to 32-bit registers if that's all the
11806 processor has, or if the ABI cannot handle 64-bit registers. */
11807 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
11808 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
11809 }
11810
11811 switch (file_mips_fp32)
11812 {
11813 default:
11814 case -1:
11815 /* No user specified float register size.
11816 ??? GAS treats single-float processors as though they had 64-bit
11817 float registers (although it complains when double-precision
11818 instructions are used). As things stand, saying they have 32-bit
11819 registers would lead to spurious "register must be even" messages.
11820 So here we assume float registers are never smaller than the
11821 integer ones. */
11822 if (file_mips_gp32 == 0)
11823 /* 64-bit integer registers implies 64-bit float registers. */
11824 file_mips_fp32 = 0;
11825 else if ((mips_opts.ase_mips3d > 0 || mips_opts.ase_mdmx > 0)
11826 && ISA_HAS_64BIT_FPRS (mips_opts.isa))
11827 /* -mips3d and -mdmx imply 64-bit float registers, if possible. */
11828 file_mips_fp32 = 0;
11829 else
11830 /* 32-bit float registers. */
11831 file_mips_fp32 = 1;
11832 break;
11833
11834 /* The user specified the size of the float registers. Check if it
11835 agrees with the ABI and ISA. */
11836 case 0:
11837 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
11838 as_bad (_("-mfp64 used with a 32-bit fpu"));
11839 else if (ABI_NEEDS_32BIT_REGS (mips_abi)
11840 && !ISA_HAS_MXHC1 (mips_opts.isa))
11841 as_warn (_("-mfp64 used with a 32-bit ABI"));
11842 break;
11843 case 1:
11844 if (ABI_NEEDS_64BIT_REGS (mips_abi))
11845 as_warn (_("-mfp32 used with a 64-bit ABI"));
11846 break;
11847 }
11848
11849 /* End of GCC-shared inference code. */
11850
11851 /* This flag is set when we have a 64-bit capable CPU but use only
11852 32-bit wide registers. Note that EABI does not use it. */
11853 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
11854 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
11855 || mips_abi == O32_ABI))
11856 mips_32bitmode = 1;
11857
11858 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
11859 as_bad (_("trap exception not supported at ISA 1"));
11860
11861 /* If the selected architecture includes support for ASEs, enable
11862 generation of code for them. */
11863 if (mips_opts.mips16 == -1)
11864 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
11865 if (mips_opts.ase_mips3d == -1)
11866 mips_opts.ase_mips3d = ((arch_info->flags & MIPS_CPU_ASE_MIPS3D)
11867 && file_mips_fp32 == 0) ? 1 : 0;
11868 if (mips_opts.ase_mips3d && file_mips_fp32 == 1)
11869 as_bad (_("-mfp32 used with -mips3d"));
11870
11871 if (mips_opts.ase_mdmx == -1)
11872 mips_opts.ase_mdmx = ((arch_info->flags & MIPS_CPU_ASE_MDMX)
11873 && file_mips_fp32 == 0) ? 1 : 0;
11874 if (mips_opts.ase_mdmx && file_mips_fp32 == 1)
11875 as_bad (_("-mfp32 used with -mdmx"));
11876
11877 if (mips_opts.ase_smartmips == -1)
11878 mips_opts.ase_smartmips = (arch_info->flags & MIPS_CPU_ASE_SMARTMIPS) ? 1 : 0;
11879 if (mips_opts.ase_smartmips && !ISA_SUPPORTS_SMARTMIPS)
11880 as_warn ("%s ISA does not support SmartMIPS",
11881 mips_cpu_info_from_isa (mips_opts.isa)->name);
11882
11883 if (mips_opts.ase_dsp == -1)
11884 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
11885 if (mips_opts.ase_dsp && !ISA_SUPPORTS_DSP_ASE)
11886 as_warn ("%s ISA does not support DSP ASE",
11887 mips_cpu_info_from_isa (mips_opts.isa)->name);
11888
11889 if (mips_opts.ase_dspr2 == -1)
11890 {
11891 mips_opts.ase_dspr2 = (arch_info->flags & MIPS_CPU_ASE_DSPR2) ? 1 : 0;
11892 mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0;
11893 }
11894 if (mips_opts.ase_dspr2 && !ISA_SUPPORTS_DSPR2_ASE)
11895 as_warn ("%s ISA does not support DSP R2 ASE",
11896 mips_cpu_info_from_isa (mips_opts.isa)->name);
11897
11898 if (mips_opts.ase_mt == -1)
11899 mips_opts.ase_mt = (arch_info->flags & MIPS_CPU_ASE_MT) ? 1 : 0;
11900 if (mips_opts.ase_mt && !ISA_SUPPORTS_MT_ASE)
11901 as_warn ("%s ISA does not support MT ASE",
11902 mips_cpu_info_from_isa (mips_opts.isa)->name);
11903
11904 file_mips_isa = mips_opts.isa;
11905 file_ase_mips16 = mips_opts.mips16;
11906 file_ase_mips3d = mips_opts.ase_mips3d;
11907 file_ase_mdmx = mips_opts.ase_mdmx;
11908 file_ase_smartmips = mips_opts.ase_smartmips;
11909 file_ase_dsp = mips_opts.ase_dsp;
11910 file_ase_dspr2 = mips_opts.ase_dspr2;
11911 file_ase_mt = mips_opts.ase_mt;
11912 mips_opts.gp32 = file_mips_gp32;
11913 mips_opts.fp32 = file_mips_fp32;
11914 mips_opts.soft_float = file_mips_soft_float;
11915 mips_opts.single_float = file_mips_single_float;
11916
11917 if (mips_flag_mdebug < 0)
11918 {
11919 #ifdef OBJ_MAYBE_ECOFF
11920 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
11921 mips_flag_mdebug = 1;
11922 else
11923 #endif /* OBJ_MAYBE_ECOFF */
11924 mips_flag_mdebug = 0;
11925 }
11926 }
11927 \f
11928 void
11929 mips_init_after_args (void)
11930 {
11931 /* initialize opcodes */
11932 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
11933 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
11934 }
11935
11936 long
11937 md_pcrel_from (fixS *fixP)
11938 {
11939 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
11940 switch (fixP->fx_r_type)
11941 {
11942 case BFD_RELOC_16_PCREL_S2:
11943 case BFD_RELOC_MIPS_JMP:
11944 /* Return the address of the delay slot. */
11945 return addr + 4;
11946 default:
11947 /* We have no relocation type for PC relative MIPS16 instructions. */
11948 if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg)
11949 as_bad_where (fixP->fx_file, fixP->fx_line,
11950 _("PC relative MIPS16 instruction references a different section"));
11951 return addr;
11952 }
11953 }
11954
11955 /* This is called before the symbol table is processed. In order to
11956 work with gcc when using mips-tfile, we must keep all local labels.
11957 However, in other cases, we want to discard them. If we were
11958 called with -g, but we didn't see any debugging information, it may
11959 mean that gcc is smuggling debugging information through to
11960 mips-tfile, in which case we must generate all local labels. */
11961
11962 void
11963 mips_frob_file_before_adjust (void)
11964 {
11965 #ifndef NO_ECOFF_DEBUGGING
11966 if (ECOFF_DEBUGGING
11967 && mips_debug != 0
11968 && ! ecoff_debugging_seen)
11969 flag_keep_locals = 1;
11970 #endif
11971 }
11972
11973 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
11974 the corresponding LO16 reloc. This is called before md_apply_fix and
11975 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
11976 relocation operators.
11977
11978 For our purposes, a %lo() expression matches a %got() or %hi()
11979 expression if:
11980
11981 (a) it refers to the same symbol; and
11982 (b) the offset applied in the %lo() expression is no lower than
11983 the offset applied in the %got() or %hi().
11984
11985 (b) allows us to cope with code like:
11986
11987 lui $4,%hi(foo)
11988 lh $4,%lo(foo+2)($4)
11989
11990 ...which is legal on RELA targets, and has a well-defined behaviour
11991 if the user knows that adding 2 to "foo" will not induce a carry to
11992 the high 16 bits.
11993
11994 When several %lo()s match a particular %got() or %hi(), we use the
11995 following rules to distinguish them:
11996
11997 (1) %lo()s with smaller offsets are a better match than %lo()s with
11998 higher offsets.
11999
12000 (2) %lo()s with no matching %got() or %hi() are better than those
12001 that already have a matching %got() or %hi().
12002
12003 (3) later %lo()s are better than earlier %lo()s.
12004
12005 These rules are applied in order.
12006
12007 (1) means, among other things, that %lo()s with identical offsets are
12008 chosen if they exist.
12009
12010 (2) means that we won't associate several high-part relocations with
12011 the same low-part relocation unless there's no alternative. Having
12012 several high parts for the same low part is a GNU extension; this rule
12013 allows careful users to avoid it.
12014
12015 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
12016 with the last high-part relocation being at the front of the list.
12017 It therefore makes sense to choose the last matching low-part
12018 relocation, all other things being equal. It's also easier
12019 to code that way. */
12020
12021 void
12022 mips_frob_file (void)
12023 {
12024 struct mips_hi_fixup *l;
12025 bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED;
12026
12027 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
12028 {
12029 segment_info_type *seginfo;
12030 bfd_boolean matched_lo_p;
12031 fixS **hi_pos, **lo_pos, **pos;
12032
12033 assert (reloc_needs_lo_p (l->fixp->fx_r_type));
12034
12035 /* If a GOT16 relocation turns out to be against a global symbol,
12036 there isn't supposed to be a matching LO. */
12037 if (got16_reloc_p (l->fixp->fx_r_type)
12038 && !pic_need_relax (l->fixp->fx_addsy, l->seg))
12039 continue;
12040
12041 /* Check quickly whether the next fixup happens to be a matching %lo. */
12042 if (fixup_has_matching_lo_p (l->fixp))
12043 continue;
12044
12045 seginfo = seg_info (l->seg);
12046
12047 /* Set HI_POS to the position of this relocation in the chain.
12048 Set LO_POS to the position of the chosen low-part relocation.
12049 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
12050 relocation that matches an immediately-preceding high-part
12051 relocation. */
12052 hi_pos = NULL;
12053 lo_pos = NULL;
12054 matched_lo_p = FALSE;
12055 looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type);
12056
12057 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
12058 {
12059 if (*pos == l->fixp)
12060 hi_pos = pos;
12061
12062 if ((*pos)->fx_r_type == looking_for_rtype
12063 && (*pos)->fx_addsy == l->fixp->fx_addsy
12064 && (*pos)->fx_offset >= l->fixp->fx_offset
12065 && (lo_pos == NULL
12066 || (*pos)->fx_offset < (*lo_pos)->fx_offset
12067 || (!matched_lo_p
12068 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
12069 lo_pos = pos;
12070
12071 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
12072 && fixup_has_matching_lo_p (*pos));
12073 }
12074
12075 /* If we found a match, remove the high-part relocation from its
12076 current position and insert it before the low-part relocation.
12077 Make the offsets match so that fixup_has_matching_lo_p()
12078 will return true.
12079
12080 We don't warn about unmatched high-part relocations since some
12081 versions of gcc have been known to emit dead "lui ...%hi(...)"
12082 instructions. */
12083 if (lo_pos != NULL)
12084 {
12085 l->fixp->fx_offset = (*lo_pos)->fx_offset;
12086 if (l->fixp->fx_next != *lo_pos)
12087 {
12088 *hi_pos = l->fixp->fx_next;
12089 l->fixp->fx_next = *lo_pos;
12090 *lo_pos = l->fixp;
12091 }
12092 }
12093 }
12094 }
12095
12096 /* We may have combined relocations without symbols in the N32/N64 ABI.
12097 We have to prevent gas from dropping them. */
12098
12099 int
12100 mips_force_relocation (fixS *fixp)
12101 {
12102 if (generic_force_reloc (fixp))
12103 return 1;
12104
12105 if (HAVE_NEWABI
12106 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
12107 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
12108 || hi16_reloc_p (fixp->fx_r_type)
12109 || lo16_reloc_p (fixp->fx_r_type)))
12110 return 1;
12111
12112 return 0;
12113 }
12114
12115 /* Apply a fixup to the object file. */
12116
12117 void
12118 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
12119 {
12120 bfd_byte *buf;
12121 long insn;
12122 reloc_howto_type *howto;
12123
12124 /* We ignore generic BFD relocations we don't know about. */
12125 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
12126 if (! howto)
12127 return;
12128
12129 assert (fixP->fx_size == 4
12130 || fixP->fx_r_type == BFD_RELOC_16
12131 || fixP->fx_r_type == BFD_RELOC_64
12132 || fixP->fx_r_type == BFD_RELOC_CTOR
12133 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
12134 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
12135 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
12136 || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64);
12137
12138 buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
12139
12140 assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2);
12141
12142 /* Don't treat parts of a composite relocation as done. There are two
12143 reasons for this:
12144
12145 (1) The second and third parts will be against 0 (RSS_UNDEF) but
12146 should nevertheless be emitted if the first part is.
12147
12148 (2) In normal usage, composite relocations are never assembly-time
12149 constants. The easiest way of dealing with the pathological
12150 exceptions is to generate a relocation against STN_UNDEF and
12151 leave everything up to the linker. */
12152 if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0)
12153 fixP->fx_done = 1;
12154
12155 switch (fixP->fx_r_type)
12156 {
12157 case BFD_RELOC_MIPS_TLS_GD:
12158 case BFD_RELOC_MIPS_TLS_LDM:
12159 case BFD_RELOC_MIPS_TLS_DTPREL32:
12160 case BFD_RELOC_MIPS_TLS_DTPREL64:
12161 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
12162 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
12163 case BFD_RELOC_MIPS_TLS_GOTTPREL:
12164 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
12165 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
12166 S_SET_THREAD_LOCAL (fixP->fx_addsy);
12167 /* fall through */
12168
12169 case BFD_RELOC_MIPS_JMP:
12170 case BFD_RELOC_MIPS_SHIFT5:
12171 case BFD_RELOC_MIPS_SHIFT6:
12172 case BFD_RELOC_MIPS_GOT_DISP:
12173 case BFD_RELOC_MIPS_GOT_PAGE:
12174 case BFD_RELOC_MIPS_GOT_OFST:
12175 case BFD_RELOC_MIPS_SUB:
12176 case BFD_RELOC_MIPS_INSERT_A:
12177 case BFD_RELOC_MIPS_INSERT_B:
12178 case BFD_RELOC_MIPS_DELETE:
12179 case BFD_RELOC_MIPS_HIGHEST:
12180 case BFD_RELOC_MIPS_HIGHER:
12181 case BFD_RELOC_MIPS_SCN_DISP:
12182 case BFD_RELOC_MIPS_REL16:
12183 case BFD_RELOC_MIPS_RELGOT:
12184 case BFD_RELOC_MIPS_JALR:
12185 case BFD_RELOC_HI16:
12186 case BFD_RELOC_HI16_S:
12187 case BFD_RELOC_GPREL16:
12188 case BFD_RELOC_MIPS_LITERAL:
12189 case BFD_RELOC_MIPS_CALL16:
12190 case BFD_RELOC_MIPS_GOT16:
12191 case BFD_RELOC_GPREL32:
12192 case BFD_RELOC_MIPS_GOT_HI16:
12193 case BFD_RELOC_MIPS_GOT_LO16:
12194 case BFD_RELOC_MIPS_CALL_HI16:
12195 case BFD_RELOC_MIPS_CALL_LO16:
12196 case BFD_RELOC_MIPS16_GPREL:
12197 case BFD_RELOC_MIPS16_GOT16:
12198 case BFD_RELOC_MIPS16_CALL16:
12199 case BFD_RELOC_MIPS16_HI16:
12200 case BFD_RELOC_MIPS16_HI16_S:
12201 case BFD_RELOC_MIPS16_JMP:
12202 /* Nothing needed to do. The value comes from the reloc entry. */
12203 break;
12204
12205 case BFD_RELOC_64:
12206 /* This is handled like BFD_RELOC_32, but we output a sign
12207 extended value if we are only 32 bits. */
12208 if (fixP->fx_done)
12209 {
12210 if (8 <= sizeof (valueT))
12211 md_number_to_chars ((char *) buf, *valP, 8);
12212 else
12213 {
12214 valueT hiv;
12215
12216 if ((*valP & 0x80000000) != 0)
12217 hiv = 0xffffffff;
12218 else
12219 hiv = 0;
12220 md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)),
12221 *valP, 4);
12222 md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)),
12223 hiv, 4);
12224 }
12225 }
12226 break;
12227
12228 case BFD_RELOC_RVA:
12229 case BFD_RELOC_32:
12230 case BFD_RELOC_16:
12231 /* If we are deleting this reloc entry, we must fill in the
12232 value now. This can happen if we have a .word which is not
12233 resolved when it appears but is later defined. */
12234 if (fixP->fx_done)
12235 md_number_to_chars ((char *) buf, *valP, fixP->fx_size);
12236 break;
12237
12238 case BFD_RELOC_LO16:
12239 case BFD_RELOC_MIPS16_LO16:
12240 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
12241 may be safe to remove, but if so it's not obvious. */
12242 /* When handling an embedded PIC switch statement, we can wind
12243 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
12244 if (fixP->fx_done)
12245 {
12246 if (*valP + 0x8000 > 0xffff)
12247 as_bad_where (fixP->fx_file, fixP->fx_line,
12248 _("relocation overflow"));
12249 if (target_big_endian)
12250 buf += 2;
12251 md_number_to_chars ((char *) buf, *valP, 2);
12252 }
12253 break;
12254
12255 case BFD_RELOC_16_PCREL_S2:
12256 if ((*valP & 0x3) != 0)
12257 as_bad_where (fixP->fx_file, fixP->fx_line,
12258 _("Branch to misaligned address (%lx)"), (long) *valP);
12259
12260 /* We need to save the bits in the instruction since fixup_segment()
12261 might be deleting the relocation entry (i.e., a branch within
12262 the current segment). */
12263 if (! fixP->fx_done)
12264 break;
12265
12266 /* Update old instruction data. */
12267 if (target_big_endian)
12268 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
12269 else
12270 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
12271
12272 if (*valP + 0x20000 <= 0x3ffff)
12273 {
12274 insn |= (*valP >> 2) & 0xffff;
12275 md_number_to_chars ((char *) buf, insn, 4);
12276 }
12277 else if (mips_pic == NO_PIC
12278 && fixP->fx_done
12279 && fixP->fx_frag->fr_address >= text_section->vma
12280 && (fixP->fx_frag->fr_address
12281 < text_section->vma + bfd_get_section_size (text_section))
12282 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
12283 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
12284 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
12285 {
12286 /* The branch offset is too large. If this is an
12287 unconditional branch, and we are not generating PIC code,
12288 we can convert it to an absolute jump instruction. */
12289 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
12290 insn = 0x0c000000; /* jal */
12291 else
12292 insn = 0x08000000; /* j */
12293 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
12294 fixP->fx_done = 0;
12295 fixP->fx_addsy = section_symbol (text_section);
12296 *valP += md_pcrel_from (fixP);
12297 md_number_to_chars ((char *) buf, insn, 4);
12298 }
12299 else
12300 {
12301 /* If we got here, we have branch-relaxation disabled,
12302 and there's nothing we can do to fix this instruction
12303 without turning it into a longer sequence. */
12304 as_bad_where (fixP->fx_file, fixP->fx_line,
12305 _("Branch out of range"));
12306 }
12307 break;
12308
12309 case BFD_RELOC_VTABLE_INHERIT:
12310 fixP->fx_done = 0;
12311 if (fixP->fx_addsy
12312 && !S_IS_DEFINED (fixP->fx_addsy)
12313 && !S_IS_WEAK (fixP->fx_addsy))
12314 S_SET_WEAK (fixP->fx_addsy);
12315 break;
12316
12317 case BFD_RELOC_VTABLE_ENTRY:
12318 fixP->fx_done = 0;
12319 break;
12320
12321 default:
12322 internalError ();
12323 }
12324
12325 /* Remember value for tc_gen_reloc. */
12326 fixP->fx_addnumber = *valP;
12327 }
12328
12329 static symbolS *
12330 get_symbol (void)
12331 {
12332 int c;
12333 char *name;
12334 symbolS *p;
12335
12336 name = input_line_pointer;
12337 c = get_symbol_end ();
12338 p = (symbolS *) symbol_find_or_make (name);
12339 *input_line_pointer = c;
12340 return p;
12341 }
12342
12343 /* Align the current frag to a given power of two. If a particular
12344 fill byte should be used, FILL points to an integer that contains
12345 that byte, otherwise FILL is null.
12346
12347 The MIPS assembler also automatically adjusts any preceding
12348 label. */
12349
12350 static void
12351 mips_align (int to, int *fill, symbolS *label)
12352 {
12353 mips_emit_delays ();
12354 mips_record_mips16_mode ();
12355 if (fill == NULL && subseg_text_p (now_seg))
12356 frag_align_code (to, 0);
12357 else
12358 frag_align (to, fill ? *fill : 0, 0);
12359 record_alignment (now_seg, to);
12360 if (label != NULL)
12361 {
12362 assert (S_GET_SEGMENT (label) == now_seg);
12363 symbol_set_frag (label, frag_now);
12364 S_SET_VALUE (label, (valueT) frag_now_fix ());
12365 }
12366 }
12367
12368 /* Align to a given power of two. .align 0 turns off the automatic
12369 alignment used by the data creating pseudo-ops. */
12370
12371 static void
12372 s_align (int x ATTRIBUTE_UNUSED)
12373 {
12374 int temp, fill_value, *fill_ptr;
12375 long max_alignment = 28;
12376
12377 /* o Note that the assembler pulls down any immediately preceding label
12378 to the aligned address.
12379 o It's not documented but auto alignment is reinstated by
12380 a .align pseudo instruction.
12381 o Note also that after auto alignment is turned off the mips assembler
12382 issues an error on attempt to assemble an improperly aligned data item.
12383 We don't. */
12384
12385 temp = get_absolute_expression ();
12386 if (temp > max_alignment)
12387 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
12388 else if (temp < 0)
12389 {
12390 as_warn (_("Alignment negative: 0 assumed."));
12391 temp = 0;
12392 }
12393 if (*input_line_pointer == ',')
12394 {
12395 ++input_line_pointer;
12396 fill_value = get_absolute_expression ();
12397 fill_ptr = &fill_value;
12398 }
12399 else
12400 fill_ptr = 0;
12401 if (temp)
12402 {
12403 segment_info_type *si = seg_info (now_seg);
12404 struct insn_label_list *l = si->label_list;
12405 /* Auto alignment should be switched on by next section change. */
12406 auto_align = 1;
12407 mips_align (temp, fill_ptr, l != NULL ? l->label : NULL);
12408 }
12409 else
12410 {
12411 auto_align = 0;
12412 }
12413
12414 demand_empty_rest_of_line ();
12415 }
12416
12417 static void
12418 s_change_sec (int sec)
12419 {
12420 segT seg;
12421
12422 #ifdef OBJ_ELF
12423 /* The ELF backend needs to know that we are changing sections, so
12424 that .previous works correctly. We could do something like check
12425 for an obj_section_change_hook macro, but that might be confusing
12426 as it would not be appropriate to use it in the section changing
12427 functions in read.c, since obj-elf.c intercepts those. FIXME:
12428 This should be cleaner, somehow. */
12429 if (IS_ELF)
12430 obj_elf_section_change_hook ();
12431 #endif
12432
12433 mips_emit_delays ();
12434 switch (sec)
12435 {
12436 case 't':
12437 s_text (0);
12438 break;
12439 case 'd':
12440 s_data (0);
12441 break;
12442 case 'b':
12443 subseg_set (bss_section, (subsegT) get_absolute_expression ());
12444 demand_empty_rest_of_line ();
12445 break;
12446
12447 case 'r':
12448 seg = subseg_new (RDATA_SECTION_NAME,
12449 (subsegT) get_absolute_expression ());
12450 if (IS_ELF)
12451 {
12452 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
12453 | SEC_READONLY | SEC_RELOC
12454 | SEC_DATA));
12455 if (strncmp (TARGET_OS, "elf", 3) != 0)
12456 record_alignment (seg, 4);
12457 }
12458 demand_empty_rest_of_line ();
12459 break;
12460
12461 case 's':
12462 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
12463 if (IS_ELF)
12464 {
12465 bfd_set_section_flags (stdoutput, seg,
12466 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
12467 if (strncmp (TARGET_OS, "elf", 3) != 0)
12468 record_alignment (seg, 4);
12469 }
12470 demand_empty_rest_of_line ();
12471 break;
12472 }
12473
12474 auto_align = 1;
12475 }
12476
12477 void
12478 s_change_section (int ignore ATTRIBUTE_UNUSED)
12479 {
12480 #ifdef OBJ_ELF
12481 char *section_name;
12482 char c;
12483 char next_c = 0;
12484 int section_type;
12485 int section_flag;
12486 int section_entry_size;
12487 int section_alignment;
12488
12489 if (!IS_ELF)
12490 return;
12491
12492 section_name = input_line_pointer;
12493 c = get_symbol_end ();
12494 if (c)
12495 next_c = *(input_line_pointer + 1);
12496
12497 /* Do we have .section Name<,"flags">? */
12498 if (c != ',' || (c == ',' && next_c == '"'))
12499 {
12500 /* just after name is now '\0'. */
12501 *input_line_pointer = c;
12502 input_line_pointer = section_name;
12503 obj_elf_section (ignore);
12504 return;
12505 }
12506 input_line_pointer++;
12507
12508 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
12509 if (c == ',')
12510 section_type = get_absolute_expression ();
12511 else
12512 section_type = 0;
12513 if (*input_line_pointer++ == ',')
12514 section_flag = get_absolute_expression ();
12515 else
12516 section_flag = 0;
12517 if (*input_line_pointer++ == ',')
12518 section_entry_size = get_absolute_expression ();
12519 else
12520 section_entry_size = 0;
12521 if (*input_line_pointer++ == ',')
12522 section_alignment = get_absolute_expression ();
12523 else
12524 section_alignment = 0;
12525
12526 section_name = xstrdup (section_name);
12527
12528 /* When using the generic form of .section (as implemented by obj-elf.c),
12529 there's no way to set the section type to SHT_MIPS_DWARF. Users have
12530 traditionally had to fall back on the more common @progbits instead.
12531
12532 There's nothing really harmful in this, since bfd will correct
12533 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
12534 means that, for backwards compatibility, the special_section entries
12535 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
12536
12537 Even so, we shouldn't force users of the MIPS .section syntax to
12538 incorrectly label the sections as SHT_PROGBITS. The best compromise
12539 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
12540 generic type-checking code. */
12541 if (section_type == SHT_MIPS_DWARF)
12542 section_type = SHT_PROGBITS;
12543
12544 obj_elf_change_section (section_name, section_type, section_flag,
12545 section_entry_size, 0, 0, 0);
12546
12547 if (now_seg->name != section_name)
12548 free (section_name);
12549 #endif /* OBJ_ELF */
12550 }
12551
12552 void
12553 mips_enable_auto_align (void)
12554 {
12555 auto_align = 1;
12556 }
12557
12558 static void
12559 s_cons (int log_size)
12560 {
12561 segment_info_type *si = seg_info (now_seg);
12562 struct insn_label_list *l = si->label_list;
12563 symbolS *label;
12564
12565 label = l != NULL ? l->label : NULL;
12566 mips_emit_delays ();
12567 if (log_size > 0 && auto_align)
12568 mips_align (log_size, 0, label);
12569 mips_clear_insn_labels ();
12570 cons (1 << log_size);
12571 }
12572
12573 static void
12574 s_float_cons (int type)
12575 {
12576 segment_info_type *si = seg_info (now_seg);
12577 struct insn_label_list *l = si->label_list;
12578 symbolS *label;
12579
12580 label = l != NULL ? l->label : NULL;
12581
12582 mips_emit_delays ();
12583
12584 if (auto_align)
12585 {
12586 if (type == 'd')
12587 mips_align (3, 0, label);
12588 else
12589 mips_align (2, 0, label);
12590 }
12591
12592 mips_clear_insn_labels ();
12593
12594 float_cons (type);
12595 }
12596
12597 /* Handle .globl. We need to override it because on Irix 5 you are
12598 permitted to say
12599 .globl foo .text
12600 where foo is an undefined symbol, to mean that foo should be
12601 considered to be the address of a function. */
12602
12603 static void
12604 s_mips_globl (int x ATTRIBUTE_UNUSED)
12605 {
12606 char *name;
12607 int c;
12608 symbolS *symbolP;
12609 flagword flag;
12610
12611 do
12612 {
12613 name = input_line_pointer;
12614 c = get_symbol_end ();
12615 symbolP = symbol_find_or_make (name);
12616 S_SET_EXTERNAL (symbolP);
12617
12618 *input_line_pointer = c;
12619 SKIP_WHITESPACE ();
12620
12621 /* On Irix 5, every global symbol that is not explicitly labelled as
12622 being a function is apparently labelled as being an object. */
12623 flag = BSF_OBJECT;
12624
12625 if (!is_end_of_line[(unsigned char) *input_line_pointer]
12626 && (*input_line_pointer != ','))
12627 {
12628 char *secname;
12629 asection *sec;
12630
12631 secname = input_line_pointer;
12632 c = get_symbol_end ();
12633 sec = bfd_get_section_by_name (stdoutput, secname);
12634 if (sec == NULL)
12635 as_bad (_("%s: no such section"), secname);
12636 *input_line_pointer = c;
12637
12638 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
12639 flag = BSF_FUNCTION;
12640 }
12641
12642 symbol_get_bfdsym (symbolP)->flags |= flag;
12643
12644 c = *input_line_pointer;
12645 if (c == ',')
12646 {
12647 input_line_pointer++;
12648 SKIP_WHITESPACE ();
12649 if (is_end_of_line[(unsigned char) *input_line_pointer])
12650 c = '\n';
12651 }
12652 }
12653 while (c == ',');
12654
12655 demand_empty_rest_of_line ();
12656 }
12657
12658 static void
12659 s_option (int x ATTRIBUTE_UNUSED)
12660 {
12661 char *opt;
12662 char c;
12663
12664 opt = input_line_pointer;
12665 c = get_symbol_end ();
12666
12667 if (*opt == 'O')
12668 {
12669 /* FIXME: What does this mean? */
12670 }
12671 else if (strncmp (opt, "pic", 3) == 0)
12672 {
12673 int i;
12674
12675 i = atoi (opt + 3);
12676 if (i == 0)
12677 mips_pic = NO_PIC;
12678 else if (i == 2)
12679 {
12680 mips_pic = SVR4_PIC;
12681 mips_abicalls = TRUE;
12682 }
12683 else
12684 as_bad (_(".option pic%d not supported"), i);
12685
12686 if (mips_pic == SVR4_PIC)
12687 {
12688 if (g_switch_seen && g_switch_value != 0)
12689 as_warn (_("-G may not be used with SVR4 PIC code"));
12690 g_switch_value = 0;
12691 bfd_set_gp_size (stdoutput, 0);
12692 }
12693 }
12694 else
12695 as_warn (_("Unrecognized option \"%s\""), opt);
12696
12697 *input_line_pointer = c;
12698 demand_empty_rest_of_line ();
12699 }
12700
12701 /* This structure is used to hold a stack of .set values. */
12702
12703 struct mips_option_stack
12704 {
12705 struct mips_option_stack *next;
12706 struct mips_set_options options;
12707 };
12708
12709 static struct mips_option_stack *mips_opts_stack;
12710
12711 /* Handle the .set pseudo-op. */
12712
12713 static void
12714 s_mipsset (int x ATTRIBUTE_UNUSED)
12715 {
12716 char *name = input_line_pointer, ch;
12717
12718 while (!is_end_of_line[(unsigned char) *input_line_pointer])
12719 ++input_line_pointer;
12720 ch = *input_line_pointer;
12721 *input_line_pointer = '\0';
12722
12723 if (strcmp (name, "reorder") == 0)
12724 {
12725 if (mips_opts.noreorder)
12726 end_noreorder ();
12727 }
12728 else if (strcmp (name, "noreorder") == 0)
12729 {
12730 if (!mips_opts.noreorder)
12731 start_noreorder ();
12732 }
12733 else if (strncmp (name, "at=", 3) == 0)
12734 {
12735 char *s = name + 3;
12736
12737 if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at))
12738 as_bad (_("Unrecognized register name `%s'"), s);
12739 }
12740 else if (strcmp (name, "at") == 0)
12741 {
12742 mips_opts.at = ATREG;
12743 }
12744 else if (strcmp (name, "noat") == 0)
12745 {
12746 mips_opts.at = ZERO;
12747 }
12748 else if (strcmp (name, "macro") == 0)
12749 {
12750 mips_opts.warn_about_macros = 0;
12751 }
12752 else if (strcmp (name, "nomacro") == 0)
12753 {
12754 if (mips_opts.noreorder == 0)
12755 as_bad (_("`noreorder' must be set before `nomacro'"));
12756 mips_opts.warn_about_macros = 1;
12757 }
12758 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
12759 {
12760 mips_opts.nomove = 0;
12761 }
12762 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
12763 {
12764 mips_opts.nomove = 1;
12765 }
12766 else if (strcmp (name, "bopt") == 0)
12767 {
12768 mips_opts.nobopt = 0;
12769 }
12770 else if (strcmp (name, "nobopt") == 0)
12771 {
12772 mips_opts.nobopt = 1;
12773 }
12774 else if (strcmp (name, "gp=default") == 0)
12775 mips_opts.gp32 = file_mips_gp32;
12776 else if (strcmp (name, "gp=32") == 0)
12777 mips_opts.gp32 = 1;
12778 else if (strcmp (name, "gp=64") == 0)
12779 {
12780 if (!ISA_HAS_64BIT_REGS (mips_opts.isa))
12781 as_warn ("%s isa does not support 64-bit registers",
12782 mips_cpu_info_from_isa (mips_opts.isa)->name);
12783 mips_opts.gp32 = 0;
12784 }
12785 else if (strcmp (name, "fp=default") == 0)
12786 mips_opts.fp32 = file_mips_fp32;
12787 else if (strcmp (name, "fp=32") == 0)
12788 mips_opts.fp32 = 1;
12789 else if (strcmp (name, "fp=64") == 0)
12790 {
12791 if (!ISA_HAS_64BIT_FPRS (mips_opts.isa))
12792 as_warn ("%s isa does not support 64-bit floating point registers",
12793 mips_cpu_info_from_isa (mips_opts.isa)->name);
12794 mips_opts.fp32 = 0;
12795 }
12796 else if (strcmp (name, "softfloat") == 0)
12797 mips_opts.soft_float = 1;
12798 else if (strcmp (name, "hardfloat") == 0)
12799 mips_opts.soft_float = 0;
12800 else if (strcmp (name, "singlefloat") == 0)
12801 mips_opts.single_float = 1;
12802 else if (strcmp (name, "doublefloat") == 0)
12803 mips_opts.single_float = 0;
12804 else if (strcmp (name, "mips16") == 0
12805 || strcmp (name, "MIPS-16") == 0)
12806 mips_opts.mips16 = 1;
12807 else if (strcmp (name, "nomips16") == 0
12808 || strcmp (name, "noMIPS-16") == 0)
12809 mips_opts.mips16 = 0;
12810 else if (strcmp (name, "smartmips") == 0)
12811 {
12812 if (!ISA_SUPPORTS_SMARTMIPS)
12813 as_warn ("%s ISA does not support SmartMIPS ASE",
12814 mips_cpu_info_from_isa (mips_opts.isa)->name);
12815 mips_opts.ase_smartmips = 1;
12816 }
12817 else if (strcmp (name, "nosmartmips") == 0)
12818 mips_opts.ase_smartmips = 0;
12819 else if (strcmp (name, "mips3d") == 0)
12820 mips_opts.ase_mips3d = 1;
12821 else if (strcmp (name, "nomips3d") == 0)
12822 mips_opts.ase_mips3d = 0;
12823 else if (strcmp (name, "mdmx") == 0)
12824 mips_opts.ase_mdmx = 1;
12825 else if (strcmp (name, "nomdmx") == 0)
12826 mips_opts.ase_mdmx = 0;
12827 else if (strcmp (name, "dsp") == 0)
12828 {
12829 if (!ISA_SUPPORTS_DSP_ASE)
12830 as_warn ("%s ISA does not support DSP ASE",
12831 mips_cpu_info_from_isa (mips_opts.isa)->name);
12832 mips_opts.ase_dsp = 1;
12833 mips_opts.ase_dspr2 = 0;
12834 }
12835 else if (strcmp (name, "nodsp") == 0)
12836 {
12837 mips_opts.ase_dsp = 0;
12838 mips_opts.ase_dspr2 = 0;
12839 }
12840 else if (strcmp (name, "dspr2") == 0)
12841 {
12842 if (!ISA_SUPPORTS_DSPR2_ASE)
12843 as_warn ("%s ISA does not support DSP R2 ASE",
12844 mips_cpu_info_from_isa (mips_opts.isa)->name);
12845 mips_opts.ase_dspr2 = 1;
12846 mips_opts.ase_dsp = 1;
12847 }
12848 else if (strcmp (name, "nodspr2") == 0)
12849 {
12850 mips_opts.ase_dspr2 = 0;
12851 mips_opts.ase_dsp = 0;
12852 }
12853 else if (strcmp (name, "mt") == 0)
12854 {
12855 if (!ISA_SUPPORTS_MT_ASE)
12856 as_warn ("%s ISA does not support MT ASE",
12857 mips_cpu_info_from_isa (mips_opts.isa)->name);
12858 mips_opts.ase_mt = 1;
12859 }
12860 else if (strcmp (name, "nomt") == 0)
12861 mips_opts.ase_mt = 0;
12862 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
12863 {
12864 int reset = 0;
12865
12866 /* Permit the user to change the ISA and architecture on the fly.
12867 Needless to say, misuse can cause serious problems. */
12868 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
12869 {
12870 reset = 1;
12871 mips_opts.isa = file_mips_isa;
12872 mips_opts.arch = file_mips_arch;
12873 }
12874 else if (strncmp (name, "arch=", 5) == 0)
12875 {
12876 const struct mips_cpu_info *p;
12877
12878 p = mips_parse_cpu("internal use", name + 5);
12879 if (!p)
12880 as_bad (_("unknown architecture %s"), name + 5);
12881 else
12882 {
12883 mips_opts.arch = p->cpu;
12884 mips_opts.isa = p->isa;
12885 }
12886 }
12887 else if (strncmp (name, "mips", 4) == 0)
12888 {
12889 const struct mips_cpu_info *p;
12890
12891 p = mips_parse_cpu("internal use", name);
12892 if (!p)
12893 as_bad (_("unknown ISA level %s"), name + 4);
12894 else
12895 {
12896 mips_opts.arch = p->cpu;
12897 mips_opts.isa = p->isa;
12898 }
12899 }
12900 else
12901 as_bad (_("unknown ISA or architecture %s"), name);
12902
12903 switch (mips_opts.isa)
12904 {
12905 case 0:
12906 break;
12907 case ISA_MIPS1:
12908 case ISA_MIPS2:
12909 case ISA_MIPS32:
12910 case ISA_MIPS32R2:
12911 mips_opts.gp32 = 1;
12912 mips_opts.fp32 = 1;
12913 break;
12914 case ISA_MIPS3:
12915 case ISA_MIPS4:
12916 case ISA_MIPS5:
12917 case ISA_MIPS64:
12918 case ISA_MIPS64R2:
12919 mips_opts.gp32 = 0;
12920 mips_opts.fp32 = 0;
12921 break;
12922 default:
12923 as_bad (_("unknown ISA level %s"), name + 4);
12924 break;
12925 }
12926 if (reset)
12927 {
12928 mips_opts.gp32 = file_mips_gp32;
12929 mips_opts.fp32 = file_mips_fp32;
12930 }
12931 }
12932 else if (strcmp (name, "autoextend") == 0)
12933 mips_opts.noautoextend = 0;
12934 else if (strcmp (name, "noautoextend") == 0)
12935 mips_opts.noautoextend = 1;
12936 else if (strcmp (name, "push") == 0)
12937 {
12938 struct mips_option_stack *s;
12939
12940 s = (struct mips_option_stack *) xmalloc (sizeof *s);
12941 s->next = mips_opts_stack;
12942 s->options = mips_opts;
12943 mips_opts_stack = s;
12944 }
12945 else if (strcmp (name, "pop") == 0)
12946 {
12947 struct mips_option_stack *s;
12948
12949 s = mips_opts_stack;
12950 if (s == NULL)
12951 as_bad (_(".set pop with no .set push"));
12952 else
12953 {
12954 /* If we're changing the reorder mode we need to handle
12955 delay slots correctly. */
12956 if (s->options.noreorder && ! mips_opts.noreorder)
12957 start_noreorder ();
12958 else if (! s->options.noreorder && mips_opts.noreorder)
12959 end_noreorder ();
12960
12961 mips_opts = s->options;
12962 mips_opts_stack = s->next;
12963 free (s);
12964 }
12965 }
12966 else if (strcmp (name, "sym32") == 0)
12967 mips_opts.sym32 = TRUE;
12968 else if (strcmp (name, "nosym32") == 0)
12969 mips_opts.sym32 = FALSE;
12970 else if (strchr (name, ','))
12971 {
12972 /* Generic ".set" directive; use the generic handler. */
12973 *input_line_pointer = ch;
12974 input_line_pointer = name;
12975 s_set (0);
12976 return;
12977 }
12978 else
12979 {
12980 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
12981 }
12982 *input_line_pointer = ch;
12983 demand_empty_rest_of_line ();
12984 }
12985
12986 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
12987 .option pic2. It means to generate SVR4 PIC calls. */
12988
12989 static void
12990 s_abicalls (int ignore ATTRIBUTE_UNUSED)
12991 {
12992 mips_pic = SVR4_PIC;
12993 mips_abicalls = TRUE;
12994
12995 if (g_switch_seen && g_switch_value != 0)
12996 as_warn (_("-G may not be used with SVR4 PIC code"));
12997 g_switch_value = 0;
12998
12999 bfd_set_gp_size (stdoutput, 0);
13000 demand_empty_rest_of_line ();
13001 }
13002
13003 /* Handle the .cpload pseudo-op. This is used when generating SVR4
13004 PIC code. It sets the $gp register for the function based on the
13005 function address, which is in the register named in the argument.
13006 This uses a relocation against _gp_disp, which is handled specially
13007 by the linker. The result is:
13008 lui $gp,%hi(_gp_disp)
13009 addiu $gp,$gp,%lo(_gp_disp)
13010 addu $gp,$gp,.cpload argument
13011 The .cpload argument is normally $25 == $t9.
13012
13013 The -mno-shared option changes this to:
13014 lui $gp,%hi(__gnu_local_gp)
13015 addiu $gp,$gp,%lo(__gnu_local_gp)
13016 and the argument is ignored. This saves an instruction, but the
13017 resulting code is not position independent; it uses an absolute
13018 address for __gnu_local_gp. Thus code assembled with -mno-shared
13019 can go into an ordinary executable, but not into a shared library. */
13020
13021 static void
13022 s_cpload (int ignore ATTRIBUTE_UNUSED)
13023 {
13024 expressionS ex;
13025 int reg;
13026 int in_shared;
13027
13028 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13029 .cpload is ignored. */
13030 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
13031 {
13032 s_ignore (0);
13033 return;
13034 }
13035
13036 /* .cpload should be in a .set noreorder section. */
13037 if (mips_opts.noreorder == 0)
13038 as_warn (_(".cpload not in noreorder section"));
13039
13040 reg = tc_get_register (0);
13041
13042 /* If we need to produce a 64-bit address, we are better off using
13043 the default instruction sequence. */
13044 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
13045
13046 ex.X_op = O_symbol;
13047 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
13048 "__gnu_local_gp");
13049 ex.X_op_symbol = NULL;
13050 ex.X_add_number = 0;
13051
13052 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
13053 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
13054
13055 macro_start ();
13056 macro_build_lui (&ex, mips_gp_register);
13057 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
13058 mips_gp_register, BFD_RELOC_LO16);
13059 if (in_shared)
13060 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
13061 mips_gp_register, reg);
13062 macro_end ();
13063
13064 demand_empty_rest_of_line ();
13065 }
13066
13067 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
13068 .cpsetup $reg1, offset|$reg2, label
13069
13070 If offset is given, this results in:
13071 sd $gp, offset($sp)
13072 lui $gp, %hi(%neg(%gp_rel(label)))
13073 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13074 daddu $gp, $gp, $reg1
13075
13076 If $reg2 is given, this results in:
13077 daddu $reg2, $gp, $0
13078 lui $gp, %hi(%neg(%gp_rel(label)))
13079 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
13080 daddu $gp, $gp, $reg1
13081 $reg1 is normally $25 == $t9.
13082
13083 The -mno-shared option replaces the last three instructions with
13084 lui $gp,%hi(_gp)
13085 addiu $gp,$gp,%lo(_gp) */
13086
13087 static void
13088 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
13089 {
13090 expressionS ex_off;
13091 expressionS ex_sym;
13092 int reg1;
13093
13094 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
13095 We also need NewABI support. */
13096 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13097 {
13098 s_ignore (0);
13099 return;
13100 }
13101
13102 reg1 = tc_get_register (0);
13103 SKIP_WHITESPACE ();
13104 if (*input_line_pointer != ',')
13105 {
13106 as_bad (_("missing argument separator ',' for .cpsetup"));
13107 return;
13108 }
13109 else
13110 ++input_line_pointer;
13111 SKIP_WHITESPACE ();
13112 if (*input_line_pointer == '$')
13113 {
13114 mips_cpreturn_register = tc_get_register (0);
13115 mips_cpreturn_offset = -1;
13116 }
13117 else
13118 {
13119 mips_cpreturn_offset = get_absolute_expression ();
13120 mips_cpreturn_register = -1;
13121 }
13122 SKIP_WHITESPACE ();
13123 if (*input_line_pointer != ',')
13124 {
13125 as_bad (_("missing argument separator ',' for .cpsetup"));
13126 return;
13127 }
13128 else
13129 ++input_line_pointer;
13130 SKIP_WHITESPACE ();
13131 expression (&ex_sym);
13132
13133 macro_start ();
13134 if (mips_cpreturn_register == -1)
13135 {
13136 ex_off.X_op = O_constant;
13137 ex_off.X_add_symbol = NULL;
13138 ex_off.X_op_symbol = NULL;
13139 ex_off.X_add_number = mips_cpreturn_offset;
13140
13141 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
13142 BFD_RELOC_LO16, SP);
13143 }
13144 else
13145 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
13146 mips_gp_register, 0);
13147
13148 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
13149 {
13150 macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
13151 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
13152 BFD_RELOC_HI16_S);
13153
13154 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
13155 mips_gp_register, -1, BFD_RELOC_GPREL16,
13156 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
13157
13158 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
13159 mips_gp_register, reg1);
13160 }
13161 else
13162 {
13163 expressionS ex;
13164
13165 ex.X_op = O_symbol;
13166 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
13167 ex.X_op_symbol = NULL;
13168 ex.X_add_number = 0;
13169
13170 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
13171 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
13172
13173 macro_build_lui (&ex, mips_gp_register);
13174 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
13175 mips_gp_register, BFD_RELOC_LO16);
13176 }
13177
13178 macro_end ();
13179
13180 demand_empty_rest_of_line ();
13181 }
13182
13183 static void
13184 s_cplocal (int ignore ATTRIBUTE_UNUSED)
13185 {
13186 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
13187 .cplocal is ignored. */
13188 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13189 {
13190 s_ignore (0);
13191 return;
13192 }
13193
13194 mips_gp_register = tc_get_register (0);
13195 demand_empty_rest_of_line ();
13196 }
13197
13198 /* Handle the .cprestore pseudo-op. This stores $gp into a given
13199 offset from $sp. The offset is remembered, and after making a PIC
13200 call $gp is restored from that location. */
13201
13202 static void
13203 s_cprestore (int ignore ATTRIBUTE_UNUSED)
13204 {
13205 expressionS ex;
13206
13207 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
13208 .cprestore is ignored. */
13209 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
13210 {
13211 s_ignore (0);
13212 return;
13213 }
13214
13215 mips_cprestore_offset = get_absolute_expression ();
13216 mips_cprestore_valid = 1;
13217
13218 ex.X_op = O_constant;
13219 ex.X_add_symbol = NULL;
13220 ex.X_op_symbol = NULL;
13221 ex.X_add_number = mips_cprestore_offset;
13222
13223 macro_start ();
13224 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
13225 SP, HAVE_64BIT_ADDRESSES);
13226 macro_end ();
13227
13228 demand_empty_rest_of_line ();
13229 }
13230
13231 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
13232 was given in the preceding .cpsetup, it results in:
13233 ld $gp, offset($sp)
13234
13235 If a register $reg2 was given there, it results in:
13236 daddu $gp, $reg2, $0 */
13237
13238 static void
13239 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
13240 {
13241 expressionS ex;
13242
13243 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
13244 We also need NewABI support. */
13245 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13246 {
13247 s_ignore (0);
13248 return;
13249 }
13250
13251 macro_start ();
13252 if (mips_cpreturn_register == -1)
13253 {
13254 ex.X_op = O_constant;
13255 ex.X_add_symbol = NULL;
13256 ex.X_op_symbol = NULL;
13257 ex.X_add_number = mips_cpreturn_offset;
13258
13259 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
13260 }
13261 else
13262 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
13263 mips_cpreturn_register, 0);
13264 macro_end ();
13265
13266 demand_empty_rest_of_line ();
13267 }
13268
13269 /* Handle the .dtprelword and .dtpreldword pseudo-ops. They generate
13270 a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for
13271 use in DWARF debug information. */
13272
13273 static void
13274 s_dtprel_internal (size_t bytes)
13275 {
13276 expressionS ex;
13277 char *p;
13278
13279 expression (&ex);
13280
13281 if (ex.X_op != O_symbol)
13282 {
13283 as_bad (_("Unsupported use of %s"), (bytes == 8
13284 ? ".dtpreldword"
13285 : ".dtprelword"));
13286 ignore_rest_of_line ();
13287 }
13288
13289 p = frag_more (bytes);
13290 md_number_to_chars (p, 0, bytes);
13291 fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE,
13292 (bytes == 8
13293 ? BFD_RELOC_MIPS_TLS_DTPREL64
13294 : BFD_RELOC_MIPS_TLS_DTPREL32));
13295
13296 demand_empty_rest_of_line ();
13297 }
13298
13299 /* Handle .dtprelword. */
13300
13301 static void
13302 s_dtprelword (int ignore ATTRIBUTE_UNUSED)
13303 {
13304 s_dtprel_internal (4);
13305 }
13306
13307 /* Handle .dtpreldword. */
13308
13309 static void
13310 s_dtpreldword (int ignore ATTRIBUTE_UNUSED)
13311 {
13312 s_dtprel_internal (8);
13313 }
13314
13315 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
13316 code. It sets the offset to use in gp_rel relocations. */
13317
13318 static void
13319 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
13320 {
13321 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
13322 We also need NewABI support. */
13323 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
13324 {
13325 s_ignore (0);
13326 return;
13327 }
13328
13329 mips_gprel_offset = get_absolute_expression ();
13330
13331 demand_empty_rest_of_line ();
13332 }
13333
13334 /* Handle the .gpword pseudo-op. This is used when generating PIC
13335 code. It generates a 32 bit GP relative reloc. */
13336
13337 static void
13338 s_gpword (int ignore ATTRIBUTE_UNUSED)
13339 {
13340 segment_info_type *si;
13341 struct insn_label_list *l;
13342 symbolS *label;
13343 expressionS ex;
13344 char *p;
13345
13346 /* When not generating PIC code, this is treated as .word. */
13347 if (mips_pic != SVR4_PIC)
13348 {
13349 s_cons (2);
13350 return;
13351 }
13352
13353 si = seg_info (now_seg);
13354 l = si->label_list;
13355 label = l != NULL ? l->label : NULL;
13356 mips_emit_delays ();
13357 if (auto_align)
13358 mips_align (2, 0, label);
13359 mips_clear_insn_labels ();
13360
13361 expression (&ex);
13362
13363 if (ex.X_op != O_symbol || ex.X_add_number != 0)
13364 {
13365 as_bad (_("Unsupported use of .gpword"));
13366 ignore_rest_of_line ();
13367 }
13368
13369 p = frag_more (4);
13370 md_number_to_chars (p, 0, 4);
13371 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
13372 BFD_RELOC_GPREL32);
13373
13374 demand_empty_rest_of_line ();
13375 }
13376
13377 static void
13378 s_gpdword (int ignore ATTRIBUTE_UNUSED)
13379 {
13380 segment_info_type *si;
13381 struct insn_label_list *l;
13382 symbolS *label;
13383 expressionS ex;
13384 char *p;
13385
13386 /* When not generating PIC code, this is treated as .dword. */
13387 if (mips_pic != SVR4_PIC)
13388 {
13389 s_cons (3);
13390 return;
13391 }
13392
13393 si = seg_info (now_seg);
13394 l = si->label_list;
13395 label = l != NULL ? l->label : NULL;
13396 mips_emit_delays ();
13397 if (auto_align)
13398 mips_align (3, 0, label);
13399 mips_clear_insn_labels ();
13400
13401 expression (&ex);
13402
13403 if (ex.X_op != O_symbol || ex.X_add_number != 0)
13404 {
13405 as_bad (_("Unsupported use of .gpdword"));
13406 ignore_rest_of_line ();
13407 }
13408
13409 p = frag_more (8);
13410 md_number_to_chars (p, 0, 8);
13411 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
13412 BFD_RELOC_GPREL32)->fx_tcbit = 1;
13413
13414 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
13415 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
13416 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
13417
13418 demand_empty_rest_of_line ();
13419 }
13420
13421 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
13422 tables in SVR4 PIC code. */
13423
13424 static void
13425 s_cpadd (int ignore ATTRIBUTE_UNUSED)
13426 {
13427 int reg;
13428
13429 /* This is ignored when not generating SVR4 PIC code. */
13430 if (mips_pic != SVR4_PIC)
13431 {
13432 s_ignore (0);
13433 return;
13434 }
13435
13436 /* Add $gp to the register named as an argument. */
13437 macro_start ();
13438 reg = tc_get_register (0);
13439 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
13440 macro_end ();
13441
13442 demand_empty_rest_of_line ();
13443 }
13444
13445 /* Handle the .insn pseudo-op. This marks instruction labels in
13446 mips16 mode. This permits the linker to handle them specially,
13447 such as generating jalx instructions when needed. We also make
13448 them odd for the duration of the assembly, in order to generate the
13449 right sort of code. We will make them even in the adjust_symtab
13450 routine, while leaving them marked. This is convenient for the
13451 debugger and the disassembler. The linker knows to make them odd
13452 again. */
13453
13454 static void
13455 s_insn (int ignore ATTRIBUTE_UNUSED)
13456 {
13457 mips16_mark_labels ();
13458
13459 demand_empty_rest_of_line ();
13460 }
13461
13462 /* Handle a .stabn directive. We need these in order to mark a label
13463 as being a mips16 text label correctly. Sometimes the compiler
13464 will emit a label, followed by a .stabn, and then switch sections.
13465 If the label and .stabn are in mips16 mode, then the label is
13466 really a mips16 text label. */
13467
13468 static void
13469 s_mips_stab (int type)
13470 {
13471 if (type == 'n')
13472 mips16_mark_labels ();
13473
13474 s_stab (type);
13475 }
13476
13477 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */
13478
13479 static void
13480 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
13481 {
13482 char *name;
13483 int c;
13484 symbolS *symbolP;
13485 expressionS exp;
13486
13487 name = input_line_pointer;
13488 c = get_symbol_end ();
13489 symbolP = symbol_find_or_make (name);
13490 S_SET_WEAK (symbolP);
13491 *input_line_pointer = c;
13492
13493 SKIP_WHITESPACE ();
13494
13495 if (! is_end_of_line[(unsigned char) *input_line_pointer])
13496 {
13497 if (S_IS_DEFINED (symbolP))
13498 {
13499 as_bad ("ignoring attempt to redefine symbol %s",
13500 S_GET_NAME (symbolP));
13501 ignore_rest_of_line ();
13502 return;
13503 }
13504
13505 if (*input_line_pointer == ',')
13506 {
13507 ++input_line_pointer;
13508 SKIP_WHITESPACE ();
13509 }
13510
13511 expression (&exp);
13512 if (exp.X_op != O_symbol)
13513 {
13514 as_bad ("bad .weakext directive");
13515 ignore_rest_of_line ();
13516 return;
13517 }
13518 symbol_set_value_expression (symbolP, &exp);
13519 }
13520
13521 demand_empty_rest_of_line ();
13522 }
13523
13524 /* Parse a register string into a number. Called from the ECOFF code
13525 to parse .frame. The argument is non-zero if this is the frame
13526 register, so that we can record it in mips_frame_reg. */
13527
13528 int
13529 tc_get_register (int frame)
13530 {
13531 unsigned int reg;
13532
13533 SKIP_WHITESPACE ();
13534 if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, &reg))
13535 reg = 0;
13536 if (frame)
13537 {
13538 mips_frame_reg = reg != 0 ? reg : SP;
13539 mips_frame_reg_valid = 1;
13540 mips_cprestore_valid = 0;
13541 }
13542 return reg;
13543 }
13544
13545 valueT
13546 md_section_align (asection *seg, valueT addr)
13547 {
13548 int align = bfd_get_section_alignment (stdoutput, seg);
13549
13550 if (IS_ELF)
13551 {
13552 /* We don't need to align ELF sections to the full alignment.
13553 However, Irix 5 may prefer that we align them at least to a 16
13554 byte boundary. We don't bother to align the sections if we
13555 are targeted for an embedded system. */
13556 if (strncmp (TARGET_OS, "elf", 3) == 0)
13557 return addr;
13558 if (align > 4)
13559 align = 4;
13560 }
13561
13562 return ((addr + (1 << align) - 1) & (-1 << align));
13563 }
13564
13565 /* Utility routine, called from above as well. If called while the
13566 input file is still being read, it's only an approximation. (For
13567 example, a symbol may later become defined which appeared to be
13568 undefined earlier.) */
13569
13570 static int
13571 nopic_need_relax (symbolS *sym, int before_relaxing)
13572 {
13573 if (sym == 0)
13574 return 0;
13575
13576 if (g_switch_value > 0)
13577 {
13578 const char *symname;
13579 int change;
13580
13581 /* Find out whether this symbol can be referenced off the $gp
13582 register. It can be if it is smaller than the -G size or if
13583 it is in the .sdata or .sbss section. Certain symbols can
13584 not be referenced off the $gp, although it appears as though
13585 they can. */
13586 symname = S_GET_NAME (sym);
13587 if (symname != (const char *) NULL
13588 && (strcmp (symname, "eprol") == 0
13589 || strcmp (symname, "etext") == 0
13590 || strcmp (symname, "_gp") == 0
13591 || strcmp (symname, "edata") == 0
13592 || strcmp (symname, "_fbss") == 0
13593 || strcmp (symname, "_fdata") == 0
13594 || strcmp (symname, "_ftext") == 0
13595 || strcmp (symname, "end") == 0
13596 || strcmp (symname, "_gp_disp") == 0))
13597 change = 1;
13598 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
13599 && (0
13600 #ifndef NO_ECOFF_DEBUGGING
13601 || (symbol_get_obj (sym)->ecoff_extern_size != 0
13602 && (symbol_get_obj (sym)->ecoff_extern_size
13603 <= g_switch_value))
13604 #endif
13605 /* We must defer this decision until after the whole
13606 file has been read, since there might be a .extern
13607 after the first use of this symbol. */
13608 || (before_relaxing
13609 #ifndef NO_ECOFF_DEBUGGING
13610 && symbol_get_obj (sym)->ecoff_extern_size == 0
13611 #endif
13612 && S_GET_VALUE (sym) == 0)
13613 || (S_GET_VALUE (sym) != 0
13614 && S_GET_VALUE (sym) <= g_switch_value)))
13615 change = 0;
13616 else
13617 {
13618 const char *segname;
13619
13620 segname = segment_name (S_GET_SEGMENT (sym));
13621 assert (strcmp (segname, ".lit8") != 0
13622 && strcmp (segname, ".lit4") != 0);
13623 change = (strcmp (segname, ".sdata") != 0
13624 && strcmp (segname, ".sbss") != 0
13625 && strncmp (segname, ".sdata.", 7) != 0
13626 && strncmp (segname, ".sbss.", 6) != 0
13627 && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0
13628 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
13629 }
13630 return change;
13631 }
13632 else
13633 /* We are not optimizing for the $gp register. */
13634 return 1;
13635 }
13636
13637
13638 /* Return true if the given symbol should be considered local for SVR4 PIC. */
13639
13640 static bfd_boolean
13641 pic_need_relax (symbolS *sym, asection *segtype)
13642 {
13643 asection *symsec;
13644
13645 /* Handle the case of a symbol equated to another symbol. */
13646 while (symbol_equated_reloc_p (sym))
13647 {
13648 symbolS *n;
13649
13650 /* It's possible to get a loop here in a badly written program. */
13651 n = symbol_get_value_expression (sym)->X_add_symbol;
13652 if (n == sym)
13653 break;
13654 sym = n;
13655 }
13656
13657 if (symbol_section_p (sym))
13658 return TRUE;
13659
13660 symsec = S_GET_SEGMENT (sym);
13661
13662 /* This must duplicate the test in adjust_reloc_syms. */
13663 return (symsec != &bfd_und_section
13664 && symsec != &bfd_abs_section
13665 && !bfd_is_com_section (symsec)
13666 && !s_is_linkonce (sym, segtype)
13667 #ifdef OBJ_ELF
13668 /* A global or weak symbol is treated as external. */
13669 && (!IS_ELF || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
13670 #endif
13671 );
13672 }
13673
13674
13675 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
13676 extended opcode. SEC is the section the frag is in. */
13677
13678 static int
13679 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
13680 {
13681 int type;
13682 const struct mips16_immed_operand *op;
13683 offsetT val;
13684 int mintiny, maxtiny;
13685 segT symsec;
13686 fragS *sym_frag;
13687
13688 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
13689 return 0;
13690 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
13691 return 1;
13692
13693 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
13694 op = mips16_immed_operands;
13695 while (op->type != type)
13696 {
13697 ++op;
13698 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
13699 }
13700
13701 if (op->unsp)
13702 {
13703 if (type == '<' || type == '>' || type == '[' || type == ']')
13704 {
13705 mintiny = 1;
13706 maxtiny = 1 << op->nbits;
13707 }
13708 else
13709 {
13710 mintiny = 0;
13711 maxtiny = (1 << op->nbits) - 1;
13712 }
13713 }
13714 else
13715 {
13716 mintiny = - (1 << (op->nbits - 1));
13717 maxtiny = (1 << (op->nbits - 1)) - 1;
13718 }
13719
13720 sym_frag = symbol_get_frag (fragp->fr_symbol);
13721 val = S_GET_VALUE (fragp->fr_symbol);
13722 symsec = S_GET_SEGMENT (fragp->fr_symbol);
13723
13724 if (op->pcrel)
13725 {
13726 addressT addr;
13727
13728 /* We won't have the section when we are called from
13729 mips_relax_frag. However, we will always have been called
13730 from md_estimate_size_before_relax first. If this is a
13731 branch to a different section, we mark it as such. If SEC is
13732 NULL, and the frag is not marked, then it must be a branch to
13733 the same section. */
13734 if (sec == NULL)
13735 {
13736 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
13737 return 1;
13738 }
13739 else
13740 {
13741 /* Must have been called from md_estimate_size_before_relax. */
13742 if (symsec != sec)
13743 {
13744 fragp->fr_subtype =
13745 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
13746
13747 /* FIXME: We should support this, and let the linker
13748 catch branches and loads that are out of range. */
13749 as_bad_where (fragp->fr_file, fragp->fr_line,
13750 _("unsupported PC relative reference to different section"));
13751
13752 return 1;
13753 }
13754 if (fragp != sym_frag && sym_frag->fr_address == 0)
13755 /* Assume non-extended on the first relaxation pass.
13756 The address we have calculated will be bogus if this is
13757 a forward branch to another frag, as the forward frag
13758 will have fr_address == 0. */
13759 return 0;
13760 }
13761
13762 /* In this case, we know for sure that the symbol fragment is in
13763 the same section. If the relax_marker of the symbol fragment
13764 differs from the relax_marker of this fragment, we have not
13765 yet adjusted the symbol fragment fr_address. We want to add
13766 in STRETCH in order to get a better estimate of the address.
13767 This particularly matters because of the shift bits. */
13768 if (stretch != 0
13769 && sym_frag->relax_marker != fragp->relax_marker)
13770 {
13771 fragS *f;
13772
13773 /* Adjust stretch for any alignment frag. Note that if have
13774 been expanding the earlier code, the symbol may be
13775 defined in what appears to be an earlier frag. FIXME:
13776 This doesn't handle the fr_subtype field, which specifies
13777 a maximum number of bytes to skip when doing an
13778 alignment. */
13779 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
13780 {
13781 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
13782 {
13783 if (stretch < 0)
13784 stretch = - ((- stretch)
13785 & ~ ((1 << (int) f->fr_offset) - 1));
13786 else
13787 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
13788 if (stretch == 0)
13789 break;
13790 }
13791 }
13792 if (f != NULL)
13793 val += stretch;
13794 }
13795
13796 addr = fragp->fr_address + fragp->fr_fix;
13797
13798 /* The base address rules are complicated. The base address of
13799 a branch is the following instruction. The base address of a
13800 PC relative load or add is the instruction itself, but if it
13801 is in a delay slot (in which case it can not be extended) use
13802 the address of the instruction whose delay slot it is in. */
13803 if (type == 'p' || type == 'q')
13804 {
13805 addr += 2;
13806
13807 /* If we are currently assuming that this frag should be
13808 extended, then, the current address is two bytes
13809 higher. */
13810 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13811 addr += 2;
13812
13813 /* Ignore the low bit in the target, since it will be set
13814 for a text label. */
13815 if ((val & 1) != 0)
13816 --val;
13817 }
13818 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
13819 addr -= 4;
13820 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
13821 addr -= 2;
13822
13823 val -= addr & ~ ((1 << op->shift) - 1);
13824
13825 /* Branch offsets have an implicit 0 in the lowest bit. */
13826 if (type == 'p' || type == 'q')
13827 val /= 2;
13828
13829 /* If any of the shifted bits are set, we must use an extended
13830 opcode. If the address depends on the size of this
13831 instruction, this can lead to a loop, so we arrange to always
13832 use an extended opcode. We only check this when we are in
13833 the main relaxation loop, when SEC is NULL. */
13834 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
13835 {
13836 fragp->fr_subtype =
13837 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
13838 return 1;
13839 }
13840
13841 /* If we are about to mark a frag as extended because the value
13842 is precisely maxtiny + 1, then there is a chance of an
13843 infinite loop as in the following code:
13844 la $4,foo
13845 .skip 1020
13846 .align 2
13847 foo:
13848 In this case when the la is extended, foo is 0x3fc bytes
13849 away, so the la can be shrunk, but then foo is 0x400 away, so
13850 the la must be extended. To avoid this loop, we mark the
13851 frag as extended if it was small, and is about to become
13852 extended with a value of maxtiny + 1. */
13853 if (val == ((maxtiny + 1) << op->shift)
13854 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
13855 && sec == NULL)
13856 {
13857 fragp->fr_subtype =
13858 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
13859 return 1;
13860 }
13861 }
13862 else if (symsec != absolute_section && sec != NULL)
13863 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
13864
13865 if ((val & ((1 << op->shift) - 1)) != 0
13866 || val < (mintiny << op->shift)
13867 || val > (maxtiny << op->shift))
13868 return 1;
13869 else
13870 return 0;
13871 }
13872
13873 /* Compute the length of a branch sequence, and adjust the
13874 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
13875 worst-case length is computed, with UPDATE being used to indicate
13876 whether an unconditional (-1), branch-likely (+1) or regular (0)
13877 branch is to be computed. */
13878 static int
13879 relaxed_branch_length (fragS *fragp, asection *sec, int update)
13880 {
13881 bfd_boolean toofar;
13882 int length;
13883
13884 if (fragp
13885 && S_IS_DEFINED (fragp->fr_symbol)
13886 && sec == S_GET_SEGMENT (fragp->fr_symbol))
13887 {
13888 addressT addr;
13889 offsetT val;
13890
13891 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
13892
13893 addr = fragp->fr_address + fragp->fr_fix + 4;
13894
13895 val -= addr;
13896
13897 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
13898 }
13899 else if (fragp)
13900 /* If the symbol is not defined or it's in a different segment,
13901 assume the user knows what's going on and emit a short
13902 branch. */
13903 toofar = FALSE;
13904 else
13905 toofar = TRUE;
13906
13907 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
13908 fragp->fr_subtype
13909 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype),
13910 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
13911 RELAX_BRANCH_LINK (fragp->fr_subtype),
13912 toofar);
13913
13914 length = 4;
13915 if (toofar)
13916 {
13917 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
13918 length += 8;
13919
13920 if (mips_pic != NO_PIC)
13921 {
13922 /* Additional space for PIC loading of target address. */
13923 length += 8;
13924 if (mips_opts.isa == ISA_MIPS1)
13925 /* Additional space for $at-stabilizing nop. */
13926 length += 4;
13927 }
13928
13929 /* If branch is conditional. */
13930 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
13931 length += 8;
13932 }
13933
13934 return length;
13935 }
13936
13937 /* Estimate the size of a frag before relaxing. Unless this is the
13938 mips16, we are not really relaxing here, and the final size is
13939 encoded in the subtype information. For the mips16, we have to
13940 decide whether we are using an extended opcode or not. */
13941
13942 int
13943 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
13944 {
13945 int change;
13946
13947 if (RELAX_BRANCH_P (fragp->fr_subtype))
13948 {
13949
13950 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
13951
13952 return fragp->fr_var;
13953 }
13954
13955 if (RELAX_MIPS16_P (fragp->fr_subtype))
13956 /* We don't want to modify the EXTENDED bit here; it might get us
13957 into infinite loops. We change it only in mips_relax_frag(). */
13958 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
13959
13960 if (mips_pic == NO_PIC)
13961 change = nopic_need_relax (fragp->fr_symbol, 0);
13962 else if (mips_pic == SVR4_PIC)
13963 change = pic_need_relax (fragp->fr_symbol, segtype);
13964 else if (mips_pic == VXWORKS_PIC)
13965 /* For vxworks, GOT16 relocations never have a corresponding LO16. */
13966 change = 0;
13967 else
13968 abort ();
13969
13970 if (change)
13971 {
13972 fragp->fr_subtype |= RELAX_USE_SECOND;
13973 return -RELAX_FIRST (fragp->fr_subtype);
13974 }
13975 else
13976 return -RELAX_SECOND (fragp->fr_subtype);
13977 }
13978
13979 /* This is called to see whether a reloc against a defined symbol
13980 should be converted into a reloc against a section. */
13981
13982 int
13983 mips_fix_adjustable (fixS *fixp)
13984 {
13985 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
13986 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
13987 return 0;
13988
13989 if (fixp->fx_addsy == NULL)
13990 return 1;
13991
13992 /* If symbol SYM is in a mergeable section, relocations of the form
13993 SYM + 0 can usually be made section-relative. The mergeable data
13994 is then identified by the section offset rather than by the symbol.
13995
13996 However, if we're generating REL LO16 relocations, the offset is split
13997 between the LO16 and parterning high part relocation. The linker will
13998 need to recalculate the complete offset in order to correctly identify
13999 the merge data.
14000
14001 The linker has traditionally not looked for the parterning high part
14002 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
14003 placed anywhere. Rather than break backwards compatibility by changing
14004 this, it seems better not to force the issue, and instead keep the
14005 original symbol. This will work with either linker behavior. */
14006 if ((lo16_reloc_p (fixp->fx_r_type)
14007 || reloc_needs_lo_p (fixp->fx_r_type))
14008 && HAVE_IN_PLACE_ADDENDS
14009 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
14010 return 0;
14011
14012 #ifdef OBJ_ELF
14013 /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve
14014 to a floating-point stub. The same is true for non-R_MIPS16_26
14015 relocations against MIPS16 functions; in this case, the stub becomes
14016 the function's canonical address.
14017
14018 Floating-point stubs are stored in unique .mips16.call.* or
14019 .mips16.fn.* sections. If a stub T for function F is in section S,
14020 the first relocation in section S must be against F; this is how the
14021 linker determines the target function. All relocations that might
14022 resolve to T must also be against F. We therefore have the following
14023 restrictions, which are given in an intentionally-redundant way:
14024
14025 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16
14026 symbols.
14027
14028 2. We cannot reduce a stub's relocations against non-MIPS16 symbols
14029 if that stub might be used.
14030
14031 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16
14032 symbols.
14033
14034 4. We cannot reduce a stub's relocations against MIPS16 symbols if
14035 that stub might be used.
14036
14037 There is a further restriction:
14038
14039 5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols
14040 on targets with in-place addends; the relocation field cannot
14041 encode the low bit.
14042
14043 For simplicity, we deal with (3)-(5) by not reducing _any_ relocation
14044 against a MIPS16 symbol.
14045
14046 We deal with (1)-(2) by saying that, if there's a R_MIPS16_26
14047 relocation against some symbol R, no relocation against R may be
14048 reduced. (Note that this deals with (2) as well as (1) because
14049 relocations against global symbols will never be reduced on ELF
14050 targets.) This approach is a little simpler than trying to detect
14051 stub sections, and gives the "all or nothing" per-symbol consistency
14052 that we have for MIPS16 symbols. */
14053 if (IS_ELF
14054 && fixp->fx_subsy == NULL
14055 && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy))
14056 || *symbol_get_tc (fixp->fx_addsy)))
14057 return 0;
14058 #endif
14059
14060 return 1;
14061 }
14062
14063 /* Translate internal representation of relocation info to BFD target
14064 format. */
14065
14066 arelent **
14067 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
14068 {
14069 static arelent *retval[4];
14070 arelent *reloc;
14071 bfd_reloc_code_real_type code;
14072
14073 memset (retval, 0, sizeof(retval));
14074 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
14075 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
14076 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
14077 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
14078
14079 if (fixp->fx_pcrel)
14080 {
14081 assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2);
14082
14083 /* At this point, fx_addnumber is "symbol offset - pcrel address".
14084 Relocations want only the symbol offset. */
14085 reloc->addend = fixp->fx_addnumber + reloc->address;
14086 if (!IS_ELF)
14087 {
14088 /* A gruesome hack which is a result of the gruesome gas
14089 reloc handling. What's worse, for COFF (as opposed to
14090 ECOFF), we might need yet another copy of reloc->address.
14091 See bfd_install_relocation. */
14092 reloc->addend += reloc->address;
14093 }
14094 }
14095 else
14096 reloc->addend = fixp->fx_addnumber;
14097
14098 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
14099 entry to be used in the relocation's section offset. */
14100 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
14101 {
14102 reloc->address = reloc->addend;
14103 reloc->addend = 0;
14104 }
14105
14106 code = fixp->fx_r_type;
14107
14108 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
14109 if (reloc->howto == NULL)
14110 {
14111 as_bad_where (fixp->fx_file, fixp->fx_line,
14112 _("Can not represent %s relocation in this object file format"),
14113 bfd_get_reloc_code_name (code));
14114 retval[0] = NULL;
14115 }
14116
14117 return retval;
14118 }
14119
14120 /* Relax a machine dependent frag. This returns the amount by which
14121 the current size of the frag should change. */
14122
14123 int
14124 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
14125 {
14126 if (RELAX_BRANCH_P (fragp->fr_subtype))
14127 {
14128 offsetT old_var = fragp->fr_var;
14129
14130 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
14131
14132 return fragp->fr_var - old_var;
14133 }
14134
14135 if (! RELAX_MIPS16_P (fragp->fr_subtype))
14136 return 0;
14137
14138 if (mips16_extended_frag (fragp, NULL, stretch))
14139 {
14140 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14141 return 0;
14142 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
14143 return 2;
14144 }
14145 else
14146 {
14147 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14148 return 0;
14149 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
14150 return -2;
14151 }
14152
14153 return 0;
14154 }
14155
14156 /* Convert a machine dependent frag. */
14157
14158 void
14159 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
14160 {
14161 if (RELAX_BRANCH_P (fragp->fr_subtype))
14162 {
14163 bfd_byte *buf;
14164 unsigned long insn;
14165 expressionS exp;
14166 fixS *fixp;
14167
14168 buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
14169
14170 if (target_big_endian)
14171 insn = bfd_getb32 (buf);
14172 else
14173 insn = bfd_getl32 (buf);
14174
14175 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
14176 {
14177 /* We generate a fixup instead of applying it right now
14178 because, if there are linker relaxations, we're going to
14179 need the relocations. */
14180 exp.X_op = O_symbol;
14181 exp.X_add_symbol = fragp->fr_symbol;
14182 exp.X_add_number = fragp->fr_offset;
14183
14184 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14185 4, &exp, TRUE, BFD_RELOC_16_PCREL_S2);
14186 fixp->fx_file = fragp->fr_file;
14187 fixp->fx_line = fragp->fr_line;
14188
14189 md_number_to_chars ((char *) buf, insn, 4);
14190 buf += 4;
14191 }
14192 else
14193 {
14194 int i;
14195
14196 as_warn_where (fragp->fr_file, fragp->fr_line,
14197 _("relaxed out-of-range branch into a jump"));
14198
14199 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
14200 goto uncond;
14201
14202 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14203 {
14204 /* Reverse the branch. */
14205 switch ((insn >> 28) & 0xf)
14206 {
14207 case 4:
14208 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
14209 have the condition reversed by tweaking a single
14210 bit, and their opcodes all have 0x4???????. */
14211 assert ((insn & 0xf1000000) == 0x41000000);
14212 insn ^= 0x00010000;
14213 break;
14214
14215 case 0:
14216 /* bltz 0x04000000 bgez 0x04010000
14217 bltzal 0x04100000 bgezal 0x04110000 */
14218 assert ((insn & 0xfc0e0000) == 0x04000000);
14219 insn ^= 0x00010000;
14220 break;
14221
14222 case 1:
14223 /* beq 0x10000000 bne 0x14000000
14224 blez 0x18000000 bgtz 0x1c000000 */
14225 insn ^= 0x04000000;
14226 break;
14227
14228 default:
14229 abort ();
14230 }
14231 }
14232
14233 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14234 {
14235 /* Clear the and-link bit. */
14236 assert ((insn & 0xfc1c0000) == 0x04100000);
14237
14238 /* bltzal 0x04100000 bgezal 0x04110000
14239 bltzall 0x04120000 bgezall 0x04130000 */
14240 insn &= ~0x00100000;
14241 }
14242
14243 /* Branch over the branch (if the branch was likely) or the
14244 full jump (not likely case). Compute the offset from the
14245 current instruction to branch to. */
14246 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14247 i = 16;
14248 else
14249 {
14250 /* How many bytes in instructions we've already emitted? */
14251 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14252 /* How many bytes in instructions from here to the end? */
14253 i = fragp->fr_var - i;
14254 }
14255 /* Convert to instruction count. */
14256 i >>= 2;
14257 /* Branch counts from the next instruction. */
14258 i--;
14259 insn |= i;
14260 /* Branch over the jump. */
14261 md_number_to_chars ((char *) buf, insn, 4);
14262 buf += 4;
14263
14264 /* nop */
14265 md_number_to_chars ((char *) buf, 0, 4);
14266 buf += 4;
14267
14268 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
14269 {
14270 /* beql $0, $0, 2f */
14271 insn = 0x50000000;
14272 /* Compute the PC offset from the current instruction to
14273 the end of the variable frag. */
14274 /* How many bytes in instructions we've already emitted? */
14275 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
14276 /* How many bytes in instructions from here to the end? */
14277 i = fragp->fr_var - i;
14278 /* Convert to instruction count. */
14279 i >>= 2;
14280 /* Don't decrement i, because we want to branch over the
14281 delay slot. */
14282
14283 insn |= i;
14284 md_number_to_chars ((char *) buf, insn, 4);
14285 buf += 4;
14286
14287 md_number_to_chars ((char *) buf, 0, 4);
14288 buf += 4;
14289 }
14290
14291 uncond:
14292 if (mips_pic == NO_PIC)
14293 {
14294 /* j or jal. */
14295 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
14296 ? 0x0c000000 : 0x08000000);
14297 exp.X_op = O_symbol;
14298 exp.X_add_symbol = fragp->fr_symbol;
14299 exp.X_add_number = fragp->fr_offset;
14300
14301 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14302 4, &exp, FALSE, BFD_RELOC_MIPS_JMP);
14303 fixp->fx_file = fragp->fr_file;
14304 fixp->fx_line = fragp->fr_line;
14305
14306 md_number_to_chars ((char *) buf, insn, 4);
14307 buf += 4;
14308 }
14309 else
14310 {
14311 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
14312 insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000;
14313 exp.X_op = O_symbol;
14314 exp.X_add_symbol = fragp->fr_symbol;
14315 exp.X_add_number = fragp->fr_offset;
14316
14317 if (fragp->fr_offset)
14318 {
14319 exp.X_add_symbol = make_expr_symbol (&exp);
14320 exp.X_add_number = 0;
14321 }
14322
14323 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14324 4, &exp, FALSE, BFD_RELOC_MIPS_GOT16);
14325 fixp->fx_file = fragp->fr_file;
14326 fixp->fx_line = fragp->fr_line;
14327
14328 md_number_to_chars ((char *) buf, insn, 4);
14329 buf += 4;
14330
14331 if (mips_opts.isa == ISA_MIPS1)
14332 {
14333 /* nop */
14334 md_number_to_chars ((char *) buf, 0, 4);
14335 buf += 4;
14336 }
14337
14338 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
14339 insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000;
14340
14341 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
14342 4, &exp, FALSE, BFD_RELOC_LO16);
14343 fixp->fx_file = fragp->fr_file;
14344 fixp->fx_line = fragp->fr_line;
14345
14346 md_number_to_chars ((char *) buf, insn, 4);
14347 buf += 4;
14348
14349 /* j(al)r $at. */
14350 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
14351 insn = 0x0020f809;
14352 else
14353 insn = 0x00200008;
14354
14355 md_number_to_chars ((char *) buf, insn, 4);
14356 buf += 4;
14357 }
14358 }
14359
14360 assert (buf == (bfd_byte *)fragp->fr_literal
14361 + fragp->fr_fix + fragp->fr_var);
14362
14363 fragp->fr_fix += fragp->fr_var;
14364
14365 return;
14366 }
14367
14368 if (RELAX_MIPS16_P (fragp->fr_subtype))
14369 {
14370 int type;
14371 const struct mips16_immed_operand *op;
14372 bfd_boolean small, ext;
14373 offsetT val;
14374 bfd_byte *buf;
14375 unsigned long insn;
14376 bfd_boolean use_extend;
14377 unsigned short extend;
14378
14379 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
14380 op = mips16_immed_operands;
14381 while (op->type != type)
14382 ++op;
14383
14384 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
14385 {
14386 small = FALSE;
14387 ext = TRUE;
14388 }
14389 else
14390 {
14391 small = TRUE;
14392 ext = FALSE;
14393 }
14394
14395 resolve_symbol_value (fragp->fr_symbol);
14396 val = S_GET_VALUE (fragp->fr_symbol);
14397 if (op->pcrel)
14398 {
14399 addressT addr;
14400
14401 addr = fragp->fr_address + fragp->fr_fix;
14402
14403 /* The rules for the base address of a PC relative reloc are
14404 complicated; see mips16_extended_frag. */
14405 if (type == 'p' || type == 'q')
14406 {
14407 addr += 2;
14408 if (ext)
14409 addr += 2;
14410 /* Ignore the low bit in the target, since it will be
14411 set for a text label. */
14412 if ((val & 1) != 0)
14413 --val;
14414 }
14415 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
14416 addr -= 4;
14417 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
14418 addr -= 2;
14419
14420 addr &= ~ (addressT) ((1 << op->shift) - 1);
14421 val -= addr;
14422
14423 /* Make sure the section winds up with the alignment we have
14424 assumed. */
14425 if (op->shift > 0)
14426 record_alignment (asec, op->shift);
14427 }
14428
14429 if (ext
14430 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
14431 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
14432 as_warn_where (fragp->fr_file, fragp->fr_line,
14433 _("extended instruction in delay slot"));
14434
14435 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
14436
14437 if (target_big_endian)
14438 insn = bfd_getb16 (buf);
14439 else
14440 insn = bfd_getl16 (buf);
14441
14442 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
14443 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
14444 small, ext, &insn, &use_extend, &extend);
14445
14446 if (use_extend)
14447 {
14448 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
14449 fragp->fr_fix += 2;
14450 buf += 2;
14451 }
14452
14453 md_number_to_chars ((char *) buf, insn, 2);
14454 fragp->fr_fix += 2;
14455 buf += 2;
14456 }
14457 else
14458 {
14459 int first, second;
14460 fixS *fixp;
14461
14462 first = RELAX_FIRST (fragp->fr_subtype);
14463 second = RELAX_SECOND (fragp->fr_subtype);
14464 fixp = (fixS *) fragp->fr_opcode;
14465
14466 /* Possibly emit a warning if we've chosen the longer option. */
14467 if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
14468 == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
14469 {
14470 const char *msg = macro_warning (fragp->fr_subtype);
14471 if (msg != 0)
14472 as_warn_where (fragp->fr_file, fragp->fr_line, msg);
14473 }
14474
14475 /* Go through all the fixups for the first sequence. Disable them
14476 (by marking them as done) if we're going to use the second
14477 sequence instead. */
14478 while (fixp
14479 && fixp->fx_frag == fragp
14480 && fixp->fx_where < fragp->fr_fix - second)
14481 {
14482 if (fragp->fr_subtype & RELAX_USE_SECOND)
14483 fixp->fx_done = 1;
14484 fixp = fixp->fx_next;
14485 }
14486
14487 /* Go through the fixups for the second sequence. Disable them if
14488 we're going to use the first sequence, otherwise adjust their
14489 addresses to account for the relaxation. */
14490 while (fixp && fixp->fx_frag == fragp)
14491 {
14492 if (fragp->fr_subtype & RELAX_USE_SECOND)
14493 fixp->fx_where -= first;
14494 else
14495 fixp->fx_done = 1;
14496 fixp = fixp->fx_next;
14497 }
14498
14499 /* Now modify the frag contents. */
14500 if (fragp->fr_subtype & RELAX_USE_SECOND)
14501 {
14502 char *start;
14503
14504 start = fragp->fr_literal + fragp->fr_fix - first - second;
14505 memmove (start, start + first, second);
14506 fragp->fr_fix -= first;
14507 }
14508 else
14509 fragp->fr_fix -= second;
14510 }
14511 }
14512
14513 #ifdef OBJ_ELF
14514
14515 /* This function is called after the relocs have been generated.
14516 We've been storing mips16 text labels as odd. Here we convert them
14517 back to even for the convenience of the debugger. */
14518
14519 void
14520 mips_frob_file_after_relocs (void)
14521 {
14522 asymbol **syms;
14523 unsigned int count, i;
14524
14525 if (!IS_ELF)
14526 return;
14527
14528 syms = bfd_get_outsymbols (stdoutput);
14529 count = bfd_get_symcount (stdoutput);
14530 for (i = 0; i < count; i++, syms++)
14531 {
14532 if (ELF_ST_IS_MIPS16 (elf_symbol (*syms)->internal_elf_sym.st_other)
14533 && ((*syms)->value & 1) != 0)
14534 {
14535 (*syms)->value &= ~1;
14536 /* If the symbol has an odd size, it was probably computed
14537 incorrectly, so adjust that as well. */
14538 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
14539 ++elf_symbol (*syms)->internal_elf_sym.st_size;
14540 }
14541 }
14542 }
14543
14544 #endif
14545
14546 /* This function is called whenever a label is defined. It is used
14547 when handling branch delays; if a branch has a label, we assume we
14548 can not move it. */
14549
14550 void
14551 mips_define_label (symbolS *sym)
14552 {
14553 segment_info_type *si = seg_info (now_seg);
14554 struct insn_label_list *l;
14555
14556 if (free_insn_labels == NULL)
14557 l = (struct insn_label_list *) xmalloc (sizeof *l);
14558 else
14559 {
14560 l = free_insn_labels;
14561 free_insn_labels = l->next;
14562 }
14563
14564 l->label = sym;
14565 l->next = si->label_list;
14566 si->label_list = l;
14567
14568 #ifdef OBJ_ELF
14569 dwarf2_emit_label (sym);
14570 #endif
14571 }
14572 \f
14573 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
14574
14575 /* Some special processing for a MIPS ELF file. */
14576
14577 void
14578 mips_elf_final_processing (void)
14579 {
14580 /* Write out the register information. */
14581 if (mips_abi != N64_ABI)
14582 {
14583 Elf32_RegInfo s;
14584
14585 s.ri_gprmask = mips_gprmask;
14586 s.ri_cprmask[0] = mips_cprmask[0];
14587 s.ri_cprmask[1] = mips_cprmask[1];
14588 s.ri_cprmask[2] = mips_cprmask[2];
14589 s.ri_cprmask[3] = mips_cprmask[3];
14590 /* The gp_value field is set by the MIPS ELF backend. */
14591
14592 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
14593 ((Elf32_External_RegInfo *)
14594 mips_regmask_frag));
14595 }
14596 else
14597 {
14598 Elf64_Internal_RegInfo s;
14599
14600 s.ri_gprmask = mips_gprmask;
14601 s.ri_pad = 0;
14602 s.ri_cprmask[0] = mips_cprmask[0];
14603 s.ri_cprmask[1] = mips_cprmask[1];
14604 s.ri_cprmask[2] = mips_cprmask[2];
14605 s.ri_cprmask[3] = mips_cprmask[3];
14606 /* The gp_value field is set by the MIPS ELF backend. */
14607
14608 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
14609 ((Elf64_External_RegInfo *)
14610 mips_regmask_frag));
14611 }
14612
14613 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
14614 sort of BFD interface for this. */
14615 if (mips_any_noreorder)
14616 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
14617 if (mips_pic != NO_PIC)
14618 {
14619 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
14620 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
14621 }
14622 if (mips_abicalls)
14623 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
14624
14625 /* Set MIPS ELF flags for ASEs. */
14626 /* We may need to define a new flag for DSP ASE, and set this flag when
14627 file_ase_dsp is true. */
14628 /* Same for DSP R2. */
14629 /* We may need to define a new flag for MT ASE, and set this flag when
14630 file_ase_mt is true. */
14631 if (file_ase_mips16)
14632 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
14633 #if 0 /* XXX FIXME */
14634 if (file_ase_mips3d)
14635 elf_elfheader (stdoutput)->e_flags |= ???;
14636 #endif
14637 if (file_ase_mdmx)
14638 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
14639
14640 /* Set the MIPS ELF ABI flags. */
14641 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
14642 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
14643 else if (mips_abi == O64_ABI)
14644 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
14645 else if (mips_abi == EABI_ABI)
14646 {
14647 if (!file_mips_gp32)
14648 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
14649 else
14650 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
14651 }
14652 else if (mips_abi == N32_ABI)
14653 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
14654
14655 /* Nothing to do for N64_ABI. */
14656
14657 if (mips_32bitmode)
14658 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
14659
14660 #if 0 /* XXX FIXME */
14661 /* 32 bit code with 64 bit FP registers. */
14662 if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi))
14663 elf_elfheader (stdoutput)->e_flags |= ???;
14664 #endif
14665 }
14666
14667 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
14668 \f
14669 typedef struct proc {
14670 symbolS *func_sym;
14671 symbolS *func_end_sym;
14672 unsigned long reg_mask;
14673 unsigned long reg_offset;
14674 unsigned long fpreg_mask;
14675 unsigned long fpreg_offset;
14676 unsigned long frame_offset;
14677 unsigned long frame_reg;
14678 unsigned long pc_reg;
14679 } procS;
14680
14681 static procS cur_proc;
14682 static procS *cur_proc_ptr;
14683 static int numprocs;
14684
14685 /* Implement NOP_OPCODE. We encode a MIPS16 nop as "1" and a normal
14686 nop as "0". */
14687
14688 char
14689 mips_nop_opcode (void)
14690 {
14691 return seg_info (now_seg)->tc_segment_info_data.mips16;
14692 }
14693
14694 /* Fill in an rs_align_code fragment. This only needs to do something
14695 for MIPS16 code, where 0 is not a nop. */
14696
14697 void
14698 mips_handle_align (fragS *fragp)
14699 {
14700 char *p;
14701
14702 if (fragp->fr_type != rs_align_code)
14703 return;
14704
14705 p = fragp->fr_literal + fragp->fr_fix;
14706 if (*p)
14707 {
14708 int bytes;
14709
14710 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
14711 if (bytes & 1)
14712 {
14713 *p++ = 0;
14714 fragp->fr_fix++;
14715 }
14716 md_number_to_chars (p, mips16_nop_insn.insn_opcode, 2);
14717 fragp->fr_var = 2;
14718 }
14719 }
14720
14721 static void
14722 md_obj_begin (void)
14723 {
14724 }
14725
14726 static void
14727 md_obj_end (void)
14728 {
14729 /* Check for premature end, nesting errors, etc. */
14730 if (cur_proc_ptr)
14731 as_warn (_("missing .end at end of assembly"));
14732 }
14733
14734 static long
14735 get_number (void)
14736 {
14737 int negative = 0;
14738 long val = 0;
14739
14740 if (*input_line_pointer == '-')
14741 {
14742 ++input_line_pointer;
14743 negative = 1;
14744 }
14745 if (!ISDIGIT (*input_line_pointer))
14746 as_bad (_("expected simple number"));
14747 if (input_line_pointer[0] == '0')
14748 {
14749 if (input_line_pointer[1] == 'x')
14750 {
14751 input_line_pointer += 2;
14752 while (ISXDIGIT (*input_line_pointer))
14753 {
14754 val <<= 4;
14755 val |= hex_value (*input_line_pointer++);
14756 }
14757 return negative ? -val : val;
14758 }
14759 else
14760 {
14761 ++input_line_pointer;
14762 while (ISDIGIT (*input_line_pointer))
14763 {
14764 val <<= 3;
14765 val |= *input_line_pointer++ - '0';
14766 }
14767 return negative ? -val : val;
14768 }
14769 }
14770 if (!ISDIGIT (*input_line_pointer))
14771 {
14772 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
14773 *input_line_pointer, *input_line_pointer);
14774 as_warn (_("invalid number"));
14775 return -1;
14776 }
14777 while (ISDIGIT (*input_line_pointer))
14778 {
14779 val *= 10;
14780 val += *input_line_pointer++ - '0';
14781 }
14782 return negative ? -val : val;
14783 }
14784
14785 /* The .file directive; just like the usual .file directive, but there
14786 is an initial number which is the ECOFF file index. In the non-ECOFF
14787 case .file implies DWARF-2. */
14788
14789 static void
14790 s_mips_file (int x ATTRIBUTE_UNUSED)
14791 {
14792 static int first_file_directive = 0;
14793
14794 if (ECOFF_DEBUGGING)
14795 {
14796 get_number ();
14797 s_app_file (0);
14798 }
14799 else
14800 {
14801 char *filename;
14802
14803 filename = dwarf2_directive_file (0);
14804
14805 /* Versions of GCC up to 3.1 start files with a ".file"
14806 directive even for stabs output. Make sure that this
14807 ".file" is handled. Note that you need a version of GCC
14808 after 3.1 in order to support DWARF-2 on MIPS. */
14809 if (filename != NULL && ! first_file_directive)
14810 {
14811 (void) new_logical_line (filename, -1);
14812 s_app_file_string (filename, 0);
14813 }
14814 first_file_directive = 1;
14815 }
14816 }
14817
14818 /* The .loc directive, implying DWARF-2. */
14819
14820 static void
14821 s_mips_loc (int x ATTRIBUTE_UNUSED)
14822 {
14823 if (!ECOFF_DEBUGGING)
14824 dwarf2_directive_loc (0);
14825 }
14826
14827 /* The .end directive. */
14828
14829 static void
14830 s_mips_end (int x ATTRIBUTE_UNUSED)
14831 {
14832 symbolS *p;
14833
14834 /* Following functions need their own .frame and .cprestore directives. */
14835 mips_frame_reg_valid = 0;
14836 mips_cprestore_valid = 0;
14837
14838 if (!is_end_of_line[(unsigned char) *input_line_pointer])
14839 {
14840 p = get_symbol ();
14841 demand_empty_rest_of_line ();
14842 }
14843 else
14844 p = NULL;
14845
14846 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
14847 as_warn (_(".end not in text section"));
14848
14849 if (!cur_proc_ptr)
14850 {
14851 as_warn (_(".end directive without a preceding .ent directive."));
14852 demand_empty_rest_of_line ();
14853 return;
14854 }
14855
14856 if (p != NULL)
14857 {
14858 assert (S_GET_NAME (p));
14859 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
14860 as_warn (_(".end symbol does not match .ent symbol."));
14861
14862 if (debug_type == DEBUG_STABS)
14863 stabs_generate_asm_endfunc (S_GET_NAME (p),
14864 S_GET_NAME (p));
14865 }
14866 else
14867 as_warn (_(".end directive missing or unknown symbol"));
14868
14869 #ifdef OBJ_ELF
14870 /* Create an expression to calculate the size of the function. */
14871 if (p && cur_proc_ptr)
14872 {
14873 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
14874 expressionS *exp = xmalloc (sizeof (expressionS));
14875
14876 obj->size = exp;
14877 exp->X_op = O_subtract;
14878 exp->X_add_symbol = symbol_temp_new_now ();
14879 exp->X_op_symbol = p;
14880 exp->X_add_number = 0;
14881
14882 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
14883 }
14884
14885 /* Generate a .pdr section. */
14886 if (IS_ELF && !ECOFF_DEBUGGING && mips_flag_pdr)
14887 {
14888 segT saved_seg = now_seg;
14889 subsegT saved_subseg = now_subseg;
14890 valueT dot;
14891 expressionS exp;
14892 char *fragp;
14893
14894 dot = frag_now_fix ();
14895
14896 #ifdef md_flush_pending_output
14897 md_flush_pending_output ();
14898 #endif
14899
14900 assert (pdr_seg);
14901 subseg_set (pdr_seg, 0);
14902
14903 /* Write the symbol. */
14904 exp.X_op = O_symbol;
14905 exp.X_add_symbol = p;
14906 exp.X_add_number = 0;
14907 emit_expr (&exp, 4);
14908
14909 fragp = frag_more (7 * 4);
14910
14911 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
14912 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
14913 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
14914 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
14915 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
14916 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
14917 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
14918
14919 subseg_set (saved_seg, saved_subseg);
14920 }
14921 #endif /* OBJ_ELF */
14922
14923 cur_proc_ptr = NULL;
14924 }
14925
14926 /* The .aent and .ent directives. */
14927
14928 static void
14929 s_mips_ent (int aent)
14930 {
14931 symbolS *symbolP;
14932
14933 symbolP = get_symbol ();
14934 if (*input_line_pointer == ',')
14935 ++input_line_pointer;
14936 SKIP_WHITESPACE ();
14937 if (ISDIGIT (*input_line_pointer)
14938 || *input_line_pointer == '-')
14939 get_number ();
14940
14941 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
14942 as_warn (_(".ent or .aent not in text section."));
14943
14944 if (!aent && cur_proc_ptr)
14945 as_warn (_("missing .end"));
14946
14947 if (!aent)
14948 {
14949 /* This function needs its own .frame and .cprestore directives. */
14950 mips_frame_reg_valid = 0;
14951 mips_cprestore_valid = 0;
14952
14953 cur_proc_ptr = &cur_proc;
14954 memset (cur_proc_ptr, '\0', sizeof (procS));
14955
14956 cur_proc_ptr->func_sym = symbolP;
14957
14958 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
14959
14960 ++numprocs;
14961
14962 if (debug_type == DEBUG_STABS)
14963 stabs_generate_asm_func (S_GET_NAME (symbolP),
14964 S_GET_NAME (symbolP));
14965 }
14966
14967 demand_empty_rest_of_line ();
14968 }
14969
14970 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
14971 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
14972 s_mips_frame is used so that we can set the PDR information correctly.
14973 We can't use the ecoff routines because they make reference to the ecoff
14974 symbol table (in the mdebug section). */
14975
14976 static void
14977 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
14978 {
14979 #ifdef OBJ_ELF
14980 if (IS_ELF && !ECOFF_DEBUGGING)
14981 {
14982 long val;
14983
14984 if (cur_proc_ptr == (procS *) NULL)
14985 {
14986 as_warn (_(".frame outside of .ent"));
14987 demand_empty_rest_of_line ();
14988 return;
14989 }
14990
14991 cur_proc_ptr->frame_reg = tc_get_register (1);
14992
14993 SKIP_WHITESPACE ();
14994 if (*input_line_pointer++ != ','
14995 || get_absolute_expression_and_terminator (&val) != ',')
14996 {
14997 as_warn (_("Bad .frame directive"));
14998 --input_line_pointer;
14999 demand_empty_rest_of_line ();
15000 return;
15001 }
15002
15003 cur_proc_ptr->frame_offset = val;
15004 cur_proc_ptr->pc_reg = tc_get_register (0);
15005
15006 demand_empty_rest_of_line ();
15007 }
15008 else
15009 #endif /* OBJ_ELF */
15010 s_ignore (ignore);
15011 }
15012
15013 /* The .fmask and .mask directives. If the mdebug section is present
15014 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
15015 embedded targets, s_mips_mask is used so that we can set the PDR
15016 information correctly. We can't use the ecoff routines because they
15017 make reference to the ecoff symbol table (in the mdebug section). */
15018
15019 static void
15020 s_mips_mask (int reg_type)
15021 {
15022 #ifdef OBJ_ELF
15023 if (IS_ELF && !ECOFF_DEBUGGING)
15024 {
15025 long mask, off;
15026
15027 if (cur_proc_ptr == (procS *) NULL)
15028 {
15029 as_warn (_(".mask/.fmask outside of .ent"));
15030 demand_empty_rest_of_line ();
15031 return;
15032 }
15033
15034 if (get_absolute_expression_and_terminator (&mask) != ',')
15035 {
15036 as_warn (_("Bad .mask/.fmask directive"));
15037 --input_line_pointer;
15038 demand_empty_rest_of_line ();
15039 return;
15040 }
15041
15042 off = get_absolute_expression ();
15043
15044 if (reg_type == 'F')
15045 {
15046 cur_proc_ptr->fpreg_mask = mask;
15047 cur_proc_ptr->fpreg_offset = off;
15048 }
15049 else
15050 {
15051 cur_proc_ptr->reg_mask = mask;
15052 cur_proc_ptr->reg_offset = off;
15053 }
15054
15055 demand_empty_rest_of_line ();
15056 }
15057 else
15058 #endif /* OBJ_ELF */
15059 s_ignore (reg_type);
15060 }
15061
15062 /* A table describing all the processors gas knows about. Names are
15063 matched in the order listed.
15064
15065 To ease comparison, please keep this table in the same order as
15066 gcc's mips_cpu_info_table[]. */
15067 static const struct mips_cpu_info mips_cpu_info_table[] =
15068 {
15069 /* Entries for generic ISAs */
15070 { "mips1", MIPS_CPU_IS_ISA, ISA_MIPS1, CPU_R3000 },
15071 { "mips2", MIPS_CPU_IS_ISA, ISA_MIPS2, CPU_R6000 },
15072 { "mips3", MIPS_CPU_IS_ISA, ISA_MIPS3, CPU_R4000 },
15073 { "mips4", MIPS_CPU_IS_ISA, ISA_MIPS4, CPU_R8000 },
15074 { "mips5", MIPS_CPU_IS_ISA, ISA_MIPS5, CPU_MIPS5 },
15075 { "mips32", MIPS_CPU_IS_ISA, ISA_MIPS32, CPU_MIPS32 },
15076 { "mips32r2", MIPS_CPU_IS_ISA, ISA_MIPS32R2, CPU_MIPS32R2 },
15077 { "mips64", MIPS_CPU_IS_ISA, ISA_MIPS64, CPU_MIPS64 },
15078 { "mips64r2", MIPS_CPU_IS_ISA, ISA_MIPS64R2, CPU_MIPS64R2 },
15079
15080 /* MIPS I */
15081 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
15082 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
15083 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
15084
15085 /* MIPS II */
15086 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
15087
15088 /* MIPS III */
15089 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
15090 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
15091 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
15092 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
15093 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
15094 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
15095 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
15096 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
15097 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
15098 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
15099 { "orion", 0, ISA_MIPS3, CPU_R4600 },
15100 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
15101 /* ST Microelectronics Loongson 2E and 2F cores */
15102 { "loongson2e", 0, ISA_MIPS3, CPU_LOONGSON_2E },
15103 { "loongson2f", 0, ISA_MIPS3, CPU_LOONGSON_2F },
15104
15105 /* MIPS IV */
15106 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
15107 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
15108 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
15109 { "r14000", 0, ISA_MIPS4, CPU_R14000 },
15110 { "r16000", 0, ISA_MIPS4, CPU_R16000 },
15111 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
15112 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
15113 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
15114 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
15115 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
15116 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
15117 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
15118 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
15119 { "rm7000", 0, ISA_MIPS4, CPU_RM7000 },
15120 { "rm9000", 0, ISA_MIPS4, CPU_RM9000 },
15121
15122 /* MIPS 32 */
15123 { "4kc", 0, ISA_MIPS32, CPU_MIPS32 },
15124 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
15125 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
15126 { "4ksc", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 },
15127
15128 /* MIPS 32 Release 2 */
15129 { "4kec", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15130 { "4kem", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15131 { "4kep", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15132 { "4ksd", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 },
15133 { "m4k", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15134 { "m4kp", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15135 { "24kc", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15136 { "24kf2_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15137 { "24kf", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15138 { "24kf1_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15139 /* Deprecated forms of the above. */
15140 { "24kfx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15141 { "24kx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
15142 /* 24KE is a 24K with DSP ASE, other ASEs are optional. */
15143 { "24kec", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
15144 { "24kef2_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
15145 { "24kef", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
15146 { "24kef1_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
15147 /* Deprecated forms of the above. */
15148 { "24kefx", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
15149 { "24kex", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 },
15150 /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */
15151 { "34kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15152 ISA_MIPS32R2, CPU_MIPS32R2 },
15153 { "34kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15154 ISA_MIPS32R2, CPU_MIPS32R2 },
15155 { "34kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15156 ISA_MIPS32R2, CPU_MIPS32R2 },
15157 { "34kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15158 ISA_MIPS32R2, CPU_MIPS32R2 },
15159 /* Deprecated forms of the above. */
15160 { "34kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15161 ISA_MIPS32R2, CPU_MIPS32R2 },
15162 { "34kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT,
15163 ISA_MIPS32R2, CPU_MIPS32R2 },
15164 /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */
15165 { "74kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15166 ISA_MIPS32R2, CPU_MIPS32R2 },
15167 { "74kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15168 ISA_MIPS32R2, CPU_MIPS32R2 },
15169 { "74kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15170 ISA_MIPS32R2, CPU_MIPS32R2 },
15171 { "74kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15172 ISA_MIPS32R2, CPU_MIPS32R2 },
15173 { "74kf3_2", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15174 ISA_MIPS32R2, CPU_MIPS32R2 },
15175 /* Deprecated forms of the above. */
15176 { "74kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15177 ISA_MIPS32R2, CPU_MIPS32R2 },
15178 { "74kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2,
15179 ISA_MIPS32R2, CPU_MIPS32R2 },
15180
15181 /* MIPS 64 */
15182 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
15183 { "5kf", 0, ISA_MIPS64, CPU_MIPS64 },
15184 { "20kc", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
15185 { "25kf", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 },
15186
15187 /* Broadcom SB-1 CPU core */
15188 { "sb1", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15189 ISA_MIPS64, CPU_SB1 },
15190 /* Broadcom SB-1A CPU core */
15191 { "sb1a", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX,
15192 ISA_MIPS64, CPU_SB1 },
15193
15194 /* MIPS 64 Release 2 */
15195
15196 /* Cavium Networks Octeon CPU core */
15197 { "octeon", 0, ISA_MIPS64R2, CPU_OCTEON },
15198
15199 /* End marker */
15200 { NULL, 0, 0, 0 }
15201 };
15202
15203
15204 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
15205 with a final "000" replaced by "k". Ignore case.
15206
15207 Note: this function is shared between GCC and GAS. */
15208
15209 static bfd_boolean
15210 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
15211 {
15212 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
15213 given++, canonical++;
15214
15215 return ((*given == 0 && *canonical == 0)
15216 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
15217 }
15218
15219
15220 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
15221 CPU name. We've traditionally allowed a lot of variation here.
15222
15223 Note: this function is shared between GCC and GAS. */
15224
15225 static bfd_boolean
15226 mips_matching_cpu_name_p (const char *canonical, const char *given)
15227 {
15228 /* First see if the name matches exactly, or with a final "000"
15229 turned into "k". */
15230 if (mips_strict_matching_cpu_name_p (canonical, given))
15231 return TRUE;
15232
15233 /* If not, try comparing based on numerical designation alone.
15234 See if GIVEN is an unadorned number, or 'r' followed by a number. */
15235 if (TOLOWER (*given) == 'r')
15236 given++;
15237 if (!ISDIGIT (*given))
15238 return FALSE;
15239
15240 /* Skip over some well-known prefixes in the canonical name,
15241 hoping to find a number there too. */
15242 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
15243 canonical += 2;
15244 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
15245 canonical += 2;
15246 else if (TOLOWER (canonical[0]) == 'r')
15247 canonical += 1;
15248
15249 return mips_strict_matching_cpu_name_p (canonical, given);
15250 }
15251
15252
15253 /* Parse an option that takes the name of a processor as its argument.
15254 OPTION is the name of the option and CPU_STRING is the argument.
15255 Return the corresponding processor enumeration if the CPU_STRING is
15256 recognized, otherwise report an error and return null.
15257
15258 A similar function exists in GCC. */
15259
15260 static const struct mips_cpu_info *
15261 mips_parse_cpu (const char *option, const char *cpu_string)
15262 {
15263 const struct mips_cpu_info *p;
15264
15265 /* 'from-abi' selects the most compatible architecture for the given
15266 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
15267 EABIs, we have to decide whether we're using the 32-bit or 64-bit
15268 version. Look first at the -mgp options, if given, otherwise base
15269 the choice on MIPS_DEFAULT_64BIT.
15270
15271 Treat NO_ABI like the EABIs. One reason to do this is that the
15272 plain 'mips' and 'mips64' configs have 'from-abi' as their default
15273 architecture. This code picks MIPS I for 'mips' and MIPS III for
15274 'mips64', just as we did in the days before 'from-abi'. */
15275 if (strcasecmp (cpu_string, "from-abi") == 0)
15276 {
15277 if (ABI_NEEDS_32BIT_REGS (mips_abi))
15278 return mips_cpu_info_from_isa (ISA_MIPS1);
15279
15280 if (ABI_NEEDS_64BIT_REGS (mips_abi))
15281 return mips_cpu_info_from_isa (ISA_MIPS3);
15282
15283 if (file_mips_gp32 >= 0)
15284 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
15285
15286 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
15287 ? ISA_MIPS3
15288 : ISA_MIPS1);
15289 }
15290
15291 /* 'default' has traditionally been a no-op. Probably not very useful. */
15292 if (strcasecmp (cpu_string, "default") == 0)
15293 return 0;
15294
15295 for (p = mips_cpu_info_table; p->name != 0; p++)
15296 if (mips_matching_cpu_name_p (p->name, cpu_string))
15297 return p;
15298
15299 as_bad ("Bad value (%s) for %s", cpu_string, option);
15300 return 0;
15301 }
15302
15303 /* Return the canonical processor information for ISA (a member of the
15304 ISA_MIPS* enumeration). */
15305
15306 static const struct mips_cpu_info *
15307 mips_cpu_info_from_isa (int isa)
15308 {
15309 int i;
15310
15311 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15312 if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA)
15313 && isa == mips_cpu_info_table[i].isa)
15314 return (&mips_cpu_info_table[i]);
15315
15316 return NULL;
15317 }
15318
15319 static const struct mips_cpu_info *
15320 mips_cpu_info_from_arch (int arch)
15321 {
15322 int i;
15323
15324 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15325 if (arch == mips_cpu_info_table[i].cpu)
15326 return (&mips_cpu_info_table[i]);
15327
15328 return NULL;
15329 }
15330 \f
15331 static void
15332 show (FILE *stream, const char *string, int *col_p, int *first_p)
15333 {
15334 if (*first_p)
15335 {
15336 fprintf (stream, "%24s", "");
15337 *col_p = 24;
15338 }
15339 else
15340 {
15341 fprintf (stream, ", ");
15342 *col_p += 2;
15343 }
15344
15345 if (*col_p + strlen (string) > 72)
15346 {
15347 fprintf (stream, "\n%24s", "");
15348 *col_p = 24;
15349 }
15350
15351 fprintf (stream, "%s", string);
15352 *col_p += strlen (string);
15353
15354 *first_p = 0;
15355 }
15356
15357 void
15358 md_show_usage (FILE *stream)
15359 {
15360 int column, first;
15361 size_t i;
15362
15363 fprintf (stream, _("\
15364 MIPS options:\n\
15365 -EB generate big endian output\n\
15366 -EL generate little endian output\n\
15367 -g, -g2 do not remove unneeded NOPs or swap branches\n\
15368 -G NUM allow referencing objects up to NUM bytes\n\
15369 implicitly with the gp register [default 8]\n"));
15370 fprintf (stream, _("\
15371 -mips1 generate MIPS ISA I instructions\n\
15372 -mips2 generate MIPS ISA II instructions\n\
15373 -mips3 generate MIPS ISA III instructions\n\
15374 -mips4 generate MIPS ISA IV instructions\n\
15375 -mips5 generate MIPS ISA V instructions\n\
15376 -mips32 generate MIPS32 ISA instructions\n\
15377 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
15378 -mips64 generate MIPS64 ISA instructions\n\
15379 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
15380 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
15381
15382 first = 1;
15383
15384 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
15385 show (stream, mips_cpu_info_table[i].name, &column, &first);
15386 show (stream, "from-abi", &column, &first);
15387 fputc ('\n', stream);
15388
15389 fprintf (stream, _("\
15390 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
15391 -no-mCPU don't generate code specific to CPU.\n\
15392 For -mCPU and -no-mCPU, CPU must be one of:\n"));
15393
15394 first = 1;
15395
15396 show (stream, "3900", &column, &first);
15397 show (stream, "4010", &column, &first);
15398 show (stream, "4100", &column, &first);
15399 show (stream, "4650", &column, &first);
15400 fputc ('\n', stream);
15401
15402 fprintf (stream, _("\
15403 -mips16 generate mips16 instructions\n\
15404 -no-mips16 do not generate mips16 instructions\n"));
15405 fprintf (stream, _("\
15406 -msmartmips generate smartmips instructions\n\
15407 -mno-smartmips do not generate smartmips instructions\n"));
15408 fprintf (stream, _("\
15409 -mdsp generate DSP instructions\n\
15410 -mno-dsp do not generate DSP instructions\n"));
15411 fprintf (stream, _("\
15412 -mdspr2 generate DSP R2 instructions\n\
15413 -mno-dspr2 do not generate DSP R2 instructions\n"));
15414 fprintf (stream, _("\
15415 -mmt generate MT instructions\n\
15416 -mno-mt do not generate MT instructions\n"));
15417 fprintf (stream, _("\
15418 -mfix-vr4120 work around certain VR4120 errata\n\
15419 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
15420 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
15421 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
15422 -msym32 assume all symbols have 32-bit values\n\
15423 -O0 remove unneeded NOPs, do not swap branches\n\
15424 -O remove unneeded NOPs and swap branches\n\
15425 --trap, --no-break trap exception on div by 0 and mult overflow\n\
15426 --break, --no-trap break exception on div by 0 and mult overflow\n"));
15427 fprintf (stream, _("\
15428 -mhard-float allow floating-point instructions\n\
15429 -msoft-float do not allow floating-point instructions\n\
15430 -msingle-float only allow 32-bit floating-point operations\n\
15431 -mdouble-float allow 32-bit and 64-bit floating-point operations\n\
15432 --[no-]construct-floats [dis]allow floating point values to be constructed\n"
15433 ));
15434 #ifdef OBJ_ELF
15435 fprintf (stream, _("\
15436 -KPIC, -call_shared generate SVR4 position independent code\n\
15437 -call_nonpic generate non-PIC code that can operate with DSOs\n\
15438 -mvxworks-pic generate VxWorks position independent code\n\
15439 -non_shared do not generate code that can operate with DSOs\n\
15440 -xgot assume a 32 bit GOT\n\
15441 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
15442 -mshared, -mno-shared disable/enable .cpload optimization for\n\
15443 position dependent (non shared) code\n\
15444 -mabi=ABI create ABI conformant object file for:\n"));
15445
15446 first = 1;
15447
15448 show (stream, "32", &column, &first);
15449 show (stream, "o64", &column, &first);
15450 show (stream, "n32", &column, &first);
15451 show (stream, "64", &column, &first);
15452 show (stream, "eabi", &column, &first);
15453
15454 fputc ('\n', stream);
15455
15456 fprintf (stream, _("\
15457 -32 create o32 ABI object file (default)\n\
15458 -n32 create n32 ABI object file\n\
15459 -64 create 64 ABI object file\n"));
15460 #endif
15461 }
15462
15463 enum dwarf2_format
15464 mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED)
15465 {
15466 if (HAVE_64BIT_SYMBOLS)
15467 {
15468 #ifdef TE_IRIX
15469 return dwarf2_format_64bit_irix;
15470 #else
15471 return dwarf2_format_64bit;
15472 #endif
15473 }
15474 else
15475 return dwarf2_format_32bit;
15476 }
15477
15478 int
15479 mips_dwarf2_addr_size (void)
15480 {
15481 if (HAVE_64BIT_SYMBOLS)
15482 return 8;
15483 else
15484 return 4;
15485 }
15486
15487 /* Standard calling conventions leave the CFA at SP on entry. */
15488 void
15489 mips_cfi_frame_initial_instructions (void)
15490 {
15491 cfi_add_CFA_def_cfa_register (SP);
15492 }
15493
15494 int
15495 tc_mips_regname_to_dw2regnum (char *regname)
15496 {
15497 unsigned int regnum = -1;
15498 unsigned int reg;
15499
15500 if (reg_lookup (&regname, RTYPE_GP | RTYPE_NUM, &reg))
15501 regnum = reg;
15502
15503 return regnum;
15504 }