* config/tc-mips.c (macro) [ldd_std]: Don't attempt the GP
[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, 59 Temple Place - Suite 330, Boston, MA
24 02111-1307, USA. */
25
26 #include "as.h"
27 #include "config.h"
28 #include "subsegs.h"
29 #include "safe-ctype.h"
30
31 #include <stdarg.h>
32
33 #include "opcode/mips.h"
34 #include "itbl-ops.h"
35 #include "dwarf2dbg.h"
36 #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 /* Whether we are assembling for the mips16 processor. 0 if we are
197 not, 1 if we are, and -1 if the value has not been initialized.
198 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
199 -nomips16 command line options, and the default CPU. */
200 int mips16;
201 /* Non-zero if we should not reorder instructions. Changed by `.set
202 reorder' and `.set noreorder'. */
203 int noreorder;
204 /* Non-zero if we should not permit the $at ($1) register to be used
205 in instructions. Changed by `.set at' and `.set noat'. */
206 int noat;
207 /* Non-zero if we should warn when a macro instruction expands into
208 more than one machine instruction. Changed by `.set nomacro' and
209 `.set macro'. */
210 int warn_about_macros;
211 /* Non-zero if we should not move instructions. Changed by `.set
212 move', `.set volatile', `.set nomove', and `.set novolatile'. */
213 int nomove;
214 /* Non-zero if we should not optimize branches by moving the target
215 of the branch into the delay slot. Actually, we don't perform
216 this optimization anyhow. Changed by `.set bopt' and `.set
217 nobopt'. */
218 int nobopt;
219 /* Non-zero if we should not autoextend mips16 instructions.
220 Changed by `.set autoextend' and `.set noautoextend'. */
221 int noautoextend;
222 /* Restrict general purpose registers and floating point registers
223 to 32 bit. This is initially determined when -mgp32 or -mfp32
224 is passed but can changed if the assembler code uses .set mipsN. */
225 int gp32;
226 int fp32;
227 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
228 command line option, and the default CPU. */
229 int arch;
230 /* True if ".set sym32" is in effect. */
231 bfd_boolean sym32;
232 };
233
234 /* True if -mgp32 was passed. */
235 static int file_mips_gp32 = -1;
236
237 /* True if -mfp32 was passed. */
238 static int file_mips_fp32 = -1;
239
240 /* This is the struct we use to hold the current set of options. Note
241 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
242 -1 to indicate that they have not been initialized. */
243
244 static struct mips_set_options mips_opts =
245 {
246 ISA_UNKNOWN, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, CPU_UNKNOWN, FALSE
247 };
248
249 /* These variables are filled in with the masks of registers used.
250 The object format code reads them and puts them in the appropriate
251 place. */
252 unsigned long mips_gprmask;
253 unsigned long mips_cprmask[4];
254
255 /* MIPS ISA we are using for this output file. */
256 static int file_mips_isa = ISA_UNKNOWN;
257
258 /* True if -mips16 was passed or implied by arguments passed on the
259 command line (e.g., by -march). */
260 static int file_ase_mips16;
261
262 /* True if -mips3d was passed or implied by arguments passed on the
263 command line (e.g., by -march). */
264 static int file_ase_mips3d;
265
266 /* True if -mdmx was passed or implied by arguments passed on the
267 command line (e.g., by -march). */
268 static int file_ase_mdmx;
269
270 /* The argument of the -march= flag. The architecture we are assembling. */
271 static int file_mips_arch = CPU_UNKNOWN;
272 static const char *mips_arch_string;
273
274 /* The argument of the -mtune= flag. The architecture for which we
275 are optimizing. */
276 static int mips_tune = CPU_UNKNOWN;
277 static const char *mips_tune_string;
278
279 /* True when generating 32-bit code for a 64-bit processor. */
280 static int mips_32bitmode = 0;
281
282 /* True if the given ABI requires 32-bit registers. */
283 #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
284
285 /* Likewise 64-bit registers. */
286 #define ABI_NEEDS_64BIT_REGS(ABI) \
287 ((ABI) == N32_ABI \
288 || (ABI) == N64_ABI \
289 || (ABI) == O64_ABI)
290
291 /* Return true if ISA supports 64 bit gp register instructions. */
292 #define ISA_HAS_64BIT_REGS(ISA) ( \
293 (ISA) == ISA_MIPS3 \
294 || (ISA) == ISA_MIPS4 \
295 || (ISA) == ISA_MIPS5 \
296 || (ISA) == ISA_MIPS64 \
297 || (ISA) == ISA_MIPS64R2 \
298 )
299
300 /* Return true if ISA supports 64-bit right rotate (dror et al.)
301 instructions. */
302 #define ISA_HAS_DROR(ISA) ( \
303 (ISA) == ISA_MIPS64R2 \
304 )
305
306 /* Return true if ISA supports 32-bit right rotate (ror et al.)
307 instructions. */
308 #define ISA_HAS_ROR(ISA) ( \
309 (ISA) == ISA_MIPS32R2 \
310 || (ISA) == ISA_MIPS64R2 \
311 )
312
313 #define HAVE_32BIT_GPRS \
314 (mips_opts.gp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
315
316 #define HAVE_32BIT_FPRS \
317 (mips_opts.fp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
318
319 #define HAVE_64BIT_GPRS (! HAVE_32BIT_GPRS)
320 #define HAVE_64BIT_FPRS (! HAVE_32BIT_FPRS)
321
322 #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
323
324 #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
325
326 /* True if relocations are stored in-place. */
327 #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
328
329 /* The ABI-derived address size. */
330 #define HAVE_64BIT_ADDRESSES \
331 (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI))
332 #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES)
333
334 /* The size of symbolic constants (i.e., expressions of the form
335 "SYMBOL" or "SYMBOL + OFFSET"). */
336 #define HAVE_32BIT_SYMBOLS \
337 (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32)
338 #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS)
339
340 /* Addresses are loaded in different ways, depending on the address size
341 in use. The n32 ABI Documentation also mandates the use of additions
342 with overflow checking, but existing implementations don't follow it. */
343 #define ADDRESS_ADD_INSN \
344 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
345
346 #define ADDRESS_ADDI_INSN \
347 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
348
349 #define ADDRESS_LOAD_INSN \
350 (HAVE_32BIT_ADDRESSES ? "lw" : "ld")
351
352 #define ADDRESS_STORE_INSN \
353 (HAVE_32BIT_ADDRESSES ? "sw" : "sd")
354
355 /* Return true if the given CPU supports the MIPS16 ASE. */
356 #define CPU_HAS_MIPS16(cpu) \
357 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
358 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
359
360 /* Return true if the given CPU supports the MIPS3D ASE. */
361 #define CPU_HAS_MIPS3D(cpu) ((cpu) == CPU_SB1 \
362 )
363
364 /* Return true if the given CPU supports the MDMX ASE. */
365 #define CPU_HAS_MDMX(cpu) (FALSE \
366 )
367
368 /* True if CPU has a dror instruction. */
369 #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
370
371 /* True if CPU has a ror instruction. */
372 #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
373
374 /* True if mflo and mfhi can be immediately followed by instructions
375 which write to the HI and LO registers.
376
377 According to MIPS specifications, MIPS ISAs I, II, and III need
378 (at least) two instructions between the reads of HI/LO and
379 instructions which write them, and later ISAs do not. Contradicting
380 the MIPS specifications, some MIPS IV processor user manuals (e.g.
381 the UM for the NEC Vr5000) document needing the instructions between
382 HI/LO reads and writes, as well. Therefore, we declare only MIPS32,
383 MIPS64 and later ISAs to have the interlocks, plus any specific
384 earlier-ISA CPUs for which CPU documentation declares that the
385 instructions are really interlocked. */
386 #define hilo_interlocks \
387 (mips_opts.isa == ISA_MIPS32 \
388 || mips_opts.isa == ISA_MIPS32R2 \
389 || mips_opts.isa == ISA_MIPS64 \
390 || mips_opts.isa == ISA_MIPS64R2 \
391 || mips_opts.arch == CPU_R4010 \
392 || mips_opts.arch == CPU_R10000 \
393 || mips_opts.arch == CPU_R12000 \
394 || mips_opts.arch == CPU_RM7000 \
395 || mips_opts.arch == CPU_VR5500 \
396 )
397
398 /* Whether the processor uses hardware interlocks to protect reads
399 from the GPRs after they are loaded from memory, and thus does not
400 require nops to be inserted. This applies to instructions marked
401 INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA
402 level I. */
403 #define gpr_interlocks \
404 (mips_opts.isa != ISA_MIPS1 \
405 || mips_opts.arch == CPU_R3900)
406
407 /* Whether the processor uses hardware interlocks to avoid delays
408 required by coprocessor instructions, and thus does not require
409 nops to be inserted. This applies to instructions marked
410 INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays
411 between instructions marked INSN_WRITE_COND_CODE and ones marked
412 INSN_READ_COND_CODE. These nops are only required at MIPS ISA
413 levels I, II, and III. */
414 /* Itbl support may require additional care here. */
415 #define cop_interlocks \
416 ((mips_opts.isa != ISA_MIPS1 \
417 && mips_opts.isa != ISA_MIPS2 \
418 && mips_opts.isa != ISA_MIPS3) \
419 || mips_opts.arch == CPU_R4300 \
420 )
421
422 /* Whether the processor uses hardware interlocks to protect reads
423 from coprocessor registers after they are loaded from memory, and
424 thus does not require nops to be inserted. This applies to
425 instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only
426 requires at MIPS ISA level I. */
427 #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1)
428
429 /* Is this a mfhi or mflo instruction? */
430 #define MF_HILO_INSN(PINFO) \
431 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
432
433 /* MIPS PIC level. */
434
435 enum mips_pic_level mips_pic;
436
437 /* 1 if we should generate 32 bit offsets from the $gp register in
438 SVR4_PIC mode. Currently has no meaning in other modes. */
439 static int mips_big_got = 0;
440
441 /* 1 if trap instructions should used for overflow rather than break
442 instructions. */
443 static int mips_trap = 0;
444
445 /* 1 if double width floating point constants should not be constructed
446 by assembling two single width halves into two single width floating
447 point registers which just happen to alias the double width destination
448 register. On some architectures this aliasing can be disabled by a bit
449 in the status register, and the setting of this bit cannot be determined
450 automatically at assemble time. */
451 static int mips_disable_float_construction;
452
453 /* Non-zero if any .set noreorder directives were used. */
454
455 static int mips_any_noreorder;
456
457 /* Non-zero if nops should be inserted when the register referenced in
458 an mfhi/mflo instruction is read in the next two instructions. */
459 static int mips_7000_hilo_fix;
460
461 /* The size of the small data section. */
462 static unsigned int g_switch_value = 8;
463 /* Whether the -G option was used. */
464 static int g_switch_seen = 0;
465
466 #define N_RMASK 0xc4
467 #define N_VFP 0xd4
468
469 /* If we can determine in advance that GP optimization won't be
470 possible, we can skip the relaxation stuff that tries to produce
471 GP-relative references. This makes delay slot optimization work
472 better.
473
474 This function can only provide a guess, but it seems to work for
475 gcc output. It needs to guess right for gcc, otherwise gcc
476 will put what it thinks is a GP-relative instruction in a branch
477 delay slot.
478
479 I don't know if a fix is needed for the SVR4_PIC mode. I've only
480 fixed it for the non-PIC mode. KR 95/04/07 */
481 static int nopic_need_relax (symbolS *, int);
482
483 /* handle of the OPCODE hash table */
484 static struct hash_control *op_hash = NULL;
485
486 /* The opcode hash table we use for the mips16. */
487 static struct hash_control *mips16_op_hash = NULL;
488
489 /* This array holds the chars that always start a comment. If the
490 pre-processor is disabled, these aren't very useful */
491 const char comment_chars[] = "#";
492
493 /* This array holds the chars that only start a comment at the beginning of
494 a line. If the line seems to have the form '# 123 filename'
495 .line and .file directives will appear in the pre-processed output */
496 /* Note that input_file.c hand checks for '#' at the beginning of the
497 first line of the input file. This is because the compiler outputs
498 #NO_APP at the beginning of its output. */
499 /* Also note that C style comments are always supported. */
500 const char line_comment_chars[] = "#";
501
502 /* This array holds machine specific line separator characters. */
503 const char line_separator_chars[] = ";";
504
505 /* Chars that can be used to separate mant from exp in floating point nums */
506 const char EXP_CHARS[] = "eE";
507
508 /* Chars that mean this number is a floating point constant */
509 /* As in 0f12.456 */
510 /* or 0d1.2345e12 */
511 const char FLT_CHARS[] = "rRsSfFdDxXpP";
512
513 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
514 changed in read.c . Ideally it shouldn't have to know about it at all,
515 but nothing is ideal around here.
516 */
517
518 static char *insn_error;
519
520 static int auto_align = 1;
521
522 /* When outputting SVR4 PIC code, the assembler needs to know the
523 offset in the stack frame from which to restore the $gp register.
524 This is set by the .cprestore pseudo-op, and saved in this
525 variable. */
526 static offsetT mips_cprestore_offset = -1;
527
528 /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
529 more optimizations, it can use a register value instead of a memory-saved
530 offset and even an other register than $gp as global pointer. */
531 static offsetT mips_cpreturn_offset = -1;
532 static int mips_cpreturn_register = -1;
533 static int mips_gp_register = GP;
534 static int mips_gprel_offset = 0;
535
536 /* Whether mips_cprestore_offset has been set in the current function
537 (or whether it has already been warned about, if not). */
538 static int mips_cprestore_valid = 0;
539
540 /* This is the register which holds the stack frame, as set by the
541 .frame pseudo-op. This is needed to implement .cprestore. */
542 static int mips_frame_reg = SP;
543
544 /* Whether mips_frame_reg has been set in the current function
545 (or whether it has already been warned about, if not). */
546 static int mips_frame_reg_valid = 0;
547
548 /* To output NOP instructions correctly, we need to keep information
549 about the previous two instructions. */
550
551 /* Whether we are optimizing. The default value of 2 means to remove
552 unneeded NOPs and swap branch instructions when possible. A value
553 of 1 means to not swap branches. A value of 0 means to always
554 insert NOPs. */
555 static int mips_optimize = 2;
556
557 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
558 equivalent to seeing no -g option at all. */
559 static int mips_debug = 0;
560
561 /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */
562 #define MAX_VR4130_NOPS 4
563
564 /* The maximum number of NOPs needed to fill delay slots. */
565 #define MAX_DELAY_NOPS 2
566
567 /* The maximum number of NOPs needed for any purpose. */
568 #define MAX_NOPS 4
569
570 /* A list of previous instructions, with index 0 being the most recent.
571 We need to look back MAX_NOPS instructions when filling delay slots
572 or working around processor errata. We need to look back one
573 instruction further if we're thinking about using history[0] to
574 fill a branch delay slot. */
575 static struct mips_cl_insn history[1 + MAX_NOPS];
576
577 /* Nop instructions used by emit_nop. */
578 static struct mips_cl_insn nop_insn, mips16_nop_insn;
579
580 /* The appropriate nop for the current mode. */
581 #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn)
582
583 /* If this is set, it points to a frag holding nop instructions which
584 were inserted before the start of a noreorder section. If those
585 nops turn out to be unnecessary, the size of the frag can be
586 decreased. */
587 static fragS *prev_nop_frag;
588
589 /* The number of nop instructions we created in prev_nop_frag. */
590 static int prev_nop_frag_holds;
591
592 /* The number of nop instructions that we know we need in
593 prev_nop_frag. */
594 static int prev_nop_frag_required;
595
596 /* The number of instructions we've seen since prev_nop_frag. */
597 static int prev_nop_frag_since;
598
599 /* For ECOFF and ELF, relocations against symbols are done in two
600 parts, with a HI relocation and a LO relocation. Each relocation
601 has only 16 bits of space to store an addend. This means that in
602 order for the linker to handle carries correctly, it must be able
603 to locate both the HI and the LO relocation. This means that the
604 relocations must appear in order in the relocation table.
605
606 In order to implement this, we keep track of each unmatched HI
607 relocation. We then sort them so that they immediately precede the
608 corresponding LO relocation. */
609
610 struct mips_hi_fixup
611 {
612 /* Next HI fixup. */
613 struct mips_hi_fixup *next;
614 /* This fixup. */
615 fixS *fixp;
616 /* The section this fixup is in. */
617 segT seg;
618 };
619
620 /* The list of unmatched HI relocs. */
621
622 static struct mips_hi_fixup *mips_hi_fixup_list;
623
624 /* The frag containing the last explicit relocation operator.
625 Null if explicit relocations have not been used. */
626
627 static fragS *prev_reloc_op_frag;
628
629 /* Map normal MIPS register numbers to mips16 register numbers. */
630
631 #define X ILLEGAL_REG
632 static const int mips32_to_16_reg_map[] =
633 {
634 X, X, 2, 3, 4, 5, 6, 7,
635 X, X, X, X, X, X, X, X,
636 0, 1, X, X, X, X, X, X,
637 X, X, X, X, X, X, X, X
638 };
639 #undef X
640
641 /* Map mips16 register numbers to normal MIPS register numbers. */
642
643 static const unsigned int mips16_to_32_reg_map[] =
644 {
645 16, 17, 2, 3, 4, 5, 6, 7
646 };
647
648 /* Classifies the kind of instructions we're interested in when
649 implementing -mfix-vr4120. */
650 enum fix_vr4120_class {
651 FIX_VR4120_MACC,
652 FIX_VR4120_DMACC,
653 FIX_VR4120_MULT,
654 FIX_VR4120_DMULT,
655 FIX_VR4120_DIV,
656 FIX_VR4120_MTHILO,
657 NUM_FIX_VR4120_CLASSES
658 };
659
660 /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if
661 there must be at least one other instruction between an instruction
662 of type X and an instruction of type Y. */
663 static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
664
665 /* True if -mfix-vr4120 is in force. */
666 static int mips_fix_vr4120;
667
668 /* ...likewise -mfix-vr4130. */
669 static int mips_fix_vr4130;
670
671 /* We don't relax branches by default, since this causes us to expand
672 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
673 fail to compute the offset before expanding the macro to the most
674 efficient expansion. */
675
676 static int mips_relax_branch;
677 \f
678 /* The expansion of many macros depends on the type of symbol that
679 they refer to. For example, when generating position-dependent code,
680 a macro that refers to a symbol may have two different expansions,
681 one which uses GP-relative addresses and one which uses absolute
682 addresses. When generating SVR4-style PIC, a macro may have
683 different expansions for local and global symbols.
684
685 We handle these situations by generating both sequences and putting
686 them in variant frags. In position-dependent code, the first sequence
687 will be the GP-relative one and the second sequence will be the
688 absolute one. In SVR4 PIC, the first sequence will be for global
689 symbols and the second will be for local symbols.
690
691 The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and
692 SECOND are the lengths of the two sequences in bytes. These fields
693 can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition,
694 the subtype has the following flags:
695
696 RELAX_USE_SECOND
697 Set if it has been decided that we should use the second
698 sequence instead of the first.
699
700 RELAX_SECOND_LONGER
701 Set in the first variant frag if the macro's second implementation
702 is longer than its first. This refers to the macro as a whole,
703 not an individual relaxation.
704
705 RELAX_NOMACRO
706 Set in the first variant frag if the macro appeared in a .set nomacro
707 block and if one alternative requires a warning but the other does not.
708
709 RELAX_DELAY_SLOT
710 Like RELAX_NOMACRO, but indicates that the macro appears in a branch
711 delay slot.
712
713 The frag's "opcode" points to the first fixup for relaxable code.
714
715 Relaxable macros are generated using a sequence such as:
716
717 relax_start (SYMBOL);
718 ... generate first expansion ...
719 relax_switch ();
720 ... generate second expansion ...
721 relax_end ();
722
723 The code and fixups for the unwanted alternative are discarded
724 by md_convert_frag. */
725 #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
726
727 #define RELAX_FIRST(X) (((X) >> 8) & 0xff)
728 #define RELAX_SECOND(X) ((X) & 0xff)
729 #define RELAX_USE_SECOND 0x10000
730 #define RELAX_SECOND_LONGER 0x20000
731 #define RELAX_NOMACRO 0x40000
732 #define RELAX_DELAY_SLOT 0x80000
733
734 /* Branch without likely bit. If label is out of range, we turn:
735
736 beq reg1, reg2, label
737 delay slot
738
739 into
740
741 bne reg1, reg2, 0f
742 nop
743 j label
744 0: delay slot
745
746 with the following opcode replacements:
747
748 beq <-> bne
749 blez <-> bgtz
750 bltz <-> bgez
751 bc1f <-> bc1t
752
753 bltzal <-> bgezal (with jal label instead of j label)
754
755 Even though keeping the delay slot instruction in the delay slot of
756 the branch would be more efficient, it would be very tricky to do
757 correctly, because we'd have to introduce a variable frag *after*
758 the delay slot instruction, and expand that instead. Let's do it
759 the easy way for now, even if the branch-not-taken case now costs
760 one additional instruction. Out-of-range branches are not supposed
761 to be common, anyway.
762
763 Branch likely. If label is out of range, we turn:
764
765 beql reg1, reg2, label
766 delay slot (annulled if branch not taken)
767
768 into
769
770 beql reg1, reg2, 1f
771 nop
772 beql $0, $0, 2f
773 nop
774 1: j[al] label
775 delay slot (executed only if branch taken)
776 2:
777
778 It would be possible to generate a shorter sequence by losing the
779 likely bit, generating something like:
780
781 bne reg1, reg2, 0f
782 nop
783 j[al] label
784 delay slot (executed only if branch taken)
785 0:
786
787 beql -> bne
788 bnel -> beq
789 blezl -> bgtz
790 bgtzl -> blez
791 bltzl -> bgez
792 bgezl -> bltz
793 bc1fl -> bc1t
794 bc1tl -> bc1f
795
796 bltzall -> bgezal (with jal label instead of j label)
797 bgezall -> bltzal (ditto)
798
799
800 but it's not clear that it would actually improve performance. */
801 #define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
802 ((relax_substateT) \
803 (0xc0000000 \
804 | ((toofar) ? 1 : 0) \
805 | ((link) ? 2 : 0) \
806 | ((likely) ? 4 : 0) \
807 | ((uncond) ? 8 : 0)))
808 #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
809 #define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
810 #define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
811 #define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
812 #define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
813
814 /* For mips16 code, we use an entirely different form of relaxation.
815 mips16 supports two versions of most instructions which take
816 immediate values: a small one which takes some small value, and a
817 larger one which takes a 16 bit value. Since branches also follow
818 this pattern, relaxing these values is required.
819
820 We can assemble both mips16 and normal MIPS code in a single
821 object. Therefore, we need to support this type of relaxation at
822 the same time that we support the relaxation described above. We
823 use the high bit of the subtype field to distinguish these cases.
824
825 The information we store for this type of relaxation is the
826 argument code found in the opcode file for this relocation, whether
827 the user explicitly requested a small or extended form, and whether
828 the relocation is in a jump or jal delay slot. That tells us the
829 size of the value, and how it should be stored. We also store
830 whether the fragment is considered to be extended or not. We also
831 store whether this is known to be a branch to a different section,
832 whether we have tried to relax this frag yet, and whether we have
833 ever extended a PC relative fragment because of a shift count. */
834 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
835 (0x80000000 \
836 | ((type) & 0xff) \
837 | ((small) ? 0x100 : 0) \
838 | ((ext) ? 0x200 : 0) \
839 | ((dslot) ? 0x400 : 0) \
840 | ((jal_dslot) ? 0x800 : 0))
841 #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
842 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
843 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
844 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
845 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
846 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
847 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
848 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
849 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
850 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
851 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
852 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
853
854 /* Is the given value a sign-extended 32-bit value? */
855 #define IS_SEXT_32BIT_NUM(x) \
856 (((x) &~ (offsetT) 0x7fffffff) == 0 \
857 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
858
859 /* Is the given value a sign-extended 16-bit value? */
860 #define IS_SEXT_16BIT_NUM(x) \
861 (((x) &~ (offsetT) 0x7fff) == 0 \
862 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
863
864 /* Is the given value a zero-extended 32-bit value? Or a negated one? */
865 #define IS_ZEXT_32BIT_NUM(x) \
866 (((x) &~ (offsetT) 0xffffffff) == 0 \
867 || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff))
868
869 /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
870 VALUE << SHIFT. VALUE is evaluated exactly once. */
871 #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
872 (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \
873 | (((VALUE) & (MASK)) << (SHIFT)))
874
875 /* Extract bits MASK << SHIFT from STRUCT and shift them right
876 SHIFT places. */
877 #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
878 (((STRUCT) >> (SHIFT)) & (MASK))
879
880 /* Change INSN's opcode so that the operand given by FIELD has value VALUE.
881 INSN is a mips_cl_insn structure and VALUE is evaluated exactly once.
882
883 include/opcode/mips.h specifies operand fields using the macros
884 OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start
885 with "MIPS16OP" instead of "OP". */
886 #define INSERT_OPERAND(FIELD, INSN, VALUE) \
887 INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD)
888 #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \
889 INSERT_BITS ((INSN).insn_opcode, VALUE, \
890 MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD)
891
892 /* Extract the operand given by FIELD from mips_cl_insn INSN. */
893 #define EXTRACT_OPERAND(FIELD, INSN) \
894 EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD)
895 #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \
896 EXTRACT_BITS ((INSN).insn_opcode, \
897 MIPS16OP_MASK_##FIELD, \
898 MIPS16OP_SH_##FIELD)
899 \f
900 /* Global variables used when generating relaxable macros. See the
901 comment above RELAX_ENCODE for more details about how relaxation
902 is used. */
903 static struct {
904 /* 0 if we're not emitting a relaxable macro.
905 1 if we're emitting the first of the two relaxation alternatives.
906 2 if we're emitting the second alternative. */
907 int sequence;
908
909 /* The first relaxable fixup in the current frag. (In other words,
910 the first fixup that refers to relaxable code.) */
911 fixS *first_fixup;
912
913 /* sizes[0] says how many bytes of the first alternative are stored in
914 the current frag. Likewise sizes[1] for the second alternative. */
915 unsigned int sizes[2];
916
917 /* The symbol on which the choice of sequence depends. */
918 symbolS *symbol;
919 } mips_relax;
920 \f
921 /* Global variables used to decide whether a macro needs a warning. */
922 static struct {
923 /* True if the macro is in a branch delay slot. */
924 bfd_boolean delay_slot_p;
925
926 /* For relaxable macros, sizes[0] is the length of the first alternative
927 in bytes and sizes[1] is the length of the second alternative.
928 For non-relaxable macros, both elements give the length of the
929 macro in bytes. */
930 unsigned int sizes[2];
931
932 /* The first variant frag for this macro. */
933 fragS *first_frag;
934 } mips_macro_warning;
935 \f
936 /* Prototypes for static functions. */
937
938 #define internalError() \
939 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
940
941 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
942
943 static void append_insn
944 (struct mips_cl_insn *ip, expressionS *p, bfd_reloc_code_real_type *r);
945 static void mips_no_prev_insn (void);
946 static void mips16_macro_build
947 (expressionS *, const char *, const char *, va_list);
948 static void load_register (int, expressionS *, int);
949 static void macro_start (void);
950 static void macro_end (void);
951 static void macro (struct mips_cl_insn * ip);
952 static void mips16_macro (struct mips_cl_insn * ip);
953 #ifdef LOSING_COMPILER
954 static void macro2 (struct mips_cl_insn * ip);
955 #endif
956 static void mips_ip (char *str, struct mips_cl_insn * ip);
957 static void mips16_ip (char *str, struct mips_cl_insn * ip);
958 static void mips16_immed
959 (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
960 unsigned long *, bfd_boolean *, unsigned short *);
961 static size_t my_getSmallExpression
962 (expressionS *, bfd_reloc_code_real_type *, char *);
963 static void my_getExpression (expressionS *, char *);
964 static void s_align (int);
965 static void s_change_sec (int);
966 static void s_change_section (int);
967 static void s_cons (int);
968 static void s_float_cons (int);
969 static void s_mips_globl (int);
970 static void s_option (int);
971 static void s_mipsset (int);
972 static void s_abicalls (int);
973 static void s_cpload (int);
974 static void s_cpsetup (int);
975 static void s_cplocal (int);
976 static void s_cprestore (int);
977 static void s_cpreturn (int);
978 static void s_gpvalue (int);
979 static void s_gpword (int);
980 static void s_gpdword (int);
981 static void s_cpadd (int);
982 static void s_insn (int);
983 static void md_obj_begin (void);
984 static void md_obj_end (void);
985 static void s_mips_ent (int);
986 static void s_mips_end (int);
987 static void s_mips_frame (int);
988 static void s_mips_mask (int reg_type);
989 static void s_mips_stab (int);
990 static void s_mips_weakext (int);
991 static void s_mips_file (int);
992 static void s_mips_loc (int);
993 static bfd_boolean pic_need_relax (symbolS *, asection *);
994 static int relaxed_branch_length (fragS *, asection *, int);
995 static int validate_mips_insn (const struct mips_opcode *);
996
997 /* Table and functions used to map between CPU/ISA names, and
998 ISA levels, and CPU numbers. */
999
1000 struct mips_cpu_info
1001 {
1002 const char *name; /* CPU or ISA name. */
1003 int is_isa; /* Is this an ISA? (If 0, a CPU.) */
1004 int isa; /* ISA level. */
1005 int cpu; /* CPU number (default CPU if ISA). */
1006 };
1007
1008 static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1009 static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1010 static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
1011 \f
1012 /* Pseudo-op table.
1013
1014 The following pseudo-ops from the Kane and Heinrich MIPS book
1015 should be defined here, but are currently unsupported: .alias,
1016 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
1017
1018 The following pseudo-ops from the Kane and Heinrich MIPS book are
1019 specific to the type of debugging information being generated, and
1020 should be defined by the object format: .aent, .begin, .bend,
1021 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
1022 .vreg.
1023
1024 The following pseudo-ops from the Kane and Heinrich MIPS book are
1025 not MIPS CPU specific, but are also not specific to the object file
1026 format. This file is probably the best place to define them, but
1027 they are not currently supported: .asm0, .endr, .lab, .repeat,
1028 .struct. */
1029
1030 static const pseudo_typeS mips_pseudo_table[] =
1031 {
1032 /* MIPS specific pseudo-ops. */
1033 {"option", s_option, 0},
1034 {"set", s_mipsset, 0},
1035 {"rdata", s_change_sec, 'r'},
1036 {"sdata", s_change_sec, 's'},
1037 {"livereg", s_ignore, 0},
1038 {"abicalls", s_abicalls, 0},
1039 {"cpload", s_cpload, 0},
1040 {"cpsetup", s_cpsetup, 0},
1041 {"cplocal", s_cplocal, 0},
1042 {"cprestore", s_cprestore, 0},
1043 {"cpreturn", s_cpreturn, 0},
1044 {"gpvalue", s_gpvalue, 0},
1045 {"gpword", s_gpword, 0},
1046 {"gpdword", s_gpdword, 0},
1047 {"cpadd", s_cpadd, 0},
1048 {"insn", s_insn, 0},
1049
1050 /* Relatively generic pseudo-ops that happen to be used on MIPS
1051 chips. */
1052 {"asciiz", stringer, 1},
1053 {"bss", s_change_sec, 'b'},
1054 {"err", s_err, 0},
1055 {"half", s_cons, 1},
1056 {"dword", s_cons, 3},
1057 {"weakext", s_mips_weakext, 0},
1058
1059 /* These pseudo-ops are defined in read.c, but must be overridden
1060 here for one reason or another. */
1061 {"align", s_align, 0},
1062 {"byte", s_cons, 0},
1063 {"data", s_change_sec, 'd'},
1064 {"double", s_float_cons, 'd'},
1065 {"float", s_float_cons, 'f'},
1066 {"globl", s_mips_globl, 0},
1067 {"global", s_mips_globl, 0},
1068 {"hword", s_cons, 1},
1069 {"int", s_cons, 2},
1070 {"long", s_cons, 2},
1071 {"octa", s_cons, 4},
1072 {"quad", s_cons, 3},
1073 {"section", s_change_section, 0},
1074 {"short", s_cons, 1},
1075 {"single", s_float_cons, 'f'},
1076 {"stabn", s_mips_stab, 'n'},
1077 {"text", s_change_sec, 't'},
1078 {"word", s_cons, 2},
1079
1080 { "extern", ecoff_directive_extern, 0},
1081
1082 { NULL, NULL, 0 },
1083 };
1084
1085 static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1086 {
1087 /* These pseudo-ops should be defined by the object file format.
1088 However, a.out doesn't support them, so we have versions here. */
1089 {"aent", s_mips_ent, 1},
1090 {"bgnb", s_ignore, 0},
1091 {"end", s_mips_end, 0},
1092 {"endb", s_ignore, 0},
1093 {"ent", s_mips_ent, 0},
1094 {"file", s_mips_file, 0},
1095 {"fmask", s_mips_mask, 'F'},
1096 {"frame", s_mips_frame, 0},
1097 {"loc", s_mips_loc, 0},
1098 {"mask", s_mips_mask, 'R'},
1099 {"verstamp", s_ignore, 0},
1100 { NULL, NULL, 0 },
1101 };
1102
1103 extern void pop_insert (const pseudo_typeS *);
1104
1105 void
1106 mips_pop_insert (void)
1107 {
1108 pop_insert (mips_pseudo_table);
1109 if (! ECOFF_DEBUGGING)
1110 pop_insert (mips_nonecoff_pseudo_table);
1111 }
1112 \f
1113 /* Symbols labelling the current insn. */
1114
1115 struct insn_label_list
1116 {
1117 struct insn_label_list *next;
1118 symbolS *label;
1119 };
1120
1121 static struct insn_label_list *insn_labels;
1122 static struct insn_label_list *free_insn_labels;
1123
1124 static void mips_clear_insn_labels (void);
1125
1126 static inline void
1127 mips_clear_insn_labels (void)
1128 {
1129 register struct insn_label_list **pl;
1130
1131 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1132 ;
1133 *pl = insn_labels;
1134 insn_labels = NULL;
1135 }
1136 \f
1137 static char *expr_end;
1138
1139 /* Expressions which appear in instructions. These are set by
1140 mips_ip. */
1141
1142 static expressionS imm_expr;
1143 static expressionS imm2_expr;
1144 static expressionS offset_expr;
1145
1146 /* Relocs associated with imm_expr and offset_expr. */
1147
1148 static bfd_reloc_code_real_type imm_reloc[3]
1149 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1150 static bfd_reloc_code_real_type offset_reloc[3]
1151 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1152
1153 /* These are set by mips16_ip if an explicit extension is used. */
1154
1155 static bfd_boolean mips16_small, mips16_ext;
1156
1157 #ifdef OBJ_ELF
1158 /* The pdr segment for per procedure frame/regmask info. Not used for
1159 ECOFF debugging. */
1160
1161 static segT pdr_seg;
1162 #endif
1163
1164 /* The default target format to use. */
1165
1166 const char *
1167 mips_target_format (void)
1168 {
1169 switch (OUTPUT_FLAVOR)
1170 {
1171 case bfd_target_ecoff_flavour:
1172 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1173 case bfd_target_coff_flavour:
1174 return "pe-mips";
1175 case bfd_target_elf_flavour:
1176 #ifdef TE_TMIPS
1177 /* This is traditional mips. */
1178 return (target_big_endian
1179 ? (HAVE_64BIT_OBJECTS
1180 ? "elf64-tradbigmips"
1181 : (HAVE_NEWABI
1182 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
1183 : (HAVE_64BIT_OBJECTS
1184 ? "elf64-tradlittlemips"
1185 : (HAVE_NEWABI
1186 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
1187 #else
1188 return (target_big_endian
1189 ? (HAVE_64BIT_OBJECTS
1190 ? "elf64-bigmips"
1191 : (HAVE_NEWABI
1192 ? "elf32-nbigmips" : "elf32-bigmips"))
1193 : (HAVE_64BIT_OBJECTS
1194 ? "elf64-littlemips"
1195 : (HAVE_NEWABI
1196 ? "elf32-nlittlemips" : "elf32-littlemips")));
1197 #endif
1198 default:
1199 abort ();
1200 return NULL;
1201 }
1202 }
1203
1204 /* Return the length of instruction INSN. */
1205
1206 static inline unsigned int
1207 insn_length (const struct mips_cl_insn *insn)
1208 {
1209 if (!mips_opts.mips16)
1210 return 4;
1211 return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2;
1212 }
1213
1214 /* Initialise INSN from opcode entry MO. Leave its position unspecified. */
1215
1216 static void
1217 create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo)
1218 {
1219 size_t i;
1220
1221 insn->insn_mo = mo;
1222 insn->use_extend = FALSE;
1223 insn->extend = 0;
1224 insn->insn_opcode = mo->match;
1225 insn->frag = NULL;
1226 insn->where = 0;
1227 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1228 insn->fixp[i] = NULL;
1229 insn->fixed_p = (mips_opts.noreorder > 0);
1230 insn->noreorder_p = (mips_opts.noreorder > 0);
1231 insn->mips16_absolute_jump_p = 0;
1232 }
1233
1234 /* Install INSN at the location specified by its "frag" and "where" fields. */
1235
1236 static void
1237 install_insn (const struct mips_cl_insn *insn)
1238 {
1239 char *f = insn->frag->fr_literal + insn->where;
1240 if (!mips_opts.mips16)
1241 md_number_to_chars (f, insn->insn_opcode, 4);
1242 else if (insn->mips16_absolute_jump_p)
1243 {
1244 md_number_to_chars (f, insn->insn_opcode >> 16, 2);
1245 md_number_to_chars (f + 2, insn->insn_opcode & 0xffff, 2);
1246 }
1247 else
1248 {
1249 if (insn->use_extend)
1250 {
1251 md_number_to_chars (f, 0xf000 | insn->extend, 2);
1252 f += 2;
1253 }
1254 md_number_to_chars (f, insn->insn_opcode, 2);
1255 }
1256 }
1257
1258 /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly
1259 and install the opcode in the new location. */
1260
1261 static void
1262 move_insn (struct mips_cl_insn *insn, fragS *frag, long where)
1263 {
1264 size_t i;
1265
1266 insn->frag = frag;
1267 insn->where = where;
1268 for (i = 0; i < ARRAY_SIZE (insn->fixp); i++)
1269 if (insn->fixp[i] != NULL)
1270 {
1271 insn->fixp[i]->fx_frag = frag;
1272 insn->fixp[i]->fx_where = where;
1273 }
1274 install_insn (insn);
1275 }
1276
1277 /* Add INSN to the end of the output. */
1278
1279 static void
1280 add_fixed_insn (struct mips_cl_insn *insn)
1281 {
1282 char *f = frag_more (insn_length (insn));
1283 move_insn (insn, frag_now, f - frag_now->fr_literal);
1284 }
1285
1286 /* Start a variant frag and move INSN to the start of the variant part,
1287 marking it as fixed. The other arguments are as for frag_var. */
1288
1289 static void
1290 add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var,
1291 relax_substateT subtype, symbolS *symbol, offsetT offset)
1292 {
1293 frag_grow (max_chars);
1294 move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal);
1295 insn->fixed_p = 1;
1296 frag_var (rs_machine_dependent, max_chars, var,
1297 subtype, symbol, offset, NULL);
1298 }
1299
1300 /* Insert N copies of INSN into the history buffer, starting at
1301 position FIRST. Neither FIRST nor N need to be clipped. */
1302
1303 static void
1304 insert_into_history (unsigned int first, unsigned int n,
1305 const struct mips_cl_insn *insn)
1306 {
1307 if (mips_relax.sequence != 2)
1308 {
1309 unsigned int i;
1310
1311 for (i = ARRAY_SIZE (history); i-- > first;)
1312 if (i >= first + n)
1313 history[i] = history[i - n];
1314 else
1315 history[i] = *insn;
1316 }
1317 }
1318
1319 /* Emit a nop instruction, recording it in the history buffer. */
1320
1321 static void
1322 emit_nop (void)
1323 {
1324 add_fixed_insn (NOP_INSN);
1325 insert_into_history (0, 1, NOP_INSN);
1326 }
1327
1328 /* Initialize vr4120_conflicts. There is a bit of duplication here:
1329 the idea is to make it obvious at a glance that each errata is
1330 included. */
1331
1332 static void
1333 init_vr4120_conflicts (void)
1334 {
1335 #define CONFLICT(FIRST, SECOND) \
1336 vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND
1337
1338 /* Errata 21 - [D]DIV[U] after [D]MACC */
1339 CONFLICT (MACC, DIV);
1340 CONFLICT (DMACC, DIV);
1341
1342 /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */
1343 CONFLICT (DMULT, DMULT);
1344 CONFLICT (DMULT, DMACC);
1345 CONFLICT (DMACC, DMULT);
1346 CONFLICT (DMACC, DMACC);
1347
1348 /* Errata 24 - MT{LO,HI} after [D]MACC */
1349 CONFLICT (MACC, MTHILO);
1350 CONFLICT (DMACC, MTHILO);
1351
1352 /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU
1353 instruction is executed immediately after a MACC or DMACC
1354 instruction, the result of [either instruction] is incorrect." */
1355 CONFLICT (MACC, MULT);
1356 CONFLICT (MACC, DMULT);
1357 CONFLICT (DMACC, MULT);
1358 CONFLICT (DMACC, DMULT);
1359
1360 /* VR4181A errata MD(4): "If a MACC or DMACC instruction is
1361 executed immediately after a DMULT, DMULTU, DIV, DIVU,
1362 DDIV or DDIVU instruction, the result of the MACC or
1363 DMACC instruction is incorrect.". */
1364 CONFLICT (DMULT, MACC);
1365 CONFLICT (DMULT, DMACC);
1366 CONFLICT (DIV, MACC);
1367 CONFLICT (DIV, DMACC);
1368
1369 #undef CONFLICT
1370 }
1371
1372 /* This function is called once, at assembler startup time. It should
1373 set up all the tables, etc. that the MD part of the assembler will need. */
1374
1375 void
1376 md_begin (void)
1377 {
1378 register const char *retval = NULL;
1379 int i = 0;
1380 int broken = 0;
1381
1382 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
1383 as_warn (_("Could not set architecture and machine"));
1384
1385 op_hash = hash_new ();
1386
1387 for (i = 0; i < NUMOPCODES;)
1388 {
1389 const char *name = mips_opcodes[i].name;
1390
1391 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
1392 if (retval != NULL)
1393 {
1394 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1395 mips_opcodes[i].name, retval);
1396 /* Probably a memory allocation problem? Give up now. */
1397 as_fatal (_("Broken assembler. No assembly attempted."));
1398 }
1399 do
1400 {
1401 if (mips_opcodes[i].pinfo != INSN_MACRO)
1402 {
1403 if (!validate_mips_insn (&mips_opcodes[i]))
1404 broken = 1;
1405 if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1406 {
1407 create_insn (&nop_insn, mips_opcodes + i);
1408 nop_insn.fixed_p = 1;
1409 }
1410 }
1411 ++i;
1412 }
1413 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1414 }
1415
1416 mips16_op_hash = hash_new ();
1417
1418 i = 0;
1419 while (i < bfd_mips16_num_opcodes)
1420 {
1421 const char *name = mips16_opcodes[i].name;
1422
1423 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
1424 if (retval != NULL)
1425 as_fatal (_("internal: can't hash `%s': %s"),
1426 mips16_opcodes[i].name, retval);
1427 do
1428 {
1429 if (mips16_opcodes[i].pinfo != INSN_MACRO
1430 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1431 != mips16_opcodes[i].match))
1432 {
1433 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1434 mips16_opcodes[i].name, mips16_opcodes[i].args);
1435 broken = 1;
1436 }
1437 if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0)
1438 {
1439 create_insn (&mips16_nop_insn, mips16_opcodes + i);
1440 mips16_nop_insn.fixed_p = 1;
1441 }
1442 ++i;
1443 }
1444 while (i < bfd_mips16_num_opcodes
1445 && strcmp (mips16_opcodes[i].name, name) == 0);
1446 }
1447
1448 if (broken)
1449 as_fatal (_("Broken assembler. No assembly attempted."));
1450
1451 /* We add all the general register names to the symbol table. This
1452 helps us detect invalid uses of them. */
1453 for (i = 0; i < 32; i++)
1454 {
1455 char buf[5];
1456
1457 sprintf (buf, "$%d", i);
1458 symbol_table_insert (symbol_new (buf, reg_section, i,
1459 &zero_address_frag));
1460 }
1461 symbol_table_insert (symbol_new ("$ra", reg_section, RA,
1462 &zero_address_frag));
1463 symbol_table_insert (symbol_new ("$fp", reg_section, FP,
1464 &zero_address_frag));
1465 symbol_table_insert (symbol_new ("$sp", reg_section, SP,
1466 &zero_address_frag));
1467 symbol_table_insert (symbol_new ("$gp", reg_section, GP,
1468 &zero_address_frag));
1469 symbol_table_insert (symbol_new ("$at", reg_section, AT,
1470 &zero_address_frag));
1471 symbol_table_insert (symbol_new ("$kt0", reg_section, KT0,
1472 &zero_address_frag));
1473 symbol_table_insert (symbol_new ("$kt1", reg_section, KT1,
1474 &zero_address_frag));
1475 symbol_table_insert (symbol_new ("$zero", reg_section, ZERO,
1476 &zero_address_frag));
1477 symbol_table_insert (symbol_new ("$pc", reg_section, -1,
1478 &zero_address_frag));
1479
1480 /* If we don't add these register names to the symbol table, they
1481 may end up being added as regular symbols by operand(), and then
1482 make it to the object file as undefined in case they're not
1483 regarded as local symbols. They're local in o32, since `$' is a
1484 local symbol prefix, but not in n32 or n64. */
1485 for (i = 0; i < 8; i++)
1486 {
1487 char buf[6];
1488
1489 sprintf (buf, "$fcc%i", i);
1490 symbol_table_insert (symbol_new (buf, reg_section, -1,
1491 &zero_address_frag));
1492 }
1493
1494 mips_no_prev_insn ();
1495
1496 mips_gprmask = 0;
1497 mips_cprmask[0] = 0;
1498 mips_cprmask[1] = 0;
1499 mips_cprmask[2] = 0;
1500 mips_cprmask[3] = 0;
1501
1502 /* set the default alignment for the text section (2**2) */
1503 record_alignment (text_section, 2);
1504
1505 bfd_set_gp_size (stdoutput, g_switch_value);
1506
1507 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1508 {
1509 /* On a native system, sections must be aligned to 16 byte
1510 boundaries. When configured for an embedded ELF target, we
1511 don't bother. */
1512 if (strcmp (TARGET_OS, "elf") != 0)
1513 {
1514 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
1515 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
1516 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
1517 }
1518
1519 /* Create a .reginfo section for register masks and a .mdebug
1520 section for debugging information. */
1521 {
1522 segT seg;
1523 subsegT subseg;
1524 flagword flags;
1525 segT sec;
1526
1527 seg = now_seg;
1528 subseg = now_subseg;
1529
1530 /* The ABI says this section should be loaded so that the
1531 running program can access it. However, we don't load it
1532 if we are configured for an embedded target */
1533 flags = SEC_READONLY | SEC_DATA;
1534 if (strcmp (TARGET_OS, "elf") != 0)
1535 flags |= SEC_ALLOC | SEC_LOAD;
1536
1537 if (mips_abi != N64_ABI)
1538 {
1539 sec = subseg_new (".reginfo", (subsegT) 0);
1540
1541 bfd_set_section_flags (stdoutput, sec, flags);
1542 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
1543
1544 #ifdef OBJ_ELF
1545 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
1546 #endif
1547 }
1548 else
1549 {
1550 /* The 64-bit ABI uses a .MIPS.options section rather than
1551 .reginfo section. */
1552 sec = subseg_new (".MIPS.options", (subsegT) 0);
1553 bfd_set_section_flags (stdoutput, sec, flags);
1554 bfd_set_section_alignment (stdoutput, sec, 3);
1555
1556 #ifdef OBJ_ELF
1557 /* Set up the option header. */
1558 {
1559 Elf_Internal_Options opthdr;
1560 char *f;
1561
1562 opthdr.kind = ODK_REGINFO;
1563 opthdr.size = (sizeof (Elf_External_Options)
1564 + sizeof (Elf64_External_RegInfo));
1565 opthdr.section = 0;
1566 opthdr.info = 0;
1567 f = frag_more (sizeof (Elf_External_Options));
1568 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
1569 (Elf_External_Options *) f);
1570
1571 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
1572 }
1573 #endif
1574 }
1575
1576 if (ECOFF_DEBUGGING)
1577 {
1578 sec = subseg_new (".mdebug", (subsegT) 0);
1579 (void) bfd_set_section_flags (stdoutput, sec,
1580 SEC_HAS_CONTENTS | SEC_READONLY);
1581 (void) bfd_set_section_alignment (stdoutput, sec, 2);
1582 }
1583 #ifdef OBJ_ELF
1584 else if (OUTPUT_FLAVOR == bfd_target_elf_flavour && mips_flag_pdr)
1585 {
1586 pdr_seg = subseg_new (".pdr", (subsegT) 0);
1587 (void) bfd_set_section_flags (stdoutput, pdr_seg,
1588 SEC_READONLY | SEC_RELOC
1589 | SEC_DEBUGGING);
1590 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
1591 }
1592 #endif
1593
1594 subseg_set (seg, subseg);
1595 }
1596 }
1597
1598 if (! ECOFF_DEBUGGING)
1599 md_obj_begin ();
1600
1601 if (mips_fix_vr4120)
1602 init_vr4120_conflicts ();
1603 }
1604
1605 void
1606 md_mips_end (void)
1607 {
1608 if (! ECOFF_DEBUGGING)
1609 md_obj_end ();
1610 }
1611
1612 void
1613 md_assemble (char *str)
1614 {
1615 struct mips_cl_insn insn;
1616 bfd_reloc_code_real_type unused_reloc[3]
1617 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1618
1619 imm_expr.X_op = O_absent;
1620 imm2_expr.X_op = O_absent;
1621 offset_expr.X_op = O_absent;
1622 imm_reloc[0] = BFD_RELOC_UNUSED;
1623 imm_reloc[1] = BFD_RELOC_UNUSED;
1624 imm_reloc[2] = BFD_RELOC_UNUSED;
1625 offset_reloc[0] = BFD_RELOC_UNUSED;
1626 offset_reloc[1] = BFD_RELOC_UNUSED;
1627 offset_reloc[2] = BFD_RELOC_UNUSED;
1628
1629 if (mips_opts.mips16)
1630 mips16_ip (str, &insn);
1631 else
1632 {
1633 mips_ip (str, &insn);
1634 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
1635 str, insn.insn_opcode));
1636 }
1637
1638 if (insn_error)
1639 {
1640 as_bad ("%s `%s'", insn_error, str);
1641 return;
1642 }
1643
1644 if (insn.insn_mo->pinfo == INSN_MACRO)
1645 {
1646 macro_start ();
1647 if (mips_opts.mips16)
1648 mips16_macro (&insn);
1649 else
1650 macro (&insn);
1651 macro_end ();
1652 }
1653 else
1654 {
1655 if (imm_expr.X_op != O_absent)
1656 append_insn (&insn, &imm_expr, imm_reloc);
1657 else if (offset_expr.X_op != O_absent)
1658 append_insn (&insn, &offset_expr, offset_reloc);
1659 else
1660 append_insn (&insn, NULL, unused_reloc);
1661 }
1662 }
1663
1664 /* Return true if the given relocation might need a matching %lo().
1665 Note that R_MIPS_GOT16 relocations only need a matching %lo() when
1666 applied to local symbols. */
1667
1668 static inline bfd_boolean
1669 reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
1670 {
1671 return (HAVE_IN_PLACE_ADDENDS
1672 && (reloc == BFD_RELOC_HI16_S
1673 || reloc == BFD_RELOC_MIPS_GOT16
1674 || reloc == BFD_RELOC_MIPS16_HI16_S));
1675 }
1676
1677 /* Return true if the given fixup is followed by a matching R_MIPS_LO16
1678 relocation. */
1679
1680 static inline bfd_boolean
1681 fixup_has_matching_lo_p (fixS *fixp)
1682 {
1683 return (fixp->fx_next != NULL
1684 && (fixp->fx_next->fx_r_type == BFD_RELOC_LO16
1685 || fixp->fx_next->fx_r_type == BFD_RELOC_MIPS16_LO16)
1686 && fixp->fx_addsy == fixp->fx_next->fx_addsy
1687 && fixp->fx_offset == fixp->fx_next->fx_offset);
1688 }
1689
1690 /* See whether instruction IP reads register REG. CLASS is the type
1691 of register. */
1692
1693 static int
1694 insn_uses_reg (const struct mips_cl_insn *ip, unsigned int reg,
1695 enum mips_regclass class)
1696 {
1697 if (class == MIPS16_REG)
1698 {
1699 assert (mips_opts.mips16);
1700 reg = mips16_to_32_reg_map[reg];
1701 class = MIPS_GR_REG;
1702 }
1703
1704 /* Don't report on general register ZERO, since it never changes. */
1705 if (class == MIPS_GR_REG && reg == ZERO)
1706 return 0;
1707
1708 if (class == MIPS_FP_REG)
1709 {
1710 assert (! mips_opts.mips16);
1711 /* If we are called with either $f0 or $f1, we must check $f0.
1712 This is not optimal, because it will introduce an unnecessary
1713 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
1714 need to distinguish reading both $f0 and $f1 or just one of
1715 them. Note that we don't have to check the other way,
1716 because there is no instruction that sets both $f0 and $f1
1717 and requires a delay. */
1718 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
1719 && ((EXTRACT_OPERAND (FS, *ip) & ~(unsigned) 1)
1720 == (reg &~ (unsigned) 1)))
1721 return 1;
1722 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
1723 && ((EXTRACT_OPERAND (FT, *ip) & ~(unsigned) 1)
1724 == (reg &~ (unsigned) 1)))
1725 return 1;
1726 }
1727 else if (! mips_opts.mips16)
1728 {
1729 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
1730 && EXTRACT_OPERAND (RS, *ip) == reg)
1731 return 1;
1732 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
1733 && EXTRACT_OPERAND (RT, *ip) == reg)
1734 return 1;
1735 }
1736 else
1737 {
1738 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
1739 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)] == reg)
1740 return 1;
1741 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
1742 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)] == reg)
1743 return 1;
1744 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
1745 && (mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]
1746 == reg))
1747 return 1;
1748 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
1749 return 1;
1750 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
1751 return 1;
1752 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
1753 return 1;
1754 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
1755 && MIPS16_EXTRACT_OPERAND (REGR32, *ip) == reg)
1756 return 1;
1757 }
1758
1759 return 0;
1760 }
1761
1762 /* This function returns true if modifying a register requires a
1763 delay. */
1764
1765 static int
1766 reg_needs_delay (unsigned int reg)
1767 {
1768 unsigned long prev_pinfo;
1769
1770 prev_pinfo = history[0].insn_mo->pinfo;
1771 if (! mips_opts.noreorder
1772 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
1773 && ! gpr_interlocks)
1774 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1775 && ! cop_interlocks)))
1776 {
1777 /* A load from a coprocessor or from memory. All load delays
1778 delay the use of general register rt for one instruction. */
1779 /* Itbl support may require additional care here. */
1780 know (prev_pinfo & INSN_WRITE_GPR_T);
1781 if (reg == EXTRACT_OPERAND (RT, history[0]))
1782 return 1;
1783 }
1784
1785 return 0;
1786 }
1787
1788 /* Move all labels in insn_labels to the current insertion point. */
1789
1790 static void
1791 mips_move_labels (void)
1792 {
1793 struct insn_label_list *l;
1794 valueT val;
1795
1796 for (l = insn_labels; l != NULL; l = l->next)
1797 {
1798 assert (S_GET_SEGMENT (l->label) == now_seg);
1799 symbol_set_frag (l->label, frag_now);
1800 val = (valueT) frag_now_fix ();
1801 /* mips16 text labels are stored as odd. */
1802 if (mips_opts.mips16)
1803 ++val;
1804 S_SET_VALUE (l->label, val);
1805 }
1806 }
1807
1808 /* Mark instruction labels in mips16 mode. This permits the linker to
1809 handle them specially, such as generating jalx instructions when
1810 needed. We also make them odd for the duration of the assembly, in
1811 order to generate the right sort of code. We will make them even
1812 in the adjust_symtab routine, while leaving them marked. This is
1813 convenient for the debugger and the disassembler. The linker knows
1814 to make them odd again. */
1815
1816 static void
1817 mips16_mark_labels (void)
1818 {
1819 if (mips_opts.mips16)
1820 {
1821 struct insn_label_list *l;
1822 valueT val;
1823
1824 for (l = insn_labels; l != NULL; l = l->next)
1825 {
1826 #ifdef OBJ_ELF
1827 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1828 S_SET_OTHER (l->label, STO_MIPS16);
1829 #endif
1830 val = S_GET_VALUE (l->label);
1831 if ((val & 1) == 0)
1832 S_SET_VALUE (l->label, val + 1);
1833 }
1834 }
1835 }
1836
1837 /* End the current frag. Make it a variant frag and record the
1838 relaxation info. */
1839
1840 static void
1841 relax_close_frag (void)
1842 {
1843 mips_macro_warning.first_frag = frag_now;
1844 frag_var (rs_machine_dependent, 0, 0,
1845 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
1846 mips_relax.symbol, 0, (char *) mips_relax.first_fixup);
1847
1848 memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes));
1849 mips_relax.first_fixup = 0;
1850 }
1851
1852 /* Start a new relaxation sequence whose expansion depends on SYMBOL.
1853 See the comment above RELAX_ENCODE for more details. */
1854
1855 static void
1856 relax_start (symbolS *symbol)
1857 {
1858 assert (mips_relax.sequence == 0);
1859 mips_relax.sequence = 1;
1860 mips_relax.symbol = symbol;
1861 }
1862
1863 /* Start generating the second version of a relaxable sequence.
1864 See the comment above RELAX_ENCODE for more details. */
1865
1866 static void
1867 relax_switch (void)
1868 {
1869 assert (mips_relax.sequence == 1);
1870 mips_relax.sequence = 2;
1871 }
1872
1873 /* End the current relaxable sequence. */
1874
1875 static void
1876 relax_end (void)
1877 {
1878 assert (mips_relax.sequence == 2);
1879 relax_close_frag ();
1880 mips_relax.sequence = 0;
1881 }
1882
1883 /* Classify an instruction according to the FIX_VR4120_* enumeration.
1884 Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected
1885 by VR4120 errata. */
1886
1887 static unsigned int
1888 classify_vr4120_insn (const char *name)
1889 {
1890 if (strncmp (name, "macc", 4) == 0)
1891 return FIX_VR4120_MACC;
1892 if (strncmp (name, "dmacc", 5) == 0)
1893 return FIX_VR4120_DMACC;
1894 if (strncmp (name, "mult", 4) == 0)
1895 return FIX_VR4120_MULT;
1896 if (strncmp (name, "dmult", 5) == 0)
1897 return FIX_VR4120_DMULT;
1898 if (strstr (name, "div"))
1899 return FIX_VR4120_DIV;
1900 if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0)
1901 return FIX_VR4120_MTHILO;
1902 return NUM_FIX_VR4120_CLASSES;
1903 }
1904
1905 /* Return the number of instructions that must separate INSN1 and INSN2,
1906 where INSN1 is the earlier instruction. Return the worst-case value
1907 for any INSN2 if INSN2 is null. */
1908
1909 static unsigned int
1910 insns_between (const struct mips_cl_insn *insn1,
1911 const struct mips_cl_insn *insn2)
1912 {
1913 unsigned long pinfo1, pinfo2;
1914
1915 /* This function needs to know which pinfo flags are set for INSN2
1916 and which registers INSN2 uses. The former is stored in PINFO2 and
1917 the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2
1918 will have every flag set and INSN2_USES_REG will always return true. */
1919 pinfo1 = insn1->insn_mo->pinfo;
1920 pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U;
1921
1922 #define INSN2_USES_REG(REG, CLASS) \
1923 (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS))
1924
1925 /* For most targets, write-after-read dependencies on the HI and LO
1926 registers must be separated by at least two instructions. */
1927 if (!hilo_interlocks)
1928 {
1929 if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO))
1930 return 2;
1931 if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI))
1932 return 2;
1933 }
1934
1935 /* If we're working around r7000 errata, there must be two instructions
1936 between an mfhi or mflo and any instruction that uses the result. */
1937 if (mips_7000_hilo_fix
1938 && MF_HILO_INSN (pinfo1)
1939 && INSN2_USES_REG (EXTRACT_OPERAND (RD, *insn1), MIPS_GR_REG))
1940 return 2;
1941
1942 /* If working around VR4120 errata, check for combinations that need
1943 a single intervening instruction. */
1944 if (mips_fix_vr4120)
1945 {
1946 unsigned int class1, class2;
1947
1948 class1 = classify_vr4120_insn (insn1->insn_mo->name);
1949 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
1950 {
1951 if (insn2 == NULL)
1952 return 1;
1953 class2 = classify_vr4120_insn (insn2->insn_mo->name);
1954 if (vr4120_conflicts[class1] & (1 << class2))
1955 return 1;
1956 }
1957 }
1958
1959 if (!mips_opts.mips16)
1960 {
1961 /* Check for GPR or coprocessor load delays. All such delays
1962 are on the RT register. */
1963 /* Itbl support may require additional care here. */
1964 if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY))
1965 || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY)))
1966 {
1967 know (pinfo1 & INSN_WRITE_GPR_T);
1968 if (INSN2_USES_REG (EXTRACT_OPERAND (RT, *insn1), MIPS_GR_REG))
1969 return 1;
1970 }
1971
1972 /* Check for generic coprocessor hazards.
1973
1974 This case is not handled very well. There is no special
1975 knowledge of CP0 handling, and the coprocessors other than
1976 the floating point unit are not distinguished at all. */
1977 /* Itbl support may require additional care here. FIXME!
1978 Need to modify this to include knowledge about
1979 user specified delays! */
1980 else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY))
1981 || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY)))
1982 {
1983 /* Handle cases where INSN1 writes to a known general coprocessor
1984 register. There must be a one instruction delay before INSN2
1985 if INSN2 reads that register, otherwise no delay is needed. */
1986 if (pinfo1 & INSN_WRITE_FPR_T)
1987 {
1988 if (INSN2_USES_REG (EXTRACT_OPERAND (FT, *insn1), MIPS_FP_REG))
1989 return 1;
1990 }
1991 else if (pinfo1 & INSN_WRITE_FPR_S)
1992 {
1993 if (INSN2_USES_REG (EXTRACT_OPERAND (FS, *insn1), MIPS_FP_REG))
1994 return 1;
1995 }
1996 else
1997 {
1998 /* Read-after-write dependencies on the control registers
1999 require a two-instruction gap. */
2000 if ((pinfo1 & INSN_WRITE_COND_CODE)
2001 && (pinfo2 & INSN_READ_COND_CODE))
2002 return 2;
2003
2004 /* We don't know exactly what INSN1 does. If INSN2 is
2005 also a coprocessor instruction, assume there must be
2006 a one instruction gap. */
2007 if (pinfo2 & INSN_COP)
2008 return 1;
2009 }
2010 }
2011
2012 /* Check for read-after-write dependencies on the coprocessor
2013 control registers in cases where INSN1 does not need a general
2014 coprocessor delay. This means that INSN1 is a floating point
2015 comparison instruction. */
2016 /* Itbl support may require additional care here. */
2017 else if (!cop_interlocks
2018 && (pinfo1 & INSN_WRITE_COND_CODE)
2019 && (pinfo2 & INSN_READ_COND_CODE))
2020 return 1;
2021 }
2022
2023 #undef INSN2_USES_REG
2024
2025 return 0;
2026 }
2027
2028 /* Return the number of nops that would be needed to work around the
2029 VR4130 mflo/mfhi errata if instruction INSN immediately followed
2030 the MAX_VR4130_NOPS instructions described by HISTORY. */
2031
2032 static int
2033 nops_for_vr4130 (const struct mips_cl_insn *history,
2034 const struct mips_cl_insn *insn)
2035 {
2036 int i, j, reg;
2037
2038 /* Check if the instruction writes to HI or LO. MTHI and MTLO
2039 are not affected by the errata. */
2040 if (insn != 0
2041 && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0
2042 || strcmp (insn->insn_mo->name, "mtlo") == 0
2043 || strcmp (insn->insn_mo->name, "mthi") == 0))
2044 return 0;
2045
2046 /* Search for the first MFLO or MFHI. */
2047 for (i = 0; i < MAX_VR4130_NOPS; i++)
2048 if (!history[i].noreorder_p && MF_HILO_INSN (history[i].insn_mo->pinfo))
2049 {
2050 /* Extract the destination register. */
2051 if (mips_opts.mips16)
2052 reg = mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, history[i])];
2053 else
2054 reg = EXTRACT_OPERAND (RD, history[i]);
2055
2056 /* No nops are needed if INSN reads that register. */
2057 if (insn != NULL && insn_uses_reg (insn, reg, MIPS_GR_REG))
2058 return 0;
2059
2060 /* ...or if any of the intervening instructions do. */
2061 for (j = 0; j < i; j++)
2062 if (insn_uses_reg (&history[j], reg, MIPS_GR_REG))
2063 return 0;
2064
2065 return MAX_VR4130_NOPS - i;
2066 }
2067 return 0;
2068 }
2069
2070 /* Return the number of nops that would be needed if instruction INSN
2071 immediately followed the MAX_NOPS instructions given by HISTORY,
2072 where HISTORY[0] is the most recent instruction. If INSN is null,
2073 return the worse-case number of nops for any instruction. */
2074
2075 static int
2076 nops_for_insn (const struct mips_cl_insn *history,
2077 const struct mips_cl_insn *insn)
2078 {
2079 int i, nops, tmp_nops;
2080
2081 nops = 0;
2082 for (i = 0; i < MAX_DELAY_NOPS; i++)
2083 if (!history[i].noreorder_p)
2084 {
2085 tmp_nops = insns_between (history + i, insn) - i;
2086 if (tmp_nops > nops)
2087 nops = tmp_nops;
2088 }
2089
2090 if (mips_fix_vr4130)
2091 {
2092 tmp_nops = nops_for_vr4130 (history, insn);
2093 if (tmp_nops > nops)
2094 nops = tmp_nops;
2095 }
2096
2097 return nops;
2098 }
2099
2100 /* The variable arguments provide NUM_INSNS extra instructions that
2101 might be added to HISTORY. Return the largest number of nops that
2102 would be needed after the extended sequence. */
2103
2104 static int
2105 nops_for_sequence (int num_insns, const struct mips_cl_insn *history, ...)
2106 {
2107 va_list args;
2108 struct mips_cl_insn buffer[MAX_NOPS];
2109 struct mips_cl_insn *cursor;
2110 int nops;
2111
2112 va_start (args, history);
2113 cursor = buffer + num_insns;
2114 memcpy (cursor, history, (MAX_NOPS - num_insns) * sizeof (*cursor));
2115 while (cursor > buffer)
2116 *--cursor = *va_arg (args, const struct mips_cl_insn *);
2117
2118 nops = nops_for_insn (buffer, NULL);
2119 va_end (args);
2120 return nops;
2121 }
2122
2123 /* Like nops_for_insn, but if INSN is a branch, take into account the
2124 worst-case delay for the branch target. */
2125
2126 static int
2127 nops_for_insn_or_target (const struct mips_cl_insn *history,
2128 const struct mips_cl_insn *insn)
2129 {
2130 int nops, tmp_nops;
2131
2132 nops = nops_for_insn (history, insn);
2133 if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY
2134 | INSN_COND_BRANCH_DELAY
2135 | INSN_COND_BRANCH_LIKELY))
2136 {
2137 tmp_nops = nops_for_sequence (2, history, insn, NOP_INSN);
2138 if (tmp_nops > nops)
2139 nops = tmp_nops;
2140 }
2141 else if (mips_opts.mips16 && (insn->insn_mo->pinfo & MIPS16_INSN_BRANCH))
2142 {
2143 tmp_nops = nops_for_sequence (1, history, insn);
2144 if (tmp_nops > nops)
2145 nops = tmp_nops;
2146 }
2147 return nops;
2148 }
2149
2150 /* Output an instruction. IP is the instruction information.
2151 ADDRESS_EXPR is an operand of the instruction to be used with
2152 RELOC_TYPE. */
2153
2154 static void
2155 append_insn (struct mips_cl_insn *ip, expressionS *address_expr,
2156 bfd_reloc_code_real_type *reloc_type)
2157 {
2158 register unsigned long prev_pinfo, pinfo;
2159 relax_stateT prev_insn_frag_type = 0;
2160 bfd_boolean relaxed_branch = FALSE;
2161
2162 /* Mark instruction labels in mips16 mode. */
2163 mips16_mark_labels ();
2164
2165 prev_pinfo = history[0].insn_mo->pinfo;
2166 pinfo = ip->insn_mo->pinfo;
2167
2168 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
2169 {
2170 /* There are a lot of optimizations we could do that we don't.
2171 In particular, we do not, in general, reorder instructions.
2172 If you use gcc with optimization, it will reorder
2173 instructions and generally do much more optimization then we
2174 do here; repeating all that work in the assembler would only
2175 benefit hand written assembly code, and does not seem worth
2176 it. */
2177 int nops = (mips_optimize == 0
2178 ? nops_for_insn (history, NULL)
2179 : nops_for_insn_or_target (history, ip));
2180 if (nops > 0)
2181 {
2182 fragS *old_frag;
2183 unsigned long old_frag_offset;
2184 int i;
2185
2186 old_frag = frag_now;
2187 old_frag_offset = frag_now_fix ();
2188
2189 for (i = 0; i < nops; i++)
2190 emit_nop ();
2191
2192 if (listing)
2193 {
2194 listing_prev_line ();
2195 /* We may be at the start of a variant frag. In case we
2196 are, make sure there is enough space for the frag
2197 after the frags created by listing_prev_line. The
2198 argument to frag_grow here must be at least as large
2199 as the argument to all other calls to frag_grow in
2200 this file. We don't have to worry about being in the
2201 middle of a variant frag, because the variants insert
2202 all needed nop instructions themselves. */
2203 frag_grow (40);
2204 }
2205
2206 mips_move_labels ();
2207
2208 #ifndef NO_ECOFF_DEBUGGING
2209 if (ECOFF_DEBUGGING)
2210 ecoff_fix_loc (old_frag, old_frag_offset);
2211 #endif
2212 }
2213 }
2214 else if (mips_relax.sequence != 2 && prev_nop_frag != NULL)
2215 {
2216 /* Work out how many nops in prev_nop_frag are needed by IP. */
2217 int nops = nops_for_insn_or_target (history, ip);
2218 assert (nops <= prev_nop_frag_holds);
2219
2220 /* Enforce NOPS as a minimum. */
2221 if (nops > prev_nop_frag_required)
2222 prev_nop_frag_required = nops;
2223
2224 if (prev_nop_frag_holds == prev_nop_frag_required)
2225 {
2226 /* Settle for the current number of nops. Update the history
2227 accordingly (for the benefit of any future .set reorder code). */
2228 prev_nop_frag = NULL;
2229 insert_into_history (prev_nop_frag_since,
2230 prev_nop_frag_holds, NOP_INSN);
2231 }
2232 else
2233 {
2234 /* Allow this instruction to replace one of the nops that was
2235 tentatively added to prev_nop_frag. */
2236 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
2237 prev_nop_frag_holds--;
2238 prev_nop_frag_since++;
2239 }
2240 }
2241
2242 #ifdef OBJ_ELF
2243 /* The value passed to dwarf2_emit_insn is the distance between
2244 the beginning of the current instruction and the address that
2245 should be recorded in the debug tables. For MIPS16 debug info
2246 we want to use ISA-encoded addresses, so we pass -1 for an
2247 address higher by one than the current. */
2248 dwarf2_emit_insn (mips_opts.mips16 ? -1 : 0);
2249 #endif
2250
2251 /* Record the frag type before frag_var. */
2252 if (history[0].frag)
2253 prev_insn_frag_type = history[0].frag->fr_type;
2254
2255 if (address_expr
2256 && *reloc_type == BFD_RELOC_16_PCREL_S2
2257 && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
2258 || pinfo & INSN_COND_BRANCH_LIKELY)
2259 && mips_relax_branch
2260 /* Don't try branch relaxation within .set nomacro, or within
2261 .set noat if we use $at for PIC computations. If it turns
2262 out that the branch was out-of-range, we'll get an error. */
2263 && !mips_opts.warn_about_macros
2264 && !(mips_opts.noat && mips_pic != NO_PIC)
2265 && !mips_opts.mips16)
2266 {
2267 relaxed_branch = TRUE;
2268 add_relaxed_insn (ip, (relaxed_branch_length
2269 (NULL, NULL,
2270 (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
2271 : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1
2272 : 0)), 4,
2273 RELAX_BRANCH_ENCODE
2274 (pinfo & INSN_UNCOND_BRANCH_DELAY,
2275 pinfo & INSN_COND_BRANCH_LIKELY,
2276 pinfo & INSN_WRITE_GPR_31,
2277 0),
2278 address_expr->X_add_symbol,
2279 address_expr->X_add_number);
2280 *reloc_type = BFD_RELOC_UNUSED;
2281 }
2282 else if (*reloc_type > BFD_RELOC_UNUSED)
2283 {
2284 /* We need to set up a variant frag. */
2285 assert (mips_opts.mips16 && address_expr != NULL);
2286 add_relaxed_insn (ip, 4, 0,
2287 RELAX_MIPS16_ENCODE
2288 (*reloc_type - BFD_RELOC_UNUSED,
2289 mips16_small, mips16_ext,
2290 prev_pinfo & INSN_UNCOND_BRANCH_DELAY,
2291 history[0].mips16_absolute_jump_p),
2292 make_expr_symbol (address_expr), 0);
2293 }
2294 else if (mips_opts.mips16
2295 && ! ip->use_extend
2296 && *reloc_type != BFD_RELOC_MIPS16_JMP)
2297 {
2298 /* Make sure there is enough room to swap this instruction with
2299 a following jump instruction. */
2300 frag_grow (6);
2301 add_fixed_insn (ip);
2302 }
2303 else
2304 {
2305 if (mips_opts.mips16
2306 && mips_opts.noreorder
2307 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
2308 as_warn (_("extended instruction in delay slot"));
2309
2310 if (mips_relax.sequence)
2311 {
2312 /* If we've reached the end of this frag, turn it into a variant
2313 frag and record the information for the instructions we've
2314 written so far. */
2315 if (frag_room () < 4)
2316 relax_close_frag ();
2317 mips_relax.sizes[mips_relax.sequence - 1] += 4;
2318 }
2319
2320 if (mips_relax.sequence != 2)
2321 mips_macro_warning.sizes[0] += 4;
2322 if (mips_relax.sequence != 1)
2323 mips_macro_warning.sizes[1] += 4;
2324
2325 if (mips_opts.mips16)
2326 {
2327 ip->fixed_p = 1;
2328 ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP);
2329 }
2330 add_fixed_insn (ip);
2331 }
2332
2333 if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED)
2334 {
2335 if (address_expr->X_op == O_constant)
2336 {
2337 unsigned int tmp;
2338
2339 switch (*reloc_type)
2340 {
2341 case BFD_RELOC_32:
2342 ip->insn_opcode |= address_expr->X_add_number;
2343 break;
2344
2345 case BFD_RELOC_MIPS_HIGHEST:
2346 tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
2347 ip->insn_opcode |= tmp & 0xffff;
2348 break;
2349
2350 case BFD_RELOC_MIPS_HIGHER:
2351 tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
2352 ip->insn_opcode |= tmp & 0xffff;
2353 break;
2354
2355 case BFD_RELOC_HI16_S:
2356 tmp = (address_expr->X_add_number + 0x8000) >> 16;
2357 ip->insn_opcode |= tmp & 0xffff;
2358 break;
2359
2360 case BFD_RELOC_HI16:
2361 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
2362 break;
2363
2364 case BFD_RELOC_UNUSED:
2365 case BFD_RELOC_LO16:
2366 case BFD_RELOC_MIPS_GOT_DISP:
2367 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
2368 break;
2369
2370 case BFD_RELOC_MIPS_JMP:
2371 if ((address_expr->X_add_number & 3) != 0)
2372 as_bad (_("jump to misaligned address (0x%lx)"),
2373 (unsigned long) address_expr->X_add_number);
2374 if (address_expr->X_add_number & ~0xfffffff)
2375 as_bad (_("jump address range overflow (0x%lx)"),
2376 (unsigned long) address_expr->X_add_number);
2377 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
2378 break;
2379
2380 case BFD_RELOC_MIPS16_JMP:
2381 if ((address_expr->X_add_number & 3) != 0)
2382 as_bad (_("jump to misaligned address (0x%lx)"),
2383 (unsigned long) address_expr->X_add_number);
2384 if (address_expr->X_add_number & ~0xfffffff)
2385 as_bad (_("jump address range overflow (0x%lx)"),
2386 (unsigned long) address_expr->X_add_number);
2387 ip->insn_opcode |=
2388 (((address_expr->X_add_number & 0x7c0000) << 3)
2389 | ((address_expr->X_add_number & 0xf800000) >> 7)
2390 | ((address_expr->X_add_number & 0x3fffc) >> 2));
2391 break;
2392
2393 case BFD_RELOC_16_PCREL_S2:
2394 goto need_reloc;
2395
2396 default:
2397 internalError ();
2398 }
2399 }
2400 else if (*reloc_type < BFD_RELOC_UNUSED)
2401 need_reloc:
2402 {
2403 reloc_howto_type *howto;
2404 int i;
2405
2406 /* In a compound relocation, it is the final (outermost)
2407 operator that determines the relocated field. */
2408 for (i = 1; i < 3; i++)
2409 if (reloc_type[i] == BFD_RELOC_UNUSED)
2410 break;
2411
2412 howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
2413 ip->fixp[0] = fix_new_exp (ip->frag, ip->where,
2414 bfd_get_reloc_size (howto),
2415 address_expr,
2416 reloc_type[0] == BFD_RELOC_16_PCREL_S2,
2417 reloc_type[0]);
2418
2419 /* These relocations can have an addend that won't fit in
2420 4 octets for 64bit assembly. */
2421 if (HAVE_64BIT_GPRS
2422 && ! howto->partial_inplace
2423 && (reloc_type[0] == BFD_RELOC_16
2424 || reloc_type[0] == BFD_RELOC_32
2425 || reloc_type[0] == BFD_RELOC_MIPS_JMP
2426 || reloc_type[0] == BFD_RELOC_HI16_S
2427 || reloc_type[0] == BFD_RELOC_LO16
2428 || reloc_type[0] == BFD_RELOC_GPREL16
2429 || reloc_type[0] == BFD_RELOC_MIPS_LITERAL
2430 || reloc_type[0] == BFD_RELOC_GPREL32
2431 || reloc_type[0] == BFD_RELOC_64
2432 || reloc_type[0] == BFD_RELOC_CTOR
2433 || reloc_type[0] == BFD_RELOC_MIPS_SUB
2434 || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST
2435 || reloc_type[0] == BFD_RELOC_MIPS_HIGHER
2436 || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP
2437 || reloc_type[0] == BFD_RELOC_MIPS_REL16
2438 || reloc_type[0] == BFD_RELOC_MIPS_RELGOT
2439 || reloc_type[0] == BFD_RELOC_MIPS16_GPREL
2440 || reloc_type[0] == BFD_RELOC_MIPS16_HI16_S
2441 || reloc_type[0] == BFD_RELOC_MIPS16_LO16))
2442 ip->fixp[0]->fx_no_overflow = 1;
2443
2444 if (mips_relax.sequence)
2445 {
2446 if (mips_relax.first_fixup == 0)
2447 mips_relax.first_fixup = ip->fixp[0];
2448 }
2449 else if (reloc_needs_lo_p (*reloc_type))
2450 {
2451 struct mips_hi_fixup *hi_fixup;
2452
2453 /* Reuse the last entry if it already has a matching %lo. */
2454 hi_fixup = mips_hi_fixup_list;
2455 if (hi_fixup == 0
2456 || !fixup_has_matching_lo_p (hi_fixup->fixp))
2457 {
2458 hi_fixup = ((struct mips_hi_fixup *)
2459 xmalloc (sizeof (struct mips_hi_fixup)));
2460 hi_fixup->next = mips_hi_fixup_list;
2461 mips_hi_fixup_list = hi_fixup;
2462 }
2463 hi_fixup->fixp = ip->fixp[0];
2464 hi_fixup->seg = now_seg;
2465 }
2466
2467 /* Add fixups for the second and third relocations, if given.
2468 Note that the ABI allows the second relocation to be
2469 against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the
2470 moment we only use RSS_UNDEF, but we could add support
2471 for the others if it ever becomes necessary. */
2472 for (i = 1; i < 3; i++)
2473 if (reloc_type[i] != BFD_RELOC_UNUSED)
2474 {
2475 ip->fixp[i] = fix_new (ip->frag, ip->where,
2476 ip->fixp[0]->fx_size, NULL, 0,
2477 FALSE, reloc_type[i]);
2478
2479 /* Use fx_tcbit to mark compound relocs. */
2480 ip->fixp[0]->fx_tcbit = 1;
2481 ip->fixp[i]->fx_tcbit = 1;
2482 }
2483 }
2484 }
2485 install_insn (ip);
2486
2487 /* Update the register mask information. */
2488 if (! mips_opts.mips16)
2489 {
2490 if (pinfo & INSN_WRITE_GPR_D)
2491 mips_gprmask |= 1 << EXTRACT_OPERAND (RD, *ip);
2492 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
2493 mips_gprmask |= 1 << EXTRACT_OPERAND (RT, *ip);
2494 if (pinfo & INSN_READ_GPR_S)
2495 mips_gprmask |= 1 << EXTRACT_OPERAND (RS, *ip);
2496 if (pinfo & INSN_WRITE_GPR_31)
2497 mips_gprmask |= 1 << RA;
2498 if (pinfo & INSN_WRITE_FPR_D)
2499 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FD, *ip);
2500 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
2501 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FS, *ip);
2502 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
2503 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FT, *ip);
2504 if ((pinfo & INSN_READ_FPR_R) != 0)
2505 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FR, *ip);
2506 if (pinfo & INSN_COP)
2507 {
2508 /* We don't keep enough information to sort these cases out.
2509 The itbl support does keep this information however, although
2510 we currently don't support itbl fprmats as part of the cop
2511 instruction. May want to add this support in the future. */
2512 }
2513 /* Never set the bit for $0, which is always zero. */
2514 mips_gprmask &= ~1 << 0;
2515 }
2516 else
2517 {
2518 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
2519 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RX, *ip);
2520 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
2521 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RY, *ip);
2522 if (pinfo & MIPS16_INSN_WRITE_Z)
2523 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RZ, *ip);
2524 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
2525 mips_gprmask |= 1 << TREG;
2526 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
2527 mips_gprmask |= 1 << SP;
2528 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
2529 mips_gprmask |= 1 << RA;
2530 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
2531 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
2532 if (pinfo & MIPS16_INSN_READ_Z)
2533 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip);
2534 if (pinfo & MIPS16_INSN_READ_GPR_X)
2535 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
2536 }
2537
2538 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
2539 {
2540 /* Filling the branch delay slot is more complex. We try to
2541 switch the branch with the previous instruction, which we can
2542 do if the previous instruction does not set up a condition
2543 that the branch tests and if the branch is not itself the
2544 target of any branch. */
2545 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
2546 || (pinfo & INSN_COND_BRANCH_DELAY))
2547 {
2548 if (mips_optimize < 2
2549 /* If we have seen .set volatile or .set nomove, don't
2550 optimize. */
2551 || mips_opts.nomove != 0
2552 /* We can't swap if the previous instruction's position
2553 is fixed. */
2554 || history[0].fixed_p
2555 /* If the previous previous insn was in a .set
2556 noreorder, we can't swap. Actually, the MIPS
2557 assembler will swap in this situation. However, gcc
2558 configured -with-gnu-as will generate code like
2559 .set noreorder
2560 lw $4,XXX
2561 .set reorder
2562 INSN
2563 bne $4,$0,foo
2564 in which we can not swap the bne and INSN. If gcc is
2565 not configured -with-gnu-as, it does not output the
2566 .set pseudo-ops. */
2567 || history[1].noreorder_p
2568 /* If the branch is itself the target of a branch, we
2569 can not swap. We cheat on this; all we check for is
2570 whether there is a label on this instruction. If
2571 there are any branches to anything other than a
2572 label, users must use .set noreorder. */
2573 || insn_labels != NULL
2574 /* If the previous instruction is in a variant frag
2575 other than this branch's one, we cannot do the swap.
2576 This does not apply to the mips16, which uses variant
2577 frags for different purposes. */
2578 || (! mips_opts.mips16
2579 && prev_insn_frag_type == rs_machine_dependent)
2580 /* Check for conflicts between the branch and the instructions
2581 before the candidate delay slot. */
2582 || nops_for_insn (history + 1, ip) > 0
2583 /* Check for conflicts between the swapped sequence and the
2584 target of the branch. */
2585 || nops_for_sequence (2, history + 1, ip, history) > 0
2586 /* We do not swap with a trap instruction, since it
2587 complicates trap handlers to have the trap
2588 instruction be in a delay slot. */
2589 || (prev_pinfo & INSN_TRAP)
2590 /* If the branch reads a register that the previous
2591 instruction sets, we can not swap. */
2592 || (! mips_opts.mips16
2593 && (prev_pinfo & INSN_WRITE_GPR_T)
2594 && insn_uses_reg (ip, EXTRACT_OPERAND (RT, history[0]),
2595 MIPS_GR_REG))
2596 || (! mips_opts.mips16
2597 && (prev_pinfo & INSN_WRITE_GPR_D)
2598 && insn_uses_reg (ip, EXTRACT_OPERAND (RD, history[0]),
2599 MIPS_GR_REG))
2600 || (mips_opts.mips16
2601 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
2602 && (insn_uses_reg
2603 (ip, MIPS16_EXTRACT_OPERAND (RX, history[0]),
2604 MIPS16_REG)))
2605 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
2606 && (insn_uses_reg
2607 (ip, MIPS16_EXTRACT_OPERAND (RY, history[0]),
2608 MIPS16_REG)))
2609 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
2610 && (insn_uses_reg
2611 (ip, MIPS16_EXTRACT_OPERAND (RZ, history[0]),
2612 MIPS16_REG)))
2613 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
2614 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
2615 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
2616 && insn_uses_reg (ip, RA, MIPS_GR_REG))
2617 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2618 && insn_uses_reg (ip,
2619 MIPS16OP_EXTRACT_REG32R
2620 (history[0].insn_opcode),
2621 MIPS_GR_REG))))
2622 /* If the branch writes a register that the previous
2623 instruction sets, we can not swap (we know that
2624 branches write only to RD or to $31). */
2625 || (! mips_opts.mips16
2626 && (prev_pinfo & INSN_WRITE_GPR_T)
2627 && (((pinfo & INSN_WRITE_GPR_D)
2628 && (EXTRACT_OPERAND (RT, history[0])
2629 == EXTRACT_OPERAND (RD, *ip)))
2630 || ((pinfo & INSN_WRITE_GPR_31)
2631 && EXTRACT_OPERAND (RT, history[0]) == RA)))
2632 || (! mips_opts.mips16
2633 && (prev_pinfo & INSN_WRITE_GPR_D)
2634 && (((pinfo & INSN_WRITE_GPR_D)
2635 && (EXTRACT_OPERAND (RD, history[0])
2636 == EXTRACT_OPERAND (RD, *ip)))
2637 || ((pinfo & INSN_WRITE_GPR_31)
2638 && EXTRACT_OPERAND (RD, history[0]) == RA)))
2639 || (mips_opts.mips16
2640 && (pinfo & MIPS16_INSN_WRITE_31)
2641 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
2642 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2643 && (MIPS16OP_EXTRACT_REG32R (history[0].insn_opcode)
2644 == RA))))
2645 /* If the branch writes a register that the previous
2646 instruction reads, we can not swap (we know that
2647 branches only write to RD or to $31). */
2648 || (! mips_opts.mips16
2649 && (pinfo & INSN_WRITE_GPR_D)
2650 && insn_uses_reg (&history[0],
2651 EXTRACT_OPERAND (RD, *ip),
2652 MIPS_GR_REG))
2653 || (! mips_opts.mips16
2654 && (pinfo & INSN_WRITE_GPR_31)
2655 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
2656 || (mips_opts.mips16
2657 && (pinfo & MIPS16_INSN_WRITE_31)
2658 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
2659 /* If one instruction sets a condition code and the
2660 other one uses a condition code, we can not swap. */
2661 || ((pinfo & INSN_READ_COND_CODE)
2662 && (prev_pinfo & INSN_WRITE_COND_CODE))
2663 || ((pinfo & INSN_WRITE_COND_CODE)
2664 && (prev_pinfo & INSN_READ_COND_CODE))
2665 /* If the previous instruction uses the PC, we can not
2666 swap. */
2667 || (mips_opts.mips16
2668 && (prev_pinfo & MIPS16_INSN_READ_PC))
2669 /* If the previous instruction had a fixup in mips16
2670 mode, we can not swap. This normally means that the
2671 previous instruction was a 4 byte branch anyhow. */
2672 || (mips_opts.mips16 && history[0].fixp[0])
2673 /* If the previous instruction is a sync, sync.l, or
2674 sync.p, we can not swap. */
2675 || (prev_pinfo & INSN_SYNC))
2676 {
2677 /* We could do even better for unconditional branches to
2678 portions of this object file; we could pick up the
2679 instruction at the destination, put it in the delay
2680 slot, and bump the destination address. */
2681 insert_into_history (0, 1, ip);
2682 emit_nop ();
2683 if (mips_relax.sequence)
2684 mips_relax.sizes[mips_relax.sequence - 1] += 4;
2685 }
2686 else
2687 {
2688 /* It looks like we can actually do the swap. */
2689 struct mips_cl_insn delay = history[0];
2690 if (mips_opts.mips16)
2691 {
2692 know (delay.frag == ip->frag);
2693 move_insn (ip, delay.frag, delay.where);
2694 move_insn (&delay, ip->frag, ip->where + insn_length (ip));
2695 }
2696 else if (relaxed_branch)
2697 {
2698 /* Add the delay slot instruction to the end of the
2699 current frag and shrink the fixed part of the
2700 original frag. If the branch occupies the tail of
2701 the latter, move it backwards to cover the gap. */
2702 delay.frag->fr_fix -= 4;
2703 if (delay.frag == ip->frag)
2704 move_insn (ip, ip->frag, ip->where - 4);
2705 add_fixed_insn (&delay);
2706 }
2707 else
2708 {
2709 move_insn (&delay, ip->frag, ip->where);
2710 move_insn (ip, history[0].frag, history[0].where);
2711 }
2712 history[0] = *ip;
2713 delay.fixed_p = 1;
2714 insert_into_history (0, 1, &delay);
2715 }
2716
2717 /* If that was an unconditional branch, forget the previous
2718 insn information. */
2719 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
2720 mips_no_prev_insn ();
2721 }
2722 else if (pinfo & INSN_COND_BRANCH_LIKELY)
2723 {
2724 /* We don't yet optimize a branch likely. What we should do
2725 is look at the target, copy the instruction found there
2726 into the delay slot, and increment the branch to jump to
2727 the next instruction. */
2728 insert_into_history (0, 1, ip);
2729 emit_nop ();
2730 }
2731 else
2732 insert_into_history (0, 1, ip);
2733 }
2734 else
2735 insert_into_history (0, 1, ip);
2736
2737 /* We just output an insn, so the next one doesn't have a label. */
2738 mips_clear_insn_labels ();
2739 }
2740
2741 /* Forget that there was any previous instruction or label. */
2742
2743 static void
2744 mips_no_prev_insn (void)
2745 {
2746 prev_nop_frag = NULL;
2747 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
2748 mips_clear_insn_labels ();
2749 }
2750
2751 /* This function must be called before we emit something other than
2752 instructions. It is like mips_no_prev_insn except that it inserts
2753 any NOPS that might be needed by previous instructions. */
2754
2755 void
2756 mips_emit_delays (void)
2757 {
2758 if (! mips_opts.noreorder)
2759 {
2760 int nops = nops_for_insn (history, NULL);
2761 if (nops > 0)
2762 {
2763 while (nops-- > 0)
2764 add_fixed_insn (NOP_INSN);
2765 mips_move_labels ();
2766 }
2767 }
2768 mips_no_prev_insn ();
2769 }
2770
2771 /* Start a (possibly nested) noreorder block. */
2772
2773 static void
2774 start_noreorder (void)
2775 {
2776 if (mips_opts.noreorder == 0)
2777 {
2778 unsigned int i;
2779 int nops;
2780
2781 /* None of the instructions before the .set noreorder can be moved. */
2782 for (i = 0; i < ARRAY_SIZE (history); i++)
2783 history[i].fixed_p = 1;
2784
2785 /* Insert any nops that might be needed between the .set noreorder
2786 block and the previous instructions. We will later remove any
2787 nops that turn out not to be needed. */
2788 nops = nops_for_insn (history, NULL);
2789 if (nops > 0)
2790 {
2791 if (mips_optimize != 0)
2792 {
2793 /* Record the frag which holds the nop instructions, so
2794 that we can remove them if we don't need them. */
2795 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
2796 prev_nop_frag = frag_now;
2797 prev_nop_frag_holds = nops;
2798 prev_nop_frag_required = 0;
2799 prev_nop_frag_since = 0;
2800 }
2801
2802 for (; nops > 0; --nops)
2803 add_fixed_insn (NOP_INSN);
2804
2805 /* Move on to a new frag, so that it is safe to simply
2806 decrease the size of prev_nop_frag. */
2807 frag_wane (frag_now);
2808 frag_new (0);
2809 mips_move_labels ();
2810 }
2811 mips16_mark_labels ();
2812 mips_clear_insn_labels ();
2813 }
2814 mips_opts.noreorder++;
2815 mips_any_noreorder = 1;
2816 }
2817
2818 /* End a nested noreorder block. */
2819
2820 static void
2821 end_noreorder (void)
2822 {
2823 mips_opts.noreorder--;
2824 if (mips_opts.noreorder == 0 && prev_nop_frag != NULL)
2825 {
2826 /* Commit to inserting prev_nop_frag_required nops and go back to
2827 handling nop insertion the .set reorder way. */
2828 prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required)
2829 * (mips_opts.mips16 ? 2 : 4));
2830 insert_into_history (prev_nop_frag_since,
2831 prev_nop_frag_required, NOP_INSN);
2832 prev_nop_frag = NULL;
2833 }
2834 }
2835
2836 /* Set up global variables for the start of a new macro. */
2837
2838 static void
2839 macro_start (void)
2840 {
2841 memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes));
2842 mips_macro_warning.delay_slot_p = (mips_opts.noreorder
2843 && (history[0].insn_mo->pinfo
2844 & (INSN_UNCOND_BRANCH_DELAY
2845 | INSN_COND_BRANCH_DELAY
2846 | INSN_COND_BRANCH_LIKELY)) != 0);
2847 }
2848
2849 /* Given that a macro is longer than 4 bytes, return the appropriate warning
2850 for it. Return null if no warning is needed. SUBTYPE is a bitmask of
2851 RELAX_DELAY_SLOT and RELAX_NOMACRO. */
2852
2853 static const char *
2854 macro_warning (relax_substateT subtype)
2855 {
2856 if (subtype & RELAX_DELAY_SLOT)
2857 return _("Macro instruction expanded into multiple instructions"
2858 " in a branch delay slot");
2859 else if (subtype & RELAX_NOMACRO)
2860 return _("Macro instruction expanded into multiple instructions");
2861 else
2862 return 0;
2863 }
2864
2865 /* Finish up a macro. Emit warnings as appropriate. */
2866
2867 static void
2868 macro_end (void)
2869 {
2870 if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4)
2871 {
2872 relax_substateT subtype;
2873
2874 /* Set up the relaxation warning flags. */
2875 subtype = 0;
2876 if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0])
2877 subtype |= RELAX_SECOND_LONGER;
2878 if (mips_opts.warn_about_macros)
2879 subtype |= RELAX_NOMACRO;
2880 if (mips_macro_warning.delay_slot_p)
2881 subtype |= RELAX_DELAY_SLOT;
2882
2883 if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4)
2884 {
2885 /* Either the macro has a single implementation or both
2886 implementations are longer than 4 bytes. Emit the
2887 warning now. */
2888 const char *msg = macro_warning (subtype);
2889 if (msg != 0)
2890 as_warn (msg);
2891 }
2892 else
2893 {
2894 /* One implementation might need a warning but the other
2895 definitely doesn't. */
2896 mips_macro_warning.first_frag->fr_subtype |= subtype;
2897 }
2898 }
2899 }
2900
2901 /* Read a macro's relocation codes from *ARGS and store them in *R.
2902 The first argument in *ARGS will be either the code for a single
2903 relocation or -1 followed by the three codes that make up a
2904 composite relocation. */
2905
2906 static void
2907 macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r)
2908 {
2909 int i, next;
2910
2911 next = va_arg (*args, int);
2912 if (next >= 0)
2913 r[0] = (bfd_reloc_code_real_type) next;
2914 else
2915 for (i = 0; i < 3; i++)
2916 r[i] = (bfd_reloc_code_real_type) va_arg (*args, int);
2917 }
2918
2919 /* Build an instruction created by a macro expansion. This is passed
2920 a pointer to the count of instructions created so far, an
2921 expression, the name of the instruction to build, an operand format
2922 string, and corresponding arguments. */
2923
2924 static void
2925 macro_build (expressionS *ep, const char *name, const char *fmt, ...)
2926 {
2927 const struct mips_opcode *mo;
2928 struct mips_cl_insn insn;
2929 bfd_reloc_code_real_type r[3];
2930 va_list args;
2931
2932 va_start (args, fmt);
2933
2934 if (mips_opts.mips16)
2935 {
2936 mips16_macro_build (ep, name, fmt, args);
2937 va_end (args);
2938 return;
2939 }
2940
2941 r[0] = BFD_RELOC_UNUSED;
2942 r[1] = BFD_RELOC_UNUSED;
2943 r[2] = BFD_RELOC_UNUSED;
2944 mo = (struct mips_opcode *) hash_find (op_hash, name);
2945 assert (mo);
2946 assert (strcmp (name, mo->name) == 0);
2947
2948 /* Search until we get a match for NAME. It is assumed here that
2949 macros will never generate MDMX or MIPS-3D instructions. */
2950 while (strcmp (fmt, mo->args) != 0
2951 || mo->pinfo == INSN_MACRO
2952 || !OPCODE_IS_MEMBER (mo,
2953 (mips_opts.isa
2954 | (file_ase_mips16 ? INSN_MIPS16 : 0)),
2955 mips_opts.arch)
2956 || (mips_opts.arch == CPU_R4650 && (mo->pinfo & FP_D) != 0))
2957 {
2958 ++mo;
2959 assert (mo->name);
2960 assert (strcmp (name, mo->name) == 0);
2961 }
2962
2963 create_insn (&insn, mo);
2964 for (;;)
2965 {
2966 switch (*fmt++)
2967 {
2968 case '\0':
2969 break;
2970
2971 case ',':
2972 case '(':
2973 case ')':
2974 continue;
2975
2976 case '+':
2977 switch (*fmt++)
2978 {
2979 case 'A':
2980 case 'E':
2981 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
2982 continue;
2983
2984 case 'B':
2985 case 'F':
2986 /* Note that in the macro case, these arguments are already
2987 in MSB form. (When handling the instruction in the
2988 non-macro case, these arguments are sizes from which
2989 MSB values must be calculated.) */
2990 INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
2991 continue;
2992
2993 case 'C':
2994 case 'G':
2995 case 'H':
2996 /* Note that in the macro case, these arguments are already
2997 in MSBD form. (When handling the instruction in the
2998 non-macro case, these arguments are sizes from which
2999 MSBD values must be calculated.) */
3000 INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
3001 continue;
3002
3003 default:
3004 internalError ();
3005 }
3006 continue;
3007
3008 case 't':
3009 case 'w':
3010 case 'E':
3011 INSERT_OPERAND (RT, insn, va_arg (args, int));
3012 continue;
3013
3014 case 'c':
3015 INSERT_OPERAND (CODE, insn, va_arg (args, int));
3016 continue;
3017
3018 case 'T':
3019 case 'W':
3020 INSERT_OPERAND (FT, insn, va_arg (args, int));
3021 continue;
3022
3023 case 'd':
3024 case 'G':
3025 case 'K':
3026 INSERT_OPERAND (RD, insn, va_arg (args, int));
3027 continue;
3028
3029 case 'U':
3030 {
3031 int tmp = va_arg (args, int);
3032
3033 INSERT_OPERAND (RT, insn, tmp);
3034 INSERT_OPERAND (RD, insn, tmp);
3035 continue;
3036 }
3037
3038 case 'V':
3039 case 'S':
3040 INSERT_OPERAND (FS, insn, va_arg (args, int));
3041 continue;
3042
3043 case 'z':
3044 continue;
3045
3046 case '<':
3047 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
3048 continue;
3049
3050 case 'D':
3051 INSERT_OPERAND (FD, insn, va_arg (args, int));
3052 continue;
3053
3054 case 'B':
3055 INSERT_OPERAND (CODE20, insn, va_arg (args, int));
3056 continue;
3057
3058 case 'J':
3059 INSERT_OPERAND (CODE19, insn, va_arg (args, int));
3060 continue;
3061
3062 case 'q':
3063 INSERT_OPERAND (CODE2, insn, va_arg (args, int));
3064 continue;
3065
3066 case 'b':
3067 case 's':
3068 case 'r':
3069 case 'v':
3070 INSERT_OPERAND (RS, insn, va_arg (args, int));
3071 continue;
3072
3073 case 'i':
3074 case 'j':
3075 case 'o':
3076 macro_read_relocs (&args, r);
3077 assert (*r == BFD_RELOC_GPREL16
3078 || *r == BFD_RELOC_MIPS_LITERAL
3079 || *r == BFD_RELOC_MIPS_HIGHER
3080 || *r == BFD_RELOC_HI16_S
3081 || *r == BFD_RELOC_LO16
3082 || *r == BFD_RELOC_MIPS_GOT16
3083 || *r == BFD_RELOC_MIPS_CALL16
3084 || *r == BFD_RELOC_MIPS_GOT_DISP
3085 || *r == BFD_RELOC_MIPS_GOT_PAGE
3086 || *r == BFD_RELOC_MIPS_GOT_OFST
3087 || *r == BFD_RELOC_MIPS_GOT_LO16
3088 || *r == BFD_RELOC_MIPS_CALL_LO16);
3089 continue;
3090
3091 case 'u':
3092 macro_read_relocs (&args, r);
3093 assert (ep != NULL
3094 && (ep->X_op == O_constant
3095 || (ep->X_op == O_symbol
3096 && (*r == BFD_RELOC_MIPS_HIGHEST
3097 || *r == BFD_RELOC_HI16_S
3098 || *r == BFD_RELOC_HI16
3099 || *r == BFD_RELOC_GPREL16
3100 || *r == BFD_RELOC_MIPS_GOT_HI16
3101 || *r == BFD_RELOC_MIPS_CALL_HI16))));
3102 continue;
3103
3104 case 'p':
3105 assert (ep != NULL);
3106 /*
3107 * This allows macro() to pass an immediate expression for
3108 * creating short branches without creating a symbol.
3109 * Note that the expression still might come from the assembly
3110 * input, in which case the value is not checked for range nor
3111 * is a relocation entry generated (yuck).
3112 */
3113 if (ep->X_op == O_constant)
3114 {
3115 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
3116 ep = NULL;
3117 }
3118 else
3119 *r = BFD_RELOC_16_PCREL_S2;
3120 continue;
3121
3122 case 'a':
3123 assert (ep != NULL);
3124 *r = BFD_RELOC_MIPS_JMP;
3125 continue;
3126
3127 case 'C':
3128 insn.insn_opcode |= va_arg (args, unsigned long);
3129 continue;
3130
3131 default:
3132 internalError ();
3133 }
3134 break;
3135 }
3136 va_end (args);
3137 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
3138
3139 append_insn (&insn, ep, r);
3140 }
3141
3142 static void
3143 mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
3144 va_list args)
3145 {
3146 struct mips_opcode *mo;
3147 struct mips_cl_insn insn;
3148 bfd_reloc_code_real_type r[3]
3149 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3150
3151 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
3152 assert (mo);
3153 assert (strcmp (name, mo->name) == 0);
3154
3155 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
3156 {
3157 ++mo;
3158 assert (mo->name);
3159 assert (strcmp (name, mo->name) == 0);
3160 }
3161
3162 create_insn (&insn, mo);
3163 for (;;)
3164 {
3165 int c;
3166
3167 c = *fmt++;
3168 switch (c)
3169 {
3170 case '\0':
3171 break;
3172
3173 case ',':
3174 case '(':
3175 case ')':
3176 continue;
3177
3178 case 'y':
3179 case 'w':
3180 MIPS16_INSERT_OPERAND (RY, insn, va_arg (args, int));
3181 continue;
3182
3183 case 'x':
3184 case 'v':
3185 MIPS16_INSERT_OPERAND (RX, insn, va_arg (args, int));
3186 continue;
3187
3188 case 'z':
3189 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (args, int));
3190 continue;
3191
3192 case 'Z':
3193 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (args, int));
3194 continue;
3195
3196 case '0':
3197 case 'S':
3198 case 'P':
3199 case 'R':
3200 continue;
3201
3202 case 'X':
3203 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (args, int));
3204 continue;
3205
3206 case 'Y':
3207 {
3208 int regno;
3209
3210 regno = va_arg (args, int);
3211 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
3212 insn.insn_opcode |= regno << MIPS16OP_SH_REG32R;
3213 }
3214 continue;
3215
3216 case '<':
3217 case '>':
3218 case '4':
3219 case '5':
3220 case 'H':
3221 case 'W':
3222 case 'D':
3223 case 'j':
3224 case '8':
3225 case 'V':
3226 case 'C':
3227 case 'U':
3228 case 'k':
3229 case 'K':
3230 case 'p':
3231 case 'q':
3232 {
3233 assert (ep != NULL);
3234
3235 if (ep->X_op != O_constant)
3236 *r = (int) BFD_RELOC_UNUSED + c;
3237 else
3238 {
3239 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
3240 FALSE, &insn.insn_opcode, &insn.use_extend,
3241 &insn.extend);
3242 ep = NULL;
3243 *r = BFD_RELOC_UNUSED;
3244 }
3245 }
3246 continue;
3247
3248 case '6':
3249 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (args, int));
3250 continue;
3251 }
3252
3253 break;
3254 }
3255
3256 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
3257
3258 append_insn (&insn, ep, r);
3259 }
3260
3261 static void
3262 /*
3263 * Sign-extend 32-bit mode constants that have bit 31 set and all
3264 * higher bits unset.
3265 */
3266 normalize_constant_expr (expressionS *ex)
3267 {
3268 if ((ex->X_op == O_constant && HAVE_32BIT_GPRS)
3269 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3270 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3271 - 0x80000000);
3272 }
3273
3274 /*
3275 * Sign-extend 32-bit mode address offsets that have bit 31 set and
3276 * all higher bits unset.
3277 */
3278 static void
3279 normalize_address_expr (expressionS *ex)
3280 {
3281 if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES)
3282 || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS))
3283 && IS_ZEXT_32BIT_NUM (ex->X_add_number))
3284 ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000)
3285 - 0x80000000);
3286 }
3287
3288 /*
3289 * Generate a "jalr" instruction with a relocation hint to the called
3290 * function. This occurs in NewABI PIC code.
3291 */
3292 static void
3293 macro_build_jalr (expressionS *ep)
3294 {
3295 char *f = NULL;
3296
3297 if (HAVE_NEWABI)
3298 {
3299 frag_grow (8);
3300 f = frag_more (0);
3301 }
3302 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
3303 if (HAVE_NEWABI)
3304 fix_new_exp (frag_now, f - frag_now->fr_literal,
3305 4, ep, FALSE, BFD_RELOC_MIPS_JALR);
3306 }
3307
3308 /*
3309 * Generate a "lui" instruction.
3310 */
3311 static void
3312 macro_build_lui (expressionS *ep, int regnum)
3313 {
3314 expressionS high_expr;
3315 const struct mips_opcode *mo;
3316 struct mips_cl_insn insn;
3317 bfd_reloc_code_real_type r[3]
3318 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
3319 const char *name = "lui";
3320 const char *fmt = "t,u";
3321
3322 assert (! mips_opts.mips16);
3323
3324 high_expr = *ep;
3325
3326 if (high_expr.X_op == O_constant)
3327 {
3328 /* we can compute the instruction now without a relocation entry */
3329 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
3330 >> 16) & 0xffff;
3331 *r = BFD_RELOC_UNUSED;
3332 }
3333 else
3334 {
3335 assert (ep->X_op == O_symbol);
3336 /* _gp_disp is a special case, used from s_cpload.
3337 __gnu_local_gp is used if mips_no_shared. */
3338 assert (mips_pic == NO_PIC
3339 || (! HAVE_NEWABI
3340 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
3341 || (! mips_in_shared
3342 && strcmp (S_GET_NAME (ep->X_add_symbol),
3343 "__gnu_local_gp") == 0));
3344 *r = BFD_RELOC_HI16_S;
3345 }
3346
3347 mo = hash_find (op_hash, name);
3348 assert (strcmp (name, mo->name) == 0);
3349 assert (strcmp (fmt, mo->args) == 0);
3350 create_insn (&insn, mo);
3351
3352 insn.insn_opcode = insn.insn_mo->match;
3353 INSERT_OPERAND (RT, insn, regnum);
3354 if (*r == BFD_RELOC_UNUSED)
3355 {
3356 insn.insn_opcode |= high_expr.X_add_number;
3357 append_insn (&insn, NULL, r);
3358 }
3359 else
3360 append_insn (&insn, &high_expr, r);
3361 }
3362
3363 /* Generate a sequence of instructions to do a load or store from a constant
3364 offset off of a base register (breg) into/from a target register (treg),
3365 using AT if necessary. */
3366 static void
3367 macro_build_ldst_constoffset (expressionS *ep, const char *op,
3368 int treg, int breg, int dbl)
3369 {
3370 assert (ep->X_op == O_constant);
3371
3372 /* Sign-extending 32-bit constants makes their handling easier. */
3373 if (!dbl)
3374 normalize_constant_expr (ep);
3375
3376 /* Right now, this routine can only handle signed 32-bit constants. */
3377 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
3378 as_warn (_("operand overflow"));
3379
3380 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
3381 {
3382 /* Signed 16-bit offset will fit in the op. Easy! */
3383 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
3384 }
3385 else
3386 {
3387 /* 32-bit offset, need multiple instructions and AT, like:
3388 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
3389 addu $tempreg,$tempreg,$breg
3390 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
3391 to handle the complete offset. */
3392 macro_build_lui (ep, AT);
3393 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
3394 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT);
3395
3396 if (mips_opts.noat)
3397 as_bad (_("Macro used $at after \".set noat\""));
3398 }
3399 }
3400
3401 /* set_at()
3402 * Generates code to set the $at register to true (one)
3403 * if reg is less than the immediate expression.
3404 */
3405 static void
3406 set_at (int reg, int unsignedp)
3407 {
3408 if (imm_expr.X_op == O_constant
3409 && imm_expr.X_add_number >= -0x8000
3410 && imm_expr.X_add_number < 0x8000)
3411 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
3412 AT, reg, BFD_RELOC_LO16);
3413 else
3414 {
3415 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
3416 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
3417 }
3418 }
3419
3420 /* Warn if an expression is not a constant. */
3421
3422 static void
3423 check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
3424 {
3425 if (ex->X_op == O_big)
3426 as_bad (_("unsupported large constant"));
3427 else if (ex->X_op != O_constant)
3428 as_bad (_("Instruction %s requires absolute expression"), ip->insn_mo->name);
3429
3430 normalize_constant_expr (ex);
3431 }
3432
3433 /* Count the leading zeroes by performing a binary chop. This is a
3434 bulky bit of source, but performance is a LOT better for the
3435 majority of values than a simple loop to count the bits:
3436 for (lcnt = 0; (lcnt < 32); lcnt++)
3437 if ((v) & (1 << (31 - lcnt)))
3438 break;
3439 However it is not code size friendly, and the gain will drop a bit
3440 on certain cached systems.
3441 */
3442 #define COUNT_TOP_ZEROES(v) \
3443 (((v) & ~0xffff) == 0 \
3444 ? ((v) & ~0xff) == 0 \
3445 ? ((v) & ~0xf) == 0 \
3446 ? ((v) & ~0x3) == 0 \
3447 ? ((v) & ~0x1) == 0 \
3448 ? !(v) \
3449 ? 32 \
3450 : 31 \
3451 : 30 \
3452 : ((v) & ~0x7) == 0 \
3453 ? 29 \
3454 : 28 \
3455 : ((v) & ~0x3f) == 0 \
3456 ? ((v) & ~0x1f) == 0 \
3457 ? 27 \
3458 : 26 \
3459 : ((v) & ~0x7f) == 0 \
3460 ? 25 \
3461 : 24 \
3462 : ((v) & ~0xfff) == 0 \
3463 ? ((v) & ~0x3ff) == 0 \
3464 ? ((v) & ~0x1ff) == 0 \
3465 ? 23 \
3466 : 22 \
3467 : ((v) & ~0x7ff) == 0 \
3468 ? 21 \
3469 : 20 \
3470 : ((v) & ~0x3fff) == 0 \
3471 ? ((v) & ~0x1fff) == 0 \
3472 ? 19 \
3473 : 18 \
3474 : ((v) & ~0x7fff) == 0 \
3475 ? 17 \
3476 : 16 \
3477 : ((v) & ~0xffffff) == 0 \
3478 ? ((v) & ~0xfffff) == 0 \
3479 ? ((v) & ~0x3ffff) == 0 \
3480 ? ((v) & ~0x1ffff) == 0 \
3481 ? 15 \
3482 : 14 \
3483 : ((v) & ~0x7ffff) == 0 \
3484 ? 13 \
3485 : 12 \
3486 : ((v) & ~0x3fffff) == 0 \
3487 ? ((v) & ~0x1fffff) == 0 \
3488 ? 11 \
3489 : 10 \
3490 : ((v) & ~0x7fffff) == 0 \
3491 ? 9 \
3492 : 8 \
3493 : ((v) & ~0xfffffff) == 0 \
3494 ? ((v) & ~0x3ffffff) == 0 \
3495 ? ((v) & ~0x1ffffff) == 0 \
3496 ? 7 \
3497 : 6 \
3498 : ((v) & ~0x7ffffff) == 0 \
3499 ? 5 \
3500 : 4 \
3501 : ((v) & ~0x3fffffff) == 0 \
3502 ? ((v) & ~0x1fffffff) == 0 \
3503 ? 3 \
3504 : 2 \
3505 : ((v) & ~0x7fffffff) == 0 \
3506 ? 1 \
3507 : 0)
3508
3509 /* load_register()
3510 * This routine generates the least number of instructions necessary to load
3511 * an absolute expression value into a register.
3512 */
3513 static void
3514 load_register (int reg, expressionS *ep, int dbl)
3515 {
3516 int freg;
3517 expressionS hi32, lo32;
3518
3519 if (ep->X_op != O_big)
3520 {
3521 assert (ep->X_op == O_constant);
3522
3523 /* Sign-extending 32-bit constants makes their handling easier. */
3524 if (!dbl)
3525 normalize_constant_expr (ep);
3526
3527 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
3528 {
3529 /* We can handle 16 bit signed values with an addiu to
3530 $zero. No need to ever use daddiu here, since $zero and
3531 the result are always correct in 32 bit mode. */
3532 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3533 return;
3534 }
3535 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
3536 {
3537 /* We can handle 16 bit unsigned values with an ori to
3538 $zero. */
3539 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
3540 return;
3541 }
3542 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
3543 {
3544 /* 32 bit values require an lui. */
3545 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
3546 if ((ep->X_add_number & 0xffff) != 0)
3547 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
3548 return;
3549 }
3550 }
3551
3552 /* The value is larger than 32 bits. */
3553
3554 if (!dbl || HAVE_32BIT_GPRS)
3555 {
3556 as_bad (_("Number (0x%lx%08lx) larger than 32 bits"),
3557 (unsigned long) (ep->X_add_number >> 32),
3558 (unsigned long) (ep->X_add_number & 0xffffffff));
3559 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3560 return;
3561 }
3562
3563 if (ep->X_op != O_big)
3564 {
3565 hi32 = *ep;
3566 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3567 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3568 hi32.X_add_number &= 0xffffffff;
3569 lo32 = *ep;
3570 lo32.X_add_number &= 0xffffffff;
3571 }
3572 else
3573 {
3574 assert (ep->X_add_number > 2);
3575 if (ep->X_add_number == 3)
3576 generic_bignum[3] = 0;
3577 else if (ep->X_add_number > 4)
3578 as_bad (_("Number larger than 64 bits"));
3579 lo32.X_op = O_constant;
3580 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
3581 hi32.X_op = O_constant;
3582 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
3583 }
3584
3585 if (hi32.X_add_number == 0)
3586 freg = 0;
3587 else
3588 {
3589 int shift, bit;
3590 unsigned long hi, lo;
3591
3592 if (hi32.X_add_number == (offsetT) 0xffffffff)
3593 {
3594 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
3595 {
3596 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3597 return;
3598 }
3599 if (lo32.X_add_number & 0x80000000)
3600 {
3601 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
3602 if (lo32.X_add_number & 0xffff)
3603 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
3604 return;
3605 }
3606 }
3607
3608 /* Check for 16bit shifted constant. We know that hi32 is
3609 non-zero, so start the mask on the first bit of the hi32
3610 value. */
3611 shift = 17;
3612 do
3613 {
3614 unsigned long himask, lomask;
3615
3616 if (shift < 32)
3617 {
3618 himask = 0xffff >> (32 - shift);
3619 lomask = (0xffff << shift) & 0xffffffff;
3620 }
3621 else
3622 {
3623 himask = 0xffff << (shift - 32);
3624 lomask = 0;
3625 }
3626 if ((hi32.X_add_number & ~(offsetT) himask) == 0
3627 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
3628 {
3629 expressionS tmp;
3630
3631 tmp.X_op = O_constant;
3632 if (shift < 32)
3633 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
3634 | (lo32.X_add_number >> shift));
3635 else
3636 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
3637 macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
3638 macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<",
3639 reg, reg, (shift >= 32) ? shift - 32 : shift);
3640 return;
3641 }
3642 ++shift;
3643 }
3644 while (shift <= (64 - 16));
3645
3646 /* Find the bit number of the lowest one bit, and store the
3647 shifted value in hi/lo. */
3648 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
3649 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
3650 if (lo != 0)
3651 {
3652 bit = 0;
3653 while ((lo & 1) == 0)
3654 {
3655 lo >>= 1;
3656 ++bit;
3657 }
3658 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
3659 hi >>= bit;
3660 }
3661 else
3662 {
3663 bit = 32;
3664 while ((hi & 1) == 0)
3665 {
3666 hi >>= 1;
3667 ++bit;
3668 }
3669 lo = hi;
3670 hi = 0;
3671 }
3672
3673 /* Optimize if the shifted value is a (power of 2) - 1. */
3674 if ((hi == 0 && ((lo + 1) & lo) == 0)
3675 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
3676 {
3677 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
3678 if (shift != 0)
3679 {
3680 expressionS tmp;
3681
3682 /* This instruction will set the register to be all
3683 ones. */
3684 tmp.X_op = O_constant;
3685 tmp.X_add_number = (offsetT) -1;
3686 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
3687 if (bit != 0)
3688 {
3689 bit += shift;
3690 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
3691 reg, reg, (bit >= 32) ? bit - 32 : bit);
3692 }
3693 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
3694 reg, reg, (shift >= 32) ? shift - 32 : shift);
3695 return;
3696 }
3697 }
3698
3699 /* Sign extend hi32 before calling load_register, because we can
3700 generally get better code when we load a sign extended value. */
3701 if ((hi32.X_add_number & 0x80000000) != 0)
3702 hi32.X_add_number |= ~(offsetT) 0xffffffff;
3703 load_register (reg, &hi32, 0);
3704 freg = reg;
3705 }
3706 if ((lo32.X_add_number & 0xffff0000) == 0)
3707 {
3708 if (freg != 0)
3709 {
3710 macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
3711 freg = reg;
3712 }
3713 }
3714 else
3715 {
3716 expressionS mid16;
3717
3718 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
3719 {
3720 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
3721 macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
3722 return;
3723 }
3724
3725 if (freg != 0)
3726 {
3727 macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
3728 freg = reg;
3729 }
3730 mid16 = lo32;
3731 mid16.X_add_number >>= 16;
3732 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
3733 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
3734 freg = reg;
3735 }
3736 if ((lo32.X_add_number & 0xffff) != 0)
3737 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
3738 }
3739
3740 static inline void
3741 load_delay_nop (void)
3742 {
3743 if (!gpr_interlocks)
3744 macro_build (NULL, "nop", "");
3745 }
3746
3747 /* Load an address into a register. */
3748
3749 static void
3750 load_address (int reg, expressionS *ep, int *used_at)
3751 {
3752 if (ep->X_op != O_constant
3753 && ep->X_op != O_symbol)
3754 {
3755 as_bad (_("expression too complex"));
3756 ep->X_op = O_constant;
3757 }
3758
3759 if (ep->X_op == O_constant)
3760 {
3761 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
3762 return;
3763 }
3764
3765 if (mips_pic == NO_PIC)
3766 {
3767 /* If this is a reference to a GP relative symbol, we want
3768 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
3769 Otherwise we want
3770 lui $reg,<sym> (BFD_RELOC_HI16_S)
3771 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3772 If we have an addend, we always use the latter form.
3773
3774 With 64bit address space and a usable $at we want
3775 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3776 lui $at,<sym> (BFD_RELOC_HI16_S)
3777 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3778 daddiu $at,<sym> (BFD_RELOC_LO16)
3779 dsll32 $reg,0
3780 daddu $reg,$reg,$at
3781
3782 If $at is already in use, we use a path which is suboptimal
3783 on superscalar processors.
3784 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3785 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3786 dsll $reg,16
3787 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
3788 dsll $reg,16
3789 daddiu $reg,<sym> (BFD_RELOC_LO16)
3790
3791 For GP relative symbols in 64bit address space we can use
3792 the same sequence as in 32bit address space. */
3793 if (HAVE_64BIT_SYMBOLS)
3794 {
3795 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
3796 && !nopic_need_relax (ep->X_add_symbol, 1))
3797 {
3798 relax_start (ep->X_add_symbol);
3799 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
3800 mips_gp_register, BFD_RELOC_GPREL16);
3801 relax_switch ();
3802 }
3803
3804 if (*used_at == 0 && !mips_opts.noat)
3805 {
3806 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
3807 macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S);
3808 macro_build (ep, "daddiu", "t,r,j", reg, reg,
3809 BFD_RELOC_MIPS_HIGHER);
3810 macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16);
3811 macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0);
3812 macro_build (NULL, "daddu", "d,v,t", reg, reg, AT);
3813 *used_at = 1;
3814 }
3815 else
3816 {
3817 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST);
3818 macro_build (ep, "daddiu", "t,r,j", reg, reg,
3819 BFD_RELOC_MIPS_HIGHER);
3820 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
3821 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S);
3822 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
3823 macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16);
3824 }
3825
3826 if (mips_relax.sequence)
3827 relax_end ();
3828 }
3829 else
3830 {
3831 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
3832 && !nopic_need_relax (ep->X_add_symbol, 1))
3833 {
3834 relax_start (ep->X_add_symbol);
3835 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
3836 mips_gp_register, BFD_RELOC_GPREL16);
3837 relax_switch ();
3838 }
3839 macro_build_lui (ep, reg);
3840 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
3841 reg, reg, BFD_RELOC_LO16);
3842 if (mips_relax.sequence)
3843 relax_end ();
3844 }
3845 }
3846 else if (mips_pic == SVR4_PIC && ! mips_big_got)
3847 {
3848 expressionS ex;
3849
3850 /* If this is a reference to an external symbol, we want
3851 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3852 Otherwise we want
3853 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3854 nop
3855 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3856 If there is a constant, it must be added in after.
3857
3858 If we have NewABI, we want
3859 lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP)
3860 unless we're referencing a global symbol with a non-zero
3861 offset, in which case cst must be added separately. */
3862 if (HAVE_NEWABI)
3863 {
3864 if (ep->X_add_number)
3865 {
3866 ex.X_add_number = ep->X_add_number;
3867 ep->X_add_number = 0;
3868 relax_start (ep->X_add_symbol);
3869 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3870 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
3871 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3872 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3873 ex.X_op = O_constant;
3874 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
3875 reg, reg, BFD_RELOC_LO16);
3876 ep->X_add_number = ex.X_add_number;
3877 relax_switch ();
3878 }
3879 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3880 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
3881 if (mips_relax.sequence)
3882 relax_end ();
3883 }
3884 else
3885 {
3886 ex.X_add_number = ep->X_add_number;
3887 ep->X_add_number = 0;
3888 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3889 BFD_RELOC_MIPS_GOT16, mips_gp_register);
3890 load_delay_nop ();
3891 relax_start (ep->X_add_symbol);
3892 relax_switch ();
3893 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3894 BFD_RELOC_LO16);
3895 relax_end ();
3896
3897 if (ex.X_add_number != 0)
3898 {
3899 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3900 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3901 ex.X_op = O_constant;
3902 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
3903 reg, reg, BFD_RELOC_LO16);
3904 }
3905 }
3906 }
3907 else if (mips_pic == SVR4_PIC)
3908 {
3909 expressionS ex;
3910
3911 /* This is the large GOT case. If this is a reference to an
3912 external symbol, we want
3913 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
3914 addu $reg,$reg,$gp
3915 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
3916
3917 Otherwise, for a reference to a local symbol in old ABI, we want
3918 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3919 nop
3920 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3921 If there is a constant, it must be added in after.
3922
3923 In the NewABI, for local symbols, with or without offsets, we want:
3924 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
3925 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
3926 */
3927 if (HAVE_NEWABI)
3928 {
3929 ex.X_add_number = ep->X_add_number;
3930 ep->X_add_number = 0;
3931 relax_start (ep->X_add_symbol);
3932 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
3933 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
3934 reg, reg, mips_gp_register);
3935 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
3936 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
3937 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3938 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3939 else if (ex.X_add_number)
3940 {
3941 ex.X_op = O_constant;
3942 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3943 BFD_RELOC_LO16);
3944 }
3945
3946 ep->X_add_number = ex.X_add_number;
3947 relax_switch ();
3948 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3949 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
3950 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3951 BFD_RELOC_MIPS_GOT_OFST);
3952 relax_end ();
3953 }
3954 else
3955 {
3956 ex.X_add_number = ep->X_add_number;
3957 ep->X_add_number = 0;
3958 relax_start (ep->X_add_symbol);
3959 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16);
3960 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
3961 reg, reg, mips_gp_register);
3962 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)",
3963 reg, BFD_RELOC_MIPS_GOT_LO16, reg);
3964 relax_switch ();
3965 if (reg_needs_delay (mips_gp_register))
3966 {
3967 /* We need a nop before loading from $gp. This special
3968 check is required because the lui which starts the main
3969 instruction stream does not refer to $gp, and so will not
3970 insert the nop which may be required. */
3971 macro_build (NULL, "nop", "");
3972 }
3973 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3974 BFD_RELOC_MIPS_GOT16, mips_gp_register);
3975 load_delay_nop ();
3976 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3977 BFD_RELOC_LO16);
3978 relax_end ();
3979
3980 if (ex.X_add_number != 0)
3981 {
3982 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3983 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3984 ex.X_op = O_constant;
3985 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3986 BFD_RELOC_LO16);
3987 }
3988 }
3989 }
3990 else
3991 abort ();
3992
3993 if (mips_opts.noat && *used_at == 1)
3994 as_bad (_("Macro used $at after \".set noat\""));
3995 }
3996
3997 /* Move the contents of register SOURCE into register DEST. */
3998
3999 static void
4000 move_register (int dest, int source)
4001 {
4002 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4003 dest, source, 0);
4004 }
4005
4006 /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
4007 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4008 The two alternatives are:
4009
4010 Global symbol Local sybmol
4011 ------------- ------------
4012 lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET)
4013 ... ...
4014 addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET)
4015
4016 load_got_offset emits the first instruction and add_got_offset
4017 emits the second for a 16-bit offset or add_got_offset_hilo emits
4018 a sequence to add a 32-bit offset using a scratch register. */
4019
4020 static void
4021 load_got_offset (int dest, expressionS *local)
4022 {
4023 expressionS global;
4024
4025 global = *local;
4026 global.X_add_number = 0;
4027
4028 relax_start (local->X_add_symbol);
4029 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4030 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4031 relax_switch ();
4032 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4033 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4034 relax_end ();
4035 }
4036
4037 static void
4038 add_got_offset (int dest, expressionS *local)
4039 {
4040 expressionS global;
4041
4042 global.X_op = O_constant;
4043 global.X_op_symbol = NULL;
4044 global.X_add_symbol = NULL;
4045 global.X_add_number = local->X_add_number;
4046
4047 relax_start (local->X_add_symbol);
4048 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4049 dest, dest, BFD_RELOC_LO16);
4050 relax_switch ();
4051 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4052 relax_end ();
4053 }
4054
4055 static void
4056 add_got_offset_hilo (int dest, expressionS *local, int tmp)
4057 {
4058 expressionS global;
4059 int hold_mips_optimize;
4060
4061 global.X_op = O_constant;
4062 global.X_op_symbol = NULL;
4063 global.X_add_symbol = NULL;
4064 global.X_add_number = local->X_add_number;
4065
4066 relax_start (local->X_add_symbol);
4067 load_register (tmp, &global, HAVE_64BIT_ADDRESSES);
4068 relax_switch ();
4069 /* Set mips_optimize around the lui instruction to avoid
4070 inserting an unnecessary nop after the lw. */
4071 hold_mips_optimize = mips_optimize;
4072 mips_optimize = 2;
4073 macro_build_lui (&global, tmp);
4074 mips_optimize = hold_mips_optimize;
4075 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16);
4076 relax_end ();
4077
4078 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp);
4079 }
4080
4081 /*
4082 * Build macros
4083 * This routine implements the seemingly endless macro or synthesized
4084 * instructions and addressing modes in the mips assembly language. Many
4085 * of these macros are simple and are similar to each other. These could
4086 * probably be handled by some kind of table or grammar approach instead of
4087 * this verbose method. Others are not simple macros but are more like
4088 * optimizing code generation.
4089 * One interesting optimization is when several store macros appear
4090 * consecutively that would load AT with the upper half of the same address.
4091 * The ensuing load upper instructions are ommited. This implies some kind
4092 * of global optimization. We currently only optimize within a single macro.
4093 * For many of the load and store macros if the address is specified as a
4094 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4095 * first load register 'at' with zero and use it as the base register. The
4096 * mips assembler simply uses register $zero. Just one tiny optimization
4097 * we're missing.
4098 */
4099 static void
4100 macro (struct mips_cl_insn *ip)
4101 {
4102 register int treg, sreg, dreg, breg;
4103 int tempreg;
4104 int mask;
4105 int used_at = 0;
4106 expressionS expr1;
4107 const char *s;
4108 const char *s2;
4109 const char *fmt;
4110 int likely = 0;
4111 int dbl = 0;
4112 int coproc = 0;
4113 int lr = 0;
4114 int imm = 0;
4115 int call = 0;
4116 int off;
4117 offsetT maxnum;
4118 bfd_reloc_code_real_type r;
4119 int hold_mips_optimize;
4120
4121 assert (! mips_opts.mips16);
4122
4123 treg = (ip->insn_opcode >> 16) & 0x1f;
4124 dreg = (ip->insn_opcode >> 11) & 0x1f;
4125 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
4126 mask = ip->insn_mo->mask;
4127
4128 expr1.X_op = O_constant;
4129 expr1.X_op_symbol = NULL;
4130 expr1.X_add_symbol = NULL;
4131 expr1.X_add_number = 1;
4132
4133 switch (mask)
4134 {
4135 case M_DABS:
4136 dbl = 1;
4137 case M_ABS:
4138 /* bgez $a0,.+12
4139 move v0,$a0
4140 sub v0,$zero,$a0
4141 */
4142
4143 start_noreorder ();
4144
4145 expr1.X_add_number = 8;
4146 macro_build (&expr1, "bgez", "s,p", sreg);
4147 if (dreg == sreg)
4148 macro_build (NULL, "nop", "", 0);
4149 else
4150 move_register (dreg, sreg);
4151 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
4152
4153 end_noreorder ();
4154 break;
4155
4156 case M_ADD_I:
4157 s = "addi";
4158 s2 = "add";
4159 goto do_addi;
4160 case M_ADDU_I:
4161 s = "addiu";
4162 s2 = "addu";
4163 goto do_addi;
4164 case M_DADD_I:
4165 dbl = 1;
4166 s = "daddi";
4167 s2 = "dadd";
4168 goto do_addi;
4169 case M_DADDU_I:
4170 dbl = 1;
4171 s = "daddiu";
4172 s2 = "daddu";
4173 do_addi:
4174 if (imm_expr.X_op == O_constant
4175 && imm_expr.X_add_number >= -0x8000
4176 && imm_expr.X_add_number < 0x8000)
4177 {
4178 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
4179 break;
4180 }
4181 used_at = 1;
4182 load_register (AT, &imm_expr, dbl);
4183 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
4184 break;
4185
4186 case M_AND_I:
4187 s = "andi";
4188 s2 = "and";
4189 goto do_bit;
4190 case M_OR_I:
4191 s = "ori";
4192 s2 = "or";
4193 goto do_bit;
4194 case M_NOR_I:
4195 s = "";
4196 s2 = "nor";
4197 goto do_bit;
4198 case M_XOR_I:
4199 s = "xori";
4200 s2 = "xor";
4201 do_bit:
4202 if (imm_expr.X_op == O_constant
4203 && imm_expr.X_add_number >= 0
4204 && imm_expr.X_add_number < 0x10000)
4205 {
4206 if (mask != M_NOR_I)
4207 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
4208 else
4209 {
4210 macro_build (&imm_expr, "ori", "t,r,i",
4211 treg, sreg, BFD_RELOC_LO16);
4212 macro_build (NULL, "nor", "d,v,t", treg, treg, 0);
4213 }
4214 break;
4215 }
4216
4217 used_at = 1;
4218 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4219 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
4220 break;
4221
4222 case M_BEQ_I:
4223 s = "beq";
4224 goto beq_i;
4225 case M_BEQL_I:
4226 s = "beql";
4227 likely = 1;
4228 goto beq_i;
4229 case M_BNE_I:
4230 s = "bne";
4231 goto beq_i;
4232 case M_BNEL_I:
4233 s = "bnel";
4234 likely = 1;
4235 beq_i:
4236 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4237 {
4238 macro_build (&offset_expr, s, "s,t,p", sreg, 0);
4239 break;
4240 }
4241 used_at = 1;
4242 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4243 macro_build (&offset_expr, s, "s,t,p", sreg, AT);
4244 break;
4245
4246 case M_BGEL:
4247 likely = 1;
4248 case M_BGE:
4249 if (treg == 0)
4250 {
4251 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
4252 break;
4253 }
4254 if (sreg == 0)
4255 {
4256 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
4257 break;
4258 }
4259 used_at = 1;
4260 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4261 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4262 break;
4263
4264 case M_BGTL_I:
4265 likely = 1;
4266 case M_BGT_I:
4267 /* check for > max integer */
4268 maxnum = 0x7fffffff;
4269 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4270 {
4271 maxnum <<= 16;
4272 maxnum |= 0xffff;
4273 maxnum <<= 16;
4274 maxnum |= 0xffff;
4275 }
4276 if (imm_expr.X_op == O_constant
4277 && imm_expr.X_add_number >= maxnum
4278 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4279 {
4280 do_false:
4281 /* result is always false */
4282 if (! likely)
4283 macro_build (NULL, "nop", "", 0);
4284 else
4285 macro_build (&offset_expr, "bnel", "s,t,p", 0, 0);
4286 break;
4287 }
4288 if (imm_expr.X_op != O_constant)
4289 as_bad (_("Unsupported large constant"));
4290 ++imm_expr.X_add_number;
4291 /* FALLTHROUGH */
4292 case M_BGE_I:
4293 case M_BGEL_I:
4294 if (mask == M_BGEL_I)
4295 likely = 1;
4296 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4297 {
4298 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
4299 break;
4300 }
4301 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4302 {
4303 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
4304 break;
4305 }
4306 maxnum = 0x7fffffff;
4307 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4308 {
4309 maxnum <<= 16;
4310 maxnum |= 0xffff;
4311 maxnum <<= 16;
4312 maxnum |= 0xffff;
4313 }
4314 maxnum = - maxnum - 1;
4315 if (imm_expr.X_op == O_constant
4316 && imm_expr.X_add_number <= maxnum
4317 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4318 {
4319 do_true:
4320 /* result is always true */
4321 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
4322 macro_build (&offset_expr, "b", "p");
4323 break;
4324 }
4325 used_at = 1;
4326 set_at (sreg, 0);
4327 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4328 break;
4329
4330 case M_BGEUL:
4331 likely = 1;
4332 case M_BGEU:
4333 if (treg == 0)
4334 goto do_true;
4335 if (sreg == 0)
4336 {
4337 macro_build (&offset_expr, likely ? "beql" : "beq",
4338 "s,t,p", 0, treg);
4339 break;
4340 }
4341 used_at = 1;
4342 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4343 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4344 break;
4345
4346 case M_BGTUL_I:
4347 likely = 1;
4348 case M_BGTU_I:
4349 if (sreg == 0
4350 || (HAVE_32BIT_GPRS
4351 && imm_expr.X_op == O_constant
4352 && imm_expr.X_add_number == (offsetT) 0xffffffff))
4353 goto do_false;
4354 if (imm_expr.X_op != O_constant)
4355 as_bad (_("Unsupported large constant"));
4356 ++imm_expr.X_add_number;
4357 /* FALLTHROUGH */
4358 case M_BGEU_I:
4359 case M_BGEUL_I:
4360 if (mask == M_BGEUL_I)
4361 likely = 1;
4362 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4363 goto do_true;
4364 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4365 {
4366 macro_build (&offset_expr, likely ? "bnel" : "bne",
4367 "s,t,p", sreg, 0);
4368 break;
4369 }
4370 used_at = 1;
4371 set_at (sreg, 1);
4372 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4373 break;
4374
4375 case M_BGTL:
4376 likely = 1;
4377 case M_BGT:
4378 if (treg == 0)
4379 {
4380 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
4381 break;
4382 }
4383 if (sreg == 0)
4384 {
4385 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
4386 break;
4387 }
4388 used_at = 1;
4389 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
4390 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4391 break;
4392
4393 case M_BGTUL:
4394 likely = 1;
4395 case M_BGTU:
4396 if (treg == 0)
4397 {
4398 macro_build (&offset_expr, likely ? "bnel" : "bne",
4399 "s,t,p", sreg, 0);
4400 break;
4401 }
4402 if (sreg == 0)
4403 goto do_false;
4404 used_at = 1;
4405 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
4406 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4407 break;
4408
4409 case M_BLEL:
4410 likely = 1;
4411 case M_BLE:
4412 if (treg == 0)
4413 {
4414 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
4415 break;
4416 }
4417 if (sreg == 0)
4418 {
4419 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
4420 break;
4421 }
4422 used_at = 1;
4423 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
4424 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4425 break;
4426
4427 case M_BLEL_I:
4428 likely = 1;
4429 case M_BLE_I:
4430 maxnum = 0x7fffffff;
4431 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
4432 {
4433 maxnum <<= 16;
4434 maxnum |= 0xffff;
4435 maxnum <<= 16;
4436 maxnum |= 0xffff;
4437 }
4438 if (imm_expr.X_op == O_constant
4439 && imm_expr.X_add_number >= maxnum
4440 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
4441 goto do_true;
4442 if (imm_expr.X_op != O_constant)
4443 as_bad (_("Unsupported large constant"));
4444 ++imm_expr.X_add_number;
4445 /* FALLTHROUGH */
4446 case M_BLT_I:
4447 case M_BLTL_I:
4448 if (mask == M_BLTL_I)
4449 likely = 1;
4450 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4451 {
4452 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
4453 break;
4454 }
4455 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4456 {
4457 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
4458 break;
4459 }
4460 used_at = 1;
4461 set_at (sreg, 0);
4462 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4463 break;
4464
4465 case M_BLEUL:
4466 likely = 1;
4467 case M_BLEU:
4468 if (treg == 0)
4469 {
4470 macro_build (&offset_expr, likely ? "beql" : "beq",
4471 "s,t,p", sreg, 0);
4472 break;
4473 }
4474 if (sreg == 0)
4475 goto do_true;
4476 used_at = 1;
4477 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
4478 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
4479 break;
4480
4481 case M_BLEUL_I:
4482 likely = 1;
4483 case M_BLEU_I:
4484 if (sreg == 0
4485 || (HAVE_32BIT_GPRS
4486 && imm_expr.X_op == O_constant
4487 && imm_expr.X_add_number == (offsetT) 0xffffffff))
4488 goto do_true;
4489 if (imm_expr.X_op != O_constant)
4490 as_bad (_("Unsupported large constant"));
4491 ++imm_expr.X_add_number;
4492 /* FALLTHROUGH */
4493 case M_BLTU_I:
4494 case M_BLTUL_I:
4495 if (mask == M_BLTUL_I)
4496 likely = 1;
4497 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4498 goto do_false;
4499 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4500 {
4501 macro_build (&offset_expr, likely ? "beql" : "beq",
4502 "s,t,p", sreg, 0);
4503 break;
4504 }
4505 used_at = 1;
4506 set_at (sreg, 1);
4507 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4508 break;
4509
4510 case M_BLTL:
4511 likely = 1;
4512 case M_BLT:
4513 if (treg == 0)
4514 {
4515 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
4516 break;
4517 }
4518 if (sreg == 0)
4519 {
4520 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
4521 break;
4522 }
4523 used_at = 1;
4524 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4525 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4526 break;
4527
4528 case M_BLTUL:
4529 likely = 1;
4530 case M_BLTU:
4531 if (treg == 0)
4532 goto do_false;
4533 if (sreg == 0)
4534 {
4535 macro_build (&offset_expr, likely ? "bnel" : "bne",
4536 "s,t,p", 0, treg);
4537 break;
4538 }
4539 used_at = 1;
4540 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4541 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
4542 break;
4543
4544 case M_DEXT:
4545 {
4546 unsigned long pos;
4547 unsigned long size;
4548
4549 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
4550 {
4551 as_bad (_("Unsupported large constant"));
4552 pos = size = 1;
4553 }
4554 else
4555 {
4556 pos = (unsigned long) imm_expr.X_add_number;
4557 size = (unsigned long) imm2_expr.X_add_number;
4558 }
4559
4560 if (pos > 63)
4561 {
4562 as_bad (_("Improper position (%lu)"), pos);
4563 pos = 1;
4564 }
4565 if (size == 0 || size > 64
4566 || (pos + size - 1) > 63)
4567 {
4568 as_bad (_("Improper extract size (%lu, position %lu)"),
4569 size, pos);
4570 size = 1;
4571 }
4572
4573 if (size <= 32 && pos < 32)
4574 {
4575 s = "dext";
4576 fmt = "t,r,+A,+C";
4577 }
4578 else if (size <= 32)
4579 {
4580 s = "dextu";
4581 fmt = "t,r,+E,+H";
4582 }
4583 else
4584 {
4585 s = "dextm";
4586 fmt = "t,r,+A,+G";
4587 }
4588 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1);
4589 }
4590 break;
4591
4592 case M_DINS:
4593 {
4594 unsigned long pos;
4595 unsigned long size;
4596
4597 if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant)
4598 {
4599 as_bad (_("Unsupported large constant"));
4600 pos = size = 1;
4601 }
4602 else
4603 {
4604 pos = (unsigned long) imm_expr.X_add_number;
4605 size = (unsigned long) imm2_expr.X_add_number;
4606 }
4607
4608 if (pos > 63)
4609 {
4610 as_bad (_("Improper position (%lu)"), pos);
4611 pos = 1;
4612 }
4613 if (size == 0 || size > 64
4614 || (pos + size - 1) > 63)
4615 {
4616 as_bad (_("Improper insert size (%lu, position %lu)"),
4617 size, pos);
4618 size = 1;
4619 }
4620
4621 if (pos < 32 && (pos + size - 1) < 32)
4622 {
4623 s = "dins";
4624 fmt = "t,r,+A,+B";
4625 }
4626 else if (pos >= 32)
4627 {
4628 s = "dinsu";
4629 fmt = "t,r,+E,+F";
4630 }
4631 else
4632 {
4633 s = "dinsm";
4634 fmt = "t,r,+A,+F";
4635 }
4636 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos,
4637 pos + size - 1);
4638 }
4639 break;
4640
4641 case M_DDIV_3:
4642 dbl = 1;
4643 case M_DIV_3:
4644 s = "mflo";
4645 goto do_div3;
4646 case M_DREM_3:
4647 dbl = 1;
4648 case M_REM_3:
4649 s = "mfhi";
4650 do_div3:
4651 if (treg == 0)
4652 {
4653 as_warn (_("Divide by zero."));
4654 if (mips_trap)
4655 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
4656 else
4657 macro_build (NULL, "break", "c", 7);
4658 break;
4659 }
4660
4661 start_noreorder ();
4662 if (mips_trap)
4663 {
4664 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
4665 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
4666 }
4667 else
4668 {
4669 expr1.X_add_number = 8;
4670 macro_build (&expr1, "bne", "s,t,p", treg, 0);
4671 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
4672 macro_build (NULL, "break", "c", 7);
4673 }
4674 expr1.X_add_number = -1;
4675 used_at = 1;
4676 load_register (AT, &expr1, dbl);
4677 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
4678 macro_build (&expr1, "bne", "s,t,p", treg, AT);
4679 if (dbl)
4680 {
4681 expr1.X_add_number = 1;
4682 load_register (AT, &expr1, dbl);
4683 macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
4684 }
4685 else
4686 {
4687 expr1.X_add_number = 0x80000000;
4688 macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
4689 }
4690 if (mips_trap)
4691 {
4692 macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
4693 /* We want to close the noreorder block as soon as possible, so
4694 that later insns are available for delay slot filling. */
4695 end_noreorder ();
4696 }
4697 else
4698 {
4699 expr1.X_add_number = 8;
4700 macro_build (&expr1, "bne", "s,t,p", sreg, AT);
4701 macro_build (NULL, "nop", "", 0);
4702
4703 /* We want to close the noreorder block as soon as possible, so
4704 that later insns are available for delay slot filling. */
4705 end_noreorder ();
4706
4707 macro_build (NULL, "break", "c", 6);
4708 }
4709 macro_build (NULL, s, "d", dreg);
4710 break;
4711
4712 case M_DIV_3I:
4713 s = "div";
4714 s2 = "mflo";
4715 goto do_divi;
4716 case M_DIVU_3I:
4717 s = "divu";
4718 s2 = "mflo";
4719 goto do_divi;
4720 case M_REM_3I:
4721 s = "div";
4722 s2 = "mfhi";
4723 goto do_divi;
4724 case M_REMU_3I:
4725 s = "divu";
4726 s2 = "mfhi";
4727 goto do_divi;
4728 case M_DDIV_3I:
4729 dbl = 1;
4730 s = "ddiv";
4731 s2 = "mflo";
4732 goto do_divi;
4733 case M_DDIVU_3I:
4734 dbl = 1;
4735 s = "ddivu";
4736 s2 = "mflo";
4737 goto do_divi;
4738 case M_DREM_3I:
4739 dbl = 1;
4740 s = "ddiv";
4741 s2 = "mfhi";
4742 goto do_divi;
4743 case M_DREMU_3I:
4744 dbl = 1;
4745 s = "ddivu";
4746 s2 = "mfhi";
4747 do_divi:
4748 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4749 {
4750 as_warn (_("Divide by zero."));
4751 if (mips_trap)
4752 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
4753 else
4754 macro_build (NULL, "break", "c", 7);
4755 break;
4756 }
4757 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4758 {
4759 if (strcmp (s2, "mflo") == 0)
4760 move_register (dreg, sreg);
4761 else
4762 move_register (dreg, 0);
4763 break;
4764 }
4765 if (imm_expr.X_op == O_constant
4766 && imm_expr.X_add_number == -1
4767 && s[strlen (s) - 1] != 'u')
4768 {
4769 if (strcmp (s2, "mflo") == 0)
4770 {
4771 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
4772 }
4773 else
4774 move_register (dreg, 0);
4775 break;
4776 }
4777
4778 used_at = 1;
4779 load_register (AT, &imm_expr, dbl);
4780 macro_build (NULL, s, "z,s,t", sreg, AT);
4781 macro_build (NULL, s2, "d", dreg);
4782 break;
4783
4784 case M_DIVU_3:
4785 s = "divu";
4786 s2 = "mflo";
4787 goto do_divu3;
4788 case M_REMU_3:
4789 s = "divu";
4790 s2 = "mfhi";
4791 goto do_divu3;
4792 case M_DDIVU_3:
4793 s = "ddivu";
4794 s2 = "mflo";
4795 goto do_divu3;
4796 case M_DREMU_3:
4797 s = "ddivu";
4798 s2 = "mfhi";
4799 do_divu3:
4800 start_noreorder ();
4801 if (mips_trap)
4802 {
4803 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
4804 macro_build (NULL, s, "z,s,t", sreg, treg);
4805 /* We want to close the noreorder block as soon as possible, so
4806 that later insns are available for delay slot filling. */
4807 end_noreorder ();
4808 }
4809 else
4810 {
4811 expr1.X_add_number = 8;
4812 macro_build (&expr1, "bne", "s,t,p", treg, 0);
4813 macro_build (NULL, s, "z,s,t", sreg, treg);
4814
4815 /* We want to close the noreorder block as soon as possible, so
4816 that later insns are available for delay slot filling. */
4817 end_noreorder ();
4818 macro_build (NULL, "break", "c", 7);
4819 }
4820 macro_build (NULL, s2, "d", dreg);
4821 break;
4822
4823 case M_DLCA_AB:
4824 dbl = 1;
4825 case M_LCA_AB:
4826 call = 1;
4827 goto do_la;
4828 case M_DLA_AB:
4829 dbl = 1;
4830 case M_LA_AB:
4831 do_la:
4832 /* Load the address of a symbol into a register. If breg is not
4833 zero, we then add a base register to it. */
4834
4835 if (dbl && HAVE_32BIT_GPRS)
4836 as_warn (_("dla used to load 32-bit register"));
4837
4838 if (! dbl && HAVE_64BIT_OBJECTS)
4839 as_warn (_("la used to load 64-bit address"));
4840
4841 if (offset_expr.X_op == O_constant
4842 && offset_expr.X_add_number >= -0x8000
4843 && offset_expr.X_add_number < 0x8000)
4844 {
4845 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
4846 "t,r,j", treg, sreg, BFD_RELOC_LO16);
4847 break;
4848 }
4849
4850 if (!mips_opts.noat && (treg == breg))
4851 {
4852 tempreg = AT;
4853 used_at = 1;
4854 }
4855 else
4856 {
4857 tempreg = treg;
4858 }
4859
4860 if (offset_expr.X_op != O_symbol
4861 && offset_expr.X_op != O_constant)
4862 {
4863 as_bad (_("expression too complex"));
4864 offset_expr.X_op = O_constant;
4865 }
4866
4867 if (offset_expr.X_op == O_constant)
4868 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
4869 else if (mips_pic == NO_PIC)
4870 {
4871 /* If this is a reference to a GP relative symbol, we want
4872 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
4873 Otherwise we want
4874 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4875 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4876 If we have a constant, we need two instructions anyhow,
4877 so we may as well always use the latter form.
4878
4879 With 64bit address space and a usable $at we want
4880 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4881 lui $at,<sym> (BFD_RELOC_HI16_S)
4882 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4883 daddiu $at,<sym> (BFD_RELOC_LO16)
4884 dsll32 $tempreg,0
4885 daddu $tempreg,$tempreg,$at
4886
4887 If $at is already in use, we use a path which is suboptimal
4888 on superscalar processors.
4889 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4890 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4891 dsll $tempreg,16
4892 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
4893 dsll $tempreg,16
4894 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
4895
4896 For GP relative symbols in 64bit address space we can use
4897 the same sequence as in 32bit address space. */
4898 if (HAVE_64BIT_SYMBOLS)
4899 {
4900 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
4901 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
4902 {
4903 relax_start (offset_expr.X_add_symbol);
4904 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
4905 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4906 relax_switch ();
4907 }
4908
4909 if (used_at == 0 && !mips_opts.noat)
4910 {
4911 macro_build (&offset_expr, "lui", "t,u",
4912 tempreg, BFD_RELOC_MIPS_HIGHEST);
4913 macro_build (&offset_expr, "lui", "t,u",
4914 AT, BFD_RELOC_HI16_S);
4915 macro_build (&offset_expr, "daddiu", "t,r,j",
4916 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
4917 macro_build (&offset_expr, "daddiu", "t,r,j",
4918 AT, AT, BFD_RELOC_LO16);
4919 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
4920 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
4921 used_at = 1;
4922 }
4923 else
4924 {
4925 macro_build (&offset_expr, "lui", "t,u",
4926 tempreg, BFD_RELOC_MIPS_HIGHEST);
4927 macro_build (&offset_expr, "daddiu", "t,r,j",
4928 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
4929 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
4930 macro_build (&offset_expr, "daddiu", "t,r,j",
4931 tempreg, tempreg, BFD_RELOC_HI16_S);
4932 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
4933 macro_build (&offset_expr, "daddiu", "t,r,j",
4934 tempreg, tempreg, BFD_RELOC_LO16);
4935 }
4936
4937 if (mips_relax.sequence)
4938 relax_end ();
4939 }
4940 else
4941 {
4942 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
4943 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
4944 {
4945 relax_start (offset_expr.X_add_symbol);
4946 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
4947 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4948 relax_switch ();
4949 }
4950 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
4951 as_bad (_("offset too large"));
4952 macro_build_lui (&offset_expr, tempreg);
4953 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
4954 tempreg, tempreg, BFD_RELOC_LO16);
4955 if (mips_relax.sequence)
4956 relax_end ();
4957 }
4958 }
4959 else if (mips_pic == SVR4_PIC && ! mips_big_got && ! HAVE_NEWABI)
4960 {
4961 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
4962
4963 /* If this is a reference to an external symbol, and there
4964 is no constant, we want
4965 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4966 or for lca or if tempreg is PIC_CALL_REG
4967 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
4968 For a local symbol, we want
4969 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4970 nop
4971 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4972
4973 If we have a small constant, and this is a reference to
4974 an external symbol, we want
4975 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4976 nop
4977 addiu $tempreg,$tempreg,<constant>
4978 For a local symbol, we want the same instruction
4979 sequence, but we output a BFD_RELOC_LO16 reloc on the
4980 addiu instruction.
4981
4982 If we have a large constant, and this is a reference to
4983 an external symbol, we want
4984 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4985 lui $at,<hiconstant>
4986 addiu $at,$at,<loconstant>
4987 addu $tempreg,$tempreg,$at
4988 For a local symbol, we want the same instruction
4989 sequence, but we output a BFD_RELOC_LO16 reloc on the
4990 addiu instruction.
4991 */
4992
4993 if (offset_expr.X_add_number == 0)
4994 {
4995 if (breg == 0 && (call || tempreg == PIC_CALL_REG))
4996 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
4997
4998 relax_start (offset_expr.X_add_symbol);
4999 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5000 lw_reloc_type, mips_gp_register);
5001 if (breg != 0)
5002 {
5003 /* We're going to put in an addu instruction using
5004 tempreg, so we may as well insert the nop right
5005 now. */
5006 load_delay_nop ();
5007 }
5008 relax_switch ();
5009 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5010 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
5011 load_delay_nop ();
5012 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5013 tempreg, tempreg, BFD_RELOC_LO16);
5014 relax_end ();
5015 /* FIXME: If breg == 0, and the next instruction uses
5016 $tempreg, then if this variant case is used an extra
5017 nop will be generated. */
5018 }
5019 else if (offset_expr.X_add_number >= -0x8000
5020 && offset_expr.X_add_number < 0x8000)
5021 {
5022 load_got_offset (tempreg, &offset_expr);
5023 load_delay_nop ();
5024 add_got_offset (tempreg, &offset_expr);
5025 }
5026 else
5027 {
5028 expr1.X_add_number = offset_expr.X_add_number;
5029 offset_expr.X_add_number =
5030 ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000;
5031 load_got_offset (tempreg, &offset_expr);
5032 offset_expr.X_add_number = expr1.X_add_number;
5033 /* If we are going to add in a base register, and the
5034 target register and the base register are the same,
5035 then we are using AT as a temporary register. Since
5036 we want to load the constant into AT, we add our
5037 current AT (from the global offset table) and the
5038 register into the register now, and pretend we were
5039 not using a base register. */
5040 if (breg == treg)
5041 {
5042 load_delay_nop ();
5043 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5044 treg, AT, breg);
5045 breg = 0;
5046 tempreg = treg;
5047 }
5048 add_got_offset_hilo (tempreg, &offset_expr, AT);
5049 used_at = 1;
5050 }
5051 }
5052 else if (mips_pic == SVR4_PIC && ! mips_big_got && HAVE_NEWABI)
5053 {
5054 int add_breg_early = 0;
5055
5056 /* If this is a reference to an external, and there is no
5057 constant, or local symbol (*), with or without a
5058 constant, we want
5059 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5060 or for lca or if tempreg is PIC_CALL_REG
5061 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5062
5063 If we have a small constant, and this is a reference to
5064 an external symbol, we want
5065 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5066 addiu $tempreg,$tempreg,<constant>
5067
5068 If we have a large constant, and this is a reference to
5069 an external symbol, we want
5070 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5071 lui $at,<hiconstant>
5072 addiu $at,$at,<loconstant>
5073 addu $tempreg,$tempreg,$at
5074
5075 (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for
5076 local symbols, even though it introduces an additional
5077 instruction. */
5078
5079 if (offset_expr.X_add_number)
5080 {
5081 expr1.X_add_number = offset_expr.X_add_number;
5082 offset_expr.X_add_number = 0;
5083
5084 relax_start (offset_expr.X_add_symbol);
5085 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5086 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5087
5088 if (expr1.X_add_number >= -0x8000
5089 && expr1.X_add_number < 0x8000)
5090 {
5091 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5092 tempreg, tempreg, BFD_RELOC_LO16);
5093 }
5094 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
5095 {
5096 int dreg;
5097
5098 /* If we are going to add in a base register, and the
5099 target register and the base register are the same,
5100 then we are using AT as a temporary register. Since
5101 we want to load the constant into AT, we add our
5102 current AT (from the global offset table) and the
5103 register into the register now, and pretend we were
5104 not using a base register. */
5105 if (breg != treg)
5106 dreg = tempreg;
5107 else
5108 {
5109 assert (tempreg == AT);
5110 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5111 treg, AT, breg);
5112 dreg = treg;
5113 add_breg_early = 1;
5114 }
5115
5116 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5117 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5118 dreg, dreg, AT);
5119
5120 used_at = 1;
5121 }
5122 else
5123 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5124
5125 relax_switch ();
5126 offset_expr.X_add_number = expr1.X_add_number;
5127
5128 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5129 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5130 if (add_breg_early)
5131 {
5132 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5133 treg, tempreg, breg);
5134 breg = 0;
5135 tempreg = treg;
5136 }
5137 relax_end ();
5138 }
5139 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
5140 {
5141 relax_start (offset_expr.X_add_symbol);
5142 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5143 BFD_RELOC_MIPS_CALL16, mips_gp_register);
5144 relax_switch ();
5145 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5146 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5147 relax_end ();
5148 }
5149 else
5150 {
5151 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5152 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5153 }
5154 }
5155 else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
5156 {
5157 int gpdelay;
5158 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5159 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
5160 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5161
5162 /* This is the large GOT case. If this is a reference to an
5163 external symbol, and there is no constant, we want
5164 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5165 addu $tempreg,$tempreg,$gp
5166 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5167 or for lca or if tempreg is PIC_CALL_REG
5168 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5169 addu $tempreg,$tempreg,$gp
5170 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5171 For a local symbol, we want
5172 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5173 nop
5174 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5175
5176 If we have a small constant, and this is a reference to
5177 an external symbol, we want
5178 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5179 addu $tempreg,$tempreg,$gp
5180 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5181 nop
5182 addiu $tempreg,$tempreg,<constant>
5183 For a local symbol, we want
5184 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5185 nop
5186 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5187
5188 If we have a large constant, and this is a reference to
5189 an external symbol, we want
5190 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5191 addu $tempreg,$tempreg,$gp
5192 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5193 lui $at,<hiconstant>
5194 addiu $at,$at,<loconstant>
5195 addu $tempreg,$tempreg,$at
5196 For a local symbol, we want
5197 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5198 lui $at,<hiconstant>
5199 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5200 addu $tempreg,$tempreg,$at
5201 */
5202
5203 expr1.X_add_number = offset_expr.X_add_number;
5204 offset_expr.X_add_number = 0;
5205 relax_start (offset_expr.X_add_symbol);
5206 gpdelay = reg_needs_delay (mips_gp_register);
5207 if (expr1.X_add_number == 0 && breg == 0
5208 && (call || tempreg == PIC_CALL_REG))
5209 {
5210 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5211 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5212 }
5213 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5214 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5215 tempreg, tempreg, mips_gp_register);
5216 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5217 tempreg, lw_reloc_type, tempreg);
5218 if (expr1.X_add_number == 0)
5219 {
5220 if (breg != 0)
5221 {
5222 /* We're going to put in an addu instruction using
5223 tempreg, so we may as well insert the nop right
5224 now. */
5225 load_delay_nop ();
5226 }
5227 }
5228 else if (expr1.X_add_number >= -0x8000
5229 && expr1.X_add_number < 0x8000)
5230 {
5231 load_delay_nop ();
5232 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5233 tempreg, tempreg, BFD_RELOC_LO16);
5234 }
5235 else
5236 {
5237 int dreg;
5238
5239 /* If we are going to add in a base register, and the
5240 target register and the base register are the same,
5241 then we are using AT as a temporary register. Since
5242 we want to load the constant into AT, we add our
5243 current AT (from the global offset table) and the
5244 register into the register now, and pretend we were
5245 not using a base register. */
5246 if (breg != treg)
5247 dreg = tempreg;
5248 else
5249 {
5250 assert (tempreg == AT);
5251 load_delay_nop ();
5252 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5253 treg, AT, breg);
5254 dreg = treg;
5255 }
5256
5257 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5258 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
5259
5260 used_at = 1;
5261 }
5262 offset_expr.X_add_number =
5263 ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
5264 relax_switch ();
5265
5266 if (gpdelay)
5267 {
5268 /* This is needed because this instruction uses $gp, but
5269 the first instruction on the main stream does not. */
5270 macro_build (NULL, "nop", "");
5271 }
5272
5273 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5274 local_reloc_type, mips_gp_register);
5275 if (expr1.X_add_number >= -0x8000
5276 && expr1.X_add_number < 0x8000)
5277 {
5278 load_delay_nop ();
5279 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5280 tempreg, tempreg, BFD_RELOC_LO16);
5281 /* FIXME: If add_number is 0, and there was no base
5282 register, the external symbol case ended with a load,
5283 so if the symbol turns out to not be external, and
5284 the next instruction uses tempreg, an unnecessary nop
5285 will be inserted. */
5286 }
5287 else
5288 {
5289 if (breg == treg)
5290 {
5291 /* We must add in the base register now, as in the
5292 external symbol case. */
5293 assert (tempreg == AT);
5294 load_delay_nop ();
5295 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5296 treg, AT, breg);
5297 tempreg = treg;
5298 /* We set breg to 0 because we have arranged to add
5299 it in in both cases. */
5300 breg = 0;
5301 }
5302
5303 macro_build_lui (&expr1, AT);
5304 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5305 AT, AT, BFD_RELOC_LO16);
5306 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5307 tempreg, tempreg, AT);
5308 used_at = 1;
5309 }
5310 relax_end ();
5311 }
5312 else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
5313 {
5314 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5315 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
5316 int add_breg_early = 0;
5317
5318 /* This is the large GOT case. If this is a reference to an
5319 external symbol, and there is no constant, we want
5320 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5321 add $tempreg,$tempreg,$gp
5322 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5323 or for lca or if tempreg is PIC_CALL_REG
5324 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5325 add $tempreg,$tempreg,$gp
5326 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
5327
5328 If we have a small constant, and this is a reference to
5329 an external symbol, we want
5330 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5331 add $tempreg,$tempreg,$gp
5332 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5333 addi $tempreg,$tempreg,<constant>
5334
5335 If we have a large constant, and this is a reference to
5336 an external symbol, we want
5337 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5338 addu $tempreg,$tempreg,$gp
5339 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5340 lui $at,<hiconstant>
5341 addi $at,$at,<loconstant>
5342 add $tempreg,$tempreg,$at
5343
5344 If we have NewABI, and we know it's a local symbol, we want
5345 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5346 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5347 otherwise we have to resort to GOT_HI16/GOT_LO16. */
5348
5349 relax_start (offset_expr.X_add_symbol);
5350
5351 expr1.X_add_number = offset_expr.X_add_number;
5352 offset_expr.X_add_number = 0;
5353
5354 if (expr1.X_add_number == 0 && breg == 0
5355 && (call || tempreg == PIC_CALL_REG))
5356 {
5357 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5358 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5359 }
5360 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5361 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5362 tempreg, tempreg, mips_gp_register);
5363 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5364 tempreg, lw_reloc_type, tempreg);
5365
5366 if (expr1.X_add_number == 0)
5367 ;
5368 else if (expr1.X_add_number >= -0x8000
5369 && expr1.X_add_number < 0x8000)
5370 {
5371 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5372 tempreg, tempreg, BFD_RELOC_LO16);
5373 }
5374 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
5375 {
5376 int dreg;
5377
5378 /* If we are going to add in a base register, and the
5379 target register and the base register are the same,
5380 then we are using AT as a temporary register. Since
5381 we want to load the constant into AT, we add our
5382 current AT (from the global offset table) and the
5383 register into the register now, and pretend we were
5384 not using a base register. */
5385 if (breg != treg)
5386 dreg = tempreg;
5387 else
5388 {
5389 assert (tempreg == AT);
5390 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5391 treg, AT, breg);
5392 dreg = treg;
5393 add_breg_early = 1;
5394 }
5395
5396 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
5397 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
5398
5399 used_at = 1;
5400 }
5401 else
5402 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5403
5404 relax_switch ();
5405 offset_expr.X_add_number = expr1.X_add_number;
5406 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5407 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
5408 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
5409 tempreg, BFD_RELOC_MIPS_GOT_OFST);
5410 if (add_breg_early)
5411 {
5412 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5413 treg, tempreg, breg);
5414 breg = 0;
5415 tempreg = treg;
5416 }
5417 relax_end ();
5418 }
5419 else
5420 abort ();
5421
5422 if (breg != 0)
5423 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
5424 break;
5425
5426 case M_J_A:
5427 /* The j instruction may not be used in PIC code, since it
5428 requires an absolute address. We convert it to a b
5429 instruction. */
5430 if (mips_pic == NO_PIC)
5431 macro_build (&offset_expr, "j", "a");
5432 else
5433 macro_build (&offset_expr, "b", "p");
5434 break;
5435
5436 /* The jal instructions must be handled as macros because when
5437 generating PIC code they expand to multi-instruction
5438 sequences. Normally they are simple instructions. */
5439 case M_JAL_1:
5440 dreg = RA;
5441 /* Fall through. */
5442 case M_JAL_2:
5443 if (mips_pic == NO_PIC)
5444 macro_build (NULL, "jalr", "d,s", dreg, sreg);
5445 else if (mips_pic == SVR4_PIC)
5446 {
5447 if (sreg != PIC_CALL_REG)
5448 as_warn (_("MIPS PIC call to register other than $25"));
5449
5450 macro_build (NULL, "jalr", "d,s", dreg, sreg);
5451 if (! HAVE_NEWABI)
5452 {
5453 if (mips_cprestore_offset < 0)
5454 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5455 else
5456 {
5457 if (! mips_frame_reg_valid)
5458 {
5459 as_warn (_("No .frame pseudo-op used in PIC code"));
5460 /* Quiet this warning. */
5461 mips_frame_reg_valid = 1;
5462 }
5463 if (! mips_cprestore_valid)
5464 {
5465 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5466 /* Quiet this warning. */
5467 mips_cprestore_valid = 1;
5468 }
5469 expr1.X_add_number = mips_cprestore_offset;
5470 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
5471 mips_gp_register,
5472 mips_frame_reg,
5473 HAVE_64BIT_ADDRESSES);
5474 }
5475 }
5476 }
5477 else
5478 abort ();
5479
5480 break;
5481
5482 case M_JAL_A:
5483 if (mips_pic == NO_PIC)
5484 macro_build (&offset_expr, "jal", "a");
5485 else if (mips_pic == SVR4_PIC)
5486 {
5487 /* If this is a reference to an external symbol, and we are
5488 using a small GOT, we want
5489 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5490 nop
5491 jalr $ra,$25
5492 nop
5493 lw $gp,cprestore($sp)
5494 The cprestore value is set using the .cprestore
5495 pseudo-op. If we are using a big GOT, we want
5496 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5497 addu $25,$25,$gp
5498 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
5499 nop
5500 jalr $ra,$25
5501 nop
5502 lw $gp,cprestore($sp)
5503 If the symbol is not external, we want
5504 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5505 nop
5506 addiu $25,$25,<sym> (BFD_RELOC_LO16)
5507 jalr $ra,$25
5508 nop
5509 lw $gp,cprestore($sp)
5510
5511 For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16
5512 sequences above, minus nops, unless the symbol is local,
5513 which enables us to use GOT_PAGE/GOT_OFST (big got) or
5514 GOT_DISP. */
5515 if (HAVE_NEWABI)
5516 {
5517 if (! mips_big_got)
5518 {
5519 relax_start (offset_expr.X_add_symbol);
5520 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5521 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
5522 mips_gp_register);
5523 relax_switch ();
5524 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5525 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
5526 mips_gp_register);
5527 relax_end ();
5528 }
5529 else
5530 {
5531 relax_start (offset_expr.X_add_symbol);
5532 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
5533 BFD_RELOC_MIPS_CALL_HI16);
5534 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
5535 PIC_CALL_REG, mips_gp_register);
5536 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5537 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
5538 PIC_CALL_REG);
5539 relax_switch ();
5540 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5541 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE,
5542 mips_gp_register);
5543 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5544 PIC_CALL_REG, PIC_CALL_REG,
5545 BFD_RELOC_MIPS_GOT_OFST);
5546 relax_end ();
5547 }
5548
5549 macro_build_jalr (&offset_expr);
5550 }
5551 else
5552 {
5553 relax_start (offset_expr.X_add_symbol);
5554 if (! mips_big_got)
5555 {
5556 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5557 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
5558 mips_gp_register);
5559 load_delay_nop ();
5560 relax_switch ();
5561 }
5562 else
5563 {
5564 int gpdelay;
5565
5566 gpdelay = reg_needs_delay (mips_gp_register);
5567 macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG,
5568 BFD_RELOC_MIPS_CALL_HI16);
5569 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG,
5570 PIC_CALL_REG, mips_gp_register);
5571 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5572 PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16,
5573 PIC_CALL_REG);
5574 load_delay_nop ();
5575 relax_switch ();
5576 if (gpdelay)
5577 macro_build (NULL, "nop", "");
5578 }
5579 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5580 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
5581 mips_gp_register);
5582 load_delay_nop ();
5583 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5584 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
5585 relax_end ();
5586 macro_build_jalr (&offset_expr);
5587
5588 if (mips_cprestore_offset < 0)
5589 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5590 else
5591 {
5592 if (! mips_frame_reg_valid)
5593 {
5594 as_warn (_("No .frame pseudo-op used in PIC code"));
5595 /* Quiet this warning. */
5596 mips_frame_reg_valid = 1;
5597 }
5598 if (! mips_cprestore_valid)
5599 {
5600 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5601 /* Quiet this warning. */
5602 mips_cprestore_valid = 1;
5603 }
5604 if (mips_opts.noreorder)
5605 macro_build (NULL, "nop", "");
5606 expr1.X_add_number = mips_cprestore_offset;
5607 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
5608 mips_gp_register,
5609 mips_frame_reg,
5610 HAVE_64BIT_ADDRESSES);
5611 }
5612 }
5613 }
5614 else
5615 abort ();
5616
5617 break;
5618
5619 case M_LB_AB:
5620 s = "lb";
5621 goto ld;
5622 case M_LBU_AB:
5623 s = "lbu";
5624 goto ld;
5625 case M_LH_AB:
5626 s = "lh";
5627 goto ld;
5628 case M_LHU_AB:
5629 s = "lhu";
5630 goto ld;
5631 case M_LW_AB:
5632 s = "lw";
5633 goto ld;
5634 case M_LWC0_AB:
5635 s = "lwc0";
5636 /* Itbl support may require additional care here. */
5637 coproc = 1;
5638 goto ld;
5639 case M_LWC1_AB:
5640 s = "lwc1";
5641 /* Itbl support may require additional care here. */
5642 coproc = 1;
5643 goto ld;
5644 case M_LWC2_AB:
5645 s = "lwc2";
5646 /* Itbl support may require additional care here. */
5647 coproc = 1;
5648 goto ld;
5649 case M_LWC3_AB:
5650 s = "lwc3";
5651 /* Itbl support may require additional care here. */
5652 coproc = 1;
5653 goto ld;
5654 case M_LWL_AB:
5655 s = "lwl";
5656 lr = 1;
5657 goto ld;
5658 case M_LWR_AB:
5659 s = "lwr";
5660 lr = 1;
5661 goto ld;
5662 case M_LDC1_AB:
5663 if (mips_opts.arch == CPU_R4650)
5664 {
5665 as_bad (_("opcode not supported on this processor"));
5666 break;
5667 }
5668 s = "ldc1";
5669 /* Itbl support may require additional care here. */
5670 coproc = 1;
5671 goto ld;
5672 case M_LDC2_AB:
5673 s = "ldc2";
5674 /* Itbl support may require additional care here. */
5675 coproc = 1;
5676 goto ld;
5677 case M_LDC3_AB:
5678 s = "ldc3";
5679 /* Itbl support may require additional care here. */
5680 coproc = 1;
5681 goto ld;
5682 case M_LDL_AB:
5683 s = "ldl";
5684 lr = 1;
5685 goto ld;
5686 case M_LDR_AB:
5687 s = "ldr";
5688 lr = 1;
5689 goto ld;
5690 case M_LL_AB:
5691 s = "ll";
5692 goto ld;
5693 case M_LLD_AB:
5694 s = "lld";
5695 goto ld;
5696 case M_LWU_AB:
5697 s = "lwu";
5698 ld:
5699 if (breg == treg || coproc || lr)
5700 {
5701 tempreg = AT;
5702 used_at = 1;
5703 }
5704 else
5705 {
5706 tempreg = treg;
5707 }
5708 goto ld_st;
5709 case M_SB_AB:
5710 s = "sb";
5711 goto st;
5712 case M_SH_AB:
5713 s = "sh";
5714 goto st;
5715 case M_SW_AB:
5716 s = "sw";
5717 goto st;
5718 case M_SWC0_AB:
5719 s = "swc0";
5720 /* Itbl support may require additional care here. */
5721 coproc = 1;
5722 goto st;
5723 case M_SWC1_AB:
5724 s = "swc1";
5725 /* Itbl support may require additional care here. */
5726 coproc = 1;
5727 goto st;
5728 case M_SWC2_AB:
5729 s = "swc2";
5730 /* Itbl support may require additional care here. */
5731 coproc = 1;
5732 goto st;
5733 case M_SWC3_AB:
5734 s = "swc3";
5735 /* Itbl support may require additional care here. */
5736 coproc = 1;
5737 goto st;
5738 case M_SWL_AB:
5739 s = "swl";
5740 goto st;
5741 case M_SWR_AB:
5742 s = "swr";
5743 goto st;
5744 case M_SC_AB:
5745 s = "sc";
5746 goto st;
5747 case M_SCD_AB:
5748 s = "scd";
5749 goto st;
5750 case M_SDC1_AB:
5751 if (mips_opts.arch == CPU_R4650)
5752 {
5753 as_bad (_("opcode not supported on this processor"));
5754 break;
5755 }
5756 s = "sdc1";
5757 coproc = 1;
5758 /* Itbl support may require additional care here. */
5759 goto st;
5760 case M_SDC2_AB:
5761 s = "sdc2";
5762 /* Itbl support may require additional care here. */
5763 coproc = 1;
5764 goto st;
5765 case M_SDC3_AB:
5766 s = "sdc3";
5767 /* Itbl support may require additional care here. */
5768 coproc = 1;
5769 goto st;
5770 case M_SDL_AB:
5771 s = "sdl";
5772 goto st;
5773 case M_SDR_AB:
5774 s = "sdr";
5775 st:
5776 tempreg = AT;
5777 used_at = 1;
5778 ld_st:
5779 /* Itbl support may require additional care here. */
5780 if (mask == M_LWC1_AB
5781 || mask == M_SWC1_AB
5782 || mask == M_LDC1_AB
5783 || mask == M_SDC1_AB
5784 || mask == M_L_DAB
5785 || mask == M_S_DAB)
5786 fmt = "T,o(b)";
5787 else if (coproc)
5788 fmt = "E,o(b)";
5789 else
5790 fmt = "t,o(b)";
5791
5792 if (offset_expr.X_op != O_constant
5793 && offset_expr.X_op != O_symbol)
5794 {
5795 as_bad (_("expression too complex"));
5796 offset_expr.X_op = O_constant;
5797 }
5798
5799 if (HAVE_32BIT_ADDRESSES
5800 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
5801 as_bad (_("Number (0x%lx%08lx) larger than 32 bits"),
5802 (unsigned long) (offset_expr.X_add_number >> 32),
5803 (unsigned long) (offset_expr.X_add_number & 0xffffffff));
5804
5805 /* A constant expression in PIC code can be handled just as it
5806 is in non PIC code. */
5807 if (offset_expr.X_op == O_constant)
5808 {
5809 expr1.X_add_number = ((offset_expr.X_add_number + 0x8000)
5810 & ~(bfd_vma) 0xffff);
5811 normalize_address_expr (&expr1);
5812 load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES);
5813 if (breg != 0)
5814 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5815 tempreg, tempreg, breg);
5816 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, tempreg);
5817 }
5818 else if (mips_pic == NO_PIC)
5819 {
5820 /* If this is a reference to a GP relative symbol, and there
5821 is no base register, we want
5822 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
5823 Otherwise, if there is no base register, we want
5824 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5825 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5826 If we have a constant, we need two instructions anyhow,
5827 so we always use the latter form.
5828
5829 If we have a base register, and this is a reference to a
5830 GP relative symbol, we want
5831 addu $tempreg,$breg,$gp
5832 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
5833 Otherwise we want
5834 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5835 addu $tempreg,$tempreg,$breg
5836 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5837 With a constant we always use the latter case.
5838
5839 With 64bit address space and no base register and $at usable,
5840 we want
5841 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5842 lui $at,<sym> (BFD_RELOC_HI16_S)
5843 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5844 dsll32 $tempreg,0
5845 daddu $tempreg,$at
5846 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5847 If we have a base register, we want
5848 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5849 lui $at,<sym> (BFD_RELOC_HI16_S)
5850 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5851 daddu $at,$breg
5852 dsll32 $tempreg,0
5853 daddu $tempreg,$at
5854 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5855
5856 Without $at we can't generate the optimal path for superscalar
5857 processors here since this would require two temporary registers.
5858 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5859 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5860 dsll $tempreg,16
5861 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5862 dsll $tempreg,16
5863 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5864 If we have a base register, we want
5865 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5866 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5867 dsll $tempreg,16
5868 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5869 dsll $tempreg,16
5870 daddu $tempreg,$tempreg,$breg
5871 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5872
5873 For GP relative symbols in 64bit address space we can use
5874 the same sequence as in 32bit address space. */
5875 if (HAVE_64BIT_SYMBOLS)
5876 {
5877 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5878 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5879 {
5880 relax_start (offset_expr.X_add_symbol);
5881 if (breg == 0)
5882 {
5883 macro_build (&offset_expr, s, fmt, treg,
5884 BFD_RELOC_GPREL16, mips_gp_register);
5885 }
5886 else
5887 {
5888 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5889 tempreg, breg, mips_gp_register);
5890 macro_build (&offset_expr, s, fmt, treg,
5891 BFD_RELOC_GPREL16, tempreg);
5892 }
5893 relax_switch ();
5894 }
5895
5896 if (used_at == 0 && !mips_opts.noat)
5897 {
5898 macro_build (&offset_expr, "lui", "t,u", tempreg,
5899 BFD_RELOC_MIPS_HIGHEST);
5900 macro_build (&offset_expr, "lui", "t,u", AT,
5901 BFD_RELOC_HI16_S);
5902 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
5903 tempreg, BFD_RELOC_MIPS_HIGHER);
5904 if (breg != 0)
5905 macro_build (NULL, "daddu", "d,v,t", AT, AT, breg);
5906 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
5907 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
5908 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16,
5909 tempreg);
5910 used_at = 1;
5911 }
5912 else
5913 {
5914 macro_build (&offset_expr, "lui", "t,u", tempreg,
5915 BFD_RELOC_MIPS_HIGHEST);
5916 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
5917 tempreg, BFD_RELOC_MIPS_HIGHER);
5918 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5919 macro_build (&offset_expr, "daddiu", "t,r,j", tempreg,
5920 tempreg, BFD_RELOC_HI16_S);
5921 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
5922 if (breg != 0)
5923 macro_build (NULL, "daddu", "d,v,t",
5924 tempreg, tempreg, breg);
5925 macro_build (&offset_expr, s, fmt, treg,
5926 BFD_RELOC_LO16, tempreg);
5927 }
5928
5929 if (mips_relax.sequence)
5930 relax_end ();
5931 break;
5932 }
5933
5934 if (breg == 0)
5935 {
5936 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5937 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5938 {
5939 relax_start (offset_expr.X_add_symbol);
5940 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
5941 mips_gp_register);
5942 relax_switch ();
5943 }
5944 macro_build_lui (&offset_expr, tempreg);
5945 macro_build (&offset_expr, s, fmt, treg,
5946 BFD_RELOC_LO16, tempreg);
5947 if (mips_relax.sequence)
5948 relax_end ();
5949 }
5950 else
5951 {
5952 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
5953 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
5954 {
5955 relax_start (offset_expr.X_add_symbol);
5956 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5957 tempreg, breg, mips_gp_register);
5958 macro_build (&offset_expr, s, fmt, treg,
5959 BFD_RELOC_GPREL16, tempreg);
5960 relax_switch ();
5961 }
5962 macro_build_lui (&offset_expr, tempreg);
5963 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5964 tempreg, tempreg, breg);
5965 macro_build (&offset_expr, s, fmt, treg,
5966 BFD_RELOC_LO16, tempreg);
5967 if (mips_relax.sequence)
5968 relax_end ();
5969 }
5970 }
5971 else if (mips_pic == SVR4_PIC && ! mips_big_got)
5972 {
5973 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
5974
5975 /* If this is a reference to an external symbol, we want
5976 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5977 nop
5978 <op> $treg,0($tempreg)
5979 Otherwise we want
5980 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5981 nop
5982 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5983 <op> $treg,0($tempreg)
5984
5985 For NewABI, we want
5986 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5987 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST)
5988
5989 If there is a base register, we add it to $tempreg before
5990 the <op>. If there is a constant, we stick it in the
5991 <op> instruction. We don't handle constants larger than
5992 16 bits, because we have no way to load the upper 16 bits
5993 (actually, we could handle them for the subset of cases
5994 in which we are not using $at). */
5995 assert (offset_expr.X_op == O_symbol);
5996 if (HAVE_NEWABI)
5997 {
5998 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5999 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6000 if (breg != 0)
6001 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6002 tempreg, tempreg, breg);
6003 macro_build (&offset_expr, s, fmt, treg,
6004 BFD_RELOC_MIPS_GOT_OFST, tempreg);
6005 break;
6006 }
6007 expr1.X_add_number = offset_expr.X_add_number;
6008 offset_expr.X_add_number = 0;
6009 if (expr1.X_add_number < -0x8000
6010 || expr1.X_add_number >= 0x8000)
6011 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6012 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6013 lw_reloc_type, mips_gp_register);
6014 load_delay_nop ();
6015 relax_start (offset_expr.X_add_symbol);
6016 relax_switch ();
6017 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6018 tempreg, BFD_RELOC_LO16);
6019 relax_end ();
6020 if (breg != 0)
6021 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6022 tempreg, tempreg, breg);
6023 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6024 }
6025 else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
6026 {
6027 int gpdelay;
6028
6029 /* If this is a reference to an external symbol, we want
6030 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6031 addu $tempreg,$tempreg,$gp
6032 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6033 <op> $treg,0($tempreg)
6034 Otherwise we want
6035 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6036 nop
6037 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
6038 <op> $treg,0($tempreg)
6039 If there is a base register, we add it to $tempreg before
6040 the <op>. If there is a constant, we stick it in the
6041 <op> instruction. We don't handle constants larger than
6042 16 bits, because we have no way to load the upper 16 bits
6043 (actually, we could handle them for the subset of cases
6044 in which we are not using $at). */
6045 assert (offset_expr.X_op == O_symbol);
6046 expr1.X_add_number = offset_expr.X_add_number;
6047 offset_expr.X_add_number = 0;
6048 if (expr1.X_add_number < -0x8000
6049 || expr1.X_add_number >= 0x8000)
6050 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6051 gpdelay = reg_needs_delay (mips_gp_register);
6052 relax_start (offset_expr.X_add_symbol);
6053 macro_build (&offset_expr, "lui", "t,u", tempreg,
6054 BFD_RELOC_MIPS_GOT_HI16);
6055 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6056 mips_gp_register);
6057 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6058 BFD_RELOC_MIPS_GOT_LO16, tempreg);
6059 relax_switch ();
6060 if (gpdelay)
6061 macro_build (NULL, "nop", "");
6062 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6063 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6064 load_delay_nop ();
6065 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6066 tempreg, BFD_RELOC_LO16);
6067 relax_end ();
6068
6069 if (breg != 0)
6070 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6071 tempreg, tempreg, breg);
6072 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6073 }
6074 else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
6075 {
6076 /* If this is a reference to an external symbol, we want
6077 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6078 add $tempreg,$tempreg,$gp
6079 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
6080 <op> $treg,<ofst>($tempreg)
6081 Otherwise, for local symbols, we want:
6082 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6083 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */
6084 assert (offset_expr.X_op == O_symbol);
6085 expr1.X_add_number = offset_expr.X_add_number;
6086 offset_expr.X_add_number = 0;
6087 if (expr1.X_add_number < -0x8000
6088 || expr1.X_add_number >= 0x8000)
6089 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6090 relax_start (offset_expr.X_add_symbol);
6091 macro_build (&offset_expr, "lui", "t,u", tempreg,
6092 BFD_RELOC_MIPS_GOT_HI16);
6093 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg,
6094 mips_gp_register);
6095 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6096 BFD_RELOC_MIPS_GOT_LO16, tempreg);
6097 if (breg != 0)
6098 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6099 tempreg, tempreg, breg);
6100 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
6101
6102 relax_switch ();
6103 offset_expr.X_add_number = expr1.X_add_number;
6104 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6105 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
6106 if (breg != 0)
6107 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6108 tempreg, tempreg, breg);
6109 macro_build (&offset_expr, s, fmt, treg,
6110 BFD_RELOC_MIPS_GOT_OFST, tempreg);
6111 relax_end ();
6112 }
6113 else
6114 abort ();
6115
6116 break;
6117
6118 case M_LI:
6119 case M_LI_S:
6120 load_register (treg, &imm_expr, 0);
6121 break;
6122
6123 case M_DLI:
6124 load_register (treg, &imm_expr, 1);
6125 break;
6126
6127 case M_LI_SS:
6128 if (imm_expr.X_op == O_constant)
6129 {
6130 used_at = 1;
6131 load_register (AT, &imm_expr, 0);
6132 macro_build (NULL, "mtc1", "t,G", AT, treg);
6133 break;
6134 }
6135 else
6136 {
6137 assert (offset_expr.X_op == O_symbol
6138 && strcmp (segment_name (S_GET_SEGMENT
6139 (offset_expr.X_add_symbol)),
6140 ".lit4") == 0
6141 && offset_expr.X_add_number == 0);
6142 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
6143 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
6144 break;
6145 }
6146
6147 case M_LI_D:
6148 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6149 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6150 order 32 bits of the value and the low order 32 bits are either
6151 zero or in OFFSET_EXPR. */
6152 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6153 {
6154 if (HAVE_64BIT_GPRS)
6155 load_register (treg, &imm_expr, 1);
6156 else
6157 {
6158 int hreg, lreg;
6159
6160 if (target_big_endian)
6161 {
6162 hreg = treg;
6163 lreg = treg + 1;
6164 }
6165 else
6166 {
6167 hreg = treg + 1;
6168 lreg = treg;
6169 }
6170
6171 if (hreg <= 31)
6172 load_register (hreg, &imm_expr, 0);
6173 if (lreg <= 31)
6174 {
6175 if (offset_expr.X_op == O_absent)
6176 move_register (lreg, 0);
6177 else
6178 {
6179 assert (offset_expr.X_op == O_constant);
6180 load_register (lreg, &offset_expr, 0);
6181 }
6182 }
6183 }
6184 break;
6185 }
6186
6187 /* We know that sym is in the .rdata section. First we get the
6188 upper 16 bits of the address. */
6189 if (mips_pic == NO_PIC)
6190 {
6191 macro_build_lui (&offset_expr, AT);
6192 used_at = 1;
6193 }
6194 else if (mips_pic == SVR4_PIC)
6195 {
6196 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6197 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6198 used_at = 1;
6199 }
6200 else
6201 abort ();
6202
6203 /* Now we load the register(s). */
6204 if (HAVE_64BIT_GPRS)
6205 {
6206 used_at = 1;
6207 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6208 }
6209 else
6210 {
6211 used_at = 1;
6212 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6213 if (treg != RA)
6214 {
6215 /* FIXME: How in the world do we deal with the possible
6216 overflow here? */
6217 offset_expr.X_add_number += 4;
6218 macro_build (&offset_expr, "lw", "t,o(b)",
6219 treg + 1, BFD_RELOC_LO16, AT);
6220 }
6221 }
6222 break;
6223
6224 case M_LI_DD:
6225 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
6226 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
6227 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
6228 the value and the low order 32 bits are either zero or in
6229 OFFSET_EXPR. */
6230 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6231 {
6232 used_at = 1;
6233 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
6234 if (HAVE_64BIT_FPRS)
6235 {
6236 assert (HAVE_64BIT_GPRS);
6237 macro_build (NULL, "dmtc1", "t,S", AT, treg);
6238 }
6239 else
6240 {
6241 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
6242 if (offset_expr.X_op == O_absent)
6243 macro_build (NULL, "mtc1", "t,G", 0, treg);
6244 else
6245 {
6246 assert (offset_expr.X_op == O_constant);
6247 load_register (AT, &offset_expr, 0);
6248 macro_build (NULL, "mtc1", "t,G", AT, treg);
6249 }
6250 }
6251 break;
6252 }
6253
6254 assert (offset_expr.X_op == O_symbol
6255 && offset_expr.X_add_number == 0);
6256 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
6257 if (strcmp (s, ".lit8") == 0)
6258 {
6259 if (mips_opts.isa != ISA_MIPS1)
6260 {
6261 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
6262 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
6263 break;
6264 }
6265 breg = mips_gp_register;
6266 r = BFD_RELOC_MIPS_LITERAL;
6267 goto dob;
6268 }
6269 else
6270 {
6271 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
6272 used_at = 1;
6273 if (mips_pic == SVR4_PIC)
6274 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6275 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6276 else
6277 {
6278 /* FIXME: This won't work for a 64 bit address. */
6279 macro_build_lui (&offset_expr, AT);
6280 }
6281
6282 if (mips_opts.isa != ISA_MIPS1)
6283 {
6284 macro_build (&offset_expr, "ldc1", "T,o(b)",
6285 treg, BFD_RELOC_LO16, AT);
6286 break;
6287 }
6288 breg = AT;
6289 r = BFD_RELOC_LO16;
6290 goto dob;
6291 }
6292
6293 case M_L_DOB:
6294 if (mips_opts.arch == CPU_R4650)
6295 {
6296 as_bad (_("opcode not supported on this processor"));
6297 break;
6298 }
6299 /* Even on a big endian machine $fn comes before $fn+1. We have
6300 to adjust when loading from memory. */
6301 r = BFD_RELOC_LO16;
6302 dob:
6303 assert (mips_opts.isa == ISA_MIPS1);
6304 macro_build (&offset_expr, "lwc1", "T,o(b)",
6305 target_big_endian ? treg + 1 : treg, r, breg);
6306 /* FIXME: A possible overflow which I don't know how to deal
6307 with. */
6308 offset_expr.X_add_number += 4;
6309 macro_build (&offset_expr, "lwc1", "T,o(b)",
6310 target_big_endian ? treg : treg + 1, r, breg);
6311 break;
6312
6313 case M_L_DAB:
6314 /*
6315 * The MIPS assembler seems to check for X_add_number not
6316 * being double aligned and generating:
6317 * lui at,%hi(foo+1)
6318 * addu at,at,v1
6319 * addiu at,at,%lo(foo+1)
6320 * lwc1 f2,0(at)
6321 * lwc1 f3,4(at)
6322 * But, the resulting address is the same after relocation so why
6323 * generate the extra instruction?
6324 */
6325 if (mips_opts.arch == CPU_R4650)
6326 {
6327 as_bad (_("opcode not supported on this processor"));
6328 break;
6329 }
6330 /* Itbl support may require additional care here. */
6331 coproc = 1;
6332 if (mips_opts.isa != ISA_MIPS1)
6333 {
6334 s = "ldc1";
6335 goto ld;
6336 }
6337
6338 s = "lwc1";
6339 fmt = "T,o(b)";
6340 goto ldd_std;
6341
6342 case M_S_DAB:
6343 if (mips_opts.arch == CPU_R4650)
6344 {
6345 as_bad (_("opcode not supported on this processor"));
6346 break;
6347 }
6348
6349 if (mips_opts.isa != ISA_MIPS1)
6350 {
6351 s = "sdc1";
6352 goto st;
6353 }
6354
6355 s = "swc1";
6356 fmt = "T,o(b)";
6357 /* Itbl support may require additional care here. */
6358 coproc = 1;
6359 goto ldd_std;
6360
6361 case M_LD_AB:
6362 if (HAVE_64BIT_GPRS)
6363 {
6364 s = "ld";
6365 goto ld;
6366 }
6367
6368 s = "lw";
6369 fmt = "t,o(b)";
6370 goto ldd_std;
6371
6372 case M_SD_AB:
6373 if (HAVE_64BIT_GPRS)
6374 {
6375 s = "sd";
6376 goto st;
6377 }
6378
6379 s = "sw";
6380 fmt = "t,o(b)";
6381
6382 ldd_std:
6383 if (offset_expr.X_op != O_symbol
6384 && offset_expr.X_op != O_constant)
6385 {
6386 as_bad (_("expression too complex"));
6387 offset_expr.X_op = O_constant;
6388 }
6389
6390 if (HAVE_32BIT_ADDRESSES
6391 && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
6392 as_bad (_("Number (0x%lx%08lx) larger than 32 bits"),
6393 (unsigned long) (offset_expr.X_add_number >> 32),
6394 (unsigned long) (offset_expr.X_add_number & 0xffffffff));
6395
6396 /* Even on a big endian machine $fn comes before $fn+1. We have
6397 to adjust when loading from memory. We set coproc if we must
6398 load $fn+1 first. */
6399 /* Itbl support may require additional care here. */
6400 if (! target_big_endian)
6401 coproc = 0;
6402
6403 if (mips_pic == NO_PIC
6404 || offset_expr.X_op == O_constant)
6405 {
6406 /* If this is a reference to a GP relative symbol, we want
6407 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6408 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
6409 If we have a base register, we use this
6410 addu $at,$breg,$gp
6411 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6412 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
6413 If this is not a GP relative symbol, we want
6414 lui $at,<sym> (BFD_RELOC_HI16_S)
6415 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6416 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6417 If there is a base register, we add it to $at after the
6418 lui instruction. If there is a constant, we always use
6419 the last case. */
6420 if (offset_expr.X_op == O_symbol
6421 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6422 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
6423 {
6424 relax_start (offset_expr.X_add_symbol);
6425 if (breg == 0)
6426 {
6427 tempreg = mips_gp_register;
6428 }
6429 else
6430 {
6431 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6432 AT, breg, mips_gp_register);
6433 tempreg = AT;
6434 used_at = 1;
6435 }
6436
6437 /* Itbl support may require additional care here. */
6438 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6439 BFD_RELOC_GPREL16, tempreg);
6440 offset_expr.X_add_number += 4;
6441
6442 /* Set mips_optimize to 2 to avoid inserting an
6443 undesired nop. */
6444 hold_mips_optimize = mips_optimize;
6445 mips_optimize = 2;
6446 /* Itbl support may require additional care here. */
6447 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6448 BFD_RELOC_GPREL16, tempreg);
6449 mips_optimize = hold_mips_optimize;
6450
6451 relax_switch ();
6452
6453 /* We just generated two relocs. When tc_gen_reloc
6454 handles this case, it will skip the first reloc and
6455 handle the second. The second reloc already has an
6456 extra addend of 4, which we added above. We must
6457 subtract it out, and then subtract another 4 to make
6458 the first reloc come out right. The second reloc
6459 will come out right because we are going to add 4 to
6460 offset_expr when we build its instruction below.
6461
6462 If we have a symbol, then we don't want to include
6463 the offset, because it will wind up being included
6464 when we generate the reloc. */
6465
6466 if (offset_expr.X_op == O_constant)
6467 offset_expr.X_add_number -= 8;
6468 else
6469 {
6470 offset_expr.X_add_number = -4;
6471 offset_expr.X_op = O_constant;
6472 }
6473 }
6474 used_at = 1;
6475 macro_build_lui (&offset_expr, AT);
6476 if (breg != 0)
6477 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6478 /* Itbl support may require additional care here. */
6479 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6480 BFD_RELOC_LO16, AT);
6481 /* FIXME: How do we handle overflow here? */
6482 offset_expr.X_add_number += 4;
6483 /* Itbl support may require additional care here. */
6484 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6485 BFD_RELOC_LO16, AT);
6486 if (mips_relax.sequence)
6487 relax_end ();
6488 }
6489 else if (mips_pic == SVR4_PIC && ! mips_big_got)
6490 {
6491 /* If this is a reference to an external symbol, we want
6492 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6493 nop
6494 <op> $treg,0($at)
6495 <op> $treg+1,4($at)
6496 Otherwise we want
6497 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6498 nop
6499 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6500 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6501 If there is a base register we add it to $at before the
6502 lwc1 instructions. If there is a constant we include it
6503 in the lwc1 instructions. */
6504 used_at = 1;
6505 expr1.X_add_number = offset_expr.X_add_number;
6506 if (expr1.X_add_number < -0x8000
6507 || expr1.X_add_number >= 0x8000 - 4)
6508 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6509 load_got_offset (AT, &offset_expr);
6510 load_delay_nop ();
6511 if (breg != 0)
6512 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6513
6514 /* Set mips_optimize to 2 to avoid inserting an undesired
6515 nop. */
6516 hold_mips_optimize = mips_optimize;
6517 mips_optimize = 2;
6518
6519 /* Itbl support may require additional care here. */
6520 relax_start (offset_expr.X_add_symbol);
6521 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
6522 BFD_RELOC_LO16, AT);
6523 expr1.X_add_number += 4;
6524 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
6525 BFD_RELOC_LO16, AT);
6526 relax_switch ();
6527 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6528 BFD_RELOC_LO16, AT);
6529 offset_expr.X_add_number += 4;
6530 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6531 BFD_RELOC_LO16, AT);
6532 relax_end ();
6533
6534 mips_optimize = hold_mips_optimize;
6535 }
6536 else if (mips_pic == SVR4_PIC)
6537 {
6538 int gpdelay;
6539
6540 /* If this is a reference to an external symbol, we want
6541 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6542 addu $at,$at,$gp
6543 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
6544 nop
6545 <op> $treg,0($at)
6546 <op> $treg+1,4($at)
6547 Otherwise we want
6548 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6549 nop
6550 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6551 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6552 If there is a base register we add it to $at before the
6553 lwc1 instructions. If there is a constant we include it
6554 in the lwc1 instructions. */
6555 used_at = 1;
6556 expr1.X_add_number = offset_expr.X_add_number;
6557 offset_expr.X_add_number = 0;
6558 if (expr1.X_add_number < -0x8000
6559 || expr1.X_add_number >= 0x8000 - 4)
6560 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6561 gpdelay = reg_needs_delay (mips_gp_register);
6562 relax_start (offset_expr.X_add_symbol);
6563 macro_build (&offset_expr, "lui", "t,u",
6564 AT, BFD_RELOC_MIPS_GOT_HI16);
6565 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
6566 AT, AT, mips_gp_register);
6567 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
6568 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
6569 load_delay_nop ();
6570 if (breg != 0)
6571 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6572 /* Itbl support may require additional care here. */
6573 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
6574 BFD_RELOC_LO16, AT);
6575 expr1.X_add_number += 4;
6576
6577 /* Set mips_optimize to 2 to avoid inserting an undesired
6578 nop. */
6579 hold_mips_optimize = mips_optimize;
6580 mips_optimize = 2;
6581 /* Itbl support may require additional care here. */
6582 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
6583 BFD_RELOC_LO16, AT);
6584 mips_optimize = hold_mips_optimize;
6585 expr1.X_add_number -= 4;
6586
6587 relax_switch ();
6588 offset_expr.X_add_number = expr1.X_add_number;
6589 if (gpdelay)
6590 macro_build (NULL, "nop", "");
6591 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6592 BFD_RELOC_MIPS_GOT16, mips_gp_register);
6593 load_delay_nop ();
6594 if (breg != 0)
6595 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
6596 /* Itbl support may require additional care here. */
6597 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6598 BFD_RELOC_LO16, AT);
6599 offset_expr.X_add_number += 4;
6600
6601 /* Set mips_optimize to 2 to avoid inserting an undesired
6602 nop. */
6603 hold_mips_optimize = mips_optimize;
6604 mips_optimize = 2;
6605 /* Itbl support may require additional care here. */
6606 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6607 BFD_RELOC_LO16, AT);
6608 mips_optimize = hold_mips_optimize;
6609 relax_end ();
6610 }
6611 else
6612 abort ();
6613
6614 break;
6615
6616 case M_LD_OB:
6617 s = "lw";
6618 goto sd_ob;
6619 case M_SD_OB:
6620 s = "sw";
6621 sd_ob:
6622 assert (HAVE_32BIT_ADDRESSES);
6623 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
6624 offset_expr.X_add_number += 4;
6625 macro_build (&offset_expr, s, "t,o(b)", treg + 1, BFD_RELOC_LO16, breg);
6626 break;
6627
6628 /* New code added to support COPZ instructions.
6629 This code builds table entries out of the macros in mip_opcodes.
6630 R4000 uses interlocks to handle coproc delays.
6631 Other chips (like the R3000) require nops to be inserted for delays.
6632
6633 FIXME: Currently, we require that the user handle delays.
6634 In order to fill delay slots for non-interlocked chips,
6635 we must have a way to specify delays based on the coprocessor.
6636 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
6637 What are the side-effects of the cop instruction?
6638 What cache support might we have and what are its effects?
6639 Both coprocessor & memory require delays. how long???
6640 What registers are read/set/modified?
6641
6642 If an itbl is provided to interpret cop instructions,
6643 this knowledge can be encoded in the itbl spec. */
6644
6645 case M_COP0:
6646 s = "c0";
6647 goto copz;
6648 case M_COP1:
6649 s = "c1";
6650 goto copz;
6651 case M_COP2:
6652 s = "c2";
6653 goto copz;
6654 case M_COP3:
6655 s = "c3";
6656 copz:
6657 /* For now we just do C (same as Cz). The parameter will be
6658 stored in insn_opcode by mips_ip. */
6659 macro_build (NULL, s, "C", ip->insn_opcode);
6660 break;
6661
6662 case M_MOVE:
6663 move_register (dreg, sreg);
6664 break;
6665
6666 #ifdef LOSING_COMPILER
6667 default:
6668 /* Try and see if this is a new itbl instruction.
6669 This code builds table entries out of the macros in mip_opcodes.
6670 FIXME: For now we just assemble the expression and pass it's
6671 value along as a 32-bit immediate.
6672 We may want to have the assembler assemble this value,
6673 so that we gain the assembler's knowledge of delay slots,
6674 symbols, etc.
6675 Would it be more efficient to use mask (id) here? */
6676 if (itbl_have_entries
6677 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
6678 {
6679 s = ip->insn_mo->name;
6680 s2 = "cop3";
6681 coproc = ITBL_DECODE_PNUM (immed_expr);;
6682 macro_build (&immed_expr, s, "C");
6683 break;
6684 }
6685 macro2 (ip);
6686 break;
6687 }
6688 if (mips_opts.noat && used_at)
6689 as_bad (_("Macro used $at after \".set noat\""));
6690 }
6691
6692 static void
6693 macro2 (struct mips_cl_insn *ip)
6694 {
6695 register int treg, sreg, dreg, breg;
6696 int tempreg;
6697 int mask;
6698 int used_at;
6699 expressionS expr1;
6700 const char *s;
6701 const char *s2;
6702 const char *fmt;
6703 int likely = 0;
6704 int dbl = 0;
6705 int coproc = 0;
6706 int lr = 0;
6707 int imm = 0;
6708 int off;
6709 offsetT maxnum;
6710 bfd_reloc_code_real_type r;
6711
6712 treg = (ip->insn_opcode >> 16) & 0x1f;
6713 dreg = (ip->insn_opcode >> 11) & 0x1f;
6714 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
6715 mask = ip->insn_mo->mask;
6716
6717 expr1.X_op = O_constant;
6718 expr1.X_op_symbol = NULL;
6719 expr1.X_add_symbol = NULL;
6720 expr1.X_add_number = 1;
6721
6722 switch (mask)
6723 {
6724 #endif /* LOSING_COMPILER */
6725
6726 case M_DMUL:
6727 dbl = 1;
6728 case M_MUL:
6729 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
6730 macro_build (NULL, "mflo", "d", dreg);
6731 break;
6732
6733 case M_DMUL_I:
6734 dbl = 1;
6735 case M_MUL_I:
6736 /* The MIPS assembler some times generates shifts and adds. I'm
6737 not trying to be that fancy. GCC should do this for us
6738 anyway. */
6739 used_at = 1;
6740 load_register (AT, &imm_expr, dbl);
6741 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT);
6742 macro_build (NULL, "mflo", "d", dreg);
6743 break;
6744
6745 case M_DMULO_I:
6746 dbl = 1;
6747 case M_MULO_I:
6748 imm = 1;
6749 goto do_mulo;
6750
6751 case M_DMULO:
6752 dbl = 1;
6753 case M_MULO:
6754 do_mulo:
6755 start_noreorder ();
6756 used_at = 1;
6757 if (imm)
6758 load_register (AT, &imm_expr, dbl);
6759 macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
6760 macro_build (NULL, "mflo", "d", dreg);
6761 macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
6762 macro_build (NULL, "mfhi", "d", AT);
6763 if (mips_trap)
6764 macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
6765 else
6766 {
6767 expr1.X_add_number = 8;
6768 macro_build (&expr1, "beq", "s,t,p", dreg, AT);
6769 macro_build (NULL, "nop", "", 0);
6770 macro_build (NULL, "break", "c", 6);
6771 }
6772 end_noreorder ();
6773 macro_build (NULL, "mflo", "d", dreg);
6774 break;
6775
6776 case M_DMULOU_I:
6777 dbl = 1;
6778 case M_MULOU_I:
6779 imm = 1;
6780 goto do_mulou;
6781
6782 case M_DMULOU:
6783 dbl = 1;
6784 case M_MULOU:
6785 do_mulou:
6786 start_noreorder ();
6787 used_at = 1;
6788 if (imm)
6789 load_register (AT, &imm_expr, dbl);
6790 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
6791 sreg, imm ? AT : treg);
6792 macro_build (NULL, "mfhi", "d", AT);
6793 macro_build (NULL, "mflo", "d", dreg);
6794 if (mips_trap)
6795 macro_build (NULL, "tne", "s,t,q", AT, 0, 6);
6796 else
6797 {
6798 expr1.X_add_number = 8;
6799 macro_build (&expr1, "beq", "s,t,p", AT, 0);
6800 macro_build (NULL, "nop", "", 0);
6801 macro_build (NULL, "break", "c", 6);
6802 }
6803 end_noreorder ();
6804 break;
6805
6806 case M_DROL:
6807 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6808 {
6809 if (dreg == sreg)
6810 {
6811 tempreg = AT;
6812 used_at = 1;
6813 }
6814 else
6815 {
6816 tempreg = dreg;
6817 }
6818 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
6819 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
6820 break;
6821 }
6822 used_at = 1;
6823 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
6824 macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT);
6825 macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg);
6826 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6827 break;
6828
6829 case M_ROL:
6830 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
6831 {
6832 if (dreg == sreg)
6833 {
6834 tempreg = AT;
6835 used_at = 1;
6836 }
6837 else
6838 {
6839 tempreg = dreg;
6840 }
6841 macro_build (NULL, "negu", "d,w", tempreg, treg);
6842 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
6843 break;
6844 }
6845 used_at = 1;
6846 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
6847 macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT);
6848 macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg);
6849 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6850 break;
6851
6852 case M_DROL_I:
6853 {
6854 unsigned int rot;
6855 char *l, *r;
6856
6857 if (imm_expr.X_op != O_constant)
6858 as_bad (_("Improper rotate count"));
6859 rot = imm_expr.X_add_number & 0x3f;
6860 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6861 {
6862 rot = (64 - rot) & 0x3f;
6863 if (rot >= 32)
6864 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
6865 else
6866 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
6867 break;
6868 }
6869 if (rot == 0)
6870 {
6871 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
6872 break;
6873 }
6874 l = (rot < 0x20) ? "dsll" : "dsll32";
6875 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
6876 rot &= 0x1f;
6877 used_at = 1;
6878 macro_build (NULL, l, "d,w,<", AT, sreg, rot);
6879 macro_build (NULL, r, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6880 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6881 }
6882 break;
6883
6884 case M_ROL_I:
6885 {
6886 unsigned int rot;
6887
6888 if (imm_expr.X_op != O_constant)
6889 as_bad (_("Improper rotate count"));
6890 rot = imm_expr.X_add_number & 0x1f;
6891 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
6892 {
6893 macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
6894 break;
6895 }
6896 if (rot == 0)
6897 {
6898 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
6899 break;
6900 }
6901 used_at = 1;
6902 macro_build (NULL, "sll", "d,w,<", AT, sreg, rot);
6903 macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6904 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6905 }
6906 break;
6907
6908 case M_DROR:
6909 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6910 {
6911 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
6912 break;
6913 }
6914 used_at = 1;
6915 macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg);
6916 macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT);
6917 macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg);
6918 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6919 break;
6920
6921 case M_ROR:
6922 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
6923 {
6924 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
6925 break;
6926 }
6927 used_at = 1;
6928 macro_build (NULL, "subu", "d,v,t", AT, 0, treg);
6929 macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT);
6930 macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg);
6931 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6932 break;
6933
6934 case M_DROR_I:
6935 {
6936 unsigned int rot;
6937 char *l, *r;
6938
6939 if (imm_expr.X_op != O_constant)
6940 as_bad (_("Improper rotate count"));
6941 rot = imm_expr.X_add_number & 0x3f;
6942 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
6943 {
6944 if (rot >= 32)
6945 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
6946 else
6947 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
6948 break;
6949 }
6950 if (rot == 0)
6951 {
6952 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
6953 break;
6954 }
6955 r = (rot < 0x20) ? "dsrl" : "dsrl32";
6956 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
6957 rot &= 0x1f;
6958 used_at = 1;
6959 macro_build (NULL, r, "d,w,<", AT, sreg, rot);
6960 macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6961 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6962 }
6963 break;
6964
6965 case M_ROR_I:
6966 {
6967 unsigned int rot;
6968
6969 if (imm_expr.X_op != O_constant)
6970 as_bad (_("Improper rotate count"));
6971 rot = imm_expr.X_add_number & 0x1f;
6972 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
6973 {
6974 macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
6975 break;
6976 }
6977 if (rot == 0)
6978 {
6979 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
6980 break;
6981 }
6982 used_at = 1;
6983 macro_build (NULL, "srl", "d,w,<", AT, sreg, rot);
6984 macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6985 macro_build (NULL, "or", "d,v,t", dreg, dreg, AT);
6986 }
6987 break;
6988
6989 case M_S_DOB:
6990 if (mips_opts.arch == CPU_R4650)
6991 {
6992 as_bad (_("opcode not supported on this processor"));
6993 break;
6994 }
6995 assert (mips_opts.isa == ISA_MIPS1);
6996 /* Even on a big endian machine $fn comes before $fn+1. We have
6997 to adjust when storing to memory. */
6998 macro_build (&offset_expr, "swc1", "T,o(b)",
6999 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
7000 offset_expr.X_add_number += 4;
7001 macro_build (&offset_expr, "swc1", "T,o(b)",
7002 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
7003 break;
7004
7005 case M_SEQ:
7006 if (sreg == 0)
7007 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
7008 else if (treg == 0)
7009 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7010 else
7011 {
7012 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7013 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7014 }
7015 break;
7016
7017 case M_SEQ_I:
7018 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7019 {
7020 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7021 break;
7022 }
7023 if (sreg == 0)
7024 {
7025 as_warn (_("Instruction %s: result is always false"),
7026 ip->insn_mo->name);
7027 move_register (dreg, 0);
7028 break;
7029 }
7030 if (imm_expr.X_op == O_constant
7031 && imm_expr.X_add_number >= 0
7032 && imm_expr.X_add_number < 0x10000)
7033 {
7034 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
7035 }
7036 else if (imm_expr.X_op == O_constant
7037 && imm_expr.X_add_number > -0x8000
7038 && imm_expr.X_add_number < 0)
7039 {
7040 imm_expr.X_add_number = -imm_expr.X_add_number;
7041 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
7042 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7043 }
7044 else
7045 {
7046 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7047 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
7048 used_at = 1;
7049 }
7050 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
7051 break;
7052
7053 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
7054 s = "slt";
7055 goto sge;
7056 case M_SGEU:
7057 s = "sltu";
7058 sge:
7059 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
7060 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7061 break;
7062
7063 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
7064 case M_SGEU_I:
7065 if (imm_expr.X_op == O_constant
7066 && imm_expr.X_add_number >= -0x8000
7067 && imm_expr.X_add_number < 0x8000)
7068 {
7069 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
7070 dreg, sreg, BFD_RELOC_LO16);
7071 }
7072 else
7073 {
7074 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7075 macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t",
7076 dreg, sreg, AT);
7077 used_at = 1;
7078 }
7079 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7080 break;
7081
7082 case M_SGT: /* sreg > treg <==> treg < sreg */
7083 s = "slt";
7084 goto sgt;
7085 case M_SGTU:
7086 s = "sltu";
7087 sgt:
7088 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7089 break;
7090
7091 case M_SGT_I: /* sreg > I <==> I < sreg */
7092 s = "slt";
7093 goto sgti;
7094 case M_SGTU_I:
7095 s = "sltu";
7096 sgti:
7097 used_at = 1;
7098 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7099 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7100 break;
7101
7102 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
7103 s = "slt";
7104 goto sle;
7105 case M_SLEU:
7106 s = "sltu";
7107 sle:
7108 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7109 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7110 break;
7111
7112 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
7113 s = "slt";
7114 goto slei;
7115 case M_SLEU_I:
7116 s = "sltu";
7117 slei:
7118 used_at = 1;
7119 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7120 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
7121 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
7122 break;
7123
7124 case M_SLT_I:
7125 if (imm_expr.X_op == O_constant
7126 && imm_expr.X_add_number >= -0x8000
7127 && imm_expr.X_add_number < 0x8000)
7128 {
7129 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7130 break;
7131 }
7132 used_at = 1;
7133 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7134 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
7135 break;
7136
7137 case M_SLTU_I:
7138 if (imm_expr.X_op == O_constant
7139 && imm_expr.X_add_number >= -0x8000
7140 && imm_expr.X_add_number < 0x8000)
7141 {
7142 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
7143 BFD_RELOC_LO16);
7144 break;
7145 }
7146 used_at = 1;
7147 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7148 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
7149 break;
7150
7151 case M_SNE:
7152 if (sreg == 0)
7153 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
7154 else if (treg == 0)
7155 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
7156 else
7157 {
7158 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7159 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
7160 }
7161 break;
7162
7163 case M_SNE_I:
7164 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7165 {
7166 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
7167 break;
7168 }
7169 if (sreg == 0)
7170 {
7171 as_warn (_("Instruction %s: result is always true"),
7172 ip->insn_mo->name);
7173 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
7174 dreg, 0, BFD_RELOC_LO16);
7175 break;
7176 }
7177 if (imm_expr.X_op == O_constant
7178 && imm_expr.X_add_number >= 0
7179 && imm_expr.X_add_number < 0x10000)
7180 {
7181 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
7182 }
7183 else if (imm_expr.X_op == O_constant
7184 && imm_expr.X_add_number > -0x8000
7185 && imm_expr.X_add_number < 0)
7186 {
7187 imm_expr.X_add_number = -imm_expr.X_add_number;
7188 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
7189 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
7190 }
7191 else
7192 {
7193 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7194 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
7195 used_at = 1;
7196 }
7197 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
7198 break;
7199
7200 case M_DSUB_I:
7201 dbl = 1;
7202 case M_SUB_I:
7203 if (imm_expr.X_op == O_constant
7204 && imm_expr.X_add_number > -0x8000
7205 && imm_expr.X_add_number <= 0x8000)
7206 {
7207 imm_expr.X_add_number = -imm_expr.X_add_number;
7208 macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
7209 dreg, sreg, BFD_RELOC_LO16);
7210 break;
7211 }
7212 used_at = 1;
7213 load_register (AT, &imm_expr, dbl);
7214 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
7215 break;
7216
7217 case M_DSUBU_I:
7218 dbl = 1;
7219 case M_SUBU_I:
7220 if (imm_expr.X_op == O_constant
7221 && imm_expr.X_add_number > -0x8000
7222 && imm_expr.X_add_number <= 0x8000)
7223 {
7224 imm_expr.X_add_number = -imm_expr.X_add_number;
7225 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
7226 dreg, sreg, BFD_RELOC_LO16);
7227 break;
7228 }
7229 used_at = 1;
7230 load_register (AT, &imm_expr, dbl);
7231 macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
7232 break;
7233
7234 case M_TEQ_I:
7235 s = "teq";
7236 goto trap;
7237 case M_TGE_I:
7238 s = "tge";
7239 goto trap;
7240 case M_TGEU_I:
7241 s = "tgeu";
7242 goto trap;
7243 case M_TLT_I:
7244 s = "tlt";
7245 goto trap;
7246 case M_TLTU_I:
7247 s = "tltu";
7248 goto trap;
7249 case M_TNE_I:
7250 s = "tne";
7251 trap:
7252 used_at = 1;
7253 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7254 macro_build (NULL, s, "s,t", sreg, AT);
7255 break;
7256
7257 case M_TRUNCWS:
7258 case M_TRUNCWD:
7259 assert (mips_opts.isa == ISA_MIPS1);
7260 used_at = 1;
7261 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
7262 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
7263
7264 /*
7265 * Is the double cfc1 instruction a bug in the mips assembler;
7266 * or is there a reason for it?
7267 */
7268 start_noreorder ();
7269 macro_build (NULL, "cfc1", "t,G", treg, RA);
7270 macro_build (NULL, "cfc1", "t,G", treg, RA);
7271 macro_build (NULL, "nop", "");
7272 expr1.X_add_number = 3;
7273 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
7274 expr1.X_add_number = 2;
7275 macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16);
7276 macro_build (NULL, "ctc1", "t,G", AT, RA);
7277 macro_build (NULL, "nop", "");
7278 macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S",
7279 dreg, sreg);
7280 macro_build (NULL, "ctc1", "t,G", treg, RA);
7281 macro_build (NULL, "nop", "");
7282 end_noreorder ();
7283 break;
7284
7285 case M_ULH:
7286 s = "lb";
7287 goto ulh;
7288 case M_ULHU:
7289 s = "lbu";
7290 ulh:
7291 used_at = 1;
7292 if (offset_expr.X_add_number >= 0x7fff)
7293 as_bad (_("operand overflow"));
7294 if (! target_big_endian)
7295 ++offset_expr.X_add_number;
7296 macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
7297 if (! target_big_endian)
7298 --offset_expr.X_add_number;
7299 else
7300 ++offset_expr.X_add_number;
7301 macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg);
7302 macro_build (NULL, "sll", "d,w,<", AT, AT, 8);
7303 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7304 break;
7305
7306 case M_ULD:
7307 s = "ldl";
7308 s2 = "ldr";
7309 off = 7;
7310 goto ulw;
7311 case M_ULW:
7312 s = "lwl";
7313 s2 = "lwr";
7314 off = 3;
7315 ulw:
7316 if (offset_expr.X_add_number >= 0x8000 - off)
7317 as_bad (_("operand overflow"));
7318 if (treg != breg)
7319 tempreg = treg;
7320 else
7321 {
7322 used_at = 1;
7323 tempreg = AT;
7324 }
7325 if (! target_big_endian)
7326 offset_expr.X_add_number += off;
7327 macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
7328 if (! target_big_endian)
7329 offset_expr.X_add_number -= off;
7330 else
7331 offset_expr.X_add_number += off;
7332 macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
7333
7334 /* If necessary, move the result in tempreg the final destination. */
7335 if (treg == tempreg)
7336 break;
7337 /* Protect second load's delay slot. */
7338 load_delay_nop ();
7339 move_register (treg, tempreg);
7340 break;
7341
7342 case M_ULD_A:
7343 s = "ldl";
7344 s2 = "ldr";
7345 off = 7;
7346 goto ulwa;
7347 case M_ULW_A:
7348 s = "lwl";
7349 s2 = "lwr";
7350 off = 3;
7351 ulwa:
7352 used_at = 1;
7353 load_address (AT, &offset_expr, &used_at);
7354 if (breg != 0)
7355 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7356 if (! target_big_endian)
7357 expr1.X_add_number = off;
7358 else
7359 expr1.X_add_number = 0;
7360 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7361 if (! target_big_endian)
7362 expr1.X_add_number = 0;
7363 else
7364 expr1.X_add_number = off;
7365 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7366 break;
7367
7368 case M_ULH_A:
7369 case M_ULHU_A:
7370 used_at = 1;
7371 load_address (AT, &offset_expr, &used_at);
7372 if (breg != 0)
7373 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7374 if (target_big_endian)
7375 expr1.X_add_number = 0;
7376 macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
7377 treg, BFD_RELOC_LO16, AT);
7378 if (target_big_endian)
7379 expr1.X_add_number = 1;
7380 else
7381 expr1.X_add_number = 0;
7382 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
7383 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
7384 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7385 break;
7386
7387 case M_USH:
7388 used_at = 1;
7389 if (offset_expr.X_add_number >= 0x7fff)
7390 as_bad (_("operand overflow"));
7391 if (target_big_endian)
7392 ++offset_expr.X_add_number;
7393 macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
7394 macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
7395 if (target_big_endian)
7396 --offset_expr.X_add_number;
7397 else
7398 ++offset_expr.X_add_number;
7399 macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
7400 break;
7401
7402 case M_USD:
7403 s = "sdl";
7404 s2 = "sdr";
7405 off = 7;
7406 goto usw;
7407 case M_USW:
7408 s = "swl";
7409 s2 = "swr";
7410 off = 3;
7411 usw:
7412 if (offset_expr.X_add_number >= 0x8000 - off)
7413 as_bad (_("operand overflow"));
7414 if (! target_big_endian)
7415 offset_expr.X_add_number += off;
7416 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
7417 if (! target_big_endian)
7418 offset_expr.X_add_number -= off;
7419 else
7420 offset_expr.X_add_number += off;
7421 macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
7422 break;
7423
7424 case M_USD_A:
7425 s = "sdl";
7426 s2 = "sdr";
7427 off = 7;
7428 goto uswa;
7429 case M_USW_A:
7430 s = "swl";
7431 s2 = "swr";
7432 off = 3;
7433 uswa:
7434 used_at = 1;
7435 load_address (AT, &offset_expr, &used_at);
7436 if (breg != 0)
7437 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7438 if (! target_big_endian)
7439 expr1.X_add_number = off;
7440 else
7441 expr1.X_add_number = 0;
7442 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7443 if (! target_big_endian)
7444 expr1.X_add_number = 0;
7445 else
7446 expr1.X_add_number = off;
7447 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
7448 break;
7449
7450 case M_USH_A:
7451 used_at = 1;
7452 load_address (AT, &offset_expr, &used_at);
7453 if (breg != 0)
7454 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
7455 if (! target_big_endian)
7456 expr1.X_add_number = 0;
7457 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7458 macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
7459 if (! target_big_endian)
7460 expr1.X_add_number = 1;
7461 else
7462 expr1.X_add_number = 0;
7463 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7464 if (! target_big_endian)
7465 expr1.X_add_number = 0;
7466 else
7467 expr1.X_add_number = 1;
7468 macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT);
7469 macro_build (NULL, "sll", "d,w,<", treg, treg, 8);
7470 macro_build (NULL, "or", "d,v,t", treg, treg, AT);
7471 break;
7472
7473 default:
7474 /* FIXME: Check if this is one of the itbl macros, since they
7475 are added dynamically. */
7476 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
7477 break;
7478 }
7479 if (mips_opts.noat && used_at)
7480 as_bad (_("Macro used $at after \".set noat\""));
7481 }
7482
7483 /* Implement macros in mips16 mode. */
7484
7485 static void
7486 mips16_macro (struct mips_cl_insn *ip)
7487 {
7488 int mask;
7489 int xreg, yreg, zreg, tmp;
7490 expressionS expr1;
7491 int dbl;
7492 const char *s, *s2, *s3;
7493
7494 mask = ip->insn_mo->mask;
7495
7496 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
7497 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
7498 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
7499
7500 expr1.X_op = O_constant;
7501 expr1.X_op_symbol = NULL;
7502 expr1.X_add_symbol = NULL;
7503 expr1.X_add_number = 1;
7504
7505 dbl = 0;
7506
7507 switch (mask)
7508 {
7509 default:
7510 internalError ();
7511
7512 case M_DDIV_3:
7513 dbl = 1;
7514 case M_DIV_3:
7515 s = "mflo";
7516 goto do_div3;
7517 case M_DREM_3:
7518 dbl = 1;
7519 case M_REM_3:
7520 s = "mfhi";
7521 do_div3:
7522 start_noreorder ();
7523 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
7524 expr1.X_add_number = 2;
7525 macro_build (&expr1, "bnez", "x,p", yreg);
7526 macro_build (NULL, "break", "6", 7);
7527
7528 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
7529 since that causes an overflow. We should do that as well,
7530 but I don't see how to do the comparisons without a temporary
7531 register. */
7532 end_noreorder ();
7533 macro_build (NULL, s, "x", zreg);
7534 break;
7535
7536 case M_DIVU_3:
7537 s = "divu";
7538 s2 = "mflo";
7539 goto do_divu3;
7540 case M_REMU_3:
7541 s = "divu";
7542 s2 = "mfhi";
7543 goto do_divu3;
7544 case M_DDIVU_3:
7545 s = "ddivu";
7546 s2 = "mflo";
7547 goto do_divu3;
7548 case M_DREMU_3:
7549 s = "ddivu";
7550 s2 = "mfhi";
7551 do_divu3:
7552 start_noreorder ();
7553 macro_build (NULL, s, "0,x,y", xreg, yreg);
7554 expr1.X_add_number = 2;
7555 macro_build (&expr1, "bnez", "x,p", yreg);
7556 macro_build (NULL, "break", "6", 7);
7557 end_noreorder ();
7558 macro_build (NULL, s2, "x", zreg);
7559 break;
7560
7561 case M_DMUL:
7562 dbl = 1;
7563 case M_MUL:
7564 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
7565 macro_build (NULL, "mflo", "x", zreg);
7566 break;
7567
7568 case M_DSUBU_I:
7569 dbl = 1;
7570 goto do_subu;
7571 case M_SUBU_I:
7572 do_subu:
7573 if (imm_expr.X_op != O_constant)
7574 as_bad (_("Unsupported large constant"));
7575 imm_expr.X_add_number = -imm_expr.X_add_number;
7576 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
7577 break;
7578
7579 case M_SUBU_I_2:
7580 if (imm_expr.X_op != O_constant)
7581 as_bad (_("Unsupported large constant"));
7582 imm_expr.X_add_number = -imm_expr.X_add_number;
7583 macro_build (&imm_expr, "addiu", "x,k", xreg);
7584 break;
7585
7586 case M_DSUBU_I_2:
7587 if (imm_expr.X_op != O_constant)
7588 as_bad (_("Unsupported large constant"));
7589 imm_expr.X_add_number = -imm_expr.X_add_number;
7590 macro_build (&imm_expr, "daddiu", "y,j", yreg);
7591 break;
7592
7593 case M_BEQ:
7594 s = "cmp";
7595 s2 = "bteqz";
7596 goto do_branch;
7597 case M_BNE:
7598 s = "cmp";
7599 s2 = "btnez";
7600 goto do_branch;
7601 case M_BLT:
7602 s = "slt";
7603 s2 = "btnez";
7604 goto do_branch;
7605 case M_BLTU:
7606 s = "sltu";
7607 s2 = "btnez";
7608 goto do_branch;
7609 case M_BLE:
7610 s = "slt";
7611 s2 = "bteqz";
7612 goto do_reverse_branch;
7613 case M_BLEU:
7614 s = "sltu";
7615 s2 = "bteqz";
7616 goto do_reverse_branch;
7617 case M_BGE:
7618 s = "slt";
7619 s2 = "bteqz";
7620 goto do_branch;
7621 case M_BGEU:
7622 s = "sltu";
7623 s2 = "bteqz";
7624 goto do_branch;
7625 case M_BGT:
7626 s = "slt";
7627 s2 = "btnez";
7628 goto do_reverse_branch;
7629 case M_BGTU:
7630 s = "sltu";
7631 s2 = "btnez";
7632
7633 do_reverse_branch:
7634 tmp = xreg;
7635 xreg = yreg;
7636 yreg = tmp;
7637
7638 do_branch:
7639 macro_build (NULL, s, "x,y", xreg, yreg);
7640 macro_build (&offset_expr, s2, "p");
7641 break;
7642
7643 case M_BEQ_I:
7644 s = "cmpi";
7645 s2 = "bteqz";
7646 s3 = "x,U";
7647 goto do_branch_i;
7648 case M_BNE_I:
7649 s = "cmpi";
7650 s2 = "btnez";
7651 s3 = "x,U";
7652 goto do_branch_i;
7653 case M_BLT_I:
7654 s = "slti";
7655 s2 = "btnez";
7656 s3 = "x,8";
7657 goto do_branch_i;
7658 case M_BLTU_I:
7659 s = "sltiu";
7660 s2 = "btnez";
7661 s3 = "x,8";
7662 goto do_branch_i;
7663 case M_BLE_I:
7664 s = "slti";
7665 s2 = "btnez";
7666 s3 = "x,8";
7667 goto do_addone_branch_i;
7668 case M_BLEU_I:
7669 s = "sltiu";
7670 s2 = "btnez";
7671 s3 = "x,8";
7672 goto do_addone_branch_i;
7673 case M_BGE_I:
7674 s = "slti";
7675 s2 = "bteqz";
7676 s3 = "x,8";
7677 goto do_branch_i;
7678 case M_BGEU_I:
7679 s = "sltiu";
7680 s2 = "bteqz";
7681 s3 = "x,8";
7682 goto do_branch_i;
7683 case M_BGT_I:
7684 s = "slti";
7685 s2 = "bteqz";
7686 s3 = "x,8";
7687 goto do_addone_branch_i;
7688 case M_BGTU_I:
7689 s = "sltiu";
7690 s2 = "bteqz";
7691 s3 = "x,8";
7692
7693 do_addone_branch_i:
7694 if (imm_expr.X_op != O_constant)
7695 as_bad (_("Unsupported large constant"));
7696 ++imm_expr.X_add_number;
7697
7698 do_branch_i:
7699 macro_build (&imm_expr, s, s3, xreg);
7700 macro_build (&offset_expr, s2, "p");
7701 break;
7702
7703 case M_ABS:
7704 expr1.X_add_number = 0;
7705 macro_build (&expr1, "slti", "x,8", yreg);
7706 if (xreg != yreg)
7707 move_register (xreg, yreg);
7708 expr1.X_add_number = 2;
7709 macro_build (&expr1, "bteqz", "p");
7710 macro_build (NULL, "neg", "x,w", xreg, xreg);
7711 }
7712 }
7713
7714 /* For consistency checking, verify that all bits are specified either
7715 by the match/mask part of the instruction definition, or by the
7716 operand list. */
7717 static int
7718 validate_mips_insn (const struct mips_opcode *opc)
7719 {
7720 const char *p = opc->args;
7721 char c;
7722 unsigned long used_bits = opc->mask;
7723
7724 if ((used_bits & opc->match) != opc->match)
7725 {
7726 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
7727 opc->name, opc->args);
7728 return 0;
7729 }
7730 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
7731 while (*p)
7732 switch (c = *p++)
7733 {
7734 case ',': break;
7735 case '(': break;
7736 case ')': break;
7737 case '+':
7738 switch (c = *p++)
7739 {
7740 case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7741 case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
7742 case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
7743 case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD);
7744 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
7745 case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7746 case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break;
7747 case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
7748 case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break;
7749 case 'I': break;
7750 default:
7751 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
7752 c, opc->name, opc->args);
7753 return 0;
7754 }
7755 break;
7756 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7757 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7758 case 'A': break;
7759 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
7760 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
7761 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7762 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7763 case 'F': break;
7764 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7765 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
7766 case 'I': break;
7767 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
7768 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7769 case 'L': break;
7770 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
7771 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
7772 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
7773 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
7774 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7775 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
7776 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7777 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7778 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7779 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7780 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7781 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7782 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7783 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
7784 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7785 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
7786 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7787 case 'f': break;
7788 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
7789 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7790 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7791 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
7792 case 'l': break;
7793 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7794 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7795 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
7796 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7797 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7798 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7799 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7800 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7801 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7802 case 'x': break;
7803 case 'z': break;
7804 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
7805 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
7806 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7807 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
7808 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
7809 case '[': break;
7810 case ']': break;
7811 default:
7812 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
7813 c, opc->name, opc->args);
7814 return 0;
7815 }
7816 #undef USE_BITS
7817 if (used_bits != 0xffffffff)
7818 {
7819 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
7820 ~used_bits & 0xffffffff, opc->name, opc->args);
7821 return 0;
7822 }
7823 return 1;
7824 }
7825
7826 /* This routine assembles an instruction into its binary format. As a
7827 side effect, it sets one of the global variables imm_reloc or
7828 offset_reloc to the type of relocation to do if one of the operands
7829 is an address expression. */
7830
7831 static void
7832 mips_ip (char *str, struct mips_cl_insn *ip)
7833 {
7834 char *s;
7835 const char *args;
7836 char c = 0;
7837 struct mips_opcode *insn;
7838 char *argsStart;
7839 unsigned int regno;
7840 unsigned int lastregno = 0;
7841 unsigned int lastpos = 0;
7842 unsigned int limlo, limhi;
7843 char *s_reset;
7844 char save_c = 0;
7845
7846 insn_error = NULL;
7847
7848 /* If the instruction contains a '.', we first try to match an instruction
7849 including the '.'. Then we try again without the '.'. */
7850 insn = NULL;
7851 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
7852 continue;
7853
7854 /* If we stopped on whitespace, then replace the whitespace with null for
7855 the call to hash_find. Save the character we replaced just in case we
7856 have to re-parse the instruction. */
7857 if (ISSPACE (*s))
7858 {
7859 save_c = *s;
7860 *s++ = '\0';
7861 }
7862
7863 insn = (struct mips_opcode *) hash_find (op_hash, str);
7864
7865 /* If we didn't find the instruction in the opcode table, try again, but
7866 this time with just the instruction up to, but not including the
7867 first '.'. */
7868 if (insn == NULL)
7869 {
7870 /* Restore the character we overwrite above (if any). */
7871 if (save_c)
7872 *(--s) = save_c;
7873
7874 /* Scan up to the first '.' or whitespace. */
7875 for (s = str;
7876 *s != '\0' && *s != '.' && !ISSPACE (*s);
7877 ++s)
7878 continue;
7879
7880 /* If we did not find a '.', then we can quit now. */
7881 if (*s != '.')
7882 {
7883 insn_error = "unrecognized opcode";
7884 return;
7885 }
7886
7887 /* Lookup the instruction in the hash table. */
7888 *s++ = '\0';
7889 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
7890 {
7891 insn_error = "unrecognized opcode";
7892 return;
7893 }
7894 }
7895
7896 argsStart = s;
7897 for (;;)
7898 {
7899 bfd_boolean ok;
7900
7901 assert (strcmp (insn->name, str) == 0);
7902
7903 if (OPCODE_IS_MEMBER (insn,
7904 (mips_opts.isa
7905 | (file_ase_mips16 ? INSN_MIPS16 : 0)
7906 | (mips_opts.ase_mdmx ? INSN_MDMX : 0)
7907 | (mips_opts.ase_mips3d ? INSN_MIPS3D : 0)),
7908 mips_opts.arch))
7909 ok = TRUE;
7910 else
7911 ok = FALSE;
7912
7913 if (insn->pinfo != INSN_MACRO)
7914 {
7915 if (mips_opts.arch == CPU_R4650 && (insn->pinfo & FP_D) != 0)
7916 ok = FALSE;
7917 }
7918
7919 if (! ok)
7920 {
7921 if (insn + 1 < &mips_opcodes[NUMOPCODES]
7922 && strcmp (insn->name, insn[1].name) == 0)
7923 {
7924 ++insn;
7925 continue;
7926 }
7927 else
7928 {
7929 if (!insn_error)
7930 {
7931 static char buf[100];
7932 sprintf (buf,
7933 _("opcode not supported on this processor: %s (%s)"),
7934 mips_cpu_info_from_arch (mips_opts.arch)->name,
7935 mips_cpu_info_from_isa (mips_opts.isa)->name);
7936 insn_error = buf;
7937 }
7938 if (save_c)
7939 *(--s) = save_c;
7940 return;
7941 }
7942 }
7943
7944 create_insn (ip, insn);
7945 insn_error = NULL;
7946 for (args = insn->args;; ++args)
7947 {
7948 int is_mdmx;
7949
7950 s += strspn (s, " \t");
7951 is_mdmx = 0;
7952 switch (*args)
7953 {
7954 case '\0': /* end of args */
7955 if (*s == '\0')
7956 return;
7957 break;
7958
7959 case ',':
7960 if (*s++ == *args)
7961 continue;
7962 s--;
7963 switch (*++args)
7964 {
7965 case 'r':
7966 case 'v':
7967 INSERT_OPERAND (RS, *ip, lastregno);
7968 continue;
7969
7970 case 'w':
7971 INSERT_OPERAND (RT, *ip, lastregno);
7972 continue;
7973
7974 case 'W':
7975 INSERT_OPERAND (FT, *ip, lastregno);
7976 continue;
7977
7978 case 'V':
7979 INSERT_OPERAND (FS, *ip, lastregno);
7980 continue;
7981 }
7982 break;
7983
7984 case '(':
7985 /* Handle optional base register.
7986 Either the base register is omitted or
7987 we must have a left paren. */
7988 /* This is dependent on the next operand specifier
7989 is a base register specification. */
7990 assert (args[1] == 'b' || args[1] == '5'
7991 || args[1] == '-' || args[1] == '4');
7992 if (*s == '\0')
7993 return;
7994
7995 case ')': /* these must match exactly */
7996 case '[':
7997 case ']':
7998 if (*s++ == *args)
7999 continue;
8000 break;
8001
8002 case '+': /* Opcode extension character. */
8003 switch (*++args)
8004 {
8005 case 'A': /* ins/ext position, becomes LSB. */
8006 limlo = 0;
8007 limhi = 31;
8008 goto do_lsb;
8009 case 'E':
8010 limlo = 32;
8011 limhi = 63;
8012 goto do_lsb;
8013 do_lsb:
8014 my_getExpression (&imm_expr, s);
8015 check_absolute_expr (ip, &imm_expr);
8016 if ((unsigned long) imm_expr.X_add_number < limlo
8017 || (unsigned long) imm_expr.X_add_number > limhi)
8018 {
8019 as_bad (_("Improper position (%lu)"),
8020 (unsigned long) imm_expr.X_add_number);
8021 imm_expr.X_add_number = limlo;
8022 }
8023 lastpos = imm_expr.X_add_number;
8024 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
8025 imm_expr.X_op = O_absent;
8026 s = expr_end;
8027 continue;
8028
8029 case 'B': /* ins size, becomes MSB. */
8030 limlo = 1;
8031 limhi = 32;
8032 goto do_msb;
8033 case 'F':
8034 limlo = 33;
8035 limhi = 64;
8036 goto do_msb;
8037 do_msb:
8038 my_getExpression (&imm_expr, s);
8039 check_absolute_expr (ip, &imm_expr);
8040 /* Check for negative input so that small negative numbers
8041 will not succeed incorrectly. The checks against
8042 (pos+size) transitively check "size" itself,
8043 assuming that "pos" is reasonable. */
8044 if ((long) imm_expr.X_add_number < 0
8045 || ((unsigned long) imm_expr.X_add_number
8046 + lastpos) < limlo
8047 || ((unsigned long) imm_expr.X_add_number
8048 + lastpos) > limhi)
8049 {
8050 as_bad (_("Improper insert size (%lu, position %lu)"),
8051 (unsigned long) imm_expr.X_add_number,
8052 (unsigned long) lastpos);
8053 imm_expr.X_add_number = limlo - lastpos;
8054 }
8055 INSERT_OPERAND (INSMSB, *ip,
8056 lastpos + imm_expr.X_add_number - 1);
8057 imm_expr.X_op = O_absent;
8058 s = expr_end;
8059 continue;
8060
8061 case 'C': /* ext size, becomes MSBD. */
8062 limlo = 1;
8063 limhi = 32;
8064 goto do_msbd;
8065 case 'G':
8066 limlo = 33;
8067 limhi = 64;
8068 goto do_msbd;
8069 case 'H':
8070 limlo = 33;
8071 limhi = 64;
8072 goto do_msbd;
8073 do_msbd:
8074 my_getExpression (&imm_expr, s);
8075 check_absolute_expr (ip, &imm_expr);
8076 /* Check for negative input so that small negative numbers
8077 will not succeed incorrectly. The checks against
8078 (pos+size) transitively check "size" itself,
8079 assuming that "pos" is reasonable. */
8080 if ((long) imm_expr.X_add_number < 0
8081 || ((unsigned long) imm_expr.X_add_number
8082 + lastpos) < limlo
8083 || ((unsigned long) imm_expr.X_add_number
8084 + lastpos) > limhi)
8085 {
8086 as_bad (_("Improper extract size (%lu, position %lu)"),
8087 (unsigned long) imm_expr.X_add_number,
8088 (unsigned long) lastpos);
8089 imm_expr.X_add_number = limlo - lastpos;
8090 }
8091 INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
8092 imm_expr.X_op = O_absent;
8093 s = expr_end;
8094 continue;
8095
8096 case 'D':
8097 /* +D is for disassembly only; never match. */
8098 break;
8099
8100 case 'I':
8101 /* "+I" is like "I", except that imm2_expr is used. */
8102 my_getExpression (&imm2_expr, s);
8103 if (imm2_expr.X_op != O_big
8104 && imm2_expr.X_op != O_constant)
8105 insn_error = _("absolute expression required");
8106 normalize_constant_expr (&imm2_expr);
8107 s = expr_end;
8108 continue;
8109
8110 default:
8111 as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"),
8112 *args, insn->name, insn->args);
8113 /* Further processing is fruitless. */
8114 return;
8115 }
8116 break;
8117
8118 case '<': /* must be at least one digit */
8119 /*
8120 * According to the manual, if the shift amount is greater
8121 * than 31 or less than 0, then the shift amount should be
8122 * mod 32. In reality the mips assembler issues an error.
8123 * We issue a warning and mask out all but the low 5 bits.
8124 */
8125 my_getExpression (&imm_expr, s);
8126 check_absolute_expr (ip, &imm_expr);
8127 if ((unsigned long) imm_expr.X_add_number > 31)
8128 as_warn (_("Improper shift amount (%lu)"),
8129 (unsigned long) imm_expr.X_add_number);
8130 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
8131 imm_expr.X_op = O_absent;
8132 s = expr_end;
8133 continue;
8134
8135 case '>': /* shift amount minus 32 */
8136 my_getExpression (&imm_expr, s);
8137 check_absolute_expr (ip, &imm_expr);
8138 if ((unsigned long) imm_expr.X_add_number < 32
8139 || (unsigned long) imm_expr.X_add_number > 63)
8140 break;
8141 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
8142 imm_expr.X_op = O_absent;
8143 s = expr_end;
8144 continue;
8145
8146 case 'k': /* cache code */
8147 case 'h': /* prefx code */
8148 my_getExpression (&imm_expr, s);
8149 check_absolute_expr (ip, &imm_expr);
8150 if ((unsigned long) imm_expr.X_add_number > 31)
8151 as_warn (_("Invalid value for `%s' (%lu)"),
8152 ip->insn_mo->name,
8153 (unsigned long) imm_expr.X_add_number);
8154 if (*args == 'k')
8155 INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
8156 else
8157 INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
8158 imm_expr.X_op = O_absent;
8159 s = expr_end;
8160 continue;
8161
8162 case 'c': /* break code */
8163 my_getExpression (&imm_expr, s);
8164 check_absolute_expr (ip, &imm_expr);
8165 if ((unsigned long) imm_expr.X_add_number > 1023)
8166 as_warn (_("Illegal break code (%lu)"),
8167 (unsigned long) imm_expr.X_add_number);
8168 INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number);
8169 imm_expr.X_op = O_absent;
8170 s = expr_end;
8171 continue;
8172
8173 case 'q': /* lower break code */
8174 my_getExpression (&imm_expr, s);
8175 check_absolute_expr (ip, &imm_expr);
8176 if ((unsigned long) imm_expr.X_add_number > 1023)
8177 as_warn (_("Illegal lower break code (%lu)"),
8178 (unsigned long) imm_expr.X_add_number);
8179 INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number);
8180 imm_expr.X_op = O_absent;
8181 s = expr_end;
8182 continue;
8183
8184 case 'B': /* 20-bit syscall/break code. */
8185 my_getExpression (&imm_expr, s);
8186 check_absolute_expr (ip, &imm_expr);
8187 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
8188 as_warn (_("Illegal 20-bit code (%lu)"),
8189 (unsigned long) imm_expr.X_add_number);
8190 INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
8191 imm_expr.X_op = O_absent;
8192 s = expr_end;
8193 continue;
8194
8195 case 'C': /* Coprocessor code */
8196 my_getExpression (&imm_expr, s);
8197 check_absolute_expr (ip, &imm_expr);
8198 if ((unsigned long) imm_expr.X_add_number >= (1 << 25))
8199 {
8200 as_warn (_("Coproccesor code > 25 bits (%lu)"),
8201 (unsigned long) imm_expr.X_add_number);
8202 imm_expr.X_add_number &= ((1 << 25) - 1);
8203 }
8204 ip->insn_opcode |= imm_expr.X_add_number;
8205 imm_expr.X_op = O_absent;
8206 s = expr_end;
8207 continue;
8208
8209 case 'J': /* 19-bit wait code. */
8210 my_getExpression (&imm_expr, s);
8211 check_absolute_expr (ip, &imm_expr);
8212 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
8213 as_warn (_("Illegal 19-bit code (%lu)"),
8214 (unsigned long) imm_expr.X_add_number);
8215 INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
8216 imm_expr.X_op = O_absent;
8217 s = expr_end;
8218 continue;
8219
8220 case 'P': /* Performance register */
8221 my_getExpression (&imm_expr, s);
8222 check_absolute_expr (ip, &imm_expr);
8223 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
8224 as_warn (_("Invalid performance register (%lu)"),
8225 (unsigned long) imm_expr.X_add_number);
8226 INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number);
8227 imm_expr.X_op = O_absent;
8228 s = expr_end;
8229 continue;
8230
8231 case 'b': /* base register */
8232 case 'd': /* destination register */
8233 case 's': /* source register */
8234 case 't': /* target register */
8235 case 'r': /* both target and source */
8236 case 'v': /* both dest and source */
8237 case 'w': /* both dest and target */
8238 case 'E': /* coprocessor target register */
8239 case 'G': /* coprocessor destination register */
8240 case 'K': /* 'rdhwr' destination register */
8241 case 'x': /* ignore register name */
8242 case 'z': /* must be zero register */
8243 case 'U': /* destination register (clo/clz). */
8244 s_reset = s;
8245 if (s[0] == '$')
8246 {
8247
8248 if (ISDIGIT (s[1]))
8249 {
8250 ++s;
8251 regno = 0;
8252 do
8253 {
8254 regno *= 10;
8255 regno += *s - '0';
8256 ++s;
8257 }
8258 while (ISDIGIT (*s));
8259 if (regno > 31)
8260 as_bad (_("Invalid register number (%d)"), regno);
8261 }
8262 else if (*args == 'E' || *args == 'G' || *args == 'K')
8263 goto notreg;
8264 else
8265 {
8266 if (s[1] == 'r' && s[2] == 'a')
8267 {
8268 s += 3;
8269 regno = RA;
8270 }
8271 else if (s[1] == 'f' && s[2] == 'p')
8272 {
8273 s += 3;
8274 regno = FP;
8275 }
8276 else if (s[1] == 's' && s[2] == 'p')
8277 {
8278 s += 3;
8279 regno = SP;
8280 }
8281 else if (s[1] == 'g' && s[2] == 'p')
8282 {
8283 s += 3;
8284 regno = GP;
8285 }
8286 else if (s[1] == 'a' && s[2] == 't')
8287 {
8288 s += 3;
8289 regno = AT;
8290 }
8291 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
8292 {
8293 s += 4;
8294 regno = KT0;
8295 }
8296 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
8297 {
8298 s += 4;
8299 regno = KT1;
8300 }
8301 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
8302 {
8303 s += 5;
8304 regno = ZERO;
8305 }
8306 else if (itbl_have_entries)
8307 {
8308 char *p, *n;
8309 unsigned long r;
8310
8311 p = s + 1; /* advance past '$' */
8312 n = itbl_get_field (&p); /* n is name */
8313
8314 /* See if this is a register defined in an
8315 itbl entry. */
8316 if (itbl_get_reg_val (n, &r))
8317 {
8318 /* Get_field advances to the start of
8319 the next field, so we need to back
8320 rack to the end of the last field. */
8321 if (p)
8322 s = p - 1;
8323 else
8324 s = strchr (s, '\0');
8325 regno = r;
8326 }
8327 else
8328 goto notreg;
8329 }
8330 else
8331 goto notreg;
8332 }
8333 if (regno == AT
8334 && ! mips_opts.noat
8335 && *args != 'E'
8336 && *args != 'G'
8337 && *args != 'K')
8338 as_warn (_("Used $at without \".set noat\""));
8339 c = *args;
8340 if (*s == ' ')
8341 ++s;
8342 if (args[1] != *s)
8343 {
8344 if (c == 'r' || c == 'v' || c == 'w')
8345 {
8346 regno = lastregno;
8347 s = s_reset;
8348 ++args;
8349 }
8350 }
8351 /* 'z' only matches $0. */
8352 if (c == 'z' && regno != 0)
8353 break;
8354
8355 /* Now that we have assembled one operand, we use the args string
8356 * to figure out where it goes in the instruction. */
8357 switch (c)
8358 {
8359 case 'r':
8360 case 's':
8361 case 'v':
8362 case 'b':
8363 INSERT_OPERAND (RS, *ip, regno);
8364 break;
8365 case 'd':
8366 case 'G':
8367 case 'K':
8368 INSERT_OPERAND (RD, *ip, regno);
8369 break;
8370 case 'U':
8371 INSERT_OPERAND (RD, *ip, regno);
8372 INSERT_OPERAND (RT, *ip, regno);
8373 break;
8374 case 'w':
8375 case 't':
8376 case 'E':
8377 INSERT_OPERAND (RT, *ip, regno);
8378 break;
8379 case 'x':
8380 /* This case exists because on the r3000 trunc
8381 expands into a macro which requires a gp
8382 register. On the r6000 or r4000 it is
8383 assembled into a single instruction which
8384 ignores the register. Thus the insn version
8385 is MIPS_ISA2 and uses 'x', and the macro
8386 version is MIPS_ISA1 and uses 't'. */
8387 break;
8388 case 'z':
8389 /* This case is for the div instruction, which
8390 acts differently if the destination argument
8391 is $0. This only matches $0, and is checked
8392 outside the switch. */
8393 break;
8394 case 'D':
8395 /* Itbl operand; not yet implemented. FIXME ?? */
8396 break;
8397 /* What about all other operands like 'i', which
8398 can be specified in the opcode table? */
8399 }
8400 lastregno = regno;
8401 continue;
8402 }
8403 notreg:
8404 switch (*args++)
8405 {
8406 case 'r':
8407 case 'v':
8408 INSERT_OPERAND (RS, *ip, lastregno);
8409 continue;
8410 case 'w':
8411 INSERT_OPERAND (RT, *ip, lastregno);
8412 continue;
8413 }
8414 break;
8415
8416 case 'O': /* MDMX alignment immediate constant. */
8417 my_getExpression (&imm_expr, s);
8418 check_absolute_expr (ip, &imm_expr);
8419 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
8420 as_warn ("Improper align amount (%ld), using low bits",
8421 (long) imm_expr.X_add_number);
8422 INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number);
8423 imm_expr.X_op = O_absent;
8424 s = expr_end;
8425 continue;
8426
8427 case 'Q': /* MDMX vector, element sel, or const. */
8428 if (s[0] != '$')
8429 {
8430 /* MDMX Immediate. */
8431 my_getExpression (&imm_expr, s);
8432 check_absolute_expr (ip, &imm_expr);
8433 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
8434 as_warn (_("Invalid MDMX Immediate (%ld)"),
8435 (long) imm_expr.X_add_number);
8436 INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
8437 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8438 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
8439 else
8440 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
8441 imm_expr.X_op = O_absent;
8442 s = expr_end;
8443 continue;
8444 }
8445 /* Not MDMX Immediate. Fall through. */
8446 case 'X': /* MDMX destination register. */
8447 case 'Y': /* MDMX source register. */
8448 case 'Z': /* MDMX target register. */
8449 is_mdmx = 1;
8450 case 'D': /* floating point destination register */
8451 case 'S': /* floating point source register */
8452 case 'T': /* floating point target register */
8453 case 'R': /* floating point source register */
8454 case 'V':
8455 case 'W':
8456 s_reset = s;
8457 /* Accept $fN for FP and MDMX register numbers, and in
8458 addition accept $vN for MDMX register numbers. */
8459 if ((s[0] == '$' && s[1] == 'f' && ISDIGIT (s[2]))
8460 || (is_mdmx != 0 && s[0] == '$' && s[1] == 'v'
8461 && ISDIGIT (s[2])))
8462 {
8463 s += 2;
8464 regno = 0;
8465 do
8466 {
8467 regno *= 10;
8468 regno += *s - '0';
8469 ++s;
8470 }
8471 while (ISDIGIT (*s));
8472
8473 if (regno > 31)
8474 as_bad (_("Invalid float register number (%d)"), regno);
8475
8476 if ((regno & 1) != 0
8477 && HAVE_32BIT_FPRS
8478 && ! (strcmp (str, "mtc1") == 0
8479 || strcmp (str, "mfc1") == 0
8480 || strcmp (str, "lwc1") == 0
8481 || strcmp (str, "swc1") == 0
8482 || strcmp (str, "l.s") == 0
8483 || strcmp (str, "s.s") == 0))
8484 as_warn (_("Float register should be even, was %d"),
8485 regno);
8486
8487 c = *args;
8488 if (*s == ' ')
8489 ++s;
8490 if (args[1] != *s)
8491 {
8492 if (c == 'V' || c == 'W')
8493 {
8494 regno = lastregno;
8495 s = s_reset;
8496 ++args;
8497 }
8498 }
8499 switch (c)
8500 {
8501 case 'D':
8502 case 'X':
8503 INSERT_OPERAND (FD, *ip, regno);
8504 break;
8505 case 'V':
8506 case 'S':
8507 case 'Y':
8508 INSERT_OPERAND (FS, *ip, regno);
8509 break;
8510 case 'Q':
8511 /* This is like 'Z', but also needs to fix the MDMX
8512 vector/scalar select bits. Note that the
8513 scalar immediate case is handled above. */
8514 if (*s == '[')
8515 {
8516 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
8517 int max_el = (is_qh ? 3 : 7);
8518 s++;
8519 my_getExpression(&imm_expr, s);
8520 check_absolute_expr (ip, &imm_expr);
8521 s = expr_end;
8522 if (imm_expr.X_add_number > max_el)
8523 as_bad(_("Bad element selector %ld"),
8524 (long) imm_expr.X_add_number);
8525 imm_expr.X_add_number &= max_el;
8526 ip->insn_opcode |= (imm_expr.X_add_number
8527 << (OP_SH_VSEL +
8528 (is_qh ? 2 : 1)));
8529 imm_expr.X_op = O_absent;
8530 if (*s != ']')
8531 as_warn(_("Expecting ']' found '%s'"), s);
8532 else
8533 s++;
8534 }
8535 else
8536 {
8537 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8538 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
8539 << OP_SH_VSEL);
8540 else
8541 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
8542 OP_SH_VSEL);
8543 }
8544 /* Fall through */
8545 case 'W':
8546 case 'T':
8547 case 'Z':
8548 INSERT_OPERAND (FT, *ip, regno);
8549 break;
8550 case 'R':
8551 INSERT_OPERAND (FR, *ip, regno);
8552 break;
8553 }
8554 lastregno = regno;
8555 continue;
8556 }
8557
8558 switch (*args++)
8559 {
8560 case 'V':
8561 INSERT_OPERAND (FS, *ip, lastregno);
8562 continue;
8563 case 'W':
8564 INSERT_OPERAND (FT, *ip, lastregno);
8565 continue;
8566 }
8567 break;
8568
8569 case 'I':
8570 my_getExpression (&imm_expr, s);
8571 if (imm_expr.X_op != O_big
8572 && imm_expr.X_op != O_constant)
8573 insn_error = _("absolute expression required");
8574 normalize_constant_expr (&imm_expr);
8575 s = expr_end;
8576 continue;
8577
8578 case 'A':
8579 my_getExpression (&offset_expr, s);
8580 normalize_address_expr (&offset_expr);
8581 *imm_reloc = BFD_RELOC_32;
8582 s = expr_end;
8583 continue;
8584
8585 case 'F':
8586 case 'L':
8587 case 'f':
8588 case 'l':
8589 {
8590 int f64;
8591 int using_gprs;
8592 char *save_in;
8593 char *err;
8594 unsigned char temp[8];
8595 int len;
8596 unsigned int length;
8597 segT seg;
8598 subsegT subseg;
8599 char *p;
8600
8601 /* These only appear as the last operand in an
8602 instruction, and every instruction that accepts
8603 them in any variant accepts them in all variants.
8604 This means we don't have to worry about backing out
8605 any changes if the instruction does not match.
8606
8607 The difference between them is the size of the
8608 floating point constant and where it goes. For 'F'
8609 and 'L' the constant is 64 bits; for 'f' and 'l' it
8610 is 32 bits. Where the constant is placed is based
8611 on how the MIPS assembler does things:
8612 F -- .rdata
8613 L -- .lit8
8614 f -- immediate value
8615 l -- .lit4
8616
8617 The .lit4 and .lit8 sections are only used if
8618 permitted by the -G argument.
8619
8620 The code below needs to know whether the target register
8621 is 32 or 64 bits wide. It relies on the fact 'f' and
8622 'F' are used with GPR-based instructions and 'l' and
8623 'L' are used with FPR-based instructions. */
8624
8625 f64 = *args == 'F' || *args == 'L';
8626 using_gprs = *args == 'F' || *args == 'f';
8627
8628 save_in = input_line_pointer;
8629 input_line_pointer = s;
8630 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
8631 length = len;
8632 s = input_line_pointer;
8633 input_line_pointer = save_in;
8634 if (err != NULL && *err != '\0')
8635 {
8636 as_bad (_("Bad floating point constant: %s"), err);
8637 memset (temp, '\0', sizeof temp);
8638 length = f64 ? 8 : 4;
8639 }
8640
8641 assert (length == (unsigned) (f64 ? 8 : 4));
8642
8643 if (*args == 'f'
8644 || (*args == 'l'
8645 && (g_switch_value < 4
8646 || (temp[0] == 0 && temp[1] == 0)
8647 || (temp[2] == 0 && temp[3] == 0))))
8648 {
8649 imm_expr.X_op = O_constant;
8650 if (! target_big_endian)
8651 imm_expr.X_add_number = bfd_getl32 (temp);
8652 else
8653 imm_expr.X_add_number = bfd_getb32 (temp);
8654 }
8655 else if (length > 4
8656 && ! mips_disable_float_construction
8657 /* Constants can only be constructed in GPRs and
8658 copied to FPRs if the GPRs are at least as wide
8659 as the FPRs. Force the constant into memory if
8660 we are using 64-bit FPRs but the GPRs are only
8661 32 bits wide. */
8662 && (using_gprs
8663 || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
8664 && ((temp[0] == 0 && temp[1] == 0)
8665 || (temp[2] == 0 && temp[3] == 0))
8666 && ((temp[4] == 0 && temp[5] == 0)
8667 || (temp[6] == 0 && temp[7] == 0)))
8668 {
8669 /* The value is simple enough to load with a couple of
8670 instructions. If using 32-bit registers, set
8671 imm_expr to the high order 32 bits and offset_expr to
8672 the low order 32 bits. Otherwise, set imm_expr to
8673 the entire 64 bit constant. */
8674 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
8675 {
8676 imm_expr.X_op = O_constant;
8677 offset_expr.X_op = O_constant;
8678 if (! target_big_endian)
8679 {
8680 imm_expr.X_add_number = bfd_getl32 (temp + 4);
8681 offset_expr.X_add_number = bfd_getl32 (temp);
8682 }
8683 else
8684 {
8685 imm_expr.X_add_number = bfd_getb32 (temp);
8686 offset_expr.X_add_number = bfd_getb32 (temp + 4);
8687 }
8688 if (offset_expr.X_add_number == 0)
8689 offset_expr.X_op = O_absent;
8690 }
8691 else if (sizeof (imm_expr.X_add_number) > 4)
8692 {
8693 imm_expr.X_op = O_constant;
8694 if (! target_big_endian)
8695 imm_expr.X_add_number = bfd_getl64 (temp);
8696 else
8697 imm_expr.X_add_number = bfd_getb64 (temp);
8698 }
8699 else
8700 {
8701 imm_expr.X_op = O_big;
8702 imm_expr.X_add_number = 4;
8703 if (! target_big_endian)
8704 {
8705 generic_bignum[0] = bfd_getl16 (temp);
8706 generic_bignum[1] = bfd_getl16 (temp + 2);
8707 generic_bignum[2] = bfd_getl16 (temp + 4);
8708 generic_bignum[3] = bfd_getl16 (temp + 6);
8709 }
8710 else
8711 {
8712 generic_bignum[0] = bfd_getb16 (temp + 6);
8713 generic_bignum[1] = bfd_getb16 (temp + 4);
8714 generic_bignum[2] = bfd_getb16 (temp + 2);
8715 generic_bignum[3] = bfd_getb16 (temp);
8716 }
8717 }
8718 }
8719 else
8720 {
8721 const char *newname;
8722 segT new_seg;
8723
8724 /* Switch to the right section. */
8725 seg = now_seg;
8726 subseg = now_subseg;
8727 switch (*args)
8728 {
8729 default: /* unused default case avoids warnings. */
8730 case 'L':
8731 newname = RDATA_SECTION_NAME;
8732 if (g_switch_value >= 8)
8733 newname = ".lit8";
8734 break;
8735 case 'F':
8736 newname = RDATA_SECTION_NAME;
8737 break;
8738 case 'l':
8739 assert (g_switch_value >= 4);
8740 newname = ".lit4";
8741 break;
8742 }
8743 new_seg = subseg_new (newname, (subsegT) 0);
8744 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
8745 bfd_set_section_flags (stdoutput, new_seg,
8746 (SEC_ALLOC
8747 | SEC_LOAD
8748 | SEC_READONLY
8749 | SEC_DATA));
8750 frag_align (*args == 'l' ? 2 : 3, 0, 0);
8751 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
8752 && strcmp (TARGET_OS, "elf") != 0)
8753 record_alignment (new_seg, 4);
8754 else
8755 record_alignment (new_seg, *args == 'l' ? 2 : 3);
8756 if (seg == now_seg)
8757 as_bad (_("Can't use floating point insn in this section"));
8758
8759 /* Set the argument to the current address in the
8760 section. */
8761 offset_expr.X_op = O_symbol;
8762 offset_expr.X_add_symbol =
8763 symbol_new ("L0\001", now_seg,
8764 (valueT) frag_now_fix (), frag_now);
8765 offset_expr.X_add_number = 0;
8766
8767 /* Put the floating point number into the section. */
8768 p = frag_more ((int) length);
8769 memcpy (p, temp, length);
8770
8771 /* Switch back to the original section. */
8772 subseg_set (seg, subseg);
8773 }
8774 }
8775 continue;
8776
8777 case 'i': /* 16 bit unsigned immediate */
8778 case 'j': /* 16 bit signed immediate */
8779 *imm_reloc = BFD_RELOC_LO16;
8780 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
8781 {
8782 int more;
8783 offsetT minval, maxval;
8784
8785 more = (insn + 1 < &mips_opcodes[NUMOPCODES]
8786 && strcmp (insn->name, insn[1].name) == 0);
8787
8788 /* If the expression was written as an unsigned number,
8789 only treat it as signed if there are no more
8790 alternatives. */
8791 if (more
8792 && *args == 'j'
8793 && sizeof (imm_expr.X_add_number) <= 4
8794 && imm_expr.X_op == O_constant
8795 && imm_expr.X_add_number < 0
8796 && imm_expr.X_unsigned
8797 && HAVE_64BIT_GPRS)
8798 break;
8799
8800 /* For compatibility with older assemblers, we accept
8801 0x8000-0xffff as signed 16-bit numbers when only
8802 signed numbers are allowed. */
8803 if (*args == 'i')
8804 minval = 0, maxval = 0xffff;
8805 else if (more)
8806 minval = -0x8000, maxval = 0x7fff;
8807 else
8808 minval = -0x8000, maxval = 0xffff;
8809
8810 if (imm_expr.X_op != O_constant
8811 || imm_expr.X_add_number < minval
8812 || imm_expr.X_add_number > maxval)
8813 {
8814 if (more)
8815 break;
8816 if (imm_expr.X_op == O_constant
8817 || imm_expr.X_op == O_big)
8818 as_bad (_("expression out of range"));
8819 }
8820 }
8821 s = expr_end;
8822 continue;
8823
8824 case 'o': /* 16 bit offset */
8825 /* Check whether there is only a single bracketed expression
8826 left. If so, it must be the base register and the
8827 constant must be zero. */
8828 if (*s == '(' && strchr (s + 1, '(') == 0)
8829 {
8830 offset_expr.X_op = O_constant;
8831 offset_expr.X_add_number = 0;
8832 continue;
8833 }
8834
8835 /* If this value won't fit into a 16 bit offset, then go
8836 find a macro that will generate the 32 bit offset
8837 code pattern. */
8838 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
8839 && (offset_expr.X_op != O_constant
8840 || offset_expr.X_add_number >= 0x8000
8841 || offset_expr.X_add_number < -0x8000))
8842 break;
8843
8844 s = expr_end;
8845 continue;
8846
8847 case 'p': /* pc relative offset */
8848 *offset_reloc = BFD_RELOC_16_PCREL_S2;
8849 my_getExpression (&offset_expr, s);
8850 s = expr_end;
8851 continue;
8852
8853 case 'u': /* upper 16 bits */
8854 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0
8855 && imm_expr.X_op == O_constant
8856 && (imm_expr.X_add_number < 0
8857 || imm_expr.X_add_number >= 0x10000))
8858 as_bad (_("lui expression not in range 0..65535"));
8859 s = expr_end;
8860 continue;
8861
8862 case 'a': /* 26 bit address */
8863 my_getExpression (&offset_expr, s);
8864 s = expr_end;
8865 *offset_reloc = BFD_RELOC_MIPS_JMP;
8866 continue;
8867
8868 case 'N': /* 3 bit branch condition code */
8869 case 'M': /* 3 bit compare condition code */
8870 if (strncmp (s, "$fcc", 4) != 0)
8871 break;
8872 s += 4;
8873 regno = 0;
8874 do
8875 {
8876 regno *= 10;
8877 regno += *s - '0';
8878 ++s;
8879 }
8880 while (ISDIGIT (*s));
8881 if (regno > 7)
8882 as_bad (_("Invalid condition code register $fcc%d"), regno);
8883 if ((strcmp(str + strlen(str) - 3, ".ps") == 0
8884 || strcmp(str + strlen(str) - 5, "any2f") == 0
8885 || strcmp(str + strlen(str) - 5, "any2t") == 0)
8886 && (regno & 1) != 0)
8887 as_warn(_("Condition code register should be even for %s, was %d"),
8888 str, regno);
8889 if ((strcmp(str + strlen(str) - 5, "any4f") == 0
8890 || strcmp(str + strlen(str) - 5, "any4t") == 0)
8891 && (regno & 3) != 0)
8892 as_warn(_("Condition code register should be 0 or 4 for %s, was %d"),
8893 str, regno);
8894 if (*args == 'N')
8895 INSERT_OPERAND (BCC, *ip, regno);
8896 else
8897 INSERT_OPERAND (CCC, *ip, regno);
8898 continue;
8899
8900 case 'H':
8901 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
8902 s += 2;
8903 if (ISDIGIT (*s))
8904 {
8905 c = 0;
8906 do
8907 {
8908 c *= 10;
8909 c += *s - '0';
8910 ++s;
8911 }
8912 while (ISDIGIT (*s));
8913 }
8914 else
8915 c = 8; /* Invalid sel value. */
8916
8917 if (c > 7)
8918 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
8919 ip->insn_opcode |= c;
8920 continue;
8921
8922 case 'e':
8923 /* Must be at least one digit. */
8924 my_getExpression (&imm_expr, s);
8925 check_absolute_expr (ip, &imm_expr);
8926
8927 if ((unsigned long) imm_expr.X_add_number
8928 > (unsigned long) OP_MASK_VECBYTE)
8929 {
8930 as_bad (_("bad byte vector index (%ld)"),
8931 (long) imm_expr.X_add_number);
8932 imm_expr.X_add_number = 0;
8933 }
8934
8935 INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
8936 imm_expr.X_op = O_absent;
8937 s = expr_end;
8938 continue;
8939
8940 case '%':
8941 my_getExpression (&imm_expr, s);
8942 check_absolute_expr (ip, &imm_expr);
8943
8944 if ((unsigned long) imm_expr.X_add_number
8945 > (unsigned long) OP_MASK_VECALIGN)
8946 {
8947 as_bad (_("bad byte vector index (%ld)"),
8948 (long) imm_expr.X_add_number);
8949 imm_expr.X_add_number = 0;
8950 }
8951
8952 INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
8953 imm_expr.X_op = O_absent;
8954 s = expr_end;
8955 continue;
8956
8957 default:
8958 as_bad (_("bad char = '%c'\n"), *args);
8959 internalError ();
8960 }
8961 break;
8962 }
8963 /* Args don't match. */
8964 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8965 !strcmp (insn->name, insn[1].name))
8966 {
8967 ++insn;
8968 s = argsStart;
8969 insn_error = _("illegal operands");
8970 continue;
8971 }
8972 if (save_c)
8973 *(--s) = save_c;
8974 insn_error = _("illegal operands");
8975 return;
8976 }
8977 }
8978
8979 /* This routine assembles an instruction into its binary format when
8980 assembling for the mips16. As a side effect, it sets one of the
8981 global variables imm_reloc or offset_reloc to the type of
8982 relocation to do if one of the operands is an address expression.
8983 It also sets mips16_small and mips16_ext if the user explicitly
8984 requested a small or extended instruction. */
8985
8986 static void
8987 mips16_ip (char *str, struct mips_cl_insn *ip)
8988 {
8989 char *s;
8990 const char *args;
8991 struct mips_opcode *insn;
8992 char *argsstart;
8993 unsigned int regno;
8994 unsigned int lastregno = 0;
8995 char *s_reset;
8996 size_t i;
8997
8998 insn_error = NULL;
8999
9000 mips16_small = FALSE;
9001 mips16_ext = FALSE;
9002
9003 for (s = str; ISLOWER (*s); ++s)
9004 ;
9005 switch (*s)
9006 {
9007 case '\0':
9008 break;
9009
9010 case ' ':
9011 *s++ = '\0';
9012 break;
9013
9014 case '.':
9015 if (s[1] == 't' && s[2] == ' ')
9016 {
9017 *s = '\0';
9018 mips16_small = TRUE;
9019 s += 3;
9020 break;
9021 }
9022 else if (s[1] == 'e' && s[2] == ' ')
9023 {
9024 *s = '\0';
9025 mips16_ext = TRUE;
9026 s += 3;
9027 break;
9028 }
9029 /* Fall through. */
9030 default:
9031 insn_error = _("unknown opcode");
9032 return;
9033 }
9034
9035 if (mips_opts.noautoextend && ! mips16_ext)
9036 mips16_small = TRUE;
9037
9038 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
9039 {
9040 insn_error = _("unrecognized opcode");
9041 return;
9042 }
9043
9044 argsstart = s;
9045 for (;;)
9046 {
9047 assert (strcmp (insn->name, str) == 0);
9048
9049 create_insn (ip, insn);
9050 imm_expr.X_op = O_absent;
9051 imm_reloc[0] = BFD_RELOC_UNUSED;
9052 imm_reloc[1] = BFD_RELOC_UNUSED;
9053 imm_reloc[2] = BFD_RELOC_UNUSED;
9054 imm2_expr.X_op = O_absent;
9055 offset_expr.X_op = O_absent;
9056 offset_reloc[0] = BFD_RELOC_UNUSED;
9057 offset_reloc[1] = BFD_RELOC_UNUSED;
9058 offset_reloc[2] = BFD_RELOC_UNUSED;
9059 for (args = insn->args; 1; ++args)
9060 {
9061 int c;
9062
9063 if (*s == ' ')
9064 ++s;
9065
9066 /* In this switch statement we call break if we did not find
9067 a match, continue if we did find a match, or return if we
9068 are done. */
9069
9070 c = *args;
9071 switch (c)
9072 {
9073 case '\0':
9074 if (*s == '\0')
9075 {
9076 /* Stuff the immediate value in now, if we can. */
9077 if (imm_expr.X_op == O_constant
9078 && *imm_reloc > BFD_RELOC_UNUSED
9079 && insn->pinfo != INSN_MACRO)
9080 {
9081 valueT tmp;
9082
9083 switch (*offset_reloc)
9084 {
9085 case BFD_RELOC_MIPS16_HI16_S:
9086 tmp = (imm_expr.X_add_number + 0x8000) >> 16;
9087 break;
9088
9089 case BFD_RELOC_MIPS16_HI16:
9090 tmp = imm_expr.X_add_number >> 16;
9091 break;
9092
9093 case BFD_RELOC_MIPS16_LO16:
9094 tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff)
9095 - 0x8000;
9096 break;
9097
9098 case BFD_RELOC_UNUSED:
9099 tmp = imm_expr.X_add_number;
9100 break;
9101
9102 default:
9103 internalError ();
9104 }
9105 *offset_reloc = BFD_RELOC_UNUSED;
9106
9107 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
9108 tmp, TRUE, mips16_small,
9109 mips16_ext, &ip->insn_opcode,
9110 &ip->use_extend, &ip->extend);
9111 imm_expr.X_op = O_absent;
9112 *imm_reloc = BFD_RELOC_UNUSED;
9113 }
9114
9115 return;
9116 }
9117 break;
9118
9119 case ',':
9120 if (*s++ == c)
9121 continue;
9122 s--;
9123 switch (*++args)
9124 {
9125 case 'v':
9126 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
9127 continue;
9128 case 'w':
9129 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
9130 continue;
9131 }
9132 break;
9133
9134 case '(':
9135 case ')':
9136 if (*s++ == c)
9137 continue;
9138 break;
9139
9140 case 'v':
9141 case 'w':
9142 if (s[0] != '$')
9143 {
9144 if (c == 'v')
9145 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
9146 else
9147 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
9148 ++args;
9149 continue;
9150 }
9151 /* Fall through. */
9152 case 'x':
9153 case 'y':
9154 case 'z':
9155 case 'Z':
9156 case '0':
9157 case 'S':
9158 case 'R':
9159 case 'X':
9160 case 'Y':
9161 if (s[0] != '$')
9162 break;
9163 s_reset = s;
9164 if (ISDIGIT (s[1]))
9165 {
9166 ++s;
9167 regno = 0;
9168 do
9169 {
9170 regno *= 10;
9171 regno += *s - '0';
9172 ++s;
9173 }
9174 while (ISDIGIT (*s));
9175 if (regno > 31)
9176 {
9177 as_bad (_("invalid register number (%d)"), regno);
9178 regno = 2;
9179 }
9180 }
9181 else
9182 {
9183 if (s[1] == 'r' && s[2] == 'a')
9184 {
9185 s += 3;
9186 regno = RA;
9187 }
9188 else if (s[1] == 'f' && s[2] == 'p')
9189 {
9190 s += 3;
9191 regno = FP;
9192 }
9193 else if (s[1] == 's' && s[2] == 'p')
9194 {
9195 s += 3;
9196 regno = SP;
9197 }
9198 else if (s[1] == 'g' && s[2] == 'p')
9199 {
9200 s += 3;
9201 regno = GP;
9202 }
9203 else if (s[1] == 'a' && s[2] == 't')
9204 {
9205 s += 3;
9206 regno = AT;
9207 }
9208 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
9209 {
9210 s += 4;
9211 regno = KT0;
9212 }
9213 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
9214 {
9215 s += 4;
9216 regno = KT1;
9217 }
9218 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
9219 {
9220 s += 5;
9221 regno = ZERO;
9222 }
9223 else
9224 break;
9225 }
9226
9227 if (*s == ' ')
9228 ++s;
9229 if (args[1] != *s)
9230 {
9231 if (c == 'v' || c == 'w')
9232 {
9233 regno = mips16_to_32_reg_map[lastregno];
9234 s = s_reset;
9235 ++args;
9236 }
9237 }
9238
9239 switch (c)
9240 {
9241 case 'x':
9242 case 'y':
9243 case 'z':
9244 case 'v':
9245 case 'w':
9246 case 'Z':
9247 regno = mips32_to_16_reg_map[regno];
9248 break;
9249
9250 case '0':
9251 if (regno != 0)
9252 regno = ILLEGAL_REG;
9253 break;
9254
9255 case 'S':
9256 if (regno != SP)
9257 regno = ILLEGAL_REG;
9258 break;
9259
9260 case 'R':
9261 if (regno != RA)
9262 regno = ILLEGAL_REG;
9263 break;
9264
9265 case 'X':
9266 case 'Y':
9267 if (regno == AT && ! mips_opts.noat)
9268 as_warn (_("used $at without \".set noat\""));
9269 break;
9270
9271 default:
9272 internalError ();
9273 }
9274
9275 if (regno == ILLEGAL_REG)
9276 break;
9277
9278 switch (c)
9279 {
9280 case 'x':
9281 case 'v':
9282 MIPS16_INSERT_OPERAND (RX, *ip, regno);
9283 break;
9284 case 'y':
9285 case 'w':
9286 MIPS16_INSERT_OPERAND (RY, *ip, regno);
9287 break;
9288 case 'z':
9289 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
9290 break;
9291 case 'Z':
9292 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
9293 case '0':
9294 case 'S':
9295 case 'R':
9296 break;
9297 case 'X':
9298 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
9299 break;
9300 case 'Y':
9301 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
9302 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
9303 break;
9304 default:
9305 internalError ();
9306 }
9307
9308 lastregno = regno;
9309 continue;
9310
9311 case 'P':
9312 if (strncmp (s, "$pc", 3) == 0)
9313 {
9314 s += 3;
9315 continue;
9316 }
9317 break;
9318
9319 case '5':
9320 case 'H':
9321 case 'W':
9322 case 'D':
9323 case 'j':
9324 case 'V':
9325 case 'C':
9326 case 'U':
9327 case 'k':
9328 case 'K':
9329 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
9330 if (i > 0)
9331 {
9332 if (imm_expr.X_op != O_constant)
9333 {
9334 mips16_ext = TRUE;
9335 ip->use_extend = TRUE;
9336 ip->extend = 0;
9337 }
9338 else
9339 {
9340 /* We need to relax this instruction. */
9341 *offset_reloc = *imm_reloc;
9342 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9343 }
9344 s = expr_end;
9345 continue;
9346 }
9347 *imm_reloc = BFD_RELOC_UNUSED;
9348 /* Fall through. */
9349 case '<':
9350 case '>':
9351 case '[':
9352 case ']':
9353 case '4':
9354 case '8':
9355 my_getExpression (&imm_expr, s);
9356 if (imm_expr.X_op == O_register)
9357 {
9358 /* What we thought was an expression turned out to
9359 be a register. */
9360
9361 if (s[0] == '(' && args[1] == '(')
9362 {
9363 /* It looks like the expression was omitted
9364 before a register indirection, which means
9365 that the expression is implicitly zero. We
9366 still set up imm_expr, so that we handle
9367 explicit extensions correctly. */
9368 imm_expr.X_op = O_constant;
9369 imm_expr.X_add_number = 0;
9370 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9371 continue;
9372 }
9373
9374 break;
9375 }
9376
9377 /* We need to relax this instruction. */
9378 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
9379 s = expr_end;
9380 continue;
9381
9382 case 'p':
9383 case 'q':
9384 case 'A':
9385 case 'B':
9386 case 'E':
9387 /* We use offset_reloc rather than imm_reloc for the PC
9388 relative operands. This lets macros with both
9389 immediate and address operands work correctly. */
9390 my_getExpression (&offset_expr, s);
9391
9392 if (offset_expr.X_op == O_register)
9393 break;
9394
9395 /* We need to relax this instruction. */
9396 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
9397 s = expr_end;
9398 continue;
9399
9400 case '6': /* break code */
9401 my_getExpression (&imm_expr, s);
9402 check_absolute_expr (ip, &imm_expr);
9403 if ((unsigned long) imm_expr.X_add_number > 63)
9404 as_warn (_("Invalid value for `%s' (%lu)"),
9405 ip->insn_mo->name,
9406 (unsigned long) imm_expr.X_add_number);
9407 MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number);
9408 imm_expr.X_op = O_absent;
9409 s = expr_end;
9410 continue;
9411
9412 case 'a': /* 26 bit address */
9413 my_getExpression (&offset_expr, s);
9414 s = expr_end;
9415 *offset_reloc = BFD_RELOC_MIPS16_JMP;
9416 ip->insn_opcode <<= 16;
9417 continue;
9418
9419 case 'l': /* register list for entry macro */
9420 case 'L': /* register list for exit macro */
9421 {
9422 int mask;
9423
9424 if (c == 'l')
9425 mask = 0;
9426 else
9427 mask = 7 << 3;
9428 while (*s != '\0')
9429 {
9430 int freg, reg1, reg2;
9431
9432 while (*s == ' ' || *s == ',')
9433 ++s;
9434 if (*s != '$')
9435 {
9436 as_bad (_("can't parse register list"));
9437 break;
9438 }
9439 ++s;
9440 if (*s != 'f')
9441 freg = 0;
9442 else
9443 {
9444 freg = 1;
9445 ++s;
9446 }
9447 reg1 = 0;
9448 while (ISDIGIT (*s))
9449 {
9450 reg1 *= 10;
9451 reg1 += *s - '0';
9452 ++s;
9453 }
9454 if (*s == ' ')
9455 ++s;
9456 if (*s != '-')
9457 reg2 = reg1;
9458 else
9459 {
9460 ++s;
9461 if (*s != '$')
9462 break;
9463 ++s;
9464 if (freg)
9465 {
9466 if (*s == 'f')
9467 ++s;
9468 else
9469 {
9470 as_bad (_("invalid register list"));
9471 break;
9472 }
9473 }
9474 reg2 = 0;
9475 while (ISDIGIT (*s))
9476 {
9477 reg2 *= 10;
9478 reg2 += *s - '0';
9479 ++s;
9480 }
9481 }
9482 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
9483 {
9484 mask &= ~ (7 << 3);
9485 mask |= 5 << 3;
9486 }
9487 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
9488 {
9489 mask &= ~ (7 << 3);
9490 mask |= 6 << 3;
9491 }
9492 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
9493 mask |= (reg2 - 3) << 3;
9494 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
9495 mask |= (reg2 - 15) << 1;
9496 else if (reg1 == RA && reg2 == RA)
9497 mask |= 1;
9498 else
9499 {
9500 as_bad (_("invalid register list"));
9501 break;
9502 }
9503 }
9504 /* The mask is filled in in the opcode table for the
9505 benefit of the disassembler. We remove it before
9506 applying the actual mask. */
9507 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
9508 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
9509 }
9510 continue;
9511
9512 case 'e': /* extend code */
9513 my_getExpression (&imm_expr, s);
9514 check_absolute_expr (ip, &imm_expr);
9515 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
9516 {
9517 as_warn (_("Invalid value for `%s' (%lu)"),
9518 ip->insn_mo->name,
9519 (unsigned long) imm_expr.X_add_number);
9520 imm_expr.X_add_number &= 0x7ff;
9521 }
9522 ip->insn_opcode |= imm_expr.X_add_number;
9523 imm_expr.X_op = O_absent;
9524 s = expr_end;
9525 continue;
9526
9527 default:
9528 internalError ();
9529 }
9530 break;
9531 }
9532
9533 /* Args don't match. */
9534 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
9535 strcmp (insn->name, insn[1].name) == 0)
9536 {
9537 ++insn;
9538 s = argsstart;
9539 continue;
9540 }
9541
9542 insn_error = _("illegal operands");
9543
9544 return;
9545 }
9546 }
9547
9548 /* This structure holds information we know about a mips16 immediate
9549 argument type. */
9550
9551 struct mips16_immed_operand
9552 {
9553 /* The type code used in the argument string in the opcode table. */
9554 int type;
9555 /* The number of bits in the short form of the opcode. */
9556 int nbits;
9557 /* The number of bits in the extended form of the opcode. */
9558 int extbits;
9559 /* The amount by which the short form is shifted when it is used;
9560 for example, the sw instruction has a shift count of 2. */
9561 int shift;
9562 /* The amount by which the short form is shifted when it is stored
9563 into the instruction code. */
9564 int op_shift;
9565 /* Non-zero if the short form is unsigned. */
9566 int unsp;
9567 /* Non-zero if the extended form is unsigned. */
9568 int extu;
9569 /* Non-zero if the value is PC relative. */
9570 int pcrel;
9571 };
9572
9573 /* The mips16 immediate operand types. */
9574
9575 static const struct mips16_immed_operand mips16_immed_operands[] =
9576 {
9577 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9578 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9579 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9580 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9581 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
9582 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
9583 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
9584 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
9585 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
9586 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
9587 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
9588 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
9589 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
9590 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
9591 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
9592 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
9593 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9594 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9595 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
9596 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
9597 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
9598 };
9599
9600 #define MIPS16_NUM_IMMED \
9601 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
9602
9603 /* Handle a mips16 instruction with an immediate value. This or's the
9604 small immediate value into *INSN. It sets *USE_EXTEND to indicate
9605 whether an extended value is needed; if one is needed, it sets
9606 *EXTEND to the value. The argument type is TYPE. The value is VAL.
9607 If SMALL is true, an unextended opcode was explicitly requested.
9608 If EXT is true, an extended opcode was explicitly requested. If
9609 WARN is true, warn if EXT does not match reality. */
9610
9611 static void
9612 mips16_immed (char *file, unsigned int line, int type, offsetT val,
9613 bfd_boolean warn, bfd_boolean small, bfd_boolean ext,
9614 unsigned long *insn, bfd_boolean *use_extend,
9615 unsigned short *extend)
9616 {
9617 register const struct mips16_immed_operand *op;
9618 int mintiny, maxtiny;
9619 bfd_boolean needext;
9620
9621 op = mips16_immed_operands;
9622 while (op->type != type)
9623 {
9624 ++op;
9625 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
9626 }
9627
9628 if (op->unsp)
9629 {
9630 if (type == '<' || type == '>' || type == '[' || type == ']')
9631 {
9632 mintiny = 1;
9633 maxtiny = 1 << op->nbits;
9634 }
9635 else
9636 {
9637 mintiny = 0;
9638 maxtiny = (1 << op->nbits) - 1;
9639 }
9640 }
9641 else
9642 {
9643 mintiny = - (1 << (op->nbits - 1));
9644 maxtiny = (1 << (op->nbits - 1)) - 1;
9645 }
9646
9647 /* Branch offsets have an implicit 0 in the lowest bit. */
9648 if (type == 'p' || type == 'q')
9649 val /= 2;
9650
9651 if ((val & ((1 << op->shift) - 1)) != 0
9652 || val < (mintiny << op->shift)
9653 || val > (maxtiny << op->shift))
9654 needext = TRUE;
9655 else
9656 needext = FALSE;
9657
9658 if (warn && ext && ! needext)
9659 as_warn_where (file, line,
9660 _("extended operand requested but not required"));
9661 if (small && needext)
9662 as_bad_where (file, line, _("invalid unextended operand value"));
9663
9664 if (small || (! ext && ! needext))
9665 {
9666 int insnval;
9667
9668 *use_extend = FALSE;
9669 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
9670 insnval <<= op->op_shift;
9671 *insn |= insnval;
9672 }
9673 else
9674 {
9675 long minext, maxext;
9676 int extval;
9677
9678 if (op->extu)
9679 {
9680 minext = 0;
9681 maxext = (1 << op->extbits) - 1;
9682 }
9683 else
9684 {
9685 minext = - (1 << (op->extbits - 1));
9686 maxext = (1 << (op->extbits - 1)) - 1;
9687 }
9688 if (val < minext || val > maxext)
9689 as_bad_where (file, line,
9690 _("operand value out of range for instruction"));
9691
9692 *use_extend = TRUE;
9693 if (op->extbits == 16)
9694 {
9695 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
9696 val &= 0x1f;
9697 }
9698 else if (op->extbits == 15)
9699 {
9700 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
9701 val &= 0xf;
9702 }
9703 else
9704 {
9705 extval = ((val & 0x1f) << 6) | (val & 0x20);
9706 val = 0;
9707 }
9708
9709 *extend = (unsigned short) extval;
9710 *insn |= val;
9711 }
9712 }
9713 \f
9714 struct percent_op_match
9715 {
9716 const char *str;
9717 bfd_reloc_code_real_type reloc;
9718 };
9719
9720 static const struct percent_op_match mips_percent_op[] =
9721 {
9722 {"%lo", BFD_RELOC_LO16},
9723 #ifdef OBJ_ELF
9724 {"%call_hi", BFD_RELOC_MIPS_CALL_HI16},
9725 {"%call_lo", BFD_RELOC_MIPS_CALL_LO16},
9726 {"%call16", BFD_RELOC_MIPS_CALL16},
9727 {"%got_disp", BFD_RELOC_MIPS_GOT_DISP},
9728 {"%got_page", BFD_RELOC_MIPS_GOT_PAGE},
9729 {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST},
9730 {"%got_hi", BFD_RELOC_MIPS_GOT_HI16},
9731 {"%got_lo", BFD_RELOC_MIPS_GOT_LO16},
9732 {"%got", BFD_RELOC_MIPS_GOT16},
9733 {"%gp_rel", BFD_RELOC_GPREL16},
9734 {"%half", BFD_RELOC_16},
9735 {"%highest", BFD_RELOC_MIPS_HIGHEST},
9736 {"%higher", BFD_RELOC_MIPS_HIGHER},
9737 {"%neg", BFD_RELOC_MIPS_SUB},
9738 {"%tlsgd", BFD_RELOC_MIPS_TLS_GD},
9739 {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM},
9740 {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16},
9741 {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16},
9742 {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16},
9743 {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16},
9744 {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL},
9745 #endif
9746 {"%hi", BFD_RELOC_HI16_S}
9747 };
9748
9749 static const struct percent_op_match mips16_percent_op[] =
9750 {
9751 {"%lo", BFD_RELOC_MIPS16_LO16},
9752 {"%gprel", BFD_RELOC_MIPS16_GPREL},
9753 {"%hi", BFD_RELOC_MIPS16_HI16_S}
9754 };
9755
9756
9757 /* Return true if *STR points to a relocation operator. When returning true,
9758 move *STR over the operator and store its relocation code in *RELOC.
9759 Leave both *STR and *RELOC alone when returning false. */
9760
9761 static bfd_boolean
9762 parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
9763 {
9764 const struct percent_op_match *percent_op;
9765 size_t limit, i;
9766
9767 if (mips_opts.mips16)
9768 {
9769 percent_op = mips16_percent_op;
9770 limit = ARRAY_SIZE (mips16_percent_op);
9771 }
9772 else
9773 {
9774 percent_op = mips_percent_op;
9775 limit = ARRAY_SIZE (mips_percent_op);
9776 }
9777
9778 for (i = 0; i < limit; i++)
9779 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
9780 {
9781 int len = strlen (percent_op[i].str);
9782
9783 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
9784 continue;
9785
9786 *str += strlen (percent_op[i].str);
9787 *reloc = percent_op[i].reloc;
9788
9789 /* Check whether the output BFD supports this relocation.
9790 If not, issue an error and fall back on something safe. */
9791 if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc))
9792 {
9793 as_bad ("relocation %s isn't supported by the current ABI",
9794 percent_op[i].str);
9795 *reloc = BFD_RELOC_UNUSED;
9796 }
9797 return TRUE;
9798 }
9799 return FALSE;
9800 }
9801
9802
9803 /* Parse string STR as a 16-bit relocatable operand. Store the
9804 expression in *EP and the relocations in the array starting
9805 at RELOC. Return the number of relocation operators used.
9806
9807 On exit, EXPR_END points to the first character after the expression. */
9808
9809 static size_t
9810 my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
9811 char *str)
9812 {
9813 bfd_reloc_code_real_type reversed_reloc[3];
9814 size_t reloc_index, i;
9815 int crux_depth, str_depth;
9816 char *crux;
9817
9818 /* Search for the start of the main expression, recoding relocations
9819 in REVERSED_RELOC. End the loop with CRUX pointing to the start
9820 of the main expression and with CRUX_DEPTH containing the number
9821 of open brackets at that point. */
9822 reloc_index = -1;
9823 str_depth = 0;
9824 do
9825 {
9826 reloc_index++;
9827 crux = str;
9828 crux_depth = str_depth;
9829
9830 /* Skip over whitespace and brackets, keeping count of the number
9831 of brackets. */
9832 while (*str == ' ' || *str == '\t' || *str == '(')
9833 if (*str++ == '(')
9834 str_depth++;
9835 }
9836 while (*str == '%'
9837 && reloc_index < (HAVE_NEWABI ? 3 : 1)
9838 && parse_relocation (&str, &reversed_reloc[reloc_index]));
9839
9840 my_getExpression (ep, crux);
9841 str = expr_end;
9842
9843 /* Match every open bracket. */
9844 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
9845 if (*str++ == ')')
9846 crux_depth--;
9847
9848 if (crux_depth > 0)
9849 as_bad ("unclosed '('");
9850
9851 expr_end = str;
9852
9853 if (reloc_index != 0)
9854 {
9855 prev_reloc_op_frag = frag_now;
9856 for (i = 0; i < reloc_index; i++)
9857 reloc[i] = reversed_reloc[reloc_index - 1 - i];
9858 }
9859
9860 return reloc_index;
9861 }
9862
9863 static void
9864 my_getExpression (expressionS *ep, char *str)
9865 {
9866 char *save_in;
9867 valueT val;
9868
9869 save_in = input_line_pointer;
9870 input_line_pointer = str;
9871 expression (ep);
9872 expr_end = input_line_pointer;
9873 input_line_pointer = save_in;
9874
9875 /* If we are in mips16 mode, and this is an expression based on `.',
9876 then we bump the value of the symbol by 1 since that is how other
9877 text symbols are handled. We don't bother to handle complex
9878 expressions, just `.' plus or minus a constant. */
9879 if (mips_opts.mips16
9880 && ep->X_op == O_symbol
9881 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
9882 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
9883 && symbol_get_frag (ep->X_add_symbol) == frag_now
9884 && symbol_constant_p (ep->X_add_symbol)
9885 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
9886 S_SET_VALUE (ep->X_add_symbol, val + 1);
9887 }
9888
9889 /* Turn a string in input_line_pointer into a floating point constant
9890 of type TYPE, and store the appropriate bytes in *LITP. The number
9891 of LITTLENUMS emitted is stored in *SIZEP. An error message is
9892 returned, or NULL on OK. */
9893
9894 char *
9895 md_atof (int type, char *litP, int *sizeP)
9896 {
9897 int prec;
9898 LITTLENUM_TYPE words[4];
9899 char *t;
9900 int i;
9901
9902 switch (type)
9903 {
9904 case 'f':
9905 prec = 2;
9906 break;
9907
9908 case 'd':
9909 prec = 4;
9910 break;
9911
9912 default:
9913 *sizeP = 0;
9914 return _("bad call to md_atof");
9915 }
9916
9917 t = atof_ieee (input_line_pointer, type, words);
9918 if (t)
9919 input_line_pointer = t;
9920
9921 *sizeP = prec * 2;
9922
9923 if (! target_big_endian)
9924 {
9925 for (i = prec - 1; i >= 0; i--)
9926 {
9927 md_number_to_chars (litP, words[i], 2);
9928 litP += 2;
9929 }
9930 }
9931 else
9932 {
9933 for (i = 0; i < prec; i++)
9934 {
9935 md_number_to_chars (litP, words[i], 2);
9936 litP += 2;
9937 }
9938 }
9939
9940 return NULL;
9941 }
9942
9943 void
9944 md_number_to_chars (char *buf, valueT val, int n)
9945 {
9946 if (target_big_endian)
9947 number_to_chars_bigendian (buf, val, n);
9948 else
9949 number_to_chars_littleendian (buf, val, n);
9950 }
9951 \f
9952 #ifdef OBJ_ELF
9953 static int support_64bit_objects(void)
9954 {
9955 const char **list, **l;
9956 int yes;
9957
9958 list = bfd_target_list ();
9959 for (l = list; *l != NULL; l++)
9960 #ifdef TE_TMIPS
9961 /* This is traditional mips */
9962 if (strcmp (*l, "elf64-tradbigmips") == 0
9963 || strcmp (*l, "elf64-tradlittlemips") == 0)
9964 #else
9965 if (strcmp (*l, "elf64-bigmips") == 0
9966 || strcmp (*l, "elf64-littlemips") == 0)
9967 #endif
9968 break;
9969 yes = (*l != NULL);
9970 free (list);
9971 return yes;
9972 }
9973 #endif /* OBJ_ELF */
9974
9975 const char *md_shortopts = "O::g::G:";
9976
9977 struct option md_longopts[] =
9978 {
9979 /* Options which specify architecture. */
9980 #define OPTION_ARCH_BASE (OPTION_MD_BASE)
9981 #define OPTION_MARCH (OPTION_ARCH_BASE + 0)
9982 {"march", required_argument, NULL, OPTION_MARCH},
9983 #define OPTION_MTUNE (OPTION_ARCH_BASE + 1)
9984 {"mtune", required_argument, NULL, OPTION_MTUNE},
9985 #define OPTION_MIPS1 (OPTION_ARCH_BASE + 2)
9986 {"mips0", no_argument, NULL, OPTION_MIPS1},
9987 {"mips1", no_argument, NULL, OPTION_MIPS1},
9988 #define OPTION_MIPS2 (OPTION_ARCH_BASE + 3)
9989 {"mips2", no_argument, NULL, OPTION_MIPS2},
9990 #define OPTION_MIPS3 (OPTION_ARCH_BASE + 4)
9991 {"mips3", no_argument, NULL, OPTION_MIPS3},
9992 #define OPTION_MIPS4 (OPTION_ARCH_BASE + 5)
9993 {"mips4", no_argument, NULL, OPTION_MIPS4},
9994 #define OPTION_MIPS5 (OPTION_ARCH_BASE + 6)
9995 {"mips5", no_argument, NULL, OPTION_MIPS5},
9996 #define OPTION_MIPS32 (OPTION_ARCH_BASE + 7)
9997 {"mips32", no_argument, NULL, OPTION_MIPS32},
9998 #define OPTION_MIPS64 (OPTION_ARCH_BASE + 8)
9999 {"mips64", no_argument, NULL, OPTION_MIPS64},
10000 #define OPTION_MIPS32R2 (OPTION_ARCH_BASE + 9)
10001 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
10002 #define OPTION_MIPS64R2 (OPTION_ARCH_BASE + 10)
10003 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
10004
10005 /* Options which specify Application Specific Extensions (ASEs). */
10006 #define OPTION_ASE_BASE (OPTION_ARCH_BASE + 11)
10007 #define OPTION_MIPS16 (OPTION_ASE_BASE + 0)
10008 {"mips16", no_argument, NULL, OPTION_MIPS16},
10009 #define OPTION_NO_MIPS16 (OPTION_ASE_BASE + 1)
10010 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
10011 #define OPTION_MIPS3D (OPTION_ASE_BASE + 2)
10012 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
10013 #define OPTION_NO_MIPS3D (OPTION_ASE_BASE + 3)
10014 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
10015 #define OPTION_MDMX (OPTION_ASE_BASE + 4)
10016 {"mdmx", no_argument, NULL, OPTION_MDMX},
10017 #define OPTION_NO_MDMX (OPTION_ASE_BASE + 5)
10018 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
10019
10020 /* Old-style architecture options. Don't add more of these. */
10021 #define OPTION_COMPAT_ARCH_BASE (OPTION_ASE_BASE + 6)
10022 #define OPTION_M4650 (OPTION_COMPAT_ARCH_BASE + 0)
10023 {"m4650", no_argument, NULL, OPTION_M4650},
10024 #define OPTION_NO_M4650 (OPTION_COMPAT_ARCH_BASE + 1)
10025 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
10026 #define OPTION_M4010 (OPTION_COMPAT_ARCH_BASE + 2)
10027 {"m4010", no_argument, NULL, OPTION_M4010},
10028 #define OPTION_NO_M4010 (OPTION_COMPAT_ARCH_BASE + 3)
10029 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
10030 #define OPTION_M4100 (OPTION_COMPAT_ARCH_BASE + 4)
10031 {"m4100", no_argument, NULL, OPTION_M4100},
10032 #define OPTION_NO_M4100 (OPTION_COMPAT_ARCH_BASE + 5)
10033 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
10034 #define OPTION_M3900 (OPTION_COMPAT_ARCH_BASE + 6)
10035 {"m3900", no_argument, NULL, OPTION_M3900},
10036 #define OPTION_NO_M3900 (OPTION_COMPAT_ARCH_BASE + 7)
10037 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
10038
10039 /* Options which enable bug fixes. */
10040 #define OPTION_FIX_BASE (OPTION_COMPAT_ARCH_BASE + 8)
10041 #define OPTION_M7000_HILO_FIX (OPTION_FIX_BASE + 0)
10042 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
10043 #define OPTION_MNO_7000_HILO_FIX (OPTION_FIX_BASE + 1)
10044 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
10045 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
10046 #define OPTION_FIX_VR4120 (OPTION_FIX_BASE + 2)
10047 #define OPTION_NO_FIX_VR4120 (OPTION_FIX_BASE + 3)
10048 {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120},
10049 {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120},
10050 #define OPTION_FIX_VR4130 (OPTION_FIX_BASE + 4)
10051 #define OPTION_NO_FIX_VR4130 (OPTION_FIX_BASE + 5)
10052 {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130},
10053 {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130},
10054
10055 /* Miscellaneous options. */
10056 #define OPTION_MISC_BASE (OPTION_FIX_BASE + 6)
10057 #define OPTION_TRAP (OPTION_MISC_BASE + 0)
10058 {"trap", no_argument, NULL, OPTION_TRAP},
10059 {"no-break", no_argument, NULL, OPTION_TRAP},
10060 #define OPTION_BREAK (OPTION_MISC_BASE + 1)
10061 {"break", no_argument, NULL, OPTION_BREAK},
10062 {"no-trap", no_argument, NULL, OPTION_BREAK},
10063 #define OPTION_EB (OPTION_MISC_BASE + 2)
10064 {"EB", no_argument, NULL, OPTION_EB},
10065 #define OPTION_EL (OPTION_MISC_BASE + 3)
10066 {"EL", no_argument, NULL, OPTION_EL},
10067 #define OPTION_FP32 (OPTION_MISC_BASE + 4)
10068 {"mfp32", no_argument, NULL, OPTION_FP32},
10069 #define OPTION_GP32 (OPTION_MISC_BASE + 5)
10070 {"mgp32", no_argument, NULL, OPTION_GP32},
10071 #define OPTION_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 6)
10072 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
10073 #define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 7)
10074 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
10075 #define OPTION_FP64 (OPTION_MISC_BASE + 8)
10076 {"mfp64", no_argument, NULL, OPTION_FP64},
10077 #define OPTION_GP64 (OPTION_MISC_BASE + 9)
10078 {"mgp64", no_argument, NULL, OPTION_GP64},
10079 #define OPTION_RELAX_BRANCH (OPTION_MISC_BASE + 10)
10080 #define OPTION_NO_RELAX_BRANCH (OPTION_MISC_BASE + 11)
10081 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
10082 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
10083 #define OPTION_MSHARED (OPTION_MISC_BASE + 12)
10084 #define OPTION_MNO_SHARED (OPTION_MISC_BASE + 13)
10085 {"mshared", no_argument, NULL, OPTION_MSHARED},
10086 {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED},
10087 #define OPTION_MSYM32 (OPTION_MISC_BASE + 14)
10088 #define OPTION_MNO_SYM32 (OPTION_MISC_BASE + 15)
10089 {"msym32", no_argument, NULL, OPTION_MSYM32},
10090 {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32},
10091
10092 /* ELF-specific options. */
10093 #ifdef OBJ_ELF
10094 #define OPTION_ELF_BASE (OPTION_MISC_BASE + 16)
10095 #define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
10096 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
10097 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
10098 #define OPTION_NON_SHARED (OPTION_ELF_BASE + 1)
10099 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
10100 #define OPTION_XGOT (OPTION_ELF_BASE + 2)
10101 {"xgot", no_argument, NULL, OPTION_XGOT},
10102 #define OPTION_MABI (OPTION_ELF_BASE + 3)
10103 {"mabi", required_argument, NULL, OPTION_MABI},
10104 #define OPTION_32 (OPTION_ELF_BASE + 4)
10105 {"32", no_argument, NULL, OPTION_32},
10106 #define OPTION_N32 (OPTION_ELF_BASE + 5)
10107 {"n32", no_argument, NULL, OPTION_N32},
10108 #define OPTION_64 (OPTION_ELF_BASE + 6)
10109 {"64", no_argument, NULL, OPTION_64},
10110 #define OPTION_MDEBUG (OPTION_ELF_BASE + 7)
10111 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
10112 #define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 8)
10113 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
10114 #define OPTION_PDR (OPTION_ELF_BASE + 9)
10115 {"mpdr", no_argument, NULL, OPTION_PDR},
10116 #define OPTION_NO_PDR (OPTION_ELF_BASE + 10)
10117 {"mno-pdr", no_argument, NULL, OPTION_NO_PDR},
10118 #endif /* OBJ_ELF */
10119
10120 {NULL, no_argument, NULL, 0}
10121 };
10122 size_t md_longopts_size = sizeof (md_longopts);
10123
10124 /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
10125 NEW_VALUE. Warn if another value was already specified. Note:
10126 we have to defer parsing the -march and -mtune arguments in order
10127 to handle 'from-abi' correctly, since the ABI might be specified
10128 in a later argument. */
10129
10130 static void
10131 mips_set_option_string (const char **string_ptr, const char *new_value)
10132 {
10133 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
10134 as_warn (_("A different %s was already specified, is now %s"),
10135 string_ptr == &mips_arch_string ? "-march" : "-mtune",
10136 new_value);
10137
10138 *string_ptr = new_value;
10139 }
10140
10141 int
10142 md_parse_option (int c, char *arg)
10143 {
10144 switch (c)
10145 {
10146 case OPTION_CONSTRUCT_FLOATS:
10147 mips_disable_float_construction = 0;
10148 break;
10149
10150 case OPTION_NO_CONSTRUCT_FLOATS:
10151 mips_disable_float_construction = 1;
10152 break;
10153
10154 case OPTION_TRAP:
10155 mips_trap = 1;
10156 break;
10157
10158 case OPTION_BREAK:
10159 mips_trap = 0;
10160 break;
10161
10162 case OPTION_EB:
10163 target_big_endian = 1;
10164 break;
10165
10166 case OPTION_EL:
10167 target_big_endian = 0;
10168 break;
10169
10170 case 'O':
10171 if (arg && arg[1] == '0')
10172 mips_optimize = 1;
10173 else
10174 mips_optimize = 2;
10175 break;
10176
10177 case 'g':
10178 if (arg == NULL)
10179 mips_debug = 2;
10180 else
10181 mips_debug = atoi (arg);
10182 /* When the MIPS assembler sees -g or -g2, it does not do
10183 optimizations which limit full symbolic debugging. We take
10184 that to be equivalent to -O0. */
10185 if (mips_debug == 2)
10186 mips_optimize = 1;
10187 break;
10188
10189 case OPTION_MIPS1:
10190 file_mips_isa = ISA_MIPS1;
10191 break;
10192
10193 case OPTION_MIPS2:
10194 file_mips_isa = ISA_MIPS2;
10195 break;
10196
10197 case OPTION_MIPS3:
10198 file_mips_isa = ISA_MIPS3;
10199 break;
10200
10201 case OPTION_MIPS4:
10202 file_mips_isa = ISA_MIPS4;
10203 break;
10204
10205 case OPTION_MIPS5:
10206 file_mips_isa = ISA_MIPS5;
10207 break;
10208
10209 case OPTION_MIPS32:
10210 file_mips_isa = ISA_MIPS32;
10211 break;
10212
10213 case OPTION_MIPS32R2:
10214 file_mips_isa = ISA_MIPS32R2;
10215 break;
10216
10217 case OPTION_MIPS64R2:
10218 file_mips_isa = ISA_MIPS64R2;
10219 break;
10220
10221 case OPTION_MIPS64:
10222 file_mips_isa = ISA_MIPS64;
10223 break;
10224
10225 case OPTION_MTUNE:
10226 mips_set_option_string (&mips_tune_string, arg);
10227 break;
10228
10229 case OPTION_MARCH:
10230 mips_set_option_string (&mips_arch_string, arg);
10231 break;
10232
10233 case OPTION_M4650:
10234 mips_set_option_string (&mips_arch_string, "4650");
10235 mips_set_option_string (&mips_tune_string, "4650");
10236 break;
10237
10238 case OPTION_NO_M4650:
10239 break;
10240
10241 case OPTION_M4010:
10242 mips_set_option_string (&mips_arch_string, "4010");
10243 mips_set_option_string (&mips_tune_string, "4010");
10244 break;
10245
10246 case OPTION_NO_M4010:
10247 break;
10248
10249 case OPTION_M4100:
10250 mips_set_option_string (&mips_arch_string, "4100");
10251 mips_set_option_string (&mips_tune_string, "4100");
10252 break;
10253
10254 case OPTION_NO_M4100:
10255 break;
10256
10257 case OPTION_M3900:
10258 mips_set_option_string (&mips_arch_string, "3900");
10259 mips_set_option_string (&mips_tune_string, "3900");
10260 break;
10261
10262 case OPTION_NO_M3900:
10263 break;
10264
10265 case OPTION_MDMX:
10266 mips_opts.ase_mdmx = 1;
10267 break;
10268
10269 case OPTION_NO_MDMX:
10270 mips_opts.ase_mdmx = 0;
10271 break;
10272
10273 case OPTION_MIPS16:
10274 mips_opts.mips16 = 1;
10275 mips_no_prev_insn ();
10276 break;
10277
10278 case OPTION_NO_MIPS16:
10279 mips_opts.mips16 = 0;
10280 mips_no_prev_insn ();
10281 break;
10282
10283 case OPTION_MIPS3D:
10284 mips_opts.ase_mips3d = 1;
10285 break;
10286
10287 case OPTION_NO_MIPS3D:
10288 mips_opts.ase_mips3d = 0;
10289 break;
10290
10291 case OPTION_FIX_VR4120:
10292 mips_fix_vr4120 = 1;
10293 break;
10294
10295 case OPTION_NO_FIX_VR4120:
10296 mips_fix_vr4120 = 0;
10297 break;
10298
10299 case OPTION_FIX_VR4130:
10300 mips_fix_vr4130 = 1;
10301 break;
10302
10303 case OPTION_NO_FIX_VR4130:
10304 mips_fix_vr4130 = 0;
10305 break;
10306
10307 case OPTION_RELAX_BRANCH:
10308 mips_relax_branch = 1;
10309 break;
10310
10311 case OPTION_NO_RELAX_BRANCH:
10312 mips_relax_branch = 0;
10313 break;
10314
10315 case OPTION_MSHARED:
10316 mips_in_shared = TRUE;
10317 break;
10318
10319 case OPTION_MNO_SHARED:
10320 mips_in_shared = FALSE;
10321 break;
10322
10323 case OPTION_MSYM32:
10324 mips_opts.sym32 = TRUE;
10325 break;
10326
10327 case OPTION_MNO_SYM32:
10328 mips_opts.sym32 = FALSE;
10329 break;
10330
10331 #ifdef OBJ_ELF
10332 /* When generating ELF code, we permit -KPIC and -call_shared to
10333 select SVR4_PIC, and -non_shared to select no PIC. This is
10334 intended to be compatible with Irix 5. */
10335 case OPTION_CALL_SHARED:
10336 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10337 {
10338 as_bad (_("-call_shared is supported only for ELF format"));
10339 return 0;
10340 }
10341 mips_pic = SVR4_PIC;
10342 mips_abicalls = TRUE;
10343 if (g_switch_seen && g_switch_value != 0)
10344 {
10345 as_bad (_("-G may not be used with SVR4 PIC code"));
10346 return 0;
10347 }
10348 g_switch_value = 0;
10349 break;
10350
10351 case OPTION_NON_SHARED:
10352 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10353 {
10354 as_bad (_("-non_shared is supported only for ELF format"));
10355 return 0;
10356 }
10357 mips_pic = NO_PIC;
10358 mips_abicalls = FALSE;
10359 break;
10360
10361 /* The -xgot option tells the assembler to use 32 offsets when
10362 accessing the got in SVR4_PIC mode. It is for Irix
10363 compatibility. */
10364 case OPTION_XGOT:
10365 mips_big_got = 1;
10366 break;
10367 #endif /* OBJ_ELF */
10368
10369 case 'G':
10370 g_switch_value = atoi (arg);
10371 g_switch_seen = 1;
10372 if (mips_pic == SVR4_PIC && g_switch_value != 0)
10373 {
10374 as_bad (_("-G may not be used with SVR4 PIC code"));
10375 return 0;
10376 }
10377 break;
10378
10379 #ifdef OBJ_ELF
10380 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
10381 and -mabi=64. */
10382 case OPTION_32:
10383 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10384 {
10385 as_bad (_("-32 is supported for ELF format only"));
10386 return 0;
10387 }
10388 mips_abi = O32_ABI;
10389 break;
10390
10391 case OPTION_N32:
10392 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10393 {
10394 as_bad (_("-n32 is supported for ELF format only"));
10395 return 0;
10396 }
10397 mips_abi = N32_ABI;
10398 break;
10399
10400 case OPTION_64:
10401 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10402 {
10403 as_bad (_("-64 is supported for ELF format only"));
10404 return 0;
10405 }
10406 mips_abi = N64_ABI;
10407 if (! support_64bit_objects())
10408 as_fatal (_("No compiled in support for 64 bit object file format"));
10409 break;
10410 #endif /* OBJ_ELF */
10411
10412 case OPTION_GP32:
10413 file_mips_gp32 = 1;
10414 break;
10415
10416 case OPTION_GP64:
10417 file_mips_gp32 = 0;
10418 break;
10419
10420 case OPTION_FP32:
10421 file_mips_fp32 = 1;
10422 break;
10423
10424 case OPTION_FP64:
10425 file_mips_fp32 = 0;
10426 break;
10427
10428 #ifdef OBJ_ELF
10429 case OPTION_MABI:
10430 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10431 {
10432 as_bad (_("-mabi is supported for ELF format only"));
10433 return 0;
10434 }
10435 if (strcmp (arg, "32") == 0)
10436 mips_abi = O32_ABI;
10437 else if (strcmp (arg, "o64") == 0)
10438 mips_abi = O64_ABI;
10439 else if (strcmp (arg, "n32") == 0)
10440 mips_abi = N32_ABI;
10441 else if (strcmp (arg, "64") == 0)
10442 {
10443 mips_abi = N64_ABI;
10444 if (! support_64bit_objects())
10445 as_fatal (_("No compiled in support for 64 bit object file "
10446 "format"));
10447 }
10448 else if (strcmp (arg, "eabi") == 0)
10449 mips_abi = EABI_ABI;
10450 else
10451 {
10452 as_fatal (_("invalid abi -mabi=%s"), arg);
10453 return 0;
10454 }
10455 break;
10456 #endif /* OBJ_ELF */
10457
10458 case OPTION_M7000_HILO_FIX:
10459 mips_7000_hilo_fix = TRUE;
10460 break;
10461
10462 case OPTION_MNO_7000_HILO_FIX:
10463 mips_7000_hilo_fix = FALSE;
10464 break;
10465
10466 #ifdef OBJ_ELF
10467 case OPTION_MDEBUG:
10468 mips_flag_mdebug = TRUE;
10469 break;
10470
10471 case OPTION_NO_MDEBUG:
10472 mips_flag_mdebug = FALSE;
10473 break;
10474
10475 case OPTION_PDR:
10476 mips_flag_pdr = TRUE;
10477 break;
10478
10479 case OPTION_NO_PDR:
10480 mips_flag_pdr = FALSE;
10481 break;
10482 #endif /* OBJ_ELF */
10483
10484 default:
10485 return 0;
10486 }
10487
10488 return 1;
10489 }
10490 \f
10491 /* Set up globals to generate code for the ISA or processor
10492 described by INFO. */
10493
10494 static void
10495 mips_set_architecture (const struct mips_cpu_info *info)
10496 {
10497 if (info != 0)
10498 {
10499 file_mips_arch = info->cpu;
10500 mips_opts.arch = info->cpu;
10501 mips_opts.isa = info->isa;
10502 }
10503 }
10504
10505
10506 /* Likewise for tuning. */
10507
10508 static void
10509 mips_set_tune (const struct mips_cpu_info *info)
10510 {
10511 if (info != 0)
10512 mips_tune = info->cpu;
10513 }
10514
10515
10516 void
10517 mips_after_parse_args (void)
10518 {
10519 const struct mips_cpu_info *arch_info = 0;
10520 const struct mips_cpu_info *tune_info = 0;
10521
10522 /* GP relative stuff not working for PE */
10523 if (strncmp (TARGET_OS, "pe", 2) == 0)
10524 {
10525 if (g_switch_seen && g_switch_value != 0)
10526 as_bad (_("-G not supported in this configuration."));
10527 g_switch_value = 0;
10528 }
10529
10530 if (mips_abi == NO_ABI)
10531 mips_abi = MIPS_DEFAULT_ABI;
10532
10533 /* The following code determines the architecture and register size.
10534 Similar code was added to GCC 3.3 (see override_options() in
10535 config/mips/mips.c). The GAS and GCC code should be kept in sync
10536 as much as possible. */
10537
10538 if (mips_arch_string != 0)
10539 arch_info = mips_parse_cpu ("-march", mips_arch_string);
10540
10541 if (file_mips_isa != ISA_UNKNOWN)
10542 {
10543 /* Handle -mipsN. At this point, file_mips_isa contains the
10544 ISA level specified by -mipsN, while arch_info->isa contains
10545 the -march selection (if any). */
10546 if (arch_info != 0)
10547 {
10548 /* -march takes precedence over -mipsN, since it is more descriptive.
10549 There's no harm in specifying both as long as the ISA levels
10550 are the same. */
10551 if (file_mips_isa != arch_info->isa)
10552 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
10553 mips_cpu_info_from_isa (file_mips_isa)->name,
10554 mips_cpu_info_from_isa (arch_info->isa)->name);
10555 }
10556 else
10557 arch_info = mips_cpu_info_from_isa (file_mips_isa);
10558 }
10559
10560 if (arch_info == 0)
10561 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
10562
10563 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
10564 as_bad ("-march=%s is not compatible with the selected ABI",
10565 arch_info->name);
10566
10567 mips_set_architecture (arch_info);
10568
10569 /* Optimize for file_mips_arch, unless -mtune selects a different processor. */
10570 if (mips_tune_string != 0)
10571 tune_info = mips_parse_cpu ("-mtune", mips_tune_string);
10572
10573 if (tune_info == 0)
10574 mips_set_tune (arch_info);
10575 else
10576 mips_set_tune (tune_info);
10577
10578 if (file_mips_gp32 >= 0)
10579 {
10580 /* The user specified the size of the integer registers. Make sure
10581 it agrees with the ABI and ISA. */
10582 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
10583 as_bad (_("-mgp64 used with a 32-bit processor"));
10584 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
10585 as_bad (_("-mgp32 used with a 64-bit ABI"));
10586 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
10587 as_bad (_("-mgp64 used with a 32-bit ABI"));
10588 }
10589 else
10590 {
10591 /* Infer the integer register size from the ABI and processor.
10592 Restrict ourselves to 32-bit registers if that's all the
10593 processor has, or if the ABI cannot handle 64-bit registers. */
10594 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
10595 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
10596 }
10597
10598 /* ??? GAS treats single-float processors as though they had 64-bit
10599 float registers (although it complains when double-precision
10600 instructions are used). As things stand, saying they have 32-bit
10601 registers would lead to spurious "register must be even" messages.
10602 So here we assume float registers are always the same size as
10603 integer ones, unless the user says otherwise. */
10604 if (file_mips_fp32 < 0)
10605 file_mips_fp32 = file_mips_gp32;
10606
10607 /* End of GCC-shared inference code. */
10608
10609 /* This flag is set when we have a 64-bit capable CPU but use only
10610 32-bit wide registers. Note that EABI does not use it. */
10611 if (ISA_HAS_64BIT_REGS (mips_opts.isa)
10612 && ((mips_abi == NO_ABI && file_mips_gp32 == 1)
10613 || mips_abi == O32_ABI))
10614 mips_32bitmode = 1;
10615
10616 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
10617 as_bad (_("trap exception not supported at ISA 1"));
10618
10619 /* If the selected architecture includes support for ASEs, enable
10620 generation of code for them. */
10621 if (mips_opts.mips16 == -1)
10622 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
10623 if (mips_opts.ase_mips3d == -1)
10624 mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (file_mips_arch)) ? 1 : 0;
10625 if (mips_opts.ase_mdmx == -1)
10626 mips_opts.ase_mdmx = (CPU_HAS_MDMX (file_mips_arch)) ? 1 : 0;
10627
10628 file_mips_isa = mips_opts.isa;
10629 file_ase_mips16 = mips_opts.mips16;
10630 file_ase_mips3d = mips_opts.ase_mips3d;
10631 file_ase_mdmx = mips_opts.ase_mdmx;
10632 mips_opts.gp32 = file_mips_gp32;
10633 mips_opts.fp32 = file_mips_fp32;
10634
10635 if (mips_flag_mdebug < 0)
10636 {
10637 #ifdef OBJ_MAYBE_ECOFF
10638 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
10639 mips_flag_mdebug = 1;
10640 else
10641 #endif /* OBJ_MAYBE_ECOFF */
10642 mips_flag_mdebug = 0;
10643 }
10644 }
10645 \f
10646 void
10647 mips_init_after_args (void)
10648 {
10649 /* initialize opcodes */
10650 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
10651 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
10652 }
10653
10654 long
10655 md_pcrel_from (fixS *fixP)
10656 {
10657 valueT addr = fixP->fx_where + fixP->fx_frag->fr_address;
10658 switch (fixP->fx_r_type)
10659 {
10660 case BFD_RELOC_16_PCREL_S2:
10661 case BFD_RELOC_MIPS_JMP:
10662 /* Return the address of the delay slot. */
10663 return addr + 4;
10664 default:
10665 return addr;
10666 }
10667 }
10668
10669 /* This is called before the symbol table is processed. In order to
10670 work with gcc when using mips-tfile, we must keep all local labels.
10671 However, in other cases, we want to discard them. If we were
10672 called with -g, but we didn't see any debugging information, it may
10673 mean that gcc is smuggling debugging information through to
10674 mips-tfile, in which case we must generate all local labels. */
10675
10676 void
10677 mips_frob_file_before_adjust (void)
10678 {
10679 #ifndef NO_ECOFF_DEBUGGING
10680 if (ECOFF_DEBUGGING
10681 && mips_debug != 0
10682 && ! ecoff_debugging_seen)
10683 flag_keep_locals = 1;
10684 #endif
10685 }
10686
10687 /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede
10688 the corresponding LO16 reloc. This is called before md_apply_fix3 and
10689 tc_gen_reloc. Unmatched relocs can only be generated by use of explicit
10690 relocation operators.
10691
10692 For our purposes, a %lo() expression matches a %got() or %hi()
10693 expression if:
10694
10695 (a) it refers to the same symbol; and
10696 (b) the offset applied in the %lo() expression is no lower than
10697 the offset applied in the %got() or %hi().
10698
10699 (b) allows us to cope with code like:
10700
10701 lui $4,%hi(foo)
10702 lh $4,%lo(foo+2)($4)
10703
10704 ...which is legal on RELA targets, and has a well-defined behaviour
10705 if the user knows that adding 2 to "foo" will not induce a carry to
10706 the high 16 bits.
10707
10708 When several %lo()s match a particular %got() or %hi(), we use the
10709 following rules to distinguish them:
10710
10711 (1) %lo()s with smaller offsets are a better match than %lo()s with
10712 higher offsets.
10713
10714 (2) %lo()s with no matching %got() or %hi() are better than those
10715 that already have a matching %got() or %hi().
10716
10717 (3) later %lo()s are better than earlier %lo()s.
10718
10719 These rules are applied in order.
10720
10721 (1) means, among other things, that %lo()s with identical offsets are
10722 chosen if they exist.
10723
10724 (2) means that we won't associate several high-part relocations with
10725 the same low-part relocation unless there's no alternative. Having
10726 several high parts for the same low part is a GNU extension; this rule
10727 allows careful users to avoid it.
10728
10729 (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order,
10730 with the last high-part relocation being at the front of the list.
10731 It therefore makes sense to choose the last matching low-part
10732 relocation, all other things being equal. It's also easier
10733 to code that way. */
10734
10735 void
10736 mips_frob_file (void)
10737 {
10738 struct mips_hi_fixup *l;
10739
10740 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
10741 {
10742 segment_info_type *seginfo;
10743 bfd_boolean matched_lo_p;
10744 fixS **hi_pos, **lo_pos, **pos;
10745
10746 assert (reloc_needs_lo_p (l->fixp->fx_r_type));
10747
10748 /* If a GOT16 relocation turns out to be against a global symbol,
10749 there isn't supposed to be a matching LO. */
10750 if (l->fixp->fx_r_type == BFD_RELOC_MIPS_GOT16
10751 && !pic_need_relax (l->fixp->fx_addsy, l->seg))
10752 continue;
10753
10754 /* Check quickly whether the next fixup happens to be a matching %lo. */
10755 if (fixup_has_matching_lo_p (l->fixp))
10756 continue;
10757
10758 seginfo = seg_info (l->seg);
10759
10760 /* Set HI_POS to the position of this relocation in the chain.
10761 Set LO_POS to the position of the chosen low-part relocation.
10762 MATCHED_LO_P is true on entry to the loop if *POS is a low-part
10763 relocation that matches an immediately-preceding high-part
10764 relocation. */
10765 hi_pos = NULL;
10766 lo_pos = NULL;
10767 matched_lo_p = FALSE;
10768 for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next)
10769 {
10770 if (*pos == l->fixp)
10771 hi_pos = pos;
10772
10773 if (((*pos)->fx_r_type == BFD_RELOC_LO16
10774 || (*pos)->fx_r_type == BFD_RELOC_MIPS16_LO16)
10775 && (*pos)->fx_addsy == l->fixp->fx_addsy
10776 && (*pos)->fx_offset >= l->fixp->fx_offset
10777 && (lo_pos == NULL
10778 || (*pos)->fx_offset < (*lo_pos)->fx_offset
10779 || (!matched_lo_p
10780 && (*pos)->fx_offset == (*lo_pos)->fx_offset)))
10781 lo_pos = pos;
10782
10783 matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type)
10784 && fixup_has_matching_lo_p (*pos));
10785 }
10786
10787 /* If we found a match, remove the high-part relocation from its
10788 current position and insert it before the low-part relocation.
10789 Make the offsets match so that fixup_has_matching_lo_p()
10790 will return true.
10791
10792 We don't warn about unmatched high-part relocations since some
10793 versions of gcc have been known to emit dead "lui ...%hi(...)"
10794 instructions. */
10795 if (lo_pos != NULL)
10796 {
10797 l->fixp->fx_offset = (*lo_pos)->fx_offset;
10798 if (l->fixp->fx_next != *lo_pos)
10799 {
10800 *hi_pos = l->fixp->fx_next;
10801 l->fixp->fx_next = *lo_pos;
10802 *lo_pos = l->fixp;
10803 }
10804 }
10805 }
10806 }
10807
10808 /* We may have combined relocations without symbols in the N32/N64 ABI.
10809 We have to prevent gas from dropping them. */
10810
10811 int
10812 mips_force_relocation (fixS *fixp)
10813 {
10814 if (generic_force_reloc (fixp))
10815 return 1;
10816
10817 if (HAVE_NEWABI
10818 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
10819 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
10820 || fixp->fx_r_type == BFD_RELOC_HI16_S
10821 || fixp->fx_r_type == BFD_RELOC_LO16))
10822 return 1;
10823
10824 return 0;
10825 }
10826
10827 /* This hook is called before a fix is simplified. We don't really
10828 decide whether to skip a fix here. Rather, we turn global symbols
10829 used as branch targets into local symbols, such that they undergo
10830 simplification. We can only do this if the symbol is defined and
10831 it is in the same section as the branch. If this doesn't hold, we
10832 emit a better error message than just saying the relocation is not
10833 valid for the selected object format.
10834
10835 FIXP is the fix-up we're going to try to simplify, SEG is the
10836 segment in which the fix up occurs. The return value should be
10837 non-zero to indicate the fix-up is valid for further
10838 simplifications. */
10839
10840 int
10841 mips_validate_fix (struct fix *fixP, asection *seg)
10842 {
10843 /* There's a lot of discussion on whether it should be possible to
10844 use R_MIPS_PC16 to represent branch relocations. The outcome
10845 seems to be that it can, but gas/bfd are very broken in creating
10846 RELA relocations for this, so for now we only accept branches to
10847 symbols in the same section. Anything else is of dubious value,
10848 since there's no guarantee that at link time the symbol would be
10849 in range. Even for branches to local symbols this is arguably
10850 wrong, since it we assume the symbol is not going to be
10851 overridden, which should be possible per ELF library semantics,
10852 but then, there isn't a dynamic relocation that could be used to
10853 this effect, and the target would likely be out of range as well.
10854
10855 Unfortunately, it seems that there is too much code out there
10856 that relies on branches to symbols that are global to be resolved
10857 as if they were local, like the IRIX tools do, so we do it as
10858 well, but with a warning so that people are reminded to fix their
10859 code. If we ever get back to using R_MIPS_PC16 for branch
10860 targets, this entire block should go away (and probably the
10861 whole function). */
10862
10863 if (fixP->fx_r_type == BFD_RELOC_16_PCREL_S2
10864 && ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
10865 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
10866 || bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16_PCREL_S2) == NULL)
10867 && fixP->fx_addsy)
10868 {
10869 if (! S_IS_DEFINED (fixP->fx_addsy))
10870 {
10871 as_bad_where (fixP->fx_file, fixP->fx_line,
10872 _("Cannot branch to undefined symbol."));
10873 /* Avoid any further errors about this fixup. */
10874 fixP->fx_done = 1;
10875 }
10876 else if (S_GET_SEGMENT (fixP->fx_addsy) != seg)
10877 {
10878 as_bad_where (fixP->fx_file, fixP->fx_line,
10879 _("Cannot branch to symbol in another section."));
10880 fixP->fx_done = 1;
10881 }
10882 else if (S_IS_EXTERNAL (fixP->fx_addsy))
10883 {
10884 symbolS *sym = fixP->fx_addsy;
10885
10886 if (mips_pic == SVR4_PIC)
10887 as_warn_where (fixP->fx_file, fixP->fx_line,
10888 _("Pretending global symbol used as branch target is local."));
10889
10890 fixP->fx_addsy = symbol_create (S_GET_NAME (sym),
10891 S_GET_SEGMENT (sym),
10892 S_GET_VALUE (sym),
10893 symbol_get_frag (sym));
10894 copy_symbol_attributes (fixP->fx_addsy, sym);
10895 S_CLEAR_EXTERNAL (fixP->fx_addsy);
10896 assert (symbol_resolved_p (sym));
10897 symbol_mark_resolved (fixP->fx_addsy);
10898 }
10899 }
10900
10901 return 1;
10902 }
10903
10904 /* Apply a fixup to the object file. */
10905
10906 void
10907 md_apply_fix3 (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
10908 {
10909 bfd_byte *buf;
10910 long insn;
10911 reloc_howto_type *howto;
10912
10913 /* We ignore generic BFD relocations we don't know about. */
10914 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
10915 if (! howto)
10916 return;
10917
10918 assert (fixP->fx_size == 4
10919 || fixP->fx_r_type == BFD_RELOC_16
10920 || fixP->fx_r_type == BFD_RELOC_64
10921 || fixP->fx_r_type == BFD_RELOC_CTOR
10922 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
10923 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
10924 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY);
10925
10926 buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
10927
10928 assert (! fixP->fx_pcrel);
10929
10930 /* Don't treat parts of a composite relocation as done. There are two
10931 reasons for this:
10932
10933 (1) The second and third parts will be against 0 (RSS_UNDEF) but
10934 should nevertheless be emitted if the first part is.
10935
10936 (2) In normal usage, composite relocations are never assembly-time
10937 constants. The easiest way of dealing with the pathological
10938 exceptions is to generate a relocation against STN_UNDEF and
10939 leave everything up to the linker. */
10940 if (fixP->fx_addsy == NULL && fixP->fx_tcbit == 0)
10941 fixP->fx_done = 1;
10942
10943 switch (fixP->fx_r_type)
10944 {
10945 case BFD_RELOC_MIPS_TLS_GD:
10946 case BFD_RELOC_MIPS_TLS_LDM:
10947 case BFD_RELOC_MIPS_TLS_DTPREL_HI16:
10948 case BFD_RELOC_MIPS_TLS_DTPREL_LO16:
10949 case BFD_RELOC_MIPS_TLS_GOTTPREL:
10950 case BFD_RELOC_MIPS_TLS_TPREL_HI16:
10951 case BFD_RELOC_MIPS_TLS_TPREL_LO16:
10952 S_SET_THREAD_LOCAL (fixP->fx_addsy);
10953 /* fall through */
10954
10955 case BFD_RELOC_MIPS_JMP:
10956 case BFD_RELOC_MIPS_SHIFT5:
10957 case BFD_RELOC_MIPS_SHIFT6:
10958 case BFD_RELOC_MIPS_GOT_DISP:
10959 case BFD_RELOC_MIPS_GOT_PAGE:
10960 case BFD_RELOC_MIPS_GOT_OFST:
10961 case BFD_RELOC_MIPS_SUB:
10962 case BFD_RELOC_MIPS_INSERT_A:
10963 case BFD_RELOC_MIPS_INSERT_B:
10964 case BFD_RELOC_MIPS_DELETE:
10965 case BFD_RELOC_MIPS_HIGHEST:
10966 case BFD_RELOC_MIPS_HIGHER:
10967 case BFD_RELOC_MIPS_SCN_DISP:
10968 case BFD_RELOC_MIPS_REL16:
10969 case BFD_RELOC_MIPS_RELGOT:
10970 case BFD_RELOC_MIPS_JALR:
10971 case BFD_RELOC_HI16:
10972 case BFD_RELOC_HI16_S:
10973 case BFD_RELOC_GPREL16:
10974 case BFD_RELOC_MIPS_LITERAL:
10975 case BFD_RELOC_MIPS_CALL16:
10976 case BFD_RELOC_MIPS_GOT16:
10977 case BFD_RELOC_GPREL32:
10978 case BFD_RELOC_MIPS_GOT_HI16:
10979 case BFD_RELOC_MIPS_GOT_LO16:
10980 case BFD_RELOC_MIPS_CALL_HI16:
10981 case BFD_RELOC_MIPS_CALL_LO16:
10982 case BFD_RELOC_MIPS16_GPREL:
10983 case BFD_RELOC_MIPS16_HI16:
10984 case BFD_RELOC_MIPS16_HI16_S:
10985 assert (! fixP->fx_pcrel);
10986 /* Nothing needed to do. The value comes from the reloc entry */
10987 break;
10988
10989 case BFD_RELOC_MIPS16_JMP:
10990 /* We currently always generate a reloc against a symbol, which
10991 means that we don't want an addend even if the symbol is
10992 defined. */
10993 *valP = 0;
10994 break;
10995
10996 case BFD_RELOC_64:
10997 /* This is handled like BFD_RELOC_32, but we output a sign
10998 extended value if we are only 32 bits. */
10999 if (fixP->fx_done)
11000 {
11001 if (8 <= sizeof (valueT))
11002 md_number_to_chars ((char *) buf, *valP, 8);
11003 else
11004 {
11005 valueT hiv;
11006
11007 if ((*valP & 0x80000000) != 0)
11008 hiv = 0xffffffff;
11009 else
11010 hiv = 0;
11011 md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)),
11012 *valP, 4);
11013 md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)),
11014 hiv, 4);
11015 }
11016 }
11017 break;
11018
11019 case BFD_RELOC_RVA:
11020 case BFD_RELOC_32:
11021 /* If we are deleting this reloc entry, we must fill in the
11022 value now. This can happen if we have a .word which is not
11023 resolved when it appears but is later defined. */
11024 if (fixP->fx_done)
11025 md_number_to_chars ((char *) buf, *valP, 4);
11026 break;
11027
11028 case BFD_RELOC_16:
11029 /* If we are deleting this reloc entry, we must fill in the
11030 value now. */
11031 if (fixP->fx_done)
11032 md_number_to_chars ((char *) buf, *valP, 2);
11033 break;
11034
11035 case BFD_RELOC_LO16:
11036 case BFD_RELOC_MIPS16_LO16:
11037 /* FIXME: Now that embedded-PIC is gone, some of this code/comment
11038 may be safe to remove, but if so it's not obvious. */
11039 /* When handling an embedded PIC switch statement, we can wind
11040 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
11041 if (fixP->fx_done)
11042 {
11043 if (*valP + 0x8000 > 0xffff)
11044 as_bad_where (fixP->fx_file, fixP->fx_line,
11045 _("relocation overflow"));
11046 if (target_big_endian)
11047 buf += 2;
11048 md_number_to_chars ((char *) buf, *valP, 2);
11049 }
11050 break;
11051
11052 case BFD_RELOC_16_PCREL_S2:
11053 if ((*valP & 0x3) != 0)
11054 as_bad_where (fixP->fx_file, fixP->fx_line,
11055 _("Branch to odd address (%lx)"), (long) *valP);
11056
11057 /*
11058 * We need to save the bits in the instruction since fixup_segment()
11059 * might be deleting the relocation entry (i.e., a branch within
11060 * the current segment).
11061 */
11062 if (! fixP->fx_done)
11063 break;
11064
11065 /* update old instruction data */
11066 if (target_big_endian)
11067 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
11068 else
11069 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
11070
11071 if (*valP + 0x20000 <= 0x3ffff)
11072 {
11073 insn |= (*valP >> 2) & 0xffff;
11074 md_number_to_chars ((char *) buf, insn, 4);
11075 }
11076 else if (mips_pic == NO_PIC
11077 && fixP->fx_done
11078 && fixP->fx_frag->fr_address >= text_section->vma
11079 && (fixP->fx_frag->fr_address
11080 < text_section->vma + bfd_get_section_size (text_section))
11081 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
11082 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
11083 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
11084 {
11085 /* The branch offset is too large. If this is an
11086 unconditional branch, and we are not generating PIC code,
11087 we can convert it to an absolute jump instruction. */
11088 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
11089 insn = 0x0c000000; /* jal */
11090 else
11091 insn = 0x08000000; /* j */
11092 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
11093 fixP->fx_done = 0;
11094 fixP->fx_addsy = section_symbol (text_section);
11095 *valP += md_pcrel_from (fixP);
11096 md_number_to_chars ((char *) buf, insn, 4);
11097 }
11098 else
11099 {
11100 /* If we got here, we have branch-relaxation disabled,
11101 and there's nothing we can do to fix this instruction
11102 without turning it into a longer sequence. */
11103 as_bad_where (fixP->fx_file, fixP->fx_line,
11104 _("Branch out of range"));
11105 }
11106 break;
11107
11108 case BFD_RELOC_VTABLE_INHERIT:
11109 fixP->fx_done = 0;
11110 if (fixP->fx_addsy
11111 && !S_IS_DEFINED (fixP->fx_addsy)
11112 && !S_IS_WEAK (fixP->fx_addsy))
11113 S_SET_WEAK (fixP->fx_addsy);
11114 break;
11115
11116 case BFD_RELOC_VTABLE_ENTRY:
11117 fixP->fx_done = 0;
11118 break;
11119
11120 default:
11121 internalError ();
11122 }
11123
11124 /* Remember value for tc_gen_reloc. */
11125 fixP->fx_addnumber = *valP;
11126 }
11127
11128 static symbolS *
11129 get_symbol (void)
11130 {
11131 int c;
11132 char *name;
11133 symbolS *p;
11134
11135 name = input_line_pointer;
11136 c = get_symbol_end ();
11137 p = (symbolS *) symbol_find_or_make (name);
11138 *input_line_pointer = c;
11139 return p;
11140 }
11141
11142 /* Align the current frag to a given power of two. The MIPS assembler
11143 also automatically adjusts any preceding label. */
11144
11145 static void
11146 mips_align (int to, int fill, symbolS *label)
11147 {
11148 mips_emit_delays ();
11149 frag_align (to, fill, 0);
11150 record_alignment (now_seg, to);
11151 if (label != NULL)
11152 {
11153 assert (S_GET_SEGMENT (label) == now_seg);
11154 symbol_set_frag (label, frag_now);
11155 S_SET_VALUE (label, (valueT) frag_now_fix ());
11156 }
11157 }
11158
11159 /* Align to a given power of two. .align 0 turns off the automatic
11160 alignment used by the data creating pseudo-ops. */
11161
11162 static void
11163 s_align (int x ATTRIBUTE_UNUSED)
11164 {
11165 register int temp;
11166 register long temp_fill;
11167 long max_alignment = 15;
11168
11169 /*
11170
11171 o Note that the assembler pulls down any immediately preceding label
11172 to the aligned address.
11173 o It's not documented but auto alignment is reinstated by
11174 a .align pseudo instruction.
11175 o Note also that after auto alignment is turned off the mips assembler
11176 issues an error on attempt to assemble an improperly aligned data item.
11177 We don't.
11178
11179 */
11180
11181 temp = get_absolute_expression ();
11182 if (temp > max_alignment)
11183 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
11184 else if (temp < 0)
11185 {
11186 as_warn (_("Alignment negative: 0 assumed."));
11187 temp = 0;
11188 }
11189 if (*input_line_pointer == ',')
11190 {
11191 ++input_line_pointer;
11192 temp_fill = get_absolute_expression ();
11193 }
11194 else
11195 temp_fill = 0;
11196 if (temp)
11197 {
11198 auto_align = 1;
11199 mips_align (temp, (int) temp_fill,
11200 insn_labels != NULL ? insn_labels->label : NULL);
11201 }
11202 else
11203 {
11204 auto_align = 0;
11205 }
11206
11207 demand_empty_rest_of_line ();
11208 }
11209
11210 static void
11211 s_change_sec (int sec)
11212 {
11213 segT seg;
11214
11215 #ifdef OBJ_ELF
11216 /* The ELF backend needs to know that we are changing sections, so
11217 that .previous works correctly. We could do something like check
11218 for an obj_section_change_hook macro, but that might be confusing
11219 as it would not be appropriate to use it in the section changing
11220 functions in read.c, since obj-elf.c intercepts those. FIXME:
11221 This should be cleaner, somehow. */
11222 obj_elf_section_change_hook ();
11223 #endif
11224
11225 mips_emit_delays ();
11226 switch (sec)
11227 {
11228 case 't':
11229 s_text (0);
11230 break;
11231 case 'd':
11232 s_data (0);
11233 break;
11234 case 'b':
11235 subseg_set (bss_section, (subsegT) get_absolute_expression ());
11236 demand_empty_rest_of_line ();
11237 break;
11238
11239 case 'r':
11240 seg = subseg_new (RDATA_SECTION_NAME,
11241 (subsegT) get_absolute_expression ());
11242 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11243 {
11244 bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD
11245 | SEC_READONLY | SEC_RELOC
11246 | SEC_DATA));
11247 if (strcmp (TARGET_OS, "elf") != 0)
11248 record_alignment (seg, 4);
11249 }
11250 demand_empty_rest_of_line ();
11251 break;
11252
11253 case 's':
11254 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
11255 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11256 {
11257 bfd_set_section_flags (stdoutput, seg,
11258 SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA);
11259 if (strcmp (TARGET_OS, "elf") != 0)
11260 record_alignment (seg, 4);
11261 }
11262 demand_empty_rest_of_line ();
11263 break;
11264 }
11265
11266 auto_align = 1;
11267 }
11268
11269 void
11270 s_change_section (int ignore ATTRIBUTE_UNUSED)
11271 {
11272 #ifdef OBJ_ELF
11273 char *section_name;
11274 char c;
11275 char next_c = 0;
11276 int section_type;
11277 int section_flag;
11278 int section_entry_size;
11279 int section_alignment;
11280
11281 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
11282 return;
11283
11284 section_name = input_line_pointer;
11285 c = get_symbol_end ();
11286 if (c)
11287 next_c = *(input_line_pointer + 1);
11288
11289 /* Do we have .section Name<,"flags">? */
11290 if (c != ',' || (c == ',' && next_c == '"'))
11291 {
11292 /* just after name is now '\0'. */
11293 *input_line_pointer = c;
11294 input_line_pointer = section_name;
11295 obj_elf_section (ignore);
11296 return;
11297 }
11298 input_line_pointer++;
11299
11300 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
11301 if (c == ',')
11302 section_type = get_absolute_expression ();
11303 else
11304 section_type = 0;
11305 if (*input_line_pointer++ == ',')
11306 section_flag = get_absolute_expression ();
11307 else
11308 section_flag = 0;
11309 if (*input_line_pointer++ == ',')
11310 section_entry_size = get_absolute_expression ();
11311 else
11312 section_entry_size = 0;
11313 if (*input_line_pointer++ == ',')
11314 section_alignment = get_absolute_expression ();
11315 else
11316 section_alignment = 0;
11317
11318 section_name = xstrdup (section_name);
11319
11320 /* When using the generic form of .section (as implemented by obj-elf.c),
11321 there's no way to set the section type to SHT_MIPS_DWARF. Users have
11322 traditionally had to fall back on the more common @progbits instead.
11323
11324 There's nothing really harmful in this, since bfd will correct
11325 SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it
11326 means that, for backwards compatibiltiy, the special_section entries
11327 for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF.
11328
11329 Even so, we shouldn't force users of the MIPS .section syntax to
11330 incorrectly label the sections as SHT_PROGBITS. The best compromise
11331 seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the
11332 generic type-checking code. */
11333 if (section_type == SHT_MIPS_DWARF)
11334 section_type = SHT_PROGBITS;
11335
11336 obj_elf_change_section (section_name, section_type, section_flag,
11337 section_entry_size, 0, 0, 0);
11338
11339 if (now_seg->name != section_name)
11340 free (section_name);
11341 #endif /* OBJ_ELF */
11342 }
11343
11344 void
11345 mips_enable_auto_align (void)
11346 {
11347 auto_align = 1;
11348 }
11349
11350 static void
11351 s_cons (int log_size)
11352 {
11353 symbolS *label;
11354
11355 label = insn_labels != NULL ? insn_labels->label : NULL;
11356 mips_emit_delays ();
11357 if (log_size > 0 && auto_align)
11358 mips_align (log_size, 0, label);
11359 mips_clear_insn_labels ();
11360 cons (1 << log_size);
11361 }
11362
11363 static void
11364 s_float_cons (int type)
11365 {
11366 symbolS *label;
11367
11368 label = insn_labels != NULL ? insn_labels->label : NULL;
11369
11370 mips_emit_delays ();
11371
11372 if (auto_align)
11373 {
11374 if (type == 'd')
11375 mips_align (3, 0, label);
11376 else
11377 mips_align (2, 0, label);
11378 }
11379
11380 mips_clear_insn_labels ();
11381
11382 float_cons (type);
11383 }
11384
11385 /* Handle .globl. We need to override it because on Irix 5 you are
11386 permitted to say
11387 .globl foo .text
11388 where foo is an undefined symbol, to mean that foo should be
11389 considered to be the address of a function. */
11390
11391 static void
11392 s_mips_globl (int x ATTRIBUTE_UNUSED)
11393 {
11394 char *name;
11395 int c;
11396 symbolS *symbolP;
11397 flagword flag;
11398
11399 name = input_line_pointer;
11400 c = get_symbol_end ();
11401 symbolP = symbol_find_or_make (name);
11402 *input_line_pointer = c;
11403 SKIP_WHITESPACE ();
11404
11405 /* On Irix 5, every global symbol that is not explicitly labelled as
11406 being a function is apparently labelled as being an object. */
11407 flag = BSF_OBJECT;
11408
11409 if (! is_end_of_line[(unsigned char) *input_line_pointer])
11410 {
11411 char *secname;
11412 asection *sec;
11413
11414 secname = input_line_pointer;
11415 c = get_symbol_end ();
11416 sec = bfd_get_section_by_name (stdoutput, secname);
11417 if (sec == NULL)
11418 as_bad (_("%s: no such section"), secname);
11419 *input_line_pointer = c;
11420
11421 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
11422 flag = BSF_FUNCTION;
11423 }
11424
11425 symbol_get_bfdsym (symbolP)->flags |= flag;
11426
11427 S_SET_EXTERNAL (symbolP);
11428 demand_empty_rest_of_line ();
11429 }
11430
11431 static void
11432 s_option (int x ATTRIBUTE_UNUSED)
11433 {
11434 char *opt;
11435 char c;
11436
11437 opt = input_line_pointer;
11438 c = get_symbol_end ();
11439
11440 if (*opt == 'O')
11441 {
11442 /* FIXME: What does this mean? */
11443 }
11444 else if (strncmp (opt, "pic", 3) == 0)
11445 {
11446 int i;
11447
11448 i = atoi (opt + 3);
11449 if (i == 0)
11450 mips_pic = NO_PIC;
11451 else if (i == 2)
11452 {
11453 mips_pic = SVR4_PIC;
11454 mips_abicalls = TRUE;
11455 }
11456 else
11457 as_bad (_(".option pic%d not supported"), i);
11458
11459 if (mips_pic == SVR4_PIC)
11460 {
11461 if (g_switch_seen && g_switch_value != 0)
11462 as_warn (_("-G may not be used with SVR4 PIC code"));
11463 g_switch_value = 0;
11464 bfd_set_gp_size (stdoutput, 0);
11465 }
11466 }
11467 else
11468 as_warn (_("Unrecognized option \"%s\""), opt);
11469
11470 *input_line_pointer = c;
11471 demand_empty_rest_of_line ();
11472 }
11473
11474 /* This structure is used to hold a stack of .set values. */
11475
11476 struct mips_option_stack
11477 {
11478 struct mips_option_stack *next;
11479 struct mips_set_options options;
11480 };
11481
11482 static struct mips_option_stack *mips_opts_stack;
11483
11484 /* Handle the .set pseudo-op. */
11485
11486 static void
11487 s_mipsset (int x ATTRIBUTE_UNUSED)
11488 {
11489 char *name = input_line_pointer, ch;
11490
11491 while (!is_end_of_line[(unsigned char) *input_line_pointer])
11492 ++input_line_pointer;
11493 ch = *input_line_pointer;
11494 *input_line_pointer = '\0';
11495
11496 if (strcmp (name, "reorder") == 0)
11497 {
11498 if (mips_opts.noreorder)
11499 end_noreorder ();
11500 }
11501 else if (strcmp (name, "noreorder") == 0)
11502 {
11503 if (!mips_opts.noreorder)
11504 start_noreorder ();
11505 }
11506 else if (strcmp (name, "at") == 0)
11507 {
11508 mips_opts.noat = 0;
11509 }
11510 else if (strcmp (name, "noat") == 0)
11511 {
11512 mips_opts.noat = 1;
11513 }
11514 else if (strcmp (name, "macro") == 0)
11515 {
11516 mips_opts.warn_about_macros = 0;
11517 }
11518 else if (strcmp (name, "nomacro") == 0)
11519 {
11520 if (mips_opts.noreorder == 0)
11521 as_bad (_("`noreorder' must be set before `nomacro'"));
11522 mips_opts.warn_about_macros = 1;
11523 }
11524 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
11525 {
11526 mips_opts.nomove = 0;
11527 }
11528 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
11529 {
11530 mips_opts.nomove = 1;
11531 }
11532 else if (strcmp (name, "bopt") == 0)
11533 {
11534 mips_opts.nobopt = 0;
11535 }
11536 else if (strcmp (name, "nobopt") == 0)
11537 {
11538 mips_opts.nobopt = 1;
11539 }
11540 else if (strcmp (name, "mips16") == 0
11541 || strcmp (name, "MIPS-16") == 0)
11542 mips_opts.mips16 = 1;
11543 else if (strcmp (name, "nomips16") == 0
11544 || strcmp (name, "noMIPS-16") == 0)
11545 mips_opts.mips16 = 0;
11546 else if (strcmp (name, "mips3d") == 0)
11547 mips_opts.ase_mips3d = 1;
11548 else if (strcmp (name, "nomips3d") == 0)
11549 mips_opts.ase_mips3d = 0;
11550 else if (strcmp (name, "mdmx") == 0)
11551 mips_opts.ase_mdmx = 1;
11552 else if (strcmp (name, "nomdmx") == 0)
11553 mips_opts.ase_mdmx = 0;
11554 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
11555 {
11556 int reset = 0;
11557
11558 /* Permit the user to change the ISA and architecture on the fly.
11559 Needless to say, misuse can cause serious problems. */
11560 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
11561 {
11562 reset = 1;
11563 mips_opts.isa = file_mips_isa;
11564 mips_opts.arch = file_mips_arch;
11565 }
11566 else if (strncmp (name, "arch=", 5) == 0)
11567 {
11568 const struct mips_cpu_info *p;
11569
11570 p = mips_parse_cpu("internal use", name + 5);
11571 if (!p)
11572 as_bad (_("unknown architecture %s"), name + 5);
11573 else
11574 {
11575 mips_opts.arch = p->cpu;
11576 mips_opts.isa = p->isa;
11577 }
11578 }
11579 else if (strncmp (name, "mips", 4) == 0)
11580 {
11581 const struct mips_cpu_info *p;
11582
11583 p = mips_parse_cpu("internal use", name);
11584 if (!p)
11585 as_bad (_("unknown ISA level %s"), name + 4);
11586 else
11587 {
11588 mips_opts.arch = p->cpu;
11589 mips_opts.isa = p->isa;
11590 }
11591 }
11592 else
11593 as_bad (_("unknown ISA or architecture %s"), name);
11594
11595 switch (mips_opts.isa)
11596 {
11597 case 0:
11598 break;
11599 case ISA_MIPS1:
11600 case ISA_MIPS2:
11601 case ISA_MIPS32:
11602 case ISA_MIPS32R2:
11603 mips_opts.gp32 = 1;
11604 mips_opts.fp32 = 1;
11605 break;
11606 case ISA_MIPS3:
11607 case ISA_MIPS4:
11608 case ISA_MIPS5:
11609 case ISA_MIPS64:
11610 case ISA_MIPS64R2:
11611 mips_opts.gp32 = 0;
11612 mips_opts.fp32 = 0;
11613 break;
11614 default:
11615 as_bad (_("unknown ISA level %s"), name + 4);
11616 break;
11617 }
11618 if (reset)
11619 {
11620 mips_opts.gp32 = file_mips_gp32;
11621 mips_opts.fp32 = file_mips_fp32;
11622 }
11623 }
11624 else if (strcmp (name, "autoextend") == 0)
11625 mips_opts.noautoextend = 0;
11626 else if (strcmp (name, "noautoextend") == 0)
11627 mips_opts.noautoextend = 1;
11628 else if (strcmp (name, "push") == 0)
11629 {
11630 struct mips_option_stack *s;
11631
11632 s = (struct mips_option_stack *) xmalloc (sizeof *s);
11633 s->next = mips_opts_stack;
11634 s->options = mips_opts;
11635 mips_opts_stack = s;
11636 }
11637 else if (strcmp (name, "pop") == 0)
11638 {
11639 struct mips_option_stack *s;
11640
11641 s = mips_opts_stack;
11642 if (s == NULL)
11643 as_bad (_(".set pop with no .set push"));
11644 else
11645 {
11646 /* If we're changing the reorder mode we need to handle
11647 delay slots correctly. */
11648 if (s->options.noreorder && ! mips_opts.noreorder)
11649 start_noreorder ();
11650 else if (! s->options.noreorder && mips_opts.noreorder)
11651 end_noreorder ();
11652
11653 mips_opts = s->options;
11654 mips_opts_stack = s->next;
11655 free (s);
11656 }
11657 }
11658 else if (strcmp (name, "sym32") == 0)
11659 mips_opts.sym32 = TRUE;
11660 else if (strcmp (name, "nosym32") == 0)
11661 mips_opts.sym32 = FALSE;
11662 else
11663 {
11664 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
11665 }
11666 *input_line_pointer = ch;
11667 demand_empty_rest_of_line ();
11668 }
11669
11670 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
11671 .option pic2. It means to generate SVR4 PIC calls. */
11672
11673 static void
11674 s_abicalls (int ignore ATTRIBUTE_UNUSED)
11675 {
11676 mips_pic = SVR4_PIC;
11677 mips_abicalls = TRUE;
11678
11679 if (g_switch_seen && g_switch_value != 0)
11680 as_warn (_("-G may not be used with SVR4 PIC code"));
11681 g_switch_value = 0;
11682
11683 bfd_set_gp_size (stdoutput, 0);
11684 demand_empty_rest_of_line ();
11685 }
11686
11687 /* Handle the .cpload pseudo-op. This is used when generating SVR4
11688 PIC code. It sets the $gp register for the function based on the
11689 function address, which is in the register named in the argument.
11690 This uses a relocation against _gp_disp, which is handled specially
11691 by the linker. The result is:
11692 lui $gp,%hi(_gp_disp)
11693 addiu $gp,$gp,%lo(_gp_disp)
11694 addu $gp,$gp,.cpload argument
11695 The .cpload argument is normally $25 == $t9.
11696
11697 The -mno-shared option changes this to:
11698 lui $gp,%hi(__gnu_local_gp)
11699 addiu $gp,$gp,%lo(__gnu_local_gp)
11700 and the argument is ignored. This saves an instruction, but the
11701 resulting code is not position independent; it uses an absolute
11702 address for __gnu_local_gp. Thus code assembled with -mno-shared
11703 can go into an ordinary executable, but not into a shared library. */
11704
11705 static void
11706 s_cpload (int ignore ATTRIBUTE_UNUSED)
11707 {
11708 expressionS ex;
11709 int reg;
11710 int in_shared;
11711
11712 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
11713 .cpload is ignored. */
11714 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
11715 {
11716 s_ignore (0);
11717 return;
11718 }
11719
11720 /* .cpload should be in a .set noreorder section. */
11721 if (mips_opts.noreorder == 0)
11722 as_warn (_(".cpload not in noreorder section"));
11723
11724 reg = tc_get_register (0);
11725
11726 /* If we need to produce a 64-bit address, we are better off using
11727 the default instruction sequence. */
11728 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
11729
11730 ex.X_op = O_symbol;
11731 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
11732 "__gnu_local_gp");
11733 ex.X_op_symbol = NULL;
11734 ex.X_add_number = 0;
11735
11736 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
11737 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
11738
11739 macro_start ();
11740 macro_build_lui (&ex, mips_gp_register);
11741 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
11742 mips_gp_register, BFD_RELOC_LO16);
11743 if (in_shared)
11744 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
11745 mips_gp_register, reg);
11746 macro_end ();
11747
11748 demand_empty_rest_of_line ();
11749 }
11750
11751 /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
11752 .cpsetup $reg1, offset|$reg2, label
11753
11754 If offset is given, this results in:
11755 sd $gp, offset($sp)
11756 lui $gp, %hi(%neg(%gp_rel(label)))
11757 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11758 daddu $gp, $gp, $reg1
11759
11760 If $reg2 is given, this results in:
11761 daddu $reg2, $gp, $0
11762 lui $gp, %hi(%neg(%gp_rel(label)))
11763 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11764 daddu $gp, $gp, $reg1
11765 $reg1 is normally $25 == $t9.
11766
11767 The -mno-shared option replaces the last three instructions with
11768 lui $gp,%hi(_gp)
11769 addiu $gp,$gp,%lo(_gp)
11770 */
11771
11772 static void
11773 s_cpsetup (int ignore ATTRIBUTE_UNUSED)
11774 {
11775 expressionS ex_off;
11776 expressionS ex_sym;
11777 int reg1;
11778
11779 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
11780 We also need NewABI support. */
11781 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11782 {
11783 s_ignore (0);
11784 return;
11785 }
11786
11787 reg1 = tc_get_register (0);
11788 SKIP_WHITESPACE ();
11789 if (*input_line_pointer != ',')
11790 {
11791 as_bad (_("missing argument separator ',' for .cpsetup"));
11792 return;
11793 }
11794 else
11795 ++input_line_pointer;
11796 SKIP_WHITESPACE ();
11797 if (*input_line_pointer == '$')
11798 {
11799 mips_cpreturn_register = tc_get_register (0);
11800 mips_cpreturn_offset = -1;
11801 }
11802 else
11803 {
11804 mips_cpreturn_offset = get_absolute_expression ();
11805 mips_cpreturn_register = -1;
11806 }
11807 SKIP_WHITESPACE ();
11808 if (*input_line_pointer != ',')
11809 {
11810 as_bad (_("missing argument separator ',' for .cpsetup"));
11811 return;
11812 }
11813 else
11814 ++input_line_pointer;
11815 SKIP_WHITESPACE ();
11816 expression (&ex_sym);
11817
11818 macro_start ();
11819 if (mips_cpreturn_register == -1)
11820 {
11821 ex_off.X_op = O_constant;
11822 ex_off.X_add_symbol = NULL;
11823 ex_off.X_op_symbol = NULL;
11824 ex_off.X_add_number = mips_cpreturn_offset;
11825
11826 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
11827 BFD_RELOC_LO16, SP);
11828 }
11829 else
11830 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
11831 mips_gp_register, 0);
11832
11833 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
11834 {
11835 macro_build (&ex_sym, "lui", "t,u", mips_gp_register,
11836 -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB,
11837 BFD_RELOC_HI16_S);
11838
11839 macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register,
11840 mips_gp_register, -1, BFD_RELOC_GPREL16,
11841 BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16);
11842
11843 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register,
11844 mips_gp_register, reg1);
11845 }
11846 else
11847 {
11848 expressionS ex;
11849
11850 ex.X_op = O_symbol;
11851 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
11852 ex.X_op_symbol = NULL;
11853 ex.X_add_number = 0;
11854
11855 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
11856 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
11857
11858 macro_build_lui (&ex, mips_gp_register);
11859 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
11860 mips_gp_register, BFD_RELOC_LO16);
11861 }
11862
11863 macro_end ();
11864
11865 demand_empty_rest_of_line ();
11866 }
11867
11868 static void
11869 s_cplocal (int ignore ATTRIBUTE_UNUSED)
11870 {
11871 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
11872 .cplocal is ignored. */
11873 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11874 {
11875 s_ignore (0);
11876 return;
11877 }
11878
11879 mips_gp_register = tc_get_register (0);
11880 demand_empty_rest_of_line ();
11881 }
11882
11883 /* Handle the .cprestore pseudo-op. This stores $gp into a given
11884 offset from $sp. The offset is remembered, and after making a PIC
11885 call $gp is restored from that location. */
11886
11887 static void
11888 s_cprestore (int ignore ATTRIBUTE_UNUSED)
11889 {
11890 expressionS ex;
11891
11892 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
11893 .cprestore is ignored. */
11894 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
11895 {
11896 s_ignore (0);
11897 return;
11898 }
11899
11900 mips_cprestore_offset = get_absolute_expression ();
11901 mips_cprestore_valid = 1;
11902
11903 ex.X_op = O_constant;
11904 ex.X_add_symbol = NULL;
11905 ex.X_op_symbol = NULL;
11906 ex.X_add_number = mips_cprestore_offset;
11907
11908 macro_start ();
11909 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
11910 SP, HAVE_64BIT_ADDRESSES);
11911 macro_end ();
11912
11913 demand_empty_rest_of_line ();
11914 }
11915
11916 /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
11917 was given in the preceding .cpsetup, it results in:
11918 ld $gp, offset($sp)
11919
11920 If a register $reg2 was given there, it results in:
11921 daddu $gp, $reg2, $0
11922 */
11923 static void
11924 s_cpreturn (int ignore ATTRIBUTE_UNUSED)
11925 {
11926 expressionS ex;
11927
11928 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
11929 We also need NewABI support. */
11930 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11931 {
11932 s_ignore (0);
11933 return;
11934 }
11935
11936 macro_start ();
11937 if (mips_cpreturn_register == -1)
11938 {
11939 ex.X_op = O_constant;
11940 ex.X_add_symbol = NULL;
11941 ex.X_op_symbol = NULL;
11942 ex.X_add_number = mips_cpreturn_offset;
11943
11944 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
11945 }
11946 else
11947 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
11948 mips_cpreturn_register, 0);
11949 macro_end ();
11950
11951 demand_empty_rest_of_line ();
11952 }
11953
11954 /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
11955 code. It sets the offset to use in gp_rel relocations. */
11956
11957 static void
11958 s_gpvalue (int ignore ATTRIBUTE_UNUSED)
11959 {
11960 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
11961 We also need NewABI support. */
11962 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11963 {
11964 s_ignore (0);
11965 return;
11966 }
11967
11968 mips_gprel_offset = get_absolute_expression ();
11969
11970 demand_empty_rest_of_line ();
11971 }
11972
11973 /* Handle the .gpword pseudo-op. This is used when generating PIC
11974 code. It generates a 32 bit GP relative reloc. */
11975
11976 static void
11977 s_gpword (int ignore ATTRIBUTE_UNUSED)
11978 {
11979 symbolS *label;
11980 expressionS ex;
11981 char *p;
11982
11983 /* When not generating PIC code, this is treated as .word. */
11984 if (mips_pic != SVR4_PIC)
11985 {
11986 s_cons (2);
11987 return;
11988 }
11989
11990 label = insn_labels != NULL ? insn_labels->label : NULL;
11991 mips_emit_delays ();
11992 if (auto_align)
11993 mips_align (2, 0, label);
11994 mips_clear_insn_labels ();
11995
11996 expression (&ex);
11997
11998 if (ex.X_op != O_symbol || ex.X_add_number != 0)
11999 {
12000 as_bad (_("Unsupported use of .gpword"));
12001 ignore_rest_of_line ();
12002 }
12003
12004 p = frag_more (4);
12005 md_number_to_chars (p, 0, 4);
12006 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
12007 BFD_RELOC_GPREL32);
12008
12009 demand_empty_rest_of_line ();
12010 }
12011
12012 static void
12013 s_gpdword (int ignore ATTRIBUTE_UNUSED)
12014 {
12015 symbolS *label;
12016 expressionS ex;
12017 char *p;
12018
12019 /* When not generating PIC code, this is treated as .dword. */
12020 if (mips_pic != SVR4_PIC)
12021 {
12022 s_cons (3);
12023 return;
12024 }
12025
12026 label = insn_labels != NULL ? insn_labels->label : NULL;
12027 mips_emit_delays ();
12028 if (auto_align)
12029 mips_align (3, 0, label);
12030 mips_clear_insn_labels ();
12031
12032 expression (&ex);
12033
12034 if (ex.X_op != O_symbol || ex.X_add_number != 0)
12035 {
12036 as_bad (_("Unsupported use of .gpdword"));
12037 ignore_rest_of_line ();
12038 }
12039
12040 p = frag_more (8);
12041 md_number_to_chars (p, 0, 8);
12042 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
12043 BFD_RELOC_GPREL32)->fx_tcbit = 1;
12044
12045 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
12046 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
12047 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
12048
12049 demand_empty_rest_of_line ();
12050 }
12051
12052 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
12053 tables in SVR4 PIC code. */
12054
12055 static void
12056 s_cpadd (int ignore ATTRIBUTE_UNUSED)
12057 {
12058 int reg;
12059
12060 /* This is ignored when not generating SVR4 PIC code. */
12061 if (mips_pic != SVR4_PIC)
12062 {
12063 s_ignore (0);
12064 return;
12065 }
12066
12067 /* Add $gp to the register named as an argument. */
12068 macro_start ();
12069 reg = tc_get_register (0);
12070 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
12071 macro_end ();
12072
12073 demand_empty_rest_of_line ();
12074 }
12075
12076 /* Handle the .insn pseudo-op. This marks instruction labels in
12077 mips16 mode. This permits the linker to handle them specially,
12078 such as generating jalx instructions when needed. We also make
12079 them odd for the duration of the assembly, in order to generate the
12080 right sort of code. We will make them even in the adjust_symtab
12081 routine, while leaving them marked. This is convenient for the
12082 debugger and the disassembler. The linker knows to make them odd
12083 again. */
12084
12085 static void
12086 s_insn (int ignore ATTRIBUTE_UNUSED)
12087 {
12088 mips16_mark_labels ();
12089
12090 demand_empty_rest_of_line ();
12091 }
12092
12093 /* Handle a .stabn directive. We need these in order to mark a label
12094 as being a mips16 text label correctly. Sometimes the compiler
12095 will emit a label, followed by a .stabn, and then switch sections.
12096 If the label and .stabn are in mips16 mode, then the label is
12097 really a mips16 text label. */
12098
12099 static void
12100 s_mips_stab (int type)
12101 {
12102 if (type == 'n')
12103 mips16_mark_labels ();
12104
12105 s_stab (type);
12106 }
12107
12108 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.
12109 */
12110
12111 static void
12112 s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
12113 {
12114 char *name;
12115 int c;
12116 symbolS *symbolP;
12117 expressionS exp;
12118
12119 name = input_line_pointer;
12120 c = get_symbol_end ();
12121 symbolP = symbol_find_or_make (name);
12122 S_SET_WEAK (symbolP);
12123 *input_line_pointer = c;
12124
12125 SKIP_WHITESPACE ();
12126
12127 if (! is_end_of_line[(unsigned char) *input_line_pointer])
12128 {
12129 if (S_IS_DEFINED (symbolP))
12130 {
12131 as_bad ("ignoring attempt to redefine symbol %s",
12132 S_GET_NAME (symbolP));
12133 ignore_rest_of_line ();
12134 return;
12135 }
12136
12137 if (*input_line_pointer == ',')
12138 {
12139 ++input_line_pointer;
12140 SKIP_WHITESPACE ();
12141 }
12142
12143 expression (&exp);
12144 if (exp.X_op != O_symbol)
12145 {
12146 as_bad ("bad .weakext directive");
12147 ignore_rest_of_line ();
12148 return;
12149 }
12150 symbol_set_value_expression (symbolP, &exp);
12151 }
12152
12153 demand_empty_rest_of_line ();
12154 }
12155
12156 /* Parse a register string into a number. Called from the ECOFF code
12157 to parse .frame. The argument is non-zero if this is the frame
12158 register, so that we can record it in mips_frame_reg. */
12159
12160 int
12161 tc_get_register (int frame)
12162 {
12163 int reg;
12164
12165 SKIP_WHITESPACE ();
12166 if (*input_line_pointer++ != '$')
12167 {
12168 as_warn (_("expected `$'"));
12169 reg = ZERO;
12170 }
12171 else if (ISDIGIT (*input_line_pointer))
12172 {
12173 reg = get_absolute_expression ();
12174 if (reg < 0 || reg >= 32)
12175 {
12176 as_warn (_("Bad register number"));
12177 reg = ZERO;
12178 }
12179 }
12180 else
12181 {
12182 if (strncmp (input_line_pointer, "ra", 2) == 0)
12183 {
12184 reg = RA;
12185 input_line_pointer += 2;
12186 }
12187 else if (strncmp (input_line_pointer, "fp", 2) == 0)
12188 {
12189 reg = FP;
12190 input_line_pointer += 2;
12191 }
12192 else if (strncmp (input_line_pointer, "sp", 2) == 0)
12193 {
12194 reg = SP;
12195 input_line_pointer += 2;
12196 }
12197 else if (strncmp (input_line_pointer, "gp", 2) == 0)
12198 {
12199 reg = GP;
12200 input_line_pointer += 2;
12201 }
12202 else if (strncmp (input_line_pointer, "at", 2) == 0)
12203 {
12204 reg = AT;
12205 input_line_pointer += 2;
12206 }
12207 else if (strncmp (input_line_pointer, "kt0", 3) == 0)
12208 {
12209 reg = KT0;
12210 input_line_pointer += 3;
12211 }
12212 else if (strncmp (input_line_pointer, "kt1", 3) == 0)
12213 {
12214 reg = KT1;
12215 input_line_pointer += 3;
12216 }
12217 else if (strncmp (input_line_pointer, "zero", 4) == 0)
12218 {
12219 reg = ZERO;
12220 input_line_pointer += 4;
12221 }
12222 else
12223 {
12224 as_warn (_("Unrecognized register name"));
12225 reg = ZERO;
12226 while (ISALNUM(*input_line_pointer))
12227 input_line_pointer++;
12228 }
12229 }
12230 if (frame)
12231 {
12232 mips_frame_reg = reg != 0 ? reg : SP;
12233 mips_frame_reg_valid = 1;
12234 mips_cprestore_valid = 0;
12235 }
12236 return reg;
12237 }
12238
12239 valueT
12240 md_section_align (asection *seg, valueT addr)
12241 {
12242 int align = bfd_get_section_alignment (stdoutput, seg);
12243
12244 #ifdef OBJ_ELF
12245 /* We don't need to align ELF sections to the full alignment.
12246 However, Irix 5 may prefer that we align them at least to a 16
12247 byte boundary. We don't bother to align the sections if we are
12248 targeted for an embedded system. */
12249 if (strcmp (TARGET_OS, "elf") == 0)
12250 return addr;
12251 if (align > 4)
12252 align = 4;
12253 #endif
12254
12255 return ((addr + (1 << align) - 1) & (-1 << align));
12256 }
12257
12258 /* Utility routine, called from above as well. If called while the
12259 input file is still being read, it's only an approximation. (For
12260 example, a symbol may later become defined which appeared to be
12261 undefined earlier.) */
12262
12263 static int
12264 nopic_need_relax (symbolS *sym, int before_relaxing)
12265 {
12266 if (sym == 0)
12267 return 0;
12268
12269 if (g_switch_value > 0)
12270 {
12271 const char *symname;
12272 int change;
12273
12274 /* Find out whether this symbol can be referenced off the $gp
12275 register. It can be if it is smaller than the -G size or if
12276 it is in the .sdata or .sbss section. Certain symbols can
12277 not be referenced off the $gp, although it appears as though
12278 they can. */
12279 symname = S_GET_NAME (sym);
12280 if (symname != (const char *) NULL
12281 && (strcmp (symname, "eprol") == 0
12282 || strcmp (symname, "etext") == 0
12283 || strcmp (symname, "_gp") == 0
12284 || strcmp (symname, "edata") == 0
12285 || strcmp (symname, "_fbss") == 0
12286 || strcmp (symname, "_fdata") == 0
12287 || strcmp (symname, "_ftext") == 0
12288 || strcmp (symname, "end") == 0
12289 || strcmp (symname, "_gp_disp") == 0))
12290 change = 1;
12291 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
12292 && (0
12293 #ifndef NO_ECOFF_DEBUGGING
12294 || (symbol_get_obj (sym)->ecoff_extern_size != 0
12295 && (symbol_get_obj (sym)->ecoff_extern_size
12296 <= g_switch_value))
12297 #endif
12298 /* We must defer this decision until after the whole
12299 file has been read, since there might be a .extern
12300 after the first use of this symbol. */
12301 || (before_relaxing
12302 #ifndef NO_ECOFF_DEBUGGING
12303 && symbol_get_obj (sym)->ecoff_extern_size == 0
12304 #endif
12305 && S_GET_VALUE (sym) == 0)
12306 || (S_GET_VALUE (sym) != 0
12307 && S_GET_VALUE (sym) <= g_switch_value)))
12308 change = 0;
12309 else
12310 {
12311 const char *segname;
12312
12313 segname = segment_name (S_GET_SEGMENT (sym));
12314 assert (strcmp (segname, ".lit8") != 0
12315 && strcmp (segname, ".lit4") != 0);
12316 change = (strcmp (segname, ".sdata") != 0
12317 && strcmp (segname, ".sbss") != 0
12318 && strncmp (segname, ".sdata.", 7) != 0
12319 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
12320 }
12321 return change;
12322 }
12323 else
12324 /* We are not optimizing for the $gp register. */
12325 return 1;
12326 }
12327
12328
12329 /* Return true if the given symbol should be considered local for SVR4 PIC. */
12330
12331 static bfd_boolean
12332 pic_need_relax (symbolS *sym, asection *segtype)
12333 {
12334 asection *symsec;
12335 bfd_boolean linkonce;
12336
12337 /* Handle the case of a symbol equated to another symbol. */
12338 while (symbol_equated_reloc_p (sym))
12339 {
12340 symbolS *n;
12341
12342 /* It's possible to get a loop here in a badly written
12343 program. */
12344 n = symbol_get_value_expression (sym)->X_add_symbol;
12345 if (n == sym)
12346 break;
12347 sym = n;
12348 }
12349
12350 symsec = S_GET_SEGMENT (sym);
12351
12352 /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */
12353 linkonce = FALSE;
12354 if (symsec != segtype && ! S_IS_LOCAL (sym))
12355 {
12356 if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
12357 != 0)
12358 linkonce = TRUE;
12359
12360 /* The GNU toolchain uses an extension for ELF: a section
12361 beginning with the magic string .gnu.linkonce is a linkonce
12362 section. */
12363 if (strncmp (segment_name (symsec), ".gnu.linkonce",
12364 sizeof ".gnu.linkonce" - 1) == 0)
12365 linkonce = TRUE;
12366 }
12367
12368 /* This must duplicate the test in adjust_reloc_syms. */
12369 return (symsec != &bfd_und_section
12370 && symsec != &bfd_abs_section
12371 && ! bfd_is_com_section (symsec)
12372 && !linkonce
12373 #ifdef OBJ_ELF
12374 /* A global or weak symbol is treated as external. */
12375 && (OUTPUT_FLAVOR != bfd_target_elf_flavour
12376 || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
12377 #endif
12378 );
12379 }
12380
12381
12382 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
12383 extended opcode. SEC is the section the frag is in. */
12384
12385 static int
12386 mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
12387 {
12388 int type;
12389 register const struct mips16_immed_operand *op;
12390 offsetT val;
12391 int mintiny, maxtiny;
12392 segT symsec;
12393 fragS *sym_frag;
12394
12395 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
12396 return 0;
12397 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
12398 return 1;
12399
12400 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
12401 op = mips16_immed_operands;
12402 while (op->type != type)
12403 {
12404 ++op;
12405 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
12406 }
12407
12408 if (op->unsp)
12409 {
12410 if (type == '<' || type == '>' || type == '[' || type == ']')
12411 {
12412 mintiny = 1;
12413 maxtiny = 1 << op->nbits;
12414 }
12415 else
12416 {
12417 mintiny = 0;
12418 maxtiny = (1 << op->nbits) - 1;
12419 }
12420 }
12421 else
12422 {
12423 mintiny = - (1 << (op->nbits - 1));
12424 maxtiny = (1 << (op->nbits - 1)) - 1;
12425 }
12426
12427 sym_frag = symbol_get_frag (fragp->fr_symbol);
12428 val = S_GET_VALUE (fragp->fr_symbol);
12429 symsec = S_GET_SEGMENT (fragp->fr_symbol);
12430
12431 if (op->pcrel)
12432 {
12433 addressT addr;
12434
12435 /* We won't have the section when we are called from
12436 mips_relax_frag. However, we will always have been called
12437 from md_estimate_size_before_relax first. If this is a
12438 branch to a different section, we mark it as such. If SEC is
12439 NULL, and the frag is not marked, then it must be a branch to
12440 the same section. */
12441 if (sec == NULL)
12442 {
12443 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
12444 return 1;
12445 }
12446 else
12447 {
12448 /* Must have been called from md_estimate_size_before_relax. */
12449 if (symsec != sec)
12450 {
12451 fragp->fr_subtype =
12452 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12453
12454 /* FIXME: We should support this, and let the linker
12455 catch branches and loads that are out of range. */
12456 as_bad_where (fragp->fr_file, fragp->fr_line,
12457 _("unsupported PC relative reference to different section"));
12458
12459 return 1;
12460 }
12461 if (fragp != sym_frag && sym_frag->fr_address == 0)
12462 /* Assume non-extended on the first relaxation pass.
12463 The address we have calculated will be bogus if this is
12464 a forward branch to another frag, as the forward frag
12465 will have fr_address == 0. */
12466 return 0;
12467 }
12468
12469 /* In this case, we know for sure that the symbol fragment is in
12470 the same section. If the relax_marker of the symbol fragment
12471 differs from the relax_marker of this fragment, we have not
12472 yet adjusted the symbol fragment fr_address. We want to add
12473 in STRETCH in order to get a better estimate of the address.
12474 This particularly matters because of the shift bits. */
12475 if (stretch != 0
12476 && sym_frag->relax_marker != fragp->relax_marker)
12477 {
12478 fragS *f;
12479
12480 /* Adjust stretch for any alignment frag. Note that if have
12481 been expanding the earlier code, the symbol may be
12482 defined in what appears to be an earlier frag. FIXME:
12483 This doesn't handle the fr_subtype field, which specifies
12484 a maximum number of bytes to skip when doing an
12485 alignment. */
12486 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
12487 {
12488 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
12489 {
12490 if (stretch < 0)
12491 stretch = - ((- stretch)
12492 & ~ ((1 << (int) f->fr_offset) - 1));
12493 else
12494 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
12495 if (stretch == 0)
12496 break;
12497 }
12498 }
12499 if (f != NULL)
12500 val += stretch;
12501 }
12502
12503 addr = fragp->fr_address + fragp->fr_fix;
12504
12505 /* The base address rules are complicated. The base address of
12506 a branch is the following instruction. The base address of a
12507 PC relative load or add is the instruction itself, but if it
12508 is in a delay slot (in which case it can not be extended) use
12509 the address of the instruction whose delay slot it is in. */
12510 if (type == 'p' || type == 'q')
12511 {
12512 addr += 2;
12513
12514 /* If we are currently assuming that this frag should be
12515 extended, then, the current address is two bytes
12516 higher. */
12517 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12518 addr += 2;
12519
12520 /* Ignore the low bit in the target, since it will be set
12521 for a text label. */
12522 if ((val & 1) != 0)
12523 --val;
12524 }
12525 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
12526 addr -= 4;
12527 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
12528 addr -= 2;
12529
12530 val -= addr & ~ ((1 << op->shift) - 1);
12531
12532 /* Branch offsets have an implicit 0 in the lowest bit. */
12533 if (type == 'p' || type == 'q')
12534 val /= 2;
12535
12536 /* If any of the shifted bits are set, we must use an extended
12537 opcode. If the address depends on the size of this
12538 instruction, this can lead to a loop, so we arrange to always
12539 use an extended opcode. We only check this when we are in
12540 the main relaxation loop, when SEC is NULL. */
12541 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
12542 {
12543 fragp->fr_subtype =
12544 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12545 return 1;
12546 }
12547
12548 /* If we are about to mark a frag as extended because the value
12549 is precisely maxtiny + 1, then there is a chance of an
12550 infinite loop as in the following code:
12551 la $4,foo
12552 .skip 1020
12553 .align 2
12554 foo:
12555 In this case when the la is extended, foo is 0x3fc bytes
12556 away, so the la can be shrunk, but then foo is 0x400 away, so
12557 the la must be extended. To avoid this loop, we mark the
12558 frag as extended if it was small, and is about to become
12559 extended with a value of maxtiny + 1. */
12560 if (val == ((maxtiny + 1) << op->shift)
12561 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
12562 && sec == NULL)
12563 {
12564 fragp->fr_subtype =
12565 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12566 return 1;
12567 }
12568 }
12569 else if (symsec != absolute_section && sec != NULL)
12570 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
12571
12572 if ((val & ((1 << op->shift) - 1)) != 0
12573 || val < (mintiny << op->shift)
12574 || val > (maxtiny << op->shift))
12575 return 1;
12576 else
12577 return 0;
12578 }
12579
12580 /* Compute the length of a branch sequence, and adjust the
12581 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
12582 worst-case length is computed, with UPDATE being used to indicate
12583 whether an unconditional (-1), branch-likely (+1) or regular (0)
12584 branch is to be computed. */
12585 static int
12586 relaxed_branch_length (fragS *fragp, asection *sec, int update)
12587 {
12588 bfd_boolean toofar;
12589 int length;
12590
12591 if (fragp
12592 && S_IS_DEFINED (fragp->fr_symbol)
12593 && sec == S_GET_SEGMENT (fragp->fr_symbol))
12594 {
12595 addressT addr;
12596 offsetT val;
12597
12598 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
12599
12600 addr = fragp->fr_address + fragp->fr_fix + 4;
12601
12602 val -= addr;
12603
12604 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
12605 }
12606 else if (fragp)
12607 /* If the symbol is not defined or it's in a different segment,
12608 assume the user knows what's going on and emit a short
12609 branch. */
12610 toofar = FALSE;
12611 else
12612 toofar = TRUE;
12613
12614 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
12615 fragp->fr_subtype
12616 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype),
12617 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
12618 RELAX_BRANCH_LINK (fragp->fr_subtype),
12619 toofar);
12620
12621 length = 4;
12622 if (toofar)
12623 {
12624 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
12625 length += 8;
12626
12627 if (mips_pic != NO_PIC)
12628 {
12629 /* Additional space for PIC loading of target address. */
12630 length += 8;
12631 if (mips_opts.isa == ISA_MIPS1)
12632 /* Additional space for $at-stabilizing nop. */
12633 length += 4;
12634 }
12635
12636 /* If branch is conditional. */
12637 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
12638 length += 8;
12639 }
12640
12641 return length;
12642 }
12643
12644 /* Estimate the size of a frag before relaxing. Unless this is the
12645 mips16, we are not really relaxing here, and the final size is
12646 encoded in the subtype information. For the mips16, we have to
12647 decide whether we are using an extended opcode or not. */
12648
12649 int
12650 md_estimate_size_before_relax (fragS *fragp, asection *segtype)
12651 {
12652 int change;
12653
12654 if (RELAX_BRANCH_P (fragp->fr_subtype))
12655 {
12656
12657 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
12658
12659 return fragp->fr_var;
12660 }
12661
12662 if (RELAX_MIPS16_P (fragp->fr_subtype))
12663 /* We don't want to modify the EXTENDED bit here; it might get us
12664 into infinite loops. We change it only in mips_relax_frag(). */
12665 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
12666
12667 if (mips_pic == NO_PIC)
12668 change = nopic_need_relax (fragp->fr_symbol, 0);
12669 else if (mips_pic == SVR4_PIC)
12670 change = pic_need_relax (fragp->fr_symbol, segtype);
12671 else
12672 abort ();
12673
12674 if (change)
12675 {
12676 fragp->fr_subtype |= RELAX_USE_SECOND;
12677 return -RELAX_FIRST (fragp->fr_subtype);
12678 }
12679 else
12680 return -RELAX_SECOND (fragp->fr_subtype);
12681 }
12682
12683 /* This is called to see whether a reloc against a defined symbol
12684 should be converted into a reloc against a section. */
12685
12686 int
12687 mips_fix_adjustable (fixS *fixp)
12688 {
12689 /* Don't adjust MIPS16 jump relocations, so we don't have to worry
12690 about the format of the offset in the .o file. */
12691 if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)
12692 return 0;
12693
12694 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
12695 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
12696 return 0;
12697
12698 if (fixp->fx_addsy == NULL)
12699 return 1;
12700
12701 /* If symbol SYM is in a mergeable section, relocations of the form
12702 SYM + 0 can usually be made section-relative. The mergeable data
12703 is then identified by the section offset rather than by the symbol.
12704
12705 However, if we're generating REL LO16 relocations, the offset is split
12706 between the LO16 and parterning high part relocation. The linker will
12707 need to recalculate the complete offset in order to correctly identify
12708 the merge data.
12709
12710 The linker has traditionally not looked for the parterning high part
12711 relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be
12712 placed anywhere. Rather than break backwards compatibility by changing
12713 this, it seems better not to force the issue, and instead keep the
12714 original symbol. This will work with either linker behavior. */
12715 if ((fixp->fx_r_type == BFD_RELOC_LO16
12716 || fixp->fx_r_type == BFD_RELOC_MIPS16_LO16
12717 || reloc_needs_lo_p (fixp->fx_r_type))
12718 && HAVE_IN_PLACE_ADDENDS
12719 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
12720 return 0;
12721
12722 #ifdef OBJ_ELF
12723 /* Don't adjust relocations against mips16 symbols, so that the linker
12724 can find them if it needs to set up a stub. */
12725 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
12726 && S_GET_OTHER (fixp->fx_addsy) == STO_MIPS16
12727 && fixp->fx_subsy == NULL)
12728 return 0;
12729 #endif
12730
12731 return 1;
12732 }
12733
12734 /* Translate internal representation of relocation info to BFD target
12735 format. */
12736
12737 arelent **
12738 tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
12739 {
12740 static arelent *retval[4];
12741 arelent *reloc;
12742 bfd_reloc_code_real_type code;
12743
12744 memset (retval, 0, sizeof(retval));
12745 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
12746 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
12747 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
12748 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
12749
12750 assert (! fixp->fx_pcrel);
12751 reloc->addend = fixp->fx_addnumber;
12752
12753 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
12754 entry to be used in the relocation's section offset. */
12755 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
12756 {
12757 reloc->address = reloc->addend;
12758 reloc->addend = 0;
12759 }
12760
12761 code = fixp->fx_r_type;
12762
12763 /* To support a PC relative reloc, we used a Cygnus extension.
12764 We check for that here to make sure that we don't let such a
12765 reloc escape normally. (FIXME: This was formerly used by
12766 embedded-PIC support, but is now used by branch handling in
12767 general. That probably should be fixed.) */
12768 if ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
12769 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
12770 && code == BFD_RELOC_16_PCREL_S2)
12771 reloc->howto = NULL;
12772 else
12773 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
12774
12775 if (reloc->howto == NULL)
12776 {
12777 as_bad_where (fixp->fx_file, fixp->fx_line,
12778 _("Can not represent %s relocation in this object file format"),
12779 bfd_get_reloc_code_name (code));
12780 retval[0] = NULL;
12781 }
12782
12783 return retval;
12784 }
12785
12786 /* Relax a machine dependent frag. This returns the amount by which
12787 the current size of the frag should change. */
12788
12789 int
12790 mips_relax_frag (asection *sec, fragS *fragp, long stretch)
12791 {
12792 if (RELAX_BRANCH_P (fragp->fr_subtype))
12793 {
12794 offsetT old_var = fragp->fr_var;
12795
12796 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
12797
12798 return fragp->fr_var - old_var;
12799 }
12800
12801 if (! RELAX_MIPS16_P (fragp->fr_subtype))
12802 return 0;
12803
12804 if (mips16_extended_frag (fragp, NULL, stretch))
12805 {
12806 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12807 return 0;
12808 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
12809 return 2;
12810 }
12811 else
12812 {
12813 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12814 return 0;
12815 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
12816 return -2;
12817 }
12818
12819 return 0;
12820 }
12821
12822 /* Convert a machine dependent frag. */
12823
12824 void
12825 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
12826 {
12827 if (RELAX_BRANCH_P (fragp->fr_subtype))
12828 {
12829 bfd_byte *buf;
12830 unsigned long insn;
12831 expressionS exp;
12832 fixS *fixp;
12833
12834 buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
12835
12836 if (target_big_endian)
12837 insn = bfd_getb32 (buf);
12838 else
12839 insn = bfd_getl32 (buf);
12840
12841 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
12842 {
12843 /* We generate a fixup instead of applying it right now
12844 because, if there are linker relaxations, we're going to
12845 need the relocations. */
12846 exp.X_op = O_symbol;
12847 exp.X_add_symbol = fragp->fr_symbol;
12848 exp.X_add_number = fragp->fr_offset;
12849
12850 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
12851 4, &exp, 1,
12852 BFD_RELOC_16_PCREL_S2);
12853 fixp->fx_file = fragp->fr_file;
12854 fixp->fx_line = fragp->fr_line;
12855
12856 md_number_to_chars ((char *) buf, insn, 4);
12857 buf += 4;
12858 }
12859 else
12860 {
12861 int i;
12862
12863 as_warn_where (fragp->fr_file, fragp->fr_line,
12864 _("relaxed out-of-range branch into a jump"));
12865
12866 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
12867 goto uncond;
12868
12869 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
12870 {
12871 /* Reverse the branch. */
12872 switch ((insn >> 28) & 0xf)
12873 {
12874 case 4:
12875 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
12876 have the condition reversed by tweaking a single
12877 bit, and their opcodes all have 0x4???????. */
12878 assert ((insn & 0xf1000000) == 0x41000000);
12879 insn ^= 0x00010000;
12880 break;
12881
12882 case 0:
12883 /* bltz 0x04000000 bgez 0x04010000
12884 bltzal 0x04100000 bgezal 0x04110000 */
12885 assert ((insn & 0xfc0e0000) == 0x04000000);
12886 insn ^= 0x00010000;
12887 break;
12888
12889 case 1:
12890 /* beq 0x10000000 bne 0x14000000
12891 blez 0x18000000 bgtz 0x1c000000 */
12892 insn ^= 0x04000000;
12893 break;
12894
12895 default:
12896 abort ();
12897 }
12898 }
12899
12900 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
12901 {
12902 /* Clear the and-link bit. */
12903 assert ((insn & 0xfc1c0000) == 0x04100000);
12904
12905 /* bltzal 0x04100000 bgezal 0x04110000
12906 bltzall 0x04120000 bgezall 0x04130000 */
12907 insn &= ~0x00100000;
12908 }
12909
12910 /* Branch over the branch (if the branch was likely) or the
12911 full jump (not likely case). Compute the offset from the
12912 current instruction to branch to. */
12913 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
12914 i = 16;
12915 else
12916 {
12917 /* How many bytes in instructions we've already emitted? */
12918 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
12919 /* How many bytes in instructions from here to the end? */
12920 i = fragp->fr_var - i;
12921 }
12922 /* Convert to instruction count. */
12923 i >>= 2;
12924 /* Branch counts from the next instruction. */
12925 i--;
12926 insn |= i;
12927 /* Branch over the jump. */
12928 md_number_to_chars ((char *) buf, insn, 4);
12929 buf += 4;
12930
12931 /* Nop */
12932 md_number_to_chars ((char *) buf, 0, 4);
12933 buf += 4;
12934
12935 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
12936 {
12937 /* beql $0, $0, 2f */
12938 insn = 0x50000000;
12939 /* Compute the PC offset from the current instruction to
12940 the end of the variable frag. */
12941 /* How many bytes in instructions we've already emitted? */
12942 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
12943 /* How many bytes in instructions from here to the end? */
12944 i = fragp->fr_var - i;
12945 /* Convert to instruction count. */
12946 i >>= 2;
12947 /* Don't decrement i, because we want to branch over the
12948 delay slot. */
12949
12950 insn |= i;
12951 md_number_to_chars ((char *) buf, insn, 4);
12952 buf += 4;
12953
12954 md_number_to_chars ((char *) buf, 0, 4);
12955 buf += 4;
12956 }
12957
12958 uncond:
12959 if (mips_pic == NO_PIC)
12960 {
12961 /* j or jal. */
12962 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
12963 ? 0x0c000000 : 0x08000000);
12964 exp.X_op = O_symbol;
12965 exp.X_add_symbol = fragp->fr_symbol;
12966 exp.X_add_number = fragp->fr_offset;
12967
12968 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
12969 4, &exp, 0, BFD_RELOC_MIPS_JMP);
12970 fixp->fx_file = fragp->fr_file;
12971 fixp->fx_line = fragp->fr_line;
12972
12973 md_number_to_chars ((char *) buf, insn, 4);
12974 buf += 4;
12975 }
12976 else
12977 {
12978 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
12979 insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000;
12980 exp.X_op = O_symbol;
12981 exp.X_add_symbol = fragp->fr_symbol;
12982 exp.X_add_number = fragp->fr_offset;
12983
12984 if (fragp->fr_offset)
12985 {
12986 exp.X_add_symbol = make_expr_symbol (&exp);
12987 exp.X_add_number = 0;
12988 }
12989
12990 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
12991 4, &exp, 0, BFD_RELOC_MIPS_GOT16);
12992 fixp->fx_file = fragp->fr_file;
12993 fixp->fx_line = fragp->fr_line;
12994
12995 md_number_to_chars ((char *) buf, insn, 4);
12996 buf += 4;
12997
12998 if (mips_opts.isa == ISA_MIPS1)
12999 {
13000 /* nop */
13001 md_number_to_chars ((char *) buf, 0, 4);
13002 buf += 4;
13003 }
13004
13005 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
13006 insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000;
13007
13008 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13009 4, &exp, 0, BFD_RELOC_LO16);
13010 fixp->fx_file = fragp->fr_file;
13011 fixp->fx_line = fragp->fr_line;
13012
13013 md_number_to_chars ((char *) buf, insn, 4);
13014 buf += 4;
13015
13016 /* j(al)r $at. */
13017 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
13018 insn = 0x0020f809;
13019 else
13020 insn = 0x00200008;
13021
13022 md_number_to_chars ((char *) buf, insn, 4);
13023 buf += 4;
13024 }
13025 }
13026
13027 assert (buf == (bfd_byte *)fragp->fr_literal
13028 + fragp->fr_fix + fragp->fr_var);
13029
13030 fragp->fr_fix += fragp->fr_var;
13031
13032 return;
13033 }
13034
13035 if (RELAX_MIPS16_P (fragp->fr_subtype))
13036 {
13037 int type;
13038 register const struct mips16_immed_operand *op;
13039 bfd_boolean small, ext;
13040 offsetT val;
13041 bfd_byte *buf;
13042 unsigned long insn;
13043 bfd_boolean use_extend;
13044 unsigned short extend;
13045
13046 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
13047 op = mips16_immed_operands;
13048 while (op->type != type)
13049 ++op;
13050
13051 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13052 {
13053 small = FALSE;
13054 ext = TRUE;
13055 }
13056 else
13057 {
13058 small = TRUE;
13059 ext = FALSE;
13060 }
13061
13062 resolve_symbol_value (fragp->fr_symbol);
13063 val = S_GET_VALUE (fragp->fr_symbol);
13064 if (op->pcrel)
13065 {
13066 addressT addr;
13067
13068 addr = fragp->fr_address + fragp->fr_fix;
13069
13070 /* The rules for the base address of a PC relative reloc are
13071 complicated; see mips16_extended_frag. */
13072 if (type == 'p' || type == 'q')
13073 {
13074 addr += 2;
13075 if (ext)
13076 addr += 2;
13077 /* Ignore the low bit in the target, since it will be
13078 set for a text label. */
13079 if ((val & 1) != 0)
13080 --val;
13081 }
13082 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
13083 addr -= 4;
13084 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
13085 addr -= 2;
13086
13087 addr &= ~ (addressT) ((1 << op->shift) - 1);
13088 val -= addr;
13089
13090 /* Make sure the section winds up with the alignment we have
13091 assumed. */
13092 if (op->shift > 0)
13093 record_alignment (asec, op->shift);
13094 }
13095
13096 if (ext
13097 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
13098 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
13099 as_warn_where (fragp->fr_file, fragp->fr_line,
13100 _("extended instruction in delay slot"));
13101
13102 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
13103
13104 if (target_big_endian)
13105 insn = bfd_getb16 (buf);
13106 else
13107 insn = bfd_getl16 (buf);
13108
13109 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
13110 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
13111 small, ext, &insn, &use_extend, &extend);
13112
13113 if (use_extend)
13114 {
13115 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
13116 fragp->fr_fix += 2;
13117 buf += 2;
13118 }
13119
13120 md_number_to_chars ((char *) buf, insn, 2);
13121 fragp->fr_fix += 2;
13122 buf += 2;
13123 }
13124 else
13125 {
13126 int first, second;
13127 fixS *fixp;
13128
13129 first = RELAX_FIRST (fragp->fr_subtype);
13130 second = RELAX_SECOND (fragp->fr_subtype);
13131 fixp = (fixS *) fragp->fr_opcode;
13132
13133 /* Possibly emit a warning if we've chosen the longer option. */
13134 if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0)
13135 == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0))
13136 {
13137 const char *msg = macro_warning (fragp->fr_subtype);
13138 if (msg != 0)
13139 as_warn_where (fragp->fr_file, fragp->fr_line, msg);
13140 }
13141
13142 /* Go through all the fixups for the first sequence. Disable them
13143 (by marking them as done) if we're going to use the second
13144 sequence instead. */
13145 while (fixp
13146 && fixp->fx_frag == fragp
13147 && fixp->fx_where < fragp->fr_fix - second)
13148 {
13149 if (fragp->fr_subtype & RELAX_USE_SECOND)
13150 fixp->fx_done = 1;
13151 fixp = fixp->fx_next;
13152 }
13153
13154 /* Go through the fixups for the second sequence. Disable them if
13155 we're going to use the first sequence, otherwise adjust their
13156 addresses to account for the relaxation. */
13157 while (fixp && fixp->fx_frag == fragp)
13158 {
13159 if (fragp->fr_subtype & RELAX_USE_SECOND)
13160 fixp->fx_where -= first;
13161 else
13162 fixp->fx_done = 1;
13163 fixp = fixp->fx_next;
13164 }
13165
13166 /* Now modify the frag contents. */
13167 if (fragp->fr_subtype & RELAX_USE_SECOND)
13168 {
13169 char *start;
13170
13171 start = fragp->fr_literal + fragp->fr_fix - first - second;
13172 memmove (start, start + first, second);
13173 fragp->fr_fix -= first;
13174 }
13175 else
13176 fragp->fr_fix -= second;
13177 }
13178 }
13179
13180 #ifdef OBJ_ELF
13181
13182 /* This function is called after the relocs have been generated.
13183 We've been storing mips16 text labels as odd. Here we convert them
13184 back to even for the convenience of the debugger. */
13185
13186 void
13187 mips_frob_file_after_relocs (void)
13188 {
13189 asymbol **syms;
13190 unsigned int count, i;
13191
13192 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
13193 return;
13194
13195 syms = bfd_get_outsymbols (stdoutput);
13196 count = bfd_get_symcount (stdoutput);
13197 for (i = 0; i < count; i++, syms++)
13198 {
13199 if (elf_symbol (*syms)->internal_elf_sym.st_other == STO_MIPS16
13200 && ((*syms)->value & 1) != 0)
13201 {
13202 (*syms)->value &= ~1;
13203 /* If the symbol has an odd size, it was probably computed
13204 incorrectly, so adjust that as well. */
13205 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
13206 ++elf_symbol (*syms)->internal_elf_sym.st_size;
13207 }
13208 }
13209 }
13210
13211 #endif
13212
13213 /* This function is called whenever a label is defined. It is used
13214 when handling branch delays; if a branch has a label, we assume we
13215 can not move it. */
13216
13217 void
13218 mips_define_label (symbolS *sym)
13219 {
13220 struct insn_label_list *l;
13221
13222 if (free_insn_labels == NULL)
13223 l = (struct insn_label_list *) xmalloc (sizeof *l);
13224 else
13225 {
13226 l = free_insn_labels;
13227 free_insn_labels = l->next;
13228 }
13229
13230 l->label = sym;
13231 l->next = insn_labels;
13232 insn_labels = l;
13233 }
13234 \f
13235 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13236
13237 /* Some special processing for a MIPS ELF file. */
13238
13239 void
13240 mips_elf_final_processing (void)
13241 {
13242 /* Write out the register information. */
13243 if (mips_abi != N64_ABI)
13244 {
13245 Elf32_RegInfo s;
13246
13247 s.ri_gprmask = mips_gprmask;
13248 s.ri_cprmask[0] = mips_cprmask[0];
13249 s.ri_cprmask[1] = mips_cprmask[1];
13250 s.ri_cprmask[2] = mips_cprmask[2];
13251 s.ri_cprmask[3] = mips_cprmask[3];
13252 /* The gp_value field is set by the MIPS ELF backend. */
13253
13254 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
13255 ((Elf32_External_RegInfo *)
13256 mips_regmask_frag));
13257 }
13258 else
13259 {
13260 Elf64_Internal_RegInfo s;
13261
13262 s.ri_gprmask = mips_gprmask;
13263 s.ri_pad = 0;
13264 s.ri_cprmask[0] = mips_cprmask[0];
13265 s.ri_cprmask[1] = mips_cprmask[1];
13266 s.ri_cprmask[2] = mips_cprmask[2];
13267 s.ri_cprmask[3] = mips_cprmask[3];
13268 /* The gp_value field is set by the MIPS ELF backend. */
13269
13270 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
13271 ((Elf64_External_RegInfo *)
13272 mips_regmask_frag));
13273 }
13274
13275 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
13276 sort of BFD interface for this. */
13277 if (mips_any_noreorder)
13278 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
13279 if (mips_pic != NO_PIC)
13280 {
13281 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
13282 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
13283 }
13284 if (mips_abicalls)
13285 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
13286
13287 /* Set MIPS ELF flags for ASEs. */
13288 if (file_ase_mips16)
13289 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
13290 #if 0 /* XXX FIXME */
13291 if (file_ase_mips3d)
13292 elf_elfheader (stdoutput)->e_flags |= ???;
13293 #endif
13294 if (file_ase_mdmx)
13295 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
13296
13297 /* Set the MIPS ELF ABI flags. */
13298 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
13299 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
13300 else if (mips_abi == O64_ABI)
13301 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
13302 else if (mips_abi == EABI_ABI)
13303 {
13304 if (!file_mips_gp32)
13305 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
13306 else
13307 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
13308 }
13309 else if (mips_abi == N32_ABI)
13310 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
13311
13312 /* Nothing to do for N64_ABI. */
13313
13314 if (mips_32bitmode)
13315 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
13316 }
13317
13318 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
13319 \f
13320 typedef struct proc {
13321 symbolS *func_sym;
13322 symbolS *func_end_sym;
13323 unsigned long reg_mask;
13324 unsigned long reg_offset;
13325 unsigned long fpreg_mask;
13326 unsigned long fpreg_offset;
13327 unsigned long frame_offset;
13328 unsigned long frame_reg;
13329 unsigned long pc_reg;
13330 } procS;
13331
13332 static procS cur_proc;
13333 static procS *cur_proc_ptr;
13334 static int numprocs;
13335
13336 /* Fill in an rs_align_code fragment. */
13337
13338 void
13339 mips_handle_align (fragS *fragp)
13340 {
13341 if (fragp->fr_type != rs_align_code)
13342 return;
13343
13344 if (mips_opts.mips16)
13345 {
13346 static const unsigned char be_nop[] = { 0x65, 0x00 };
13347 static const unsigned char le_nop[] = { 0x00, 0x65 };
13348
13349 int bytes;
13350 char *p;
13351
13352 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
13353 p = fragp->fr_literal + fragp->fr_fix;
13354
13355 if (bytes & 1)
13356 {
13357 *p++ = 0;
13358 fragp->fr_fix++;
13359 }
13360
13361 memcpy (p, (target_big_endian ? be_nop : le_nop), 2);
13362 fragp->fr_var = 2;
13363 }
13364
13365 /* For mips32, a nop is a zero, which we trivially get by doing nothing. */
13366 }
13367
13368 static void
13369 md_obj_begin (void)
13370 {
13371 }
13372
13373 static void
13374 md_obj_end (void)
13375 {
13376 /* check for premature end, nesting errors, etc */
13377 if (cur_proc_ptr)
13378 as_warn (_("missing .end at end of assembly"));
13379 }
13380
13381 static long
13382 get_number (void)
13383 {
13384 int negative = 0;
13385 long val = 0;
13386
13387 if (*input_line_pointer == '-')
13388 {
13389 ++input_line_pointer;
13390 negative = 1;
13391 }
13392 if (!ISDIGIT (*input_line_pointer))
13393 as_bad (_("expected simple number"));
13394 if (input_line_pointer[0] == '0')
13395 {
13396 if (input_line_pointer[1] == 'x')
13397 {
13398 input_line_pointer += 2;
13399 while (ISXDIGIT (*input_line_pointer))
13400 {
13401 val <<= 4;
13402 val |= hex_value (*input_line_pointer++);
13403 }
13404 return negative ? -val : val;
13405 }
13406 else
13407 {
13408 ++input_line_pointer;
13409 while (ISDIGIT (*input_line_pointer))
13410 {
13411 val <<= 3;
13412 val |= *input_line_pointer++ - '0';
13413 }
13414 return negative ? -val : val;
13415 }
13416 }
13417 if (!ISDIGIT (*input_line_pointer))
13418 {
13419 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
13420 *input_line_pointer, *input_line_pointer);
13421 as_warn (_("invalid number"));
13422 return -1;
13423 }
13424 while (ISDIGIT (*input_line_pointer))
13425 {
13426 val *= 10;
13427 val += *input_line_pointer++ - '0';
13428 }
13429 return negative ? -val : val;
13430 }
13431
13432 /* The .file directive; just like the usual .file directive, but there
13433 is an initial number which is the ECOFF file index. In the non-ECOFF
13434 case .file implies DWARF-2. */
13435
13436 static void
13437 s_mips_file (int x ATTRIBUTE_UNUSED)
13438 {
13439 static int first_file_directive = 0;
13440
13441 if (ECOFF_DEBUGGING)
13442 {
13443 get_number ();
13444 s_app_file (0);
13445 }
13446 else
13447 {
13448 char *filename;
13449
13450 filename = dwarf2_directive_file (0);
13451
13452 /* Versions of GCC up to 3.1 start files with a ".file"
13453 directive even for stabs output. Make sure that this
13454 ".file" is handled. Note that you need a version of GCC
13455 after 3.1 in order to support DWARF-2 on MIPS. */
13456 if (filename != NULL && ! first_file_directive)
13457 {
13458 (void) new_logical_line (filename, -1);
13459 s_app_file_string (filename, 0);
13460 }
13461 first_file_directive = 1;
13462 }
13463 }
13464
13465 /* The .loc directive, implying DWARF-2. */
13466
13467 static void
13468 s_mips_loc (int x ATTRIBUTE_UNUSED)
13469 {
13470 if (!ECOFF_DEBUGGING)
13471 dwarf2_directive_loc (0);
13472 }
13473
13474 /* The .end directive. */
13475
13476 static void
13477 s_mips_end (int x ATTRIBUTE_UNUSED)
13478 {
13479 symbolS *p;
13480
13481 /* Following functions need their own .frame and .cprestore directives. */
13482 mips_frame_reg_valid = 0;
13483 mips_cprestore_valid = 0;
13484
13485 if (!is_end_of_line[(unsigned char) *input_line_pointer])
13486 {
13487 p = get_symbol ();
13488 demand_empty_rest_of_line ();
13489 }
13490 else
13491 p = NULL;
13492
13493 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
13494 as_warn (_(".end not in text section"));
13495
13496 if (!cur_proc_ptr)
13497 {
13498 as_warn (_(".end directive without a preceding .ent directive."));
13499 demand_empty_rest_of_line ();
13500 return;
13501 }
13502
13503 if (p != NULL)
13504 {
13505 assert (S_GET_NAME (p));
13506 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
13507 as_warn (_(".end symbol does not match .ent symbol."));
13508
13509 if (debug_type == DEBUG_STABS)
13510 stabs_generate_asm_endfunc (S_GET_NAME (p),
13511 S_GET_NAME (p));
13512 }
13513 else
13514 as_warn (_(".end directive missing or unknown symbol"));
13515
13516 #ifdef OBJ_ELF
13517 /* Create an expression to calculate the size of the function. */
13518 if (p && cur_proc_ptr)
13519 {
13520 OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p);
13521 expressionS *exp = xmalloc (sizeof (expressionS));
13522
13523 obj->size = exp;
13524 exp->X_op = O_subtract;
13525 exp->X_add_symbol = symbol_temp_new_now ();
13526 exp->X_op_symbol = p;
13527 exp->X_add_number = 0;
13528
13529 cur_proc_ptr->func_end_sym = exp->X_add_symbol;
13530 }
13531
13532 /* Generate a .pdr section. */
13533 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING
13534 && mips_flag_pdr)
13535 {
13536 segT saved_seg = now_seg;
13537 subsegT saved_subseg = now_subseg;
13538 valueT dot;
13539 expressionS exp;
13540 char *fragp;
13541
13542 dot = frag_now_fix ();
13543
13544 #ifdef md_flush_pending_output
13545 md_flush_pending_output ();
13546 #endif
13547
13548 assert (pdr_seg);
13549 subseg_set (pdr_seg, 0);
13550
13551 /* Write the symbol. */
13552 exp.X_op = O_symbol;
13553 exp.X_add_symbol = p;
13554 exp.X_add_number = 0;
13555 emit_expr (&exp, 4);
13556
13557 fragp = frag_more (7 * 4);
13558
13559 md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4);
13560 md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4);
13561 md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4);
13562 md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4);
13563 md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4);
13564 md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4);
13565 md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4);
13566
13567 subseg_set (saved_seg, saved_subseg);
13568 }
13569 #endif /* OBJ_ELF */
13570
13571 cur_proc_ptr = NULL;
13572 }
13573
13574 /* The .aent and .ent directives. */
13575
13576 static void
13577 s_mips_ent (int aent)
13578 {
13579 symbolS *symbolP;
13580
13581 symbolP = get_symbol ();
13582 if (*input_line_pointer == ',')
13583 ++input_line_pointer;
13584 SKIP_WHITESPACE ();
13585 if (ISDIGIT (*input_line_pointer)
13586 || *input_line_pointer == '-')
13587 get_number ();
13588
13589 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
13590 as_warn (_(".ent or .aent not in text section."));
13591
13592 if (!aent && cur_proc_ptr)
13593 as_warn (_("missing .end"));
13594
13595 if (!aent)
13596 {
13597 /* This function needs its own .frame and .cprestore directives. */
13598 mips_frame_reg_valid = 0;
13599 mips_cprestore_valid = 0;
13600
13601 cur_proc_ptr = &cur_proc;
13602 memset (cur_proc_ptr, '\0', sizeof (procS));
13603
13604 cur_proc_ptr->func_sym = symbolP;
13605
13606 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
13607
13608 ++numprocs;
13609
13610 if (debug_type == DEBUG_STABS)
13611 stabs_generate_asm_func (S_GET_NAME (symbolP),
13612 S_GET_NAME (symbolP));
13613 }
13614
13615 demand_empty_rest_of_line ();
13616 }
13617
13618 /* The .frame directive. If the mdebug section is present (IRIX 5 native)
13619 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
13620 s_mips_frame is used so that we can set the PDR information correctly.
13621 We can't use the ecoff routines because they make reference to the ecoff
13622 symbol table (in the mdebug section). */
13623
13624 static void
13625 s_mips_frame (int ignore ATTRIBUTE_UNUSED)
13626 {
13627 #ifdef OBJ_ELF
13628 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13629 {
13630 long val;
13631
13632 if (cur_proc_ptr == (procS *) NULL)
13633 {
13634 as_warn (_(".frame outside of .ent"));
13635 demand_empty_rest_of_line ();
13636 return;
13637 }
13638
13639 cur_proc_ptr->frame_reg = tc_get_register (1);
13640
13641 SKIP_WHITESPACE ();
13642 if (*input_line_pointer++ != ','
13643 || get_absolute_expression_and_terminator (&val) != ',')
13644 {
13645 as_warn (_("Bad .frame directive"));
13646 --input_line_pointer;
13647 demand_empty_rest_of_line ();
13648 return;
13649 }
13650
13651 cur_proc_ptr->frame_offset = val;
13652 cur_proc_ptr->pc_reg = tc_get_register (0);
13653
13654 demand_empty_rest_of_line ();
13655 }
13656 else
13657 #endif /* OBJ_ELF */
13658 s_ignore (ignore);
13659 }
13660
13661 /* The .fmask and .mask directives. If the mdebug section is present
13662 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
13663 embedded targets, s_mips_mask is used so that we can set the PDR
13664 information correctly. We can't use the ecoff routines because they
13665 make reference to the ecoff symbol table (in the mdebug section). */
13666
13667 static void
13668 s_mips_mask (int reg_type)
13669 {
13670 #ifdef OBJ_ELF
13671 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13672 {
13673 long mask, off;
13674
13675 if (cur_proc_ptr == (procS *) NULL)
13676 {
13677 as_warn (_(".mask/.fmask outside of .ent"));
13678 demand_empty_rest_of_line ();
13679 return;
13680 }
13681
13682 if (get_absolute_expression_and_terminator (&mask) != ',')
13683 {
13684 as_warn (_("Bad .mask/.fmask directive"));
13685 --input_line_pointer;
13686 demand_empty_rest_of_line ();
13687 return;
13688 }
13689
13690 off = get_absolute_expression ();
13691
13692 if (reg_type == 'F')
13693 {
13694 cur_proc_ptr->fpreg_mask = mask;
13695 cur_proc_ptr->fpreg_offset = off;
13696 }
13697 else
13698 {
13699 cur_proc_ptr->reg_mask = mask;
13700 cur_proc_ptr->reg_offset = off;
13701 }
13702
13703 demand_empty_rest_of_line ();
13704 }
13705 else
13706 #endif /* OBJ_ELF */
13707 s_ignore (reg_type);
13708 }
13709
13710 /* A table describing all the processors gas knows about. Names are
13711 matched in the order listed.
13712
13713 To ease comparison, please keep this table in the same order as
13714 gcc's mips_cpu_info_table[]. */
13715 static const struct mips_cpu_info mips_cpu_info_table[] =
13716 {
13717 /* Entries for generic ISAs */
13718 { "mips1", 1, ISA_MIPS1, CPU_R3000 },
13719 { "mips2", 1, ISA_MIPS2, CPU_R6000 },
13720 { "mips3", 1, ISA_MIPS3, CPU_R4000 },
13721 { "mips4", 1, ISA_MIPS4, CPU_R8000 },
13722 { "mips5", 1, ISA_MIPS5, CPU_MIPS5 },
13723 { "mips32", 1, ISA_MIPS32, CPU_MIPS32 },
13724 { "mips32r2", 1, ISA_MIPS32R2, CPU_MIPS32R2 },
13725 { "mips64", 1, ISA_MIPS64, CPU_MIPS64 },
13726 { "mips64r2", 1, ISA_MIPS64R2, CPU_MIPS64R2 },
13727
13728 /* MIPS I */
13729 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
13730 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
13731 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
13732
13733 /* MIPS II */
13734 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
13735
13736 /* MIPS III */
13737 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
13738 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
13739 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
13740 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
13741 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
13742 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
13743 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
13744 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
13745 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
13746 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
13747 { "orion", 0, ISA_MIPS3, CPU_R4600 },
13748 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
13749
13750 /* MIPS IV */
13751 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
13752 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
13753 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
13754 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
13755 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
13756 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
13757 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
13758 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
13759 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
13760 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
13761 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
13762 { "rm7000", 0, ISA_MIPS4, CPU_RM7000 },
13763 { "rm9000", 0, ISA_MIPS4, CPU_RM9000 },
13764
13765 /* MIPS 32 */
13766 { "4kc", 0, ISA_MIPS32, CPU_MIPS32 },
13767 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
13768 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
13769
13770 /* MIPS 64 */
13771 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
13772 { "20kc", 0, ISA_MIPS64, CPU_MIPS64 },
13773
13774 /* Broadcom SB-1 CPU core */
13775 { "sb1", 0, ISA_MIPS64, CPU_SB1 },
13776
13777 /* End marker */
13778 { NULL, 0, 0, 0 }
13779 };
13780
13781
13782 /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
13783 with a final "000" replaced by "k". Ignore case.
13784
13785 Note: this function is shared between GCC and GAS. */
13786
13787 static bfd_boolean
13788 mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
13789 {
13790 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
13791 given++, canonical++;
13792
13793 return ((*given == 0 && *canonical == 0)
13794 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
13795 }
13796
13797
13798 /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
13799 CPU name. We've traditionally allowed a lot of variation here.
13800
13801 Note: this function is shared between GCC and GAS. */
13802
13803 static bfd_boolean
13804 mips_matching_cpu_name_p (const char *canonical, const char *given)
13805 {
13806 /* First see if the name matches exactly, or with a final "000"
13807 turned into "k". */
13808 if (mips_strict_matching_cpu_name_p (canonical, given))
13809 return TRUE;
13810
13811 /* If not, try comparing based on numerical designation alone.
13812 See if GIVEN is an unadorned number, or 'r' followed by a number. */
13813 if (TOLOWER (*given) == 'r')
13814 given++;
13815 if (!ISDIGIT (*given))
13816 return FALSE;
13817
13818 /* Skip over some well-known prefixes in the canonical name,
13819 hoping to find a number there too. */
13820 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
13821 canonical += 2;
13822 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
13823 canonical += 2;
13824 else if (TOLOWER (canonical[0]) == 'r')
13825 canonical += 1;
13826
13827 return mips_strict_matching_cpu_name_p (canonical, given);
13828 }
13829
13830
13831 /* Parse an option that takes the name of a processor as its argument.
13832 OPTION is the name of the option and CPU_STRING is the argument.
13833 Return the corresponding processor enumeration if the CPU_STRING is
13834 recognized, otherwise report an error and return null.
13835
13836 A similar function exists in GCC. */
13837
13838 static const struct mips_cpu_info *
13839 mips_parse_cpu (const char *option, const char *cpu_string)
13840 {
13841 const struct mips_cpu_info *p;
13842
13843 /* 'from-abi' selects the most compatible architecture for the given
13844 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
13845 EABIs, we have to decide whether we're using the 32-bit or 64-bit
13846 version. Look first at the -mgp options, if given, otherwise base
13847 the choice on MIPS_DEFAULT_64BIT.
13848
13849 Treat NO_ABI like the EABIs. One reason to do this is that the
13850 plain 'mips' and 'mips64' configs have 'from-abi' as their default
13851 architecture. This code picks MIPS I for 'mips' and MIPS III for
13852 'mips64', just as we did in the days before 'from-abi'. */
13853 if (strcasecmp (cpu_string, "from-abi") == 0)
13854 {
13855 if (ABI_NEEDS_32BIT_REGS (mips_abi))
13856 return mips_cpu_info_from_isa (ISA_MIPS1);
13857
13858 if (ABI_NEEDS_64BIT_REGS (mips_abi))
13859 return mips_cpu_info_from_isa (ISA_MIPS3);
13860
13861 if (file_mips_gp32 >= 0)
13862 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
13863
13864 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
13865 ? ISA_MIPS3
13866 : ISA_MIPS1);
13867 }
13868
13869 /* 'default' has traditionally been a no-op. Probably not very useful. */
13870 if (strcasecmp (cpu_string, "default") == 0)
13871 return 0;
13872
13873 for (p = mips_cpu_info_table; p->name != 0; p++)
13874 if (mips_matching_cpu_name_p (p->name, cpu_string))
13875 return p;
13876
13877 as_bad ("Bad value (%s) for %s", cpu_string, option);
13878 return 0;
13879 }
13880
13881 /* Return the canonical processor information for ISA (a member of the
13882 ISA_MIPS* enumeration). */
13883
13884 static const struct mips_cpu_info *
13885 mips_cpu_info_from_isa (int isa)
13886 {
13887 int i;
13888
13889 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
13890 if (mips_cpu_info_table[i].is_isa
13891 && isa == mips_cpu_info_table[i].isa)
13892 return (&mips_cpu_info_table[i]);
13893
13894 return NULL;
13895 }
13896
13897 static const struct mips_cpu_info *
13898 mips_cpu_info_from_arch (int arch)
13899 {
13900 int i;
13901
13902 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
13903 if (arch == mips_cpu_info_table[i].cpu)
13904 return (&mips_cpu_info_table[i]);
13905
13906 return NULL;
13907 }
13908 \f
13909 static void
13910 show (FILE *stream, const char *string, int *col_p, int *first_p)
13911 {
13912 if (*first_p)
13913 {
13914 fprintf (stream, "%24s", "");
13915 *col_p = 24;
13916 }
13917 else
13918 {
13919 fprintf (stream, ", ");
13920 *col_p += 2;
13921 }
13922
13923 if (*col_p + strlen (string) > 72)
13924 {
13925 fprintf (stream, "\n%24s", "");
13926 *col_p = 24;
13927 }
13928
13929 fprintf (stream, "%s", string);
13930 *col_p += strlen (string);
13931
13932 *first_p = 0;
13933 }
13934
13935 void
13936 md_show_usage (FILE *stream)
13937 {
13938 int column, first;
13939 size_t i;
13940
13941 fprintf (stream, _("\
13942 MIPS options:\n\
13943 -EB generate big endian output\n\
13944 -EL generate little endian output\n\
13945 -g, -g2 do not remove unneeded NOPs or swap branches\n\
13946 -G NUM allow referencing objects up to NUM bytes\n\
13947 implicitly with the gp register [default 8]\n"));
13948 fprintf (stream, _("\
13949 -mips1 generate MIPS ISA I instructions\n\
13950 -mips2 generate MIPS ISA II instructions\n\
13951 -mips3 generate MIPS ISA III instructions\n\
13952 -mips4 generate MIPS ISA IV instructions\n\
13953 -mips5 generate MIPS ISA V instructions\n\
13954 -mips32 generate MIPS32 ISA instructions\n\
13955 -mips32r2 generate MIPS32 release 2 ISA instructions\n\
13956 -mips64 generate MIPS64 ISA instructions\n\
13957 -mips64r2 generate MIPS64 release 2 ISA instructions\n\
13958 -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
13959
13960 first = 1;
13961
13962 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
13963 show (stream, mips_cpu_info_table[i].name, &column, &first);
13964 show (stream, "from-abi", &column, &first);
13965 fputc ('\n', stream);
13966
13967 fprintf (stream, _("\
13968 -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
13969 -no-mCPU don't generate code specific to CPU.\n\
13970 For -mCPU and -no-mCPU, CPU must be one of:\n"));
13971
13972 first = 1;
13973
13974 show (stream, "3900", &column, &first);
13975 show (stream, "4010", &column, &first);
13976 show (stream, "4100", &column, &first);
13977 show (stream, "4650", &column, &first);
13978 fputc ('\n', stream);
13979
13980 fprintf (stream, _("\
13981 -mips16 generate mips16 instructions\n\
13982 -no-mips16 do not generate mips16 instructions\n"));
13983 fprintf (stream, _("\
13984 -mfix-vr4120 work around certain VR4120 errata\n\
13985 -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
13986 -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
13987 -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
13988 -mno-shared optimize output for executables\n\
13989 -msym32 assume all symbols have 32-bit values\n\
13990 -O0 remove unneeded NOPs, do not swap branches\n\
13991 -O remove unneeded NOPs and swap branches\n\
13992 --[no-]construct-floats [dis]allow floating point values to be constructed\n\
13993 --trap, --no-break trap exception on div by 0 and mult overflow\n\
13994 --break, --no-trap break exception on div by 0 and mult overflow\n"));
13995 #ifdef OBJ_ELF
13996 fprintf (stream, _("\
13997 -KPIC, -call_shared generate SVR4 position independent code\n\
13998 -non_shared do not generate position independent code\n\
13999 -xgot assume a 32 bit GOT\n\
14000 -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
14001 -mshared, -mno-shared disable/enable .cpload optimization for\n\
14002 non-shared code\n\
14003 -mabi=ABI create ABI conformant object file for:\n"));
14004
14005 first = 1;
14006
14007 show (stream, "32", &column, &first);
14008 show (stream, "o64", &column, &first);
14009 show (stream, "n32", &column, &first);
14010 show (stream, "64", &column, &first);
14011 show (stream, "eabi", &column, &first);
14012
14013 fputc ('\n', stream);
14014
14015 fprintf (stream, _("\
14016 -32 create o32 ABI object file (default)\n\
14017 -n32 create n32 ABI object file\n\
14018 -64 create 64 ABI object file\n"));
14019 #endif
14020 }
14021
14022 enum dwarf2_format
14023 mips_dwarf2_format (void)
14024 {
14025 if (mips_abi == N64_ABI)
14026 {
14027 #ifdef TE_IRIX
14028 return dwarf2_format_64bit_irix;
14029 #else
14030 return dwarf2_format_64bit;
14031 #endif
14032 }
14033 else
14034 return dwarf2_format_32bit;
14035 }
14036
14037 int
14038 mips_dwarf2_addr_size (void)
14039 {
14040 if (mips_abi == N64_ABI)
14041 return 8;
14042 else
14043 return 4;
14044 }
14045
14046 /* Standard calling conventions leave the CFA at SP on entry. */
14047 void
14048 mips_cfi_frame_initial_instructions (void)
14049 {
14050 cfi_add_CFA_def_cfa_register (SP);
14051 }
14052
This page took 0.330075 seconds and 4 git commands to generate.