* config/tc-mips.c (macro) [ldd_std]: Don't attempt the GP
[deliverable/binutils-gdb.git] / gas / config / tc-mips.c
CommitLineData
252b5132 1/* tc-mips.c -- assemble code for a MIPS chip.
81912461 2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
f17c130b 3 2003, 2004, 2005 Free Software Foundation, Inc.
252b5132
RH
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"
3882b010 29#include "safe-ctype.h"
252b5132 30
252b5132 31#include <stdarg.h>
252b5132
RH
32
33#include "opcode/mips.h"
34#include "itbl-ops.h"
c5dd6aab 35#include "dwarf2dbg.h"
5862107c 36#include "dw2gencfi.h"
252b5132
RH
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. */
17a2f251
TS
46static int mips_output_flavor (void);
47static int mips_output_flavor (void) { return OUTPUT_FLAVOR; }
252b5132
RH
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
252b5132
RH
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
ecb4347a
DJ
76int mips_flag_mdebug = -1;
77
dcd410fe
RO
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
82int mips_flag_pdr = FALSE;
83#else
84int mips_flag_pdr = TRUE;
85#endif
86
252b5132
RH
87#include "ecoff.h"
88
89#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
90static char *mips_regmask_frag;
91#endif
92
85b51719 93#define ZERO 0
252b5132
RH
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
112extern int target_big_endian;
113
252b5132 114/* The name of the readonly data section. */
4d0d148d 115#define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
252b5132 116 ? ".rdata" \
056350c6
NC
117 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
118 ? ".rdata" \
252b5132
RH
119 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
120 ? ".rodata" \
121 : (abort (), ""))
122
47e39b9d
RS
123/* Information about an instruction, including its format, operands
124 and fixups. */
125struct 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
a38419a5
RS
150 /* True if this entry cannot be moved from its current position. */
151 unsigned int fixed_p : 1;
47e39b9d
RS
152
153 /* True if this instruction occured in a .set noreorder block. */
154 unsigned int noreorder_p : 1;
155
2fa15973
RS
156 /* True for mips16 instructions that jump to an absolute address. */
157 unsigned int mips16_absolute_jump_p : 1;
47e39b9d
RS
158};
159
a325df1d
TS
160/* The ABI to use. */
161enum 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. */
316f5878 172static enum mips_abi_level mips_abi = NO_ABI;
a325df1d 173
143d77c5
EC
174/* Whether or not we have code that can call pic code. */
175int mips_abicalls = FALSE;
176
aa6975fb
ILT
177/* Whether or not we have code which can be put into a shared
178 library. */
179static bfd_boolean mips_in_shared = TRUE;
180
252b5132
RH
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
e972090a
NC
185struct mips_set_options
186{
252b5132
RH
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;
1f25f5d3
CD
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;
deec1734 195 int ase_mdmx;
252b5132
RH
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;
a325df1d
TS
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;
fef14a42
TS
227 /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march
228 command line option, and the default CPU. */
229 int arch;
aed1a261
RS
230 /* True if ".set sym32" is in effect. */
231 bfd_boolean sym32;
252b5132
RH
232};
233
a325df1d 234/* True if -mgp32 was passed. */
a8e8e863 235static int file_mips_gp32 = -1;
a325df1d
TS
236
237/* True if -mfp32 was passed. */
a8e8e863 238static int file_mips_fp32 = -1;
a325df1d 239
252b5132 240/* This is the struct we use to hold the current set of options. Note
a4672219 241 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
e7af610e 242 -1 to indicate that they have not been initialized. */
252b5132 243
e972090a
NC
244static struct mips_set_options mips_opts =
245{
aed1a261 246 ISA_UNKNOWN, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, CPU_UNKNOWN, FALSE
e7af610e 247};
252b5132
RH
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. */
252unsigned long mips_gprmask;
253unsigned long mips_cprmask[4];
254
255/* MIPS ISA we are using for this output file. */
e7af610e 256static int file_mips_isa = ISA_UNKNOWN;
252b5132 257
a4672219
TS
258/* True if -mips16 was passed or implied by arguments passed on the
259 command line (e.g., by -march). */
260static int file_ase_mips16;
261
1f25f5d3
CD
262/* True if -mips3d was passed or implied by arguments passed on the
263 command line (e.g., by -march). */
264static int file_ase_mips3d;
265
deec1734
CD
266/* True if -mdmx was passed or implied by arguments passed on the
267 command line (e.g., by -march). */
268static int file_ase_mdmx;
269
ec68c924 270/* The argument of the -march= flag. The architecture we are assembling. */
fef14a42 271static int file_mips_arch = CPU_UNKNOWN;
316f5878 272static const char *mips_arch_string;
ec68c924
EC
273
274/* The argument of the -mtune= flag. The architecture for which we
275 are optimizing. */
276static int mips_tune = CPU_UNKNOWN;
316f5878 277static const char *mips_tune_string;
ec68c924 278
316f5878 279/* True when generating 32-bit code for a 64-bit processor. */
252b5132
RH
280static int mips_32bitmode = 0;
281
316f5878
RS
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
bdaaa2e1 291/* Return true if ISA supports 64 bit gp register instructions. */
9ce8a5dd 292#define ISA_HAS_64BIT_REGS(ISA) ( \
e7af610e
NC
293 (ISA) == ISA_MIPS3 \
294 || (ISA) == ISA_MIPS4 \
84ea6cf2 295 || (ISA) == ISA_MIPS5 \
d1cf510e 296 || (ISA) == ISA_MIPS64 \
5f74bc13 297 || (ISA) == ISA_MIPS64R2 \
9ce8a5dd
GRK
298 )
299
af7ee8bf
CD
300/* Return true if ISA supports 64-bit right rotate (dror et al.)
301 instructions. */
302#define ISA_HAS_DROR(ISA) ( \
5f74bc13 303 (ISA) == ISA_MIPS64R2 \
af7ee8bf
CD
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 \
5f74bc13 310 || (ISA) == ISA_MIPS64R2 \
af7ee8bf
CD
311 )
312
e013f690 313#define HAVE_32BIT_GPRS \
316f5878 314 (mips_opts.gp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
ca4e0257 315
e013f690 316#define HAVE_32BIT_FPRS \
316f5878 317 (mips_opts.fp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
ca4e0257
RS
318
319#define HAVE_64BIT_GPRS (! HAVE_32BIT_GPRS)
320#define HAVE_64BIT_FPRS (! HAVE_32BIT_FPRS)
321
316f5878 322#define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
e013f690 323
316f5878 324#define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
e013f690 325
3b91255e
RS
326/* True if relocations are stored in-place. */
327#define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI)
328
aed1a261
RS
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)
e013f690 333
aed1a261
RS
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)
ca4e0257 339
b7c7d6c1
TS
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. */
f899b4b8 343#define ADDRESS_ADD_INSN \
b7c7d6c1 344 (HAVE_32BIT_ADDRESSES ? "addu" : "daddu")
f899b4b8
TS
345
346#define ADDRESS_ADDI_INSN \
b7c7d6c1 347 (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu")
f899b4b8
TS
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
a4672219 355/* Return true if the given CPU supports the MIPS16 ASE. */
3396de36
TS
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)
a4672219 359
1f25f5d3
CD
360/* Return true if the given CPU supports the MIPS3D ASE. */
361#define CPU_HAS_MIPS3D(cpu) ((cpu) == CPU_SB1 \
362 )
363
deec1734 364/* Return true if the given CPU supports the MDMX ASE. */
b34976b6 365#define CPU_HAS_MDMX(cpu) (FALSE \
deec1734
CD
366 )
367
60b63b72
RS
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
c8978940
CD
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 \
c8978940
CD
395 || mips_opts.arch == CPU_VR5500 \
396 )
252b5132
RH
397
398/* Whether the processor uses hardware interlocks to protect reads
81912461
ILT
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. */
252b5132 403#define gpr_interlocks \
e7af610e 404 (mips_opts.isa != ISA_MIPS1 \
fef14a42 405 || mips_opts.arch == CPU_R3900)
252b5132 406
81912461
ILT
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. */
bdaaa2e1 414/* Itbl support may require additional care here. */
81912461
ILT
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 \
81912461
ILT
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)
252b5132 428
6b76fefe
CM
429/* Is this a mfhi or mflo instruction? */
430#define MF_HILO_INSN(PINFO) \
431 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
432
252b5132
RH
433/* MIPS PIC level. */
434
a161fe53 435enum mips_pic_level mips_pic;
252b5132 436
c9914766 437/* 1 if we should generate 32 bit offsets from the $gp register in
252b5132 438 SVR4_PIC mode. Currently has no meaning in other modes. */
c9914766 439static int mips_big_got = 0;
252b5132
RH
440
441/* 1 if trap instructions should used for overflow rather than break
442 instructions. */
c9914766 443static int mips_trap = 0;
252b5132 444
119d663a 445/* 1 if double width floating point constants should not be constructed
b6ff326e 446 by assembling two single width halves into two single width floating
119d663a
NC
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
d547a75e 449 in the status register, and the setting of this bit cannot be determined
119d663a
NC
450 automatically at assemble time. */
451static int mips_disable_float_construction;
452
252b5132
RH
453/* Non-zero if any .set noreorder directives were used. */
454
455static int mips_any_noreorder;
456
6b76fefe
CM
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. */
459static int mips_7000_hilo_fix;
460
252b5132 461/* The size of the small data section. */
156c2f8b 462static unsigned int g_switch_value = 8;
252b5132
RH
463/* Whether the -G option was used. */
464static 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
fba2b7f9
GK
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.
252b5132
RH
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 */
17a2f251 481static int nopic_need_relax (symbolS *, int);
252b5132
RH
482
483/* handle of the OPCODE hash table */
484static struct hash_control *op_hash = NULL;
485
486/* The opcode hash table we use for the mips16. */
487static 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 */
491const 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
bdaaa2e1 498 #NO_APP at the beginning of its output. */
252b5132
RH
499/* Also note that C style comments are always supported. */
500const char line_comment_chars[] = "#";
501
bdaaa2e1 502/* This array holds machine specific line separator characters. */
63a0b638 503const char line_separator_chars[] = ";";
252b5132
RH
504
505/* Chars that can be used to separate mant from exp in floating point nums */
506const 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 */
511const 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
518static char *insn_error;
519
520static 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. */
526static offsetT mips_cprestore_offset = -1;
527
67c1ffbe 528/* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some
6478892d 529 more optimizations, it can use a register value instead of a memory-saved
956cd1d6 530 offset and even an other register than $gp as global pointer. */
6478892d
TS
531static offsetT mips_cpreturn_offset = -1;
532static int mips_cpreturn_register = -1;
533static int mips_gp_register = GP;
def2e0dd 534static int mips_gprel_offset = 0;
6478892d 535
7a621144
DJ
536/* Whether mips_cprestore_offset has been set in the current function
537 (or whether it has already been warned about, if not). */
538static int mips_cprestore_valid = 0;
539
252b5132
RH
540/* This is the register which holds the stack frame, as set by the
541 .frame pseudo-op. This is needed to implement .cprestore. */
542static int mips_frame_reg = SP;
543
7a621144
DJ
544/* Whether mips_frame_reg has been set in the current function
545 (or whether it has already been warned about, if not). */
546static int mips_frame_reg_valid = 0;
547
252b5132
RH
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. */
555static 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. */
559static int mips_debug = 0;
560
7d8e00cf
RS
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
71400594
RS
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. */
575static struct mips_cl_insn history[1 + MAX_NOPS];
252b5132 576
1e915849
RS
577/* Nop instructions used by emit_nop. */
578static 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)
252b5132 582
252b5132
RH
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. */
587static fragS *prev_nop_frag;
588
589/* The number of nop instructions we created in prev_nop_frag. */
590static int prev_nop_frag_holds;
591
592/* The number of nop instructions that we know we need in
bdaaa2e1 593 prev_nop_frag. */
252b5132
RH
594static int prev_nop_frag_required;
595
596/* The number of instructions we've seen since prev_nop_frag. */
597static 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
bdaaa2e1 608 corresponding LO relocation. */
252b5132 609
e972090a
NC
610struct mips_hi_fixup
611{
252b5132
RH
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
622static struct mips_hi_fixup *mips_hi_fixup_list;
623
64bdfcaf
RS
624/* The frag containing the last explicit relocation operator.
625 Null if explicit relocations have not been used. */
626
627static fragS *prev_reloc_op_frag;
628
252b5132
RH
629/* Map normal MIPS register numbers to mips16 register numbers. */
630
631#define X ILLEGAL_REG
e972090a
NC
632static const int mips32_to_16_reg_map[] =
633{
252b5132
RH
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
e972090a
NC
643static const unsigned int mips16_to_32_reg_map[] =
644{
252b5132
RH
645 16, 17, 2, 3, 4, 5, 6, 7
646};
60b63b72 647
71400594
RS
648/* Classifies the kind of instructions we're interested in when
649 implementing -mfix-vr4120. */
650enum 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. */
663static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES];
664
665/* True if -mfix-vr4120 is in force. */
d766e8ec 666static int mips_fix_vr4120;
4a6a3df4 667
7d8e00cf
RS
668/* ...likewise -mfix-vr4130. */
669static int mips_fix_vr4130;
670
4a6a3df4
AO
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
676static int mips_relax_branch;
252b5132 677\f
4d7206a2
RS
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
584892a6
RS
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:
4d7206a2 695
584892a6
RS
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.
4d7206a2
RS
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. */
584892a6 725#define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND))
4d7206a2 726
584892a6
RS
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
252b5132 733
4a6a3df4
AO
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:
b34976b6 780
4a6a3df4
AO
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. */
af6ae2ad 801#define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \
4a6a3df4
AO
802 ((relax_substateT) \
803 (0xc0000000 \
804 | ((toofar) ? 1 : 0) \
805 | ((link) ? 2 : 0) \
806 | ((likely) ? 4 : 0) \
af6ae2ad 807 | ((uncond) ? 8 : 0)))
4a6a3df4 808#define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
4a6a3df4
AO
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)
ae6063d4 812#define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0)
4a6a3df4 813
252b5132
RH
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))
4a6a3df4 841#define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
252b5132
RH
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)
885add95
CD
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
2051e8c4
MR
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
bf12938e
RS
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)
4d7206a2
RS
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. */
903static 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;
252b5132 920\f
584892a6
RS
921/* Global variables used to decide whether a macro needs a warning. */
922static 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
252b5132
RH
936/* Prototypes for static functions. */
937
17a2f251 938#define internalError() \
252b5132 939 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
252b5132
RH
940
941enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
942
b34976b6 943static void append_insn
4d7206a2 944 (struct mips_cl_insn *ip, expressionS *p, bfd_reloc_code_real_type *r);
7d10b47d 945static void mips_no_prev_insn (void);
b34976b6 946static void mips16_macro_build
67c0d1eb
RS
947 (expressionS *, const char *, const char *, va_list);
948static void load_register (int, expressionS *, int);
584892a6
RS
949static void macro_start (void);
950static void macro_end (void);
17a2f251
TS
951static void macro (struct mips_cl_insn * ip);
952static void mips16_macro (struct mips_cl_insn * ip);
252b5132 953#ifdef LOSING_COMPILER
17a2f251 954static void macro2 (struct mips_cl_insn * ip);
252b5132 955#endif
17a2f251
TS
956static void mips_ip (char *str, struct mips_cl_insn * ip);
957static void mips16_ip (char *str, struct mips_cl_insn * ip);
b34976b6 958static void mips16_immed
17a2f251
TS
959 (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean,
960 unsigned long *, bfd_boolean *, unsigned short *);
5e0116d5 961static size_t my_getSmallExpression
17a2f251
TS
962 (expressionS *, bfd_reloc_code_real_type *, char *);
963static void my_getExpression (expressionS *, char *);
964static void s_align (int);
965static void s_change_sec (int);
966static void s_change_section (int);
967static void s_cons (int);
968static void s_float_cons (int);
969static void s_mips_globl (int);
970static void s_option (int);
971static void s_mipsset (int);
972static void s_abicalls (int);
973static void s_cpload (int);
974static void s_cpsetup (int);
975static void s_cplocal (int);
976static void s_cprestore (int);
977static void s_cpreturn (int);
978static void s_gpvalue (int);
979static void s_gpword (int);
980static void s_gpdword (int);
981static void s_cpadd (int);
982static void s_insn (int);
983static void md_obj_begin (void);
984static void md_obj_end (void);
985static void s_mips_ent (int);
986static void s_mips_end (int);
987static void s_mips_frame (int);
988static void s_mips_mask (int reg_type);
989static void s_mips_stab (int);
990static void s_mips_weakext (int);
991static void s_mips_file (int);
992static void s_mips_loc (int);
993static bfd_boolean pic_need_relax (symbolS *, asection *);
4a6a3df4 994static int relaxed_branch_length (fragS *, asection *, int);
17a2f251 995static int validate_mips_insn (const struct mips_opcode *);
e7af610e
NC
996
997/* Table and functions used to map between CPU/ISA names, and
998 ISA levels, and CPU numbers. */
999
e972090a
NC
1000struct mips_cpu_info
1001{
e7af610e
NC
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
17a2f251
TS
1008static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *);
1009static const struct mips_cpu_info *mips_cpu_info_from_isa (int);
1010static const struct mips_cpu_info *mips_cpu_info_from_arch (int);
252b5132
RH
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
e972090a
NC
1030static const pseudo_typeS mips_pseudo_table[] =
1031{
beae10d5 1032 /* MIPS specific pseudo-ops. */
252b5132
RH
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},
6478892d
TS
1040 {"cpsetup", s_cpsetup, 0},
1041 {"cplocal", s_cplocal, 0},
252b5132 1042 {"cprestore", s_cprestore, 0},
6478892d
TS
1043 {"cpreturn", s_cpreturn, 0},
1044 {"gpvalue", s_gpvalue, 0},
252b5132 1045 {"gpword", s_gpword, 0},
10181a0d 1046 {"gpdword", s_gpdword, 0},
252b5132
RH
1047 {"cpadd", s_cpadd, 0},
1048 {"insn", s_insn, 0},
1049
beae10d5 1050 /* Relatively generic pseudo-ops that happen to be used on MIPS
252b5132
RH
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
beae10d5 1059 /* These pseudo-ops are defined in read.c, but must be overridden
252b5132
RH
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},
cca86cc8 1073 {"section", s_change_section, 0},
252b5132
RH
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},
add56521 1079
add56521 1080 { "extern", ecoff_directive_extern, 0},
add56521 1081
43841e91 1082 { NULL, NULL, 0 },
252b5132
RH
1083};
1084
e972090a
NC
1085static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1086{
beae10d5
KH
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. */
252b5132
RH
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},
c5dd6aab 1094 {"file", s_mips_file, 0},
252b5132
RH
1095 {"fmask", s_mips_mask, 'F'},
1096 {"frame", s_mips_frame, 0},
c5dd6aab 1097 {"loc", s_mips_loc, 0},
252b5132
RH
1098 {"mask", s_mips_mask, 'R'},
1099 {"verstamp", s_ignore, 0},
43841e91 1100 { NULL, NULL, 0 },
252b5132
RH
1101};
1102
17a2f251 1103extern void pop_insert (const pseudo_typeS *);
252b5132
RH
1104
1105void
17a2f251 1106mips_pop_insert (void)
252b5132
RH
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
e972090a
NC
1115struct insn_label_list
1116{
252b5132
RH
1117 struct insn_label_list *next;
1118 symbolS *label;
1119};
1120
1121static struct insn_label_list *insn_labels;
1122static struct insn_label_list *free_insn_labels;
1123
17a2f251 1124static void mips_clear_insn_labels (void);
252b5132
RH
1125
1126static inline void
17a2f251 1127mips_clear_insn_labels (void)
252b5132
RH
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
1137static char *expr_end;
1138
1139/* Expressions which appear in instructions. These are set by
1140 mips_ip. */
1141
1142static expressionS imm_expr;
5f74bc13 1143static expressionS imm2_expr;
252b5132
RH
1144static expressionS offset_expr;
1145
1146/* Relocs associated with imm_expr and offset_expr. */
1147
f6688943
TS
1148static bfd_reloc_code_real_type imm_reloc[3]
1149 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1150static bfd_reloc_code_real_type offset_reloc[3]
1151 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 1152
252b5132
RH
1153/* These are set by mips16_ip if an explicit extension is used. */
1154
b34976b6 1155static bfd_boolean mips16_small, mips16_ext;
252b5132 1156
7ed4a06a 1157#ifdef OBJ_ELF
ecb4347a
DJ
1158/* The pdr segment for per procedure frame/regmask info. Not used for
1159 ECOFF debugging. */
252b5132
RH
1160
1161static segT pdr_seg;
7ed4a06a 1162#endif
252b5132 1163
e013f690
TS
1164/* The default target format to use. */
1165
1166const char *
17a2f251 1167mips_target_format (void)
e013f690
TS
1168{
1169 switch (OUTPUT_FLAVOR)
1170 {
e013f690
TS
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
cfe86eaa 1177 /* This is traditional mips. */
e013f690 1178 return (target_big_endian
cfe86eaa
TS
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")));
e013f690
TS
1187#else
1188 return (target_big_endian
cfe86eaa
TS
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")));
e013f690
TS
1197#endif
1198 default:
1199 abort ();
1200 return NULL;
1201 }
1202}
1203
1e915849
RS
1204/* Return the length of instruction INSN. */
1205
1206static inline unsigned int
1207insn_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
1216static void
1217create_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
1236static void
1237install_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
1261static void
1262move_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
1279static void
1280add_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
1289static void
1290add_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
1303static void
1304insert_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
1321static void
1322emit_nop (void)
1323{
1324 add_fixed_insn (NOP_INSN);
1325 insert_into_history (0, 1, NOP_INSN);
1326}
1327
71400594
RS
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
1332static void
1333init_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
156c2f8b
NC
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
252b5132 1375void
17a2f251 1376md_begin (void)
252b5132 1377{
252b5132 1378 register const char *retval = NULL;
156c2f8b 1379 int i = 0;
252b5132 1380 int broken = 0;
1f25f5d3 1381
fef14a42 1382 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch))
252b5132
RH
1383 as_warn (_("Could not set architecture and machine"));
1384
252b5132
RH
1385 op_hash = hash_new ();
1386
1387 for (i = 0; i < NUMOPCODES;)
1388 {
1389 const char *name = mips_opcodes[i].name;
1390
17a2f251 1391 retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]);
252b5132
RH
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;
1e915849
RS
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 }
252b5132
RH
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
17a2f251 1423 retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]);
252b5132
RH
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 }
1e915849
RS
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 }
252b5132
RH
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 }
76db943d
TS
1461 symbol_table_insert (symbol_new ("$ra", reg_section, RA,
1462 &zero_address_frag));
252b5132
RH
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));
85b51719
TS
1475 symbol_table_insert (symbol_new ("$zero", reg_section, ZERO,
1476 &zero_address_frag));
252b5132
RH
1477 symbol_table_insert (symbol_new ("$pc", reg_section, -1,
1478 &zero_address_frag));
1479
6047c971
AO
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
7d10b47d 1494 mips_no_prev_insn ();
252b5132
RH
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
4d0d148d 1505 bfd_set_gp_size (stdoutput, g_switch_value);
252b5132
RH
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
316f5878 1537 if (mips_abi != N64_ABI)
252b5132
RH
1538 {
1539 sec = subseg_new (".reginfo", (subsegT) 0);
1540
195325d2
TS
1541 bfd_set_section_flags (stdoutput, sec, flags);
1542 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
bdaaa2e1 1543
252b5132
RH
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);
195325d2
TS
1553 bfd_set_section_flags (stdoutput, sec, flags);
1554 bfd_set_section_alignment (stdoutput, sec, 3);
252b5132
RH
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 }
ecb4347a 1583#ifdef OBJ_ELF
dcd410fe 1584 else if (OUTPUT_FLAVOR == bfd_target_elf_flavour && mips_flag_pdr)
ecb4347a
DJ
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 }
252b5132
RH
1592#endif
1593
1594 subseg_set (seg, subseg);
1595 }
1596 }
1597
1598 if (! ECOFF_DEBUGGING)
1599 md_obj_begin ();
71400594
RS
1600
1601 if (mips_fix_vr4120)
1602 init_vr4120_conflicts ();
252b5132
RH
1603}
1604
1605void
17a2f251 1606md_mips_end (void)
252b5132
RH
1607{
1608 if (! ECOFF_DEBUGGING)
1609 md_obj_end ();
1610}
1611
1612void
17a2f251 1613md_assemble (char *str)
252b5132
RH
1614{
1615 struct mips_cl_insn insn;
f6688943
TS
1616 bfd_reloc_code_real_type unused_reloc[3]
1617 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132
RH
1618
1619 imm_expr.X_op = O_absent;
5f74bc13 1620 imm2_expr.X_op = O_absent;
252b5132 1621 offset_expr.X_op = O_absent;
f6688943
TS
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;
252b5132
RH
1628
1629 if (mips_opts.mips16)
1630 mips16_ip (str, &insn);
1631 else
1632 {
1633 mips_ip (str, &insn);
beae10d5
KH
1634 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
1635 str, insn.insn_opcode));
252b5132
RH
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 {
584892a6 1646 macro_start ();
252b5132
RH
1647 if (mips_opts.mips16)
1648 mips16_macro (&insn);
1649 else
1650 macro (&insn);
584892a6 1651 macro_end ();
252b5132
RH
1652 }
1653 else
1654 {
1655 if (imm_expr.X_op != O_absent)
4d7206a2 1656 append_insn (&insn, &imm_expr, imm_reloc);
252b5132 1657 else if (offset_expr.X_op != O_absent)
4d7206a2 1658 append_insn (&insn, &offset_expr, offset_reloc);
252b5132 1659 else
4d7206a2 1660 append_insn (&insn, NULL, unused_reloc);
252b5132
RH
1661 }
1662}
1663
5919d012
RS
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
1668static inline bfd_boolean
17a2f251 1669reloc_needs_lo_p (bfd_reloc_code_real_type reloc)
5919d012 1670{
3b91255e
RS
1671 return (HAVE_IN_PLACE_ADDENDS
1672 && (reloc == BFD_RELOC_HI16_S
d6f16593
MR
1673 || reloc == BFD_RELOC_MIPS_GOT16
1674 || reloc == BFD_RELOC_MIPS16_HI16_S));
5919d012
RS
1675}
1676
1677/* Return true if the given fixup is followed by a matching R_MIPS_LO16
1678 relocation. */
1679
1680static inline bfd_boolean
17a2f251 1681fixup_has_matching_lo_p (fixS *fixp)
5919d012
RS
1682{
1683 return (fixp->fx_next != NULL
d6f16593
MR
1684 && (fixp->fx_next->fx_r_type == BFD_RELOC_LO16
1685 || fixp->fx_next->fx_r_type == BFD_RELOC_MIPS16_LO16)
5919d012
RS
1686 && fixp->fx_addsy == fixp->fx_next->fx_addsy
1687 && fixp->fx_offset == fixp->fx_next->fx_offset);
1688}
1689
252b5132
RH
1690/* See whether instruction IP reads register REG. CLASS is the type
1691 of register. */
1692
1693static int
71400594 1694insn_uses_reg (const struct mips_cl_insn *ip, unsigned int reg,
17a2f251 1695 enum mips_regclass class)
252b5132
RH
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
85b51719
TS
1704 /* Don't report on general register ZERO, since it never changes. */
1705 if (class == MIPS_GR_REG && reg == ZERO)
252b5132
RH
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)
bf12938e 1719 && ((EXTRACT_OPERAND (FS, *ip) & ~(unsigned) 1)
252b5132
RH
1720 == (reg &~ (unsigned) 1)))
1721 return 1;
1722 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
bf12938e 1723 && ((EXTRACT_OPERAND (FT, *ip) & ~(unsigned) 1)
252b5132
RH
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)
bf12938e 1730 && EXTRACT_OPERAND (RS, *ip) == reg)
252b5132
RH
1731 return 1;
1732 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
bf12938e 1733 && EXTRACT_OPERAND (RT, *ip) == reg)
252b5132
RH
1734 return 1;
1735 }
1736 else
1737 {
1738 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
bf12938e 1739 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)] == reg)
252b5132
RH
1740 return 1;
1741 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
bf12938e 1742 && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)] == reg)
252b5132
RH
1743 return 1;
1744 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
bf12938e 1745 && (mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)]
252b5132
RH
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)
bf12938e 1755 && MIPS16_EXTRACT_OPERAND (REGR32, *ip) == reg)
252b5132
RH
1756 return 1;
1757 }
1758
1759 return 0;
1760}
1761
1762/* This function returns true if modifying a register requires a
1763 delay. */
1764
1765static int
17a2f251 1766reg_needs_delay (unsigned int reg)
252b5132
RH
1767{
1768 unsigned long prev_pinfo;
1769
47e39b9d 1770 prev_pinfo = history[0].insn_mo->pinfo;
252b5132 1771 if (! mips_opts.noreorder
81912461
ILT
1772 && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY)
1773 && ! gpr_interlocks)
1774 || ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1775 && ! cop_interlocks)))
252b5132 1776 {
81912461
ILT
1777 /* A load from a coprocessor or from memory. All load delays
1778 delay the use of general register rt for one instruction. */
bdaaa2e1 1779 /* Itbl support may require additional care here. */
252b5132 1780 know (prev_pinfo & INSN_WRITE_GPR_T);
bf12938e 1781 if (reg == EXTRACT_OPERAND (RT, history[0]))
252b5132
RH
1782 return 1;
1783 }
1784
1785 return 0;
1786}
1787
404a8071
RS
1788/* Move all labels in insn_labels to the current insertion point. */
1789
1790static void
1791mips_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
252b5132
RH
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
1816static void
17a2f251 1817mips16_mark_labels (void)
252b5132
RH
1818{
1819 if (mips_opts.mips16)
1820 {
1821 struct insn_label_list *l;
98aa84af 1822 valueT val;
252b5132
RH
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
98aa84af
AM
1830 val = S_GET_VALUE (l->label);
1831 if ((val & 1) == 0)
1832 S_SET_VALUE (l->label, val + 1);
252b5132
RH
1833 }
1834 }
1835}
1836
4d7206a2
RS
1837/* End the current frag. Make it a variant frag and record the
1838 relaxation info. */
1839
1840static void
1841relax_close_frag (void)
1842{
584892a6 1843 mips_macro_warning.first_frag = frag_now;
4d7206a2 1844 frag_var (rs_machine_dependent, 0, 0,
584892a6 1845 RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]),
4d7206a2
RS
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
1855static void
1856relax_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. */
252b5132
RH
1865
1866static void
4d7206a2
RS
1867relax_switch (void)
1868{
1869 assert (mips_relax.sequence == 1);
1870 mips_relax.sequence = 2;
1871}
1872
1873/* End the current relaxable sequence. */
1874
1875static void
1876relax_end (void)
1877{
1878 assert (mips_relax.sequence == 2);
1879 relax_close_frag ();
1880 mips_relax.sequence = 0;
1881}
1882
71400594
RS
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. */
4d7206a2 1886
71400594
RS
1887static unsigned int
1888classify_vr4120_insn (const char *name)
252b5132 1889{
71400594
RS
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}
252b5132 1904
71400594
RS
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. */
252b5132 1908
71400594
RS
1909static unsigned int
1910insns_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;
252b5132 1921
71400594
RS
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)
252b5132 1928 {
71400594
RS
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;
252b5132 1947
71400594
RS
1948 class1 = classify_vr4120_insn (insn1->insn_mo->name);
1949 if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0)
252b5132 1950 {
71400594
RS
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;
252b5132 1956 }
71400594
RS
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)))
252b5132 1966 {
71400594
RS
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)
252b5132 1987 {
71400594
RS
1988 if (INSN2_USES_REG (EXTRACT_OPERAND (FT, *insn1), MIPS_FP_REG))
1989 return 1;
252b5132 1990 }
71400594 1991 else if (pinfo1 & INSN_WRITE_FPR_S)
252b5132 1992 {
71400594
RS
1993 if (INSN2_USES_REG (EXTRACT_OPERAND (FS, *insn1), MIPS_FP_REG))
1994 return 1;
252b5132
RH
1995 }
1996 else
1997 {
71400594
RS
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;
252b5132
RH
2009 }
2010 }
6b76fefe 2011
71400594
RS
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 }
6b76fefe 2022
71400594 2023#undef INSN2_USES_REG
6b76fefe 2024
71400594
RS
2025 return 0;
2026}
6b76fefe 2027
7d8e00cf
RS
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
2032static int
2033nops_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
71400594
RS
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. */
bdaaa2e1 2074
71400594
RS
2075static int
2076nops_for_insn (const struct mips_cl_insn *history,
2077 const struct mips_cl_insn *insn)
2078{
2079 int i, nops, tmp_nops;
bdaaa2e1 2080
71400594 2081 nops = 0;
7d8e00cf 2082 for (i = 0; i < MAX_DELAY_NOPS; i++)
71400594
RS
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 }
7d8e00cf
RS
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
71400594
RS
2097 return nops;
2098}
252b5132 2099
71400594
RS
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. */
252b5132 2103
71400594
RS
2104static int
2105nops_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}
252b5132 2122
71400594
RS
2123/* Like nops_for_insn, but if INSN is a branch, take into account the
2124 worst-case delay for the branch target. */
252b5132 2125
71400594
RS
2126static int
2127nops_for_insn_or_target (const struct mips_cl_insn *history,
2128 const struct mips_cl_insn *insn)
2129{
2130 int nops, tmp_nops;
60b63b72 2131
71400594
RS
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
2154static void
2155append_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)
252b5132
RH
2181 {
2182 fragS *old_frag;
2183 unsigned long old_frag_offset;
2184 int i;
252b5132
RH
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
404a8071 2206 mips_move_labels ();
252b5132
RH
2207
2208#ifndef NO_ECOFF_DEBUGGING
2209 if (ECOFF_DEBUGGING)
2210 ecoff_fix_loc (old_frag, old_frag_offset);
2211#endif
2212 }
71400594
RS
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);
252b5132 2219
71400594
RS
2220 /* Enforce NOPS as a minimum. */
2221 if (nops > prev_nop_frag_required)
2222 prev_nop_frag_required = nops;
252b5132 2223
71400594
RS
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++;
252b5132
RH
2239 }
2240 }
2241
58e2ea4d
MR
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
895921c9 2251 /* Record the frag type before frag_var. */
47e39b9d
RS
2252 if (history[0].frag)
2253 prev_insn_frag_type = history[0].frag->fr_type;
895921c9 2254
4d7206a2 2255 if (address_expr
0b25d3e6 2256 && *reloc_type == BFD_RELOC_16_PCREL_S2
4a6a3df4
AO
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 {
895921c9 2267 relaxed_branch = TRUE;
1e915849
RS
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);
4a6a3df4
AO
2280 *reloc_type = BFD_RELOC_UNUSED;
2281 }
2282 else if (*reloc_type > BFD_RELOC_UNUSED)
252b5132
RH
2283 {
2284 /* We need to set up a variant frag. */
2285 assert (mips_opts.mips16 && address_expr != NULL);
1e915849
RS
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);
252b5132 2293 }
252b5132
RH
2294 else if (mips_opts.mips16
2295 && ! ip->use_extend
f6688943 2296 && *reloc_type != BFD_RELOC_MIPS16_JMP)
252b5132
RH
2297 {
2298 /* Make sure there is enough room to swap this instruction with
2299 a following jump instruction. */
2300 frag_grow (6);
1e915849 2301 add_fixed_insn (ip);
252b5132
RH
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
4d7206a2
RS
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
584892a6
RS
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
1e915849
RS
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);
252b5132
RH
2331 }
2332
01a3f561 2333 if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED)
252b5132
RH
2334 {
2335 if (address_expr->X_op == O_constant)
2336 {
f17c130b 2337 unsigned int tmp;
f6688943
TS
2338
2339 switch (*reloc_type)
252b5132
RH
2340 {
2341 case BFD_RELOC_32:
2342 ip->insn_opcode |= address_expr->X_add_number;
2343 break;
2344
f6688943 2345 case BFD_RELOC_MIPS_HIGHEST:
f17c130b
AM
2346 tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48;
2347 ip->insn_opcode |= tmp & 0xffff;
f6688943
TS
2348 break;
2349
2350 case BFD_RELOC_MIPS_HIGHER:
f17c130b
AM
2351 tmp = (address_expr->X_add_number + 0x80008000ull) >> 32;
2352 ip->insn_opcode |= tmp & 0xffff;
f6688943
TS
2353 break;
2354
2355 case BFD_RELOC_HI16_S:
f17c130b
AM
2356 tmp = (address_expr->X_add_number + 0x8000) >> 16;
2357 ip->insn_opcode |= tmp & 0xffff;
f6688943
TS
2358 break;
2359
2360 case BFD_RELOC_HI16:
2361 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
2362 break;
2363
01a3f561 2364 case BFD_RELOC_UNUSED:
252b5132 2365 case BFD_RELOC_LO16:
ed6fb7bd 2366 case BFD_RELOC_MIPS_GOT_DISP:
252b5132
RH
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);
f3c0ec86 2374 if (address_expr->X_add_number & ~0xfffffff)
7496292d
TS
2375 as_bad (_("jump address range overflow (0x%lx)"),
2376 (unsigned long) address_expr->X_add_number);
252b5132
RH
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);
f3c0ec86 2384 if (address_expr->X_add_number & ~0xfffffff)
7496292d
TS
2385 as_bad (_("jump address range overflow (0x%lx)"),
2386 (unsigned long) address_expr->X_add_number);
252b5132
RH
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
252b5132
RH
2393 case BFD_RELOC_16_PCREL_S2:
2394 goto need_reloc;
2395
2396 default:
2397 internalError ();
2398 }
2399 }
01a3f561 2400 else if (*reloc_type < BFD_RELOC_UNUSED)
252b5132 2401 need_reloc:
4d7206a2
RS
2402 {
2403 reloc_howto_type *howto;
2404 int i;
34ce925e 2405
4d7206a2
RS
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;
34ce925e 2411
4d7206a2 2412 howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]);
1e915849
RS
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]);
4d7206a2
RS
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
d6f16593
MR
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))
1e915849 2442 ip->fixp[0]->fx_no_overflow = 1;
4d7206a2
RS
2443
2444 if (mips_relax.sequence)
2445 {
2446 if (mips_relax.first_fixup == 0)
1e915849 2447 mips_relax.first_fixup = ip->fixp[0];
4d7206a2
RS
2448 }
2449 else if (reloc_needs_lo_p (*reloc_type))
2450 {
2451 struct mips_hi_fixup *hi_fixup;
252b5132 2452
4d7206a2
RS
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;
252b5132 2462 }
1e915849 2463 hi_fixup->fixp = ip->fixp[0];
4d7206a2
RS
2464 hi_fixup->seg = now_seg;
2465 }
f6688943 2466
4d7206a2
RS
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 {
1e915849
RS
2475 ip->fixp[i] = fix_new (ip->frag, ip->where,
2476 ip->fixp[0]->fx_size, NULL, 0,
2477 FALSE, reloc_type[i]);
b1dca8ee
RS
2478
2479 /* Use fx_tcbit to mark compound relocs. */
1e915849
RS
2480 ip->fixp[0]->fx_tcbit = 1;
2481 ip->fixp[i]->fx_tcbit = 1;
4d7206a2 2482 }
252b5132
RH
2483 }
2484 }
1e915849 2485 install_insn (ip);
252b5132
RH
2486
2487 /* Update the register mask information. */
2488 if (! mips_opts.mips16)
2489 {
2490 if (pinfo & INSN_WRITE_GPR_D)
bf12938e 2491 mips_gprmask |= 1 << EXTRACT_OPERAND (RD, *ip);
252b5132 2492 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
bf12938e 2493 mips_gprmask |= 1 << EXTRACT_OPERAND (RT, *ip);
252b5132 2494 if (pinfo & INSN_READ_GPR_S)
bf12938e 2495 mips_gprmask |= 1 << EXTRACT_OPERAND (RS, *ip);
252b5132 2496 if (pinfo & INSN_WRITE_GPR_31)
f9419b05 2497 mips_gprmask |= 1 << RA;
252b5132 2498 if (pinfo & INSN_WRITE_FPR_D)
bf12938e 2499 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FD, *ip);
252b5132 2500 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
bf12938e 2501 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FS, *ip);
252b5132 2502 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
bf12938e 2503 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FT, *ip);
252b5132 2504 if ((pinfo & INSN_READ_FPR_R) != 0)
bf12938e 2505 mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FR, *ip);
252b5132
RH
2506 if (pinfo & INSN_COP)
2507 {
bdaaa2e1
KH
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. */
252b5132
RH
2512 }
2513 /* Never set the bit for $0, which is always zero. */
beae10d5 2514 mips_gprmask &= ~1 << 0;
252b5132
RH
2515 }
2516 else
2517 {
2518 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
bf12938e 2519 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RX, *ip);
252b5132 2520 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
bf12938e 2521 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RY, *ip);
252b5132 2522 if (pinfo & MIPS16_INSN_WRITE_Z)
bf12938e 2523 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RZ, *ip);
252b5132
RH
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)
bf12938e 2533 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip);
252b5132 2534 if (pinfo & MIPS16_INSN_READ_GPR_X)
bf12938e 2535 mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip);
252b5132
RH
2536 }
2537
4d7206a2 2538 if (mips_relax.sequence != 2 && !mips_opts.noreorder)
252b5132
RH
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
a38419a5
RS
2552 /* We can't swap if the previous instruction's position
2553 is fixed. */
2554 || history[0].fixed_p
252b5132
RH
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
a38419a5 2566 .set pseudo-ops. */
47e39b9d 2567 || history[1].noreorder_p
252b5132
RH
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
895921c9
MR
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. */
252b5132 2578 || (! mips_opts.mips16
895921c9 2579 && prev_insn_frag_type == rs_machine_dependent)
71400594
RS
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
252b5132
RH
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)
bf12938e 2594 && insn_uses_reg (ip, EXTRACT_OPERAND (RT, history[0]),
252b5132
RH
2595 MIPS_GR_REG))
2596 || (! mips_opts.mips16
2597 && (prev_pinfo & INSN_WRITE_GPR_D)
bf12938e 2598 && insn_uses_reg (ip, EXTRACT_OPERAND (RD, history[0]),
252b5132
RH
2599 MIPS_GR_REG))
2600 || (mips_opts.mips16
2601 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
bf12938e
RS
2602 && (insn_uses_reg
2603 (ip, MIPS16_EXTRACT_OPERAND (RX, history[0]),
2604 MIPS16_REG)))
252b5132 2605 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
bf12938e
RS
2606 && (insn_uses_reg
2607 (ip, MIPS16_EXTRACT_OPERAND (RY, history[0]),
2608 MIPS16_REG)))
252b5132 2609 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
bf12938e
RS
2610 && (insn_uses_reg
2611 (ip, MIPS16_EXTRACT_OPERAND (RZ, history[0]),
2612 MIPS16_REG)))
252b5132
RH
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,
47e39b9d
RS
2619 MIPS16OP_EXTRACT_REG32R
2620 (history[0].insn_opcode),
252b5132
RH
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)
bf12938e
RS
2628 && (EXTRACT_OPERAND (RT, history[0])
2629 == EXTRACT_OPERAND (RD, *ip)))
252b5132 2630 || ((pinfo & INSN_WRITE_GPR_31)
bf12938e 2631 && EXTRACT_OPERAND (RT, history[0]) == RA)))
252b5132
RH
2632 || (! mips_opts.mips16
2633 && (prev_pinfo & INSN_WRITE_GPR_D)
2634 && (((pinfo & INSN_WRITE_GPR_D)
bf12938e
RS
2635 && (EXTRACT_OPERAND (RD, history[0])
2636 == EXTRACT_OPERAND (RD, *ip)))
252b5132 2637 || ((pinfo & INSN_WRITE_GPR_31)
bf12938e 2638 && EXTRACT_OPERAND (RD, history[0]) == RA)))
252b5132
RH
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)
47e39b9d 2643 && (MIPS16OP_EXTRACT_REG32R (history[0].insn_opcode)
252b5132
RH
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)
47e39b9d 2650 && insn_uses_reg (&history[0],
bf12938e 2651 EXTRACT_OPERAND (RD, *ip),
252b5132
RH
2652 MIPS_GR_REG))
2653 || (! mips_opts.mips16
2654 && (pinfo & INSN_WRITE_GPR_31)
47e39b9d 2655 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
252b5132
RH
2656 || (mips_opts.mips16
2657 && (pinfo & MIPS16_INSN_WRITE_31)
47e39b9d 2658 && insn_uses_reg (&history[0], RA, MIPS_GR_REG))
252b5132
RH
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))
252b5132
RH
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. */
47e39b9d 2672 || (mips_opts.mips16 && history[0].fixp[0])
bdaaa2e1
KH
2673 /* If the previous instruction is a sync, sync.l, or
2674 sync.p, we can not swap. */
f173e82e 2675 || (prev_pinfo & INSN_SYNC))
252b5132
RH
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. */
1e915849 2681 insert_into_history (0, 1, ip);
252b5132 2682 emit_nop ();
dd22970f
ILT
2683 if (mips_relax.sequence)
2684 mips_relax.sizes[mips_relax.sequence - 1] += 4;
252b5132
RH
2685 }
2686 else
2687 {
2688 /* It looks like we can actually do the swap. */
1e915849
RS
2689 struct mips_cl_insn delay = history[0];
2690 if (mips_opts.mips16)
252b5132 2691 {
1e915849
RS
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);
252b5132
RH
2706 }
2707 else
2708 {
1e915849
RS
2709 move_insn (&delay, ip->frag, ip->where);
2710 move_insn (ip, history[0].frag, history[0].where);
252b5132 2711 }
1e915849
RS
2712 history[0] = *ip;
2713 delay.fixed_p = 1;
2714 insert_into_history (0, 1, &delay);
252b5132 2715 }
252b5132
RH
2716
2717 /* If that was an unconditional branch, forget the previous
2718 insn information. */
2719 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
7d10b47d 2720 mips_no_prev_insn ();
252b5132
RH
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. */
1e915849 2728 insert_into_history (0, 1, ip);
252b5132 2729 emit_nop ();
252b5132
RH
2730 }
2731 else
1e915849 2732 insert_into_history (0, 1, ip);
252b5132 2733 }
1e915849
RS
2734 else
2735 insert_into_history (0, 1, ip);
252b5132
RH
2736
2737 /* We just output an insn, so the next one doesn't have a label. */
2738 mips_clear_insn_labels ();
252b5132
RH
2739}
2740
7d10b47d 2741/* Forget that there was any previous instruction or label. */
252b5132
RH
2742
2743static void
7d10b47d 2744mips_no_prev_insn (void)
252b5132 2745{
7d10b47d
RS
2746 prev_nop_frag = NULL;
2747 insert_into_history (0, ARRAY_SIZE (history), NOP_INSN);
252b5132
RH
2748 mips_clear_insn_labels ();
2749}
2750
7d10b47d
RS
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. */
252b5132 2754
7d10b47d
RS
2755void
2756mips_emit_delays (void)
252b5132
RH
2757{
2758 if (! mips_opts.noreorder)
2759 {
71400594 2760 int nops = nops_for_insn (history, NULL);
252b5132
RH
2761 if (nops > 0)
2762 {
7d10b47d
RS
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
2773static void
2774start_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)
252b5132
RH
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)
1e915849 2803 add_fixed_insn (NOP_INSN);
252b5132 2804
7d10b47d
RS
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);
404a8071 2809 mips_move_labels ();
252b5132 2810 }
7d10b47d
RS
2811 mips16_mark_labels ();
2812 mips_clear_insn_labels ();
252b5132 2813 }
7d10b47d
RS
2814 mips_opts.noreorder++;
2815 mips_any_noreorder = 1;
2816}
252b5132 2817
7d10b47d 2818/* End a nested noreorder block. */
252b5132 2819
7d10b47d
RS
2820static void
2821end_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 }
252b5132
RH
2834}
2835
584892a6
RS
2836/* Set up global variables for the start of a new macro. */
2837
2838static void
2839macro_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
47e39b9d 2843 && (history[0].insn_mo->pinfo
584892a6
RS
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
2853static const char *
2854macro_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
2867static void
2868macro_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
6e1304d8
RS
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
2906static void
2907macro_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
252b5132
RH
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
252b5132 2924static void
67c0d1eb 2925macro_build (expressionS *ep, const char *name, const char *fmt, ...)
252b5132 2926{
1e915849 2927 const struct mips_opcode *mo;
252b5132 2928 struct mips_cl_insn insn;
f6688943 2929 bfd_reloc_code_real_type r[3];
252b5132 2930 va_list args;
252b5132 2931
252b5132 2932 va_start (args, fmt);
252b5132 2933
252b5132
RH
2934 if (mips_opts.mips16)
2935 {
67c0d1eb 2936 mips16_macro_build (ep, name, fmt, args);
252b5132
RH
2937 va_end (args);
2938 return;
2939 }
2940
f6688943
TS
2941 r[0] = BFD_RELOC_UNUSED;
2942 r[1] = BFD_RELOC_UNUSED;
2943 r[2] = BFD_RELOC_UNUSED;
1e915849
RS
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)),
fef14a42 2955 mips_opts.arch)
1e915849
RS
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);
252b5132
RH
2961 }
2962
1e915849 2963 create_insn (&insn, mo);
252b5132
RH
2964 for (;;)
2965 {
2966 switch (*fmt++)
2967 {
2968 case '\0':
2969 break;
2970
2971 case ',':
2972 case '(':
2973 case ')':
2974 continue;
2975
5f74bc13
CD
2976 case '+':
2977 switch (*fmt++)
2978 {
2979 case 'A':
2980 case 'E':
bf12938e 2981 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
5f74bc13
CD
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.) */
bf12938e 2990 INSERT_OPERAND (INSMSB, insn, va_arg (args, int));
5f74bc13
CD
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.) */
bf12938e 3000 INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int));
5f74bc13
CD
3001 continue;
3002
3003 default:
3004 internalError ();
3005 }
3006 continue;
3007
252b5132
RH
3008 case 't':
3009 case 'w':
3010 case 'E':
bf12938e 3011 INSERT_OPERAND (RT, insn, va_arg (args, int));
252b5132
RH
3012 continue;
3013
3014 case 'c':
bf12938e 3015 INSERT_OPERAND (CODE, insn, va_arg (args, int));
38487616
TS
3016 continue;
3017
252b5132
RH
3018 case 'T':
3019 case 'W':
bf12938e 3020 INSERT_OPERAND (FT, insn, va_arg (args, int));
252b5132
RH
3021 continue;
3022
3023 case 'd':
3024 case 'G':
af7ee8bf 3025 case 'K':
bf12938e 3026 INSERT_OPERAND (RD, insn, va_arg (args, int));
252b5132
RH
3027 continue;
3028
4372b673
NC
3029 case 'U':
3030 {
3031 int tmp = va_arg (args, int);
3032
bf12938e
RS
3033 INSERT_OPERAND (RT, insn, tmp);
3034 INSERT_OPERAND (RD, insn, tmp);
beae10d5 3035 continue;
4372b673
NC
3036 }
3037
252b5132
RH
3038 case 'V':
3039 case 'S':
bf12938e 3040 INSERT_OPERAND (FS, insn, va_arg (args, int));
252b5132
RH
3041 continue;
3042
3043 case 'z':
3044 continue;
3045
3046 case '<':
bf12938e 3047 INSERT_OPERAND (SHAMT, insn, va_arg (args, int));
252b5132
RH
3048 continue;
3049
3050 case 'D':
bf12938e 3051 INSERT_OPERAND (FD, insn, va_arg (args, int));
252b5132
RH
3052 continue;
3053
3054 case 'B':
bf12938e 3055 INSERT_OPERAND (CODE20, insn, va_arg (args, int));
252b5132
RH
3056 continue;
3057
4372b673 3058 case 'J':
bf12938e 3059 INSERT_OPERAND (CODE19, insn, va_arg (args, int));
4372b673
NC
3060 continue;
3061
252b5132 3062 case 'q':
bf12938e 3063 INSERT_OPERAND (CODE2, insn, va_arg (args, int));
252b5132
RH
3064 continue;
3065
3066 case 'b':
3067 case 's':
3068 case 'r':
3069 case 'v':
bf12938e 3070 INSERT_OPERAND (RS, insn, va_arg (args, int));
252b5132
RH
3071 continue;
3072
3073 case 'i':
3074 case 'j':
3075 case 'o':
6e1304d8 3076 macro_read_relocs (&args, r);
cdf6fd85 3077 assert (*r == BFD_RELOC_GPREL16
f6688943
TS
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
438c16b8
TS
3084 || *r == BFD_RELOC_MIPS_GOT_DISP
3085 || *r == BFD_RELOC_MIPS_GOT_PAGE
3086 || *r == BFD_RELOC_MIPS_GOT_OFST
f6688943 3087 || *r == BFD_RELOC_MIPS_GOT_LO16
3e722fb5 3088 || *r == BFD_RELOC_MIPS_CALL_LO16);
252b5132
RH
3089 continue;
3090
3091 case 'u':
6e1304d8 3092 macro_read_relocs (&args, r);
252b5132
RH
3093 assert (ep != NULL
3094 && (ep->X_op == O_constant
3095 || (ep->X_op == O_symbol
f6688943
TS
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
3e722fb5 3101 || *r == BFD_RELOC_MIPS_CALL_HI16))));
252b5132
RH
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.
0b25d3e6
AO
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).
252b5132
RH
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
0b25d3e6 3119 *r = BFD_RELOC_16_PCREL_S2;
252b5132
RH
3120 continue;
3121
3122 case 'a':
3123 assert (ep != NULL);
f6688943 3124 *r = BFD_RELOC_MIPS_JMP;
252b5132
RH
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);
f6688943 3137 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 3138
4d7206a2 3139 append_insn (&insn, ep, r);
252b5132
RH
3140}
3141
3142static void
67c0d1eb 3143mips16_macro_build (expressionS *ep, const char *name, const char *fmt,
17a2f251 3144 va_list args)
252b5132 3145{
1e915849 3146 struct mips_opcode *mo;
252b5132 3147 struct mips_cl_insn insn;
f6688943
TS
3148 bfd_reloc_code_real_type r[3]
3149 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 3150
1e915849
RS
3151 mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
3152 assert (mo);
3153 assert (strcmp (name, mo->name) == 0);
252b5132 3154
1e915849 3155 while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO)
252b5132 3156 {
1e915849
RS
3157 ++mo;
3158 assert (mo->name);
3159 assert (strcmp (name, mo->name) == 0);
252b5132
RH
3160 }
3161
1e915849 3162 create_insn (&insn, mo);
252b5132
RH
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':
bf12938e 3180 MIPS16_INSERT_OPERAND (RY, insn, va_arg (args, int));
252b5132
RH
3181 continue;
3182
3183 case 'x':
3184 case 'v':
bf12938e 3185 MIPS16_INSERT_OPERAND (RX, insn, va_arg (args, int));
252b5132
RH
3186 continue;
3187
3188 case 'z':
bf12938e 3189 MIPS16_INSERT_OPERAND (RZ, insn, va_arg (args, int));
252b5132
RH
3190 continue;
3191
3192 case 'Z':
bf12938e 3193 MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (args, int));
252b5132
RH
3194 continue;
3195
3196 case '0':
3197 case 'S':
3198 case 'P':
3199 case 'R':
3200 continue;
3201
3202 case 'X':
bf12938e 3203 MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (args, int));
252b5132
RH
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)
874e8986 3236 *r = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
3237 else
3238 {
b34976b6
AM
3239 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
3240 FALSE, &insn.insn_opcode, &insn.use_extend,
c4e7957c 3241 &insn.extend);
252b5132 3242 ep = NULL;
f6688943 3243 *r = BFD_RELOC_UNUSED;
252b5132
RH
3244 }
3245 }
3246 continue;
3247
3248 case '6':
bf12938e 3249 MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (args, int));
252b5132
RH
3250 continue;
3251 }
3252
3253 break;
3254 }
3255
f6688943 3256 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 3257
4d7206a2 3258 append_insn (&insn, ep, r);
252b5132
RH
3259}
3260
2051e8c4
MR
3261static void
3262/*
3263 * Sign-extend 32-bit mode constants that have bit 31 set and all
3264 * higher bits unset.
3265 */
3266normalize_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 */
3278static void
3279normalize_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
438c16b8
TS
3288/*
3289 * Generate a "jalr" instruction with a relocation hint to the called
3290 * function. This occurs in NewABI PIC code.
3291 */
3292static void
67c0d1eb 3293macro_build_jalr (expressionS *ep)
438c16b8 3294{
685736be 3295 char *f = NULL;
b34976b6 3296
438c16b8 3297 if (HAVE_NEWABI)
f21f8242 3298 {
cc3d92a5 3299 frag_grow (8);
f21f8242
AO
3300 f = frag_more (0);
3301 }
67c0d1eb 3302 macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG);
438c16b8 3303 if (HAVE_NEWABI)
f21f8242 3304 fix_new_exp (frag_now, f - frag_now->fr_literal,
a105a300 3305 4, ep, FALSE, BFD_RELOC_MIPS_JALR);
438c16b8
TS
3306}
3307
252b5132
RH
3308/*
3309 * Generate a "lui" instruction.
3310 */
3311static void
67c0d1eb 3312macro_build_lui (expressionS *ep, int regnum)
252b5132
RH
3313{
3314 expressionS high_expr;
1e915849 3315 const struct mips_opcode *mo;
252b5132 3316 struct mips_cl_insn insn;
f6688943
TS
3317 bfd_reloc_code_real_type r[3]
3318 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
5a38dc70
AM
3319 const char *name = "lui";
3320 const char *fmt = "t,u";
252b5132
RH
3321
3322 assert (! mips_opts.mips16);
3323
4d7206a2 3324 high_expr = *ep;
252b5132
RH
3325
3326 if (high_expr.X_op == O_constant)
3327 {
3328 /* we can compute the instruction now without a relocation entry */
e7d556df
TS
3329 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
3330 >> 16) & 0xffff;
f6688943 3331 *r = BFD_RELOC_UNUSED;
252b5132 3332 }
78e1bb40 3333 else
252b5132
RH
3334 {
3335 assert (ep->X_op == O_symbol);
bbe506e8
TS
3336 /* _gp_disp is a special case, used from s_cpload.
3337 __gnu_local_gp is used if mips_no_shared. */
252b5132 3338 assert (mips_pic == NO_PIC
78e1bb40 3339 || (! HAVE_NEWABI
aa6975fb
ILT
3340 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)
3341 || (! mips_in_shared
bbe506e8
TS
3342 && strcmp (S_GET_NAME (ep->X_add_symbol),
3343 "__gnu_local_gp") == 0));
f6688943 3344 *r = BFD_RELOC_HI16_S;
252b5132
RH
3345 }
3346
1e915849
RS
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);
252b5132 3351
bf12938e
RS
3352 insn.insn_opcode = insn.insn_mo->match;
3353 INSERT_OPERAND (RT, insn, regnum);
f6688943 3354 if (*r == BFD_RELOC_UNUSED)
252b5132
RH
3355 {
3356 insn.insn_opcode |= high_expr.X_add_number;
4d7206a2 3357 append_insn (&insn, NULL, r);
252b5132
RH
3358 }
3359 else
4d7206a2 3360 append_insn (&insn, &high_expr, r);
252b5132
RH
3361}
3362
885add95
CD
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. */
3366static void
67c0d1eb
RS
3367macro_build_ldst_constoffset (expressionS *ep, const char *op,
3368 int treg, int breg, int dbl)
885add95
CD
3369{
3370 assert (ep->X_op == O_constant);
3371
256ab948 3372 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
3373 if (!dbl)
3374 normalize_constant_expr (ep);
256ab948 3375
67c1ffbe 3376 /* Right now, this routine can only handle signed 32-bit constants. */
ecd13cd3 3377 if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000))
885add95
CD
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! */
67c0d1eb 3383 macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg);
885add95
CD
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. */
67c0d1eb
RS
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);
885add95
CD
3395
3396 if (mips_opts.noat)
8fc2e39e 3397 as_bad (_("Macro used $at after \".set noat\""));
885add95
CD
3398 }
3399}
3400
252b5132
RH
3401/* set_at()
3402 * Generates code to set the $at register to true (one)
3403 * if reg is less than the immediate expression.
3404 */
3405static void
67c0d1eb 3406set_at (int reg, int unsignedp)
252b5132
RH
3407{
3408 if (imm_expr.X_op == O_constant
3409 && imm_expr.X_add_number >= -0x8000
3410 && imm_expr.X_add_number < 0x8000)
67c0d1eb
RS
3411 macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j",
3412 AT, reg, BFD_RELOC_LO16);
252b5132
RH
3413 else
3414 {
67c0d1eb
RS
3415 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
3416 macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT);
252b5132
RH
3417 }
3418}
3419
3420/* Warn if an expression is not a constant. */
3421
3422static void
17a2f251 3423check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex)
252b5132
RH
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);
13757d0c
TS
3429
3430 normalize_constant_expr (ex);
252b5132
RH
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()
67c1ffbe 3510 * This routine generates the least number of instructions necessary to load
252b5132
RH
3511 * an absolute expression value into a register.
3512 */
3513static void
67c0d1eb 3514load_register (int reg, expressionS *ep, int dbl)
252b5132
RH
3515{
3516 int freg;
3517 expressionS hi32, lo32;
3518
3519 if (ep->X_op != O_big)
3520 {
3521 assert (ep->X_op == O_constant);
256ab948
TS
3522
3523 /* Sign-extending 32-bit constants makes their handling easier. */
2051e8c4
MR
3524 if (!dbl)
3525 normalize_constant_expr (ep);
256ab948
TS
3526
3527 if (IS_SEXT_16BIT_NUM (ep->X_add_number))
252b5132
RH
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. */
67c0d1eb 3532 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
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. */
67c0d1eb 3539 macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16);
252b5132
RH
3540 return;
3541 }
256ab948 3542 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)))
252b5132
RH
3543 {
3544 /* 32 bit values require an lui. */
67c0d1eb 3545 macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16);
252b5132 3546 if ((ep->X_add_number & 0xffff) != 0)
67c0d1eb 3547 macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
252b5132
RH
3548 return;
3549 }
3550 }
3551
3552 /* The value is larger than 32 bits. */
3553
2051e8c4 3554 if (!dbl || HAVE_32BIT_GPRS)
252b5132 3555 {
2051e8c4
MR
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));
67c0d1eb 3559 macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
252b5132
RH
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
956cd1d6 3592 if (hi32.X_add_number == (offsetT) 0xffffffff)
beae10d5
KH
3593 {
3594 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
3595 {
67c0d1eb 3596 macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
3597 return;
3598 }
3599 if (lo32.X_add_number & 0x80000000)
3600 {
67c0d1eb 3601 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
252b5132 3602 if (lo32.X_add_number & 0xffff)
67c0d1eb 3603 macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16);
beae10d5
KH
3604 return;
3605 }
3606 }
252b5132
RH
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
beae10d5
KH
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);
67c0d1eb
RS
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);
beae10d5
KH
3640 return;
3641 }
f9419b05 3642 ++shift;
beae10d5
KH
3643 }
3644 while (shift <= (64 - 16));
252b5132
RH
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))
beae10d5
KH
3676 {
3677 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
252b5132 3678 if (shift != 0)
beae10d5 3679 {
252b5132
RH
3680 expressionS tmp;
3681
3682 /* This instruction will set the register to be all
3683 ones. */
beae10d5
KH
3684 tmp.X_op = O_constant;
3685 tmp.X_add_number = (offsetT) -1;
67c0d1eb 3686 macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16);
beae10d5
KH
3687 if (bit != 0)
3688 {
3689 bit += shift;
67c0d1eb
RS
3690 macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<",
3691 reg, reg, (bit >= 32) ? bit - 32 : bit);
beae10d5 3692 }
67c0d1eb
RS
3693 macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<",
3694 reg, reg, (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
3695 return;
3696 }
3697 }
252b5132
RH
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)
beae10d5 3702 hi32.X_add_number |= ~(offsetT) 0xffffffff;
67c0d1eb 3703 load_register (reg, &hi32, 0);
252b5132
RH
3704 freg = reg;
3705 }
3706 if ((lo32.X_add_number & 0xffff0000) == 0)
3707 {
3708 if (freg != 0)
3709 {
67c0d1eb 3710 macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0);
252b5132
RH
3711 freg = reg;
3712 }
3713 }
3714 else
3715 {
3716 expressionS mid16;
3717
956cd1d6 3718 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
beae10d5 3719 {
67c0d1eb
RS
3720 macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16);
3721 macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0);
beae10d5
KH
3722 return;
3723 }
252b5132
RH
3724
3725 if (freg != 0)
3726 {
67c0d1eb 3727 macro_build (NULL, "dsll", "d,w,<", reg, freg, 16);
252b5132
RH
3728 freg = reg;
3729 }
3730 mid16 = lo32;
3731 mid16.X_add_number >>= 16;
67c0d1eb
RS
3732 macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
3733 macro_build (NULL, "dsll", "d,w,<", reg, reg, 16);
252b5132
RH
3734 freg = reg;
3735 }
3736 if ((lo32.X_add_number & 0xffff) != 0)
67c0d1eb 3737 macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16);
252b5132
RH
3738}
3739
269137b2
TS
3740static inline void
3741load_delay_nop (void)
3742{
3743 if (!gpr_interlocks)
3744 macro_build (NULL, "nop", "");
3745}
3746
252b5132
RH
3747/* Load an address into a register. */
3748
3749static void
67c0d1eb 3750load_address (int reg, expressionS *ep, int *used_at)
252b5132 3751{
252b5132
RH
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 {
67c0d1eb 3761 load_register (reg, ep, HAVE_64BIT_ADDRESSES);
252b5132
RH
3762 return;
3763 }
3764
3765 if (mips_pic == NO_PIC)
3766 {
3767 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 3768 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
3769 Otherwise we want
3770 lui $reg,<sym> (BFD_RELOC_HI16_S)
3771 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
d6bc6245 3772 If we have an addend, we always use the latter form.
76b3015f 3773
d6bc6245
TS
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
3a482fd5 3780 daddu $reg,$reg,$at
76b3015f 3781
c03099e6 3782 If $at is already in use, we use a path which is suboptimal
d6bc6245
TS
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)
6caf9ef4
TS
3790
3791 For GP relative symbols in 64bit address space we can use
3792 the same sequence as in 32bit address space. */
aed1a261 3793 if (HAVE_64BIT_SYMBOLS)
d6bc6245 3794 {
6caf9ef4
TS
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 }
d6bc6245 3803
b8285c27 3804 if (*used_at == 0 && !mips_opts.noat)
d6bc6245 3805 {
67c0d1eb
RS
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);
d6bc6245
TS
3813 *used_at = 1;
3814 }
3815 else
3816 {
67c0d1eb
RS
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);
d6bc6245 3824 }
6caf9ef4
TS
3825
3826 if (mips_relax.sequence)
3827 relax_end ();
d6bc6245 3828 }
252b5132
RH
3829 else
3830 {
d6bc6245 3831 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 3832 && !nopic_need_relax (ep->X_add_symbol, 1))
d6bc6245 3833 {
4d7206a2 3834 relax_start (ep->X_add_symbol);
67c0d1eb 3835 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg,
17a2f251 3836 mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 3837 relax_switch ();
d6bc6245 3838 }
67c0d1eb
RS
3839 macro_build_lui (ep, reg);
3840 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j",
3841 reg, reg, BFD_RELOC_LO16);
4d7206a2
RS
3842 if (mips_relax.sequence)
3843 relax_end ();
d6bc6245 3844 }
252b5132
RH
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)
f5040a92
AO
3856 If there is a constant, it must be added in after.
3857
ed6fb7bd 3858 If we have NewABI, we want
f5040a92
AO
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. */
ed6fb7bd
SC
3862 if (HAVE_NEWABI)
3863 {
f5040a92
AO
3864 if (ep->X_add_number)
3865 {
4d7206a2 3866 ex.X_add_number = ep->X_add_number;
f5040a92 3867 ep->X_add_number = 0;
4d7206a2 3868 relax_start (ep->X_add_symbol);
67c0d1eb
RS
3869 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3870 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
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;
67c0d1eb 3874 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 3875 reg, reg, BFD_RELOC_LO16);
f5040a92 3876 ep->X_add_number = ex.X_add_number;
4d7206a2 3877 relax_switch ();
f5040a92 3878 }
67c0d1eb 3879 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 3880 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2
RS
3881 if (mips_relax.sequence)
3882 relax_end ();
ed6fb7bd
SC
3883 }
3884 else
3885 {
f5040a92
AO
3886 ex.X_add_number = ep->X_add_number;
3887 ep->X_add_number = 0;
67c0d1eb
RS
3888 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
3889 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 3890 load_delay_nop ();
4d7206a2
RS
3891 relax_start (ep->X_add_symbol);
3892 relax_switch ();
67c0d1eb 3893 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 3894 BFD_RELOC_LO16);
4d7206a2 3895 relax_end ();
ed6fb7bd 3896
f5040a92
AO
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;
67c0d1eb 3902 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 3903 reg, reg, BFD_RELOC_LO16);
f5040a92 3904 }
252b5132
RH
3905 }
3906 }
3907 else if (mips_pic == SVR4_PIC)
3908 {
3909 expressionS ex;
252b5132
RH
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)
f5040a92
AO
3916
3917 Otherwise, for a reference to a local symbol in old ABI, we want
252b5132
RH
3918 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3919 nop
3920 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
684022ea 3921 If there is a constant, it must be added in after.
f5040a92
AO
3922
3923 In the NewABI, for local symbols, with or without offsets, we want:
438c16b8
TS
3924 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
3925 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
f5040a92 3926 */
438c16b8
TS
3927 if (HAVE_NEWABI)
3928 {
4d7206a2 3929 ex.X_add_number = ep->X_add_number;
f5040a92 3930 ep->X_add_number = 0;
4d7206a2 3931 relax_start (ep->X_add_symbol);
67c0d1eb
RS
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);
f5040a92
AO
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;
67c0d1eb
RS
3942 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3943 BFD_RELOC_LO16);
f5040a92
AO
3944 }
3945
3946 ep->X_add_number = ex.X_add_number;
4d7206a2 3947 relax_switch ();
67c0d1eb 3948 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 3949 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
67c0d1eb
RS
3950 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3951 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 3952 relax_end ();
438c16b8 3953 }
252b5132 3954 else
438c16b8 3955 {
f5040a92
AO
3956 ex.X_add_number = ep->X_add_number;
3957 ep->X_add_number = 0;
4d7206a2 3958 relax_start (ep->X_add_symbol);
67c0d1eb
RS
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);
4d7206a2
RS
3964 relax_switch ();
3965 if (reg_needs_delay (mips_gp_register))
438c16b8
TS
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. */
67c0d1eb 3971 macro_build (NULL, "nop", "");
438c16b8 3972 }
67c0d1eb 3973 macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg,
17a2f251 3974 BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 3975 load_delay_nop ();
67c0d1eb 3976 macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
17a2f251 3977 BFD_RELOC_LO16);
4d7206a2 3978 relax_end ();
438c16b8 3979
f5040a92
AO
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;
67c0d1eb
RS
3985 macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg,
3986 BFD_RELOC_LO16);
f5040a92 3987 }
252b5132
RH
3988 }
3989 }
252b5132
RH
3990 else
3991 abort ();
8fc2e39e
TS
3992
3993 if (mips_opts.noat && *used_at == 1)
3994 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
3995}
3996
ea1fb5dc
RS
3997/* Move the contents of register SOURCE into register DEST. */
3998
3999static void
67c0d1eb 4000move_register (int dest, int source)
ea1fb5dc 4001{
67c0d1eb
RS
4002 macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t",
4003 dest, source, 0);
ea1fb5dc
RS
4004}
4005
4d7206a2 4006/* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where
f6a22291
MR
4007 LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement.
4008 The two alternatives are:
4d7206a2
RS
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
f6a22291
MR
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. */
4d7206a2
RS
4019
4020static void
67c0d1eb 4021load_got_offset (int dest, expressionS *local)
4d7206a2
RS
4022{
4023 expressionS global;
4024
4025 global = *local;
4026 global.X_add_number = 0;
4027
4028 relax_start (local->X_add_symbol);
67c0d1eb
RS
4029 macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4030 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2 4031 relax_switch ();
67c0d1eb
RS
4032 macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest,
4033 BFD_RELOC_MIPS_GOT16, mips_gp_register);
4d7206a2
RS
4034 relax_end ();
4035}
4036
4037static void
67c0d1eb 4038add_got_offset (int dest, expressionS *local)
4d7206a2
RS
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);
67c0d1eb 4048 macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j",
4d7206a2
RS
4049 dest, dest, BFD_RELOC_LO16);
4050 relax_switch ();
67c0d1eb 4051 macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16);
4d7206a2
RS
4052 relax_end ();
4053}
4054
f6a22291
MR
4055static void
4056add_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
252b5132
RH
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
67c1ffbe 4086 * probably be handled by some kind of table or grammar approach instead of
252b5132
RH
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
67c1ffbe 4090 * consecutively that would load AT with the upper half of the same address.
252b5132
RH
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 */
4099static void
17a2f251 4100macro (struct mips_cl_insn *ip)
252b5132
RH
4101{
4102 register int treg, sreg, dreg, breg;
4103 int tempreg;
4104 int mask;
43841e91 4105 int used_at = 0;
252b5132
RH
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;
1abe91b1 4115 int call = 0;
252b5132 4116 int off;
67c0d1eb 4117 offsetT maxnum;
252b5132 4118 bfd_reloc_code_real_type r;
252b5132
RH
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
7d10b47d 4143 start_noreorder ();
252b5132
RH
4144
4145 expr1.X_add_number = 8;
67c0d1eb 4146 macro_build (&expr1, "bgez", "s,p", sreg);
252b5132 4147 if (dreg == sreg)
67c0d1eb 4148 macro_build (NULL, "nop", "", 0);
252b5132 4149 else
67c0d1eb
RS
4150 move_register (dreg, sreg);
4151 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
252b5132 4152
7d10b47d 4153 end_noreorder ();
8fc2e39e 4154 break;
252b5132
RH
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 {
67c0d1eb 4178 macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16);
8fc2e39e 4179 break;
252b5132 4180 }
8fc2e39e 4181 used_at = 1;
67c0d1eb
RS
4182 load_register (AT, &imm_expr, dbl);
4183 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
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)
67c0d1eb 4207 macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16);
252b5132
RH
4208 else
4209 {
67c0d1eb
RS
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);
252b5132 4213 }
8fc2e39e 4214 break;
252b5132
RH
4215 }
4216
8fc2e39e 4217 used_at = 1;
67c0d1eb
RS
4218 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4219 macro_build (NULL, s2, "d,v,t", treg, sreg, AT);
252b5132
RH
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 {
67c0d1eb 4238 macro_build (&offset_expr, s, "s,t,p", sreg, 0);
8fc2e39e 4239 break;
252b5132 4240 }
8fc2e39e 4241 used_at = 1;
67c0d1eb
RS
4242 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
4243 macro_build (&offset_expr, s, "s,t,p", sreg, AT);
252b5132
RH
4244 break;
4245
4246 case M_BGEL:
4247 likely = 1;
4248 case M_BGE:
4249 if (treg == 0)
4250 {
67c0d1eb 4251 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
8fc2e39e 4252 break;
252b5132
RH
4253 }
4254 if (sreg == 0)
4255 {
67c0d1eb 4256 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg);
8fc2e39e 4257 break;
252b5132 4258 }
8fc2e39e 4259 used_at = 1;
67c0d1eb
RS
4260 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4261 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4262 break;
4263
4264 case M_BGTL_I:
4265 likely = 1;
4266 case M_BGT_I:
4267 /* check for > max integer */
4268 maxnum = 0x7fffffff;
ca4e0257 4269 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
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
ca4e0257 4278 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
4279 {
4280 do_false:
4281 /* result is always false */
4282 if (! likely)
67c0d1eb 4283 macro_build (NULL, "nop", "", 0);
252b5132 4284 else
67c0d1eb 4285 macro_build (&offset_expr, "bnel", "s,t,p", 0, 0);
8fc2e39e 4286 break;
252b5132
RH
4287 }
4288 if (imm_expr.X_op != O_constant)
4289 as_bad (_("Unsupported large constant"));
f9419b05 4290 ++imm_expr.X_add_number;
252b5132
RH
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 {
67c0d1eb 4298 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg);
8fc2e39e 4299 break;
252b5132
RH
4300 }
4301 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4302 {
67c0d1eb 4303 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
8fc2e39e 4304 break;
252b5132
RH
4305 }
4306 maxnum = 0x7fffffff;
ca4e0257 4307 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
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
ca4e0257 4317 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
4318 {
4319 do_true:
4320 /* result is always true */
4321 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
67c0d1eb 4322 macro_build (&offset_expr, "b", "p");
8fc2e39e 4323 break;
252b5132 4324 }
8fc2e39e 4325 used_at = 1;
67c0d1eb
RS
4326 set_at (sreg, 0);
4327 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
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 {
67c0d1eb 4337 macro_build (&offset_expr, likely ? "beql" : "beq",
17a2f251 4338 "s,t,p", 0, treg);
8fc2e39e 4339 break;
252b5132 4340 }
8fc2e39e 4341 used_at = 1;
67c0d1eb
RS
4342 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4343 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4344 break;
4345
4346 case M_BGTUL_I:
4347 likely = 1;
4348 case M_BGTU_I:
4349 if (sreg == 0
ca4e0257 4350 || (HAVE_32BIT_GPRS
252b5132 4351 && imm_expr.X_op == O_constant
956cd1d6 4352 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
4353 goto do_false;
4354 if (imm_expr.X_op != O_constant)
4355 as_bad (_("Unsupported large constant"));
f9419b05 4356 ++imm_expr.X_add_number;
252b5132
RH
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 {
67c0d1eb 4366 macro_build (&offset_expr, likely ? "bnel" : "bne",
17a2f251 4367 "s,t,p", sreg, 0);
8fc2e39e 4368 break;
252b5132 4369 }
8fc2e39e 4370 used_at = 1;
67c0d1eb
RS
4371 set_at (sreg, 1);
4372 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4373 break;
4374
4375 case M_BGTL:
4376 likely = 1;
4377 case M_BGT:
4378 if (treg == 0)
4379 {
67c0d1eb 4380 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg);
8fc2e39e 4381 break;
252b5132
RH
4382 }
4383 if (sreg == 0)
4384 {
67c0d1eb 4385 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg);
8fc2e39e 4386 break;
252b5132 4387 }
8fc2e39e 4388 used_at = 1;
67c0d1eb
RS
4389 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
4390 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4391 break;
4392
4393 case M_BGTUL:
4394 likely = 1;
4395 case M_BGTU:
4396 if (treg == 0)
4397 {
67c0d1eb 4398 macro_build (&offset_expr, likely ? "bnel" : "bne",
17a2f251 4399 "s,t,p", sreg, 0);
8fc2e39e 4400 break;
252b5132
RH
4401 }
4402 if (sreg == 0)
4403 goto do_false;
8fc2e39e 4404 used_at = 1;
67c0d1eb
RS
4405 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
4406 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4407 break;
4408
4409 case M_BLEL:
4410 likely = 1;
4411 case M_BLE:
4412 if (treg == 0)
4413 {
67c0d1eb 4414 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
8fc2e39e 4415 break;
252b5132
RH
4416 }
4417 if (sreg == 0)
4418 {
67c0d1eb 4419 macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg);
8fc2e39e 4420 break;
252b5132 4421 }
8fc2e39e 4422 used_at = 1;
67c0d1eb
RS
4423 macro_build (NULL, "slt", "d,v,t", AT, treg, sreg);
4424 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4425 break;
4426
4427 case M_BLEL_I:
4428 likely = 1;
4429 case M_BLE_I:
4430 maxnum = 0x7fffffff;
ca4e0257 4431 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
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
ca4e0257 4440 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
4441 goto do_true;
4442 if (imm_expr.X_op != O_constant)
4443 as_bad (_("Unsupported large constant"));
f9419b05 4444 ++imm_expr.X_add_number;
252b5132
RH
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 {
67c0d1eb 4452 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
8fc2e39e 4453 break;
252b5132
RH
4454 }
4455 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4456 {
67c0d1eb 4457 macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg);
8fc2e39e 4458 break;
252b5132 4459 }
8fc2e39e 4460 used_at = 1;
67c0d1eb
RS
4461 set_at (sreg, 0);
4462 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4463 break;
4464
4465 case M_BLEUL:
4466 likely = 1;
4467 case M_BLEU:
4468 if (treg == 0)
4469 {
67c0d1eb 4470 macro_build (&offset_expr, likely ? "beql" : "beq",
17a2f251 4471 "s,t,p", sreg, 0);
8fc2e39e 4472 break;
252b5132
RH
4473 }
4474 if (sreg == 0)
4475 goto do_true;
8fc2e39e 4476 used_at = 1;
67c0d1eb
RS
4477 macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg);
4478 macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4479 break;
4480
4481 case M_BLEUL_I:
4482 likely = 1;
4483 case M_BLEU_I:
4484 if (sreg == 0
ca4e0257 4485 || (HAVE_32BIT_GPRS
252b5132 4486 && imm_expr.X_op == O_constant
956cd1d6 4487 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
4488 goto do_true;
4489 if (imm_expr.X_op != O_constant)
4490 as_bad (_("Unsupported large constant"));
f9419b05 4491 ++imm_expr.X_add_number;
252b5132
RH
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 {
67c0d1eb 4501 macro_build (&offset_expr, likely ? "beql" : "beq",
252b5132 4502 "s,t,p", sreg, 0);
8fc2e39e 4503 break;
252b5132 4504 }
8fc2e39e 4505 used_at = 1;
67c0d1eb
RS
4506 set_at (sreg, 1);
4507 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4508 break;
4509
4510 case M_BLTL:
4511 likely = 1;
4512 case M_BLT:
4513 if (treg == 0)
4514 {
67c0d1eb 4515 macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg);
8fc2e39e 4516 break;
252b5132
RH
4517 }
4518 if (sreg == 0)
4519 {
67c0d1eb 4520 macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg);
8fc2e39e 4521 break;
252b5132 4522 }
8fc2e39e 4523 used_at = 1;
67c0d1eb
RS
4524 macro_build (NULL, "slt", "d,v,t", AT, sreg, treg);
4525 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
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 {
67c0d1eb 4535 macro_build (&offset_expr, likely ? "bnel" : "bne",
17a2f251 4536 "s,t,p", 0, treg);
8fc2e39e 4537 break;
252b5132 4538 }
8fc2e39e 4539 used_at = 1;
67c0d1eb
RS
4540 macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg);
4541 macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4542 break;
4543
5f74bc13
CD
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 }
67c0d1eb 4588 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1);
5f74bc13 4589 }
8fc2e39e 4590 break;
5f74bc13
CD
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 }
67c0d1eb
RS
4636 macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos,
4637 pos + size - 1);
5f74bc13 4638 }
8fc2e39e 4639 break;
5f74bc13 4640
252b5132
RH
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)
67c0d1eb 4655 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
252b5132 4656 else
67c0d1eb 4657 macro_build (NULL, "break", "c", 7);
8fc2e39e 4658 break;
252b5132
RH
4659 }
4660
7d10b47d 4661 start_noreorder ();
252b5132
RH
4662 if (mips_trap)
4663 {
67c0d1eb
RS
4664 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
4665 macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
252b5132
RH
4666 }
4667 else
4668 {
4669 expr1.X_add_number = 8;
67c0d1eb
RS
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);
252b5132
RH
4673 }
4674 expr1.X_add_number = -1;
8fc2e39e 4675 used_at = 1;
f6a22291 4676 load_register (AT, &expr1, dbl);
252b5132 4677 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
67c0d1eb 4678 macro_build (&expr1, "bne", "s,t,p", treg, AT);
252b5132
RH
4679 if (dbl)
4680 {
4681 expr1.X_add_number = 1;
f6a22291 4682 load_register (AT, &expr1, dbl);
67c0d1eb 4683 macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31);
252b5132
RH
4684 }
4685 else
4686 {
4687 expr1.X_add_number = 0x80000000;
67c0d1eb 4688 macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16);
252b5132
RH
4689 }
4690 if (mips_trap)
4691 {
67c0d1eb 4692 macro_build (NULL, "teq", "s,t,q", sreg, AT, 6);
252b5132
RH
4693 /* We want to close the noreorder block as soon as possible, so
4694 that later insns are available for delay slot filling. */
7d10b47d 4695 end_noreorder ();
252b5132
RH
4696 }
4697 else
4698 {
4699 expr1.X_add_number = 8;
67c0d1eb
RS
4700 macro_build (&expr1, "bne", "s,t,p", sreg, AT);
4701 macro_build (NULL, "nop", "", 0);
252b5132
RH
4702
4703 /* We want to close the noreorder block as soon as possible, so
4704 that later insns are available for delay slot filling. */
7d10b47d 4705 end_noreorder ();
252b5132 4706
67c0d1eb 4707 macro_build (NULL, "break", "c", 6);
252b5132 4708 }
67c0d1eb 4709 macro_build (NULL, s, "d", dreg);
252b5132
RH
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)
67c0d1eb 4752 macro_build (NULL, "teq", "s,t,q", 0, 0, 7);
252b5132 4753 else
67c0d1eb 4754 macro_build (NULL, "break", "c", 7);
8fc2e39e 4755 break;
252b5132
RH
4756 }
4757 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4758 {
4759 if (strcmp (s2, "mflo") == 0)
67c0d1eb 4760 move_register (dreg, sreg);
252b5132 4761 else
67c0d1eb 4762 move_register (dreg, 0);
8fc2e39e 4763 break;
252b5132
RH
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 {
67c0d1eb 4771 macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg);
252b5132
RH
4772 }
4773 else
67c0d1eb 4774 move_register (dreg, 0);
8fc2e39e 4775 break;
252b5132
RH
4776 }
4777
8fc2e39e 4778 used_at = 1;
67c0d1eb
RS
4779 load_register (AT, &imm_expr, dbl);
4780 macro_build (NULL, s, "z,s,t", sreg, AT);
4781 macro_build (NULL, s2, "d", dreg);
252b5132
RH
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:
7d10b47d 4800 start_noreorder ();
252b5132
RH
4801 if (mips_trap)
4802 {
67c0d1eb
RS
4803 macro_build (NULL, "teq", "s,t,q", treg, 0, 7);
4804 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
4805 /* We want to close the noreorder block as soon as possible, so
4806 that later insns are available for delay slot filling. */
7d10b47d 4807 end_noreorder ();
252b5132
RH
4808 }
4809 else
4810 {
4811 expr1.X_add_number = 8;
67c0d1eb
RS
4812 macro_build (&expr1, "bne", "s,t,p", treg, 0);
4813 macro_build (NULL, s, "z,s,t", sreg, treg);
252b5132
RH
4814
4815 /* We want to close the noreorder block as soon as possible, so
4816 that later insns are available for delay slot filling. */
7d10b47d 4817 end_noreorder ();
67c0d1eb 4818 macro_build (NULL, "break", "c", 7);
252b5132 4819 }
67c0d1eb 4820 macro_build (NULL, s2, "d", dreg);
8fc2e39e 4821 break;
252b5132 4822
1abe91b1
MR
4823 case M_DLCA_AB:
4824 dbl = 1;
4825 case M_LCA_AB:
4826 call = 1;
4827 goto do_la;
252b5132
RH
4828 case M_DLA_AB:
4829 dbl = 1;
4830 case M_LA_AB:
1abe91b1 4831 do_la:
252b5132
RH
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
3bec30a8
TS
4835 if (dbl && HAVE_32BIT_GPRS)
4836 as_warn (_("dla used to load 32-bit register"));
4837
c90bbe5b 4838 if (! dbl && HAVE_64BIT_OBJECTS)
3bec30a8
TS
4839 as_warn (_("la used to load 64-bit address"));
4840
0c11417f
MR
4841 if (offset_expr.X_op == O_constant
4842 && offset_expr.X_add_number >= -0x8000
4843 && offset_expr.X_add_number < 0x8000)
4844 {
aed1a261 4845 macro_build (&offset_expr, ADDRESS_ADDI_INSN,
17a2f251 4846 "t,r,j", treg, sreg, BFD_RELOC_LO16);
8fc2e39e 4847 break;
0c11417f
MR
4848 }
4849
b8285c27 4850 if (!mips_opts.noat && (treg == breg))
afdbd6d0
CD
4851 {
4852 tempreg = AT;
4853 used_at = 1;
4854 }
4855 else
4856 {
4857 tempreg = treg;
afdbd6d0
CD
4858 }
4859
252b5132
RH
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
252b5132 4867 if (offset_expr.X_op == O_constant)
aed1a261 4868 load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES);
252b5132
RH
4869 else if (mips_pic == NO_PIC)
4870 {
d6bc6245 4871 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 4872 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
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,
d6bc6245 4877 so we may as well always use the latter form.
76b3015f 4878
6caf9ef4
TS
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. */
aed1a261 4898 if (HAVE_64BIT_SYMBOLS)
252b5132 4899 {
6caf9ef4
TS
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 }
d6bc6245 4908
b8285c27 4909 if (used_at == 0 && !mips_opts.noat)
98d3f06f 4910 {
67c0d1eb 4911 macro_build (&offset_expr, "lui", "t,u",
17a2f251 4912 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 4913 macro_build (&offset_expr, "lui", "t,u",
17a2f251 4914 AT, BFD_RELOC_HI16_S);
67c0d1eb 4915 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 4916 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb 4917 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 4918 AT, AT, BFD_RELOC_LO16);
67c0d1eb
RS
4919 macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0);
4920 macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT);
98d3f06f
KH
4921 used_at = 1;
4922 }
4923 else
4924 {
67c0d1eb 4925 macro_build (&offset_expr, "lui", "t,u",
17a2f251 4926 tempreg, BFD_RELOC_MIPS_HIGHEST);
67c0d1eb 4927 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 4928 tempreg, tempreg, BFD_RELOC_MIPS_HIGHER);
67c0d1eb
RS
4929 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
4930 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 4931 tempreg, tempreg, BFD_RELOC_HI16_S);
67c0d1eb
RS
4932 macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16);
4933 macro_build (&offset_expr, "daddiu", "t,r,j",
17a2f251 4934 tempreg, tempreg, BFD_RELOC_LO16);
98d3f06f 4935 }
6caf9ef4
TS
4936
4937 if (mips_relax.sequence)
4938 relax_end ();
98d3f06f
KH
4939 }
4940 else
4941 {
4942 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 4943 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
98d3f06f 4944 {
4d7206a2 4945 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
4946 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
4947 tempreg, mips_gp_register, BFD_RELOC_GPREL16);
4d7206a2 4948 relax_switch ();
98d3f06f 4949 }
6943caf0
ILT
4950 if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number))
4951 as_bad (_("offset too large"));
67c0d1eb
RS
4952 macro_build_lui (&offset_expr, tempreg);
4953 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
4954 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2
RS
4955 if (mips_relax.sequence)
4956 relax_end ();
98d3f06f 4957 }
252b5132 4958 }
f5040a92 4959 else if (mips_pic == SVR4_PIC && ! mips_big_got && ! HAVE_NEWABI)
252b5132 4960 {
9117d219
NC
4961 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
4962
252b5132
RH
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)
1abe91b1 4966 or for lca or if tempreg is PIC_CALL_REG
9117d219 4967 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
252b5132
RH
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
ed6fb7bd 4990 addiu instruction.
ed6fb7bd
SC
4991 */
4992
4d7206a2 4993 if (offset_expr.X_add_number == 0)
252b5132 4994 {
4d7206a2
RS
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);
67c0d1eb
RS
4999 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5000 lw_reloc_type, mips_gp_register);
4d7206a2 5001 if (breg != 0)
252b5132
RH
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. */
269137b2 5006 load_delay_nop ();
252b5132 5007 }
4d7206a2 5008 relax_switch ();
67c0d1eb
RS
5009 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5010 tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register);
269137b2 5011 load_delay_nop ();
67c0d1eb
RS
5012 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5013 tempreg, tempreg, BFD_RELOC_LO16);
4d7206a2 5014 relax_end ();
252b5132
RH
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 }
4d7206a2
RS
5019 else if (offset_expr.X_add_number >= -0x8000
5020 && offset_expr.X_add_number < 0x8000)
252b5132 5021 {
67c0d1eb 5022 load_got_offset (tempreg, &offset_expr);
269137b2 5023 load_delay_nop ();
67c0d1eb 5024 add_got_offset (tempreg, &offset_expr);
252b5132
RH
5025 }
5026 else
5027 {
4d7206a2
RS
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;
67c0d1eb 5031 load_got_offset (tempreg, &offset_expr);
f6a22291 5032 offset_expr.X_add_number = expr1.X_add_number;
252b5132
RH
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. */
67c0d1eb 5040 if (breg == treg)
252b5132 5041 {
269137b2 5042 load_delay_nop ();
67c0d1eb 5043 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5044 treg, AT, breg);
252b5132
RH
5045 breg = 0;
5046 tempreg = treg;
252b5132 5047 }
f6a22291 5048 add_got_offset_hilo (tempreg, &offset_expr, AT);
252b5132
RH
5049 used_at = 1;
5050 }
5051 }
f5040a92
AO
5052 else if (mips_pic == SVR4_PIC && ! mips_big_got && HAVE_NEWABI)
5053 {
67c0d1eb 5054 int add_breg_early = 0;
f5040a92
AO
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)
1abe91b1 5060 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
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
f5040a92
AO
5079 if (offset_expr.X_add_number)
5080 {
4d7206a2 5081 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
5082 offset_expr.X_add_number = 0;
5083
4d7206a2 5084 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5085 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5086 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
5087
5088 if (expr1.X_add_number >= -0x8000
5089 && expr1.X_add_number < 0x8000)
5090 {
67c0d1eb
RS
5091 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
5092 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 5093 }
ecd13cd3 5094 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92
AO
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);
67c0d1eb
RS
5110 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
5111 treg, AT, breg);
f5040a92 5112 dreg = treg;
67c0d1eb 5113 add_breg_early = 1;
f5040a92
AO
5114 }
5115
f6a22291 5116 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 5117 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5118 dreg, dreg, AT);
f5040a92 5119
f5040a92
AO
5120 used_at = 1;
5121 }
5122 else
5123 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5124
4d7206a2 5125 relax_switch ();
f5040a92
AO
5126 offset_expr.X_add_number = expr1.X_add_number;
5127
67c0d1eb
RS
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)
f5040a92 5131 {
67c0d1eb 5132 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
f899b4b8 5133 treg, tempreg, breg);
f5040a92
AO
5134 breg = 0;
5135 tempreg = treg;
5136 }
4d7206a2 5137 relax_end ();
f5040a92 5138 }
4d7206a2 5139 else if (breg == 0 && (call || tempreg == PIC_CALL_REG))
f5040a92 5140 {
4d7206a2 5141 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5142 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5143 BFD_RELOC_MIPS_CALL16, mips_gp_register);
4d7206a2 5144 relax_switch ();
67c0d1eb
RS
5145 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5146 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
4d7206a2 5147 relax_end ();
f5040a92 5148 }
4d7206a2 5149 else
f5040a92 5150 {
67c0d1eb
RS
5151 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5152 BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
f5040a92
AO
5153 }
5154 }
5155 else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
252b5132 5156 {
67c0d1eb 5157 int gpdelay;
9117d219
NC
5158 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5159 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
ed6fb7bd 5160 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
252b5132
RH
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)
1abe91b1 5167 or for lca or if tempreg is PIC_CALL_REG
9117d219
NC
5168 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5169 addu $tempreg,$tempreg,$gp
5170 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
252b5132
RH
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
f5040a92 5201 */
438c16b8 5202
252b5132
RH
5203 expr1.X_add_number = offset_expr.X_add_number;
5204 offset_expr.X_add_number = 0;
4d7206a2 5205 relax_start (offset_expr.X_add_symbol);
67c0d1eb 5206 gpdelay = reg_needs_delay (mips_gp_register);
1abe91b1
MR
5207 if (expr1.X_add_number == 0 && breg == 0
5208 && (call || tempreg == PIC_CALL_REG))
9117d219
NC
5209 {
5210 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5211 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5212 }
67c0d1eb
RS
5213 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5214 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5215 tempreg, tempreg, mips_gp_register);
67c0d1eb 5216 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 5217 tempreg, lw_reloc_type, tempreg);
252b5132
RH
5218 if (expr1.X_add_number == 0)
5219 {
67c0d1eb 5220 if (breg != 0)
252b5132
RH
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. */
269137b2 5225 load_delay_nop ();
252b5132 5226 }
252b5132
RH
5227 }
5228 else if (expr1.X_add_number >= -0x8000
5229 && expr1.X_add_number < 0x8000)
5230 {
269137b2 5231 load_delay_nop ();
67c0d1eb 5232 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 5233 tempreg, tempreg, BFD_RELOC_LO16);
252b5132
RH
5234 }
5235 else
5236 {
67c0d1eb 5237 int dreg;
252b5132
RH
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)
67c0d1eb 5247 dreg = tempreg;
252b5132
RH
5248 else
5249 {
5250 assert (tempreg == AT);
269137b2 5251 load_delay_nop ();
67c0d1eb 5252 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5253 treg, AT, breg);
252b5132 5254 dreg = treg;
252b5132
RH
5255 }
5256
f6a22291 5257 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 5258 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
252b5132 5259
252b5132
RH
5260 used_at = 1;
5261 }
4d7206a2
RS
5262 offset_expr.X_add_number =
5263 ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000;
5264 relax_switch ();
252b5132 5265
67c0d1eb 5266 if (gpdelay)
252b5132
RH
5267 {
5268 /* This is needed because this instruction uses $gp, but
f5040a92 5269 the first instruction on the main stream does not. */
67c0d1eb 5270 macro_build (NULL, "nop", "");
252b5132 5271 }
ed6fb7bd 5272
67c0d1eb
RS
5273 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5274 local_reloc_type, mips_gp_register);
f5040a92 5275 if (expr1.X_add_number >= -0x8000
252b5132
RH
5276 && expr1.X_add_number < 0x8000)
5277 {
269137b2 5278 load_delay_nop ();
67c0d1eb
RS
5279 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5280 tempreg, tempreg, BFD_RELOC_LO16);
252b5132 5281 /* FIXME: If add_number is 0, and there was no base
f5040a92
AO
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. */
252b5132
RH
5286 }
5287 else
5288 {
5289 if (breg == treg)
5290 {
5291 /* We must add in the base register now, as in the
f5040a92 5292 external symbol case. */
252b5132 5293 assert (tempreg == AT);
269137b2 5294 load_delay_nop ();
67c0d1eb 5295 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5296 treg, AT, breg);
252b5132
RH
5297 tempreg = treg;
5298 /* We set breg to 0 because we have arranged to add
f5040a92 5299 it in in both cases. */
252b5132
RH
5300 breg = 0;
5301 }
5302
67c0d1eb
RS
5303 macro_build_lui (&expr1, AT);
5304 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 5305 AT, AT, BFD_RELOC_LO16);
67c0d1eb 5306 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5307 tempreg, tempreg, AT);
8fc2e39e 5308 used_at = 1;
252b5132 5309 }
4d7206a2 5310 relax_end ();
252b5132 5311 }
f5040a92
AO
5312 else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
5313 {
f5040a92
AO
5314 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5315 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
67c0d1eb 5316 int add_breg_early = 0;
f5040a92
AO
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)
1abe91b1 5323 or for lca or if tempreg is PIC_CALL_REG
f5040a92
AO
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
4d7206a2 5349 relax_start (offset_expr.X_add_symbol);
f5040a92 5350
4d7206a2 5351 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
5352 offset_expr.X_add_number = 0;
5353
1abe91b1
MR
5354 if (expr1.X_add_number == 0 && breg == 0
5355 && (call || tempreg == PIC_CALL_REG))
f5040a92
AO
5356 {
5357 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5358 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5359 }
67c0d1eb
RS
5360 macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type);
5361 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5362 tempreg, tempreg, mips_gp_register);
67c0d1eb
RS
5363 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5364 tempreg, lw_reloc_type, tempreg);
f5040a92
AO
5365
5366 if (expr1.X_add_number == 0)
4d7206a2 5367 ;
f5040a92
AO
5368 else if (expr1.X_add_number >= -0x8000
5369 && expr1.X_add_number < 0x8000)
5370 {
67c0d1eb 5371 macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j",
17a2f251 5372 tempreg, tempreg, BFD_RELOC_LO16);
f5040a92 5373 }
ecd13cd3 5374 else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000))
f5040a92
AO
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);
67c0d1eb 5390 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5391 treg, AT, breg);
f5040a92 5392 dreg = treg;
67c0d1eb 5393 add_breg_early = 1;
f5040a92
AO
5394 }
5395
f6a22291 5396 load_register (AT, &expr1, HAVE_64BIT_ADDRESSES);
67c0d1eb 5397 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT);
f5040a92 5398
f5040a92
AO
5399 used_at = 1;
5400 }
5401 else
5402 as_bad (_("PIC code offset overflow (max 32 signed bits)"));
5403
4d7206a2 5404 relax_switch ();
f5040a92 5405 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
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)
f5040a92 5411 {
67c0d1eb 5412 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5413 treg, tempreg, breg);
f5040a92
AO
5414 breg = 0;
5415 tempreg = treg;
5416 }
4d7206a2 5417 relax_end ();
f5040a92 5418 }
252b5132
RH
5419 else
5420 abort ();
5421
5422 if (breg != 0)
aed1a261 5423 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg);
252b5132
RH
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)
67c0d1eb 5431 macro_build (&offset_expr, "j", "a");
252b5132 5432 else
67c0d1eb 5433 macro_build (&offset_expr, "b", "p");
8fc2e39e 5434 break;
252b5132
RH
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:
3e722fb5 5443 if (mips_pic == NO_PIC)
67c0d1eb 5444 macro_build (NULL, "jalr", "d,s", dreg, sreg);
252b5132
RH
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"));
bdaaa2e1 5449
67c0d1eb 5450 macro_build (NULL, "jalr", "d,s", dreg, sreg);
6478892d 5451 if (! HAVE_NEWABI)
252b5132 5452 {
6478892d
TS
5453 if (mips_cprestore_offset < 0)
5454 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5455 else
5456 {
7a621144
DJ
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 }
6478892d 5469 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 5470 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 5471 mips_gp_register,
256ab948
TS
5472 mips_frame_reg,
5473 HAVE_64BIT_ADDRESSES);
6478892d 5474 }
252b5132
RH
5475 }
5476 }
5477 else
5478 abort ();
5479
8fc2e39e 5480 break;
252b5132
RH
5481
5482 case M_JAL_A:
5483 if (mips_pic == NO_PIC)
67c0d1eb 5484 macro_build (&offset_expr, "jal", "a");
252b5132
RH
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
f9419b05 5491 jalr $ra,$25
252b5132
RH
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
f9419b05 5500 jalr $ra,$25
252b5132
RH
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)
f9419b05 5507 jalr $ra,$25
252b5132 5508 nop
438c16b8 5509 lw $gp,cprestore($sp)
f5040a92
AO
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. */
438c16b8 5515 if (HAVE_NEWABI)
252b5132 5516 {
f5040a92
AO
5517 if (! mips_big_got)
5518 {
4d7206a2 5519 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5520 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5521 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
f5040a92 5522 mips_gp_register);
4d7206a2 5523 relax_switch ();
67c0d1eb
RS
5524 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5525 PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP,
4d7206a2
RS
5526 mips_gp_register);
5527 relax_end ();
f5040a92
AO
5528 }
5529 else
5530 {
4d7206a2 5531 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
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);
4d7206a2 5539 relax_switch ();
67c0d1eb
RS
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,
17a2f251 5545 BFD_RELOC_MIPS_GOT_OFST);
4d7206a2 5546 relax_end ();
f5040a92 5547 }
684022ea 5548
67c0d1eb 5549 macro_build_jalr (&offset_expr);
252b5132
RH
5550 }
5551 else
5552 {
4d7206a2 5553 relax_start (offset_expr.X_add_symbol);
438c16b8
TS
5554 if (! mips_big_got)
5555 {
67c0d1eb
RS
5556 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5557 PIC_CALL_REG, BFD_RELOC_MIPS_CALL16,
17a2f251 5558 mips_gp_register);
269137b2 5559 load_delay_nop ();
4d7206a2 5560 relax_switch ();
438c16b8 5561 }
252b5132 5562 else
252b5132 5563 {
67c0d1eb
RS
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);
269137b2 5574 load_delay_nop ();
4d7206a2 5575 relax_switch ();
67c0d1eb
RS
5576 if (gpdelay)
5577 macro_build (NULL, "nop", "");
252b5132 5578 }
67c0d1eb
RS
5579 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
5580 PIC_CALL_REG, BFD_RELOC_MIPS_GOT16,
4d7206a2 5581 mips_gp_register);
269137b2 5582 load_delay_nop ();
67c0d1eb
RS
5583 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j",
5584 PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16);
4d7206a2 5585 relax_end ();
67c0d1eb 5586 macro_build_jalr (&offset_expr);
438c16b8 5587
6478892d
TS
5588 if (mips_cprestore_offset < 0)
5589 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5590 else
5591 {
7a621144
DJ
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 }
6478892d 5604 if (mips_opts.noreorder)
67c0d1eb 5605 macro_build (NULL, "nop", "");
6478892d 5606 expr1.X_add_number = mips_cprestore_offset;
67c0d1eb 5607 macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN,
f899b4b8 5608 mips_gp_register,
256ab948
TS
5609 mips_frame_reg,
5610 HAVE_64BIT_ADDRESSES);
6478892d 5611 }
252b5132
RH
5612 }
5613 }
252b5132
RH
5614 else
5615 abort ();
5616
8fc2e39e 5617 break;
252b5132
RH
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";
bdaaa2e1 5636 /* Itbl support may require additional care here. */
252b5132
RH
5637 coproc = 1;
5638 goto ld;
5639 case M_LWC1_AB:
5640 s = "lwc1";
bdaaa2e1 5641 /* Itbl support may require additional care here. */
252b5132
RH
5642 coproc = 1;
5643 goto ld;
5644 case M_LWC2_AB:
5645 s = "lwc2";
bdaaa2e1 5646 /* Itbl support may require additional care here. */
252b5132
RH
5647 coproc = 1;
5648 goto ld;
5649 case M_LWC3_AB:
5650 s = "lwc3";
bdaaa2e1 5651 /* Itbl support may require additional care here. */
252b5132
RH
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:
fef14a42 5663 if (mips_opts.arch == CPU_R4650)
252b5132
RH
5664 {
5665 as_bad (_("opcode not supported on this processor"));
8fc2e39e 5666 break;
252b5132
RH
5667 }
5668 s = "ldc1";
bdaaa2e1 5669 /* Itbl support may require additional care here. */
252b5132
RH
5670 coproc = 1;
5671 goto ld;
5672 case M_LDC2_AB:
5673 s = "ldc2";
bdaaa2e1 5674 /* Itbl support may require additional care here. */
252b5132
RH
5675 coproc = 1;
5676 goto ld;
5677 case M_LDC3_AB:
5678 s = "ldc3";
bdaaa2e1 5679 /* Itbl support may require additional care here. */
252b5132
RH
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:
8fc2e39e 5699 if (breg == treg || coproc || lr)
252b5132
RH
5700 {
5701 tempreg = AT;
5702 used_at = 1;
5703 }
5704 else
5705 {
5706 tempreg = treg;
252b5132
RH
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";
bdaaa2e1 5720 /* Itbl support may require additional care here. */
252b5132
RH
5721 coproc = 1;
5722 goto st;
5723 case M_SWC1_AB:
5724 s = "swc1";
bdaaa2e1 5725 /* Itbl support may require additional care here. */
252b5132
RH
5726 coproc = 1;
5727 goto st;
5728 case M_SWC2_AB:
5729 s = "swc2";
bdaaa2e1 5730 /* Itbl support may require additional care here. */
252b5132
RH
5731 coproc = 1;
5732 goto st;
5733 case M_SWC3_AB:
5734 s = "swc3";
bdaaa2e1 5735 /* Itbl support may require additional care here. */
252b5132
RH
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:
fef14a42 5751 if (mips_opts.arch == CPU_R4650)
252b5132
RH
5752 {
5753 as_bad (_("opcode not supported on this processor"));
8fc2e39e 5754 break;
252b5132
RH
5755 }
5756 s = "sdc1";
5757 coproc = 1;
bdaaa2e1 5758 /* Itbl support may require additional care here. */
252b5132
RH
5759 goto st;
5760 case M_SDC2_AB:
5761 s = "sdc2";
bdaaa2e1 5762 /* Itbl support may require additional care here. */
252b5132
RH
5763 coproc = 1;
5764 goto st;
5765 case M_SDC3_AB:
5766 s = "sdc3";
bdaaa2e1 5767 /* Itbl support may require additional care here. */
252b5132
RH
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:
8fc2e39e
TS
5776 tempreg = AT;
5777 used_at = 1;
252b5132 5778 ld_st:
bdaaa2e1 5779 /* Itbl support may require additional care here. */
252b5132
RH
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
2051e8c4
MR
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
252b5132
RH
5805 /* A constant expression in PIC code can be handled just as it
5806 is in non PIC code. */
aed1a261
RS
5807 if (offset_expr.X_op == O_constant)
5808 {
aed1a261
RS
5809 expr1.X_add_number = ((offset_expr.X_add_number + 0x8000)
5810 & ~(bfd_vma) 0xffff);
2051e8c4 5811 normalize_address_expr (&expr1);
aed1a261
RS
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)
252b5132
RH
5819 {
5820 /* If this is a reference to a GP relative symbol, and there
5821 is no base register, we want
cdf6fd85 5822 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
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
cdf6fd85 5832 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
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)
d6bc6245 5837 With a constant we always use the latter case.
76b3015f 5838
d6bc6245
TS
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)
6373ee54 5872
6caf9ef4 5873 For GP relative symbols in 64bit address space we can use
aed1a261
RS
5874 the same sequence as in 32bit address space. */
5875 if (HAVE_64BIT_SYMBOLS)
d6bc6245 5876 {
aed1a261 5877 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4
TS
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 }
d6bc6245 5895
b8285c27 5896 if (used_at == 0 && !mips_opts.noat)
d6bc6245 5897 {
67c0d1eb
RS
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);
d6bc6245 5904 if (breg != 0)
67c0d1eb
RS
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);
d6bc6245
TS
5910 used_at = 1;
5911 }
5912 else
5913 {
67c0d1eb
RS
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);
d6bc6245 5922 if (breg != 0)
67c0d1eb 5923 macro_build (NULL, "daddu", "d,v,t",
17a2f251 5924 tempreg, tempreg, breg);
67c0d1eb 5925 macro_build (&offset_expr, s, fmt, treg,
17a2f251 5926 BFD_RELOC_LO16, tempreg);
d6bc6245 5927 }
6caf9ef4
TS
5928
5929 if (mips_relax.sequence)
5930 relax_end ();
8fc2e39e 5931 break;
d6bc6245 5932 }
256ab948 5933
252b5132
RH
5934 if (breg == 0)
5935 {
67c0d1eb 5936 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 5937 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 5938 {
4d7206a2 5939 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
5940 macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16,
5941 mips_gp_register);
4d7206a2 5942 relax_switch ();
252b5132 5943 }
67c0d1eb
RS
5944 macro_build_lui (&offset_expr, tempreg);
5945 macro_build (&offset_expr, s, fmt, treg,
17a2f251 5946 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
5947 if (mips_relax.sequence)
5948 relax_end ();
252b5132
RH
5949 }
5950 else
5951 {
67c0d1eb 5952 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 5953 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 5954 {
4d7206a2 5955 relax_start (offset_expr.X_add_symbol);
67c0d1eb 5956 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5957 tempreg, breg, mips_gp_register);
67c0d1eb 5958 macro_build (&offset_expr, s, fmt, treg,
17a2f251 5959 BFD_RELOC_GPREL16, tempreg);
4d7206a2 5960 relax_switch ();
252b5132 5961 }
67c0d1eb
RS
5962 macro_build_lui (&offset_expr, tempreg);
5963 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 5964 tempreg, tempreg, breg);
67c0d1eb 5965 macro_build (&offset_expr, s, fmt, treg,
17a2f251 5966 BFD_RELOC_LO16, tempreg);
4d7206a2
RS
5967 if (mips_relax.sequence)
5968 relax_end ();
252b5132
RH
5969 }
5970 }
5971 else if (mips_pic == SVR4_PIC && ! mips_big_got)
5972 {
ed6fb7bd 5973 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
f9419b05 5974
252b5132
RH
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)
f5040a92
AO
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
252b5132
RH
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);
f5040a92
AO
5996 if (HAVE_NEWABI)
5997 {
67c0d1eb
RS
5998 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
5999 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 6000 if (breg != 0)
67c0d1eb 6001 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6002 tempreg, tempreg, breg);
67c0d1eb 6003 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6004 BFD_RELOC_MIPS_GOT_OFST, tempreg);
f5040a92
AO
6005 break;
6006 }
252b5132
RH
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)"));
67c0d1eb
RS
6012 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6013 lw_reloc_type, mips_gp_register);
269137b2 6014 load_delay_nop ();
4d7206a2
RS
6015 relax_start (offset_expr.X_add_symbol);
6016 relax_switch ();
67c0d1eb
RS
6017 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6018 tempreg, BFD_RELOC_LO16);
4d7206a2 6019 relax_end ();
252b5132 6020 if (breg != 0)
67c0d1eb 6021 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6022 tempreg, tempreg, breg);
67c0d1eb 6023 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 6024 }
f5040a92 6025 else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI)
252b5132 6026 {
67c0d1eb 6027 int gpdelay;
252b5132
RH
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
f5040a92 6044 in which we are not using $at). */
252b5132
RH
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)"));
67c0d1eb 6051 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 6052 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6053 macro_build (&offset_expr, "lui", "t,u", tempreg,
17a2f251 6054 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
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);
4d7206a2 6059 relax_switch ();
67c0d1eb
RS
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);
269137b2 6064 load_delay_nop ();
67c0d1eb
RS
6065 macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg,
6066 tempreg, BFD_RELOC_LO16);
4d7206a2
RS
6067 relax_end ();
6068
252b5132 6069 if (breg != 0)
67c0d1eb 6070 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6071 tempreg, tempreg, breg);
67c0d1eb 6072 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
252b5132 6073 }
f5040a92
AO
6074 else if (mips_pic == SVR4_PIC && HAVE_NEWABI)
6075 {
f5040a92
AO
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);
4d7206a2 6085 expr1.X_add_number = offset_expr.X_add_number;
f5040a92
AO
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)"));
4d7206a2 6090 relax_start (offset_expr.X_add_symbol);
67c0d1eb 6091 macro_build (&offset_expr, "lui", "t,u", tempreg,
17a2f251 6092 BFD_RELOC_MIPS_GOT_HI16);
67c0d1eb
RS
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);
f5040a92 6097 if (breg != 0)
67c0d1eb 6098 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6099 tempreg, tempreg, breg);
67c0d1eb 6100 macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg);
684022ea 6101
4d7206a2 6102 relax_switch ();
f5040a92 6103 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
6104 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg,
6105 BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
f5040a92 6106 if (breg != 0)
67c0d1eb 6107 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6108 tempreg, tempreg, breg);
67c0d1eb 6109 macro_build (&offset_expr, s, fmt, treg,
17a2f251 6110 BFD_RELOC_MIPS_GOT_OFST, tempreg);
4d7206a2 6111 relax_end ();
f5040a92 6112 }
252b5132
RH
6113 else
6114 abort ();
6115
252b5132
RH
6116 break;
6117
6118 case M_LI:
6119 case M_LI_S:
67c0d1eb 6120 load_register (treg, &imm_expr, 0);
8fc2e39e 6121 break;
252b5132
RH
6122
6123 case M_DLI:
67c0d1eb 6124 load_register (treg, &imm_expr, 1);
8fc2e39e 6125 break;
252b5132
RH
6126
6127 case M_LI_SS:
6128 if (imm_expr.X_op == O_constant)
6129 {
8fc2e39e 6130 used_at = 1;
67c0d1eb
RS
6131 load_register (AT, &imm_expr, 0);
6132 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
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);
67c0d1eb 6142 macro_build (&offset_expr, "lwc1", "T,o(b)", treg,
17a2f251 6143 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 6144 break;
252b5132
RH
6145 }
6146
6147 case M_LI_D:
ca4e0257
RS
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. */
252b5132
RH
6152 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6153 {
ca4e0257 6154 if (HAVE_64BIT_GPRS)
67c0d1eb 6155 load_register (treg, &imm_expr, 1);
252b5132
RH
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)
67c0d1eb 6172 load_register (hreg, &imm_expr, 0);
252b5132
RH
6173 if (lreg <= 31)
6174 {
6175 if (offset_expr.X_op == O_absent)
67c0d1eb 6176 move_register (lreg, 0);
252b5132
RH
6177 else
6178 {
6179 assert (offset_expr.X_op == O_constant);
67c0d1eb 6180 load_register (lreg, &offset_expr, 0);
252b5132
RH
6181 }
6182 }
6183 }
8fc2e39e 6184 break;
252b5132
RH
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 {
67c0d1eb 6191 macro_build_lui (&offset_expr, AT);
8fc2e39e 6192 used_at = 1;
252b5132
RH
6193 }
6194 else if (mips_pic == SVR4_PIC)
6195 {
67c0d1eb
RS
6196 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6197 BFD_RELOC_MIPS_GOT16, mips_gp_register);
8fc2e39e 6198 used_at = 1;
252b5132 6199 }
252b5132
RH
6200 else
6201 abort ();
bdaaa2e1 6202
252b5132 6203 /* Now we load the register(s). */
ca4e0257 6204 if (HAVE_64BIT_GPRS)
8fc2e39e
TS
6205 {
6206 used_at = 1;
6207 macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT);
6208 }
252b5132
RH
6209 else
6210 {
8fc2e39e 6211 used_at = 1;
67c0d1eb 6212 macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT);
f9419b05 6213 if (treg != RA)
252b5132
RH
6214 {
6215 /* FIXME: How in the world do we deal with the possible
6216 overflow here? */
6217 offset_expr.X_add_number += 4;
67c0d1eb 6218 macro_build (&offset_expr, "lw", "t,o(b)",
17a2f251 6219 treg + 1, BFD_RELOC_LO16, AT);
252b5132
RH
6220 }
6221 }
252b5132
RH
6222 break;
6223
6224 case M_LI_DD:
ca4e0257
RS
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. */
252b5132
RH
6230 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6231 {
8fc2e39e 6232 used_at = 1;
67c0d1eb 6233 load_register (AT, &imm_expr, HAVE_64BIT_FPRS);
ca4e0257
RS
6234 if (HAVE_64BIT_FPRS)
6235 {
6236 assert (HAVE_64BIT_GPRS);
67c0d1eb 6237 macro_build (NULL, "dmtc1", "t,S", AT, treg);
ca4e0257 6238 }
252b5132
RH
6239 else
6240 {
67c0d1eb 6241 macro_build (NULL, "mtc1", "t,G", AT, treg + 1);
252b5132 6242 if (offset_expr.X_op == O_absent)
67c0d1eb 6243 macro_build (NULL, "mtc1", "t,G", 0, treg);
252b5132
RH
6244 else
6245 {
6246 assert (offset_expr.X_op == O_constant);
67c0d1eb
RS
6247 load_register (AT, &offset_expr, 0);
6248 macro_build (NULL, "mtc1", "t,G", AT, treg);
252b5132
RH
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 {
e7af610e 6259 if (mips_opts.isa != ISA_MIPS1)
252b5132 6260 {
67c0d1eb 6261 macro_build (&offset_expr, "ldc1", "T,o(b)", treg,
17a2f251 6262 BFD_RELOC_MIPS_LITERAL, mips_gp_register);
8fc2e39e 6263 break;
252b5132 6264 }
c9914766 6265 breg = mips_gp_register;
252b5132
RH
6266 r = BFD_RELOC_MIPS_LITERAL;
6267 goto dob;
6268 }
6269 else
6270 {
6271 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
8fc2e39e 6272 used_at = 1;
252b5132 6273 if (mips_pic == SVR4_PIC)
67c0d1eb
RS
6274 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT,
6275 BFD_RELOC_MIPS_GOT16, mips_gp_register);
252b5132
RH
6276 else
6277 {
6278 /* FIXME: This won't work for a 64 bit address. */
67c0d1eb 6279 macro_build_lui (&offset_expr, AT);
252b5132 6280 }
bdaaa2e1 6281
e7af610e 6282 if (mips_opts.isa != ISA_MIPS1)
252b5132 6283 {
67c0d1eb
RS
6284 macro_build (&offset_expr, "ldc1", "T,o(b)",
6285 treg, BFD_RELOC_LO16, AT);
252b5132
RH
6286 break;
6287 }
6288 breg = AT;
6289 r = BFD_RELOC_LO16;
6290 goto dob;
6291 }
6292
6293 case M_L_DOB:
fef14a42 6294 if (mips_opts.arch == CPU_R4650)
252b5132
RH
6295 {
6296 as_bad (_("opcode not supported on this processor"));
8fc2e39e 6297 break;
252b5132
RH
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:
e7af610e 6303 assert (mips_opts.isa == ISA_MIPS1);
67c0d1eb 6304 macro_build (&offset_expr, "lwc1", "T,o(b)",
17a2f251 6305 target_big_endian ? treg + 1 : treg, r, breg);
252b5132
RH
6306 /* FIXME: A possible overflow which I don't know how to deal
6307 with. */
6308 offset_expr.X_add_number += 4;
67c0d1eb 6309 macro_build (&offset_expr, "lwc1", "T,o(b)",
17a2f251 6310 target_big_endian ? treg : treg + 1, r, breg);
252b5132
RH
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 */
fef14a42 6325 if (mips_opts.arch == CPU_R4650)
252b5132
RH
6326 {
6327 as_bad (_("opcode not supported on this processor"));
8fc2e39e 6328 break;
252b5132 6329 }
bdaaa2e1 6330 /* Itbl support may require additional care here. */
252b5132 6331 coproc = 1;
e7af610e 6332 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
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:
fef14a42 6343 if (mips_opts.arch == CPU_R4650)
252b5132
RH
6344 {
6345 as_bad (_("opcode not supported on this processor"));
8fc2e39e 6346 break;
252b5132
RH
6347 }
6348
e7af610e 6349 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
6350 {
6351 s = "sdc1";
6352 goto st;
6353 }
6354
6355 s = "swc1";
6356 fmt = "T,o(b)";
bdaaa2e1 6357 /* Itbl support may require additional care here. */
252b5132
RH
6358 coproc = 1;
6359 goto ldd_std;
6360
6361 case M_LD_AB:
ca4e0257 6362 if (HAVE_64BIT_GPRS)
252b5132
RH
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:
ca4e0257 6373 if (HAVE_64BIT_GPRS)
252b5132
RH
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
2051e8c4
MR
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
252b5132
RH
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. */
bdaaa2e1 6399 /* Itbl support may require additional care here. */
252b5132
RH
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
cdf6fd85
TS
6407 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6408 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
6409 If we have a base register, we use this
6410 addu $at,$breg,$gp
cdf6fd85
TS
6411 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6412 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
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. */
39a59cf8
MR
6420 if (offset_expr.X_op == O_symbol
6421 && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
6caf9ef4 6422 && !nopic_need_relax (offset_expr.X_add_symbol, 1))
252b5132 6423 {
4d7206a2 6424 relax_start (offset_expr.X_add_symbol);
252b5132
RH
6425 if (breg == 0)
6426 {
c9914766 6427 tempreg = mips_gp_register;
252b5132
RH
6428 }
6429 else
6430 {
67c0d1eb 6431 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t",
17a2f251 6432 AT, breg, mips_gp_register);
252b5132 6433 tempreg = AT;
252b5132
RH
6434 used_at = 1;
6435 }
6436
beae10d5 6437 /* Itbl support may require additional care here. */
67c0d1eb 6438 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 6439 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
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;
beae10d5 6446 /* Itbl support may require additional care here. */
67c0d1eb 6447 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 6448 BFD_RELOC_GPREL16, tempreg);
252b5132
RH
6449 mips_optimize = hold_mips_optimize;
6450
4d7206a2 6451 relax_switch ();
252b5132
RH
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 }
8fc2e39e 6474 used_at = 1;
67c0d1eb 6475 macro_build_lui (&offset_expr, AT);
252b5132 6476 if (breg != 0)
67c0d1eb 6477 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 6478 /* Itbl support may require additional care here. */
67c0d1eb 6479 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
17a2f251 6480 BFD_RELOC_LO16, AT);
252b5132
RH
6481 /* FIXME: How do we handle overflow here? */
6482 offset_expr.X_add_number += 4;
beae10d5 6483 /* Itbl support may require additional care here. */
67c0d1eb 6484 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
17a2f251 6485 BFD_RELOC_LO16, AT);
4d7206a2
RS
6486 if (mips_relax.sequence)
6487 relax_end ();
bdaaa2e1 6488 }
252b5132
RH
6489 else if (mips_pic == SVR4_PIC && ! mips_big_got)
6490 {
252b5132
RH
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;
252b5132
RH
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)"));
67c0d1eb 6509 load_got_offset (AT, &offset_expr);
269137b2 6510 load_delay_nop ();
252b5132 6511 if (breg != 0)
67c0d1eb 6512 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
252b5132
RH
6513
6514 /* Set mips_optimize to 2 to avoid inserting an undesired
6515 nop. */
6516 hold_mips_optimize = mips_optimize;
6517 mips_optimize = 2;
4d7206a2 6518
beae10d5 6519 /* Itbl support may require additional care here. */
4d7206a2 6520 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
6521 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
6522 BFD_RELOC_LO16, AT);
4d7206a2 6523 expr1.X_add_number += 4;
67c0d1eb
RS
6524 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
6525 BFD_RELOC_LO16, AT);
4d7206a2 6526 relax_switch ();
67c0d1eb
RS
6527 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6528 BFD_RELOC_LO16, AT);
4d7206a2 6529 offset_expr.X_add_number += 4;
67c0d1eb
RS
6530 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6531 BFD_RELOC_LO16, AT);
4d7206a2 6532 relax_end ();
252b5132 6533
4d7206a2 6534 mips_optimize = hold_mips_optimize;
252b5132
RH
6535 }
6536 else if (mips_pic == SVR4_PIC)
6537 {
67c0d1eb 6538 int gpdelay;
252b5132
RH
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)"));
67c0d1eb 6561 gpdelay = reg_needs_delay (mips_gp_register);
4d7206a2 6562 relax_start (offset_expr.X_add_symbol);
67c0d1eb
RS
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",
17a2f251 6566 AT, AT, mips_gp_register);
67c0d1eb 6567 macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)",
17a2f251 6568 AT, BFD_RELOC_MIPS_GOT_LO16, AT);
269137b2 6569 load_delay_nop ();
252b5132 6570 if (breg != 0)
67c0d1eb 6571 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 6572 /* Itbl support may require additional care here. */
67c0d1eb 6573 macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg,
17a2f251 6574 BFD_RELOC_LO16, AT);
252b5132
RH
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;
beae10d5 6581 /* Itbl support may require additional care here. */
67c0d1eb 6582 macro_build (&expr1, s, fmt, coproc ? treg : treg + 1,
17a2f251 6583 BFD_RELOC_LO16, AT);
252b5132
RH
6584 mips_optimize = hold_mips_optimize;
6585 expr1.X_add_number -= 4;
6586
4d7206a2
RS
6587 relax_switch ();
6588 offset_expr.X_add_number = expr1.X_add_number;
67c0d1eb
RS
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);
269137b2 6593 load_delay_nop ();
252b5132 6594 if (breg != 0)
67c0d1eb 6595 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT);
beae10d5 6596 /* Itbl support may require additional care here. */
67c0d1eb
RS
6597 macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg,
6598 BFD_RELOC_LO16, AT);
4d7206a2 6599 offset_expr.X_add_number += 4;
252b5132
RH
6600
6601 /* Set mips_optimize to 2 to avoid inserting an undesired
6602 nop. */
6603 hold_mips_optimize = mips_optimize;
6604 mips_optimize = 2;
beae10d5 6605 /* Itbl support may require additional care here. */
67c0d1eb
RS
6606 macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1,
6607 BFD_RELOC_LO16, AT);
252b5132 6608 mips_optimize = hold_mips_optimize;
4d7206a2 6609 relax_end ();
252b5132 6610 }
252b5132
RH
6611 else
6612 abort ();
6613
252b5132
RH
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:
ca4e0257 6622 assert (HAVE_32BIT_ADDRESSES);
67c0d1eb 6623 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
252b5132 6624 offset_expr.X_add_number += 4;
67c0d1eb 6625 macro_build (&offset_expr, s, "t,o(b)", treg + 1, BFD_RELOC_LO16, breg);
8fc2e39e 6626 break;
252b5132
RH
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
f72c8c98 6633 FIXME: Currently, we require that the user handle delays.
252b5132
RH
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???
bdaaa2e1 6640 What registers are read/set/modified?
252b5132
RH
6641
6642 If an itbl is provided to interpret cop instructions,
bdaaa2e1 6643 this knowledge can be encoded in the itbl spec. */
252b5132
RH
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. */
67c0d1eb 6659 macro_build (NULL, s, "C", ip->insn_opcode);
8fc2e39e 6660 break;
252b5132 6661
ea1fb5dc 6662 case M_MOVE:
67c0d1eb 6663 move_register (dreg, sreg);
8fc2e39e 6664 break;
ea1fb5dc 6665
252b5132
RH
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.
bdaaa2e1 6672 We may want to have the assembler assemble this value,
252b5132
RH
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? */
bdaaa2e1 6676 if (itbl_have_entries
252b5132 6677 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
beae10d5 6678 {
252b5132
RH
6679 s = ip->insn_mo->name;
6680 s2 = "cop3";
6681 coproc = ITBL_DECODE_PNUM (immed_expr);;
67c0d1eb 6682 macro_build (&immed_expr, s, "C");
8fc2e39e 6683 break;
beae10d5 6684 }
252b5132 6685 macro2 (ip);
8fc2e39e 6686 break;
252b5132 6687 }
8fc2e39e
TS
6688 if (mips_opts.noat && used_at)
6689 as_bad (_("Macro used $at after \".set noat\""));
252b5132 6690}
bdaaa2e1 6691
252b5132 6692static void
17a2f251 6693macro2 (struct mips_cl_insn *ip)
252b5132
RH
6694{
6695 register int treg, sreg, dreg, breg;
6696 int tempreg;
6697 int mask;
252b5132
RH
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;
bdaaa2e1 6711
252b5132
RH
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;
bdaaa2e1 6716
252b5132
RH
6717 expr1.X_op = O_constant;
6718 expr1.X_op_symbol = NULL;
6719 expr1.X_add_symbol = NULL;
6720 expr1.X_add_number = 1;
bdaaa2e1 6721
252b5132
RH
6722 switch (mask)
6723 {
6724#endif /* LOSING_COMPILER */
6725
6726 case M_DMUL:
6727 dbl = 1;
6728 case M_MUL:
67c0d1eb
RS
6729 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg);
6730 macro_build (NULL, "mflo", "d", dreg);
8fc2e39e 6731 break;
252b5132
RH
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. */
8fc2e39e 6739 used_at = 1;
67c0d1eb
RS
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);
252b5132
RH
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:
7d10b47d 6755 start_noreorder ();
8fc2e39e 6756 used_at = 1;
252b5132 6757 if (imm)
67c0d1eb
RS
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);
252b5132 6763 if (mips_trap)
67c0d1eb 6764 macro_build (NULL, "tne", "s,t,q", dreg, AT, 6);
252b5132
RH
6765 else
6766 {
6767 expr1.X_add_number = 8;
67c0d1eb
RS
6768 macro_build (&expr1, "beq", "s,t,p", dreg, AT);
6769 macro_build (NULL, "nop", "", 0);
6770 macro_build (NULL, "break", "c", 6);
252b5132 6771 }
7d10b47d 6772 end_noreorder ();
67c0d1eb 6773 macro_build (NULL, "mflo", "d", dreg);
252b5132
RH
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:
7d10b47d 6786 start_noreorder ();
8fc2e39e 6787 used_at = 1;
252b5132 6788 if (imm)
67c0d1eb
RS
6789 load_register (AT, &imm_expr, dbl);
6790 macro_build (NULL, dbl ? "dmultu" : "multu", "s,t",
17a2f251 6791 sreg, imm ? AT : treg);
67c0d1eb
RS
6792 macro_build (NULL, "mfhi", "d", AT);
6793 macro_build (NULL, "mflo", "d", dreg);
252b5132 6794 if (mips_trap)
67c0d1eb 6795 macro_build (NULL, "tne", "s,t,q", AT, 0, 6);
252b5132
RH
6796 else
6797 {
6798 expr1.X_add_number = 8;
67c0d1eb
RS
6799 macro_build (&expr1, "beq", "s,t,p", AT, 0);
6800 macro_build (NULL, "nop", "", 0);
6801 macro_build (NULL, "break", "c", 6);
252b5132 6802 }
7d10b47d 6803 end_noreorder ();
252b5132
RH
6804 break;
6805
771c7ce4 6806 case M_DROL:
fef14a42 6807 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
6808 {
6809 if (dreg == sreg)
6810 {
6811 tempreg = AT;
6812 used_at = 1;
6813 }
6814 else
6815 {
6816 tempreg = dreg;
82dd0097 6817 }
67c0d1eb
RS
6818 macro_build (NULL, "dnegu", "d,w", tempreg, treg);
6819 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 6820 break;
82dd0097 6821 }
8fc2e39e 6822 used_at = 1;
67c0d1eb
RS
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);
771c7ce4
TS
6827 break;
6828
252b5132 6829 case M_ROL:
fef14a42 6830 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097
CD
6831 {
6832 if (dreg == sreg)
6833 {
6834 tempreg = AT;
6835 used_at = 1;
6836 }
6837 else
6838 {
6839 tempreg = dreg;
82dd0097 6840 }
67c0d1eb
RS
6841 macro_build (NULL, "negu", "d,w", tempreg, treg);
6842 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg);
8fc2e39e 6843 break;
82dd0097 6844 }
8fc2e39e 6845 used_at = 1;
67c0d1eb
RS
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);
252b5132
RH
6850 break;
6851
771c7ce4
TS
6852 case M_DROL_I:
6853 {
6854 unsigned int rot;
82dd0097 6855 char *l, *r;
771c7ce4
TS
6856
6857 if (imm_expr.X_op != O_constant)
82dd0097 6858 as_bad (_("Improper rotate count"));
771c7ce4 6859 rot = imm_expr.X_add_number & 0x3f;
fef14a42 6860 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
60b63b72
RS
6861 {
6862 rot = (64 - rot) & 0x3f;
6863 if (rot >= 32)
67c0d1eb 6864 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
60b63b72 6865 else
67c0d1eb 6866 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
8fc2e39e 6867 break;
60b63b72 6868 }
483fc7cd 6869 if (rot == 0)
483fc7cd 6870 {
67c0d1eb 6871 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
8fc2e39e 6872 break;
483fc7cd 6873 }
82dd0097
CD
6874 l = (rot < 0x20) ? "dsll" : "dsll32";
6875 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
6876 rot &= 0x1f;
8fc2e39e 6877 used_at = 1;
67c0d1eb
RS
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);
771c7ce4
TS
6881 }
6882 break;
6883
252b5132 6884 case M_ROL_I:
771c7ce4
TS
6885 {
6886 unsigned int rot;
6887
6888 if (imm_expr.X_op != O_constant)
82dd0097 6889 as_bad (_("Improper rotate count"));
771c7ce4 6890 rot = imm_expr.X_add_number & 0x1f;
fef14a42 6891 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
60b63b72 6892 {
67c0d1eb 6893 macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
8fc2e39e 6894 break;
60b63b72 6895 }
483fc7cd 6896 if (rot == 0)
483fc7cd 6897 {
67c0d1eb 6898 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
8fc2e39e 6899 break;
483fc7cd 6900 }
8fc2e39e 6901 used_at = 1;
67c0d1eb
RS
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);
771c7ce4
TS
6905 }
6906 break;
6907
6908 case M_DROR:
fef14a42 6909 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097 6910 {
67c0d1eb 6911 macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 6912 break;
82dd0097 6913 }
8fc2e39e 6914 used_at = 1;
67c0d1eb
RS
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);
252b5132
RH
6919 break;
6920
6921 case M_ROR:
fef14a42 6922 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 6923 {
67c0d1eb 6924 macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg);
8fc2e39e 6925 break;
82dd0097 6926 }
8fc2e39e 6927 used_at = 1;
67c0d1eb
RS
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);
252b5132
RH
6932 break;
6933
771c7ce4
TS
6934 case M_DROR_I:
6935 {
6936 unsigned int rot;
82dd0097 6937 char *l, *r;
771c7ce4
TS
6938
6939 if (imm_expr.X_op != O_constant)
82dd0097 6940 as_bad (_("Improper rotate count"));
771c7ce4 6941 rot = imm_expr.X_add_number & 0x3f;
fef14a42 6942 if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch))
82dd0097
CD
6943 {
6944 if (rot >= 32)
67c0d1eb 6945 macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32);
82dd0097 6946 else
67c0d1eb 6947 macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot);
8fc2e39e 6948 break;
82dd0097 6949 }
483fc7cd 6950 if (rot == 0)
483fc7cd 6951 {
67c0d1eb 6952 macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0);
8fc2e39e 6953 break;
483fc7cd 6954 }
82dd0097
CD
6955 r = (rot < 0x20) ? "dsrl" : "dsrl32";
6956 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
6957 rot &= 0x1f;
8fc2e39e 6958 used_at = 1;
67c0d1eb
RS
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);
771c7ce4
TS
6962 }
6963 break;
6964
252b5132 6965 case M_ROR_I:
771c7ce4
TS
6966 {
6967 unsigned int rot;
6968
6969 if (imm_expr.X_op != O_constant)
82dd0097 6970 as_bad (_("Improper rotate count"));
771c7ce4 6971 rot = imm_expr.X_add_number & 0x1f;
fef14a42 6972 if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch))
82dd0097 6973 {
67c0d1eb 6974 macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot);
8fc2e39e 6975 break;
82dd0097 6976 }
483fc7cd 6977 if (rot == 0)
483fc7cd 6978 {
67c0d1eb 6979 macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0);
8fc2e39e 6980 break;
483fc7cd 6981 }
8fc2e39e 6982 used_at = 1;
67c0d1eb
RS
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);
771c7ce4 6986 }
252b5132
RH
6987 break;
6988
6989 case M_S_DOB:
fef14a42 6990 if (mips_opts.arch == CPU_R4650)
252b5132
RH
6991 {
6992 as_bad (_("opcode not supported on this processor"));
8fc2e39e 6993 break;
252b5132 6994 }
e7af610e 6995 assert (mips_opts.isa == ISA_MIPS1);
252b5132
RH
6996 /* Even on a big endian machine $fn comes before $fn+1. We have
6997 to adjust when storing to memory. */
67c0d1eb
RS
6998 macro_build (&offset_expr, "swc1", "T,o(b)",
6999 target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg);
252b5132 7000 offset_expr.X_add_number += 4;
67c0d1eb
RS
7001 macro_build (&offset_expr, "swc1", "T,o(b)",
7002 target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg);
8fc2e39e 7003 break;
252b5132
RH
7004
7005 case M_SEQ:
7006 if (sreg == 0)
67c0d1eb 7007 macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16);
252b5132 7008 else if (treg == 0)
67c0d1eb 7009 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7010 else
7011 {
67c0d1eb
RS
7012 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7013 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
252b5132 7014 }
8fc2e39e 7015 break;
252b5132
RH
7016
7017 case M_SEQ_I:
7018 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7019 {
67c0d1eb 7020 macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7021 break;
252b5132
RH
7022 }
7023 if (sreg == 0)
7024 {
7025 as_warn (_("Instruction %s: result is always false"),
7026 ip->insn_mo->name);
67c0d1eb 7027 move_register (dreg, 0);
8fc2e39e 7028 break;
252b5132
RH
7029 }
7030 if (imm_expr.X_op == O_constant
7031 && imm_expr.X_add_number >= 0
7032 && imm_expr.X_add_number < 0x10000)
7033 {
67c0d1eb 7034 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
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;
67c0d1eb 7041 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 7042 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7043 }
7044 else
7045 {
67c0d1eb
RS
7046 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7047 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
7048 used_at = 1;
7049 }
67c0d1eb 7050 macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7051 break;
252b5132
RH
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:
67c0d1eb
RS
7059 macro_build (NULL, s, "d,v,t", dreg, sreg, treg);
7060 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7061 break;
252b5132
RH
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 {
67c0d1eb
RS
7069 macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j",
7070 dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7071 }
7072 else
7073 {
67c0d1eb
RS
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);
252b5132
RH
7077 used_at = 1;
7078 }
67c0d1eb 7079 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7080 break;
252b5132
RH
7081
7082 case M_SGT: /* sreg > treg <==> treg < sreg */
7083 s = "slt";
7084 goto sgt;
7085 case M_SGTU:
7086 s = "sltu";
7087 sgt:
67c0d1eb 7088 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
8fc2e39e 7089 break;
252b5132
RH
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:
8fc2e39e 7097 used_at = 1;
67c0d1eb
RS
7098 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7099 macro_build (NULL, s, "d,v,t", dreg, AT, sreg);
252b5132
RH
7100 break;
7101
2396cfb9 7102 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
252b5132
RH
7103 s = "slt";
7104 goto sle;
7105 case M_SLEU:
7106 s = "sltu";
7107 sle:
67c0d1eb
RS
7108 macro_build (NULL, s, "d,v,t", dreg, treg, sreg);
7109 macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16);
8fc2e39e 7110 break;
252b5132 7111
2396cfb9 7112 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
252b5132
RH
7113 s = "slt";
7114 goto slei;
7115 case M_SLEU_I:
7116 s = "sltu";
7117 slei:
8fc2e39e 7118 used_at = 1;
67c0d1eb
RS
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);
252b5132
RH
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 {
67c0d1eb 7129 macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7130 break;
252b5132 7131 }
8fc2e39e 7132 used_at = 1;
67c0d1eb
RS
7133 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7134 macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT);
252b5132
RH
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 {
67c0d1eb 7142 macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg,
17a2f251 7143 BFD_RELOC_LO16);
8fc2e39e 7144 break;
252b5132 7145 }
8fc2e39e 7146 used_at = 1;
67c0d1eb
RS
7147 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7148 macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT);
252b5132
RH
7149 break;
7150
7151 case M_SNE:
7152 if (sreg == 0)
67c0d1eb 7153 macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg);
252b5132 7154 else if (treg == 0)
67c0d1eb 7155 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
252b5132
RH
7156 else
7157 {
67c0d1eb
RS
7158 macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg);
7159 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
252b5132 7160 }
8fc2e39e 7161 break;
252b5132
RH
7162
7163 case M_SNE_I:
7164 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7165 {
67c0d1eb 7166 macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg);
8fc2e39e 7167 break;
252b5132
RH
7168 }
7169 if (sreg == 0)
7170 {
7171 as_warn (_("Instruction %s: result is always true"),
7172 ip->insn_mo->name);
67c0d1eb
RS
7173 macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j",
7174 dreg, 0, BFD_RELOC_LO16);
8fc2e39e 7175 break;
252b5132
RH
7176 }
7177 if (imm_expr.X_op == O_constant
7178 && imm_expr.X_add_number >= 0
7179 && imm_expr.X_add_number < 0x10000)
7180 {
67c0d1eb 7181 macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
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;
67c0d1eb 7188 macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu",
17a2f251 7189 "t,r,j", dreg, sreg, BFD_RELOC_LO16);
252b5132
RH
7190 }
7191 else
7192 {
67c0d1eb
RS
7193 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7194 macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT);
252b5132
RH
7195 used_at = 1;
7196 }
67c0d1eb 7197 macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg);
8fc2e39e 7198 break;
252b5132
RH
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;
67c0d1eb
RS
7208 macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j",
7209 dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7210 break;
252b5132 7211 }
8fc2e39e 7212 used_at = 1;
67c0d1eb
RS
7213 load_register (AT, &imm_expr, dbl);
7214 macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
252b5132
RH
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;
67c0d1eb
RS
7225 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j",
7226 dreg, sreg, BFD_RELOC_LO16);
8fc2e39e 7227 break;
252b5132 7228 }
8fc2e39e 7229 used_at = 1;
67c0d1eb
RS
7230 load_register (AT, &imm_expr, dbl);
7231 macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
252b5132
RH
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:
8fc2e39e 7252 used_at = 1;
67c0d1eb
RS
7253 load_register (AT, &imm_expr, HAVE_64BIT_GPRS);
7254 macro_build (NULL, s, "s,t", sreg, AT);
252b5132
RH
7255 break;
7256
252b5132 7257 case M_TRUNCWS:
43841e91 7258 case M_TRUNCWD:
e7af610e 7259 assert (mips_opts.isa == ISA_MIPS1);
8fc2e39e 7260 used_at = 1;
252b5132
RH
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 */
7d10b47d 7268 start_noreorder ();
67c0d1eb
RS
7269 macro_build (NULL, "cfc1", "t,G", treg, RA);
7270 macro_build (NULL, "cfc1", "t,G", treg, RA);
7271 macro_build (NULL, "nop", "");
252b5132 7272 expr1.X_add_number = 3;
67c0d1eb 7273 macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16);
252b5132 7274 expr1.X_add_number = 2;
67c0d1eb
RS
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", "");
7d10b47d 7282 end_noreorder ();
252b5132
RH
7283 break;
7284
7285 case M_ULH:
7286 s = "lb";
7287 goto ulh;
7288 case M_ULHU:
7289 s = "lbu";
7290 ulh:
8fc2e39e 7291 used_at = 1;
252b5132
RH
7292 if (offset_expr.X_add_number >= 0x7fff)
7293 as_bad (_("operand overflow"));
252b5132 7294 if (! target_big_endian)
f9419b05 7295 ++offset_expr.X_add_number;
67c0d1eb 7296 macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg);
252b5132 7297 if (! target_big_endian)
f9419b05 7298 --offset_expr.X_add_number;
252b5132 7299 else
f9419b05 7300 ++offset_expr.X_add_number;
67c0d1eb
RS
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);
252b5132
RH
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"));
af22f5b2
CD
7318 if (treg != breg)
7319 tempreg = treg;
7320 else
8fc2e39e
TS
7321 {
7322 used_at = 1;
7323 tempreg = AT;
7324 }
252b5132
RH
7325 if (! target_big_endian)
7326 offset_expr.X_add_number += off;
67c0d1eb 7327 macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
252b5132
RH
7328 if (! target_big_endian)
7329 offset_expr.X_add_number -= off;
7330 else
7331 offset_expr.X_add_number += off;
67c0d1eb 7332 macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg);
af22f5b2
CD
7333
7334 /* If necessary, move the result in tempreg the final destination. */
7335 if (treg == tempreg)
8fc2e39e 7336 break;
af22f5b2 7337 /* Protect second load's delay slot. */
017315e4 7338 load_delay_nop ();
67c0d1eb 7339 move_register (treg, tempreg);
af22f5b2 7340 break;
252b5132
RH
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:
d6bc6245 7352 used_at = 1;
67c0d1eb 7353 load_address (AT, &offset_expr, &used_at);
252b5132 7354 if (breg != 0)
67c0d1eb 7355 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
7356 if (! target_big_endian)
7357 expr1.X_add_number = off;
7358 else
7359 expr1.X_add_number = 0;
67c0d1eb 7360 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
7361 if (! target_big_endian)
7362 expr1.X_add_number = 0;
7363 else
7364 expr1.X_add_number = off;
67c0d1eb 7365 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
7366 break;
7367
7368 case M_ULH_A:
7369 case M_ULHU_A:
d6bc6245 7370 used_at = 1;
67c0d1eb 7371 load_address (AT, &offset_expr, &used_at);
252b5132 7372 if (breg != 0)
67c0d1eb 7373 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
7374 if (target_big_endian)
7375 expr1.X_add_number = 0;
67c0d1eb 7376 macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)",
17a2f251 7377 treg, BFD_RELOC_LO16, AT);
252b5132
RH
7378 if (target_big_endian)
7379 expr1.X_add_number = 1;
7380 else
7381 expr1.X_add_number = 0;
67c0d1eb
RS
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);
252b5132
RH
7385 break;
7386
7387 case M_USH:
8fc2e39e 7388 used_at = 1;
252b5132
RH
7389 if (offset_expr.X_add_number >= 0x7fff)
7390 as_bad (_("operand overflow"));
7391 if (target_big_endian)
f9419b05 7392 ++offset_expr.X_add_number;
67c0d1eb
RS
7393 macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg);
7394 macro_build (NULL, "srl", "d,w,<", AT, treg, 8);
252b5132 7395 if (target_big_endian)
f9419b05 7396 --offset_expr.X_add_number;
252b5132 7397 else
f9419b05 7398 ++offset_expr.X_add_number;
67c0d1eb 7399 macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg);
252b5132
RH
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;
67c0d1eb 7416 macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg);
252b5132
RH
7417 if (! target_big_endian)
7418 offset_expr.X_add_number -= off;
7419 else
7420 offset_expr.X_add_number += off;
67c0d1eb 7421 macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg);
8fc2e39e 7422 break;
252b5132
RH
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:
d6bc6245 7434 used_at = 1;
67c0d1eb 7435 load_address (AT, &offset_expr, &used_at);
252b5132 7436 if (breg != 0)
67c0d1eb 7437 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
7438 if (! target_big_endian)
7439 expr1.X_add_number = off;
7440 else
7441 expr1.X_add_number = 0;
67c0d1eb 7442 macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
7443 if (! target_big_endian)
7444 expr1.X_add_number = 0;
7445 else
7446 expr1.X_add_number = off;
67c0d1eb 7447 macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
7448 break;
7449
7450 case M_USH_A:
d6bc6245 7451 used_at = 1;
67c0d1eb 7452 load_address (AT, &offset_expr, &used_at);
252b5132 7453 if (breg != 0)
67c0d1eb 7454 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg);
252b5132
RH
7455 if (! target_big_endian)
7456 expr1.X_add_number = 0;
67c0d1eb
RS
7457 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
7458 macro_build (NULL, "srl", "d,w,<", treg, treg, 8);
252b5132
RH
7459 if (! target_big_endian)
7460 expr1.X_add_number = 1;
7461 else
7462 expr1.X_add_number = 0;
67c0d1eb 7463 macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT);
252b5132
RH
7464 if (! target_big_endian)
7465 expr1.X_add_number = 0;
7466 else
7467 expr1.X_add_number = 1;
67c0d1eb
RS
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);
252b5132
RH
7471 break;
7472
7473 default:
7474 /* FIXME: Check if this is one of the itbl macros, since they
bdaaa2e1 7475 are added dynamically. */
252b5132
RH
7476 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
7477 break;
7478 }
8fc2e39e
TS
7479 if (mips_opts.noat && used_at)
7480 as_bad (_("Macro used $at after \".set noat\""));
252b5132
RH
7481}
7482
7483/* Implement macros in mips16 mode. */
7484
7485static void
17a2f251 7486mips16_macro (struct mips_cl_insn *ip)
252b5132
RH
7487{
7488 int mask;
7489 int xreg, yreg, zreg, tmp;
252b5132
RH
7490 expressionS expr1;
7491 int dbl;
7492 const char *s, *s2, *s3;
7493
7494 mask = ip->insn_mo->mask;
7495
bf12938e
RS
7496 xreg = MIPS16_EXTRACT_OPERAND (RX, *ip);
7497 yreg = MIPS16_EXTRACT_OPERAND (RY, *ip);
7498 zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip);
252b5132 7499
252b5132
RH
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:
7d10b47d 7522 start_noreorder ();
67c0d1eb 7523 macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg);
252b5132 7524 expr1.X_add_number = 2;
67c0d1eb
RS
7525 macro_build (&expr1, "bnez", "x,p", yreg);
7526 macro_build (NULL, "break", "6", 7);
bdaaa2e1 7527
252b5132
RH
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. */
7d10b47d 7532 end_noreorder ();
67c0d1eb 7533 macro_build (NULL, s, "x", zreg);
252b5132
RH
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:
7d10b47d 7552 start_noreorder ();
67c0d1eb 7553 macro_build (NULL, s, "0,x,y", xreg, yreg);
252b5132 7554 expr1.X_add_number = 2;
67c0d1eb
RS
7555 macro_build (&expr1, "bnez", "x,p", yreg);
7556 macro_build (NULL, "break", "6", 7);
7d10b47d 7557 end_noreorder ();
67c0d1eb 7558 macro_build (NULL, s2, "x", zreg);
252b5132
RH
7559 break;
7560
7561 case M_DMUL:
7562 dbl = 1;
7563 case M_MUL:
67c0d1eb
RS
7564 macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
7565 macro_build (NULL, "mflo", "x", zreg);
8fc2e39e 7566 break;
252b5132
RH
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;
67c0d1eb 7576 macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
252b5132
RH
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;
67c0d1eb 7583 macro_build (&imm_expr, "addiu", "x,k", xreg);
252b5132
RH
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;
67c0d1eb 7590 macro_build (&imm_expr, "daddiu", "y,j", yreg);
252b5132
RH
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:
67c0d1eb
RS
7639 macro_build (NULL, s, "x,y", xreg, yreg);
7640 macro_build (&offset_expr, s2, "p");
252b5132
RH
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:
67c0d1eb
RS
7699 macro_build (&imm_expr, s, s3, xreg);
7700 macro_build (&offset_expr, s2, "p");
252b5132
RH
7701 break;
7702
7703 case M_ABS:
7704 expr1.X_add_number = 0;
67c0d1eb 7705 macro_build (&expr1, "slti", "x,8", yreg);
252b5132 7706 if (xreg != yreg)
67c0d1eb 7707 move_register (xreg, yreg);
252b5132 7708 expr1.X_add_number = 2;
67c0d1eb
RS
7709 macro_build (&expr1, "bteqz", "p");
7710 macro_build (NULL, "neg", "x,w", xreg, xreg);
252b5132
RH
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. */
7717static int
17a2f251 7718validate_mips_insn (const struct mips_opcode *opc)
252b5132
RH
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;
af7ee8bf
CD
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;
bbcc0807
CD
7743 case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD);
7744 USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
5f74bc13
CD
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;
af7ee8bf
CD
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;
252b5132
RH
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;
4372b673 7759 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
252b5132
RH
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;
156c2f8b 7765 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
252b5132 7766 case 'I': break;
e972090a 7767 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
af7ee8bf 7768 case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
252b5132
RH
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;
deec1734
CD
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;
252b5132
RH
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;
deec1734
CD
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;
252b5132
RH
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;
4372b673
NC
7805 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
7806 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
60b63b72
RS
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;
252b5132
RH
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
7831static void
17a2f251 7832mips_ip (char *str, struct mips_cl_insn *ip)
252b5132
RH
7833{
7834 char *s;
7835 const char *args;
43841e91 7836 char c = 0;
252b5132
RH
7837 struct mips_opcode *insn;
7838 char *argsStart;
7839 unsigned int regno;
7840 unsigned int lastregno = 0;
af7ee8bf 7841 unsigned int lastpos = 0;
071742cf 7842 unsigned int limlo, limhi;
252b5132
RH
7843 char *s_reset;
7844 char save_c = 0;
252b5132
RH
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;
3882b010 7851 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
252b5132
RH
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. */
3882b010 7857 if (ISSPACE (*s))
252b5132
RH
7858 {
7859 save_c = *s;
7860 *s++ = '\0';
7861 }
bdaaa2e1 7862
252b5132
RH
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 {
bdaaa2e1 7870 /* Restore the character we overwrite above (if any). */
252b5132
RH
7871 if (save_c)
7872 *(--s) = save_c;
7873
7874 /* Scan up to the first '.' or whitespace. */
3882b010
L
7875 for (s = str;
7876 *s != '\0' && *s != '.' && !ISSPACE (*s);
7877 ++s)
252b5132
RH
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 }
252b5132
RH
7894 }
7895
7896 argsStart = s;
7897 for (;;)
7898 {
b34976b6 7899 bfd_boolean ok;
252b5132
RH
7900
7901 assert (strcmp (insn->name, str) == 0);
7902
1f25f5d3
CD
7903 if (OPCODE_IS_MEMBER (insn,
7904 (mips_opts.isa
3396de36 7905 | (file_ase_mips16 ? INSN_MIPS16 : 0)
deec1734 7906 | (mips_opts.ase_mdmx ? INSN_MDMX : 0)
98d3f06f 7907 | (mips_opts.ase_mips3d ? INSN_MIPS3D : 0)),
fef14a42 7908 mips_opts.arch))
b34976b6 7909 ok = TRUE;
bdaaa2e1 7910 else
b34976b6 7911 ok = FALSE;
bdaaa2e1 7912
252b5132
RH
7913 if (insn->pinfo != INSN_MACRO)
7914 {
fef14a42 7915 if (mips_opts.arch == CPU_R4650 && (insn->pinfo & FP_D) != 0)
b34976b6 7916 ok = FALSE;
252b5132
RH
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 }
252b5132 7927 else
beae10d5 7928 {
268f6bed
L
7929 if (!insn_error)
7930 {
7931 static char buf[100];
fef14a42
TS
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);
268f6bed
L
7936 insn_error = buf;
7937 }
7938 if (save_c)
7939 *(--s) = save_c;
2bd7f1f3 7940 return;
252b5132 7941 }
252b5132
RH
7942 }
7943
1e915849 7944 create_insn (ip, insn);
268f6bed 7945 insn_error = NULL;
252b5132
RH
7946 for (args = insn->args;; ++args)
7947 {
deec1734
CD
7948 int is_mdmx;
7949
ad8d3bb3 7950 s += strspn (s, " \t");
deec1734 7951 is_mdmx = 0;
252b5132
RH
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':
bf12938e 7967 INSERT_OPERAND (RS, *ip, lastregno);
252b5132
RH
7968 continue;
7969
7970 case 'w':
bf12938e 7971 INSERT_OPERAND (RT, *ip, lastregno);
38487616
TS
7972 continue;
7973
252b5132 7974 case 'W':
bf12938e 7975 INSERT_OPERAND (FT, *ip, lastregno);
252b5132
RH
7976 continue;
7977
7978 case 'V':
bf12938e 7979 INSERT_OPERAND (FS, *ip, lastregno);
252b5132
RH
7980 continue;
7981 }
7982 break;
7983
7984 case '(':
7985 /* Handle optional base register.
7986 Either the base register is omitted or
bdaaa2e1 7987 we must have a left paren. */
252b5132
RH
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 */
60b63b72
RS
7996 case '[':
7997 case ']':
252b5132
RH
7998 if (*s++ == *args)
7999 continue;
8000 break;
8001
af7ee8bf
CD
8002 case '+': /* Opcode extension character. */
8003 switch (*++args)
8004 {
071742cf
CD
8005 case 'A': /* ins/ext position, becomes LSB. */
8006 limlo = 0;
8007 limhi = 31;
5f74bc13
CD
8008 goto do_lsb;
8009 case 'E':
8010 limlo = 32;
8011 limhi = 63;
8012 goto do_lsb;
8013do_lsb:
071742cf
CD
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;
bf12938e 8024 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number);
071742cf
CD
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;
5f74bc13
CD
8032 goto do_msb;
8033 case 'F':
8034 limlo = 33;
8035 limhi = 64;
8036 goto do_msb;
8037do_msb:
071742cf
CD
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 }
bf12938e
RS
8055 INSERT_OPERAND (INSMSB, *ip,
8056 lastpos + imm_expr.X_add_number - 1);
071742cf
CD
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;
5f74bc13
CD
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;
8073do_msbd:
071742cf
CD
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 }
bf12938e 8091 INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1);
071742cf
CD
8092 imm_expr.X_op = O_absent;
8093 s = expr_end;
8094 continue;
af7ee8bf 8095
bbcc0807
CD
8096 case 'D':
8097 /* +D is for disassembly only; never match. */
8098 break;
8099
5f74bc13
CD
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");
13757d0c 8106 normalize_constant_expr (&imm2_expr);
5f74bc13
CD
8107 s = expr_end;
8108 continue;
8109
af7ee8bf
CD
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
252b5132
RH
8118 case '<': /* must be at least one digit */
8119 /*
8120 * According to the manual, if the shift amount is greater
b6ff326e
KH
8121 * than 31 or less than 0, then the shift amount should be
8122 * mod 32. In reality the mips assembler issues an error.
252b5132
RH
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)
bf12938e
RS
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);
252b5132
RH
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;
bf12938e 8141 INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32);
252b5132
RH
8142 imm_expr.X_op = O_absent;
8143 s = expr_end;
8144 continue;
8145
252b5132
RH
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)
bf12938e
RS
8151 as_warn (_("Invalid value for `%s' (%lu)"),
8152 ip->insn_mo->name,
8153 (unsigned long) imm_expr.X_add_number);
252b5132 8154 if (*args == 'k')
bf12938e 8155 INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number);
252b5132 8156 else
bf12938e 8157 INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number);
252b5132
RH
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);
793b27f4 8165 if ((unsigned long) imm_expr.X_add_number > 1023)
bf12938e
RS
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);
252b5132
RH
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);
793b27f4 8176 if ((unsigned long) imm_expr.X_add_number > 1023)
bf12938e
RS
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);
252b5132
RH
8180 imm_expr.X_op = O_absent;
8181 s = expr_end;
8182 continue;
8183
4372b673 8184 case 'B': /* 20-bit syscall/break code. */
156c2f8b 8185 my_getExpression (&imm_expr, s);
156c2f8b 8186 check_absolute_expr (ip, &imm_expr);
793b27f4
TS
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);
bf12938e 8190 INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number);
252b5132
RH
8191 imm_expr.X_op = O_absent;
8192 s = expr_end;
8193 continue;
8194
98d3f06f 8195 case 'C': /* Coprocessor code */
beae10d5 8196 my_getExpression (&imm_expr, s);
252b5132 8197 check_absolute_expr (ip, &imm_expr);
98d3f06f 8198 if ((unsigned long) imm_expr.X_add_number >= (1 << 25))
252b5132 8199 {
793b27f4
TS
8200 as_warn (_("Coproccesor code > 25 bits (%lu)"),
8201 (unsigned long) imm_expr.X_add_number);
98d3f06f 8202 imm_expr.X_add_number &= ((1 << 25) - 1);
252b5132 8203 }
beae10d5
KH
8204 ip->insn_opcode |= imm_expr.X_add_number;
8205 imm_expr.X_op = O_absent;
8206 s = expr_end;
8207 continue;
252b5132 8208
4372b673
NC
8209 case 'J': /* 19-bit wait code. */
8210 my_getExpression (&imm_expr, s);
8211 check_absolute_expr (ip, &imm_expr);
793b27f4
TS
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);
bf12938e 8215 INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number);
4372b673
NC
8216 imm_expr.X_op = O_absent;
8217 s = expr_end;
8218 continue;
8219
252b5132 8220 case 'P': /* Performance register */
beae10d5 8221 my_getExpression (&imm_expr, s);
252b5132 8222 check_absolute_expr (ip, &imm_expr);
beae10d5 8223 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
bf12938e
RS
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);
beae10d5
KH
8227 imm_expr.X_op = O_absent;
8228 s = expr_end;
8229 continue;
252b5132
RH
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 */
af7ee8bf 8240 case 'K': /* 'rdhwr' destination register */
252b5132
RH
8241 case 'x': /* ignore register name */
8242 case 'z': /* must be zero register */
4372b673 8243 case 'U': /* destination register (clo/clz). */
252b5132
RH
8244 s_reset = s;
8245 if (s[0] == '$')
8246 {
8247
3882b010 8248 if (ISDIGIT (s[1]))
252b5132
RH
8249 {
8250 ++s;
8251 regno = 0;
8252 do
8253 {
8254 regno *= 10;
8255 regno += *s - '0';
8256 ++s;
8257 }
3882b010 8258 while (ISDIGIT (*s));
252b5132
RH
8259 if (regno > 31)
8260 as_bad (_("Invalid register number (%d)"), regno);
8261 }
af7ee8bf 8262 else if (*args == 'E' || *args == 'G' || *args == 'K')
252b5132
RH
8263 goto notreg;
8264 else
8265 {
76db943d
TS
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')
252b5132
RH
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 }
85b51719
TS
8301 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
8302 {
8303 s += 5;
8304 regno = ZERO;
8305 }
252b5132
RH
8306 else if (itbl_have_entries)
8307 {
8308 char *p, *n;
d7ba4a77 8309 unsigned long r;
252b5132 8310
d7ba4a77 8311 p = s + 1; /* advance past '$' */
252b5132
RH
8312 n = itbl_get_field (&p); /* n is name */
8313
d7ba4a77
ILT
8314 /* See if this is a register defined in an
8315 itbl entry. */
8316 if (itbl_get_reg_val (n, &r))
252b5132
RH
8317 {
8318 /* Get_field advances to the start of
8319 the next field, so we need to back
d7ba4a77 8320 rack to the end of the last field. */
bdaaa2e1 8321 if (p)
252b5132 8322 s = p - 1;
bdaaa2e1 8323 else
d7ba4a77 8324 s = strchr (s, '\0');
252b5132
RH
8325 regno = r;
8326 }
8327 else
8328 goto notreg;
beae10d5 8329 }
252b5132
RH
8330 else
8331 goto notreg;
8332 }
8333 if (regno == AT
8334 && ! mips_opts.noat
8335 && *args != 'E'
af7ee8bf
CD
8336 && *args != 'G'
8337 && *args != 'K')
252b5132
RH
8338 as_warn (_("Used $at without \".set noat\""));
8339 c = *args;
8340 if (*s == ' ')
f9419b05 8341 ++s;
252b5132
RH
8342 if (args[1] != *s)
8343 {
8344 if (c == 'r' || c == 'v' || c == 'w')
8345 {
8346 regno = lastregno;
8347 s = s_reset;
f9419b05 8348 ++args;
252b5132
RH
8349 }
8350 }
8351 /* 'z' only matches $0. */
8352 if (c == 'z' && regno != 0)
8353 break;
8354
bdaaa2e1
KH
8355 /* Now that we have assembled one operand, we use the args string
8356 * to figure out where it goes in the instruction. */
252b5132
RH
8357 switch (c)
8358 {
8359 case 'r':
8360 case 's':
8361 case 'v':
8362 case 'b':
bf12938e 8363 INSERT_OPERAND (RS, *ip, regno);
252b5132
RH
8364 break;
8365 case 'd':
8366 case 'G':
af7ee8bf 8367 case 'K':
bf12938e 8368 INSERT_OPERAND (RD, *ip, regno);
252b5132 8369 break;
4372b673 8370 case 'U':
bf12938e
RS
8371 INSERT_OPERAND (RD, *ip, regno);
8372 INSERT_OPERAND (RT, *ip, regno);
4372b673 8373 break;
252b5132
RH
8374 case 'w':
8375 case 't':
8376 case 'E':
bf12938e 8377 INSERT_OPERAND (RT, *ip, regno);
252b5132
RH
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':
bf12938e 8408 INSERT_OPERAND (RS, *ip, lastregno);
252b5132
RH
8409 continue;
8410 case 'w':
bf12938e 8411 INSERT_OPERAND (RT, *ip, lastregno);
252b5132
RH
8412 continue;
8413 }
8414 break;
8415
deec1734
CD
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)
bf12938e
RS
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);
deec1734
CD
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)
bf12938e
RS
8434 as_warn (_("Invalid MDMX Immediate (%ld)"),
8435 (long) imm_expr.X_add_number);
8436 INSERT_OPERAND (FT, *ip, imm_expr.X_add_number);
deec1734
CD
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;
deec1734
CD
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;
252b5132
RH
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;
deec1734
CD
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])))
252b5132
RH
8462 {
8463 s += 2;
8464 regno = 0;
8465 do
8466 {
8467 regno *= 10;
8468 regno += *s - '0';
8469 ++s;
8470 }
3882b010 8471 while (ISDIGIT (*s));
252b5132
RH
8472
8473 if (regno > 31)
8474 as_bad (_("Invalid float register number (%d)"), regno);
8475
8476 if ((regno & 1) != 0
ca4e0257 8477 && HAVE_32BIT_FPRS
252b5132
RH
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 == ' ')
f9419b05 8489 ++s;
252b5132
RH
8490 if (args[1] != *s)
8491 {
8492 if (c == 'V' || c == 'W')
8493 {
8494 regno = lastregno;
8495 s = s_reset;
f9419b05 8496 ++args;
252b5132
RH
8497 }
8498 }
8499 switch (c)
8500 {
8501 case 'D':
deec1734 8502 case 'X':
bf12938e 8503 INSERT_OPERAND (FD, *ip, regno);
252b5132
RH
8504 break;
8505 case 'V':
8506 case 'S':
deec1734 8507 case 'Y':
bf12938e 8508 INSERT_OPERAND (FS, *ip, regno);
252b5132 8509 break;
deec1734
CD
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)));
01a3f561 8529 imm_expr.X_op = O_absent;
deec1734
CD
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 */
252b5132
RH
8545 case 'W':
8546 case 'T':
deec1734 8547 case 'Z':
bf12938e 8548 INSERT_OPERAND (FT, *ip, regno);
252b5132
RH
8549 break;
8550 case 'R':
bf12938e 8551 INSERT_OPERAND (FR, *ip, regno);
252b5132
RH
8552 break;
8553 }
8554 lastregno = regno;
8555 continue;
8556 }
8557
252b5132
RH
8558 switch (*args++)
8559 {
8560 case 'V':
bf12938e 8561 INSERT_OPERAND (FS, *ip, lastregno);
252b5132
RH
8562 continue;
8563 case 'W':
bf12938e 8564 INSERT_OPERAND (FT, *ip, lastregno);
252b5132
RH
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");
13757d0c 8574 normalize_constant_expr (&imm_expr);
252b5132
RH
8575 s = expr_end;
8576 continue;
8577
8578 case 'A':
8579 my_getExpression (&offset_expr, s);
2051e8c4 8580 normalize_address_expr (&offset_expr);
f6688943 8581 *imm_reloc = BFD_RELOC_32;
252b5132
RH
8582 s = expr_end;
8583 continue;
8584
8585 case 'F':
8586 case 'L':
8587 case 'f':
8588 case 'l':
8589 {
8590 int f64;
ca4e0257 8591 int using_gprs;
252b5132
RH
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
ca4e0257
RS
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. */
252b5132
RH
8624
8625 f64 = *args == 'F' || *args == 'L';
ca4e0257 8626 using_gprs = *args == 'F' || *args == 'f';
252b5132
RH
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
156c2f8b 8641 assert (length == (unsigned) (f64 ? 8 : 4));
252b5132
RH
8642
8643 if (*args == 'f'
8644 || (*args == 'l'
3e722fb5 8645 && (g_switch_value < 4
252b5132
RH
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
119d663a 8656 && ! mips_disable_float_construction
ca4e0257
RS
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))
252b5132
RH
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 {
ca4e0257
RS
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)
252b5132
RH
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;
3e722fb5 8732 if (g_switch_value >= 8)
252b5132
RH
8733 newname = ".lit8";
8734 break;
8735 case 'F':
3e722fb5 8736 newname = RDATA_SECTION_NAME;
252b5132
RH
8737 break;
8738 case 'l':
4d0d148d 8739 assert (g_switch_value >= 4);
252b5132
RH
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 */
f6688943 8779 *imm_reloc = BFD_RELOC_LO16;
5e0116d5 8780 if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0)
252b5132
RH
8781 {
8782 int more;
5e0116d5
RS
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;
252b5132 8807 else
5e0116d5
RS
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)
252b5132
RH
8813 {
8814 if (more)
8815 break;
2ae7e77b
AH
8816 if (imm_expr.X_op == O_constant
8817 || imm_expr.X_op == O_big)
5e0116d5 8818 as_bad (_("expression out of range"));
252b5132
RH
8819 }
8820 }
8821 s = expr_end;
8822 continue;
8823
8824 case 'o': /* 16 bit offset */
5e0116d5
RS
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 }
252b5132
RH
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
afdbd6d0 8837 code pattern. */
5e0116d5 8838 if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0
252b5132
RH
8839 && (offset_expr.X_op != O_constant
8840 || offset_expr.X_add_number >= 0x8000
afdbd6d0 8841 || offset_expr.X_add_number < -0x8000))
252b5132
RH
8842 break;
8843
252b5132
RH
8844 s = expr_end;
8845 continue;
8846
8847 case 'p': /* pc relative offset */
0b25d3e6 8848 *offset_reloc = BFD_RELOC_16_PCREL_S2;
252b5132
RH
8849 my_getExpression (&offset_expr, s);
8850 s = expr_end;
8851 continue;
8852
8853 case 'u': /* upper 16 bits */
5e0116d5
RS
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))
252b5132
RH
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;
f6688943 8865 *offset_reloc = BFD_RELOC_MIPS_JMP;
252b5132
RH
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 }
3882b010 8880 while (ISDIGIT (*s));
252b5132 8881 if (regno > 7)
30c378fd
CD
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);
252b5132 8894 if (*args == 'N')
bf12938e 8895 INSERT_OPERAND (BCC, *ip, regno);
252b5132 8896 else
bf12938e 8897 INSERT_OPERAND (CCC, *ip, regno);
beae10d5 8898 continue;
252b5132 8899
156c2f8b
NC
8900 case 'H':
8901 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
8902 s += 2;
3882b010 8903 if (ISDIGIT (*s))
156c2f8b
NC
8904 {
8905 c = 0;
8906 do
8907 {
8908 c *= 10;
8909 c += *s - '0';
8910 ++s;
8911 }
3882b010 8912 while (ISDIGIT (*s));
156c2f8b
NC
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
60b63b72
RS
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
bf12938e 8935 INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number);
60b63b72
RS
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
bf12938e 8952 INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number);
60b63b72
RS
8953 imm_expr.X_op = O_absent;
8954 s = expr_end;
8955 continue;
8956
252b5132
RH
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;
268f6bed 8969 insn_error = _("illegal operands");
252b5132
RH
8970 continue;
8971 }
268f6bed
L
8972 if (save_c)
8973 *(--s) = save_c;
252b5132
RH
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
8986static void
17a2f251 8987mips16_ip (char *str, struct mips_cl_insn *ip)
252b5132
RH
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;
d6f16593 8996 size_t i;
252b5132
RH
8997
8998 insn_error = NULL;
8999
b34976b6
AM
9000 mips16_small = FALSE;
9001 mips16_ext = FALSE;
252b5132 9002
3882b010 9003 for (s = str; ISLOWER (*s); ++s)
252b5132
RH
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';
b34976b6 9018 mips16_small = TRUE;
252b5132
RH
9019 s += 3;
9020 break;
9021 }
9022 else if (s[1] == 'e' && s[2] == ' ')
9023 {
9024 *s = '\0';
b34976b6 9025 mips16_ext = TRUE;
252b5132
RH
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)
b34976b6 9036 mips16_small = TRUE;
252b5132
RH
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
1e915849 9049 create_insn (ip, insn);
252b5132 9050 imm_expr.X_op = O_absent;
f6688943
TS
9051 imm_reloc[0] = BFD_RELOC_UNUSED;
9052 imm_reloc[1] = BFD_RELOC_UNUSED;
9053 imm_reloc[2] = BFD_RELOC_UNUSED;
5f74bc13 9054 imm2_expr.X_op = O_absent;
252b5132 9055 offset_expr.X_op = O_absent;
f6688943
TS
9056 offset_reloc[0] = BFD_RELOC_UNUSED;
9057 offset_reloc[1] = BFD_RELOC_UNUSED;
9058 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
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
f6688943 9078 && *imm_reloc > BFD_RELOC_UNUSED
252b5132
RH
9079 && insn->pinfo != INSN_MACRO)
9080 {
d6f16593
MR
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
c4e7957c 9107 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
d6f16593 9108 tmp, TRUE, mips16_small,
252b5132
RH
9109 mips16_ext, &ip->insn_opcode,
9110 &ip->use_extend, &ip->extend);
9111 imm_expr.X_op = O_absent;
f6688943 9112 *imm_reloc = BFD_RELOC_UNUSED;
252b5132
RH
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':
bf12938e 9126 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132
RH
9127 continue;
9128 case 'w':
bf12938e 9129 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
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')
bf12938e 9145 MIPS16_INSERT_OPERAND (RX, *ip, lastregno);
252b5132 9146 else
bf12938e 9147 MIPS16_INSERT_OPERAND (RY, *ip, lastregno);
252b5132
RH
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;
3882b010 9164 if (ISDIGIT (s[1]))
252b5132
RH
9165 {
9166 ++s;
9167 regno = 0;
9168 do
9169 {
9170 regno *= 10;
9171 regno += *s - '0';
9172 ++s;
9173 }
3882b010 9174 while (ISDIGIT (*s));
252b5132
RH
9175 if (regno > 31)
9176 {
9177 as_bad (_("invalid register number (%d)"), regno);
9178 regno = 2;
9179 }
9180 }
9181 else
9182 {
76db943d
TS
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')
252b5132
RH
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 }
85b51719
TS
9218 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
9219 {
9220 s += 5;
9221 regno = ZERO;
9222 }
252b5132
RH
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;
f9419b05 9235 ++args;
252b5132
RH
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':
bf12938e 9282 MIPS16_INSERT_OPERAND (RX, *ip, regno);
252b5132
RH
9283 break;
9284 case 'y':
9285 case 'w':
bf12938e 9286 MIPS16_INSERT_OPERAND (RY, *ip, regno);
252b5132
RH
9287 break;
9288 case 'z':
bf12938e 9289 MIPS16_INSERT_OPERAND (RZ, *ip, regno);
252b5132
RH
9290 break;
9291 case 'Z':
bf12938e 9292 MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno);
252b5132
RH
9293 case '0':
9294 case 'S':
9295 case 'R':
9296 break;
9297 case 'X':
bf12938e 9298 MIPS16_INSERT_OPERAND (REGR32, *ip, regno);
252b5132
RH
9299 break;
9300 case 'Y':
9301 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
bf12938e 9302 MIPS16_INSERT_OPERAND (REG32R, *ip, regno);
252b5132
RH
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
252b5132
RH
9319 case '5':
9320 case 'H':
9321 case 'W':
9322 case 'D':
9323 case 'j':
252b5132
RH
9324 case 'V':
9325 case 'C':
9326 case 'U':
9327 case 'k':
9328 case 'K':
d6f16593
MR
9329 i = my_getSmallExpression (&imm_expr, imm_reloc, s);
9330 if (i > 0)
252b5132 9331 {
d6f16593 9332 if (imm_expr.X_op != O_constant)
252b5132 9333 {
b34976b6 9334 mips16_ext = TRUE;
b34976b6 9335 ip->use_extend = TRUE;
252b5132 9336 ip->extend = 0;
252b5132 9337 }
d6f16593
MR
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;
252b5132 9346 }
d6f16593
MR
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);
252b5132
RH
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;
f6688943 9370 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
9371 continue;
9372 }
9373
9374 break;
9375 }
9376
9377 /* We need to relax this instruction. */
f6688943 9378 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
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. */
f6688943 9396 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
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)
bf12938e
RS
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);
252b5132
RH
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;
f6688943 9415 *offset_reloc = BFD_RELOC_MIPS16_JMP;
252b5132
RH
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;
3882b010 9448 while (ISDIGIT (*s))
252b5132
RH
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;
3882b010 9475 while (ISDIGIT (*s))
252b5132
RH
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;
f9419b05 9496 else if (reg1 == RA && reg2 == RA)
252b5132
RH
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
e972090a
NC
9551struct mips16_immed_operand
9552{
252b5132
RH
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
9575static 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
9611static void
17a2f251
TS
9612mips16_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)
252b5132
RH
9616{
9617 register const struct mips16_immed_operand *op;
9618 int mintiny, maxtiny;
b34976b6 9619 bfd_boolean needext;
252b5132
RH
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))
b34976b6 9654 needext = TRUE;
252b5132 9655 else
b34976b6 9656 needext = FALSE;
252b5132
RH
9657
9658 if (warn && ext && ! needext)
beae10d5
KH
9659 as_warn_where (file, line,
9660 _("extended operand requested but not required"));
252b5132
RH
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
b34976b6 9668 *use_extend = FALSE;
252b5132
RH
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
b34976b6 9692 *use_extend = TRUE;
252b5132
RH
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
d6f16593 9714struct percent_op_match
ad8d3bb3 9715{
5e0116d5
RS
9716 const char *str;
9717 bfd_reloc_code_real_type reloc;
d6f16593
MR
9718};
9719
9720static const struct percent_op_match mips_percent_op[] =
ad8d3bb3 9721{
5e0116d5 9722 {"%lo", BFD_RELOC_LO16},
ad8d3bb3 9723#ifdef OBJ_ELF
5e0116d5
RS
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},
3f98094e
DJ
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},
ad8d3bb3 9745#endif
5e0116d5 9746 {"%hi", BFD_RELOC_HI16_S}
ad8d3bb3
TS
9747};
9748
d6f16593
MR
9749static 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
252b5132 9756
5e0116d5
RS
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
9761static bfd_boolean
17a2f251 9762parse_relocation (char **str, bfd_reloc_code_real_type *reloc)
252b5132 9763{
d6f16593
MR
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 }
76b3015f 9777
d6f16593 9778 for (i = 0; i < limit; i++)
5e0116d5 9779 if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0)
394f9b3a 9780 {
3f98094e
DJ
9781 int len = strlen (percent_op[i].str);
9782
9783 if (!ISSPACE ((*str)[len]) && (*str)[len] != '(')
9784 continue;
9785
5e0116d5
RS
9786 *str += strlen (percent_op[i].str);
9787 *reloc = percent_op[i].reloc;
394f9b3a 9788
5e0116d5
RS
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))
394f9b3a 9792 {
5e0116d5
RS
9793 as_bad ("relocation %s isn't supported by the current ABI",
9794 percent_op[i].str);
01a3f561 9795 *reloc = BFD_RELOC_UNUSED;
394f9b3a 9796 }
5e0116d5 9797 return TRUE;
394f9b3a 9798 }
5e0116d5 9799 return FALSE;
394f9b3a 9800}
ad8d3bb3 9801
ad8d3bb3 9802
5e0116d5
RS
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.
ad8d3bb3 9806
01a3f561 9807 On exit, EXPR_END points to the first character after the expression. */
ad8d3bb3 9808
5e0116d5 9809static size_t
17a2f251
TS
9810my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc,
9811 char *str)
ad8d3bb3 9812{
5e0116d5
RS
9813 bfd_reloc_code_real_type reversed_reloc[3];
9814 size_t reloc_index, i;
09b8f35a
RS
9815 int crux_depth, str_depth;
9816 char *crux;
5e0116d5
RS
9817
9818 /* Search for the start of the main expression, recoding relocations
09b8f35a
RS
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
fb1b3232 9825 {
09b8f35a
RS
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++;
5e0116d5 9835 }
09b8f35a
RS
9836 while (*str == '%'
9837 && reloc_index < (HAVE_NEWABI ? 3 : 1)
9838 && parse_relocation (&str, &reversed_reloc[reloc_index]));
ad8d3bb3 9839
09b8f35a 9840 my_getExpression (ep, crux);
5e0116d5 9841 str = expr_end;
394f9b3a 9842
5e0116d5 9843 /* Match every open bracket. */
09b8f35a 9844 while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t'))
5e0116d5 9845 if (*str++ == ')')
09b8f35a 9846 crux_depth--;
394f9b3a 9847
09b8f35a 9848 if (crux_depth > 0)
5e0116d5 9849 as_bad ("unclosed '('");
394f9b3a 9850
5e0116d5 9851 expr_end = str;
252b5132 9852
01a3f561 9853 if (reloc_index != 0)
64bdfcaf
RS
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 }
fb1b3232 9859
5e0116d5 9860 return reloc_index;
252b5132
RH
9861}
9862
9863static void
17a2f251 9864my_getExpression (expressionS *ep, char *str)
252b5132
RH
9865{
9866 char *save_in;
98aa84af 9867 valueT val;
252b5132
RH
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
49309057
ILT
9883 && symbol_get_frag (ep->X_add_symbol) == frag_now
9884 && symbol_constant_p (ep->X_add_symbol)
98aa84af
AM
9885 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
9886 S_SET_VALUE (ep->X_add_symbol, val + 1);
252b5132
RH
9887}
9888
9889/* Turn a string in input_line_pointer into a floating point constant
bc0d738a
NC
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
252b5132
RH
9892 returned, or NULL on OK. */
9893
9894char *
17a2f251 9895md_atof (int type, char *litP, int *sizeP)
252b5132
RH
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 {
17a2f251 9927 md_number_to_chars (litP, words[i], 2);
252b5132
RH
9928 litP += 2;
9929 }
9930 }
9931 else
9932 {
9933 for (i = 0; i < prec; i++)
9934 {
17a2f251 9935 md_number_to_chars (litP, words[i], 2);
252b5132
RH
9936 litP += 2;
9937 }
9938 }
bdaaa2e1 9939
252b5132
RH
9940 return NULL;
9941}
9942
9943void
17a2f251 9944md_number_to_chars (char *buf, valueT val, int n)
252b5132
RH
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
ae948b86 9952#ifdef OBJ_ELF
e013f690
TS
9953static int support_64bit_objects(void)
9954{
9955 const char **list, **l;
aa3d8fdf 9956 int yes;
e013f690
TS
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;
aa3d8fdf 9969 yes = (*l != NULL);
e013f690 9970 free (list);
aa3d8fdf 9971 return yes;
e013f690 9972}
ae948b86 9973#endif /* OBJ_ELF */
e013f690 9974
78849248 9975const char *md_shortopts = "O::g::G:";
252b5132 9976
e972090a
NC
9977struct option md_longopts[] =
9978{
f9b4148d
CD
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)
252b5132
RH
9986 {"mips0", no_argument, NULL, OPTION_MIPS1},
9987 {"mips1", no_argument, NULL, OPTION_MIPS1},
f9b4148d 9988#define OPTION_MIPS2 (OPTION_ARCH_BASE + 3)
252b5132 9989 {"mips2", no_argument, NULL, OPTION_MIPS2},
f9b4148d 9990#define OPTION_MIPS3 (OPTION_ARCH_BASE + 4)
252b5132 9991 {"mips3", no_argument, NULL, OPTION_MIPS3},
f9b4148d 9992#define OPTION_MIPS4 (OPTION_ARCH_BASE + 5)
252b5132 9993 {"mips4", no_argument, NULL, OPTION_MIPS4},
f9b4148d 9994#define OPTION_MIPS5 (OPTION_ARCH_BASE + 6)
ae948b86 9995 {"mips5", no_argument, NULL, OPTION_MIPS5},
f9b4148d 9996#define OPTION_MIPS32 (OPTION_ARCH_BASE + 7)
ae948b86 9997 {"mips32", no_argument, NULL, OPTION_MIPS32},
f9b4148d 9998#define OPTION_MIPS64 (OPTION_ARCH_BASE + 8)
ae948b86 9999 {"mips64", no_argument, NULL, OPTION_MIPS64},
f9b4148d
CD
10000#define OPTION_MIPS32R2 (OPTION_ARCH_BASE + 9)
10001 {"mips32r2", no_argument, NULL, OPTION_MIPS32R2},
5f74bc13
CD
10002#define OPTION_MIPS64R2 (OPTION_ARCH_BASE + 10)
10003 {"mips64r2", no_argument, NULL, OPTION_MIPS64R2},
f9b4148d
CD
10004
10005 /* Options which specify Application Specific Extensions (ASEs). */
5f74bc13 10006#define OPTION_ASE_BASE (OPTION_ARCH_BASE + 11)
f9b4148d
CD
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},
d766e8ec
RS
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},
7d8e00cf
RS
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},
f9b4148d
CD
10054
10055 /* Miscellaneous options. */
7d8e00cf 10056#define OPTION_MISC_BASE (OPTION_FIX_BASE + 6)
1ffcab4b 10057#define OPTION_TRAP (OPTION_MISC_BASE + 0)
252b5132
RH
10058 {"trap", no_argument, NULL, OPTION_TRAP},
10059 {"no-break", no_argument, NULL, OPTION_TRAP},
1ffcab4b 10060#define OPTION_BREAK (OPTION_MISC_BASE + 1)
252b5132
RH
10061 {"break", no_argument, NULL, OPTION_BREAK},
10062 {"no-trap", no_argument, NULL, OPTION_BREAK},
1ffcab4b 10063#define OPTION_EB (OPTION_MISC_BASE + 2)
252b5132 10064 {"EB", no_argument, NULL, OPTION_EB},
1ffcab4b 10065#define OPTION_EL (OPTION_MISC_BASE + 3)
252b5132 10066 {"EL", no_argument, NULL, OPTION_EL},
1ffcab4b 10067#define OPTION_FP32 (OPTION_MISC_BASE + 4)
ae948b86 10068 {"mfp32", no_argument, NULL, OPTION_FP32},
1ffcab4b 10069#define OPTION_GP32 (OPTION_MISC_BASE + 5)
c97ef257 10070 {"mgp32", no_argument, NULL, OPTION_GP32},
1ffcab4b 10071#define OPTION_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 6)
119d663a 10072 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
1ffcab4b 10073#define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 7)
119d663a 10074 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
1ffcab4b 10075#define OPTION_FP64 (OPTION_MISC_BASE + 8)
316f5878 10076 {"mfp64", no_argument, NULL, OPTION_FP64},
1ffcab4b 10077#define OPTION_GP64 (OPTION_MISC_BASE + 9)
ae948b86 10078 {"mgp64", no_argument, NULL, OPTION_GP64},
1ffcab4b
CD
10079#define OPTION_RELAX_BRANCH (OPTION_MISC_BASE + 10)
10080#define OPTION_NO_RELAX_BRANCH (OPTION_MISC_BASE + 11)
4a6a3df4
AO
10081 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
10082 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
aa6975fb
ILT
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},
aed1a261
RS
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},
f9b4148d
CD
10091
10092 /* ELF-specific options. */
156c2f8b 10093#ifdef OBJ_ELF
aed1a261 10094#define OPTION_ELF_BASE (OPTION_MISC_BASE + 16)
156c2f8b 10095#define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
156c2f8b
NC
10096 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
10097 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
ae948b86 10098#define OPTION_NON_SHARED (OPTION_ELF_BASE + 1)
156c2f8b 10099 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
ae948b86 10100#define OPTION_XGOT (OPTION_ELF_BASE + 2)
156c2f8b 10101 {"xgot", no_argument, NULL, OPTION_XGOT},
ae948b86
TS
10102#define OPTION_MABI (OPTION_ELF_BASE + 3)
10103 {"mabi", required_argument, NULL, OPTION_MABI},
10104#define OPTION_32 (OPTION_ELF_BASE + 4)
156c2f8b 10105 {"32", no_argument, NULL, OPTION_32},
ae948b86 10106#define OPTION_N32 (OPTION_ELF_BASE + 5)
e013f690 10107 {"n32", no_argument, NULL, OPTION_N32},
ae948b86 10108#define OPTION_64 (OPTION_ELF_BASE + 6)
156c2f8b 10109 {"64", no_argument, NULL, OPTION_64},
ecb4347a
DJ
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},
dcd410fe
RO
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},
ae948b86 10118#endif /* OBJ_ELF */
f9b4148d 10119
252b5132
RH
10120 {NULL, no_argument, NULL, 0}
10121};
156c2f8b 10122size_t md_longopts_size = sizeof (md_longopts);
252b5132 10123
316f5878
RS
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
10130static void
17a2f251 10131mips_set_option_string (const char **string_ptr, const char *new_value)
316f5878
RS
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
252b5132 10141int
17a2f251 10142md_parse_option (int c, char *arg)
252b5132
RH
10143{
10144 switch (c)
10145 {
119d663a
NC
10146 case OPTION_CONSTRUCT_FLOATS:
10147 mips_disable_float_construction = 0;
10148 break;
bdaaa2e1 10149
119d663a
NC
10150 case OPTION_NO_CONSTRUCT_FLOATS:
10151 mips_disable_float_construction = 1;
10152 break;
bdaaa2e1 10153
252b5132
RH
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:
316f5878 10190 file_mips_isa = ISA_MIPS1;
252b5132
RH
10191 break;
10192
10193 case OPTION_MIPS2:
316f5878 10194 file_mips_isa = ISA_MIPS2;
252b5132
RH
10195 break;
10196
10197 case OPTION_MIPS3:
316f5878 10198 file_mips_isa = ISA_MIPS3;
252b5132
RH
10199 break;
10200
10201 case OPTION_MIPS4:
316f5878 10202 file_mips_isa = ISA_MIPS4;
e7af610e
NC
10203 break;
10204
84ea6cf2 10205 case OPTION_MIPS5:
316f5878 10206 file_mips_isa = ISA_MIPS5;
84ea6cf2
NC
10207 break;
10208
e7af610e 10209 case OPTION_MIPS32:
316f5878 10210 file_mips_isa = ISA_MIPS32;
252b5132
RH
10211 break;
10212
af7ee8bf
CD
10213 case OPTION_MIPS32R2:
10214 file_mips_isa = ISA_MIPS32R2;
10215 break;
10216
5f74bc13
CD
10217 case OPTION_MIPS64R2:
10218 file_mips_isa = ISA_MIPS64R2;
10219 break;
10220
84ea6cf2 10221 case OPTION_MIPS64:
316f5878 10222 file_mips_isa = ISA_MIPS64;
84ea6cf2
NC
10223 break;
10224
ec68c924 10225 case OPTION_MTUNE:
316f5878
RS
10226 mips_set_option_string (&mips_tune_string, arg);
10227 break;
ec68c924 10228
316f5878
RS
10229 case OPTION_MARCH:
10230 mips_set_option_string (&mips_arch_string, arg);
252b5132
RH
10231 break;
10232
10233 case OPTION_M4650:
316f5878
RS
10234 mips_set_option_string (&mips_arch_string, "4650");
10235 mips_set_option_string (&mips_tune_string, "4650");
252b5132
RH
10236 break;
10237
10238 case OPTION_NO_M4650:
10239 break;
10240
10241 case OPTION_M4010:
316f5878
RS
10242 mips_set_option_string (&mips_arch_string, "4010");
10243 mips_set_option_string (&mips_tune_string, "4010");
252b5132
RH
10244 break;
10245
10246 case OPTION_NO_M4010:
10247 break;
10248
10249 case OPTION_M4100:
316f5878
RS
10250 mips_set_option_string (&mips_arch_string, "4100");
10251 mips_set_option_string (&mips_tune_string, "4100");
252b5132
RH
10252 break;
10253
10254 case OPTION_NO_M4100:
10255 break;
10256
252b5132 10257 case OPTION_M3900:
316f5878
RS
10258 mips_set_option_string (&mips_arch_string, "3900");
10259 mips_set_option_string (&mips_tune_string, "3900");
252b5132 10260 break;
bdaaa2e1 10261
252b5132
RH
10262 case OPTION_NO_M3900:
10263 break;
10264
deec1734
CD
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
252b5132
RH
10273 case OPTION_MIPS16:
10274 mips_opts.mips16 = 1;
7d10b47d 10275 mips_no_prev_insn ();
252b5132
RH
10276 break;
10277
10278 case OPTION_NO_MIPS16:
10279 mips_opts.mips16 = 0;
7d10b47d 10280 mips_no_prev_insn ();
252b5132
RH
10281 break;
10282
1f25f5d3
CD
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
d766e8ec
RS
10291 case OPTION_FIX_VR4120:
10292 mips_fix_vr4120 = 1;
60b63b72
RS
10293 break;
10294
d766e8ec
RS
10295 case OPTION_NO_FIX_VR4120:
10296 mips_fix_vr4120 = 0;
60b63b72
RS
10297 break;
10298
7d8e00cf
RS
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
4a6a3df4
AO
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
aa6975fb
ILT
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
aed1a261
RS
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
0f074f60 10331#ifdef OBJ_ELF
252b5132
RH
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;
143d77c5 10342 mips_abicalls = TRUE;
252b5132
RH
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;
143d77c5 10358 mips_abicalls = FALSE;
252b5132
RH
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;
0f074f60 10367#endif /* OBJ_ELF */
252b5132
RH
10368
10369 case 'G':
6caf9ef4
TS
10370 g_switch_value = atoi (arg);
10371 g_switch_seen = 1;
10372 if (mips_pic == SVR4_PIC && g_switch_value != 0)
252b5132 10373 {
3e722fb5 10374 as_bad (_("-G may not be used with SVR4 PIC code"));
252b5132
RH
10375 return 0;
10376 }
252b5132
RH
10377 break;
10378
0f074f60 10379#ifdef OBJ_ELF
34ba82a8
TS
10380 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
10381 and -mabi=64. */
252b5132 10382 case OPTION_32:
34ba82a8
TS
10383 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10384 {
10385 as_bad (_("-32 is supported for ELF format only"));
10386 return 0;
10387 }
316f5878 10388 mips_abi = O32_ABI;
252b5132
RH
10389 break;
10390
e013f690 10391 case OPTION_N32:
34ba82a8
TS
10392 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10393 {
10394 as_bad (_("-n32 is supported for ELF format only"));
10395 return 0;
10396 }
316f5878 10397 mips_abi = N32_ABI;
e013f690 10398 break;
252b5132 10399
e013f690 10400 case OPTION_64:
34ba82a8
TS
10401 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10402 {
10403 as_bad (_("-64 is supported for ELF format only"));
10404 return 0;
10405 }
316f5878 10406 mips_abi = N64_ABI;
e013f690
TS
10407 if (! support_64bit_objects())
10408 as_fatal (_("No compiled in support for 64 bit object file format"));
252b5132 10409 break;
ae948b86 10410#endif /* OBJ_ELF */
252b5132 10411
c97ef257 10412 case OPTION_GP32:
a325df1d 10413 file_mips_gp32 = 1;
c97ef257
AH
10414 break;
10415
10416 case OPTION_GP64:
a325df1d 10417 file_mips_gp32 = 0;
c97ef257 10418 break;
252b5132 10419
ca4e0257 10420 case OPTION_FP32:
a325df1d 10421 file_mips_fp32 = 1;
316f5878
RS
10422 break;
10423
10424 case OPTION_FP64:
10425 file_mips_fp32 = 0;
ca4e0257
RS
10426 break;
10427
ae948b86 10428#ifdef OBJ_ELF
252b5132 10429 case OPTION_MABI:
34ba82a8
TS
10430 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10431 {
10432 as_bad (_("-mabi is supported for ELF format only"));
10433 return 0;
10434 }
e013f690 10435 if (strcmp (arg, "32") == 0)
316f5878 10436 mips_abi = O32_ABI;
e013f690 10437 else if (strcmp (arg, "o64") == 0)
316f5878 10438 mips_abi = O64_ABI;
e013f690 10439 else if (strcmp (arg, "n32") == 0)
316f5878 10440 mips_abi = N32_ABI;
e013f690
TS
10441 else if (strcmp (arg, "64") == 0)
10442 {
316f5878 10443 mips_abi = N64_ABI;
e013f690
TS
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)
316f5878 10449 mips_abi = EABI_ABI;
e013f690 10450 else
da0e507f
TS
10451 {
10452 as_fatal (_("invalid abi -mabi=%s"), arg);
10453 return 0;
10454 }
252b5132 10455 break;
e013f690 10456#endif /* OBJ_ELF */
252b5132 10457
6b76fefe 10458 case OPTION_M7000_HILO_FIX:
b34976b6 10459 mips_7000_hilo_fix = TRUE;
6b76fefe
CM
10460 break;
10461
9ee72ff1 10462 case OPTION_MNO_7000_HILO_FIX:
b34976b6 10463 mips_7000_hilo_fix = FALSE;
6b76fefe
CM
10464 break;
10465
ecb4347a
DJ
10466#ifdef OBJ_ELF
10467 case OPTION_MDEBUG:
b34976b6 10468 mips_flag_mdebug = TRUE;
ecb4347a
DJ
10469 break;
10470
10471 case OPTION_NO_MDEBUG:
b34976b6 10472 mips_flag_mdebug = FALSE;
ecb4347a 10473 break;
dcd410fe
RO
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;
ecb4347a
DJ
10482#endif /* OBJ_ELF */
10483
252b5132
RH
10484 default:
10485 return 0;
10486 }
10487
10488 return 1;
10489}
316f5878
RS
10490\f
10491/* Set up globals to generate code for the ISA or processor
10492 described by INFO. */
252b5132 10493
252b5132 10494static void
17a2f251 10495mips_set_architecture (const struct mips_cpu_info *info)
252b5132 10496{
316f5878 10497 if (info != 0)
252b5132 10498 {
fef14a42
TS
10499 file_mips_arch = info->cpu;
10500 mips_opts.arch = info->cpu;
316f5878 10501 mips_opts.isa = info->isa;
252b5132 10502 }
252b5132
RH
10503}
10504
252b5132 10505
316f5878 10506/* Likewise for tuning. */
252b5132 10507
316f5878 10508static void
17a2f251 10509mips_set_tune (const struct mips_cpu_info *info)
316f5878
RS
10510{
10511 if (info != 0)
fef14a42 10512 mips_tune = info->cpu;
316f5878 10513}
80cc45a5 10514
34ba82a8 10515
252b5132 10516void
17a2f251 10517mips_after_parse_args (void)
e9670677 10518{
fef14a42
TS
10519 const struct mips_cpu_info *arch_info = 0;
10520 const struct mips_cpu_info *tune_info = 0;
10521
e9670677 10522 /* GP relative stuff not working for PE */
6caf9ef4 10523 if (strncmp (TARGET_OS, "pe", 2) == 0)
e9670677 10524 {
6caf9ef4 10525 if (g_switch_seen && g_switch_value != 0)
e9670677
MR
10526 as_bad (_("-G not supported in this configuration."));
10527 g_switch_value = 0;
10528 }
10529
cac012d6
AO
10530 if (mips_abi == NO_ABI)
10531 mips_abi = MIPS_DEFAULT_ABI;
10532
22923709
RS
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. */
e9670677 10537
316f5878 10538 if (mips_arch_string != 0)
fef14a42 10539 arch_info = mips_parse_cpu ("-march", mips_arch_string);
e9670677 10540
316f5878 10541 if (file_mips_isa != ISA_UNKNOWN)
e9670677 10542 {
316f5878 10543 /* Handle -mipsN. At this point, file_mips_isa contains the
fef14a42 10544 ISA level specified by -mipsN, while arch_info->isa contains
316f5878 10545 the -march selection (if any). */
fef14a42 10546 if (arch_info != 0)
e9670677 10547 {
316f5878
RS
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. */
fef14a42 10551 if (file_mips_isa != arch_info->isa)
316f5878
RS
10552 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
10553 mips_cpu_info_from_isa (file_mips_isa)->name,
fef14a42 10554 mips_cpu_info_from_isa (arch_info->isa)->name);
e9670677 10555 }
316f5878 10556 else
fef14a42 10557 arch_info = mips_cpu_info_from_isa (file_mips_isa);
e9670677
MR
10558 }
10559
fef14a42
TS
10560 if (arch_info == 0)
10561 arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT);
e9670677 10562
fef14a42 10563 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa))
316f5878 10564 as_bad ("-march=%s is not compatible with the selected ABI",
fef14a42
TS
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);
e9670677 10572
fef14a42
TS
10573 if (tune_info == 0)
10574 mips_set_tune (arch_info);
10575 else
10576 mips_set_tune (tune_info);
e9670677 10577
316f5878 10578 if (file_mips_gp32 >= 0)
e9670677 10579 {
316f5878
RS
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"));
e9670677
MR
10588 }
10589 else
10590 {
316f5878
RS
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));
e9670677
MR
10596 }
10597
316f5878
RS
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;
e9670677 10606
316f5878 10607 /* End of GCC-shared inference code. */
e9670677 10608
17a2f251
TS
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))
316f5878 10614 mips_32bitmode = 1;
e9670677
MR
10615
10616 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
10617 as_bad (_("trap exception not supported at ISA 1"));
10618
e9670677
MR
10619 /* If the selected architecture includes support for ASEs, enable
10620 generation of code for them. */
a4672219 10621 if (mips_opts.mips16 == -1)
fef14a42 10622 mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0;
ffdefa66 10623 if (mips_opts.ase_mips3d == -1)
fef14a42 10624 mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (file_mips_arch)) ? 1 : 0;
ffdefa66 10625 if (mips_opts.ase_mdmx == -1)
fef14a42 10626 mips_opts.ase_mdmx = (CPU_HAS_MDMX (file_mips_arch)) ? 1 : 0;
e9670677 10627
e9670677 10628 file_mips_isa = mips_opts.isa;
a4672219 10629 file_ase_mips16 = mips_opts.mips16;
e9670677
MR
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
ecb4347a
DJ
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 }
e9670677
MR
10644}
10645\f
10646void
17a2f251 10647mips_init_after_args (void)
252b5132
RH
10648{
10649 /* initialize opcodes */
10650 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
beae10d5 10651 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
252b5132
RH
10652}
10653
10654long
17a2f251 10655md_pcrel_from (fixS *fixP)
252b5132 10656{
a7ebbfdf
TS
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 }
252b5132
RH
10667}
10668
252b5132
RH
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
10676void
17a2f251 10677mips_frob_file_before_adjust (void)
252b5132
RH
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
3b91255e
RS
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. */
252b5132
RH
10734
10735void
17a2f251 10736mips_frob_file (void)
252b5132
RH
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;
3b91255e
RS
10743 bfd_boolean matched_lo_p;
10744 fixS **hi_pos, **lo_pos, **pos;
252b5132 10745
5919d012 10746 assert (reloc_needs_lo_p (l->fixp->fx_r_type));
252b5132 10747
5919d012
RS
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))
252b5132
RH
10756 continue;
10757
252b5132 10758 seginfo = seg_info (l->seg);
252b5132 10759
3b91255e
RS
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
704803a9
MR
10773 if (((*pos)->fx_r_type == BFD_RELOC_LO16
10774 || (*pos)->fx_r_type == BFD_RELOC_MIPS16_LO16)
3b91255e
RS
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)
252b5132 10799 {
3b91255e
RS
10800 *hi_pos = l->fixp->fx_next;
10801 l->fixp->fx_next = *lo_pos;
10802 *lo_pos = l->fixp;
252b5132 10803 }
252b5132
RH
10804 }
10805 }
10806}
10807
3e722fb5 10808/* We may have combined relocations without symbols in the N32/N64 ABI.
f6688943 10809 We have to prevent gas from dropping them. */
252b5132 10810
252b5132 10811int
17a2f251 10812mips_force_relocation (fixS *fixp)
252b5132 10813{
ae6063d4 10814 if (generic_force_reloc (fixp))
252b5132
RH
10815 return 1;
10816
f6688943
TS
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
3e722fb5 10824 return 0;
252b5132
RH
10825}
10826
45f8dfe8
AO
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
10840int
17a2f251 10841mips_validate_fix (struct fix *fixP, asection *seg)
45f8dfe8
AO
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
3e722fb5
CD
10864 && ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
10865 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
45f8dfe8
AO
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
115695a8
CD
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."));
45f8dfe8
AO
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
252b5132
RH
10904/* Apply a fixup to the object file. */
10905
94f592af 10906void
17a2f251 10907md_apply_fix3 (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
252b5132 10908{
874e8986 10909 bfd_byte *buf;
98aa84af 10910 long insn;
a7ebbfdf 10911 reloc_howto_type *howto;
252b5132 10912
a7ebbfdf
TS
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;
65551fa4 10917
252b5132
RH
10918 assert (fixP->fx_size == 4
10919 || fixP->fx_r_type == BFD_RELOC_16
10920 || fixP->fx_r_type == BFD_RELOC_64
f6688943
TS
10921 || fixP->fx_r_type == BFD_RELOC_CTOR
10922 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
252b5132 10923 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
a7ebbfdf 10924 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY);
252b5132 10925
a7ebbfdf 10926 buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where);
252b5132 10927
3e722fb5 10928 assert (! fixP->fx_pcrel);
b1dca8ee
RS
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)
252b5132
RH
10941 fixP->fx_done = 1;
10942
10943 switch (fixP->fx_r_type)
10944 {
3f98094e
DJ
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
252b5132 10955 case BFD_RELOC_MIPS_JMP:
e369bcce
TS
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:
252b5132
RH
10971 case BFD_RELOC_HI16:
10972 case BFD_RELOC_HI16_S:
cdf6fd85 10973 case BFD_RELOC_GPREL16:
252b5132
RH
10974 case BFD_RELOC_MIPS_LITERAL:
10975 case BFD_RELOC_MIPS_CALL16:
10976 case BFD_RELOC_MIPS_GOT16:
cdf6fd85 10977 case BFD_RELOC_GPREL32:
252b5132
RH
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:
d6f16593
MR
10983 case BFD_RELOC_MIPS16_HI16:
10984 case BFD_RELOC_MIPS16_HI16_S:
3e722fb5 10985 assert (! fixP->fx_pcrel);
252b5132
RH
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. */
a7ebbfdf 10993 *valP = 0;
252b5132
RH
10994 break;
10995
252b5132
RH
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. */
3e722fb5 10999 if (fixP->fx_done)
252b5132
RH
11000 {
11001 if (8 <= sizeof (valueT))
2132e3a3 11002 md_number_to_chars ((char *) buf, *valP, 8);
252b5132
RH
11003 else
11004 {
a7ebbfdf 11005 valueT hiv;
252b5132 11006
a7ebbfdf 11007 if ((*valP & 0x80000000) != 0)
252b5132
RH
11008 hiv = 0xffffffff;
11009 else
11010 hiv = 0;
b215186b 11011 md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)),
a7ebbfdf 11012 *valP, 4);
b215186b 11013 md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)),
a7ebbfdf 11014 hiv, 4);
252b5132
RH
11015 }
11016 }
11017 break;
11018
056350c6 11019 case BFD_RELOC_RVA:
252b5132
RH
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
3e722fb5
CD
11023 resolved when it appears but is later defined. */
11024 if (fixP->fx_done)
2132e3a3 11025 md_number_to_chars ((char *) buf, *valP, 4);
252b5132
RH
11026 break;
11027
11028 case BFD_RELOC_16:
11029 /* If we are deleting this reloc entry, we must fill in the
11030 value now. */
252b5132 11031 if (fixP->fx_done)
2132e3a3 11032 md_number_to_chars ((char *) buf, *valP, 2);
252b5132
RH
11033 break;
11034
11035 case BFD_RELOC_LO16:
d6f16593 11036 case BFD_RELOC_MIPS16_LO16:
3e722fb5
CD
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. */
252b5132
RH
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 {
a7ebbfdf 11043 if (*valP + 0x8000 > 0xffff)
252b5132
RH
11044 as_bad_where (fixP->fx_file, fixP->fx_line,
11045 _("relocation overflow"));
252b5132
RH
11046 if (target_big_endian)
11047 buf += 2;
2132e3a3 11048 md_number_to_chars ((char *) buf, *valP, 2);
252b5132
RH
11049 }
11050 break;
11051
11052 case BFD_RELOC_16_PCREL_S2:
a7ebbfdf 11053 if ((*valP & 0x3) != 0)
cb56d3d3 11054 as_bad_where (fixP->fx_file, fixP->fx_line,
a7ebbfdf 11055 _("Branch to odd address (%lx)"), (long) *valP);
cb56d3d3 11056
252b5132
RH
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 */
a7ebbfdf 11062 if (! fixP->fx_done)
bb2d6cd7 11063 break;
252b5132
RH
11064
11065 /* update old instruction data */
252b5132
RH
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
a7ebbfdf
TS
11071 if (*valP + 0x20000 <= 0x3ffff)
11072 {
11073 insn |= (*valP >> 2) & 0xffff;
2132e3a3 11074 md_number_to_chars ((char *) buf, insn, 4);
a7ebbfdf
TS
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
587aac4e 11080 < text_section->vma + bfd_get_section_size (text_section))
a7ebbfdf
TS
11081 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
11082 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
11083 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
252b5132
RH
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. */
a7ebbfdf
TS
11088 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
11089 insn = 0x0c000000; /* jal */
252b5132 11090 else
a7ebbfdf
TS
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);
2132e3a3 11096 md_number_to_chars ((char *) buf, insn, 4);
a7ebbfdf
TS
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"));
252b5132 11105 }
252b5132
RH
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 }
a7ebbfdf
TS
11123
11124 /* Remember value for tc_gen_reloc. */
11125 fixP->fx_addnumber = *valP;
252b5132
RH
11126}
11127
252b5132 11128static symbolS *
17a2f251 11129get_symbol (void)
252b5132
RH
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
11145static void
17a2f251 11146mips_align (int to, int fill, symbolS *label)
252b5132 11147{
7d10b47d 11148 mips_emit_delays ();
252b5132
RH
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);
49309057 11154 symbol_set_frag (label, frag_now);
252b5132
RH
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
11162static void
17a2f251 11163s_align (int x ATTRIBUTE_UNUSED)
252b5132
RH
11164{
11165 register int temp;
11166 register long temp_fill;
11167 long max_alignment = 15;
11168
11169 /*
11170
67c1ffbe 11171 o Note that the assembler pulls down any immediately preceding label
252b5132
RH
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 {
f9419b05 11191 ++input_line_pointer;
252b5132
RH
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
252b5132 11210static void
17a2f251 11211s_change_sec (int sec)
252b5132
RH
11212{
11213 segT seg;
11214
252b5132
RH
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
b6ff326e 11218 for an obj_section_change_hook macro, but that might be confusing
252b5132
RH
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
7d10b47d 11225 mips_emit_delays ();
252b5132
RH
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':
4d0d148d
TS
11240 seg = subseg_new (RDATA_SECTION_NAME,
11241 (subsegT) get_absolute_expression ());
11242 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
252b5132 11243 {
4d0d148d
TS
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);
252b5132 11249 }
4d0d148d 11250 demand_empty_rest_of_line ();
252b5132
RH
11251 break;
11252
11253 case 's':
4d0d148d
TS
11254 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
11255 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
252b5132 11256 {
4d0d148d
TS
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);
252b5132 11261 }
4d0d148d
TS
11262 demand_empty_rest_of_line ();
11263 break;
252b5132
RH
11264 }
11265
11266 auto_align = 1;
11267}
b34976b6 11268
cca86cc8 11269void
17a2f251 11270s_change_section (int ignore ATTRIBUTE_UNUSED)
cca86cc8 11271{
7ed4a06a 11272#ifdef OBJ_ELF
cca86cc8
SC
11273 char *section_name;
11274 char c;
684022ea 11275 char next_c = 0;
cca86cc8
SC
11276 int section_type;
11277 int section_flag;
11278 int section_entry_size;
11279 int section_alignment;
b34976b6 11280
7ed4a06a
TS
11281 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
11282 return;
11283
cca86cc8
SC
11284 section_name = input_line_pointer;
11285 c = get_symbol_end ();
a816d1ed
AO
11286 if (c)
11287 next_c = *(input_line_pointer + 1);
cca86cc8 11288
4cf0dd0d
TS
11289 /* Do we have .section Name<,"flags">? */
11290 if (c != ',' || (c == ',' && next_c == '"'))
cca86cc8 11291 {
4cf0dd0d
TS
11292 /* just after name is now '\0'. */
11293 *input_line_pointer = c;
cca86cc8
SC
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
a816d1ed
AO
11318 section_name = xstrdup (section_name);
11319
8ab8a5c8
RS
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
cca86cc8
SC
11336 obj_elf_change_section (section_name, section_type, section_flag,
11337 section_entry_size, 0, 0, 0);
a816d1ed
AO
11338
11339 if (now_seg->name != section_name)
11340 free (section_name);
7ed4a06a 11341#endif /* OBJ_ELF */
cca86cc8 11342}
252b5132
RH
11343
11344void
17a2f251 11345mips_enable_auto_align (void)
252b5132
RH
11346{
11347 auto_align = 1;
11348}
11349
11350static void
17a2f251 11351s_cons (int log_size)
252b5132
RH
11352{
11353 symbolS *label;
11354
11355 label = insn_labels != NULL ? insn_labels->label : NULL;
7d10b47d 11356 mips_emit_delays ();
252b5132
RH
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
11363static void
17a2f251 11364s_float_cons (int type)
252b5132
RH
11365{
11366 symbolS *label;
11367
11368 label = insn_labels != NULL ? insn_labels->label : NULL;
11369
7d10b47d 11370 mips_emit_delays ();
252b5132
RH
11371
11372 if (auto_align)
49309057
ILT
11373 {
11374 if (type == 'd')
11375 mips_align (3, 0, label);
11376 else
11377 mips_align (2, 0, label);
11378 }
252b5132
RH
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
11391static void
17a2f251 11392s_mips_globl (int x ATTRIBUTE_UNUSED)
252b5132
RH
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
49309057 11425 symbol_get_bfdsym (symbolP)->flags |= flag;
252b5132
RH
11426
11427 S_SET_EXTERNAL (symbolP);
11428 demand_empty_rest_of_line ();
11429}
11430
11431static void
17a2f251 11432s_option (int x ATTRIBUTE_UNUSED)
252b5132
RH
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)
143d77c5 11452 {
252b5132 11453 mips_pic = SVR4_PIC;
143d77c5
EC
11454 mips_abicalls = TRUE;
11455 }
252b5132
RH
11456 else
11457 as_bad (_(".option pic%d not supported"), i);
11458
4d0d148d 11459 if (mips_pic == SVR4_PIC)
252b5132
RH
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
e972090a
NC
11476struct mips_option_stack
11477{
252b5132
RH
11478 struct mips_option_stack *next;
11479 struct mips_set_options options;
11480};
11481
11482static struct mips_option_stack *mips_opts_stack;
11483
11484/* Handle the .set pseudo-op. */
11485
11486static void
17a2f251 11487s_mipsset (int x ATTRIBUTE_UNUSED)
252b5132
RH
11488{
11489 char *name = input_line_pointer, ch;
11490
11491 while (!is_end_of_line[(unsigned char) *input_line_pointer])
f9419b05 11492 ++input_line_pointer;
252b5132
RH
11493 ch = *input_line_pointer;
11494 *input_line_pointer = '\0';
11495
11496 if (strcmp (name, "reorder") == 0)
11497 {
7d10b47d
RS
11498 if (mips_opts.noreorder)
11499 end_noreorder ();
252b5132
RH
11500 }
11501 else if (strcmp (name, "noreorder") == 0)
11502 {
7d10b47d
RS
11503 if (!mips_opts.noreorder)
11504 start_noreorder ();
252b5132
RH
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;
1f25f5d3
CD
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;
a4672219
TS
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;
1a2c1fad 11554 else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0)
252b5132 11555 {
af7ee8bf 11556 int reset = 0;
252b5132 11557
1a2c1fad
CD
11558 /* Permit the user to change the ISA and architecture on the fly.
11559 Needless to say, misuse can cause serious problems. */
81a21e38 11560 if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0)
af7ee8bf
CD
11561 {
11562 reset = 1;
11563 mips_opts.isa = file_mips_isa;
1a2c1fad 11564 mips_opts.arch = file_mips_arch;
1a2c1fad
CD
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 }
81a21e38
TS
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 }
af7ee8bf 11592 else
81a21e38 11593 as_bad (_("unknown ISA or architecture %s"), name);
af7ee8bf
CD
11594
11595 switch (mips_opts.isa)
98d3f06f
KH
11596 {
11597 case 0:
98d3f06f 11598 break;
af7ee8bf
CD
11599 case ISA_MIPS1:
11600 case ISA_MIPS2:
11601 case ISA_MIPS32:
11602 case ISA_MIPS32R2:
98d3f06f
KH
11603 mips_opts.gp32 = 1;
11604 mips_opts.fp32 = 1;
11605 break;
af7ee8bf
CD
11606 case ISA_MIPS3:
11607 case ISA_MIPS4:
11608 case ISA_MIPS5:
11609 case ISA_MIPS64:
5f74bc13 11610 case ISA_MIPS64R2:
98d3f06f
KH
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 }
af7ee8bf 11618 if (reset)
98d3f06f 11619 {
af7ee8bf
CD
11620 mips_opts.gp32 = file_mips_gp32;
11621 mips_opts.fp32 = file_mips_fp32;
98d3f06f 11622 }
252b5132
RH
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)
7d10b47d 11649 start_noreorder ();
252b5132 11650 else if (! s->options.noreorder && mips_opts.noreorder)
7d10b47d 11651 end_noreorder ();
252b5132
RH
11652
11653 mips_opts = s->options;
11654 mips_opts_stack = s->next;
11655 free (s);
11656 }
11657 }
aed1a261
RS
11658 else if (strcmp (name, "sym32") == 0)
11659 mips_opts.sym32 = TRUE;
11660 else if (strcmp (name, "nosym32") == 0)
11661 mips_opts.sym32 = FALSE;
252b5132
RH
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
11673static void
17a2f251 11674s_abicalls (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
11675{
11676 mips_pic = SVR4_PIC;
143d77c5 11677 mips_abicalls = TRUE;
4d0d148d
TS
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
252b5132
RH
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
aa6975fb
ILT
11695 The .cpload argument is normally $25 == $t9.
11696
11697 The -mno-shared option changes this to:
bbe506e8
TS
11698 lui $gp,%hi(__gnu_local_gp)
11699 addiu $gp,$gp,%lo(__gnu_local_gp)
aa6975fb
ILT
11700 and the argument is ignored. This saves an instruction, but the
11701 resulting code is not position independent; it uses an absolute
bbe506e8
TS
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. */
252b5132
RH
11704
11705static void
17a2f251 11706s_cpload (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
11707{
11708 expressionS ex;
aa6975fb
ILT
11709 int reg;
11710 int in_shared;
252b5132 11711
6478892d
TS
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)
252b5132
RH
11715 {
11716 s_ignore (0);
11717 return;
11718 }
11719
d3ecfc59 11720 /* .cpload should be in a .set noreorder section. */
252b5132
RH
11721 if (mips_opts.noreorder == 0)
11722 as_warn (_(".cpload not in noreorder section"));
11723
aa6975fb
ILT
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. */
aed1a261 11728 in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS;
aa6975fb 11729
252b5132 11730 ex.X_op = O_symbol;
bbe506e8
TS
11731 ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" :
11732 "__gnu_local_gp");
252b5132
RH
11733 ex.X_op_symbol = NULL;
11734 ex.X_add_number = 0;
11735
11736 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
49309057 11737 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
252b5132 11738
584892a6 11739 macro_start ();
67c0d1eb
RS
11740 macro_build_lui (&ex, mips_gp_register);
11741 macro_build (&ex, "addiu", "t,r,j", mips_gp_register,
17a2f251 11742 mips_gp_register, BFD_RELOC_LO16);
aa6975fb
ILT
11743 if (in_shared)
11744 macro_build (NULL, "addu", "d,v,t", mips_gp_register,
11745 mips_gp_register, reg);
584892a6 11746 macro_end ();
252b5132
RH
11747
11748 demand_empty_rest_of_line ();
11749}
11750
6478892d
TS
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)
956cd1d6 11756 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
11757 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11758 daddu $gp, $gp, $reg1
6478892d
TS
11759
11760 If $reg2 is given, this results in:
11761 daddu $reg2, $gp, $0
956cd1d6 11762 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
11763 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11764 daddu $gp, $gp, $reg1
aa6975fb
ILT
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
6478892d 11772static void
17a2f251 11773s_cpsetup (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
11774{
11775 expressionS ex_off;
11776 expressionS ex_sym;
11777 int reg1;
6478892d 11778
8586fc66 11779 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
6478892d
TS
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
80245285 11795 ++input_line_pointer;
6478892d
TS
11796 SKIP_WHITESPACE ();
11797 if (*input_line_pointer == '$')
80245285
TS
11798 {
11799 mips_cpreturn_register = tc_get_register (0);
11800 mips_cpreturn_offset = -1;
11801 }
6478892d 11802 else
80245285
TS
11803 {
11804 mips_cpreturn_offset = get_absolute_expression ();
11805 mips_cpreturn_register = -1;
11806 }
6478892d
TS
11807 SKIP_WHITESPACE ();
11808 if (*input_line_pointer != ',')
11809 {
11810 as_bad (_("missing argument separator ',' for .cpsetup"));
11811 return;
11812 }
11813 else
f9419b05 11814 ++input_line_pointer;
6478892d 11815 SKIP_WHITESPACE ();
f21f8242 11816 expression (&ex_sym);
6478892d 11817
584892a6 11818 macro_start ();
6478892d
TS
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
67c0d1eb 11826 macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register,
17a2f251 11827 BFD_RELOC_LO16, SP);
6478892d
TS
11828 }
11829 else
67c0d1eb 11830 macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register,
17a2f251 11831 mips_gp_register, 0);
6478892d 11832
aed1a261 11833 if (mips_in_shared || HAVE_64BIT_SYMBOLS)
aa6975fb
ILT
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;
4184909a 11851 ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp");
aa6975fb
ILT
11852 ex.X_op_symbol = NULL;
11853 ex.X_add_number = 0;
6e1304d8 11854
aa6975fb
ILT
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 }
f21f8242 11862
584892a6 11863 macro_end ();
6478892d
TS
11864
11865 demand_empty_rest_of_line ();
11866}
11867
11868static void
17a2f251 11869s_cplocal (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
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);
85b51719 11880 demand_empty_rest_of_line ();
6478892d
TS
11881}
11882
252b5132
RH
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
11887static void
17a2f251 11888s_cprestore (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
11889{
11890 expressionS ex;
252b5132 11891
6478892d 11892 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
c9914766 11893 .cprestore is ignored. */
6478892d 11894 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
11895 {
11896 s_ignore (0);
11897 return;
11898 }
11899
11900 mips_cprestore_offset = get_absolute_expression ();
7a621144 11901 mips_cprestore_valid = 1;
252b5132
RH
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
584892a6 11908 macro_start ();
67c0d1eb
RS
11909 macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register,
11910 SP, HAVE_64BIT_ADDRESSES);
584892a6 11911 macro_end ();
252b5132
RH
11912
11913 demand_empty_rest_of_line ();
11914}
11915
6478892d 11916/* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
67c1ffbe 11917 was given in the preceding .cpsetup, it results in:
6478892d 11918 ld $gp, offset($sp)
76b3015f 11919
6478892d 11920 If a register $reg2 was given there, it results in:
609f23f4 11921 daddu $gp, $reg2, $0
6478892d
TS
11922 */
11923static void
17a2f251 11924s_cpreturn (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
11925{
11926 expressionS ex;
6478892d
TS
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
584892a6 11936 macro_start ();
6478892d
TS
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
67c0d1eb 11944 macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP);
6478892d
TS
11945 }
11946 else
67c0d1eb 11947 macro_build (NULL, "daddu", "d,v,t", mips_gp_register,
17a2f251 11948 mips_cpreturn_register, 0);
584892a6 11949 macro_end ();
6478892d
TS
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
11957static void
17a2f251 11958s_gpvalue (int ignore ATTRIBUTE_UNUSED)
6478892d
TS
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
def2e0dd 11968 mips_gprel_offset = get_absolute_expression ();
6478892d
TS
11969
11970 demand_empty_rest_of_line ();
11971}
11972
252b5132
RH
11973/* Handle the .gpword pseudo-op. This is used when generating PIC
11974 code. It generates a 32 bit GP relative reloc. */
11975
11976static void
17a2f251 11977s_gpword (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
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;
7d10b47d 11991 mips_emit_delays ();
252b5132
RH
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);
17a2f251 12005 md_number_to_chars (p, 0, 4);
b34976b6 12006 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
cdf6fd85 12007 BFD_RELOC_GPREL32);
252b5132
RH
12008
12009 demand_empty_rest_of_line ();
12010}
12011
10181a0d 12012static void
17a2f251 12013s_gpdword (int ignore ATTRIBUTE_UNUSED)
10181a0d
AO
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;
7d10b47d 12027 mips_emit_delays ();
10181a0d
AO
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);
17a2f251 12041 md_number_to_chars (p, 0, 8);
a105a300 12042 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
6e1304d8 12043 BFD_RELOC_GPREL32)->fx_tcbit = 1;
10181a0d
AO
12044
12045 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
6e1304d8
RS
12046 fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0,
12047 FALSE, BFD_RELOC_64)->fx_tcbit = 1;
10181a0d
AO
12048
12049 demand_empty_rest_of_line ();
12050}
12051
252b5132
RH
12052/* Handle the .cpadd pseudo-op. This is used when dealing with switch
12053 tables in SVR4 PIC code. */
12054
12055static void
17a2f251 12056s_cpadd (int ignore ATTRIBUTE_UNUSED)
252b5132 12057{
252b5132
RH
12058 int reg;
12059
10181a0d
AO
12060 /* This is ignored when not generating SVR4 PIC code. */
12061 if (mips_pic != SVR4_PIC)
252b5132
RH
12062 {
12063 s_ignore (0);
12064 return;
12065 }
12066
12067 /* Add $gp to the register named as an argument. */
584892a6 12068 macro_start ();
252b5132 12069 reg = tc_get_register (0);
67c0d1eb 12070 macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register);
584892a6 12071 macro_end ();
252b5132 12072
bdaaa2e1 12073 demand_empty_rest_of_line ();
252b5132
RH
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
12085static void
17a2f251 12086s_insn (int ignore ATTRIBUTE_UNUSED)
252b5132 12087{
f9419b05 12088 mips16_mark_labels ();
252b5132
RH
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
12099static void
17a2f251 12100s_mips_stab (int type)
252b5132 12101{
f9419b05 12102 if (type == 'n')
252b5132
RH
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
12111static void
17a2f251 12112s_mips_weakext (int ignore ATTRIBUTE_UNUSED)
252b5132
RH
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 {
956cd1d6 12131 as_bad ("ignoring attempt to redefine symbol %s",
252b5132
RH
12132 S_GET_NAME (symbolP));
12133 ignore_rest_of_line ();
12134 return;
12135 }
bdaaa2e1 12136
252b5132
RH
12137 if (*input_line_pointer == ',')
12138 {
12139 ++input_line_pointer;
12140 SKIP_WHITESPACE ();
12141 }
bdaaa2e1 12142
252b5132
RH
12143 expression (&exp);
12144 if (exp.X_op != O_symbol)
12145 {
12146 as_bad ("bad .weakext directive");
98d3f06f 12147 ignore_rest_of_line ();
252b5132
RH
12148 return;
12149 }
49309057 12150 symbol_set_value_expression (symbolP, &exp);
252b5132
RH
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
12160int
17a2f251 12161tc_get_register (int frame)
252b5132
RH
12162{
12163 int reg;
12164
12165 SKIP_WHITESPACE ();
12166 if (*input_line_pointer++ != '$')
12167 {
12168 as_warn (_("expected `$'"));
85b51719 12169 reg = ZERO;
252b5132 12170 }
3882b010 12171 else if (ISDIGIT (*input_line_pointer))
252b5132
RH
12172 {
12173 reg = get_absolute_expression ();
12174 if (reg < 0 || reg >= 32)
12175 {
12176 as_warn (_("Bad register number"));
85b51719 12177 reg = ZERO;
252b5132
RH
12178 }
12179 }
12180 else
12181 {
76db943d 12182 if (strncmp (input_line_pointer, "ra", 2) == 0)
85b51719
TS
12183 {
12184 reg = RA;
12185 input_line_pointer += 2;
12186 }
76db943d 12187 else if (strncmp (input_line_pointer, "fp", 2) == 0)
85b51719
TS
12188 {
12189 reg = FP;
12190 input_line_pointer += 2;
12191 }
252b5132 12192 else if (strncmp (input_line_pointer, "sp", 2) == 0)
85b51719
TS
12193 {
12194 reg = SP;
12195 input_line_pointer += 2;
12196 }
252b5132 12197 else if (strncmp (input_line_pointer, "gp", 2) == 0)
85b51719
TS
12198 {
12199 reg = GP;
12200 input_line_pointer += 2;
12201 }
252b5132 12202 else if (strncmp (input_line_pointer, "at", 2) == 0)
85b51719
TS
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 }
252b5132
RH
12222 else
12223 {
12224 as_warn (_("Unrecognized register name"));
85b51719
TS
12225 reg = ZERO;
12226 while (ISALNUM(*input_line_pointer))
12227 input_line_pointer++;
252b5132 12228 }
252b5132
RH
12229 }
12230 if (frame)
7a621144
DJ
12231 {
12232 mips_frame_reg = reg != 0 ? reg : SP;
12233 mips_frame_reg_valid = 1;
12234 mips_cprestore_valid = 0;
12235 }
252b5132
RH
12236 return reg;
12237}
12238
12239valueT
17a2f251 12240md_section_align (asection *seg, valueT addr)
252b5132
RH
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
12263static int
17a2f251 12264nopic_need_relax (symbolS *sym, int before_relaxing)
252b5132
RH
12265{
12266 if (sym == 0)
12267 return 0;
12268
4d0d148d 12269 if (g_switch_value > 0)
252b5132
RH
12270 {
12271 const char *symname;
12272 int change;
12273
c9914766 12274 /* Find out whether this symbol can be referenced off the $gp
252b5132
RH
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
c9914766 12277 not be referenced off the $gp, although it appears as though
252b5132
RH
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
49309057
ILT
12294 || (symbol_get_obj (sym)->ecoff_extern_size != 0
12295 && (symbol_get_obj (sym)->ecoff_extern_size
12296 <= g_switch_value))
252b5132
RH
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
49309057 12303 && symbol_get_obj (sym)->ecoff_extern_size == 0
252b5132
RH
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
fba2b7f9
GK
12317 && strcmp (segname, ".sbss") != 0
12318 && strncmp (segname, ".sdata.", 7) != 0
12319 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
252b5132
RH
12320 }
12321 return change;
12322 }
12323 else
c9914766 12324 /* We are not optimizing for the $gp register. */
252b5132
RH
12325 return 1;
12326}
12327
5919d012
RS
12328
12329/* Return true if the given symbol should be considered local for SVR4 PIC. */
12330
12331static bfd_boolean
17a2f251 12332pic_need_relax (symbolS *sym, asection *segtype)
5919d012
RS
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
3e722fb5 12376 || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym)))
5919d012
RS
12377#endif
12378 );
12379}
12380
12381
252b5132
RH
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
12385static int
17a2f251 12386mips16_extended_frag (fragS *fragp, asection *sec, long stretch)
252b5132
RH
12387{
12388 int type;
12389 register const struct mips16_immed_operand *op;
12390 offsetT val;
12391 int mintiny, maxtiny;
12392 segT symsec;
98aa84af 12393 fragS *sym_frag;
252b5132
RH
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
98aa84af 12427 sym_frag = symbol_get_frag (fragp->fr_symbol);
ac62c346 12428 val = S_GET_VALUE (fragp->fr_symbol);
98aa84af 12429 symsec = S_GET_SEGMENT (fragp->fr_symbol);
252b5132
RH
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 {
98aa84af 12448 /* Must have been called from md_estimate_size_before_relax. */
252b5132
RH
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 }
98aa84af
AM
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;
252b5132
RH
12467 }
12468
12469 /* In this case, we know for sure that the symbol fragment is in
98aa84af
AM
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
252b5132
RH
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
98aa84af 12476 && sym_frag->relax_marker != fragp->relax_marker)
252b5132
RH
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. */
98aa84af 12486 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
252b5132
RH
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
bdaaa2e1 12516 higher. */
252b5132
RH
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
4a6a3df4
AO
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. */
12585static int
17a2f251 12586relaxed_branch_length (fragS *fragp, asection *sec, int update)
4a6a3df4 12587{
b34976b6 12588 bfd_boolean toofar;
4a6a3df4
AO
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. */
b34976b6 12610 toofar = FALSE;
4a6a3df4 12611 else
b34976b6 12612 toofar = TRUE;
4a6a3df4
AO
12613
12614 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
12615 fragp->fr_subtype
af6ae2ad 12616 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype),
4a6a3df4
AO
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 }
b34976b6 12640
4a6a3df4
AO
12641 return length;
12642}
12643
252b5132
RH
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
252b5132 12649int
17a2f251 12650md_estimate_size_before_relax (fragS *fragp, asection *segtype)
252b5132 12651{
5919d012 12652 int change;
252b5132 12653
4a6a3df4
AO
12654 if (RELAX_BRANCH_P (fragp->fr_subtype))
12655 {
12656
b34976b6
AM
12657 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
12658
4a6a3df4
AO
12659 return fragp->fr_var;
12660 }
12661
252b5132 12662 if (RELAX_MIPS16_P (fragp->fr_subtype))
177b4a6a
AO
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);
252b5132
RH
12666
12667 if (mips_pic == NO_PIC)
5919d012 12668 change = nopic_need_relax (fragp->fr_symbol, 0);
252b5132 12669 else if (mips_pic == SVR4_PIC)
5919d012 12670 change = pic_need_relax (fragp->fr_symbol, segtype);
252b5132
RH
12671 else
12672 abort ();
12673
12674 if (change)
12675 {
4d7206a2 12676 fragp->fr_subtype |= RELAX_USE_SECOND;
4d7206a2 12677 return -RELAX_FIRST (fragp->fr_subtype);
252b5132 12678 }
4d7206a2
RS
12679 else
12680 return -RELAX_SECOND (fragp->fr_subtype);
252b5132
RH
12681}
12682
12683/* This is called to see whether a reloc against a defined symbol
de7e6852 12684 should be converted into a reloc against a section. */
252b5132
RH
12685
12686int
17a2f251 12687mips_fix_adjustable (fixS *fixp)
252b5132 12688{
de7e6852
RS
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. */
252b5132
RH
12691 if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)
12692 return 0;
a161fe53 12693
252b5132
RH
12694 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
12695 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
12696 return 0;
a161fe53 12697
252b5132
RH
12698 if (fixp->fx_addsy == NULL)
12699 return 1;
a161fe53 12700
de7e6852
RS
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. */
704803a9
MR
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))
de7e6852
RS
12718 && HAVE_IN_PLACE_ADDENDS
12719 && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0)
12720 return 0;
12721
252b5132 12722#ifdef OBJ_ELF
de7e6852
RS
12723 /* Don't adjust relocations against mips16 symbols, so that the linker
12724 can find them if it needs to set up a stub. */
252b5132
RH
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
a161fe53 12730
252b5132
RH
12731 return 1;
12732}
12733
12734/* Translate internal representation of relocation info to BFD target
12735 format. */
12736
12737arelent **
17a2f251 12738tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp)
252b5132
RH
12739{
12740 static arelent *retval[4];
12741 arelent *reloc;
12742 bfd_reloc_code_real_type code;
12743
4b0cff4e
TS
12744 memset (retval, 0, sizeof(retval));
12745 reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent));
49309057
ILT
12746 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
12747 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
12748 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
12749
3e722fb5
CD
12750 assert (! fixp->fx_pcrel);
12751 reloc->addend = fixp->fx_addnumber;
252b5132 12752
438c16b8
TS
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)
252b5132
RH
12756 {
12757 reloc->address = reloc->addend;
12758 reloc->addend = 0;
12759 }
12760
252b5132 12761 code = fixp->fx_r_type;
252b5132 12762
3e722fb5
CD
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.) */
0b25d3e6
AO
12768 if ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
12769 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
3e722fb5 12770 && code == BFD_RELOC_16_PCREL_S2)
0b25d3e6
AO
12771 reloc->howto = NULL;
12772 else
12773 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
12774
252b5132
RH
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
12789int
17a2f251 12790mips_relax_frag (asection *sec, fragS *fragp, long stretch)
252b5132 12791{
4a6a3df4
AO
12792 if (RELAX_BRANCH_P (fragp->fr_subtype))
12793 {
12794 offsetT old_var = fragp->fr_var;
b34976b6
AM
12795
12796 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
4a6a3df4
AO
12797
12798 return fragp->fr_var - old_var;
12799 }
12800
252b5132
RH
12801 if (! RELAX_MIPS16_P (fragp->fr_subtype))
12802 return 0;
12803
c4e7957c 12804 if (mips16_extended_frag (fragp, NULL, stretch))
252b5132
RH
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
12824void
17a2f251 12825md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
252b5132 12826{
4a6a3df4
AO
12827 if (RELAX_BRANCH_P (fragp->fr_subtype))
12828 {
12829 bfd_byte *buf;
12830 unsigned long insn;
12831 expressionS exp;
12832 fixS *fixp;
b34976b6 12833
4a6a3df4
AO
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);
b34976b6 12840
4a6a3df4
AO
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,
0b25d3e6
AO
12851 4, &exp, 1,
12852 BFD_RELOC_16_PCREL_S2);
4a6a3df4
AO
12853 fixp->fx_file = fragp->fr_file;
12854 fixp->fx_line = fragp->fr_line;
b34976b6 12855
2132e3a3 12856 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
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;
b34976b6 12888
4a6a3df4
AO
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. */
b34976b6 12925 i--;
4a6a3df4
AO
12926 insn |= i;
12927 /* Branch over the jump. */
2132e3a3 12928 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
12929 buf += 4;
12930
12931 /* Nop */
2132e3a3 12932 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
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;
2132e3a3 12951 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
12952 buf += 4;
12953
2132e3a3 12954 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
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
2132e3a3 12973 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
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
2132e3a3 12995 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4 12996 buf += 4;
b34976b6 12997
4a6a3df4
AO
12998 if (mips_opts.isa == ISA_MIPS1)
12999 {
13000 /* nop */
2132e3a3 13001 md_number_to_chars ((char *) buf, 0, 4);
4a6a3df4
AO
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;
b34976b6 13012
2132e3a3 13013 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
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
2132e3a3 13022 md_number_to_chars ((char *) buf, insn, 4);
4a6a3df4
AO
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
252b5132
RH
13035 if (RELAX_MIPS16_P (fragp->fr_subtype))
13036 {
13037 int type;
13038 register const struct mips16_immed_operand *op;
b34976b6 13039 bfd_boolean small, ext;
252b5132
RH
13040 offsetT val;
13041 bfd_byte *buf;
13042 unsigned long insn;
b34976b6 13043 bfd_boolean use_extend;
252b5132
RH
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 {
b34976b6
AM
13053 small = FALSE;
13054 ext = TRUE;
252b5132
RH
13055 }
13056 else
13057 {
b34976b6
AM
13058 small = TRUE;
13059 ext = FALSE;
252b5132
RH
13060 }
13061
6386f3a7 13062 resolve_symbol_value (fragp->fr_symbol);
252b5132
RH
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 {
2132e3a3 13115 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
252b5132
RH
13116 fragp->fr_fix += 2;
13117 buf += 2;
13118 }
13119
2132e3a3 13120 md_number_to_chars ((char *) buf, insn, 2);
252b5132
RH
13121 fragp->fr_fix += 2;
13122 buf += 2;
13123 }
13124 else
13125 {
4d7206a2
RS
13126 int first, second;
13127 fixS *fixp;
252b5132 13128
4d7206a2
RS
13129 first = RELAX_FIRST (fragp->fr_subtype);
13130 second = RELAX_SECOND (fragp->fr_subtype);
13131 fixp = (fixS *) fragp->fr_opcode;
252b5132 13132
584892a6
RS
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
4d7206a2
RS
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 }
252b5132 13153
4d7206a2
RS
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;
252b5132
RH
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
13186void
17a2f251 13187mips_frob_file_after_relocs (void)
252b5132
RH
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
13217void
17a2f251 13218mips_define_label (symbolS *sym)
252b5132
RH
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
13239void
17a2f251 13240mips_elf_final_processing (void)
252b5132
RH
13241{
13242 /* Write out the register information. */
316f5878 13243 if (mips_abi != N64_ABI)
252b5132
RH
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)
143d77c5 13280 {
252b5132 13281 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
143d77c5
EC
13282 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
13283 }
13284 if (mips_abicalls)
13285 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC;
252b5132 13286
98d3f06f 13287 /* Set MIPS ELF flags for ASEs. */
a4672219
TS
13288 if (file_ase_mips16)
13289 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
1f25f5d3
CD
13290#if 0 /* XXX FIXME */
13291 if (file_ase_mips3d)
13292 elf_elfheader (stdoutput)->e_flags |= ???;
13293#endif
deec1734
CD
13294 if (file_ase_mdmx)
13295 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
1f25f5d3 13296
bdaaa2e1 13297 /* Set the MIPS ELF ABI flags. */
316f5878 13298 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
252b5132 13299 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
316f5878 13300 else if (mips_abi == O64_ABI)
252b5132 13301 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
316f5878 13302 else if (mips_abi == EABI_ABI)
252b5132 13303 {
316f5878 13304 if (!file_mips_gp32)
252b5132
RH
13305 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
13306 else
13307 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
13308 }
316f5878 13309 else if (mips_abi == N32_ABI)
be00bddd
TS
13310 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
13311
c9914766 13312 /* Nothing to do for N64_ABI. */
252b5132
RH
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
beae10d5 13320typedef struct proc {
9b2f1d35
EC
13321 symbolS *func_sym;
13322 symbolS *func_end_sym;
beae10d5
KH
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;
252b5132
RH
13331
13332static procS cur_proc;
13333static procS *cur_proc_ptr;
13334static int numprocs;
13335
0a9ef439 13336/* Fill in an rs_align_code fragment. */
a19d8eb0 13337
0a9ef439 13338void
17a2f251 13339mips_handle_align (fragS *fragp)
a19d8eb0 13340{
0a9ef439
RH
13341 if (fragp->fr_type != rs_align_code)
13342 return;
13343
13344 if (mips_opts.mips16)
a19d8eb0
CP
13345 {
13346 static const unsigned char be_nop[] = { 0x65, 0x00 };
13347 static const unsigned char le_nop[] = { 0x00, 0x65 };
13348
0a9ef439
RH
13349 int bytes;
13350 char *p;
a19d8eb0 13351
0a9ef439
RH
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;
f9419b05 13358 fragp->fr_fix++;
0a9ef439
RH
13359 }
13360
13361 memcpy (p, (target_big_endian ? be_nop : le_nop), 2);
13362 fragp->fr_var = 2;
a19d8eb0
CP
13363 }
13364
0a9ef439 13365 /* For mips32, a nop is a zero, which we trivially get by doing nothing. */
a19d8eb0
CP
13366}
13367
252b5132 13368static void
17a2f251 13369md_obj_begin (void)
252b5132
RH
13370{
13371}
13372
13373static void
17a2f251 13374md_obj_end (void)
252b5132
RH
13375{
13376 /* check for premature end, nesting errors, etc */
13377 if (cur_proc_ptr)
9a41af64 13378 as_warn (_("missing .end at end of assembly"));
252b5132
RH
13379}
13380
13381static long
17a2f251 13382get_number (void)
252b5132
RH
13383{
13384 int negative = 0;
13385 long val = 0;
13386
13387 if (*input_line_pointer == '-')
13388 {
13389 ++input_line_pointer;
13390 negative = 1;
13391 }
3882b010 13392 if (!ISDIGIT (*input_line_pointer))
956cd1d6 13393 as_bad (_("expected simple number"));
252b5132
RH
13394 if (input_line_pointer[0] == '0')
13395 {
13396 if (input_line_pointer[1] == 'x')
13397 {
13398 input_line_pointer += 2;
3882b010 13399 while (ISXDIGIT (*input_line_pointer))
252b5132
RH
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;
3882b010 13409 while (ISDIGIT (*input_line_pointer))
252b5132
RH
13410 {
13411 val <<= 3;
13412 val |= *input_line_pointer++ - '0';
13413 }
13414 return negative ? -val : val;
13415 }
13416 }
3882b010 13417 if (!ISDIGIT (*input_line_pointer))
252b5132
RH
13418 {
13419 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
13420 *input_line_pointer, *input_line_pointer);
956cd1d6 13421 as_warn (_("invalid number"));
252b5132
RH
13422 return -1;
13423 }
3882b010 13424 while (ISDIGIT (*input_line_pointer))
252b5132
RH
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
c5dd6aab
DJ
13433 is an initial number which is the ECOFF file index. In the non-ECOFF
13434 case .file implies DWARF-2. */
13435
13436static void
17a2f251 13437s_mips_file (int x ATTRIBUTE_UNUSED)
c5dd6aab 13438{
ecb4347a
DJ
13439 static int first_file_directive = 0;
13440
c5dd6aab
DJ
13441 if (ECOFF_DEBUGGING)
13442 {
13443 get_number ();
13444 s_app_file (0);
13445 }
13446 else
ecb4347a
DJ
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);
c04f5787 13459 s_app_file_string (filename, 0);
ecb4347a
DJ
13460 }
13461 first_file_directive = 1;
13462 }
c5dd6aab
DJ
13463}
13464
13465/* The .loc directive, implying DWARF-2. */
252b5132
RH
13466
13467static void
17a2f251 13468s_mips_loc (int x ATTRIBUTE_UNUSED)
252b5132 13469{
c5dd6aab
DJ
13470 if (!ECOFF_DEBUGGING)
13471 dwarf2_directive_loc (0);
252b5132
RH
13472}
13473
252b5132
RH
13474/* The .end directive. */
13475
13476static void
17a2f251 13477s_mips_end (int x ATTRIBUTE_UNUSED)
252b5132
RH
13478{
13479 symbolS *p;
252b5132 13480
7a621144
DJ
13481 /* Following functions need their own .frame and .cprestore directives. */
13482 mips_frame_reg_valid = 0;
13483 mips_cprestore_valid = 0;
13484
252b5132
RH
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
14949570 13493 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
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));
9b2f1d35 13506 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym)))
252b5132 13507 as_warn (_(".end symbol does not match .ent symbol."));
ecb4347a
DJ
13508
13509 if (debug_type == DEBUG_STABS)
13510 stabs_generate_asm_endfunc (S_GET_NAME (p),
13511 S_GET_NAME (p));
252b5132
RH
13512 }
13513 else
13514 as_warn (_(".end directive missing or unknown symbol"));
13515
2132e3a3 13516#ifdef OBJ_ELF
9b2f1d35
EC
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
ecb4347a 13532 /* Generate a .pdr section. */
dcd410fe
RO
13533 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING
13534 && mips_flag_pdr)
ecb4347a
DJ
13535 {
13536 segT saved_seg = now_seg;
13537 subsegT saved_subseg = now_subseg;
13538 valueT dot;
13539 expressionS exp;
13540 char *fragp;
252b5132 13541
ecb4347a 13542 dot = frag_now_fix ();
252b5132
RH
13543
13544#ifdef md_flush_pending_output
ecb4347a 13545 md_flush_pending_output ();
252b5132
RH
13546#endif
13547
ecb4347a
DJ
13548 assert (pdr_seg);
13549 subseg_set (pdr_seg, 0);
252b5132 13550
ecb4347a
DJ
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);
252b5132 13556
ecb4347a 13557 fragp = frag_more (7 * 4);
252b5132 13558
17a2f251
TS
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);
252b5132 13566
ecb4347a
DJ
13567 subseg_set (saved_seg, saved_subseg);
13568 }
13569#endif /* OBJ_ELF */
252b5132
RH
13570
13571 cur_proc_ptr = NULL;
13572}
13573
13574/* The .aent and .ent directives. */
13575
13576static void
17a2f251 13577s_mips_ent (int aent)
252b5132 13578{
252b5132 13579 symbolS *symbolP;
252b5132
RH
13580
13581 symbolP = get_symbol ();
13582 if (*input_line_pointer == ',')
f9419b05 13583 ++input_line_pointer;
252b5132 13584 SKIP_WHITESPACE ();
3882b010 13585 if (ISDIGIT (*input_line_pointer)
d9a62219 13586 || *input_line_pointer == '-')
874e8986 13587 get_number ();
252b5132 13588
14949570 13589 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0)
252b5132
RH
13590 as_warn (_(".ent or .aent not in text section."));
13591
13592 if (!aent && cur_proc_ptr)
9a41af64 13593 as_warn (_("missing .end"));
252b5132
RH
13594
13595 if (!aent)
13596 {
7a621144
DJ
13597 /* This function needs its own .frame and .cprestore directives. */
13598 mips_frame_reg_valid = 0;
13599 mips_cprestore_valid = 0;
13600
252b5132
RH
13601 cur_proc_ptr = &cur_proc;
13602 memset (cur_proc_ptr, '\0', sizeof (procS));
13603
9b2f1d35 13604 cur_proc_ptr->func_sym = symbolP;
252b5132 13605
49309057 13606 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
252b5132 13607
f9419b05 13608 ++numprocs;
ecb4347a
DJ
13609
13610 if (debug_type == DEBUG_STABS)
13611 stabs_generate_asm_func (S_GET_NAME (symbolP),
13612 S_GET_NAME (symbolP));
252b5132
RH
13613 }
13614
13615 demand_empty_rest_of_line ();
13616}
13617
13618/* The .frame directive. If the mdebug section is present (IRIX 5 native)
bdaaa2e1 13619 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
252b5132 13620 s_mips_frame is used so that we can set the PDR information correctly.
bdaaa2e1 13621 We can't use the ecoff routines because they make reference to the ecoff
252b5132
RH
13622 symbol table (in the mdebug section). */
13623
13624static void
17a2f251 13625s_mips_frame (int ignore ATTRIBUTE_UNUSED)
252b5132 13626{
ecb4347a
DJ
13627#ifdef OBJ_ELF
13628 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13629 {
13630 long val;
252b5132 13631
ecb4347a
DJ
13632 if (cur_proc_ptr == (procS *) NULL)
13633 {
13634 as_warn (_(".frame outside of .ent"));
13635 demand_empty_rest_of_line ();
13636 return;
13637 }
252b5132 13638
ecb4347a
DJ
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 }
252b5132 13650
ecb4347a
DJ
13651 cur_proc_ptr->frame_offset = val;
13652 cur_proc_ptr->pc_reg = tc_get_register (0);
252b5132 13653
252b5132 13654 demand_empty_rest_of_line ();
252b5132 13655 }
ecb4347a
DJ
13656 else
13657#endif /* OBJ_ELF */
13658 s_ignore (ignore);
252b5132
RH
13659}
13660
bdaaa2e1
KH
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
252b5132 13663 embedded targets, s_mips_mask is used so that we can set the PDR
bdaaa2e1 13664 information correctly. We can't use the ecoff routines because they
252b5132
RH
13665 make reference to the ecoff symbol table (in the mdebug section). */
13666
13667static void
17a2f251 13668s_mips_mask (int reg_type)
252b5132 13669{
ecb4347a
DJ
13670#ifdef OBJ_ELF
13671 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
252b5132 13672 {
ecb4347a 13673 long mask, off;
252b5132 13674
ecb4347a
DJ
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 }
252b5132 13681
ecb4347a
DJ
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 }
252b5132 13689
ecb4347a
DJ
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 ();
252b5132
RH
13704 }
13705 else
ecb4347a
DJ
13706#endif /* OBJ_ELF */
13707 s_ignore (reg_type);
252b5132
RH
13708}
13709
316f5878
RS
13710/* A table describing all the processors gas knows about. Names are
13711 matched in the order listed.
e7af610e 13712
316f5878
RS
13713 To ease comparison, please keep this table in the same order as
13714 gcc's mips_cpu_info_table[]. */
e972090a
NC
13715static const struct mips_cpu_info mips_cpu_info_table[] =
13716{
316f5878
RS
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 },
af7ee8bf 13724 { "mips32r2", 1, ISA_MIPS32R2, CPU_MIPS32R2 },
316f5878 13725 { "mips64", 1, ISA_MIPS64, CPU_MIPS64 },
5f74bc13 13726 { "mips64r2", 1, ISA_MIPS64R2, CPU_MIPS64R2 },
316f5878
RS
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 },
60b63b72
RS
13741 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
13742 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
13743 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
316f5878
RS
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 },
60b63b72
RS
13755 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
13756 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
316f5878
RS
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 },
5a7ea749 13762 { "rm7000", 0, ISA_MIPS4, CPU_RM7000 },
9a92f48d 13763 { "rm9000", 0, ISA_MIPS4, CPU_RM9000 },
316f5878
RS
13764
13765 /* MIPS 32 */
fef14a42 13766 { "4kc", 0, ISA_MIPS32, CPU_MIPS32 },
316f5878
RS
13767 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
13768 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
e7af610e 13769
316f5878
RS
13770 /* MIPS 64 */
13771 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
13772 { "20kc", 0, ISA_MIPS64, CPU_MIPS64 },
e7af610e 13773
c7a23324 13774 /* Broadcom SB-1 CPU core */
316f5878 13775 { "sb1", 0, ISA_MIPS64, CPU_SB1 },
e7af610e 13776
316f5878
RS
13777 /* End marker */
13778 { NULL, 0, 0, 0 }
13779};
e7af610e 13780
84ea6cf2 13781
316f5878
RS
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.
e7af610e 13784
316f5878 13785 Note: this function is shared between GCC and GAS. */
c6c98b38 13786
b34976b6 13787static bfd_boolean
17a2f251 13788mips_strict_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
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
b34976b6 13803static bfd_boolean
17a2f251 13804mips_matching_cpu_name_p (const char *canonical, const char *given)
316f5878
RS
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))
b34976b6 13809 return TRUE;
316f5878
RS
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))
b34976b6 13816 return FALSE;
316f5878
RS
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. */
e7af610e
NC
13837
13838static const struct mips_cpu_info *
17a2f251 13839mips_parse_cpu (const char *option, const char *cpu_string)
e7af610e 13840{
316f5878 13841 const struct mips_cpu_info *p;
e7af610e 13842
316f5878
RS
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.
e7af610e 13848
316f5878
RS
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;
e7af610e
NC
13879}
13880
316f5878
RS
13881/* Return the canonical processor information for ISA (a member of the
13882 ISA_MIPS* enumeration). */
13883
e7af610e 13884static const struct mips_cpu_info *
17a2f251 13885mips_cpu_info_from_isa (int isa)
e7af610e
NC
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
316f5878 13891 && isa == mips_cpu_info_table[i].isa)
e7af610e
NC
13892 return (&mips_cpu_info_table[i]);
13893
e972090a 13894 return NULL;
e7af610e 13895}
fef14a42
TS
13896
13897static const struct mips_cpu_info *
17a2f251 13898mips_cpu_info_from_arch (int arch)
fef14a42
TS
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}
316f5878
RS
13908\f
13909static void
17a2f251 13910show (FILE *stream, const char *string, int *col_p, int *first_p)
316f5878
RS
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 }
e7af610e 13922
316f5878
RS
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
13935void
17a2f251 13936md_show_usage (FILE *stream)
e7af610e 13937{
316f5878
RS
13938 int column, first;
13939 size_t i;
13940
13941 fprintf (stream, _("\
13942MIPS options:\n\
316f5878
RS
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\
af7ee8bf 13955-mips32r2 generate MIPS32 release 2 ISA instructions\n\
316f5878 13956-mips64 generate MIPS64 ISA instructions\n\
5f74bc13 13957-mips64r2 generate MIPS64 release 2 ISA instructions\n\
316f5878
RS
13958-march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
13959
13960 first = 1;
e7af610e
NC
13961
13962 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
316f5878
RS
13963 show (stream, mips_cpu_info_table[i].name, &column, &first);
13964 show (stream, "from-abi", &column, &first);
13965 fputc ('\n', stream);
e7af610e 13966
316f5878
RS
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, _("\
d766e8ec 13984-mfix-vr4120 work around certain VR4120 errata\n\
7d8e00cf 13985-mfix-vr4130 work around VR4130 mflo/mfhi errata\n\
316f5878
RS
13986-mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
13987-mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
aed1a261
RS
13988-mno-shared optimize output for executables\n\
13989-msym32 assume all symbols have 32-bit values\n\
316f5878
RS
13990-O0 remove unneeded NOPs, do not swap branches\n\
13991-O remove unneeded NOPs and swap branches\n\
316f5878
RS
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\
dcd410fe 14000-mpdr, -mno-pdr enable/disable creation of .pdr sections\n\
bbe506e8
TS
14001-mshared, -mno-shared disable/enable .cpload optimization for\n\
14002 non-shared code\n\
316f5878
RS
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
e7af610e 14020}
14e777e0
KB
14021
14022enum dwarf2_format
17a2f251 14023mips_dwarf2_format (void)
14e777e0
KB
14024{
14025 if (mips_abi == N64_ABI)
1de5b6a1
AO
14026 {
14027#ifdef TE_IRIX
14028 return dwarf2_format_64bit_irix;
14029#else
14030 return dwarf2_format_64bit;
14031#endif
14032 }
14e777e0
KB
14033 else
14034 return dwarf2_format_32bit;
14035}
73369e65
EC
14036
14037int
14038mips_dwarf2_addr_size (void)
14039{
14040 if (mips_abi == N64_ABI)
14041 return 8;
73369e65
EC
14042 else
14043 return 4;
14044}
5862107c
EC
14045
14046/* Standard calling conventions leave the CFA at SP on entry. */
14047void
14048mips_cfi_frame_initial_instructions (void)
14049{
14050 cfi_add_CFA_def_cfa_register (SP);
14051}
14052
This page took 2.29347 seconds and 4 git commands to generate.