6e061052cf2f8d2eb3969f895d96d55de125d978
[deliverable/binutils-gdb.git] / gas / config / tc-mips.c
1 /* tc-mips.c -- assemble code for a MIPS chip.
2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005 Free Software Foundation, Inc.
4 Contributed by the OSF and Ralph Campbell.
5 Written by Keith Knowles and Ralph Campbell, working independently.
6 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
7 Support.
8
9 This file is part of GAS.
10
11 GAS is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
14 any later version.
15
16 GAS is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GAS; see the file COPYING. If not, write to the Free
23 Software Foundation, 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 <stdarg.h>
32
33 #include "opcode/mips.h"
34 #include "itbl-ops.h"
35 #include "dwarf2dbg.h"
36 #include "dw2gencfi.h"
37
38 #ifdef DEBUG
39 #define DBG(x) printf x
40 #else
41 #define DBG(x)
42 #endif
43
44 #ifdef OBJ_MAYBE_ELF
45 /* Clean up namespace so we can include obj-elf.h too. */
46 static int mips_output_flavor (void);
47 static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
48 #undef OBJ_PROCESS_STAB
49 #undef OUTPUT_FLAVOR
50 #undef S_GET_ALIGN
51 #undef S_GET_SIZE
52 #undef S_SET_ALIGN
53 #undef S_SET_SIZE
54 #undef obj_frob_file
55 #undef obj_frob_file_after_relocs
56 #undef obj_frob_symbol
57 #undef obj_pop_insert
58 #undef obj_sec_sym_ok_for_reloc
59 #undef OBJ_COPY_SYMBOL_ATTRIBUTES
60
61 #include "obj-elf.h"
62 /* Fix any of them that we actually care about. */
63 #undef OUTPUT_FLAVOR
64 #define OUTPUT_FLAVOR mips_output_flavor()
65 #endif
66
67 #if defined (OBJ_ELF)
68 #include "elf/mips.h"
69 #endif
70
71 #ifndef ECOFF_DEBUGGING
72 #define NO_ECOFF_DEBUGGING
73 #define ECOFF_DEBUGGING 0
74 #endif
75
76 int mips_flag_mdebug = -1;
77
78 /* Control generation of .pdr sections. Off by default on IRIX: the native
79 linker doesn't know about and discards them, but relocations against them
80 remain, leading to rld crashes. */
81 #ifdef TE_IRIX
82 int mips_flag_pdr = FALSE;
83 #else
84 int mips_flag_pdr = TRUE;
85 #endif
86
87 #include "ecoff.h"
88
89 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
90 static char *mips_regmask_frag;
91 #endif
92
93 #define ZERO 0
94 #define AT 1
95 #define TREG 24
96 #define PIC_CALL_REG 25
97 #define KT0 26
98 #define KT1 27
99 #define GP 28
100 #define SP 29
101 #define FP 30
102 #define RA 31
103
104 #define ILLEGAL_REG (32)
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 occured 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_dsp;
197 int ase_mt;
198 /* Whether we are assembling for the mips16 processor. 0 if we are
199 not, 1 if we are, and -1 if the value has not been initialized.
200 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
201 -nomips16 command line options, and the default CPU. */
202 int mips16;
203 /* Non-zero if we should not reorder instructions. Changed by `.set
204 reorder' and `.set noreorder'. */
205 int noreorder;
206 /* Non-zero if we should not permit the $at ($1) register to be used
207 in instructions. Changed by `.set at' and `.set noat'. */
208 int noat;
209 /* Non-zero if we should warn when a macro instruction expands into
210 more than one machine instruction. Changed by `.set nomacro' and
211 `.set macro'. */
212 int warn_about_macros;
213 /* Non-zero if we should not move instructions. Changed by `.set
214 move', `.set volatile', `.set nomove', and `.set novolatile'. */
215 int nomove;
216 /* Non-zero if we should not optimize branches by moving the target
217 of the branch into the delay slot. Actually, we don't perform
218 this optimization anyhow. Changed by `.set bopt' and `.set
219 nobopt'. */
220 int nobopt;
221 /* Non-zero if we should not autoextend mips16 instructions.
222 Changed by `.set autoextend' and `.set noautoextend'. */
223 int noautoextend;
224 /* Restrict general purpose registers and floating point registers
225 to 32 bit. This is initially determined when -mgp32 or -mfp32
226 is passed but can changed if the assembler code uses .set mipsN. */
227 int gp32;
228 int fp32;
229 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
230 command line option, and the default CPU. */
231 int arch;
232 /* True if ".set sym32" is in effect. */
233 bfd_boolean sym32;
234 };
235
236 /* True if -mgp32 was passed. */
237 static int file_mips_gp32 = -1;
238
239 /* True if -mfp32 was passed. */
240 static int file_mips_fp32 = -1;
241
242 /* This is the struct we use to hold the current set of options. Note
243 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
244 -1 to indicate that they have not been initialized. */
245
246 static struct mips_set_options mips_opts =
247 {
248 ISA_UNKNOWN, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, CPU_UNKNOWN, FALSE
249 };
250
251 /* These variables are filled in with the masks of registers used.
252 The object format code reads them and puts them in the appropriate
253 place. */
254 unsigned long mips_gprmask;
255 unsigned long mips_cprmask[4];
256
257 /* MIPS ISA we are using for this output file. */
258 static int file_mips_isa = ISA_UNKNOWN;
259
260 /* True if -mips16 was passed or implied by arguments passed on the
261 command line (e.g., by -march). */
262 static int file_ase_mips16;
263
264 /* True if -mips3d was passed or implied by arguments passed on the
265 command line (e.g., by -march). */
266 static int file_ase_mips3d;
267
268 /* True if -mdmx was passed or implied by arguments passed on the
269 command line (e.g., by -march). */
270 static int file_ase_mdmx;
271
272 /* True if -mdsp was passed or implied by arguments passed on the
273 command line (e.g., by -march). */
274 static int file_ase_dsp;
275
276 /* True if -mmt was passed or implied by arguments passed on the
277 command line (e.g., by -march). */
278 static int file_ase_mt;
279
280 /* The argument of the -march= flag. The architecture we are assembling. */
281 static int file_mips_arch = CPU_UNKNOWN;
282 static const char *mips_arch_string;
283
284 /* The argument of the -mtune= flag. The architecture for which we
285 are optimizing. */
286 static int mips_tune = CPU_UNKNOWN;
287 static const char *mips_tune_string;
288
289 /* True when generating 32-bit code for a 64-bit processor. */
290 static int mips_32bitmode = 0;
291
292 /* True if the given ABI requires 32-bit registers. */
293 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
294
295 /* Likewise 64-bit registers. */
296 #define ABI_NEEDS_64BIT_REGS(ABI) \
297 ((ABI) == N32_ABI \
298 || (ABI) == N64_ABI \
299 || (ABI) == O64_ABI)
300
301 /* Return true if ISA supports 64 bit gp register instructions. */
302 #define ISA_HAS_64BIT_REGS(ISA) ( \
303 (ISA) == ISA_MIPS3 \
304 || (ISA) == ISA_MIPS4 \
305 || (ISA) == ISA_MIPS5 \
306 || (ISA) == ISA_MIPS64 \
307 || (ISA) == ISA_MIPS64R2 \
308 )
309
310 /* Return true if ISA supports 64-bit right rotate (dror et al.)
311 instructions. */
312 #define ISA_HAS_DROR(ISA) ( \
313 (ISA) == ISA_MIPS64R2 \
314 )
315
316 /* Return true if ISA supports 32-bit right rotate (ror et al.)
317 instructions. */
318 #define ISA_HAS_ROR(ISA) ( \
319 (ISA) == ISA_MIPS32R2 \
320 || (ISA) == ISA_MIPS64R2 \
321 )
322
323 #define HAVE_32BIT_GPRS \
324 (mips_opts.gp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
325
326 #define HAVE_32BIT_FPRS \
327 (mips_opts.fp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
328
329 #define HAVE_64BIT_GPRS (! HAVE_32BIT_GPRS)
330 #define HAVE_64BIT_FPRS (! HAVE_32BIT_FPRS)
331
332 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
333
334 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
335
336 /* True if relocations are stored in-place. */
337 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
338
339 /* The ABI-derived address size. */
340 #define HAVE_64BIT_ADDRESSES \
341 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
342 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
343
344 /* The size of symbolic constants (i.e., expressions of the form
345 "SYMBOL" or "SYMBOL + OFFSET"). */
346 #define HAVE_32BIT_SYMBOLS \
347 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
348 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
349
350 /* Addresses are loaded in different ways, depending on the address size
351 in use. The n32 ABI Documentation also mandates the use of additions
352 with overflow checking, but existing implementations don't follow it. */
353 #define ADDRESS_ADD_INSN \
354 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
355
356 #define ADDRESS_ADDI_INSN \
357 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
358
359 #define ADDRESS_LOAD_INSN \
360 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
361
362 #define ADDRESS_STORE_INSN \
363 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
364
365 /* Return true if the given CPU supports the MIPS16 ASE. */
366 #define CPU_HAS_MIPS16(cpu) \
367 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
368 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
369
370 /* Return true if the given CPU supports the MIPS3D ASE. */
371 #define CPU_HAS_MIPS3D(cpu) ((cpu) == CPU_SB1 \
372 )
373
374 /* Return true if the given CPU supports the MDMX ASE. */
375 #define CPU_HAS_MDMX(cpu) (FALSE \
376 )
377
378 /* Return true if the given CPU supports the DSP ASE. */
379 #define CPU_HAS_DSP(cpu) (FALSE \
380 )
381
382 /* Return true if the given CPU supports the MT ASE. */
383 #define CPU_HAS_MT(cpu) (FALSE \
384 )
385
386 /* True if CPU has a dror instruction. */
387 #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
388
389 /* True if CPU has a ror instruction. */
390 #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
391
392 /* True if mflo and mfhi can be immediately followed by instructions
393 which write to the HI and LO registers.
394
395 According to MIPS specifications, MIPS ISAs I, II, and III need
396 (at least) two instructions between the reads of HI/LO and
397 instructions which write them, and later ISAs do not. Contradicting
398 the MIPS specifications, some MIPS IV processor user manuals (e.g.
399 the UM for the NEC Vr5000) document needing the instructions between
400 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
401 MIPS64 and later ISAs to have the interlocks, plus any specific
402 earlier-ISA CPUs for which CPU documentation declares that the
403 instructions are really interlocked. */
404 #define hilo_interlocks \
405 (mips_opts.isa == ISA_MIPS32 \
406 || mips_opts.isa == ISA_MIPS32R2 \
407 || mips_opts.isa == ISA_MIPS64 \
408 || mips_opts.isa == ISA_MIPS64R2 \
409 || mips_opts.arch == CPU_R4010 \
410 || mips_opts.arch == CPU_R10000 \
411 || mips_opts.arch == CPU_R12000 \
412 || mips_opts.arch == CPU_RM7000 \
413 || mips_opts.arch == CPU_VR5500 \
414 )
415
416 /* Whether the processor uses hardware interlocks to protect reads
417 from the GPRs after they are loaded from memory, and thus does not
418 require nops to be inserted. This applies to instructions marked
419 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
420 level I. */
421 #define gpr_interlocks \
422 (mips_opts.isa != ISA_MIPS1 \
423 || mips_opts.arch == CPU_R3900)
424
425 /* Whether the processor uses hardware interlocks to avoid delays
426 required by coprocessor instructions, and thus does not require
427 nops to be inserted. This applies to instructions marked
428 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
429 between instructions marked INSN_WRITE_COND_CODE and ones marked
430 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
431 levels I, II, and III. */
432 /* Itbl support may require additional care here. */
433 #define cop_interlocks \
434 ((mips_opts.isa != ISA_MIPS1 \
435 && mips_opts.isa != ISA_MIPS2 \
436 && mips_opts.isa != ISA_MIPS3) \
437 || mips_opts.arch == CPU_R4300 \
438 )
439
440 /* Whether the processor uses hardware interlocks to protect reads
441 from coprocessor registers after they are loaded from memory, and
442 thus does not require nops to be inserted. This applies to
443 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
444 requires at MIPS ISA level I. */
445 #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
446
447 /* Is this a mfhi or mflo instruction? */
448 #define MF_HILO_INSN(PINFO) \
449 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
450
451 /* MIPS PIC level. */
452
453 enum mips_pic_level mips_pic;
454
455 /* 1 if we should generate 32 bit offsets from the $gp register in
456 SVR4_PIC mode. Currently has no meaning in other modes. */
457 static int mips_big_got = 0;
458
459 /* 1 if trap instructions should used for overflow rather than break
460 instructions. */
461 static int mips_trap = 0;
462
463 /* 1 if double width floating point constants should not be constructed
464 by assembling two single width halves into two single width floating
465 point registers which just happen to alias the double width destination
466 register. On some architectures this aliasing can be disabled by a bit
467 in the status register, and the setting of this bit cannot be determined
468 automatically at assemble time. */
469 static int mips_disable_float_construction;
470
471 /* Non-zero if any .set noreorder directives were used. */
472
473 static int mips_any_noreorder;
474
475 /* Non-zero if nops should be inserted when the register referenced in
476 an mfhi/mflo instruction is read in the next two instructions. */
477 static int mips_7000_hilo_fix;
478
479 /* The size of the small data section. */
480 static unsigned int g_switch_value = 8;
481 /* Whether the -G option was used. */
482 static int g_switch_seen = 0;
483
484 #define N_RMASK 0xc4
485 #define N_VFP 0xd4
486
487 /* If we can determine in advance that GP optimization won't be
488 possible, we can skip the relaxation stuff that tries to produce
489 GP-relative references. This makes delay slot optimization work
490 better.
491
492 This function can only provide a guess, but it seems to work for
493 gcc output. It needs to guess right for gcc, otherwise gcc
494 will put what it thinks is a GP-relative instruction in a branch
495 delay slot.
496
497 I don't know if a fix is needed for the SVR4_PIC mode. I've only
498 fixed it for the non-PIC mode. KR 95/04/07 */
499 static int nopic_need_relax (symbolS *, int);
500
501 /* handle of the OPCODE hash table */
502 static struct hash_control *op_hash = NULL;
503
504 /* The opcode hash table we use for the mips16. */
505 static struct hash_control *mips16_op_hash = NULL;
506
507 /* This array holds the chars that always start a comment. If the
508 pre-processor is disabled, these aren't very useful */
509 const char comment_chars[] = "#";
510
511 /* This array holds the chars that only start a comment at the beginning of
512 a line. If the line seems to have the form '# 123 filename'
513 .line and .file directives will appear in the pre-processed output */
514 /* Note that input_file.c hand checks for '#' at the beginning of the
515 first line of the input file. This is because the compiler outputs
516 #NO_APP at the beginning of its output. */
517 /* Also note that C style comments are always supported. */
518 const char line_comment_chars[] = "#";
519
520 /* This array holds machine specific line separator characters. */
521 const char line_separator_chars[] = ";";
522
523 /* Chars that can be used to separate mant from exp in floating point nums */
524 const char EXP_CHARS[] = "eE";
525
526 /* Chars that mean this number is a floating point constant */
527 /* As in 0f12.456 */
528 /* or 0d1.2345e12 */
529 const char FLT_CHARS[] = "rRsSfFdDxXpP";
530
531 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
532 changed in read.c . Ideally it shouldn't have to know about it at all,
533 but nothing is ideal around here.
534 */
535
536 static char *insn_error;
537
538 static int auto_align = 1;
539
540 /* When outputting SVR4 PIC code, the assembler needs to know the
541 offset in the stack frame from which to restore the $gp register.
542 This is set by the .cprestore pseudo-op, and saved in this
543 variable. */
544 static offsetT mips_cprestore_offset = -1;
545
546 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
547 more optimizations, it can use a register value instead of a memory-saved
548 offset and even an other register than $gp as global pointer. */
549 static offsetT mips_cpreturn_offset = -1;
550 static int mips_cpreturn_register = -1;
551 static int mips_gp_register = GP;
552 static int mips_gprel_offset = 0;
553
554 /* Whether mips_cprestore_offset has been set in the current function
555 (or whether it has already been warned about, if not). */
556 static int mips_cprestore_valid = 0;
557
558 /* This is the register which holds the stack frame, as set by the
559 .frame pseudo-op. This is needed to implement .cprestore. */
560 static int mips_frame_reg = SP;
561
562 /* Whether mips_frame_reg has been set in the current function
563 (or whether it has already been warned about, if not). */
564 static int mips_frame_reg_valid = 0;
565
566 /* To output NOP instructions correctly, we need to keep information
567 about the previous two instructions. */
568
569 /* Whether we are optimizing. The default value of 2 means to remove
570 unneeded NOPs and swap branch instructions when possible. A value
571 of 1 means to not swap branches. A value of 0 means to always
572 insert NOPs. */
573 static int mips_optimize = 2;
574
575 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
576 equivalent to seeing no -g option at all. */
577 static int mips_debug = 0;
578
579 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
580 #define MAX_VR4130_NOPS 4
581
582 /* The maximum number of NOPs needed to fill delay slots. */
583 #define MAX_DELAY_NOPS 2
584
585 /* The maximum number of NOPs needed for any purpose. */
586 #define MAX_NOPS 4
587
588 /* A list of previous instructions, with index 0 being the most recent.
589 We need to look back MAX_NOPS instructions when filling delay slots
590 or working around processor errata. We need to look back one
591 instruction further if we're thinking about using history[0] to
592 fill a branch delay slot. */
593 static struct mips_cl_insn history[1 + MAX_NOPS];
594
595 /* Nop instructions used by emit_nop. */
596 static struct mips_cl_insn nop_insn, mips16_nop_insn;
597
598 /* The appropriate nop for the current mode. */
599 #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
600
601 /* If this is set, it points to a frag holding nop instructions which
602 were inserted before the start of a noreorder section. If those
603 nops turn out to be unnecessary, the size of the frag can be
604 decreased. */
605 static fragS *prev_nop_frag;
606
607 /* The number of nop instructions we created in prev_nop_frag. */
608 static int prev_nop_frag_holds;
609
610 /* The number of nop instructions that we know we need in
611 prev_nop_frag. */
612 static int prev_nop_frag_required;
613
614 /* The number of instructions we've seen since prev_nop_frag. */
615 static int prev_nop_frag_since;
616
617 /* For ECOFF and ELF, relocations against symbols are done in two
618 parts, with a HI relocation and a LO relocation. Each relocation
619 has only 16 bits of space to store an addend. This means that in
620 order for the linker to handle carries correctly, it must be able
621 to locate both the HI and the LO relocation. This means that the
622 relocations must appear in order in the relocation table.
623
624 In order to implement this, we keep track of each unmatched HI
625 relocation. We then sort them so that they immediately precede the
626 corresponding LO relocation. */
627
628 struct mips_hi_fixup
629 {
630 /* Next HI fixup. */
631 struct mips_hi_fixup *next;
632 /* This fixup. */
633 fixS *fixp;
634 /* The section this fixup is in. */
635 segT seg;
636 };
637
638 /* The list of unmatched HI relocs. */
639
640 static struct mips_hi_fixup *mips_hi_fixup_list;
641
642 /* The frag containing the last explicit relocation operator.
643 Null if explicit relocations have not been used. */
644
645 static fragS *prev_reloc_op_frag;
646
647 /* Map normal MIPS register numbers to mips16 register numbers. */
648
649 #define X ILLEGAL_REG
650 static const int mips32_to_16_reg_map[] =
651 {
652 X, X, 2, 3, 4, 5, 6, 7,
653 X, X, X, X, X, X, X, X,
654 0, 1, X, X, X, X, X, X,
655 X, X, X, X, X, X, X, X
656 };
657 #undef X
658
659 /* Map mips16 register numbers to normal MIPS register numbers. */
660
661 static const unsigned int mips16_to_32_reg_map[] =
662 {
663 16, 17, 2, 3, 4, 5, 6, 7
664 };
665
666 /* Classifies the kind of instructions we're interested in when
667 implementing -mfix-vr4120. */
668 enum fix_vr4120_class {
669 FIX_VR4120_MACC,
670 FIX_VR4120_DMACC,
671 FIX_VR4120_MULT,
672 FIX_VR4120_DMULT,
673 FIX_VR4120_DIV,
674 FIX_VR4120_MTHILO,
675 NUM_FIX_VR4120_CLASSES
676 };
677
678 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
679 there must be at least one other instruction between an instruction
680 of type X and an instruction of type Y. */
681 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
682
683 /* True if -mfix-vr4120 is in force. */
684 static int mips_fix_vr4120;
685
686 /* ...likewise -mfix-vr4130. */
687 static int mips_fix_vr4130;
688
689 /* We don't relax branches by default, since this causes us to expand
690 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
691 fail to compute the offset before expanding the macro to the most
692 efficient expansion. */
693
694 static int mips_relax_branch;
695 \f
696 /* The expansion of many macros depends on the type of symbol that
697 they refer to. For example, when generating position-dependent code,
698 a macro that refers to a symbol may have two different expansions,
699 one which uses GP-relative addresses and one which uses absolute
700 addresses. When generating SVR4-style PIC, a macro may have
701 different expansions for local and global symbols.
702
703 We handle these situations by generating both sequences and putting
704 them in variant frags. In position-dependent code, the first sequence
705 will be the GP-relative one and the second sequence will be the
706 absolute one. In SVR4 PIC, the first sequence will be for global
707 symbols and the second will be for local symbols.
708
709 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
710 SECOND are the lengths of the two sequences in bytes. These fields
711 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
712 the subtype has the following flags:
713
714 RELAX_USE_SECOND
715 Set if it has been decided that we should use the second
716 sequence instead of the first.
717
718 RELAX_SECOND_LONGER
719 Set in the first variant frag if the macro's second implementation
720 is longer than its first. This refers to the macro as a whole,
721 not an individual relaxation.
722
723 RELAX_NOMACRO
724 Set in the first variant frag if the macro appeared in a .set nomacro
725 block and if one alternative requires a warning but the other does not.
726
727 RELAX_DELAY_SLOT
728 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
729 delay slot.
730
731 The frag's "opcode" points to the first fixup for relaxable code.
732
733 Relaxable macros are generated using a sequence such as:
734
735 relax_start (SYMBOL);
736 ... generate first expansion ...
737 relax_switch ();
738 ... generate second expansion ...
739 relax_end ();
740
741 The code and fixups for the unwanted alternative are discarded
742 by md_convert_frag. */
743 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
744
745 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
746 #define RELAX_SECOND(X) ((X) & 0xff)
747 #define RELAX_USE_SECOND 0x10000
748 #define RELAX_SECOND_LONGER 0x20000
749 #define RELAX_NOMACRO 0x40000
750 #define RELAX_DELAY_SLOT 0x80000
751
752 /* Branch without likely bit. If label is out of range, we turn:
753
754 beq reg1, reg2, label
755 delay slot
756
757 into
758
759 bne reg1, reg2, 0f
760 nop
761 j label
762 0: delay slot
763
764 with the following opcode replacements:
765
766 beq <-> bne
767 blez <-> bgtz
768 bltz <-> bgez
769 bc1f <-> bc1t
770
771 bltzal <-> bgezal (with jal label instead of j label)
772
773 Even though keeping the delay slot instruction in the delay slot of
774 the branch would be more efficient, it would be very tricky to do
775 correctly, because we'd have to introduce a variable frag *after*
776 the delay slot instruction, and expand that instead. Let's do it
777 the easy way for now, even if the branch-not-taken case now costs
778 one additional instruction. Out-of-range branches are not supposed
779 to be common, anyway.
780
781 Branch likely. If label is out of range, we turn:
782
783 beql reg1, reg2, label
784 delay slot (annulled if branch not taken)
785
786 into
787
788 beql reg1, reg2, 1f
789 nop
790 beql $0, $0, 2f
791 nop
792 1: j[al] label
793 delay slot (executed only if branch taken)
794 2:
795
796 It would be possible to generate a shorter sequence by losing the
797 likely bit, generating something like:
798
799 bne reg1, reg2, 0f
800 nop
801 j[al] label
802 delay slot (executed only if branch taken)
803 0:
804
805 beql -> bne
806 bnel -> beq
807 blezl -> bgtz
808 bgtzl -> blez
809 bltzl -> bgez
810 bgezl -> bltz
811 bc1fl -> bc1t
812 bc1tl -> bc1f
813
814 bltzall -> bgezal (with jal label instead of j label)
815 bgezall -> bltzal (ditto)
816
817
818 but it's not clear that it would actually improve performance. */
819 #define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
820 ((relax_substateT) \
821 (0xc0000000 \
822 | ((toofar) ? 1 : 0) \
823 | ((link) ? 2 : 0) \
824 | ((likely) ? 4 : 0) \
825 | ((uncond) ? 8 : 0)))
826 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
827 #define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
828 #define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
829 #define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
830 #define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
831
832 /* For mips16 code, we use an entirely different form of relaxation.
833 mips16 supports two versions of most instructions which take
834 immediate values: a small one which takes some small value, and a
835 larger one which takes a 16 bit value. Since branches also follow
836 this pattern, relaxing these values is required.
837
838 We can assemble both mips16 and normal MIPS code in a single
839 object. Therefore, we need to support this type of relaxation at
840 the same time that we support the relaxation described above. We
841 use the high bit of the subtype field to distinguish these cases.
842
843 The information we store for this type of relaxation is the
844 argument code found in the opcode file for this relocation, whether
845 the user explicitly requested a small or extended form, and whether
846 the relocation is in a jump or jal delay slot. That tells us the
847 size of the value, and how it should be stored. We also store
848 whether the fragment is considered to be extended or not. We also
849 store whether this is known to be a branch to a different section,
850 whether we have tried to relax this frag yet, and whether we have
851 ever extended a PC relative fragment because of a shift count. */
852 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
853 (0x80000000 \
854 | ((type) & 0xff) \
855 | ((small) ? 0x100 : 0) \
856 | ((ext) ? 0x200 : 0) \
857 | ((dslot) ? 0x400 : 0) \
858 | ((jal_dslot) ? 0x800 : 0))
859 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
860 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
861 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
862 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
863 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
864 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
865 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
866 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
867 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
868 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
869 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
870 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
871
872 /* Is the given value a sign-extended 32-bit value? */
873 #define IS_SEXT_32BIT_NUM(x) \
874 (((x) &~ (offsetT) 0x7fffffff) == 0 \
875 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
876
877 /* Is the given value a sign-extended 16-bit value? */
878 #define IS_SEXT_16BIT_NUM(x) \
879 (((x) &~ (offsetT) 0x7fff) == 0 \
880 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
881
882 /* Is the given value a zero-extended 32-bit value? Or a negated one? */
883 #define IS_ZEXT_32BIT_NUM(x) \
884 (((x) &~ (offsetT) 0xffffffff) == 0 \
885 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
886
887 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
888 VALUE << SHIFT. VALUE is evaluated exactly once. */
889 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
890 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
891 | (((VALUE) & (MASK)) << (SHIFT)))
892
893 /* Extract bits MASK << SHIFT from STRUCT and shift them right
894 SHIFT places. */
895 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
896 (((STRUCT) >> (SHIFT)) & (MASK))
897
898 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
899 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
900
901 include/opcode/mips.h specifies operand fields using the macros
902 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
903 with "MIPS16OP" instead of "OP". */
904 #define INSERT_OPERAND(FIELD, INSN, VALUE) \
905 INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
906 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
907 INSERT_BITS ((INSN).insn_opcode, VALUE, \
908 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
909
910 /* Extract the operand given by FIELD from mips_cl_insn INSN. */
911 #define EXTRACT_OPERAND(FIELD, INSN) \
912 EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
913 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
914 EXTRACT_BITS ((INSN).insn_opcode, \
915 MIPS16OP_MASK_##FIELD, \
916 MIPS16OP_SH_##FIELD)
917 \f
918 /* Global variables used when generating relaxable macros. See the
919 comment above RELAX_ENCODE for more details about how relaxation
920 is used. */
921 static struct {
922 /* 0 if we're not emitting a relaxable macro.
923 1 if we're emitting the first of the two relaxation alternatives.
924 2 if we're emitting the second alternative. */
925 int sequence;
926
927 /* The first relaxable fixup in the current frag. (In other words,
928 the first fixup that refers to relaxable code.) */
929 fixS *first_fixup;
930
931 /* sizes[0] says how many bytes of the first alternative are stored in
932 the current frag. Likewise sizes[1] for the second alternative. */
933 unsigned int sizes[2];
934
935 /* The symbol on which the choice of sequence depends. */
936 symbolS *symbol;
937 } mips_relax;
938 \f
939 /* Global variables used to decide whether a macro needs a warning. */
940 static struct {
941 /* True if the macro is in a branch delay slot. */
942 bfd_boolean delay_slot_p;
943
944 /* For relaxable macros, sizes[0] is the length of the first alternative
945 in bytes and sizes[1] is the length of the second alternative.
946 For non-relaxable macros, both elements give the length of the
947 macro in bytes. */
948 unsigned int sizes[2];
949
950 /* The first variant frag for this macro. */
951 fragS *first_frag;
952 } mips_macro_warning;
953 \f
954 /* Prototypes for static functions. */
955
956 #define internalError() \
957 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
958
959 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
960
961 static void append_insn
962 (struct mips_cl_insn *ip, expressionS *p, bfd_reloc_code_real_type *r);
963 static void mips_no_prev_insn (void);
964 static void mips16_macro_build
965 (expressionS *, const char *, const char *, va_list);
966 static void load_register (int, expressionS *, int);
967 static void macro_start (void);
968 static void macro_end (void);
969 static void macro (struct mips_cl_insn * ip);
970 static void mips16_macro (struct mips_cl_insn * ip);
971 #ifdef LOSING_COMPILER
972 static void macro2 (struct mips_cl_insn * ip);
973 #endif
974 static void mips_ip (char *str, struct mips_cl_insn * ip);
975 static void mips16_ip (char *str, struct mips_cl_insn * ip);
976 static void mips16_immed
977 (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
978 unsigned long *, bfd_boolean *, unsigned short *);
979 static size_t my_getSmallExpression
980 (expressionS *, bfd_reloc_code_real_type *, char *);
981 static void my_getExpression (expressionS *, char *);
982 static void s_align (int);
983 static void s_change_sec (int);
984 static void s_change_section (int);
985 static void s_cons (int);
986 static void s_float_cons (int);
987 static void s_mips_globl (int);
988 static void s_option (int);
989 static void s_mipsset (int);
990 static void s_abicalls (int);
991 static void s_cpload (int);
992 static void s_cpsetup (int);
993 static void s_cplocal (int);
994 static void s_cprestore (int);
995 static void s_cpreturn (int);
996 static void s_gpvalue (int);
997 static void s_gpword (int);
998 static void s_gpdword (int);
999 static void s_cpadd (int);
1000 static void s_insn (int);
1001 static void md_obj_begin (void);
1002 static void md_obj_end (void);
1003 static void s_mips_ent (int);
1004 static void s_mips_end (int);
1005 static void s_mips_frame (int);
1006 static void s_mips_mask (int reg_type);
1007 static void s_mips_stab (int);
1008 static void s_mips_weakext (int);
1009 static void s_mips_file (int);
1010 static void s_mips_loc (int);
1011 static bfd_boolean pic_need_relax (symbolS *, asection *);
1012 static int relaxed_branch_length (fragS *, asection *, int);
1013 static int validate_mips_insn (const struct mips_opcode *);
1014
1015 /* Table and functions used to map between CPU/ISA names, and
1016 ISA levels, and CPU numbers. */
1017
1018 struct mips_cpu_info
1019 {
1020 const char *name; /* CPU or ISA name. */
1021 int is_isa; /* Is this an ISA? (If 0, a CPU.) */
1022 int isa; /* ISA level. */
1023 int cpu; /* CPU number (default CPU if ISA). */
1024 };
1025
1026 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1027 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1028 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1029 \f
1030 /* Pseudo-op table.
1031
1032 The following pseudo-ops from the Kane and Heinrich MIPS book
1033 should be defined here, but are currently unsupported: .alias,
1034 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1035
1036 The following pseudo-ops from the Kane and Heinrich MIPS book are
1037 specific to the type of debugging information being generated, and
1038 should be defined by the object format: .aent, .begin, .bend,
1039 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1040 .vreg.
1041
1042 The following pseudo-ops from the Kane and Heinrich MIPS book are
1043 not MIPS CPU specific, but are also not specific to the object file
1044 format. This file is probably the best place to define them, but
1045 they are not currently supported: .asm0, .endr, .lab, .repeat,
1046 .struct. */
1047
1048 static const pseudo_typeS mips_pseudo_table[] =
1049 {
1050 /* MIPS specific pseudo-ops. */
1051 {"option", s_option, 0},
1052 {"set", s_mipsset, 0},
1053 {"rdata", s_change_sec, 'r'},
1054 {"sdata", s_change_sec, 's'},
1055 {"livereg", s_ignore, 0},
1056 {"abicalls", s_abicalls, 0},
1057 {"cpload", s_cpload, 0},
1058 {"cpsetup", s_cpsetup, 0},
1059 {"cplocal", s_cplocal, 0},
1060 {"cprestore", s_cprestore, 0},
1061 {"cpreturn", s_cpreturn, 0},
1062 {"gpvalue", s_gpvalue, 0},
1063 {"gpword", s_gpword, 0},
1064 {"gpdword", s_gpdword, 0},
1065 {"cpadd", s_cpadd, 0},
1066 {"insn", s_insn, 0},
1067
1068 /* Relatively generic pseudo-ops that happen to be used on MIPS
1069 chips. */
1070 {"asciiz", stringer, 1},
1071 {"bss", s_change_sec, 'b'},
1072 {"err", s_err, 0},
1073 {"half", s_cons, 1},
1074 {"dword", s_cons, 3},
1075 {"weakext", s_mips_weakext, 0},
1076
1077 /* These pseudo-ops are defined in read.c, but must be overridden
1078 here for one reason or another. */
1079 {"align", s_align, 0},
1080 {"byte", s_cons, 0},
1081 {"data", s_change_sec, 'd'},
1082 {"double", s_float_cons, 'd'},
1083 {"float", s_float_cons, 'f'},
1084 {"globl", s_mips_globl, 0},
1085 {"global", s_mips_globl, 0},
1086 {"hword", s_cons, 1},
1087 {"int", s_cons, 2},
1088 {"long", s_cons, 2},
1089 {"octa", s_cons, 4},
1090 {"quad", s_cons, 3},
1091 {"section", s_change_section, 0},
1092 {"short", s_cons, 1},
1093 {"single", s_float_cons, 'f'},
1094 {"stabn", s_mips_stab, 'n'},
1095 {"text", s_change_sec, 't'},
1096 {"word", s_cons, 2},
1097
1098 { "extern", ecoff_directive_extern, 0},
1099
1100 { NULL, NULL, 0 },
1101 };
1102
1103 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1104 {
1105 /* These pseudo-ops should be defined by the object file format.
1106 However, a.out doesn't support them, so we have versions here. */
1107 {"aent", s_mips_ent, 1},
1108 {"bgnb", s_ignore, 0},
1109 {"end", s_mips_end, 0},
1110 {"endb", s_ignore, 0},
1111 {"ent", s_mips_ent, 0},
1112 {"file", s_mips_file, 0},
1113 {"fmask", s_mips_mask, 'F'},
1114 {"frame", s_mips_frame, 0},
1115 {"loc", s_mips_loc, 0},
1116 {"mask", s_mips_mask, 'R'},
1117 {"verstamp", s_ignore, 0},
1118 { NULL, NULL, 0 },
1119 };
1120
1121 extern void pop_insert (const pseudo_typeS *);
1122
1123 void
1124 mips_pop_insert (void)
1125 {
1126 pop_insert (mips_pseudo_table);
1127 if (! ECOFF_DEBUGGING)
1128 pop_insert (mips_nonecoff_pseudo_table);
1129 }
1130 \f
1131 /* Symbols labelling the current insn. */
1132
1133 struct insn_label_list
1134 {
1135 struct insn_label_list *next;
1136 symbolS *label;
1137 };
1138
1139 static struct insn_label_list *insn_labels;
1140 static struct insn_label_list *free_insn_labels;
1141
1142 static void mips_clear_insn_labels (void);
1143
1144 static inline void
1145 mips_clear_insn_labels (void)
1146 {
1147 register struct insn_label_list **pl;
1148
1149 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1150 ;
1151 *pl = insn_labels;
1152 insn_labels = NULL;
1153 }
1154 \f
1155 static char *expr_end;
1156
1157 /* Expressions which appear in instructions. These are set by
1158 mips_ip. */
1159
1160 static expressionS imm_expr;
1161 static expressionS imm2_expr;
1162 static expressionS offset_expr;
1163
1164 /* Relocs associated with imm_expr and offset_expr. */
1165
1166 static bfd_reloc_code_real_type imm_reloc[3]
1167 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1168 static bfd_reloc_code_real_type offset_reloc[3]
1169 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1170
1171 /* These are set by mips16_ip if an explicit extension is used. */
1172
1173 static bfd_boolean mips16_small, mips16_ext;
1174
1175 #ifdef OBJ_ELF
1176 /* The pdr segment for per procedure frame/regmask info. Not used for
1177 ECOFF debugging. */
1178
1179 static segT pdr_seg;
1180 #endif
1181
1182 /* The default target format to use. */
1183
1184 const char *
1185 mips_target_format (void)
1186 {
1187 switch (OUTPUT_FLAVOR)
1188 {
1189 case bfd_target_ecoff_flavour:
1190 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1191 case bfd_target_coff_flavour:
1192 return "pe-mips";
1193 case bfd_target_elf_flavour:
1194 #ifdef TE_TMIPS
1195 /* This is traditional mips. */
1196 return (target_big_endian
1197 ? (HAVE_64BIT_OBJECTS
1198 ? "elf64-tradbigmips"
1199 : (HAVE_NEWABI
1200 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
1201 : (HAVE_64BIT_OBJECTS
1202 ? "elf64-tradlittlemips"
1203 : (HAVE_NEWABI
1204 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
1205 #else
1206 return (target_big_endian
1207 ? (HAVE_64BIT_OBJECTS
1208 ? "elf64-bigmips"
1209 : (HAVE_NEWABI
1210 ? "elf32-nbigmips" : "elf32-bigmips"))
1211 : (HAVE_64BIT_OBJECTS
1212 ? "elf64-littlemips"
1213 : (HAVE_NEWABI
1214 ? "elf32-nlittlemips" : "elf32-littlemips")));
1215 #endif
1216 default:
1217 abort ();
1218 return NULL;
1219 }
1220 }
1221
1222 /* Return the length of instruction INSN. */
1223
1224 static inline unsigned int
1225 insn_length (const struct mips_cl_insn *insn)
1226 {
1227 if (!mips_opts.mips16)
1228 return 4;
1229 return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
1230 }
1231
1232 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1233
1234 static void
1235 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1236 {
1237 size_t i;
1238
1239 insn->insn_mo = mo;
1240 insn->use_extend = FALSE;
1241 insn->extend = 0;
1242 insn->insn_opcode = mo->match;
1243 insn->frag = NULL;
1244 insn->where = 0;
1245 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1246 insn->fixp[i] = NULL;
1247 insn->fixed_p = (mips_opts.noreorder > 0);
1248 insn->noreorder_p = (mips_opts.noreorder > 0);
1249 insn->mips16_absolute_jump_p = 0;
1250 }
1251
1252 /* Install INSN at the location specified by its "frag" and "where" fields. */
1253
1254 static void
1255 install_insn (const struct mips_cl_insn *insn)
1256 {
1257 char *f = insn->frag->fr_literal + insn->where;
1258 if (!mips_opts.mips16)
1259 md_number_to_chars (f, insn->insn_opcode, 4);
1260 else if (insn->mips16_absolute_jump_p)
1261 {
1262 md_number_to_chars (f, insn->insn_opcode >> 16, 2);
1263 md_number_to_chars (f + 2, insn->insn_opcode & 0xffff, 2);
1264 }
1265 else
1266 {
1267 if (insn->use_extend)
1268 {
1269 md_number_to_chars (f, 0xf000 | insn->extend, 2);
1270 f += 2;
1271 }
1272 md_number_to_chars (f, insn->insn_opcode, 2);
1273 }
1274 }
1275
1276 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1277 and install the opcode in the new location. */
1278
1279 static void
1280 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
1281 {
1282 size_t i;
1283
1284 insn->frag = frag;
1285 insn->where = where;
1286 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1287 if (insn->fixp[i] != NULL)
1288 {
1289 insn->fixp[i]->fx_frag = frag;
1290 insn->fixp[i]->fx_where = where;
1291 }
1292 install_insn (insn);
1293 }
1294
1295 /* Add INSN to the end of the output. */
1296
1297 static void
1298 add_fixed_insn (struct mips_cl_insn *insn)
1299 {
1300 char *f = frag_more (insn_length (insn));
1301 move_insn (insn, frag_now, f - frag_now->fr_literal);
1302 }
1303
1304 /* Start a variant frag and move INSN to the start of the variant part,
1305 marking it as fixed. The other arguments are as for frag_var. */
1306
1307 static void
1308 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
1309 relax_substateT subtype, symbolS *symbol, offsetT offset)
1310 {
1311 frag_grow (max_chars);
1312 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
1313 insn->fixed_p = 1;
1314 frag_var (rs_machine_dependent, max_chars, var,
1315 subtype, symbol, offset, NULL);
1316 }
1317
1318 /* Insert N copies of INSN into the history buffer, starting at
1319 position FIRST. Neither FIRST nor N need to be clipped. */
1320
1321 static void
1322 insert_into_history (unsigned int first, unsigned int n,
1323 const struct mips_cl_insn *insn)
1324 {
1325 if (mips_relax.sequence != 2)
1326 {
1327 unsigned int i;
1328
1329 for (i = ARRAY_SIZE (history); i-- > first;)
1330 if (i >= first + n)
1331 history[i] = history[i - n];
1332 else
1333 history[i] = *insn;
1334 }
1335 }
1336
1337 /* Emit a nop instruction, recording it in the history buffer. */
1338
1339 static void
1340 emit_nop (void)
1341 {
1342 add_fixed_insn (NOP_INSN);
1343 insert_into_history (0, 1, NOP_INSN);
1344 }
1345
1346 /* Initialize vr4120_conflicts. There is a bit of duplication here:
1347 the idea is to make it obvious at a glance that each errata is
1348 included. */
1349
1350 static void
1351 init_vr4120_conflicts (void)
1352 {
1353 #define CONFLICT(FIRST, SECOND) \
1354 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1355
1356 /* Errata 21 - [D]DIV[U] after [D]MACC */
1357 CONFLICT (MACC, DIV);
1358 CONFLICT (DMACC, DIV);
1359
1360 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1361 CONFLICT (DMULT, DMULT);
1362 CONFLICT (DMULT, DMACC);
1363 CONFLICT (DMACC, DMULT);
1364 CONFLICT (DMACC, DMACC);
1365
1366 /* Errata 24 - MT{LO,HI} after [D]MACC */
1367 CONFLICT (MACC, MTHILO);
1368 CONFLICT (DMACC, MTHILO);
1369
1370 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1371 instruction is executed immediately after a MACC or DMACC
1372 instruction, the result of [either instruction] is incorrect." */
1373 CONFLICT (MACC, MULT);
1374 CONFLICT (MACC, DMULT);
1375 CONFLICT (DMACC, MULT);
1376 CONFLICT (DMACC, DMULT);
1377
1378 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1379 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1380 DDIV or DDIVU instruction, the result of the MACC or
1381 DMACC instruction is incorrect.". */
1382 CONFLICT (DMULT, MACC);
1383 CONFLICT (DMULT, DMACC);
1384 CONFLICT (DIV, MACC);
1385 CONFLICT (DIV, DMACC);
1386
1387 #undef CONFLICT
1388 }
1389
1390 /* This function is called once, at assembler startup time. It should
1391 set up all the tables, etc. that the MD part of the assembler will need. */
1392
1393 void
1394 md_begin (void)
1395 {
1396 register const char *retval = NULL;
1397 int i = 0;
1398 int broken = 0;
1399
1400 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
1401 as_warn (_("Could not set architecture and machine"));
1402
1403 op_hash = hash_new ();
1404
1405 for (i = 0; i < NUMOPCODES;)
1406 {
1407 const char *name = mips_opcodes[i].name;
1408
1409 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
1410 if (retval != NULL)
1411 {
1412 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1413 mips_opcodes[i].name, retval);
1414 /* Probably a memory allocation problem? Give up now. */
1415 as_fatal (_("Broken assembler. No assembly attempted."));
1416 }
1417 do
1418 {
1419 if (mips_opcodes[i].pinfo != INSN_MACRO)
1420 {
1421 if (!validate_mips_insn (&mips_opcodes[i]))
1422 broken = 1;
1423 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1424 {
1425 create_insn (&nop_insn, mips_opcodes + i);
1426 nop_insn.fixed_p = 1;
1427 }
1428 }
1429 ++i;
1430 }
1431 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1432 }
1433
1434 mips16_op_hash = hash_new ();
1435
1436 i = 0;
1437 while (i < bfd_mips16_num_opcodes)
1438 {
1439 const char *name = mips16_opcodes[i].name;
1440
1441 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
1442 if (retval != NULL)
1443 as_fatal (_("internal: can't hash `%s': %s"),
1444 mips16_opcodes[i].name, retval);
1445 do
1446 {
1447 if (mips16_opcodes[i].pinfo != INSN_MACRO
1448 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1449 != mips16_opcodes[i].match))
1450 {
1451 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1452 mips16_opcodes[i].name, mips16_opcodes[i].args);
1453 broken = 1;
1454 }
1455 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1456 {
1457 create_insn (&mips16_nop_insn, mips16_opcodes + i);
1458 mips16_nop_insn.fixed_p = 1;
1459 }
1460 ++i;
1461 }
1462 while (i < bfd_mips16_num_opcodes
1463 && strcmp (mips16_opcodes[i].name, name) == 0);
1464 }
1465
1466 if (broken)
1467 as_fatal (_("Broken assembler. No assembly attempted."));
1468
1469 /* We add all the general register names to the symbol table. This
1470 helps us detect invalid uses of them. */
1471 for (i = 0; i < 32; i++)
1472 {
1473 char buf[5];
1474
1475 sprintf (buf, "$%d", i);
1476 symbol_table_insert (symbol_new (buf, reg_section, i,
1477 &zero_address_frag));
1478 }
1479 symbol_table_insert (symbol_new ("$ra", reg_section, RA,
1480 &zero_address_frag));
1481 symbol_table_insert (symbol_new ("$fp", reg_section, FP,
1482 &zero_address_frag));
1483 symbol_table_insert (symbol_new ("$sp", reg_section, SP,
1484 &zero_address_frag));
1485 symbol_table_insert (symbol_new ("$gp", reg_section, GP,
1486 &zero_address_frag));
1487 symbol_table_insert (symbol_new ("$at", reg_section, AT,
1488 &zero_address_frag));
1489 symbol_table_insert (symbol_new ("$kt0", reg_section, KT0,
1490 &zero_address_frag));
1491 symbol_table_insert (symbol_new ("$kt1", reg_section, KT1,
1492 &zero_address_frag));
1493 symbol_table_insert (symbol_new ("$zero", reg_section, ZERO,
1494 &zero_address_frag));
1495 symbol_table_insert (symbol_new ("$pc", reg_section, -1,
1496 &zero_address_frag));
1497
1498 /* If we don't add these register names to the symbol table, they
1499 may end up being added as regular symbols by operand(), and then
1500 make it to the object file as undefined in case they're not
1501 regarded as local symbols. They're local in o32, since `$' is a
1502 local symbol prefix, but not in n32 or n64. */
1503 for (i = 0; i < 8; i++)
1504 {
1505 char buf[6];
1506
1507 sprintf (buf, "$fcc%i", i);
1508 symbol_table_insert (symbol_new (buf, reg_section, -1,
1509 &zero_address_frag));
1510 }
1511
1512 mips_no_prev_insn ();
1513
1514 mips_gprmask = 0;
1515 mips_cprmask[0] = 0;
1516 mips_cprmask[1] = 0;
1517 mips_cprmask[2] = 0;
1518 mips_cprmask[3] = 0;
1519
1520 /* set the default alignment for the text section (2**2) */
1521 record_alignment (text_section, 2);
1522
1523 bfd_set_gp_size (stdoutput, g_switch_value);
1524
1525 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1526 {
1527 /* On a native system, sections must be aligned to 16 byte
1528 boundaries. When configured for an embedded ELF target, we
1529 don't bother. */
1530 if (strcmp (TARGET_OS, "elf") != 0)
1531 {
1532 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
1533 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
1534 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
1535 }
1536
1537 /* Create a .reginfo section for register masks and a .mdebug
1538 section for debugging information. */
1539 {
1540 segT seg;
1541 subsegT subseg;
1542 flagword flags;
1543 segT sec;
1544
1545 seg = now_seg;
1546 subseg = now_subseg;
1547
1548 /* The ABI says this section should be loaded so that the
1549 running program can access it. However, we don't load it
1550 if we are configured for an embedded target */
1551 flags = SEC_READONLY | SEC_DATA;
1552 if (strcmp (TARGET_OS, "elf") != 0)
1553 flags |= SEC_ALLOC | SEC_LOAD;
1554
1555 if (mips_abi != N64_ABI)
1556 {
1557 sec = subseg_new (".reginfo", (subsegT) 0);
1558
1559 bfd_set_section_flags (stdoutput, sec, flags);
1560 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
1561
1562 #ifdef OBJ_ELF
1563 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
1564 #endif
1565 }
1566 else
1567 {
1568 /* The 64-bit ABI uses a .MIPS.options section rather than
1569 .reginfo section. */
1570 sec = subseg_new (".MIPS.options", (subsegT) 0);
1571 bfd_set_section_flags (stdoutput, sec, flags);
1572 bfd_set_section_alignment (stdoutput, sec, 3);
1573
1574 #ifdef OBJ_ELF
1575 /* Set up the option header. */
1576 {
1577 Elf_Internal_Options opthdr;
1578 char *f;
1579
1580 opthdr.kind = ODK_REGINFO;
1581 opthdr.size = (sizeof (Elf_External_Options)
1582 + sizeof (Elf64_External_RegInfo));
1583 opthdr.section = 0;
1584 opthdr.info = 0;
1585 f = frag_more (sizeof (Elf_External_Options));
1586 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
1587 (Elf_External_Options *) f);
1588
1589 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
1590 }
1591 #endif
1592 }
1593
1594 if (ECOFF_DEBUGGING)
1595 {
1596 sec = subseg_new (".mdebug", (subsegT) 0);
1597 (void) bfd_set_section_flags (stdoutput, sec,
1598 SEC_HAS_CONTENTS | SEC_READONLY);
1599 (void) bfd_set_section_alignment (stdoutput, sec, 2);
1600 }
1601 #ifdef OBJ_ELF
1602 else if (OUTPUT_FLAVOR == bfd_target_elf_flavour && mips_flag_pdr)
1603 {
1604 pdr_seg = subseg_new (".pdr", (subsegT) 0);
1605 (void) bfd_set_section_flags (stdoutput, pdr_seg,
1606 SEC_READONLY | SEC_RELOC
1607 | SEC_DEBUGGING);
1608 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
1609 }
1610 #endif
1611
1612 subseg_set (seg, subseg);
1613 }
1614 }
1615
1616 if (! ECOFF_DEBUGGING)
1617 md_obj_begin ();
1618
1619 if (mips_fix_vr4120)
1620 init_vr4120_conflicts ();
1621 }
1622
1623 void
1624 md_mips_end (void)
1625 {
1626 if (! ECOFF_DEBUGGING)
1627 md_obj_end ();
1628 }
1629
1630 void
1631 md_assemble (char *str)
1632 {
1633 struct mips_cl_insn insn;
1634 bfd_reloc_code_real_type unused_reloc[3]
1635 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1636
1637 imm_expr.X_op = O_absent;
1638 imm2_expr.X_op = O_absent;
1639 offset_expr.X_op = O_absent;
1640 imm_reloc[0] = BFD_RELOC_UNUSED;
1641 imm_reloc[1] = BFD_RELOC_UNUSED;
1642 imm_reloc[2] = BFD_RELOC_UNUSED;
1643 offset_reloc[0] = BFD_RELOC_UNUSED;
1644 offset_reloc[1] = BFD_RELOC_UNUSED;
1645 offset_reloc[2] = BFD_RELOC_UNUSED;
1646
1647 if (mips_opts.mips16)
1648 mips16_ip (str, &insn);
1649 else
1650 {
1651 mips_ip (str, &insn);
1652 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
1653 str, insn.insn_opcode));
1654 }
1655
1656 if (insn_error)
1657 {
1658 as_bad ("%s `%s'", insn_error, str);
1659 return;
1660 }
1661
1662 if (insn.insn_mo->pinfo == INSN_MACRO)
1663 {
1664 macro_start ();
1665 if (mips_opts.mips16)
1666 mips16_macro (&insn);
1667 else
1668 macro (&insn);
1669 macro_end ();
1670 }
1671 else
1672 {
1673 if (imm_expr.X_op != O_absent)
1674 append_insn (&insn, &imm_expr, imm_reloc);
1675 else if (offset_expr.X_op != O_absent)
1676 append_insn (&insn, &offset_expr, offset_reloc);
1677 else
1678 append_insn (&insn, NULL, unused_reloc);
1679 }
1680 }
1681
1682 /* Return true if the given relocation might need a matching %lo().
1683 Note that R_MIPS_GOT16 relocations only need a matching %lo() when
1684 applied to local symbols. */
1685
1686 static inline bfd_boolean
1687 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
1688 {
1689 return (HAVE_IN_PLACE_ADDENDS
1690 && (reloc == BFD_RELOC_HI16_S
1691 || reloc == BFD_RELOC_MIPS_GOT16
1692 || reloc == BFD_RELOC_MIPS16_HI16_S));
1693 }
1694
1695 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
1696 relocation. */
1697
1698 static inline bfd_boolean
1699 fixup_has_matching_lo_p (fixS *fixp)
1700 {
1701 return (fixp->fx_next != NULL
1702 && (fixp->fx_next->fx_r_type == BFD_RELOC_LO16
1703 || fixp->fx_next->fx_r_type == BFD_RELOC_MIPS16_LO16)
1704 && fixp->fx_addsy == fixp->fx_next->fx_addsy
1705 && fixp->fx_offset == fixp->fx_next->fx_offset);
1706 }
1707
1708 /* See whether instruction IP reads register REG. CLASS is the type
1709 of register. */
1710
1711 static int
1712 insn_uses_reg (const struct mips_cl_insn *ip, unsigned int reg,
1713 enum mips_regclass class)
1714 {
1715 if (class == MIPS16_REG)
1716 {
1717 assert (mips_opts.mips16);
1718 reg = mips16_to_32_reg_map[reg];
1719 class = MIPS_GR_REG;
1720 }
1721
1722 /* Don't report on general register ZERO, since it never changes. */
1723 if (class == MIPS_GR_REG && reg == ZERO)
1724 return 0;
1725
1726 if (class == MIPS_FP_REG)
1727 {
1728 assert (! mips_opts.mips16);
1729 /* If we are called with either $f0 or $f1, we must check $f0.
1730 This is not optimal, because it will introduce an unnecessary
1731 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
1732 need to distinguish reading both $f0 and $f1 or just one of
1733 them. Note that we don't have to check the other way,
1734 because there is no instruction that sets both $f0 and $f1
1735 and requires a delay. */
1736 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
1737 && ((EXTRACT_OPERAND (FS, *ip) & ~(unsigned) 1)
1738 == (reg &~ (unsigned) 1)))
1739 return 1;
1740 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
1741 && ((EXTRACT_OPERAND (FT, *ip) & ~(unsigned) 1)
1742 == (reg &~ (unsigned) 1)))
1743 return 1;
1744 }
1745 else if (! mips_opts.mips16)
1746 {
1747 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
1748 && EXTRACT_OPERAND (RS, *ip) == reg)
1749 return 1;
1750 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
1751 && EXTRACT_OPERAND (RT, *ip) == reg)
1752 return 1;
1753 }
1754 else
1755 {
1756 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
1757 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)] == reg)
1758 return 1;
1759 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
1760 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)] == reg)
1761 return 1;
1762 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
1763 && (mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]
1764 == reg))
1765 return 1;
1766 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
1767 return 1;
1768 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
1769 return 1;
1770 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
1771 return 1;
1772 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
1773 && MIPS16_EXTRACT_OPERAND (REGR32, *ip) == reg)
1774 return 1;
1775 }
1776
1777 return 0;
1778 }
1779
1780 /* This function returns true if modifying a register requires a
1781 delay. */
1782
1783 static int
1784 reg_needs_delay (unsigned int reg)
1785 {
1786 unsigned long prev_pinfo;
1787
1788 prev_pinfo = history[0].insn_mo->pinfo;
1789 if (! mips_opts.noreorder
1790 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
1791 && ! gpr_interlocks)
1792 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1793 && ! cop_interlocks)))
1794 {
1795 /* A load from a coprocessor or from memory. All load delays
1796 delay the use of general register rt for one instruction. */
1797 /* Itbl support may require additional care here. */
1798 know (prev_pinfo & INSN_WRITE_GPR_T);
1799 if (reg == EXTRACT_OPERAND (RT, history[0]))
1800 return 1;
1801 }
1802
1803 return 0;
1804 }
1805
1806 /* Move all labels in insn_labels to the current insertion point. */
1807
1808 static void
1809 mips_move_labels (void)
1810 {
1811 struct insn_label_list *l;
1812 valueT val;
1813
1814 for (l = insn_labels; l != NULL; l = l->next)
1815 {
1816 assert (S_GET_SEGMENT (l->label) == now_seg);
1817 symbol_set_frag (l->label, frag_now);
1818 val = (valueT) frag_now_fix ();
1819 /* mips16 text labels are stored as odd. */
1820 if (mips_opts.mips16)
1821 ++val;
1822 S_SET_VALUE (l->label, val);
1823 }
1824 }
1825
1826 /* Mark instruction labels in mips16 mode. This permits the linker to
1827 handle them specially, such as generating jalx instructions when
1828 needed. We also make them odd for the duration of the assembly, in
1829 order to generate the right sort of code. We will make them even
1830 in the adjust_symtab routine, while leaving them marked. This is
1831 convenient for the debugger and the disassembler. The linker knows
1832 to make them odd again. */
1833
1834 static void
1835 mips16_mark_labels (void)
1836 {
1837 if (mips_opts.mips16)
1838 {
1839 struct insn_label_list *l;
1840 valueT val;
1841
1842 for (l = insn_labels; l != NULL; l = l->next)
1843 {
1844 #ifdef OBJ_ELF
1845 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1846 S_SET_OTHER (l->label, STO_MIPS16);
1847 #endif
1848 val = S_GET_VALUE (l->label);
1849 if ((val & 1) == 0)
1850 S_SET_VALUE (l->label, val + 1);
1851 }
1852 }
1853 }
1854
1855 /* End the current frag. Make it a variant frag and record the
1856 relaxation info. */
1857
1858 static void
1859 relax_close_frag (void)
1860 {
1861 mips_macro_warning.first_frag = frag_now;
1862 frag_var (rs_machine_dependent, 0, 0,
1863 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
1864 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
1865
1866 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
1867 mips_relax.first_fixup = 0;
1868 }
1869
1870 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
1871 See the comment above RELAX_ENCODE for more details. */
1872
1873 static void
1874 relax_start (symbolS *symbol)
1875 {
1876 assert (mips_relax.sequence == 0);
1877 mips_relax.sequence = 1;
1878 mips_relax.symbol = symbol;
1879 }
1880
1881 /* Start generating the second version of a relaxable sequence.
1882 See the comment above RELAX_ENCODE for more details. */
1883
1884 static void
1885 relax_switch (void)
1886 {
1887 assert (mips_relax.sequence == 1);
1888 mips_relax.sequence = 2;
1889 }
1890
1891 /* End the current relaxable sequence. */
1892
1893 static void
1894 relax_end (void)
1895 {
1896 assert (mips_relax.sequence == 2);
1897 relax_close_frag ();
1898 mips_relax.sequence = 0;
1899 }
1900
1901 /* Classify an instruction according to the FIX_VR4120_* enumeration.
1902 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
1903 by VR4120 errata. */
1904
1905 static unsigned int
1906 classify_vr4120_insn (const char *name)
1907 {
1908 if (strncmp (name, "macc", 4) == 0)
1909 return FIX_VR4120_MACC;
1910 if (strncmp (name, "dmacc", 5) == 0)
1911 return FIX_VR4120_DMACC;
1912 if (strncmp (name, "mult", 4) == 0)
1913 return FIX_VR4120_MULT;
1914 if (strncmp (name, "dmult", 5) == 0)
1915 return FIX_VR4120_DMULT;
1916 if (strstr (name, "div"))
1917 return FIX_VR4120_DIV;
1918 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
1919 return FIX_VR4120_MTHILO;
1920 return NUM_FIX_VR4120_CLASSES;
1921 }
1922
1923 /* Return the number of instructions that must separate INSN1 and INSN2,
1924 where INSN1 is the earlier instruction. Return the worst-case value
1925 for any INSN2 if INSN2 is null. */
1926
1927 static unsigned int
1928 insns_between (const struct mips_cl_insn *insn1,
1929 const struct mips_cl_insn *insn2)
1930 {
1931 unsigned long pinfo1, pinfo2;
1932
1933 /* This function needs to know which pinfo flags are set for INSN2
1934 and which registers INSN2 uses. The former is stored in PINFO2 and
1935 the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2
1936 will have every flag set and INSN2_USES_REG will always return true. */
1937 pinfo1 = insn1->insn_mo->pinfo;
1938 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
1939
1940 #define INSN2_USES_REG(REG, CLASS) \
1941 (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
1942
1943 /* For most targets, write-after-read dependencies on the HI and LO
1944 registers must be separated by at least two instructions. */
1945 if (!hilo_interlocks)
1946 {
1947 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
1948 return 2;
1949 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
1950 return 2;
1951 }
1952
1953 /* If we're working around r7000 errata, there must be two instructions
1954 between an mfhi or mflo and any instruction that uses the result. */
1955 if (mips_7000_hilo_fix
1956 && MF_HILO_INSN (pinfo1)
1957 && INSN2_USES_REG (EXTRACT_OPERAND (RD, *insn1), MIPS_GR_REG))
1958 return 2;
1959
1960 /* If working around VR4120 errata, check for combinations that need
1961 a single intervening instruction. */
1962 if (mips_fix_vr4120)
1963 {
1964 unsigned int class1, class2;
1965
1966 class1 = classify_vr4120_insn (insn1->insn_mo->name);
1967 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
1968 {
1969 if (insn2 == NULL)
1970 return 1;
1971 class2 = classify_vr4120_insn (insn2->insn_mo->name);
1972 if (vr4120_conflicts[class1] & (1 << class2))
1973 return 1;
1974 }
1975 }
1976
1977 if (!mips_opts.mips16)
1978 {
1979 /* Check for GPR or coprocessor load delays. All such delays
1980 are on the RT register. */
1981 /* Itbl support may require additional care here. */
1982 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
1983 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
1984 {
1985 know (pinfo1 & INSN_WRITE_GPR_T);
1986 if (INSN2_USES_REG (EXTRACT_OPERAND (RT, *insn1), MIPS_GR_REG))
1987 return 1;
1988 }
1989
1990 /* Check for generic coprocessor hazards.
1991
1992 This case is not handled very well. There is no special
1993 knowledge of CP0 handling, and the coprocessors other than
1994 the floating point unit are not distinguished at all. */
1995 /* Itbl support may require additional care here. FIXME!
1996 Need to modify this to include knowledge about
1997 user specified delays! */
1998 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
1999 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
2000 {
2001 /* Handle cases where INSN1 writes to a known general coprocessor
2002 register. There must be a one instruction delay before INSN2
2003 if INSN2 reads that register, otherwise no delay is needed. */
2004 if (pinfo1 & INSN_WRITE_FPR_T)
2005 {
2006 if (INSN2_USES_REG (EXTRACT_OPERAND (FT, *insn1), MIPS_FP_REG))
2007 return 1;
2008 }
2009 else if (pinfo1 & INSN_WRITE_FPR_S)
2010 {
2011 if (INSN2_USES_REG (EXTRACT_OPERAND (FS, *insn1), MIPS_FP_REG))
2012 return 1;
2013 }
2014 else
2015 {
2016 /* Read-after-write dependencies on the control registers
2017 require a two-instruction gap. */
2018 if ((pinfo1 & INSN_WRITE_COND_CODE)
2019 && (pinfo2 & INSN_READ_COND_CODE))
2020 return 2;
2021
2022 /* We don't know exactly what INSN1 does. If INSN2 is
2023 also a coprocessor instruction, assume there must be
2024 a one instruction gap. */
2025 if (pinfo2 & INSN_COP)
2026 return 1;
2027 }
2028 }
2029
2030 /* Check for read-after-write dependencies on the coprocessor
2031 control registers in cases where INSN1 does not need a general
2032 coprocessor delay. This means that INSN1 is a floating point
2033 comparison instruction. */
2034 /* Itbl support may require additional care here. */
2035 else if (!cop_interlocks
2036 && (pinfo1 & INSN_WRITE_COND_CODE)
2037 && (pinfo2 & INSN_READ_COND_CODE))
2038 return 1;
2039 }
2040
2041 #undef INSN2_USES_REG
2042
2043 return 0;
2044 }
2045
2046 /* Return the number of nops that would be needed to work around the
2047 VR4130 mflo/mfhi errata if instruction INSN immediately followed
2048 the MAX_VR4130_NOPS instructions described by HISTORY. */
2049
2050 static int
2051 nops_for_vr4130 (const struct mips_cl_insn *history,
2052 const struct mips_cl_insn *insn)
2053 {
2054 int i, j, reg;
2055
2056 /* Check if the instruction writes to HI or LO. MTHI and MTLO
2057 are not affected by the errata. */
2058 if (insn != 0
2059 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
2060 || strcmp (insn->insn_mo->name, "mtlo") == 0
2061 || strcmp (insn->insn_mo->name, "mthi") == 0))
2062 return 0;
2063
2064 /* Search for the first MFLO or MFHI. */
2065 for (i = 0; i < MAX_VR4130_NOPS; i++)
2066 if (!history[i].noreorder_p && MF_HILO_INSN (history[i].insn_mo->pinfo))
2067 {
2068 /* Extract the destination register. */
2069 if (mips_opts.mips16)
2070 reg = mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, history[i])];
2071 else
2072 reg = EXTRACT_OPERAND (RD, history[i]);
2073
2074 /* No nops are needed if INSN reads that register. */
2075 if (insn != NULL && insn_uses_reg (insn, reg, MIPS_GR_REG))
2076 return 0;
2077
2078 /* ...or if any of the intervening instructions do. */
2079 for (j = 0; j < i; j++)
2080 if (insn_uses_reg (&history[j], reg, MIPS_GR_REG))
2081 return 0;
2082
2083 return MAX_VR4130_NOPS - i;
2084 }
2085 return 0;
2086 }
2087
2088 /* Return the number of nops that would be needed if instruction INSN
2089 immediately followed the MAX_NOPS instructions given by HISTORY,
2090 where HISTORY[0] is the most recent instruction. If INSN is null,
2091 return the worse-case number of nops for any instruction. */
2092
2093 static int
2094 nops_for_insn (const struct mips_cl_insn *history,
2095 const struct mips_cl_insn *insn)
2096 {
2097 int i, nops, tmp_nops;
2098
2099 nops = 0;
2100 for (i = 0; i < MAX_DELAY_NOPS; i++)
2101 if (!history[i].noreorder_p)
2102 {
2103 tmp_nops = insns_between (history + i, insn) - i;
2104 if (tmp_nops > nops)
2105 nops = tmp_nops;
2106 }
2107
2108 if (mips_fix_vr4130)
2109 {
2110 tmp_nops = nops_for_vr4130 (history, insn);
2111 if (tmp_nops > nops)
2112 nops = tmp_nops;
2113 }
2114
2115 return nops;
2116 }
2117
2118 /* The variable arguments provide NUM_INSNS extra instructions that
2119 might be added to HISTORY. Return the largest number of nops that
2120 would be needed after the extended sequence. */
2121
2122 static int
2123 nops_for_sequence (int num_insns, const struct mips_cl_insn *history, ...)
2124 {
2125 va_list args;
2126 struct mips_cl_insn buffer[MAX_NOPS];
2127 struct mips_cl_insn *cursor;
2128 int nops;
2129
2130 va_start (args, history);
2131 cursor = buffer + num_insns;
2132 memcpy (cursor, history, (MAX_NOPS - num_insns) * sizeof (*cursor));
2133 while (cursor > buffer)
2134 *--cursor = *va_arg (args, const struct mips_cl_insn *);
2135
2136 nops = nops_for_insn (buffer, NULL);
2137 va_end (args);
2138 return nops;
2139 }
2140
2141 /* Like nops_for_insn, but if INSN is a branch, take into account the
2142 worst-case delay for the branch target. */
2143
2144 static int
2145 nops_for_insn_or_target (const struct mips_cl_insn *history,
2146 const struct mips_cl_insn *insn)
2147 {
2148 int nops, tmp_nops;
2149
2150 nops = nops_for_insn (history, insn);
2151 if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
2152 | INSN_COND_BRANCH_DELAY
2153 | INSN_COND_BRANCH_LIKELY))
2154 {
2155 tmp_nops = nops_for_sequence (2, history, insn, NOP_INSN);
2156 if (tmp_nops > nops)
2157 nops = tmp_nops;
2158 }
2159 else if (mips_opts.mips16 && (insn->insn_mo->pinfo & MIPS16_INSN_BRANCH))
2160 {
2161 tmp_nops = nops_for_sequence (1, history, insn);
2162 if (tmp_nops > nops)
2163 nops = tmp_nops;
2164 }
2165 return nops;
2166 }
2167
2168 /* Output an instruction. IP is the instruction information.
2169 ADDRESS_EXPR is an operand of the instruction to be used with
2170 RELOC_TYPE. */
2171
2172 static void
2173 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
2174 bfd_reloc_code_real_type *reloc_type)
2175 {
2176 register unsigned long prev_pinfo, pinfo;
2177 relax_stateT prev_insn_frag_type = 0;
2178 bfd_boolean relaxed_branch = FALSE;
2179
2180 /* Mark instruction labels in mips16 mode. */
2181 mips16_mark_labels ();
2182
2183 prev_pinfo = history[0].insn_mo->pinfo;
2184 pinfo = ip->insn_mo->pinfo;
2185
2186 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
2187 {
2188 /* There are a lot of optimizations we could do that we don't.
2189 In particular, we do not, in general, reorder instructions.
2190 If you use gcc with optimization, it will reorder
2191 instructions and generally do much more optimization then we
2192 do here; repeating all that work in the assembler would only
2193 benefit hand written assembly code, and does not seem worth
2194 it. */
2195 int nops = (mips_optimize == 0
2196 ? nops_for_insn (history, NULL)
2197 : nops_for_insn_or_target (history, ip));
2198 if (nops > 0)
2199 {
2200 fragS *old_frag;
2201 unsigned long old_frag_offset;
2202 int i;
2203
2204 old_frag = frag_now;
2205 old_frag_offset = frag_now_fix ();
2206
2207 for (i = 0; i < nops; i++)
2208 emit_nop ();
2209
2210 if (listing)
2211 {
2212 listing_prev_line ();
2213 /* We may be at the start of a variant frag. In case we
2214 are, make sure there is enough space for the frag
2215 after the frags created by listing_prev_line. The
2216 argument to frag_grow here must be at least as large
2217 as the argument to all other calls to frag_grow in
2218 this file. We don't have to worry about being in the
2219 middle of a variant frag, because the variants insert
2220 all needed nop instructions themselves. */
2221 frag_grow (40);
2222 }
2223
2224 mips_move_labels ();
2225
2226 #ifndef NO_ECOFF_DEBUGGING
2227 if (ECOFF_DEBUGGING)
2228 ecoff_fix_loc (old_frag, old_frag_offset);
2229 #endif
2230 }
2231 }
2232 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
2233 {
2234 /* Work out how many nops in prev_nop_frag are needed by IP. */
2235 int nops = nops_for_insn_or_target (history, ip);
2236 assert (nops <= prev_nop_frag_holds);
2237
2238 /* Enforce NOPS as a minimum. */
2239 if (nops > prev_nop_frag_required)
2240 prev_nop_frag_required = nops;
2241
2242 if (prev_nop_frag_holds == prev_nop_frag_required)
2243 {
2244 /* Settle for the current number of nops. Update the history
2245 accordingly (for the benefit of any future .set reorder code). */
2246 prev_nop_frag = NULL;
2247 insert_into_history (prev_nop_frag_since,
2248 prev_nop_frag_holds, NOP_INSN);
2249 }
2250 else
2251 {
2252 /* Allow this instruction to replace one of the nops that was
2253 tentatively added to prev_nop_frag. */
2254 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
2255 prev_nop_frag_holds--;
2256 prev_nop_frag_since++;
2257 }
2258 }
2259
2260 #ifdef OBJ_ELF
2261 /* The value passed to dwarf2_emit_insn is the distance between
2262 the beginning of the current instruction and the address that
2263 should be recorded in the debug tables. For MIPS16 debug info
2264 we want to use ISA-encoded addresses, so we pass -1 for an
2265 address higher by one than the current. */
2266 dwarf2_emit_insn (mips_opts.mips16 ? -1 : 0);
2267 #endif
2268
2269 /* Record the frag type before frag_var. */
2270 if (history[0].frag)
2271 prev_insn_frag_type = history[0].frag->fr_type;
2272
2273 if (address_expr
2274 && *reloc_type == BFD_RELOC_16_PCREL_S2
2275 && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
2276 || pinfo & INSN_COND_BRANCH_LIKELY)
2277 && mips_relax_branch
2278 /* Don't try branch relaxation within .set nomacro, or within
2279 .set noat if we use $at for PIC computations. If it turns
2280 out that the branch was out-of-range, we'll get an error. */
2281 && !mips_opts.warn_about_macros
2282 && !(mips_opts.noat && mips_pic != NO_PIC)
2283 && !mips_opts.mips16)
2284 {
2285 relaxed_branch = TRUE;
2286 add_relaxed_insn (ip, (relaxed_branch_length
2287 (NULL, NULL,
2288 (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
2289 : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1
2290 : 0)), 4,
2291 RELAX_BRANCH_ENCODE
2292 (pinfo & INSN_UNCOND_BRANCH_DELAY,
2293 pinfo & INSN_COND_BRANCH_LIKELY,
2294 pinfo & INSN_WRITE_GPR_31,
2295 0),
2296 address_expr->X_add_symbol,
2297 address_expr->X_add_number);
2298 *reloc_type = BFD_RELOC_UNUSED;
2299 }
2300 else if (*reloc_type > BFD_RELOC_UNUSED)
2301 {
2302 /* We need to set up a variant frag. */
2303 assert (mips_opts.mips16 && address_expr != NULL);
2304 add_relaxed_insn (ip, 4, 0,
2305 RELAX_MIPS16_ENCODE
2306 (*reloc_type - BFD_RELOC_UNUSED,
2307 mips16_small, mips16_ext,
2308 prev_pinfo & INSN_UNCOND_BRANCH_DELAY,
2309 history[0].mips16_absolute_jump_p),
2310 make_expr_symbol (address_expr), 0);
2311 }
2312 else if (mips_opts.mips16
2313 && ! ip->use_extend
2314 && *reloc_type != BFD_RELOC_MIPS16_JMP)
2315 {
2316 if ((pinfo & INSN_UNCOND_BRANCH_DELAY) == 0)
2317 /* Make sure there is enough room to swap this instruction with
2318 a following jump instruction. */
2319 frag_grow (6);
2320 add_fixed_insn (ip);
2321 }
2322 else
2323 {
2324 if (mips_opts.mips16
2325 && mips_opts.noreorder
2326 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
2327 as_warn (_("extended instruction in delay slot"));
2328
2329 if (mips_relax.sequence)
2330 {
2331 /* If we've reached the end of this frag, turn it into a variant
2332 frag and record the information for the instructions we've
2333 written so far. */
2334 if (frag_room () < 4)
2335 relax_close_frag ();
2336 mips_relax.sizes[mips_relax.sequence - 1] += 4;
2337 }
2338
2339 if (mips_relax.sequence != 2)
2340 mips_macro_warning.sizes[0] += 4;
2341 if (mips_relax.sequence != 1)
2342 mips_macro_warning.sizes[1] += 4;
2343
2344 if (mips_opts.mips16)
2345 {
2346 ip->fixed_p = 1;
2347 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
2348 }
2349 add_fixed_insn (ip);
2350 }
2351
2352 if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED)
2353 {
2354 if (address_expr->X_op == O_constant)
2355 {
2356 unsigned int tmp;
2357
2358 switch (*reloc_type)
2359 {
2360 case BFD_RELOC_32:
2361 ip->insn_opcode |= address_expr->X_add_number;
2362 break;
2363
2364 case BFD_RELOC_MIPS_HIGHEST:
2365 tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
2366 ip->insn_opcode |= tmp & 0xffff;
2367 break;
2368
2369 case BFD_RELOC_MIPS_HIGHER:
2370 tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
2371 ip->insn_opcode |= tmp & 0xffff;
2372 break;
2373
2374 case BFD_RELOC_HI16_S:
2375 tmp = (address_expr->X_add_number + 0x8000) >> 16;
2376 ip->insn_opcode |= tmp & 0xffff;
2377 break;
2378
2379 case BFD_RELOC_HI16:
2380 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
2381 break;
2382
2383 case BFD_RELOC_UNUSED:
2384 case BFD_RELOC_LO16:
2385 case BFD_RELOC_MIPS_GOT_DISP:
2386 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
2387 break;
2388
2389 case BFD_RELOC_MIPS_JMP:
2390 if ((address_expr->X_add_number & 3) != 0)
2391 as_bad (_("jump to misaligned address (0x%lx)"),
2392 (unsigned long) address_expr->X_add_number);
2393 if (address_expr->X_add_number & ~0xfffffff)
2394 as_bad (_("jump address range overflow (0x%lx)"),
2395 (unsigned long) address_expr->X_add_number);
2396 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
2397 break;
2398
2399 case BFD_RELOC_MIPS16_JMP:
2400 if ((address_expr->X_add_number & 3) != 0)
2401 as_bad (_("jump to misaligned address (0x%lx)"),
2402 (unsigned long) address_expr->X_add_number);
2403 if (address_expr->X_add_number & ~0xfffffff)
2404 as_bad (_("jump address range overflow (0x%lx)"),
2405 (unsigned long) address_expr->X_add_number);
2406 ip->insn_opcode |=
2407 (((address_expr->X_add_number & 0x7c0000) << 3)
2408 | ((address_expr->X_add_number & 0xf800000) >> 7)
2409 | ((address_expr->X_add_number & 0x3fffc) >> 2));
2410 break;
2411
2412 case BFD_RELOC_16_PCREL_S2:
2413 goto need_reloc;
2414
2415 default:
2416 internalError ();
2417 }
2418 }
2419 else if (*reloc_type < BFD_RELOC_UNUSED)
2420 need_reloc:
2421 {
2422 reloc_howto_type *howto;
2423 int i;
2424
2425 /* In a compound relocation, it is the final (outermost)
2426 operator that determines the relocated field. */
2427 for (i = 1; i < 3; i++)
2428 if (reloc_type[i] == BFD_RELOC_UNUSED)
2429 break;
2430
2431 howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
2432 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
2433 bfd_get_reloc_size (howto),
2434 address_expr,
2435 reloc_type[0] == BFD_RELOC_16_PCREL_S2,
2436 reloc_type[0]);
2437
2438 /* These relocations can have an addend that won't fit in
2439 4 octets for 64bit assembly. */
2440 if (HAVE_64BIT_GPRS
2441 && ! howto->partial_inplace
2442 && (reloc_type[0] == BFD_RELOC_16
2443 || reloc_type[0] == BFD_RELOC_32
2444 || reloc_type[0] == BFD_RELOC_MIPS_JMP
2445 || reloc_type[0] == BFD_RELOC_HI16_S
2446 || reloc_type[0] == BFD_RELOC_LO16
2447 || reloc_type[0] == BFD_RELOC_GPREL16
2448 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
2449 || reloc_type[0] == BFD_RELOC_GPREL32
2450 || reloc_type[0] == BFD_RELOC_64
2451 || reloc_type[0] == BFD_RELOC_CTOR
2452 || reloc_type[0] == BFD_RELOC_MIPS_SUB
2453 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
2454 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
2455 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
2456 || reloc_type[0] == BFD_RELOC_MIPS_REL16
2457 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
2458 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
2459 || reloc_type[0] == BFD_RELOC_MIPS16_HI16_S
2460 || reloc_type[0] == BFD_RELOC_MIPS16_LO16))
2461 ip->fixp[0]->fx_no_overflow = 1;
2462
2463 if (mips_relax.sequence)
2464 {
2465 if (mips_relax.first_fixup == 0)
2466 mips_relax.first_fixup = ip->fixp[0];
2467 }
2468 else if (reloc_needs_lo_p (*reloc_type))
2469 {
2470 struct mips_hi_fixup *hi_fixup;
2471
2472 /* Reuse the last entry if it already has a matching %lo. */
2473 hi_fixup = mips_hi_fixup_list;
2474 if (hi_fixup == 0
2475 || !fixup_has_matching_lo_p (hi_fixup->fixp))
2476 {
2477 hi_fixup = ((struct mips_hi_fixup *)
2478 xmalloc (sizeof (struct mips_hi_fixup)));
2479 hi_fixup->next = mips_hi_fixup_list;
2480 mips_hi_fixup_list = hi_fixup;
2481 }
2482 hi_fixup->fixp = ip->fixp[0];
2483 hi_fixup->seg = now_seg;
2484 }
2485
2486 /* Add fixups for the second and third relocations, if given.
2487 Note that the ABI allows the second relocation to be
2488 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
2489 moment we only use RSS_UNDEF, but we could add support
2490 for the others if it ever becomes necessary. */
2491 for (i = 1; i < 3; i++)
2492 if (reloc_type[i] != BFD_RELOC_UNUSED)
2493 {
2494 ip->fixp[i] = fix_new (ip->frag, ip->where,
2495 ip->fixp[0]->fx_size, NULL, 0,
2496 FALSE, reloc_type[i]);
2497
2498 /* Use fx_tcbit to mark compound relocs. */
2499 ip->fixp[0]->fx_tcbit = 1;
2500 ip->fixp[i]->fx_tcbit = 1;
2501 }
2502 }
2503 }
2504 install_insn (ip);
2505
2506 /* Update the register mask information. */
2507 if (! mips_opts.mips16)
2508 {
2509 if (pinfo & INSN_WRITE_GPR_D)
2510 mips_gprmask |= 1 << EXTRACT_OPERAND (RD, *ip);
2511 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
2512 mips_gprmask |= 1 << EXTRACT_OPERAND (RT, *ip);
2513 if (pinfo & INSN_READ_GPR_S)
2514 mips_gprmask |= 1 << EXTRACT_OPERAND (RS, *ip);
2515 if (pinfo & INSN_WRITE_GPR_31)
2516 mips_gprmask |= 1 << RA;
2517 if (pinfo & INSN_WRITE_FPR_D)
2518 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FD, *ip);
2519 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
2520 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FS, *ip);
2521 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
2522 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FT, *ip);
2523 if ((pinfo & INSN_READ_FPR_R) != 0)
2524 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FR, *ip);
2525 if (pinfo & INSN_COP)
2526 {
2527 /* We don't keep enough information to sort these cases out.
2528 The itbl support does keep this information however, although
2529 we currently don't support itbl fprmats as part of the cop
2530 instruction. May want to add this support in the future. */
2531 }
2532 /* Never set the bit for $0, which is always zero. */
2533 mips_gprmask &= ~1 << 0;
2534 }
2535 else
2536 {
2537 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
2538 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RX, *ip);
2539 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
2540 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RY, *ip);
2541 if (pinfo & MIPS16_INSN_WRITE_Z)
2542 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RZ, *ip);
2543 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
2544 mips_gprmask |= 1 << TREG;
2545 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
2546 mips_gprmask |= 1 << SP;
2547 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
2548 mips_gprmask |= 1 << RA;
2549 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
2550 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
2551 if (pinfo & MIPS16_INSN_READ_Z)
2552 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip);
2553 if (pinfo & MIPS16_INSN_READ_GPR_X)
2554 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
2555 }
2556
2557 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
2558 {
2559 /* Filling the branch delay slot is more complex. We try to
2560 switch the branch with the previous instruction, which we can
2561 do if the previous instruction does not set up a condition
2562 that the branch tests and if the branch is not itself the
2563 target of any branch. */
2564 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
2565 || (pinfo & INSN_COND_BRANCH_DELAY))
2566 {
2567 if (mips_optimize < 2
2568 /* If we have seen .set volatile or .set nomove, don't
2569 optimize. */
2570 || mips_opts.nomove != 0
2571 /* We can't swap if the previous instruction's position
2572 is fixed. */
2573 || history[0].fixed_p
2574 /* If the previous previous insn was in a .set
2575 noreorder, we can't swap. Actually, the MIPS
2576 assembler will swap in this situation. However, gcc
2577 configured -with-gnu-as will generate code like
2578 .set noreorder
2579 lw $4,XXX
2580 .set reorder
2581 INSN
2582 bne $4,$0,foo
2583 in which we can not swap the bne and INSN. If gcc is
2584 not configured -with-gnu-as, it does not output the
2585 .set pseudo-ops. */
2586 || history[1].noreorder_p
2587 /* If the branch is itself the target of a branch, we
2588 can not swap. We cheat on this; all we check for is
2589 whether there is a label on this instruction. If
2590 there are any branches to anything other than a
2591 label, users must use .set noreorder. */
2592 || insn_labels != NULL
2593 /* If the previous instruction is in a variant frag
2594 other than this branch's one, we cannot do the swap.
2595 This does not apply to the mips16, which uses variant
2596 frags for different purposes. */
2597 || (! mips_opts.mips16
2598 && prev_insn_frag_type == rs_machine_dependent)
2599 /* Check for conflicts between the branch and the instructions
2600 before the candidate delay slot. */
2601 || nops_for_insn (history + 1, ip) > 0
2602 /* Check for conflicts between the swapped sequence and the
2603 target of the branch. */
2604 || nops_for_sequence (2, history + 1, ip, history) > 0
2605 /* We do not swap with a trap instruction, since it
2606 complicates trap handlers to have the trap
2607 instruction be in a delay slot. */
2608 || (prev_pinfo & INSN_TRAP)
2609 /* If the branch reads a register that the previous
2610 instruction sets, we can not swap. */
2611 || (! mips_opts.mips16
2612 && (prev_pinfo & INSN_WRITE_GPR_T)
2613 && insn_uses_reg (ip, EXTRACT_OPERAND (RT, history[0]),
2614 MIPS_GR_REG))
2615 || (! mips_opts.mips16
2616 && (prev_pinfo & INSN_WRITE_GPR_D)
2617 && insn_uses_reg (ip, EXTRACT_OPERAND (RD, history[0]),
2618 MIPS_GR_REG))
2619 || (mips_opts.mips16
2620 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
2621 && (insn_uses_reg
2622 (ip, MIPS16_EXTRACT_OPERAND (RX, history[0]),
2623 MIPS16_REG)))
2624 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
2625 && (insn_uses_reg
2626 (ip, MIPS16_EXTRACT_OPERAND (RY, history[0]),
2627 MIPS16_REG)))
2628 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
2629 && (insn_uses_reg
2630 (ip, MIPS16_EXTRACT_OPERAND (RZ, history[0]),
2631 MIPS16_REG)))
2632 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
2633 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
2634 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
2635 && insn_uses_reg (ip, RA, MIPS_GR_REG))
2636 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2637 && insn_uses_reg (ip,
2638 MIPS16OP_EXTRACT_REG32R
2639 (history[0].insn_opcode),
2640 MIPS_GR_REG))))
2641 /* If the branch writes a register that the previous
2642 instruction sets, we can not swap (we know that
2643 branches write only to RD or to $31). */
2644 || (! mips_opts.mips16
2645 && (prev_pinfo & INSN_WRITE_GPR_T)
2646 && (((pinfo & INSN_WRITE_GPR_D)
2647 && (EXTRACT_OPERAND (RT, history[0])
2648 == EXTRACT_OPERAND (RD, *ip)))
2649 || ((pinfo & INSN_WRITE_GPR_31)
2650 && EXTRACT_OPERAND (RT, history[0]) == RA)))
2651 || (! mips_opts.mips16
2652 && (prev_pinfo & INSN_WRITE_GPR_D)
2653 && (((pinfo & INSN_WRITE_GPR_D)
2654 && (EXTRACT_OPERAND (RD, history[0])
2655 == EXTRACT_OPERAND (RD, *ip)))
2656 || ((pinfo & INSN_WRITE_GPR_31)
2657 && EXTRACT_OPERAND (RD, history[0]) == RA)))
2658 || (mips_opts.mips16
2659 && (pinfo & MIPS16_INSN_WRITE_31)
2660 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
2661 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2662 && (MIPS16OP_EXTRACT_REG32R (history[0].insn_opcode)
2663 == RA))))
2664 /* If the branch writes a register that the previous
2665 instruction reads, we can not swap (we know that
2666 branches only write to RD or to $31). */
2667 || (! mips_opts.mips16
2668 && (pinfo & INSN_WRITE_GPR_D)
2669 && insn_uses_reg (&history[0],
2670 EXTRACT_OPERAND (RD, *ip),
2671 MIPS_GR_REG))
2672 || (! mips_opts.mips16
2673 && (pinfo & INSN_WRITE_GPR_31)
2674 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
2675 || (mips_opts.mips16
2676 && (pinfo & MIPS16_INSN_WRITE_31)
2677 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
2678 /* If one instruction sets a condition code and the
2679 other one uses a condition code, we can not swap. */
2680 || ((pinfo & INSN_READ_COND_CODE)
2681 && (prev_pinfo & INSN_WRITE_COND_CODE))
2682 || ((pinfo & INSN_WRITE_COND_CODE)
2683 && (prev_pinfo & INSN_READ_COND_CODE))
2684 /* If the previous instruction uses the PC, we can not
2685 swap. */
2686 || (mips_opts.mips16
2687 && (prev_pinfo & MIPS16_INSN_READ_PC))
2688 /* If the previous instruction had a fixup in mips16
2689 mode, we can not swap. This normally means that the
2690 previous instruction was a 4 byte branch anyhow. */
2691 || (mips_opts.mips16 && history[0].fixp[0])
2692 /* If the previous instruction is a sync, sync.l, or
2693 sync.p, we can not swap. */
2694 || (prev_pinfo & INSN_SYNC))
2695 {
2696 /* We could do even better for unconditional branches to
2697 portions of this object file; we could pick up the
2698 instruction at the destination, put it in the delay
2699 slot, and bump the destination address. */
2700 insert_into_history (0, 1, ip);
2701 emit_nop ();
2702 if (mips_relax.sequence)
2703 mips_relax.sizes[mips_relax.sequence - 1] += 4;
2704 }
2705 else
2706 {
2707 /* It looks like we can actually do the swap. */
2708 struct mips_cl_insn delay = history[0];
2709 if (mips_opts.mips16)
2710 {
2711 know (delay.frag == ip->frag);
2712 move_insn (ip, delay.frag, delay.where);
2713 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
2714 }
2715 else if (relaxed_branch)
2716 {
2717 /* Add the delay slot instruction to the end of the
2718 current frag and shrink the fixed part of the
2719 original frag. If the branch occupies the tail of
2720 the latter, move it backwards to cover the gap. */
2721 delay.frag->fr_fix -= 4;
2722 if (delay.frag == ip->frag)
2723 move_insn (ip, ip->frag, ip->where - 4);
2724 add_fixed_insn (&delay);
2725 }
2726 else
2727 {
2728 move_insn (&delay, ip->frag, ip->where);
2729 move_insn (ip, history[0].frag, history[0].where);
2730 }
2731 history[0] = *ip;
2732 delay.fixed_p = 1;
2733 insert_into_history (0, 1, &delay);
2734 }
2735
2736 /* If that was an unconditional branch, forget the previous
2737 insn information. */
2738 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
2739 mips_no_prev_insn ();
2740 }
2741 else if (pinfo & INSN_COND_BRANCH_LIKELY)
2742 {
2743 /* We don't yet optimize a branch likely. What we should do
2744 is look at the target, copy the instruction found there
2745 into the delay slot, and increment the branch to jump to
2746 the next instruction. */
2747 insert_into_history (0, 1, ip);
2748 emit_nop ();
2749 }
2750 else
2751 insert_into_history (0, 1, ip);
2752 }
2753 else
2754 insert_into_history (0, 1, ip);
2755
2756 /* We just output an insn, so the next one doesn't have a label. */
2757 mips_clear_insn_labels ();
2758 }
2759
2760 /* Forget that there was any previous instruction or label. */
2761
2762 static void
2763 mips_no_prev_insn (void)
2764 {
2765 prev_nop_frag = NULL;
2766 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
2767 mips_clear_insn_labels ();
2768 }
2769
2770 /* This function must be called before we emit something other than
2771 instructions. It is like mips_no_prev_insn except that it inserts
2772 any NOPS that might be needed by previous instructions. */
2773
2774 void
2775 mips_emit_delays (void)
2776 {
2777 if (! mips_opts.noreorder)
2778 {
2779 int nops = nops_for_insn (history, NULL);
2780 if (nops > 0)
2781 {
2782 while (nops-- > 0)
2783 add_fixed_insn (NOP_INSN);
2784 mips_move_labels ();
2785 }
2786 }
2787 mips_no_prev_insn ();
2788 }
2789
2790 /* Start a (possibly nested) noreorder block. */
2791
2792 static void
2793 start_noreorder (void)
2794 {
2795 if (mips_opts.noreorder == 0)
2796 {
2797 unsigned int i;
2798 int nops;
2799
2800 /* None of the instructions before the .set noreorder can be moved. */
2801 for (i = 0; i < ARRAY_SIZE (history); i++)
2802 history[i].fixed_p = 1;
2803
2804 /* Insert any nops that might be needed between the .set noreorder
2805 block and the previous instructions. We will later remove any
2806 nops that turn out not to be needed. */
2807 nops = nops_for_insn (history, NULL);
2808 if (nops > 0)
2809 {
2810 if (mips_optimize != 0)
2811 {
2812 /* Record the frag which holds the nop instructions, so
2813 that we can remove them if we don't need them. */
2814 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
2815 prev_nop_frag = frag_now;
2816 prev_nop_frag_holds = nops;
2817 prev_nop_frag_required = 0;
2818 prev_nop_frag_since = 0;
2819 }
2820
2821 for (; nops > 0; --nops)
2822 add_fixed_insn (NOP_INSN);
2823
2824 /* Move on to a new frag, so that it is safe to simply
2825 decrease the size of prev_nop_frag. */
2826 frag_wane (frag_now);
2827 frag_new (0);
2828 mips_move_labels ();
2829 }
2830 mips16_mark_labels ();
2831 mips_clear_insn_labels ();
2832 }
2833 mips_opts.noreorder++;
2834 mips_any_noreorder = 1;
2835 }
2836
2837 /* End a nested noreorder block. */
2838
2839 static void
2840 end_noreorder (void)
2841 {
2842 mips_opts.noreorder--;
2843 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
2844 {
2845 /* Commit to inserting prev_nop_frag_required nops and go back to
2846 handling nop insertion the .set reorder way. */
2847 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
2848 * (mips_opts.mips16 ? 2 : 4));
2849 insert_into_history (prev_nop_frag_since,
2850 prev_nop_frag_required, NOP_INSN);
2851 prev_nop_frag = NULL;
2852 }
2853 }
2854
2855 /* Set up global variables for the start of a new macro. */
2856
2857 static void
2858 macro_start (void)
2859 {
2860 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
2861 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
2862 && (history[0].insn_mo->pinfo
2863 & (INSN_UNCOND_BRANCH_DELAY
2864 | INSN_COND_BRANCH_DELAY
2865 | INSN_COND_BRANCH_LIKELY)) != 0);
2866 }
2867
2868 /* Given that a macro is longer than 4 bytes, return the appropriate warning
2869 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
2870 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
2871
2872 static const char *
2873 macro_warning (relax_substateT subtype)
2874 {
2875 if (subtype & RELAX_DELAY_SLOT)
2876 return _("Macro instruction expanded into multiple instructions"
2877 " in a branch delay slot");
2878 else if (subtype & RELAX_NOMACRO)
2879 return _("Macro instruction expanded into multiple instructions");
2880 else
2881 return 0;
2882 }
2883
2884 /* Finish up a macro. Emit warnings as appropriate. */
2885
2886 static void
2887 macro_end (void)
2888 {
2889 if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
2890 {
2891 relax_substateT subtype;
2892
2893 /* Set up the relaxation warning flags. */
2894 subtype = 0;
2895 if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
2896 subtype |= RELAX_SECOND_LONGER;
2897 if (mips_opts.warn_about_macros)
2898 subtype |= RELAX_NOMACRO;
2899 if (mips_macro_warning.delay_slot_p)
2900 subtype |= RELAX_DELAY_SLOT;
2901
2902 if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
2903 {
2904 /* Either the macro has a single implementation or both
2905 implementations are longer than 4 bytes. Emit the
2906 warning now. */
2907 const char *msg = macro_warning (subtype);
2908 if (msg != 0)
2909 as_warn (msg);
2910 }
2911 else
2912 {
2913 /* One implementation might need a warning but the other
2914 definitely doesn't. */
2915 mips_macro_warning.first_frag->fr_subtype |= subtype;
2916 }
2917 }
2918 }
2919
2920 /* Read a macro's relocation codes from *ARGS and store them in *R.
2921 The first argument in *ARGS will be either the code for a single
2922 relocation or -1 followed by the three codes that make up a
2923 composite relocation. */
2924
2925 static void
2926 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
2927 {
2928 int i, next;
2929
2930 next = va_arg (*args, int);
2931 if (next >= 0)
2932 r[0] = (bfd_reloc_code_real_type) next;
2933 else
2934 for (i = 0; i < 3; i++)
2935 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
2936 }
2937
2938 /* Build an instruction created by a macro expansion. This is passed
2939 a pointer to the count of instructions created so far, an
2940 expression, the name of the instruction to build, an operand format
2941 string, and corresponding arguments. */
2942
2943 static void
2944 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
2945 {
2946 const struct mips_opcode *mo;
2947 struct mips_cl_insn insn;
2948 bfd_reloc_code_real_type r[3];
2949 va_list args;
2950
2951 va_start (args, fmt);
2952
2953 if (mips_opts.mips16)
2954 {
2955 mips16_macro_build (ep, name, fmt, args);
2956 va_end (args);
2957 return;
2958 }
2959
2960 r[0] = BFD_RELOC_UNUSED;
2961 r[1] = BFD_RELOC_UNUSED;
2962 r[2] = BFD_RELOC_UNUSED;
2963 mo = (struct mips_opcode *) hash_find (op_hash, name);
2964 assert (mo);
2965 assert (strcmp (name, mo->name) == 0);
2966
2967 /* Search until we get a match for NAME. It is assumed here that
2968 macros will never generate MDMX or MIPS-3D instructions. */
2969 while (strcmp (fmt, mo->args) != 0
2970 || mo->pinfo == INSN_MACRO
2971 || !OPCODE_IS_MEMBER (mo,
2972 (mips_opts.isa
2973 | (file_ase_mips16 ? INSN_MIPS16 : 0)),
2974 mips_opts.arch)
2975 || (mips_opts.arch == CPU_R4650 && (mo->pinfo & FP_D) != 0))
2976 {
2977 ++mo;
2978 assert (mo->name);
2979 assert (strcmp (name, mo->name) == 0);
2980 }
2981
2982 create_insn (&insn, mo);
2983 for (;;)
2984 {
2985 switch (*fmt++)
2986 {
2987 case '\0':
2988 break;
2989
2990 case ',':
2991 case '(':
2992 case ')':
2993 continue;
2994
2995 case '+':
2996 switch (*fmt++)
2997 {
2998 case 'A':
2999 case 'E':
3000 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
3001 continue;
3002
3003 case 'B':
3004 case 'F':
3005 /* Note that in the macro case, these arguments are already
3006 in MSB form. (When handling the instruction in the
3007 non-macro case, these arguments are sizes from which
3008 MSB values must be calculated.) */
3009 INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
3010 continue;
3011
3012 case 'C':
3013 case 'G':
3014 case 'H':
3015 /* Note that in the macro case, these arguments are already
3016 in MSBD form. (When handling the instruction in the
3017 non-macro case, these arguments are sizes from which
3018 MSBD values must be calculated.) */
3019 INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
3020 continue;
3021
3022 default:
3023 internalError ();
3024 }
3025 continue;
3026
3027 case 't':
3028 case 'w':
3029 case 'E':
3030 INSERT_OPERAND (RT, insn, va_arg (args, int));
3031 continue;
3032
3033 case 'c':
3034 INSERT_OPERAND (CODE, insn, va_arg (args, int));
3035 continue;
3036
3037 case 'T':
3038 case 'W':
3039 INSERT_OPERAND (FT, insn, va_arg (args, int));
3040 continue;
3041
3042 case 'd':
3043 case 'G':
3044 case 'K':
3045 INSERT_OPERAND (RD, insn, va_arg (args, int));
3046 continue;
3047
3048 case 'U':
3049 {
3050 int tmp = va_arg (args, int);
3051
3052 INSERT_OPERAND (RT, insn, tmp);
3053 INSERT_OPERAND (RD, insn, tmp);
3054 continue;
3055 }
3056
3057 case 'V':
3058 case 'S':
3059 INSERT_OPERAND (FS, insn, va_arg (args, int));
3060 continue;
3061
3062 case 'z':
3063 continue;
3064
3065 case '<':
3066 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
3067 continue;
3068
3069 case 'D':
3070 INSERT_OPERAND (FD, insn, va_arg (args, int));
3071 continue;
3072
3073 case 'B':
3074 INSERT_OPERAND (CODE20, insn, va_arg (args, int));
3075 continue;
3076
3077 case 'J':
3078 INSERT_OPERAND (CODE19, insn, va_arg (args, int));
3079 continue;
3080
3081 case 'q':
3082 INSERT_OPERAND (CODE2, insn, va_arg (args, int));
3083 continue;
3084
3085 case 'b':
3086 case 's':
3087 case 'r':
3088 case 'v':
3089 INSERT_OPERAND (RS, insn, va_arg (args, int));
3090 continue;
3091
3092 case 'i':
3093 case 'j':
3094 case 'o':
3095 macro_read_relocs (&args, r);
3096 assert (*r == BFD_RELOC_GPREL16
3097 || *r == BFD_RELOC_MIPS_LITERAL
3098 || *r == BFD_RELOC_MIPS_HIGHER
3099 || *r == BFD_RELOC_HI16_S
3100 || *r == BFD_RELOC_LO16
3101 || *r == BFD_RELOC_MIPS_GOT16
3102 || *r == BFD_RELOC_MIPS_CALL16
3103 || *r == BFD_RELOC_MIPS_GOT_DISP
3104 || *r == BFD_RELOC_MIPS_GOT_PAGE
3105 || *r == BFD_RELOC_MIPS_GOT_OFST
3106 || *r == BFD_RELOC_MIPS_GOT_LO16
3107 || *r == BFD_RELOC_MIPS_CALL_LO16);
3108 continue;
3109
3110 case 'u':
3111 macro_read_relocs (&args, r);
3112 assert (ep != NULL
3113 && (ep->X_op == O_constant
3114 || (ep->X_op == O_symbol
3115 && (*r == BFD_RELOC_MIPS_HIGHEST
3116 || *r == BFD_RELOC_HI16_S
3117 || *r == BFD_RELOC_HI16
3118 || *r == BFD_RELOC_GPREL16
3119 || *r == BFD_RELOC_MIPS_GOT_HI16
3120 || *r == BFD_RELOC_MIPS_CALL_HI16))));
3121 continue;
3122
3123 case 'p':
3124 assert (ep != NULL);
3125 /*
3126 * This allows macro() to pass an immediate expression for
3127 * creating short branches without creating a symbol.
3128 * Note that the expression still might come from the assembly
3129 * input, in which case the value is not checked for range nor
3130 * is a relocation entry generated (yuck).
3131 */
3132 if (ep->X_op == O_constant)
3133 {
3134 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
3135 ep = NULL;
3136 }
3137 else
3138 *r = BFD_RELOC_16_PCREL_S2;
3139 continue;
3140
3141 case 'a':
3142 assert (ep != NULL);
3143 *r = BFD_RELOC_MIPS_JMP;
3144 continue;
3145
3146 case 'C':
3147 insn.insn_opcode |= va_arg (args, unsigned long);
3148 continue;
3149
3150 default:
3151 internalError ();
3152 }
3153 break;
3154 }
3155 va_end (args);
3156 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
3157
3158 append_insn (&insn, ep, r);
3159 }
3160
3161 static void
3162 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
3163 va_list args)
3164 {
3165 struct mips_opcode *mo;
3166 struct mips_cl_insn insn;
3167 bfd_reloc_code_real_type r[3]
3168 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3169
3170 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
3171 assert (mo);
3172 assert (strcmp (name, mo->name) == 0);
3173
3174 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
3175 {
3176 ++mo;
3177 assert (mo->name);
3178 assert (strcmp (name, mo->name) == 0);
3179 }
3180
3181 create_insn (&insn, mo);
3182 for (;;)
3183 {
3184 int c;
3185
3186 c = *fmt++;
3187 switch (c)
3188 {
3189 case '\0':
3190 break;
3191
3192 case ',':
3193 case '(':
3194 case ')':
3195 continue;
3196
3197 case 'y':
3198 case 'w':
3199 MIPS16_INSERT_OPERAND (RY, insn, va_arg (args, int));
3200 continue;
3201
3202 case 'x':
3203 case 'v':
3204 MIPS16_INSERT_OPERAND (RX, insn, va_arg (args, int));
3205 continue;
3206
3207 case 'z':
3208 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (args, int));
3209 continue;
3210
3211 case 'Z':
3212 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (args, int));
3213 continue;
3214
3215 case '0':
3216 case 'S':
3217 case 'P':
3218 case 'R':
3219 continue;
3220
3221 case 'X':
3222 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (args, int));
3223 continue;
3224
3225 case 'Y':
3226 {
3227 int regno;
3228
3229 regno = va_arg (args, int);
3230 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
3231 insn.insn_opcode |= regno << MIPS16OP_SH_REG32R;
3232 }
3233 continue;
3234
3235 case '<':
3236 case '>':
3237 case '4':
3238 case '5':
3239 case 'H':
3240 case 'W':
3241 case 'D':
3242 case 'j':
3243 case '8':
3244 case 'V':
3245 case 'C':
3246 case 'U':
3247 case 'k':
3248 case 'K':
3249 case 'p':
3250 case 'q':
3251 {
3252 assert (ep != NULL);
3253
3254 if (ep->X_op != O_constant)
3255 *r = (int) BFD_RELOC_UNUSED + c;
3256 else
3257 {
3258 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
3259 FALSE, &insn.insn_opcode, &insn.use_extend,
3260 &insn.extend);
3261 ep = NULL;
3262 *r = BFD_RELOC_UNUSED;
3263 }
3264 }
3265 continue;
3266
3267 case '6':
3268 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (args, int));
3269 continue;
3270 }
3271
3272 break;
3273 }
3274
3275 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
3276
3277 append_insn (&insn, ep, r);
3278 }
3279
3280 /*
3281 * Sign-extend 32-bit mode constants that have bit 31 set and all
3282 * higher bits unset.
3283 */
3284 static void
3285 normalize_constant_expr (expressionS *ex)
3286 {
3287 if (ex->X_op == O_constant
3288 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3289 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3290 - 0x80000000);
3291 }
3292
3293 /*
3294 * Sign-extend 32-bit mode address offsets that have bit 31 set and
3295 * all higher bits unset.
3296 */
3297 static void
3298 normalize_address_expr (expressionS *ex)
3299 {
3300 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
3301 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
3302 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3303 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3304 - 0x80000000);
3305 }
3306
3307 /*
3308 * Generate a "jalr" instruction with a relocation hint to the called
3309 * function. This occurs in NewABI PIC code.
3310 */
3311 static void
3312 macro_build_jalr (expressionS *ep)
3313 {
3314 char *f = NULL;
3315
3316 if (HAVE_NEWABI)
3317 {
3318 frag_grow (8);
3319 f = frag_more (0);
3320 }
3321 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
3322 if (HAVE_NEWABI)
3323 fix_new_exp (frag_now, f - frag_now->fr_literal,
3324 4, ep, FALSE, BFD_RELOC_MIPS_JALR);
3325 }
3326
3327 /*
3328 * Generate a "lui" instruction.
3329 */
3330 static void
3331 macro_build_lui (expressionS *ep, int regnum)
3332 {
3333 expressionS high_expr;
3334 const struct mips_opcode *mo;
3335 struct mips_cl_insn insn;
3336 bfd_reloc_code_real_type r[3]
3337 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3338 const char *name = "lui";
3339 const char *fmt = "t,u";
3340
3341 assert (! mips_opts.mips16);
3342
3343 high_expr = *ep;
3344
3345 if (high_expr.X_op == O_constant)
3346 {
3347 /* we can compute the instruction now without a relocation entry */
3348 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
3349 >> 16) & 0xffff;
3350 *r = BFD_RELOC_UNUSED;
3351 }
3352 else
3353 {
3354 assert (ep->X_op == O_symbol);
3355 /* _gp_disp is a special case, used from s_cpload.
3356 __gnu_local_gp is used if mips_no_shared. */
3357 assert (mips_pic == NO_PIC
3358 || (! HAVE_NEWABI
3359 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
3360 || (! mips_in_shared
3361 && strcmp (S_GET_NAME (ep->X_add_symbol),
3362 "__gnu_local_gp") == 0));
3363 *r = BFD_RELOC_HI16_S;
3364 }
3365
3366 mo = hash_find (op_hash, name);
3367 assert (strcmp (name, mo->name) == 0);
3368 assert (strcmp (fmt, mo->args) == 0);
3369 create_insn (&insn, mo);
3370
3371 insn.insn_opcode = insn.insn_mo->match;
3372 INSERT_OPERAND (RT, insn, regnum);
3373 if (*r == BFD_RELOC_UNUSED)
3374 {
3375 insn.insn_opcode |= high_expr.X_add_number;
3376 append_insn (&insn, NULL, r);
3377 }
3378 else
3379 append_insn (&insn, &high_expr, r);
3380 }
3381
3382 /* Generate a sequence of instructions to do a load or store from a constant
3383 offset off of a base register (breg) into/from a target register (treg),
3384 using AT if necessary. */
3385 static void
3386 macro_build_ldst_constoffset (expressionS *ep, const char *op,
3387 int treg, int breg, int dbl)
3388 {
3389 assert (ep->X_op == O_constant);
3390
3391 /* Sign-extending 32-bit constants makes their handling easier. */
3392 if (!dbl)
3393 normalize_constant_expr (ep);
3394
3395 /* Right now, this routine can only handle signed 32-bit constants. */
3396 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
3397 as_warn (_("operand overflow"));
3398
3399 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
3400 {
3401 /* Signed 16-bit offset will fit in the op. Easy! */
3402 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
3403 }
3404 else
3405 {
3406 /* 32-bit offset, need multiple instructions and AT, like:
3407 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
3408 addu $tempreg,$tempreg,$breg
3409 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
3410 to handle the complete offset. */
3411 macro_build_lui (ep, AT);
3412 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
3413 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
3414
3415 if (mips_opts.noat)
3416 as_bad (_("Macro used $at after \".set noat\""));
3417 }
3418 }
3419
3420 /* set_at()
3421 * Generates code to set the $at register to true (one)
3422 * if reg is less than the immediate expression.
3423 */
3424 static void
3425 set_at (int reg, int unsignedp)
3426 {
3427 if (imm_expr.X_op == O_constant
3428 && imm_expr.X_add_number >= -0x8000
3429 && imm_expr.X_add_number < 0x8000)
3430 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
3431 AT, reg, BFD_RELOC_LO16);
3432 else
3433 {
3434 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
3435 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
3436 }
3437 }
3438
3439 /* Warn if an expression is not a constant. */
3440
3441 static void
3442 check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
3443 {
3444 if (ex->X_op == O_big)
3445 as_bad (_("unsupported large constant"));
3446 else if (ex->X_op != O_constant)
3447 as_bad (_("Instruction %s requires absolute expression"),
3448 ip->insn_mo->name);
3449
3450 if (HAVE_32BIT_GPRS)
3451 normalize_constant_expr (ex);
3452 }
3453
3454 /* Count the leading zeroes by performing a binary chop. This is a
3455 bulky bit of source, but performance is a LOT better for the
3456 majority of values than a simple loop to count the bits:
3457 for (lcnt = 0; (lcnt < 32); lcnt++)
3458 if ((v) & (1 << (31 - lcnt)))
3459 break;
3460 However it is not code size friendly, and the gain will drop a bit
3461 on certain cached systems.
3462 */
3463 #define COUNT_TOP_ZEROES(v) \
3464 (((v) & ~0xffff) == 0 \
3465 ? ((v) & ~0xff) == 0 \
3466 ? ((v) & ~0xf) == 0 \
3467 ? ((v) & ~0x3) == 0 \
3468 ? ((v) & ~0x1) == 0 \
3469 ? !(v) \
3470 ? 32 \
3471 : 31 \
3472 : 30 \
3473 : ((v) & ~0x7) == 0 \
3474 ? 29 \
3475 : 28 \
3476 : ((v) & ~0x3f) == 0 \
3477 ? ((v) & ~0x1f) == 0 \
3478 ? 27 \
3479 : 26 \
3480 : ((v) & ~0x7f) == 0 \
3481 ? 25 \
3482 : 24 \
3483 : ((v) & ~0xfff) == 0 \
3484 ? ((v) & ~0x3ff) == 0 \
3485 ? ((v) & ~0x1ff) == 0 \
3486 ? 23 \
3487 : 22 \
3488 : ((v) & ~0x7ff) == 0 \
3489 ? 21 \
3490 : 20 \
3491 : ((v) & ~0x3fff) == 0 \
3492 ? ((v) & ~0x1fff) == 0 \
3493 ? 19 \
3494 : 18 \
3495 : ((v) & ~0x7fff) == 0 \
3496 ? 17 \
3497 : 16 \
3498 : ((v) & ~0xffffff) == 0 \
3499 ? ((v) & ~0xfffff) == 0 \
3500 ? ((v) & ~0x3ffff) == 0 \
3501 ? ((v) & ~0x1ffff) == 0 \
3502 ? 15 \
3503 : 14 \
3504 : ((v) & ~0x7ffff) == 0 \
3505 ? 13 \
3506 : 12 \
3507 : ((v) & ~0x3fffff) == 0 \
3508 ? ((v) & ~0x1fffff) == 0 \
3509 ? 11 \
3510 : 10 \
3511 : ((v) & ~0x7fffff) == 0 \
3512 ? 9 \
3513 : 8 \
3514 : ((v) & ~0xfffffff) == 0 \
3515 ? ((v) & ~0x3ffffff) == 0 \
3516 ? ((v) & ~0x1ffffff) == 0 \
3517 ? 7 \
3518 : 6 \
3519 : ((v) & ~0x7ffffff) == 0 \
3520 ? 5 \
3521 : 4 \
3522 : ((v) & ~0x3fffffff) == 0 \
3523 ? ((v) & ~0x1fffffff) == 0 \
3524 ? 3 \
3525 : 2 \
3526 : ((v) & ~0x7fffffff) == 0 \
3527 ? 1 \
3528 : 0)
3529
3530 /* load_register()
3531 * This routine generates the least number of instructions necessary to load
3532 * an absolute expression value into a register.
3533 */
3534 static void
3535 load_register (int reg, expressionS *ep, int dbl)
3536 {
3537 int freg;
3538 expressionS hi32, lo32;
3539
3540 if (ep->X_op != O_big)
3541 {
3542 assert (ep->X_op == O_constant);
3543
3544 /* Sign-extending 32-bit constants makes their handling easier. */
3545 if (!dbl)
3546 normalize_constant_expr (ep);
3547
3548 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
3549 {
3550 /* We can handle 16 bit signed values with an addiu to
3551 $zero. No need to ever use daddiu here, since $zero and
3552 the result are always correct in 32 bit mode. */
3553 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3554 return;
3555 }
3556 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
3557 {
3558 /* We can handle 16 bit unsigned values with an ori to
3559 $zero. */
3560 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
3561 return;
3562 }
3563 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
3564 {
3565 /* 32 bit values require an lui. */
3566 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
3567 if ((ep->X_add_number & 0xffff) != 0)
3568 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
3569 return;
3570 }
3571 }
3572
3573 /* The value is larger than 32 bits. */
3574
3575 if (!dbl || HAVE_32BIT_GPRS)
3576 {
3577 char value[32];
3578
3579 sprintf_vma (value, ep->X_add_number);
3580 as_bad (_("Number (0x%s) larger than 32 bits"), value);
3581 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3582 return;
3583 }
3584
3585 if (ep->X_op != O_big)
3586 {
3587 hi32 = *ep;
3588 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3589 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3590 hi32.X_add_number &= 0xffffffff;
3591 lo32 = *ep;
3592 lo32.X_add_number &= 0xffffffff;
3593 }
3594 else
3595 {
3596 assert (ep->X_add_number > 2);
3597 if (ep->X_add_number == 3)
3598 generic_bignum[3] = 0;
3599 else if (ep->X_add_number > 4)
3600 as_bad (_("Number larger than 64 bits"));
3601 lo32.X_op = O_constant;
3602 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
3603 hi32.X_op = O_constant;
3604 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
3605 }
3606
3607 if (hi32.X_add_number == 0)
3608 freg = 0;
3609 else
3610 {
3611 int shift, bit;
3612 unsigned long hi, lo;
3613
3614 if (hi32.X_add_number == (offsetT) 0xffffffff)
3615 {
3616 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
3617 {
3618 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3619 return;
3620 }
3621 if (lo32.X_add_number & 0x80000000)
3622 {
3623 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
3624 if (lo32.X_add_number & 0xffff)
3625 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
3626 return;
3627 }
3628 }
3629
3630 /* Check for 16bit shifted constant. We know that hi32 is
3631 non-zero, so start the mask on the first bit of the hi32
3632 value. */
3633 shift = 17;
3634 do
3635 {
3636 unsigned long himask, lomask;
3637
3638 if (shift < 32)
3639 {
3640 himask = 0xffff >> (32 - shift);
3641 lomask = (0xffff << shift) & 0xffffffff;
3642 }
3643 else
3644 {
3645 himask = 0xffff << (shift - 32);
3646 lomask = 0;
3647 }
3648 if ((hi32.X_add_number & ~(offsetT) himask) == 0
3649 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
3650 {
3651 expressionS tmp;
3652
3653 tmp.X_op = O_constant;
3654 if (shift < 32)
3655 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
3656 | (lo32.X_add_number >> shift));
3657 else
3658 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
3659 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
3660 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
3661 reg, reg, (shift >= 32) ? shift - 32 : shift);
3662 return;
3663 }
3664 ++shift;
3665 }
3666 while (shift <= (64 - 16));
3667
3668 /* Find the bit number of the lowest one bit, and store the
3669 shifted value in hi/lo. */
3670 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
3671 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
3672 if (lo != 0)
3673 {
3674 bit = 0;
3675 while ((lo & 1) == 0)
3676 {
3677 lo >>= 1;
3678 ++bit;
3679 }
3680 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
3681 hi >>= bit;
3682 }
3683 else
3684 {
3685 bit = 32;
3686 while ((hi & 1) == 0)
3687 {
3688 hi >>= 1;
3689 ++bit;
3690 }
3691 lo = hi;
3692 hi = 0;
3693 }
3694
3695 /* Optimize if the shifted value is a (power of 2) - 1. */
3696 if ((hi == 0 && ((lo + 1) & lo) == 0)
3697 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
3698 {
3699 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
3700 if (shift != 0)
3701 {
3702 expressionS tmp;
3703
3704 /* This instruction will set the register to be all
3705 ones. */
3706 tmp.X_op = O_constant;
3707 tmp.X_add_number = (offsetT) -1;
3708 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3709 if (bit != 0)
3710 {
3711 bit += shift;
3712 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
3713 reg, reg, (bit >= 32) ? bit - 32 : bit);
3714 }
3715 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
3716 reg, reg, (shift >= 32) ? shift - 32 : shift);
3717 return;
3718 }
3719 }
3720
3721 /* Sign extend hi32 before calling load_register, because we can
3722 generally get better code when we load a sign extended value. */
3723 if ((hi32.X_add_number & 0x80000000) != 0)
3724 hi32.X_add_number |= ~(offsetT) 0xffffffff;
3725 load_register (reg, &hi32, 0);
3726 freg = reg;
3727 }
3728 if ((lo32.X_add_number & 0xffff0000) == 0)
3729 {
3730 if (freg != 0)
3731 {
3732 macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
3733 freg = reg;
3734 }
3735 }
3736 else
3737 {
3738 expressionS mid16;
3739
3740 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
3741 {
3742 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
3743 macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
3744 return;
3745 }
3746
3747 if (freg != 0)
3748 {
3749 macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
3750 freg = reg;
3751 }
3752 mid16 = lo32;
3753 mid16.X_add_number >>= 16;
3754 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
3755 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
3756 freg = reg;
3757 }
3758 if ((lo32.X_add_number & 0xffff) != 0)
3759 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
3760 }
3761
3762 static inline void
3763 load_delay_nop (void)
3764 {
3765 if (!gpr_interlocks)
3766 macro_build (NULL, "nop", "");
3767 }
3768
3769 /* Load an address into a register. */
3770
3771 static void
3772 load_address (int reg, expressionS *ep, int *used_at)
3773 {
3774 if (ep->X_op != O_constant
3775 && ep->X_op != O_symbol)
3776 {
3777 as_bad (_("expression too complex"));
3778 ep->X_op = O_constant;
3779 }
3780
3781 if (ep->X_op == O_constant)
3782 {
3783 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
3784 return;
3785 }
3786
3787 if (mips_pic == NO_PIC)
3788 {
3789 /* If this is a reference to a GP relative symbol, we want
3790 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
3791 Otherwise we want
3792 lui $reg,<sym> (BFD_RELOC_HI16_S)
3793 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3794 If we have an addend, we always use the latter form.
3795
3796 With 64bit address space and a usable $at we want
3797 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3798 lui $at,<sym> (BFD_RELOC_HI16_S)
3799 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3800 daddiu $at,<sym> (BFD_RELOC_LO16)
3801 dsll32 $reg,0
3802 daddu $reg,$reg,$at
3803
3804 If $at is already in use, we use a path which is suboptimal
3805 on superscalar processors.
3806 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3807 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3808 dsll $reg,16
3809 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
3810 dsll $reg,16
3811 daddiu $reg,<sym> (BFD_RELOC_LO16)
3812
3813 For GP relative symbols in 64bit address space we can use
3814 the same sequence as in 32bit address space. */
3815 if (HAVE_64BIT_SYMBOLS)
3816 {
3817 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
3818 && !nopic_need_relax (ep->X_add_symbol, 1))
3819 {
3820 relax_start (ep->X_add_symbol);
3821 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
3822 mips_gp_register, BFD_RELOC_GPREL16);
3823 relax_switch ();
3824 }
3825
3826 if (*used_at == 0 && !mips_opts.noat)
3827 {
3828 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
3829 macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
3830 macro_build (ep, "daddiu", "t,r,j", reg, reg,
3831 BFD_RELOC_MIPS_HIGHER);
3832 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
3833 macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
3834 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
3835 *used_at = 1;
3836 }
3837 else
3838 {
3839 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
3840 macro_build (ep, "daddiu", "t,r,j", reg, reg,
3841 BFD_RELOC_MIPS_HIGHER);
3842 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
3843 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
3844 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
3845 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
3846 }
3847
3848 if (mips_relax.sequence)
3849 relax_end ();
3850 }
3851 else
3852 {
3853 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
3854 && !nopic_need_relax (ep->X_add_symbol, 1))
3855 {
3856 relax_start (ep->X_add_symbol);
3857 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
3858 mips_gp_register, BFD_RELOC_GPREL16);
3859 relax_switch ();
3860 }
3861 macro_build_lui (ep, reg);
3862 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
3863 reg, reg, BFD_RELOC_LO16);
3864 if (mips_relax.sequence)
3865 relax_end ();
3866 }
3867 }
3868 else if (mips_pic == SVR4_PIC && ! mips_big_got)
3869 {
3870 expressionS ex;
3871
3872 /* If this is a reference to an external symbol, we want
3873 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3874 Otherwise we want
3875 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3876 nop
3877 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3878 If there is a constant, it must be added in after.
3879
3880 If we have NewABI, we want
3881 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
3882 unless we're referencing a global symbol with a non-zero
3883 offset, in which case cst must be added separately. */
3884 if (HAVE_NEWABI)
3885 {
3886 if (ep->X_add_number)
3887 {
3888 ex.X_add_number = ep->X_add_number;
3889 ep->X_add_number = 0;
3890 relax_start (ep->X_add_symbol);
3891 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3892 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
3893 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3894 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3895 ex.X_op = O_constant;
3896 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
3897 reg, reg, BFD_RELOC_LO16);
3898 ep->X_add_number = ex.X_add_number;
3899 relax_switch ();
3900 }
3901 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3902 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
3903 if (mips_relax.sequence)
3904 relax_end ();
3905 }
3906 else
3907 {
3908 ex.X_add_number = ep->X_add_number;
3909 ep->X_add_number = 0;
3910 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3911 BFD_RELOC_MIPS_GOT16, mips_gp_register);
3912 load_delay_nop ();
3913 relax_start (ep->X_add_symbol);
3914 relax_switch ();
3915 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3916 BFD_RELOC_LO16);
3917 relax_end ();
3918
3919 if (ex.X_add_number != 0)
3920 {
3921 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3922 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3923 ex.X_op = O_constant;
3924 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
3925 reg, reg, BFD_RELOC_LO16);
3926 }
3927 }
3928 }
3929 else if (mips_pic == SVR4_PIC)
3930 {
3931 expressionS ex;
3932
3933 /* This is the large GOT case. If this is a reference to an
3934 external symbol, we want
3935 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
3936 addu $reg,$reg,$gp
3937 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
3938
3939 Otherwise, for a reference to a local symbol in old ABI, we want
3940 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3941 nop
3942 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3943 If there is a constant, it must be added in after.
3944
3945 In the NewABI, for local symbols, with or without offsets, we want:
3946 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
3947 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
3948 */
3949 if (HAVE_NEWABI)
3950 {
3951 ex.X_add_number = ep->X_add_number;
3952 ep->X_add_number = 0;
3953 relax_start (ep->X_add_symbol);
3954 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
3955 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
3956 reg, reg, mips_gp_register);
3957 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
3958 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
3959 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3960 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3961 else if (ex.X_add_number)
3962 {
3963 ex.X_op = O_constant;
3964 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3965 BFD_RELOC_LO16);
3966 }
3967
3968 ep->X_add_number = ex.X_add_number;
3969 relax_switch ();
3970 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3971 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
3972 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3973 BFD_RELOC_MIPS_GOT_OFST);
3974 relax_end ();
3975 }
3976 else
3977 {
3978 ex.X_add_number = ep->X_add_number;
3979 ep->X_add_number = 0;
3980 relax_start (ep->X_add_symbol);
3981 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
3982 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
3983 reg, reg, mips_gp_register);
3984 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
3985 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
3986 relax_switch ();
3987 if (reg_needs_delay (mips_gp_register))
3988 {
3989 /* We need a nop before loading from $gp. This special
3990 check is required because the lui which starts the main
3991 instruction stream does not refer to $gp, and so will not
3992 insert the nop which may be required. */
3993 macro_build (NULL, "nop", "");
3994 }
3995 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3996 BFD_RELOC_MIPS_GOT16, mips_gp_register);
3997 load_delay_nop ();
3998 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3999 BFD_RELOC_LO16);
4000 relax_end ();
4001
4002 if (ex.X_add_number != 0)
4003 {
4004 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4005 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4006 ex.X_op = O_constant;
4007 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
4008 BFD_RELOC_LO16);
4009 }
4010 }
4011 }
4012 else
4013 abort ();
4014
4015 if (mips_opts.noat && *used_at == 1)
4016 as_bad (_("Macro used $at after \".set noat\""));
4017 }
4018
4019 /* Move the contents of register SOURCE into register DEST. */
4020
4021 static void
4022 move_register (int dest, int source)
4023 {
4024 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4025 dest, source, 0);
4026 }
4027
4028 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
4029 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4030 The two alternatives are:
4031
4032 Global symbol Local sybmol
4033 ------------- ------------
4034 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4035 ... ...
4036 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4037
4038 load_got_offset emits the first instruction and add_got_offset
4039 emits the second for a 16-bit offset or add_got_offset_hilo emits
4040 a sequence to add a 32-bit offset using a scratch register. */
4041
4042 static void
4043 load_got_offset (int dest, expressionS *local)
4044 {
4045 expressionS global;
4046
4047 global = *local;
4048 global.X_add_number = 0;
4049
4050 relax_start (local->X_add_symbol);
4051 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4052 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4053 relax_switch ();
4054 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4055 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4056 relax_end ();
4057 }
4058
4059 static void
4060 add_got_offset (int dest, expressionS *local)
4061 {
4062 expressionS global;
4063
4064 global.X_op = O_constant;
4065 global.X_op_symbol = NULL;
4066 global.X_add_symbol = NULL;
4067 global.X_add_number = local->X_add_number;
4068
4069 relax_start (local->X_add_symbol);
4070 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4071 dest, dest, BFD_RELOC_LO16);
4072 relax_switch ();
4073 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4074 relax_end ();
4075 }
4076
4077 static void
4078 add_got_offset_hilo (int dest, expressionS *local, int tmp)
4079 {
4080 expressionS global;
4081 int hold_mips_optimize;
4082
4083 global.X_op = O_constant;
4084 global.X_op_symbol = NULL;
4085 global.X_add_symbol = NULL;
4086 global.X_add_number = local->X_add_number;
4087
4088 relax_start (local->X_add_symbol);
4089 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
4090 relax_switch ();
4091 /* Set mips_optimize around the lui instruction to avoid
4092 inserting an unnecessary nop after the lw. */
4093 hold_mips_optimize = mips_optimize;
4094 mips_optimize = 2;
4095 macro_build_lui (&global, tmp);
4096 mips_optimize = hold_mips_optimize;
4097 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
4098 relax_end ();
4099
4100 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
4101 }
4102
4103 /*
4104 * Build macros
4105 * This routine implements the seemingly endless macro or synthesized
4106 * instructions and addressing modes in the mips assembly language. Many
4107 * of these macros are simple and are similar to each other. These could
4108 * probably be handled by some kind of table or grammar approach instead of
4109 * this verbose method. Others are not simple macros but are more like
4110 * optimizing code generation.
4111 * One interesting optimization is when several store macros appear
4112 * consecutively that would load AT with the upper half of the same address.
4113 * The ensuing load upper instructions are ommited. This implies some kind
4114 * of global optimization. We currently only optimize within a single macro.
4115 * For many of the load and store macros if the address is specified as a
4116 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4117 * first load register 'at' with zero and use it as the base register. The
4118 * mips assembler simply uses register $zero. Just one tiny optimization
4119 * we're missing.
4120 */
4121 static void
4122 macro (struct mips_cl_insn *ip)
4123 {
4124 register int treg, sreg, dreg, breg;
4125 int tempreg;
4126 int mask;
4127 int used_at = 0;
4128 expressionS expr1;
4129 const char *s;
4130 const char *s2;
4131 const char *fmt;
4132 int likely = 0;
4133 int dbl = 0;
4134 int coproc = 0;
4135 int lr = 0;
4136 int imm = 0;
4137 int call = 0;
4138 int off;
4139 offsetT maxnum;
4140 bfd_reloc_code_real_type r;
4141 int hold_mips_optimize;
4142
4143 assert (! mips_opts.mips16);
4144
4145 treg = (ip->insn_opcode >> 16) & 0x1f;
4146 dreg = (ip->insn_opcode >> 11) & 0x1f;
4147 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
4148 mask = ip->insn_mo->mask;
4149
4150 expr1.X_op = O_constant;
4151 expr1.X_op_symbol = NULL;
4152 expr1.X_add_symbol = NULL;
4153 expr1.X_add_number = 1;
4154
4155 switch (mask)
4156 {
4157 case M_DABS:
4158 dbl = 1;
4159 case M_ABS:
4160 /* bgez $a0,.+12
4161 move v0,$a0
4162 sub v0,$zero,$a0
4163 */
4164
4165 start_noreorder ();
4166
4167 expr1.X_add_number = 8;
4168 macro_build (&expr1, "bgez", "s,p", sreg);
4169 if (dreg == sreg)
4170 macro_build (NULL, "nop", "", 0);
4171 else
4172 move_register (dreg, sreg);
4173 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
4174
4175 end_noreorder ();
4176 break;
4177
4178 case M_ADD_I:
4179 s = "addi";
4180 s2 = "add";
4181 goto do_addi;
4182 case M_ADDU_I:
4183 s = "addiu";
4184 s2 = "addu";
4185 goto do_addi;
4186 case M_DADD_I:
4187 dbl = 1;
4188 s = "daddi";
4189 s2 = "dadd";
4190 goto do_addi;
4191 case M_DADDU_I:
4192 dbl = 1;
4193 s = "daddiu";
4194 s2 = "daddu";
4195 do_addi:
4196 if (imm_expr.X_op == O_constant
4197 && imm_expr.X_add_number >= -0x8000
4198 && imm_expr.X_add_number < 0x8000)
4199 {
4200 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
4201 break;
4202 }
4203 used_at = 1;
4204 load_register (AT, &imm_expr, dbl);
4205 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
4206 break;
4207
4208 case M_AND_I:
4209 s = "andi";
4210 s2 = "and";
4211 goto do_bit;
4212 case M_OR_I:
4213 s = "ori";
4214 s2 = "or";
4215 goto do_bit;
4216 case M_NOR_I:
4217 s = "";
4218 s2 = "nor";
4219 goto do_bit;
4220 case M_XOR_I:
4221 s = "xori";
4222 s2 = "xor";
4223 do_bit:
4224 if (imm_expr.X_op == O_constant
4225 && imm_expr.X_add_number >= 0
4226 && imm_expr.X_add_number < 0x10000)
4227 {
4228 if (mask != M_NOR_I)
4229 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
4230 else
4231 {
4232 macro_build (&imm_expr, "ori", "t,r,i",
4233 treg, sreg, BFD_RELOC_LO16);
4234 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
4235 }
4236 break;
4237 }
4238
4239 used_at = 1;
4240 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4241 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
4242 break;
4243
4244 case M_BEQ_I:
4245 s = "beq";
4246 goto beq_i;
4247 case M_BEQL_I:
4248 s = "beql";
4249 likely = 1;
4250 goto beq_i;
4251 case M_BNE_I:
4252 s = "bne";
4253 goto beq_i;
4254 case M_BNEL_I:
4255 s = "bnel";
4256 likely = 1;
4257 beq_i:
4258 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4259 {
4260 macro_build (&offset_expr, s, "s,t,p", sreg, 0);
4261 break;
4262 }
4263 used_at = 1;
4264 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4265 macro_build (&offset_expr, s, "s,t,p", sreg, AT);
4266 break;
4267
4268 case M_BGEL:
4269 likely = 1;
4270 case M_BGE:
4271 if (treg == 0)
4272 {
4273 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
4274 break;
4275 }
4276 if (sreg == 0)
4277 {
4278 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
4279 break;
4280 }
4281 used_at = 1;
4282 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4283 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4284 break;
4285
4286 case M_BGTL_I:
4287 likely = 1;
4288 case M_BGT_I:
4289 /* check for > max integer */
4290 maxnum = 0x7fffffff;
4291 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4292 {
4293 maxnum <<= 16;
4294 maxnum |= 0xffff;
4295 maxnum <<= 16;
4296 maxnum |= 0xffff;
4297 }
4298 if (imm_expr.X_op == O_constant
4299 && imm_expr.X_add_number >= maxnum
4300 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4301 {
4302 do_false:
4303 /* result is always false */
4304 if (! likely)
4305 macro_build (NULL, "nop", "", 0);
4306 else
4307 macro_build (&offset_expr, "bnel", "s,t,p", 0, 0);
4308 break;
4309 }
4310 if (imm_expr.X_op != O_constant)
4311 as_bad (_("Unsupported large constant"));
4312 ++imm_expr.X_add_number;
4313 /* FALLTHROUGH */
4314 case M_BGE_I:
4315 case M_BGEL_I:
4316 if (mask == M_BGEL_I)
4317 likely = 1;
4318 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4319 {
4320 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
4321 break;
4322 }
4323 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4324 {
4325 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
4326 break;
4327 }
4328 maxnum = 0x7fffffff;
4329 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4330 {
4331 maxnum <<= 16;
4332 maxnum |= 0xffff;
4333 maxnum <<= 16;
4334 maxnum |= 0xffff;
4335 }
4336 maxnum = - maxnum - 1;
4337 if (imm_expr.X_op == O_constant
4338 && imm_expr.X_add_number <= maxnum
4339 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4340 {
4341 do_true:
4342 /* result is always true */
4343 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
4344 macro_build (&offset_expr, "b", "p");
4345 break;
4346 }
4347 used_at = 1;
4348 set_at (sreg, 0);
4349 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4350 break;
4351
4352 case M_BGEUL:
4353 likely = 1;
4354 case M_BGEU:
4355 if (treg == 0)
4356 goto do_true;
4357 if (sreg == 0)
4358 {
4359 macro_build (&offset_expr, likely ? "beql" : "beq",
4360 "s,t,p", 0, treg);
4361 break;
4362 }
4363 used_at = 1;
4364 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4365 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4366 break;
4367
4368 case M_BGTUL_I:
4369 likely = 1;
4370 case M_BGTU_I:
4371 if (sreg == 0
4372 || (HAVE_32BIT_GPRS
4373 && imm_expr.X_op == O_constant
4374 && imm_expr.X_add_number == (offsetT) 0xffffffff))
4375 goto do_false;
4376 if (imm_expr.X_op != O_constant)
4377 as_bad (_("Unsupported large constant"));
4378 ++imm_expr.X_add_number;
4379 /* FALLTHROUGH */
4380 case M_BGEU_I:
4381 case M_BGEUL_I:
4382 if (mask == M_BGEUL_I)
4383 likely = 1;
4384 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4385 goto do_true;
4386 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4387 {
4388 macro_build (&offset_expr, likely ? "bnel" : "bne",
4389 "s,t,p", sreg, 0);
4390 break;
4391 }
4392 used_at = 1;
4393 set_at (sreg, 1);
4394 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4395 break;
4396
4397 case M_BGTL:
4398 likely = 1;
4399 case M_BGT:
4400 if (treg == 0)
4401 {
4402 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
4403 break;
4404 }
4405 if (sreg == 0)
4406 {
4407 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
4408 break;
4409 }
4410 used_at = 1;
4411 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
4412 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4413 break;
4414
4415 case M_BGTUL:
4416 likely = 1;
4417 case M_BGTU:
4418 if (treg == 0)
4419 {
4420 macro_build (&offset_expr, likely ? "bnel" : "bne",
4421 "s,t,p", sreg, 0);
4422 break;
4423 }
4424 if (sreg == 0)
4425 goto do_false;
4426 used_at = 1;
4427 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
4428 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4429 break;
4430
4431 case M_BLEL:
4432 likely = 1;
4433 case M_BLE:
4434 if (treg == 0)
4435 {
4436 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
4437 break;
4438 }
4439 if (sreg == 0)
4440 {
4441 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
4442 break;
4443 }
4444 used_at = 1;
4445 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
4446 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4447 break;
4448
4449 case M_BLEL_I:
4450 likely = 1;
4451 case M_BLE_I:
4452 maxnum = 0x7fffffff;
4453 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4454 {
4455 maxnum <<= 16;
4456 maxnum |= 0xffff;
4457 maxnum <<= 16;
4458 maxnum |= 0xffff;
4459 }
4460 if (imm_expr.X_op == O_constant
4461 && imm_expr.X_add_number >= maxnum
4462 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4463 goto do_true;
4464 if (imm_expr.X_op != O_constant)
4465 as_bad (_("Unsupported large constant"));
4466 ++imm_expr.X_add_number;
4467 /* FALLTHROUGH */
4468 case M_BLT_I:
4469 case M_BLTL_I:
4470 if (mask == M_BLTL_I)
4471 likely = 1;
4472 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4473 {
4474 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
4475 break;
4476 }
4477 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4478 {
4479 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
4480 break;
4481 }
4482 used_at = 1;
4483 set_at (sreg, 0);
4484 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4485 break;
4486
4487 case M_BLEUL:
4488 likely = 1;
4489 case M_BLEU:
4490 if (treg == 0)
4491 {
4492 macro_build (&offset_expr, likely ? "beql" : "beq",
4493 "s,t,p", sreg, 0);
4494 break;
4495 }
4496 if (sreg == 0)
4497 goto do_true;
4498 used_at = 1;
4499 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
4500 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4501 break;
4502
4503 case M_BLEUL_I:
4504 likely = 1;
4505 case M_BLEU_I:
4506 if (sreg == 0
4507 || (HAVE_32BIT_GPRS
4508 && imm_expr.X_op == O_constant
4509 && imm_expr.X_add_number == (offsetT) 0xffffffff))
4510 goto do_true;
4511 if (imm_expr.X_op != O_constant)
4512 as_bad (_("Unsupported large constant"));
4513 ++imm_expr.X_add_number;
4514 /* FALLTHROUGH */
4515 case M_BLTU_I:
4516 case M_BLTUL_I:
4517 if (mask == M_BLTUL_I)
4518 likely = 1;
4519 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4520 goto do_false;
4521 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4522 {
4523 macro_build (&offset_expr, likely ? "beql" : "beq",
4524 "s,t,p", sreg, 0);
4525 break;
4526 }
4527 used_at = 1;
4528 set_at (sreg, 1);
4529 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4530 break;
4531
4532 case M_BLTL:
4533 likely = 1;
4534 case M_BLT:
4535 if (treg == 0)
4536 {
4537 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
4538 break;
4539 }
4540 if (sreg == 0)
4541 {
4542 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
4543 break;
4544 }
4545 used_at = 1;
4546 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4547 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4548 break;
4549
4550 case M_BLTUL:
4551 likely = 1;
4552 case M_BLTU:
4553 if (treg == 0)
4554 goto do_false;
4555 if (sreg == 0)
4556 {
4557 macro_build (&offset_expr, likely ? "bnel" : "bne",
4558 "s,t,p", 0, treg);
4559 break;
4560 }
4561 used_at = 1;
4562 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4563 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4564 break;
4565
4566 case M_DEXT:
4567 {
4568 unsigned long pos;
4569 unsigned long size;
4570
4571 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
4572 {
4573 as_bad (_("Unsupported large constant"));
4574 pos = size = 1;
4575 }
4576 else
4577 {
4578 pos = (unsigned long) imm_expr.X_add_number;
4579 size = (unsigned long) imm2_expr.X_add_number;
4580 }
4581
4582 if (pos > 63)
4583 {
4584 as_bad (_("Improper position (%lu)"), pos);
4585 pos = 1;
4586 }
4587 if (size == 0 || size > 64
4588 || (pos + size - 1) > 63)
4589 {
4590 as_bad (_("Improper extract size (%lu, position %lu)"),
4591 size, pos);
4592 size = 1;
4593 }
4594
4595 if (size <= 32 && pos < 32)
4596 {
4597 s = "dext";
4598 fmt = "t,r,+A,+C";
4599 }
4600 else if (size <= 32)
4601 {
4602 s = "dextu";
4603 fmt = "t,r,+E,+H";
4604 }
4605 else
4606 {
4607 s = "dextm";
4608 fmt = "t,r,+A,+G";
4609 }
4610 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1);
4611 }
4612 break;
4613
4614 case M_DINS:
4615 {
4616 unsigned long pos;
4617 unsigned long size;
4618
4619 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
4620 {
4621 as_bad (_("Unsupported large constant"));
4622 pos = size = 1;
4623 }
4624 else
4625 {
4626 pos = (unsigned long) imm_expr.X_add_number;
4627 size = (unsigned long) imm2_expr.X_add_number;
4628 }
4629
4630 if (pos > 63)
4631 {
4632 as_bad (_("Improper position (%lu)"), pos);
4633 pos = 1;
4634 }
4635 if (size == 0 || size > 64
4636 || (pos + size - 1) > 63)
4637 {
4638 as_bad (_("Improper insert size (%lu, position %lu)"),
4639 size, pos);
4640 size = 1;
4641 }
4642
4643 if (pos < 32 && (pos + size - 1) < 32)
4644 {
4645 s = "dins";
4646 fmt = "t,r,+A,+B";
4647 }
4648 else if (pos >= 32)
4649 {
4650 s = "dinsu";
4651 fmt = "t,r,+E,+F";
4652 }
4653 else
4654 {
4655 s = "dinsm";
4656 fmt = "t,r,+A,+F";
4657 }
4658 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos,
4659 pos + size - 1);
4660 }
4661 break;
4662
4663 case M_DDIV_3:
4664 dbl = 1;
4665 case M_DIV_3:
4666 s = "mflo";
4667 goto do_div3;
4668 case M_DREM_3:
4669 dbl = 1;
4670 case M_REM_3:
4671 s = "mfhi";
4672 do_div3:
4673 if (treg == 0)
4674 {
4675 as_warn (_("Divide by zero."));
4676 if (mips_trap)
4677 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
4678 else
4679 macro_build (NULL, "break", "c", 7);
4680 break;
4681 }
4682
4683 start_noreorder ();
4684 if (mips_trap)
4685 {
4686 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
4687 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
4688 }
4689 else
4690 {
4691 expr1.X_add_number = 8;
4692 macro_build (&expr1, "bne", "s,t,p", treg, 0);
4693 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
4694 macro_build (NULL, "break", "c", 7);
4695 }
4696 expr1.X_add_number = -1;
4697 used_at = 1;
4698 load_register (AT, &expr1, dbl);
4699 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
4700 macro_build (&expr1, "bne", "s,t,p", treg, AT);
4701 if (dbl)
4702 {
4703 expr1.X_add_number = 1;
4704 load_register (AT, &expr1, dbl);
4705 macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
4706 }
4707 else
4708 {
4709 expr1.X_add_number = 0x80000000;
4710 macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
4711 }
4712 if (mips_trap)
4713 {
4714 macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
4715 /* We want to close the noreorder block as soon as possible, so
4716 that later insns are available for delay slot filling. */
4717 end_noreorder ();
4718 }
4719 else
4720 {
4721 expr1.X_add_number = 8;
4722 macro_build (&expr1, "bne", "s,t,p", sreg, AT);
4723 macro_build (NULL, "nop", "", 0);
4724
4725 /* We want to close the noreorder block as soon as possible, so
4726 that later insns are available for delay slot filling. */
4727 end_noreorder ();
4728
4729 macro_build (NULL, "break", "c", 6);
4730 }
4731 macro_build (NULL, s, "d", dreg);
4732 break;
4733
4734 case M_DIV_3I:
4735 s = "div";
4736 s2 = "mflo";
4737 goto do_divi;
4738 case M_DIVU_3I:
4739 s = "divu";
4740 s2 = "mflo";
4741 goto do_divi;
4742 case M_REM_3I:
4743 s = "div";
4744 s2 = "mfhi";
4745 goto do_divi;
4746 case M_REMU_3I:
4747 s = "divu";
4748 s2 = "mfhi";
4749 goto do_divi;
4750 case M_DDIV_3I:
4751 dbl = 1;
4752 s = "ddiv";
4753 s2 = "mflo";
4754 goto do_divi;
4755 case M_DDIVU_3I:
4756 dbl = 1;
4757 s = "ddivu";
4758 s2 = "mflo";
4759 goto do_divi;
4760 case M_DREM_3I:
4761 dbl = 1;
4762 s = "ddiv";
4763 s2 = "mfhi";
4764 goto do_divi;
4765 case M_DREMU_3I:
4766 dbl = 1;
4767 s = "ddivu";
4768 s2 = "mfhi";
4769 do_divi:
4770 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4771 {
4772 as_warn (_("Divide by zero."));
4773 if (mips_trap)
4774 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
4775 else
4776 macro_build (NULL, "break", "c", 7);
4777 break;
4778 }
4779 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4780 {
4781 if (strcmp (s2, "mflo") == 0)
4782 move_register (dreg, sreg);
4783 else
4784 move_register (dreg, 0);
4785 break;
4786 }
4787 if (imm_expr.X_op == O_constant
4788 && imm_expr.X_add_number == -1
4789 && s[strlen (s) - 1] != 'u')
4790 {
4791 if (strcmp (s2, "mflo") == 0)
4792 {
4793 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
4794 }
4795 else
4796 move_register (dreg, 0);
4797 break;
4798 }
4799
4800 used_at = 1;
4801 load_register (AT, &imm_expr, dbl);
4802 macro_build (NULL, s, "z,s,t", sreg, AT);
4803 macro_build (NULL, s2, "d", dreg);
4804 break;
4805
4806 case M_DIVU_3:
4807 s = "divu";
4808 s2 = "mflo";
4809 goto do_divu3;
4810 case M_REMU_3:
4811 s = "divu";
4812 s2 = "mfhi";
4813 goto do_divu3;
4814 case M_DDIVU_3:
4815 s = "ddivu";
4816 s2 = "mflo";
4817 goto do_divu3;
4818 case M_DREMU_3:
4819 s = "ddivu";
4820 s2 = "mfhi";
4821 do_divu3:
4822 start_noreorder ();
4823 if (mips_trap)
4824 {
4825 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
4826 macro_build (NULL, s, "z,s,t", sreg, treg);
4827 /* We want to close the noreorder block as soon as possible, so
4828 that later insns are available for delay slot filling. */
4829 end_noreorder ();
4830 }
4831 else
4832 {
4833 expr1.X_add_number = 8;
4834 macro_build (&expr1, "bne", "s,t,p", treg, 0);
4835 macro_build (NULL, s, "z,s,t", sreg, treg);
4836
4837 /* We want to close the noreorder block as soon as possible, so
4838 that later insns are available for delay slot filling. */
4839 end_noreorder ();
4840 macro_build (NULL, "break", "c", 7);
4841 }
4842 macro_build (NULL, s2, "d", dreg);
4843 break;
4844
4845 case M_DLCA_AB:
4846 dbl = 1;
4847 case M_LCA_AB:
4848 call = 1;
4849 goto do_la;
4850 case M_DLA_AB:
4851 dbl = 1;
4852 case M_LA_AB:
4853 do_la:
4854 /* Load the address of a symbol into a register. If breg is not
4855 zero, we then add a base register to it. */
4856
4857 if (dbl && HAVE_32BIT_GPRS)
4858 as_warn (_("dla used to load 32-bit register"));
4859
4860 if (! dbl && HAVE_64BIT_OBJECTS)
4861 as_warn (_("la used to load 64-bit address"));
4862
4863 if (offset_expr.X_op == O_constant
4864 && offset_expr.X_add_number >= -0x8000
4865 && offset_expr.X_add_number < 0x8000)
4866 {
4867 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
4868 "t,r,j", treg, sreg, BFD_RELOC_LO16);
4869 break;
4870 }
4871
4872 if (!mips_opts.noat && (treg == breg))
4873 {
4874 tempreg = AT;
4875 used_at = 1;
4876 }
4877 else
4878 {
4879 tempreg = treg;
4880 }
4881
4882 if (offset_expr.X_op != O_symbol
4883 && offset_expr.X_op != O_constant)
4884 {
4885 as_bad (_("expression too complex"));
4886 offset_expr.X_op = O_constant;
4887 }
4888
4889 if (offset_expr.X_op == O_constant)
4890 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
4891 else if (mips_pic == NO_PIC)
4892 {
4893 /* If this is a reference to a GP relative symbol, we want
4894 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
4895 Otherwise we want
4896 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4897 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4898 If we have a constant, we need two instructions anyhow,
4899 so we may as well always use the latter form.
4900
4901 With 64bit address space and a usable $at we want
4902 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4903 lui $at,<sym> (BFD_RELOC_HI16_S)
4904 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4905 daddiu $at,<sym> (BFD_RELOC_LO16)
4906 dsll32 $tempreg,0
4907 daddu $tempreg,$tempreg,$at
4908
4909 If $at is already in use, we use a path which is suboptimal
4910 on superscalar processors.
4911 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4912 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4913 dsll $tempreg,16
4914 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
4915 dsll $tempreg,16
4916 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
4917
4918 For GP relative symbols in 64bit address space we can use
4919 the same sequence as in 32bit address space. */
4920 if (HAVE_64BIT_SYMBOLS)
4921 {
4922 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
4923 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
4924 {
4925 relax_start (offset_expr.X_add_symbol);
4926 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
4927 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4928 relax_switch ();
4929 }
4930
4931 if (used_at == 0 && !mips_opts.noat)
4932 {
4933 macro_build (&offset_expr, "lui", "t,u",
4934 tempreg, BFD_RELOC_MIPS_HIGHEST);
4935 macro_build (&offset_expr, "lui", "t,u",
4936 AT, BFD_RELOC_HI16_S);
4937 macro_build (&offset_expr, "daddiu", "t,r,j",
4938 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
4939 macro_build (&offset_expr, "daddiu", "t,r,j",
4940 AT, AT, BFD_RELOC_LO16);
4941 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
4942 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
4943 used_at = 1;
4944 }
4945 else
4946 {
4947 macro_build (&offset_expr, "lui", "t,u",
4948 tempreg, BFD_RELOC_MIPS_HIGHEST);
4949 macro_build (&offset_expr, "daddiu", "t,r,j",
4950 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
4951 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
4952 macro_build (&offset_expr, "daddiu", "t,r,j",
4953 tempreg, tempreg, BFD_RELOC_HI16_S);
4954 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
4955 macro_build (&offset_expr, "daddiu", "t,r,j",
4956 tempreg, tempreg, BFD_RELOC_LO16);
4957 }
4958
4959 if (mips_relax.sequence)
4960 relax_end ();
4961 }
4962 else
4963 {
4964 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
4965 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
4966 {
4967 relax_start (offset_expr.X_add_symbol);
4968 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
4969 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4970 relax_switch ();
4971 }
4972 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
4973 as_bad (_("offset too large"));
4974 macro_build_lui (&offset_expr, tempreg);
4975 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
4976 tempreg, tempreg, BFD_RELOC_LO16);
4977 if (mips_relax.sequence)
4978 relax_end ();
4979 }
4980 }
4981 else if (mips_pic == SVR4_PIC && ! mips_big_got && ! HAVE_NEWABI)
4982 {
4983 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
4984
4985 /* If this is a reference to an external symbol, and there
4986 is no constant, we want
4987 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4988 or for lca or if tempreg is PIC_CALL_REG
4989 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
4990 For a local symbol, we want
4991 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4992 nop
4993 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4994
4995 If we have a small constant, and this is a reference to
4996 an external symbol, we want
4997 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4998 nop
4999 addiu $tempreg,$tempreg,<constant>
5000 For a local symbol, we want the same instruction
5001 sequence, but we output a BFD_RELOC_LO16 reloc on the
5002 addiu instruction.
5003
5004 If we have a large constant, and this is a reference to
5005 an external symbol, we want
5006 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5007 lui $at,<hiconstant>
5008 addiu $at,$at,<loconstant>
5009 addu $tempreg,$tempreg,$at
5010 For a local symbol, we want the same instruction
5011 sequence, but we output a BFD_RELOC_LO16 reloc on the
5012 addiu instruction.
5013 */
5014
5015 if (offset_expr.X_add_number == 0)
5016 {
5017 if (breg == 0 && (call || tempreg == PIC_CALL_REG))
5018 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
5019
5020 relax_start (offset_expr.X_add_symbol);
5021 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5022 lw_reloc_type, mips_gp_register);
5023 if (breg != 0)
5024 {
5025 /* We're going to put in an addu instruction using
5026 tempreg, so we may as well insert the nop right
5027 now. */
5028 load_delay_nop ();
5029 }
5030 relax_switch ();
5031 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5032 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
5033 load_delay_nop ();
5034 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5035 tempreg, tempreg, BFD_RELOC_LO16);
5036 relax_end ();
5037 /* FIXME: If breg == 0, and the next instruction uses
5038 $tempreg, then if this variant case is used an extra
5039 nop will be generated. */
5040 }
5041 else if (offset_expr.X_add_number >= -0x8000
5042 && offset_expr.X_add_number < 0x8000)
5043 {
5044 load_got_offset (tempreg, &offset_expr);
5045 load_delay_nop ();
5046 add_got_offset (tempreg, &offset_expr);
5047 }
5048 else
5049 {
5050 expr1.X_add_number = offset_expr.X_add_number;
5051 offset_expr.X_add_number =
5052 ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000;
5053 load_got_offset (tempreg, &offset_expr);
5054 offset_expr.X_add_number = expr1.X_add_number;
5055 /* If we are going to add in a base register, and the
5056 target register and the base register are the same,
5057 then we are using AT as a temporary register. Since
5058 we want to load the constant into AT, we add our
5059 current AT (from the global offset table) and the
5060 register into the register now, and pretend we were
5061 not using a base register. */
5062 if (breg == treg)
5063 {
5064 load_delay_nop ();
5065 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5066 treg, AT, breg);
5067 breg = 0;
5068 tempreg = treg;
5069 }
5070 add_got_offset_hilo (tempreg, &offset_expr, AT);
5071 used_at = 1;
5072 }
5073 }
5074 else if (mips_pic == SVR4_PIC && ! mips_big_got && HAVE_NEWABI)
5075 {
5076 int add_breg_early = 0;
5077
5078 /* If this is a reference to an external, and there is no
5079 constant, or local symbol (*), with or without a
5080 constant, we want
5081 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5082 or for lca or if tempreg is PIC_CALL_REG
5083 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5084
5085 If we have a small constant, and this is a reference to
5086 an external symbol, we want
5087 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5088 addiu $tempreg,$tempreg,<constant>
5089
5090 If we have a large constant, and this is a reference to
5091 an external symbol, we want
5092 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5093 lui $at,<hiconstant>
5094 addiu $at,$at,<loconstant>
5095 addu $tempreg,$tempreg,$at
5096
5097 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
5098 local symbols, even though it introduces an additional
5099 instruction. */
5100
5101 if (offset_expr.X_add_number)
5102 {
5103 expr1.X_add_number = offset_expr.X_add_number;
5104 offset_expr.X_add_number = 0;
5105
5106 relax_start (offset_expr.X_add_symbol);
5107 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5108 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5109
5110 if (expr1.X_add_number >= -0x8000
5111 && expr1.X_add_number < 0x8000)
5112 {
5113 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5114 tempreg, tempreg, BFD_RELOC_LO16);
5115 }
5116 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
5117 {
5118 int dreg;
5119
5120 /* If we are going to add in a base register, and the
5121 target register and the base register are the same,
5122 then we are using AT as a temporary register. Since
5123 we want to load the constant into AT, we add our
5124 current AT (from the global offset table) and the
5125 register into the register now, and pretend we were
5126 not using a base register. */
5127 if (breg != treg)
5128 dreg = tempreg;
5129 else
5130 {
5131 assert (tempreg == AT);
5132 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5133 treg, AT, breg);
5134 dreg = treg;
5135 add_breg_early = 1;
5136 }
5137
5138 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5139 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5140 dreg, dreg, AT);
5141
5142 used_at = 1;
5143 }
5144 else
5145 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5146
5147 relax_switch ();
5148 offset_expr.X_add_number = expr1.X_add_number;
5149
5150 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5151 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5152 if (add_breg_early)
5153 {
5154 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5155 treg, tempreg, breg);
5156 breg = 0;
5157 tempreg = treg;
5158 }
5159 relax_end ();
5160 }
5161 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
5162 {
5163 relax_start (offset_expr.X_add_symbol);
5164 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5165 BFD_RELOC_MIPS_CALL16, mips_gp_register);
5166 relax_switch ();
5167 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5168 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5169 relax_end ();
5170 }
5171 else
5172 {
5173 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5174 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5175 }
5176 }
5177 else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
5178 {
5179 int gpdelay;
5180 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5181 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
5182 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5183
5184 /* This is the large GOT case. If this is a reference to an
5185 external symbol, and there is no constant, we want
5186 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5187 addu $tempreg,$tempreg,$gp
5188 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5189 or for lca or if tempreg is PIC_CALL_REG
5190 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5191 addu $tempreg,$tempreg,$gp
5192 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5193 For a local symbol, we want
5194 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5195 nop
5196 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5197
5198 If we have a small constant, and this is a reference to
5199 an external symbol, we want
5200 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5201 addu $tempreg,$tempreg,$gp
5202 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5203 nop
5204 addiu $tempreg,$tempreg,<constant>
5205 For a local symbol, we want
5206 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5207 nop
5208 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5209
5210 If we have a large constant, and this is a reference to
5211 an external symbol, we want
5212 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5213 addu $tempreg,$tempreg,$gp
5214 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5215 lui $at,<hiconstant>
5216 addiu $at,$at,<loconstant>
5217 addu $tempreg,$tempreg,$at
5218 For a local symbol, we want
5219 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5220 lui $at,<hiconstant>
5221 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5222 addu $tempreg,$tempreg,$at
5223 */
5224
5225 expr1.X_add_number = offset_expr.X_add_number;
5226 offset_expr.X_add_number = 0;
5227 relax_start (offset_expr.X_add_symbol);
5228 gpdelay = reg_needs_delay (mips_gp_register);
5229 if (expr1.X_add_number == 0 && breg == 0
5230 && (call || tempreg == PIC_CALL_REG))
5231 {
5232 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5233 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5234 }
5235 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5236 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5237 tempreg, tempreg, mips_gp_register);
5238 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5239 tempreg, lw_reloc_type, tempreg);
5240 if (expr1.X_add_number == 0)
5241 {
5242 if (breg != 0)
5243 {
5244 /* We're going to put in an addu instruction using
5245 tempreg, so we may as well insert the nop right
5246 now. */
5247 load_delay_nop ();
5248 }
5249 }
5250 else if (expr1.X_add_number >= -0x8000
5251 && expr1.X_add_number < 0x8000)
5252 {
5253 load_delay_nop ();
5254 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5255 tempreg, tempreg, BFD_RELOC_LO16);
5256 }
5257 else
5258 {
5259 int dreg;
5260
5261 /* If we are going to add in a base register, and the
5262 target register and the base register are the same,
5263 then we are using AT as a temporary register. Since
5264 we want to load the constant into AT, we add our
5265 current AT (from the global offset table) and the
5266 register into the register now, and pretend we were
5267 not using a base register. */
5268 if (breg != treg)
5269 dreg = tempreg;
5270 else
5271 {
5272 assert (tempreg == AT);
5273 load_delay_nop ();
5274 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5275 treg, AT, breg);
5276 dreg = treg;
5277 }
5278
5279 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5280 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
5281
5282 used_at = 1;
5283 }
5284 offset_expr.X_add_number =
5285 ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
5286 relax_switch ();
5287
5288 if (gpdelay)
5289 {
5290 /* This is needed because this instruction uses $gp, but
5291 the first instruction on the main stream does not. */
5292 macro_build (NULL, "nop", "");
5293 }
5294
5295 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5296 local_reloc_type, mips_gp_register);
5297 if (expr1.X_add_number >= -0x8000
5298 && expr1.X_add_number < 0x8000)
5299 {
5300 load_delay_nop ();
5301 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5302 tempreg, tempreg, BFD_RELOC_LO16);
5303 /* FIXME: If add_number is 0, and there was no base
5304 register, the external symbol case ended with a load,
5305 so if the symbol turns out to not be external, and
5306 the next instruction uses tempreg, an unnecessary nop
5307 will be inserted. */
5308 }
5309 else
5310 {
5311 if (breg == treg)
5312 {
5313 /* We must add in the base register now, as in the
5314 external symbol case. */
5315 assert (tempreg == AT);
5316 load_delay_nop ();
5317 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5318 treg, AT, breg);
5319 tempreg = treg;
5320 /* We set breg to 0 because we have arranged to add
5321 it in in both cases. */
5322 breg = 0;
5323 }
5324
5325 macro_build_lui (&expr1, AT);
5326 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5327 AT, AT, BFD_RELOC_LO16);
5328 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5329 tempreg, tempreg, AT);
5330 used_at = 1;
5331 }
5332 relax_end ();
5333 }
5334 else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
5335 {
5336 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5337 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
5338 int add_breg_early = 0;
5339
5340 /* This is the large GOT case. If this is a reference to an
5341 external symbol, and there is no constant, we want
5342 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5343 add $tempreg,$tempreg,$gp
5344 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5345 or for lca or if tempreg is PIC_CALL_REG
5346 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5347 add $tempreg,$tempreg,$gp
5348 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5349
5350 If we have a small constant, and this is a reference to
5351 an external symbol, we want
5352 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5353 add $tempreg,$tempreg,$gp
5354 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5355 addi $tempreg,$tempreg,<constant>
5356
5357 If we have a large constant, and this is a reference to
5358 an external symbol, we want
5359 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5360 addu $tempreg,$tempreg,$gp
5361 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5362 lui $at,<hiconstant>
5363 addi $at,$at,<loconstant>
5364 add $tempreg,$tempreg,$at
5365
5366 If we have NewABI, and we know it's a local symbol, we want
5367 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5368 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5369 otherwise we have to resort to GOT_HI16/GOT_LO16. */
5370
5371 relax_start (offset_expr.X_add_symbol);
5372
5373 expr1.X_add_number = offset_expr.X_add_number;
5374 offset_expr.X_add_number = 0;
5375
5376 if (expr1.X_add_number == 0 && breg == 0
5377 && (call || tempreg == PIC_CALL_REG))
5378 {
5379 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5380 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5381 }
5382 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5383 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5384 tempreg, tempreg, mips_gp_register);
5385 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5386 tempreg, lw_reloc_type, tempreg);
5387
5388 if (expr1.X_add_number == 0)
5389 ;
5390 else if (expr1.X_add_number >= -0x8000
5391 && expr1.X_add_number < 0x8000)
5392 {
5393 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5394 tempreg, tempreg, BFD_RELOC_LO16);
5395 }
5396 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
5397 {
5398 int dreg;
5399
5400 /* If we are going to add in a base register, and the
5401 target register and the base register are the same,
5402 then we are using AT as a temporary register. Since
5403 we want to load the constant into AT, we add our
5404 current AT (from the global offset table) and the
5405 register into the register now, and pretend we were
5406 not using a base register. */
5407 if (breg != treg)
5408 dreg = tempreg;
5409 else
5410 {
5411 assert (tempreg == AT);
5412 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5413 treg, AT, breg);
5414 dreg = treg;
5415 add_breg_early = 1;
5416 }
5417
5418 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5419 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
5420
5421 used_at = 1;
5422 }
5423 else
5424 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5425
5426 relax_switch ();
5427 offset_expr.X_add_number = expr1.X_add_number;
5428 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5429 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
5430 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
5431 tempreg, BFD_RELOC_MIPS_GOT_OFST);
5432 if (add_breg_early)
5433 {
5434 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5435 treg, tempreg, breg);
5436 breg = 0;
5437 tempreg = treg;
5438 }
5439 relax_end ();
5440 }
5441 else
5442 abort ();
5443
5444 if (breg != 0)
5445 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
5446 break;
5447
5448 case M_J_A:
5449 /* The j instruction may not be used in PIC code, since it
5450 requires an absolute address. We convert it to a b
5451 instruction. */
5452 if (mips_pic == NO_PIC)
5453 macro_build (&offset_expr, "j", "a");
5454 else
5455 macro_build (&offset_expr, "b", "p");
5456 break;
5457
5458 /* The jal instructions must be handled as macros because when
5459 generating PIC code they expand to multi-instruction
5460 sequences. Normally they are simple instructions. */
5461 case M_JAL_1:
5462 dreg = RA;
5463 /* Fall through. */
5464 case M_JAL_2:
5465 if (mips_pic == NO_PIC)
5466 macro_build (NULL, "jalr", "d,s", dreg, sreg);
5467 else if (mips_pic == SVR4_PIC)
5468 {
5469 if (sreg != PIC_CALL_REG)
5470 as_warn (_("MIPS PIC call to register other than $25"));
5471
5472 macro_build (NULL, "jalr", "d,s", dreg, sreg);
5473 if (! HAVE_NEWABI)
5474 {
5475 if (mips_cprestore_offset < 0)
5476 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5477 else
5478 {
5479 if (! mips_frame_reg_valid)
5480 {
5481 as_warn (_("No .frame pseudo-op used in PIC code"));
5482 /* Quiet this warning. */
5483 mips_frame_reg_valid = 1;
5484 }
5485 if (! mips_cprestore_valid)
5486 {
5487 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5488 /* Quiet this warning. */
5489 mips_cprestore_valid = 1;
5490 }
5491 expr1.X_add_number = mips_cprestore_offset;
5492 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
5493 mips_gp_register,
5494 mips_frame_reg,
5495 HAVE_64BIT_ADDRESSES);
5496 }
5497 }
5498 }
5499 else
5500 abort ();
5501
5502 break;
5503
5504 case M_JAL_A:
5505 if (mips_pic == NO_PIC)
5506 macro_build (&offset_expr, "jal", "a");
5507 else if (mips_pic == SVR4_PIC)
5508 {
5509 /* If this is a reference to an external symbol, and we are
5510 using a small GOT, we want
5511 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5512 nop
5513 jalr $ra,$25
5514 nop
5515 lw $gp,cprestore($sp)
5516 The cprestore value is set using the .cprestore
5517 pseudo-op. If we are using a big GOT, we want
5518 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5519 addu $25,$25,$gp
5520 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
5521 nop
5522 jalr $ra,$25
5523 nop
5524 lw $gp,cprestore($sp)
5525 If the symbol is not external, we want
5526 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5527 nop
5528 addiu $25,$25,<sym> (BFD_RELOC_LO16)
5529 jalr $ra,$25
5530 nop
5531 lw $gp,cprestore($sp)
5532
5533 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
5534 sequences above, minus nops, unless the symbol is local,
5535 which enables us to use GOT_PAGE/GOT_OFST (big got) or
5536 GOT_DISP. */
5537 if (HAVE_NEWABI)
5538 {
5539 if (! mips_big_got)
5540 {
5541 relax_start (offset_expr.X_add_symbol);
5542 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5543 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
5544 mips_gp_register);
5545 relax_switch ();
5546 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5547 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
5548 mips_gp_register);
5549 relax_end ();
5550 }
5551 else
5552 {
5553 relax_start (offset_expr.X_add_symbol);
5554 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
5555 BFD_RELOC_MIPS_CALL_HI16);
5556 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
5557 PIC_CALL_REG, mips_gp_register);
5558 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5559 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
5560 PIC_CALL_REG);
5561 relax_switch ();
5562 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5563 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
5564 mips_gp_register);
5565 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5566 PIC_CALL_REG, PIC_CALL_REG,
5567 BFD_RELOC_MIPS_GOT_OFST);
5568 relax_end ();
5569 }
5570
5571 macro_build_jalr (&offset_expr);
5572 }
5573 else
5574 {
5575 relax_start (offset_expr.X_add_symbol);
5576 if (! mips_big_got)
5577 {
5578 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5579 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
5580 mips_gp_register);
5581 load_delay_nop ();
5582 relax_switch ();
5583 }
5584 else
5585 {
5586 int gpdelay;
5587
5588 gpdelay = reg_needs_delay (mips_gp_register);
5589 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
5590 BFD_RELOC_MIPS_CALL_HI16);
5591 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
5592 PIC_CALL_REG, mips_gp_register);
5593 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5594 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
5595 PIC_CALL_REG);
5596 load_delay_nop ();
5597 relax_switch ();
5598 if (gpdelay)
5599 macro_build (NULL, "nop", "");
5600 }
5601 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5602 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
5603 mips_gp_register);
5604 load_delay_nop ();
5605 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5606 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
5607 relax_end ();
5608 macro_build_jalr (&offset_expr);
5609
5610 if (mips_cprestore_offset < 0)
5611 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5612 else
5613 {
5614 if (! mips_frame_reg_valid)
5615 {
5616 as_warn (_("No .frame pseudo-op used in PIC code"));
5617 /* Quiet this warning. */
5618 mips_frame_reg_valid = 1;
5619 }
5620 if (! mips_cprestore_valid)
5621 {
5622 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5623 /* Quiet this warning. */
5624 mips_cprestore_valid = 1;
5625 }
5626 if (mips_opts.noreorder)
5627 macro_build (NULL, "nop", "");
5628 expr1.X_add_number = mips_cprestore_offset;
5629 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
5630 mips_gp_register,
5631 mips_frame_reg,
5632 HAVE_64BIT_ADDRESSES);
5633 }
5634 }
5635 }
5636 else
5637 abort ();
5638
5639 break;
5640
5641 case M_LB_AB:
5642 s = "lb";
5643 goto ld;
5644 case M_LBU_AB:
5645 s = "lbu";
5646 goto ld;
5647 case M_LH_AB:
5648 s = "lh";
5649 goto ld;
5650 case M_LHU_AB:
5651 s = "lhu";
5652 goto ld;
5653 case M_LW_AB:
5654 s = "lw";
5655 goto ld;
5656 case M_LWC0_AB:
5657 s = "lwc0";
5658 /* Itbl support may require additional care here. */
5659 coproc = 1;
5660 goto ld;
5661 case M_LWC1_AB:
5662 s = "lwc1";
5663 /* Itbl support may require additional care here. */
5664 coproc = 1;
5665 goto ld;
5666 case M_LWC2_AB:
5667 s = "lwc2";
5668 /* Itbl support may require additional care here. */
5669 coproc = 1;
5670 goto ld;
5671 case M_LWC3_AB:
5672 s = "lwc3";
5673 /* Itbl support may require additional care here. */
5674 coproc = 1;
5675 goto ld;
5676 case M_LWL_AB:
5677 s = "lwl";
5678 lr = 1;
5679 goto ld;
5680 case M_LWR_AB:
5681 s = "lwr";
5682 lr = 1;
5683 goto ld;
5684 case M_LDC1_AB:
5685 if (mips_opts.arch == CPU_R4650)
5686 {
5687 as_bad (_("opcode not supported on this processor"));
5688 break;
5689 }
5690 s = "ldc1";
5691 /* Itbl support may require additional care here. */
5692 coproc = 1;
5693 goto ld;
5694 case M_LDC2_AB:
5695 s = "ldc2";
5696 /* Itbl support may require additional care here. */
5697 coproc = 1;
5698 goto ld;
5699 case M_LDC3_AB:
5700 s = "ldc3";
5701 /* Itbl support may require additional care here. */
5702 coproc = 1;
5703 goto ld;
5704 case M_LDL_AB:
5705 s = "ldl";
5706 lr = 1;
5707 goto ld;
5708 case M_LDR_AB:
5709 s = "ldr";
5710 lr = 1;
5711 goto ld;
5712 case M_LL_AB:
5713 s = "ll";
5714 goto ld;
5715 case M_LLD_AB:
5716 s = "lld";
5717 goto ld;
5718 case M_LWU_AB:
5719 s = "lwu";
5720 ld:
5721 if (breg == treg || coproc || lr)
5722 {
5723 tempreg = AT;
5724 used_at = 1;
5725 }
5726 else
5727 {
5728 tempreg = treg;
5729 }
5730 goto ld_st;
5731 case M_SB_AB:
5732 s = "sb";
5733 goto st;
5734 case M_SH_AB:
5735 s = "sh";
5736 goto st;
5737 case M_SW_AB:
5738 s = "sw";
5739 goto st;
5740 case M_SWC0_AB:
5741 s = "swc0";
5742 /* Itbl support may require additional care here. */
5743 coproc = 1;
5744 goto st;
5745 case M_SWC1_AB:
5746 s = "swc1";
5747 /* Itbl support may require additional care here. */
5748 coproc = 1;
5749 goto st;
5750 case M_SWC2_AB:
5751 s = "swc2";
5752 /* Itbl support may require additional care here. */
5753 coproc = 1;
5754 goto st;
5755 case M_SWC3_AB:
5756 s = "swc3";
5757 /* Itbl support may require additional care here. */
5758 coproc = 1;
5759 goto st;
5760 case M_SWL_AB:
5761 s = "swl";
5762 goto st;
5763 case M_SWR_AB:
5764 s = "swr";
5765 goto st;
5766 case M_SC_AB:
5767 s = "sc";
5768 goto st;
5769 case M_SCD_AB:
5770 s = "scd";
5771 goto st;
5772 case M_SDC1_AB:
5773 if (mips_opts.arch == CPU_R4650)
5774 {
5775 as_bad (_("opcode not supported on this processor"));
5776 break;
5777 }
5778 s = "sdc1";
5779 coproc = 1;
5780 /* Itbl support may require additional care here. */
5781 goto st;
5782 case M_SDC2_AB:
5783 s = "sdc2";
5784 /* Itbl support may require additional care here. */
5785 coproc = 1;
5786 goto st;
5787 case M_SDC3_AB:
5788 s = "sdc3";
5789 /* Itbl support may require additional care here. */
5790 coproc = 1;
5791 goto st;
5792 case M_SDL_AB:
5793 s = "sdl";
5794 goto st;
5795 case M_SDR_AB:
5796 s = "sdr";
5797 st:
5798 tempreg = AT;
5799 used_at = 1;
5800 ld_st:
5801 /* Itbl support may require additional care here. */
5802 if (mask == M_LWC1_AB
5803 || mask == M_SWC1_AB
5804 || mask == M_LDC1_AB
5805 || mask == M_SDC1_AB
5806 || mask == M_L_DAB
5807 || mask == M_S_DAB)
5808 fmt = "T,o(b)";
5809 else if (coproc)
5810 fmt = "E,o(b)";
5811 else
5812 fmt = "t,o(b)";
5813
5814 if (offset_expr.X_op != O_constant
5815 && offset_expr.X_op != O_symbol)
5816 {
5817 as_bad (_("expression too complex"));
5818 offset_expr.X_op = O_constant;
5819 }
5820
5821 if (HAVE_32BIT_ADDRESSES
5822 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
5823 {
5824 char value [32];
5825
5826 sprintf_vma (value, offset_expr.X_add_number);
5827 as_bad (_("Number (0x%s) larger than 32 bits"), value);
5828 }
5829
5830 /* A constant expression in PIC code can be handled just as it
5831 is in non PIC code. */
5832 if (offset_expr.X_op == O_constant)
5833 {
5834 expr1.X_add_number = ((offset_expr.X_add_number + 0x8000)
5835 & ~(bfd_vma) 0xffff);
5836 normalize_address_expr (&expr1);
5837 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
5838 if (breg != 0)
5839 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5840 tempreg, tempreg, breg);
5841 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, tempreg);
5842 }
5843 else if (mips_pic == NO_PIC)
5844 {
5845 /* If this is a reference to a GP relative symbol, and there
5846 is no base register, we want
5847 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
5848 Otherwise, if there is no base register, we want
5849 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5850 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5851 If we have a constant, we need two instructions anyhow,
5852 so we always use the latter form.
5853
5854 If we have a base register, and this is a reference to a
5855 GP relative symbol, we want
5856 addu $tempreg,$breg,$gp
5857 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
5858 Otherwise we want
5859 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5860 addu $tempreg,$tempreg,$breg
5861 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5862 With a constant we always use the latter case.
5863
5864 With 64bit address space and no base register and $at usable,
5865 we want
5866 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5867 lui $at,<sym> (BFD_RELOC_HI16_S)
5868 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5869 dsll32 $tempreg,0
5870 daddu $tempreg,$at
5871 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5872 If we have a base register, we want
5873 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5874 lui $at,<sym> (BFD_RELOC_HI16_S)
5875 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5876 daddu $at,$breg
5877 dsll32 $tempreg,0
5878 daddu $tempreg,$at
5879 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5880
5881 Without $at we can't generate the optimal path for superscalar
5882 processors here since this would require two temporary registers.
5883 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5884 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5885 dsll $tempreg,16
5886 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5887 dsll $tempreg,16
5888 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5889 If we have a base register, we want
5890 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5891 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5892 dsll $tempreg,16
5893 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5894 dsll $tempreg,16
5895 daddu $tempreg,$tempreg,$breg
5896 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5897
5898 For GP relative symbols in 64bit address space we can use
5899 the same sequence as in 32bit address space. */
5900 if (HAVE_64BIT_SYMBOLS)
5901 {
5902 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5903 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5904 {
5905 relax_start (offset_expr.X_add_symbol);
5906 if (breg == 0)
5907 {
5908 macro_build (&offset_expr, s, fmt, treg,
5909 BFD_RELOC_GPREL16, mips_gp_register);
5910 }
5911 else
5912 {
5913 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5914 tempreg, breg, mips_gp_register);
5915 macro_build (&offset_expr, s, fmt, treg,
5916 BFD_RELOC_GPREL16, tempreg);
5917 }
5918 relax_switch ();
5919 }
5920
5921 if (used_at == 0 && !mips_opts.noat)
5922 {
5923 macro_build (&offset_expr, "lui", "t,u", tempreg,
5924 BFD_RELOC_MIPS_HIGHEST);
5925 macro_build (&offset_expr, "lui", "t,u", AT,
5926 BFD_RELOC_HI16_S);
5927 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
5928 tempreg, BFD_RELOC_MIPS_HIGHER);
5929 if (breg != 0)
5930 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
5931 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
5932 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
5933 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
5934 tempreg);
5935 used_at = 1;
5936 }
5937 else
5938 {
5939 macro_build (&offset_expr, "lui", "t,u", tempreg,
5940 BFD_RELOC_MIPS_HIGHEST);
5941 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
5942 tempreg, BFD_RELOC_MIPS_HIGHER);
5943 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5944 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
5945 tempreg, BFD_RELOC_HI16_S);
5946 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5947 if (breg != 0)
5948 macro_build (NULL, "daddu", "d,v,t",
5949 tempreg, tempreg, breg);
5950 macro_build (&offset_expr, s, fmt, treg,
5951 BFD_RELOC_LO16, tempreg);
5952 }
5953
5954 if (mips_relax.sequence)
5955 relax_end ();
5956 break;
5957 }
5958
5959 if (breg == 0)
5960 {
5961 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5962 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5963 {
5964 relax_start (offset_expr.X_add_symbol);
5965 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
5966 mips_gp_register);
5967 relax_switch ();
5968 }
5969 macro_build_lui (&offset_expr, tempreg);
5970 macro_build (&offset_expr, s, fmt, treg,
5971 BFD_RELOC_LO16, tempreg);
5972 if (mips_relax.sequence)
5973 relax_end ();
5974 }
5975 else
5976 {
5977 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5978 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5979 {
5980 relax_start (offset_expr.X_add_symbol);
5981 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5982 tempreg, breg, mips_gp_register);
5983 macro_build (&offset_expr, s, fmt, treg,
5984 BFD_RELOC_GPREL16, tempreg);
5985 relax_switch ();
5986 }
5987 macro_build_lui (&offset_expr, tempreg);
5988 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5989 tempreg, tempreg, breg);
5990 macro_build (&offset_expr, s, fmt, treg,
5991 BFD_RELOC_LO16, tempreg);
5992 if (mips_relax.sequence)
5993 relax_end ();
5994 }
5995 }
5996 else if (mips_pic == SVR4_PIC && ! mips_big_got)
5997 {
5998 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5999
6000 /* If this is a reference to an external symbol, we want
6001 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6002 nop
6003 <op> $treg,0($tempreg)
6004 Otherwise we want
6005 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6006 nop
6007 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6008 <op> $treg,0($tempreg)
6009
6010 For NewABI, we want
6011 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6012 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
6013
6014 If there is a base register, we add it to $tempreg before
6015 the <op>. If there is a constant, we stick it in the
6016 <op> instruction. We don't handle constants larger than
6017 16 bits, because we have no way to load the upper 16 bits
6018 (actually, we could handle them for the subset of cases
6019 in which we are not using $at). */
6020 assert (offset_expr.X_op == O_symbol);
6021 if (HAVE_NEWABI)
6022 {
6023 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6024 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6025 if (breg != 0)
6026 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6027 tempreg, tempreg, breg);
6028 macro_build (&offset_expr, s, fmt, treg,
6029 BFD_RELOC_MIPS_GOT_OFST, tempreg);
6030 break;
6031 }
6032 expr1.X_add_number = offset_expr.X_add_number;
6033 offset_expr.X_add_number = 0;
6034 if (expr1.X_add_number < -0x8000
6035 || expr1.X_add_number >= 0x8000)
6036 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6037 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6038 lw_reloc_type, mips_gp_register);
6039 load_delay_nop ();
6040 relax_start (offset_expr.X_add_symbol);
6041 relax_switch ();
6042 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6043 tempreg, BFD_RELOC_LO16);
6044 relax_end ();
6045 if (breg != 0)
6046 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6047 tempreg, tempreg, breg);
6048 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6049 }
6050 else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
6051 {
6052 int gpdelay;
6053
6054 /* If this is a reference to an external symbol, we want
6055 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6056 addu $tempreg,$tempreg,$gp
6057 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6058 <op> $treg,0($tempreg)
6059 Otherwise we want
6060 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6061 nop
6062 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6063 <op> $treg,0($tempreg)
6064 If there is a base register, we add it to $tempreg before
6065 the <op>. If there is a constant, we stick it in the
6066 <op> instruction. We don't handle constants larger than
6067 16 bits, because we have no way to load the upper 16 bits
6068 (actually, we could handle them for the subset of cases
6069 in which we are not using $at). */
6070 assert (offset_expr.X_op == O_symbol);
6071 expr1.X_add_number = offset_expr.X_add_number;
6072 offset_expr.X_add_number = 0;
6073 if (expr1.X_add_number < -0x8000
6074 || expr1.X_add_number >= 0x8000)
6075 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6076 gpdelay = reg_needs_delay (mips_gp_register);
6077 relax_start (offset_expr.X_add_symbol);
6078 macro_build (&offset_expr, "lui", "t,u", tempreg,
6079 BFD_RELOC_MIPS_GOT_HI16);
6080 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6081 mips_gp_register);
6082 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6083 BFD_RELOC_MIPS_GOT_LO16, tempreg);
6084 relax_switch ();
6085 if (gpdelay)
6086 macro_build (NULL, "nop", "");
6087 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6088 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6089 load_delay_nop ();
6090 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6091 tempreg, BFD_RELOC_LO16);
6092 relax_end ();
6093
6094 if (breg != 0)
6095 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6096 tempreg, tempreg, breg);
6097 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6098 }
6099 else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
6100 {
6101 /* If this is a reference to an external symbol, we want
6102 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6103 add $tempreg,$tempreg,$gp
6104 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6105 <op> $treg,<ofst>($tempreg)
6106 Otherwise, for local symbols, we want:
6107 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6108 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
6109 assert (offset_expr.X_op == O_symbol);
6110 expr1.X_add_number = offset_expr.X_add_number;
6111 offset_expr.X_add_number = 0;
6112 if (expr1.X_add_number < -0x8000
6113 || expr1.X_add_number >= 0x8000)
6114 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6115 relax_start (offset_expr.X_add_symbol);
6116 macro_build (&offset_expr, "lui", "t,u", tempreg,
6117 BFD_RELOC_MIPS_GOT_HI16);
6118 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6119 mips_gp_register);
6120 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6121 BFD_RELOC_MIPS_GOT_LO16, tempreg);
6122 if (breg != 0)
6123 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6124 tempreg, tempreg, breg);
6125 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6126
6127 relax_switch ();
6128 offset_expr.X_add_number = expr1.X_add_number;
6129 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6130 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6131 if (breg != 0)
6132 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6133 tempreg, tempreg, breg);
6134 macro_build (&offset_expr, s, fmt, treg,
6135 BFD_RELOC_MIPS_GOT_OFST, tempreg);
6136 relax_end ();
6137 }
6138 else
6139 abort ();
6140
6141 break;
6142
6143 case M_LI:
6144 case M_LI_S:
6145 load_register (treg, &imm_expr, 0);
6146 break;
6147
6148 case M_DLI:
6149 load_register (treg, &imm_expr, 1);
6150 break;
6151
6152 case M_LI_SS:
6153 if (imm_expr.X_op == O_constant)
6154 {
6155 used_at = 1;
6156 load_register (AT, &imm_expr, 0);
6157 macro_build (NULL, "mtc1", "t,G", AT, treg);
6158 break;
6159 }
6160 else
6161 {
6162 assert (offset_expr.X_op == O_symbol
6163 && strcmp (segment_name (S_GET_SEGMENT
6164 (offset_expr.X_add_symbol)),
6165 ".lit4") == 0
6166 && offset_expr.X_add_number == 0);
6167 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
6168 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
6169 break;
6170 }
6171
6172 case M_LI_D:
6173 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6174 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6175 order 32 bits of the value and the low order 32 bits are either
6176 zero or in OFFSET_EXPR. */
6177 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6178 {
6179 if (HAVE_64BIT_GPRS)
6180 load_register (treg, &imm_expr, 1);
6181 else
6182 {
6183 int hreg, lreg;
6184
6185 if (target_big_endian)
6186 {
6187 hreg = treg;
6188 lreg = treg + 1;
6189 }
6190 else
6191 {
6192 hreg = treg + 1;
6193 lreg = treg;
6194 }
6195
6196 if (hreg <= 31)
6197 load_register (hreg, &imm_expr, 0);
6198 if (lreg <= 31)
6199 {
6200 if (offset_expr.X_op == O_absent)
6201 move_register (lreg, 0);
6202 else
6203 {
6204 assert (offset_expr.X_op == O_constant);
6205 load_register (lreg, &offset_expr, 0);
6206 }
6207 }
6208 }
6209 break;
6210 }
6211
6212 /* We know that sym is in the .rdata section. First we get the
6213 upper 16 bits of the address. */
6214 if (mips_pic == NO_PIC)
6215 {
6216 macro_build_lui (&offset_expr, AT);
6217 used_at = 1;
6218 }
6219 else if (mips_pic == SVR4_PIC)
6220 {
6221 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6222 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6223 used_at = 1;
6224 }
6225 else
6226 abort ();
6227
6228 /* Now we load the register(s). */
6229 if (HAVE_64BIT_GPRS)
6230 {
6231 used_at = 1;
6232 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6233 }
6234 else
6235 {
6236 used_at = 1;
6237 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6238 if (treg != RA)
6239 {
6240 /* FIXME: How in the world do we deal with the possible
6241 overflow here? */
6242 offset_expr.X_add_number += 4;
6243 macro_build (&offset_expr, "lw", "t,o(b)",
6244 treg + 1, BFD_RELOC_LO16, AT);
6245 }
6246 }
6247 break;
6248
6249 case M_LI_DD:
6250 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
6251 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
6252 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
6253 the value and the low order 32 bits are either zero or in
6254 OFFSET_EXPR. */
6255 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6256 {
6257 used_at = 1;
6258 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
6259 if (HAVE_64BIT_FPRS)
6260 {
6261 assert (HAVE_64BIT_GPRS);
6262 macro_build (NULL, "dmtc1", "t,S", AT, treg);
6263 }
6264 else
6265 {
6266 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
6267 if (offset_expr.X_op == O_absent)
6268 macro_build (NULL, "mtc1", "t,G", 0, treg);
6269 else
6270 {
6271 assert (offset_expr.X_op == O_constant);
6272 load_register (AT, &offset_expr, 0);
6273 macro_build (NULL, "mtc1", "t,G", AT, treg);
6274 }
6275 }
6276 break;
6277 }
6278
6279 assert (offset_expr.X_op == O_symbol
6280 && offset_expr.X_add_number == 0);
6281 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
6282 if (strcmp (s, ".lit8") == 0)
6283 {
6284 if (mips_opts.isa != ISA_MIPS1)
6285 {
6286 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
6287 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
6288 break;
6289 }
6290 breg = mips_gp_register;
6291 r = BFD_RELOC_MIPS_LITERAL;
6292 goto dob;
6293 }
6294 else
6295 {
6296 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
6297 used_at = 1;
6298 if (mips_pic == SVR4_PIC)
6299 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6300 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6301 else
6302 {
6303 /* FIXME: This won't work for a 64 bit address. */
6304 macro_build_lui (&offset_expr, AT);
6305 }
6306
6307 if (mips_opts.isa != ISA_MIPS1)
6308 {
6309 macro_build (&offset_expr, "ldc1", "T,o(b)",
6310 treg, BFD_RELOC_LO16, AT);
6311 break;
6312 }
6313 breg = AT;
6314 r = BFD_RELOC_LO16;
6315 goto dob;
6316 }
6317
6318 case M_L_DOB:
6319 if (mips_opts.arch == CPU_R4650)
6320 {
6321 as_bad (_("opcode not supported on this processor"));
6322 break;
6323 }
6324 /* Even on a big endian machine $fn comes before $fn+1. We have
6325 to adjust when loading from memory. */
6326 r = BFD_RELOC_LO16;
6327 dob:
6328 assert (mips_opts.isa == ISA_MIPS1);
6329 macro_build (&offset_expr, "lwc1", "T,o(b)",
6330 target_big_endian ? treg + 1 : treg, r, breg);
6331 /* FIXME: A possible overflow which I don't know how to deal
6332 with. */
6333 offset_expr.X_add_number += 4;
6334 macro_build (&offset_expr, "lwc1", "T,o(b)",
6335 target_big_endian ? treg : treg + 1, r, breg);
6336 break;
6337
6338 case M_L_DAB:
6339 /*
6340 * The MIPS assembler seems to check for X_add_number not
6341 * being double aligned and generating:
6342 * lui at,%hi(foo+1)
6343 * addu at,at,v1
6344 * addiu at,at,%lo(foo+1)
6345 * lwc1 f2,0(at)
6346 * lwc1 f3,4(at)
6347 * But, the resulting address is the same after relocation so why
6348 * generate the extra instruction?
6349 */
6350 if (mips_opts.arch == CPU_R4650)
6351 {
6352 as_bad (_("opcode not supported on this processor"));
6353 break;
6354 }
6355 /* Itbl support may require additional care here. */
6356 coproc = 1;
6357 if (mips_opts.isa != ISA_MIPS1)
6358 {
6359 s = "ldc1";
6360 goto ld;
6361 }
6362
6363 s = "lwc1";
6364 fmt = "T,o(b)";
6365 goto ldd_std;
6366
6367 case M_S_DAB:
6368 if (mips_opts.arch == CPU_R4650)
6369 {
6370 as_bad (_("opcode not supported on this processor"));
6371 break;
6372 }
6373
6374 if (mips_opts.isa != ISA_MIPS1)
6375 {
6376 s = "sdc1";
6377 goto st;
6378 }
6379
6380 s = "swc1";
6381 fmt = "T,o(b)";
6382 /* Itbl support may require additional care here. */
6383 coproc = 1;
6384 goto ldd_std;
6385
6386 case M_LD_AB:
6387 if (HAVE_64BIT_GPRS)
6388 {
6389 s = "ld";
6390 goto ld;
6391 }
6392
6393 s = "lw";
6394 fmt = "t,o(b)";
6395 goto ldd_std;
6396
6397 case M_SD_AB:
6398 if (HAVE_64BIT_GPRS)
6399 {
6400 s = "sd";
6401 goto st;
6402 }
6403
6404 s = "sw";
6405 fmt = "t,o(b)";
6406
6407 ldd_std:
6408 if (offset_expr.X_op != O_symbol
6409 && offset_expr.X_op != O_constant)
6410 {
6411 as_bad (_("expression too complex"));
6412 offset_expr.X_op = O_constant;
6413 }
6414
6415 if (HAVE_32BIT_ADDRESSES
6416 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
6417 {
6418 char value [32];
6419
6420 sprintf_vma (value, offset_expr.X_add_number);
6421 as_bad (_("Number (0x%s) larger than 32 bits"), value);
6422 }
6423
6424 /* Even on a big endian machine $fn comes before $fn+1. We have
6425 to adjust when loading from memory. We set coproc if we must
6426 load $fn+1 first. */
6427 /* Itbl support may require additional care here. */
6428 if (! target_big_endian)
6429 coproc = 0;
6430
6431 if (mips_pic == NO_PIC
6432 || offset_expr.X_op == O_constant)
6433 {
6434 /* If this is a reference to a GP relative symbol, we want
6435 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6436 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
6437 If we have a base register, we use this
6438 addu $at,$breg,$gp
6439 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6440 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
6441 If this is not a GP relative symbol, we want
6442 lui $at,<sym> (BFD_RELOC_HI16_S)
6443 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6444 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6445 If there is a base register, we add it to $at after the
6446 lui instruction. If there is a constant, we always use
6447 the last case. */
6448 if (offset_expr.X_op == O_symbol
6449 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6450 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6451 {
6452 relax_start (offset_expr.X_add_symbol);
6453 if (breg == 0)
6454 {
6455 tempreg = mips_gp_register;
6456 }
6457 else
6458 {
6459 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6460 AT, breg, mips_gp_register);
6461 tempreg = AT;
6462 used_at = 1;
6463 }
6464
6465 /* Itbl support may require additional care here. */
6466 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6467 BFD_RELOC_GPREL16, tempreg);
6468 offset_expr.X_add_number += 4;
6469
6470 /* Set mips_optimize to 2 to avoid inserting an
6471 undesired nop. */
6472 hold_mips_optimize = mips_optimize;
6473 mips_optimize = 2;
6474 /* Itbl support may require additional care here. */
6475 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6476 BFD_RELOC_GPREL16, tempreg);
6477 mips_optimize = hold_mips_optimize;
6478
6479 relax_switch ();
6480
6481 /* We just generated two relocs. When tc_gen_reloc
6482 handles this case, it will skip the first reloc and
6483 handle the second. The second reloc already has an
6484 extra addend of 4, which we added above. We must
6485 subtract it out, and then subtract another 4 to make
6486 the first reloc come out right. The second reloc
6487 will come out right because we are going to add 4 to
6488 offset_expr when we build its instruction below.
6489
6490 If we have a symbol, then we don't want to include
6491 the offset, because it will wind up being included
6492 when we generate the reloc. */
6493
6494 if (offset_expr.X_op == O_constant)
6495 offset_expr.X_add_number -= 8;
6496 else
6497 {
6498 offset_expr.X_add_number = -4;
6499 offset_expr.X_op = O_constant;
6500 }
6501 }
6502 used_at = 1;
6503 macro_build_lui (&offset_expr, AT);
6504 if (breg != 0)
6505 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6506 /* Itbl support may require additional care here. */
6507 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6508 BFD_RELOC_LO16, AT);
6509 /* FIXME: How do we handle overflow here? */
6510 offset_expr.X_add_number += 4;
6511 /* Itbl support may require additional care here. */
6512 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6513 BFD_RELOC_LO16, AT);
6514 if (mips_relax.sequence)
6515 relax_end ();
6516 }
6517 else if (mips_pic == SVR4_PIC && ! mips_big_got)
6518 {
6519 /* If this is a reference to an external symbol, we want
6520 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6521 nop
6522 <op> $treg,0($at)
6523 <op> $treg+1,4($at)
6524 Otherwise we want
6525 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6526 nop
6527 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6528 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6529 If there is a base register we add it to $at before the
6530 lwc1 instructions. If there is a constant we include it
6531 in the lwc1 instructions. */
6532 used_at = 1;
6533 expr1.X_add_number = offset_expr.X_add_number;
6534 if (expr1.X_add_number < -0x8000
6535 || expr1.X_add_number >= 0x8000 - 4)
6536 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6537 load_got_offset (AT, &offset_expr);
6538 load_delay_nop ();
6539 if (breg != 0)
6540 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6541
6542 /* Set mips_optimize to 2 to avoid inserting an undesired
6543 nop. */
6544 hold_mips_optimize = mips_optimize;
6545 mips_optimize = 2;
6546
6547 /* Itbl support may require additional care here. */
6548 relax_start (offset_expr.X_add_symbol);
6549 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
6550 BFD_RELOC_LO16, AT);
6551 expr1.X_add_number += 4;
6552 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
6553 BFD_RELOC_LO16, AT);
6554 relax_switch ();
6555 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6556 BFD_RELOC_LO16, AT);
6557 offset_expr.X_add_number += 4;
6558 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6559 BFD_RELOC_LO16, AT);
6560 relax_end ();
6561
6562 mips_optimize = hold_mips_optimize;
6563 }
6564 else if (mips_pic == SVR4_PIC)
6565 {
6566 int gpdelay;
6567
6568 /* If this is a reference to an external symbol, we want
6569 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6570 addu $at,$at,$gp
6571 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
6572 nop
6573 <op> $treg,0($at)
6574 <op> $treg+1,4($at)
6575 Otherwise we want
6576 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6577 nop
6578 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6579 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6580 If there is a base register we add it to $at before the
6581 lwc1 instructions. If there is a constant we include it
6582 in the lwc1 instructions. */
6583 used_at = 1;
6584 expr1.X_add_number = offset_expr.X_add_number;
6585 offset_expr.X_add_number = 0;
6586 if (expr1.X_add_number < -0x8000
6587 || expr1.X_add_number >= 0x8000 - 4)
6588 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6589 gpdelay = reg_needs_delay (mips_gp_register);
6590 relax_start (offset_expr.X_add_symbol);
6591 macro_build (&offset_expr, "lui", "t,u",
6592 AT, BFD_RELOC_MIPS_GOT_HI16);
6593 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6594 AT, AT, mips_gp_register);
6595 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6596 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
6597 load_delay_nop ();
6598 if (breg != 0)
6599 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6600 /* Itbl support may require additional care here. */
6601 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
6602 BFD_RELOC_LO16, AT);
6603 expr1.X_add_number += 4;
6604
6605 /* Set mips_optimize to 2 to avoid inserting an undesired
6606 nop. */
6607 hold_mips_optimize = mips_optimize;
6608 mips_optimize = 2;
6609 /* Itbl support may require additional care here. */
6610 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
6611 BFD_RELOC_LO16, AT);
6612 mips_optimize = hold_mips_optimize;
6613 expr1.X_add_number -= 4;
6614
6615 relax_switch ();
6616 offset_expr.X_add_number = expr1.X_add_number;
6617 if (gpdelay)
6618 macro_build (NULL, "nop", "");
6619 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6620 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6621 load_delay_nop ();
6622 if (breg != 0)
6623 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6624 /* Itbl support may require additional care here. */
6625 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6626 BFD_RELOC_LO16, AT);
6627 offset_expr.X_add_number += 4;
6628
6629 /* Set mips_optimize to 2 to avoid inserting an undesired
6630 nop. */
6631 hold_mips_optimize = mips_optimize;
6632 mips_optimize = 2;
6633 /* Itbl support may require additional care here. */
6634 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6635 BFD_RELOC_LO16, AT);
6636 mips_optimize = hold_mips_optimize;
6637 relax_end ();
6638 }
6639 else
6640 abort ();
6641
6642 break;
6643
6644 case M_LD_OB:
6645 s = "lw";
6646 goto sd_ob;
6647 case M_SD_OB:
6648 s = "sw";
6649 sd_ob:
6650 assert (HAVE_32BIT_ADDRESSES);
6651 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
6652 offset_expr.X_add_number += 4;
6653 macro_build (&offset_expr, s, "t,o(b)", treg + 1, BFD_RELOC_LO16, breg);
6654 break;
6655
6656 /* New code added to support COPZ instructions.
6657 This code builds table entries out of the macros in mip_opcodes.
6658 R4000 uses interlocks to handle coproc delays.
6659 Other chips (like the R3000) require nops to be inserted for delays.
6660
6661 FIXME: Currently, we require that the user handle delays.
6662 In order to fill delay slots for non-interlocked chips,
6663 we must have a way to specify delays based on the coprocessor.
6664 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
6665 What are the side-effects of the cop instruction?
6666 What cache support might we have and what are its effects?
6667 Both coprocessor & memory require delays. how long???
6668 What registers are read/set/modified?
6669
6670 If an itbl is provided to interpret cop instructions,
6671 this knowledge can be encoded in the itbl spec. */
6672
6673 case M_COP0:
6674 s = "c0";
6675 goto copz;
6676 case M_COP1:
6677 s = "c1";
6678 goto copz;
6679 case M_COP2:
6680 s = "c2";
6681 goto copz;
6682 case M_COP3:
6683 s = "c3";
6684 copz:
6685 /* For now we just do C (same as Cz). The parameter will be
6686 stored in insn_opcode by mips_ip. */
6687 macro_build (NULL, s, "C", ip->insn_opcode);
6688 break;
6689
6690 case M_MOVE:
6691 move_register (dreg, sreg);
6692 break;
6693
6694 #ifdef LOSING_COMPILER
6695 default:
6696 /* Try and see if this is a new itbl instruction.
6697 This code builds table entries out of the macros in mip_opcodes.
6698 FIXME: For now we just assemble the expression and pass it's
6699 value along as a 32-bit immediate.
6700 We may want to have the assembler assemble this value,
6701 so that we gain the assembler's knowledge of delay slots,
6702 symbols, etc.
6703 Would it be more efficient to use mask (id) here? */
6704 if (itbl_have_entries
6705 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
6706 {
6707 s = ip->insn_mo->name;
6708 s2 = "cop3";
6709 coproc = ITBL_DECODE_PNUM (immed_expr);;
6710 macro_build (&immed_expr, s, "C");
6711 break;
6712 }
6713 macro2 (ip);
6714 break;
6715 }
6716 if (mips_opts.noat && used_at)
6717 as_bad (_("Macro used $at after \".set noat\""));
6718 }
6719
6720 static void
6721 macro2 (struct mips_cl_insn *ip)
6722 {
6723 register int treg, sreg, dreg, breg;
6724 int tempreg;
6725 int mask;
6726 int used_at;
6727 expressionS expr1;
6728 const char *s;
6729 const char *s2;
6730 const char *fmt;
6731 int likely = 0;
6732 int dbl = 0;
6733 int coproc = 0;
6734 int lr = 0;
6735 int imm = 0;
6736 int off;
6737 offsetT maxnum;
6738 bfd_reloc_code_real_type r;
6739
6740 treg = (ip->insn_opcode >> 16) & 0x1f;
6741 dreg = (ip->insn_opcode >> 11) & 0x1f;
6742 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
6743 mask = ip->insn_mo->mask;
6744
6745 expr1.X_op = O_constant;
6746 expr1.X_op_symbol = NULL;
6747 expr1.X_add_symbol = NULL;
6748 expr1.X_add_number = 1;
6749
6750 switch (mask)
6751 {
6752 #endif /* LOSING_COMPILER */
6753
6754 case M_DMUL:
6755 dbl = 1;
6756 case M_MUL:
6757 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
6758 macro_build (NULL, "mflo", "d", dreg);
6759 break;
6760
6761 case M_DMUL_I:
6762 dbl = 1;
6763 case M_MUL_I:
6764 /* The MIPS assembler some times generates shifts and adds. I'm
6765 not trying to be that fancy. GCC should do this for us
6766 anyway. */
6767 used_at = 1;
6768 load_register (AT, &imm_expr, dbl);
6769 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
6770 macro_build (NULL, "mflo", "d", dreg);
6771 break;
6772
6773 case M_DMULO_I:
6774 dbl = 1;
6775 case M_MULO_I:
6776 imm = 1;
6777 goto do_mulo;
6778
6779 case M_DMULO:
6780 dbl = 1;
6781 case M_MULO:
6782 do_mulo:
6783 start_noreorder ();
6784 used_at = 1;
6785 if (imm)
6786 load_register (AT, &imm_expr, dbl);
6787 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
6788 macro_build (NULL, "mflo", "d", dreg);
6789 macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
6790 macro_build (NULL, "mfhi", "d", AT);
6791 if (mips_trap)
6792 macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
6793 else
6794 {
6795 expr1.X_add_number = 8;
6796 macro_build (&expr1, "beq", "s,t,p", dreg, AT);
6797 macro_build (NULL, "nop", "", 0);
6798 macro_build (NULL, "break", "c", 6);
6799 }
6800 end_noreorder ();
6801 macro_build (NULL, "mflo", "d", dreg);
6802 break;
6803
6804 case M_DMULOU_I:
6805 dbl = 1;
6806 case M_MULOU_I:
6807 imm = 1;
6808 goto do_mulou;
6809
6810 case M_DMULOU:
6811 dbl = 1;
6812 case M_MULOU:
6813 do_mulou:
6814 start_noreorder ();
6815 used_at = 1;
6816 if (imm)
6817 load_register (AT, &imm_expr, dbl);
6818 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
6819 sreg, imm ? AT : treg);
6820 macro_build (NULL, "mfhi", "d", AT);
6821 macro_build (NULL, "mflo", "d", dreg);
6822 if (mips_trap)
6823 macro_build (NULL, "tne", "s,t,q", AT, 0, 6);
6824 else
6825 {
6826 expr1.X_add_number = 8;
6827 macro_build (&expr1, "beq", "s,t,p", AT, 0);
6828 macro_build (NULL, "nop", "", 0);
6829 macro_build (NULL, "break", "c", 6);
6830 }
6831 end_noreorder ();
6832 break;
6833
6834 case M_DROL:
6835 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6836 {
6837 if (dreg == sreg)
6838 {
6839 tempreg = AT;
6840 used_at = 1;
6841 }
6842 else
6843 {
6844 tempreg = dreg;
6845 }
6846 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
6847 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
6848 break;
6849 }
6850 used_at = 1;
6851 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
6852 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
6853 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
6854 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6855 break;
6856
6857 case M_ROL:
6858 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
6859 {
6860 if (dreg == sreg)
6861 {
6862 tempreg = AT;
6863 used_at = 1;
6864 }
6865 else
6866 {
6867 tempreg = dreg;
6868 }
6869 macro_build (NULL, "negu", "d,w", tempreg, treg);
6870 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
6871 break;
6872 }
6873 used_at = 1;
6874 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
6875 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
6876 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
6877 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6878 break;
6879
6880 case M_DROL_I:
6881 {
6882 unsigned int rot;
6883 char *l, *r;
6884
6885 if (imm_expr.X_op != O_constant)
6886 as_bad (_("Improper rotate count"));
6887 rot = imm_expr.X_add_number & 0x3f;
6888 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6889 {
6890 rot = (64 - rot) & 0x3f;
6891 if (rot >= 32)
6892 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
6893 else
6894 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
6895 break;
6896 }
6897 if (rot == 0)
6898 {
6899 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
6900 break;
6901 }
6902 l = (rot < 0x20) ? "dsll" : "dsll32";
6903 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
6904 rot &= 0x1f;
6905 used_at = 1;
6906 macro_build (NULL, l, "d,w,<", AT, sreg, rot);
6907 macro_build (NULL, r, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6908 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6909 }
6910 break;
6911
6912 case M_ROL_I:
6913 {
6914 unsigned int rot;
6915
6916 if (imm_expr.X_op != O_constant)
6917 as_bad (_("Improper rotate count"));
6918 rot = imm_expr.X_add_number & 0x1f;
6919 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
6920 {
6921 macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
6922 break;
6923 }
6924 if (rot == 0)
6925 {
6926 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
6927 break;
6928 }
6929 used_at = 1;
6930 macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
6931 macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6932 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6933 }
6934 break;
6935
6936 case M_DROR:
6937 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6938 {
6939 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
6940 break;
6941 }
6942 used_at = 1;
6943 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
6944 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
6945 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
6946 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6947 break;
6948
6949 case M_ROR:
6950 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
6951 {
6952 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
6953 break;
6954 }
6955 used_at = 1;
6956 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
6957 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
6958 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
6959 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6960 break;
6961
6962 case M_DROR_I:
6963 {
6964 unsigned int rot;
6965 char *l, *r;
6966
6967 if (imm_expr.X_op != O_constant)
6968 as_bad (_("Improper rotate count"));
6969 rot = imm_expr.X_add_number & 0x3f;
6970 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6971 {
6972 if (rot >= 32)
6973 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
6974 else
6975 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
6976 break;
6977 }
6978 if (rot == 0)
6979 {
6980 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
6981 break;
6982 }
6983 r = (rot < 0x20) ? "dsrl" : "dsrl32";
6984 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
6985 rot &= 0x1f;
6986 used_at = 1;
6987 macro_build (NULL, r, "d,w,<", AT, sreg, rot);
6988 macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6989 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6990 }
6991 break;
6992
6993 case M_ROR_I:
6994 {
6995 unsigned int rot;
6996
6997 if (imm_expr.X_op != O_constant)
6998 as_bad (_("Improper rotate count"));
6999 rot = imm_expr.X_add_number & 0x1f;
7000 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
7001 {
7002 macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
7003 break;
7004 }
7005 if (rot == 0)
7006 {
7007 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
7008 break;
7009 }
7010 used_at = 1;
7011 macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
7012 macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7013 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
7014 }
7015 break;
7016
7017 case M_S_DOB:
7018 if (mips_opts.arch == CPU_R4650)
7019 {
7020 as_bad (_("opcode not supported on this processor"));
7021 break;
7022 }
7023 assert (mips_opts.isa == ISA_MIPS1);
7024 /* Even on a big endian machine $fn comes before $fn+1. We have
7025 to adjust when storing to memory. */
7026 macro_build (&offset_expr, "swc1", "T,o(b)",
7027 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
7028 offset_expr.X_add_number += 4;
7029 macro_build (&offset_expr, "swc1", "T,o(b)",
7030 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
7031 break;
7032
7033 case M_SEQ:
7034 if (sreg == 0)
7035 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
7036 else if (treg == 0)
7037 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7038 else
7039 {
7040 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7041 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7042 }
7043 break;
7044
7045 case M_SEQ_I:
7046 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7047 {
7048 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7049 break;
7050 }
7051 if (sreg == 0)
7052 {
7053 as_warn (_("Instruction %s: result is always false"),
7054 ip->insn_mo->name);
7055 move_register (dreg, 0);
7056 break;
7057 }
7058 if (imm_expr.X_op == O_constant
7059 && imm_expr.X_add_number >= 0
7060 && imm_expr.X_add_number < 0x10000)
7061 {
7062 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
7063 }
7064 else if (imm_expr.X_op == O_constant
7065 && imm_expr.X_add_number > -0x8000
7066 && imm_expr.X_add_number < 0)
7067 {
7068 imm_expr.X_add_number = -imm_expr.X_add_number;
7069 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
7070 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7071 }
7072 else
7073 {
7074 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7075 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
7076 used_at = 1;
7077 }
7078 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7079 break;
7080
7081 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
7082 s = "slt";
7083 goto sge;
7084 case M_SGEU:
7085 s = "sltu";
7086 sge:
7087 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
7088 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7089 break;
7090
7091 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
7092 case M_SGEU_I:
7093 if (imm_expr.X_op == O_constant
7094 && imm_expr.X_add_number >= -0x8000
7095 && imm_expr.X_add_number < 0x8000)
7096 {
7097 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
7098 dreg, sreg, BFD_RELOC_LO16);
7099 }
7100 else
7101 {
7102 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7103 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
7104 dreg, sreg, AT);
7105 used_at = 1;
7106 }
7107 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7108 break;
7109
7110 case M_SGT: /* sreg > treg <==> treg < sreg */
7111 s = "slt";
7112 goto sgt;
7113 case M_SGTU:
7114 s = "sltu";
7115 sgt:
7116 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7117 break;
7118
7119 case M_SGT_I: /* sreg > I <==> I < sreg */
7120 s = "slt";
7121 goto sgti;
7122 case M_SGTU_I:
7123 s = "sltu";
7124 sgti:
7125 used_at = 1;
7126 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7127 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7128 break;
7129
7130 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
7131 s = "slt";
7132 goto sle;
7133 case M_SLEU:
7134 s = "sltu";
7135 sle:
7136 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7137 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7138 break;
7139
7140 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
7141 s = "slt";
7142 goto slei;
7143 case M_SLEU_I:
7144 s = "sltu";
7145 slei:
7146 used_at = 1;
7147 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7148 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7149 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7150 break;
7151
7152 case M_SLT_I:
7153 if (imm_expr.X_op == O_constant
7154 && imm_expr.X_add_number >= -0x8000
7155 && imm_expr.X_add_number < 0x8000)
7156 {
7157 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7158 break;
7159 }
7160 used_at = 1;
7161 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7162 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
7163 break;
7164
7165 case M_SLTU_I:
7166 if (imm_expr.X_op == O_constant
7167 && imm_expr.X_add_number >= -0x8000
7168 && imm_expr.X_add_number < 0x8000)
7169 {
7170 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
7171 BFD_RELOC_LO16);
7172 break;
7173 }
7174 used_at = 1;
7175 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7176 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
7177 break;
7178
7179 case M_SNE:
7180 if (sreg == 0)
7181 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
7182 else if (treg == 0)
7183 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
7184 else
7185 {
7186 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7187 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
7188 }
7189 break;
7190
7191 case M_SNE_I:
7192 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7193 {
7194 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
7195 break;
7196 }
7197 if (sreg == 0)
7198 {
7199 as_warn (_("Instruction %s: result is always true"),
7200 ip->insn_mo->name);
7201 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
7202 dreg, 0, BFD_RELOC_LO16);
7203 break;
7204 }
7205 if (imm_expr.X_op == O_constant
7206 && imm_expr.X_add_number >= 0
7207 && imm_expr.X_add_number < 0x10000)
7208 {
7209 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
7210 }
7211 else if (imm_expr.X_op == O_constant
7212 && imm_expr.X_add_number > -0x8000
7213 && imm_expr.X_add_number < 0)
7214 {
7215 imm_expr.X_add_number = -imm_expr.X_add_number;
7216 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
7217 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7218 }
7219 else
7220 {
7221 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7222 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
7223 used_at = 1;
7224 }
7225 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
7226 break;
7227
7228 case M_DSUB_I:
7229 dbl = 1;
7230 case M_SUB_I:
7231 if (imm_expr.X_op == O_constant
7232 && imm_expr.X_add_number > -0x8000
7233 && imm_expr.X_add_number <= 0x8000)
7234 {
7235 imm_expr.X_add_number = -imm_expr.X_add_number;
7236 macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
7237 dreg, sreg, BFD_RELOC_LO16);
7238 break;
7239 }
7240 used_at = 1;
7241 load_register (AT, &imm_expr, dbl);
7242 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
7243 break;
7244
7245 case M_DSUBU_I:
7246 dbl = 1;
7247 case M_SUBU_I:
7248 if (imm_expr.X_op == O_constant
7249 && imm_expr.X_add_number > -0x8000
7250 && imm_expr.X_add_number <= 0x8000)
7251 {
7252 imm_expr.X_add_number = -imm_expr.X_add_number;
7253 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
7254 dreg, sreg, BFD_RELOC_LO16);
7255 break;
7256 }
7257 used_at = 1;
7258 load_register (AT, &imm_expr, dbl);
7259 macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
7260 break;
7261
7262 case M_TEQ_I:
7263 s = "teq";
7264 goto trap;
7265 case M_TGE_I:
7266 s = "tge";
7267 goto trap;
7268 case M_TGEU_I:
7269 s = "tgeu";
7270 goto trap;
7271 case M_TLT_I:
7272 s = "tlt";
7273 goto trap;
7274 case M_TLTU_I:
7275 s = "tltu";
7276 goto trap;
7277 case M_TNE_I:
7278 s = "tne";
7279 trap:
7280 used_at = 1;
7281 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7282 macro_build (NULL, s, "s,t", sreg, AT);
7283 break;
7284
7285 case M_TRUNCWS:
7286 case M_TRUNCWD:
7287 assert (mips_opts.isa == ISA_MIPS1);
7288 used_at = 1;
7289 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
7290 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
7291
7292 /*
7293 * Is the double cfc1 instruction a bug in the mips assembler;
7294 * or is there a reason for it?
7295 */
7296 start_noreorder ();
7297 macro_build (NULL, "cfc1", "t,G", treg, RA);
7298 macro_build (NULL, "cfc1", "t,G", treg, RA);
7299 macro_build (NULL, "nop", "");
7300 expr1.X_add_number = 3;
7301 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
7302 expr1.X_add_number = 2;
7303 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
7304 macro_build (NULL, "ctc1", "t,G", AT, RA);
7305 macro_build (NULL, "nop", "");
7306 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
7307 dreg, sreg);
7308 macro_build (NULL, "ctc1", "t,G", treg, RA);
7309 macro_build (NULL, "nop", "");
7310 end_noreorder ();
7311 break;
7312
7313 case M_ULH:
7314 s = "lb";
7315 goto ulh;
7316 case M_ULHU:
7317 s = "lbu";
7318 ulh:
7319 used_at = 1;
7320 if (offset_expr.X_add_number >= 0x7fff)
7321 as_bad (_("operand overflow"));
7322 if (! target_big_endian)
7323 ++offset_expr.X_add_number;
7324 macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
7325 if (! target_big_endian)
7326 --offset_expr.X_add_number;
7327 else
7328 ++offset_expr.X_add_number;
7329 macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
7330 macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
7331 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7332 break;
7333
7334 case M_ULD:
7335 s = "ldl";
7336 s2 = "ldr";
7337 off = 7;
7338 goto ulw;
7339 case M_ULW:
7340 s = "lwl";
7341 s2 = "lwr";
7342 off = 3;
7343 ulw:
7344 if (offset_expr.X_add_number >= 0x8000 - off)
7345 as_bad (_("operand overflow"));
7346 if (treg != breg)
7347 tempreg = treg;
7348 else
7349 {
7350 used_at = 1;
7351 tempreg = AT;
7352 }
7353 if (! target_big_endian)
7354 offset_expr.X_add_number += off;
7355 macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
7356 if (! target_big_endian)
7357 offset_expr.X_add_number -= off;
7358 else
7359 offset_expr.X_add_number += off;
7360 macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
7361
7362 /* If necessary, move the result in tempreg the final destination. */
7363 if (treg == tempreg)
7364 break;
7365 /* Protect second load's delay slot. */
7366 load_delay_nop ();
7367 move_register (treg, tempreg);
7368 break;
7369
7370 case M_ULD_A:
7371 s = "ldl";
7372 s2 = "ldr";
7373 off = 7;
7374 goto ulwa;
7375 case M_ULW_A:
7376 s = "lwl";
7377 s2 = "lwr";
7378 off = 3;
7379 ulwa:
7380 used_at = 1;
7381 load_address (AT, &offset_expr, &used_at);
7382 if (breg != 0)
7383 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7384 if (! target_big_endian)
7385 expr1.X_add_number = off;
7386 else
7387 expr1.X_add_number = 0;
7388 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7389 if (! target_big_endian)
7390 expr1.X_add_number = 0;
7391 else
7392 expr1.X_add_number = off;
7393 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7394 break;
7395
7396 case M_ULH_A:
7397 case M_ULHU_A:
7398 used_at = 1;
7399 load_address (AT, &offset_expr, &used_at);
7400 if (breg != 0)
7401 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7402 if (target_big_endian)
7403 expr1.X_add_number = 0;
7404 macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
7405 treg, BFD_RELOC_LO16, AT);
7406 if (target_big_endian)
7407 expr1.X_add_number = 1;
7408 else
7409 expr1.X_add_number = 0;
7410 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
7411 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
7412 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7413 break;
7414
7415 case M_USH:
7416 used_at = 1;
7417 if (offset_expr.X_add_number >= 0x7fff)
7418 as_bad (_("operand overflow"));
7419 if (target_big_endian)
7420 ++offset_expr.X_add_number;
7421 macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
7422 macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
7423 if (target_big_endian)
7424 --offset_expr.X_add_number;
7425 else
7426 ++offset_expr.X_add_number;
7427 macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
7428 break;
7429
7430 case M_USD:
7431 s = "sdl";
7432 s2 = "sdr";
7433 off = 7;
7434 goto usw;
7435 case M_USW:
7436 s = "swl";
7437 s2 = "swr";
7438 off = 3;
7439 usw:
7440 if (offset_expr.X_add_number >= 0x8000 - off)
7441 as_bad (_("operand overflow"));
7442 if (! target_big_endian)
7443 offset_expr.X_add_number += off;
7444 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
7445 if (! target_big_endian)
7446 offset_expr.X_add_number -= off;
7447 else
7448 offset_expr.X_add_number += off;
7449 macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
7450 break;
7451
7452 case M_USD_A:
7453 s = "sdl";
7454 s2 = "sdr";
7455 off = 7;
7456 goto uswa;
7457 case M_USW_A:
7458 s = "swl";
7459 s2 = "swr";
7460 off = 3;
7461 uswa:
7462 used_at = 1;
7463 load_address (AT, &offset_expr, &used_at);
7464 if (breg != 0)
7465 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7466 if (! target_big_endian)
7467 expr1.X_add_number = off;
7468 else
7469 expr1.X_add_number = 0;
7470 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7471 if (! target_big_endian)
7472 expr1.X_add_number = 0;
7473 else
7474 expr1.X_add_number = off;
7475 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7476 break;
7477
7478 case M_USH_A:
7479 used_at = 1;
7480 load_address (AT, &offset_expr, &used_at);
7481 if (breg != 0)
7482 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7483 if (! target_big_endian)
7484 expr1.X_add_number = 0;
7485 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7486 macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
7487 if (! target_big_endian)
7488 expr1.X_add_number = 1;
7489 else
7490 expr1.X_add_number = 0;
7491 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7492 if (! target_big_endian)
7493 expr1.X_add_number = 0;
7494 else
7495 expr1.X_add_number = 1;
7496 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
7497 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
7498 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7499 break;
7500
7501 default:
7502 /* FIXME: Check if this is one of the itbl macros, since they
7503 are added dynamically. */
7504 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
7505 break;
7506 }
7507 if (mips_opts.noat && used_at)
7508 as_bad (_("Macro used $at after \".set noat\""));
7509 }
7510
7511 /* Implement macros in mips16 mode. */
7512
7513 static void
7514 mips16_macro (struct mips_cl_insn *ip)
7515 {
7516 int mask;
7517 int xreg, yreg, zreg, tmp;
7518 expressionS expr1;
7519 int dbl;
7520 const char *s, *s2, *s3;
7521
7522 mask = ip->insn_mo->mask;
7523
7524 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
7525 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
7526 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
7527
7528 expr1.X_op = O_constant;
7529 expr1.X_op_symbol = NULL;
7530 expr1.X_add_symbol = NULL;
7531 expr1.X_add_number = 1;
7532
7533 dbl = 0;
7534
7535 switch (mask)
7536 {
7537 default:
7538 internalError ();
7539
7540 case M_DDIV_3:
7541 dbl = 1;
7542 case M_DIV_3:
7543 s = "mflo";
7544 goto do_div3;
7545 case M_DREM_3:
7546 dbl = 1;
7547 case M_REM_3:
7548 s = "mfhi";
7549 do_div3:
7550 start_noreorder ();
7551 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
7552 expr1.X_add_number = 2;
7553 macro_build (&expr1, "bnez", "x,p", yreg);
7554 macro_build (NULL, "break", "6", 7);
7555
7556 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
7557 since that causes an overflow. We should do that as well,
7558 but I don't see how to do the comparisons without a temporary
7559 register. */
7560 end_noreorder ();
7561 macro_build (NULL, s, "x", zreg);
7562 break;
7563
7564 case M_DIVU_3:
7565 s = "divu";
7566 s2 = "mflo";
7567 goto do_divu3;
7568 case M_REMU_3:
7569 s = "divu";
7570 s2 = "mfhi";
7571 goto do_divu3;
7572 case M_DDIVU_3:
7573 s = "ddivu";
7574 s2 = "mflo";
7575 goto do_divu3;
7576 case M_DREMU_3:
7577 s = "ddivu";
7578 s2 = "mfhi";
7579 do_divu3:
7580 start_noreorder ();
7581 macro_build (NULL, s, "0,x,y", xreg, yreg);
7582 expr1.X_add_number = 2;
7583 macro_build (&expr1, "bnez", "x,p", yreg);
7584 macro_build (NULL, "break", "6", 7);
7585 end_noreorder ();
7586 macro_build (NULL, s2, "x", zreg);
7587 break;
7588
7589 case M_DMUL:
7590 dbl = 1;
7591 case M_MUL:
7592 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
7593 macro_build (NULL, "mflo", "x", zreg);
7594 break;
7595
7596 case M_DSUBU_I:
7597 dbl = 1;
7598 goto do_subu;
7599 case M_SUBU_I:
7600 do_subu:
7601 if (imm_expr.X_op != O_constant)
7602 as_bad (_("Unsupported large constant"));
7603 imm_expr.X_add_number = -imm_expr.X_add_number;
7604 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
7605 break;
7606
7607 case M_SUBU_I_2:
7608 if (imm_expr.X_op != O_constant)
7609 as_bad (_("Unsupported large constant"));
7610 imm_expr.X_add_number = -imm_expr.X_add_number;
7611 macro_build (&imm_expr, "addiu", "x,k", xreg);
7612 break;
7613
7614 case M_DSUBU_I_2:
7615 if (imm_expr.X_op != O_constant)
7616 as_bad (_("Unsupported large constant"));
7617 imm_expr.X_add_number = -imm_expr.X_add_number;
7618 macro_build (&imm_expr, "daddiu", "y,j", yreg);
7619 break;
7620
7621 case M_BEQ:
7622 s = "cmp";
7623 s2 = "bteqz";
7624 goto do_branch;
7625 case M_BNE:
7626 s = "cmp";
7627 s2 = "btnez";
7628 goto do_branch;
7629 case M_BLT:
7630 s = "slt";
7631 s2 = "btnez";
7632 goto do_branch;
7633 case M_BLTU:
7634 s = "sltu";
7635 s2 = "btnez";
7636 goto do_branch;
7637 case M_BLE:
7638 s = "slt";
7639 s2 = "bteqz";
7640 goto do_reverse_branch;
7641 case M_BLEU:
7642 s = "sltu";
7643 s2 = "bteqz";
7644 goto do_reverse_branch;
7645 case M_BGE:
7646 s = "slt";
7647 s2 = "bteqz";
7648 goto do_branch;
7649 case M_BGEU:
7650 s = "sltu";
7651 s2 = "bteqz";
7652 goto do_branch;
7653 case M_BGT:
7654 s = "slt";
7655 s2 = "btnez";
7656 goto do_reverse_branch;
7657 case M_BGTU:
7658 s = "sltu";
7659 s2 = "btnez";
7660
7661 do_reverse_branch:
7662 tmp = xreg;
7663 xreg = yreg;
7664 yreg = tmp;
7665
7666 do_branch:
7667 macro_build (NULL, s, "x,y", xreg, yreg);
7668 macro_build (&offset_expr, s2, "p");
7669 break;
7670
7671 case M_BEQ_I:
7672 s = "cmpi";
7673 s2 = "bteqz";
7674 s3 = "x,U";
7675 goto do_branch_i;
7676 case M_BNE_I:
7677 s = "cmpi";
7678 s2 = "btnez";
7679 s3 = "x,U";
7680 goto do_branch_i;
7681 case M_BLT_I:
7682 s = "slti";
7683 s2 = "btnez";
7684 s3 = "x,8";
7685 goto do_branch_i;
7686 case M_BLTU_I:
7687 s = "sltiu";
7688 s2 = "btnez";
7689 s3 = "x,8";
7690 goto do_branch_i;
7691 case M_BLE_I:
7692 s = "slti";
7693 s2 = "btnez";
7694 s3 = "x,8";
7695 goto do_addone_branch_i;
7696 case M_BLEU_I:
7697 s = "sltiu";
7698 s2 = "btnez";
7699 s3 = "x,8";
7700 goto do_addone_branch_i;
7701 case M_BGE_I:
7702 s = "slti";
7703 s2 = "bteqz";
7704 s3 = "x,8";
7705 goto do_branch_i;
7706 case M_BGEU_I:
7707 s = "sltiu";
7708 s2 = "bteqz";
7709 s3 = "x,8";
7710 goto do_branch_i;
7711 case M_BGT_I:
7712 s = "slti";
7713 s2 = "bteqz";
7714 s3 = "x,8";
7715 goto do_addone_branch_i;
7716 case M_BGTU_I:
7717 s = "sltiu";
7718 s2 = "bteqz";
7719 s3 = "x,8";
7720
7721 do_addone_branch_i:
7722 if (imm_expr.X_op != O_constant)
7723 as_bad (_("Unsupported large constant"));
7724 ++imm_expr.X_add_number;
7725
7726 do_branch_i:
7727 macro_build (&imm_expr, s, s3, xreg);
7728 macro_build (&offset_expr, s2, "p");
7729 break;
7730
7731 case M_ABS:
7732 expr1.X_add_number = 0;
7733 macro_build (&expr1, "slti", "x,8", yreg);
7734 if (xreg != yreg)
7735 move_register (xreg, yreg);
7736 expr1.X_add_number = 2;
7737 macro_build (&expr1, "bteqz", "p");
7738 macro_build (NULL, "neg", "x,w", xreg, xreg);
7739 }
7740 }
7741
7742 /* For consistency checking, verify that all bits are specified either
7743 by the match/mask part of the instruction definition, or by the
7744 operand list. */
7745 static int
7746 validate_mips_insn (const struct mips_opcode *opc)
7747 {
7748 const char *p = opc->args;
7749 char c;
7750 unsigned long used_bits = opc->mask;
7751
7752 if ((used_bits & opc->match) != opc->match)
7753 {
7754 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
7755 opc->name, opc->args);
7756 return 0;
7757 }
7758 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
7759 while (*p)
7760 switch (c = *p++)
7761 {
7762 case ',': break;
7763 case '(': break;
7764 case ')': break;
7765 case '+':
7766 switch (c = *p++)
7767 {
7768 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7769 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
7770 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
7771 case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD);
7772 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
7773 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7774 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
7775 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
7776 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
7777 case 'I': break;
7778 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7779 case 'T': USE_BITS (OP_MASK_RT, OP_SH_RT);
7780 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
7781 default:
7782 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
7783 c, opc->name, opc->args);
7784 return 0;
7785 }
7786 break;
7787 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7788 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7789 case 'A': break;
7790 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
7791 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
7792 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7793 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7794 case 'F': break;
7795 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7796 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
7797 case 'I': break;
7798 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
7799 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7800 case 'L': break;
7801 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
7802 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
7803 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
7804 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
7805 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7806 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
7807 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7808 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7809 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7810 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7811 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7812 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7813 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7814 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
7815 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7816 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
7817 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7818 case 'f': break;
7819 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
7820 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7821 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7822 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
7823 case 'l': break;
7824 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7825 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7826 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
7827 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7828 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7829 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7830 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7831 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7832 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7833 case 'x': break;
7834 case 'z': break;
7835 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
7836 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
7837 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7838 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
7839 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
7840 case '[': break;
7841 case ']': break;
7842 case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break;
7843 case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break;
7844 case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break;
7845 case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7846 case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break;
7847 case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break;
7848 case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break;
7849 case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break;
7850 case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break;
7851 case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break;
7852 case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break;
7853 case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break;
7854 case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break;
7855 case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break;
7856 case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break;
7857 case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7858 default:
7859 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
7860 c, opc->name, opc->args);
7861 return 0;
7862 }
7863 #undef USE_BITS
7864 if (used_bits != 0xffffffff)
7865 {
7866 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
7867 ~used_bits & 0xffffffff, opc->name, opc->args);
7868 return 0;
7869 }
7870 return 1;
7871 }
7872
7873 /* This routine assembles an instruction into its binary format. As a
7874 side effect, it sets one of the global variables imm_reloc or
7875 offset_reloc to the type of relocation to do if one of the operands
7876 is an address expression. */
7877
7878 static void
7879 mips_ip (char *str, struct mips_cl_insn *ip)
7880 {
7881 char *s;
7882 const char *args;
7883 char c = 0;
7884 struct mips_opcode *insn;
7885 char *argsStart;
7886 unsigned int regno;
7887 unsigned int lastregno = 0;
7888 unsigned int lastpos = 0;
7889 unsigned int limlo, limhi;
7890 char *s_reset;
7891 char save_c = 0;
7892 offsetT min_range, max_range;
7893
7894 insn_error = NULL;
7895
7896 /* If the instruction contains a '.', we first try to match an instruction
7897 including the '.'. Then we try again without the '.'. */
7898 insn = NULL;
7899 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
7900 continue;
7901
7902 /* If we stopped on whitespace, then replace the whitespace with null for
7903 the call to hash_find. Save the character we replaced just in case we
7904 have to re-parse the instruction. */
7905 if (ISSPACE (*s))
7906 {
7907 save_c = *s;
7908 *s++ = '\0';
7909 }
7910
7911 insn = (struct mips_opcode *) hash_find (op_hash, str);
7912
7913 /* If we didn't find the instruction in the opcode table, try again, but
7914 this time with just the instruction up to, but not including the
7915 first '.'. */
7916 if (insn == NULL)
7917 {
7918 /* Restore the character we overwrite above (if any). */
7919 if (save_c)
7920 *(--s) = save_c;
7921
7922 /* Scan up to the first '.' or whitespace. */
7923 for (s = str;
7924 *s != '\0' && *s != '.' && !ISSPACE (*s);
7925 ++s)
7926 continue;
7927
7928 /* If we did not find a '.', then we can quit now. */
7929 if (*s != '.')
7930 {
7931 insn_error = "unrecognized opcode";
7932 return;
7933 }
7934
7935 /* Lookup the instruction in the hash table. */
7936 *s++ = '\0';
7937 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
7938 {
7939 insn_error = "unrecognized opcode";
7940 return;
7941 }
7942 }
7943
7944 argsStart = s;
7945 for (;;)
7946 {
7947 bfd_boolean ok;
7948
7949 assert (strcmp (insn->name, str) == 0);
7950
7951 if (OPCODE_IS_MEMBER (insn,
7952 (mips_opts.isa
7953 | (file_ase_mips16 ? INSN_MIPS16 : 0)
7954 | (mips_opts.ase_mdmx ? INSN_MDMX : 0)
7955 | (mips_opts.ase_dsp ? INSN_DSP : 0)
7956 | (mips_opts.ase_mt ? INSN_MT : 0)
7957 | (mips_opts.ase_mips3d ? INSN_MIPS3D : 0)),
7958 mips_opts.arch))
7959 ok = TRUE;
7960 else
7961 ok = FALSE;
7962
7963 if (insn->pinfo != INSN_MACRO)
7964 {
7965 if (mips_opts.arch == CPU_R4650 && (insn->pinfo & FP_D) != 0)
7966 ok = FALSE;
7967 }
7968
7969 if (! ok)
7970 {
7971 if (insn + 1 < &mips_opcodes[NUMOPCODES]
7972 && strcmp (insn->name, insn[1].name) == 0)
7973 {
7974 ++insn;
7975 continue;
7976 }
7977 else
7978 {
7979 if (!insn_error)
7980 {
7981 static char buf[100];
7982 sprintf (buf,
7983 _("opcode not supported on this processor: %s (%s)"),
7984 mips_cpu_info_from_arch (mips_opts.arch)->name,
7985 mips_cpu_info_from_isa (mips_opts.isa)->name);
7986 insn_error = buf;
7987 }
7988 if (save_c)
7989 *(--s) = save_c;
7990 return;
7991 }
7992 }
7993
7994 create_insn (ip, insn);
7995 insn_error = NULL;
7996 for (args = insn->args;; ++args)
7997 {
7998 int is_mdmx;
7999
8000 s += strspn (s, " \t");
8001 is_mdmx = 0;
8002 switch (*args)
8003 {
8004 case '\0': /* end of args */
8005 if (*s == '\0')
8006 return;
8007 break;
8008
8009 case '3': /* dsp 3-bit unsigned immediate in bit 21 */
8010 my_getExpression (&imm_expr, s);
8011 check_absolute_expr (ip, &imm_expr);
8012 if (imm_expr.X_add_number & ~OP_MASK_SA3)
8013 {
8014 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8015 OP_MASK_SA3, (unsigned long) imm_expr.X_add_number);
8016 imm_expr.X_add_number &= OP_MASK_SA3;
8017 }
8018 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_SA3;
8019 imm_expr.X_op = O_absent;
8020 s = expr_end;
8021 continue;
8022
8023 case '4': /* dsp 4-bit unsigned immediate in bit 21 */
8024 my_getExpression (&imm_expr, s);
8025 check_absolute_expr (ip, &imm_expr);
8026 if (imm_expr.X_add_number & ~OP_MASK_SA4)
8027 {
8028 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8029 OP_MASK_SA4, (unsigned long) imm_expr.X_add_number);
8030 imm_expr.X_add_number &= OP_MASK_SA4;
8031 }
8032 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_SA4;
8033 imm_expr.X_op = O_absent;
8034 s = expr_end;
8035 continue;
8036
8037 case '5': /* dsp 8-bit unsigned immediate in bit 16 */
8038 my_getExpression (&imm_expr, s);
8039 check_absolute_expr (ip, &imm_expr);
8040 if (imm_expr.X_add_number & ~OP_MASK_IMM8)
8041 {
8042 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8043 OP_MASK_IMM8, (unsigned long) imm_expr.X_add_number);
8044 imm_expr.X_add_number &= OP_MASK_IMM8;
8045 }
8046 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_IMM8;
8047 imm_expr.X_op = O_absent;
8048 s = expr_end;
8049 continue;
8050
8051 case '6': /* dsp 5-bit unsigned immediate in bit 21 */
8052 my_getExpression (&imm_expr, s);
8053 check_absolute_expr (ip, &imm_expr);
8054 if (imm_expr.X_add_number & ~OP_MASK_RS)
8055 {
8056 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8057 OP_MASK_RS, (unsigned long) imm_expr.X_add_number);
8058 imm_expr.X_add_number &= OP_MASK_RS;
8059 }
8060 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_RS;
8061 imm_expr.X_op = O_absent;
8062 s = expr_end;
8063 continue;
8064
8065 case '7': /* four dsp accumulators in bits 11,12 */
8066 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8067 s[3] >= '0' && s[3] <= '3')
8068 {
8069 regno = s[3] - '0';
8070 s += 4;
8071 ip->insn_opcode |= regno << OP_SH_DSPACC;
8072 continue;
8073 }
8074 else
8075 as_bad (_("Invalid dsp acc register"));
8076 break;
8077
8078 case '8': /* dsp 6-bit unsigned immediate in bit 11 */
8079 my_getExpression (&imm_expr, s);
8080 check_absolute_expr (ip, &imm_expr);
8081 if (imm_expr.X_add_number & ~OP_MASK_WRDSP)
8082 {
8083 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8084 OP_MASK_WRDSP,
8085 (unsigned long) imm_expr.X_add_number);
8086 imm_expr.X_add_number &= OP_MASK_WRDSP;
8087 }
8088 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_WRDSP;
8089 imm_expr.X_op = O_absent;
8090 s = expr_end;
8091 continue;
8092
8093 case '9': /* four dsp accumulators in bits 21,22 */
8094 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8095 s[3] >= '0' && s[3] <= '3')
8096 {
8097 regno = s[3] - '0';
8098 s += 4;
8099 ip->insn_opcode |= regno << OP_SH_DSPACC_S;
8100 continue;
8101 }
8102 else
8103 as_bad (_("Invalid dsp acc register"));
8104 break;
8105
8106 case '0': /* dsp 6-bit signed immediate in bit 20 */
8107 my_getExpression (&imm_expr, s);
8108 check_absolute_expr (ip, &imm_expr);
8109 min_range = -((OP_MASK_DSPSFT + 1) >> 1);
8110 max_range = ((OP_MASK_DSPSFT + 1) >> 1) - 1;
8111 if (imm_expr.X_add_number < min_range ||
8112 imm_expr.X_add_number > max_range)
8113 {
8114 as_warn (_("DSP immediate not in range %ld..%ld (%ld)"),
8115 (long) min_range, (long) max_range,
8116 (long) imm_expr.X_add_number);
8117 }
8118 imm_expr.X_add_number &= OP_MASK_DSPSFT;
8119 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
8120 << OP_SH_DSPSFT);
8121 imm_expr.X_op = O_absent;
8122 s = expr_end;
8123 continue;
8124
8125 case '\'': /* dsp 6-bit unsigned immediate in bit 16 */
8126 my_getExpression (&imm_expr, s);
8127 check_absolute_expr (ip, &imm_expr);
8128 if (imm_expr.X_add_number & ~OP_MASK_RDDSP)
8129 {
8130 as_warn (_("DSP immediate not in range 0..%d (%lu)"),
8131 OP_MASK_RDDSP,
8132 (unsigned long) imm_expr.X_add_number);
8133 imm_expr.X_add_number &= OP_MASK_RDDSP;
8134 }
8135 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_RDDSP;
8136 imm_expr.X_op = O_absent;
8137 s = expr_end;
8138 continue;
8139
8140 case ':': /* dsp 7-bit signed immediate in bit 19 */
8141 my_getExpression (&imm_expr, s);
8142 check_absolute_expr (ip, &imm_expr);
8143 min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1);
8144 max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1;
8145 if (imm_expr.X_add_number < min_range ||
8146 imm_expr.X_add_number > max_range)
8147 {
8148 as_warn (_("DSP immediate not in range %ld..%ld (%ld)"),
8149 (long) min_range, (long) max_range,
8150 (long) imm_expr.X_add_number);
8151 }
8152 imm_expr.X_add_number &= OP_MASK_DSPSFT_7;
8153 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
8154 << OP_SH_DSPSFT_7);
8155 imm_expr.X_op = O_absent;
8156 s = expr_end;
8157 continue;
8158
8159 case '@': /* dsp 10-bit signed immediate in bit 16 */
8160 my_getExpression (&imm_expr, s);
8161 check_absolute_expr (ip, &imm_expr);
8162 min_range = -((OP_MASK_IMM10 + 1) >> 1);
8163 max_range = ((OP_MASK_IMM10 + 1) >> 1) - 1;
8164 if (imm_expr.X_add_number < min_range ||
8165 imm_expr.X_add_number > max_range)
8166 {
8167 as_warn (_("DSP immediate not in range %ld..%ld (%ld)"),
8168 (long) min_range, (long) max_range,
8169 (long) imm_expr.X_add_number);
8170 }
8171 imm_expr.X_add_number &= OP_MASK_IMM10;
8172 ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number
8173 << OP_SH_IMM10);
8174 imm_expr.X_op = O_absent;
8175 s = expr_end;
8176 continue;
8177
8178 case '!': /* mt 1-bit unsigned immediate in bit 5 */
8179 my_getExpression (&imm_expr, s);
8180 check_absolute_expr (ip, &imm_expr);
8181 if (imm_expr.X_add_number & ~OP_MASK_MT_U)
8182 {
8183 as_warn (_("MT immediate not in range 0..%d (%lu)"),
8184 OP_MASK_MT_U, (unsigned long) imm_expr.X_add_number);
8185 imm_expr.X_add_number &= OP_MASK_MT_U;
8186 }
8187 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_MT_U;
8188 imm_expr.X_op = O_absent;
8189 s = expr_end;
8190 continue;
8191
8192 case '$': /* mt 1-bit unsigned immediate in bit 4 */
8193 my_getExpression (&imm_expr, s);
8194 check_absolute_expr (ip, &imm_expr);
8195 if (imm_expr.X_add_number & ~OP_MASK_MT_H)
8196 {
8197 as_warn (_("MT immediate not in range 0..%d (%lu)"),
8198 OP_MASK_MT_H, (unsigned long) imm_expr.X_add_number);
8199 imm_expr.X_add_number &= OP_MASK_MT_H;
8200 }
8201 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_MT_H;
8202 imm_expr.X_op = O_absent;
8203 s = expr_end;
8204 continue;
8205
8206 case '*': /* four dsp accumulators in bits 18,19 */
8207 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8208 s[3] >= '0' && s[3] <= '3')
8209 {
8210 regno = s[3] - '0';
8211 s += 4;
8212 ip->insn_opcode |= regno << OP_SH_MTACC_T;
8213 continue;
8214 }
8215 else
8216 as_bad (_("Invalid dsp/smartmips acc register"));
8217 break;
8218
8219 case '&': /* four dsp accumulators in bits 13,14 */
8220 if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' &&
8221 s[3] >= '0' && s[3] <= '3')
8222 {
8223 regno = s[3] - '0';
8224 s += 4;
8225 ip->insn_opcode |= regno << OP_SH_MTACC_D;
8226 continue;
8227 }
8228 else
8229 as_bad (_("Invalid dsp/smartmips acc register"));
8230 break;
8231
8232 case ',':
8233 if (*s++ == *args)
8234 continue;
8235 s--;
8236 switch (*++args)
8237 {
8238 case 'r':
8239 case 'v':
8240 INSERT_OPERAND (RS, *ip, lastregno);
8241 continue;
8242
8243 case 'w':
8244 INSERT_OPERAND (RT, *ip, lastregno);
8245 continue;
8246
8247 case 'W':
8248 INSERT_OPERAND (FT, *ip, lastregno);
8249 continue;
8250
8251 case 'V':
8252 INSERT_OPERAND (FS, *ip, lastregno);
8253 continue;
8254 }
8255 break;
8256
8257 case '(':
8258 /* Handle optional base register.
8259 Either the base register is omitted or
8260 we must have a left paren. */
8261 /* This is dependent on the next operand specifier
8262 is a base register specification. */
8263 assert (args[1] == 'b' || args[1] == '5'
8264 || args[1] == '-' || args[1] == '4');
8265 if (*s == '\0')
8266 return;
8267
8268 case ')': /* these must match exactly */
8269 case '[':
8270 case ']':
8271 if (*s++ == *args)
8272 continue;
8273 break;
8274
8275 case '+': /* Opcode extension character. */
8276 switch (*++args)
8277 {
8278 case 'A': /* ins/ext position, becomes LSB. */
8279 limlo = 0;
8280 limhi = 31;
8281 goto do_lsb;
8282 case 'E':
8283 limlo = 32;
8284 limhi = 63;
8285 goto do_lsb;
8286 do_lsb:
8287 my_getExpression (&imm_expr, s);
8288 check_absolute_expr (ip, &imm_expr);
8289 if ((unsigned long) imm_expr.X_add_number < limlo
8290 || (unsigned long) imm_expr.X_add_number > limhi)
8291 {
8292 as_bad (_("Improper position (%lu)"),
8293 (unsigned long) imm_expr.X_add_number);
8294 imm_expr.X_add_number = limlo;
8295 }
8296 lastpos = imm_expr.X_add_number;
8297 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
8298 imm_expr.X_op = O_absent;
8299 s = expr_end;
8300 continue;
8301
8302 case 'B': /* ins size, becomes MSB. */
8303 limlo = 1;
8304 limhi = 32;
8305 goto do_msb;
8306 case 'F':
8307 limlo = 33;
8308 limhi = 64;
8309 goto do_msb;
8310 do_msb:
8311 my_getExpression (&imm_expr, s);
8312 check_absolute_expr (ip, &imm_expr);
8313 /* Check for negative input so that small negative numbers
8314 will not succeed incorrectly. The checks against
8315 (pos+size) transitively check "size" itself,
8316 assuming that "pos" is reasonable. */
8317 if ((long) imm_expr.X_add_number < 0
8318 || ((unsigned long) imm_expr.X_add_number
8319 + lastpos) < limlo
8320 || ((unsigned long) imm_expr.X_add_number
8321 + lastpos) > limhi)
8322 {
8323 as_bad (_("Improper insert size (%lu, position %lu)"),
8324 (unsigned long) imm_expr.X_add_number,
8325 (unsigned long) lastpos);
8326 imm_expr.X_add_number = limlo - lastpos;
8327 }
8328 INSERT_OPERAND (INSMSB, *ip,
8329 lastpos + imm_expr.X_add_number - 1);
8330 imm_expr.X_op = O_absent;
8331 s = expr_end;
8332 continue;
8333
8334 case 'C': /* ext size, becomes MSBD. */
8335 limlo = 1;
8336 limhi = 32;
8337 goto do_msbd;
8338 case 'G':
8339 limlo = 33;
8340 limhi = 64;
8341 goto do_msbd;
8342 case 'H':
8343 limlo = 33;
8344 limhi = 64;
8345 goto do_msbd;
8346 do_msbd:
8347 my_getExpression (&imm_expr, s);
8348 check_absolute_expr (ip, &imm_expr);
8349 /* Check for negative input so that small negative numbers
8350 will not succeed incorrectly. The checks against
8351 (pos+size) transitively check "size" itself,
8352 assuming that "pos" is reasonable. */
8353 if ((long) imm_expr.X_add_number < 0
8354 || ((unsigned long) imm_expr.X_add_number
8355 + lastpos) < limlo
8356 || ((unsigned long) imm_expr.X_add_number
8357 + lastpos) > limhi)
8358 {
8359 as_bad (_("Improper extract size (%lu, position %lu)"),
8360 (unsigned long) imm_expr.X_add_number,
8361 (unsigned long) lastpos);
8362 imm_expr.X_add_number = limlo - lastpos;
8363 }
8364 INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
8365 imm_expr.X_op = O_absent;
8366 s = expr_end;
8367 continue;
8368
8369 case 'D':
8370 /* +D is for disassembly only; never match. */
8371 break;
8372
8373 case 'I':
8374 /* "+I" is like "I", except that imm2_expr is used. */
8375 my_getExpression (&imm2_expr, s);
8376 if (imm2_expr.X_op != O_big
8377 && imm2_expr.X_op != O_constant)
8378 insn_error = _("absolute expression required");
8379 if (HAVE_32BIT_GPRS)
8380 normalize_constant_expr (&imm2_expr);
8381 s = expr_end;
8382 continue;
8383
8384 case 'T': /* Coprocessor register */
8385 /* +T is for disassembly only; never match. */
8386 break;
8387
8388 case 't': /* Coprocessor register number */
8389 if (s[0] == '$' && ISDIGIT (s[1]))
8390 {
8391 ++s;
8392 regno = 0;
8393 do
8394 {
8395 regno *= 10;
8396 regno += *s - '0';
8397 ++s;
8398 }
8399 while (ISDIGIT (*s));
8400 if (regno > 31)
8401 as_bad (_("Invalid register number (%d)"), regno);
8402 else
8403 {
8404 ip->insn_opcode |= regno << OP_SH_RT;
8405 continue;
8406 }
8407 }
8408 else
8409 as_bad (_("Invalid coprocessor 0 register number"));
8410 break;
8411
8412 default:
8413 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8414 *args, insn->name, insn->args);
8415 /* Further processing is fruitless. */
8416 return;
8417 }
8418 break;
8419
8420 case '<': /* must be at least one digit */
8421 /*
8422 * According to the manual, if the shift amount is greater
8423 * than 31 or less than 0, then the shift amount should be
8424 * mod 32. In reality the mips assembler issues an error.
8425 * We issue a warning and mask out all but the low 5 bits.
8426 */
8427 my_getExpression (&imm_expr, s);
8428 check_absolute_expr (ip, &imm_expr);
8429 if ((unsigned long) imm_expr.X_add_number > 31)
8430 as_warn (_("Improper shift amount (%lu)"),
8431 (unsigned long) imm_expr.X_add_number);
8432 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
8433 imm_expr.X_op = O_absent;
8434 s = expr_end;
8435 continue;
8436
8437 case '>': /* shift amount minus 32 */
8438 my_getExpression (&imm_expr, s);
8439 check_absolute_expr (ip, &imm_expr);
8440 if ((unsigned long) imm_expr.X_add_number < 32
8441 || (unsigned long) imm_expr.X_add_number > 63)
8442 break;
8443 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
8444 imm_expr.X_op = O_absent;
8445 s = expr_end;
8446 continue;
8447
8448 case 'k': /* cache code */
8449 case 'h': /* prefx code */
8450 my_getExpression (&imm_expr, s);
8451 check_absolute_expr (ip, &imm_expr);
8452 if ((unsigned long) imm_expr.X_add_number > 31)
8453 as_warn (_("Invalid value for `%s' (%lu)"),
8454 ip->insn_mo->name,
8455 (unsigned long) imm_expr.X_add_number);
8456 if (*args == 'k')
8457 INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
8458 else
8459 INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
8460 imm_expr.X_op = O_absent;
8461 s = expr_end;
8462 continue;
8463
8464 case 'c': /* break code */
8465 my_getExpression (&imm_expr, s);
8466 check_absolute_expr (ip, &imm_expr);
8467 if ((unsigned long) imm_expr.X_add_number > 1023)
8468 as_warn (_("Illegal break code (%lu)"),
8469 (unsigned long) imm_expr.X_add_number);
8470 INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number);
8471 imm_expr.X_op = O_absent;
8472 s = expr_end;
8473 continue;
8474
8475 case 'q': /* lower break code */
8476 my_getExpression (&imm_expr, s);
8477 check_absolute_expr (ip, &imm_expr);
8478 if ((unsigned long) imm_expr.X_add_number > 1023)
8479 as_warn (_("Illegal lower break code (%lu)"),
8480 (unsigned long) imm_expr.X_add_number);
8481 INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number);
8482 imm_expr.X_op = O_absent;
8483 s = expr_end;
8484 continue;
8485
8486 case 'B': /* 20-bit syscall/break code. */
8487 my_getExpression (&imm_expr, s);
8488 check_absolute_expr (ip, &imm_expr);
8489 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
8490 as_warn (_("Illegal 20-bit code (%lu)"),
8491 (unsigned long) imm_expr.X_add_number);
8492 INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
8493 imm_expr.X_op = O_absent;
8494 s = expr_end;
8495 continue;
8496
8497 case 'C': /* Coprocessor code */
8498 my_getExpression (&imm_expr, s);
8499 check_absolute_expr (ip, &imm_expr);
8500 if ((unsigned long) imm_expr.X_add_number >= (1 << 25))
8501 {
8502 as_warn (_("Coproccesor code > 25 bits (%lu)"),
8503 (unsigned long) imm_expr.X_add_number);
8504 imm_expr.X_add_number &= ((1 << 25) - 1);
8505 }
8506 ip->insn_opcode |= imm_expr.X_add_number;
8507 imm_expr.X_op = O_absent;
8508 s = expr_end;
8509 continue;
8510
8511 case 'J': /* 19-bit wait code. */
8512 my_getExpression (&imm_expr, s);
8513 check_absolute_expr (ip, &imm_expr);
8514 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
8515 as_warn (_("Illegal 19-bit code (%lu)"),
8516 (unsigned long) imm_expr.X_add_number);
8517 INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
8518 imm_expr.X_op = O_absent;
8519 s = expr_end;
8520 continue;
8521
8522 case 'P': /* Performance register */
8523 my_getExpression (&imm_expr, s);
8524 check_absolute_expr (ip, &imm_expr);
8525 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
8526 as_warn (_("Invalid performance register (%lu)"),
8527 (unsigned long) imm_expr.X_add_number);
8528 INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number);
8529 imm_expr.X_op = O_absent;
8530 s = expr_end;
8531 continue;
8532
8533 case 'b': /* base register */
8534 case 'd': /* destination register */
8535 case 's': /* source register */
8536 case 't': /* target register */
8537 case 'r': /* both target and source */
8538 case 'v': /* both dest and source */
8539 case 'w': /* both dest and target */
8540 case 'E': /* coprocessor target register */
8541 case 'G': /* coprocessor destination register */
8542 case 'K': /* 'rdhwr' destination register */
8543 case 'x': /* ignore register name */
8544 case 'z': /* must be zero register */
8545 case 'U': /* destination register (clo/clz). */
8546 case 'g': /* coprocessor destination register */
8547 s_reset = s;
8548 if (s[0] == '$')
8549 {
8550 if (ISDIGIT (s[1]))
8551 {
8552 ++s;
8553 regno = 0;
8554 do
8555 {
8556 regno *= 10;
8557 regno += *s - '0';
8558 ++s;
8559 }
8560 while (ISDIGIT (*s));
8561 if (regno > 31)
8562 as_bad (_("Invalid register number (%d)"), regno);
8563 }
8564 else if (*args == 'E' || *args == 'G' || *args == 'K')
8565 goto notreg;
8566 else
8567 {
8568 if (s[1] == 'r' && s[2] == 'a')
8569 {
8570 s += 3;
8571 regno = RA;
8572 }
8573 else if (s[1] == 'f' && s[2] == 'p')
8574 {
8575 s += 3;
8576 regno = FP;
8577 }
8578 else if (s[1] == 's' && s[2] == 'p')
8579 {
8580 s += 3;
8581 regno = SP;
8582 }
8583 else if (s[1] == 'g' && s[2] == 'p')
8584 {
8585 s += 3;
8586 regno = GP;
8587 }
8588 else if (s[1] == 'a' && s[2] == 't')
8589 {
8590 s += 3;
8591 regno = AT;
8592 }
8593 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
8594 {
8595 s += 4;
8596 regno = KT0;
8597 }
8598 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
8599 {
8600 s += 4;
8601 regno = KT1;
8602 }
8603 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
8604 {
8605 s += 5;
8606 regno = ZERO;
8607 }
8608 else if (itbl_have_entries)
8609 {
8610 char *p, *n;
8611 unsigned long r;
8612
8613 p = s + 1; /* advance past '$' */
8614 n = itbl_get_field (&p); /* n is name */
8615
8616 /* See if this is a register defined in an
8617 itbl entry. */
8618 if (itbl_get_reg_val (n, &r))
8619 {
8620 /* Get_field advances to the start of
8621 the next field, so we need to back
8622 rack to the end of the last field. */
8623 if (p)
8624 s = p - 1;
8625 else
8626 s = strchr (s, '\0');
8627 regno = r;
8628 }
8629 else
8630 goto notreg;
8631 }
8632 else
8633 goto notreg;
8634 }
8635 if (regno == AT
8636 && ! mips_opts.noat
8637 && *args != 'E'
8638 && *args != 'G'
8639 && *args != 'K')
8640 as_warn (_("Used $at without \".set noat\""));
8641 c = *args;
8642 if (*s == ' ')
8643 ++s;
8644 if (args[1] != *s)
8645 {
8646 if (c == 'r' || c == 'v' || c == 'w')
8647 {
8648 regno = lastregno;
8649 s = s_reset;
8650 ++args;
8651 }
8652 }
8653 /* 'z' only matches $0. */
8654 if (c == 'z' && regno != 0)
8655 break;
8656
8657 /* Now that we have assembled one operand, we use the args string
8658 * to figure out where it goes in the instruction. */
8659 switch (c)
8660 {
8661 case 'r':
8662 case 's':
8663 case 'v':
8664 case 'b':
8665 INSERT_OPERAND (RS, *ip, regno);
8666 break;
8667 case 'd':
8668 case 'G':
8669 case 'K':
8670 case 'g':
8671 INSERT_OPERAND (RD, *ip, regno);
8672 break;
8673 case 'U':
8674 INSERT_OPERAND (RD, *ip, regno);
8675 INSERT_OPERAND (RT, *ip, regno);
8676 break;
8677 case 'w':
8678 case 't':
8679 case 'E':
8680 INSERT_OPERAND (RT, *ip, regno);
8681 break;
8682 case 'x':
8683 /* This case exists because on the r3000 trunc
8684 expands into a macro which requires a gp
8685 register. On the r6000 or r4000 it is
8686 assembled into a single instruction which
8687 ignores the register. Thus the insn version
8688 is MIPS_ISA2 and uses 'x', and the macro
8689 version is MIPS_ISA1 and uses 't'. */
8690 break;
8691 case 'z':
8692 /* This case is for the div instruction, which
8693 acts differently if the destination argument
8694 is $0. This only matches $0, and is checked
8695 outside the switch. */
8696 break;
8697 case 'D':
8698 /* Itbl operand; not yet implemented. FIXME ?? */
8699 break;
8700 /* What about all other operands like 'i', which
8701 can be specified in the opcode table? */
8702 }
8703 lastregno = regno;
8704 continue;
8705 }
8706 notreg:
8707 switch (*args++)
8708 {
8709 case 'r':
8710 case 'v':
8711 INSERT_OPERAND (RS, *ip, lastregno);
8712 continue;
8713 case 'w':
8714 INSERT_OPERAND (RT, *ip, lastregno);
8715 continue;
8716 }
8717 break;
8718
8719 case 'O': /* MDMX alignment immediate constant. */
8720 my_getExpression (&imm_expr, s);
8721 check_absolute_expr (ip, &imm_expr);
8722 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
8723 as_warn ("Improper align amount (%ld), using low bits",
8724 (long) imm_expr.X_add_number);
8725 INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number);
8726 imm_expr.X_op = O_absent;
8727 s = expr_end;
8728 continue;
8729
8730 case 'Q': /* MDMX vector, element sel, or const. */
8731 if (s[0] != '$')
8732 {
8733 /* MDMX Immediate. */
8734 my_getExpression (&imm_expr, s);
8735 check_absolute_expr (ip, &imm_expr);
8736 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
8737 as_warn (_("Invalid MDMX Immediate (%ld)"),
8738 (long) imm_expr.X_add_number);
8739 INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
8740 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8741 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
8742 else
8743 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
8744 imm_expr.X_op = O_absent;
8745 s = expr_end;
8746 continue;
8747 }
8748 /* Not MDMX Immediate. Fall through. */
8749 case 'X': /* MDMX destination register. */
8750 case 'Y': /* MDMX source register. */
8751 case 'Z': /* MDMX target register. */
8752 is_mdmx = 1;
8753 case 'D': /* floating point destination register */
8754 case 'S': /* floating point source register */
8755 case 'T': /* floating point target register */
8756 case 'R': /* floating point source register */
8757 case 'V':
8758 case 'W':
8759 s_reset = s;
8760 /* Accept $fN for FP and MDMX register numbers, and in
8761 addition accept $vN for MDMX register numbers. */
8762 if ((s[0] == '$' && s[1] == 'f' && ISDIGIT (s[2]))
8763 || (is_mdmx != 0 && s[0] == '$' && s[1] == 'v'
8764 && ISDIGIT (s[2])))
8765 {
8766 s += 2;
8767 regno = 0;
8768 do
8769 {
8770 regno *= 10;
8771 regno += *s - '0';
8772 ++s;
8773 }
8774 while (ISDIGIT (*s));
8775
8776 if (regno > 31)
8777 as_bad (_("Invalid float register number (%d)"), regno);
8778
8779 if ((regno & 1) != 0
8780 && HAVE_32BIT_FPRS
8781 && ! (strcmp (str, "mtc1") == 0
8782 || strcmp (str, "mfc1") == 0
8783 || strcmp (str, "lwc1") == 0
8784 || strcmp (str, "swc1") == 0
8785 || strcmp (str, "l.s") == 0
8786 || strcmp (str, "s.s") == 0
8787 || strcmp (str, "mftc1") == 0
8788 || strcmp (str, "mfthc1") == 0
8789 || strcmp (str, "cftc1") == 0
8790 || strcmp (str, "mttc1") == 0
8791 || strcmp (str, "mtthc1") == 0
8792 || strcmp (str, "cttc1") == 0))
8793 as_warn (_("Float register should be even, was %d"),
8794 regno);
8795
8796 c = *args;
8797 if (*s == ' ')
8798 ++s;
8799 if (args[1] != *s)
8800 {
8801 if (c == 'V' || c == 'W')
8802 {
8803 regno = lastregno;
8804 s = s_reset;
8805 ++args;
8806 }
8807 }
8808 switch (c)
8809 {
8810 case 'D':
8811 case 'X':
8812 INSERT_OPERAND (FD, *ip, regno);
8813 break;
8814 case 'V':
8815 case 'S':
8816 case 'Y':
8817 INSERT_OPERAND (FS, *ip, regno);
8818 break;
8819 case 'Q':
8820 /* This is like 'Z', but also needs to fix the MDMX
8821 vector/scalar select bits. Note that the
8822 scalar immediate case is handled above. */
8823 if (*s == '[')
8824 {
8825 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
8826 int max_el = (is_qh ? 3 : 7);
8827 s++;
8828 my_getExpression(&imm_expr, s);
8829 check_absolute_expr (ip, &imm_expr);
8830 s = expr_end;
8831 if (imm_expr.X_add_number > max_el)
8832 as_bad(_("Bad element selector %ld"),
8833 (long) imm_expr.X_add_number);
8834 imm_expr.X_add_number &= max_el;
8835 ip->insn_opcode |= (imm_expr.X_add_number
8836 << (OP_SH_VSEL +
8837 (is_qh ? 2 : 1)));
8838 imm_expr.X_op = O_absent;
8839 if (*s != ']')
8840 as_warn(_("Expecting ']' found '%s'"), s);
8841 else
8842 s++;
8843 }
8844 else
8845 {
8846 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8847 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
8848 << OP_SH_VSEL);
8849 else
8850 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
8851 OP_SH_VSEL);
8852 }
8853 /* Fall through */
8854 case 'W':
8855 case 'T':
8856 case 'Z':
8857 INSERT_OPERAND (FT, *ip, regno);
8858 break;
8859 case 'R':
8860 INSERT_OPERAND (FR, *ip, regno);
8861 break;
8862 }
8863 lastregno = regno;
8864 continue;
8865 }
8866
8867 switch (*args++)
8868 {
8869 case 'V':
8870 INSERT_OPERAND (FS, *ip, lastregno);
8871 continue;
8872 case 'W':
8873 INSERT_OPERAND (FT, *ip, lastregno);
8874 continue;
8875 }
8876 break;
8877
8878 case 'I':
8879 my_getExpression (&imm_expr, s);
8880 if (imm_expr.X_op != O_big
8881 && imm_expr.X_op != O_constant)
8882 insn_error = _("absolute expression required");
8883 if (HAVE_32BIT_GPRS)
8884 normalize_constant_expr (&imm_expr);
8885 s = expr_end;
8886 continue;
8887
8888 case 'A':
8889 my_getExpression (&offset_expr, s);
8890 normalize_address_expr (&offset_expr);
8891 *imm_reloc = BFD_RELOC_32;
8892 s = expr_end;
8893 continue;
8894
8895 case 'F':
8896 case 'L':
8897 case 'f':
8898 case 'l':
8899 {
8900 int f64;
8901 int using_gprs;
8902 char *save_in;
8903 char *err;
8904 unsigned char temp[8];
8905 int len;
8906 unsigned int length;
8907 segT seg;
8908 subsegT subseg;
8909 char *p;
8910
8911 /* These only appear as the last operand in an
8912 instruction, and every instruction that accepts
8913 them in any variant accepts them in all variants.
8914 This means we don't have to worry about backing out
8915 any changes if the instruction does not match.
8916
8917 The difference between them is the size of the
8918 floating point constant and where it goes. For 'F'
8919 and 'L' the constant is 64 bits; for 'f' and 'l' it
8920 is 32 bits. Where the constant is placed is based
8921 on how the MIPS assembler does things:
8922 F -- .rdata
8923 L -- .lit8
8924 f -- immediate value
8925 l -- .lit4
8926
8927 The .lit4 and .lit8 sections are only used if
8928 permitted by the -G argument.
8929
8930 The code below needs to know whether the target register
8931 is 32 or 64 bits wide. It relies on the fact 'f' and
8932 'F' are used with GPR-based instructions and 'l' and
8933 'L' are used with FPR-based instructions. */
8934
8935 f64 = *args == 'F' || *args == 'L';
8936 using_gprs = *args == 'F' || *args == 'f';
8937
8938 save_in = input_line_pointer;
8939 input_line_pointer = s;
8940 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
8941 length = len;
8942 s = input_line_pointer;
8943 input_line_pointer = save_in;
8944 if (err != NULL && *err != '\0')
8945 {
8946 as_bad (_("Bad floating point constant: %s"), err);
8947 memset (temp, '\0', sizeof temp);
8948 length = f64 ? 8 : 4;
8949 }
8950
8951 assert (length == (unsigned) (f64 ? 8 : 4));
8952
8953 if (*args == 'f'
8954 || (*args == 'l'
8955 && (g_switch_value < 4
8956 || (temp[0] == 0 && temp[1] == 0)
8957 || (temp[2] == 0 && temp[3] == 0))))
8958 {
8959 imm_expr.X_op = O_constant;
8960 if (! target_big_endian)
8961 imm_expr.X_add_number = bfd_getl32 (temp);
8962 else
8963 imm_expr.X_add_number = bfd_getb32 (temp);
8964 }
8965 else if (length > 4
8966 && ! mips_disable_float_construction
8967 /* Constants can only be constructed in GPRs and
8968 copied to FPRs if the GPRs are at least as wide
8969 as the FPRs. Force the constant into memory if
8970 we are using 64-bit FPRs but the GPRs are only
8971 32 bits wide. */
8972 && (using_gprs
8973 || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
8974 && ((temp[0] == 0 && temp[1] == 0)
8975 || (temp[2] == 0 && temp[3] == 0))
8976 && ((temp[4] == 0 && temp[5] == 0)
8977 || (temp[6] == 0 && temp[7] == 0)))
8978 {
8979 /* The value is simple enough to load with a couple of
8980 instructions. If using 32-bit registers, set
8981 imm_expr to the high order 32 bits and offset_expr to
8982 the low order 32 bits. Otherwise, set imm_expr to
8983 the entire 64 bit constant. */
8984 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
8985 {
8986 imm_expr.X_op = O_constant;
8987 offset_expr.X_op = O_constant;
8988 if (! target_big_endian)
8989 {
8990 imm_expr.X_add_number = bfd_getl32 (temp + 4);
8991 offset_expr.X_add_number = bfd_getl32 (temp);
8992 }
8993 else
8994 {
8995 imm_expr.X_add_number = bfd_getb32 (temp);
8996 offset_expr.X_add_number = bfd_getb32 (temp + 4);
8997 }
8998 if (offset_expr.X_add_number == 0)
8999 offset_expr.X_op = O_absent;
9000 }
9001 else if (sizeof (imm_expr.X_add_number) > 4)
9002 {
9003 imm_expr.X_op = O_constant;
9004 if (! target_big_endian)
9005 imm_expr.X_add_number = bfd_getl64 (temp);
9006 else
9007 imm_expr.X_add_number = bfd_getb64 (temp);
9008 }
9009 else
9010 {
9011 imm_expr.X_op = O_big;
9012 imm_expr.X_add_number = 4;
9013 if (! target_big_endian)
9014 {
9015 generic_bignum[0] = bfd_getl16 (temp);
9016 generic_bignum[1] = bfd_getl16 (temp + 2);
9017 generic_bignum[2] = bfd_getl16 (temp + 4);
9018 generic_bignum[3] = bfd_getl16 (temp + 6);
9019 }
9020 else
9021 {
9022 generic_bignum[0] = bfd_getb16 (temp + 6);
9023 generic_bignum[1] = bfd_getb16 (temp + 4);
9024 generic_bignum[2] = bfd_getb16 (temp + 2);
9025 generic_bignum[3] = bfd_getb16 (temp);
9026 }
9027 }
9028 }
9029 else
9030 {
9031 const char *newname;
9032 segT new_seg;
9033
9034 /* Switch to the right section. */
9035 seg = now_seg;
9036 subseg = now_subseg;
9037 switch (*args)
9038 {
9039 default: /* unused default case avoids warnings. */
9040 case 'L':
9041 newname = RDATA_SECTION_NAME;
9042 if (g_switch_value >= 8)
9043 newname = ".lit8";
9044 break;
9045 case 'F':
9046 newname = RDATA_SECTION_NAME;
9047 break;
9048 case 'l':
9049 assert (g_switch_value >= 4);
9050 newname = ".lit4";
9051 break;
9052 }
9053 new_seg = subseg_new (newname, (subsegT) 0);
9054 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
9055 bfd_set_section_flags (stdoutput, new_seg,
9056 (SEC_ALLOC
9057 | SEC_LOAD
9058 | SEC_READONLY
9059 | SEC_DATA));
9060 frag_align (*args == 'l' ? 2 : 3, 0, 0);
9061 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
9062 && strcmp (TARGET_OS, "elf") != 0)
9063 record_alignment (new_seg, 4);
9064 else
9065 record_alignment (new_seg, *args == 'l' ? 2 : 3);
9066 if (seg == now_seg)
9067 as_bad (_("Can't use floating point insn in this section"));
9068
9069 /* Set the argument to the current address in the
9070 section. */
9071 offset_expr.X_op = O_symbol;
9072 offset_expr.X_add_symbol =
9073 symbol_new ("L0\001", now_seg,
9074 (valueT) frag_now_fix (), frag_now);
9075 offset_expr.X_add_number = 0;
9076
9077 /* Put the floating point number into the section. */
9078 p = frag_more ((int) length);
9079 memcpy (p, temp, length);
9080
9081 /* Switch back to the original section. */
9082 subseg_set (seg, subseg);
9083 }
9084 }
9085 continue;
9086
9087 case 'i': /* 16 bit unsigned immediate */
9088 case 'j': /* 16 bit signed immediate */
9089 *imm_reloc = BFD_RELOC_LO16;
9090 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
9091 {
9092 int more;
9093 offsetT minval, maxval;
9094
9095 more = (insn + 1 < &mips_opcodes[NUMOPCODES]
9096 && strcmp (insn->name, insn[1].name) == 0);
9097
9098 /* If the expression was written as an unsigned number,
9099 only treat it as signed if there are no more
9100 alternatives. */
9101 if (more
9102 && *args == 'j'
9103 && sizeof (imm_expr.X_add_number) <= 4
9104 && imm_expr.X_op == O_constant
9105 && imm_expr.X_add_number < 0
9106 && imm_expr.X_unsigned
9107 && HAVE_64BIT_GPRS)
9108 break;
9109
9110 /* For compatibility with older assemblers, we accept
9111 0x8000-0xffff as signed 16-bit numbers when only
9112 signed numbers are allowed. */
9113 if (*args == 'i')
9114 minval = 0, maxval = 0xffff;
9115 else if (more)
9116 minval = -0x8000, maxval = 0x7fff;
9117 else
9118 minval = -0x8000, maxval = 0xffff;
9119
9120 if (imm_expr.X_op != O_constant
9121 || imm_expr.X_add_number < minval
9122 || imm_expr.X_add_number > maxval)
9123 {
9124 if (more)
9125 break;
9126 if (imm_expr.X_op == O_constant
9127 || imm_expr.X_op == O_big)
9128 as_bad (_("expression out of range"));
9129 }
9130 }
9131 s = expr_end;
9132 continue;
9133
9134 case 'o': /* 16 bit offset */
9135 /* Check whether there is only a single bracketed expression
9136 left. If so, it must be the base register and the
9137 constant must be zero. */
9138 if (*s == '(' && strchr (s + 1, '(') == 0)
9139 {
9140 offset_expr.X_op = O_constant;
9141 offset_expr.X_add_number = 0;
9142 continue;
9143 }
9144
9145 /* If this value won't fit into a 16 bit offset, then go
9146 find a macro that will generate the 32 bit offset
9147 code pattern. */
9148 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
9149 && (offset_expr.X_op != O_constant
9150 || offset_expr.X_add_number >= 0x8000
9151 || offset_expr.X_add_number < -0x8000))
9152 break;
9153
9154 s = expr_end;
9155 continue;
9156
9157 case 'p': /* pc relative offset */
9158 *offset_reloc = BFD_RELOC_16_PCREL_S2;
9159 my_getExpression (&offset_expr, s);
9160 s = expr_end;
9161 continue;
9162
9163 case 'u': /* upper 16 bits */
9164 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
9165 && imm_expr.X_op == O_constant
9166 && (imm_expr.X_add_number < 0
9167 || imm_expr.X_add_number >= 0x10000))
9168 as_bad (_("lui expression not in range 0..65535"));
9169 s = expr_end;
9170 continue;
9171
9172 case 'a': /* 26 bit address */
9173 my_getExpression (&offset_expr, s);
9174 s = expr_end;
9175 *offset_reloc = BFD_RELOC_MIPS_JMP;
9176 continue;
9177
9178 case 'N': /* 3 bit branch condition code */
9179 case 'M': /* 3 bit compare condition code */
9180 if (strncmp (s, "$fcc", 4) != 0)
9181 break;
9182 s += 4;
9183 regno = 0;
9184 do
9185 {
9186 regno *= 10;
9187 regno += *s - '0';
9188 ++s;
9189 }
9190 while (ISDIGIT (*s));
9191 if (regno > 7)
9192 as_bad (_("Invalid condition code register $fcc%d"), regno);
9193 if ((strcmp(str + strlen(str) - 3, ".ps") == 0
9194 || strcmp(str + strlen(str) - 5, "any2f") == 0
9195 || strcmp(str + strlen(str) - 5, "any2t") == 0)
9196 && (regno & 1) != 0)
9197 as_warn(_("Condition code register should be even for %s, was %d"),
9198 str, regno);
9199 if ((strcmp(str + strlen(str) - 5, "any4f") == 0
9200 || strcmp(str + strlen(str) - 5, "any4t") == 0)
9201 && (regno & 3) != 0)
9202 as_warn(_("Condition code register should be 0 or 4 for %s, was %d"),
9203 str, regno);
9204 if (*args == 'N')
9205 INSERT_OPERAND (BCC, *ip, regno);
9206 else
9207 INSERT_OPERAND (CCC, *ip, regno);
9208 continue;
9209
9210 case 'H':
9211 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
9212 s += 2;
9213 if (ISDIGIT (*s))
9214 {
9215 c = 0;
9216 do
9217 {
9218 c *= 10;
9219 c += *s - '0';
9220 ++s;
9221 }
9222 while (ISDIGIT (*s));
9223 }
9224 else
9225 c = 8; /* Invalid sel value. */
9226
9227 if (c > 7)
9228 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
9229 ip->insn_opcode |= c;
9230 continue;
9231
9232 case 'e':
9233 /* Must be at least one digit. */
9234 my_getExpression (&imm_expr, s);
9235 check_absolute_expr (ip, &imm_expr);
9236
9237 if ((unsigned long) imm_expr.X_add_number
9238 > (unsigned long) OP_MASK_VECBYTE)
9239 {
9240 as_bad (_("bad byte vector index (%ld)"),
9241 (long) imm_expr.X_add_number);
9242 imm_expr.X_add_number = 0;
9243 }
9244
9245 INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
9246 imm_expr.X_op = O_absent;
9247 s = expr_end;
9248 continue;
9249
9250 case '%':
9251 my_getExpression (&imm_expr, s);
9252 check_absolute_expr (ip, &imm_expr);
9253
9254 if ((unsigned long) imm_expr.X_add_number
9255 > (unsigned long) OP_MASK_VECALIGN)
9256 {
9257 as_bad (_("bad byte vector index (%ld)"),
9258 (long) imm_expr.X_add_number);
9259 imm_expr.X_add_number = 0;
9260 }
9261
9262 INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
9263 imm_expr.X_op = O_absent;
9264 s = expr_end;
9265 continue;
9266
9267 default:
9268 as_bad (_("bad char = '%c'\n"), *args);
9269 internalError ();
9270 }
9271 break;
9272 }
9273 /* Args don't match. */
9274 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
9275 !strcmp (insn->name, insn[1].name))
9276 {
9277 ++insn;
9278 s = argsStart;
9279 insn_error = _("illegal operands");
9280 continue;
9281 }
9282 if (save_c)
9283 *(--s) = save_c;
9284 insn_error = _("illegal operands");
9285 return;
9286 }
9287 }
9288
9289 /* This routine assembles an instruction into its binary format when
9290 assembling for the mips16. As a side effect, it sets one of the
9291 global variables imm_reloc or offset_reloc to the type of
9292 relocation to do if one of the operands is an address expression.
9293 It also sets mips16_small and mips16_ext if the user explicitly
9294 requested a small or extended instruction. */
9295
9296 static void
9297 mips16_ip (char *str, struct mips_cl_insn *ip)
9298 {
9299 char *s;
9300 const char *args;
9301 struct mips_opcode *insn;
9302 char *argsstart;
9303 unsigned int regno;
9304 unsigned int lastregno = 0;
9305 char *s_reset;
9306 size_t i;
9307
9308 insn_error = NULL;
9309
9310 mips16_small = FALSE;
9311 mips16_ext = FALSE;
9312
9313 for (s = str; ISLOWER (*s); ++s)
9314 ;
9315 switch (*s)
9316 {
9317 case '\0':
9318 break;
9319
9320 case ' ':
9321 *s++ = '\0';
9322 break;
9323
9324 case '.':
9325 if (s[1] == 't' && s[2] == ' ')
9326 {
9327 *s = '\0';
9328 mips16_small = TRUE;
9329 s += 3;
9330 break;
9331 }
9332 else if (s[1] == 'e' && s[2] == ' ')
9333 {
9334 *s = '\0';
9335 mips16_ext = TRUE;
9336 s += 3;
9337 break;
9338 }
9339 /* Fall through. */
9340 default:
9341 insn_error = _("unknown opcode");
9342 return;
9343 }
9344
9345 if (mips_opts.noautoextend && ! mips16_ext)
9346 mips16_small = TRUE;
9347
9348 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
9349 {
9350 insn_error = _("unrecognized opcode");
9351 return;
9352 }
9353
9354 argsstart = s;
9355 for (;;)
9356 {
9357 assert (strcmp (insn->name, str) == 0);
9358
9359 create_insn (ip, insn);
9360 imm_expr.X_op = O_absent;
9361 imm_reloc[0] = BFD_RELOC_UNUSED;
9362 imm_reloc[1] = BFD_RELOC_UNUSED;
9363 imm_reloc[2] = BFD_RELOC_UNUSED;
9364 imm2_expr.X_op = O_absent;
9365 offset_expr.X_op = O_absent;
9366 offset_reloc[0] = BFD_RELOC_UNUSED;
9367 offset_reloc[1] = BFD_RELOC_UNUSED;
9368 offset_reloc[2] = BFD_RELOC_UNUSED;
9369 for (args = insn->args; 1; ++args)
9370 {
9371 int c;
9372
9373 if (*s == ' ')
9374 ++s;
9375
9376 /* In this switch statement we call break if we did not find
9377 a match, continue if we did find a match, or return if we
9378 are done. */
9379
9380 c = *args;
9381 switch (c)
9382 {
9383 case '\0':
9384 if (*s == '\0')
9385 {
9386 /* Stuff the immediate value in now, if we can. */
9387 if (imm_expr.X_op == O_constant
9388 && *imm_reloc > BFD_RELOC_UNUSED
9389 && insn->pinfo != INSN_MACRO)
9390 {
9391 valueT tmp;
9392
9393 switch (*offset_reloc)
9394 {
9395 case BFD_RELOC_MIPS16_HI16_S:
9396 tmp = (imm_expr.X_add_number + 0x8000) >> 16;
9397 break;
9398
9399 case BFD_RELOC_MIPS16_HI16:
9400 tmp = imm_expr.X_add_number >> 16;
9401 break;
9402
9403 case BFD_RELOC_MIPS16_LO16:
9404 tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff)
9405 - 0x8000;
9406 break;
9407
9408 case BFD_RELOC_UNUSED:
9409 tmp = imm_expr.X_add_number;
9410 break;
9411
9412 default:
9413 internalError ();
9414 }
9415 *offset_reloc = BFD_RELOC_UNUSED;
9416
9417 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
9418 tmp, TRUE, mips16_small,
9419 mips16_ext, &ip->insn_opcode,
9420 &ip->use_extend, &ip->extend);
9421 imm_expr.X_op = O_absent;
9422 *imm_reloc = BFD_RELOC_UNUSED;
9423 }
9424
9425 return;
9426 }
9427 break;
9428
9429 case ',':
9430 if (*s++ == c)
9431 continue;
9432 s--;
9433 switch (*++args)
9434 {
9435 case 'v':
9436 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
9437 continue;
9438 case 'w':
9439 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
9440 continue;
9441 }
9442 break;
9443
9444 case '(':
9445 case ')':
9446 if (*s++ == c)
9447 continue;
9448 break;
9449
9450 case 'v':
9451 case 'w':
9452 if (s[0] != '$')
9453 {
9454 if (c == 'v')
9455 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
9456 else
9457 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
9458 ++args;
9459 continue;
9460 }
9461 /* Fall through. */
9462 case 'x':
9463 case 'y':
9464 case 'z':
9465 case 'Z':
9466 case '0':
9467 case 'S':
9468 case 'R':
9469 case 'X':
9470 case 'Y':
9471 if (s[0] != '$')
9472 break;
9473 s_reset = s;
9474 if (ISDIGIT (s[1]))
9475 {
9476 ++s;
9477 regno = 0;
9478 do
9479 {
9480 regno *= 10;
9481 regno += *s - '0';
9482 ++s;
9483 }
9484 while (ISDIGIT (*s));
9485 if (regno > 31)
9486 {
9487 as_bad (_("invalid register number (%d)"), regno);
9488 regno = 2;
9489 }
9490 }
9491 else
9492 {
9493 if (s[1] == 'r' && s[2] == 'a')
9494 {
9495 s += 3;
9496 regno = RA;
9497 }
9498 else if (s[1] == 'f' && s[2] == 'p')
9499 {
9500 s += 3;
9501 regno = FP;
9502 }
9503 else if (s[1] == 's' && s[2] == 'p')
9504 {
9505 s += 3;
9506 regno = SP;
9507 }
9508 else if (s[1] == 'g' && s[2] == 'p')
9509 {
9510 s += 3;
9511 regno = GP;
9512 }
9513 else if (s[1] == 'a' && s[2] == 't')
9514 {
9515 s += 3;
9516 regno = AT;
9517 }
9518 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
9519 {
9520 s += 4;
9521 regno = KT0;
9522 }
9523 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
9524 {
9525 s += 4;
9526 regno = KT1;
9527 }
9528 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
9529 {
9530 s += 5;
9531 regno = ZERO;
9532 }
9533 else
9534 break;
9535 }
9536
9537 if (*s == ' ')
9538 ++s;
9539 if (args[1] != *s)
9540 {
9541 if (c == 'v' || c == 'w')
9542 {
9543 regno = mips16_to_32_reg_map[lastregno];
9544 s = s_reset;
9545 ++args;
9546 }
9547 }
9548
9549 switch (c)
9550 {
9551 case 'x':
9552 case 'y':
9553 case 'z':
9554 case 'v':
9555 case 'w':
9556 case 'Z':
9557 regno = mips32_to_16_reg_map[regno];
9558 break;
9559
9560 case '0':
9561 if (regno != 0)
9562 regno = ILLEGAL_REG;
9563 break;
9564
9565 case 'S':
9566 if (regno != SP)
9567 regno = ILLEGAL_REG;
9568 break;
9569
9570 case 'R':
9571 if (regno != RA)
9572 regno = ILLEGAL_REG;
9573 break;
9574
9575 case 'X':
9576 case 'Y':
9577 if (regno == AT && ! mips_opts.noat)
9578 as_warn (_("used $at without \".set noat\""));
9579 break;
9580
9581 default:
9582 internalError ();
9583 }
9584
9585 if (regno == ILLEGAL_REG)
9586 break;
9587
9588 switch (c)
9589 {
9590 case 'x':
9591 case 'v':
9592 MIPS16_INSERT_OPERAND (RX, *ip, regno);
9593 break;
9594 case 'y':
9595 case 'w':
9596 MIPS16_INSERT_OPERAND (RY, *ip, regno);
9597 break;
9598 case 'z':
9599 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
9600 break;
9601 case 'Z':
9602 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
9603 case '0':
9604 case 'S':
9605 case 'R':
9606 break;
9607 case 'X':
9608 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
9609 break;
9610 case 'Y':
9611 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
9612 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
9613 break;
9614 default:
9615 internalError ();
9616 }
9617
9618 lastregno = regno;
9619 continue;
9620
9621 case 'P':
9622 if (strncmp (s, "$pc", 3) == 0)
9623 {
9624 s += 3;
9625 continue;
9626 }
9627 break;
9628
9629 case '5':
9630 case 'H':
9631 case 'W':
9632 case 'D':
9633 case 'j':
9634 case 'V':
9635 case 'C':
9636 case 'U':
9637 case 'k':
9638 case 'K':
9639 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
9640 if (i > 0)
9641 {
9642 if (imm_expr.X_op != O_constant)
9643 {
9644 mips16_ext = TRUE;
9645 ip->use_extend = TRUE;
9646 ip->extend = 0;
9647 }
9648 else
9649 {
9650 /* We need to relax this instruction. */
9651 *offset_reloc = *imm_reloc;
9652 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9653 }
9654 s = expr_end;
9655 continue;
9656 }
9657 *imm_reloc = BFD_RELOC_UNUSED;
9658 /* Fall through. */
9659 case '<':
9660 case '>':
9661 case '[':
9662 case ']':
9663 case '4':
9664 case '8':
9665 my_getExpression (&imm_expr, s);
9666 if (imm_expr.X_op == O_register)
9667 {
9668 /* What we thought was an expression turned out to
9669 be a register. */
9670
9671 if (s[0] == '(' && args[1] == '(')
9672 {
9673 /* It looks like the expression was omitted
9674 before a register indirection, which means
9675 that the expression is implicitly zero. We
9676 still set up imm_expr, so that we handle
9677 explicit extensions correctly. */
9678 imm_expr.X_op = O_constant;
9679 imm_expr.X_add_number = 0;
9680 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9681 continue;
9682 }
9683
9684 break;
9685 }
9686
9687 /* We need to relax this instruction. */
9688 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9689 s = expr_end;
9690 continue;
9691
9692 case 'p':
9693 case 'q':
9694 case 'A':
9695 case 'B':
9696 case 'E':
9697 /* We use offset_reloc rather than imm_reloc for the PC
9698 relative operands. This lets macros with both
9699 immediate and address operands work correctly. */
9700 my_getExpression (&offset_expr, s);
9701
9702 if (offset_expr.X_op == O_register)
9703 break;
9704
9705 /* We need to relax this instruction. */
9706 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
9707 s = expr_end;
9708 continue;
9709
9710 case '6': /* break code */
9711 my_getExpression (&imm_expr, s);
9712 check_absolute_expr (ip, &imm_expr);
9713 if ((unsigned long) imm_expr.X_add_number > 63)
9714 as_warn (_("Invalid value for `%s' (%lu)"),
9715 ip->insn_mo->name,
9716 (unsigned long) imm_expr.X_add_number);
9717 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
9718 imm_expr.X_op = O_absent;
9719 s = expr_end;
9720 continue;
9721
9722 case 'a': /* 26 bit address */
9723 my_getExpression (&offset_expr, s);
9724 s = expr_end;
9725 *offset_reloc = BFD_RELOC_MIPS16_JMP;
9726 ip->insn_opcode <<= 16;
9727 continue;
9728
9729 case 'l': /* register list for entry macro */
9730 case 'L': /* register list for exit macro */
9731 {
9732 int mask;
9733
9734 if (c == 'l')
9735 mask = 0;
9736 else
9737 mask = 7 << 3;
9738 while (*s != '\0')
9739 {
9740 int freg, reg1, reg2;
9741
9742 while (*s == ' ' || *s == ',')
9743 ++s;
9744 if (*s != '$')
9745 {
9746 as_bad (_("can't parse register list"));
9747 break;
9748 }
9749 ++s;
9750 if (*s != 'f')
9751 freg = 0;
9752 else
9753 {
9754 freg = 1;
9755 ++s;
9756 }
9757 reg1 = 0;
9758 while (ISDIGIT (*s))
9759 {
9760 reg1 *= 10;
9761 reg1 += *s - '0';
9762 ++s;
9763 }
9764 if (*s == ' ')
9765 ++s;
9766 if (*s != '-')
9767 reg2 = reg1;
9768 else
9769 {
9770 ++s;
9771 if (*s != '$')
9772 break;
9773 ++s;
9774 if (freg)
9775 {
9776 if (*s == 'f')
9777 ++s;
9778 else
9779 {
9780 as_bad (_("invalid register list"));
9781 break;
9782 }
9783 }
9784 reg2 = 0;
9785 while (ISDIGIT (*s))
9786 {
9787 reg2 *= 10;
9788 reg2 += *s - '0';
9789 ++s;
9790 }
9791 }
9792 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
9793 {
9794 mask &= ~ (7 << 3);
9795 mask |= 5 << 3;
9796 }
9797 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
9798 {
9799 mask &= ~ (7 << 3);
9800 mask |= 6 << 3;
9801 }
9802 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
9803 mask |= (reg2 - 3) << 3;
9804 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
9805 mask |= (reg2 - 15) << 1;
9806 else if (reg1 == RA && reg2 == RA)
9807 mask |= 1;
9808 else
9809 {
9810 as_bad (_("invalid register list"));
9811 break;
9812 }
9813 }
9814 /* The mask is filled in in the opcode table for the
9815 benefit of the disassembler. We remove it before
9816 applying the actual mask. */
9817 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
9818 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
9819 }
9820 continue;
9821
9822 case 'e': /* extend code */
9823 my_getExpression (&imm_expr, s);
9824 check_absolute_expr (ip, &imm_expr);
9825 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
9826 {
9827 as_warn (_("Invalid value for `%s' (%lu)"),
9828 ip->insn_mo->name,
9829 (unsigned long) imm_expr.X_add_number);
9830 imm_expr.X_add_number &= 0x7ff;
9831 }
9832 ip->insn_opcode |= imm_expr.X_add_number;
9833 imm_expr.X_op = O_absent;
9834 s = expr_end;
9835 continue;
9836
9837 default:
9838 internalError ();
9839 }
9840 break;
9841 }
9842
9843 /* Args don't match. */
9844 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
9845 strcmp (insn->name, insn[1].name) == 0)
9846 {
9847 ++insn;
9848 s = argsstart;
9849 continue;
9850 }
9851
9852 insn_error = _("illegal operands");
9853
9854 return;
9855 }
9856 }
9857
9858 /* This structure holds information we know about a mips16 immediate
9859 argument type. */
9860
9861 struct mips16_immed_operand
9862 {
9863 /* The type code used in the argument string in the opcode table. */
9864 int type;
9865 /* The number of bits in the short form of the opcode. */
9866 int nbits;
9867 /* The number of bits in the extended form of the opcode. */
9868 int extbits;
9869 /* The amount by which the short form is shifted when it is used;
9870 for example, the sw instruction has a shift count of 2. */
9871 int shift;
9872 /* The amount by which the short form is shifted when it is stored
9873 into the instruction code. */
9874 int op_shift;
9875 /* Non-zero if the short form is unsigned. */
9876 int unsp;
9877 /* Non-zero if the extended form is unsigned. */
9878 int extu;
9879 /* Non-zero if the value is PC relative. */
9880 int pcrel;
9881 };
9882
9883 /* The mips16 immediate operand types. */
9884
9885 static const struct mips16_immed_operand mips16_immed_operands[] =
9886 {
9887 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9888 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9889 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9890 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9891 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
9892 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
9893 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
9894 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
9895 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
9896 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
9897 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
9898 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
9899 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
9900 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
9901 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
9902 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
9903 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9904 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9905 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
9906 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
9907 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
9908 };
9909
9910 #define MIPS16_NUM_IMMED \
9911 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
9912
9913 /* Handle a mips16 instruction with an immediate value. This or's the
9914 small immediate value into *INSN. It sets *USE_EXTEND to indicate
9915 whether an extended value is needed; if one is needed, it sets
9916 *EXTEND to the value. The argument type is TYPE. The value is VAL.
9917 If SMALL is true, an unextended opcode was explicitly requested.
9918 If EXT is true, an extended opcode was explicitly requested. If
9919 WARN is true, warn if EXT does not match reality. */
9920
9921 static void
9922 mips16_immed (char *file, unsigned int line, int type, offsetT val,
9923 bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
9924 unsigned long *insn, bfd_boolean *use_extend,
9925 unsigned short *extend)
9926 {
9927 register const struct mips16_immed_operand *op;
9928 int mintiny, maxtiny;
9929 bfd_boolean needext;
9930
9931 op = mips16_immed_operands;
9932 while (op->type != type)
9933 {
9934 ++op;
9935 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
9936 }
9937
9938 if (op->unsp)
9939 {
9940 if (type == '<' || type == '>' || type == '[' || type == ']')
9941 {
9942 mintiny = 1;
9943 maxtiny = 1 << op->nbits;
9944 }
9945 else
9946 {
9947 mintiny = 0;
9948 maxtiny = (1 << op->nbits) - 1;
9949 }
9950 }
9951 else
9952 {
9953 mintiny = - (1 << (op->nbits - 1));
9954 maxtiny = (1 << (op->nbits - 1)) - 1;
9955 }
9956
9957 /* Branch offsets have an implicit 0 in the lowest bit. */
9958 if (type == 'p' || type == 'q')
9959 val /= 2;
9960
9961 if ((val & ((1 << op->shift) - 1)) != 0
9962 || val < (mintiny << op->shift)
9963 || val > (maxtiny << op->shift))
9964 needext = TRUE;
9965 else
9966 needext = FALSE;
9967
9968 if (warn && ext && ! needext)
9969 as_warn_where (file, line,
9970 _("extended operand requested but not required"));
9971 if (small && needext)
9972 as_bad_where (file, line, _("invalid unextended operand value"));
9973
9974 if (small || (! ext && ! needext))
9975 {
9976 int insnval;
9977
9978 *use_extend = FALSE;
9979 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
9980 insnval <<= op->op_shift;
9981 *insn |= insnval;
9982 }
9983 else
9984 {
9985 long minext, maxext;
9986 int extval;
9987
9988 if (op->extu)
9989 {
9990 minext = 0;
9991 maxext = (1 << op->extbits) - 1;
9992 }
9993 else
9994 {
9995 minext = - (1 << (op->extbits - 1));
9996 maxext = (1 << (op->extbits - 1)) - 1;
9997 }
9998 if (val < minext || val > maxext)
9999 as_bad_where (file, line,
10000 _("operand value out of range for instruction"));
10001
10002 *use_extend = TRUE;
10003 if (op->extbits == 16)
10004 {
10005 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
10006 val &= 0x1f;
10007 }
10008 else if (op->extbits == 15)
10009 {
10010 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
10011 val &= 0xf;
10012 }
10013 else
10014 {
10015 extval = ((val & 0x1f) << 6) | (val & 0x20);
10016 val = 0;
10017 }
10018
10019 *extend = (unsigned short) extval;
10020 *insn |= val;
10021 }
10022 }
10023 \f
10024 struct percent_op_match
10025 {
10026 const char *str;
10027 bfd_reloc_code_real_type reloc;
10028 };
10029
10030 static const struct percent_op_match mips_percent_op[] =
10031 {
10032 {"%lo", BFD_RELOC_LO16},
10033 #ifdef OBJ_ELF
10034 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
10035 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
10036 {"%call16", BFD_RELOC_MIPS_CALL16},
10037 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
10038 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
10039 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
10040 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
10041 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
10042 {"%got", BFD_RELOC_MIPS_GOT16},
10043 {"%gp_rel", BFD_RELOC_GPREL16},
10044 {"%half", BFD_RELOC_16},
10045 {"%highest", BFD_RELOC_MIPS_HIGHEST},
10046 {"%higher", BFD_RELOC_MIPS_HIGHER},
10047 {"%neg", BFD_RELOC_MIPS_SUB},
10048 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
10049 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
10050 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
10051 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
10052 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
10053 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
10054 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
10055 #endif
10056 {"%hi", BFD_RELOC_HI16_S}
10057 };
10058
10059 static const struct percent_op_match mips16_percent_op[] =
10060 {
10061 {"%lo", BFD_RELOC_MIPS16_LO16},
10062 {"%gprel", BFD_RELOC_MIPS16_GPREL},
10063 {"%hi", BFD_RELOC_MIPS16_HI16_S}
10064 };
10065
10066
10067 /* Return true if *STR points to a relocation operator. When returning true,
10068 move *STR over the operator and store its relocation code in *RELOC.
10069 Leave both *STR and *RELOC alone when returning false. */
10070
10071 static bfd_boolean
10072 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
10073 {
10074 const struct percent_op_match *percent_op;
10075 size_t limit, i;
10076
10077 if (mips_opts.mips16)
10078 {
10079 percent_op = mips16_percent_op;
10080 limit = ARRAY_SIZE (mips16_percent_op);
10081 }
10082 else
10083 {
10084 percent_op = mips_percent_op;
10085 limit = ARRAY_SIZE (mips_percent_op);
10086 }
10087
10088 for (i = 0; i < limit; i++)
10089 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
10090 {
10091 int len = strlen (percent_op[i].str);
10092
10093 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
10094 continue;
10095
10096 *str += strlen (percent_op[i].str);
10097 *reloc = percent_op[i].reloc;
10098
10099 /* Check whether the output BFD supports this relocation.
10100 If not, issue an error and fall back on something safe. */
10101 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
10102 {
10103 as_bad ("relocation %s isn't supported by the current ABI",
10104 percent_op[i].str);
10105 *reloc = BFD_RELOC_UNUSED;
10106 }
10107 return TRUE;
10108 }
10109 return FALSE;
10110 }
10111
10112
10113 /* Parse string STR as a 16-bit relocatable operand. Store the
10114 expression in *EP and the relocations in the array starting
10115 at RELOC. Return the number of relocation operators used.
10116
10117 On exit, EXPR_END points to the first character after the expression. */
10118
10119 static size_t
10120 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
10121 char *str)
10122 {
10123 bfd_reloc_code_real_type reversed_reloc[3];
10124 size_t reloc_index, i;
10125 int crux_depth, str_depth;
10126 char *crux;
10127
10128 /* Search for the start of the main expression, recoding relocations
10129 in REVERSED_RELOC. End the loop with CRUX pointing to the start
10130 of the main expression and with CRUX_DEPTH containing the number
10131 of open brackets at that point. */
10132 reloc_index = -1;
10133 str_depth = 0;
10134 do
10135 {
10136 reloc_index++;
10137 crux = str;
10138 crux_depth = str_depth;
10139
10140 /* Skip over whitespace and brackets, keeping count of the number
10141 of brackets. */
10142 while (*str == ' ' || *str == '\t' || *str == '(')
10143 if (*str++ == '(')
10144 str_depth++;
10145 }
10146 while (*str == '%'
10147 && reloc_index < (HAVE_NEWABI ? 3 : 1)
10148 && parse_relocation (&str, &reversed_reloc[reloc_index]));
10149
10150 my_getExpression (ep, crux);
10151 str = expr_end;
10152
10153 /* Match every open bracket. */
10154 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
10155 if (*str++ == ')')
10156 crux_depth--;
10157
10158 if (crux_depth > 0)
10159 as_bad ("unclosed '('");
10160
10161 expr_end = str;
10162
10163 if (reloc_index != 0)
10164 {
10165 prev_reloc_op_frag = frag_now;
10166 for (i = 0; i < reloc_index; i++)
10167 reloc[i] = reversed_reloc[reloc_index - 1 - i];
10168 }
10169
10170 return reloc_index;
10171 }
10172
10173 static void
10174 my_getExpression (expressionS *ep, char *str)
10175 {
10176 char *save_in;
10177 valueT val;
10178
10179 save_in = input_line_pointer;
10180 input_line_pointer = str;
10181 expression (ep);
10182 expr_end = input_line_pointer;
10183 input_line_pointer = save_in;
10184
10185 /* If we are in mips16 mode, and this is an expression based on `.',
10186 then we bump the value of the symbol by 1 since that is how other
10187 text symbols are handled. We don't bother to handle complex
10188 expressions, just `.' plus or minus a constant. */
10189 if (mips_opts.mips16
10190 && ep->X_op == O_symbol
10191 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
10192 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
10193 && symbol_get_frag (ep->X_add_symbol) == frag_now
10194 && symbol_constant_p (ep->X_add_symbol)
10195 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
10196 S_SET_VALUE (ep->X_add_symbol, val + 1);
10197 }
10198
10199 /* Turn a string in input_line_pointer into a floating point constant
10200 of type TYPE, and store the appropriate bytes in *LITP. The number
10201 of LITTLENUMS emitted is stored in *SIZEP. An error message is
10202 returned, or NULL on OK. */
10203
10204 char *
10205 md_atof (int type, char *litP, int *sizeP)
10206 {
10207 int prec;
10208 LITTLENUM_TYPE words[4];
10209 char *t;
10210 int i;
10211
10212 switch (type)
10213 {
10214 case 'f':
10215 prec = 2;
10216 break;
10217
10218 case 'd':
10219 prec = 4;
10220 break;
10221
10222 default:
10223 *sizeP = 0;
10224 return _("bad call to md_atof");
10225 }
10226
10227 t = atof_ieee (input_line_pointer, type, words);
10228 if (t)
10229 input_line_pointer = t;
10230
10231 *sizeP = prec * 2;
10232
10233 if (! target_big_endian)
10234 {
10235 for (i = prec - 1; i >= 0; i--)
10236 {
10237 md_number_to_chars (litP, words[i], 2);
10238 litP += 2;
10239 }
10240 }
10241 else
10242 {
10243 for (i = 0; i < prec; i++)
10244 {
10245 md_number_to_chars (litP, words[i], 2);
10246 litP += 2;
10247 }
10248 }
10249
10250 return NULL;
10251 }
10252
10253 void
10254 md_number_to_chars (char *buf, valueT val, int n)
10255 {
10256 if (target_big_endian)
10257 number_to_chars_bigendian (buf, val, n);
10258 else
10259 number_to_chars_littleendian (buf, val, n);
10260 }
10261 \f
10262 #ifdef OBJ_ELF
10263 static int support_64bit_objects(void)
10264 {
10265 const char **list, **l;
10266 int yes;
10267
10268 list = bfd_target_list ();
10269 for (l = list; *l != NULL; l++)
10270 #ifdef TE_TMIPS
10271 /* This is traditional mips */
10272 if (strcmp (*l, "elf64-tradbigmips") == 0
10273 || strcmp (*l, "elf64-tradlittlemips") == 0)
10274 #else
10275 if (strcmp (*l, "elf64-bigmips") == 0
10276 || strcmp (*l, "elf64-littlemips") == 0)
10277 #endif
10278 break;
10279 yes = (*l != NULL);
10280 free (list);
10281 return yes;
10282 }
10283 #endif /* OBJ_ELF */
10284
10285 const char *md_shortopts = "O::g::G:";
10286
10287 struct option md_longopts[] =
10288 {
10289 /* Options which specify architecture. */
10290 #define OPTION_ARCH_BASE (OPTION_MD_BASE)
10291 #define OPTION_MARCH (OPTION_ARCH_BASE + 0)
10292 {"march", required_argument, NULL, OPTION_MARCH},
10293 #define OPTION_MTUNE (OPTION_ARCH_BASE + 1)
10294 {"mtune", required_argument, NULL, OPTION_MTUNE},
10295 #define OPTION_MIPS1 (OPTION_ARCH_BASE + 2)
10296 {"mips0", no_argument, NULL, OPTION_MIPS1},
10297 {"mips1", no_argument, NULL, OPTION_MIPS1},
10298 #define OPTION_MIPS2 (OPTION_ARCH_BASE + 3)
10299 {"mips2", no_argument, NULL, OPTION_MIPS2},
10300 #define OPTION_MIPS3 (OPTION_ARCH_BASE + 4)
10301 {"mips3", no_argument, NULL, OPTION_MIPS3},
10302 #define OPTION_MIPS4 (OPTION_ARCH_BASE + 5)
10303 {"mips4", no_argument, NULL, OPTION_MIPS4},
10304 #define OPTION_MIPS5 (OPTION_ARCH_BASE + 6)
10305 {"mips5", no_argument, NULL, OPTION_MIPS5},
10306 #define OPTION_MIPS32 (OPTION_ARCH_BASE + 7)
10307 {"mips32", no_argument, NULL, OPTION_MIPS32},
10308 #define OPTION_MIPS64 (OPTION_ARCH_BASE + 8)
10309 {"mips64", no_argument, NULL, OPTION_MIPS64},
10310 #define OPTION_MIPS32R2 (OPTION_ARCH_BASE + 9)
10311 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
10312 #define OPTION_MIPS64R2 (OPTION_ARCH_BASE + 10)
10313 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
10314
10315 /* Options which specify Application Specific Extensions (ASEs). */
10316 #define OPTION_ASE_BASE (OPTION_ARCH_BASE + 11)
10317 #define OPTION_MIPS16 (OPTION_ASE_BASE + 0)
10318 {"mips16", no_argument, NULL, OPTION_MIPS16},
10319 #define OPTION_NO_MIPS16 (OPTION_ASE_BASE + 1)
10320 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
10321 #define OPTION_MIPS3D (OPTION_ASE_BASE + 2)
10322 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
10323 #define OPTION_NO_MIPS3D (OPTION_ASE_BASE + 3)
10324 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
10325 #define OPTION_MDMX (OPTION_ASE_BASE + 4)
10326 {"mdmx", no_argument, NULL, OPTION_MDMX},
10327 #define OPTION_NO_MDMX (OPTION_ASE_BASE + 5)
10328 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
10329 #define OPTION_DSP (OPTION_ASE_BASE + 6)
10330 {"mdsp", no_argument, NULL, OPTION_DSP},
10331 #define OPTION_NO_DSP (OPTION_ASE_BASE + 7)
10332 {"mno-dsp", no_argument, NULL, OPTION_NO_DSP},
10333 #define OPTION_MT (OPTION_ASE_BASE + 8)
10334 {"mmt", no_argument, NULL, OPTION_MT},
10335 #define OPTION_NO_MT (OPTION_ASE_BASE + 9)
10336 {"mno-mt", no_argument, NULL, OPTION_NO_MT},
10337
10338 /* Old-style architecture options. Don't add more of these. */
10339 #define OPTION_COMPAT_ARCH_BASE (OPTION_ASE_BASE + 10)
10340 #define OPTION_M4650 (OPTION_COMPAT_ARCH_BASE + 0)
10341 {"m4650", no_argument, NULL, OPTION_M4650},
10342 #define OPTION_NO_M4650 (OPTION_COMPAT_ARCH_BASE + 1)
10343 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
10344 #define OPTION_M4010 (OPTION_COMPAT_ARCH_BASE + 2)
10345 {"m4010", no_argument, NULL, OPTION_M4010},
10346 #define OPTION_NO_M4010 (OPTION_COMPAT_ARCH_BASE + 3)
10347 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
10348 #define OPTION_M4100 (OPTION_COMPAT_ARCH_BASE + 4)
10349 {"m4100", no_argument, NULL, OPTION_M4100},
10350 #define OPTION_NO_M4100 (OPTION_COMPAT_ARCH_BASE + 5)
10351 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
10352 #define OPTION_M3900 (OPTION_COMPAT_ARCH_BASE + 6)
10353 {"m3900", no_argument, NULL, OPTION_M3900},
10354 #define OPTION_NO_M3900 (OPTION_COMPAT_ARCH_BASE + 7)
10355 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
10356
10357 /* Options which enable bug fixes. */
10358 #define OPTION_FIX_BASE (OPTION_COMPAT_ARCH_BASE + 8)
10359 #define OPTION_M7000_HILO_FIX (OPTION_FIX_BASE + 0)
10360 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
10361 #define OPTION_MNO_7000_HILO_FIX (OPTION_FIX_BASE + 1)
10362 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
10363 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
10364 #define OPTION_FIX_VR4120 (OPTION_FIX_BASE + 2)
10365 #define OPTION_NO_FIX_VR4120 (OPTION_FIX_BASE + 3)
10366 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
10367 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
10368 #define OPTION_FIX_VR4130 (OPTION_FIX_BASE + 4)
10369 #define OPTION_NO_FIX_VR4130 (OPTION_FIX_BASE + 5)
10370 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
10371 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
10372
10373 /* Miscellaneous options. */
10374 #define OPTION_MISC_BASE (OPTION_FIX_BASE + 6)
10375 #define OPTION_TRAP (OPTION_MISC_BASE + 0)
10376 {"trap", no_argument, NULL, OPTION_TRAP},
10377 {"no-break", no_argument, NULL, OPTION_TRAP},
10378 #define OPTION_BREAK (OPTION_MISC_BASE + 1)
10379 {"break", no_argument, NULL, OPTION_BREAK},
10380 {"no-trap", no_argument, NULL, OPTION_BREAK},
10381 #define OPTION_EB (OPTION_MISC_BASE + 2)
10382 {"EB", no_argument, NULL, OPTION_EB},
10383 #define OPTION_EL (OPTION_MISC_BASE + 3)
10384 {"EL", no_argument, NULL, OPTION_EL},
10385 #define OPTION_FP32 (OPTION_MISC_BASE + 4)
10386 {"mfp32", no_argument, NULL, OPTION_FP32},
10387 #define OPTION_GP32 (OPTION_MISC_BASE + 5)
10388 {"mgp32", no_argument, NULL, OPTION_GP32},
10389 #define OPTION_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 6)
10390 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
10391 #define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 7)
10392 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
10393 #define OPTION_FP64 (OPTION_MISC_BASE + 8)
10394 {"mfp64", no_argument, NULL, OPTION_FP64},
10395 #define OPTION_GP64 (OPTION_MISC_BASE + 9)
10396 {"mgp64", no_argument, NULL, OPTION_GP64},
10397 #define OPTION_RELAX_BRANCH (OPTION_MISC_BASE + 10)
10398 #define OPTION_NO_RELAX_BRANCH (OPTION_MISC_BASE + 11)
10399 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
10400 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
10401 #define OPTION_MSHARED (OPTION_MISC_BASE + 12)
10402 #define OPTION_MNO_SHARED (OPTION_MISC_BASE + 13)
10403 {"mshared", no_argument, NULL, OPTION_MSHARED},
10404 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
10405 #define OPTION_MSYM32 (OPTION_MISC_BASE + 14)
10406 #define OPTION_MNO_SYM32 (OPTION_MISC_BASE + 15)
10407 {"msym32", no_argument, NULL, OPTION_MSYM32},
10408 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
10409
10410 /* ELF-specific options. */
10411 #ifdef OBJ_ELF
10412 #define OPTION_ELF_BASE (OPTION_MISC_BASE + 16)
10413 #define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
10414 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
10415 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
10416 #define OPTION_NON_SHARED (OPTION_ELF_BASE + 1)
10417 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
10418 #define OPTION_XGOT (OPTION_ELF_BASE + 2)
10419 {"xgot", no_argument, NULL, OPTION_XGOT},
10420 #define OPTION_MABI (OPTION_ELF_BASE + 3)
10421 {"mabi", required_argument, NULL, OPTION_MABI},
10422 #define OPTION_32 (OPTION_ELF_BASE + 4)
10423 {"32", no_argument, NULL, OPTION_32},
10424 #define OPTION_N32 (OPTION_ELF_BASE + 5)
10425 {"n32", no_argument, NULL, OPTION_N32},
10426 #define OPTION_64 (OPTION_ELF_BASE + 6)
10427 {"64", no_argument, NULL, OPTION_64},
10428 #define OPTION_MDEBUG (OPTION_ELF_BASE + 7)
10429 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
10430 #define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 8)
10431 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
10432 #define OPTION_PDR (OPTION_ELF_BASE + 9)
10433 {"mpdr", no_argument, NULL, OPTION_PDR},
10434 #define OPTION_NO_PDR (OPTION_ELF_BASE + 10)
10435 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
10436 #endif /* OBJ_ELF */
10437
10438 {NULL, no_argument, NULL, 0}
10439 };
10440 size_t md_longopts_size = sizeof (md_longopts);
10441
10442 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
10443 NEW_VALUE. Warn if another value was already specified. Note:
10444 we have to defer parsing the -march and -mtune arguments in order
10445 to handle 'from-abi' correctly, since the ABI might be specified
10446 in a later argument. */
10447
10448 static void
10449 mips_set_option_string (const char **string_ptr, const char *new_value)
10450 {
10451 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
10452 as_warn (_("A different %s was already specified, is now %s"),
10453 string_ptr == &mips_arch_string ? "-march" : "-mtune",
10454 new_value);
10455
10456 *string_ptr = new_value;
10457 }
10458
10459 int
10460 md_parse_option (int c, char *arg)
10461 {
10462 switch (c)
10463 {
10464 case OPTION_CONSTRUCT_FLOATS:
10465 mips_disable_float_construction = 0;
10466 break;
10467
10468 case OPTION_NO_CONSTRUCT_FLOATS:
10469 mips_disable_float_construction = 1;
10470 break;
10471
10472 case OPTION_TRAP:
10473 mips_trap = 1;
10474 break;
10475
10476 case OPTION_BREAK:
10477 mips_trap = 0;
10478 break;
10479
10480 case OPTION_EB:
10481 target_big_endian = 1;
10482 break;
10483
10484 case OPTION_EL:
10485 target_big_endian = 0;
10486 break;
10487
10488 case 'O':
10489 if (arg && arg[1] == '0')
10490 mips_optimize = 1;
10491 else
10492 mips_optimize = 2;
10493 break;
10494
10495 case 'g':
10496 if (arg == NULL)
10497 mips_debug = 2;
10498 else
10499 mips_debug = atoi (arg);
10500 /* When the MIPS assembler sees -g or -g2, it does not do
10501 optimizations which limit full symbolic debugging. We take
10502 that to be equivalent to -O0. */
10503 if (mips_debug == 2)
10504 mips_optimize = 1;
10505 break;
10506
10507 case OPTION_MIPS1:
10508 file_mips_isa = ISA_MIPS1;
10509 break;
10510
10511 case OPTION_MIPS2:
10512 file_mips_isa = ISA_MIPS2;
10513 break;
10514
10515 case OPTION_MIPS3:
10516 file_mips_isa = ISA_MIPS3;
10517 break;
10518
10519 case OPTION_MIPS4:
10520 file_mips_isa = ISA_MIPS4;
10521 break;
10522
10523 case OPTION_MIPS5:
10524 file_mips_isa = ISA_MIPS5;
10525 break;
10526
10527 case OPTION_MIPS32:
10528 file_mips_isa = ISA_MIPS32;
10529 break;
10530
10531 case OPTION_MIPS32R2:
10532 file_mips_isa = ISA_MIPS32R2;
10533 break;
10534
10535 case OPTION_MIPS64R2:
10536 file_mips_isa = ISA_MIPS64R2;
10537 break;
10538
10539 case OPTION_MIPS64:
10540 file_mips_isa = ISA_MIPS64;
10541 break;
10542
10543 case OPTION_MTUNE:
10544 mips_set_option_string (&mips_tune_string, arg);
10545 break;
10546
10547 case OPTION_MARCH:
10548 mips_set_option_string (&mips_arch_string, arg);
10549 break;
10550
10551 case OPTION_M4650:
10552 mips_set_option_string (&mips_arch_string, "4650");
10553 mips_set_option_string (&mips_tune_string, "4650");
10554 break;
10555
10556 case OPTION_NO_M4650:
10557 break;
10558
10559 case OPTION_M4010:
10560 mips_set_option_string (&mips_arch_string, "4010");
10561 mips_set_option_string (&mips_tune_string, "4010");
10562 break;
10563
10564 case OPTION_NO_M4010:
10565 break;
10566
10567 case OPTION_M4100:
10568 mips_set_option_string (&mips_arch_string, "4100");
10569 mips_set_option_string (&mips_tune_string, "4100");
10570 break;
10571
10572 case OPTION_NO_M4100:
10573 break;
10574
10575 case OPTION_M3900:
10576 mips_set_option_string (&mips_arch_string, "3900");
10577 mips_set_option_string (&mips_tune_string, "3900");
10578 break;
10579
10580 case OPTION_NO_M3900:
10581 break;
10582
10583 case OPTION_MDMX:
10584 mips_opts.ase_mdmx = 1;
10585 break;
10586
10587 case OPTION_NO_MDMX:
10588 mips_opts.ase_mdmx = 0;
10589 break;
10590
10591 case OPTION_DSP:
10592 mips_opts.ase_dsp = 1;
10593 break;
10594
10595 case OPTION_NO_DSP:
10596 mips_opts.ase_dsp = 0;
10597 break;
10598
10599 case OPTION_MT:
10600 mips_opts.ase_mt = 1;
10601 break;
10602
10603 case OPTION_NO_MT:
10604 mips_opts.ase_mt = 0;
10605 break;
10606
10607 case OPTION_MIPS16:
10608 mips_opts.mips16 = 1;
10609 mips_no_prev_insn ();
10610 break;
10611
10612 case OPTION_NO_MIPS16:
10613 mips_opts.mips16 = 0;
10614 mips_no_prev_insn ();
10615 break;
10616
10617 case OPTION_MIPS3D:
10618 mips_opts.ase_mips3d = 1;
10619 break;
10620
10621 case OPTION_NO_MIPS3D:
10622 mips_opts.ase_mips3d = 0;
10623 break;
10624
10625 case OPTION_FIX_VR4120:
10626 mips_fix_vr4120 = 1;
10627 break;
10628
10629 case OPTION_NO_FIX_VR4120:
10630 mips_fix_vr4120 = 0;
10631 break;
10632
10633 case OPTION_FIX_VR4130:
10634 mips_fix_vr4130 = 1;
10635 break;
10636
10637 case OPTION_NO_FIX_VR4130:
10638 mips_fix_vr4130 = 0;
10639 break;
10640
10641 case OPTION_RELAX_BRANCH:
10642 mips_relax_branch = 1;
10643 break;
10644
10645 case OPTION_NO_RELAX_BRANCH:
10646 mips_relax_branch = 0;
10647 break;
10648
10649 case OPTION_MSHARED:
10650 mips_in_shared = TRUE;
10651 break;
10652
10653 case OPTION_MNO_SHARED:
10654 mips_in_shared = FALSE;
10655 break;
10656
10657 case OPTION_MSYM32:
10658 mips_opts.sym32 = TRUE;
10659 break;
10660
10661 case OPTION_MNO_SYM32:
10662 mips_opts.sym32 = FALSE;
10663 break;
10664
10665 #ifdef OBJ_ELF
10666 /* When generating ELF code, we permit -KPIC and -call_shared to
10667 select SVR4_PIC, and -non_shared to select no PIC. This is
10668 intended to be compatible with Irix 5. */
10669 case OPTION_CALL_SHARED:
10670 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10671 {
10672 as_bad (_("-call_shared is supported only for ELF format"));
10673 return 0;
10674 }
10675 mips_pic = SVR4_PIC;
10676 mips_abicalls = TRUE;
10677 if (g_switch_seen && g_switch_value != 0)
10678 {
10679 as_bad (_("-G may not be used with SVR4 PIC code"));
10680 return 0;
10681 }
10682 g_switch_value = 0;
10683 break;
10684
10685 case OPTION_NON_SHARED:
10686 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10687 {
10688 as_bad (_("-non_shared is supported only for ELF format"));
10689 return 0;
10690 }
10691 mips_pic = NO_PIC;
10692 mips_abicalls = FALSE;
10693 break;
10694
10695 /* The -xgot option tells the assembler to use 32 offsets when
10696 accessing the got in SVR4_PIC mode. It is for Irix
10697 compatibility. */
10698 case OPTION_XGOT:
10699 mips_big_got = 1;
10700 break;
10701 #endif /* OBJ_ELF */
10702
10703 case 'G':
10704 g_switch_value = atoi (arg);
10705 g_switch_seen = 1;
10706 if (mips_pic == SVR4_PIC && g_switch_value != 0)
10707 {
10708 as_bad (_("-G may not be used with SVR4 PIC code"));
10709 return 0;
10710 }
10711 break;
10712
10713 #ifdef OBJ_ELF
10714 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
10715 and -mabi=64. */
10716 case OPTION_32:
10717 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10718 {
10719 as_bad (_("-32 is supported for ELF format only"));
10720 return 0;
10721 }
10722 mips_abi = O32_ABI;
10723 break;
10724
10725 case OPTION_N32:
10726 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10727 {
10728 as_bad (_("-n32 is supported for ELF format only"));
10729 return 0;
10730 }
10731 mips_abi = N32_ABI;
10732 break;
10733
10734 case OPTION_64:
10735 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10736 {
10737 as_bad (_("-64 is supported for ELF format only"));
10738 return 0;
10739 }
10740 mips_abi = N64_ABI;
10741 if (! support_64bit_objects())
10742 as_fatal (_("No compiled in support for 64 bit object file format"));
10743 break;
10744 #endif /* OBJ_ELF */
10745
10746 case OPTION_GP32:
10747 file_mips_gp32 = 1;
10748 break;
10749
10750 case OPTION_GP64:
10751 file_mips_gp32 = 0;
10752 break;
10753
10754 case OPTION_FP32:
10755 file_mips_fp32 = 1;
10756 break;
10757
10758 case OPTION_FP64:
10759 file_mips_fp32 = 0;
10760 break;
10761
10762 #ifdef OBJ_ELF
10763 case OPTION_MABI:
10764 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10765 {
10766 as_bad (_("-mabi is supported for ELF format only"));
10767 return 0;
10768 }
10769 if (strcmp (arg, "32") == 0)
10770 mips_abi = O32_ABI;
10771 else if (strcmp (arg, "o64") == 0)
10772 mips_abi = O64_ABI;
10773 else if (strcmp (arg, "n32") == 0)
10774 mips_abi = N32_ABI;
10775 else if (strcmp (arg, "64") == 0)
10776 {
10777 mips_abi = N64_ABI;
10778 if (! support_64bit_objects())
10779 as_fatal (_("No compiled in support for 64 bit object file "
10780 "format"));
10781 }
10782 else if (strcmp (arg, "eabi") == 0)
10783 mips_abi = EABI_ABI;
10784 else
10785 {
10786 as_fatal (_("invalid abi -mabi=%s"), arg);
10787 return 0;
10788 }
10789 break;
10790 #endif /* OBJ_ELF */
10791
10792 case OPTION_M7000_HILO_FIX:
10793 mips_7000_hilo_fix = TRUE;
10794 break;
10795
10796 case OPTION_MNO_7000_HILO_FIX:
10797 mips_7000_hilo_fix = FALSE;
10798 break;
10799
10800 #ifdef OBJ_ELF
10801 case OPTION_MDEBUG:
10802 mips_flag_mdebug = TRUE;
10803 break;
10804
10805 case OPTION_NO_MDEBUG:
10806 mips_flag_mdebug = FALSE;
10807 break;
10808
10809 case OPTION_PDR:
10810 mips_flag_pdr = TRUE;
10811 break;
10812
10813 case OPTION_NO_PDR:
10814 mips_flag_pdr = FALSE;
10815 break;
10816 #endif /* OBJ_ELF */
10817
10818 default:
10819 return 0;
10820 }
10821
10822 return 1;
10823 }
10824 \f
10825 /* Set up globals to generate code for the ISA or processor
10826 described by INFO. */
10827
10828 static void
10829 mips_set_architecture (const struct mips_cpu_info *info)
10830 {
10831 if (info != 0)
10832 {
10833 file_mips_arch = info->cpu;
10834 mips_opts.arch = info->cpu;
10835 mips_opts.isa = info->isa;
10836 }
10837 }
10838
10839
10840 /* Likewise for tuning. */
10841
10842 static void
10843 mips_set_tune (const struct mips_cpu_info *info)
10844 {
10845 if (info != 0)
10846 mips_tune = info->cpu;
10847 }
10848
10849
10850 void
10851 mips_after_parse_args (void)
10852 {
10853 const struct mips_cpu_info *arch_info = 0;
10854 const struct mips_cpu_info *tune_info = 0;
10855
10856 /* GP relative stuff not working for PE */
10857 if (strncmp (TARGET_OS, "pe", 2) == 0)
10858 {
10859 if (g_switch_seen && g_switch_value != 0)
10860 as_bad (_("-G not supported in this configuration."));
10861 g_switch_value = 0;
10862 }
10863
10864 if (mips_abi == NO_ABI)
10865 mips_abi = MIPS_DEFAULT_ABI;
10866
10867 /* The following code determines the architecture and register size.
10868 Similar code was added to GCC 3.3 (see override_options() in
10869 config/mips/mips.c). The GAS and GCC code should be kept in sync
10870 as much as possible. */
10871
10872 if (mips_arch_string != 0)
10873 arch_info = mips_parse_cpu ("-march", mips_arch_string);
10874
10875 if (file_mips_isa != ISA_UNKNOWN)
10876 {
10877 /* Handle -mipsN. At this point, file_mips_isa contains the
10878 ISA level specified by -mipsN, while arch_info->isa contains
10879 the -march selection (if any). */
10880 if (arch_info != 0)
10881 {
10882 /* -march takes precedence over -mipsN, since it is more descriptive.
10883 There's no harm in specifying both as long as the ISA levels
10884 are the same. */
10885 if (file_mips_isa != arch_info->isa)
10886 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
10887 mips_cpu_info_from_isa (file_mips_isa)->name,
10888 mips_cpu_info_from_isa (arch_info->isa)->name);
10889 }
10890 else
10891 arch_info = mips_cpu_info_from_isa (file_mips_isa);
10892 }
10893
10894 if (arch_info == 0)
10895 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
10896
10897 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
10898 as_bad ("-march=%s is not compatible with the selected ABI",
10899 arch_info->name);
10900
10901 mips_set_architecture (arch_info);
10902
10903 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
10904 if (mips_tune_string != 0)
10905 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
10906
10907 if (tune_info == 0)
10908 mips_set_tune (arch_info);
10909 else
10910 mips_set_tune (tune_info);
10911
10912 if (file_mips_gp32 >= 0)
10913 {
10914 /* The user specified the size of the integer registers. Make sure
10915 it agrees with the ABI and ISA. */
10916 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
10917 as_bad (_("-mgp64 used with a 32-bit processor"));
10918 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
10919 as_bad (_("-mgp32 used with a 64-bit ABI"));
10920 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
10921 as_bad (_("-mgp64 used with a 32-bit ABI"));
10922 }
10923 else
10924 {
10925 /* Infer the integer register size from the ABI and processor.
10926 Restrict ourselves to 32-bit registers if that's all the
10927 processor has, or if the ABI cannot handle 64-bit registers. */
10928 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
10929 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
10930 }
10931
10932 /* ??? GAS treats single-float processors as though they had 64-bit
10933 float registers (although it complains when double-precision
10934 instructions are used). As things stand, saying they have 32-bit
10935 registers would lead to spurious "register must be even" messages.
10936 So here we assume float registers are always the same size as
10937 integer ones, unless the user says otherwise. */
10938 if (file_mips_fp32 < 0)
10939 file_mips_fp32 = file_mips_gp32;
10940
10941 /* End of GCC-shared inference code. */
10942
10943 /* This flag is set when we have a 64-bit capable CPU but use only
10944 32-bit wide registers. Note that EABI does not use it. */
10945 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
10946 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
10947 || mips_abi == O32_ABI))
10948 mips_32bitmode = 1;
10949
10950 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
10951 as_bad (_("trap exception not supported at ISA 1"));
10952
10953 /* If the selected architecture includes support for ASEs, enable
10954 generation of code for them. */
10955 if (mips_opts.mips16 == -1)
10956 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
10957 if (mips_opts.ase_mips3d == -1)
10958 mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (file_mips_arch)) ? 1 : 0;
10959 if (mips_opts.ase_mdmx == -1)
10960 mips_opts.ase_mdmx = (CPU_HAS_MDMX (file_mips_arch)) ? 1 : 0;
10961 if (mips_opts.ase_dsp == -1)
10962 mips_opts.ase_dsp = (CPU_HAS_DSP (file_mips_arch)) ? 1 : 0;
10963 if (mips_opts.ase_mt == -1)
10964 mips_opts.ase_mt = (CPU_HAS_MT (file_mips_arch)) ? 1 : 0;
10965
10966 file_mips_isa = mips_opts.isa;
10967 file_ase_mips16 = mips_opts.mips16;
10968 file_ase_mips3d = mips_opts.ase_mips3d;
10969 file_ase_mdmx = mips_opts.ase_mdmx;
10970 file_ase_dsp = mips_opts.ase_dsp;
10971 file_ase_mt = mips_opts.ase_mt;
10972 mips_opts.gp32 = file_mips_gp32;
10973 mips_opts.fp32 = file_mips_fp32;
10974
10975 if (mips_flag_mdebug < 0)
10976 {
10977 #ifdef OBJ_MAYBE_ECOFF
10978 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
10979 mips_flag_mdebug = 1;
10980 else
10981 #endif /* OBJ_MAYBE_ECOFF */
10982 mips_flag_mdebug = 0;
10983 }
10984 }
10985 \f
10986 void
10987 mips_init_after_args (void)
10988 {
10989 /* initialize opcodes */
10990 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
10991 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
10992 }
10993
10994 long
10995 md_pcrel_from (fixS *fixP)
10996 {
10997 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
10998 switch (fixP->fx_r_type)
10999 {
11000 case BFD_RELOC_16_PCREL_S2:
11001 case BFD_RELOC_MIPS_JMP:
11002 /* Return the address of the delay slot. */
11003 return addr + 4;
11004 default:
11005 return addr;
11006 }
11007 }
11008
11009 /* This is called before the symbol table is processed. In order to
11010 work with gcc when using mips-tfile, we must keep all local labels.
11011 However, in other cases, we want to discard them. If we were
11012 called with -g, but we didn't see any debugging information, it may
11013 mean that gcc is smuggling debugging information through to
11014 mips-tfile, in which case we must generate all local labels. */
11015
11016 void
11017 mips_frob_file_before_adjust (void)
11018 {
11019 #ifndef NO_ECOFF_DEBUGGING
11020 if (ECOFF_DEBUGGING
11021 && mips_debug != 0
11022 && ! ecoff_debugging_seen)
11023 flag_keep_locals = 1;
11024 #endif
11025 }
11026
11027 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
11028 the corresponding LO16 reloc. This is called before md_apply_fix and
11029 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
11030 relocation operators.
11031
11032 For our purposes, a %lo() expression matches a %got() or %hi()
11033 expression if:
11034
11035 (a) it refers to the same symbol; and
11036 (b) the offset applied in the %lo() expression is no lower than
11037 the offset applied in the %got() or %hi().
11038
11039 (b) allows us to cope with code like:
11040
11041 lui $4,%hi(foo)
11042 lh $4,%lo(foo+2)($4)
11043
11044 ...which is legal on RELA targets, and has a well-defined behaviour
11045 if the user knows that adding 2 to "foo" will not induce a carry to
11046 the high 16 bits.
11047
11048 When several %lo()s match a particular %got() or %hi(), we use the
11049 following rules to distinguish them:
11050
11051 (1) %lo()s with smaller offsets are a better match than %lo()s with
11052 higher offsets.
11053
11054 (2) %lo()s with no matching %got() or %hi() are better than those
11055 that already have a matching %got() or %hi().
11056
11057 (3) later %lo()s are better than earlier %lo()s.
11058
11059 These rules are applied in order.
11060
11061 (1) means, among other things, that %lo()s with identical offsets are
11062 chosen if they exist.
11063
11064 (2) means that we won't associate several high-part relocations with
11065 the same low-part relocation unless there's no alternative. Having
11066 several high parts for the same low part is a GNU extension; this rule
11067 allows careful users to avoid it.
11068
11069 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
11070 with the last high-part relocation being at the front of the list.
11071 It therefore makes sense to choose the last matching low-part
11072 relocation, all other things being equal. It's also easier
11073 to code that way. */
11074
11075 void
11076 mips_frob_file (void)
11077 {
11078 struct mips_hi_fixup *l;
11079
11080 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
11081 {
11082 segment_info_type *seginfo;
11083 bfd_boolean matched_lo_p;
11084 fixS **hi_pos, **lo_pos, **pos;
11085
11086 assert (reloc_needs_lo_p (l->fixp->fx_r_type));
11087
11088 /* If a GOT16 relocation turns out to be against a global symbol,
11089 there isn't supposed to be a matching LO. */
11090 if (l->fixp->fx_r_type == BFD_RELOC_MIPS_GOT16
11091 && !pic_need_relax (l->fixp->fx_addsy, l->seg))
11092 continue;
11093
11094 /* Check quickly whether the next fixup happens to be a matching %lo. */
11095 if (fixup_has_matching_lo_p (l->fixp))
11096 continue;
11097
11098 seginfo = seg_info (l->seg);
11099
11100 /* Set HI_POS to the position of this relocation in the chain.
11101 Set LO_POS to the position of the chosen low-part relocation.
11102 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
11103 relocation that matches an immediately-preceding high-part
11104 relocation. */
11105 hi_pos = NULL;
11106 lo_pos = NULL;
11107 matched_lo_p = FALSE;
11108 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
11109 {
11110 if (*pos == l->fixp)
11111 hi_pos = pos;
11112
11113 if (((*pos)->fx_r_type == BFD_RELOC_LO16
11114 || (*pos)->fx_r_type == BFD_RELOC_MIPS16_LO16)
11115 && (*pos)->fx_addsy == l->fixp->fx_addsy
11116 && (*pos)->fx_offset >= l->fixp->fx_offset
11117 && (lo_pos == NULL
11118 || (*pos)->fx_offset < (*lo_pos)->fx_offset
11119 || (!matched_lo_p
11120 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
11121 lo_pos = pos;
11122
11123 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
11124 && fixup_has_matching_lo_p (*pos));
11125 }
11126
11127 /* If we found a match, remove the high-part relocation from its
11128 current position and insert it before the low-part relocation.
11129 Make the offsets match so that fixup_has_matching_lo_p()
11130 will return true.
11131
11132 We don't warn about unmatched high-part relocations since some
11133 versions of gcc have been known to emit dead "lui ...%hi(...)"
11134 instructions. */
11135 if (lo_pos != NULL)
11136 {
11137 l->fixp->fx_offset = (*lo_pos)->fx_offset;
11138 if (l->fixp->fx_next != *lo_pos)
11139 {
11140 *hi_pos = l->fixp->fx_next;
11141 l->fixp->fx_next = *lo_pos;
11142 *lo_pos = l->fixp;
11143 }
11144 }
11145 }
11146 }
11147
11148 /* We may have combined relocations without symbols in the N32/N64 ABI.
11149 We have to prevent gas from dropping them. */
11150
11151 int
11152 mips_force_relocation (fixS *fixp)
11153 {
11154 if (generic_force_reloc (fixp))
11155 return 1;
11156
11157 if (HAVE_NEWABI
11158 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
11159 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
11160 || fixp->fx_r_type == BFD_RELOC_HI16_S
11161 || fixp->fx_r_type == BFD_RELOC_LO16))
11162 return 1;
11163
11164 return 0;
11165 }
11166
11167 /* This hook is called before a fix is simplified. We don't really
11168 decide whether to skip a fix here. Rather, we turn global symbols
11169 used as branch targets into local symbols, such that they undergo
11170 simplification. We can only do this if the symbol is defined and
11171 it is in the same section as the branch. If this doesn't hold, we
11172 emit a better error message than just saying the relocation is not
11173 valid for the selected object format.
11174
11175 FIXP is the fix-up we're going to try to simplify, SEG is the
11176 segment in which the fix up occurs. The return value should be
11177 non-zero to indicate the fix-up is valid for further
11178 simplifications. */
11179
11180 int
11181 mips_validate_fix (struct fix *fixP, asection *seg)
11182 {
11183 /* There's a lot of discussion on whether it should be possible to
11184 use R_MIPS_PC16 to represent branch relocations. The outcome
11185 seems to be that it can, but gas/bfd are very broken in creating
11186 RELA relocations for this, so for now we only accept branches to
11187 symbols in the same section. Anything else is of dubious value,
11188 since there's no guarantee that at link time the symbol would be
11189 in range. Even for branches to local symbols this is arguably
11190 wrong, since it we assume the symbol is not going to be
11191 overridden, which should be possible per ELF library semantics,
11192 but then, there isn't a dynamic relocation that could be used to
11193 this effect, and the target would likely be out of range as well.
11194
11195 Unfortunately, it seems that there is too much code out there
11196 that relies on branches to symbols that are global to be resolved
11197 as if they were local, like the IRIX tools do, so we do it as
11198 well, but with a warning so that people are reminded to fix their
11199 code. If we ever get back to using R_MIPS_PC16 for branch
11200 targets, this entire block should go away (and probably the
11201 whole function). */
11202
11203 if (fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
11204 && ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
11205 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
11206 || bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16_PCREL_S2) == NULL)
11207 && fixP->fx_addsy)
11208 {
11209 if (! S_IS_DEFINED (fixP->fx_addsy))
11210 {
11211 as_bad_where (fixP->fx_file, fixP->fx_line,
11212 _("Cannot branch to undefined symbol."));
11213 /* Avoid any further errors about this fixup. */
11214 fixP->fx_done = 1;
11215 }
11216 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
11217 {
11218 as_bad_where (fixP->fx_file, fixP->fx_line,
11219 _("Cannot branch to symbol in another section."));
11220 fixP->fx_done = 1;
11221 }
11222 else if (S_IS_EXTERNAL (fixP->fx_addsy))
11223 {
11224 symbolS *sym = fixP->fx_addsy;
11225
11226 if (mips_pic == SVR4_PIC)
11227 as_warn_where (fixP->fx_file, fixP->fx_line,
11228 _("Pretending global symbol used as branch target is local."));
11229
11230 fixP->fx_addsy = symbol_create (S_GET_NAME (sym),
11231 S_GET_SEGMENT (sym),
11232 S_GET_VALUE (sym),
11233 symbol_get_frag (sym));
11234 copy_symbol_attributes (fixP->fx_addsy, sym);
11235 S_CLEAR_EXTERNAL (fixP->fx_addsy);
11236 assert (symbol_resolved_p (sym));
11237 symbol_mark_resolved (fixP->fx_addsy);
11238 }
11239 }
11240
11241 return 1;
11242 }
11243
11244 /* Apply a fixup to the object file. */
11245
11246 void
11247 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
11248 {
11249 bfd_byte *buf;
11250 long insn;
11251 reloc_howto_type *howto;
11252
11253 /* We ignore generic BFD relocations we don't know about. */
11254 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
11255 if (! howto)
11256 return;
11257
11258 assert (fixP->fx_size == 4
11259 || fixP->fx_r_type == BFD_RELOC_16
11260 || fixP->fx_r_type == BFD_RELOC_64
11261 || fixP->fx_r_type == BFD_RELOC_CTOR
11262 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
11263 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
11264 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY);
11265
11266 buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
11267
11268 assert (! fixP->fx_pcrel);
11269
11270 /* Don't treat parts of a composite relocation as done. There are two
11271 reasons for this:
11272
11273 (1) The second and third parts will be against 0 (RSS_UNDEF) but
11274 should nevertheless be emitted if the first part is.
11275
11276 (2) In normal usage, composite relocations are never assembly-time
11277 constants. The easiest way of dealing with the pathological
11278 exceptions is to generate a relocation against STN_UNDEF and
11279 leave everything up to the linker. */
11280 if (fixP->fx_addsy == NULL && fixP->fx_tcbit == 0)
11281 fixP->fx_done = 1;
11282
11283 switch (fixP->fx_r_type)
11284 {
11285 case BFD_RELOC_MIPS_TLS_GD:
11286 case BFD_RELOC_MIPS_TLS_LDM:
11287 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
11288 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
11289 case BFD_RELOC_MIPS_TLS_GOTTPREL:
11290 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
11291 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
11292 S_SET_THREAD_LOCAL (fixP->fx_addsy);
11293 /* fall through */
11294
11295 case BFD_RELOC_MIPS_JMP:
11296 case BFD_RELOC_MIPS_SHIFT5:
11297 case BFD_RELOC_MIPS_SHIFT6:
11298 case BFD_RELOC_MIPS_GOT_DISP:
11299 case BFD_RELOC_MIPS_GOT_PAGE:
11300 case BFD_RELOC_MIPS_GOT_OFST:
11301 case BFD_RELOC_MIPS_SUB:
11302 case BFD_RELOC_MIPS_INSERT_A:
11303 case BFD_RELOC_MIPS_INSERT_B:
11304 case BFD_RELOC_MIPS_DELETE:
11305 case BFD_RELOC_MIPS_HIGHEST:
11306 case BFD_RELOC_MIPS_HIGHER:
11307 case BFD_RELOC_MIPS_SCN_DISP:
11308 case BFD_RELOC_MIPS_REL16:
11309 case BFD_RELOC_MIPS_RELGOT:
11310 case BFD_RELOC_MIPS_JALR:
11311 case BFD_RELOC_HI16:
11312 case BFD_RELOC_HI16_S:
11313 case BFD_RELOC_GPREL16:
11314 case BFD_RELOC_MIPS_LITERAL:
11315 case BFD_RELOC_MIPS_CALL16:
11316 case BFD_RELOC_MIPS_GOT16:
11317 case BFD_RELOC_GPREL32:
11318 case BFD_RELOC_MIPS_GOT_HI16:
11319 case BFD_RELOC_MIPS_GOT_LO16:
11320 case BFD_RELOC_MIPS_CALL_HI16:
11321 case BFD_RELOC_MIPS_CALL_LO16:
11322 case BFD_RELOC_MIPS16_GPREL:
11323 case BFD_RELOC_MIPS16_HI16:
11324 case BFD_RELOC_MIPS16_HI16_S:
11325 assert (! fixP->fx_pcrel);
11326 /* Nothing needed to do. The value comes from the reloc entry */
11327 break;
11328
11329 case BFD_RELOC_MIPS16_JMP:
11330 /* We currently always generate a reloc against a symbol, which
11331 means that we don't want an addend even if the symbol is
11332 defined. */
11333 *valP = 0;
11334 break;
11335
11336 case BFD_RELOC_64:
11337 /* This is handled like BFD_RELOC_32, but we output a sign
11338 extended value if we are only 32 bits. */
11339 if (fixP->fx_done)
11340 {
11341 if (8 <= sizeof (valueT))
11342 md_number_to_chars ((char *) buf, *valP, 8);
11343 else
11344 {
11345 valueT hiv;
11346
11347 if ((*valP & 0x80000000) != 0)
11348 hiv = 0xffffffff;
11349 else
11350 hiv = 0;
11351 md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)),
11352 *valP, 4);
11353 md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)),
11354 hiv, 4);
11355 }
11356 }
11357 break;
11358
11359 case BFD_RELOC_RVA:
11360 case BFD_RELOC_32:
11361 /* If we are deleting this reloc entry, we must fill in the
11362 value now. This can happen if we have a .word which is not
11363 resolved when it appears but is later defined. */
11364 if (fixP->fx_done)
11365 md_number_to_chars ((char *) buf, *valP, 4);
11366 break;
11367
11368 case BFD_RELOC_16:
11369 /* If we are deleting this reloc entry, we must fill in the
11370 value now. */
11371 if (fixP->fx_done)
11372 md_number_to_chars ((char *) buf, *valP, 2);
11373 break;
11374
11375 case BFD_RELOC_LO16:
11376 case BFD_RELOC_MIPS16_LO16:
11377 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
11378 may be safe to remove, but if so it's not obvious. */
11379 /* When handling an embedded PIC switch statement, we can wind
11380 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
11381 if (fixP->fx_done)
11382 {
11383 if (*valP + 0x8000 > 0xffff)
11384 as_bad_where (fixP->fx_file, fixP->fx_line,
11385 _("relocation overflow"));
11386 if (target_big_endian)
11387 buf += 2;
11388 md_number_to_chars ((char *) buf, *valP, 2);
11389 }
11390 break;
11391
11392 case BFD_RELOC_16_PCREL_S2:
11393 if ((*valP & 0x3) != 0)
11394 as_bad_where (fixP->fx_file, fixP->fx_line,
11395 _("Branch to odd address (%lx)"), (long) *valP);
11396
11397 /*
11398 * We need to save the bits in the instruction since fixup_segment()
11399 * might be deleting the relocation entry (i.e., a branch within
11400 * the current segment).
11401 */
11402 if (! fixP->fx_done)
11403 break;
11404
11405 /* update old instruction data */
11406 if (target_big_endian)
11407 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
11408 else
11409 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
11410
11411 if (*valP + 0x20000 <= 0x3ffff)
11412 {
11413 insn |= (*valP >> 2) & 0xffff;
11414 md_number_to_chars ((char *) buf, insn, 4);
11415 }
11416 else if (mips_pic == NO_PIC
11417 && fixP->fx_done
11418 && fixP->fx_frag->fr_address >= text_section->vma
11419 && (fixP->fx_frag->fr_address
11420 < text_section->vma + bfd_get_section_size (text_section))
11421 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
11422 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
11423 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
11424 {
11425 /* The branch offset is too large. If this is an
11426 unconditional branch, and we are not generating PIC code,
11427 we can convert it to an absolute jump instruction. */
11428 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
11429 insn = 0x0c000000; /* jal */
11430 else
11431 insn = 0x08000000; /* j */
11432 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
11433 fixP->fx_done = 0;
11434 fixP->fx_addsy = section_symbol (text_section);
11435 *valP += md_pcrel_from (fixP);
11436 md_number_to_chars ((char *) buf, insn, 4);
11437 }
11438 else
11439 {
11440 /* If we got here, we have branch-relaxation disabled,
11441 and there's nothing we can do to fix this instruction
11442 without turning it into a longer sequence. */
11443 as_bad_where (fixP->fx_file, fixP->fx_line,
11444 _("Branch out of range"));
11445 }
11446 break;
11447
11448 case BFD_RELOC_VTABLE_INHERIT:
11449 fixP->fx_done = 0;
11450 if (fixP->fx_addsy
11451 && !S_IS_DEFINED (fixP->fx_addsy)
11452 && !S_IS_WEAK (fixP->fx_addsy))
11453 S_SET_WEAK (fixP->fx_addsy);
11454 break;
11455
11456 case BFD_RELOC_VTABLE_ENTRY:
11457 fixP->fx_done = 0;
11458 break;
11459
11460 default:
11461 internalError ();
11462 }
11463
11464 /* Remember value for tc_gen_reloc. */
11465 fixP->fx_addnumber = *valP;
11466 }
11467
11468 static symbolS *
11469 get_symbol (void)
11470 {
11471 int c;
11472 char *name;
11473 symbolS *p;
11474
11475 name = input_line_pointer;
11476 c = get_symbol_end ();
11477 p = (symbolS *) symbol_find_or_make (name);
11478 *input_line_pointer = c;
11479 return p;
11480 }
11481
11482 /* Align the current frag to a given power of two. The MIPS assembler
11483 also automatically adjusts any preceding label. */
11484
11485 static void
11486 mips_align (int to, int fill, symbolS *label)
11487 {
11488 mips_emit_delays ();
11489 frag_align (to, fill, 0);
11490 record_alignment (now_seg, to);
11491 if (label != NULL)
11492 {
11493 assert (S_GET_SEGMENT (label) == now_seg);
11494 symbol_set_frag (label, frag_now);
11495 S_SET_VALUE (label, (valueT) frag_now_fix ());
11496 }
11497 }
11498
11499 /* Align to a given power of two. .align 0 turns off the automatic
11500 alignment used by the data creating pseudo-ops. */
11501
11502 static void
11503 s_align (int x ATTRIBUTE_UNUSED)
11504 {
11505 register int temp;
11506 register long temp_fill;
11507 long max_alignment = 15;
11508
11509 /*
11510
11511 o Note that the assembler pulls down any immediately preceding label
11512 to the aligned address.
11513 o It's not documented but auto alignment is reinstated by
11514 a .align pseudo instruction.
11515 o Note also that after auto alignment is turned off the mips assembler
11516 issues an error on attempt to assemble an improperly aligned data item.
11517 We don't.
11518
11519 */
11520
11521 temp = get_absolute_expression ();
11522 if (temp > max_alignment)
11523 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
11524 else if (temp < 0)
11525 {
11526 as_warn (_("Alignment negative: 0 assumed."));
11527 temp = 0;
11528 }
11529 if (*input_line_pointer == ',')
11530 {
11531 ++input_line_pointer;
11532 temp_fill = get_absolute_expression ();
11533 }
11534 else
11535 temp_fill = 0;
11536 if (temp)
11537 {
11538 auto_align = 1;
11539 mips_align (temp, (int) temp_fill,
11540 insn_labels != NULL ? insn_labels->label : NULL);
11541 }
11542 else
11543 {
11544 auto_align = 0;
11545 }
11546
11547 demand_empty_rest_of_line ();
11548 }
11549
11550 static void
11551 s_change_sec (int sec)
11552 {
11553 segT seg;
11554
11555 #ifdef OBJ_ELF
11556 /* The ELF backend needs to know that we are changing sections, so
11557 that .previous works correctly. We could do something like check
11558 for an obj_section_change_hook macro, but that might be confusing
11559 as it would not be appropriate to use it in the section changing
11560 functions in read.c, since obj-elf.c intercepts those. FIXME:
11561 This should be cleaner, somehow. */
11562 obj_elf_section_change_hook ();
11563 #endif
11564
11565 mips_emit_delays ();
11566 switch (sec)
11567 {
11568 case 't':
11569 s_text (0);
11570 break;
11571 case 'd':
11572 s_data (0);
11573 break;
11574 case 'b':
11575 subseg_set (bss_section, (subsegT) get_absolute_expression ());
11576 demand_empty_rest_of_line ();
11577 break;
11578
11579 case 'r':
11580 seg = subseg_new (RDATA_SECTION_NAME,
11581 (subsegT) get_absolute_expression ());
11582 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11583 {
11584 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
11585 | SEC_READONLY | SEC_RELOC
11586 | SEC_DATA));
11587 if (strcmp (TARGET_OS, "elf") != 0)
11588 record_alignment (seg, 4);
11589 }
11590 demand_empty_rest_of_line ();
11591 break;
11592
11593 case 's':
11594 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
11595 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11596 {
11597 bfd_set_section_flags (stdoutput, seg,
11598 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
11599 if (strcmp (TARGET_OS, "elf") != 0)
11600 record_alignment (seg, 4);
11601 }
11602 demand_empty_rest_of_line ();
11603 break;
11604 }
11605
11606 auto_align = 1;
11607 }
11608
11609 void
11610 s_change_section (int ignore ATTRIBUTE_UNUSED)
11611 {
11612 #ifdef OBJ_ELF
11613 char *section_name;
11614 char c;
11615 char next_c = 0;
11616 int section_type;
11617 int section_flag;
11618 int section_entry_size;
11619 int section_alignment;
11620
11621 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
11622 return;
11623
11624 section_name = input_line_pointer;
11625 c = get_symbol_end ();
11626 if (c)
11627 next_c = *(input_line_pointer + 1);
11628
11629 /* Do we have .section Name<,"flags">? */
11630 if (c != ',' || (c == ',' && next_c == '"'))
11631 {
11632 /* just after name is now '\0'. */
11633 *input_line_pointer = c;
11634 input_line_pointer = section_name;
11635 obj_elf_section (ignore);
11636 return;
11637 }
11638 input_line_pointer++;
11639
11640 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
11641 if (c == ',')
11642 section_type = get_absolute_expression ();
11643 else
11644 section_type = 0;
11645 if (*input_line_pointer++ == ',')
11646 section_flag = get_absolute_expression ();
11647 else
11648 section_flag = 0;
11649 if (*input_line_pointer++ == ',')
11650 section_entry_size = get_absolute_expression ();
11651 else
11652 section_entry_size = 0;
11653 if (*input_line_pointer++ == ',')
11654 section_alignment = get_absolute_expression ();
11655 else
11656 section_alignment = 0;
11657
11658 section_name = xstrdup (section_name);
11659
11660 /* When using the generic form of .section (as implemented by obj-elf.c),
11661 there's no way to set the section type to SHT_MIPS_DWARF. Users have
11662 traditionally had to fall back on the more common @progbits instead.
11663
11664 There's nothing really harmful in this, since bfd will correct
11665 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
11666 means that, for backwards compatibiltiy, the special_section entries
11667 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
11668
11669 Even so, we shouldn't force users of the MIPS .section syntax to
11670 incorrectly label the sections as SHT_PROGBITS. The best compromise
11671 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
11672 generic type-checking code. */
11673 if (section_type == SHT_MIPS_DWARF)
11674 section_type = SHT_PROGBITS;
11675
11676 obj_elf_change_section (section_name, section_type, section_flag,
11677 section_entry_size, 0, 0, 0);
11678
11679 if (now_seg->name != section_name)
11680 free (section_name);
11681 #endif /* OBJ_ELF */
11682 }
11683
11684 void
11685 mips_enable_auto_align (void)
11686 {
11687 auto_align = 1;
11688 }
11689
11690 static void
11691 s_cons (int log_size)
11692 {
11693 symbolS *label;
11694
11695 label = insn_labels != NULL ? insn_labels->label : NULL;
11696 mips_emit_delays ();
11697 if (log_size > 0 && auto_align)
11698 mips_align (log_size, 0, label);
11699 mips_clear_insn_labels ();
11700 cons (1 << log_size);
11701 }
11702
11703 static void
11704 s_float_cons (int type)
11705 {
11706 symbolS *label;
11707
11708 label = insn_labels != NULL ? insn_labels->label : NULL;
11709
11710 mips_emit_delays ();
11711
11712 if (auto_align)
11713 {
11714 if (type == 'd')
11715 mips_align (3, 0, label);
11716 else
11717 mips_align (2, 0, label);
11718 }
11719
11720 mips_clear_insn_labels ();
11721
11722 float_cons (type);
11723 }
11724
11725 /* Handle .globl. We need to override it because on Irix 5 you are
11726 permitted to say
11727 .globl foo .text
11728 where foo is an undefined symbol, to mean that foo should be
11729 considered to be the address of a function. */
11730
11731 static void
11732 s_mips_globl (int x ATTRIBUTE_UNUSED)
11733 {
11734 char *name;
11735 int c;
11736 symbolS *symbolP;
11737 flagword flag;
11738
11739 do
11740 {
11741 name = input_line_pointer;
11742 c = get_symbol_end ();
11743 symbolP = symbol_find_or_make (name);
11744 S_SET_EXTERNAL (symbolP);
11745
11746 *input_line_pointer = c;
11747 SKIP_WHITESPACE ();
11748
11749 /* On Irix 5, every global symbol that is not explicitly labelled as
11750 being a function is apparently labelled as being an object. */
11751 flag = BSF_OBJECT;
11752
11753 if (!is_end_of_line[(unsigned char) *input_line_pointer]
11754 && (*input_line_pointer != ','))
11755 {
11756 char *secname;
11757 asection *sec;
11758
11759 secname = input_line_pointer;
11760 c = get_symbol_end ();
11761 sec = bfd_get_section_by_name (stdoutput, secname);
11762 if (sec == NULL)
11763 as_bad (_("%s: no such section"), secname);
11764 *input_line_pointer = c;
11765
11766 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
11767 flag = BSF_FUNCTION;
11768 }
11769
11770 symbol_get_bfdsym (symbolP)->flags |= flag;
11771
11772 c = *input_line_pointer;
11773 if (c == ',')
11774 {
11775 input_line_pointer++;
11776 SKIP_WHITESPACE ();
11777 if (is_end_of_line[(unsigned char) *input_line_pointer])
11778 c = '\n';
11779 }
11780 }
11781 while (c == ',');
11782
11783 demand_empty_rest_of_line ();
11784 }
11785
11786 static void
11787 s_option (int x ATTRIBUTE_UNUSED)
11788 {
11789 char *opt;
11790 char c;
11791
11792 opt = input_line_pointer;
11793 c = get_symbol_end ();
11794
11795 if (*opt == 'O')
11796 {
11797 /* FIXME: What does this mean? */
11798 }
11799 else if (strncmp (opt, "pic", 3) == 0)
11800 {
11801 int i;
11802
11803 i = atoi (opt + 3);
11804 if (i == 0)
11805 mips_pic = NO_PIC;
11806 else if (i == 2)
11807 {
11808 mips_pic = SVR4_PIC;
11809 mips_abicalls = TRUE;
11810 }
11811 else
11812 as_bad (_(".option pic%d not supported"), i);
11813
11814 if (mips_pic == SVR4_PIC)
11815 {
11816 if (g_switch_seen && g_switch_value != 0)
11817 as_warn (_("-G may not be used with SVR4 PIC code"));
11818 g_switch_value = 0;
11819 bfd_set_gp_size (stdoutput, 0);
11820 }
11821 }
11822 else
11823 as_warn (_("Unrecognized option \"%s\""), opt);
11824
11825 *input_line_pointer = c;
11826 demand_empty_rest_of_line ();
11827 }
11828
11829 /* This structure is used to hold a stack of .set values. */
11830
11831 struct mips_option_stack
11832 {
11833 struct mips_option_stack *next;
11834 struct mips_set_options options;
11835 };
11836
11837 static struct mips_option_stack *mips_opts_stack;
11838
11839 /* Handle the .set pseudo-op. */
11840
11841 static void
11842 s_mipsset (int x ATTRIBUTE_UNUSED)
11843 {
11844 char *name = input_line_pointer, ch;
11845
11846 while (!is_end_of_line[(unsigned char) *input_line_pointer])
11847 ++input_line_pointer;
11848 ch = *input_line_pointer;
11849 *input_line_pointer = '\0';
11850
11851 if (strcmp (name, "reorder") == 0)
11852 {
11853 if (mips_opts.noreorder)
11854 end_noreorder ();
11855 }
11856 else if (strcmp (name, "noreorder") == 0)
11857 {
11858 if (!mips_opts.noreorder)
11859 start_noreorder ();
11860 }
11861 else if (strcmp (name, "at") == 0)
11862 {
11863 mips_opts.noat = 0;
11864 }
11865 else if (strcmp (name, "noat") == 0)
11866 {
11867 mips_opts.noat = 1;
11868 }
11869 else if (strcmp (name, "macro") == 0)
11870 {
11871 mips_opts.warn_about_macros = 0;
11872 }
11873 else if (strcmp (name, "nomacro") == 0)
11874 {
11875 if (mips_opts.noreorder == 0)
11876 as_bad (_("`noreorder' must be set before `nomacro'"));
11877 mips_opts.warn_about_macros = 1;
11878 }
11879 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
11880 {
11881 mips_opts.nomove = 0;
11882 }
11883 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
11884 {
11885 mips_opts.nomove = 1;
11886 }
11887 else if (strcmp (name, "bopt") == 0)
11888 {
11889 mips_opts.nobopt = 0;
11890 }
11891 else if (strcmp (name, "nobopt") == 0)
11892 {
11893 mips_opts.nobopt = 1;
11894 }
11895 else if (strcmp (name, "mips16") == 0
11896 || strcmp (name, "MIPS-16") == 0)
11897 mips_opts.mips16 = 1;
11898 else if (strcmp (name, "nomips16") == 0
11899 || strcmp (name, "noMIPS-16") == 0)
11900 mips_opts.mips16 = 0;
11901 else if (strcmp (name, "mips3d") == 0)
11902 mips_opts.ase_mips3d = 1;
11903 else if (strcmp (name, "nomips3d") == 0)
11904 mips_opts.ase_mips3d = 0;
11905 else if (strcmp (name, "mdmx") == 0)
11906 mips_opts.ase_mdmx = 1;
11907 else if (strcmp (name, "nomdmx") == 0)
11908 mips_opts.ase_mdmx = 0;
11909 else if (strcmp (name, "dsp") == 0)
11910 mips_opts.ase_dsp = 1;
11911 else if (strcmp (name, "nodsp") == 0)
11912 mips_opts.ase_dsp = 0;
11913 else if (strcmp (name, "mt") == 0)
11914 mips_opts.ase_mt = 1;
11915 else if (strcmp (name, "nomt") == 0)
11916 mips_opts.ase_mt = 0;
11917 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
11918 {
11919 int reset = 0;
11920
11921 /* Permit the user to change the ISA and architecture on the fly.
11922 Needless to say, misuse can cause serious problems. */
11923 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
11924 {
11925 reset = 1;
11926 mips_opts.isa = file_mips_isa;
11927 mips_opts.arch = file_mips_arch;
11928 }
11929 else if (strncmp (name, "arch=", 5) == 0)
11930 {
11931 const struct mips_cpu_info *p;
11932
11933 p = mips_parse_cpu("internal use", name + 5);
11934 if (!p)
11935 as_bad (_("unknown architecture %s"), name + 5);
11936 else
11937 {
11938 mips_opts.arch = p->cpu;
11939 mips_opts.isa = p->isa;
11940 }
11941 }
11942 else if (strncmp (name, "mips", 4) == 0)
11943 {
11944 const struct mips_cpu_info *p;
11945
11946 p = mips_parse_cpu("internal use", name);
11947 if (!p)
11948 as_bad (_("unknown ISA level %s"), name + 4);
11949 else
11950 {
11951 mips_opts.arch = p->cpu;
11952 mips_opts.isa = p->isa;
11953 }
11954 }
11955 else
11956 as_bad (_("unknown ISA or architecture %s"), name);
11957
11958 switch (mips_opts.isa)
11959 {
11960 case 0:
11961 break;
11962 case ISA_MIPS1:
11963 case ISA_MIPS2:
11964 case ISA_MIPS32:
11965 case ISA_MIPS32R2:
11966 mips_opts.gp32 = 1;
11967 mips_opts.fp32 = 1;
11968 break;
11969 case ISA_MIPS3:
11970 case ISA_MIPS4:
11971 case ISA_MIPS5:
11972 case ISA_MIPS64:
11973 case ISA_MIPS64R2:
11974 mips_opts.gp32 = 0;
11975 mips_opts.fp32 = 0;
11976 break;
11977 default:
11978 as_bad (_("unknown ISA level %s"), name + 4);
11979 break;
11980 }
11981 if (reset)
11982 {
11983 mips_opts.gp32 = file_mips_gp32;
11984 mips_opts.fp32 = file_mips_fp32;
11985 }
11986 }
11987 else if (strcmp (name, "autoextend") == 0)
11988 mips_opts.noautoextend = 0;
11989 else if (strcmp (name, "noautoextend") == 0)
11990 mips_opts.noautoextend = 1;
11991 else if (strcmp (name, "push") == 0)
11992 {
11993 struct mips_option_stack *s;
11994
11995 s = (struct mips_option_stack *) xmalloc (sizeof *s);
11996 s->next = mips_opts_stack;
11997 s->options = mips_opts;
11998 mips_opts_stack = s;
11999 }
12000 else if (strcmp (name, "pop") == 0)
12001 {
12002 struct mips_option_stack *s;
12003
12004 s = mips_opts_stack;
12005 if (s == NULL)
12006 as_bad (_(".set pop with no .set push"));
12007 else
12008 {
12009 /* If we're changing the reorder mode we need to handle
12010 delay slots correctly. */
12011 if (s->options.noreorder && ! mips_opts.noreorder)
12012 start_noreorder ();
12013 else if (! s->options.noreorder && mips_opts.noreorder)
12014 end_noreorder ();
12015
12016 mips_opts = s->options;
12017 mips_opts_stack = s->next;
12018 free (s);
12019 }
12020 }
12021 else if (strcmp (name, "sym32") == 0)
12022 mips_opts.sym32 = TRUE;
12023 else if (strcmp (name, "nosym32") == 0)
12024 mips_opts.sym32 = FALSE;
12025 else
12026 {
12027 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
12028 }
12029 *input_line_pointer = ch;
12030 demand_empty_rest_of_line ();
12031 }
12032
12033 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
12034 .option pic2. It means to generate SVR4 PIC calls. */
12035
12036 static void
12037 s_abicalls (int ignore ATTRIBUTE_UNUSED)
12038 {
12039 mips_pic = SVR4_PIC;
12040 mips_abicalls = TRUE;
12041
12042 if (g_switch_seen && g_switch_value != 0)
12043 as_warn (_("-G may not be used with SVR4 PIC code"));
12044 g_switch_value = 0;
12045
12046 bfd_set_gp_size (stdoutput, 0);
12047 demand_empty_rest_of_line ();
12048 }
12049
12050 /* Handle the .cpload pseudo-op. This is used when generating SVR4
12051 PIC code. It sets the $gp register for the function based on the
12052 function address, which is in the register named in the argument.
12053 This uses a relocation against _gp_disp, which is handled specially
12054 by the linker. The result is:
12055 lui $gp,%hi(_gp_disp)
12056 addiu $gp,$gp,%lo(_gp_disp)
12057 addu $gp,$gp,.cpload argument
12058 The .cpload argument is normally $25 == $t9.
12059
12060 The -mno-shared option changes this to:
12061 lui $gp,%hi(__gnu_local_gp)
12062 addiu $gp,$gp,%lo(__gnu_local_gp)
12063 and the argument is ignored. This saves an instruction, but the
12064 resulting code is not position independent; it uses an absolute
12065 address for __gnu_local_gp. Thus code assembled with -mno-shared
12066 can go into an ordinary executable, but not into a shared library. */
12067
12068 static void
12069 s_cpload (int ignore ATTRIBUTE_UNUSED)
12070 {
12071 expressionS ex;
12072 int reg;
12073 int in_shared;
12074
12075 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
12076 .cpload is ignored. */
12077 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
12078 {
12079 s_ignore (0);
12080 return;
12081 }
12082
12083 /* .cpload should be in a .set noreorder section. */
12084 if (mips_opts.noreorder == 0)
12085 as_warn (_(".cpload not in noreorder section"));
12086
12087 reg = tc_get_register (0);
12088
12089 /* If we need to produce a 64-bit address, we are better off using
12090 the default instruction sequence. */
12091 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
12092
12093 ex.X_op = O_symbol;
12094 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
12095 "__gnu_local_gp");
12096 ex.X_op_symbol = NULL;
12097 ex.X_add_number = 0;
12098
12099 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
12100 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
12101
12102 macro_start ();
12103 macro_build_lui (&ex, mips_gp_register);
12104 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
12105 mips_gp_register, BFD_RELOC_LO16);
12106 if (in_shared)
12107 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
12108 mips_gp_register, reg);
12109 macro_end ();
12110
12111 demand_empty_rest_of_line ();
12112 }
12113
12114 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
12115 .cpsetup $reg1, offset|$reg2, label
12116
12117 If offset is given, this results in:
12118 sd $gp, offset($sp)
12119 lui $gp, %hi(%neg(%gp_rel(label)))
12120 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
12121 daddu $gp, $gp, $reg1
12122
12123 If $reg2 is given, this results in:
12124 daddu $reg2, $gp, $0
12125 lui $gp, %hi(%neg(%gp_rel(label)))
12126 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
12127 daddu $gp, $gp, $reg1
12128 $reg1 is normally $25 == $t9.
12129
12130 The -mno-shared option replaces the last three instructions with
12131 lui $gp,%hi(_gp)
12132 addiu $gp,$gp,%lo(_gp)
12133 */
12134
12135 static void
12136 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
12137 {
12138 expressionS ex_off;
12139 expressionS ex_sym;
12140 int reg1;
12141
12142 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
12143 We also need NewABI support. */
12144 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12145 {
12146 s_ignore (0);
12147 return;
12148 }
12149
12150 reg1 = tc_get_register (0);
12151 SKIP_WHITESPACE ();
12152 if (*input_line_pointer != ',')
12153 {
12154 as_bad (_("missing argument separator ',' for .cpsetup"));
12155 return;
12156 }
12157 else
12158 ++input_line_pointer;
12159 SKIP_WHITESPACE ();
12160 if (*input_line_pointer == '$')
12161 {
12162 mips_cpreturn_register = tc_get_register (0);
12163 mips_cpreturn_offset = -1;
12164 }
12165 else
12166 {
12167 mips_cpreturn_offset = get_absolute_expression ();
12168 mips_cpreturn_register = -1;
12169 }
12170 SKIP_WHITESPACE ();
12171 if (*input_line_pointer != ',')
12172 {
12173 as_bad (_("missing argument separator ',' for .cpsetup"));
12174 return;
12175 }
12176 else
12177 ++input_line_pointer;
12178 SKIP_WHITESPACE ();
12179 expression (&ex_sym);
12180
12181 macro_start ();
12182 if (mips_cpreturn_register == -1)
12183 {
12184 ex_off.X_op = O_constant;
12185 ex_off.X_add_symbol = NULL;
12186 ex_off.X_op_symbol = NULL;
12187 ex_off.X_add_number = mips_cpreturn_offset;
12188
12189 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
12190 BFD_RELOC_LO16, SP);
12191 }
12192 else
12193 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
12194 mips_gp_register, 0);
12195
12196 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
12197 {
12198 macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
12199 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
12200 BFD_RELOC_HI16_S);
12201
12202 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
12203 mips_gp_register, -1, BFD_RELOC_GPREL16,
12204 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
12205
12206 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
12207 mips_gp_register, reg1);
12208 }
12209 else
12210 {
12211 expressionS ex;
12212
12213 ex.X_op = O_symbol;
12214 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
12215 ex.X_op_symbol = NULL;
12216 ex.X_add_number = 0;
12217
12218 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
12219 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
12220
12221 macro_build_lui (&ex, mips_gp_register);
12222 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
12223 mips_gp_register, BFD_RELOC_LO16);
12224 }
12225
12226 macro_end ();
12227
12228 demand_empty_rest_of_line ();
12229 }
12230
12231 static void
12232 s_cplocal (int ignore ATTRIBUTE_UNUSED)
12233 {
12234 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
12235 .cplocal is ignored. */
12236 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12237 {
12238 s_ignore (0);
12239 return;
12240 }
12241
12242 mips_gp_register = tc_get_register (0);
12243 demand_empty_rest_of_line ();
12244 }
12245
12246 /* Handle the .cprestore pseudo-op. This stores $gp into a given
12247 offset from $sp. The offset is remembered, and after making a PIC
12248 call $gp is restored from that location. */
12249
12250 static void
12251 s_cprestore (int ignore ATTRIBUTE_UNUSED)
12252 {
12253 expressionS ex;
12254
12255 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
12256 .cprestore is ignored. */
12257 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
12258 {
12259 s_ignore (0);
12260 return;
12261 }
12262
12263 mips_cprestore_offset = get_absolute_expression ();
12264 mips_cprestore_valid = 1;
12265
12266 ex.X_op = O_constant;
12267 ex.X_add_symbol = NULL;
12268 ex.X_op_symbol = NULL;
12269 ex.X_add_number = mips_cprestore_offset;
12270
12271 macro_start ();
12272 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
12273 SP, HAVE_64BIT_ADDRESSES);
12274 macro_end ();
12275
12276 demand_empty_rest_of_line ();
12277 }
12278
12279 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
12280 was given in the preceding .cpsetup, it results in:
12281 ld $gp, offset($sp)
12282
12283 If a register $reg2 was given there, it results in:
12284 daddu $gp, $reg2, $0
12285 */
12286 static void
12287 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
12288 {
12289 expressionS ex;
12290
12291 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
12292 We also need NewABI support. */
12293 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12294 {
12295 s_ignore (0);
12296 return;
12297 }
12298
12299 macro_start ();
12300 if (mips_cpreturn_register == -1)
12301 {
12302 ex.X_op = O_constant;
12303 ex.X_add_symbol = NULL;
12304 ex.X_op_symbol = NULL;
12305 ex.X_add_number = mips_cpreturn_offset;
12306
12307 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
12308 }
12309 else
12310 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
12311 mips_cpreturn_register, 0);
12312 macro_end ();
12313
12314 demand_empty_rest_of_line ();
12315 }
12316
12317 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
12318 code. It sets the offset to use in gp_rel relocations. */
12319
12320 static void
12321 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
12322 {
12323 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
12324 We also need NewABI support. */
12325 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12326 {
12327 s_ignore (0);
12328 return;
12329 }
12330
12331 mips_gprel_offset = get_absolute_expression ();
12332
12333 demand_empty_rest_of_line ();
12334 }
12335
12336 /* Handle the .gpword pseudo-op. This is used when generating PIC
12337 code. It generates a 32 bit GP relative reloc. */
12338
12339 static void
12340 s_gpword (int ignore ATTRIBUTE_UNUSED)
12341 {
12342 symbolS *label;
12343 expressionS ex;
12344 char *p;
12345
12346 /* When not generating PIC code, this is treated as .word. */
12347 if (mips_pic != SVR4_PIC)
12348 {
12349 s_cons (2);
12350 return;
12351 }
12352
12353 label = insn_labels != NULL ? insn_labels->label : NULL;
12354 mips_emit_delays ();
12355 if (auto_align)
12356 mips_align (2, 0, label);
12357 mips_clear_insn_labels ();
12358
12359 expression (&ex);
12360
12361 if (ex.X_op != O_symbol || ex.X_add_number != 0)
12362 {
12363 as_bad (_("Unsupported use of .gpword"));
12364 ignore_rest_of_line ();
12365 }
12366
12367 p = frag_more (4);
12368 md_number_to_chars (p, 0, 4);
12369 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
12370 BFD_RELOC_GPREL32);
12371
12372 demand_empty_rest_of_line ();
12373 }
12374
12375 static void
12376 s_gpdword (int ignore ATTRIBUTE_UNUSED)
12377 {
12378 symbolS *label;
12379 expressionS ex;
12380 char *p;
12381
12382 /* When not generating PIC code, this is treated as .dword. */
12383 if (mips_pic != SVR4_PIC)
12384 {
12385 s_cons (3);
12386 return;
12387 }
12388
12389 label = insn_labels != NULL ? insn_labels->label : NULL;
12390 mips_emit_delays ();
12391 if (auto_align)
12392 mips_align (3, 0, label);
12393 mips_clear_insn_labels ();
12394
12395 expression (&ex);
12396
12397 if (ex.X_op != O_symbol || ex.X_add_number != 0)
12398 {
12399 as_bad (_("Unsupported use of .gpdword"));
12400 ignore_rest_of_line ();
12401 }
12402
12403 p = frag_more (8);
12404 md_number_to_chars (p, 0, 8);
12405 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
12406 BFD_RELOC_GPREL32)->fx_tcbit = 1;
12407
12408 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
12409 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
12410 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
12411
12412 demand_empty_rest_of_line ();
12413 }
12414
12415 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
12416 tables in SVR4 PIC code. */
12417
12418 static void
12419 s_cpadd (int ignore ATTRIBUTE_UNUSED)
12420 {
12421 int reg;
12422
12423 /* This is ignored when not generating SVR4 PIC code. */
12424 if (mips_pic != SVR4_PIC)
12425 {
12426 s_ignore (0);
12427 return;
12428 }
12429
12430 /* Add $gp to the register named as an argument. */
12431 macro_start ();
12432 reg = tc_get_register (0);
12433 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
12434 macro_end ();
12435
12436 demand_empty_rest_of_line ();
12437 }
12438
12439 /* Handle the .insn pseudo-op. This marks instruction labels in
12440 mips16 mode. This permits the linker to handle them specially,
12441 such as generating jalx instructions when needed. We also make
12442 them odd for the duration of the assembly, in order to generate the
12443 right sort of code. We will make them even in the adjust_symtab
12444 routine, while leaving them marked. This is convenient for the
12445 debugger and the disassembler. The linker knows to make them odd
12446 again. */
12447
12448 static void
12449 s_insn (int ignore ATTRIBUTE_UNUSED)
12450 {
12451 mips16_mark_labels ();
12452
12453 demand_empty_rest_of_line ();
12454 }
12455
12456 /* Handle a .stabn directive. We need these in order to mark a label
12457 as being a mips16 text label correctly. Sometimes the compiler
12458 will emit a label, followed by a .stabn, and then switch sections.
12459 If the label and .stabn are in mips16 mode, then the label is
12460 really a mips16 text label. */
12461
12462 static void
12463 s_mips_stab (int type)
12464 {
12465 if (type == 'n')
12466 mips16_mark_labels ();
12467
12468 s_stab (type);
12469 }
12470
12471 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.
12472 */
12473
12474 static void
12475 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
12476 {
12477 char *name;
12478 int c;
12479 symbolS *symbolP;
12480 expressionS exp;
12481
12482 name = input_line_pointer;
12483 c = get_symbol_end ();
12484 symbolP = symbol_find_or_make (name);
12485 S_SET_WEAK (symbolP);
12486 *input_line_pointer = c;
12487
12488 SKIP_WHITESPACE ();
12489
12490 if (! is_end_of_line[(unsigned char) *input_line_pointer])
12491 {
12492 if (S_IS_DEFINED (symbolP))
12493 {
12494 as_bad ("ignoring attempt to redefine symbol %s",
12495 S_GET_NAME (symbolP));
12496 ignore_rest_of_line ();
12497 return;
12498 }
12499
12500 if (*input_line_pointer == ',')
12501 {
12502 ++input_line_pointer;
12503 SKIP_WHITESPACE ();
12504 }
12505
12506 expression (&exp);
12507 if (exp.X_op != O_symbol)
12508 {
12509 as_bad ("bad .weakext directive");
12510 ignore_rest_of_line ();
12511 return;
12512 }
12513 symbol_set_value_expression (symbolP, &exp);
12514 }
12515
12516 demand_empty_rest_of_line ();
12517 }
12518
12519 /* Parse a register string into a number. Called from the ECOFF code
12520 to parse .frame. The argument is non-zero if this is the frame
12521 register, so that we can record it in mips_frame_reg. */
12522
12523 int
12524 tc_get_register (int frame)
12525 {
12526 int reg;
12527
12528 SKIP_WHITESPACE ();
12529 if (*input_line_pointer++ != '$')
12530 {
12531 as_warn (_("expected `$'"));
12532 reg = ZERO;
12533 }
12534 else if (ISDIGIT (*input_line_pointer))
12535 {
12536 reg = get_absolute_expression ();
12537 if (reg < 0 || reg >= 32)
12538 {
12539 as_warn (_("Bad register number"));
12540 reg = ZERO;
12541 }
12542 }
12543 else
12544 {
12545 if (strncmp (input_line_pointer, "ra", 2) == 0)
12546 {
12547 reg = RA;
12548 input_line_pointer += 2;
12549 }
12550 else if (strncmp (input_line_pointer, "fp", 2) == 0)
12551 {
12552 reg = FP;
12553 input_line_pointer += 2;
12554 }
12555 else if (strncmp (input_line_pointer, "sp", 2) == 0)
12556 {
12557 reg = SP;
12558 input_line_pointer += 2;
12559 }
12560 else if (strncmp (input_line_pointer, "gp", 2) == 0)
12561 {
12562 reg = GP;
12563 input_line_pointer += 2;
12564 }
12565 else if (strncmp (input_line_pointer, "at", 2) == 0)
12566 {
12567 reg = AT;
12568 input_line_pointer += 2;
12569 }
12570 else if (strncmp (input_line_pointer, "kt0", 3) == 0)
12571 {
12572 reg = KT0;
12573 input_line_pointer += 3;
12574 }
12575 else if (strncmp (input_line_pointer, "kt1", 3) == 0)
12576 {
12577 reg = KT1;
12578 input_line_pointer += 3;
12579 }
12580 else if (strncmp (input_line_pointer, "zero", 4) == 0)
12581 {
12582 reg = ZERO;
12583 input_line_pointer += 4;
12584 }
12585 else
12586 {
12587 as_warn (_("Unrecognized register name"));
12588 reg = ZERO;
12589 while (ISALNUM(*input_line_pointer))
12590 input_line_pointer++;
12591 }
12592 }
12593 if (frame)
12594 {
12595 mips_frame_reg = reg != 0 ? reg : SP;
12596 mips_frame_reg_valid = 1;
12597 mips_cprestore_valid = 0;
12598 }
12599 return reg;
12600 }
12601
12602 valueT
12603 md_section_align (asection *seg, valueT addr)
12604 {
12605 int align = bfd_get_section_alignment (stdoutput, seg);
12606
12607 #ifdef OBJ_ELF
12608 /* We don't need to align ELF sections to the full alignment.
12609 However, Irix 5 may prefer that we align them at least to a 16
12610 byte boundary. We don't bother to align the sections if we are
12611 targeted for an embedded system. */
12612 if (strcmp (TARGET_OS, "elf") == 0)
12613 return addr;
12614 if (align > 4)
12615 align = 4;
12616 #endif
12617
12618 return ((addr + (1 << align) - 1) & (-1 << align));
12619 }
12620
12621 /* Utility routine, called from above as well. If called while the
12622 input file is still being read, it's only an approximation. (For
12623 example, a symbol may later become defined which appeared to be
12624 undefined earlier.) */
12625
12626 static int
12627 nopic_need_relax (symbolS *sym, int before_relaxing)
12628 {
12629 if (sym == 0)
12630 return 0;
12631
12632 if (g_switch_value > 0)
12633 {
12634 const char *symname;
12635 int change;
12636
12637 /* Find out whether this symbol can be referenced off the $gp
12638 register. It can be if it is smaller than the -G size or if
12639 it is in the .sdata or .sbss section. Certain symbols can
12640 not be referenced off the $gp, although it appears as though
12641 they can. */
12642 symname = S_GET_NAME (sym);
12643 if (symname != (const char *) NULL
12644 && (strcmp (symname, "eprol") == 0
12645 || strcmp (symname, "etext") == 0
12646 || strcmp (symname, "_gp") == 0
12647 || strcmp (symname, "edata") == 0
12648 || strcmp (symname, "_fbss") == 0
12649 || strcmp (symname, "_fdata") == 0
12650 || strcmp (symname, "_ftext") == 0
12651 || strcmp (symname, "end") == 0
12652 || strcmp (symname, "_gp_disp") == 0))
12653 change = 1;
12654 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
12655 && (0
12656 #ifndef NO_ECOFF_DEBUGGING
12657 || (symbol_get_obj (sym)->ecoff_extern_size != 0
12658 && (symbol_get_obj (sym)->ecoff_extern_size
12659 <= g_switch_value))
12660 #endif
12661 /* We must defer this decision until after the whole
12662 file has been read, since there might be a .extern
12663 after the first use of this symbol. */
12664 || (before_relaxing
12665 #ifndef NO_ECOFF_DEBUGGING
12666 && symbol_get_obj (sym)->ecoff_extern_size == 0
12667 #endif
12668 && S_GET_VALUE (sym) == 0)
12669 || (S_GET_VALUE (sym) != 0
12670 && S_GET_VALUE (sym) <= g_switch_value)))
12671 change = 0;
12672 else
12673 {
12674 const char *segname;
12675
12676 segname = segment_name (S_GET_SEGMENT (sym));
12677 assert (strcmp (segname, ".lit8") != 0
12678 && strcmp (segname, ".lit4") != 0);
12679 change = (strcmp (segname, ".sdata") != 0
12680 && strcmp (segname, ".sbss") != 0
12681 && strncmp (segname, ".sdata.", 7) != 0
12682 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
12683 }
12684 return change;
12685 }
12686 else
12687 /* We are not optimizing for the $gp register. */
12688 return 1;
12689 }
12690
12691
12692 /* Return true if the given symbol should be considered local for SVR4 PIC. */
12693
12694 static bfd_boolean
12695 pic_need_relax (symbolS *sym, asection *segtype)
12696 {
12697 asection *symsec;
12698 bfd_boolean linkonce;
12699
12700 /* Handle the case of a symbol equated to another symbol. */
12701 while (symbol_equated_reloc_p (sym))
12702 {
12703 symbolS *n;
12704
12705 /* It's possible to get a loop here in a badly written
12706 program. */
12707 n = symbol_get_value_expression (sym)->X_add_symbol;
12708 if (n == sym)
12709 break;
12710 sym = n;
12711 }
12712
12713 symsec = S_GET_SEGMENT (sym);
12714
12715 /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */
12716 linkonce = FALSE;
12717 if (symsec != segtype && ! S_IS_LOCAL (sym))
12718 {
12719 if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
12720 != 0)
12721 linkonce = TRUE;
12722
12723 /* The GNU toolchain uses an extension for ELF: a section
12724 beginning with the magic string .gnu.linkonce is a linkonce
12725 section. */
12726 if (strncmp (segment_name (symsec), ".gnu.linkonce",
12727 sizeof ".gnu.linkonce" - 1) == 0)
12728 linkonce = TRUE;
12729 }
12730
12731 /* This must duplicate the test in adjust_reloc_syms. */
12732 return (symsec != &bfd_und_section
12733 && symsec != &bfd_abs_section
12734 && ! bfd_is_com_section (symsec)
12735 && !linkonce
12736 #ifdef OBJ_ELF
12737 /* A global or weak symbol is treated as external. */
12738 && (OUTPUT_FLAVOR != bfd_target_elf_flavour
12739 || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
12740 #endif
12741 );
12742 }
12743
12744
12745 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
12746 extended opcode. SEC is the section the frag is in. */
12747
12748 static int
12749 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
12750 {
12751 int type;
12752 register const struct mips16_immed_operand *op;
12753 offsetT val;
12754 int mintiny, maxtiny;
12755 segT symsec;
12756 fragS *sym_frag;
12757
12758 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
12759 return 0;
12760 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
12761 return 1;
12762
12763 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
12764 op = mips16_immed_operands;
12765 while (op->type != type)
12766 {
12767 ++op;
12768 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
12769 }
12770
12771 if (op->unsp)
12772 {
12773 if (type == '<' || type == '>' || type == '[' || type == ']')
12774 {
12775 mintiny = 1;
12776 maxtiny = 1 << op->nbits;
12777 }
12778 else
12779 {
12780 mintiny = 0;
12781 maxtiny = (1 << op->nbits) - 1;
12782 }
12783 }
12784 else
12785 {
12786 mintiny = - (1 << (op->nbits - 1));
12787 maxtiny = (1 << (op->nbits - 1)) - 1;
12788 }
12789
12790 sym_frag = symbol_get_frag (fragp->fr_symbol);
12791 val = S_GET_VALUE (fragp->fr_symbol);
12792 symsec = S_GET_SEGMENT (fragp->fr_symbol);
12793
12794 if (op->pcrel)
12795 {
12796 addressT addr;
12797
12798 /* We won't have the section when we are called from
12799 mips_relax_frag. However, we will always have been called
12800 from md_estimate_size_before_relax first. If this is a
12801 branch to a different section, we mark it as such. If SEC is
12802 NULL, and the frag is not marked, then it must be a branch to
12803 the same section. */
12804 if (sec == NULL)
12805 {
12806 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
12807 return 1;
12808 }
12809 else
12810 {
12811 /* Must have been called from md_estimate_size_before_relax. */
12812 if (symsec != sec)
12813 {
12814 fragp->fr_subtype =
12815 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12816
12817 /* FIXME: We should support this, and let the linker
12818 catch branches and loads that are out of range. */
12819 as_bad_where (fragp->fr_file, fragp->fr_line,
12820 _("unsupported PC relative reference to different section"));
12821
12822 return 1;
12823 }
12824 if (fragp != sym_frag && sym_frag->fr_address == 0)
12825 /* Assume non-extended on the first relaxation pass.
12826 The address we have calculated will be bogus if this is
12827 a forward branch to another frag, as the forward frag
12828 will have fr_address == 0. */
12829 return 0;
12830 }
12831
12832 /* In this case, we know for sure that the symbol fragment is in
12833 the same section. If the relax_marker of the symbol fragment
12834 differs from the relax_marker of this fragment, we have not
12835 yet adjusted the symbol fragment fr_address. We want to add
12836 in STRETCH in order to get a better estimate of the address.
12837 This particularly matters because of the shift bits. */
12838 if (stretch != 0
12839 && sym_frag->relax_marker != fragp->relax_marker)
12840 {
12841 fragS *f;
12842
12843 /* Adjust stretch for any alignment frag. Note that if have
12844 been expanding the earlier code, the symbol may be
12845 defined in what appears to be an earlier frag. FIXME:
12846 This doesn't handle the fr_subtype field, which specifies
12847 a maximum number of bytes to skip when doing an
12848 alignment. */
12849 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
12850 {
12851 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
12852 {
12853 if (stretch < 0)
12854 stretch = - ((- stretch)
12855 & ~ ((1 << (int) f->fr_offset) - 1));
12856 else
12857 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
12858 if (stretch == 0)
12859 break;
12860 }
12861 }
12862 if (f != NULL)
12863 val += stretch;
12864 }
12865
12866 addr = fragp->fr_address + fragp->fr_fix;
12867
12868 /* The base address rules are complicated. The base address of
12869 a branch is the following instruction. The base address of a
12870 PC relative load or add is the instruction itself, but if it
12871 is in a delay slot (in which case it can not be extended) use
12872 the address of the instruction whose delay slot it is in. */
12873 if (type == 'p' || type == 'q')
12874 {
12875 addr += 2;
12876
12877 /* If we are currently assuming that this frag should be
12878 extended, then, the current address is two bytes
12879 higher. */
12880 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12881 addr += 2;
12882
12883 /* Ignore the low bit in the target, since it will be set
12884 for a text label. */
12885 if ((val & 1) != 0)
12886 --val;
12887 }
12888 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
12889 addr -= 4;
12890 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
12891 addr -= 2;
12892
12893 val -= addr & ~ ((1 << op->shift) - 1);
12894
12895 /* Branch offsets have an implicit 0 in the lowest bit. */
12896 if (type == 'p' || type == 'q')
12897 val /= 2;
12898
12899 /* If any of the shifted bits are set, we must use an extended
12900 opcode. If the address depends on the size of this
12901 instruction, this can lead to a loop, so we arrange to always
12902 use an extended opcode. We only check this when we are in
12903 the main relaxation loop, when SEC is NULL. */
12904 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
12905 {
12906 fragp->fr_subtype =
12907 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12908 return 1;
12909 }
12910
12911 /* If we are about to mark a frag as extended because the value
12912 is precisely maxtiny + 1, then there is a chance of an
12913 infinite loop as in the following code:
12914 la $4,foo
12915 .skip 1020
12916 .align 2
12917 foo:
12918 In this case when the la is extended, foo is 0x3fc bytes
12919 away, so the la can be shrunk, but then foo is 0x400 away, so
12920 the la must be extended. To avoid this loop, we mark the
12921 frag as extended if it was small, and is about to become
12922 extended with a value of maxtiny + 1. */
12923 if (val == ((maxtiny + 1) << op->shift)
12924 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
12925 && sec == NULL)
12926 {
12927 fragp->fr_subtype =
12928 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12929 return 1;
12930 }
12931 }
12932 else if (symsec != absolute_section && sec != NULL)
12933 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
12934
12935 if ((val & ((1 << op->shift) - 1)) != 0
12936 || val < (mintiny << op->shift)
12937 || val > (maxtiny << op->shift))
12938 return 1;
12939 else
12940 return 0;
12941 }
12942
12943 /* Compute the length of a branch sequence, and adjust the
12944 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
12945 worst-case length is computed, with UPDATE being used to indicate
12946 whether an unconditional (-1), branch-likely (+1) or regular (0)
12947 branch is to be computed. */
12948 static int
12949 relaxed_branch_length (fragS *fragp, asection *sec, int update)
12950 {
12951 bfd_boolean toofar;
12952 int length;
12953
12954 if (fragp
12955 && S_IS_DEFINED (fragp->fr_symbol)
12956 && sec == S_GET_SEGMENT (fragp->fr_symbol))
12957 {
12958 addressT addr;
12959 offsetT val;
12960
12961 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
12962
12963 addr = fragp->fr_address + fragp->fr_fix + 4;
12964
12965 val -= addr;
12966
12967 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
12968 }
12969 else if (fragp)
12970 /* If the symbol is not defined or it's in a different segment,
12971 assume the user knows what's going on and emit a short
12972 branch. */
12973 toofar = FALSE;
12974 else
12975 toofar = TRUE;
12976
12977 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
12978 fragp->fr_subtype
12979 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype),
12980 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
12981 RELAX_BRANCH_LINK (fragp->fr_subtype),
12982 toofar);
12983
12984 length = 4;
12985 if (toofar)
12986 {
12987 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
12988 length += 8;
12989
12990 if (mips_pic != NO_PIC)
12991 {
12992 /* Additional space for PIC loading of target address. */
12993 length += 8;
12994 if (mips_opts.isa == ISA_MIPS1)
12995 /* Additional space for $at-stabilizing nop. */
12996 length += 4;
12997 }
12998
12999 /* If branch is conditional. */
13000 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
13001 length += 8;
13002 }
13003
13004 return length;
13005 }
13006
13007 /* Estimate the size of a frag before relaxing. Unless this is the
13008 mips16, we are not really relaxing here, and the final size is
13009 encoded in the subtype information. For the mips16, we have to
13010 decide whether we are using an extended opcode or not. */
13011
13012 int
13013 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
13014 {
13015 int change;
13016
13017 if (RELAX_BRANCH_P (fragp->fr_subtype))
13018 {
13019
13020 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
13021
13022 return fragp->fr_var;
13023 }
13024
13025 if (RELAX_MIPS16_P (fragp->fr_subtype))
13026 /* We don't want to modify the EXTENDED bit here; it might get us
13027 into infinite loops. We change it only in mips_relax_frag(). */
13028 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
13029
13030 if (mips_pic == NO_PIC)
13031 change = nopic_need_relax (fragp->fr_symbol, 0);
13032 else if (mips_pic == SVR4_PIC)
13033 change = pic_need_relax (fragp->fr_symbol, segtype);
13034 else
13035 abort ();
13036
13037 if (change)
13038 {
13039 fragp->fr_subtype |= RELAX_USE_SECOND;
13040 return -RELAX_FIRST (fragp->fr_subtype);
13041 }
13042 else
13043 return -RELAX_SECOND (fragp->fr_subtype);
13044 }
13045
13046 /* This is called to see whether a reloc against a defined symbol
13047 should be converted into a reloc against a section. */
13048
13049 int
13050 mips_fix_adjustable (fixS *fixp)
13051 {
13052 /* Don't adjust MIPS16 jump relocations, so we don't have to worry
13053 about the format of the offset in the .o file. */
13054 if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)
13055 return 0;
13056
13057 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
13058 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
13059 return 0;
13060
13061 if (fixp->fx_addsy == NULL)
13062 return 1;
13063
13064 /* If symbol SYM is in a mergeable section, relocations of the form
13065 SYM + 0 can usually be made section-relative. The mergeable data
13066 is then identified by the section offset rather than by the symbol.
13067
13068 However, if we're generating REL LO16 relocations, the offset is split
13069 between the LO16 and parterning high part relocation. The linker will
13070 need to recalculate the complete offset in order to correctly identify
13071 the merge data.
13072
13073 The linker has traditionally not looked for the parterning high part
13074 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
13075 placed anywhere. Rather than break backwards compatibility by changing
13076 this, it seems better not to force the issue, and instead keep the
13077 original symbol. This will work with either linker behavior. */
13078 if ((fixp->fx_r_type == BFD_RELOC_LO16
13079 || fixp->fx_r_type == BFD_RELOC_MIPS16_LO16
13080 || reloc_needs_lo_p (fixp->fx_r_type))
13081 && HAVE_IN_PLACE_ADDENDS
13082 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
13083 return 0;
13084
13085 #ifdef OBJ_ELF
13086 /* Don't adjust relocations against mips16 symbols, so that the linker
13087 can find them if it needs to set up a stub. */
13088 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
13089 && S_GET_OTHER (fixp->fx_addsy) == STO_MIPS16
13090 && fixp->fx_subsy == NULL)
13091 return 0;
13092 #endif
13093
13094 return 1;
13095 }
13096
13097 /* Translate internal representation of relocation info to BFD target
13098 format. */
13099
13100 arelent **
13101 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
13102 {
13103 static arelent *retval[4];
13104 arelent *reloc;
13105 bfd_reloc_code_real_type code;
13106
13107 memset (retval, 0, sizeof(retval));
13108 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
13109 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
13110 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
13111 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
13112
13113 assert (! fixp->fx_pcrel);
13114 reloc->addend = fixp->fx_addnumber;
13115
13116 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
13117 entry to be used in the relocation's section offset. */
13118 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
13119 {
13120 reloc->address = reloc->addend;
13121 reloc->addend = 0;
13122 }
13123
13124 code = fixp->fx_r_type;
13125
13126 /* To support a PC relative reloc, we used a Cygnus extension.
13127 We check for that here to make sure that we don't let such a
13128 reloc escape normally. (FIXME: This was formerly used by
13129 embedded-PIC support, but is now used by branch handling in
13130 general. That probably should be fixed.) */
13131 if ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
13132 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
13133 && code == BFD_RELOC_16_PCREL_S2)
13134 reloc->howto = NULL;
13135 else
13136 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
13137
13138 if (reloc->howto == NULL)
13139 {
13140 as_bad_where (fixp->fx_file, fixp->fx_line,
13141 _("Can not represent %s relocation in this object file format"),
13142 bfd_get_reloc_code_name (code));
13143 retval[0] = NULL;
13144 }
13145
13146 return retval;
13147 }
13148
13149 /* Relax a machine dependent frag. This returns the amount by which
13150 the current size of the frag should change. */
13151
13152 int
13153 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
13154 {
13155 if (RELAX_BRANCH_P (fragp->fr_subtype))
13156 {
13157 offsetT old_var = fragp->fr_var;
13158
13159 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
13160
13161 return fragp->fr_var - old_var;
13162 }
13163
13164 if (! RELAX_MIPS16_P (fragp->fr_subtype))
13165 return 0;
13166
13167 if (mips16_extended_frag (fragp, NULL, stretch))
13168 {
13169 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13170 return 0;
13171 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
13172 return 2;
13173 }
13174 else
13175 {
13176 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13177 return 0;
13178 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
13179 return -2;
13180 }
13181
13182 return 0;
13183 }
13184
13185 /* Convert a machine dependent frag. */
13186
13187 void
13188 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
13189 {
13190 if (RELAX_BRANCH_P (fragp->fr_subtype))
13191 {
13192 bfd_byte *buf;
13193 unsigned long insn;
13194 expressionS exp;
13195 fixS *fixp;
13196
13197 buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
13198
13199 if (target_big_endian)
13200 insn = bfd_getb32 (buf);
13201 else
13202 insn = bfd_getl32 (buf);
13203
13204 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
13205 {
13206 /* We generate a fixup instead of applying it right now
13207 because, if there are linker relaxations, we're going to
13208 need the relocations. */
13209 exp.X_op = O_symbol;
13210 exp.X_add_symbol = fragp->fr_symbol;
13211 exp.X_add_number = fragp->fr_offset;
13212
13213 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13214 4, &exp, 1,
13215 BFD_RELOC_16_PCREL_S2);
13216 fixp->fx_file = fragp->fr_file;
13217 fixp->fx_line = fragp->fr_line;
13218
13219 md_number_to_chars ((char *) buf, insn, 4);
13220 buf += 4;
13221 }
13222 else
13223 {
13224 int i;
13225
13226 as_warn_where (fragp->fr_file, fragp->fr_line,
13227 _("relaxed out-of-range branch into a jump"));
13228
13229 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
13230 goto uncond;
13231
13232 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
13233 {
13234 /* Reverse the branch. */
13235 switch ((insn >> 28) & 0xf)
13236 {
13237 case 4:
13238 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
13239 have the condition reversed by tweaking a single
13240 bit, and their opcodes all have 0x4???????. */
13241 assert ((insn & 0xf1000000) == 0x41000000);
13242 insn ^= 0x00010000;
13243 break;
13244
13245 case 0:
13246 /* bltz 0x04000000 bgez 0x04010000
13247 bltzal 0x04100000 bgezal 0x04110000 */
13248 assert ((insn & 0xfc0e0000) == 0x04000000);
13249 insn ^= 0x00010000;
13250 break;
13251
13252 case 1:
13253 /* beq 0x10000000 bne 0x14000000
13254 blez 0x18000000 bgtz 0x1c000000 */
13255 insn ^= 0x04000000;
13256 break;
13257
13258 default:
13259 abort ();
13260 }
13261 }
13262
13263 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
13264 {
13265 /* Clear the and-link bit. */
13266 assert ((insn & 0xfc1c0000) == 0x04100000);
13267
13268 /* bltzal 0x04100000 bgezal 0x04110000
13269 bltzall 0x04120000 bgezall 0x04130000 */
13270 insn &= ~0x00100000;
13271 }
13272
13273 /* Branch over the branch (if the branch was likely) or the
13274 full jump (not likely case). Compute the offset from the
13275 current instruction to branch to. */
13276 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
13277 i = 16;
13278 else
13279 {
13280 /* How many bytes in instructions we've already emitted? */
13281 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
13282 /* How many bytes in instructions from here to the end? */
13283 i = fragp->fr_var - i;
13284 }
13285 /* Convert to instruction count. */
13286 i >>= 2;
13287 /* Branch counts from the next instruction. */
13288 i--;
13289 insn |= i;
13290 /* Branch over the jump. */
13291 md_number_to_chars ((char *) buf, insn, 4);
13292 buf += 4;
13293
13294 /* Nop */
13295 md_number_to_chars ((char *) buf, 0, 4);
13296 buf += 4;
13297
13298 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
13299 {
13300 /* beql $0, $0, 2f */
13301 insn = 0x50000000;
13302 /* Compute the PC offset from the current instruction to
13303 the end of the variable frag. */
13304 /* How many bytes in instructions we've already emitted? */
13305 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
13306 /* How many bytes in instructions from here to the end? */
13307 i = fragp->fr_var - i;
13308 /* Convert to instruction count. */
13309 i >>= 2;
13310 /* Don't decrement i, because we want to branch over the
13311 delay slot. */
13312
13313 insn |= i;
13314 md_number_to_chars ((char *) buf, insn, 4);
13315 buf += 4;
13316
13317 md_number_to_chars ((char *) buf, 0, 4);
13318 buf += 4;
13319 }
13320
13321 uncond:
13322 if (mips_pic == NO_PIC)
13323 {
13324 /* j or jal. */
13325 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
13326 ? 0x0c000000 : 0x08000000);
13327 exp.X_op = O_symbol;
13328 exp.X_add_symbol = fragp->fr_symbol;
13329 exp.X_add_number = fragp->fr_offset;
13330
13331 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13332 4, &exp, 0, BFD_RELOC_MIPS_JMP);
13333 fixp->fx_file = fragp->fr_file;
13334 fixp->fx_line = fragp->fr_line;
13335
13336 md_number_to_chars ((char *) buf, insn, 4);
13337 buf += 4;
13338 }
13339 else
13340 {
13341 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
13342 insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000;
13343 exp.X_op = O_symbol;
13344 exp.X_add_symbol = fragp->fr_symbol;
13345 exp.X_add_number = fragp->fr_offset;
13346
13347 if (fragp->fr_offset)
13348 {
13349 exp.X_add_symbol = make_expr_symbol (&exp);
13350 exp.X_add_number = 0;
13351 }
13352
13353 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13354 4, &exp, 0, BFD_RELOC_MIPS_GOT16);
13355 fixp->fx_file = fragp->fr_file;
13356 fixp->fx_line = fragp->fr_line;
13357
13358 md_number_to_chars ((char *) buf, insn, 4);
13359 buf += 4;
13360
13361 if (mips_opts.isa == ISA_MIPS1)
13362 {
13363 /* nop */
13364 md_number_to_chars ((char *) buf, 0, 4);
13365 buf += 4;
13366 }
13367
13368 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
13369 insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000;
13370
13371 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13372 4, &exp, 0, BFD_RELOC_LO16);
13373 fixp->fx_file = fragp->fr_file;
13374 fixp->fx_line = fragp->fr_line;
13375
13376 md_number_to_chars ((char *) buf, insn, 4);
13377 buf += 4;
13378
13379 /* j(al)r $at. */
13380 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
13381 insn = 0x0020f809;
13382 else
13383 insn = 0x00200008;
13384
13385 md_number_to_chars ((char *) buf, insn, 4);
13386 buf += 4;
13387 }
13388 }
13389
13390 assert (buf == (bfd_byte *)fragp->fr_literal
13391 + fragp->fr_fix + fragp->fr_var);
13392
13393 fragp->fr_fix += fragp->fr_var;
13394
13395 return;
13396 }
13397
13398 if (RELAX_MIPS16_P (fragp->fr_subtype))
13399 {
13400 int type;
13401 register const struct mips16_immed_operand *op;
13402 bfd_boolean small, ext;
13403 offsetT val;
13404 bfd_byte *buf;
13405 unsigned long insn;
13406 bfd_boolean use_extend;
13407 unsigned short extend;
13408
13409 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
13410 op = mips16_immed_operands;
13411 while (op->type != type)
13412 ++op;
13413
13414 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13415 {
13416 small = FALSE;
13417 ext = TRUE;
13418 }
13419 else
13420 {
13421 small = TRUE;
13422 ext = FALSE;
13423 }
13424
13425 resolve_symbol_value (fragp->fr_symbol);
13426 val = S_GET_VALUE (fragp->fr_symbol);
13427 if (op->pcrel)
13428 {
13429 addressT addr;
13430
13431 addr = fragp->fr_address + fragp->fr_fix;
13432
13433 /* The rules for the base address of a PC relative reloc are
13434 complicated; see mips16_extended_frag. */
13435 if (type == 'p' || type == 'q')
13436 {
13437 addr += 2;
13438 if (ext)
13439 addr += 2;
13440 /* Ignore the low bit in the target, since it will be
13441 set for a text label. */
13442 if ((val & 1) != 0)
13443 --val;
13444 }
13445 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
13446 addr -= 4;
13447 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
13448 addr -= 2;
13449
13450 addr &= ~ (addressT) ((1 << op->shift) - 1);
13451 val -= addr;
13452
13453 /* Make sure the section winds up with the alignment we have
13454 assumed. */
13455 if (op->shift > 0)
13456 record_alignment (asec, op->shift);
13457 }
13458
13459 if (ext
13460 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
13461 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
13462 as_warn_where (fragp->fr_file, fragp->fr_line,
13463 _("extended instruction in delay slot"));
13464
13465 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
13466
13467 if (target_big_endian)
13468 insn = bfd_getb16 (buf);
13469 else
13470 insn = bfd_getl16 (buf);
13471
13472 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
13473 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
13474 small, ext, &insn, &use_extend, &extend);
13475
13476 if (use_extend)
13477 {
13478 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
13479 fragp->fr_fix += 2;
13480 buf += 2;
13481 }
13482
13483 md_number_to_chars ((char *) buf, insn, 2);
13484 fragp->fr_fix += 2;
13485 buf += 2;
13486 }
13487 else
13488 {
13489 int first, second;
13490 fixS *fixp;
13491
13492 first = RELAX_FIRST (fragp->fr_subtype);
13493 second = RELAX_SECOND (fragp->fr_subtype);
13494 fixp = (fixS *) fragp->fr_opcode;
13495
13496 /* Possibly emit a warning if we've chosen the longer option. */
13497 if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
13498 == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
13499 {
13500 const char *msg = macro_warning (fragp->fr_subtype);
13501 if (msg != 0)
13502 as_warn_where (fragp->fr_file, fragp->fr_line, msg);
13503 }
13504
13505 /* Go through all the fixups for the first sequence. Disable them
13506 (by marking them as done) if we're going to use the second
13507 sequence instead. */
13508 while (fixp
13509 && fixp->fx_frag == fragp
13510 && fixp->fx_where < fragp->fr_fix - second)
13511 {
13512 if (fragp->fr_subtype & RELAX_USE_SECOND)
13513 fixp->fx_done = 1;
13514 fixp = fixp->fx_next;
13515 }
13516
13517 /* Go through the fixups for the second sequence. Disable them if
13518 we're going to use the first sequence, otherwise adjust their
13519 addresses to account for the relaxation. */
13520 while (fixp && fixp->fx_frag == fragp)
13521 {
13522 if (fragp->fr_subtype & RELAX_USE_SECOND)
13523 fixp->fx_where -= first;
13524 else
13525 fixp->fx_done = 1;
13526 fixp = fixp->fx_next;
13527 }
13528
13529 /* Now modify the frag contents. */
13530 if (fragp->fr_subtype & RELAX_USE_SECOND)
13531 {
13532 char *start;
13533
13534 start = fragp->fr_literal + fragp->fr_fix - first - second;
13535 memmove (start, start + first, second);
13536 fragp->fr_fix -= first;
13537 }
13538 else
13539 fragp->fr_fix -= second;
13540 }
13541 }
13542
13543 #ifdef OBJ_ELF
13544
13545 /* This function is called after the relocs have been generated.
13546 We've been storing mips16 text labels as odd. Here we convert them
13547 back to even for the convenience of the debugger. */
13548
13549 void
13550 mips_frob_file_after_relocs (void)
13551 {
13552 asymbol **syms;
13553 unsigned int count, i;
13554
13555 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
13556 return;
13557
13558 syms = bfd_get_outsymbols (stdoutput);
13559 count = bfd_get_symcount (stdoutput);
13560 for (i = 0; i < count; i++, syms++)
13561 {
13562 if (elf_symbol (*syms)->internal_elf_sym.st_other == STO_MIPS16
13563 && ((*syms)->value & 1) != 0)
13564 {
13565 (*syms)->value &= ~1;
13566 /* If the symbol has an odd size, it was probably computed
13567 incorrectly, so adjust that as well. */
13568 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
13569 ++elf_symbol (*syms)->internal_elf_sym.st_size;
13570 }
13571 }
13572 }
13573
13574 #endif
13575
13576 /* This function is called whenever a label is defined. It is used
13577 when handling branch delays; if a branch has a label, we assume we
13578 can not move it. */
13579
13580 void
13581 mips_define_label (symbolS *sym)
13582 {
13583 struct insn_label_list *l;
13584
13585 if (free_insn_labels == NULL)
13586 l = (struct insn_label_list *) xmalloc (sizeof *l);
13587 else
13588 {
13589 l = free_insn_labels;
13590 free_insn_labels = l->next;
13591 }
13592
13593 l->label = sym;
13594 l->next = insn_labels;
13595 insn_labels = l;
13596
13597 #ifdef OBJ_ELF
13598 dwarf2_emit_label (sym);
13599 #endif
13600 }
13601 \f
13602 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13603
13604 /* Some special processing for a MIPS ELF file. */
13605
13606 void
13607 mips_elf_final_processing (void)
13608 {
13609 /* Write out the register information. */
13610 if (mips_abi != N64_ABI)
13611 {
13612 Elf32_RegInfo s;
13613
13614 s.ri_gprmask = mips_gprmask;
13615 s.ri_cprmask[0] = mips_cprmask[0];
13616 s.ri_cprmask[1] = mips_cprmask[1];
13617 s.ri_cprmask[2] = mips_cprmask[2];
13618 s.ri_cprmask[3] = mips_cprmask[3];
13619 /* The gp_value field is set by the MIPS ELF backend. */
13620
13621 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
13622 ((Elf32_External_RegInfo *)
13623 mips_regmask_frag));
13624 }
13625 else
13626 {
13627 Elf64_Internal_RegInfo s;
13628
13629 s.ri_gprmask = mips_gprmask;
13630 s.ri_pad = 0;
13631 s.ri_cprmask[0] = mips_cprmask[0];
13632 s.ri_cprmask[1] = mips_cprmask[1];
13633 s.ri_cprmask[2] = mips_cprmask[2];
13634 s.ri_cprmask[3] = mips_cprmask[3];
13635 /* The gp_value field is set by the MIPS ELF backend. */
13636
13637 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
13638 ((Elf64_External_RegInfo *)
13639 mips_regmask_frag));
13640 }
13641
13642 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
13643 sort of BFD interface for this. */
13644 if (mips_any_noreorder)
13645 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
13646 if (mips_pic != NO_PIC)
13647 {
13648 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
13649 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
13650 }
13651 if (mips_abicalls)
13652 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
13653
13654 /* Set MIPS ELF flags for ASEs. */
13655 /* We may need to define a new flag for DSP ASE, and set this flag when
13656 file_ase_dsp is true. */
13657 /* We may need to define a new flag for MT ASE, and set this flag when
13658 file_ase_mt is true. */
13659 if (file_ase_mips16)
13660 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
13661 #if 0 /* XXX FIXME */
13662 if (file_ase_mips3d)
13663 elf_elfheader (stdoutput)->e_flags |= ???;
13664 #endif
13665 if (file_ase_mdmx)
13666 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
13667
13668 /* Set the MIPS ELF ABI flags. */
13669 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
13670 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
13671 else if (mips_abi == O64_ABI)
13672 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
13673 else if (mips_abi == EABI_ABI)
13674 {
13675 if (!file_mips_gp32)
13676 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
13677 else
13678 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
13679 }
13680 else if (mips_abi == N32_ABI)
13681 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
13682
13683 /* Nothing to do for N64_ABI. */
13684
13685 if (mips_32bitmode)
13686 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
13687 }
13688
13689 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
13690 \f
13691 typedef struct proc {
13692 symbolS *func_sym;
13693 symbolS *func_end_sym;
13694 unsigned long reg_mask;
13695 unsigned long reg_offset;
13696 unsigned long fpreg_mask;
13697 unsigned long fpreg_offset;
13698 unsigned long frame_offset;
13699 unsigned long frame_reg;
13700 unsigned long pc_reg;
13701 } procS;
13702
13703 static procS cur_proc;
13704 static procS *cur_proc_ptr;
13705 static int numprocs;
13706
13707 /* Fill in an rs_align_code fragment. */
13708
13709 void
13710 mips_handle_align (fragS *fragp)
13711 {
13712 if (fragp->fr_type != rs_align_code)
13713 return;
13714
13715 if (mips_opts.mips16)
13716 {
13717 static const unsigned char be_nop[] = { 0x65, 0x00 };
13718 static const unsigned char le_nop[] = { 0x00, 0x65 };
13719
13720 int bytes;
13721 char *p;
13722
13723 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
13724 p = fragp->fr_literal + fragp->fr_fix;
13725
13726 if (bytes & 1)
13727 {
13728 *p++ = 0;
13729 fragp->fr_fix++;
13730 }
13731
13732 memcpy (p, (target_big_endian ? be_nop : le_nop), 2);
13733 fragp->fr_var = 2;
13734 }
13735
13736 /* For mips32, a nop is a zero, which we trivially get by doing nothing. */
13737 }
13738
13739 static void
13740 md_obj_begin (void)
13741 {
13742 }
13743
13744 static void
13745 md_obj_end (void)
13746 {
13747 /* check for premature end, nesting errors, etc */
13748 if (cur_proc_ptr)
13749 as_warn (_("missing .end at end of assembly"));
13750 }
13751
13752 static long
13753 get_number (void)
13754 {
13755 int negative = 0;
13756 long val = 0;
13757
13758 if (*input_line_pointer == '-')
13759 {
13760 ++input_line_pointer;
13761 negative = 1;
13762 }
13763 if (!ISDIGIT (*input_line_pointer))
13764 as_bad (_("expected simple number"));
13765 if (input_line_pointer[0] == '0')
13766 {
13767 if (input_line_pointer[1] == 'x')
13768 {
13769 input_line_pointer += 2;
13770 while (ISXDIGIT (*input_line_pointer))
13771 {
13772 val <<= 4;
13773 val |= hex_value (*input_line_pointer++);
13774 }
13775 return negative ? -val : val;
13776 }
13777 else
13778 {
13779 ++input_line_pointer;
13780 while (ISDIGIT (*input_line_pointer))
13781 {
13782 val <<= 3;
13783 val |= *input_line_pointer++ - '0';
13784 }
13785 return negative ? -val : val;
13786 }
13787 }
13788 if (!ISDIGIT (*input_line_pointer))
13789 {
13790 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
13791 *input_line_pointer, *input_line_pointer);
13792 as_warn (_("invalid number"));
13793 return -1;
13794 }
13795 while (ISDIGIT (*input_line_pointer))
13796 {
13797 val *= 10;
13798 val += *input_line_pointer++ - '0';
13799 }
13800 return negative ? -val : val;
13801 }
13802
13803 /* The .file directive; just like the usual .file directive, but there
13804 is an initial number which is the ECOFF file index. In the non-ECOFF
13805 case .file implies DWARF-2. */
13806
13807 static void
13808 s_mips_file (int x ATTRIBUTE_UNUSED)
13809 {
13810 static int first_file_directive = 0;
13811
13812 if (ECOFF_DEBUGGING)
13813 {
13814 get_number ();
13815 s_app_file (0);
13816 }
13817 else
13818 {
13819 char *filename;
13820
13821 filename = dwarf2_directive_file (0);
13822
13823 /* Versions of GCC up to 3.1 start files with a ".file"
13824 directive even for stabs output. Make sure that this
13825 ".file" is handled. Note that you need a version of GCC
13826 after 3.1 in order to support DWARF-2 on MIPS. */
13827 if (filename != NULL && ! first_file_directive)
13828 {
13829 (void) new_logical_line (filename, -1);
13830 s_app_file_string (filename, 0);
13831 }
13832 first_file_directive = 1;
13833 }
13834 }
13835
13836 /* The .loc directive, implying DWARF-2. */
13837
13838 static void
13839 s_mips_loc (int x ATTRIBUTE_UNUSED)
13840 {
13841 if (!ECOFF_DEBUGGING)
13842 dwarf2_directive_loc (0);
13843 }
13844
13845 /* The .end directive. */
13846
13847 static void
13848 s_mips_end (int x ATTRIBUTE_UNUSED)
13849 {
13850 symbolS *p;
13851
13852 /* Following functions need their own .frame and .cprestore directives. */
13853 mips_frame_reg_valid = 0;
13854 mips_cprestore_valid = 0;
13855
13856 if (!is_end_of_line[(unsigned char) *input_line_pointer])
13857 {
13858 p = get_symbol ();
13859 demand_empty_rest_of_line ();
13860 }
13861 else
13862 p = NULL;
13863
13864 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
13865 as_warn (_(".end not in text section"));
13866
13867 if (!cur_proc_ptr)
13868 {
13869 as_warn (_(".end directive without a preceding .ent directive."));
13870 demand_empty_rest_of_line ();
13871 return;
13872 }
13873
13874 if (p != NULL)
13875 {
13876 assert (S_GET_NAME (p));
13877 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
13878 as_warn (_(".end symbol does not match .ent symbol."));
13879
13880 if (debug_type == DEBUG_STABS)
13881 stabs_generate_asm_endfunc (S_GET_NAME (p),
13882 S_GET_NAME (p));
13883 }
13884 else
13885 as_warn (_(".end directive missing or unknown symbol"));
13886
13887 #ifdef OBJ_ELF
13888 /* Create an expression to calculate the size of the function. */
13889 if (p && cur_proc_ptr)
13890 {
13891 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
13892 expressionS *exp = xmalloc (sizeof (expressionS));
13893
13894 obj->size = exp;
13895 exp->X_op = O_subtract;
13896 exp->X_add_symbol = symbol_temp_new_now ();
13897 exp->X_op_symbol = p;
13898 exp->X_add_number = 0;
13899
13900 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
13901 }
13902
13903 /* Generate a .pdr section. */
13904 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING
13905 && mips_flag_pdr)
13906 {
13907 segT saved_seg = now_seg;
13908 subsegT saved_subseg = now_subseg;
13909 valueT dot;
13910 expressionS exp;
13911 char *fragp;
13912
13913 dot = frag_now_fix ();
13914
13915 #ifdef md_flush_pending_output
13916 md_flush_pending_output ();
13917 #endif
13918
13919 assert (pdr_seg);
13920 subseg_set (pdr_seg, 0);
13921
13922 /* Write the symbol. */
13923 exp.X_op = O_symbol;
13924 exp.X_add_symbol = p;
13925 exp.X_add_number = 0;
13926 emit_expr (&exp, 4);
13927
13928 fragp = frag_more (7 * 4);
13929
13930 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
13931 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
13932 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
13933 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
13934 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
13935 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
13936 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
13937
13938 subseg_set (saved_seg, saved_subseg);
13939 }
13940 #endif /* OBJ_ELF */
13941
13942 cur_proc_ptr = NULL;
13943 }
13944
13945 /* The .aent and .ent directives. */
13946
13947 static void
13948 s_mips_ent (int aent)
13949 {
13950 symbolS *symbolP;
13951
13952 symbolP = get_symbol ();
13953 if (*input_line_pointer == ',')
13954 ++input_line_pointer;
13955 SKIP_WHITESPACE ();
13956 if (ISDIGIT (*input_line_pointer)
13957 || *input_line_pointer == '-')
13958 get_number ();
13959
13960 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
13961 as_warn (_(".ent or .aent not in text section."));
13962
13963 if (!aent && cur_proc_ptr)
13964 as_warn (_("missing .end"));
13965
13966 if (!aent)
13967 {
13968 /* This function needs its own .frame and .cprestore directives. */
13969 mips_frame_reg_valid = 0;
13970 mips_cprestore_valid = 0;
13971
13972 cur_proc_ptr = &cur_proc;
13973 memset (cur_proc_ptr, '\0', sizeof (procS));
13974
13975 cur_proc_ptr->func_sym = symbolP;
13976
13977 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
13978
13979 ++numprocs;
13980
13981 if (debug_type == DEBUG_STABS)
13982 stabs_generate_asm_func (S_GET_NAME (symbolP),
13983 S_GET_NAME (symbolP));
13984 }
13985
13986 demand_empty_rest_of_line ();
13987 }
13988
13989 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
13990 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
13991 s_mips_frame is used so that we can set the PDR information correctly.
13992 We can't use the ecoff routines because they make reference to the ecoff
13993 symbol table (in the mdebug section). */
13994
13995 static void
13996 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
13997 {
13998 #ifdef OBJ_ELF
13999 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
14000 {
14001 long val;
14002
14003 if (cur_proc_ptr == (procS *) NULL)
14004 {
14005 as_warn (_(".frame outside of .ent"));
14006 demand_empty_rest_of_line ();
14007 return;
14008 }
14009
14010 cur_proc_ptr->frame_reg = tc_get_register (1);
14011
14012 SKIP_WHITESPACE ();
14013 if (*input_line_pointer++ != ','
14014 || get_absolute_expression_and_terminator (&val) != ',')
14015 {
14016 as_warn (_("Bad .frame directive"));
14017 --input_line_pointer;
14018 demand_empty_rest_of_line ();
14019 return;
14020 }
14021
14022 cur_proc_ptr->frame_offset = val;
14023 cur_proc_ptr->pc_reg = tc_get_register (0);
14024
14025 demand_empty_rest_of_line ();
14026 }
14027 else
14028 #endif /* OBJ_ELF */
14029 s_ignore (ignore);
14030 }
14031
14032 /* The .fmask and .mask directives. If the mdebug section is present
14033 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
14034 embedded targets, s_mips_mask is used so that we can set the PDR
14035 information correctly. We can't use the ecoff routines because they
14036 make reference to the ecoff symbol table (in the mdebug section). */
14037
14038 static void
14039 s_mips_mask (int reg_type)
14040 {
14041 #ifdef OBJ_ELF
14042 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
14043 {
14044 long mask, off;
14045
14046 if (cur_proc_ptr == (procS *) NULL)
14047 {
14048 as_warn (_(".mask/.fmask outside of .ent"));
14049 demand_empty_rest_of_line ();
14050 return;
14051 }
14052
14053 if (get_absolute_expression_and_terminator (&mask) != ',')
14054 {
14055 as_warn (_("Bad .mask/.fmask directive"));
14056 --input_line_pointer;
14057 demand_empty_rest_of_line ();
14058 return;
14059 }
14060
14061 off = get_absolute_expression ();
14062
14063 if (reg_type == 'F')
14064 {
14065 cur_proc_ptr->fpreg_mask = mask;
14066 cur_proc_ptr->fpreg_offset = off;
14067 }
14068 else
14069 {
14070 cur_proc_ptr->reg_mask = mask;
14071 cur_proc_ptr->reg_offset = off;
14072 }
14073
14074 demand_empty_rest_of_line ();
14075 }
14076 else
14077 #endif /* OBJ_ELF */
14078 s_ignore (reg_type);
14079 }
14080
14081 /* A table describing all the processors gas knows about. Names are
14082 matched in the order listed.
14083
14084 To ease comparison, please keep this table in the same order as
14085 gcc's mips_cpu_info_table[]. */
14086 static const struct mips_cpu_info mips_cpu_info_table[] =
14087 {
14088 /* Entries for generic ISAs */
14089 { "mips1", 1, ISA_MIPS1, CPU_R3000 },
14090 { "mips2", 1, ISA_MIPS2, CPU_R6000 },
14091 { "mips3", 1, ISA_MIPS3, CPU_R4000 },
14092 { "mips4", 1, ISA_MIPS4, CPU_R8000 },
14093 { "mips5", 1, ISA_MIPS5, CPU_MIPS5 },
14094 { "mips32", 1, ISA_MIPS32, CPU_MIPS32 },
14095 { "mips32r2", 1, ISA_MIPS32R2, CPU_MIPS32R2 },
14096 { "mips64", 1, ISA_MIPS64, CPU_MIPS64 },
14097 { "mips64r2", 1, ISA_MIPS64R2, CPU_MIPS64R2 },
14098
14099 /* MIPS I */
14100 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
14101 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
14102 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
14103
14104 /* MIPS II */
14105 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
14106
14107 /* MIPS III */
14108 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
14109 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
14110 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
14111 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
14112 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
14113 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
14114 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
14115 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
14116 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
14117 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
14118 { "orion", 0, ISA_MIPS3, CPU_R4600 },
14119 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
14120
14121 /* MIPS IV */
14122 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
14123 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
14124 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
14125 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
14126 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
14127 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
14128 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
14129 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
14130 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
14131 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
14132 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
14133 { "rm7000", 0, ISA_MIPS4, CPU_RM7000 },
14134 { "rm9000", 0, ISA_MIPS4, CPU_RM9000 },
14135
14136 /* MIPS 32 */
14137 { "4kc", 0, ISA_MIPS32, CPU_MIPS32 },
14138 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
14139 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
14140
14141 /* MIPS32 Release 2 */
14142 { "m4k", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
14143 { "24k", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
14144 { "24kc", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
14145 { "24kf", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
14146 { "24kx", 0, ISA_MIPS32R2, CPU_MIPS32R2 },
14147
14148 /* MIPS 64 */
14149 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
14150 { "5kf", 0, ISA_MIPS64, CPU_MIPS64 },
14151 { "20kc", 0, ISA_MIPS64, CPU_MIPS64 },
14152
14153 /* Broadcom SB-1 CPU core */
14154 { "sb1", 0, ISA_MIPS64, CPU_SB1 },
14155
14156 /* End marker */
14157 { NULL, 0, 0, 0 }
14158 };
14159
14160
14161 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
14162 with a final "000" replaced by "k". Ignore case.
14163
14164 Note: this function is shared between GCC and GAS. */
14165
14166 static bfd_boolean
14167 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
14168 {
14169 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
14170 given++, canonical++;
14171
14172 return ((*given == 0 && *canonical == 0)
14173 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
14174 }
14175
14176
14177 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
14178 CPU name. We've traditionally allowed a lot of variation here.
14179
14180 Note: this function is shared between GCC and GAS. */
14181
14182 static bfd_boolean
14183 mips_matching_cpu_name_p (const char *canonical, const char *given)
14184 {
14185 /* First see if the name matches exactly, or with a final "000"
14186 turned into "k". */
14187 if (mips_strict_matching_cpu_name_p (canonical, given))
14188 return TRUE;
14189
14190 /* If not, try comparing based on numerical designation alone.
14191 See if GIVEN is an unadorned number, or 'r' followed by a number. */
14192 if (TOLOWER (*given) == 'r')
14193 given++;
14194 if (!ISDIGIT (*given))
14195 return FALSE;
14196
14197 /* Skip over some well-known prefixes in the canonical name,
14198 hoping to find a number there too. */
14199 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
14200 canonical += 2;
14201 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
14202 canonical += 2;
14203 else if (TOLOWER (canonical[0]) == 'r')
14204 canonical += 1;
14205
14206 return mips_strict_matching_cpu_name_p (canonical, given);
14207 }
14208
14209
14210 /* Parse an option that takes the name of a processor as its argument.
14211 OPTION is the name of the option and CPU_STRING is the argument.
14212 Return the corresponding processor enumeration if the CPU_STRING is
14213 recognized, otherwise report an error and return null.
14214
14215 A similar function exists in GCC. */
14216
14217 static const struct mips_cpu_info *
14218 mips_parse_cpu (const char *option, const char *cpu_string)
14219 {
14220 const struct mips_cpu_info *p;
14221
14222 /* 'from-abi' selects the most compatible architecture for the given
14223 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
14224 EABIs, we have to decide whether we're using the 32-bit or 64-bit
14225 version. Look first at the -mgp options, if given, otherwise base
14226 the choice on MIPS_DEFAULT_64BIT.
14227
14228 Treat NO_ABI like the EABIs. One reason to do this is that the
14229 plain 'mips' and 'mips64' configs have 'from-abi' as their default
14230 architecture. This code picks MIPS I for 'mips' and MIPS III for
14231 'mips64', just as we did in the days before 'from-abi'. */
14232 if (strcasecmp (cpu_string, "from-abi") == 0)
14233 {
14234 if (ABI_NEEDS_32BIT_REGS (mips_abi))
14235 return mips_cpu_info_from_isa (ISA_MIPS1);
14236
14237 if (ABI_NEEDS_64BIT_REGS (mips_abi))
14238 return mips_cpu_info_from_isa (ISA_MIPS3);
14239
14240 if (file_mips_gp32 >= 0)
14241 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
14242
14243 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
14244 ? ISA_MIPS3
14245 : ISA_MIPS1);
14246 }
14247
14248 /* 'default' has traditionally been a no-op. Probably not very useful. */
14249 if (strcasecmp (cpu_string, "default") == 0)
14250 return 0;
14251
14252 for (p = mips_cpu_info_table; p->name != 0; p++)
14253 if (mips_matching_cpu_name_p (p->name, cpu_string))
14254 return p;
14255
14256 as_bad ("Bad value (%s) for %s", cpu_string, option);
14257 return 0;
14258 }
14259
14260 /* Return the canonical processor information for ISA (a member of the
14261 ISA_MIPS* enumeration). */
14262
14263 static const struct mips_cpu_info *
14264 mips_cpu_info_from_isa (int isa)
14265 {
14266 int i;
14267
14268 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
14269 if (mips_cpu_info_table[i].is_isa
14270 && isa == mips_cpu_info_table[i].isa)
14271 return (&mips_cpu_info_table[i]);
14272
14273 return NULL;
14274 }
14275
14276 static const struct mips_cpu_info *
14277 mips_cpu_info_from_arch (int arch)
14278 {
14279 int i;
14280
14281 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
14282 if (arch == mips_cpu_info_table[i].cpu)
14283 return (&mips_cpu_info_table[i]);
14284
14285 return NULL;
14286 }
14287 \f
14288 static void
14289 show (FILE *stream, const char *string, int *col_p, int *first_p)
14290 {
14291 if (*first_p)
14292 {
14293 fprintf (stream, "%24s", "");
14294 *col_p = 24;
14295 }
14296 else
14297 {
14298 fprintf (stream, ", ");
14299 *col_p += 2;
14300 }
14301
14302 if (*col_p + strlen (string) > 72)
14303 {
14304 fprintf (stream, "\n%24s", "");
14305 *col_p = 24;
14306 }
14307
14308 fprintf (stream, "%s", string);
14309 *col_p += strlen (string);
14310
14311 *first_p = 0;
14312 }
14313
14314 void
14315 md_show_usage (FILE *stream)
14316 {
14317 int column, first;
14318 size_t i;
14319
14320 fprintf (stream, _("\
14321 MIPS options:\n\
14322 -EB generate big endian output\n\
14323 -EL generate little endian output\n\
14324 -g, -g2 do not remove unneeded NOPs or swap branches\n\
14325 -G NUM allow referencing objects up to NUM bytes\n\
14326 implicitly with the gp register [default 8]\n"));
14327 fprintf (stream, _("\
14328 -mips1 generate MIPS ISA I instructions\n\
14329 -mips2 generate MIPS ISA II instructions\n\
14330 -mips3 generate MIPS ISA III instructions\n\
14331 -mips4 generate MIPS ISA IV instructions\n\
14332 -mips5 generate MIPS ISA V instructions\n\
14333 -mips32 generate MIPS32 ISA instructions\n\
14334 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
14335 -mips64 generate MIPS64 ISA instructions\n\
14336 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
14337 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
14338
14339 first = 1;
14340
14341 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
14342 show (stream, mips_cpu_info_table[i].name, &column, &first);
14343 show (stream, "from-abi", &column, &first);
14344 fputc ('\n', stream);
14345
14346 fprintf (stream, _("\
14347 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
14348 -no-mCPU don't generate code specific to CPU.\n\
14349 For -mCPU and -no-mCPU, CPU must be one of:\n"));
14350
14351 first = 1;
14352
14353 show (stream, "3900", &column, &first);
14354 show (stream, "4010", &column, &first);
14355 show (stream, "4100", &column, &first);
14356 show (stream, "4650", &column, &first);
14357 fputc ('\n', stream);
14358
14359 fprintf (stream, _("\
14360 -mips16 generate mips16 instructions\n\
14361 -no-mips16 do not generate mips16 instructions\n"));
14362 fprintf (stream, _("\
14363 -mdsp generate DSP instructions\n\
14364 -mno-dsp do not generate DSP instructions\n"));
14365 fprintf (stream, _("\
14366 -mmt generate MT instructions\n\
14367 -mno-mt do not generate MT instructions\n"));
14368 fprintf (stream, _("\
14369 -mfix-vr4120 work around certain VR4120 errata\n\
14370 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
14371 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
14372 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
14373 -mno-shared optimize output for executables\n\
14374 -msym32 assume all symbols have 32-bit values\n\
14375 -O0 remove unneeded NOPs, do not swap branches\n\
14376 -O remove unneeded NOPs and swap branches\n\
14377 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
14378 --trap, --no-break trap exception on div by 0 and mult overflow\n\
14379 --break, --no-trap break exception on div by 0 and mult overflow\n"));
14380 #ifdef OBJ_ELF
14381 fprintf (stream, _("\
14382 -KPIC, -call_shared generate SVR4 position independent code\n\
14383 -non_shared do not generate position independent code\n\
14384 -xgot assume a 32 bit GOT\n\
14385 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
14386 -mshared, -mno-shared disable/enable .cpload optimization for\n\
14387 non-shared code\n\
14388 -mabi=ABI create ABI conformant object file for:\n"));
14389
14390 first = 1;
14391
14392 show (stream, "32", &column, &first);
14393 show (stream, "o64", &column, &first);
14394 show (stream, "n32", &column, &first);
14395 show (stream, "64", &column, &first);
14396 show (stream, "eabi", &column, &first);
14397
14398 fputc ('\n', stream);
14399
14400 fprintf (stream, _("\
14401 -32 create o32 ABI object file (default)\n\
14402 -n32 create n32 ABI object file\n\
14403 -64 create 64 ABI object file\n"));
14404 #endif
14405 }
14406
14407 enum dwarf2_format
14408 mips_dwarf2_format (void)
14409 {
14410 if (mips_abi == N64_ABI)
14411 {
14412 #ifdef TE_IRIX
14413 return dwarf2_format_64bit_irix;
14414 #else
14415 return dwarf2_format_64bit;
14416 #endif
14417 }
14418 else
14419 return dwarf2_format_32bit;
14420 }
14421
14422 int
14423 mips_dwarf2_addr_size (void)
14424 {
14425 if (mips_abi == N64_ABI)
14426 return 8;
14427 else
14428 return 4;
14429 }
14430
14431 /* Standard calling conventions leave the CFA at SP on entry. */
14432 void
14433 mips_cfi_frame_initial_instructions (void)
14434 {
14435 cfi_add_CFA_def_cfa_register (SP);
14436 }
14437
This page took 0.340668 seconds and 4 git commands to generate.