s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
[deliverable/binutils-gdb.git] / gas / config / tc-mips.c
CommitLineData
252b5132 1/* tc-mips.c -- assemble code for a MIPS chip.
98d3f06f 2 Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
82efde3a 3 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
RH
30
31#ifdef USE_STDARG
32#include <stdarg.h>
33#endif
34#ifdef USE_VARARGS
35#include <varargs.h>
36#endif
37
38#include "opcode/mips.h"
39#include "itbl-ops.h"
c5dd6aab 40#include "dwarf2dbg.h"
252b5132
RH
41
42#ifdef DEBUG
43#define DBG(x) printf x
44#else
45#define DBG(x)
46#endif
47
48#ifdef OBJ_MAYBE_ELF
49/* Clean up namespace so we can include obj-elf.h too. */
50static int mips_output_flavor PARAMS ((void));
51static int mips_output_flavor () { return OUTPUT_FLAVOR; }
52#undef OBJ_PROCESS_STAB
53#undef OUTPUT_FLAVOR
54#undef S_GET_ALIGN
55#undef S_GET_SIZE
56#undef S_SET_ALIGN
57#undef S_SET_SIZE
252b5132
RH
58#undef obj_frob_file
59#undef obj_frob_file_after_relocs
60#undef obj_frob_symbol
61#undef obj_pop_insert
62#undef obj_sec_sym_ok_for_reloc
63#undef OBJ_COPY_SYMBOL_ATTRIBUTES
64
65#include "obj-elf.h"
66/* Fix any of them that we actually care about. */
67#undef OUTPUT_FLAVOR
68#define OUTPUT_FLAVOR mips_output_flavor()
69#endif
70
71#if defined (OBJ_ELF)
72#include "elf/mips.h"
73#endif
74
75#ifndef ECOFF_DEBUGGING
76#define NO_ECOFF_DEBUGGING
77#define ECOFF_DEBUGGING 0
78#endif
79
ecb4347a
DJ
80int mips_flag_mdebug = -1;
81
252b5132
RH
82#include "ecoff.h"
83
84#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
85static char *mips_regmask_frag;
86#endif
87
85b51719 88#define ZERO 0
252b5132
RH
89#define AT 1
90#define TREG 24
91#define PIC_CALL_REG 25
92#define KT0 26
93#define KT1 27
94#define GP 28
95#define SP 29
96#define FP 30
97#define RA 31
98
99#define ILLEGAL_REG (32)
100
101/* Allow override of standard little-endian ECOFF format. */
102
103#ifndef ECOFF_LITTLE_FORMAT
104#define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
105#endif
106
107extern int target_big_endian;
108
252b5132
RH
109/* The name of the readonly data section. */
110#define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_aout_flavour \
111 ? ".data" \
112 : OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
113 ? ".rdata" \
056350c6
NC
114 : OUTPUT_FLAVOR == bfd_target_coff_flavour \
115 ? ".rdata" \
252b5132
RH
116 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
117 ? ".rodata" \
118 : (abort (), ""))
119
a325df1d
TS
120/* The ABI to use. */
121enum mips_abi_level
122{
123 NO_ABI = 0,
124 O32_ABI,
125 O64_ABI,
126 N32_ABI,
127 N64_ABI,
128 EABI_ABI
129};
130
131/* MIPS ABI we are using for this output file. */
316f5878 132static enum mips_abi_level mips_abi = NO_ABI;
a325df1d 133
252b5132
RH
134/* This is the set of options which may be modified by the .set
135 pseudo-op. We use a struct so that .set push and .set pop are more
136 reliable. */
137
e972090a
NC
138struct mips_set_options
139{
252b5132
RH
140 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
141 if it has not been initialized. Changed by `.set mipsN', and the
142 -mipsN command line option, and the default CPU. */
143 int isa;
1f25f5d3
CD
144 /* Enabled Application Specific Extensions (ASEs). These are set to -1
145 if they have not been initialized. Changed by `.set <asename>', by
146 command line options, and based on the default architecture. */
147 int ase_mips3d;
deec1734 148 int ase_mdmx;
252b5132
RH
149 /* Whether we are assembling for the mips16 processor. 0 if we are
150 not, 1 if we are, and -1 if the value has not been initialized.
151 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
152 -nomips16 command line options, and the default CPU. */
153 int mips16;
154 /* Non-zero if we should not reorder instructions. Changed by `.set
155 reorder' and `.set noreorder'. */
156 int noreorder;
157 /* Non-zero if we should not permit the $at ($1) register to be used
158 in instructions. Changed by `.set at' and `.set noat'. */
159 int noat;
160 /* Non-zero if we should warn when a macro instruction expands into
161 more than one machine instruction. Changed by `.set nomacro' and
162 `.set macro'. */
163 int warn_about_macros;
164 /* Non-zero if we should not move instructions. Changed by `.set
165 move', `.set volatile', `.set nomove', and `.set novolatile'. */
166 int nomove;
167 /* Non-zero if we should not optimize branches by moving the target
168 of the branch into the delay slot. Actually, we don't perform
169 this optimization anyhow. Changed by `.set bopt' and `.set
170 nobopt'. */
171 int nobopt;
172 /* Non-zero if we should not autoextend mips16 instructions.
173 Changed by `.set autoextend' and `.set noautoextend'. */
174 int noautoextend;
a325df1d
TS
175 /* Restrict general purpose registers and floating point registers
176 to 32 bit. This is initially determined when -mgp32 or -mfp32
177 is passed but can changed if the assembler code uses .set mipsN. */
178 int gp32;
179 int fp32;
252b5132
RH
180};
181
a325df1d 182/* True if -mgp32 was passed. */
a8e8e863 183static int file_mips_gp32 = -1;
a325df1d
TS
184
185/* True if -mfp32 was passed. */
a8e8e863 186static int file_mips_fp32 = -1;
a325df1d 187
252b5132 188/* This is the struct we use to hold the current set of options. Note
a4672219 189 that we must set the isa field to ISA_UNKNOWN and the ASE fields to
e7af610e 190 -1 to indicate that they have not been initialized. */
252b5132 191
e972090a
NC
192static struct mips_set_options mips_opts =
193{
316f5878 194 ISA_UNKNOWN, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0
e7af610e 195};
252b5132
RH
196
197/* These variables are filled in with the masks of registers used.
198 The object format code reads them and puts them in the appropriate
199 place. */
200unsigned long mips_gprmask;
201unsigned long mips_cprmask[4];
202
203/* MIPS ISA we are using for this output file. */
e7af610e 204static int file_mips_isa = ISA_UNKNOWN;
252b5132 205
a4672219
TS
206/* True if -mips16 was passed or implied by arguments passed on the
207 command line (e.g., by -march). */
208static int file_ase_mips16;
209
1f25f5d3
CD
210/* True if -mips3d was passed or implied by arguments passed on the
211 command line (e.g., by -march). */
212static int file_ase_mips3d;
213
deec1734
CD
214/* True if -mdmx was passed or implied by arguments passed on the
215 command line (e.g., by -march). */
216static int file_ase_mdmx;
217
ec68c924
EC
218/* The argument of the -march= flag. The architecture we are assembling. */
219static int mips_arch = CPU_UNKNOWN;
316f5878
RS
220static const char *mips_arch_string;
221static const struct mips_cpu_info *mips_arch_info;
ec68c924
EC
222
223/* The argument of the -mtune= flag. The architecture for which we
224 are optimizing. */
225static int mips_tune = CPU_UNKNOWN;
316f5878
RS
226static const char *mips_tune_string;
227static const struct mips_cpu_info *mips_tune_info;
ec68c924 228
316f5878 229/* True when generating 32-bit code for a 64-bit processor. */
252b5132
RH
230static int mips_32bitmode = 0;
231
9ce8a5dd
GRK
232/* Some ISA's have delay slots for instructions which read or write
233 from a coprocessor (eg. mips1-mips3); some don't (eg mips4).
bdaaa2e1 234 Return true if instructions marked INSN_LOAD_COPROC_DELAY,
9ce8a5dd
GRK
235 INSN_COPROC_MOVE_DELAY, or INSN_WRITE_COND_CODE actually have a
236 delay slot in this ISA. The uses of this macro assume that any
237 ISA that has delay slots for one of these, has them for all. They
238 also assume that ISAs which don't have delays for these insns, don't
bdaaa2e1 239 have delays for the INSN_LOAD_MEMORY_DELAY instructions either. */
9ce8a5dd 240#define ISA_HAS_COPROC_DELAYS(ISA) ( \
e7af610e
NC
241 (ISA) == ISA_MIPS1 \
242 || (ISA) == ISA_MIPS2 \
243 || (ISA) == ISA_MIPS3 \
9ce8a5dd
GRK
244 )
245
316f5878
RS
246/* True if the given ABI requires 32-bit registers. */
247#define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI)
248
249/* Likewise 64-bit registers. */
250#define ABI_NEEDS_64BIT_REGS(ABI) \
251 ((ABI) == N32_ABI \
252 || (ABI) == N64_ABI \
253 || (ABI) == O64_ABI)
254
bdaaa2e1 255/* Return true if ISA supports 64 bit gp register instructions. */
9ce8a5dd 256#define ISA_HAS_64BIT_REGS(ISA) ( \
e7af610e
NC
257 (ISA) == ISA_MIPS3 \
258 || (ISA) == ISA_MIPS4 \
84ea6cf2 259 || (ISA) == ISA_MIPS5 \
d1cf510e 260 || (ISA) == ISA_MIPS64 \
9ce8a5dd
GRK
261 )
262
e013f690 263#define HAVE_32BIT_GPRS \
316f5878 264 (mips_opts.gp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
ca4e0257 265
e013f690 266#define HAVE_32BIT_FPRS \
316f5878 267 (mips_opts.fp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
ca4e0257
RS
268
269#define HAVE_64BIT_GPRS (! HAVE_32BIT_GPRS)
270#define HAVE_64BIT_FPRS (! HAVE_32BIT_FPRS)
271
316f5878 272#define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI)
e013f690 273
316f5878 274#define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI)
e013f690
TS
275
276/* We can only have 64bit addresses if the object file format
277 supports it. */
afdbd6d0
CD
278#define HAVE_32BIT_ADDRESSES \
279 (HAVE_32BIT_GPRS \
280 || ((bfd_arch_bits_per_address (stdoutput) == 32 \
281 || ! HAVE_64BIT_OBJECTS) \
282 && mips_pic != EMBEDDED_PIC))
e013f690
TS
283
284#define HAVE_64BIT_ADDRESSES (! HAVE_32BIT_ADDRESSES)
ca4e0257 285
a4672219 286/* Return true if the given CPU supports the MIPS16 ASE. */
3396de36
TS
287#define CPU_HAS_MIPS16(cpu) \
288 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \
289 || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0)
a4672219 290
1f25f5d3
CD
291/* Return true if the given CPU supports the MIPS3D ASE. */
292#define CPU_HAS_MIPS3D(cpu) ((cpu) == CPU_SB1 \
293 )
294
deec1734 295/* Return true if the given CPU supports the MDMX ASE. */
b34976b6 296#define CPU_HAS_MDMX(cpu) (FALSE \
deec1734
CD
297 )
298
60b63b72
RS
299/* True if CPU has a dror instruction. */
300#define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500)
301
302/* True if CPU has a ror instruction. */
303#define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU)
304
bdaaa2e1 305/* Whether the processor uses hardware interlocks to protect
252b5132 306 reads from the HI and LO registers, and thus does not
ec68c924 307 require nops to be inserted. */
252b5132 308
ec68c924 309#define hilo_interlocks (mips_arch == CPU_R4010 \
60b63b72 310 || mips_arch == CPU_VR5500 \
0a758a12 311 || mips_arch == CPU_SB1 \
252b5132
RH
312 )
313
314/* Whether the processor uses hardware interlocks to protect reads
315 from the GPRs, and thus does not require nops to be inserted. */
316#define gpr_interlocks \
e7af610e 317 (mips_opts.isa != ISA_MIPS1 \
60b63b72
RS
318 || mips_arch == CPU_VR5400 \
319 || mips_arch == CPU_VR5500 \
ec68c924 320 || mips_arch == CPU_R3900)
252b5132
RH
321
322/* As with other "interlocks" this is used by hardware that has FP
323 (co-processor) interlocks. */
bdaaa2e1 324/* Itbl support may require additional care here. */
ec68c924 325#define cop_interlocks (mips_arch == CPU_R4300 \
60b63b72
RS
326 || mips_arch == CPU_VR5400 \
327 || mips_arch == CPU_VR5500 \
0a758a12 328 || mips_arch == CPU_SB1 \
252b5132
RH
329 )
330
6b76fefe
CM
331/* Is this a mfhi or mflo instruction? */
332#define MF_HILO_INSN(PINFO) \
333 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
334
252b5132
RH
335/* MIPS PIC level. */
336
a161fe53 337enum mips_pic_level mips_pic;
252b5132 338
39c0a331
L
339/* Warn about all NOPS that the assembler generates. */
340static int warn_nops = 0;
341
c9914766 342/* 1 if we should generate 32 bit offsets from the $gp register in
252b5132 343 SVR4_PIC mode. Currently has no meaning in other modes. */
c9914766 344static int mips_big_got = 0;
252b5132
RH
345
346/* 1 if trap instructions should used for overflow rather than break
347 instructions. */
c9914766 348static int mips_trap = 0;
252b5132 349
119d663a 350/* 1 if double width floating point constants should not be constructed
b6ff326e 351 by assembling two single width halves into two single width floating
119d663a
NC
352 point registers which just happen to alias the double width destination
353 register. On some architectures this aliasing can be disabled by a bit
d547a75e 354 in the status register, and the setting of this bit cannot be determined
119d663a
NC
355 automatically at assemble time. */
356static int mips_disable_float_construction;
357
252b5132
RH
358/* Non-zero if any .set noreorder directives were used. */
359
360static int mips_any_noreorder;
361
6b76fefe
CM
362/* Non-zero if nops should be inserted when the register referenced in
363 an mfhi/mflo instruction is read in the next two instructions. */
364static int mips_7000_hilo_fix;
365
252b5132 366/* The size of the small data section. */
156c2f8b 367static unsigned int g_switch_value = 8;
252b5132
RH
368/* Whether the -G option was used. */
369static int g_switch_seen = 0;
370
371#define N_RMASK 0xc4
372#define N_VFP 0xd4
373
374/* If we can determine in advance that GP optimization won't be
375 possible, we can skip the relaxation stuff that tries to produce
376 GP-relative references. This makes delay slot optimization work
377 better.
378
379 This function can only provide a guess, but it seems to work for
fba2b7f9
GK
380 gcc output. It needs to guess right for gcc, otherwise gcc
381 will put what it thinks is a GP-relative instruction in a branch
382 delay slot.
252b5132
RH
383
384 I don't know if a fix is needed for the SVR4_PIC mode. I've only
385 fixed it for the non-PIC mode. KR 95/04/07 */
386static int nopic_need_relax PARAMS ((symbolS *, int));
387
388/* handle of the OPCODE hash table */
389static struct hash_control *op_hash = NULL;
390
391/* The opcode hash table we use for the mips16. */
392static struct hash_control *mips16_op_hash = NULL;
393
394/* This array holds the chars that always start a comment. If the
395 pre-processor is disabled, these aren't very useful */
396const char comment_chars[] = "#";
397
398/* This array holds the chars that only start a comment at the beginning of
399 a line. If the line seems to have the form '# 123 filename'
400 .line and .file directives will appear in the pre-processed output */
401/* Note that input_file.c hand checks for '#' at the beginning of the
402 first line of the input file. This is because the compiler outputs
bdaaa2e1 403 #NO_APP at the beginning of its output. */
252b5132
RH
404/* Also note that C style comments are always supported. */
405const char line_comment_chars[] = "#";
406
bdaaa2e1 407/* This array holds machine specific line separator characters. */
63a0b638 408const char line_separator_chars[] = ";";
252b5132
RH
409
410/* Chars that can be used to separate mant from exp in floating point nums */
411const char EXP_CHARS[] = "eE";
412
413/* Chars that mean this number is a floating point constant */
414/* As in 0f12.456 */
415/* or 0d1.2345e12 */
416const char FLT_CHARS[] = "rRsSfFdDxXpP";
417
418/* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
419 changed in read.c . Ideally it shouldn't have to know about it at all,
420 but nothing is ideal around here.
421 */
422
423static char *insn_error;
424
425static int auto_align = 1;
426
427/* When outputting SVR4 PIC code, the assembler needs to know the
428 offset in the stack frame from which to restore the $gp register.
429 This is set by the .cprestore pseudo-op, and saved in this
430 variable. */
431static offsetT mips_cprestore_offset = -1;
432
6478892d
TS
433/* Similiar for NewABI PIC code, where $gp is callee-saved. NewABI has some
434 more optimizations, it can use a register value instead of a memory-saved
956cd1d6 435 offset and even an other register than $gp as global pointer. */
6478892d
TS
436static offsetT mips_cpreturn_offset = -1;
437static int mips_cpreturn_register = -1;
438static int mips_gp_register = GP;
def2e0dd 439static int mips_gprel_offset = 0;
6478892d 440
7a621144
DJ
441/* Whether mips_cprestore_offset has been set in the current function
442 (or whether it has already been warned about, if not). */
443static int mips_cprestore_valid = 0;
444
252b5132
RH
445/* This is the register which holds the stack frame, as set by the
446 .frame pseudo-op. This is needed to implement .cprestore. */
447static int mips_frame_reg = SP;
448
7a621144
DJ
449/* Whether mips_frame_reg has been set in the current function
450 (or whether it has already been warned about, if not). */
451static int mips_frame_reg_valid = 0;
452
252b5132
RH
453/* To output NOP instructions correctly, we need to keep information
454 about the previous two instructions. */
455
456/* Whether we are optimizing. The default value of 2 means to remove
457 unneeded NOPs and swap branch instructions when possible. A value
458 of 1 means to not swap branches. A value of 0 means to always
459 insert NOPs. */
460static int mips_optimize = 2;
461
462/* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
463 equivalent to seeing no -g option at all. */
464static int mips_debug = 0;
465
466/* The previous instruction. */
467static struct mips_cl_insn prev_insn;
468
469/* The instruction before prev_insn. */
470static struct mips_cl_insn prev_prev_insn;
471
472/* If we don't want information for prev_insn or prev_prev_insn, we
473 point the insn_mo field at this dummy integer. */
43841e91 474static const struct mips_opcode dummy_opcode = { NULL, NULL, 0, 0, 0, 0 };
252b5132
RH
475
476/* Non-zero if prev_insn is valid. */
477static int prev_insn_valid;
478
479/* The frag for the previous instruction. */
480static struct frag *prev_insn_frag;
481
482/* The offset into prev_insn_frag for the previous instruction. */
483static long prev_insn_where;
484
485/* The reloc type for the previous instruction, if any. */
f6688943 486static bfd_reloc_code_real_type prev_insn_reloc_type[3];
252b5132
RH
487
488/* The reloc for the previous instruction, if any. */
f6688943 489static fixS *prev_insn_fixp[3];
252b5132
RH
490
491/* Non-zero if the previous instruction was in a delay slot. */
492static int prev_insn_is_delay_slot;
493
494/* Non-zero if the previous instruction was in a .set noreorder. */
495static int prev_insn_unreordered;
496
497/* Non-zero if the previous instruction uses an extend opcode (if
498 mips16). */
499static int prev_insn_extended;
500
501/* Non-zero if the previous previous instruction was in a .set
502 noreorder. */
503static int prev_prev_insn_unreordered;
504
505/* If this is set, it points to a frag holding nop instructions which
506 were inserted before the start of a noreorder section. If those
507 nops turn out to be unnecessary, the size of the frag can be
508 decreased. */
509static fragS *prev_nop_frag;
510
511/* The number of nop instructions we created in prev_nop_frag. */
512static int prev_nop_frag_holds;
513
514/* The number of nop instructions that we know we need in
bdaaa2e1 515 prev_nop_frag. */
252b5132
RH
516static int prev_nop_frag_required;
517
518/* The number of instructions we've seen since prev_nop_frag. */
519static int prev_nop_frag_since;
520
521/* For ECOFF and ELF, relocations against symbols are done in two
522 parts, with a HI relocation and a LO relocation. Each relocation
523 has only 16 bits of space to store an addend. This means that in
524 order for the linker to handle carries correctly, it must be able
525 to locate both the HI and the LO relocation. This means that the
526 relocations must appear in order in the relocation table.
527
528 In order to implement this, we keep track of each unmatched HI
529 relocation. We then sort them so that they immediately precede the
bdaaa2e1 530 corresponding LO relocation. */
252b5132 531
e972090a
NC
532struct mips_hi_fixup
533{
252b5132
RH
534 /* Next HI fixup. */
535 struct mips_hi_fixup *next;
536 /* This fixup. */
537 fixS *fixp;
538 /* The section this fixup is in. */
539 segT seg;
540};
541
542/* The list of unmatched HI relocs. */
543
544static struct mips_hi_fixup *mips_hi_fixup_list;
545
546/* Map normal MIPS register numbers to mips16 register numbers. */
547
548#define X ILLEGAL_REG
e972090a
NC
549static const int mips32_to_16_reg_map[] =
550{
252b5132
RH
551 X, X, 2, 3, 4, 5, 6, 7,
552 X, X, X, X, X, X, X, X,
553 0, 1, X, X, X, X, X, X,
554 X, X, X, X, X, X, X, X
555};
556#undef X
557
558/* Map mips16 register numbers to normal MIPS register numbers. */
559
e972090a
NC
560static const unsigned int mips16_to_32_reg_map[] =
561{
252b5132
RH
562 16, 17, 2, 3, 4, 5, 6, 7
563};
60b63b72
RS
564
565static int mips_fix_4122_bugs;
4a6a3df4
AO
566
567/* We don't relax branches by default, since this causes us to expand
568 `la .l2 - .l1' if there's a branch between .l1 and .l2, because we
569 fail to compute the offset before expanding the macro to the most
570 efficient expansion. */
571
572static int mips_relax_branch;
252b5132
RH
573\f
574/* Since the MIPS does not have multiple forms of PC relative
575 instructions, we do not have to do relaxing as is done on other
576 platforms. However, we do have to handle GP relative addressing
577 correctly, which turns out to be a similar problem.
578
579 Every macro that refers to a symbol can occur in (at least) two
580 forms, one with GP relative addressing and one without. For
581 example, loading a global variable into a register generally uses
582 a macro instruction like this:
583 lw $4,i
584 If i can be addressed off the GP register (this is true if it is in
585 the .sbss or .sdata section, or if it is known to be smaller than
586 the -G argument) this will generate the following instruction:
587 lw $4,i($gp)
588 This instruction will use a GPREL reloc. If i can not be addressed
589 off the GP register, the following instruction sequence will be used:
590 lui $at,i
591 lw $4,i($at)
592 In this case the first instruction will have a HI16 reloc, and the
593 second reloc will have a LO16 reloc. Both relocs will be against
594 the symbol i.
595
596 The issue here is that we may not know whether i is GP addressable
597 until after we see the instruction that uses it. Therefore, we
598 want to be able to choose the final instruction sequence only at
599 the end of the assembly. This is similar to the way other
600 platforms choose the size of a PC relative instruction only at the
601 end of assembly.
602
603 When generating position independent code we do not use GP
604 addressing in quite the same way, but the issue still arises as
605 external symbols and local symbols must be handled differently.
606
607 We handle these issues by actually generating both possible
608 instruction sequences. The longer one is put in a frag_var with
609 type rs_machine_dependent. We encode what to do with the frag in
610 the subtype field. We encode (1) the number of existing bytes to
611 replace, (2) the number of new bytes to use, (3) the offset from
612 the start of the existing bytes to the first reloc we must generate
613 (that is, the offset is applied from the start of the existing
614 bytes after they are replaced by the new bytes, if any), (4) the
615 offset from the start of the existing bytes to the second reloc,
616 (5) whether a third reloc is needed (the third reloc is always four
617 bytes after the second reloc), and (6) whether to warn if this
618 variant is used (this is sometimes needed if .set nomacro or .set
619 noat is in effect). All these numbers are reasonably small.
620
621 Generating two instruction sequences must be handled carefully to
622 ensure that delay slots are handled correctly. Fortunately, there
623 are a limited number of cases. When the second instruction
624 sequence is generated, append_insn is directed to maintain the
625 existing delay slot information, so it continues to apply to any
626 code after the second instruction sequence. This means that the
627 second instruction sequence must not impose any requirements not
628 required by the first instruction sequence.
629
630 These variant frags are then handled in functions called by the
631 machine independent code. md_estimate_size_before_relax returns
632 the final size of the frag. md_convert_frag sets up the final form
633 of the frag. tc_gen_reloc adjust the first reloc and adds a second
634 one if needed. */
635#define RELAX_ENCODE(old, new, reloc1, reloc2, reloc3, warn) \
636 ((relax_substateT) \
637 (((old) << 23) \
638 | ((new) << 16) \
639 | (((reloc1) + 64) << 9) \
640 | (((reloc2) + 64) << 2) \
641 | ((reloc3) ? (1 << 1) : 0) \
642 | ((warn) ? 1 : 0)))
643#define RELAX_OLD(i) (((i) >> 23) & 0x7f)
644#define RELAX_NEW(i) (((i) >> 16) & 0x7f)
9a41af64
TS
645#define RELAX_RELOC1(i) ((valueT) (((i) >> 9) & 0x7f) - 64)
646#define RELAX_RELOC2(i) ((valueT) (((i) >> 2) & 0x7f) - 64)
252b5132
RH
647#define RELAX_RELOC3(i) (((i) >> 1) & 1)
648#define RELAX_WARN(i) ((i) & 1)
649
4a6a3df4
AO
650/* Branch without likely bit. If label is out of range, we turn:
651
652 beq reg1, reg2, label
653 delay slot
654
655 into
656
657 bne reg1, reg2, 0f
658 nop
659 j label
660 0: delay slot
661
662 with the following opcode replacements:
663
664 beq <-> bne
665 blez <-> bgtz
666 bltz <-> bgez
667 bc1f <-> bc1t
668
669 bltzal <-> bgezal (with jal label instead of j label)
670
671 Even though keeping the delay slot instruction in the delay slot of
672 the branch would be more efficient, it would be very tricky to do
673 correctly, because we'd have to introduce a variable frag *after*
674 the delay slot instruction, and expand that instead. Let's do it
675 the easy way for now, even if the branch-not-taken case now costs
676 one additional instruction. Out-of-range branches are not supposed
677 to be common, anyway.
678
679 Branch likely. If label is out of range, we turn:
680
681 beql reg1, reg2, label
682 delay slot (annulled if branch not taken)
683
684 into
685
686 beql reg1, reg2, 1f
687 nop
688 beql $0, $0, 2f
689 nop
690 1: j[al] label
691 delay slot (executed only if branch taken)
692 2:
693
694 It would be possible to generate a shorter sequence by losing the
695 likely bit, generating something like:
b34976b6 696
4a6a3df4
AO
697 bne reg1, reg2, 0f
698 nop
699 j[al] label
700 delay slot (executed only if branch taken)
701 0:
702
703 beql -> bne
704 bnel -> beq
705 blezl -> bgtz
706 bgtzl -> blez
707 bltzl -> bgez
708 bgezl -> bltz
709 bc1fl -> bc1t
710 bc1tl -> bc1f
711
712 bltzall -> bgezal (with jal label instead of j label)
713 bgezall -> bltzal (ditto)
714
715
716 but it's not clear that it would actually improve performance. */
717#define RELAX_BRANCH_ENCODE(reloc_s2, uncond, likely, link, toofar) \
718 ((relax_substateT) \
719 (0xc0000000 \
720 | ((toofar) ? 1 : 0) \
721 | ((link) ? 2 : 0) \
722 | ((likely) ? 4 : 0) \
723 | ((uncond) ? 8 : 0) \
724 | ((reloc_s2) ? 16 : 0)))
725#define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000)
726#define RELAX_BRANCH_RELOC_S2(i) (((i) & 16) != 0)
727#define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0)
728#define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0)
729#define RELAX_BRANCH_LINK(i) (((i) & 2) != 0)
730#define RELAX_BRANCH_TOOFAR(i) (((i) & 1))
731
252b5132
RH
732/* For mips16 code, we use an entirely different form of relaxation.
733 mips16 supports two versions of most instructions which take
734 immediate values: a small one which takes some small value, and a
735 larger one which takes a 16 bit value. Since branches also follow
736 this pattern, relaxing these values is required.
737
738 We can assemble both mips16 and normal MIPS code in a single
739 object. Therefore, we need to support this type of relaxation at
740 the same time that we support the relaxation described above. We
741 use the high bit of the subtype field to distinguish these cases.
742
743 The information we store for this type of relaxation is the
744 argument code found in the opcode file for this relocation, whether
745 the user explicitly requested a small or extended form, and whether
746 the relocation is in a jump or jal delay slot. That tells us the
747 size of the value, and how it should be stored. We also store
748 whether the fragment is considered to be extended or not. We also
749 store whether this is known to be a branch to a different section,
750 whether we have tried to relax this frag yet, and whether we have
751 ever extended a PC relative fragment because of a shift count. */
752#define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
753 (0x80000000 \
754 | ((type) & 0xff) \
755 | ((small) ? 0x100 : 0) \
756 | ((ext) ? 0x200 : 0) \
757 | ((dslot) ? 0x400 : 0) \
758 | ((jal_dslot) ? 0x800 : 0))
4a6a3df4 759#define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000)
252b5132
RH
760#define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
761#define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
762#define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
763#define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
764#define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
765#define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
766#define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
767#define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
768#define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
769#define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
770#define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
885add95
CD
771
772/* Is the given value a sign-extended 32-bit value? */
773#define IS_SEXT_32BIT_NUM(x) \
774 (((x) &~ (offsetT) 0x7fffffff) == 0 \
775 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
776
777/* Is the given value a sign-extended 16-bit value? */
778#define IS_SEXT_16BIT_NUM(x) \
779 (((x) &~ (offsetT) 0x7fff) == 0 \
780 || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff))
781
252b5132
RH
782\f
783/* Prototypes for static functions. */
784
785#ifdef __STDC__
786#define internalError() \
787 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
788#else
789#define internalError() as_fatal (_("MIPS internal Error"));
790#endif
791
792enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
793
b34976b6
AM
794static int insn_uses_reg
795 PARAMS ((struct mips_cl_insn *ip, unsigned int reg,
796 enum mips_regclass class));
797static int reg_needs_delay
798 PARAMS ((unsigned int));
799static void mips16_mark_labels
800 PARAMS ((void));
801static void append_insn
802 PARAMS ((char *place, struct mips_cl_insn * ip, expressionS * p,
803 bfd_reloc_code_real_type *r, bfd_boolean));
804static void mips_no_prev_insn
805 PARAMS ((int));
806static void mips_emit_delays
807 PARAMS ((bfd_boolean));
252b5132 808#ifdef USE_STDARG
b34976b6
AM
809static void macro_build
810 PARAMS ((char *place, int *counter, expressionS * ep, const char *name,
811 const char *fmt, ...));
252b5132
RH
812#else
813static void macro_build ();
814#endif
b34976b6
AM
815static void mips16_macro_build
816 PARAMS ((char *, int *, expressionS *, const char *, const char *, va_list));
817static void macro_build_jalr
818 PARAMS ((int, expressionS *));
819static void macro_build_lui
820 PARAMS ((char *place, int *counter, expressionS * ep, int regnum));
821static void macro_build_ldst_constoffset
822 PARAMS ((char *place, int *counter, expressionS * ep, const char *op,
823 int valreg, int breg));
824static void set_at
825 PARAMS ((int *counter, int reg, int unsignedp));
826static void check_absolute_expr
827 PARAMS ((struct mips_cl_insn * ip, expressionS *));
828static void load_register
829 PARAMS ((int *, int, expressionS *, int));
830static void load_address
831 PARAMS ((int *, int, expressionS *, int *));
832static void move_register
833 PARAMS ((int *, int, int));
834static void macro
835 PARAMS ((struct mips_cl_insn * ip));
836static void mips16_macro
837 PARAMS ((struct mips_cl_insn * ip));
252b5132 838#ifdef LOSING_COMPILER
b34976b6
AM
839static void macro2
840 PARAMS ((struct mips_cl_insn * ip));
252b5132 841#endif
b34976b6
AM
842static void mips_ip
843 PARAMS ((char *str, struct mips_cl_insn * ip));
844static void mips16_ip
845 PARAMS ((char *str, struct mips_cl_insn * ip));
846static void mips16_immed
847 PARAMS ((char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean,
848 bfd_boolean, unsigned long *, bfd_boolean *, unsigned short *));
849static int my_getPercentOp
850 PARAMS ((char **, unsigned int *, int *));
851static int my_getSmallParser
852 PARAMS ((char **, unsigned int *, int *));
853static int my_getSmallExpression
854 PARAMS ((expressionS *, char *));
855static void my_getExpression
856 PARAMS ((expressionS *, char *));
ae948b86 857#ifdef OBJ_ELF
b34976b6
AM
858static int support_64bit_objects
859 PARAMS((void));
ae948b86 860#endif
b34976b6
AM
861static void mips_set_option_string
862 PARAMS ((const char **, const char *));
863static symbolS *get_symbol
864 PARAMS ((void));
865static void mips_align
866 PARAMS ((int to, int fill, symbolS *label));
867static void s_align
868 PARAMS ((int));
869static void s_change_sec
870 PARAMS ((int));
871static void s_change_section
872 PARAMS ((int));
873static void s_cons
874 PARAMS ((int));
875static void s_float_cons
876 PARAMS ((int));
877static void s_mips_globl
878 PARAMS ((int));
879static void s_option
880 PARAMS ((int));
881static void s_mipsset
882 PARAMS ((int));
883static void s_abicalls
884 PARAMS ((int));
885static void s_cpload
886 PARAMS ((int));
887static void s_cpsetup
888 PARAMS ((int));
889static void s_cplocal
890 PARAMS ((int));
891static void s_cprestore
892 PARAMS ((int));
893static void s_cpreturn
894 PARAMS ((int));
895static void s_gpvalue
896 PARAMS ((int));
897static void s_gpword
898 PARAMS ((int));
899static void s_gpdword
900 PARAMS ((int));
901static void s_cpadd
902 PARAMS ((int));
903static void s_insn
904 PARAMS ((int));
905static void md_obj_begin
906 PARAMS ((void));
907static void md_obj_end
908 PARAMS ((void));
909static long get_number
910 PARAMS ((void));
911static void s_mips_ent
912 PARAMS ((int));
913static void s_mips_end
914 PARAMS ((int));
915static void s_mips_frame
916 PARAMS ((int));
917static void s_mips_mask
918 PARAMS ((int));
919static void s_mips_stab
920 PARAMS ((int));
921static void s_mips_weakext
922 PARAMS ((int));
923static void s_mips_file
924 PARAMS ((int));
925static void s_mips_loc
926 PARAMS ((int));
927static int mips16_extended_frag
928 PARAMS ((fragS *, asection *, long));
4a6a3df4 929static int relaxed_branch_length (fragS *, asection *, int);
b34976b6
AM
930static int validate_mips_insn
931 PARAMS ((const struct mips_opcode *));
932static void show
933 PARAMS ((FILE *, const char *, int *, int *));
add55e1f 934#ifdef OBJ_ELF
b34976b6
AM
935static int mips_need_elf_addend_fixup
936 PARAMS ((fixS *));
add55e1f 937#endif
e7af610e 938
ad8d3bb3 939/* Return values of my_getSmallExpression(). */
fb1b3232 940
ad8d3bb3 941enum small_ex_type
fb1b3232
TS
942{
943 S_EX_NONE = 0,
ad8d3bb3
TS
944 S_EX_REGISTER,
945
946 /* Direct relocation creation by %percent_op(). */
947 S_EX_HALF,
fb1b3232 948 S_EX_HI,
ad8d3bb3
TS
949 S_EX_LO,
950 S_EX_GP_REL,
951 S_EX_GOT,
952 S_EX_CALL16,
953 S_EX_GOT_DISP,
954 S_EX_GOT_PAGE,
955 S_EX_GOT_OFST,
956 S_EX_GOT_HI,
957 S_EX_GOT_LO,
958 S_EX_NEG,
fb1b3232
TS
959 S_EX_HIGHER,
960 S_EX_HIGHEST,
ad8d3bb3
TS
961 S_EX_CALL_HI,
962 S_EX_CALL_LO
fb1b3232
TS
963};
964
e7af610e
NC
965/* Table and functions used to map between CPU/ISA names, and
966 ISA levels, and CPU numbers. */
967
e972090a
NC
968struct mips_cpu_info
969{
e7af610e
NC
970 const char *name; /* CPU or ISA name. */
971 int is_isa; /* Is this an ISA? (If 0, a CPU.) */
972 int isa; /* ISA level. */
973 int cpu; /* CPU number (default CPU if ISA). */
974};
975
b34976b6
AM
976static void mips_set_architecture
977 PARAMS ((const struct mips_cpu_info *));
978static void mips_set_tune
979 PARAMS ((const struct mips_cpu_info *));
980static bfd_boolean mips_strict_matching_cpu_name_p
981 PARAMS ((const char *, const char *));
982static bfd_boolean mips_matching_cpu_name_p
983 PARAMS ((const char *, const char *));
984static const struct mips_cpu_info *mips_parse_cpu
985 PARAMS ((const char *, const char *));
986static const struct mips_cpu_info *mips_cpu_info_from_isa
987 PARAMS ((int));
252b5132
RH
988\f
989/* Pseudo-op table.
990
991 The following pseudo-ops from the Kane and Heinrich MIPS book
992 should be defined here, but are currently unsupported: .alias,
993 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
994
995 The following pseudo-ops from the Kane and Heinrich MIPS book are
996 specific to the type of debugging information being generated, and
997 should be defined by the object format: .aent, .begin, .bend,
998 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
999 .vreg.
1000
1001 The following pseudo-ops from the Kane and Heinrich MIPS book are
1002 not MIPS CPU specific, but are also not specific to the object file
1003 format. This file is probably the best place to define them, but
1004 they are not currently supported: .asm0, .endr, .lab, .repeat,
1005 .struct. */
1006
e972090a
NC
1007static const pseudo_typeS mips_pseudo_table[] =
1008{
beae10d5 1009 /* MIPS specific pseudo-ops. */
252b5132
RH
1010 {"option", s_option, 0},
1011 {"set", s_mipsset, 0},
1012 {"rdata", s_change_sec, 'r'},
1013 {"sdata", s_change_sec, 's'},
1014 {"livereg", s_ignore, 0},
1015 {"abicalls", s_abicalls, 0},
1016 {"cpload", s_cpload, 0},
6478892d
TS
1017 {"cpsetup", s_cpsetup, 0},
1018 {"cplocal", s_cplocal, 0},
252b5132 1019 {"cprestore", s_cprestore, 0},
6478892d
TS
1020 {"cpreturn", s_cpreturn, 0},
1021 {"gpvalue", s_gpvalue, 0},
252b5132 1022 {"gpword", s_gpword, 0},
10181a0d 1023 {"gpdword", s_gpdword, 0},
252b5132
RH
1024 {"cpadd", s_cpadd, 0},
1025 {"insn", s_insn, 0},
1026
beae10d5 1027 /* Relatively generic pseudo-ops that happen to be used on MIPS
252b5132
RH
1028 chips. */
1029 {"asciiz", stringer, 1},
1030 {"bss", s_change_sec, 'b'},
1031 {"err", s_err, 0},
1032 {"half", s_cons, 1},
1033 {"dword", s_cons, 3},
1034 {"weakext", s_mips_weakext, 0},
1035
beae10d5 1036 /* These pseudo-ops are defined in read.c, but must be overridden
252b5132
RH
1037 here for one reason or another. */
1038 {"align", s_align, 0},
1039 {"byte", s_cons, 0},
1040 {"data", s_change_sec, 'd'},
1041 {"double", s_float_cons, 'd'},
1042 {"float", s_float_cons, 'f'},
1043 {"globl", s_mips_globl, 0},
1044 {"global", s_mips_globl, 0},
1045 {"hword", s_cons, 1},
1046 {"int", s_cons, 2},
1047 {"long", s_cons, 2},
1048 {"octa", s_cons, 4},
1049 {"quad", s_cons, 3},
cca86cc8 1050 {"section", s_change_section, 0},
252b5132
RH
1051 {"short", s_cons, 1},
1052 {"single", s_float_cons, 'f'},
1053 {"stabn", s_mips_stab, 'n'},
1054 {"text", s_change_sec, 't'},
1055 {"word", s_cons, 2},
add56521 1056
add56521 1057 { "extern", ecoff_directive_extern, 0},
add56521 1058
43841e91 1059 { NULL, NULL, 0 },
252b5132
RH
1060};
1061
e972090a
NC
1062static const pseudo_typeS mips_nonecoff_pseudo_table[] =
1063{
beae10d5
KH
1064 /* These pseudo-ops should be defined by the object file format.
1065 However, a.out doesn't support them, so we have versions here. */
252b5132
RH
1066 {"aent", s_mips_ent, 1},
1067 {"bgnb", s_ignore, 0},
1068 {"end", s_mips_end, 0},
1069 {"endb", s_ignore, 0},
1070 {"ent", s_mips_ent, 0},
c5dd6aab 1071 {"file", s_mips_file, 0},
252b5132
RH
1072 {"fmask", s_mips_mask, 'F'},
1073 {"frame", s_mips_frame, 0},
c5dd6aab 1074 {"loc", s_mips_loc, 0},
252b5132
RH
1075 {"mask", s_mips_mask, 'R'},
1076 {"verstamp", s_ignore, 0},
43841e91 1077 { NULL, NULL, 0 },
252b5132
RH
1078};
1079
1080extern void pop_insert PARAMS ((const pseudo_typeS *));
1081
1082void
1083mips_pop_insert ()
1084{
1085 pop_insert (mips_pseudo_table);
1086 if (! ECOFF_DEBUGGING)
1087 pop_insert (mips_nonecoff_pseudo_table);
1088}
1089\f
1090/* Symbols labelling the current insn. */
1091
e972090a
NC
1092struct insn_label_list
1093{
252b5132
RH
1094 struct insn_label_list *next;
1095 symbolS *label;
1096};
1097
1098static struct insn_label_list *insn_labels;
1099static struct insn_label_list *free_insn_labels;
1100
1101static void mips_clear_insn_labels PARAMS ((void));
1102
1103static inline void
1104mips_clear_insn_labels ()
1105{
1106 register struct insn_label_list **pl;
1107
1108 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
1109 ;
1110 *pl = insn_labels;
1111 insn_labels = NULL;
1112}
1113\f
1114static char *expr_end;
1115
1116/* Expressions which appear in instructions. These are set by
1117 mips_ip. */
1118
1119static expressionS imm_expr;
1120static expressionS offset_expr;
1121
1122/* Relocs associated with imm_expr and offset_expr. */
1123
f6688943
TS
1124static bfd_reloc_code_real_type imm_reloc[3]
1125 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
1126static bfd_reloc_code_real_type offset_reloc[3]
1127 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132
RH
1128
1129/* This is set by mips_ip if imm_reloc is an unmatched HI16_S reloc. */
1130
b34976b6 1131static bfd_boolean imm_unmatched_hi;
252b5132
RH
1132
1133/* These are set by mips16_ip if an explicit extension is used. */
1134
b34976b6 1135static bfd_boolean mips16_small, mips16_ext;
252b5132 1136
7ed4a06a 1137#ifdef OBJ_ELF
ecb4347a
DJ
1138/* The pdr segment for per procedure frame/regmask info. Not used for
1139 ECOFF debugging. */
252b5132
RH
1140
1141static segT pdr_seg;
7ed4a06a 1142#endif
252b5132 1143
e013f690
TS
1144/* The default target format to use. */
1145
1146const char *
1147mips_target_format ()
1148{
1149 switch (OUTPUT_FLAVOR)
1150 {
1151 case bfd_target_aout_flavour:
1152 return target_big_endian ? "a.out-mips-big" : "a.out-mips-little";
1153 case bfd_target_ecoff_flavour:
1154 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
1155 case bfd_target_coff_flavour:
1156 return "pe-mips";
1157 case bfd_target_elf_flavour:
1158#ifdef TE_TMIPS
cfe86eaa 1159 /* This is traditional mips. */
e013f690 1160 return (target_big_endian
cfe86eaa
TS
1161 ? (HAVE_64BIT_OBJECTS
1162 ? "elf64-tradbigmips"
1163 : (HAVE_NEWABI
1164 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
1165 : (HAVE_64BIT_OBJECTS
1166 ? "elf64-tradlittlemips"
1167 : (HAVE_NEWABI
1168 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
e013f690
TS
1169#else
1170 return (target_big_endian
cfe86eaa
TS
1171 ? (HAVE_64BIT_OBJECTS
1172 ? "elf64-bigmips"
1173 : (HAVE_NEWABI
1174 ? "elf32-nbigmips" : "elf32-bigmips"))
1175 : (HAVE_64BIT_OBJECTS
1176 ? "elf64-littlemips"
1177 : (HAVE_NEWABI
1178 ? "elf32-nlittlemips" : "elf32-littlemips")));
e013f690
TS
1179#endif
1180 default:
1181 abort ();
1182 return NULL;
1183 }
1184}
1185
156c2f8b
NC
1186/* This function is called once, at assembler startup time. It should
1187 set up all the tables, etc. that the MD part of the assembler will need. */
1188
252b5132
RH
1189void
1190md_begin ()
1191{
252b5132 1192 register const char *retval = NULL;
156c2f8b 1193 int i = 0;
252b5132 1194 int broken = 0;
1f25f5d3 1195
ec68c924 1196 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, mips_arch))
252b5132
RH
1197 as_warn (_("Could not set architecture and machine"));
1198
252b5132
RH
1199 op_hash = hash_new ();
1200
1201 for (i = 0; i < NUMOPCODES;)
1202 {
1203 const char *name = mips_opcodes[i].name;
1204
1205 retval = hash_insert (op_hash, name, (PTR) &mips_opcodes[i]);
1206 if (retval != NULL)
1207 {
1208 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1209 mips_opcodes[i].name, retval);
1210 /* Probably a memory allocation problem? Give up now. */
1211 as_fatal (_("Broken assembler. No assembly attempted."));
1212 }
1213 do
1214 {
1215 if (mips_opcodes[i].pinfo != INSN_MACRO)
1216 {
1217 if (!validate_mips_insn (&mips_opcodes[i]))
1218 broken = 1;
1219 }
1220 ++i;
1221 }
1222 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1223 }
1224
1225 mips16_op_hash = hash_new ();
1226
1227 i = 0;
1228 while (i < bfd_mips16_num_opcodes)
1229 {
1230 const char *name = mips16_opcodes[i].name;
1231
1232 retval = hash_insert (mips16_op_hash, name, (PTR) &mips16_opcodes[i]);
1233 if (retval != NULL)
1234 as_fatal (_("internal: can't hash `%s': %s"),
1235 mips16_opcodes[i].name, retval);
1236 do
1237 {
1238 if (mips16_opcodes[i].pinfo != INSN_MACRO
1239 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1240 != mips16_opcodes[i].match))
1241 {
1242 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1243 mips16_opcodes[i].name, mips16_opcodes[i].args);
1244 broken = 1;
1245 }
1246 ++i;
1247 }
1248 while (i < bfd_mips16_num_opcodes
1249 && strcmp (mips16_opcodes[i].name, name) == 0);
1250 }
1251
1252 if (broken)
1253 as_fatal (_("Broken assembler. No assembly attempted."));
1254
1255 /* We add all the general register names to the symbol table. This
1256 helps us detect invalid uses of them. */
1257 for (i = 0; i < 32; i++)
1258 {
1259 char buf[5];
1260
1261 sprintf (buf, "$%d", i);
1262 symbol_table_insert (symbol_new (buf, reg_section, i,
1263 &zero_address_frag));
1264 }
76db943d
TS
1265 symbol_table_insert (symbol_new ("$ra", reg_section, RA,
1266 &zero_address_frag));
252b5132
RH
1267 symbol_table_insert (symbol_new ("$fp", reg_section, FP,
1268 &zero_address_frag));
1269 symbol_table_insert (symbol_new ("$sp", reg_section, SP,
1270 &zero_address_frag));
1271 symbol_table_insert (symbol_new ("$gp", reg_section, GP,
1272 &zero_address_frag));
1273 symbol_table_insert (symbol_new ("$at", reg_section, AT,
1274 &zero_address_frag));
1275 symbol_table_insert (symbol_new ("$kt0", reg_section, KT0,
1276 &zero_address_frag));
1277 symbol_table_insert (symbol_new ("$kt1", reg_section, KT1,
1278 &zero_address_frag));
85b51719
TS
1279 symbol_table_insert (symbol_new ("$zero", reg_section, ZERO,
1280 &zero_address_frag));
252b5132
RH
1281 symbol_table_insert (symbol_new ("$pc", reg_section, -1,
1282 &zero_address_frag));
1283
6047c971
AO
1284 /* If we don't add these register names to the symbol table, they
1285 may end up being added as regular symbols by operand(), and then
1286 make it to the object file as undefined in case they're not
1287 regarded as local symbols. They're local in o32, since `$' is a
1288 local symbol prefix, but not in n32 or n64. */
1289 for (i = 0; i < 8; i++)
1290 {
1291 char buf[6];
1292
1293 sprintf (buf, "$fcc%i", i);
1294 symbol_table_insert (symbol_new (buf, reg_section, -1,
1295 &zero_address_frag));
1296 }
1297
b34976b6 1298 mips_no_prev_insn (FALSE);
252b5132
RH
1299
1300 mips_gprmask = 0;
1301 mips_cprmask[0] = 0;
1302 mips_cprmask[1] = 0;
1303 mips_cprmask[2] = 0;
1304 mips_cprmask[3] = 0;
1305
1306 /* set the default alignment for the text section (2**2) */
1307 record_alignment (text_section, 2);
1308
1309 if (USE_GLOBAL_POINTER_OPT)
1310 bfd_set_gp_size (stdoutput, g_switch_value);
1311
1312 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1313 {
1314 /* On a native system, sections must be aligned to 16 byte
1315 boundaries. When configured for an embedded ELF target, we
1316 don't bother. */
1317 if (strcmp (TARGET_OS, "elf") != 0)
1318 {
1319 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
1320 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
1321 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
1322 }
1323
1324 /* Create a .reginfo section for register masks and a .mdebug
1325 section for debugging information. */
1326 {
1327 segT seg;
1328 subsegT subseg;
1329 flagword flags;
1330 segT sec;
1331
1332 seg = now_seg;
1333 subseg = now_subseg;
1334
1335 /* The ABI says this section should be loaded so that the
1336 running program can access it. However, we don't load it
1337 if we are configured for an embedded target */
1338 flags = SEC_READONLY | SEC_DATA;
1339 if (strcmp (TARGET_OS, "elf") != 0)
1340 flags |= SEC_ALLOC | SEC_LOAD;
1341
316f5878 1342 if (mips_abi != N64_ABI)
252b5132
RH
1343 {
1344 sec = subseg_new (".reginfo", (subsegT) 0);
1345
195325d2
TS
1346 bfd_set_section_flags (stdoutput, sec, flags);
1347 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
bdaaa2e1 1348
252b5132
RH
1349#ifdef OBJ_ELF
1350 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
1351#endif
1352 }
1353 else
1354 {
1355 /* The 64-bit ABI uses a .MIPS.options section rather than
1356 .reginfo section. */
1357 sec = subseg_new (".MIPS.options", (subsegT) 0);
195325d2
TS
1358 bfd_set_section_flags (stdoutput, sec, flags);
1359 bfd_set_section_alignment (stdoutput, sec, 3);
252b5132
RH
1360
1361#ifdef OBJ_ELF
1362 /* Set up the option header. */
1363 {
1364 Elf_Internal_Options opthdr;
1365 char *f;
1366
1367 opthdr.kind = ODK_REGINFO;
1368 opthdr.size = (sizeof (Elf_External_Options)
1369 + sizeof (Elf64_External_RegInfo));
1370 opthdr.section = 0;
1371 opthdr.info = 0;
1372 f = frag_more (sizeof (Elf_External_Options));
1373 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
1374 (Elf_External_Options *) f);
1375
1376 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
1377 }
1378#endif
1379 }
1380
1381 if (ECOFF_DEBUGGING)
1382 {
1383 sec = subseg_new (".mdebug", (subsegT) 0);
1384 (void) bfd_set_section_flags (stdoutput, sec,
1385 SEC_HAS_CONTENTS | SEC_READONLY);
1386 (void) bfd_set_section_alignment (stdoutput, sec, 2);
1387 }
ecb4347a
DJ
1388#ifdef OBJ_ELF
1389 else if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1390 {
1391 pdr_seg = subseg_new (".pdr", (subsegT) 0);
1392 (void) bfd_set_section_flags (stdoutput, pdr_seg,
1393 SEC_READONLY | SEC_RELOC
1394 | SEC_DEBUGGING);
1395 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
1396 }
252b5132
RH
1397#endif
1398
1399 subseg_set (seg, subseg);
1400 }
1401 }
1402
1403 if (! ECOFF_DEBUGGING)
1404 md_obj_begin ();
1405}
1406
1407void
1408md_mips_end ()
1409{
1410 if (! ECOFF_DEBUGGING)
1411 md_obj_end ();
1412}
1413
1414void
1415md_assemble (str)
1416 char *str;
1417{
1418 struct mips_cl_insn insn;
f6688943
TS
1419 bfd_reloc_code_real_type unused_reloc[3]
1420 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132
RH
1421
1422 imm_expr.X_op = O_absent;
b34976b6 1423 imm_unmatched_hi = FALSE;
252b5132 1424 offset_expr.X_op = O_absent;
f6688943
TS
1425 imm_reloc[0] = BFD_RELOC_UNUSED;
1426 imm_reloc[1] = BFD_RELOC_UNUSED;
1427 imm_reloc[2] = BFD_RELOC_UNUSED;
1428 offset_reloc[0] = BFD_RELOC_UNUSED;
1429 offset_reloc[1] = BFD_RELOC_UNUSED;
1430 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
1431
1432 if (mips_opts.mips16)
1433 mips16_ip (str, &insn);
1434 else
1435 {
1436 mips_ip (str, &insn);
beae10d5
KH
1437 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
1438 str, insn.insn_opcode));
252b5132
RH
1439 }
1440
1441 if (insn_error)
1442 {
1443 as_bad ("%s `%s'", insn_error, str);
1444 return;
1445 }
1446
1447 if (insn.insn_mo->pinfo == INSN_MACRO)
1448 {
1449 if (mips_opts.mips16)
1450 mips16_macro (&insn);
1451 else
1452 macro (&insn);
1453 }
1454 else
1455 {
1456 if (imm_expr.X_op != O_absent)
c4e7957c 1457 append_insn (NULL, &insn, &imm_expr, imm_reloc, imm_unmatched_hi);
252b5132 1458 else if (offset_expr.X_op != O_absent)
b34976b6 1459 append_insn (NULL, &insn, &offset_expr, offset_reloc, FALSE);
252b5132 1460 else
b34976b6 1461 append_insn (NULL, &insn, NULL, unused_reloc, FALSE);
252b5132
RH
1462 }
1463}
1464
1465/* See whether instruction IP reads register REG. CLASS is the type
1466 of register. */
1467
1468static int
1469insn_uses_reg (ip, reg, class)
1470 struct mips_cl_insn *ip;
1471 unsigned int reg;
1472 enum mips_regclass class;
1473{
1474 if (class == MIPS16_REG)
1475 {
1476 assert (mips_opts.mips16);
1477 reg = mips16_to_32_reg_map[reg];
1478 class = MIPS_GR_REG;
1479 }
1480
85b51719
TS
1481 /* Don't report on general register ZERO, since it never changes. */
1482 if (class == MIPS_GR_REG && reg == ZERO)
252b5132
RH
1483 return 0;
1484
1485 if (class == MIPS_FP_REG)
1486 {
1487 assert (! mips_opts.mips16);
1488 /* If we are called with either $f0 or $f1, we must check $f0.
1489 This is not optimal, because it will introduce an unnecessary
1490 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
1491 need to distinguish reading both $f0 and $f1 or just one of
1492 them. Note that we don't have to check the other way,
1493 because there is no instruction that sets both $f0 and $f1
1494 and requires a delay. */
1495 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
1496 && ((((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS) &~(unsigned)1)
1497 == (reg &~ (unsigned) 1)))
1498 return 1;
1499 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
1500 && ((((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT) &~(unsigned)1)
1501 == (reg &~ (unsigned) 1)))
1502 return 1;
1503 }
1504 else if (! mips_opts.mips16)
1505 {
1506 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
1507 && ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == reg)
1508 return 1;
1509 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
1510 && ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT) == reg)
1511 return 1;
1512 }
1513 else
1514 {
1515 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
1516 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RX)
1517 & MIPS16OP_MASK_RX)]
1518 == reg))
1519 return 1;
1520 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
1521 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RY)
1522 & MIPS16OP_MASK_RY)]
1523 == reg))
1524 return 1;
1525 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
1526 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
1527 & MIPS16OP_MASK_MOVE32Z)]
1528 == reg))
1529 return 1;
1530 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
1531 return 1;
1532 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
1533 return 1;
1534 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
1535 return 1;
1536 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
1537 && ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
1538 & MIPS16OP_MASK_REGR32) == reg)
1539 return 1;
1540 }
1541
1542 return 0;
1543}
1544
1545/* This function returns true if modifying a register requires a
1546 delay. */
1547
1548static int
1549reg_needs_delay (reg)
156c2f8b 1550 unsigned int reg;
252b5132
RH
1551{
1552 unsigned long prev_pinfo;
1553
1554 prev_pinfo = prev_insn.insn_mo->pinfo;
1555 if (! mips_opts.noreorder
9ce8a5dd 1556 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
1557 && ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1558 || (! gpr_interlocks
1559 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))))
1560 {
1561 /* A load from a coprocessor or from memory. All load
1562 delays delay the use of general register rt for one
1563 instruction on the r3000. The r6000 and r4000 use
1564 interlocks. */
bdaaa2e1 1565 /* Itbl support may require additional care here. */
252b5132
RH
1566 know (prev_pinfo & INSN_WRITE_GPR_T);
1567 if (reg == ((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT))
1568 return 1;
1569 }
1570
1571 return 0;
1572}
1573
1574/* Mark instruction labels in mips16 mode. This permits the linker to
1575 handle them specially, such as generating jalx instructions when
1576 needed. We also make them odd for the duration of the assembly, in
1577 order to generate the right sort of code. We will make them even
1578 in the adjust_symtab routine, while leaving them marked. This is
1579 convenient for the debugger and the disassembler. The linker knows
1580 to make them odd again. */
1581
1582static void
1583mips16_mark_labels ()
1584{
1585 if (mips_opts.mips16)
1586 {
1587 struct insn_label_list *l;
98aa84af 1588 valueT val;
252b5132
RH
1589
1590 for (l = insn_labels; l != NULL; l = l->next)
1591 {
1592#ifdef OBJ_ELF
1593 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1594 S_SET_OTHER (l->label, STO_MIPS16);
1595#endif
98aa84af
AM
1596 val = S_GET_VALUE (l->label);
1597 if ((val & 1) == 0)
1598 S_SET_VALUE (l->label, val + 1);
252b5132
RH
1599 }
1600 }
1601}
1602
1603/* Output an instruction. PLACE is where to put the instruction; if
1604 it is NULL, this uses frag_more to get room. IP is the instruction
1605 information. ADDRESS_EXPR is an operand of the instruction to be
1606 used with RELOC_TYPE. */
1607
1608static void
1609append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
1610 char *place;
1611 struct mips_cl_insn *ip;
1612 expressionS *address_expr;
f6688943 1613 bfd_reloc_code_real_type *reloc_type;
b34976b6 1614 bfd_boolean unmatched_hi;
252b5132
RH
1615{
1616 register unsigned long prev_pinfo, pinfo;
1617 char *f;
f6688943 1618 fixS *fixp[3];
252b5132
RH
1619 int nops = 0;
1620
1621 /* Mark instruction labels in mips16 mode. */
f9419b05 1622 mips16_mark_labels ();
252b5132
RH
1623
1624 prev_pinfo = prev_insn.insn_mo->pinfo;
1625 pinfo = ip->insn_mo->pinfo;
1626
1627 if (place == NULL && (! mips_opts.noreorder || prev_nop_frag != NULL))
1628 {
1629 int prev_prev_nop;
1630
1631 /* If the previous insn required any delay slots, see if we need
1632 to insert a NOP or two. There are eight kinds of possible
1633 hazards, of which an instruction can have at most one type.
1634 (1) a load from memory delay
1635 (2) a load from a coprocessor delay
1636 (3) an unconditional branch delay
1637 (4) a conditional branch delay
1638 (5) a move to coprocessor register delay
1639 (6) a load coprocessor register from memory delay
1640 (7) a coprocessor condition code delay
1641 (8) a HI/LO special register delay
1642
1643 There are a lot of optimizations we could do that we don't.
1644 In particular, we do not, in general, reorder instructions.
1645 If you use gcc with optimization, it will reorder
1646 instructions and generally do much more optimization then we
1647 do here; repeating all that work in the assembler would only
1648 benefit hand written assembly code, and does not seem worth
1649 it. */
1650
1651 /* This is how a NOP is emitted. */
1652#define emit_nop() \
1653 (mips_opts.mips16 \
1654 ? md_number_to_chars (frag_more (2), 0x6500, 2) \
1655 : md_number_to_chars (frag_more (4), 0, 4))
1656
1657 /* The previous insn might require a delay slot, depending upon
1658 the contents of the current insn. */
1659 if (! mips_opts.mips16
9ce8a5dd 1660 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
1661 && (((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1662 && ! cop_interlocks)
1663 || (! gpr_interlocks
1664 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))))
1665 {
1666 /* A load from a coprocessor or from memory. All load
1667 delays delay the use of general register rt for one
1668 instruction on the r3000. The r6000 and r4000 use
1669 interlocks. */
beae10d5 1670 /* Itbl support may require additional care here. */
252b5132
RH
1671 know (prev_pinfo & INSN_WRITE_GPR_T);
1672 if (mips_optimize == 0
1673 || insn_uses_reg (ip,
1674 ((prev_insn.insn_opcode >> OP_SH_RT)
1675 & OP_MASK_RT),
1676 MIPS_GR_REG))
1677 ++nops;
1678 }
1679 else if (! mips_opts.mips16
9ce8a5dd 1680 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132 1681 && (((prev_pinfo & INSN_COPROC_MOVE_DELAY)
beae10d5 1682 && ! cop_interlocks)
e7af610e 1683 || (mips_opts.isa == ISA_MIPS1
252b5132
RH
1684 && (prev_pinfo & INSN_COPROC_MEMORY_DELAY))))
1685 {
1686 /* A generic coprocessor delay. The previous instruction
1687 modified a coprocessor general or control register. If
1688 it modified a control register, we need to avoid any
1689 coprocessor instruction (this is probably not always
1690 required, but it sometimes is). If it modified a general
1691 register, we avoid using that register.
1692
1693 On the r6000 and r4000 loading a coprocessor register
1694 from memory is interlocked, and does not require a delay.
1695
1696 This case is not handled very well. There is no special
1697 knowledge of CP0 handling, and the coprocessors other
1698 than the floating point unit are not distinguished at
1699 all. */
1700 /* Itbl support may require additional care here. FIXME!
bdaaa2e1 1701 Need to modify this to include knowledge about
252b5132
RH
1702 user specified delays! */
1703 if (prev_pinfo & INSN_WRITE_FPR_T)
1704 {
1705 if (mips_optimize == 0
1706 || insn_uses_reg (ip,
1707 ((prev_insn.insn_opcode >> OP_SH_FT)
1708 & OP_MASK_FT),
1709 MIPS_FP_REG))
1710 ++nops;
1711 }
1712 else if (prev_pinfo & INSN_WRITE_FPR_S)
1713 {
1714 if (mips_optimize == 0
1715 || insn_uses_reg (ip,
1716 ((prev_insn.insn_opcode >> OP_SH_FS)
1717 & OP_MASK_FS),
1718 MIPS_FP_REG))
1719 ++nops;
1720 }
1721 else
1722 {
1723 /* We don't know exactly what the previous instruction
1724 does. If the current instruction uses a coprocessor
1725 register, we must insert a NOP. If previous
1726 instruction may set the condition codes, and the
1727 current instruction uses them, we must insert two
1728 NOPS. */
bdaaa2e1 1729 /* Itbl support may require additional care here. */
252b5132
RH
1730 if (mips_optimize == 0
1731 || ((prev_pinfo & INSN_WRITE_COND_CODE)
1732 && (pinfo & INSN_READ_COND_CODE)))
1733 nops += 2;
1734 else if (pinfo & INSN_COP)
1735 ++nops;
1736 }
1737 }
1738 else if (! mips_opts.mips16
9ce8a5dd 1739 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
1740 && (prev_pinfo & INSN_WRITE_COND_CODE)
1741 && ! cop_interlocks)
1742 {
1743 /* The previous instruction sets the coprocessor condition
1744 codes, but does not require a general coprocessor delay
1745 (this means it is a floating point comparison
1746 instruction). If this instruction uses the condition
1747 codes, we need to insert a single NOP. */
beae10d5 1748 /* Itbl support may require additional care here. */
252b5132
RH
1749 if (mips_optimize == 0
1750 || (pinfo & INSN_READ_COND_CODE))
1751 ++nops;
1752 }
6b76fefe
CM
1753
1754 /* If we're fixing up mfhi/mflo for the r7000 and the
1755 previous insn was an mfhi/mflo and the current insn
1756 reads the register that the mfhi/mflo wrote to, then
1757 insert two nops. */
1758
1759 else if (mips_7000_hilo_fix
1760 && MF_HILO_INSN (prev_pinfo)
1761 && insn_uses_reg (ip, ((prev_insn.insn_opcode >> OP_SH_RD)
beae10d5
KH
1762 & OP_MASK_RD),
1763 MIPS_GR_REG))
6b76fefe
CM
1764 {
1765 nops += 2;
1766 }
1767
1768 /* If we're fixing up mfhi/mflo for the r7000 and the
1769 2nd previous insn was an mfhi/mflo and the current insn
1770 reads the register that the mfhi/mflo wrote to, then
1771 insert one nop. */
1772
1773 else if (mips_7000_hilo_fix
1774 && MF_HILO_INSN (prev_prev_insn.insn_opcode)
1775 && insn_uses_reg (ip, ((prev_prev_insn.insn_opcode >> OP_SH_RD)
1776 & OP_MASK_RD),
1777 MIPS_GR_REG))
bdaaa2e1 1778
6b76fefe 1779 {
f9419b05 1780 ++nops;
6b76fefe 1781 }
bdaaa2e1 1782
252b5132
RH
1783 else if (prev_pinfo & INSN_READ_LO)
1784 {
1785 /* The previous instruction reads the LO register; if the
1786 current instruction writes to the LO register, we must
bdaaa2e1
KH
1787 insert two NOPS. Some newer processors have interlocks.
1788 Also the tx39's multiply instructions can be exectuted
252b5132 1789 immediatly after a read from HI/LO (without the delay),
bdaaa2e1
KH
1790 though the tx39's divide insns still do require the
1791 delay. */
252b5132 1792 if (! (hilo_interlocks
ec68c924 1793 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))
252b5132
RH
1794 && (mips_optimize == 0
1795 || (pinfo & INSN_WRITE_LO)))
1796 nops += 2;
1797 /* Most mips16 branch insns don't have a delay slot.
1798 If a read from LO is immediately followed by a branch
1799 to a write to LO we have a read followed by a write
1800 less than 2 insns away. We assume the target of
1801 a branch might be a write to LO, and insert a nop
bdaaa2e1 1802 between a read and an immediately following branch. */
252b5132
RH
1803 else if (mips_opts.mips16
1804 && (mips_optimize == 0
1805 || (pinfo & MIPS16_INSN_BRANCH)))
f9419b05 1806 ++nops;
252b5132
RH
1807 }
1808 else if (prev_insn.insn_mo->pinfo & INSN_READ_HI)
1809 {
1810 /* The previous instruction reads the HI register; if the
1811 current instruction writes to the HI register, we must
1812 insert a NOP. Some newer processors have interlocks.
bdaaa2e1 1813 Also the note tx39's multiply above. */
252b5132 1814 if (! (hilo_interlocks
ec68c924 1815 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))
252b5132
RH
1816 && (mips_optimize == 0
1817 || (pinfo & INSN_WRITE_HI)))
1818 nops += 2;
1819 /* Most mips16 branch insns don't have a delay slot.
1820 If a read from HI is immediately followed by a branch
1821 to a write to HI we have a read followed by a write
1822 less than 2 insns away. We assume the target of
1823 a branch might be a write to HI, and insert a nop
bdaaa2e1 1824 between a read and an immediately following branch. */
252b5132
RH
1825 else if (mips_opts.mips16
1826 && (mips_optimize == 0
1827 || (pinfo & MIPS16_INSN_BRANCH)))
f9419b05 1828 ++nops;
252b5132
RH
1829 }
1830
1831 /* If the previous instruction was in a noreorder section, then
1832 we don't want to insert the nop after all. */
bdaaa2e1 1833 /* Itbl support may require additional care here. */
252b5132
RH
1834 if (prev_insn_unreordered)
1835 nops = 0;
1836
1837 /* There are two cases which require two intervening
1838 instructions: 1) setting the condition codes using a move to
1839 coprocessor instruction which requires a general coprocessor
1840 delay and then reading the condition codes 2) reading the HI
1841 or LO register and then writing to it (except on processors
1842 which have interlocks). If we are not already emitting a NOP
1843 instruction, we must check for these cases compared to the
1844 instruction previous to the previous instruction. */
1845 if ((! mips_opts.mips16
9ce8a5dd 1846 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
1847 && (prev_prev_insn.insn_mo->pinfo & INSN_COPROC_MOVE_DELAY)
1848 && (prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE)
1849 && (pinfo & INSN_READ_COND_CODE)
1850 && ! cop_interlocks)
1851 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_LO)
1852 && (pinfo & INSN_WRITE_LO)
1853 && ! (hilo_interlocks
ec68c924 1854 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT))))
252b5132
RH
1855 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
1856 && (pinfo & INSN_WRITE_HI)
1857 && ! (hilo_interlocks
ec68c924 1858 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))))
252b5132
RH
1859 prev_prev_nop = 1;
1860 else
1861 prev_prev_nop = 0;
1862
1863 if (prev_prev_insn_unreordered)
1864 prev_prev_nop = 0;
1865
1866 if (prev_prev_nop && nops == 0)
1867 ++nops;
1868
60b63b72
RS
1869 if (mips_fix_4122_bugs && prev_insn.insn_mo->name)
1870 {
1871 /* We're out of bits in pinfo, so we must resort to string
1872 ops here. Shortcuts are selected based on opcodes being
1873 limited to the VR4122 instruction set. */
1874 int min_nops = 0;
1875 const char *pn = prev_insn.insn_mo->name;
1876 const char *tn = ip->insn_mo->name;
1877 if (strncmp(pn, "macc", 4) == 0
1878 || strncmp(pn, "dmacc", 5) == 0)
1879 {
1880 /* Errata 21 - [D]DIV[U] after [D]MACC */
1881 if (strstr (tn, "div"))
1882 {
1883 min_nops = 1;
1884 }
1885
1886 /* Errata 23 - Continuous DMULT[U]/DMACC instructions */
1887 if (pn[0] == 'd' /* dmacc */
1888 && (strncmp(tn, "dmult", 5) == 0
1889 || strncmp(tn, "dmacc", 5) == 0))
1890 {
1891 min_nops = 1;
1892 }
1893
1894 /* Errata 24 - MT{LO,HI} after [D]MACC */
1895 if (strcmp (tn, "mtlo") == 0
1896 || strcmp (tn, "mthi") == 0)
1897 {
1898 min_nops = 1;
1899 }
1900
1901 }
1902 else if (strncmp(pn, "dmult", 5) == 0
1903 && (strncmp(tn, "dmult", 5) == 0
1904 || strncmp(tn, "dmacc", 5) == 0))
1905 {
1906 /* Here is the rest of errata 23. */
1907 min_nops = 1;
1908 }
1909 if (nops < min_nops)
1910 nops = min_nops;
1911 }
1912
252b5132
RH
1913 /* If we are being given a nop instruction, don't bother with
1914 one of the nops we would otherwise output. This will only
1915 happen when a nop instruction is used with mips_optimize set
1916 to 0. */
1917 if (nops > 0
1918 && ! mips_opts.noreorder
156c2f8b 1919 && ip->insn_opcode == (unsigned) (mips_opts.mips16 ? 0x6500 : 0))
252b5132
RH
1920 --nops;
1921
1922 /* Now emit the right number of NOP instructions. */
1923 if (nops > 0 && ! mips_opts.noreorder)
1924 {
1925 fragS *old_frag;
1926 unsigned long old_frag_offset;
1927 int i;
1928 struct insn_label_list *l;
1929
1930 old_frag = frag_now;
1931 old_frag_offset = frag_now_fix ();
1932
1933 for (i = 0; i < nops; i++)
1934 emit_nop ();
1935
1936 if (listing)
1937 {
1938 listing_prev_line ();
1939 /* We may be at the start of a variant frag. In case we
1940 are, make sure there is enough space for the frag
1941 after the frags created by listing_prev_line. The
1942 argument to frag_grow here must be at least as large
1943 as the argument to all other calls to frag_grow in
1944 this file. We don't have to worry about being in the
1945 middle of a variant frag, because the variants insert
1946 all needed nop instructions themselves. */
1947 frag_grow (40);
1948 }
1949
1950 for (l = insn_labels; l != NULL; l = l->next)
1951 {
98aa84af
AM
1952 valueT val;
1953
252b5132 1954 assert (S_GET_SEGMENT (l->label) == now_seg);
49309057 1955 symbol_set_frag (l->label, frag_now);
98aa84af 1956 val = (valueT) frag_now_fix ();
252b5132
RH
1957 /* mips16 text labels are stored as odd. */
1958 if (mips_opts.mips16)
f9419b05 1959 ++val;
98aa84af 1960 S_SET_VALUE (l->label, val);
252b5132
RH
1961 }
1962
1963#ifndef NO_ECOFF_DEBUGGING
1964 if (ECOFF_DEBUGGING)
1965 ecoff_fix_loc (old_frag, old_frag_offset);
1966#endif
1967 }
1968 else if (prev_nop_frag != NULL)
1969 {
1970 /* We have a frag holding nops we may be able to remove. If
1971 we don't need any nops, we can decrease the size of
1972 prev_nop_frag by the size of one instruction. If we do
bdaaa2e1 1973 need some nops, we count them in prev_nops_required. */
252b5132
RH
1974 if (prev_nop_frag_since == 0)
1975 {
1976 if (nops == 0)
1977 {
1978 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1979 --prev_nop_frag_holds;
1980 }
1981 else
1982 prev_nop_frag_required += nops;
1983 }
1984 else
1985 {
1986 if (prev_prev_nop == 0)
1987 {
1988 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1989 --prev_nop_frag_holds;
1990 }
1991 else
1992 ++prev_nop_frag_required;
1993 }
1994
1995 if (prev_nop_frag_holds <= prev_nop_frag_required)
1996 prev_nop_frag = NULL;
1997
1998 ++prev_nop_frag_since;
1999
2000 /* Sanity check: by the time we reach the second instruction
2001 after prev_nop_frag, we should have used up all the nops
2002 one way or another. */
2003 assert (prev_nop_frag_since <= 1 || prev_nop_frag == NULL);
2004 }
2005 }
2006
4a6a3df4
AO
2007 if (place == NULL
2008 && address_expr
2009 && ((*reloc_type == BFD_RELOC_16_PCREL
2010 && address_expr->X_op != O_constant)
2011 || *reloc_type == BFD_RELOC_16_PCREL_S2)
2012 && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY
2013 || pinfo & INSN_COND_BRANCH_LIKELY)
2014 && mips_relax_branch
2015 /* Don't try branch relaxation within .set nomacro, or within
2016 .set noat if we use $at for PIC computations. If it turns
2017 out that the branch was out-of-range, we'll get an error. */
2018 && !mips_opts.warn_about_macros
2019 && !(mips_opts.noat && mips_pic != NO_PIC)
2020 && !mips_opts.mips16)
2021 {
2022 f = frag_var (rs_machine_dependent,
2023 relaxed_branch_length
2024 (NULL, NULL,
2025 (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1
2026 : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1 : 0), 4,
2027 RELAX_BRANCH_ENCODE
2028 (*reloc_type == BFD_RELOC_16_PCREL_S2,
2029 pinfo & INSN_UNCOND_BRANCH_DELAY,
2030 pinfo & INSN_COND_BRANCH_LIKELY,
2031 pinfo & INSN_WRITE_GPR_31,
2032 0),
2033 address_expr->X_add_symbol,
2034 address_expr->X_add_number,
2035 0);
2036 *reloc_type = BFD_RELOC_UNUSED;
2037 }
2038 else if (*reloc_type > BFD_RELOC_UNUSED)
252b5132
RH
2039 {
2040 /* We need to set up a variant frag. */
2041 assert (mips_opts.mips16 && address_expr != NULL);
2042 f = frag_var (rs_machine_dependent, 4, 0,
f6688943 2043 RELAX_MIPS16_ENCODE (*reloc_type - BFD_RELOC_UNUSED,
252b5132
RH
2044 mips16_small, mips16_ext,
2045 (prev_pinfo
2046 & INSN_UNCOND_BRANCH_DELAY),
f6688943 2047 (*prev_insn_reloc_type
252b5132 2048 == BFD_RELOC_MIPS16_JMP)),
c4e7957c 2049 make_expr_symbol (address_expr), 0, NULL);
252b5132
RH
2050 }
2051 else if (place != NULL)
2052 f = place;
2053 else if (mips_opts.mips16
2054 && ! ip->use_extend
f6688943 2055 && *reloc_type != BFD_RELOC_MIPS16_JMP)
252b5132
RH
2056 {
2057 /* Make sure there is enough room to swap this instruction with
2058 a following jump instruction. */
2059 frag_grow (6);
2060 f = frag_more (2);
2061 }
2062 else
2063 {
2064 if (mips_opts.mips16
2065 && mips_opts.noreorder
2066 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
2067 as_warn (_("extended instruction in delay slot"));
2068
2069 f = frag_more (4);
2070 }
2071
f6688943
TS
2072 fixp[0] = fixp[1] = fixp[2] = NULL;
2073 if (address_expr != NULL && *reloc_type < BFD_RELOC_UNUSED)
252b5132
RH
2074 {
2075 if (address_expr->X_op == O_constant)
2076 {
4db1a35d 2077 valueT tmp;
f6688943
TS
2078
2079 switch (*reloc_type)
252b5132
RH
2080 {
2081 case BFD_RELOC_32:
2082 ip->insn_opcode |= address_expr->X_add_number;
2083 break;
2084
f6688943
TS
2085 case BFD_RELOC_MIPS_HIGHEST:
2086 tmp = (address_expr->X_add_number + 0x800080008000) >> 16;
2087 tmp >>= 16;
2088 ip->insn_opcode |= (tmp >> 16) & 0xffff;
2089 break;
2090
2091 case BFD_RELOC_MIPS_HIGHER:
2092 tmp = (address_expr->X_add_number + 0x80008000) >> 16;
2093 ip->insn_opcode |= (tmp >> 16) & 0xffff;
2094 break;
2095
2096 case BFD_RELOC_HI16_S:
2097 ip->insn_opcode |= ((address_expr->X_add_number + 0x8000)
2098 >> 16) & 0xffff;
2099 break;
2100
2101 case BFD_RELOC_HI16:
2102 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
2103 break;
2104
252b5132 2105 case BFD_RELOC_LO16:
ed6fb7bd 2106 case BFD_RELOC_MIPS_GOT_DISP:
252b5132
RH
2107 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
2108 break;
2109
2110 case BFD_RELOC_MIPS_JMP:
2111 if ((address_expr->X_add_number & 3) != 0)
2112 as_bad (_("jump to misaligned address (0x%lx)"),
2113 (unsigned long) address_expr->X_add_number);
f3c0ec86 2114 if (address_expr->X_add_number & ~0xfffffff)
7496292d
TS
2115 as_bad (_("jump address range overflow (0x%lx)"),
2116 (unsigned long) address_expr->X_add_number);
252b5132
RH
2117 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
2118 break;
2119
2120 case BFD_RELOC_MIPS16_JMP:
2121 if ((address_expr->X_add_number & 3) != 0)
2122 as_bad (_("jump to misaligned address (0x%lx)"),
2123 (unsigned long) address_expr->X_add_number);
f3c0ec86 2124 if (address_expr->X_add_number & ~0xfffffff)
7496292d
TS
2125 as_bad (_("jump address range overflow (0x%lx)"),
2126 (unsigned long) address_expr->X_add_number);
252b5132
RH
2127 ip->insn_opcode |=
2128 (((address_expr->X_add_number & 0x7c0000) << 3)
2129 | ((address_expr->X_add_number & 0xf800000) >> 7)
2130 | ((address_expr->X_add_number & 0x3fffc) >> 2));
2131 break;
2132
cb56d3d3 2133 case BFD_RELOC_16_PCREL:
233b8738 2134 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
cb56d3d3
TS
2135 break;
2136
252b5132
RH
2137 case BFD_RELOC_16_PCREL_S2:
2138 goto need_reloc;
2139
2140 default:
2141 internalError ();
2142 }
2143 }
2144 else
2145 {
2146 need_reloc:
f6688943 2147 /* Don't generate a reloc if we are writing into a variant frag. */
252b5132
RH
2148 if (place == NULL)
2149 {
f6688943
TS
2150 fixp[0] = fix_new_exp (frag_now, f - frag_now->fr_literal, 4,
2151 address_expr,
2152 (*reloc_type == BFD_RELOC_16_PCREL
2153 || *reloc_type == BFD_RELOC_16_PCREL_S2),
2154 reloc_type[0]);
2155
b6ff326e 2156 /* These relocations can have an addend that won't fit in
f6688943
TS
2157 4 octets for 64bit assembly. */
2158 if (HAVE_64BIT_GPRS &&
2159 (*reloc_type == BFD_RELOC_16
98d3f06f
KH
2160 || *reloc_type == BFD_RELOC_32
2161 || *reloc_type == BFD_RELOC_MIPS_JMP
2162 || *reloc_type == BFD_RELOC_HI16_S
2163 || *reloc_type == BFD_RELOC_LO16
2164 || *reloc_type == BFD_RELOC_GPREL16
2165 || *reloc_type == BFD_RELOC_MIPS_LITERAL
2166 || *reloc_type == BFD_RELOC_GPREL32
2167 || *reloc_type == BFD_RELOC_64
2168 || *reloc_type == BFD_RELOC_CTOR
2169 || *reloc_type == BFD_RELOC_MIPS_SUB
2170 || *reloc_type == BFD_RELOC_MIPS_HIGHEST
2171 || *reloc_type == BFD_RELOC_MIPS_HIGHER
2172 || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
2173 || *reloc_type == BFD_RELOC_MIPS_REL16
2174 || *reloc_type == BFD_RELOC_MIPS_RELGOT))
f6688943
TS
2175 fixp[0]->fx_no_overflow = 1;
2176
252b5132
RH
2177 if (unmatched_hi)
2178 {
2179 struct mips_hi_fixup *hi_fixup;
2180
f6688943 2181 assert (*reloc_type == BFD_RELOC_HI16_S);
252b5132
RH
2182 hi_fixup = ((struct mips_hi_fixup *)
2183 xmalloc (sizeof (struct mips_hi_fixup)));
f6688943 2184 hi_fixup->fixp = fixp[0];
252b5132
RH
2185 hi_fixup->seg = now_seg;
2186 hi_fixup->next = mips_hi_fixup_list;
2187 mips_hi_fixup_list = hi_fixup;
2188 }
f6688943
TS
2189
2190 if (reloc_type[1] != BFD_RELOC_UNUSED)
2191 {
2192 /* FIXME: This symbol can be one of
2193 RSS_UNDEF, RSS_GP, RSS_GP0, RSS_LOC. */
2194 address_expr->X_op = O_absent;
2195 address_expr->X_add_symbol = 0;
2196 address_expr->X_add_number = 0;
2197
2198 fixp[1] = fix_new_exp (frag_now, f - frag_now->fr_literal,
b34976b6 2199 4, address_expr, FALSE,
f6688943
TS
2200 reloc_type[1]);
2201
b6ff326e 2202 /* These relocations can have an addend that won't fit in
f6688943
TS
2203 4 octets for 64bit assembly. */
2204 if (HAVE_64BIT_GPRS &&
2205 (*reloc_type == BFD_RELOC_16
2206 || *reloc_type == BFD_RELOC_32
2207 || *reloc_type == BFD_RELOC_MIPS_JMP
2208 || *reloc_type == BFD_RELOC_HI16_S
2209 || *reloc_type == BFD_RELOC_LO16
2210 || *reloc_type == BFD_RELOC_GPREL16
2211 || *reloc_type == BFD_RELOC_MIPS_LITERAL
2212 || *reloc_type == BFD_RELOC_GPREL32
2213 || *reloc_type == BFD_RELOC_64
2214 || *reloc_type == BFD_RELOC_CTOR
2215 || *reloc_type == BFD_RELOC_MIPS_SUB
2216 || *reloc_type == BFD_RELOC_MIPS_HIGHEST
2217 || *reloc_type == BFD_RELOC_MIPS_HIGHER
2218 || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
2219 || *reloc_type == BFD_RELOC_MIPS_REL16
2220 || *reloc_type == BFD_RELOC_MIPS_RELGOT))
98d3f06f 2221 fixp[1]->fx_no_overflow = 1;
f6688943
TS
2222
2223 if (reloc_type[2] != BFD_RELOC_UNUSED)
2224 {
2225 address_expr->X_op = O_absent;
2226 address_expr->X_add_symbol = 0;
2227 address_expr->X_add_number = 0;
2228
2229 fixp[2] = fix_new_exp (frag_now,
2230 f - frag_now->fr_literal, 4,
b34976b6 2231 address_expr, FALSE,
f6688943
TS
2232 reloc_type[2]);
2233
b6ff326e 2234 /* These relocations can have an addend that won't fit in
f6688943
TS
2235 4 octets for 64bit assembly. */
2236 if (HAVE_64BIT_GPRS &&
2237 (*reloc_type == BFD_RELOC_16
2238 || *reloc_type == BFD_RELOC_32
2239 || *reloc_type == BFD_RELOC_MIPS_JMP
2240 || *reloc_type == BFD_RELOC_HI16_S
2241 || *reloc_type == BFD_RELOC_LO16
2242 || *reloc_type == BFD_RELOC_GPREL16
2243 || *reloc_type == BFD_RELOC_MIPS_LITERAL
2244 || *reloc_type == BFD_RELOC_GPREL32
2245 || *reloc_type == BFD_RELOC_64
2246 || *reloc_type == BFD_RELOC_CTOR
2247 || *reloc_type == BFD_RELOC_MIPS_SUB
2248 || *reloc_type == BFD_RELOC_MIPS_HIGHEST
2249 || *reloc_type == BFD_RELOC_MIPS_HIGHER
2250 || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
2251 || *reloc_type == BFD_RELOC_MIPS_REL16
2252 || *reloc_type == BFD_RELOC_MIPS_RELGOT))
98d3f06f 2253 fixp[2]->fx_no_overflow = 1;
f6688943
TS
2254 }
2255 }
252b5132
RH
2256 }
2257 }
2258 }
2259
2260 if (! mips_opts.mips16)
c5dd6aab
DJ
2261 {
2262 md_number_to_chars (f, ip->insn_opcode, 4);
2263#ifdef OBJ_ELF
2264 dwarf2_emit_insn (4);
2265#endif
2266 }
f6688943 2267 else if (*reloc_type == BFD_RELOC_MIPS16_JMP)
252b5132
RH
2268 {
2269 md_number_to_chars (f, ip->insn_opcode >> 16, 2);
2270 md_number_to_chars (f + 2, ip->insn_opcode & 0xffff, 2);
c5dd6aab
DJ
2271#ifdef OBJ_ELF
2272 dwarf2_emit_insn (4);
2273#endif
252b5132
RH
2274 }
2275 else
2276 {
2277 if (ip->use_extend)
2278 {
2279 md_number_to_chars (f, 0xf000 | ip->extend, 2);
2280 f += 2;
2281 }
2282 md_number_to_chars (f, ip->insn_opcode, 2);
c5dd6aab
DJ
2283#ifdef OBJ_ELF
2284 dwarf2_emit_insn (ip->use_extend ? 4 : 2);
2285#endif
252b5132
RH
2286 }
2287
2288 /* Update the register mask information. */
2289 if (! mips_opts.mips16)
2290 {
2291 if (pinfo & INSN_WRITE_GPR_D)
2292 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD);
2293 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
2294 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT);
2295 if (pinfo & INSN_READ_GPR_S)
2296 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS);
2297 if (pinfo & INSN_WRITE_GPR_31)
f9419b05 2298 mips_gprmask |= 1 << RA;
252b5132
RH
2299 if (pinfo & INSN_WRITE_FPR_D)
2300 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FD) & OP_MASK_FD);
2301 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
2302 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS);
2303 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
2304 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT);
2305 if ((pinfo & INSN_READ_FPR_R) != 0)
2306 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FR) & OP_MASK_FR);
2307 if (pinfo & INSN_COP)
2308 {
bdaaa2e1
KH
2309 /* We don't keep enough information to sort these cases out.
2310 The itbl support does keep this information however, although
2311 we currently don't support itbl fprmats as part of the cop
2312 instruction. May want to add this support in the future. */
252b5132
RH
2313 }
2314 /* Never set the bit for $0, which is always zero. */
beae10d5 2315 mips_gprmask &= ~1 << 0;
252b5132
RH
2316 }
2317 else
2318 {
2319 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
2320 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RX)
2321 & MIPS16OP_MASK_RX);
2322 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
2323 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RY)
2324 & MIPS16OP_MASK_RY);
2325 if (pinfo & MIPS16_INSN_WRITE_Z)
2326 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RZ)
2327 & MIPS16OP_MASK_RZ);
2328 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
2329 mips_gprmask |= 1 << TREG;
2330 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
2331 mips_gprmask |= 1 << SP;
2332 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
2333 mips_gprmask |= 1 << RA;
2334 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
2335 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
2336 if (pinfo & MIPS16_INSN_READ_Z)
2337 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
2338 & MIPS16OP_MASK_MOVE32Z);
2339 if (pinfo & MIPS16_INSN_READ_GPR_X)
2340 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
2341 & MIPS16OP_MASK_REGR32);
2342 }
2343
2344 if (place == NULL && ! mips_opts.noreorder)
2345 {
2346 /* Filling the branch delay slot is more complex. We try to
2347 switch the branch with the previous instruction, which we can
2348 do if the previous instruction does not set up a condition
2349 that the branch tests and if the branch is not itself the
2350 target of any branch. */
2351 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
2352 || (pinfo & INSN_COND_BRANCH_DELAY))
2353 {
2354 if (mips_optimize < 2
2355 /* If we have seen .set volatile or .set nomove, don't
2356 optimize. */
2357 || mips_opts.nomove != 0
2358 /* If we had to emit any NOP instructions, then we
2359 already know we can not swap. */
2360 || nops != 0
2361 /* If we don't even know the previous insn, we can not
bdaaa2e1 2362 swap. */
252b5132
RH
2363 || ! prev_insn_valid
2364 /* If the previous insn is already in a branch delay
2365 slot, then we can not swap. */
2366 || prev_insn_is_delay_slot
2367 /* If the previous previous insn was in a .set
2368 noreorder, we can't swap. Actually, the MIPS
2369 assembler will swap in this situation. However, gcc
2370 configured -with-gnu-as will generate code like
2371 .set noreorder
2372 lw $4,XXX
2373 .set reorder
2374 INSN
2375 bne $4,$0,foo
2376 in which we can not swap the bne and INSN. If gcc is
2377 not configured -with-gnu-as, it does not output the
2378 .set pseudo-ops. We don't have to check
2379 prev_insn_unreordered, because prev_insn_valid will
2380 be 0 in that case. We don't want to use
2381 prev_prev_insn_valid, because we do want to be able
2382 to swap at the start of a function. */
2383 || prev_prev_insn_unreordered
2384 /* If the branch is itself the target of a branch, we
2385 can not swap. We cheat on this; all we check for is
2386 whether there is a label on this instruction. If
2387 there are any branches to anything other than a
2388 label, users must use .set noreorder. */
2389 || insn_labels != NULL
2390 /* If the previous instruction is in a variant frag, we
2391 can not do the swap. This does not apply to the
2392 mips16, which uses variant frags for different
2393 purposes. */
2394 || (! mips_opts.mips16
2395 && prev_insn_frag->fr_type == rs_machine_dependent)
2396 /* If the branch reads the condition codes, we don't
2397 even try to swap, because in the sequence
2398 ctc1 $X,$31
2399 INSN
2400 INSN
2401 bc1t LABEL
2402 we can not swap, and I don't feel like handling that
2403 case. */
2404 || (! mips_opts.mips16
9ce8a5dd 2405 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
2406 && (pinfo & INSN_READ_COND_CODE))
2407 /* We can not swap with an instruction that requires a
2408 delay slot, becase the target of the branch might
2409 interfere with that instruction. */
2410 || (! mips_opts.mips16
9ce8a5dd 2411 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132 2412 && (prev_pinfo
bdaaa2e1 2413 /* Itbl support may require additional care here. */
252b5132
RH
2414 & (INSN_LOAD_COPROC_DELAY
2415 | INSN_COPROC_MOVE_DELAY
2416 | INSN_WRITE_COND_CODE)))
2417 || (! (hilo_interlocks
ec68c924 2418 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))
252b5132
RH
2419 && (prev_pinfo
2420 & (INSN_READ_LO
2421 | INSN_READ_HI)))
2422 || (! mips_opts.mips16
2423 && ! gpr_interlocks
2424 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))
2425 || (! mips_opts.mips16
e7af610e 2426 && mips_opts.isa == ISA_MIPS1
bdaaa2e1 2427 /* Itbl support may require additional care here. */
252b5132
RH
2428 && (prev_pinfo & INSN_COPROC_MEMORY_DELAY))
2429 /* We can not swap with a branch instruction. */
2430 || (prev_pinfo
2431 & (INSN_UNCOND_BRANCH_DELAY
2432 | INSN_COND_BRANCH_DELAY
2433 | INSN_COND_BRANCH_LIKELY))
2434 /* We do not swap with a trap instruction, since it
2435 complicates trap handlers to have the trap
2436 instruction be in a delay slot. */
2437 || (prev_pinfo & INSN_TRAP)
2438 /* If the branch reads a register that the previous
2439 instruction sets, we can not swap. */
2440 || (! mips_opts.mips16
2441 && (prev_pinfo & INSN_WRITE_GPR_T)
2442 && insn_uses_reg (ip,
2443 ((prev_insn.insn_opcode >> OP_SH_RT)
2444 & OP_MASK_RT),
2445 MIPS_GR_REG))
2446 || (! mips_opts.mips16
2447 && (prev_pinfo & INSN_WRITE_GPR_D)
2448 && insn_uses_reg (ip,
2449 ((prev_insn.insn_opcode >> OP_SH_RD)
2450 & OP_MASK_RD),
2451 MIPS_GR_REG))
2452 || (mips_opts.mips16
2453 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
2454 && insn_uses_reg (ip,
2455 ((prev_insn.insn_opcode
2456 >> MIPS16OP_SH_RX)
2457 & MIPS16OP_MASK_RX),
2458 MIPS16_REG))
2459 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
2460 && insn_uses_reg (ip,
2461 ((prev_insn.insn_opcode
2462 >> MIPS16OP_SH_RY)
2463 & MIPS16OP_MASK_RY),
2464 MIPS16_REG))
2465 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
2466 && insn_uses_reg (ip,
2467 ((prev_insn.insn_opcode
2468 >> MIPS16OP_SH_RZ)
2469 & MIPS16OP_MASK_RZ),
2470 MIPS16_REG))
2471 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
2472 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
2473 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
2474 && insn_uses_reg (ip, RA, MIPS_GR_REG))
2475 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2476 && insn_uses_reg (ip,
2477 MIPS16OP_EXTRACT_REG32R (prev_insn.
2478 insn_opcode),
2479 MIPS_GR_REG))))
2480 /* If the branch writes a register that the previous
2481 instruction sets, we can not swap (we know that
2482 branches write only to RD or to $31). */
2483 || (! mips_opts.mips16
2484 && (prev_pinfo & INSN_WRITE_GPR_T)
2485 && (((pinfo & INSN_WRITE_GPR_D)
2486 && (((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT)
2487 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2488 || ((pinfo & INSN_WRITE_GPR_31)
2489 && (((prev_insn.insn_opcode >> OP_SH_RT)
2490 & OP_MASK_RT)
f9419b05 2491 == RA))))
252b5132
RH
2492 || (! mips_opts.mips16
2493 && (prev_pinfo & INSN_WRITE_GPR_D)
2494 && (((pinfo & INSN_WRITE_GPR_D)
2495 && (((prev_insn.insn_opcode >> OP_SH_RD) & OP_MASK_RD)
2496 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2497 || ((pinfo & INSN_WRITE_GPR_31)
2498 && (((prev_insn.insn_opcode >> OP_SH_RD)
2499 & OP_MASK_RD)
f9419b05 2500 == RA))))
252b5132
RH
2501 || (mips_opts.mips16
2502 && (pinfo & MIPS16_INSN_WRITE_31)
2503 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
2504 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2505 && (MIPS16OP_EXTRACT_REG32R (prev_insn.insn_opcode)
2506 == RA))))
2507 /* If the branch writes a register that the previous
2508 instruction reads, we can not swap (we know that
2509 branches only write to RD or to $31). */
2510 || (! mips_opts.mips16
2511 && (pinfo & INSN_WRITE_GPR_D)
2512 && insn_uses_reg (&prev_insn,
2513 ((ip->insn_opcode >> OP_SH_RD)
2514 & OP_MASK_RD),
2515 MIPS_GR_REG))
2516 || (! mips_opts.mips16
2517 && (pinfo & INSN_WRITE_GPR_31)
f9419b05 2518 && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG))
252b5132
RH
2519 || (mips_opts.mips16
2520 && (pinfo & MIPS16_INSN_WRITE_31)
2521 && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG))
2522 /* If we are generating embedded PIC code, the branch
2523 might be expanded into a sequence which uses $at, so
2524 we can't swap with an instruction which reads it. */
2525 || (mips_pic == EMBEDDED_PIC
2526 && insn_uses_reg (&prev_insn, AT, MIPS_GR_REG))
2527 /* If the previous previous instruction has a load
2528 delay, and sets a register that the branch reads, we
2529 can not swap. */
2530 || (! mips_opts.mips16
9ce8a5dd 2531 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
bdaaa2e1 2532 /* Itbl support may require additional care here. */
252b5132
RH
2533 && ((prev_prev_insn.insn_mo->pinfo & INSN_LOAD_COPROC_DELAY)
2534 || (! gpr_interlocks
2535 && (prev_prev_insn.insn_mo->pinfo
2536 & INSN_LOAD_MEMORY_DELAY)))
2537 && insn_uses_reg (ip,
2538 ((prev_prev_insn.insn_opcode >> OP_SH_RT)
2539 & OP_MASK_RT),
2540 MIPS_GR_REG))
2541 /* If one instruction sets a condition code and the
2542 other one uses a condition code, we can not swap. */
2543 || ((pinfo & INSN_READ_COND_CODE)
2544 && (prev_pinfo & INSN_WRITE_COND_CODE))
2545 || ((pinfo & INSN_WRITE_COND_CODE)
2546 && (prev_pinfo & INSN_READ_COND_CODE))
2547 /* If the previous instruction uses the PC, we can not
2548 swap. */
2549 || (mips_opts.mips16
2550 && (prev_pinfo & MIPS16_INSN_READ_PC))
2551 /* If the previous instruction was extended, we can not
2552 swap. */
2553 || (mips_opts.mips16 && prev_insn_extended)
2554 /* If the previous instruction had a fixup in mips16
2555 mode, we can not swap. This normally means that the
2556 previous instruction was a 4 byte branch anyhow. */
f6688943 2557 || (mips_opts.mips16 && prev_insn_fixp[0])
bdaaa2e1
KH
2558 /* If the previous instruction is a sync, sync.l, or
2559 sync.p, we can not swap. */
f173e82e 2560 || (prev_pinfo & INSN_SYNC))
252b5132
RH
2561 {
2562 /* We could do even better for unconditional branches to
2563 portions of this object file; we could pick up the
2564 instruction at the destination, put it in the delay
2565 slot, and bump the destination address. */
2566 emit_nop ();
2567 /* Update the previous insn information. */
2568 prev_prev_insn = *ip;
2569 prev_insn.insn_mo = &dummy_opcode;
2570 }
2571 else
2572 {
2573 /* It looks like we can actually do the swap. */
2574 if (! mips_opts.mips16)
2575 {
2576 char *prev_f;
2577 char temp[4];
2578
2579 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2580 memcpy (temp, prev_f, 4);
2581 memcpy (prev_f, f, 4);
2582 memcpy (f, temp, 4);
f6688943
TS
2583 if (prev_insn_fixp[0])
2584 {
2585 prev_insn_fixp[0]->fx_frag = frag_now;
2586 prev_insn_fixp[0]->fx_where = f - frag_now->fr_literal;
2587 }
2588 if (prev_insn_fixp[1])
2589 {
2590 prev_insn_fixp[1]->fx_frag = frag_now;
2591 prev_insn_fixp[1]->fx_where = f - frag_now->fr_literal;
2592 }
2593 if (prev_insn_fixp[2])
252b5132 2594 {
f6688943
TS
2595 prev_insn_fixp[2]->fx_frag = frag_now;
2596 prev_insn_fixp[2]->fx_where = f - frag_now->fr_literal;
252b5132 2597 }
f6688943 2598 if (fixp[0])
252b5132 2599 {
f6688943
TS
2600 fixp[0]->fx_frag = prev_insn_frag;
2601 fixp[0]->fx_where = prev_insn_where;
2602 }
2603 if (fixp[1])
2604 {
2605 fixp[1]->fx_frag = prev_insn_frag;
2606 fixp[1]->fx_where = prev_insn_where;
2607 }
2608 if (fixp[2])
2609 {
2610 fixp[2]->fx_frag = prev_insn_frag;
2611 fixp[2]->fx_where = prev_insn_where;
252b5132
RH
2612 }
2613 }
2614 else
2615 {
2616 char *prev_f;
2617 char temp[2];
2618
f6688943
TS
2619 assert (prev_insn_fixp[0] == NULL);
2620 assert (prev_insn_fixp[1] == NULL);
2621 assert (prev_insn_fixp[2] == NULL);
252b5132
RH
2622 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2623 memcpy (temp, prev_f, 2);
2624 memcpy (prev_f, f, 2);
f6688943 2625 if (*reloc_type != BFD_RELOC_MIPS16_JMP)
252b5132 2626 {
f6688943 2627 assert (*reloc_type == BFD_RELOC_UNUSED);
252b5132
RH
2628 memcpy (f, temp, 2);
2629 }
2630 else
2631 {
2632 memcpy (f, f + 2, 2);
2633 memcpy (f + 2, temp, 2);
2634 }
f6688943
TS
2635 if (fixp[0])
2636 {
2637 fixp[0]->fx_frag = prev_insn_frag;
2638 fixp[0]->fx_where = prev_insn_where;
2639 }
2640 if (fixp[1])
2641 {
2642 fixp[1]->fx_frag = prev_insn_frag;
2643 fixp[1]->fx_where = prev_insn_where;
2644 }
2645 if (fixp[2])
252b5132 2646 {
f6688943
TS
2647 fixp[2]->fx_frag = prev_insn_frag;
2648 fixp[2]->fx_where = prev_insn_where;
252b5132
RH
2649 }
2650 }
2651
2652 /* Update the previous insn information; leave prev_insn
2653 unchanged. */
2654 prev_prev_insn = *ip;
2655 }
2656 prev_insn_is_delay_slot = 1;
2657
2658 /* If that was an unconditional branch, forget the previous
2659 insn information. */
2660 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
2661 {
2662 prev_prev_insn.insn_mo = &dummy_opcode;
2663 prev_insn.insn_mo = &dummy_opcode;
2664 }
2665
f6688943
TS
2666 prev_insn_fixp[0] = NULL;
2667 prev_insn_fixp[1] = NULL;
2668 prev_insn_fixp[2] = NULL;
2669 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2670 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2671 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
252b5132
RH
2672 prev_insn_extended = 0;
2673 }
2674 else if (pinfo & INSN_COND_BRANCH_LIKELY)
2675 {
2676 /* We don't yet optimize a branch likely. What we should do
2677 is look at the target, copy the instruction found there
2678 into the delay slot, and increment the branch to jump to
2679 the next instruction. */
2680 emit_nop ();
2681 /* Update the previous insn information. */
2682 prev_prev_insn = *ip;
2683 prev_insn.insn_mo = &dummy_opcode;
f6688943
TS
2684 prev_insn_fixp[0] = NULL;
2685 prev_insn_fixp[1] = NULL;
2686 prev_insn_fixp[2] = NULL;
2687 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2688 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2689 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
252b5132
RH
2690 prev_insn_extended = 0;
2691 }
2692 else
2693 {
2694 /* Update the previous insn information. */
2695 if (nops > 0)
2696 prev_prev_insn.insn_mo = &dummy_opcode;
2697 else
2698 prev_prev_insn = prev_insn;
2699 prev_insn = *ip;
2700
2701 /* Any time we see a branch, we always fill the delay slot
2702 immediately; since this insn is not a branch, we know it
2703 is not in a delay slot. */
2704 prev_insn_is_delay_slot = 0;
2705
f6688943
TS
2706 prev_insn_fixp[0] = fixp[0];
2707 prev_insn_fixp[1] = fixp[1];
2708 prev_insn_fixp[2] = fixp[2];
2709 prev_insn_reloc_type[0] = reloc_type[0];
2710 prev_insn_reloc_type[1] = reloc_type[1];
2711 prev_insn_reloc_type[2] = reloc_type[2];
252b5132
RH
2712 if (mips_opts.mips16)
2713 prev_insn_extended = (ip->use_extend
f6688943 2714 || *reloc_type > BFD_RELOC_UNUSED);
252b5132
RH
2715 }
2716
2717 prev_prev_insn_unreordered = prev_insn_unreordered;
2718 prev_insn_unreordered = 0;
2719 prev_insn_frag = frag_now;
2720 prev_insn_where = f - frag_now->fr_literal;
2721 prev_insn_valid = 1;
2722 }
2723 else if (place == NULL)
2724 {
2725 /* We need to record a bit of information even when we are not
2726 reordering, in order to determine the base address for mips16
2727 PC relative relocs. */
2728 prev_prev_insn = prev_insn;
2729 prev_insn = *ip;
f6688943
TS
2730 prev_insn_reloc_type[0] = reloc_type[0];
2731 prev_insn_reloc_type[1] = reloc_type[1];
2732 prev_insn_reloc_type[2] = reloc_type[2];
252b5132
RH
2733 prev_prev_insn_unreordered = prev_insn_unreordered;
2734 prev_insn_unreordered = 1;
2735 }
2736
2737 /* We just output an insn, so the next one doesn't have a label. */
2738 mips_clear_insn_labels ();
2739
2740 /* We must ensure that a fixup associated with an unmatched %hi
2741 reloc does not become a variant frag. Otherwise, the
2742 rearrangement of %hi relocs in frob_file may confuse
2743 tc_gen_reloc. */
2744 if (unmatched_hi)
2745 {
2746 frag_wane (frag_now);
2747 frag_new (0);
2748 }
2749}
2750
2751/* This function forgets that there was any previous instruction or
2752 label. If PRESERVE is non-zero, it remembers enough information to
bdaaa2e1 2753 know whether nops are needed before a noreorder section. */
252b5132
RH
2754
2755static void
2756mips_no_prev_insn (preserve)
2757 int preserve;
2758{
2759 if (! preserve)
2760 {
2761 prev_insn.insn_mo = &dummy_opcode;
2762 prev_prev_insn.insn_mo = &dummy_opcode;
2763 prev_nop_frag = NULL;
2764 prev_nop_frag_holds = 0;
2765 prev_nop_frag_required = 0;
2766 prev_nop_frag_since = 0;
2767 }
2768 prev_insn_valid = 0;
2769 prev_insn_is_delay_slot = 0;
2770 prev_insn_unreordered = 0;
2771 prev_insn_extended = 0;
f6688943
TS
2772 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2773 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2774 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
252b5132
RH
2775 prev_prev_insn_unreordered = 0;
2776 mips_clear_insn_labels ();
2777}
2778
2779/* This function must be called whenever we turn on noreorder or emit
2780 something other than instructions. It inserts any NOPS which might
2781 be needed by the previous instruction, and clears the information
2782 kept for the previous instructions. The INSNS parameter is true if
bdaaa2e1 2783 instructions are to follow. */
252b5132
RH
2784
2785static void
2786mips_emit_delays (insns)
b34976b6 2787 bfd_boolean insns;
252b5132
RH
2788{
2789 if (! mips_opts.noreorder)
2790 {
2791 int nops;
2792
2793 nops = 0;
2794 if ((! mips_opts.mips16
9ce8a5dd 2795 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
2796 && (! cop_interlocks
2797 && (prev_insn.insn_mo->pinfo
2798 & (INSN_LOAD_COPROC_DELAY
2799 | INSN_COPROC_MOVE_DELAY
2800 | INSN_WRITE_COND_CODE))))
2801 || (! hilo_interlocks
2802 && (prev_insn.insn_mo->pinfo
2803 & (INSN_READ_LO
2804 | INSN_READ_HI)))
2805 || (! mips_opts.mips16
2806 && ! gpr_interlocks
bdaaa2e1 2807 && (prev_insn.insn_mo->pinfo
252b5132
RH
2808 & INSN_LOAD_MEMORY_DELAY))
2809 || (! mips_opts.mips16
e7af610e 2810 && mips_opts.isa == ISA_MIPS1
252b5132
RH
2811 && (prev_insn.insn_mo->pinfo
2812 & INSN_COPROC_MEMORY_DELAY)))
2813 {
beae10d5 2814 /* Itbl support may require additional care here. */
252b5132
RH
2815 ++nops;
2816 if ((! mips_opts.mips16
9ce8a5dd 2817 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
2818 && (! cop_interlocks
2819 && prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE))
2820 || (! hilo_interlocks
2821 && ((prev_insn.insn_mo->pinfo & INSN_READ_HI)
2822 || (prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2823 ++nops;
2824
2825 if (prev_insn_unreordered)
2826 nops = 0;
2827 }
2828 else if ((! mips_opts.mips16
9ce8a5dd 2829 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
2830 && (! cop_interlocks
2831 && prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE))
2832 || (! hilo_interlocks
2833 && ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
2834 || (prev_prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2835 {
beae10d5 2836 /* Itbl support may require additional care here. */
252b5132
RH
2837 if (! prev_prev_insn_unreordered)
2838 ++nops;
2839 }
2840
60b63b72
RS
2841 if (mips_fix_4122_bugs && prev_insn.insn_mo->name)
2842 {
2843 int min_nops = 0;
2844 const char *pn = prev_insn.insn_mo->name;
2845 if (strncmp(pn, "macc", 4) == 0
2846 || strncmp(pn, "dmacc", 5) == 0
2847 || strncmp(pn, "dmult", 5) == 0)
2848 {
2849 min_nops = 1;
2850 }
2851 if (nops < min_nops)
2852 nops = min_nops;
2853 }
2854
252b5132
RH
2855 if (nops > 0)
2856 {
2857 struct insn_label_list *l;
2858
2859 if (insns)
2860 {
2861 /* Record the frag which holds the nop instructions, so
2862 that we can remove them if we don't need them. */
2863 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
2864 prev_nop_frag = frag_now;
2865 prev_nop_frag_holds = nops;
2866 prev_nop_frag_required = 0;
2867 prev_nop_frag_since = 0;
2868 }
2869
2870 for (; nops > 0; --nops)
2871 emit_nop ();
2872
2873 if (insns)
2874 {
2875 /* Move on to a new frag, so that it is safe to simply
bdaaa2e1 2876 decrease the size of prev_nop_frag. */
252b5132
RH
2877 frag_wane (frag_now);
2878 frag_new (0);
2879 }
2880
2881 for (l = insn_labels; l != NULL; l = l->next)
2882 {
98aa84af
AM
2883 valueT val;
2884
252b5132 2885 assert (S_GET_SEGMENT (l->label) == now_seg);
49309057 2886 symbol_set_frag (l->label, frag_now);
98aa84af 2887 val = (valueT) frag_now_fix ();
252b5132
RH
2888 /* mips16 text labels are stored as odd. */
2889 if (mips_opts.mips16)
f9419b05 2890 ++val;
98aa84af 2891 S_SET_VALUE (l->label, val);
252b5132
RH
2892 }
2893 }
2894 }
2895
2896 /* Mark instruction labels in mips16 mode. */
f9419b05 2897 if (insns)
252b5132
RH
2898 mips16_mark_labels ();
2899
2900 mips_no_prev_insn (insns);
2901}
2902
2903/* Build an instruction created by a macro expansion. This is passed
2904 a pointer to the count of instructions created so far, an
2905 expression, the name of the instruction to build, an operand format
2906 string, and corresponding arguments. */
2907
2908#ifdef USE_STDARG
2909static void
2910macro_build (char *place,
2911 int *counter,
2912 expressionS * ep,
2913 const char *name,
2914 const char *fmt,
2915 ...)
2916#else
2917static void
2918macro_build (place, counter, ep, name, fmt, va_alist)
2919 char *place;
2920 int *counter;
2921 expressionS *ep;
2922 const char *name;
2923 const char *fmt;
2924 va_dcl
2925#endif
2926{
2927 struct mips_cl_insn insn;
f6688943 2928 bfd_reloc_code_real_type r[3];
252b5132 2929 va_list args;
252b5132
RH
2930
2931#ifdef USE_STDARG
2932 va_start (args, fmt);
2933#else
2934 va_start (args);
2935#endif
2936
2937 /*
2938 * If the macro is about to expand into a second instruction,
2939 * print a warning if needed. We need to pass ip as a parameter
2940 * to generate a better warning message here...
2941 */
2942 if (mips_opts.warn_about_macros && place == NULL && *counter == 1)
2943 as_warn (_("Macro instruction expanded into multiple instructions"));
2944
80cc45a5
EC
2945 /*
2946 * If the macro is about to expand into a second instruction,
2947 * and it is in a delay slot, print a warning.
2948 */
2949 if (place == NULL
2950 && *counter == 1
2951 && mips_opts.noreorder
2952 && (prev_prev_insn.insn_mo->pinfo
2953 & (INSN_UNCOND_BRANCH_DELAY | INSN_COND_BRANCH_DELAY
2b2e39bf 2954 | INSN_COND_BRANCH_LIKELY)) != 0)
80cc45a5
EC
2955 as_warn (_("Macro instruction expanded into multiple instructions in a branch delay slot"));
2956
252b5132 2957 if (place == NULL)
f9419b05 2958 ++*counter; /* bump instruction counter */
252b5132
RH
2959
2960 if (mips_opts.mips16)
2961 {
2962 mips16_macro_build (place, counter, ep, name, fmt, args);
2963 va_end (args);
2964 return;
2965 }
2966
f6688943
TS
2967 r[0] = BFD_RELOC_UNUSED;
2968 r[1] = BFD_RELOC_UNUSED;
2969 r[2] = BFD_RELOC_UNUSED;
252b5132
RH
2970 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
2971 assert (insn.insn_mo);
2972 assert (strcmp (name, insn.insn_mo->name) == 0);
2973
2974 /* Search until we get a match for NAME. */
2975 while (1)
2976 {
b34976b6 2977 /* It is assumed here that macros will never generate
deec1734 2978 MDMX or MIPS-3D instructions. */
252b5132
RH
2979 if (strcmp (fmt, insn.insn_mo->args) == 0
2980 && insn.insn_mo->pinfo != INSN_MACRO
aec421e0
TS
2981 && OPCODE_IS_MEMBER (insn.insn_mo,
2982 (mips_opts.isa
3396de36 2983 | (file_ase_mips16 ? INSN_MIPS16 : 0)),
aec421e0 2984 mips_arch)
ec68c924 2985 && (mips_arch != CPU_R4650 || (insn.insn_mo->pinfo & FP_D) == 0))
252b5132
RH
2986 break;
2987
2988 ++insn.insn_mo;
2989 assert (insn.insn_mo->name);
2990 assert (strcmp (name, insn.insn_mo->name) == 0);
2991 }
2992
2993 insn.insn_opcode = insn.insn_mo->match;
2994 for (;;)
2995 {
2996 switch (*fmt++)
2997 {
2998 case '\0':
2999 break;
3000
3001 case ',':
3002 case '(':
3003 case ')':
3004 continue;
3005
3006 case 't':
3007 case 'w':
3008 case 'E':
38487616 3009 insn.insn_opcode |= va_arg (args, int) << OP_SH_RT;
252b5132
RH
3010 continue;
3011
3012 case 'c':
38487616
TS
3013 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE;
3014 continue;
3015
252b5132
RH
3016 case 'T':
3017 case 'W':
38487616 3018 insn.insn_opcode |= va_arg (args, int) << OP_SH_FT;
252b5132
RH
3019 continue;
3020
3021 case 'd':
3022 case 'G':
38487616 3023 insn.insn_opcode |= va_arg (args, int) << OP_SH_RD;
252b5132
RH
3024 continue;
3025
4372b673
NC
3026 case 'U':
3027 {
3028 int tmp = va_arg (args, int);
3029
38487616
TS
3030 insn.insn_opcode |= tmp << OP_SH_RT;
3031 insn.insn_opcode |= tmp << OP_SH_RD;
beae10d5 3032 continue;
4372b673
NC
3033 }
3034
252b5132
RH
3035 case 'V':
3036 case 'S':
38487616 3037 insn.insn_opcode |= va_arg (args, int) << OP_SH_FS;
252b5132
RH
3038 continue;
3039
3040 case 'z':
3041 continue;
3042
3043 case '<':
38487616 3044 insn.insn_opcode |= va_arg (args, int) << OP_SH_SHAMT;
252b5132
RH
3045 continue;
3046
3047 case 'D':
38487616 3048 insn.insn_opcode |= va_arg (args, int) << OP_SH_FD;
252b5132
RH
3049 continue;
3050
3051 case 'B':
38487616 3052 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE20;
252b5132
RH
3053 continue;
3054
4372b673 3055 case 'J':
38487616 3056 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE19;
4372b673
NC
3057 continue;
3058
252b5132 3059 case 'q':
38487616 3060 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE2;
252b5132
RH
3061 continue;
3062
3063 case 'b':
3064 case 's':
3065 case 'r':
3066 case 'v':
38487616 3067 insn.insn_opcode |= va_arg (args, int) << OP_SH_RS;
252b5132
RH
3068 continue;
3069
3070 case 'i':
3071 case 'j':
3072 case 'o':
f6688943 3073 *r = (bfd_reloc_code_real_type) va_arg (args, int);
cdf6fd85 3074 assert (*r == BFD_RELOC_GPREL16
f6688943
TS
3075 || *r == BFD_RELOC_MIPS_LITERAL
3076 || *r == BFD_RELOC_MIPS_HIGHER
3077 || *r == BFD_RELOC_HI16_S
3078 || *r == BFD_RELOC_LO16
3079 || *r == BFD_RELOC_MIPS_GOT16
3080 || *r == BFD_RELOC_MIPS_CALL16
438c16b8
TS
3081 || *r == BFD_RELOC_MIPS_GOT_DISP
3082 || *r == BFD_RELOC_MIPS_GOT_PAGE
3083 || *r == BFD_RELOC_MIPS_GOT_OFST
f6688943
TS
3084 || *r == BFD_RELOC_MIPS_GOT_LO16
3085 || *r == BFD_RELOC_MIPS_CALL_LO16
252b5132 3086 || (ep->X_op == O_subtract
f6688943 3087 && *r == BFD_RELOC_PCREL_LO16));
252b5132
RH
3088 continue;
3089
3090 case 'u':
f6688943 3091 *r = (bfd_reloc_code_real_type) va_arg (args, int);
252b5132
RH
3092 assert (ep != NULL
3093 && (ep->X_op == O_constant
3094 || (ep->X_op == O_symbol
f6688943
TS
3095 && (*r == BFD_RELOC_MIPS_HIGHEST
3096 || *r == BFD_RELOC_HI16_S
3097 || *r == BFD_RELOC_HI16
3098 || *r == BFD_RELOC_GPREL16
3099 || *r == BFD_RELOC_MIPS_GOT_HI16
3100 || *r == BFD_RELOC_MIPS_CALL_HI16))
252b5132 3101 || (ep->X_op == O_subtract
f6688943 3102 && *r == BFD_RELOC_PCREL_HI16_S)));
252b5132
RH
3103 continue;
3104
3105 case 'p':
3106 assert (ep != NULL);
3107 /*
3108 * This allows macro() to pass an immediate expression for
3109 * creating short branches without creating a symbol.
3110 * Note that the expression still might come from the assembly
3111 * input, in which case the value is not checked for range nor
3112 * is a relocation entry generated (yuck).
3113 */
3114 if (ep->X_op == O_constant)
3115 {
3116 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
3117 ep = NULL;
3118 }
3119 else
cb56d3d3 3120 if (mips_pic == EMBEDDED_PIC)
f6688943 3121 *r = BFD_RELOC_16_PCREL_S2;
cb56d3d3 3122 else
f6688943 3123 *r = BFD_RELOC_16_PCREL;
252b5132
RH
3124 continue;
3125
3126 case 'a':
3127 assert (ep != NULL);
f6688943 3128 *r = BFD_RELOC_MIPS_JMP;
252b5132
RH
3129 continue;
3130
3131 case 'C':
3132 insn.insn_opcode |= va_arg (args, unsigned long);
3133 continue;
3134
3135 default:
3136 internalError ();
3137 }
3138 break;
3139 }
3140 va_end (args);
f6688943 3141 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 3142
b34976b6 3143 append_insn (place, &insn, ep, r, FALSE);
252b5132
RH
3144}
3145
3146static void
3147mips16_macro_build (place, counter, ep, name, fmt, args)
3148 char *place;
43841e91 3149 int *counter ATTRIBUTE_UNUSED;
252b5132
RH
3150 expressionS *ep;
3151 const char *name;
3152 const char *fmt;
3153 va_list args;
3154{
3155 struct mips_cl_insn insn;
f6688943
TS
3156 bfd_reloc_code_real_type r[3]
3157 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 3158
252b5132
RH
3159 insn.insn_mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
3160 assert (insn.insn_mo);
3161 assert (strcmp (name, insn.insn_mo->name) == 0);
3162
3163 while (strcmp (fmt, insn.insn_mo->args) != 0
3164 || insn.insn_mo->pinfo == INSN_MACRO)
3165 {
3166 ++insn.insn_mo;
3167 assert (insn.insn_mo->name);
3168 assert (strcmp (name, insn.insn_mo->name) == 0);
3169 }
3170
3171 insn.insn_opcode = insn.insn_mo->match;
b34976b6 3172 insn.use_extend = FALSE;
252b5132
RH
3173
3174 for (;;)
3175 {
3176 int c;
3177
3178 c = *fmt++;
3179 switch (c)
3180 {
3181 case '\0':
3182 break;
3183
3184 case ',':
3185 case '(':
3186 case ')':
3187 continue;
3188
3189 case 'y':
3190 case 'w':
3191 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RY;
3192 continue;
3193
3194 case 'x':
3195 case 'v':
3196 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RX;
3197 continue;
3198
3199 case 'z':
3200 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RZ;
3201 continue;
3202
3203 case 'Z':
3204 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_MOVE32Z;
3205 continue;
3206
3207 case '0':
3208 case 'S':
3209 case 'P':
3210 case 'R':
3211 continue;
3212
3213 case 'X':
3214 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_REGR32;
3215 continue;
3216
3217 case 'Y':
3218 {
3219 int regno;
3220
3221 regno = va_arg (args, int);
3222 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
3223 insn.insn_opcode |= regno << MIPS16OP_SH_REG32R;
3224 }
3225 continue;
3226
3227 case '<':
3228 case '>':
3229 case '4':
3230 case '5':
3231 case 'H':
3232 case 'W':
3233 case 'D':
3234 case 'j':
3235 case '8':
3236 case 'V':
3237 case 'C':
3238 case 'U':
3239 case 'k':
3240 case 'K':
3241 case 'p':
3242 case 'q':
3243 {
3244 assert (ep != NULL);
3245
3246 if (ep->X_op != O_constant)
874e8986 3247 *r = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
3248 else
3249 {
b34976b6
AM
3250 mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE,
3251 FALSE, &insn.insn_opcode, &insn.use_extend,
c4e7957c 3252 &insn.extend);
252b5132 3253 ep = NULL;
f6688943 3254 *r = BFD_RELOC_UNUSED;
252b5132
RH
3255 }
3256 }
3257 continue;
3258
3259 case '6':
3260 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_IMM6;
3261 continue;
3262 }
3263
3264 break;
3265 }
3266
f6688943 3267 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132 3268
b34976b6 3269 append_insn (place, &insn, ep, r, FALSE);
252b5132
RH
3270}
3271
438c16b8
TS
3272/*
3273 * Generate a "jalr" instruction with a relocation hint to the called
3274 * function. This occurs in NewABI PIC code.
3275 */
3276static void
3277macro_build_jalr (icnt, ep)
3278 int icnt;
3279 expressionS *ep;
3280{
f21f8242 3281 char *f;
b34976b6 3282
438c16b8 3283 if (HAVE_NEWABI)
f21f8242
AO
3284 {
3285 frag_grow (4);
3286 f = frag_more (0);
3287 }
438c16b8
TS
3288 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr", "d,s",
3289 RA, PIC_CALL_REG);
3290 if (HAVE_NEWABI)
f21f8242 3291 fix_new_exp (frag_now, f - frag_now->fr_literal,
b34976b6 3292 0, ep, FALSE, BFD_RELOC_MIPS_JALR);
438c16b8
TS
3293}
3294
252b5132
RH
3295/*
3296 * Generate a "lui" instruction.
3297 */
3298static void
3299macro_build_lui (place, counter, ep, regnum)
3300 char *place;
3301 int *counter;
3302 expressionS *ep;
3303 int regnum;
3304{
3305 expressionS high_expr;
3306 struct mips_cl_insn insn;
f6688943
TS
3307 bfd_reloc_code_real_type r[3]
3308 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
5a38dc70
AM
3309 const char *name = "lui";
3310 const char *fmt = "t,u";
252b5132
RH
3311
3312 assert (! mips_opts.mips16);
3313
3314 if (place == NULL)
3315 high_expr = *ep;
3316 else
3317 {
3318 high_expr.X_op = O_constant;
3319 high_expr.X_add_number = ep->X_add_number;
3320 }
3321
3322 if (high_expr.X_op == O_constant)
3323 {
3324 /* we can compute the instruction now without a relocation entry */
e7d556df
TS
3325 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
3326 >> 16) & 0xffff;
f6688943 3327 *r = BFD_RELOC_UNUSED;
252b5132 3328 }
78e1bb40 3329 else
252b5132
RH
3330 {
3331 assert (ep->X_op == O_symbol);
3332 /* _gp_disp is a special case, used from s_cpload. */
3333 assert (mips_pic == NO_PIC
78e1bb40
AO
3334 || (! HAVE_NEWABI
3335 && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0));
f6688943 3336 *r = BFD_RELOC_HI16_S;
252b5132
RH
3337 }
3338
3339 /*
3340 * If the macro is about to expand into a second instruction,
3341 * print a warning if needed. We need to pass ip as a parameter
3342 * to generate a better warning message here...
3343 */
3344 if (mips_opts.warn_about_macros && place == NULL && *counter == 1)
3345 as_warn (_("Macro instruction expanded into multiple instructions"));
3346
3347 if (place == NULL)
f9419b05 3348 ++*counter; /* bump instruction counter */
252b5132
RH
3349
3350 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
3351 assert (insn.insn_mo);
3352 assert (strcmp (name, insn.insn_mo->name) == 0);
3353 assert (strcmp (fmt, insn.insn_mo->args) == 0);
3354
3355 insn.insn_opcode = insn.insn_mo->match | (regnum << OP_SH_RT);
f6688943 3356 if (*r == BFD_RELOC_UNUSED)
252b5132
RH
3357 {
3358 insn.insn_opcode |= high_expr.X_add_number;
b34976b6 3359 append_insn (place, &insn, NULL, r, FALSE);
252b5132
RH
3360 }
3361 else
b34976b6 3362 append_insn (place, &insn, &high_expr, r, FALSE);
252b5132
RH
3363}
3364
885add95
CD
3365/* Generate a sequence of instructions to do a load or store from a constant
3366 offset off of a base register (breg) into/from a target register (treg),
3367 using AT if necessary. */
3368static void
3369macro_build_ldst_constoffset (place, counter, ep, op, treg, breg)
3370 char *place;
3371 int *counter;
3372 expressionS *ep;
3373 const char *op;
3374 int treg, breg;
3375{
3376 assert (ep->X_op == O_constant);
3377
3378 /* Right now, this routine can only handle signed 32-bit contants. */
3379 if (! IS_SEXT_32BIT_NUM(ep->X_add_number))
3380 as_warn (_("operand overflow"));
3381
3382 if (IS_SEXT_16BIT_NUM(ep->X_add_number))
3383 {
3384 /* Signed 16-bit offset will fit in the op. Easy! */
3385 macro_build (place, counter, ep, op, "t,o(b)", treg,
3386 (int) BFD_RELOC_LO16, breg);
3387 }
3388 else
3389 {
3390 /* 32-bit offset, need multiple instructions and AT, like:
3391 lui $tempreg,const_hi (BFD_RELOC_HI16_S)
3392 addu $tempreg,$tempreg,$breg
3393 <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16)
3394 to handle the complete offset. */
3395 macro_build_lui (place, counter, ep, AT);
3396 if (place != NULL)
3397 place += 4;
3398 macro_build (place, counter, (expressionS *) NULL,
3399 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
3400 "d,v,t", AT, AT, breg);
3401 if (place != NULL)
3402 place += 4;
3403 macro_build (place, counter, ep, op, "t,o(b)", treg,
3404 (int) BFD_RELOC_LO16, AT);
3405
3406 if (mips_opts.noat)
3407 as_warn (_("Macro used $at after \".set noat\""));
3408 }
3409}
3410
252b5132
RH
3411/* set_at()
3412 * Generates code to set the $at register to true (one)
3413 * if reg is less than the immediate expression.
3414 */
3415static void
3416set_at (counter, reg, unsignedp)
3417 int *counter;
3418 int reg;
3419 int unsignedp;
3420{
3421 if (imm_expr.X_op == O_constant
3422 && imm_expr.X_add_number >= -0x8000
3423 && imm_expr.X_add_number < 0x8000)
3424 macro_build ((char *) NULL, counter, &imm_expr,
3425 unsignedp ? "sltiu" : "slti",
3426 "t,r,j", AT, reg, (int) BFD_RELOC_LO16);
3427 else
3428 {
4d34fb5f 3429 load_register (counter, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9 3430 macro_build ((char *) NULL, counter, (expressionS *) NULL,
252b5132
RH
3431 unsignedp ? "sltu" : "slt",
3432 "d,v,t", AT, reg, AT);
3433 }
3434}
3435
3436/* Warn if an expression is not a constant. */
3437
3438static void
3439check_absolute_expr (ip, ex)
3440 struct mips_cl_insn *ip;
3441 expressionS *ex;
3442{
3443 if (ex->X_op == O_big)
3444 as_bad (_("unsupported large constant"));
3445 else if (ex->X_op != O_constant)
3446 as_bad (_("Instruction %s requires absolute expression"), ip->insn_mo->name);
3447}
3448
3449/* Count the leading zeroes by performing a binary chop. This is a
3450 bulky bit of source, but performance is a LOT better for the
3451 majority of values than a simple loop to count the bits:
3452 for (lcnt = 0; (lcnt < 32); lcnt++)
3453 if ((v) & (1 << (31 - lcnt)))
3454 break;
3455 However it is not code size friendly, and the gain will drop a bit
3456 on certain cached systems.
3457*/
3458#define COUNT_TOP_ZEROES(v) \
3459 (((v) & ~0xffff) == 0 \
3460 ? ((v) & ~0xff) == 0 \
3461 ? ((v) & ~0xf) == 0 \
3462 ? ((v) & ~0x3) == 0 \
3463 ? ((v) & ~0x1) == 0 \
3464 ? !(v) \
3465 ? 32 \
3466 : 31 \
3467 : 30 \
3468 : ((v) & ~0x7) == 0 \
3469 ? 29 \
3470 : 28 \
3471 : ((v) & ~0x3f) == 0 \
3472 ? ((v) & ~0x1f) == 0 \
3473 ? 27 \
3474 : 26 \
3475 : ((v) & ~0x7f) == 0 \
3476 ? 25 \
3477 : 24 \
3478 : ((v) & ~0xfff) == 0 \
3479 ? ((v) & ~0x3ff) == 0 \
3480 ? ((v) & ~0x1ff) == 0 \
3481 ? 23 \
3482 : 22 \
3483 : ((v) & ~0x7ff) == 0 \
3484 ? 21 \
3485 : 20 \
3486 : ((v) & ~0x3fff) == 0 \
3487 ? ((v) & ~0x1fff) == 0 \
3488 ? 19 \
3489 : 18 \
3490 : ((v) & ~0x7fff) == 0 \
3491 ? 17 \
3492 : 16 \
3493 : ((v) & ~0xffffff) == 0 \
3494 ? ((v) & ~0xfffff) == 0 \
3495 ? ((v) & ~0x3ffff) == 0 \
3496 ? ((v) & ~0x1ffff) == 0 \
3497 ? 15 \
3498 : 14 \
3499 : ((v) & ~0x7ffff) == 0 \
3500 ? 13 \
3501 : 12 \
3502 : ((v) & ~0x3fffff) == 0 \
3503 ? ((v) & ~0x1fffff) == 0 \
3504 ? 11 \
3505 : 10 \
3506 : ((v) & ~0x7fffff) == 0 \
3507 ? 9 \
3508 : 8 \
3509 : ((v) & ~0xfffffff) == 0 \
3510 ? ((v) & ~0x3ffffff) == 0 \
3511 ? ((v) & ~0x1ffffff) == 0 \
3512 ? 7 \
3513 : 6 \
3514 : ((v) & ~0x7ffffff) == 0 \
3515 ? 5 \
3516 : 4 \
3517 : ((v) & ~0x3fffffff) == 0 \
3518 ? ((v) & ~0x1fffffff) == 0 \
3519 ? 3 \
3520 : 2 \
3521 : ((v) & ~0x7fffffff) == 0 \
3522 ? 1 \
3523 : 0)
3524
3525/* load_register()
3526 * This routine generates the least number of instructions neccessary to load
3527 * an absolute expression value into a register.
3528 */
3529static void
3530load_register (counter, reg, ep, dbl)
3531 int *counter;
3532 int reg;
3533 expressionS *ep;
3534 int dbl;
3535{
3536 int freg;
3537 expressionS hi32, lo32;
3538
3539 if (ep->X_op != O_big)
3540 {
3541 assert (ep->X_op == O_constant);
3542 if (ep->X_add_number < 0x8000
3543 && (ep->X_add_number >= 0
3544 || (ep->X_add_number >= -0x8000
3545 && (! dbl
3546 || ! ep->X_unsigned
3547 || sizeof (ep->X_add_number) > 4))))
3548 {
3549 /* We can handle 16 bit signed values with an addiu to
3550 $zero. No need to ever use daddiu here, since $zero and
3551 the result are always correct in 32 bit mode. */
3552 macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
3553 (int) BFD_RELOC_LO16);
3554 return;
3555 }
3556 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
3557 {
3558 /* We can handle 16 bit unsigned values with an ori to
3559 $zero. */
3560 macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, 0,
3561 (int) BFD_RELOC_LO16);
3562 return;
3563 }
6373ee54 3564 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)
252b5132
RH
3565 && (! dbl
3566 || ! ep->X_unsigned
3567 || sizeof (ep->X_add_number) > 4
3568 || (ep->X_add_number & 0x80000000) == 0))
ca4e0257 3569 || ((HAVE_32BIT_GPRS || ! dbl)
252b5132 3570 && (ep->X_add_number &~ (offsetT) 0xffffffff) == 0)
ca4e0257 3571 || (HAVE_32BIT_GPRS
252b5132
RH
3572 && ! dbl
3573 && ((ep->X_add_number &~ (offsetT) 0xffffffff)
3574 == ~ (offsetT) 0xffffffff)))
3575 {
3576 /* 32 bit values require an lui. */
3577 macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
3578 (int) BFD_RELOC_HI16);
3579 if ((ep->X_add_number & 0xffff) != 0)
3580 macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, reg,
3581 (int) BFD_RELOC_LO16);
3582 return;
3583 }
3584 }
3585
3586 /* The value is larger than 32 bits. */
3587
ca4e0257 3588 if (HAVE_32BIT_GPRS)
252b5132 3589 {
956cd1d6
TS
3590 as_bad (_("Number (0x%lx) larger than 32 bits"),
3591 (unsigned long) ep->X_add_number);
252b5132
RH
3592 macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
3593 (int) BFD_RELOC_LO16);
3594 return;
3595 }
3596
3597 if (ep->X_op != O_big)
3598 {
3599 hi32 = *ep;
3600 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3601 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3602 hi32.X_add_number &= 0xffffffff;
3603 lo32 = *ep;
3604 lo32.X_add_number &= 0xffffffff;
3605 }
3606 else
3607 {
3608 assert (ep->X_add_number > 2);
3609 if (ep->X_add_number == 3)
3610 generic_bignum[3] = 0;
3611 else if (ep->X_add_number > 4)
3612 as_bad (_("Number larger than 64 bits"));
3613 lo32.X_op = O_constant;
3614 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
3615 hi32.X_op = O_constant;
3616 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
3617 }
3618
3619 if (hi32.X_add_number == 0)
3620 freg = 0;
3621 else
3622 {
3623 int shift, bit;
3624 unsigned long hi, lo;
3625
956cd1d6 3626 if (hi32.X_add_number == (offsetT) 0xffffffff)
beae10d5
KH
3627 {
3628 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
3629 {
3630 macro_build ((char *) NULL, counter, &lo32, "addiu", "t,r,j",
252b5132 3631 reg, 0, (int) BFD_RELOC_LO16);
beae10d5
KH
3632 return;
3633 }
3634 if (lo32.X_add_number & 0x80000000)
3635 {
3636 macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
3637 (int) BFD_RELOC_HI16);
252b5132
RH
3638 if (lo32.X_add_number & 0xffff)
3639 macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i",
3640 reg, reg, (int) BFD_RELOC_LO16);
beae10d5
KH
3641 return;
3642 }
3643 }
252b5132
RH
3644
3645 /* Check for 16bit shifted constant. We know that hi32 is
3646 non-zero, so start the mask on the first bit of the hi32
3647 value. */
3648 shift = 17;
3649 do
beae10d5
KH
3650 {
3651 unsigned long himask, lomask;
3652
3653 if (shift < 32)
3654 {
3655 himask = 0xffff >> (32 - shift);
3656 lomask = (0xffff << shift) & 0xffffffff;
3657 }
3658 else
3659 {
3660 himask = 0xffff << (shift - 32);
3661 lomask = 0;
3662 }
3663 if ((hi32.X_add_number & ~(offsetT) himask) == 0
3664 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
3665 {
3666 expressionS tmp;
3667
3668 tmp.X_op = O_constant;
3669 if (shift < 32)
3670 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
3671 | (lo32.X_add_number >> shift));
3672 else
3673 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
3674 macro_build ((char *) NULL, counter, &tmp,
3675 "ori", "t,r,i", reg, 0,
3676 (int) BFD_RELOC_LO16);
2396cfb9 3677 macro_build ((char *) NULL, counter, (expressionS *) NULL,
beae10d5
KH
3678 (shift >= 32) ? "dsll32" : "dsll",
3679 "d,w,<", reg, reg,
3680 (shift >= 32) ? shift - 32 : shift);
3681 return;
3682 }
f9419b05 3683 ++shift;
beae10d5
KH
3684 }
3685 while (shift <= (64 - 16));
252b5132
RH
3686
3687 /* Find the bit number of the lowest one bit, and store the
3688 shifted value in hi/lo. */
3689 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
3690 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
3691 if (lo != 0)
3692 {
3693 bit = 0;
3694 while ((lo & 1) == 0)
3695 {
3696 lo >>= 1;
3697 ++bit;
3698 }
3699 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
3700 hi >>= bit;
3701 }
3702 else
3703 {
3704 bit = 32;
3705 while ((hi & 1) == 0)
3706 {
3707 hi >>= 1;
3708 ++bit;
3709 }
3710 lo = hi;
3711 hi = 0;
3712 }
3713
3714 /* Optimize if the shifted value is a (power of 2) - 1. */
3715 if ((hi == 0 && ((lo + 1) & lo) == 0)
3716 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
beae10d5
KH
3717 {
3718 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
252b5132 3719 if (shift != 0)
beae10d5 3720 {
252b5132
RH
3721 expressionS tmp;
3722
3723 /* This instruction will set the register to be all
3724 ones. */
beae10d5
KH
3725 tmp.X_op = O_constant;
3726 tmp.X_add_number = (offsetT) -1;
3727 macro_build ((char *) NULL, counter, &tmp, "addiu", "t,r,j",
252b5132 3728 reg, 0, (int) BFD_RELOC_LO16);
beae10d5
KH
3729 if (bit != 0)
3730 {
3731 bit += shift;
2396cfb9 3732 macro_build ((char *) NULL, counter, (expressionS *) NULL,
beae10d5
KH
3733 (bit >= 32) ? "dsll32" : "dsll",
3734 "d,w,<", reg, reg,
3735 (bit >= 32) ? bit - 32 : bit);
3736 }
2396cfb9 3737 macro_build ((char *) NULL, counter, (expressionS *) NULL,
252b5132 3738 (shift >= 32) ? "dsrl32" : "dsrl",
beae10d5 3739 "d,w,<", reg, reg,
252b5132 3740 (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
3741 return;
3742 }
3743 }
252b5132
RH
3744
3745 /* Sign extend hi32 before calling load_register, because we can
3746 generally get better code when we load a sign extended value. */
3747 if ((hi32.X_add_number & 0x80000000) != 0)
beae10d5 3748 hi32.X_add_number |= ~(offsetT) 0xffffffff;
252b5132
RH
3749 load_register (counter, reg, &hi32, 0);
3750 freg = reg;
3751 }
3752 if ((lo32.X_add_number & 0xffff0000) == 0)
3753 {
3754 if (freg != 0)
3755 {
2396cfb9
TS
3756 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3757 "dsll32", "d,w,<", reg, freg, 0);
252b5132
RH
3758 freg = reg;
3759 }
3760 }
3761 else
3762 {
3763 expressionS mid16;
3764
956cd1d6 3765 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
beae10d5 3766 {
252b5132
RH
3767 macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
3768 (int) BFD_RELOC_HI16);
956cd1d6
TS
3769 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3770 "dsrl32", "d,w,<", reg, reg, 0);
beae10d5
KH
3771 return;
3772 }
252b5132
RH
3773
3774 if (freg != 0)
3775 {
956cd1d6
TS
3776 macro_build ((char *) NULL, counter, (expressionS *) NULL, "dsll",
3777 "d,w,<", reg, freg, 16);
252b5132
RH
3778 freg = reg;
3779 }
3780 mid16 = lo32;
3781 mid16.X_add_number >>= 16;
3782 macro_build ((char *) NULL, counter, &mid16, "ori", "t,r,i", reg,
3783 freg, (int) BFD_RELOC_LO16);
956cd1d6
TS
3784 macro_build ((char *) NULL, counter, (expressionS *) NULL, "dsll",
3785 "d,w,<", reg, reg, 16);
252b5132
RH
3786 freg = reg;
3787 }
3788 if ((lo32.X_add_number & 0xffff) != 0)
3789 macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i", reg, freg,
3790 (int) BFD_RELOC_LO16);
3791}
3792
3793/* Load an address into a register. */
3794
3795static void
c9914766 3796load_address (counter, reg, ep, used_at)
252b5132
RH
3797 int *counter;
3798 int reg;
3799 expressionS *ep;
d6bc6245 3800 int *used_at;
252b5132 3801{
f9419b05 3802 char *p = NULL;
252b5132
RH
3803
3804 if (ep->X_op != O_constant
3805 && ep->X_op != O_symbol)
3806 {
3807 as_bad (_("expression too complex"));
3808 ep->X_op = O_constant;
3809 }
3810
3811 if (ep->X_op == O_constant)
3812 {
c9914766 3813 load_register (counter, reg, ep, HAVE_64BIT_ADDRESSES);
252b5132
RH
3814 return;
3815 }
3816
3817 if (mips_pic == NO_PIC)
3818 {
3819 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 3820 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
3821 Otherwise we want
3822 lui $reg,<sym> (BFD_RELOC_HI16_S)
3823 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
d6bc6245 3824 If we have an addend, we always use the latter form.
76b3015f 3825
d6bc6245
TS
3826 With 64bit address space and a usable $at we want
3827 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3828 lui $at,<sym> (BFD_RELOC_HI16_S)
3829 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3830 daddiu $at,<sym> (BFD_RELOC_LO16)
3831 dsll32 $reg,0
3a482fd5 3832 daddu $reg,$reg,$at
76b3015f 3833
d6bc6245
TS
3834 If $at is already in use, we use an path which is suboptimal
3835 on superscalar processors.
3836 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3837 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3838 dsll $reg,16
3839 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
3840 dsll $reg,16
3841 daddiu $reg,<sym> (BFD_RELOC_LO16)
3842 */
c9914766 3843 if (HAVE_64BIT_ADDRESSES)
d6bc6245 3844 {
d6bc6245
TS
3845 /* We don't do GP optimization for now because RELAX_ENCODE can't
3846 hold the data for such large chunks. */
3847
460597ba 3848 if (*used_at == 0 && ! mips_opts.noat)
d6bc6245
TS
3849 {
3850 macro_build (p, counter, ep, "lui", "t,u",
3851 reg, (int) BFD_RELOC_MIPS_HIGHEST);
3852 macro_build (p, counter, ep, "lui", "t,u",
3853 AT, (int) BFD_RELOC_HI16_S);
3854 macro_build (p, counter, ep, "daddiu", "t,r,j",
3855 reg, reg, (int) BFD_RELOC_MIPS_HIGHER);
3856 macro_build (p, counter, ep, "daddiu", "t,r,j",
3857 AT, AT, (int) BFD_RELOC_LO16);
2396cfb9
TS
3858 macro_build (p, counter, (expressionS *) NULL, "dsll32",
3859 "d,w,<", reg, reg, 0);
3a482fd5 3860 macro_build (p, counter, (expressionS *) NULL, "daddu",
2396cfb9 3861 "d,v,t", reg, reg, AT);
d6bc6245
TS
3862 *used_at = 1;
3863 }
3864 else
3865 {
3866 macro_build (p, counter, ep, "lui", "t,u",
3867 reg, (int) BFD_RELOC_MIPS_HIGHEST);
3868 macro_build (p, counter, ep, "daddiu", "t,r,j",
3869 reg, reg, (int) BFD_RELOC_MIPS_HIGHER);
2396cfb9
TS
3870 macro_build (p, counter, (expressionS *) NULL, "dsll",
3871 "d,w,<", reg, reg, 16);
d6bc6245
TS
3872 macro_build (p, counter, ep, "daddiu", "t,r,j",
3873 reg, reg, (int) BFD_RELOC_HI16_S);
2396cfb9
TS
3874 macro_build (p, counter, (expressionS *) NULL, "dsll",
3875 "d,w,<", reg, reg, 16);
d6bc6245
TS
3876 macro_build (p, counter, ep, "daddiu", "t,r,j",
3877 reg, reg, (int) BFD_RELOC_LO16);
3878 }
3879 }
252b5132
RH
3880 else
3881 {
d6bc6245
TS
3882 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
3883 && ! nopic_need_relax (ep->X_add_symbol, 1))
3884 {
3885 frag_grow (20);
3886 macro_build ((char *) NULL, counter, ep,
c9914766
TS
3887 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
3888 reg, mips_gp_register, (int) BFD_RELOC_GPREL16);
d6bc6245
TS
3889 p = frag_var (rs_machine_dependent, 8, 0,
3890 RELAX_ENCODE (4, 8, 0, 4, 0,
3891 mips_opts.warn_about_macros),
956cd1d6 3892 ep->X_add_symbol, 0, NULL);
d6bc6245
TS
3893 }
3894 macro_build_lui (p, counter, ep, reg);
3895 if (p != NULL)
3896 p += 4;
c9914766
TS
3897 macro_build (p, counter, ep,
3898 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
d6bc6245
TS
3899 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3900 }
252b5132
RH
3901 }
3902 else if (mips_pic == SVR4_PIC && ! mips_big_got)
3903 {
3904 expressionS ex;
3905
3906 /* If this is a reference to an external symbol, we want
3907 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3908 Otherwise we want
3909 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3910 nop
3911 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
ed6fb7bd
SC
3912 If we have NewABI, we want
3913 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
252b5132
RH
3914 If there is a constant, it must be added in after. */
3915 ex.X_add_number = ep->X_add_number;
3916 ep->X_add_number = 0;
3917 frag_grow (20);
ed6fb7bd
SC
3918 if (HAVE_NEWABI)
3919 {
3920 macro_build ((char *) NULL, counter, ep,
3921 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
3922 (int) BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
3923 }
3924 else
3925 {
3926 macro_build ((char *) NULL, counter, ep,
3927 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)",
3928 reg, (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
3929 macro_build ((char *) NULL, counter, (expressionS *) NULL, "nop", "");
3930 p = frag_var (rs_machine_dependent, 4, 0,
3931 RELAX_ENCODE (0, 4, -8, 0, 0, mips_opts.warn_about_macros),
3932 ep->X_add_symbol, (offsetT) 0, (char *) NULL);
3933 macro_build (p, counter, ep,
3934 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3935 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3936 }
3937
252b5132
RH
3938 if (ex.X_add_number != 0)
3939 {
3940 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3941 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3942 ex.X_op = O_constant;
3943 macro_build ((char *) NULL, counter, &ex,
ca4e0257 3944 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
3945 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3946 }
3947 }
3948 else if (mips_pic == SVR4_PIC)
3949 {
3950 expressionS ex;
3951 int off;
3952
3953 /* This is the large GOT case. If this is a reference to an
3954 external symbol, we want
3955 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
3956 addu $reg,$reg,$gp
3957 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
3958 Otherwise, for a reference to a local symbol, we want
3959 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3960 nop
3961 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
438c16b8
TS
3962 If we have NewABI, we want
3963 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
3964 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
252b5132
RH
3965 If there is a constant, it must be added in after. */
3966 ex.X_add_number = ep->X_add_number;
3967 ep->X_add_number = 0;
438c16b8
TS
3968 if (HAVE_NEWABI)
3969 {
3970 macro_build ((char *) NULL, counter, ep,
3971 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
3972 (int) BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
3973 macro_build (p, counter, ep,
3974 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
3975 reg, reg, (int) BFD_RELOC_MIPS_GOT_OFST);
3976 }
252b5132 3977 else
438c16b8
TS
3978 {
3979 if (reg_needs_delay (mips_gp_register))
3980 off = 4;
3981 else
3982 off = 0;
3983 frag_grow (32);
3984 macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
3985 (int) BFD_RELOC_MIPS_GOT_HI16);
3986 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3987 HAVE_32BIT_ADDRESSES ? "addu" : "daddu", "d,v,t", reg,
3988 reg, mips_gp_register);
3989 macro_build ((char *) NULL, counter, ep,
3990 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
3991 "t,o(b)", reg, (int) BFD_RELOC_MIPS_GOT_LO16, reg);
3992 p = frag_var (rs_machine_dependent, 12 + off, 0,
3993 RELAX_ENCODE (12, 12 + off, off, 8 + off, 0,
3994 mips_opts.warn_about_macros),
3995 ep->X_add_symbol, 0, NULL);
3996 if (off > 0)
3997 {
3998 /* We need a nop before loading from $gp. This special
3999 check is required because the lui which starts the main
4000 instruction stream does not refer to $gp, and so will not
4001 insert the nop which may be required. */
4002 macro_build (p, counter, (expressionS *) NULL, "nop", "");
4003 p += 4;
4004 }
4005 macro_build (p, counter, ep,
4006 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
4007 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
4008 p += 4;
252b5132
RH
4009 macro_build (p, counter, (expressionS *) NULL, "nop", "");
4010 p += 4;
438c16b8
TS
4011 macro_build (p, counter, ep,
4012 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
4013 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
252b5132 4014 }
438c16b8 4015
252b5132
RH
4016 if (ex.X_add_number != 0)
4017 {
4018 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
4019 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
4020 ex.X_op = O_constant;
f7ea7ef2
TS
4021 macro_build ((char *) NULL, counter, &ex,
4022 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
4023 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
4024 }
4025 }
4026 else if (mips_pic == EMBEDDED_PIC)
4027 {
4028 /* We always do
cdf6fd85 4029 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
c9914766
TS
4030 */
4031 macro_build ((char *) NULL, counter, ep,
4032 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
4033 "t,r,j", reg, mips_gp_register, (int) BFD_RELOC_GPREL16);
252b5132
RH
4034 }
4035 else
4036 abort ();
4037}
4038
ea1fb5dc
RS
4039/* Move the contents of register SOURCE into register DEST. */
4040
4041static void
4042move_register (counter, dest, source)
4043 int *counter;
4044 int dest;
4045 int source;
4046{
4047 macro_build ((char *) NULL, counter, (expressionS *) NULL,
4048 HAVE_32BIT_GPRS ? "addu" : "daddu",
4049 "d,v,t", dest, source, 0);
4050}
4051
252b5132
RH
4052/*
4053 * Build macros
4054 * This routine implements the seemingly endless macro or synthesized
4055 * instructions and addressing modes in the mips assembly language. Many
4056 * of these macros are simple and are similar to each other. These could
4057 * probably be handled by some kind of table or grammer aproach instead of
4058 * this verbose method. Others are not simple macros but are more like
4059 * optimizing code generation.
4060 * One interesting optimization is when several store macros appear
4061 * consecutivly that would load AT with the upper half of the same address.
4062 * The ensuing load upper instructions are ommited. This implies some kind
4063 * of global optimization. We currently only optimize within a single macro.
4064 * For many of the load and store macros if the address is specified as a
4065 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
4066 * first load register 'at' with zero and use it as the base register. The
4067 * mips assembler simply uses register $zero. Just one tiny optimization
4068 * we're missing.
4069 */
4070static void
4071macro (ip)
4072 struct mips_cl_insn *ip;
4073{
4074 register int treg, sreg, dreg, breg;
4075 int tempreg;
4076 int mask;
4077 int icnt = 0;
43841e91 4078 int used_at = 0;
252b5132
RH
4079 expressionS expr1;
4080 const char *s;
4081 const char *s2;
4082 const char *fmt;
4083 int likely = 0;
4084 int dbl = 0;
4085 int coproc = 0;
4086 int lr = 0;
4087 int imm = 0;
4088 offsetT maxnum;
4089 int off;
4090 bfd_reloc_code_real_type r;
252b5132
RH
4091 int hold_mips_optimize;
4092
4093 assert (! mips_opts.mips16);
4094
4095 treg = (ip->insn_opcode >> 16) & 0x1f;
4096 dreg = (ip->insn_opcode >> 11) & 0x1f;
4097 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
4098 mask = ip->insn_mo->mask;
4099
4100 expr1.X_op = O_constant;
4101 expr1.X_op_symbol = NULL;
4102 expr1.X_add_symbol = NULL;
4103 expr1.X_add_number = 1;
4104
4105 switch (mask)
4106 {
4107 case M_DABS:
4108 dbl = 1;
4109 case M_ABS:
4110 /* bgez $a0,.+12
4111 move v0,$a0
4112 sub v0,$zero,$a0
4113 */
4114
b34976b6 4115 mips_emit_delays (TRUE);
252b5132
RH
4116 ++mips_opts.noreorder;
4117 mips_any_noreorder = 1;
4118
4119 expr1.X_add_number = 8;
4120 macro_build ((char *) NULL, &icnt, &expr1, "bgez", "s,p", sreg);
4121 if (dreg == sreg)
2396cfb9
TS
4122 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
4123 0);
252b5132 4124 else
ea1fb5dc 4125 move_register (&icnt, dreg, sreg);
2396cfb9 4126 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 4127 dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
252b5132
RH
4128
4129 --mips_opts.noreorder;
4130 return;
4131
4132 case M_ADD_I:
4133 s = "addi";
4134 s2 = "add";
4135 goto do_addi;
4136 case M_ADDU_I:
4137 s = "addiu";
4138 s2 = "addu";
4139 goto do_addi;
4140 case M_DADD_I:
4141 dbl = 1;
4142 s = "daddi";
4143 s2 = "dadd";
4144 goto do_addi;
4145 case M_DADDU_I:
4146 dbl = 1;
4147 s = "daddiu";
4148 s2 = "daddu";
4149 do_addi:
4150 if (imm_expr.X_op == O_constant
4151 && imm_expr.X_add_number >= -0x8000
4152 && imm_expr.X_add_number < 0x8000)
4153 {
4154 macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,j", treg, sreg,
4155 (int) BFD_RELOC_LO16);
4156 return;
4157 }
4158 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9
TS
4159 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d,v,t",
4160 treg, sreg, AT);
252b5132
RH
4161 break;
4162
4163 case M_AND_I:
4164 s = "andi";
4165 s2 = "and";
4166 goto do_bit;
4167 case M_OR_I:
4168 s = "ori";
4169 s2 = "or";
4170 goto do_bit;
4171 case M_NOR_I:
4172 s = "";
4173 s2 = "nor";
4174 goto do_bit;
4175 case M_XOR_I:
4176 s = "xori";
4177 s2 = "xor";
4178 do_bit:
4179 if (imm_expr.X_op == O_constant
4180 && imm_expr.X_add_number >= 0
4181 && imm_expr.X_add_number < 0x10000)
4182 {
4183 if (mask != M_NOR_I)
4184 macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,i", treg,
4185 sreg, (int) BFD_RELOC_LO16);
4186 else
4187 {
4188 macro_build ((char *) NULL, &icnt, &imm_expr, "ori", "t,r,i",
4189 treg, sreg, (int) BFD_RELOC_LO16);
2396cfb9
TS
4190 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nor",
4191 "d,v,t", treg, treg, 0);
252b5132
RH
4192 }
4193 return;
4194 }
4195
d6bc6245 4196 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
4197 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d,v,t",
4198 treg, sreg, AT);
252b5132
RH
4199 break;
4200
4201 case M_BEQ_I:
4202 s = "beq";
4203 goto beq_i;
4204 case M_BEQL_I:
4205 s = "beql";
4206 likely = 1;
4207 goto beq_i;
4208 case M_BNE_I:
4209 s = "bne";
4210 goto beq_i;
4211 case M_BNEL_I:
4212 s = "bnel";
4213 likely = 1;
4214 beq_i:
4215 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4216 {
4217 macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg,
4218 0);
4219 return;
4220 }
4d34fb5f 4221 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
252b5132
RH
4222 macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg, AT);
4223 break;
4224
4225 case M_BGEL:
4226 likely = 1;
4227 case M_BGE:
4228 if (treg == 0)
4229 {
4230 macro_build ((char *) NULL, &icnt, &offset_expr,
2396cfb9 4231 likely ? "bgezl" : "bgez", "s,p", sreg);
252b5132
RH
4232 return;
4233 }
4234 if (sreg == 0)
4235 {
4236 macro_build ((char *) NULL, &icnt, &offset_expr,
2396cfb9 4237 likely ? "blezl" : "blez", "s,p", treg);
252b5132
RH
4238 return;
4239 }
2396cfb9
TS
4240 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4241 AT, sreg, treg);
252b5132 4242 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4243 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4244 break;
4245
4246 case M_BGTL_I:
4247 likely = 1;
4248 case M_BGT_I:
4249 /* check for > max integer */
4250 maxnum = 0x7fffffff;
ca4e0257 4251 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
4252 {
4253 maxnum <<= 16;
4254 maxnum |= 0xffff;
4255 maxnum <<= 16;
4256 maxnum |= 0xffff;
4257 }
4258 if (imm_expr.X_op == O_constant
4259 && imm_expr.X_add_number >= maxnum
ca4e0257 4260 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
4261 {
4262 do_false:
4263 /* result is always false */
4264 if (! likely)
4265 {
39c0a331
L
4266 if (warn_nops)
4267 as_warn (_("Branch %s is always false (nop)"),
4268 ip->insn_mo->name);
2396cfb9
TS
4269 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop",
4270 "", 0);
252b5132
RH
4271 }
4272 else
4273 {
39c0a331
L
4274 if (warn_nops)
4275 as_warn (_("Branch likely %s is always false"),
4276 ip->insn_mo->name);
252b5132
RH
4277 macro_build ((char *) NULL, &icnt, &offset_expr, "bnel",
4278 "s,t,p", 0, 0);
4279 }
4280 return;
4281 }
4282 if (imm_expr.X_op != O_constant)
4283 as_bad (_("Unsupported large constant"));
f9419b05 4284 ++imm_expr.X_add_number;
252b5132
RH
4285 /* FALLTHROUGH */
4286 case M_BGE_I:
4287 case M_BGEL_I:
4288 if (mask == M_BGEL_I)
4289 likely = 1;
4290 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4291 {
4292 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4293 likely ? "bgezl" : "bgez", "s,p", sreg);
252b5132
RH
4294 return;
4295 }
4296 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4297 {
4298 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4299 likely ? "bgtzl" : "bgtz", "s,p", sreg);
252b5132
RH
4300 return;
4301 }
4302 maxnum = 0x7fffffff;
ca4e0257 4303 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
4304 {
4305 maxnum <<= 16;
4306 maxnum |= 0xffff;
4307 maxnum <<= 16;
4308 maxnum |= 0xffff;
4309 }
4310 maxnum = - maxnum - 1;
4311 if (imm_expr.X_op == O_constant
4312 && imm_expr.X_add_number <= maxnum
ca4e0257 4313 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
4314 {
4315 do_true:
4316 /* result is always true */
4317 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
4318 macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
4319 return;
4320 }
4321 set_at (&icnt, sreg, 0);
4322 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4323 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4324 break;
4325
4326 case M_BGEUL:
4327 likely = 1;
4328 case M_BGEU:
4329 if (treg == 0)
4330 goto do_true;
4331 if (sreg == 0)
4332 {
4333 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4334 likely ? "beql" : "beq", "s,t,p", 0, treg);
252b5132
RH
4335 return;
4336 }
2396cfb9
TS
4337 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4338 "d,v,t", AT, sreg, treg);
252b5132 4339 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4340 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4341 break;
4342
4343 case M_BGTUL_I:
4344 likely = 1;
4345 case M_BGTU_I:
4346 if (sreg == 0
ca4e0257 4347 || (HAVE_32BIT_GPRS
252b5132 4348 && imm_expr.X_op == O_constant
956cd1d6 4349 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
4350 goto do_false;
4351 if (imm_expr.X_op != O_constant)
4352 as_bad (_("Unsupported large constant"));
f9419b05 4353 ++imm_expr.X_add_number;
252b5132
RH
4354 /* FALLTHROUGH */
4355 case M_BGEU_I:
4356 case M_BGEUL_I:
4357 if (mask == M_BGEUL_I)
4358 likely = 1;
4359 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4360 goto do_true;
4361 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4362 {
4363 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4364 likely ? "bnel" : "bne", "s,t,p", sreg, 0);
252b5132
RH
4365 return;
4366 }
4367 set_at (&icnt, sreg, 1);
4368 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4369 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4370 break;
4371
4372 case M_BGTL:
4373 likely = 1;
4374 case M_BGT:
4375 if (treg == 0)
4376 {
4377 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4378 likely ? "bgtzl" : "bgtz", "s,p", sreg);
252b5132
RH
4379 return;
4380 }
4381 if (sreg == 0)
4382 {
4383 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4384 likely ? "bltzl" : "bltz", "s,p", treg);
252b5132
RH
4385 return;
4386 }
2396cfb9
TS
4387 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4388 AT, treg, sreg);
252b5132 4389 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4390 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 {
4398 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4399 likely ? "bnel" : "bne", "s,t,p", sreg, 0);
252b5132
RH
4400 return;
4401 }
4402 if (sreg == 0)
4403 goto do_false;
2396cfb9
TS
4404 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4405 "d,v,t", AT, treg, sreg);
252b5132 4406 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4407 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4408 break;
4409
4410 case M_BLEL:
4411 likely = 1;
4412 case M_BLE:
4413 if (treg == 0)
4414 {
4415 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4416 likely ? "blezl" : "blez", "s,p", sreg);
252b5132
RH
4417 return;
4418 }
4419 if (sreg == 0)
4420 {
4421 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4422 likely ? "bgezl" : "bgez", "s,p", treg);
252b5132
RH
4423 return;
4424 }
2396cfb9
TS
4425 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4426 AT, treg, sreg);
252b5132 4427 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4428 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4429 break;
4430
4431 case M_BLEL_I:
4432 likely = 1;
4433 case M_BLE_I:
4434 maxnum = 0x7fffffff;
ca4e0257 4435 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
4436 {
4437 maxnum <<= 16;
4438 maxnum |= 0xffff;
4439 maxnum <<= 16;
4440 maxnum |= 0xffff;
4441 }
4442 if (imm_expr.X_op == O_constant
4443 && imm_expr.X_add_number >= maxnum
ca4e0257 4444 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
4445 goto do_true;
4446 if (imm_expr.X_op != O_constant)
4447 as_bad (_("Unsupported large constant"));
f9419b05 4448 ++imm_expr.X_add_number;
252b5132
RH
4449 /* FALLTHROUGH */
4450 case M_BLT_I:
4451 case M_BLTL_I:
4452 if (mask == M_BLTL_I)
4453 likely = 1;
4454 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4455 {
4456 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4457 likely ? "bltzl" : "bltz", "s,p", sreg);
252b5132
RH
4458 return;
4459 }
4460 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4461 {
4462 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4463 likely ? "blezl" : "blez", "s,p", sreg);
252b5132
RH
4464 return;
4465 }
4466 set_at (&icnt, sreg, 0);
4467 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4468 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4469 break;
4470
4471 case M_BLEUL:
4472 likely = 1;
4473 case M_BLEU:
4474 if (treg == 0)
4475 {
4476 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4477 likely ? "beql" : "beq", "s,t,p", sreg, 0);
252b5132
RH
4478 return;
4479 }
4480 if (sreg == 0)
4481 goto do_true;
2396cfb9
TS
4482 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4483 "d,v,t", AT, treg, sreg);
252b5132 4484 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4485 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4486 break;
4487
4488 case M_BLEUL_I:
4489 likely = 1;
4490 case M_BLEU_I:
4491 if (sreg == 0
ca4e0257 4492 || (HAVE_32BIT_GPRS
252b5132 4493 && imm_expr.X_op == O_constant
956cd1d6 4494 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
4495 goto do_true;
4496 if (imm_expr.X_op != O_constant)
4497 as_bad (_("Unsupported large constant"));
f9419b05 4498 ++imm_expr.X_add_number;
252b5132
RH
4499 /* FALLTHROUGH */
4500 case M_BLTU_I:
4501 case M_BLTUL_I:
4502 if (mask == M_BLTUL_I)
4503 likely = 1;
4504 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4505 goto do_false;
4506 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4507 {
4508 macro_build ((char *) NULL, &icnt, &offset_expr,
4509 likely ? "beql" : "beq",
4510 "s,t,p", sreg, 0);
4511 return;
4512 }
4513 set_at (&icnt, sreg, 1);
4514 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4515 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4516 break;
4517
4518 case M_BLTL:
4519 likely = 1;
4520 case M_BLT:
4521 if (treg == 0)
4522 {
4523 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4524 likely ? "bltzl" : "bltz", "s,p", sreg);
252b5132
RH
4525 return;
4526 }
4527 if (sreg == 0)
4528 {
4529 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4530 likely ? "bgtzl" : "bgtz", "s,p", treg);
252b5132
RH
4531 return;
4532 }
2396cfb9
TS
4533 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4534 AT, sreg, treg);
252b5132 4535 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4536 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4537 break;
4538
4539 case M_BLTUL:
4540 likely = 1;
4541 case M_BLTU:
4542 if (treg == 0)
4543 goto do_false;
4544 if (sreg == 0)
4545 {
4546 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4547 likely ? "bnel" : "bne", "s,t,p", 0, treg);
252b5132
RH
4548 return;
4549 }
2396cfb9
TS
4550 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4551 "d,v,t", AT, sreg,
252b5132
RH
4552 treg);
4553 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4554 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4555 break;
4556
4557 case M_DDIV_3:
4558 dbl = 1;
4559 case M_DIV_3:
4560 s = "mflo";
4561 goto do_div3;
4562 case M_DREM_3:
4563 dbl = 1;
4564 case M_REM_3:
4565 s = "mfhi";
4566 do_div3:
4567 if (treg == 0)
4568 {
4569 as_warn (_("Divide by zero."));
4570 if (mips_trap)
2396cfb9 4571 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4572 "s,t,q", 0, 0, 7);
252b5132 4573 else
2396cfb9
TS
4574 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4575 "c", 7);
252b5132
RH
4576 return;
4577 }
4578
b34976b6 4579 mips_emit_delays (TRUE);
252b5132
RH
4580 ++mips_opts.noreorder;
4581 mips_any_noreorder = 1;
4582 if (mips_trap)
4583 {
2396cfb9 4584 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4585 "s,t,q", treg, 0, 7);
2396cfb9 4586 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 4587 dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
252b5132
RH
4588 }
4589 else
4590 {
4591 expr1.X_add_number = 8;
4592 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
2396cfb9 4593 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 4594 dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
2396cfb9
TS
4595 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4596 "c", 7);
252b5132
RH
4597 }
4598 expr1.X_add_number = -1;
4599 macro_build ((char *) NULL, &icnt, &expr1,
4600 dbl ? "daddiu" : "addiu",
4601 "t,r,j", AT, 0, (int) BFD_RELOC_LO16);
4602 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
4603 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, AT);
4604 if (dbl)
4605 {
4606 expr1.X_add_number = 1;
4607 macro_build ((char *) NULL, &icnt, &expr1, "daddiu", "t,r,j", AT, 0,
4608 (int) BFD_RELOC_LO16);
2396cfb9
TS
4609 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsll32",
4610 "d,w,<", AT, AT, 31);
252b5132
RH
4611 }
4612 else
4613 {
4614 expr1.X_add_number = 0x80000000;
4615 macro_build ((char *) NULL, &icnt, &expr1, "lui", "t,u", AT,
4616 (int) BFD_RELOC_HI16);
4617 }
4618 if (mips_trap)
4619 {
2396cfb9 4620 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4621 "s,t,q", sreg, AT, 6);
252b5132
RH
4622 /* We want to close the noreorder block as soon as possible, so
4623 that later insns are available for delay slot filling. */
4624 --mips_opts.noreorder;
4625 }
4626 else
4627 {
4628 expr1.X_add_number = 8;
4629 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", sreg, AT);
2396cfb9
TS
4630 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
4631 0);
252b5132
RH
4632
4633 /* We want to close the noreorder block as soon as possible, so
4634 that later insns are available for delay slot filling. */
4635 --mips_opts.noreorder;
4636
2396cfb9
TS
4637 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4638 "c", 6);
252b5132 4639 }
2396cfb9 4640 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d", dreg);
252b5132
RH
4641 break;
4642
4643 case M_DIV_3I:
4644 s = "div";
4645 s2 = "mflo";
4646 goto do_divi;
4647 case M_DIVU_3I:
4648 s = "divu";
4649 s2 = "mflo";
4650 goto do_divi;
4651 case M_REM_3I:
4652 s = "div";
4653 s2 = "mfhi";
4654 goto do_divi;
4655 case M_REMU_3I:
4656 s = "divu";
4657 s2 = "mfhi";
4658 goto do_divi;
4659 case M_DDIV_3I:
4660 dbl = 1;
4661 s = "ddiv";
4662 s2 = "mflo";
4663 goto do_divi;
4664 case M_DDIVU_3I:
4665 dbl = 1;
4666 s = "ddivu";
4667 s2 = "mflo";
4668 goto do_divi;
4669 case M_DREM_3I:
4670 dbl = 1;
4671 s = "ddiv";
4672 s2 = "mfhi";
4673 goto do_divi;
4674 case M_DREMU_3I:
4675 dbl = 1;
4676 s = "ddivu";
4677 s2 = "mfhi";
4678 do_divi:
4679 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4680 {
4681 as_warn (_("Divide by zero."));
4682 if (mips_trap)
2396cfb9 4683 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4684 "s,t,q", 0, 0, 7);
252b5132 4685 else
2396cfb9
TS
4686 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4687 "c", 7);
252b5132
RH
4688 return;
4689 }
4690 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4691 {
4692 if (strcmp (s2, "mflo") == 0)
ea1fb5dc 4693 move_register (&icnt, dreg, sreg);
252b5132 4694 else
ea1fb5dc 4695 move_register (&icnt, dreg, 0);
252b5132
RH
4696 return;
4697 }
4698 if (imm_expr.X_op == O_constant
4699 && imm_expr.X_add_number == -1
4700 && s[strlen (s) - 1] != 'u')
4701 {
4702 if (strcmp (s2, "mflo") == 0)
4703 {
2396cfb9
TS
4704 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4705 dbl ? "dneg" : "neg", "d,w", dreg, sreg);
252b5132
RH
4706 }
4707 else
ea1fb5dc 4708 move_register (&icnt, dreg, 0);
252b5132
RH
4709 return;
4710 }
4711
4712 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9
TS
4713 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
4714 sreg, AT);
4715 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d", dreg);
252b5132
RH
4716 break;
4717
4718 case M_DIVU_3:
4719 s = "divu";
4720 s2 = "mflo";
4721 goto do_divu3;
4722 case M_REMU_3:
4723 s = "divu";
4724 s2 = "mfhi";
4725 goto do_divu3;
4726 case M_DDIVU_3:
4727 s = "ddivu";
4728 s2 = "mflo";
4729 goto do_divu3;
4730 case M_DREMU_3:
4731 s = "ddivu";
4732 s2 = "mfhi";
4733 do_divu3:
b34976b6 4734 mips_emit_delays (TRUE);
252b5132
RH
4735 ++mips_opts.noreorder;
4736 mips_any_noreorder = 1;
4737 if (mips_trap)
4738 {
2396cfb9 4739 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4740 "s,t,q", treg, 0, 7);
2396cfb9
TS
4741 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
4742 sreg, treg);
252b5132
RH
4743 /* We want to close the noreorder block as soon as possible, so
4744 that later insns are available for delay slot filling. */
4745 --mips_opts.noreorder;
4746 }
4747 else
4748 {
4749 expr1.X_add_number = 8;
4750 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
2396cfb9
TS
4751 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
4752 sreg, treg);
252b5132
RH
4753
4754 /* We want to close the noreorder block as soon as possible, so
4755 that later insns are available for delay slot filling. */
4756 --mips_opts.noreorder;
2396cfb9
TS
4757 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4758 "c", 7);
252b5132 4759 }
2396cfb9 4760 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d", dreg);
252b5132
RH
4761 return;
4762
4763 case M_DLA_AB:
4764 dbl = 1;
4765 case M_LA_AB:
4766 /* Load the address of a symbol into a register. If breg is not
4767 zero, we then add a base register to it. */
4768
3bec30a8
TS
4769 if (dbl && HAVE_32BIT_GPRS)
4770 as_warn (_("dla used to load 32-bit register"));
4771
c90bbe5b 4772 if (! dbl && HAVE_64BIT_OBJECTS)
3bec30a8
TS
4773 as_warn (_("la used to load 64-bit address"));
4774
0c11417f
MR
4775 if (offset_expr.X_op == O_constant
4776 && offset_expr.X_add_number >= -0x8000
4777 && offset_expr.X_add_number < 0x8000)
4778 {
4779 macro_build ((char *) NULL, &icnt, &offset_expr,
4780 (dbl || HAVE_64BIT_ADDRESSES) ? "daddiu" : "addiu",
4781 "t,r,j", treg, sreg, (int) BFD_RELOC_LO16);
4782 return;
4783 }
4784
afdbd6d0
CD
4785 if (treg == breg)
4786 {
4787 tempreg = AT;
4788 used_at = 1;
4789 }
4790 else
4791 {
4792 tempreg = treg;
4793 used_at = 0;
4794 }
4795
252b5132
RH
4796 /* When generating embedded PIC code, we permit expressions of
4797 the form
afdbd6d0
CD
4798 la $treg,foo-bar
4799 la $treg,foo-bar($breg)
bb2d6cd7 4800 where bar is an address in the current section. These are used
252b5132
RH
4801 when getting the addresses of functions. We don't permit
4802 X_add_number to be non-zero, because if the symbol is
4803 external the relaxing code needs to know that any addend is
4804 purely the offset to X_op_symbol. */
4805 if (mips_pic == EMBEDDED_PIC
4806 && offset_expr.X_op == O_subtract
49309057 4807 && (symbol_constant_p (offset_expr.X_op_symbol)
bb2d6cd7 4808 ? S_GET_SEGMENT (offset_expr.X_op_symbol) == now_seg
49309057
ILT
4809 : (symbol_equated_p (offset_expr.X_op_symbol)
4810 && (S_GET_SEGMENT
4811 (symbol_get_value_expression (offset_expr.X_op_symbol)
4812 ->X_add_symbol)
bb2d6cd7 4813 == now_seg)))
bb2d6cd7
GK
4814 && (offset_expr.X_add_number == 0
4815 || OUTPUT_FLAVOR == bfd_target_elf_flavour))
252b5132 4816 {
afdbd6d0
CD
4817 if (breg == 0)
4818 {
4819 tempreg = treg;
4820 used_at = 0;
4821 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4822 tempreg, (int) BFD_RELOC_PCREL_HI16_S);
4823 }
4824 else
4825 {
4826 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4827 tempreg, (int) BFD_RELOC_PCREL_HI16_S);
4828 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4d34fb5f 4829 (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu",
afdbd6d0
CD
4830 "d,v,t", tempreg, tempreg, breg);
4831 }
252b5132 4832 macro_build ((char *) NULL, &icnt, &offset_expr,
4d34fb5f 4833 (dbl || HAVE_64BIT_ADDRESSES) ? "daddiu" : "addiu",
afdbd6d0
CD
4834 "t,r,j", treg, tempreg, (int) BFD_RELOC_PCREL_LO16);
4835 if (! used_at)
4836 return;
4837 break;
252b5132
RH
4838 }
4839
4840 if (offset_expr.X_op != O_symbol
4841 && offset_expr.X_op != O_constant)
4842 {
4843 as_bad (_("expression too complex"));
4844 offset_expr.X_op = O_constant;
4845 }
4846
252b5132 4847 if (offset_expr.X_op == O_constant)
4d34fb5f
TS
4848 load_register (&icnt, tempreg, &offset_expr,
4849 ((mips_pic == EMBEDDED_PIC || mips_pic == NO_PIC)
4850 ? (dbl || HAVE_64BIT_ADDRESSES)
4851 : HAVE_64BIT_ADDRESSES));
252b5132
RH
4852 else if (mips_pic == NO_PIC)
4853 {
d6bc6245 4854 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 4855 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
4856 Otherwise we want
4857 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4858 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4859 If we have a constant, we need two instructions anyhow,
d6bc6245 4860 so we may as well always use the latter form.
76b3015f 4861
d6bc6245
TS
4862 With 64bit address space and a usable $at we want
4863 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4864 lui $at,<sym> (BFD_RELOC_HI16_S)
4865 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4866 daddiu $at,<sym> (BFD_RELOC_LO16)
4867 dsll32 $tempreg,0
3a482fd5 4868 daddu $tempreg,$tempreg,$at
76b3015f 4869
d6bc6245
TS
4870 If $at is already in use, we use an path which is suboptimal
4871 on superscalar processors.
4872 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4873 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4874 dsll $tempreg,16
4875 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
4876 dsll $tempreg,16
4877 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
4878 */
f9419b05 4879 char *p = NULL;
d6bc6245 4880 if (HAVE_64BIT_ADDRESSES)
252b5132 4881 {
d6bc6245
TS
4882 /* We don't do GP optimization for now because RELAX_ENCODE can't
4883 hold the data for such large chunks. */
4884
460597ba 4885 if (used_at == 0 && ! mips_opts.noat)
98d3f06f
KH
4886 {
4887 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
4888 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
4889 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
4890 AT, (int) BFD_RELOC_HI16_S);
4891 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4892 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
4893 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4894 AT, AT, (int) BFD_RELOC_LO16);
4895 macro_build (p, &icnt, (expressionS *) NULL, "dsll32",
4896 "d,w,<", tempreg, tempreg, 0);
3a482fd5
MR
4897 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
4898 "d,v,t", tempreg, tempreg, AT);
98d3f06f
KH
4899 used_at = 1;
4900 }
4901 else
4902 {
4903 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
4904 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
4905 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4906 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
4907 macro_build (p, &icnt, (expressionS *) NULL, "dsll", "d,w,<",
4908 tempreg, tempreg, 16);
4909 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4910 tempreg, tempreg, (int) BFD_RELOC_HI16_S);
4911 macro_build (p, &icnt, (expressionS *) NULL, "dsll", "d,w,<",
4912 tempreg, tempreg, 16);
4913 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4914 tempreg, tempreg, (int) BFD_RELOC_LO16);
4915 }
4916 }
4917 else
4918 {
4919 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
4920 && ! nopic_need_relax (offset_expr.X_add_symbol, 1))
4921 {
4922 frag_grow (20);
4923 macro_build ((char *) NULL, &icnt, &offset_expr, "addiu",
c9914766
TS
4924 "t,r,j", tempreg, mips_gp_register,
4925 (int) BFD_RELOC_GPREL16);
98d3f06f
KH
4926 p = frag_var (rs_machine_dependent, 8, 0,
4927 RELAX_ENCODE (4, 8, 0, 4, 0,
4928 mips_opts.warn_about_macros),
4929 offset_expr.X_add_symbol, 0, NULL);
4930 }
4931 macro_build_lui (p, &icnt, &offset_expr, tempreg);
4932 if (p != NULL)
4933 p += 4;
4934 macro_build (p, &icnt, &offset_expr, "addiu",
4935 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4936 }
252b5132
RH
4937 }
4938 else if (mips_pic == SVR4_PIC && ! mips_big_got)
4939 {
9117d219
NC
4940 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
4941
252b5132
RH
4942 /* If this is a reference to an external symbol, and there
4943 is no constant, we want
4944 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9117d219
NC
4945 or if tempreg is PIC_CALL_REG
4946 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
252b5132
RH
4947 For a local symbol, we want
4948 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4949 nop
4950 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4951
4952 If we have a small constant, and this is a reference to
4953 an external symbol, we want
4954 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4955 nop
4956 addiu $tempreg,$tempreg,<constant>
4957 For a local symbol, we want the same instruction
4958 sequence, but we output a BFD_RELOC_LO16 reloc on the
4959 addiu instruction.
4960
4961 If we have a large constant, and this is a reference to
4962 an external symbol, we want
4963 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4964 lui $at,<hiconstant>
4965 addiu $at,$at,<loconstant>
4966 addu $tempreg,$tempreg,$at
4967 For a local symbol, we want the same instruction
4968 sequence, but we output a BFD_RELOC_LO16 reloc on the
ed6fb7bd
SC
4969 addiu instruction.
4970
4971 For NewABI, we want for local or external data addresses
4972 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
4973 For a local function symbol, we want
4974 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
4975 nop
4976 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
4977 */
4978
252b5132
RH
4979 expr1.X_add_number = offset_expr.X_add_number;
4980 offset_expr.X_add_number = 0;
4981 frag_grow (32);
9117d219
NC
4982 if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
4983 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
ed6fb7bd
SC
4984 else if (HAVE_NEWABI)
4985 lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
4d34fb5f
TS
4986 macro_build ((char *) NULL, &icnt, &offset_expr,
4987 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766 4988 "t,o(b)", tempreg, lw_reloc_type, mips_gp_register);
252b5132
RH
4989 if (expr1.X_add_number == 0)
4990 {
4991 int off;
f9419b05 4992 char *p;
252b5132
RH
4993
4994 if (breg == 0)
4995 off = 0;
4996 else
4997 {
4998 /* We're going to put in an addu instruction using
4999 tempreg, so we may as well insert the nop right
5000 now. */
5001 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5002 "nop", "");
5003 off = 4;
5004 }
5005 p = frag_var (rs_machine_dependent, 8 - off, 0,
5006 RELAX_ENCODE (0, 8 - off, -4 - off, 4 - off, 0,
5007 (breg == 0
5008 ? mips_opts.warn_about_macros
5009 : 0)),
c4e7957c 5010 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5011 if (breg == 0)
5012 {
5013 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5014 p += 4;
5015 }
5016 macro_build (p, &icnt, &expr1,
ca4e0257 5017 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
5018 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5019 /* FIXME: If breg == 0, and the next instruction uses
5020 $tempreg, then if this variant case is used an extra
5021 nop will be generated. */
5022 }
5023 else if (expr1.X_add_number >= -0x8000
5024 && expr1.X_add_number < 0x8000)
5025 {
5026 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5027 "nop", "");
5028 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 5029 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132 5030 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
c4e7957c
TS
5031 frag_var (rs_machine_dependent, 0, 0,
5032 RELAX_ENCODE (0, 0, -12, -4, 0, 0),
5033 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5034 }
5035 else
5036 {
5037 int off1;
5038
5039 /* If we are going to add in a base register, and the
5040 target register and the base register are the same,
5041 then we are using AT as a temporary register. Since
5042 we want to load the constant into AT, we add our
5043 current AT (from the global offset table) and the
5044 register into the register now, and pretend we were
5045 not using a base register. */
5046 if (breg != treg)
5047 off1 = 0;
5048 else
5049 {
5050 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5051 "nop", "");
5052 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5053 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5054 "d,v,t", treg, AT, breg);
5055 breg = 0;
5056 tempreg = treg;
5057 off1 = -8;
5058 }
5059
5060 /* Set mips_optimize around the lui instruction to avoid
5061 inserting an unnecessary nop after the lw. */
5062 hold_mips_optimize = mips_optimize;
5063 mips_optimize = 2;
c4e7957c 5064 macro_build_lui (NULL, &icnt, &expr1, AT);
252b5132
RH
5065 mips_optimize = hold_mips_optimize;
5066
5067 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 5068 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
5069 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
5070 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5071 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132 5072 "d,v,t", tempreg, tempreg, AT);
c4e7957c
TS
5073 frag_var (rs_machine_dependent, 0, 0,
5074 RELAX_ENCODE (0, 0, -16 + off1, -8, 0, 0),
5075 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5076 used_at = 1;
5077 }
5078 }
5079 else if (mips_pic == SVR4_PIC)
5080 {
5081 int gpdel;
f9419b05 5082 char *p;
9117d219
NC
5083 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
5084 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
ed6fb7bd 5085 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
252b5132
RH
5086
5087 /* This is the large GOT case. If this is a reference to an
5088 external symbol, and there is no constant, we want
5089 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5090 addu $tempreg,$tempreg,$gp
5091 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
9117d219
NC
5092 or if tempreg is PIC_CALL_REG
5093 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5094 addu $tempreg,$tempreg,$gp
5095 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
252b5132
RH
5096 For a local symbol, we want
5097 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5098 nop
5099 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5100
5101 If we have a small constant, and this is a reference to
5102 an external symbol, we want
5103 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5104 addu $tempreg,$tempreg,$gp
5105 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5106 nop
5107 addiu $tempreg,$tempreg,<constant>
5108 For a local symbol, we want
5109 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5110 nop
5111 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
5112
5113 If we have a large constant, and this is a reference to
5114 an external symbol, we want
5115 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5116 addu $tempreg,$tempreg,$gp
5117 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5118 lui $at,<hiconstant>
5119 addiu $at,$at,<loconstant>
5120 addu $tempreg,$tempreg,$at
5121 For a local symbol, we want
5122 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5123 lui $at,<hiconstant>
5124 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
5125 addu $tempreg,$tempreg,$at
438c16b8 5126
ed6fb7bd
SC
5127 For NewABI, we want for local data addresses
5128 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
438c16b8 5129 */
438c16b8 5130
252b5132
RH
5131 expr1.X_add_number = offset_expr.X_add_number;
5132 offset_expr.X_add_number = 0;
5133 frag_grow (52);
f7ea7ef2 5134 if (reg_needs_delay (mips_gp_register))
252b5132
RH
5135 gpdel = 4;
5136 else
5137 gpdel = 0;
9117d219
NC
5138 if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
5139 {
5140 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
5141 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
5142 }
252b5132 5143 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
9117d219 5144 tempreg, lui_reloc_type);
252b5132 5145 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5146 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 5147 "d,v,t", tempreg, tempreg, mips_gp_register);
252b5132 5148 macro_build ((char *) NULL, &icnt, &offset_expr,
4d34fb5f 5149 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
9117d219 5150 "t,o(b)", tempreg, lw_reloc_type, tempreg);
252b5132
RH
5151 if (expr1.X_add_number == 0)
5152 {
5153 int off;
5154
5155 if (breg == 0)
5156 off = 0;
5157 else
5158 {
5159 /* We're going to put in an addu instruction using
5160 tempreg, so we may as well insert the nop right
5161 now. */
5162 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5163 "nop", "");
5164 off = 4;
5165 }
5166
5167 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
5168 RELAX_ENCODE (12 + off, 12 + gpdel, gpdel,
5169 8 + gpdel, 0,
5170 (breg == 0
5171 ? mips_opts.warn_about_macros
5172 : 0)),
c4e7957c 5173 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5174 }
5175 else if (expr1.X_add_number >= -0x8000
5176 && expr1.X_add_number < 0x8000)
5177 {
5178 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5179 "nop", "");
5180 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 5181 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
5182 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5183
5184 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
5185 RELAX_ENCODE (20, 12 + gpdel, gpdel, 8 + gpdel, 0,
5186 (breg == 0
5187 ? mips_opts.warn_about_macros
5188 : 0)),
c4e7957c 5189 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5190 }
5191 else
5192 {
5193 int adj, dreg;
5194
5195 /* If we are going to add in a base register, and the
5196 target register and the base register are the same,
5197 then we are using AT as a temporary register. Since
5198 we want to load the constant into AT, we add our
5199 current AT (from the global offset table) and the
5200 register into the register now, and pretend we were
5201 not using a base register. */
5202 if (breg != treg)
5203 {
5204 adj = 0;
5205 dreg = tempreg;
5206 }
5207 else
5208 {
5209 assert (tempreg == AT);
5210 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5211 "nop", "");
5212 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5213 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5214 "d,v,t", treg, AT, breg);
5215 dreg = treg;
5216 adj = 8;
5217 }
5218
5219 /* Set mips_optimize around the lui instruction to avoid
5220 inserting an unnecessary nop after the lw. */
5221 hold_mips_optimize = mips_optimize;
5222 mips_optimize = 2;
c4e7957c 5223 macro_build_lui (NULL, &icnt, &expr1, AT);
252b5132
RH
5224 mips_optimize = hold_mips_optimize;
5225
5226 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 5227 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
5228 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
5229 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5230 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5231 "d,v,t", dreg, dreg, AT);
5232
5233 p = frag_var (rs_machine_dependent, 16 + gpdel + adj, 0,
5234 RELAX_ENCODE (24 + adj, 16 + gpdel + adj, gpdel,
5235 8 + gpdel, 0,
5236 (breg == 0
5237 ? mips_opts.warn_about_macros
5238 : 0)),
c4e7957c 5239 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5240
5241 used_at = 1;
5242 }
5243
5244 if (gpdel > 0)
5245 {
5246 /* This is needed because this instruction uses $gp, but
5247 the first instruction on the main stream does not. */
5248 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5249 p += 4;
5250 }
ed6fb7bd
SC
5251
5252 if (HAVE_NEWABI)
5253 local_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
252b5132 5254 macro_build (p, &icnt, &offset_expr,
4d34fb5f 5255 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
ed6fb7bd
SC
5256 "t,o(b)", tempreg,
5257 local_reloc_type,
c9914766 5258 mips_gp_register);
252b5132 5259 p += 4;
ed6fb7bd
SC
5260 if (expr1.X_add_number == 0 && HAVE_NEWABI)
5261 {
5262 /* BFD_RELOC_MIPS_GOT_DISP is sufficient for newabi */
5263 }
5264 else
5265 if (expr1.X_add_number >= -0x8000
252b5132
RH
5266 && expr1.X_add_number < 0x8000)
5267 {
5268 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5269 p += 4;
5270 macro_build (p, &icnt, &expr1,
ca4e0257 5271 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
5272 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5273 /* FIXME: If add_number is 0, and there was no base
5274 register, the external symbol case ended with a load,
5275 so if the symbol turns out to not be external, and
5276 the next instruction uses tempreg, an unnecessary nop
5277 will be inserted. */
5278 }
5279 else
5280 {
5281 if (breg == treg)
5282 {
5283 /* We must add in the base register now, as in the
5284 external symbol case. */
5285 assert (tempreg == AT);
5286 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5287 p += 4;
5288 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 5289 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5290 "d,v,t", treg, AT, breg);
5291 p += 4;
5292 tempreg = treg;
5293 /* We set breg to 0 because we have arranged to add
5294 it in in both cases. */
5295 breg = 0;
5296 }
5297
5298 macro_build_lui (p, &icnt, &expr1, AT);
5299 p += 4;
5300 macro_build (p, &icnt, &expr1,
ca4e0257 5301 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
5302 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
5303 p += 4;
5304 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 5305 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5306 "d,v,t", tempreg, tempreg, AT);
5307 p += 4;
5308 }
5309 }
5310 else if (mips_pic == EMBEDDED_PIC)
5311 {
5312 /* We use
cdf6fd85 5313 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
5314 */
5315 macro_build ((char *) NULL, &icnt, &offset_expr,
c9914766
TS
5316 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
5317 tempreg, mips_gp_register, (int) BFD_RELOC_GPREL16);
252b5132
RH
5318 }
5319 else
5320 abort ();
5321
5322 if (breg != 0)
4d34fb5f
TS
5323 {
5324 char *s;
5325
5326 if (mips_pic == EMBEDDED_PIC || mips_pic == NO_PIC)
5327 s = (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu";
5328 else
5329 s = HAVE_64BIT_ADDRESSES ? "daddu" : "addu";
5330
5331 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s,
5332 "d,v,t", treg, tempreg, breg);
5333 }
252b5132
RH
5334
5335 if (! used_at)
5336 return;
5337
5338 break;
5339
5340 case M_J_A:
5341 /* The j instruction may not be used in PIC code, since it
5342 requires an absolute address. We convert it to a b
5343 instruction. */
5344 if (mips_pic == NO_PIC)
5345 macro_build ((char *) NULL, &icnt, &offset_expr, "j", "a");
5346 else
5347 macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
5348 return;
5349
5350 /* The jal instructions must be handled as macros because when
5351 generating PIC code they expand to multi-instruction
5352 sequences. Normally they are simple instructions. */
5353 case M_JAL_1:
5354 dreg = RA;
5355 /* Fall through. */
5356 case M_JAL_2:
5357 if (mips_pic == NO_PIC
5358 || mips_pic == EMBEDDED_PIC)
5359 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
5360 "d,s", dreg, sreg);
5361 else if (mips_pic == SVR4_PIC)
5362 {
5363 if (sreg != PIC_CALL_REG)
5364 as_warn (_("MIPS PIC call to register other than $25"));
bdaaa2e1 5365
252b5132
RH
5366 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
5367 "d,s", dreg, sreg);
6478892d 5368 if (! HAVE_NEWABI)
252b5132 5369 {
6478892d
TS
5370 if (mips_cprestore_offset < 0)
5371 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5372 else
5373 {
7a621144
DJ
5374 if (! mips_frame_reg_valid)
5375 {
5376 as_warn (_("No .frame pseudo-op used in PIC code"));
5377 /* Quiet this warning. */
5378 mips_frame_reg_valid = 1;
5379 }
5380 if (! mips_cprestore_valid)
5381 {
5382 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5383 /* Quiet this warning. */
5384 mips_cprestore_valid = 1;
5385 }
6478892d 5386 expr1.X_add_number = mips_cprestore_offset;
885add95
CD
5387 macro_build_ldst_constoffset ((char *) NULL, &icnt, &expr1,
5388 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5389 mips_gp_register, mips_frame_reg);
6478892d 5390 }
252b5132
RH
5391 }
5392 }
5393 else
5394 abort ();
5395
5396 return;
5397
5398 case M_JAL_A:
5399 if (mips_pic == NO_PIC)
5400 macro_build ((char *) NULL, &icnt, &offset_expr, "jal", "a");
5401 else if (mips_pic == SVR4_PIC)
5402 {
f9419b05
TS
5403 char *p;
5404
252b5132
RH
5405 /* If this is a reference to an external symbol, and we are
5406 using a small GOT, we want
5407 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5408 nop
f9419b05 5409 jalr $ra,$25
252b5132
RH
5410 nop
5411 lw $gp,cprestore($sp)
5412 The cprestore value is set using the .cprestore
5413 pseudo-op. If we are using a big GOT, we want
5414 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5415 addu $25,$25,$gp
5416 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
5417 nop
f9419b05 5418 jalr $ra,$25
252b5132
RH
5419 nop
5420 lw $gp,cprestore($sp)
5421 If the symbol is not external, we want
5422 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5423 nop
5424 addiu $25,$25,<sym> (BFD_RELOC_LO16)
f9419b05 5425 jalr $ra,$25
252b5132 5426 nop
438c16b8
TS
5427 lw $gp,cprestore($sp)
5428 For NewABI, we want
5429 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5430 jalr $ra,$25 (BFD_RELOC_MIPS_JALR)
5431 */
5432 if (HAVE_NEWABI)
252b5132
RH
5433 {
5434 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 5435 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
252b5132 5436 "t,o(b)", PIC_CALL_REG,
438c16b8
TS
5437 (int) BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5438 macro_build_jalr (icnt, &offset_expr);
252b5132
RH
5439 }
5440 else
5441 {
438c16b8
TS
5442 frag_grow (40);
5443 if (! mips_big_got)
5444 {
5445 macro_build ((char *) NULL, &icnt, &offset_expr,
5446 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5447 "t,o(b)", PIC_CALL_REG,
5448 (int) BFD_RELOC_MIPS_CALL16, mips_gp_register);
5449 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5450 "nop", "");
5451 p = frag_var (rs_machine_dependent, 4, 0,
5452 RELAX_ENCODE (0, 4, -8, 0, 0, 0),
5453 offset_expr.X_add_symbol, 0, NULL);
5454 }
252b5132 5455 else
252b5132 5456 {
438c16b8
TS
5457 int gpdel;
5458
5459 if (reg_needs_delay (mips_gp_register))
5460 gpdel = 4;
5461 else
5462 gpdel = 0;
5463 macro_build ((char *) NULL, &icnt, &offset_expr, "lui",
5464 "t,u", PIC_CALL_REG,
5465 (int) BFD_RELOC_MIPS_CALL_HI16);
5466 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5467 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5468 "d,v,t", PIC_CALL_REG, PIC_CALL_REG,
5469 mips_gp_register);
5470 macro_build ((char *) NULL, &icnt, &offset_expr,
5471 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5472 "t,o(b)", PIC_CALL_REG,
5473 (int) BFD_RELOC_MIPS_CALL_LO16, PIC_CALL_REG);
5474 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5475 "nop", "");
5476 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
5477 RELAX_ENCODE (16, 12 + gpdel, gpdel,
5478 8 + gpdel, 0, 0),
5479 offset_expr.X_add_symbol, 0, NULL);
5480 if (gpdel > 0)
5481 {
5482 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5483 p += 4;
5484 }
5485 macro_build (p, &icnt, &offset_expr,
5486 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5487 "t,o(b)", PIC_CALL_REG,
5488 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
5489 p += 4;
252b5132
RH
5490 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5491 p += 4;
5492 }
5493 macro_build (p, &icnt, &offset_expr,
438c16b8
TS
5494 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
5495 "t,r,j", PIC_CALL_REG, PIC_CALL_REG,
5496 (int) BFD_RELOC_LO16);
5497 macro_build_jalr (icnt, &offset_expr);
5498
6478892d
TS
5499 if (mips_cprestore_offset < 0)
5500 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5501 else
5502 {
7a621144
DJ
5503 if (! mips_frame_reg_valid)
5504 {
5505 as_warn (_("No .frame pseudo-op used in PIC code"));
5506 /* Quiet this warning. */
5507 mips_frame_reg_valid = 1;
5508 }
5509 if (! mips_cprestore_valid)
5510 {
5511 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5512 /* Quiet this warning. */
5513 mips_cprestore_valid = 1;
5514 }
6478892d
TS
5515 if (mips_opts.noreorder)
5516 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
98d3f06f 5517 "nop", "");
6478892d 5518 expr1.X_add_number = mips_cprestore_offset;
885add95
CD
5519 macro_build_ldst_constoffset ((char *) NULL, &icnt, &expr1,
5520 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5521 mips_gp_register, mips_frame_reg);
6478892d 5522 }
252b5132
RH
5523 }
5524 }
5525 else if (mips_pic == EMBEDDED_PIC)
5526 {
5527 macro_build ((char *) NULL, &icnt, &offset_expr, "bal", "p");
5528 /* The linker may expand the call to a longer sequence which
5529 uses $at, so we must break rather than return. */
5530 break;
5531 }
5532 else
5533 abort ();
5534
5535 return;
5536
5537 case M_LB_AB:
5538 s = "lb";
5539 goto ld;
5540 case M_LBU_AB:
5541 s = "lbu";
5542 goto ld;
5543 case M_LH_AB:
5544 s = "lh";
5545 goto ld;
5546 case M_LHU_AB:
5547 s = "lhu";
5548 goto ld;
5549 case M_LW_AB:
5550 s = "lw";
5551 goto ld;
5552 case M_LWC0_AB:
5553 s = "lwc0";
bdaaa2e1 5554 /* Itbl support may require additional care here. */
252b5132
RH
5555 coproc = 1;
5556 goto ld;
5557 case M_LWC1_AB:
5558 s = "lwc1";
bdaaa2e1 5559 /* Itbl support may require additional care here. */
252b5132
RH
5560 coproc = 1;
5561 goto ld;
5562 case M_LWC2_AB:
5563 s = "lwc2";
bdaaa2e1 5564 /* Itbl support may require additional care here. */
252b5132
RH
5565 coproc = 1;
5566 goto ld;
5567 case M_LWC3_AB:
5568 s = "lwc3";
bdaaa2e1 5569 /* Itbl support may require additional care here. */
252b5132
RH
5570 coproc = 1;
5571 goto ld;
5572 case M_LWL_AB:
5573 s = "lwl";
5574 lr = 1;
5575 goto ld;
5576 case M_LWR_AB:
5577 s = "lwr";
5578 lr = 1;
5579 goto ld;
5580 case M_LDC1_AB:
ec68c924 5581 if (mips_arch == CPU_R4650)
252b5132
RH
5582 {
5583 as_bad (_("opcode not supported on this processor"));
5584 return;
5585 }
5586 s = "ldc1";
bdaaa2e1 5587 /* Itbl support may require additional care here. */
252b5132
RH
5588 coproc = 1;
5589 goto ld;
5590 case M_LDC2_AB:
5591 s = "ldc2";
bdaaa2e1 5592 /* Itbl support may require additional care here. */
252b5132
RH
5593 coproc = 1;
5594 goto ld;
5595 case M_LDC3_AB:
5596 s = "ldc3";
bdaaa2e1 5597 /* Itbl support may require additional care here. */
252b5132
RH
5598 coproc = 1;
5599 goto ld;
5600 case M_LDL_AB:
5601 s = "ldl";
5602 lr = 1;
5603 goto ld;
5604 case M_LDR_AB:
5605 s = "ldr";
5606 lr = 1;
5607 goto ld;
5608 case M_LL_AB:
5609 s = "ll";
5610 goto ld;
5611 case M_LLD_AB:
5612 s = "lld";
5613 goto ld;
5614 case M_LWU_AB:
5615 s = "lwu";
5616 ld:
5617 if (breg == treg || coproc || lr)
5618 {
5619 tempreg = AT;
5620 used_at = 1;
5621 }
5622 else
5623 {
5624 tempreg = treg;
5625 used_at = 0;
5626 }
5627 goto ld_st;
5628 case M_SB_AB:
5629 s = "sb";
5630 goto st;
5631 case M_SH_AB:
5632 s = "sh";
5633 goto st;
5634 case M_SW_AB:
5635 s = "sw";
5636 goto st;
5637 case M_SWC0_AB:
5638 s = "swc0";
bdaaa2e1 5639 /* Itbl support may require additional care here. */
252b5132
RH
5640 coproc = 1;
5641 goto st;
5642 case M_SWC1_AB:
5643 s = "swc1";
bdaaa2e1 5644 /* Itbl support may require additional care here. */
252b5132
RH
5645 coproc = 1;
5646 goto st;
5647 case M_SWC2_AB:
5648 s = "swc2";
bdaaa2e1 5649 /* Itbl support may require additional care here. */
252b5132
RH
5650 coproc = 1;
5651 goto st;
5652 case M_SWC3_AB:
5653 s = "swc3";
bdaaa2e1 5654 /* Itbl support may require additional care here. */
252b5132
RH
5655 coproc = 1;
5656 goto st;
5657 case M_SWL_AB:
5658 s = "swl";
5659 goto st;
5660 case M_SWR_AB:
5661 s = "swr";
5662 goto st;
5663 case M_SC_AB:
5664 s = "sc";
5665 goto st;
5666 case M_SCD_AB:
5667 s = "scd";
5668 goto st;
5669 case M_SDC1_AB:
ec68c924 5670 if (mips_arch == CPU_R4650)
252b5132
RH
5671 {
5672 as_bad (_("opcode not supported on this processor"));
5673 return;
5674 }
5675 s = "sdc1";
5676 coproc = 1;
bdaaa2e1 5677 /* Itbl support may require additional care here. */
252b5132
RH
5678 goto st;
5679 case M_SDC2_AB:
5680 s = "sdc2";
bdaaa2e1 5681 /* Itbl support may require additional care here. */
252b5132
RH
5682 coproc = 1;
5683 goto st;
5684 case M_SDC3_AB:
5685 s = "sdc3";
bdaaa2e1 5686 /* Itbl support may require additional care here. */
252b5132
RH
5687 coproc = 1;
5688 goto st;
5689 case M_SDL_AB:
5690 s = "sdl";
5691 goto st;
5692 case M_SDR_AB:
5693 s = "sdr";
5694 st:
5695 tempreg = AT;
5696 used_at = 1;
5697 ld_st:
bdaaa2e1 5698 /* Itbl support may require additional care here. */
252b5132
RH
5699 if (mask == M_LWC1_AB
5700 || mask == M_SWC1_AB
5701 || mask == M_LDC1_AB
5702 || mask == M_SDC1_AB
5703 || mask == M_L_DAB
5704 || mask == M_S_DAB)
5705 fmt = "T,o(b)";
5706 else if (coproc)
5707 fmt = "E,o(b)";
5708 else
5709 fmt = "t,o(b)";
5710
afdbd6d0
CD
5711 /* For embedded PIC, we allow loads where the offset is calculated
5712 by subtracting a symbol in the current segment from an unknown
5713 symbol, relative to a base register, e.g.:
5714 <op> $treg, <sym>-<localsym>($breg)
5715 This is used by the compiler for switch statements. */
76b3015f 5716 if (mips_pic == EMBEDDED_PIC
afdbd6d0
CD
5717 && offset_expr.X_op == O_subtract
5718 && (symbol_constant_p (offset_expr.X_op_symbol)
5719 ? S_GET_SEGMENT (offset_expr.X_op_symbol) == now_seg
5720 : (symbol_equated_p (offset_expr.X_op_symbol)
5721 && (S_GET_SEGMENT
5722 (symbol_get_value_expression (offset_expr.X_op_symbol)
5723 ->X_add_symbol)
5724 == now_seg)))
5725 && breg != 0
5726 && (offset_expr.X_add_number == 0
5727 || OUTPUT_FLAVOR == bfd_target_elf_flavour))
5728 {
5729 /* For this case, we output the instructions:
5730 lui $tempreg,<sym> (BFD_RELOC_PCREL_HI16_S)
5731 addiu $tempreg,$tempreg,$breg
5732 <op> $treg,<sym>($tempreg) (BFD_RELOC_PCREL_LO16)
5733 If the relocation would fit entirely in 16 bits, it would be
5734 nice to emit:
5735 <op> $treg,<sym>($breg) (BFD_RELOC_PCREL_LO16)
5736 instead, but that seems quite difficult. */
5737 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
5738 tempreg, (int) BFD_RELOC_PCREL_HI16_S);
5739 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5740 ((bfd_arch_bits_per_address (stdoutput) == 32
5741 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
5742 ? "addu" : "daddu"),
5743 "d,v,t", tempreg, tempreg, breg);
5744 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt, treg,
5745 (int) BFD_RELOC_PCREL_LO16, tempreg);
5746 if (! used_at)
5747 return;
5748 break;
5749 }
5750
252b5132
RH
5751 if (offset_expr.X_op != O_constant
5752 && offset_expr.X_op != O_symbol)
5753 {
5754 as_bad (_("expression too complex"));
5755 offset_expr.X_op = O_constant;
5756 }
5757
5758 /* A constant expression in PIC code can be handled just as it
5759 is in non PIC code. */
5760 if (mips_pic == NO_PIC
5761 || offset_expr.X_op == O_constant)
5762 {
f9419b05
TS
5763 char *p;
5764
252b5132
RH
5765 /* If this is a reference to a GP relative symbol, and there
5766 is no base register, we want
cdf6fd85 5767 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
5768 Otherwise, if there is no base register, we want
5769 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5770 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5771 If we have a constant, we need two instructions anyhow,
5772 so we always use the latter form.
5773
5774 If we have a base register, and this is a reference to a
5775 GP relative symbol, we want
5776 addu $tempreg,$breg,$gp
cdf6fd85 5777 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
5778 Otherwise we want
5779 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5780 addu $tempreg,$tempreg,$breg
5781 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245 5782 With a constant we always use the latter case.
76b3015f 5783
d6bc6245
TS
5784 With 64bit address space and no base register and $at usable,
5785 we want
5786 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5787 lui $at,<sym> (BFD_RELOC_HI16_S)
5788 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5789 dsll32 $tempreg,0
5790 daddu $tempreg,$at
5791 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5792 If we have a base register, we want
5793 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5794 lui $at,<sym> (BFD_RELOC_HI16_S)
5795 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5796 daddu $at,$breg
5797 dsll32 $tempreg,0
5798 daddu $tempreg,$at
5799 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5800
5801 Without $at we can't generate the optimal path for superscalar
5802 processors here since this would require two temporary registers.
5803 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5804 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5805 dsll $tempreg,16
5806 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5807 dsll $tempreg,16
5808 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5809 If we have a base register, we want
5810 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5811 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5812 dsll $tempreg,16
5813 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5814 dsll $tempreg,16
5815 daddu $tempreg,$tempreg,$breg
5816 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6373ee54
CD
5817
5818 If we have 64-bit addresses, as an optimization, for
5819 addresses which are 32-bit constants (e.g. kseg0/kseg1
5820 addresses) we fall back to the 32-bit address generation
78d32a17
MR
5821 mechanism since it is more efficient. Note that due to
5822 the signed offset used by memory operations, the 32-bit
5823 range is shifted down by 32768 here. This code should
6373ee54
CD
5824 probably attempt to generate 64-bit constants more
5825 efficiently in general.
d6bc6245 5826 */
6373ee54
CD
5827 if (HAVE_64BIT_ADDRESSES
5828 && !(offset_expr.X_op == O_constant
78d32a17 5829 && IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000)))
d6bc6245
TS
5830 {
5831 p = NULL;
5832
5833 /* We don't do GP optimization for now because RELAX_ENCODE can't
5834 hold the data for such large chunks. */
5835
460597ba 5836 if (used_at == 0 && ! mips_opts.noat)
d6bc6245
TS
5837 {
5838 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
5839 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
5840 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
5841 AT, (int) BFD_RELOC_HI16_S);
5842 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
5843 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
5844 if (breg != 0)
2396cfb9
TS
5845 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
5846 "d,v,t", AT, AT, breg);
5847 macro_build (p, &icnt, (expressionS *) NULL, "dsll32",
5848 "d,w,<", tempreg, tempreg, 0);
5849 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
5850 "d,v,t", tempreg, tempreg, AT);
d6bc6245
TS
5851 macro_build (p, &icnt, &offset_expr, s,
5852 fmt, treg, (int) BFD_RELOC_LO16, tempreg);
5853 used_at = 1;
5854 }
5855 else
5856 {
5857 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
5858 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
5859 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
5860 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
2396cfb9
TS
5861 macro_build (p, &icnt, (expressionS *) NULL, "dsll",
5862 "d,w,<", tempreg, tempreg, 16);
d6bc6245
TS
5863 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
5864 tempreg, tempreg, (int) BFD_RELOC_HI16_S);
2396cfb9
TS
5865 macro_build (p, &icnt, (expressionS *) NULL, "dsll",
5866 "d,w,<", tempreg, tempreg, 16);
d6bc6245 5867 if (breg != 0)
2396cfb9
TS
5868 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
5869 "d,v,t", tempreg, tempreg, breg);
d6bc6245
TS
5870 macro_build (p, &icnt, &offset_expr, s,
5871 fmt, treg, (int) BFD_RELOC_LO16, tempreg);
5872 }
5873
5874 return;
5875 }
76b3015f 5876
252b5132
RH
5877 if (breg == 0)
5878 {
e7d556df 5879 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
252b5132
RH
5880 || nopic_need_relax (offset_expr.X_add_symbol, 1))
5881 p = NULL;
5882 else
5883 {
5884 frag_grow (20);
5885 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
c9914766
TS
5886 treg, (int) BFD_RELOC_GPREL16,
5887 mips_gp_register);
252b5132
RH
5888 p = frag_var (rs_machine_dependent, 8, 0,
5889 RELAX_ENCODE (4, 8, 0, 4, 0,
5890 (mips_opts.warn_about_macros
5891 || (used_at
5892 && mips_opts.noat))),
956cd1d6 5893 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5894 used_at = 0;
5895 }
5896 macro_build_lui (p, &icnt, &offset_expr, tempreg);
5897 if (p != NULL)
5898 p += 4;
5899 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
5900 (int) BFD_RELOC_LO16, tempreg);
5901 }
5902 else
5903 {
e7d556df 5904 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
252b5132
RH
5905 || nopic_need_relax (offset_expr.X_add_symbol, 1))
5906 p = NULL;
5907 else
5908 {
5909 frag_grow (28);
5910 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5911 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 5912 "d,v,t", tempreg, breg, mips_gp_register);
252b5132 5913 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
cdf6fd85 5914 treg, (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
5915 p = frag_var (rs_machine_dependent, 12, 0,
5916 RELAX_ENCODE (8, 12, 0, 8, 0, 0),
956cd1d6 5917 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5918 }
5919 macro_build_lui (p, &icnt, &offset_expr, tempreg);
5920 if (p != NULL)
5921 p += 4;
5922 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 5923 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5924 "d,v,t", tempreg, tempreg, breg);
5925 if (p != NULL)
5926 p += 4;
5927 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
5928 (int) BFD_RELOC_LO16, tempreg);
5929 }
5930 }
5931 else if (mips_pic == SVR4_PIC && ! mips_big_got)
5932 {
f9419b05 5933 char *p;
ed6fb7bd 5934 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
f9419b05 5935
252b5132
RH
5936 /* If this is a reference to an external symbol, we want
5937 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5938 nop
5939 <op> $treg,0($tempreg)
5940 Otherwise we want
5941 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5942 nop
5943 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5944 <op> $treg,0($tempreg)
ed6fb7bd
SC
5945 If we have NewABI, we want
5946 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
252b5132
RH
5947 If there is a base register, we add it to $tempreg before
5948 the <op>. If there is a constant, we stick it in the
5949 <op> instruction. We don't handle constants larger than
5950 16 bits, because we have no way to load the upper 16 bits
5951 (actually, we could handle them for the subset of cases
5952 in which we are not using $at). */
5953 assert (offset_expr.X_op == O_symbol);
5954 expr1.X_add_number = offset_expr.X_add_number;
5955 offset_expr.X_add_number = 0;
ed6fb7bd
SC
5956 if (HAVE_NEWABI)
5957 lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
252b5132
RH
5958 if (expr1.X_add_number < -0x8000
5959 || expr1.X_add_number >= 0x8000)
5960 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
5961 frag_grow (20);
5962 macro_build ((char *) NULL, &icnt, &offset_expr,
c9914766 5963 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", tempreg,
ed6fb7bd 5964 (int) lw_reloc_type, mips_gp_register);
252b5132 5965 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
bdaaa2e1 5966 p = frag_var (rs_machine_dependent, 4, 0,
252b5132 5967 RELAX_ENCODE (0, 4, -8, 0, 0, 0),
c4e7957c 5968 offset_expr.X_add_symbol, 0, NULL);
252b5132 5969 macro_build (p, &icnt, &offset_expr,
ca4e0257 5970 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
5971 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5972 if (breg != 0)
5973 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5974 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5975 "d,v,t", tempreg, tempreg, breg);
5976 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
5977 (int) BFD_RELOC_LO16, tempreg);
5978 }
5979 else if (mips_pic == SVR4_PIC)
5980 {
5981 int gpdel;
f9419b05 5982 char *p;
252b5132
RH
5983
5984 /* If this is a reference to an external symbol, we want
5985 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5986 addu $tempreg,$tempreg,$gp
5987 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5988 <op> $treg,0($tempreg)
5989 Otherwise we want
5990 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5991 nop
5992 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5993 <op> $treg,0($tempreg)
5994 If there is a base register, we add it to $tempreg before
5995 the <op>. If there is a constant, we stick it in the
5996 <op> instruction. We don't handle constants larger than
5997 16 bits, because we have no way to load the upper 16 bits
5998 (actually, we could handle them for the subset of cases
438c16b8
TS
5999 in which we are not using $at).
6000
6001 For NewABI, we want
6002 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
6003 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
6004 <op> $treg,0($tempreg)
6005 */
252b5132
RH
6006 assert (offset_expr.X_op == O_symbol);
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)"));
438c16b8
TS
6012 if (HAVE_NEWABI)
6013 {
6014 macro_build ((char *) NULL, &icnt, &offset_expr,
6015 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
6016 "t,o(b)", tempreg, BFD_RELOC_MIPS_GOT_PAGE,
6017 mips_gp_register);
6018 macro_build ((char *) NULL, &icnt, &offset_expr,
6019 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
6020 "t,r,j", tempreg, tempreg,
6021 BFD_RELOC_MIPS_GOT_OFST);
6022 if (breg != 0)
6023 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6024 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
6025 "d,v,t", tempreg, tempreg, breg);
6026 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
6027 (int) BFD_RELOC_LO16, tempreg);
6028
6029 if (! used_at)
6030 return;
6031
6032 break;
6033 }
f7ea7ef2 6034 if (reg_needs_delay (mips_gp_register))
252b5132
RH
6035 gpdel = 4;
6036 else
6037 gpdel = 0;
6038 frag_grow (36);
6039 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
6040 tempreg, (int) BFD_RELOC_MIPS_GOT_HI16);
6041 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6042 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 6043 "d,v,t", tempreg, tempreg, mips_gp_register);
252b5132 6044 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 6045 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
252b5132
RH
6046 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT_LO16,
6047 tempreg);
6048 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
6049 RELAX_ENCODE (12, 12 + gpdel, gpdel, 8 + gpdel, 0, 0),
c4e7957c 6050 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
6051 if (gpdel > 0)
6052 {
6053 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
6054 p += 4;
6055 }
6056 macro_build (p, &icnt, &offset_expr,
ca4e0257 6057 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766
TS
6058 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT16,
6059 mips_gp_register);
252b5132
RH
6060 p += 4;
6061 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
6062 p += 4;
6063 macro_build (p, &icnt, &offset_expr,
ca4e0257 6064 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
6065 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
6066 if (breg != 0)
6067 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6068 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
6069 "d,v,t", tempreg, tempreg, breg);
6070 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
6071 (int) BFD_RELOC_LO16, tempreg);
6072 }
6073 else if (mips_pic == EMBEDDED_PIC)
6074 {
6075 /* If there is no base register, we want
cdf6fd85 6076 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
6077 If there is a base register, we want
6078 addu $tempreg,$breg,$gp
cdf6fd85 6079 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
6080 */
6081 assert (offset_expr.X_op == O_symbol);
6082 if (breg == 0)
6083 {
6084 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
c9914766 6085 treg, (int) BFD_RELOC_GPREL16, mips_gp_register);
252b5132
RH
6086 used_at = 0;
6087 }
6088 else
6089 {
6090 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6091 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 6092 "d,v,t", tempreg, breg, mips_gp_register);
252b5132 6093 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
cdf6fd85 6094 treg, (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
6095 }
6096 }
6097 else
6098 abort ();
6099
6100 if (! used_at)
6101 return;
6102
6103 break;
6104
6105 case M_LI:
6106 case M_LI_S:
6107 load_register (&icnt, treg, &imm_expr, 0);
6108 return;
6109
6110 case M_DLI:
6111 load_register (&icnt, treg, &imm_expr, 1);
6112 return;
6113
6114 case M_LI_SS:
6115 if (imm_expr.X_op == O_constant)
6116 {
6117 load_register (&icnt, AT, &imm_expr, 0);
6118 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6119 "mtc1", "t,G", AT, treg);
6120 break;
6121 }
6122 else
6123 {
6124 assert (offset_expr.X_op == O_symbol
6125 && strcmp (segment_name (S_GET_SEGMENT
6126 (offset_expr.X_add_symbol)),
6127 ".lit4") == 0
6128 && offset_expr.X_add_number == 0);
6129 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
c9914766 6130 treg, (int) BFD_RELOC_MIPS_LITERAL, mips_gp_register);
252b5132
RH
6131 return;
6132 }
6133
6134 case M_LI_D:
ca4e0257
RS
6135 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
6136 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
6137 order 32 bits of the value and the low order 32 bits are either
6138 zero or in OFFSET_EXPR. */
252b5132
RH
6139 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6140 {
ca4e0257 6141 if (HAVE_64BIT_GPRS)
252b5132
RH
6142 load_register (&icnt, treg, &imm_expr, 1);
6143 else
6144 {
6145 int hreg, lreg;
6146
6147 if (target_big_endian)
6148 {
6149 hreg = treg;
6150 lreg = treg + 1;
6151 }
6152 else
6153 {
6154 hreg = treg + 1;
6155 lreg = treg;
6156 }
6157
6158 if (hreg <= 31)
6159 load_register (&icnt, hreg, &imm_expr, 0);
6160 if (lreg <= 31)
6161 {
6162 if (offset_expr.X_op == O_absent)
ea1fb5dc 6163 move_register (&icnt, lreg, 0);
252b5132
RH
6164 else
6165 {
6166 assert (offset_expr.X_op == O_constant);
6167 load_register (&icnt, lreg, &offset_expr, 0);
6168 }
6169 }
6170 }
6171 return;
6172 }
6173
6174 /* We know that sym is in the .rdata section. First we get the
6175 upper 16 bits of the address. */
6176 if (mips_pic == NO_PIC)
6177 {
956cd1d6 6178 macro_build_lui (NULL, &icnt, &offset_expr, AT);
252b5132
RH
6179 }
6180 else if (mips_pic == SVR4_PIC)
6181 {
6182 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 6183 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766
TS
6184 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
6185 mips_gp_register);
252b5132
RH
6186 }
6187 else if (mips_pic == EMBEDDED_PIC)
6188 {
6189 /* For embedded PIC we pick up the entire address off $gp in
6190 a single instruction. */
6191 macro_build ((char *) NULL, &icnt, &offset_expr,
c9914766
TS
6192 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j", AT,
6193 mips_gp_register, (int) BFD_RELOC_GPREL16);
252b5132
RH
6194 offset_expr.X_op = O_constant;
6195 offset_expr.X_add_number = 0;
6196 }
6197 else
6198 abort ();
bdaaa2e1 6199
252b5132 6200 /* Now we load the register(s). */
ca4e0257 6201 if (HAVE_64BIT_GPRS)
252b5132
RH
6202 macro_build ((char *) NULL, &icnt, &offset_expr, "ld", "t,o(b)",
6203 treg, (int) BFD_RELOC_LO16, AT);
6204 else
6205 {
6206 macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
6207 treg, (int) BFD_RELOC_LO16, AT);
f9419b05 6208 if (treg != RA)
252b5132
RH
6209 {
6210 /* FIXME: How in the world do we deal with the possible
6211 overflow here? */
6212 offset_expr.X_add_number += 4;
6213 macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
6214 treg + 1, (int) BFD_RELOC_LO16, AT);
6215 }
6216 }
6217
6218 /* To avoid confusion in tc_gen_reloc, we must ensure that this
6219 does not become a variant frag. */
6220 frag_wane (frag_now);
6221 frag_new (0);
6222
6223 break;
6224
6225 case M_LI_DD:
ca4e0257
RS
6226 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
6227 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
6228 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
6229 the value and the low order 32 bits are either zero or in
6230 OFFSET_EXPR. */
252b5132
RH
6231 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
6232 {
ca4e0257
RS
6233 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_FPRS);
6234 if (HAVE_64BIT_FPRS)
6235 {
6236 assert (HAVE_64BIT_GPRS);
6237 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6238 "dmtc1", "t,S", AT, treg);
6239 }
252b5132
RH
6240 else
6241 {
6242 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6243 "mtc1", "t,G", AT, treg + 1);
6244 if (offset_expr.X_op == O_absent)
6245 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6246 "mtc1", "t,G", 0, treg);
6247 else
6248 {
6249 assert (offset_expr.X_op == O_constant);
6250 load_register (&icnt, AT, &offset_expr, 0);
6251 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6252 "mtc1", "t,G", AT, treg);
6253 }
6254 }
6255 break;
6256 }
6257
6258 assert (offset_expr.X_op == O_symbol
6259 && offset_expr.X_add_number == 0);
6260 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
6261 if (strcmp (s, ".lit8") == 0)
6262 {
e7af610e 6263 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
6264 {
6265 macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
c9914766
TS
6266 "T,o(b)", treg, (int) BFD_RELOC_MIPS_LITERAL,
6267 mips_gp_register);
252b5132
RH
6268 return;
6269 }
c9914766 6270 breg = mips_gp_register;
252b5132
RH
6271 r = BFD_RELOC_MIPS_LITERAL;
6272 goto dob;
6273 }
6274 else
6275 {
6276 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
6277 if (mips_pic == SVR4_PIC)
6278 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 6279 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766
TS
6280 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
6281 mips_gp_register);
252b5132
RH
6282 else
6283 {
6284 /* FIXME: This won't work for a 64 bit address. */
956cd1d6 6285 macro_build_lui (NULL, &icnt, &offset_expr, AT);
252b5132 6286 }
bdaaa2e1 6287
e7af610e 6288 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
6289 {
6290 macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
6291 "T,o(b)", treg, (int) BFD_RELOC_LO16, AT);
6292
6293 /* To avoid confusion in tc_gen_reloc, we must ensure
6294 that this does not become a variant frag. */
6295 frag_wane (frag_now);
6296 frag_new (0);
6297
6298 break;
6299 }
6300 breg = AT;
6301 r = BFD_RELOC_LO16;
6302 goto dob;
6303 }
6304
6305 case M_L_DOB:
ec68c924 6306 if (mips_arch == CPU_R4650)
252b5132
RH
6307 {
6308 as_bad (_("opcode not supported on this processor"));
6309 return;
6310 }
6311 /* Even on a big endian machine $fn comes before $fn+1. We have
6312 to adjust when loading from memory. */
6313 r = BFD_RELOC_LO16;
6314 dob:
e7af610e 6315 assert (mips_opts.isa == ISA_MIPS1);
252b5132
RH
6316 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
6317 target_big_endian ? treg + 1 : treg,
6318 (int) r, breg);
6319 /* FIXME: A possible overflow which I don't know how to deal
6320 with. */
6321 offset_expr.X_add_number += 4;
6322 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
6323 target_big_endian ? treg : treg + 1,
6324 (int) r, breg);
6325
6326 /* To avoid confusion in tc_gen_reloc, we must ensure that this
6327 does not become a variant frag. */
6328 frag_wane (frag_now);
6329 frag_new (0);
6330
6331 if (breg != AT)
6332 return;
6333 break;
6334
6335 case M_L_DAB:
6336 /*
6337 * The MIPS assembler seems to check for X_add_number not
6338 * being double aligned and generating:
6339 * lui at,%hi(foo+1)
6340 * addu at,at,v1
6341 * addiu at,at,%lo(foo+1)
6342 * lwc1 f2,0(at)
6343 * lwc1 f3,4(at)
6344 * But, the resulting address is the same after relocation so why
6345 * generate the extra instruction?
6346 */
ec68c924 6347 if (mips_arch == CPU_R4650)
252b5132
RH
6348 {
6349 as_bad (_("opcode not supported on this processor"));
6350 return;
6351 }
bdaaa2e1 6352 /* Itbl support may require additional care here. */
252b5132 6353 coproc = 1;
e7af610e 6354 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
6355 {
6356 s = "ldc1";
6357 goto ld;
6358 }
6359
6360 s = "lwc1";
6361 fmt = "T,o(b)";
6362 goto ldd_std;
6363
6364 case M_S_DAB:
ec68c924 6365 if (mips_arch == CPU_R4650)
252b5132
RH
6366 {
6367 as_bad (_("opcode not supported on this processor"));
6368 return;
6369 }
6370
e7af610e 6371 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
6372 {
6373 s = "sdc1";
6374 goto st;
6375 }
6376
6377 s = "swc1";
6378 fmt = "T,o(b)";
bdaaa2e1 6379 /* Itbl support may require additional care here. */
252b5132
RH
6380 coproc = 1;
6381 goto ldd_std;
6382
6383 case M_LD_AB:
ca4e0257 6384 if (HAVE_64BIT_GPRS)
252b5132
RH
6385 {
6386 s = "ld";
6387 goto ld;
6388 }
6389
6390 s = "lw";
6391 fmt = "t,o(b)";
6392 goto ldd_std;
6393
6394 case M_SD_AB:
ca4e0257 6395 if (HAVE_64BIT_GPRS)
252b5132
RH
6396 {
6397 s = "sd";
6398 goto st;
6399 }
6400
6401 s = "sw";
6402 fmt = "t,o(b)";
6403
6404 ldd_std:
afdbd6d0
CD
6405 /* We do _not_ bother to allow embedded PIC (symbol-local_symbol)
6406 loads for the case of doing a pair of loads to simulate an 'ld'.
6407 This is not currently done by the compiler, and assembly coders
6408 writing embedded-pic code can cope. */
6409
252b5132
RH
6410 if (offset_expr.X_op != O_symbol
6411 && offset_expr.X_op != O_constant)
6412 {
6413 as_bad (_("expression too complex"));
6414 offset_expr.X_op = O_constant;
6415 }
6416
6417 /* Even on a big endian machine $fn comes before $fn+1. We have
6418 to adjust when loading from memory. We set coproc if we must
6419 load $fn+1 first. */
bdaaa2e1 6420 /* Itbl support may require additional care here. */
252b5132
RH
6421 if (! target_big_endian)
6422 coproc = 0;
6423
6424 if (mips_pic == NO_PIC
6425 || offset_expr.X_op == O_constant)
6426 {
f9419b05
TS
6427 char *p;
6428
252b5132 6429 /* If this is a reference to a GP relative symbol, we want
cdf6fd85
TS
6430 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6431 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
6432 If we have a base register, we use this
6433 addu $at,$breg,$gp
cdf6fd85
TS
6434 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6435 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
6436 If this is not a GP relative symbol, we want
6437 lui $at,<sym> (BFD_RELOC_HI16_S)
6438 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6439 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6440 If there is a base register, we add it to $at after the
6441 lui instruction. If there is a constant, we always use
6442 the last case. */
e7d556df 6443 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
252b5132
RH
6444 || nopic_need_relax (offset_expr.X_add_symbol, 1))
6445 {
6446 p = NULL;
6447 used_at = 1;
6448 }
6449 else
6450 {
6451 int off;
6452
6453 if (breg == 0)
6454 {
6455 frag_grow (28);
c9914766 6456 tempreg = mips_gp_register;
252b5132
RH
6457 off = 0;
6458 used_at = 0;
6459 }
6460 else
6461 {
6462 frag_grow (36);
6463 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6464 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 6465 "d,v,t", AT, breg, mips_gp_register);
252b5132
RH
6466 tempreg = AT;
6467 off = 4;
6468 used_at = 1;
6469 }
6470
beae10d5 6471 /* Itbl support may require additional care here. */
252b5132
RH
6472 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6473 coproc ? treg + 1 : treg,
cdf6fd85 6474 (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
6475 offset_expr.X_add_number += 4;
6476
6477 /* Set mips_optimize to 2 to avoid inserting an
6478 undesired nop. */
6479 hold_mips_optimize = mips_optimize;
6480 mips_optimize = 2;
beae10d5 6481 /* Itbl support may require additional care here. */
252b5132
RH
6482 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6483 coproc ? treg : treg + 1,
cdf6fd85 6484 (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
6485 mips_optimize = hold_mips_optimize;
6486
6487 p = frag_var (rs_machine_dependent, 12 + off, 0,
6488 RELAX_ENCODE (8 + off, 12 + off, 0, 4 + off, 1,
6489 used_at && mips_opts.noat),
956cd1d6 6490 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
6491
6492 /* We just generated two relocs. When tc_gen_reloc
6493 handles this case, it will skip the first reloc and
6494 handle the second. The second reloc already has an
6495 extra addend of 4, which we added above. We must
6496 subtract it out, and then subtract another 4 to make
6497 the first reloc come out right. The second reloc
6498 will come out right because we are going to add 4 to
6499 offset_expr when we build its instruction below.
6500
6501 If we have a symbol, then we don't want to include
6502 the offset, because it will wind up being included
6503 when we generate the reloc. */
6504
6505 if (offset_expr.X_op == O_constant)
6506 offset_expr.X_add_number -= 8;
6507 else
6508 {
6509 offset_expr.X_add_number = -4;
6510 offset_expr.X_op = O_constant;
6511 }
6512 }
6513 macro_build_lui (p, &icnt, &offset_expr, AT);
6514 if (p != NULL)
6515 p += 4;
6516 if (breg != 0)
6517 {
6518 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 6519 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
6520 "d,v,t", AT, breg, AT);
6521 if (p != NULL)
6522 p += 4;
6523 }
beae10d5 6524 /* Itbl support may require additional care here. */
252b5132
RH
6525 macro_build (p, &icnt, &offset_expr, s, fmt,
6526 coproc ? treg + 1 : treg,
6527 (int) BFD_RELOC_LO16, AT);
6528 if (p != NULL)
6529 p += 4;
6530 /* FIXME: How do we handle overflow here? */
6531 offset_expr.X_add_number += 4;
beae10d5 6532 /* Itbl support may require additional care here. */
252b5132
RH
6533 macro_build (p, &icnt, &offset_expr, s, fmt,
6534 coproc ? treg : treg + 1,
6535 (int) BFD_RELOC_LO16, AT);
bdaaa2e1 6536 }
252b5132
RH
6537 else if (mips_pic == SVR4_PIC && ! mips_big_got)
6538 {
6539 int off;
6540
6541 /* If this is a reference to an external symbol, we want
6542 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6543 nop
6544 <op> $treg,0($at)
6545 <op> $treg+1,4($at)
6546 Otherwise we want
6547 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6548 nop
6549 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6550 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6551 If there is a base register we add it to $at before the
6552 lwc1 instructions. If there is a constant we include it
6553 in the lwc1 instructions. */
6554 used_at = 1;
6555 expr1.X_add_number = offset_expr.X_add_number;
6556 offset_expr.X_add_number = 0;
6557 if (expr1.X_add_number < -0x8000
6558 || expr1.X_add_number >= 0x8000 - 4)
6559 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6560 if (breg == 0)
6561 off = 0;
6562 else
6563 off = 4;
6564 frag_grow (24 + off);
6565 macro_build ((char *) NULL, &icnt, &offset_expr,
c9914766
TS
6566 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", AT,
6567 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
252b5132
RH
6568 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
6569 if (breg != 0)
6570 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6571 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132 6572 "d,v,t", AT, breg, AT);
beae10d5 6573 /* Itbl support may require additional care here. */
252b5132
RH
6574 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6575 coproc ? treg + 1 : treg,
6576 (int) BFD_RELOC_LO16, AT);
6577 expr1.X_add_number += 4;
6578
6579 /* Set mips_optimize to 2 to avoid inserting an undesired
6580 nop. */
6581 hold_mips_optimize = mips_optimize;
6582 mips_optimize = 2;
beae10d5 6583 /* Itbl support may require additional care here. */
252b5132
RH
6584 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6585 coproc ? treg : treg + 1,
6586 (int) BFD_RELOC_LO16, AT);
6587 mips_optimize = hold_mips_optimize;
6588
6589 (void) frag_var (rs_machine_dependent, 0, 0,
6590 RELAX_ENCODE (0, 0, -16 - off, -8, 1, 0),
c4e7957c 6591 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
6592 }
6593 else if (mips_pic == SVR4_PIC)
6594 {
6595 int gpdel, off;
f9419b05 6596 char *p;
252b5132
RH
6597
6598 /* If this is a reference to an external symbol, we want
6599 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6600 addu $at,$at,$gp
6601 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
6602 nop
6603 <op> $treg,0($at)
6604 <op> $treg+1,4($at)
6605 Otherwise we want
6606 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6607 nop
6608 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6609 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6610 If there is a base register we add it to $at before the
6611 lwc1 instructions. If there is a constant we include it
6612 in the lwc1 instructions. */
6613 used_at = 1;
6614 expr1.X_add_number = offset_expr.X_add_number;
6615 offset_expr.X_add_number = 0;
6616 if (expr1.X_add_number < -0x8000
6617 || expr1.X_add_number >= 0x8000 - 4)
6618 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
c9914766 6619 if (reg_needs_delay (mips_gp_register))
252b5132
RH
6620 gpdel = 4;
6621 else
6622 gpdel = 0;
6623 if (breg == 0)
6624 off = 0;
6625 else
6626 off = 4;
6627 frag_grow (56);
6628 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
6629 AT, (int) BFD_RELOC_MIPS_GOT_HI16);
6630 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6631 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 6632 "d,v,t", AT, AT, mips_gp_register);
252b5132 6633 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 6634 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
252b5132
RH
6635 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT_LO16, AT);
6636 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
6637 if (breg != 0)
6638 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6639 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132 6640 "d,v,t", AT, breg, AT);
beae10d5 6641 /* Itbl support may require additional care here. */
252b5132
RH
6642 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6643 coproc ? treg + 1 : treg,
6644 (int) BFD_RELOC_LO16, AT);
6645 expr1.X_add_number += 4;
6646
6647 /* Set mips_optimize to 2 to avoid inserting an undesired
6648 nop. */
6649 hold_mips_optimize = mips_optimize;
6650 mips_optimize = 2;
beae10d5 6651 /* Itbl support may require additional care here. */
252b5132
RH
6652 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6653 coproc ? treg : treg + 1,
6654 (int) BFD_RELOC_LO16, AT);
6655 mips_optimize = hold_mips_optimize;
6656 expr1.X_add_number -= 4;
6657
6658 p = frag_var (rs_machine_dependent, 16 + gpdel + off, 0,
6659 RELAX_ENCODE (24 + off, 16 + gpdel + off, gpdel,
6660 8 + gpdel + off, 1, 0),
c4e7957c 6661 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
6662 if (gpdel > 0)
6663 {
6664 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
6665 p += 4;
6666 }
6667 macro_build (p, &icnt, &offset_expr,
ca4e0257 6668 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766
TS
6669 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
6670 mips_gp_register);
252b5132
RH
6671 p += 4;
6672 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
6673 p += 4;
6674 if (breg != 0)
6675 {
6676 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 6677 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
6678 "d,v,t", AT, breg, AT);
6679 p += 4;
6680 }
beae10d5 6681 /* Itbl support may require additional care here. */
252b5132
RH
6682 macro_build (p, &icnt, &expr1, s, fmt,
6683 coproc ? treg + 1 : treg,
6684 (int) BFD_RELOC_LO16, AT);
6685 p += 4;
6686 expr1.X_add_number += 4;
6687
6688 /* Set mips_optimize to 2 to avoid inserting an undesired
6689 nop. */
6690 hold_mips_optimize = mips_optimize;
6691 mips_optimize = 2;
beae10d5 6692 /* Itbl support may require additional care here. */
252b5132
RH
6693 macro_build (p, &icnt, &expr1, s, fmt,
6694 coproc ? treg : treg + 1,
6695 (int) BFD_RELOC_LO16, AT);
6696 mips_optimize = hold_mips_optimize;
6697 }
6698 else if (mips_pic == EMBEDDED_PIC)
6699 {
6700 /* If there is no base register, we use
cdf6fd85
TS
6701 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6702 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
6703 If we have a base register, we use
6704 addu $at,$breg,$gp
cdf6fd85
TS
6705 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6706 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
6707 */
6708 if (breg == 0)
6709 {
c9914766 6710 tempreg = mips_gp_register;
252b5132
RH
6711 used_at = 0;
6712 }
6713 else
6714 {
6715 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6716 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 6717 "d,v,t", AT, breg, mips_gp_register);
252b5132
RH
6718 tempreg = AT;
6719 used_at = 1;
6720 }
6721
beae10d5 6722 /* Itbl support may require additional care here. */
252b5132
RH
6723 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6724 coproc ? treg + 1 : treg,
cdf6fd85 6725 (int) BFD_RELOC_GPREL16, tempreg);
252b5132 6726 offset_expr.X_add_number += 4;
beae10d5 6727 /* Itbl support may require additional care here. */
252b5132
RH
6728 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6729 coproc ? treg : treg + 1,
cdf6fd85 6730 (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
6731 }
6732 else
6733 abort ();
6734
6735 if (! used_at)
6736 return;
6737
6738 break;
6739
6740 case M_LD_OB:
6741 s = "lw";
6742 goto sd_ob;
6743 case M_SD_OB:
6744 s = "sw";
6745 sd_ob:
ca4e0257 6746 assert (HAVE_32BIT_ADDRESSES);
252b5132
RH
6747 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
6748 (int) BFD_RELOC_LO16, breg);
6749 offset_expr.X_add_number += 4;
6750 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg + 1,
6751 (int) BFD_RELOC_LO16, breg);
6752 return;
6753
6754 /* New code added to support COPZ instructions.
6755 This code builds table entries out of the macros in mip_opcodes.
6756 R4000 uses interlocks to handle coproc delays.
6757 Other chips (like the R3000) require nops to be inserted for delays.
6758
f72c8c98 6759 FIXME: Currently, we require that the user handle delays.
252b5132
RH
6760 In order to fill delay slots for non-interlocked chips,
6761 we must have a way to specify delays based on the coprocessor.
6762 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
6763 What are the side-effects of the cop instruction?
6764 What cache support might we have and what are its effects?
6765 Both coprocessor & memory require delays. how long???
bdaaa2e1 6766 What registers are read/set/modified?
252b5132
RH
6767
6768 If an itbl is provided to interpret cop instructions,
bdaaa2e1 6769 this knowledge can be encoded in the itbl spec. */
252b5132
RH
6770
6771 case M_COP0:
6772 s = "c0";
6773 goto copz;
6774 case M_COP1:
6775 s = "c1";
6776 goto copz;
6777 case M_COP2:
6778 s = "c2";
6779 goto copz;
6780 case M_COP3:
6781 s = "c3";
6782 copz:
6783 /* For now we just do C (same as Cz). The parameter will be
6784 stored in insn_opcode by mips_ip. */
6785 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "C",
6786 ip->insn_opcode);
6787 return;
6788
ea1fb5dc
RS
6789 case M_MOVE:
6790 move_register (&icnt, dreg, sreg);
6791 return;
6792
252b5132
RH
6793#ifdef LOSING_COMPILER
6794 default:
6795 /* Try and see if this is a new itbl instruction.
6796 This code builds table entries out of the macros in mip_opcodes.
6797 FIXME: For now we just assemble the expression and pass it's
6798 value along as a 32-bit immediate.
bdaaa2e1 6799 We may want to have the assembler assemble this value,
252b5132
RH
6800 so that we gain the assembler's knowledge of delay slots,
6801 symbols, etc.
6802 Would it be more efficient to use mask (id) here? */
bdaaa2e1 6803 if (itbl_have_entries
252b5132 6804 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
beae10d5 6805 {
252b5132
RH
6806 s = ip->insn_mo->name;
6807 s2 = "cop3";
6808 coproc = ITBL_DECODE_PNUM (immed_expr);;
6809 macro_build ((char *) NULL, &icnt, &immed_expr, s, "C");
6810 return;
beae10d5 6811 }
252b5132
RH
6812 macro2 (ip);
6813 return;
6814 }
6815 if (mips_opts.noat)
6816 as_warn (_("Macro used $at after \".set noat\""));
6817}
bdaaa2e1 6818
252b5132
RH
6819static void
6820macro2 (ip)
6821 struct mips_cl_insn *ip;
6822{
6823 register int treg, sreg, dreg, breg;
6824 int tempreg;
6825 int mask;
6826 int icnt = 0;
6827 int used_at;
6828 expressionS expr1;
6829 const char *s;
6830 const char *s2;
6831 const char *fmt;
6832 int likely = 0;
6833 int dbl = 0;
6834 int coproc = 0;
6835 int lr = 0;
6836 int imm = 0;
6837 int off;
6838 offsetT maxnum;
6839 bfd_reloc_code_real_type r;
6840 char *p;
bdaaa2e1 6841
252b5132
RH
6842 treg = (ip->insn_opcode >> 16) & 0x1f;
6843 dreg = (ip->insn_opcode >> 11) & 0x1f;
6844 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
6845 mask = ip->insn_mo->mask;
bdaaa2e1 6846
252b5132
RH
6847 expr1.X_op = O_constant;
6848 expr1.X_op_symbol = NULL;
6849 expr1.X_add_symbol = NULL;
6850 expr1.X_add_number = 1;
bdaaa2e1 6851
252b5132
RH
6852 switch (mask)
6853 {
6854#endif /* LOSING_COMPILER */
6855
6856 case M_DMUL:
6857 dbl = 1;
6858 case M_MUL:
2396cfb9
TS
6859 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6860 dbl ? "dmultu" : "multu", "s,t", sreg, treg);
6861 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6862 dreg);
252b5132
RH
6863 return;
6864
6865 case M_DMUL_I:
6866 dbl = 1;
6867 case M_MUL_I:
6868 /* The MIPS assembler some times generates shifts and adds. I'm
6869 not trying to be that fancy. GCC should do this for us
6870 anyway. */
6871 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 6872 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 6873 dbl ? "dmult" : "mult", "s,t", sreg, AT);
2396cfb9
TS
6874 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6875 dreg);
252b5132
RH
6876 break;
6877
6878 case M_DMULO_I:
6879 dbl = 1;
6880 case M_MULO_I:
6881 imm = 1;
6882 goto do_mulo;
6883
6884 case M_DMULO:
6885 dbl = 1;
6886 case M_MULO:
6887 do_mulo:
b34976b6 6888 mips_emit_delays (TRUE);
252b5132
RH
6889 ++mips_opts.noreorder;
6890 mips_any_noreorder = 1;
6891 if (imm)
6892 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 6893 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 6894 dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
2396cfb9
TS
6895 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6896 dreg);
6897 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
f9419b05 6898 dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
2396cfb9
TS
6899 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mfhi", "d",
6900 AT);
252b5132 6901 if (mips_trap)
9bd7d936
MR
6902 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "tne",
6903 "s,t,q", dreg, AT, 6);
252b5132
RH
6904 else
6905 {
6906 expr1.X_add_number = 8;
2396cfb9
TS
6907 macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", dreg,
6908 AT);
6909 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
6910 0);
6911 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
6912 "c", 6);
252b5132
RH
6913 }
6914 --mips_opts.noreorder;
2396cfb9 6915 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d", dreg);
252b5132
RH
6916 break;
6917
6918 case M_DMULOU_I:
6919 dbl = 1;
6920 case M_MULOU_I:
6921 imm = 1;
6922 goto do_mulou;
6923
6924 case M_DMULOU:
6925 dbl = 1;
6926 case M_MULOU:
6927 do_mulou:
b34976b6 6928 mips_emit_delays (TRUE);
252b5132
RH
6929 ++mips_opts.noreorder;
6930 mips_any_noreorder = 1;
6931 if (imm)
6932 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 6933 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
252b5132
RH
6934 dbl ? "dmultu" : "multu",
6935 "s,t", sreg, imm ? AT : treg);
2396cfb9
TS
6936 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mfhi", "d",
6937 AT);
6938 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6939 dreg);
252b5132 6940 if (mips_trap)
9bd7d936
MR
6941 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "tne",
6942 "s,t,q", AT, 0, 6);
252b5132
RH
6943 else
6944 {
6945 expr1.X_add_number = 8;
6946 macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", AT, 0);
2396cfb9
TS
6947 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
6948 0);
6949 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
6950 "c", 6);
252b5132
RH
6951 }
6952 --mips_opts.noreorder;
6953 break;
6954
771c7ce4
TS
6955 case M_DROL:
6956 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
6957 "d,v,t", AT, 0, treg);
6958 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
6959 "d,t,s", AT, sreg, AT);
6960 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
6961 "d,t,s", dreg, sreg, treg);
6962 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6963 "d,v,t", dreg, dreg, AT);
6964 break;
6965
252b5132 6966 case M_ROL:
2396cfb9
TS
6967 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "subu",
6968 "d,v,t", AT, 0, treg);
6969 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srlv",
6970 "d,t,s", AT, sreg, AT);
6971 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sllv",
6972 "d,t,s", dreg, sreg, treg);
6973 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6974 "d,v,t", dreg, dreg, AT);
252b5132
RH
6975 break;
6976
771c7ce4
TS
6977 case M_DROL_I:
6978 {
6979 unsigned int rot;
771c7ce4
TS
6980
6981 if (imm_expr.X_op != O_constant)
6982 as_bad (_("rotate count too large"));
6983 rot = imm_expr.X_add_number & 0x3f;
60b63b72
RS
6984 if (CPU_HAS_DROR (mips_arch))
6985 {
6986 rot = (64 - rot) & 0x3f;
6987 if (rot >= 32)
6988 macro_build ((char *) NULL, &icnt, NULL, "dror32",
6989 "d,w,<", dreg, sreg, rot - 32);
6990 else
6991 macro_build ((char *) NULL, &icnt, NULL, "dror",
6992 "d,w,<", dreg, sreg, rot);
6993 break;
6994 }
483fc7cd
RS
6995 if (rot == 0)
6996 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrl",
6997 "d,w,<", dreg, sreg, 0);
6998 else
6999 {
7000 char *l, *r;
7001
7002 l = (rot < 0x20) ? "dsll" : "dsll32";
7003 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
7004 rot &= 0x1f;
7005 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
7006 "d,w,<", AT, sreg, rot);
7007 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
7008 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7009 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
7010 "d,v,t", dreg, dreg, AT);
7011 }
771c7ce4
TS
7012 }
7013 break;
7014
252b5132 7015 case M_ROL_I:
771c7ce4
TS
7016 {
7017 unsigned int rot;
7018
7019 if (imm_expr.X_op != O_constant)
7020 as_bad (_("rotate count too large"));
7021 rot = imm_expr.X_add_number & 0x1f;
60b63b72
RS
7022 if (CPU_HAS_ROR (mips_arch))
7023 {
7024 macro_build ((char *) NULL, &icnt, NULL, "ror",
7025 "d,w,<", dreg, sreg, (32 - rot) & 0x1f);
7026 break;
7027 }
483fc7cd
RS
7028 if (rot == 0)
7029 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
7030 "d,w,<", dreg, sreg, 0);
7031 else
7032 {
7033 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
7034 "d,w,<", AT, sreg, rot);
7035 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
7036 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7037 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
7038 "d,v,t", dreg, dreg, AT);
7039 }
771c7ce4
TS
7040 }
7041 break;
7042
7043 case M_DROR:
7044 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
7045 "d,v,t", AT, 0, treg);
7046 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
7047 "d,t,s", AT, sreg, AT);
7048 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
7049 "d,t,s", dreg, sreg, treg);
7050 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
7051 "d,v,t", dreg, dreg, AT);
252b5132
RH
7052 break;
7053
7054 case M_ROR:
2396cfb9
TS
7055 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "subu",
7056 "d,v,t", AT, 0, treg);
7057 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sllv",
7058 "d,t,s", AT, sreg, AT);
7059 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srlv",
7060 "d,t,s", dreg, sreg, treg);
7061 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
7062 "d,v,t", dreg, dreg, AT);
252b5132
RH
7063 break;
7064
771c7ce4
TS
7065 case M_DROR_I:
7066 {
7067 unsigned int rot;
771c7ce4
TS
7068
7069 if (imm_expr.X_op != O_constant)
7070 as_bad (_("rotate count too large"));
7071 rot = imm_expr.X_add_number & 0x3f;
483fc7cd
RS
7072 if (rot == 0)
7073 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrl",
7074 "d,w,<", dreg, sreg, 0);
7075 else
7076 {
7077 char *l, *r;
7078
7079 r = (rot < 0x20) ? "dsrl" : "dsrl32";
7080 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
7081 rot &= 0x1f;
7082 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
7083 "d,w,<", AT, sreg, rot);
7084 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
7085 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7086 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
7087 "d,v,t", dreg, dreg, AT);
7088 }
771c7ce4
TS
7089 }
7090 break;
7091
252b5132 7092 case M_ROR_I:
771c7ce4
TS
7093 {
7094 unsigned int rot;
7095
7096 if (imm_expr.X_op != O_constant)
7097 as_bad (_("rotate count too large"));
7098 rot = imm_expr.X_add_number & 0x1f;
483fc7cd
RS
7099 if (rot == 0)
7100 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
7101 "d,w,<", dreg, sreg, 0);
7102 else
7103 {
7104 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
7105 "d,w,<", AT, sreg, rot);
7106 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
7107 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
7108 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
7109 "d,v,t", dreg, dreg, AT);
7110 }
771c7ce4 7111 }
252b5132
RH
7112 break;
7113
7114 case M_S_DOB:
ec68c924 7115 if (mips_arch == CPU_R4650)
252b5132
RH
7116 {
7117 as_bad (_("opcode not supported on this processor"));
7118 return;
7119 }
e7af610e 7120 assert (mips_opts.isa == ISA_MIPS1);
252b5132
RH
7121 /* Even on a big endian machine $fn comes before $fn+1. We have
7122 to adjust when storing to memory. */
7123 macro_build ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
7124 target_big_endian ? treg + 1 : treg,
7125 (int) BFD_RELOC_LO16, breg);
7126 offset_expr.X_add_number += 4;
7127 macro_build ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
7128 target_big_endian ? treg : treg + 1,
7129 (int) BFD_RELOC_LO16, breg);
7130 return;
7131
7132 case M_SEQ:
7133 if (sreg == 0)
7134 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
7135 treg, (int) BFD_RELOC_LO16);
7136 else if (treg == 0)
7137 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
7138 sreg, (int) BFD_RELOC_LO16);
7139 else
7140 {
2396cfb9
TS
7141 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
7142 "d,v,t", dreg, sreg, treg);
252b5132
RH
7143 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
7144 dreg, (int) BFD_RELOC_LO16);
7145 }
7146 return;
7147
7148 case M_SEQ_I:
7149 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7150 {
7151 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
7152 sreg, (int) BFD_RELOC_LO16);
7153 return;
7154 }
7155 if (sreg == 0)
7156 {
7157 as_warn (_("Instruction %s: result is always false"),
7158 ip->insn_mo->name);
ea1fb5dc 7159 move_register (&icnt, dreg, 0);
252b5132
RH
7160 return;
7161 }
7162 if (imm_expr.X_op == O_constant
7163 && imm_expr.X_add_number >= 0
7164 && imm_expr.X_add_number < 0x10000)
7165 {
7166 macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i", dreg,
7167 sreg, (int) BFD_RELOC_LO16);
7168 used_at = 0;
7169 }
7170 else if (imm_expr.X_op == O_constant
7171 && imm_expr.X_add_number > -0x8000
7172 && imm_expr.X_add_number < 0)
7173 {
7174 imm_expr.X_add_number = -imm_expr.X_add_number;
7175 macro_build ((char *) NULL, &icnt, &imm_expr,
ca4e0257 7176 HAVE_32BIT_GPRS ? "addiu" : "daddiu",
252b5132
RH
7177 "t,r,j", dreg, sreg,
7178 (int) BFD_RELOC_LO16);
7179 used_at = 0;
7180 }
7181 else
7182 {
4d34fb5f 7183 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7184 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
7185 "d,v,t", dreg, sreg, AT);
252b5132
RH
7186 used_at = 1;
7187 }
7188 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, dreg,
7189 (int) BFD_RELOC_LO16);
7190 if (used_at)
7191 break;
7192 return;
7193
7194 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
7195 s = "slt";
7196 goto sge;
7197 case M_SGEU:
7198 s = "sltu";
7199 sge:
2396cfb9
TS
7200 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
7201 dreg, sreg, treg);
252b5132
RH
7202 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
7203 (int) BFD_RELOC_LO16);
7204 return;
7205
7206 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
7207 case M_SGEU_I:
7208 if (imm_expr.X_op == O_constant
7209 && imm_expr.X_add_number >= -0x8000
7210 && imm_expr.X_add_number < 0x8000)
7211 {
7212 macro_build ((char *) NULL, &icnt, &imm_expr,
7213 mask == M_SGE_I ? "slti" : "sltiu",
7214 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
7215 used_at = 0;
7216 }
7217 else
7218 {
4d34fb5f 7219 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7220 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7221 mask == M_SGE_I ? "slt" : "sltu", "d,v,t", dreg, sreg,
7222 AT);
252b5132
RH
7223 used_at = 1;
7224 }
7225 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
7226 (int) BFD_RELOC_LO16);
7227 if (used_at)
7228 break;
7229 return;
7230
7231 case M_SGT: /* sreg > treg <==> treg < sreg */
7232 s = "slt";
7233 goto sgt;
7234 case M_SGTU:
7235 s = "sltu";
7236 sgt:
2396cfb9
TS
7237 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
7238 dreg, treg, sreg);
252b5132
RH
7239 return;
7240
7241 case M_SGT_I: /* sreg > I <==> I < sreg */
7242 s = "slt";
7243 goto sgti;
7244 case M_SGTU_I:
7245 s = "sltu";
7246 sgti:
4d34fb5f 7247 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7248 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
7249 dreg, AT, sreg);
252b5132
RH
7250 break;
7251
2396cfb9 7252 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
252b5132
RH
7253 s = "slt";
7254 goto sle;
7255 case M_SLEU:
7256 s = "sltu";
7257 sle:
2396cfb9
TS
7258 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
7259 dreg, treg, sreg);
252b5132
RH
7260 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
7261 (int) BFD_RELOC_LO16);
7262 return;
7263
2396cfb9 7264 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
252b5132
RH
7265 s = "slt";
7266 goto slei;
7267 case M_SLEU_I:
7268 s = "sltu";
7269 slei:
4d34fb5f 7270 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7271 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
7272 dreg, AT, sreg);
252b5132
RH
7273 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
7274 (int) BFD_RELOC_LO16);
7275 break;
7276
7277 case M_SLT_I:
7278 if (imm_expr.X_op == O_constant
7279 && imm_expr.X_add_number >= -0x8000
7280 && imm_expr.X_add_number < 0x8000)
7281 {
7282 macro_build ((char *) NULL, &icnt, &imm_expr, "slti", "t,r,j",
7283 dreg, sreg, (int) BFD_RELOC_LO16);
7284 return;
7285 }
4d34fb5f 7286 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7287 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
7288 dreg, sreg, AT);
252b5132
RH
7289 break;
7290
7291 case M_SLTU_I:
7292 if (imm_expr.X_op == O_constant
7293 && imm_expr.X_add_number >= -0x8000
7294 && imm_expr.X_add_number < 0x8000)
7295 {
7296 macro_build ((char *) NULL, &icnt, &imm_expr, "sltiu", "t,r,j",
7297 dreg, sreg, (int) BFD_RELOC_LO16);
7298 return;
7299 }
4d34fb5f 7300 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7301 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
7302 "d,v,t", dreg, sreg, AT);
252b5132
RH
7303 break;
7304
7305 case M_SNE:
7306 if (sreg == 0)
2396cfb9
TS
7307 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
7308 "d,v,t", dreg, 0, treg);
252b5132 7309 else if (treg == 0)
2396cfb9
TS
7310 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
7311 "d,v,t", dreg, 0, sreg);
252b5132
RH
7312 else
7313 {
2396cfb9
TS
7314 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
7315 "d,v,t", dreg, sreg, treg);
7316 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
7317 "d,v,t", dreg, 0, dreg);
252b5132
RH
7318 }
7319 return;
7320
7321 case M_SNE_I:
7322 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
7323 {
2396cfb9
TS
7324 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
7325 "d,v,t", dreg, 0, sreg);
252b5132
RH
7326 return;
7327 }
7328 if (sreg == 0)
7329 {
7330 as_warn (_("Instruction %s: result is always true"),
7331 ip->insn_mo->name);
7332 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 7333 HAVE_32BIT_GPRS ? "addiu" : "daddiu",
252b5132
RH
7334 "t,r,j", dreg, 0, (int) BFD_RELOC_LO16);
7335 return;
7336 }
7337 if (imm_expr.X_op == O_constant
7338 && imm_expr.X_add_number >= 0
7339 && imm_expr.X_add_number < 0x10000)
7340 {
7341 macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i",
7342 dreg, sreg, (int) BFD_RELOC_LO16);
7343 used_at = 0;
7344 }
7345 else if (imm_expr.X_op == O_constant
7346 && imm_expr.X_add_number > -0x8000
7347 && imm_expr.X_add_number < 0)
7348 {
7349 imm_expr.X_add_number = -imm_expr.X_add_number;
7350 macro_build ((char *) NULL, &icnt, &imm_expr,
ca4e0257 7351 HAVE_32BIT_GPRS ? "addiu" : "daddiu",
252b5132
RH
7352 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
7353 used_at = 0;
7354 }
7355 else
7356 {
4d34fb5f 7357 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7358 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
7359 "d,v,t", dreg, sreg, AT);
252b5132
RH
7360 used_at = 1;
7361 }
2396cfb9
TS
7362 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
7363 "d,v,t", dreg, 0, dreg);
252b5132
RH
7364 if (used_at)
7365 break;
7366 return;
7367
7368 case M_DSUB_I:
7369 dbl = 1;
7370 case M_SUB_I:
7371 if (imm_expr.X_op == O_constant
7372 && imm_expr.X_add_number > -0x8000
7373 && imm_expr.X_add_number <= 0x8000)
7374 {
7375 imm_expr.X_add_number = -imm_expr.X_add_number;
7376 macro_build ((char *) NULL, &icnt, &imm_expr,
7377 dbl ? "daddi" : "addi",
7378 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
7379 return;
7380 }
7381 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 7382 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 7383 dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
252b5132
RH
7384 break;
7385
7386 case M_DSUBU_I:
7387 dbl = 1;
7388 case M_SUBU_I:
7389 if (imm_expr.X_op == O_constant
7390 && imm_expr.X_add_number > -0x8000
7391 && imm_expr.X_add_number <= 0x8000)
7392 {
7393 imm_expr.X_add_number = -imm_expr.X_add_number;
7394 macro_build ((char *) NULL, &icnt, &imm_expr,
7395 dbl ? "daddiu" : "addiu",
7396 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
7397 return;
7398 }
7399 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 7400 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 7401 dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
252b5132
RH
7402 break;
7403
7404 case M_TEQ_I:
7405 s = "teq";
7406 goto trap;
7407 case M_TGE_I:
7408 s = "tge";
7409 goto trap;
7410 case M_TGEU_I:
7411 s = "tgeu";
7412 goto trap;
7413 case M_TLT_I:
7414 s = "tlt";
7415 goto trap;
7416 case M_TLTU_I:
7417 s = "tltu";
7418 goto trap;
7419 case M_TNE_I:
7420 s = "tne";
7421 trap:
4d34fb5f 7422 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7423 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "s,t", sreg,
7424 AT);
252b5132
RH
7425 break;
7426
252b5132 7427 case M_TRUNCWS:
43841e91 7428 case M_TRUNCWD:
e7af610e 7429 assert (mips_opts.isa == ISA_MIPS1);
252b5132
RH
7430 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
7431 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
7432
7433 /*
7434 * Is the double cfc1 instruction a bug in the mips assembler;
7435 * or is there a reason for it?
7436 */
b34976b6 7437 mips_emit_delays (TRUE);
252b5132
RH
7438 ++mips_opts.noreorder;
7439 mips_any_noreorder = 1;
2396cfb9 7440 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "cfc1", "t,G",
f9419b05 7441 treg, RA);
2396cfb9 7442 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "cfc1", "t,G",
f9419b05 7443 treg, RA);
2396cfb9 7444 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
252b5132
RH
7445 expr1.X_add_number = 3;
7446 macro_build ((char *) NULL, &icnt, &expr1, "ori", "t,r,i", AT, treg,
7447 (int) BFD_RELOC_LO16);
7448 expr1.X_add_number = 2;
7449 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", AT, AT,
7450 (int) BFD_RELOC_LO16);
2396cfb9 7451 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "ctc1", "t,G",
f9419b05 7452 AT, RA);
2396cfb9
TS
7453 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
7454 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
252b5132 7455 mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S", dreg, sreg);
2396cfb9 7456 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "ctc1", "t,G",
f9419b05 7457 treg, RA);
2396cfb9 7458 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
252b5132
RH
7459 --mips_opts.noreorder;
7460 break;
7461
7462 case M_ULH:
7463 s = "lb";
7464 goto ulh;
7465 case M_ULHU:
7466 s = "lbu";
7467 ulh:
7468 if (offset_expr.X_add_number >= 0x7fff)
7469 as_bad (_("operand overflow"));
7470 /* avoid load delay */
7471 if (! target_big_endian)
f9419b05 7472 ++offset_expr.X_add_number;
252b5132
RH
7473 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
7474 (int) BFD_RELOC_LO16, breg);
7475 if (! target_big_endian)
f9419b05 7476 --offset_expr.X_add_number;
252b5132 7477 else
f9419b05 7478 ++offset_expr.X_add_number;
252b5132
RH
7479 macro_build ((char *) NULL, &icnt, &offset_expr, "lbu", "t,o(b)", AT,
7480 (int) BFD_RELOC_LO16, breg);
2396cfb9
TS
7481 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
7482 treg, treg, 8);
7483 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
7484 treg, treg, AT);
252b5132
RH
7485 break;
7486
7487 case M_ULD:
7488 s = "ldl";
7489 s2 = "ldr";
7490 off = 7;
7491 goto ulw;
7492 case M_ULW:
7493 s = "lwl";
7494 s2 = "lwr";
7495 off = 3;
7496 ulw:
7497 if (offset_expr.X_add_number >= 0x8000 - off)
7498 as_bad (_("operand overflow"));
7499 if (! target_big_endian)
7500 offset_expr.X_add_number += off;
7501 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
7502 (int) BFD_RELOC_LO16, breg);
7503 if (! target_big_endian)
7504 offset_expr.X_add_number -= off;
7505 else
7506 offset_expr.X_add_number += off;
7507 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
7508 (int) BFD_RELOC_LO16, breg);
7509 return;
7510
7511 case M_ULD_A:
7512 s = "ldl";
7513 s2 = "ldr";
7514 off = 7;
7515 goto ulwa;
7516 case M_ULW_A:
7517 s = "lwl";
7518 s2 = "lwr";
7519 off = 3;
7520 ulwa:
d6bc6245 7521 used_at = 1;
c9914766 7522 load_address (&icnt, AT, &offset_expr, &used_at);
252b5132
RH
7523 if (breg != 0)
7524 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 7525 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
7526 "d,v,t", AT, AT, breg);
7527 if (! target_big_endian)
7528 expr1.X_add_number = off;
7529 else
7530 expr1.X_add_number = 0;
7531 macro_build ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
7532 (int) BFD_RELOC_LO16, AT);
7533 if (! target_big_endian)
7534 expr1.X_add_number = 0;
7535 else
7536 expr1.X_add_number = off;
7537 macro_build ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
7538 (int) BFD_RELOC_LO16, AT);
7539 break;
7540
7541 case M_ULH_A:
7542 case M_ULHU_A:
d6bc6245 7543 used_at = 1;
c9914766 7544 load_address (&icnt, AT, &offset_expr, &used_at);
252b5132
RH
7545 if (breg != 0)
7546 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 7547 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
7548 "d,v,t", AT, AT, breg);
7549 if (target_big_endian)
7550 expr1.X_add_number = 0;
7551 macro_build ((char *) NULL, &icnt, &expr1,
7552 mask == M_ULH_A ? "lb" : "lbu", "t,o(b)", treg,
7553 (int) BFD_RELOC_LO16, AT);
7554 if (target_big_endian)
7555 expr1.X_add_number = 1;
7556 else
7557 expr1.X_add_number = 0;
7558 macro_build ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
7559 (int) BFD_RELOC_LO16, AT);
2396cfb9
TS
7560 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
7561 treg, treg, 8);
7562 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
7563 treg, treg, AT);
252b5132
RH
7564 break;
7565
7566 case M_USH:
7567 if (offset_expr.X_add_number >= 0x7fff)
7568 as_bad (_("operand overflow"));
7569 if (target_big_endian)
f9419b05 7570 ++offset_expr.X_add_number;
252b5132
RH
7571 macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", treg,
7572 (int) BFD_RELOC_LO16, breg);
2396cfb9
TS
7573 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
7574 AT, treg, 8);
252b5132 7575 if (target_big_endian)
f9419b05 7576 --offset_expr.X_add_number;
252b5132 7577 else
f9419b05 7578 ++offset_expr.X_add_number;
252b5132
RH
7579 macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", AT,
7580 (int) BFD_RELOC_LO16, breg);
7581 break;
7582
7583 case M_USD:
7584 s = "sdl";
7585 s2 = "sdr";
7586 off = 7;
7587 goto usw;
7588 case M_USW:
7589 s = "swl";
7590 s2 = "swr";
7591 off = 3;
7592 usw:
7593 if (offset_expr.X_add_number >= 0x8000 - off)
7594 as_bad (_("operand overflow"));
7595 if (! target_big_endian)
7596 offset_expr.X_add_number += off;
7597 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
7598 (int) BFD_RELOC_LO16, breg);
7599 if (! target_big_endian)
7600 offset_expr.X_add_number -= off;
7601 else
7602 offset_expr.X_add_number += off;
7603 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
7604 (int) BFD_RELOC_LO16, breg);
7605 return;
7606
7607 case M_USD_A:
7608 s = "sdl";
7609 s2 = "sdr";
7610 off = 7;
7611 goto uswa;
7612 case M_USW_A:
7613 s = "swl";
7614 s2 = "swr";
7615 off = 3;
7616 uswa:
d6bc6245 7617 used_at = 1;
c9914766 7618 load_address (&icnt, AT, &offset_expr, &used_at);
252b5132
RH
7619 if (breg != 0)
7620 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 7621 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
7622 "d,v,t", AT, AT, breg);
7623 if (! target_big_endian)
7624 expr1.X_add_number = off;
7625 else
7626 expr1.X_add_number = 0;
7627 macro_build ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
7628 (int) BFD_RELOC_LO16, AT);
7629 if (! target_big_endian)
7630 expr1.X_add_number = 0;
7631 else
7632 expr1.X_add_number = off;
7633 macro_build ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
7634 (int) BFD_RELOC_LO16, AT);
7635 break;
7636
7637 case M_USH_A:
d6bc6245 7638 used_at = 1;
c9914766 7639 load_address (&icnt, AT, &offset_expr, &used_at);
252b5132
RH
7640 if (breg != 0)
7641 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 7642 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
7643 "d,v,t", AT, AT, breg);
7644 if (! target_big_endian)
7645 expr1.X_add_number = 0;
7646 macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
7647 (int) BFD_RELOC_LO16, AT);
2396cfb9
TS
7648 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
7649 treg, treg, 8);
252b5132
RH
7650 if (! target_big_endian)
7651 expr1.X_add_number = 1;
7652 else
7653 expr1.X_add_number = 0;
7654 macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
7655 (int) BFD_RELOC_LO16, AT);
7656 if (! target_big_endian)
7657 expr1.X_add_number = 0;
7658 else
7659 expr1.X_add_number = 1;
7660 macro_build ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
7661 (int) BFD_RELOC_LO16, AT);
2396cfb9
TS
7662 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
7663 treg, treg, 8);
7664 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
7665 treg, treg, AT);
252b5132
RH
7666 break;
7667
7668 default:
7669 /* FIXME: Check if this is one of the itbl macros, since they
bdaaa2e1 7670 are added dynamically. */
252b5132
RH
7671 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
7672 break;
7673 }
7674 if (mips_opts.noat)
7675 as_warn (_("Macro used $at after \".set noat\""));
7676}
7677
7678/* Implement macros in mips16 mode. */
7679
7680static void
7681mips16_macro (ip)
7682 struct mips_cl_insn *ip;
7683{
7684 int mask;
7685 int xreg, yreg, zreg, tmp;
7686 int icnt;
7687 expressionS expr1;
7688 int dbl;
7689 const char *s, *s2, *s3;
7690
7691 mask = ip->insn_mo->mask;
7692
7693 xreg = (ip->insn_opcode >> MIPS16OP_SH_RX) & MIPS16OP_MASK_RX;
7694 yreg = (ip->insn_opcode >> MIPS16OP_SH_RY) & MIPS16OP_MASK_RY;
7695 zreg = (ip->insn_opcode >> MIPS16OP_SH_RZ) & MIPS16OP_MASK_RZ;
7696
7697 icnt = 0;
7698
7699 expr1.X_op = O_constant;
7700 expr1.X_op_symbol = NULL;
7701 expr1.X_add_symbol = NULL;
7702 expr1.X_add_number = 1;
7703
7704 dbl = 0;
7705
7706 switch (mask)
7707 {
7708 default:
7709 internalError ();
7710
7711 case M_DDIV_3:
7712 dbl = 1;
7713 case M_DIV_3:
7714 s = "mflo";
7715 goto do_div3;
7716 case M_DREM_3:
7717 dbl = 1;
7718 case M_REM_3:
7719 s = "mfhi";
7720 do_div3:
b34976b6 7721 mips_emit_delays (TRUE);
252b5132
RH
7722 ++mips_opts.noreorder;
7723 mips_any_noreorder = 1;
2396cfb9 7724 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
252b5132
RH
7725 dbl ? "ddiv" : "div",
7726 "0,x,y", xreg, yreg);
7727 expr1.X_add_number = 2;
7728 macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
2396cfb9
TS
7729 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break", "6",
7730 7);
bdaaa2e1 7731
252b5132
RH
7732 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
7733 since that causes an overflow. We should do that as well,
7734 but I don't see how to do the comparisons without a temporary
7735 register. */
7736 --mips_opts.noreorder;
2396cfb9 7737 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "x", zreg);
252b5132
RH
7738 break;
7739
7740 case M_DIVU_3:
7741 s = "divu";
7742 s2 = "mflo";
7743 goto do_divu3;
7744 case M_REMU_3:
7745 s = "divu";
7746 s2 = "mfhi";
7747 goto do_divu3;
7748 case M_DDIVU_3:
7749 s = "ddivu";
7750 s2 = "mflo";
7751 goto do_divu3;
7752 case M_DREMU_3:
7753 s = "ddivu";
7754 s2 = "mfhi";
7755 do_divu3:
b34976b6 7756 mips_emit_delays (TRUE);
252b5132
RH
7757 ++mips_opts.noreorder;
7758 mips_any_noreorder = 1;
2396cfb9
TS
7759 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "0,x,y",
7760 xreg, yreg);
252b5132
RH
7761 expr1.X_add_number = 2;
7762 macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
98d3f06f
KH
7763 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
7764 "6", 7);
252b5132 7765 --mips_opts.noreorder;
2396cfb9 7766 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "x", zreg);
252b5132
RH
7767 break;
7768
7769 case M_DMUL:
7770 dbl = 1;
7771 case M_MUL:
2396cfb9 7772 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 7773 dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
2396cfb9
TS
7774 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "x",
7775 zreg);
252b5132
RH
7776 return;
7777
7778 case M_DSUBU_I:
7779 dbl = 1;
7780 goto do_subu;
7781 case M_SUBU_I:
7782 do_subu:
7783 if (imm_expr.X_op != O_constant)
7784 as_bad (_("Unsupported large constant"));
7785 imm_expr.X_add_number = -imm_expr.X_add_number;
7786 macro_build ((char *) NULL, &icnt, &imm_expr,
9a41af64 7787 dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
252b5132
RH
7788 break;
7789
7790 case M_SUBU_I_2:
7791 if (imm_expr.X_op != O_constant)
7792 as_bad (_("Unsupported large constant"));
7793 imm_expr.X_add_number = -imm_expr.X_add_number;
7794 macro_build ((char *) NULL, &icnt, &imm_expr, "addiu",
7795 "x,k", xreg);
7796 break;
7797
7798 case M_DSUBU_I_2:
7799 if (imm_expr.X_op != O_constant)
7800 as_bad (_("Unsupported large constant"));
7801 imm_expr.X_add_number = -imm_expr.X_add_number;
7802 macro_build ((char *) NULL, &icnt, &imm_expr, "daddiu",
7803 "y,j", yreg);
7804 break;
7805
7806 case M_BEQ:
7807 s = "cmp";
7808 s2 = "bteqz";
7809 goto do_branch;
7810 case M_BNE:
7811 s = "cmp";
7812 s2 = "btnez";
7813 goto do_branch;
7814 case M_BLT:
7815 s = "slt";
7816 s2 = "btnez";
7817 goto do_branch;
7818 case M_BLTU:
7819 s = "sltu";
7820 s2 = "btnez";
7821 goto do_branch;
7822 case M_BLE:
7823 s = "slt";
7824 s2 = "bteqz";
7825 goto do_reverse_branch;
7826 case M_BLEU:
7827 s = "sltu";
7828 s2 = "bteqz";
7829 goto do_reverse_branch;
7830 case M_BGE:
7831 s = "slt";
7832 s2 = "bteqz";
7833 goto do_branch;
7834 case M_BGEU:
7835 s = "sltu";
7836 s2 = "bteqz";
7837 goto do_branch;
7838 case M_BGT:
7839 s = "slt";
7840 s2 = "btnez";
7841 goto do_reverse_branch;
7842 case M_BGTU:
7843 s = "sltu";
7844 s2 = "btnez";
7845
7846 do_reverse_branch:
7847 tmp = xreg;
7848 xreg = yreg;
7849 yreg = tmp;
7850
7851 do_branch:
7852 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "x,y",
7853 xreg, yreg);
7854 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
7855 break;
7856
7857 case M_BEQ_I:
7858 s = "cmpi";
7859 s2 = "bteqz";
7860 s3 = "x,U";
7861 goto do_branch_i;
7862 case M_BNE_I:
7863 s = "cmpi";
7864 s2 = "btnez";
7865 s3 = "x,U";
7866 goto do_branch_i;
7867 case M_BLT_I:
7868 s = "slti";
7869 s2 = "btnez";
7870 s3 = "x,8";
7871 goto do_branch_i;
7872 case M_BLTU_I:
7873 s = "sltiu";
7874 s2 = "btnez";
7875 s3 = "x,8";
7876 goto do_branch_i;
7877 case M_BLE_I:
7878 s = "slti";
7879 s2 = "btnez";
7880 s3 = "x,8";
7881 goto do_addone_branch_i;
7882 case M_BLEU_I:
7883 s = "sltiu";
7884 s2 = "btnez";
7885 s3 = "x,8";
7886 goto do_addone_branch_i;
7887 case M_BGE_I:
7888 s = "slti";
7889 s2 = "bteqz";
7890 s3 = "x,8";
7891 goto do_branch_i;
7892 case M_BGEU_I:
7893 s = "sltiu";
7894 s2 = "bteqz";
7895 s3 = "x,8";
7896 goto do_branch_i;
7897 case M_BGT_I:
7898 s = "slti";
7899 s2 = "bteqz";
7900 s3 = "x,8";
7901 goto do_addone_branch_i;
7902 case M_BGTU_I:
7903 s = "sltiu";
7904 s2 = "bteqz";
7905 s3 = "x,8";
7906
7907 do_addone_branch_i:
7908 if (imm_expr.X_op != O_constant)
7909 as_bad (_("Unsupported large constant"));
7910 ++imm_expr.X_add_number;
7911
7912 do_branch_i:
7913 macro_build ((char *) NULL, &icnt, &imm_expr, s, s3, xreg);
7914 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
7915 break;
7916
7917 case M_ABS:
7918 expr1.X_add_number = 0;
98d3f06f 7919 macro_build ((char *) NULL, &icnt, &expr1, "slti", "x,8", yreg);
252b5132 7920 if (xreg != yreg)
ea1fb5dc 7921 move_register (&icnt, xreg, yreg);
252b5132
RH
7922 expr1.X_add_number = 2;
7923 macro_build ((char *) NULL, &icnt, &expr1, "bteqz", "p");
7924 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7925 "neg", "x,w", xreg, xreg);
7926 }
7927}
7928
7929/* For consistency checking, verify that all bits are specified either
7930 by the match/mask part of the instruction definition, or by the
7931 operand list. */
7932static int
7933validate_mips_insn (opc)
7934 const struct mips_opcode *opc;
7935{
7936 const char *p = opc->args;
7937 char c;
7938 unsigned long used_bits = opc->mask;
7939
7940 if ((used_bits & opc->match) != opc->match)
7941 {
7942 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
7943 opc->name, opc->args);
7944 return 0;
7945 }
7946#define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
7947 while (*p)
7948 switch (c = *p++)
7949 {
7950 case ',': break;
7951 case '(': break;
7952 case ')': break;
7953 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7954 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7955 case 'A': break;
4372b673 7956 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
252b5132
RH
7957 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
7958 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7959 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7960 case 'F': break;
7961 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
156c2f8b 7962 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
252b5132 7963 case 'I': break;
e972090a 7964 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
252b5132
RH
7965 case 'L': break;
7966 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
7967 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
deec1734
CD
7968 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
7969 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
7970 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
7971 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
7972 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7973 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7974 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7975 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
deec1734
CD
7976 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7977 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7978 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
7979 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
7980 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7981 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
7982 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7983 case 'f': break;
7984 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
7985 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7986 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7987 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
7988 case 'l': break;
7989 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7990 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7991 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
7992 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7993 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7994 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7995 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7996 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7997 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7998 case 'x': break;
7999 case 'z': break;
8000 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
4372b673
NC
8001 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
8002 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
60b63b72
RS
8003 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
8004 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
8005 case '[': break;
8006 case ']': break;
252b5132
RH
8007 default:
8008 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
8009 c, opc->name, opc->args);
8010 return 0;
8011 }
8012#undef USE_BITS
8013 if (used_bits != 0xffffffff)
8014 {
8015 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
8016 ~used_bits & 0xffffffff, opc->name, opc->args);
8017 return 0;
8018 }
8019 return 1;
8020}
8021
8022/* This routine assembles an instruction into its binary format. As a
8023 side effect, it sets one of the global variables imm_reloc or
8024 offset_reloc to the type of relocation to do if one of the operands
8025 is an address expression. */
8026
8027static void
8028mips_ip (str, ip)
8029 char *str;
8030 struct mips_cl_insn *ip;
8031{
8032 char *s;
8033 const char *args;
43841e91 8034 char c = 0;
252b5132
RH
8035 struct mips_opcode *insn;
8036 char *argsStart;
8037 unsigned int regno;
8038 unsigned int lastregno = 0;
8039 char *s_reset;
8040 char save_c = 0;
252b5132
RH
8041
8042 insn_error = NULL;
8043
8044 /* If the instruction contains a '.', we first try to match an instruction
8045 including the '.'. Then we try again without the '.'. */
8046 insn = NULL;
3882b010 8047 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
252b5132
RH
8048 continue;
8049
8050 /* If we stopped on whitespace, then replace the whitespace with null for
8051 the call to hash_find. Save the character we replaced just in case we
8052 have to re-parse the instruction. */
3882b010 8053 if (ISSPACE (*s))
252b5132
RH
8054 {
8055 save_c = *s;
8056 *s++ = '\0';
8057 }
bdaaa2e1 8058
252b5132
RH
8059 insn = (struct mips_opcode *) hash_find (op_hash, str);
8060
8061 /* If we didn't find the instruction in the opcode table, try again, but
8062 this time with just the instruction up to, but not including the
8063 first '.'. */
8064 if (insn == NULL)
8065 {
bdaaa2e1 8066 /* Restore the character we overwrite above (if any). */
252b5132
RH
8067 if (save_c)
8068 *(--s) = save_c;
8069
8070 /* Scan up to the first '.' or whitespace. */
3882b010
L
8071 for (s = str;
8072 *s != '\0' && *s != '.' && !ISSPACE (*s);
8073 ++s)
252b5132
RH
8074 continue;
8075
8076 /* If we did not find a '.', then we can quit now. */
8077 if (*s != '.')
8078 {
8079 insn_error = "unrecognized opcode";
8080 return;
8081 }
8082
8083 /* Lookup the instruction in the hash table. */
8084 *s++ = '\0';
8085 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
8086 {
8087 insn_error = "unrecognized opcode";
8088 return;
8089 }
252b5132
RH
8090 }
8091
8092 argsStart = s;
8093 for (;;)
8094 {
b34976b6 8095 bfd_boolean ok;
252b5132
RH
8096
8097 assert (strcmp (insn->name, str) == 0);
8098
1f25f5d3
CD
8099 if (OPCODE_IS_MEMBER (insn,
8100 (mips_opts.isa
3396de36 8101 | (file_ase_mips16 ? INSN_MIPS16 : 0)
deec1734 8102 | (mips_opts.ase_mdmx ? INSN_MDMX : 0)
98d3f06f 8103 | (mips_opts.ase_mips3d ? INSN_MIPS3D : 0)),
1f25f5d3 8104 mips_arch))
b34976b6 8105 ok = TRUE;
bdaaa2e1 8106 else
b34976b6 8107 ok = FALSE;
bdaaa2e1 8108
252b5132
RH
8109 if (insn->pinfo != INSN_MACRO)
8110 {
ec68c924 8111 if (mips_arch == CPU_R4650 && (insn->pinfo & FP_D) != 0)
b34976b6 8112 ok = FALSE;
252b5132
RH
8113 }
8114
8115 if (! ok)
8116 {
8117 if (insn + 1 < &mips_opcodes[NUMOPCODES]
8118 && strcmp (insn->name, insn[1].name) == 0)
8119 {
8120 ++insn;
8121 continue;
8122 }
252b5132 8123 else
beae10d5 8124 {
268f6bed
L
8125 if (!insn_error)
8126 {
8127 static char buf[100];
316f5878
RS
8128 if (mips_arch_info->is_isa)
8129 sprintf (buf,
8130 _("opcode not supported at this ISA level (%s)"),
8131 mips_cpu_info_from_isa (mips_opts.isa)->name);
8132 else
8133 sprintf (buf,
8134 _("opcode not supported on this processor: %s (%s)"),
8135 mips_arch_info->name,
8136 mips_cpu_info_from_isa (mips_opts.isa)->name);
268f6bed
L
8137 insn_error = buf;
8138 }
8139 if (save_c)
8140 *(--s) = save_c;
2bd7f1f3 8141 return;
252b5132 8142 }
252b5132
RH
8143 }
8144
8145 ip->insn_mo = insn;
8146 ip->insn_opcode = insn->match;
268f6bed 8147 insn_error = NULL;
252b5132
RH
8148 for (args = insn->args;; ++args)
8149 {
deec1734
CD
8150 int is_mdmx;
8151
ad8d3bb3 8152 s += strspn (s, " \t");
deec1734 8153 is_mdmx = 0;
252b5132
RH
8154 switch (*args)
8155 {
8156 case '\0': /* end of args */
8157 if (*s == '\0')
8158 return;
8159 break;
8160
8161 case ',':
8162 if (*s++ == *args)
8163 continue;
8164 s--;
8165 switch (*++args)
8166 {
8167 case 'r':
8168 case 'v':
38487616 8169 ip->insn_opcode |= lastregno << OP_SH_RS;
252b5132
RH
8170 continue;
8171
8172 case 'w':
38487616
TS
8173 ip->insn_opcode |= lastregno << OP_SH_RT;
8174 continue;
8175
252b5132 8176 case 'W':
38487616 8177 ip->insn_opcode |= lastregno << OP_SH_FT;
252b5132
RH
8178 continue;
8179
8180 case 'V':
38487616 8181 ip->insn_opcode |= lastregno << OP_SH_FS;
252b5132
RH
8182 continue;
8183 }
8184 break;
8185
8186 case '(':
8187 /* Handle optional base register.
8188 Either the base register is omitted or
bdaaa2e1 8189 we must have a left paren. */
252b5132
RH
8190 /* This is dependent on the next operand specifier
8191 is a base register specification. */
8192 assert (args[1] == 'b' || args[1] == '5'
8193 || args[1] == '-' || args[1] == '4');
8194 if (*s == '\0')
8195 return;
8196
8197 case ')': /* these must match exactly */
60b63b72
RS
8198 case '[':
8199 case ']':
252b5132
RH
8200 if (*s++ == *args)
8201 continue;
8202 break;
8203
8204 case '<': /* must be at least one digit */
8205 /*
8206 * According to the manual, if the shift amount is greater
b6ff326e
KH
8207 * than 31 or less than 0, then the shift amount should be
8208 * mod 32. In reality the mips assembler issues an error.
252b5132
RH
8209 * We issue a warning and mask out all but the low 5 bits.
8210 */
8211 my_getExpression (&imm_expr, s);
8212 check_absolute_expr (ip, &imm_expr);
8213 if ((unsigned long) imm_expr.X_add_number > 31)
8214 {
793b27f4
TS
8215 as_warn (_("Improper shift amount (%lu)"),
8216 (unsigned long) imm_expr.X_add_number);
38487616 8217 imm_expr.X_add_number &= OP_MASK_SHAMT;
252b5132 8218 }
38487616 8219 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_SHAMT;
252b5132
RH
8220 imm_expr.X_op = O_absent;
8221 s = expr_end;
8222 continue;
8223
8224 case '>': /* shift amount minus 32 */
8225 my_getExpression (&imm_expr, s);
8226 check_absolute_expr (ip, &imm_expr);
8227 if ((unsigned long) imm_expr.X_add_number < 32
8228 || (unsigned long) imm_expr.X_add_number > 63)
8229 break;
38487616 8230 ip->insn_opcode |= (imm_expr.X_add_number - 32) << OP_SH_SHAMT;
252b5132
RH
8231 imm_expr.X_op = O_absent;
8232 s = expr_end;
8233 continue;
8234
252b5132
RH
8235 case 'k': /* cache code */
8236 case 'h': /* prefx code */
8237 my_getExpression (&imm_expr, s);
8238 check_absolute_expr (ip, &imm_expr);
8239 if ((unsigned long) imm_expr.X_add_number > 31)
8240 {
8241 as_warn (_("Invalid value for `%s' (%lu)"),
8242 ip->insn_mo->name,
8243 (unsigned long) imm_expr.X_add_number);
8244 imm_expr.X_add_number &= 0x1f;
8245 }
8246 if (*args == 'k')
8247 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CACHE;
8248 else
8249 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_PREFX;
8250 imm_expr.X_op = O_absent;
8251 s = expr_end;
8252 continue;
8253
8254 case 'c': /* break code */
8255 my_getExpression (&imm_expr, s);
8256 check_absolute_expr (ip, &imm_expr);
793b27f4 8257 if ((unsigned long) imm_expr.X_add_number > 1023)
252b5132 8258 {
793b27f4
TS
8259 as_warn (_("Illegal break code (%lu)"),
8260 (unsigned long) imm_expr.X_add_number);
38487616 8261 imm_expr.X_add_number &= OP_MASK_CODE;
252b5132 8262 }
38487616 8263 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE;
252b5132
RH
8264 imm_expr.X_op = O_absent;
8265 s = expr_end;
8266 continue;
8267
8268 case 'q': /* lower break code */
8269 my_getExpression (&imm_expr, s);
8270 check_absolute_expr (ip, &imm_expr);
793b27f4 8271 if ((unsigned long) imm_expr.X_add_number > 1023)
252b5132 8272 {
793b27f4
TS
8273 as_warn (_("Illegal lower break code (%lu)"),
8274 (unsigned long) imm_expr.X_add_number);
38487616 8275 imm_expr.X_add_number &= OP_MASK_CODE2;
252b5132 8276 }
38487616 8277 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE2;
252b5132
RH
8278 imm_expr.X_op = O_absent;
8279 s = expr_end;
8280 continue;
8281
4372b673 8282 case 'B': /* 20-bit syscall/break code. */
156c2f8b 8283 my_getExpression (&imm_expr, s);
156c2f8b 8284 check_absolute_expr (ip, &imm_expr);
793b27f4
TS
8285 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
8286 as_warn (_("Illegal 20-bit code (%lu)"),
8287 (unsigned long) imm_expr.X_add_number);
38487616 8288 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE20;
252b5132
RH
8289 imm_expr.X_op = O_absent;
8290 s = expr_end;
8291 continue;
8292
98d3f06f 8293 case 'C': /* Coprocessor code */
beae10d5 8294 my_getExpression (&imm_expr, s);
252b5132 8295 check_absolute_expr (ip, &imm_expr);
98d3f06f 8296 if ((unsigned long) imm_expr.X_add_number >= (1 << 25))
252b5132 8297 {
793b27f4
TS
8298 as_warn (_("Coproccesor code > 25 bits (%lu)"),
8299 (unsigned long) imm_expr.X_add_number);
98d3f06f 8300 imm_expr.X_add_number &= ((1 << 25) - 1);
252b5132 8301 }
beae10d5
KH
8302 ip->insn_opcode |= imm_expr.X_add_number;
8303 imm_expr.X_op = O_absent;
8304 s = expr_end;
8305 continue;
252b5132 8306
4372b673
NC
8307 case 'J': /* 19-bit wait code. */
8308 my_getExpression (&imm_expr, s);
8309 check_absolute_expr (ip, &imm_expr);
793b27f4
TS
8310 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
8311 as_warn (_("Illegal 19-bit code (%lu)"),
8312 (unsigned long) imm_expr.X_add_number);
38487616 8313 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE19;
4372b673
NC
8314 imm_expr.X_op = O_absent;
8315 s = expr_end;
8316 continue;
8317
252b5132 8318 case 'P': /* Performance register */
beae10d5 8319 my_getExpression (&imm_expr, s);
252b5132 8320 check_absolute_expr (ip, &imm_expr);
beae10d5 8321 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
252b5132 8322 {
793b27f4
TS
8323 as_warn (_("Invalid performance register (%lu)"),
8324 (unsigned long) imm_expr.X_add_number);
38487616 8325 imm_expr.X_add_number &= OP_MASK_PERFREG;
252b5132 8326 }
38487616 8327 ip->insn_opcode |= (imm_expr.X_add_number << OP_SH_PERFREG);
beae10d5
KH
8328 imm_expr.X_op = O_absent;
8329 s = expr_end;
8330 continue;
252b5132
RH
8331
8332 case 'b': /* base register */
8333 case 'd': /* destination register */
8334 case 's': /* source register */
8335 case 't': /* target register */
8336 case 'r': /* both target and source */
8337 case 'v': /* both dest and source */
8338 case 'w': /* both dest and target */
8339 case 'E': /* coprocessor target register */
8340 case 'G': /* coprocessor destination register */
8341 case 'x': /* ignore register name */
8342 case 'z': /* must be zero register */
4372b673 8343 case 'U': /* destination register (clo/clz). */
252b5132
RH
8344 s_reset = s;
8345 if (s[0] == '$')
8346 {
8347
3882b010 8348 if (ISDIGIT (s[1]))
252b5132
RH
8349 {
8350 ++s;
8351 regno = 0;
8352 do
8353 {
8354 regno *= 10;
8355 regno += *s - '0';
8356 ++s;
8357 }
3882b010 8358 while (ISDIGIT (*s));
252b5132
RH
8359 if (regno > 31)
8360 as_bad (_("Invalid register number (%d)"), regno);
8361 }
8362 else if (*args == 'E' || *args == 'G')
8363 goto notreg;
8364 else
8365 {
76db943d
TS
8366 if (s[1] == 'r' && s[2] == 'a')
8367 {
8368 s += 3;
8369 regno = RA;
8370 }
8371 else if (s[1] == 'f' && s[2] == 'p')
252b5132
RH
8372 {
8373 s += 3;
8374 regno = FP;
8375 }
8376 else if (s[1] == 's' && s[2] == 'p')
8377 {
8378 s += 3;
8379 regno = SP;
8380 }
8381 else if (s[1] == 'g' && s[2] == 'p')
8382 {
8383 s += 3;
8384 regno = GP;
8385 }
8386 else if (s[1] == 'a' && s[2] == 't')
8387 {
8388 s += 3;
8389 regno = AT;
8390 }
8391 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
8392 {
8393 s += 4;
8394 regno = KT0;
8395 }
8396 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
8397 {
8398 s += 4;
8399 regno = KT1;
8400 }
85b51719
TS
8401 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
8402 {
8403 s += 5;
8404 regno = ZERO;
8405 }
252b5132
RH
8406 else if (itbl_have_entries)
8407 {
8408 char *p, *n;
d7ba4a77 8409 unsigned long r;
252b5132 8410
d7ba4a77 8411 p = s + 1; /* advance past '$' */
252b5132
RH
8412 n = itbl_get_field (&p); /* n is name */
8413
d7ba4a77
ILT
8414 /* See if this is a register defined in an
8415 itbl entry. */
8416 if (itbl_get_reg_val (n, &r))
252b5132
RH
8417 {
8418 /* Get_field advances to the start of
8419 the next field, so we need to back
d7ba4a77 8420 rack to the end of the last field. */
bdaaa2e1 8421 if (p)
252b5132 8422 s = p - 1;
bdaaa2e1 8423 else
d7ba4a77 8424 s = strchr (s, '\0');
252b5132
RH
8425 regno = r;
8426 }
8427 else
8428 goto notreg;
beae10d5 8429 }
252b5132
RH
8430 else
8431 goto notreg;
8432 }
8433 if (regno == AT
8434 && ! mips_opts.noat
8435 && *args != 'E'
8436 && *args != 'G')
8437 as_warn (_("Used $at without \".set noat\""));
8438 c = *args;
8439 if (*s == ' ')
f9419b05 8440 ++s;
252b5132
RH
8441 if (args[1] != *s)
8442 {
8443 if (c == 'r' || c == 'v' || c == 'w')
8444 {
8445 regno = lastregno;
8446 s = s_reset;
f9419b05 8447 ++args;
252b5132
RH
8448 }
8449 }
8450 /* 'z' only matches $0. */
8451 if (c == 'z' && regno != 0)
8452 break;
8453
bdaaa2e1
KH
8454 /* Now that we have assembled one operand, we use the args string
8455 * to figure out where it goes in the instruction. */
252b5132
RH
8456 switch (c)
8457 {
8458 case 'r':
8459 case 's':
8460 case 'v':
8461 case 'b':
38487616 8462 ip->insn_opcode |= regno << OP_SH_RS;
252b5132
RH
8463 break;
8464 case 'd':
8465 case 'G':
38487616 8466 ip->insn_opcode |= regno << OP_SH_RD;
252b5132 8467 break;
4372b673 8468 case 'U':
38487616
TS
8469 ip->insn_opcode |= regno << OP_SH_RD;
8470 ip->insn_opcode |= regno << OP_SH_RT;
4372b673 8471 break;
252b5132
RH
8472 case 'w':
8473 case 't':
8474 case 'E':
38487616 8475 ip->insn_opcode |= regno << OP_SH_RT;
252b5132
RH
8476 break;
8477 case 'x':
8478 /* This case exists because on the r3000 trunc
8479 expands into a macro which requires a gp
8480 register. On the r6000 or r4000 it is
8481 assembled into a single instruction which
8482 ignores the register. Thus the insn version
8483 is MIPS_ISA2 and uses 'x', and the macro
8484 version is MIPS_ISA1 and uses 't'. */
8485 break;
8486 case 'z':
8487 /* This case is for the div instruction, which
8488 acts differently if the destination argument
8489 is $0. This only matches $0, and is checked
8490 outside the switch. */
8491 break;
8492 case 'D':
8493 /* Itbl operand; not yet implemented. FIXME ?? */
8494 break;
8495 /* What about all other operands like 'i', which
8496 can be specified in the opcode table? */
8497 }
8498 lastregno = regno;
8499 continue;
8500 }
8501 notreg:
8502 switch (*args++)
8503 {
8504 case 'r':
8505 case 'v':
38487616 8506 ip->insn_opcode |= lastregno << OP_SH_RS;
252b5132
RH
8507 continue;
8508 case 'w':
38487616 8509 ip->insn_opcode |= lastregno << OP_SH_RT;
252b5132
RH
8510 continue;
8511 }
8512 break;
8513
deec1734
CD
8514 case 'O': /* MDMX alignment immediate constant. */
8515 my_getExpression (&imm_expr, s);
8516 check_absolute_expr (ip, &imm_expr);
8517 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
8518 {
8519 as_warn ("Improper align amount (%ld), using low bits",
8520 (long) imm_expr.X_add_number);
8521 imm_expr.X_add_number &= OP_MASK_ALN;
8522 }
8523 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_ALN;
8524 imm_expr.X_op = O_absent;
8525 s = expr_end;
8526 continue;
8527
8528 case 'Q': /* MDMX vector, element sel, or const. */
8529 if (s[0] != '$')
8530 {
8531 /* MDMX Immediate. */
8532 my_getExpression (&imm_expr, s);
8533 check_absolute_expr (ip, &imm_expr);
8534 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
8535 {
8536 as_warn (_("Invalid MDMX Immediate (%ld)"),
8537 (long) imm_expr.X_add_number);
8538 imm_expr.X_add_number &= OP_MASK_FT;
8539 }
8540 imm_expr.X_add_number &= OP_MASK_FT;
8541 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8542 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
8543 else
8544 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
8545 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_FT;
8546 imm_expr.X_op = O_absent;
8547 s = expr_end;
8548 continue;
8549 }
8550 /* Not MDMX Immediate. Fall through. */
8551 case 'X': /* MDMX destination register. */
8552 case 'Y': /* MDMX source register. */
8553 case 'Z': /* MDMX target register. */
8554 is_mdmx = 1;
252b5132
RH
8555 case 'D': /* floating point destination register */
8556 case 'S': /* floating point source register */
8557 case 'T': /* floating point target register */
8558 case 'R': /* floating point source register */
8559 case 'V':
8560 case 'W':
8561 s_reset = s;
deec1734
CD
8562 /* Accept $fN for FP and MDMX register numbers, and in
8563 addition accept $vN for MDMX register numbers. */
8564 if ((s[0] == '$' && s[1] == 'f' && ISDIGIT (s[2]))
8565 || (is_mdmx != 0 && s[0] == '$' && s[1] == 'v'
8566 && ISDIGIT (s[2])))
252b5132
RH
8567 {
8568 s += 2;
8569 regno = 0;
8570 do
8571 {
8572 regno *= 10;
8573 regno += *s - '0';
8574 ++s;
8575 }
3882b010 8576 while (ISDIGIT (*s));
252b5132
RH
8577
8578 if (regno > 31)
8579 as_bad (_("Invalid float register number (%d)"), regno);
8580
8581 if ((regno & 1) != 0
ca4e0257 8582 && HAVE_32BIT_FPRS
252b5132
RH
8583 && ! (strcmp (str, "mtc1") == 0
8584 || strcmp (str, "mfc1") == 0
8585 || strcmp (str, "lwc1") == 0
8586 || strcmp (str, "swc1") == 0
8587 || strcmp (str, "l.s") == 0
8588 || strcmp (str, "s.s") == 0))
8589 as_warn (_("Float register should be even, was %d"),
8590 regno);
8591
8592 c = *args;
8593 if (*s == ' ')
f9419b05 8594 ++s;
252b5132
RH
8595 if (args[1] != *s)
8596 {
8597 if (c == 'V' || c == 'W')
8598 {
8599 regno = lastregno;
8600 s = s_reset;
f9419b05 8601 ++args;
252b5132
RH
8602 }
8603 }
8604 switch (c)
8605 {
8606 case 'D':
deec1734 8607 case 'X':
38487616 8608 ip->insn_opcode |= regno << OP_SH_FD;
252b5132
RH
8609 break;
8610 case 'V':
8611 case 'S':
deec1734 8612 case 'Y':
38487616 8613 ip->insn_opcode |= regno << OP_SH_FS;
252b5132 8614 break;
deec1734
CD
8615 case 'Q':
8616 /* This is like 'Z', but also needs to fix the MDMX
8617 vector/scalar select bits. Note that the
8618 scalar immediate case is handled above. */
8619 if (*s == '[')
8620 {
8621 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
8622 int max_el = (is_qh ? 3 : 7);
8623 s++;
8624 my_getExpression(&imm_expr, s);
8625 check_absolute_expr (ip, &imm_expr);
8626 s = expr_end;
8627 if (imm_expr.X_add_number > max_el)
8628 as_bad(_("Bad element selector %ld"),
8629 (long) imm_expr.X_add_number);
8630 imm_expr.X_add_number &= max_el;
8631 ip->insn_opcode |= (imm_expr.X_add_number
8632 << (OP_SH_VSEL +
8633 (is_qh ? 2 : 1)));
8634 if (*s != ']')
8635 as_warn(_("Expecting ']' found '%s'"), s);
8636 else
8637 s++;
8638 }
8639 else
8640 {
8641 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8642 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
8643 << OP_SH_VSEL);
8644 else
8645 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
8646 OP_SH_VSEL);
8647 }
8648 /* Fall through */
252b5132
RH
8649 case 'W':
8650 case 'T':
deec1734 8651 case 'Z':
38487616 8652 ip->insn_opcode |= regno << OP_SH_FT;
252b5132
RH
8653 break;
8654 case 'R':
38487616 8655 ip->insn_opcode |= regno << OP_SH_FR;
252b5132
RH
8656 break;
8657 }
8658 lastregno = regno;
8659 continue;
8660 }
8661
252b5132
RH
8662 switch (*args++)
8663 {
8664 case 'V':
38487616 8665 ip->insn_opcode |= lastregno << OP_SH_FS;
252b5132
RH
8666 continue;
8667 case 'W':
38487616 8668 ip->insn_opcode |= lastregno << OP_SH_FT;
252b5132
RH
8669 continue;
8670 }
8671 break;
8672
8673 case 'I':
8674 my_getExpression (&imm_expr, s);
8675 if (imm_expr.X_op != O_big
8676 && imm_expr.X_op != O_constant)
8677 insn_error = _("absolute expression required");
8678 s = expr_end;
8679 continue;
8680
8681 case 'A':
8682 my_getExpression (&offset_expr, s);
f6688943 8683 *imm_reloc = BFD_RELOC_32;
252b5132
RH
8684 s = expr_end;
8685 continue;
8686
8687 case 'F':
8688 case 'L':
8689 case 'f':
8690 case 'l':
8691 {
8692 int f64;
ca4e0257 8693 int using_gprs;
252b5132
RH
8694 char *save_in;
8695 char *err;
8696 unsigned char temp[8];
8697 int len;
8698 unsigned int length;
8699 segT seg;
8700 subsegT subseg;
8701 char *p;
8702
8703 /* These only appear as the last operand in an
8704 instruction, and every instruction that accepts
8705 them in any variant accepts them in all variants.
8706 This means we don't have to worry about backing out
8707 any changes if the instruction does not match.
8708
8709 The difference between them is the size of the
8710 floating point constant and where it goes. For 'F'
8711 and 'L' the constant is 64 bits; for 'f' and 'l' it
8712 is 32 bits. Where the constant is placed is based
8713 on how the MIPS assembler does things:
8714 F -- .rdata
8715 L -- .lit8
8716 f -- immediate value
8717 l -- .lit4
8718
8719 The .lit4 and .lit8 sections are only used if
8720 permitted by the -G argument.
8721
8722 When generating embedded PIC code, we use the
8723 .lit8 section but not the .lit4 section (we can do
8724 .lit4 inline easily; we need to put .lit8
8725 somewhere in the data segment, and using .lit8
8726 permits the linker to eventually combine identical
ca4e0257
RS
8727 .lit8 entries).
8728
8729 The code below needs to know whether the target register
8730 is 32 or 64 bits wide. It relies on the fact 'f' and
8731 'F' are used with GPR-based instructions and 'l' and
8732 'L' are used with FPR-based instructions. */
252b5132
RH
8733
8734 f64 = *args == 'F' || *args == 'L';
ca4e0257 8735 using_gprs = *args == 'F' || *args == 'f';
252b5132
RH
8736
8737 save_in = input_line_pointer;
8738 input_line_pointer = s;
8739 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
8740 length = len;
8741 s = input_line_pointer;
8742 input_line_pointer = save_in;
8743 if (err != NULL && *err != '\0')
8744 {
8745 as_bad (_("Bad floating point constant: %s"), err);
8746 memset (temp, '\0', sizeof temp);
8747 length = f64 ? 8 : 4;
8748 }
8749
156c2f8b 8750 assert (length == (unsigned) (f64 ? 8 : 4));
252b5132
RH
8751
8752 if (*args == 'f'
8753 || (*args == 'l'
8754 && (! USE_GLOBAL_POINTER_OPT
8755 || mips_pic == EMBEDDED_PIC
8756 || g_switch_value < 4
8757 || (temp[0] == 0 && temp[1] == 0)
8758 || (temp[2] == 0 && temp[3] == 0))))
8759 {
8760 imm_expr.X_op = O_constant;
8761 if (! target_big_endian)
8762 imm_expr.X_add_number = bfd_getl32 (temp);
8763 else
8764 imm_expr.X_add_number = bfd_getb32 (temp);
8765 }
8766 else if (length > 4
119d663a 8767 && ! mips_disable_float_construction
ca4e0257
RS
8768 /* Constants can only be constructed in GPRs and
8769 copied to FPRs if the GPRs are at least as wide
8770 as the FPRs. Force the constant into memory if
8771 we are using 64-bit FPRs but the GPRs are only
8772 32 bits wide. */
8773 && (using_gprs
8774 || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
252b5132
RH
8775 && ((temp[0] == 0 && temp[1] == 0)
8776 || (temp[2] == 0 && temp[3] == 0))
8777 && ((temp[4] == 0 && temp[5] == 0)
8778 || (temp[6] == 0 && temp[7] == 0)))
8779 {
ca4e0257
RS
8780 /* The value is simple enough to load with a couple of
8781 instructions. If using 32-bit registers, set
8782 imm_expr to the high order 32 bits and offset_expr to
8783 the low order 32 bits. Otherwise, set imm_expr to
8784 the entire 64 bit constant. */
8785 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
252b5132
RH
8786 {
8787 imm_expr.X_op = O_constant;
8788 offset_expr.X_op = O_constant;
8789 if (! target_big_endian)
8790 {
8791 imm_expr.X_add_number = bfd_getl32 (temp + 4);
8792 offset_expr.X_add_number = bfd_getl32 (temp);
8793 }
8794 else
8795 {
8796 imm_expr.X_add_number = bfd_getb32 (temp);
8797 offset_expr.X_add_number = bfd_getb32 (temp + 4);
8798 }
8799 if (offset_expr.X_add_number == 0)
8800 offset_expr.X_op = O_absent;
8801 }
8802 else if (sizeof (imm_expr.X_add_number) > 4)
8803 {
8804 imm_expr.X_op = O_constant;
8805 if (! target_big_endian)
8806 imm_expr.X_add_number = bfd_getl64 (temp);
8807 else
8808 imm_expr.X_add_number = bfd_getb64 (temp);
8809 }
8810 else
8811 {
8812 imm_expr.X_op = O_big;
8813 imm_expr.X_add_number = 4;
8814 if (! target_big_endian)
8815 {
8816 generic_bignum[0] = bfd_getl16 (temp);
8817 generic_bignum[1] = bfd_getl16 (temp + 2);
8818 generic_bignum[2] = bfd_getl16 (temp + 4);
8819 generic_bignum[3] = bfd_getl16 (temp + 6);
8820 }
8821 else
8822 {
8823 generic_bignum[0] = bfd_getb16 (temp + 6);
8824 generic_bignum[1] = bfd_getb16 (temp + 4);
8825 generic_bignum[2] = bfd_getb16 (temp + 2);
8826 generic_bignum[3] = bfd_getb16 (temp);
8827 }
8828 }
8829 }
8830 else
8831 {
8832 const char *newname;
8833 segT new_seg;
8834
8835 /* Switch to the right section. */
8836 seg = now_seg;
8837 subseg = now_subseg;
8838 switch (*args)
8839 {
8840 default: /* unused default case avoids warnings. */
8841 case 'L':
8842 newname = RDATA_SECTION_NAME;
bb2d6cd7
GK
8843 if ((USE_GLOBAL_POINTER_OPT && g_switch_value >= 8)
8844 || mips_pic == EMBEDDED_PIC)
252b5132
RH
8845 newname = ".lit8";
8846 break;
8847 case 'F':
bb2d6cd7
GK
8848 if (mips_pic == EMBEDDED_PIC)
8849 newname = ".lit8";
8850 else
8851 newname = RDATA_SECTION_NAME;
252b5132
RH
8852 break;
8853 case 'l':
8854 assert (!USE_GLOBAL_POINTER_OPT
8855 || g_switch_value >= 4);
8856 newname = ".lit4";
8857 break;
8858 }
8859 new_seg = subseg_new (newname, (subsegT) 0);
8860 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
8861 bfd_set_section_flags (stdoutput, new_seg,
8862 (SEC_ALLOC
8863 | SEC_LOAD
8864 | SEC_READONLY
8865 | SEC_DATA));
8866 frag_align (*args == 'l' ? 2 : 3, 0, 0);
8867 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
8868 && strcmp (TARGET_OS, "elf") != 0)
8869 record_alignment (new_seg, 4);
8870 else
8871 record_alignment (new_seg, *args == 'l' ? 2 : 3);
8872 if (seg == now_seg)
8873 as_bad (_("Can't use floating point insn in this section"));
8874
8875 /* Set the argument to the current address in the
8876 section. */
8877 offset_expr.X_op = O_symbol;
8878 offset_expr.X_add_symbol =
8879 symbol_new ("L0\001", now_seg,
8880 (valueT) frag_now_fix (), frag_now);
8881 offset_expr.X_add_number = 0;
8882
8883 /* Put the floating point number into the section. */
8884 p = frag_more ((int) length);
8885 memcpy (p, temp, length);
8886
8887 /* Switch back to the original section. */
8888 subseg_set (seg, subseg);
8889 }
8890 }
8891 continue;
8892
8893 case 'i': /* 16 bit unsigned immediate */
8894 case 'j': /* 16 bit signed immediate */
f6688943 8895 *imm_reloc = BFD_RELOC_LO16;
252b5132 8896 c = my_getSmallExpression (&imm_expr, s);
fb1b3232 8897 if (c != S_EX_NONE)
252b5132 8898 {
fb1b3232 8899 if (c != S_EX_LO)
252b5132 8900 {
fdb987ee
RS
8901 if (c == S_EX_HI)
8902 {
8903 *imm_reloc = BFD_RELOC_HI16_S;
b34976b6 8904 imm_unmatched_hi = TRUE;
fdb987ee 8905 }
ad8d3bb3 8906#ifdef OBJ_ELF
fb1b3232 8907 else if (c == S_EX_HIGHEST)
98d3f06f 8908 *imm_reloc = BFD_RELOC_MIPS_HIGHEST;
fb1b3232 8909 else if (c == S_EX_HIGHER)
98d3f06f 8910 *imm_reloc = BFD_RELOC_MIPS_HIGHER;
ad8d3bb3
TS
8911 else if (c == S_EX_GP_REL)
8912 {
8913 /* This occurs in NewABI only. */
8914 c = my_getSmallExpression (&imm_expr, s);
8915 if (c != S_EX_NEG)
8916 as_bad (_("bad composition of relocations"));
8917 else
8918 {
8919 c = my_getSmallExpression (&imm_expr, s);
8920 if (c != S_EX_LO)
8921 as_bad (_("bad composition of relocations"));
8922 else
8923 {
8924 imm_reloc[0] = BFD_RELOC_GPREL16;
8925 imm_reloc[1] = BFD_RELOC_MIPS_SUB;
8926 imm_reloc[2] = BFD_RELOC_LO16;
8927 }
8928 }
8929 }
8930#endif
252b5132 8931 else
f6688943 8932 *imm_reloc = BFD_RELOC_HI16;
252b5132
RH
8933 }
8934 else if (imm_expr.X_op == O_constant)
8935 imm_expr.X_add_number &= 0xffff;
8936 }
8937 if (*args == 'i')
8938 {
fb1b3232 8939 if ((c == S_EX_NONE && imm_expr.X_op != O_constant)
252b5132 8940 || ((imm_expr.X_add_number < 0
beae10d5
KH
8941 || imm_expr.X_add_number >= 0x10000)
8942 && imm_expr.X_op == O_constant))
252b5132
RH
8943 {
8944 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8945 !strcmp (insn->name, insn[1].name))
8946 break;
2ae7e77b
AH
8947 if (imm_expr.X_op == O_constant
8948 || imm_expr.X_op == O_big)
252b5132
RH
8949 as_bad (_("16 bit expression not in range 0..65535"));
8950 }
8951 }
8952 else
8953 {
8954 int more;
8955 offsetT max;
8956
8957 /* The upper bound should be 0x8000, but
8958 unfortunately the MIPS assembler accepts numbers
8959 from 0x8000 to 0xffff and sign extends them, and
8960 we want to be compatible. We only permit this
8961 extended range for an instruction which does not
8962 provide any further alternates, since those
8963 alternates may handle other cases. People should
8964 use the numbers they mean, rather than relying on
8965 a mysterious sign extension. */
8966 more = (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8967 strcmp (insn->name, insn[1].name) == 0);
8968 if (more)
8969 max = 0x8000;
8970 else
8971 max = 0x10000;
fb1b3232 8972 if ((c == S_EX_NONE && imm_expr.X_op != O_constant)
252b5132 8973 || ((imm_expr.X_add_number < -0x8000
beae10d5
KH
8974 || imm_expr.X_add_number >= max)
8975 && imm_expr.X_op == O_constant)
252b5132
RH
8976 || (more
8977 && imm_expr.X_add_number < 0
ca4e0257 8978 && HAVE_64BIT_GPRS
252b5132
RH
8979 && imm_expr.X_unsigned
8980 && sizeof (imm_expr.X_add_number) <= 4))
8981 {
8982 if (more)
8983 break;
2ae7e77b
AH
8984 if (imm_expr.X_op == O_constant
8985 || imm_expr.X_op == O_big)
252b5132
RH
8986 as_bad (_("16 bit expression not in range -32768..32767"));
8987 }
8988 }
8989 s = expr_end;
8990 continue;
8991
8992 case 'o': /* 16 bit offset */
8993 c = my_getSmallExpression (&offset_expr, s);
8994
8995 /* If this value won't fit into a 16 bit offset, then go
8996 find a macro that will generate the 32 bit offset
afdbd6d0 8997 code pattern. */
fb1b3232 8998 if (c == S_EX_NONE
252b5132
RH
8999 && (offset_expr.X_op != O_constant
9000 || offset_expr.X_add_number >= 0x8000
afdbd6d0 9001 || offset_expr.X_add_number < -0x8000))
252b5132
RH
9002 break;
9003
fb1b3232 9004 if (c == S_EX_HI)
252b5132
RH
9005 {
9006 if (offset_expr.X_op != O_constant)
9007 break;
9008 offset_expr.X_add_number =
9009 (offset_expr.X_add_number >> 16) & 0xffff;
9010 }
f6688943 9011 *offset_reloc = BFD_RELOC_LO16;
252b5132
RH
9012 s = expr_end;
9013 continue;
9014
9015 case 'p': /* pc relative offset */
cb56d3d3 9016 if (mips_pic == EMBEDDED_PIC)
f6688943 9017 *offset_reloc = BFD_RELOC_16_PCREL_S2;
cb56d3d3 9018 else
f6688943 9019 *offset_reloc = BFD_RELOC_16_PCREL;
252b5132
RH
9020 my_getExpression (&offset_expr, s);
9021 s = expr_end;
9022 continue;
9023
9024 case 'u': /* upper 16 bits */
9025 c = my_getSmallExpression (&imm_expr, s);
f6688943 9026 *imm_reloc = BFD_RELOC_LO16;
e7d556df 9027 if (c != S_EX_NONE)
252b5132 9028 {
fb1b3232 9029 if (c != S_EX_LO)
252b5132 9030 {
fdb987ee 9031 if (c == S_EX_HI)
252b5132 9032 {
f6688943 9033 *imm_reloc = BFD_RELOC_HI16_S;
b34976b6 9034 imm_unmatched_hi = TRUE;
252b5132 9035 }
645dc66c
TS
9036#ifdef OBJ_ELF
9037 else if (c == S_EX_HIGHEST)
98d3f06f 9038 *imm_reloc = BFD_RELOC_MIPS_HIGHEST;
ad8d3bb3
TS
9039 else if (c == S_EX_GP_REL)
9040 {
9041 /* This occurs in NewABI only. */
9042 c = my_getSmallExpression (&imm_expr, s);
9043 if (c != S_EX_NEG)
9044 as_bad (_("bad composition of relocations"));
9045 else
9046 {
9047 c = my_getSmallExpression (&imm_expr, s);
9048 if (c != S_EX_HI)
9049 as_bad (_("bad composition of relocations"));
9050 else
9051 {
9052 imm_reloc[0] = BFD_RELOC_GPREL16;
9053 imm_reloc[1] = BFD_RELOC_MIPS_SUB;
9054 imm_reloc[2] = BFD_RELOC_HI16_S;
9055 }
9056 }
9057 }
9058#endif
252b5132 9059 else
f6688943 9060 *imm_reloc = BFD_RELOC_HI16;
252b5132
RH
9061 }
9062 else if (imm_expr.X_op == O_constant)
9063 imm_expr.X_add_number &= 0xffff;
9064 }
fdb987ee
RS
9065 else if (imm_expr.X_op == O_constant
9066 && (imm_expr.X_add_number < 0
9067 || imm_expr.X_add_number >= 0x10000))
252b5132
RH
9068 as_bad (_("lui expression not in range 0..65535"));
9069 s = expr_end;
9070 continue;
9071
9072 case 'a': /* 26 bit address */
9073 my_getExpression (&offset_expr, s);
9074 s = expr_end;
f6688943 9075 *offset_reloc = BFD_RELOC_MIPS_JMP;
252b5132
RH
9076 continue;
9077
9078 case 'N': /* 3 bit branch condition code */
9079 case 'M': /* 3 bit compare condition code */
9080 if (strncmp (s, "$fcc", 4) != 0)
9081 break;
9082 s += 4;
9083 regno = 0;
9084 do
9085 {
9086 regno *= 10;
9087 regno += *s - '0';
9088 ++s;
9089 }
3882b010 9090 while (ISDIGIT (*s));
252b5132
RH
9091 if (regno > 7)
9092 as_bad (_("invalid condition code register $fcc%d"), regno);
9093 if (*args == 'N')
9094 ip->insn_opcode |= regno << OP_SH_BCC;
9095 else
9096 ip->insn_opcode |= regno << OP_SH_CCC;
beae10d5 9097 continue;
252b5132 9098
156c2f8b
NC
9099 case 'H':
9100 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
9101 s += 2;
3882b010 9102 if (ISDIGIT (*s))
156c2f8b
NC
9103 {
9104 c = 0;
9105 do
9106 {
9107 c *= 10;
9108 c += *s - '0';
9109 ++s;
9110 }
3882b010 9111 while (ISDIGIT (*s));
156c2f8b
NC
9112 }
9113 else
9114 c = 8; /* Invalid sel value. */
9115
9116 if (c > 7)
9117 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
9118 ip->insn_opcode |= c;
9119 continue;
9120
60b63b72
RS
9121 case 'e':
9122 /* Must be at least one digit. */
9123 my_getExpression (&imm_expr, s);
9124 check_absolute_expr (ip, &imm_expr);
9125
9126 if ((unsigned long) imm_expr.X_add_number
9127 > (unsigned long) OP_MASK_VECBYTE)
9128 {
9129 as_bad (_("bad byte vector index (%ld)"),
9130 (long) imm_expr.X_add_number);
9131 imm_expr.X_add_number = 0;
9132 }
9133
9134 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_VECBYTE;
9135 imm_expr.X_op = O_absent;
9136 s = expr_end;
9137 continue;
9138
9139 case '%':
9140 my_getExpression (&imm_expr, s);
9141 check_absolute_expr (ip, &imm_expr);
9142
9143 if ((unsigned long) imm_expr.X_add_number
9144 > (unsigned long) OP_MASK_VECALIGN)
9145 {
9146 as_bad (_("bad byte vector index (%ld)"),
9147 (long) imm_expr.X_add_number);
9148 imm_expr.X_add_number = 0;
9149 }
9150
9151 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_VECALIGN;
9152 imm_expr.X_op = O_absent;
9153 s = expr_end;
9154 continue;
9155
252b5132
RH
9156 default:
9157 as_bad (_("bad char = '%c'\n"), *args);
9158 internalError ();
9159 }
9160 break;
9161 }
9162 /* Args don't match. */
9163 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
9164 !strcmp (insn->name, insn[1].name))
9165 {
9166 ++insn;
9167 s = argsStart;
268f6bed 9168 insn_error = _("illegal operands");
252b5132
RH
9169 continue;
9170 }
268f6bed
L
9171 if (save_c)
9172 *(--s) = save_c;
252b5132
RH
9173 insn_error = _("illegal operands");
9174 return;
9175 }
9176}
9177
9178/* This routine assembles an instruction into its binary format when
9179 assembling for the mips16. As a side effect, it sets one of the
9180 global variables imm_reloc or offset_reloc to the type of
9181 relocation to do if one of the operands is an address expression.
9182 It also sets mips16_small and mips16_ext if the user explicitly
9183 requested a small or extended instruction. */
9184
9185static void
9186mips16_ip (str, ip)
9187 char *str;
9188 struct mips_cl_insn *ip;
9189{
9190 char *s;
9191 const char *args;
9192 struct mips_opcode *insn;
9193 char *argsstart;
9194 unsigned int regno;
9195 unsigned int lastregno = 0;
9196 char *s_reset;
9197
9198 insn_error = NULL;
9199
b34976b6
AM
9200 mips16_small = FALSE;
9201 mips16_ext = FALSE;
252b5132 9202
3882b010 9203 for (s = str; ISLOWER (*s); ++s)
252b5132
RH
9204 ;
9205 switch (*s)
9206 {
9207 case '\0':
9208 break;
9209
9210 case ' ':
9211 *s++ = '\0';
9212 break;
9213
9214 case '.':
9215 if (s[1] == 't' && s[2] == ' ')
9216 {
9217 *s = '\0';
b34976b6 9218 mips16_small = TRUE;
252b5132
RH
9219 s += 3;
9220 break;
9221 }
9222 else if (s[1] == 'e' && s[2] == ' ')
9223 {
9224 *s = '\0';
b34976b6 9225 mips16_ext = TRUE;
252b5132
RH
9226 s += 3;
9227 break;
9228 }
9229 /* Fall through. */
9230 default:
9231 insn_error = _("unknown opcode");
9232 return;
9233 }
9234
9235 if (mips_opts.noautoextend && ! mips16_ext)
b34976b6 9236 mips16_small = TRUE;
252b5132
RH
9237
9238 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
9239 {
9240 insn_error = _("unrecognized opcode");
9241 return;
9242 }
9243
9244 argsstart = s;
9245 for (;;)
9246 {
9247 assert (strcmp (insn->name, str) == 0);
9248
9249 ip->insn_mo = insn;
9250 ip->insn_opcode = insn->match;
b34976b6 9251 ip->use_extend = FALSE;
252b5132 9252 imm_expr.X_op = O_absent;
f6688943
TS
9253 imm_reloc[0] = BFD_RELOC_UNUSED;
9254 imm_reloc[1] = BFD_RELOC_UNUSED;
9255 imm_reloc[2] = BFD_RELOC_UNUSED;
252b5132 9256 offset_expr.X_op = O_absent;
f6688943
TS
9257 offset_reloc[0] = BFD_RELOC_UNUSED;
9258 offset_reloc[1] = BFD_RELOC_UNUSED;
9259 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
9260 for (args = insn->args; 1; ++args)
9261 {
9262 int c;
9263
9264 if (*s == ' ')
9265 ++s;
9266
9267 /* In this switch statement we call break if we did not find
9268 a match, continue if we did find a match, or return if we
9269 are done. */
9270
9271 c = *args;
9272 switch (c)
9273 {
9274 case '\0':
9275 if (*s == '\0')
9276 {
9277 /* Stuff the immediate value in now, if we can. */
9278 if (imm_expr.X_op == O_constant
f6688943 9279 && *imm_reloc > BFD_RELOC_UNUSED
252b5132
RH
9280 && insn->pinfo != INSN_MACRO)
9281 {
c4e7957c 9282 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
b34976b6 9283 imm_expr.X_add_number, TRUE, mips16_small,
252b5132
RH
9284 mips16_ext, &ip->insn_opcode,
9285 &ip->use_extend, &ip->extend);
9286 imm_expr.X_op = O_absent;
f6688943 9287 *imm_reloc = BFD_RELOC_UNUSED;
252b5132
RH
9288 }
9289
9290 return;
9291 }
9292 break;
9293
9294 case ',':
9295 if (*s++ == c)
9296 continue;
9297 s--;
9298 switch (*++args)
9299 {
9300 case 'v':
9301 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
9302 continue;
9303 case 'w':
9304 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
9305 continue;
9306 }
9307 break;
9308
9309 case '(':
9310 case ')':
9311 if (*s++ == c)
9312 continue;
9313 break;
9314
9315 case 'v':
9316 case 'w':
9317 if (s[0] != '$')
9318 {
9319 if (c == 'v')
9320 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
9321 else
9322 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
9323 ++args;
9324 continue;
9325 }
9326 /* Fall through. */
9327 case 'x':
9328 case 'y':
9329 case 'z':
9330 case 'Z':
9331 case '0':
9332 case 'S':
9333 case 'R':
9334 case 'X':
9335 case 'Y':
9336 if (s[0] != '$')
9337 break;
9338 s_reset = s;
3882b010 9339 if (ISDIGIT (s[1]))
252b5132
RH
9340 {
9341 ++s;
9342 regno = 0;
9343 do
9344 {
9345 regno *= 10;
9346 regno += *s - '0';
9347 ++s;
9348 }
3882b010 9349 while (ISDIGIT (*s));
252b5132
RH
9350 if (regno > 31)
9351 {
9352 as_bad (_("invalid register number (%d)"), regno);
9353 regno = 2;
9354 }
9355 }
9356 else
9357 {
76db943d
TS
9358 if (s[1] == 'r' && s[2] == 'a')
9359 {
9360 s += 3;
9361 regno = RA;
9362 }
9363 else if (s[1] == 'f' && s[2] == 'p')
252b5132
RH
9364 {
9365 s += 3;
9366 regno = FP;
9367 }
9368 else if (s[1] == 's' && s[2] == 'p')
9369 {
9370 s += 3;
9371 regno = SP;
9372 }
9373 else if (s[1] == 'g' && s[2] == 'p')
9374 {
9375 s += 3;
9376 regno = GP;
9377 }
9378 else if (s[1] == 'a' && s[2] == 't')
9379 {
9380 s += 3;
9381 regno = AT;
9382 }
9383 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
9384 {
9385 s += 4;
9386 regno = KT0;
9387 }
9388 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
9389 {
9390 s += 4;
9391 regno = KT1;
9392 }
85b51719
TS
9393 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
9394 {
9395 s += 5;
9396 regno = ZERO;
9397 }
252b5132
RH
9398 else
9399 break;
9400 }
9401
9402 if (*s == ' ')
9403 ++s;
9404 if (args[1] != *s)
9405 {
9406 if (c == 'v' || c == 'w')
9407 {
9408 regno = mips16_to_32_reg_map[lastregno];
9409 s = s_reset;
f9419b05 9410 ++args;
252b5132
RH
9411 }
9412 }
9413
9414 switch (c)
9415 {
9416 case 'x':
9417 case 'y':
9418 case 'z':
9419 case 'v':
9420 case 'w':
9421 case 'Z':
9422 regno = mips32_to_16_reg_map[regno];
9423 break;
9424
9425 case '0':
9426 if (regno != 0)
9427 regno = ILLEGAL_REG;
9428 break;
9429
9430 case 'S':
9431 if (regno != SP)
9432 regno = ILLEGAL_REG;
9433 break;
9434
9435 case 'R':
9436 if (regno != RA)
9437 regno = ILLEGAL_REG;
9438 break;
9439
9440 case 'X':
9441 case 'Y':
9442 if (regno == AT && ! mips_opts.noat)
9443 as_warn (_("used $at without \".set noat\""));
9444 break;
9445
9446 default:
9447 internalError ();
9448 }
9449
9450 if (regno == ILLEGAL_REG)
9451 break;
9452
9453 switch (c)
9454 {
9455 case 'x':
9456 case 'v':
9457 ip->insn_opcode |= regno << MIPS16OP_SH_RX;
9458 break;
9459 case 'y':
9460 case 'w':
9461 ip->insn_opcode |= regno << MIPS16OP_SH_RY;
9462 break;
9463 case 'z':
9464 ip->insn_opcode |= regno << MIPS16OP_SH_RZ;
9465 break;
9466 case 'Z':
9467 ip->insn_opcode |= regno << MIPS16OP_SH_MOVE32Z;
9468 case '0':
9469 case 'S':
9470 case 'R':
9471 break;
9472 case 'X':
9473 ip->insn_opcode |= regno << MIPS16OP_SH_REGR32;
9474 break;
9475 case 'Y':
9476 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
9477 ip->insn_opcode |= regno << MIPS16OP_SH_REG32R;
9478 break;
9479 default:
9480 internalError ();
9481 }
9482
9483 lastregno = regno;
9484 continue;
9485
9486 case 'P':
9487 if (strncmp (s, "$pc", 3) == 0)
9488 {
9489 s += 3;
9490 continue;
9491 }
9492 break;
9493
9494 case '<':
9495 case '>':
9496 case '[':
9497 case ']':
9498 case '4':
9499 case '5':
9500 case 'H':
9501 case 'W':
9502 case 'D':
9503 case 'j':
9504 case '8':
9505 case 'V':
9506 case 'C':
9507 case 'U':
9508 case 'k':
9509 case 'K':
9510 if (s[0] == '%'
9511 && strncmp (s + 1, "gprel(", sizeof "gprel(" - 1) == 0)
9512 {
9513 /* This is %gprel(SYMBOL). We need to read SYMBOL,
9514 and generate the appropriate reloc. If the text
9515 inside %gprel is not a symbol name with an
9516 optional offset, then we generate a normal reloc
9517 and will probably fail later. */
9518 my_getExpression (&imm_expr, s + sizeof "%gprel" - 1);
9519 if (imm_expr.X_op == O_symbol)
9520 {
b34976b6 9521 mips16_ext = TRUE;
f6688943 9522 *imm_reloc = BFD_RELOC_MIPS16_GPREL;
252b5132 9523 s = expr_end;
b34976b6 9524 ip->use_extend = TRUE;
252b5132
RH
9525 ip->extend = 0;
9526 continue;
9527 }
9528 }
9529 else
9530 {
9531 /* Just pick up a normal expression. */
9532 my_getExpression (&imm_expr, s);
9533 }
9534
9535 if (imm_expr.X_op == O_register)
9536 {
9537 /* What we thought was an expression turned out to
9538 be a register. */
9539
9540 if (s[0] == '(' && args[1] == '(')
9541 {
9542 /* It looks like the expression was omitted
9543 before a register indirection, which means
9544 that the expression is implicitly zero. We
9545 still set up imm_expr, so that we handle
9546 explicit extensions correctly. */
9547 imm_expr.X_op = O_constant;
9548 imm_expr.X_add_number = 0;
f6688943 9549 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
9550 continue;
9551 }
9552
9553 break;
9554 }
9555
9556 /* We need to relax this instruction. */
f6688943 9557 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
9558 s = expr_end;
9559 continue;
9560
9561 case 'p':
9562 case 'q':
9563 case 'A':
9564 case 'B':
9565 case 'E':
9566 /* We use offset_reloc rather than imm_reloc for the PC
9567 relative operands. This lets macros with both
9568 immediate and address operands work correctly. */
9569 my_getExpression (&offset_expr, s);
9570
9571 if (offset_expr.X_op == O_register)
9572 break;
9573
9574 /* We need to relax this instruction. */
f6688943 9575 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
9576 s = expr_end;
9577 continue;
9578
9579 case '6': /* break code */
9580 my_getExpression (&imm_expr, s);
9581 check_absolute_expr (ip, &imm_expr);
9582 if ((unsigned long) imm_expr.X_add_number > 63)
9583 {
9584 as_warn (_("Invalid value for `%s' (%lu)"),
9585 ip->insn_mo->name,
9586 (unsigned long) imm_expr.X_add_number);
9587 imm_expr.X_add_number &= 0x3f;
9588 }
9589 ip->insn_opcode |= imm_expr.X_add_number << MIPS16OP_SH_IMM6;
9590 imm_expr.X_op = O_absent;
9591 s = expr_end;
9592 continue;
9593
9594 case 'a': /* 26 bit address */
9595 my_getExpression (&offset_expr, s);
9596 s = expr_end;
f6688943 9597 *offset_reloc = BFD_RELOC_MIPS16_JMP;
252b5132
RH
9598 ip->insn_opcode <<= 16;
9599 continue;
9600
9601 case 'l': /* register list for entry macro */
9602 case 'L': /* register list for exit macro */
9603 {
9604 int mask;
9605
9606 if (c == 'l')
9607 mask = 0;
9608 else
9609 mask = 7 << 3;
9610 while (*s != '\0')
9611 {
9612 int freg, reg1, reg2;
9613
9614 while (*s == ' ' || *s == ',')
9615 ++s;
9616 if (*s != '$')
9617 {
9618 as_bad (_("can't parse register list"));
9619 break;
9620 }
9621 ++s;
9622 if (*s != 'f')
9623 freg = 0;
9624 else
9625 {
9626 freg = 1;
9627 ++s;
9628 }
9629 reg1 = 0;
3882b010 9630 while (ISDIGIT (*s))
252b5132
RH
9631 {
9632 reg1 *= 10;
9633 reg1 += *s - '0';
9634 ++s;
9635 }
9636 if (*s == ' ')
9637 ++s;
9638 if (*s != '-')
9639 reg2 = reg1;
9640 else
9641 {
9642 ++s;
9643 if (*s != '$')
9644 break;
9645 ++s;
9646 if (freg)
9647 {
9648 if (*s == 'f')
9649 ++s;
9650 else
9651 {
9652 as_bad (_("invalid register list"));
9653 break;
9654 }
9655 }
9656 reg2 = 0;
3882b010 9657 while (ISDIGIT (*s))
252b5132
RH
9658 {
9659 reg2 *= 10;
9660 reg2 += *s - '0';
9661 ++s;
9662 }
9663 }
9664 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
9665 {
9666 mask &= ~ (7 << 3);
9667 mask |= 5 << 3;
9668 }
9669 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
9670 {
9671 mask &= ~ (7 << 3);
9672 mask |= 6 << 3;
9673 }
9674 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
9675 mask |= (reg2 - 3) << 3;
9676 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
9677 mask |= (reg2 - 15) << 1;
f9419b05 9678 else if (reg1 == RA && reg2 == RA)
252b5132
RH
9679 mask |= 1;
9680 else
9681 {
9682 as_bad (_("invalid register list"));
9683 break;
9684 }
9685 }
9686 /* The mask is filled in in the opcode table for the
9687 benefit of the disassembler. We remove it before
9688 applying the actual mask. */
9689 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
9690 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
9691 }
9692 continue;
9693
9694 case 'e': /* extend code */
9695 my_getExpression (&imm_expr, s);
9696 check_absolute_expr (ip, &imm_expr);
9697 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
9698 {
9699 as_warn (_("Invalid value for `%s' (%lu)"),
9700 ip->insn_mo->name,
9701 (unsigned long) imm_expr.X_add_number);
9702 imm_expr.X_add_number &= 0x7ff;
9703 }
9704 ip->insn_opcode |= imm_expr.X_add_number;
9705 imm_expr.X_op = O_absent;
9706 s = expr_end;
9707 continue;
9708
9709 default:
9710 internalError ();
9711 }
9712 break;
9713 }
9714
9715 /* Args don't match. */
9716 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
9717 strcmp (insn->name, insn[1].name) == 0)
9718 {
9719 ++insn;
9720 s = argsstart;
9721 continue;
9722 }
9723
9724 insn_error = _("illegal operands");
9725
9726 return;
9727 }
9728}
9729
9730/* This structure holds information we know about a mips16 immediate
9731 argument type. */
9732
e972090a
NC
9733struct mips16_immed_operand
9734{
252b5132
RH
9735 /* The type code used in the argument string in the opcode table. */
9736 int type;
9737 /* The number of bits in the short form of the opcode. */
9738 int nbits;
9739 /* The number of bits in the extended form of the opcode. */
9740 int extbits;
9741 /* The amount by which the short form is shifted when it is used;
9742 for example, the sw instruction has a shift count of 2. */
9743 int shift;
9744 /* The amount by which the short form is shifted when it is stored
9745 into the instruction code. */
9746 int op_shift;
9747 /* Non-zero if the short form is unsigned. */
9748 int unsp;
9749 /* Non-zero if the extended form is unsigned. */
9750 int extu;
9751 /* Non-zero if the value is PC relative. */
9752 int pcrel;
9753};
9754
9755/* The mips16 immediate operand types. */
9756
9757static const struct mips16_immed_operand mips16_immed_operands[] =
9758{
9759 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9760 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9761 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9762 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9763 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
9764 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
9765 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
9766 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
9767 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
9768 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
9769 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
9770 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
9771 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
9772 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
9773 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
9774 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
9775 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9776 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9777 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
9778 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
9779 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
9780};
9781
9782#define MIPS16_NUM_IMMED \
9783 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
9784
9785/* Handle a mips16 instruction with an immediate value. This or's the
9786 small immediate value into *INSN. It sets *USE_EXTEND to indicate
9787 whether an extended value is needed; if one is needed, it sets
9788 *EXTEND to the value. The argument type is TYPE. The value is VAL.
9789 If SMALL is true, an unextended opcode was explicitly requested.
9790 If EXT is true, an extended opcode was explicitly requested. If
9791 WARN is true, warn if EXT does not match reality. */
9792
9793static void
9794mips16_immed (file, line, type, val, warn, small, ext, insn, use_extend,
9795 extend)
9796 char *file;
9797 unsigned int line;
9798 int type;
9799 offsetT val;
b34976b6
AM
9800 bfd_boolean warn;
9801 bfd_boolean small;
9802 bfd_boolean ext;
252b5132 9803 unsigned long *insn;
b34976b6 9804 bfd_boolean *use_extend;
252b5132
RH
9805 unsigned short *extend;
9806{
9807 register const struct mips16_immed_operand *op;
9808 int mintiny, maxtiny;
b34976b6 9809 bfd_boolean needext;
252b5132
RH
9810
9811 op = mips16_immed_operands;
9812 while (op->type != type)
9813 {
9814 ++op;
9815 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
9816 }
9817
9818 if (op->unsp)
9819 {
9820 if (type == '<' || type == '>' || type == '[' || type == ']')
9821 {
9822 mintiny = 1;
9823 maxtiny = 1 << op->nbits;
9824 }
9825 else
9826 {
9827 mintiny = 0;
9828 maxtiny = (1 << op->nbits) - 1;
9829 }
9830 }
9831 else
9832 {
9833 mintiny = - (1 << (op->nbits - 1));
9834 maxtiny = (1 << (op->nbits - 1)) - 1;
9835 }
9836
9837 /* Branch offsets have an implicit 0 in the lowest bit. */
9838 if (type == 'p' || type == 'q')
9839 val /= 2;
9840
9841 if ((val & ((1 << op->shift) - 1)) != 0
9842 || val < (mintiny << op->shift)
9843 || val > (maxtiny << op->shift))
b34976b6 9844 needext = TRUE;
252b5132 9845 else
b34976b6 9846 needext = FALSE;
252b5132
RH
9847
9848 if (warn && ext && ! needext)
beae10d5
KH
9849 as_warn_where (file, line,
9850 _("extended operand requested but not required"));
252b5132
RH
9851 if (small && needext)
9852 as_bad_where (file, line, _("invalid unextended operand value"));
9853
9854 if (small || (! ext && ! needext))
9855 {
9856 int insnval;
9857
b34976b6 9858 *use_extend = FALSE;
252b5132
RH
9859 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
9860 insnval <<= op->op_shift;
9861 *insn |= insnval;
9862 }
9863 else
9864 {
9865 long minext, maxext;
9866 int extval;
9867
9868 if (op->extu)
9869 {
9870 minext = 0;
9871 maxext = (1 << op->extbits) - 1;
9872 }
9873 else
9874 {
9875 minext = - (1 << (op->extbits - 1));
9876 maxext = (1 << (op->extbits - 1)) - 1;
9877 }
9878 if (val < minext || val > maxext)
9879 as_bad_where (file, line,
9880 _("operand value out of range for instruction"));
9881
b34976b6 9882 *use_extend = TRUE;
252b5132
RH
9883 if (op->extbits == 16)
9884 {
9885 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
9886 val &= 0x1f;
9887 }
9888 else if (op->extbits == 15)
9889 {
9890 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
9891 val &= 0xf;
9892 }
9893 else
9894 {
9895 extval = ((val & 0x1f) << 6) | (val & 0x20);
9896 val = 0;
9897 }
9898
9899 *extend = (unsigned short) extval;
9900 *insn |= val;
9901 }
9902}
9903\f
ad8d3bb3
TS
9904static struct percent_op_match
9905{
9906 const char *str;
9907 const enum small_ex_type type;
9908} percent_op[] =
9909{
ad8d3bb3
TS
9910 {"%lo", S_EX_LO},
9911#ifdef OBJ_ELF
394f9b3a
TS
9912 {"%call_hi", S_EX_CALL_HI},
9913 {"%call_lo", S_EX_CALL_LO},
ad8d3bb3
TS
9914 {"%call16", S_EX_CALL16},
9915 {"%got_disp", S_EX_GOT_DISP},
9916 {"%got_page", S_EX_GOT_PAGE},
9917 {"%got_ofst", S_EX_GOT_OFST},
9918 {"%got_hi", S_EX_GOT_HI},
9919 {"%got_lo", S_EX_GOT_LO},
394f9b3a
TS
9920 {"%got", S_EX_GOT},
9921 {"%gp_rel", S_EX_GP_REL},
9922 {"%half", S_EX_HALF},
ad8d3bb3 9923 {"%highest", S_EX_HIGHEST},
394f9b3a
TS
9924 {"%higher", S_EX_HIGHER},
9925 {"%neg", S_EX_NEG},
ad8d3bb3 9926#endif
394f9b3a 9927 {"%hi", S_EX_HI}
ad8d3bb3
TS
9928};
9929
9930/* Parse small expression input. STR gets adjusted to eat up whitespace.
9931 It detects valid "%percent_op(...)" and "($reg)" strings. Percent_op's
9932 can be nested, this is handled by blanking the innermost, parsing the
9933 rest by subsequent calls. */
252b5132
RH
9934
9935static int
ad8d3bb3
TS
9936my_getSmallParser (str, len, nestlevel)
9937 char **str;
9938 unsigned int *len;
9939 int *nestlevel;
252b5132 9940{
ad8d3bb3
TS
9941 *len = 0;
9942 *str += strspn (*str, " \t");
394f9b3a 9943 /* Check for expression in parentheses. */
ad8d3bb3 9944 if (**str == '(')
252b5132 9945 {
ad8d3bb3
TS
9946 char *b = *str + 1 + strspn (*str + 1, " \t");
9947 char *e;
9948
9949 /* Check for base register. */
9950 if (b[0] == '$')
9951 {
9952 if (strchr (b, ')')
9953 && (e = b + strcspn (b, ") \t"))
9954 && e - b > 1 && e - b < 4)
9955 {
98d3f06f
KH
9956 if ((e - b == 3
9957 && ((b[1] == 'f' && b[2] == 'p')
9958 || (b[1] == 's' && b[2] == 'p')
9959 || (b[1] == 'g' && b[2] == 'p')
9960 || (b[1] == 'a' && b[2] == 't')
9961 || (ISDIGIT (b[1])
9962 && ISDIGIT (b[2]))))
9963 || (ISDIGIT (b[1])))
9964 {
9965 *len = strcspn (*str, ")") + 1;
9966 return S_EX_REGISTER;
9967 }
ad8d3bb3
TS
9968 }
9969 }
394f9b3a 9970 /* Check for percent_op (in parentheses). */
ad8d3bb3
TS
9971 else if (b[0] == '%')
9972 {
9973 *str = b;
394f9b3a 9974 return my_getPercentOp (str, len, nestlevel);
ad8d3bb3 9975 }
76b3015f 9976
394f9b3a
TS
9977 /* Some other expression in the parentheses, which can contain
9978 parentheses itself. Attempt to find the matching one. */
9979 {
9980 int pcnt = 1;
9981 char *s;
9982
9983 *len = 1;
9984 for (s = *str + 1; *s && pcnt; s++, (*len)++)
9985 {
9986 if (*s == '(')
f9419b05 9987 ++pcnt;
394f9b3a 9988 else if (*s == ')')
f9419b05 9989 --pcnt;
394f9b3a
TS
9990 }
9991 }
fb1b3232 9992 }
394f9b3a 9993 /* Check for percent_op (outside of parentheses). */
ad8d3bb3 9994 else if (*str[0] == '%')
394f9b3a
TS
9995 return my_getPercentOp (str, len, nestlevel);
9996
9997 /* Any other expression. */
9998 return S_EX_NONE;
9999}
ad8d3bb3 10000
394f9b3a
TS
10001static int
10002my_getPercentOp (str, len, nestlevel)
10003 char **str;
10004 unsigned int *len;
10005 int *nestlevel;
10006{
10007 char *tmp = *str + 1;
10008 unsigned int i = 0;
ad8d3bb3 10009
394f9b3a
TS
10010 while (ISALPHA (*tmp) || *tmp == '_')
10011 {
10012 *tmp = TOLOWER (*tmp);
10013 tmp++;
10014 }
10015 while (i < (sizeof (percent_op) / sizeof (struct percent_op_match)))
10016 {
10017 if (strncmp (*str, percent_op[i].str, strlen (percent_op[i].str)))
98d3f06f 10018 i++;
394f9b3a 10019 else
ad8d3bb3 10020 {
394f9b3a 10021 int type = percent_op[i].type;
ad8d3bb3 10022
394f9b3a
TS
10023 /* Only %hi and %lo are allowed for OldABI. */
10024 if (! HAVE_NEWABI && type != S_EX_HI && type != S_EX_LO)
10025 return S_EX_NONE;
ad8d3bb3 10026
394f9b3a 10027 *len = strlen (percent_op[i].str);
f9419b05 10028 ++(*nestlevel);
394f9b3a 10029 return type;
ad8d3bb3 10030 }
fb1b3232 10031 }
ad8d3bb3
TS
10032 return S_EX_NONE;
10033}
10034
10035static int
10036my_getSmallExpression (ep, str)
10037 expressionS *ep;
10038 char *str;
10039{
10040 static char *oldstr = NULL;
10041 int c = S_EX_NONE;
10042 int oldc;
394f9b3a 10043 int nestlevel = -1;
ad8d3bb3
TS
10044 unsigned int len;
10045
394f9b3a
TS
10046 /* Don't update oldstr if the last call had nested percent_op's. We need
10047 it to parse the outer ones later. */
ad8d3bb3
TS
10048 if (! oldstr)
10049 oldstr = str;
76b3015f 10050
ad8d3bb3 10051 do
fb1b3232 10052 {
ad8d3bb3 10053 oldc = c;
394f9b3a 10054 c = my_getSmallParser (&str, &len, &nestlevel);
ad8d3bb3
TS
10055 if (c != S_EX_NONE && c != S_EX_REGISTER)
10056 str += len;
fb1b3232 10057 }
ad8d3bb3
TS
10058 while (c != S_EX_NONE && c != S_EX_REGISTER);
10059
394f9b3a 10060 if (nestlevel >= 0)
fb1b3232 10061 {
394f9b3a
TS
10062 /* A percent_op was encountered. Don't try to get an expression if
10063 it is already blanked out. */
ad8d3bb3
TS
10064 if (*(str + strspn (str + 1, " )")) != ')')
10065 {
10066 char save;
10067
394f9b3a 10068 /* Let my_getExpression() stop at the closing parenthesis. */
ad8d3bb3
TS
10069 save = *(str + len);
10070 *(str + len) = '\0';
10071 my_getExpression (ep, str);
10072 *(str + len) = save;
10073 }
394f9b3a 10074 if (nestlevel > 0)
ad8d3bb3 10075 {
394f9b3a
TS
10076 /* Blank out including the % sign and the proper matching
10077 parenthesis. */
10078 int pcnt = 1;
10079 char *s = strrchr (oldstr, '%');
10080 char *end;
10081
10082 for (end = strchr (s, '(') + 1; *end && pcnt; end++)
10083 {
10084 if (*end == '(')
f9419b05 10085 ++pcnt;
394f9b3a 10086 else if (*end == ')')
f9419b05 10087 --pcnt;
394f9b3a
TS
10088 }
10089
10090 memset (s, ' ', end - s);
ad8d3bb3
TS
10091 str = oldstr;
10092 }
10093 else
394f9b3a
TS
10094 expr_end = str + len;
10095
ad8d3bb3 10096 c = oldc;
fb1b3232 10097 }
ad8d3bb3 10098 else if (c == S_EX_NONE)
fb1b3232 10099 {
ad8d3bb3 10100 my_getExpression (ep, str);
fb1b3232 10101 }
ad8d3bb3 10102 else if (c == S_EX_REGISTER)
fb1b3232 10103 {
ad8d3bb3
TS
10104 ep->X_op = O_constant;
10105 expr_end = str;
10106 ep->X_add_symbol = NULL;
10107 ep->X_op_symbol = NULL;
10108 ep->X_add_number = 0;
fb1b3232 10109 }
fb1b3232
TS
10110 else
10111 {
98d3f06f 10112 as_fatal (_("internal error"));
fb1b3232 10113 }
252b5132 10114
394f9b3a
TS
10115 if (nestlevel <= 0)
10116 /* All percent_op's have been handled. */
ad8d3bb3 10117 oldstr = NULL;
fb1b3232 10118
fb1b3232 10119 return c;
252b5132
RH
10120}
10121
10122static void
10123my_getExpression (ep, str)
10124 expressionS *ep;
10125 char *str;
10126{
10127 char *save_in;
98aa84af 10128 valueT val;
252b5132
RH
10129
10130 save_in = input_line_pointer;
10131 input_line_pointer = str;
10132 expression (ep);
10133 expr_end = input_line_pointer;
10134 input_line_pointer = save_in;
10135
10136 /* If we are in mips16 mode, and this is an expression based on `.',
10137 then we bump the value of the symbol by 1 since that is how other
10138 text symbols are handled. We don't bother to handle complex
10139 expressions, just `.' plus or minus a constant. */
10140 if (mips_opts.mips16
10141 && ep->X_op == O_symbol
10142 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
10143 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
49309057
ILT
10144 && symbol_get_frag (ep->X_add_symbol) == frag_now
10145 && symbol_constant_p (ep->X_add_symbol)
98aa84af
AM
10146 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
10147 S_SET_VALUE (ep->X_add_symbol, val + 1);
252b5132
RH
10148}
10149
10150/* Turn a string in input_line_pointer into a floating point constant
bc0d738a
NC
10151 of type TYPE, and store the appropriate bytes in *LITP. The number
10152 of LITTLENUMS emitted is stored in *SIZEP. An error message is
252b5132
RH
10153 returned, or NULL on OK. */
10154
10155char *
10156md_atof (type, litP, sizeP)
10157 int type;
10158 char *litP;
10159 int *sizeP;
10160{
10161 int prec;
10162 LITTLENUM_TYPE words[4];
10163 char *t;
10164 int i;
10165
10166 switch (type)
10167 {
10168 case 'f':
10169 prec = 2;
10170 break;
10171
10172 case 'd':
10173 prec = 4;
10174 break;
10175
10176 default:
10177 *sizeP = 0;
10178 return _("bad call to md_atof");
10179 }
10180
10181 t = atof_ieee (input_line_pointer, type, words);
10182 if (t)
10183 input_line_pointer = t;
10184
10185 *sizeP = prec * 2;
10186
10187 if (! target_big_endian)
10188 {
10189 for (i = prec - 1; i >= 0; i--)
10190 {
10191 md_number_to_chars (litP, (valueT) words[i], 2);
10192 litP += 2;
10193 }
10194 }
10195 else
10196 {
10197 for (i = 0; i < prec; i++)
10198 {
10199 md_number_to_chars (litP, (valueT) words[i], 2);
10200 litP += 2;
10201 }
10202 }
bdaaa2e1 10203
252b5132
RH
10204 return NULL;
10205}
10206
10207void
10208md_number_to_chars (buf, val, n)
10209 char *buf;
10210 valueT val;
10211 int n;
10212{
10213 if (target_big_endian)
10214 number_to_chars_bigendian (buf, val, n);
10215 else
10216 number_to_chars_littleendian (buf, val, n);
10217}
10218\f
ae948b86 10219#ifdef OBJ_ELF
e013f690
TS
10220static int support_64bit_objects(void)
10221{
10222 const char **list, **l;
aa3d8fdf 10223 int yes;
e013f690
TS
10224
10225 list = bfd_target_list ();
10226 for (l = list; *l != NULL; l++)
10227#ifdef TE_TMIPS
10228 /* This is traditional mips */
10229 if (strcmp (*l, "elf64-tradbigmips") == 0
10230 || strcmp (*l, "elf64-tradlittlemips") == 0)
10231#else
10232 if (strcmp (*l, "elf64-bigmips") == 0
10233 || strcmp (*l, "elf64-littlemips") == 0)
10234#endif
10235 break;
aa3d8fdf 10236 yes = (*l != NULL);
e013f690 10237 free (list);
aa3d8fdf 10238 return yes;
e013f690 10239}
ae948b86 10240#endif /* OBJ_ELF */
e013f690 10241
5a38dc70 10242const char *md_shortopts = "nO::g::G:";
252b5132 10243
e972090a
NC
10244struct option md_longopts[] =
10245{
252b5132
RH
10246#define OPTION_MIPS1 (OPTION_MD_BASE + 1)
10247 {"mips0", no_argument, NULL, OPTION_MIPS1},
10248 {"mips1", no_argument, NULL, OPTION_MIPS1},
10249#define OPTION_MIPS2 (OPTION_MD_BASE + 2)
10250 {"mips2", no_argument, NULL, OPTION_MIPS2},
10251#define OPTION_MIPS3 (OPTION_MD_BASE + 3)
10252 {"mips3", no_argument, NULL, OPTION_MIPS3},
10253#define OPTION_MIPS4 (OPTION_MD_BASE + 4)
10254 {"mips4", no_argument, NULL, OPTION_MIPS4},
ae948b86
TS
10255#define OPTION_MIPS5 (OPTION_MD_BASE + 5)
10256 {"mips5", no_argument, NULL, OPTION_MIPS5},
10257#define OPTION_MIPS32 (OPTION_MD_BASE + 6)
10258 {"mips32", no_argument, NULL, OPTION_MIPS32},
10259#define OPTION_MIPS64 (OPTION_MD_BASE + 7)
10260 {"mips64", no_argument, NULL, OPTION_MIPS64},
10261#define OPTION_MEMBEDDED_PIC (OPTION_MD_BASE + 8)
252b5132 10262 {"membedded-pic", no_argument, NULL, OPTION_MEMBEDDED_PIC},
ae948b86 10263#define OPTION_TRAP (OPTION_MD_BASE + 9)
252b5132
RH
10264 {"trap", no_argument, NULL, OPTION_TRAP},
10265 {"no-break", no_argument, NULL, OPTION_TRAP},
ae948b86 10266#define OPTION_BREAK (OPTION_MD_BASE + 10)
252b5132
RH
10267 {"break", no_argument, NULL, OPTION_BREAK},
10268 {"no-trap", no_argument, NULL, OPTION_BREAK},
ae948b86 10269#define OPTION_EB (OPTION_MD_BASE + 11)
252b5132 10270 {"EB", no_argument, NULL, OPTION_EB},
ae948b86 10271#define OPTION_EL (OPTION_MD_BASE + 12)
252b5132 10272 {"EL", no_argument, NULL, OPTION_EL},
ae948b86 10273#define OPTION_MIPS16 (OPTION_MD_BASE + 13)
252b5132 10274 {"mips16", no_argument, NULL, OPTION_MIPS16},
ae948b86 10275#define OPTION_NO_MIPS16 (OPTION_MD_BASE + 14)
252b5132 10276 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
ae948b86 10277#define OPTION_M7000_HILO_FIX (OPTION_MD_BASE + 15)
6b76fefe 10278 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
9ee72ff1
TS
10279#define OPTION_MNO_7000_HILO_FIX (OPTION_MD_BASE + 16)
10280 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
10281 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
ae948b86
TS
10282#define OPTION_FP32 (OPTION_MD_BASE + 17)
10283 {"mfp32", no_argument, NULL, OPTION_FP32},
10284#define OPTION_GP32 (OPTION_MD_BASE + 18)
c97ef257 10285 {"mgp32", no_argument, NULL, OPTION_GP32},
ae948b86 10286#define OPTION_CONSTRUCT_FLOATS (OPTION_MD_BASE + 19)
119d663a 10287 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
ae948b86 10288#define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MD_BASE + 20)
119d663a 10289 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
ae948b86 10290#define OPTION_MARCH (OPTION_MD_BASE + 21)
ec68c924 10291 {"march", required_argument, NULL, OPTION_MARCH},
ae948b86 10292#define OPTION_MTUNE (OPTION_MD_BASE + 22)
ec68c924 10293 {"mtune", required_argument, NULL, OPTION_MTUNE},
316f5878
RS
10294#define OPTION_FP64 (OPTION_MD_BASE + 23)
10295 {"mfp64", no_argument, NULL, OPTION_FP64},
ae948b86
TS
10296#define OPTION_M4650 (OPTION_MD_BASE + 24)
10297 {"m4650", no_argument, NULL, OPTION_M4650},
10298#define OPTION_NO_M4650 (OPTION_MD_BASE + 25)
10299 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
10300#define OPTION_M4010 (OPTION_MD_BASE + 26)
10301 {"m4010", no_argument, NULL, OPTION_M4010},
10302#define OPTION_NO_M4010 (OPTION_MD_BASE + 27)
10303 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
10304#define OPTION_M4100 (OPTION_MD_BASE + 28)
10305 {"m4100", no_argument, NULL, OPTION_M4100},
10306#define OPTION_NO_M4100 (OPTION_MD_BASE + 29)
10307 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
10308#define OPTION_M3900 (OPTION_MD_BASE + 30)
10309 {"m3900", no_argument, NULL, OPTION_M3900},
10310#define OPTION_NO_M3900 (OPTION_MD_BASE + 31)
10311 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
10312#define OPTION_GP64 (OPTION_MD_BASE + 32)
10313 {"mgp64", no_argument, NULL, OPTION_GP64},
1f25f5d3
CD
10314#define OPTION_MIPS3D (OPTION_MD_BASE + 33)
10315 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
10316#define OPTION_NO_MIPS3D (OPTION_MD_BASE + 34)
10317 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
deec1734
CD
10318#define OPTION_MDMX (OPTION_MD_BASE + 35)
10319 {"mdmx", no_argument, NULL, OPTION_MDMX},
10320#define OPTION_NO_MDMX (OPTION_MD_BASE + 36)
10321 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
60b63b72
RS
10322#define OPTION_FIX_VR4122 (OPTION_MD_BASE + 37)
10323#define OPTION_NO_FIX_VR4122 (OPTION_MD_BASE + 38)
10324 {"mfix-vr4122-bugs", no_argument, NULL, OPTION_FIX_VR4122},
10325 {"no-mfix-vr4122-bugs", no_argument, NULL, OPTION_NO_FIX_VR4122},
4a6a3df4
AO
10326#define OPTION_RELAX_BRANCH (OPTION_MD_BASE + 39)
10327#define OPTION_NO_RELAX_BRANCH (OPTION_MD_BASE + 40)
10328 {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH},
10329 {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH},
156c2f8b 10330#ifdef OBJ_ELF
4a6a3df4 10331#define OPTION_ELF_BASE (OPTION_MD_BASE + 41)
156c2f8b 10332#define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
156c2f8b
NC
10333 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
10334 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
ae948b86 10335#define OPTION_NON_SHARED (OPTION_ELF_BASE + 1)
156c2f8b 10336 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
ae948b86 10337#define OPTION_XGOT (OPTION_ELF_BASE + 2)
156c2f8b 10338 {"xgot", no_argument, NULL, OPTION_XGOT},
ae948b86
TS
10339#define OPTION_MABI (OPTION_ELF_BASE + 3)
10340 {"mabi", required_argument, NULL, OPTION_MABI},
10341#define OPTION_32 (OPTION_ELF_BASE + 4)
156c2f8b 10342 {"32", no_argument, NULL, OPTION_32},
ae948b86 10343#define OPTION_N32 (OPTION_ELF_BASE + 5)
e013f690 10344 {"n32", no_argument, NULL, OPTION_N32},
ae948b86 10345#define OPTION_64 (OPTION_ELF_BASE + 6)
156c2f8b 10346 {"64", no_argument, NULL, OPTION_64},
ecb4347a
DJ
10347#define OPTION_MDEBUG (OPTION_ELF_BASE + 7)
10348 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
10349#define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 8)
10350 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
ae948b86 10351#endif /* OBJ_ELF */
252b5132
RH
10352 {NULL, no_argument, NULL, 0}
10353};
156c2f8b 10354size_t md_longopts_size = sizeof (md_longopts);
252b5132 10355
316f5878
RS
10356/* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
10357 NEW_VALUE. Warn if another value was already specified. Note:
10358 we have to defer parsing the -march and -mtune arguments in order
10359 to handle 'from-abi' correctly, since the ABI might be specified
10360 in a later argument. */
10361
10362static void
10363mips_set_option_string (string_ptr, new_value)
10364 const char **string_ptr, *new_value;
10365{
10366 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
10367 as_warn (_("A different %s was already specified, is now %s"),
10368 string_ptr == &mips_arch_string ? "-march" : "-mtune",
10369 new_value);
10370
10371 *string_ptr = new_value;
10372}
10373
252b5132
RH
10374int
10375md_parse_option (c, arg)
10376 int c;
10377 char *arg;
10378{
10379 switch (c)
10380 {
119d663a
NC
10381 case OPTION_CONSTRUCT_FLOATS:
10382 mips_disable_float_construction = 0;
10383 break;
bdaaa2e1 10384
119d663a
NC
10385 case OPTION_NO_CONSTRUCT_FLOATS:
10386 mips_disable_float_construction = 1;
10387 break;
bdaaa2e1 10388
252b5132
RH
10389 case OPTION_TRAP:
10390 mips_trap = 1;
10391 break;
10392
10393 case OPTION_BREAK:
10394 mips_trap = 0;
10395 break;
10396
10397 case OPTION_EB:
10398 target_big_endian = 1;
10399 break;
10400
10401 case OPTION_EL:
10402 target_big_endian = 0;
10403 break;
10404
39c0a331
L
10405 case 'n':
10406 warn_nops = 1;
10407 break;
10408
252b5132
RH
10409 case 'O':
10410 if (arg && arg[1] == '0')
10411 mips_optimize = 1;
10412 else
10413 mips_optimize = 2;
10414 break;
10415
10416 case 'g':
10417 if (arg == NULL)
10418 mips_debug = 2;
10419 else
10420 mips_debug = atoi (arg);
10421 /* When the MIPS assembler sees -g or -g2, it does not do
10422 optimizations which limit full symbolic debugging. We take
10423 that to be equivalent to -O0. */
10424 if (mips_debug == 2)
10425 mips_optimize = 1;
10426 break;
10427
10428 case OPTION_MIPS1:
316f5878 10429 file_mips_isa = ISA_MIPS1;
252b5132
RH
10430 break;
10431
10432 case OPTION_MIPS2:
316f5878 10433 file_mips_isa = ISA_MIPS2;
252b5132
RH
10434 break;
10435
10436 case OPTION_MIPS3:
316f5878 10437 file_mips_isa = ISA_MIPS3;
252b5132
RH
10438 break;
10439
10440 case OPTION_MIPS4:
316f5878 10441 file_mips_isa = ISA_MIPS4;
e7af610e
NC
10442 break;
10443
84ea6cf2 10444 case OPTION_MIPS5:
316f5878 10445 file_mips_isa = ISA_MIPS5;
84ea6cf2
NC
10446 break;
10447
e7af610e 10448 case OPTION_MIPS32:
316f5878 10449 file_mips_isa = ISA_MIPS32;
252b5132
RH
10450 break;
10451
84ea6cf2 10452 case OPTION_MIPS64:
316f5878 10453 file_mips_isa = ISA_MIPS64;
84ea6cf2
NC
10454 break;
10455
ec68c924 10456 case OPTION_MTUNE:
316f5878
RS
10457 mips_set_option_string (&mips_tune_string, arg);
10458 break;
ec68c924 10459
316f5878
RS
10460 case OPTION_MARCH:
10461 mips_set_option_string (&mips_arch_string, arg);
252b5132
RH
10462 break;
10463
10464 case OPTION_M4650:
316f5878
RS
10465 mips_set_option_string (&mips_arch_string, "4650");
10466 mips_set_option_string (&mips_tune_string, "4650");
252b5132
RH
10467 break;
10468
10469 case OPTION_NO_M4650:
10470 break;
10471
10472 case OPTION_M4010:
316f5878
RS
10473 mips_set_option_string (&mips_arch_string, "4010");
10474 mips_set_option_string (&mips_tune_string, "4010");
252b5132
RH
10475 break;
10476
10477 case OPTION_NO_M4010:
10478 break;
10479
10480 case OPTION_M4100:
316f5878
RS
10481 mips_set_option_string (&mips_arch_string, "4100");
10482 mips_set_option_string (&mips_tune_string, "4100");
252b5132
RH
10483 break;
10484
10485 case OPTION_NO_M4100:
10486 break;
10487
252b5132 10488 case OPTION_M3900:
316f5878
RS
10489 mips_set_option_string (&mips_arch_string, "3900");
10490 mips_set_option_string (&mips_tune_string, "3900");
252b5132 10491 break;
bdaaa2e1 10492
252b5132
RH
10493 case OPTION_NO_M3900:
10494 break;
10495
deec1734
CD
10496 case OPTION_MDMX:
10497 mips_opts.ase_mdmx = 1;
10498 break;
10499
10500 case OPTION_NO_MDMX:
10501 mips_opts.ase_mdmx = 0;
10502 break;
10503
252b5132
RH
10504 case OPTION_MIPS16:
10505 mips_opts.mips16 = 1;
b34976b6 10506 mips_no_prev_insn (FALSE);
252b5132
RH
10507 break;
10508
10509 case OPTION_NO_MIPS16:
10510 mips_opts.mips16 = 0;
b34976b6 10511 mips_no_prev_insn (FALSE);
252b5132
RH
10512 break;
10513
1f25f5d3
CD
10514 case OPTION_MIPS3D:
10515 mips_opts.ase_mips3d = 1;
10516 break;
10517
10518 case OPTION_NO_MIPS3D:
10519 mips_opts.ase_mips3d = 0;
10520 break;
10521
252b5132
RH
10522 case OPTION_MEMBEDDED_PIC:
10523 mips_pic = EMBEDDED_PIC;
10524 if (USE_GLOBAL_POINTER_OPT && g_switch_seen)
10525 {
10526 as_bad (_("-G may not be used with embedded PIC code"));
10527 return 0;
10528 }
10529 g_switch_value = 0x7fffffff;
10530 break;
10531
60b63b72
RS
10532 case OPTION_FIX_VR4122:
10533 mips_fix_4122_bugs = 1;
10534 break;
10535
10536 case OPTION_NO_FIX_VR4122:
10537 mips_fix_4122_bugs = 0;
10538 break;
10539
4a6a3df4
AO
10540 case OPTION_RELAX_BRANCH:
10541 mips_relax_branch = 1;
10542 break;
10543
10544 case OPTION_NO_RELAX_BRANCH:
10545 mips_relax_branch = 0;
10546 break;
10547
0f074f60 10548#ifdef OBJ_ELF
252b5132
RH
10549 /* When generating ELF code, we permit -KPIC and -call_shared to
10550 select SVR4_PIC, and -non_shared to select no PIC. This is
10551 intended to be compatible with Irix 5. */
10552 case OPTION_CALL_SHARED:
10553 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10554 {
10555 as_bad (_("-call_shared is supported only for ELF format"));
10556 return 0;
10557 }
10558 mips_pic = SVR4_PIC;
10559 if (g_switch_seen && g_switch_value != 0)
10560 {
10561 as_bad (_("-G may not be used with SVR4 PIC code"));
10562 return 0;
10563 }
10564 g_switch_value = 0;
10565 break;
10566
10567 case OPTION_NON_SHARED:
10568 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10569 {
10570 as_bad (_("-non_shared is supported only for ELF format"));
10571 return 0;
10572 }
10573 mips_pic = NO_PIC;
10574 break;
10575
10576 /* The -xgot option tells the assembler to use 32 offsets when
10577 accessing the got in SVR4_PIC mode. It is for Irix
10578 compatibility. */
10579 case OPTION_XGOT:
10580 mips_big_got = 1;
10581 break;
0f074f60 10582#endif /* OBJ_ELF */
252b5132
RH
10583
10584 case 'G':
10585 if (! USE_GLOBAL_POINTER_OPT)
10586 {
10587 as_bad (_("-G is not supported for this configuration"));
10588 return 0;
10589 }
10590 else if (mips_pic == SVR4_PIC || mips_pic == EMBEDDED_PIC)
10591 {
10592 as_bad (_("-G may not be used with SVR4 or embedded PIC code"));
10593 return 0;
10594 }
10595 else
10596 g_switch_value = atoi (arg);
10597 g_switch_seen = 1;
10598 break;
10599
0f074f60 10600#ifdef OBJ_ELF
34ba82a8
TS
10601 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
10602 and -mabi=64. */
252b5132 10603 case OPTION_32:
34ba82a8
TS
10604 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10605 {
10606 as_bad (_("-32 is supported for ELF format only"));
10607 return 0;
10608 }
316f5878 10609 mips_abi = O32_ABI;
252b5132
RH
10610 break;
10611
e013f690 10612 case OPTION_N32:
34ba82a8
TS
10613 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10614 {
10615 as_bad (_("-n32 is supported for ELF format only"));
10616 return 0;
10617 }
316f5878 10618 mips_abi = N32_ABI;
e013f690 10619 break;
252b5132 10620
e013f690 10621 case OPTION_64:
34ba82a8
TS
10622 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10623 {
10624 as_bad (_("-64 is supported for ELF format only"));
10625 return 0;
10626 }
316f5878 10627 mips_abi = N64_ABI;
e013f690
TS
10628 if (! support_64bit_objects())
10629 as_fatal (_("No compiled in support for 64 bit object file format"));
252b5132 10630 break;
ae948b86 10631#endif /* OBJ_ELF */
252b5132 10632
c97ef257 10633 case OPTION_GP32:
a325df1d 10634 file_mips_gp32 = 1;
c97ef257
AH
10635 break;
10636
10637 case OPTION_GP64:
a325df1d 10638 file_mips_gp32 = 0;
c97ef257 10639 break;
252b5132 10640
ca4e0257 10641 case OPTION_FP32:
a325df1d 10642 file_mips_fp32 = 1;
316f5878
RS
10643 break;
10644
10645 case OPTION_FP64:
10646 file_mips_fp32 = 0;
ca4e0257
RS
10647 break;
10648
ae948b86 10649#ifdef OBJ_ELF
252b5132 10650 case OPTION_MABI:
34ba82a8
TS
10651 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10652 {
10653 as_bad (_("-mabi is supported for ELF format only"));
10654 return 0;
10655 }
e013f690 10656 if (strcmp (arg, "32") == 0)
316f5878 10657 mips_abi = O32_ABI;
e013f690 10658 else if (strcmp (arg, "o64") == 0)
316f5878 10659 mips_abi = O64_ABI;
e013f690 10660 else if (strcmp (arg, "n32") == 0)
316f5878 10661 mips_abi = N32_ABI;
e013f690
TS
10662 else if (strcmp (arg, "64") == 0)
10663 {
316f5878 10664 mips_abi = N64_ABI;
e013f690
TS
10665 if (! support_64bit_objects())
10666 as_fatal (_("No compiled in support for 64 bit object file "
10667 "format"));
10668 }
10669 else if (strcmp (arg, "eabi") == 0)
316f5878 10670 mips_abi = EABI_ABI;
e013f690 10671 else
da0e507f
TS
10672 {
10673 as_fatal (_("invalid abi -mabi=%s"), arg);
10674 return 0;
10675 }
252b5132 10676 break;
e013f690 10677#endif /* OBJ_ELF */
252b5132 10678
6b76fefe 10679 case OPTION_M7000_HILO_FIX:
b34976b6 10680 mips_7000_hilo_fix = TRUE;
6b76fefe
CM
10681 break;
10682
9ee72ff1 10683 case OPTION_MNO_7000_HILO_FIX:
b34976b6 10684 mips_7000_hilo_fix = FALSE;
6b76fefe
CM
10685 break;
10686
ecb4347a
DJ
10687#ifdef OBJ_ELF
10688 case OPTION_MDEBUG:
b34976b6 10689 mips_flag_mdebug = TRUE;
ecb4347a
DJ
10690 break;
10691
10692 case OPTION_NO_MDEBUG:
b34976b6 10693 mips_flag_mdebug = FALSE;
ecb4347a
DJ
10694 break;
10695#endif /* OBJ_ELF */
10696
252b5132
RH
10697 default:
10698 return 0;
10699 }
10700
10701 return 1;
10702}
316f5878
RS
10703\f
10704/* Set up globals to generate code for the ISA or processor
10705 described by INFO. */
252b5132 10706
252b5132 10707static void
316f5878
RS
10708mips_set_architecture (info)
10709 const struct mips_cpu_info *info;
252b5132 10710{
316f5878 10711 if (info != 0)
252b5132 10712 {
316f5878
RS
10713 mips_arch_info = info;
10714 mips_arch = info->cpu;
10715 mips_opts.isa = info->isa;
252b5132 10716 }
252b5132
RH
10717}
10718
252b5132 10719
316f5878 10720/* Likewise for tuning. */
252b5132 10721
316f5878
RS
10722static void
10723mips_set_tune (info)
10724 const struct mips_cpu_info *info;
10725{
10726 if (info != 0)
10727 {
10728 mips_tune_info = info;
10729 mips_tune = info->cpu;
10730 }
10731}
80cc45a5 10732
34ba82a8 10733
252b5132 10734void
e9670677
MR
10735mips_after_parse_args ()
10736{
e9670677
MR
10737 /* GP relative stuff not working for PE */
10738 if (strncmp (TARGET_OS, "pe", 2) == 0
10739 && g_switch_value != 0)
10740 {
10741 if (g_switch_seen)
10742 as_bad (_("-G not supported in this configuration."));
10743 g_switch_value = 0;
10744 }
10745
22923709
RS
10746 /* The following code determines the architecture and register size.
10747 Similar code was added to GCC 3.3 (see override_options() in
10748 config/mips/mips.c). The GAS and GCC code should be kept in sync
10749 as much as possible. */
e9670677 10750
316f5878
RS
10751 if (mips_arch_string != 0)
10752 mips_set_architecture (mips_parse_cpu ("-march", mips_arch_string));
e9670677 10753
316f5878
RS
10754 if (mips_tune_string != 0)
10755 mips_set_tune (mips_parse_cpu ("-mtune", mips_tune_string));
e9670677 10756
316f5878 10757 if (file_mips_isa != ISA_UNKNOWN)
e9670677 10758 {
316f5878
RS
10759 /* Handle -mipsN. At this point, file_mips_isa contains the
10760 ISA level specified by -mipsN, while mips_opts.isa contains
10761 the -march selection (if any). */
10762 if (mips_arch_info != 0)
e9670677 10763 {
316f5878
RS
10764 /* -march takes precedence over -mipsN, since it is more descriptive.
10765 There's no harm in specifying both as long as the ISA levels
10766 are the same. */
10767 if (file_mips_isa != mips_opts.isa)
10768 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
10769 mips_cpu_info_from_isa (file_mips_isa)->name,
10770 mips_cpu_info_from_isa (mips_opts.isa)->name);
e9670677 10771 }
316f5878
RS
10772 else
10773 mips_set_architecture (mips_cpu_info_from_isa (file_mips_isa));
e9670677
MR
10774 }
10775
316f5878
RS
10776 if (mips_arch_info == 0)
10777 mips_set_architecture (mips_parse_cpu ("default CPU",
10778 MIPS_CPU_STRING_DEFAULT));
e9670677 10779
316f5878
RS
10780 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (mips_opts.isa))
10781 as_bad ("-march=%s is not compatible with the selected ABI",
10782 mips_arch_info->name);
e9670677 10783
316f5878
RS
10784 /* Optimize for mips_arch, unless -mtune selects a different processor. */
10785 if (mips_tune_info == 0)
10786 mips_set_tune (mips_arch_info);
e9670677 10787
316f5878 10788 if (file_mips_gp32 >= 0)
e9670677 10789 {
316f5878
RS
10790 /* The user specified the size of the integer registers. Make sure
10791 it agrees with the ABI and ISA. */
10792 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
10793 as_bad (_("-mgp64 used with a 32-bit processor"));
10794 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
10795 as_bad (_("-mgp32 used with a 64-bit ABI"));
10796 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
10797 as_bad (_("-mgp64 used with a 32-bit ABI"));
e9670677
MR
10798 }
10799 else
10800 {
316f5878
RS
10801 /* Infer the integer register size from the ABI and processor.
10802 Restrict ourselves to 32-bit registers if that's all the
10803 processor has, or if the ABI cannot handle 64-bit registers. */
10804 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
10805 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
e9670677
MR
10806 }
10807
316f5878
RS
10808 /* ??? GAS treats single-float processors as though they had 64-bit
10809 float registers (although it complains when double-precision
10810 instructions are used). As things stand, saying they have 32-bit
10811 registers would lead to spurious "register must be even" messages.
10812 So here we assume float registers are always the same size as
10813 integer ones, unless the user says otherwise. */
10814 if (file_mips_fp32 < 0)
10815 file_mips_fp32 = file_mips_gp32;
e9670677 10816
316f5878 10817 /* End of GCC-shared inference code. */
e9670677 10818
316f5878
RS
10819 /* ??? When do we want this flag to be set? Who uses it? */
10820 if (file_mips_gp32 == 1
10821 && mips_abi == NO_ABI
10822 && ISA_HAS_64BIT_REGS (mips_opts.isa))
10823 mips_32bitmode = 1;
e9670677
MR
10824
10825 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
10826 as_bad (_("trap exception not supported at ISA 1"));
10827
e9670677
MR
10828 /* If the selected architecture includes support for ASEs, enable
10829 generation of code for them. */
a4672219
TS
10830 if (mips_opts.mips16 == -1)
10831 mips_opts.mips16 = (CPU_HAS_MIPS16 (mips_arch)) ? 1 : 0;
ffdefa66 10832 if (mips_opts.ase_mips3d == -1)
a4672219 10833 mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (mips_arch)) ? 1 : 0;
ffdefa66 10834 if (mips_opts.ase_mdmx == -1)
a4672219 10835 mips_opts.ase_mdmx = (CPU_HAS_MDMX (mips_arch)) ? 1 : 0;
e9670677 10836
e9670677 10837 file_mips_isa = mips_opts.isa;
a4672219 10838 file_ase_mips16 = mips_opts.mips16;
e9670677
MR
10839 file_ase_mips3d = mips_opts.ase_mips3d;
10840 file_ase_mdmx = mips_opts.ase_mdmx;
10841 mips_opts.gp32 = file_mips_gp32;
10842 mips_opts.fp32 = file_mips_fp32;
10843
ecb4347a
DJ
10844 if (mips_flag_mdebug < 0)
10845 {
10846#ifdef OBJ_MAYBE_ECOFF
10847 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
10848 mips_flag_mdebug = 1;
10849 else
10850#endif /* OBJ_MAYBE_ECOFF */
10851 mips_flag_mdebug = 0;
10852 }
e9670677
MR
10853}
10854\f
10855void
252b5132
RH
10856mips_init_after_args ()
10857{
10858 /* initialize opcodes */
10859 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
beae10d5 10860 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
252b5132
RH
10861}
10862
10863long
10864md_pcrel_from (fixP)
10865 fixS *fixP;
10866{
10867 if (OUTPUT_FLAVOR != bfd_target_aout_flavour
10868 && fixP->fx_addsy != (symbolS *) NULL
10869 && ! S_IS_DEFINED (fixP->fx_addsy))
10870 {
6478892d
TS
10871 /* This makes a branch to an undefined symbol be a branch to the
10872 current location. */
cb56d3d3 10873 if (mips_pic == EMBEDDED_PIC)
6478892d 10874 return 4;
cb56d3d3 10875 else
6478892d 10876 return 1;
252b5132
RH
10877 }
10878
c9914766 10879 /* Return the address of the delay slot. */
252b5132
RH
10880 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
10881}
10882
252b5132
RH
10883/* This is called before the symbol table is processed. In order to
10884 work with gcc when using mips-tfile, we must keep all local labels.
10885 However, in other cases, we want to discard them. If we were
10886 called with -g, but we didn't see any debugging information, it may
10887 mean that gcc is smuggling debugging information through to
10888 mips-tfile, in which case we must generate all local labels. */
10889
10890void
10891mips_frob_file_before_adjust ()
10892{
10893#ifndef NO_ECOFF_DEBUGGING
10894 if (ECOFF_DEBUGGING
10895 && mips_debug != 0
10896 && ! ecoff_debugging_seen)
10897 flag_keep_locals = 1;
10898#endif
10899}
10900
10901/* Sort any unmatched HI16_S relocs so that they immediately precede
94f592af 10902 the corresponding LO reloc. This is called before md_apply_fix3 and
252b5132
RH
10903 tc_gen_reloc. Unmatched HI16_S relocs can only be generated by
10904 explicit use of the %hi modifier. */
10905
10906void
10907mips_frob_file ()
10908{
10909 struct mips_hi_fixup *l;
10910
10911 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
10912 {
10913 segment_info_type *seginfo;
10914 int pass;
10915
10916 assert (l->fixp->fx_r_type == BFD_RELOC_HI16_S);
10917
10918 /* Check quickly whether the next fixup happens to be a matching
10919 %lo. */
10920 if (l->fixp->fx_next != NULL
10921 && l->fixp->fx_next->fx_r_type == BFD_RELOC_LO16
10922 && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
10923 && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
10924 continue;
10925
10926 /* Look through the fixups for this segment for a matching %lo.
10927 When we find one, move the %hi just in front of it. We do
10928 this in two passes. In the first pass, we try to find a
10929 unique %lo. In the second pass, we permit multiple %hi
10930 relocs for a single %lo (this is a GNU extension). */
10931 seginfo = seg_info (l->seg);
10932 for (pass = 0; pass < 2; pass++)
10933 {
10934 fixS *f, *prev;
10935
10936 prev = NULL;
10937 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
10938 {
10939 /* Check whether this is a %lo fixup which matches l->fixp. */
10940 if (f->fx_r_type == BFD_RELOC_LO16
10941 && f->fx_addsy == l->fixp->fx_addsy
10942 && f->fx_offset == l->fixp->fx_offset
10943 && (pass == 1
10944 || prev == NULL
10945 || prev->fx_r_type != BFD_RELOC_HI16_S
10946 || prev->fx_addsy != f->fx_addsy
10947 || prev->fx_offset != f->fx_offset))
10948 {
10949 fixS **pf;
10950
10951 /* Move l->fixp before f. */
10952 for (pf = &seginfo->fix_root;
10953 *pf != l->fixp;
10954 pf = &(*pf)->fx_next)
10955 assert (*pf != NULL);
10956
10957 *pf = l->fixp->fx_next;
10958
10959 l->fixp->fx_next = f;
10960 if (prev == NULL)
10961 seginfo->fix_root = l->fixp;
10962 else
10963 prev->fx_next = l->fixp;
10964
10965 break;
10966 }
10967
10968 prev = f;
10969 }
10970
10971 if (f != NULL)
10972 break;
10973
10974#if 0 /* GCC code motion plus incomplete dead code elimination
10975 can leave a %hi without a %lo. */
10976 if (pass == 1)
10977 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
10978 _("Unmatched %%hi reloc"));
10979#endif
10980 }
10981 }
10982}
10983
10984/* When generating embedded PIC code we need to use a special
10985 relocation to represent the difference of two symbols in the .text
10986 section (switch tables use a difference of this sort). See
10987 include/coff/mips.h for details. This macro checks whether this
10988 fixup requires the special reloc. */
10989#define SWITCH_TABLE(fixp) \
10990 ((fixp)->fx_r_type == BFD_RELOC_32 \
bb2d6cd7 10991 && OUTPUT_FLAVOR != bfd_target_elf_flavour \
252b5132
RH
10992 && (fixp)->fx_addsy != NULL \
10993 && (fixp)->fx_subsy != NULL \
10994 && S_GET_SEGMENT ((fixp)->fx_addsy) == text_section \
10995 && S_GET_SEGMENT ((fixp)->fx_subsy) == text_section)
10996
10997/* When generating embedded PIC code we must keep all PC relative
10998 relocations, in case the linker has to relax a call. We also need
f6688943
TS
10999 to keep relocations for switch table entries.
11000
11001 We may have combined relocations without symbols in the N32/N64 ABI.
11002 We have to prevent gas from dropping them. */
252b5132 11003
252b5132
RH
11004int
11005mips_force_relocation (fixp)
11006 fixS *fixp;
11007{
11008 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
a161fe53
AM
11009 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY
11010 || S_FORCE_RELOC (fixp->fx_addsy))
252b5132
RH
11011 return 1;
11012
f6688943
TS
11013 if (HAVE_NEWABI
11014 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
11015 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
11016 || fixp->fx_r_type == BFD_RELOC_HI16_S
11017 || fixp->fx_r_type == BFD_RELOC_LO16))
11018 return 1;
11019
252b5132
RH
11020 return (mips_pic == EMBEDDED_PIC
11021 && (fixp->fx_pcrel
11022 || SWITCH_TABLE (fixp)
11023 || fixp->fx_r_type == BFD_RELOC_PCREL_HI16_S
11024 || fixp->fx_r_type == BFD_RELOC_PCREL_LO16));
11025}
11026
add55e1f
RS
11027#ifdef OBJ_ELF
11028static int
11029mips_need_elf_addend_fixup (fixP)
11030 fixS *fixP;
11031{
2d2bf3e0
CD
11032 if (S_GET_OTHER (fixP->fx_addsy) == STO_MIPS16)
11033 return 1;
b25a253c
CD
11034 if (mips_pic == EMBEDDED_PIC
11035 && S_IS_WEAK (fixP->fx_addsy))
11036 return 1;
11037 if (mips_pic != EMBEDDED_PIC
11038 && (S_IS_WEAK (fixP->fx_addsy)
bad9ca53 11039 || S_IS_EXTERNAL (fixP->fx_addsy))
2d2bf3e0
CD
11040 && !S_IS_COMMON (fixP->fx_addsy))
11041 return 1;
11042 if (symbol_used_in_reloc_p (fixP->fx_addsy)
11043 && (((bfd_get_section_flags (stdoutput,
11044 S_GET_SEGMENT (fixP->fx_addsy))
631cb423 11045 & (SEC_LINK_ONCE | SEC_MERGE)) != 0)
2d2bf3e0
CD
11046 || !strncmp (segment_name (S_GET_SEGMENT (fixP->fx_addsy)),
11047 ".gnu.linkonce",
11048 sizeof (".gnu.linkonce") - 1)))
11049 return 1;
11050 return 0;
add55e1f
RS
11051}
11052#endif
11053
252b5132
RH
11054/* Apply a fixup to the object file. */
11055
94f592af
NC
11056void
11057md_apply_fix3 (fixP, valP, seg)
252b5132 11058 fixS *fixP;
98d3f06f 11059 valueT *valP;
94f592af 11060 segT seg ATTRIBUTE_UNUSED;
252b5132 11061{
874e8986 11062 bfd_byte *buf;
98aa84af
AM
11063 long insn;
11064 valueT value;
ed6fb7bd 11065 static int previous_fx_r_type = 0;
252b5132 11066
65551fa4
CD
11067 /* FIXME: Maybe just return for all reloc types not listed below?
11068 Eric Christopher says: "This is stupid, please rewrite md_apply_fix3. */
11069 if (fixP->fx_r_type == BFD_RELOC_8)
11070 return;
11071
252b5132
RH
11072 assert (fixP->fx_size == 4
11073 || fixP->fx_r_type == BFD_RELOC_16
f6688943
TS
11074 || fixP->fx_r_type == BFD_RELOC_32
11075 || fixP->fx_r_type == BFD_RELOC_MIPS_JMP
11076 || fixP->fx_r_type == BFD_RELOC_HI16_S
11077 || fixP->fx_r_type == BFD_RELOC_LO16
11078 || fixP->fx_r_type == BFD_RELOC_GPREL16
76b3015f 11079 || fixP->fx_r_type == BFD_RELOC_MIPS_LITERAL
f6688943 11080 || fixP->fx_r_type == BFD_RELOC_GPREL32
252b5132 11081 || fixP->fx_r_type == BFD_RELOC_64
f6688943
TS
11082 || fixP->fx_r_type == BFD_RELOC_CTOR
11083 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
11084 || fixP->fx_r_type == BFD_RELOC_MIPS_HIGHEST
11085 || fixP->fx_r_type == BFD_RELOC_MIPS_HIGHER
11086 || fixP->fx_r_type == BFD_RELOC_MIPS_SCN_DISP
11087 || fixP->fx_r_type == BFD_RELOC_MIPS_REL16
11088 || fixP->fx_r_type == BFD_RELOC_MIPS_RELGOT
252b5132 11089 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
438c16b8
TS
11090 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
11091 || fixP->fx_r_type == BFD_RELOC_MIPS_JALR);
252b5132 11092
98d3f06f 11093 value = *valP;
252b5132
RH
11094
11095 /* If we aren't adjusting this fixup to be against the section
11096 symbol, we need to adjust the value. */
11097#ifdef OBJ_ELF
11098 if (fixP->fx_addsy != NULL && OUTPUT_FLAVOR == bfd_target_elf_flavour)
bb2d6cd7 11099 {
add55e1f 11100 if (mips_need_elf_addend_fixup (fixP))
98aa84af 11101 {
d6e9d61a 11102 reloc_howto_type *howto;
98aa84af 11103 valueT symval = S_GET_VALUE (fixP->fx_addsy);
94f592af 11104
98aa84af 11105 value -= symval;
d6e9d61a
MR
11106
11107 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
7a49a8c2
L
11108 if (value != 0 && howto->partial_inplace
11109 && (! fixP->fx_pcrel || howto->pcrel_offset))
98aa84af
AM
11110 {
11111 /* In this case, the bfd_install_relocation routine will
11112 incorrectly add the symbol value back in. We just want
7a49a8c2 11113 the addend to appear in the object file.
b34976b6 11114
7a49a8c2
L
11115 howto->pcrel_offset is added for R_MIPS_PC16, which is
11116 generated for code like
b34976b6 11117
7a49a8c2
L
11118 globl g1 .text
11119 .text
11120 .space 20
11121 g1:
11122 x:
11123 bal g1
11124 */
98aa84af 11125 value -= symval;
7461da6e
RS
11126
11127 /* Make sure the addend is still non-zero. If it became zero
11128 after the last operation, set it to a spurious value and
11129 subtract the same value from the object file's contents. */
11130 if (value == 0)
11131 {
11132 value = 8;
11133
11134 /* The in-place addends for LO16 relocations are signed;
11135 leave the matching HI16 in-place addends as zero. */
11136 if (fixP->fx_r_type != BFD_RELOC_HI16_S)
11137 {
7461da6e
RS
11138 bfd_vma contents, mask, field;
11139
7461da6e
RS
11140 contents = bfd_get_bits (fixP->fx_frag->fr_literal
11141 + fixP->fx_where,
11142 fixP->fx_size * 8,
11143 target_big_endian);
11144
11145 /* MASK has bits set where the relocation should go.
11146 FIELD is -value, shifted into the appropriate place
11147 for this relocation. */
11148 mask = 1 << (howto->bitsize - 1);
11149 mask = (((mask - 1) << 1) | 1) << howto->bitpos;
11150 field = (-value >> howto->rightshift) << howto->bitpos;
11151
11152 bfd_put_bits ((field & mask) | (contents & ~mask),
11153 fixP->fx_frag->fr_literal + fixP->fx_where,
11154 fixP->fx_size * 8,
11155 target_big_endian);
11156 }
11157 }
98aa84af
AM
11158 }
11159 }
252b5132 11160
bb2d6cd7
GK
11161 /* This code was generated using trial and error and so is
11162 fragile and not trustworthy. If you change it, you should
11163 rerun the elf-rel, elf-rel2, and empic testcases and ensure
11164 they still pass. */
11165 if (fixP->fx_pcrel || fixP->fx_subsy != NULL)
11166 {
11167 value += fixP->fx_frag->fr_address + fixP->fx_where;
11168
11169 /* BFD's REL handling, for MIPS, is _very_ weird.
11170 This gives the right results, but it can't possibly
11171 be the way things are supposed to work. */
cb56d3d3
TS
11172 if ((fixP->fx_r_type != BFD_RELOC_16_PCREL
11173 && fixP->fx_r_type != BFD_RELOC_16_PCREL_S2)
bb2d6cd7
GK
11174 || S_GET_SEGMENT (fixP->fx_addsy) != undefined_section)
11175 value += fixP->fx_frag->fr_address + fixP->fx_where;
11176 }
11177 }
11178#endif
252b5132 11179
94f592af 11180 fixP->fx_addnumber = value; /* Remember value for tc_gen_reloc. */
252b5132 11181
ed6fb7bd
SC
11182 /* We are not done if this is a composite relocation to set up gp. */
11183 if (fixP->fx_addsy == NULL && ! fixP->fx_pcrel
11184 && !(fixP->fx_r_type == BFD_RELOC_MIPS_SUB
10181a0d
AO
11185 || (fixP->fx_r_type == BFD_RELOC_64
11186 && (previous_fx_r_type == BFD_RELOC_GPREL32
11187 || previous_fx_r_type == BFD_RELOC_GPREL16))
ed6fb7bd
SC
11188 || (previous_fx_r_type == BFD_RELOC_MIPS_SUB
11189 && (fixP->fx_r_type == BFD_RELOC_HI16_S
11190 || fixP->fx_r_type == BFD_RELOC_LO16))))
252b5132 11191 fixP->fx_done = 1;
ed6fb7bd 11192 previous_fx_r_type = fixP->fx_r_type;
252b5132
RH
11193
11194 switch (fixP->fx_r_type)
11195 {
11196 case BFD_RELOC_MIPS_JMP:
e369bcce
TS
11197 case BFD_RELOC_MIPS_SHIFT5:
11198 case BFD_RELOC_MIPS_SHIFT6:
11199 case BFD_RELOC_MIPS_GOT_DISP:
11200 case BFD_RELOC_MIPS_GOT_PAGE:
11201 case BFD_RELOC_MIPS_GOT_OFST:
11202 case BFD_RELOC_MIPS_SUB:
11203 case BFD_RELOC_MIPS_INSERT_A:
11204 case BFD_RELOC_MIPS_INSERT_B:
11205 case BFD_RELOC_MIPS_DELETE:
11206 case BFD_RELOC_MIPS_HIGHEST:
11207 case BFD_RELOC_MIPS_HIGHER:
11208 case BFD_RELOC_MIPS_SCN_DISP:
11209 case BFD_RELOC_MIPS_REL16:
11210 case BFD_RELOC_MIPS_RELGOT:
11211 case BFD_RELOC_MIPS_JALR:
252b5132
RH
11212 case BFD_RELOC_HI16:
11213 case BFD_RELOC_HI16_S:
cdf6fd85 11214 case BFD_RELOC_GPREL16:
252b5132
RH
11215 case BFD_RELOC_MIPS_LITERAL:
11216 case BFD_RELOC_MIPS_CALL16:
11217 case BFD_RELOC_MIPS_GOT16:
cdf6fd85 11218 case BFD_RELOC_GPREL32:
252b5132
RH
11219 case BFD_RELOC_MIPS_GOT_HI16:
11220 case BFD_RELOC_MIPS_GOT_LO16:
11221 case BFD_RELOC_MIPS_CALL_HI16:
11222 case BFD_RELOC_MIPS_CALL_LO16:
11223 case BFD_RELOC_MIPS16_GPREL:
11224 if (fixP->fx_pcrel)
11225 as_bad_where (fixP->fx_file, fixP->fx_line,
11226 _("Invalid PC relative reloc"));
11227 /* Nothing needed to do. The value comes from the reloc entry */
11228 break;
11229
11230 case BFD_RELOC_MIPS16_JMP:
11231 /* We currently always generate a reloc against a symbol, which
11232 means that we don't want an addend even if the symbol is
11233 defined. */
11234 fixP->fx_addnumber = 0;
11235 break;
11236
11237 case BFD_RELOC_PCREL_HI16_S:
11238 /* The addend for this is tricky if it is internal, so we just
11239 do everything here rather than in bfd_install_relocation. */
bdaaa2e1 11240 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
bb2d6cd7
GK
11241 && !fixP->fx_done
11242 && value != 0)
11243 break;
11244 if (fixP->fx_addsy
11245 && (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_SECTION_SYM) == 0)
252b5132
RH
11246 {
11247 /* For an external symbol adjust by the address to make it
11248 pcrel_offset. We use the address of the RELLO reloc
11249 which follows this one. */
11250 value += (fixP->fx_next->fx_frag->fr_address
11251 + fixP->fx_next->fx_where);
11252 }
e7d556df 11253 value = ((value + 0x8000) >> 16) & 0xffff;
874e8986 11254 buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
252b5132
RH
11255 if (target_big_endian)
11256 buf += 2;
874e8986 11257 md_number_to_chars ((char *) buf, value, 2);
252b5132
RH
11258 break;
11259
11260 case BFD_RELOC_PCREL_LO16:
11261 /* The addend for this is tricky if it is internal, so we just
11262 do everything here rather than in bfd_install_relocation. */
bdaaa2e1 11263 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
bb2d6cd7
GK
11264 && !fixP->fx_done
11265 && value != 0)
11266 break;
11267 if (fixP->fx_addsy
11268 && (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_SECTION_SYM) == 0)
252b5132 11269 value += fixP->fx_frag->fr_address + fixP->fx_where;
874e8986 11270 buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
252b5132
RH
11271 if (target_big_endian)
11272 buf += 2;
874e8986 11273 md_number_to_chars ((char *) buf, value, 2);
252b5132
RH
11274 break;
11275
11276 case BFD_RELOC_64:
11277 /* This is handled like BFD_RELOC_32, but we output a sign
11278 extended value if we are only 32 bits. */
11279 if (fixP->fx_done
11280 || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
11281 {
11282 if (8 <= sizeof (valueT))
11283 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
11284 value, 8);
11285 else
11286 {
11287 long w1, w2;
11288 long hiv;
11289
11290 w1 = w2 = fixP->fx_where;
11291 if (target_big_endian)
11292 w1 += 4;
11293 else
11294 w2 += 4;
11295 md_number_to_chars (fixP->fx_frag->fr_literal + w1, value, 4);
11296 if ((value & 0x80000000) != 0)
11297 hiv = 0xffffffff;
11298 else
11299 hiv = 0;
11300 md_number_to_chars (fixP->fx_frag->fr_literal + w2, hiv, 4);
11301 }
11302 }
11303 break;
11304
056350c6 11305 case BFD_RELOC_RVA:
252b5132
RH
11306 case BFD_RELOC_32:
11307 /* If we are deleting this reloc entry, we must fill in the
11308 value now. This can happen if we have a .word which is not
11309 resolved when it appears but is later defined. We also need
11310 to fill in the value if this is an embedded PIC switch table
11311 entry. */
11312 if (fixP->fx_done
11313 || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
11314 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
11315 value, 4);
11316 break;
11317
11318 case BFD_RELOC_16:
11319 /* If we are deleting this reloc entry, we must fill in the
11320 value now. */
11321 assert (fixP->fx_size == 2);
11322 if (fixP->fx_done)
11323 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
11324 value, 2);
11325 break;
11326
11327 case BFD_RELOC_LO16:
11328 /* When handling an embedded PIC switch statement, we can wind
11329 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
11330 if (fixP->fx_done)
11331 {
98aa84af 11332 if (value + 0x8000 > 0xffff)
252b5132
RH
11333 as_bad_where (fixP->fx_file, fixP->fx_line,
11334 _("relocation overflow"));
874e8986 11335 buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
252b5132
RH
11336 if (target_big_endian)
11337 buf += 2;
874e8986 11338 md_number_to_chars ((char *) buf, value, 2);
252b5132
RH
11339 }
11340 break;
11341
11342 case BFD_RELOC_16_PCREL_S2:
cb56d3d3
TS
11343 if ((value & 0x3) != 0)
11344 as_bad_where (fixP->fx_file, fixP->fx_line,
11345 _("Branch to odd address (%lx)"), (long) value);
11346
11347 /* Fall through. */
11348
11349 case BFD_RELOC_16_PCREL:
252b5132
RH
11350 /*
11351 * We need to save the bits in the instruction since fixup_segment()
11352 * might be deleting the relocation entry (i.e., a branch within
11353 * the current segment).
11354 */
bb2d6cd7
GK
11355 if (!fixP->fx_done && value != 0)
11356 break;
11357 /* If 'value' is zero, the remaining reloc code won't actually
11358 do the store, so it must be done here. This is probably
11359 a bug somewhere. */
b25a253c
CD
11360 if (!fixP->fx_done
11361 && (fixP->fx_r_type != BFD_RELOC_16_PCREL_S2
11362 || fixP->fx_addsy == NULL /* ??? */
11363 || ! S_IS_DEFINED (fixP->fx_addsy)))
bb2d6cd7 11364 value -= fixP->fx_frag->fr_address + fixP->fx_where;
bdaaa2e1 11365
98aa84af 11366 value = (offsetT) value >> 2;
252b5132
RH
11367
11368 /* update old instruction data */
874e8986 11369 buf = (bfd_byte *) (fixP->fx_where + fixP->fx_frag->fr_literal);
252b5132
RH
11370 if (target_big_endian)
11371 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
11372 else
11373 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
11374
98aa84af 11375 if (value + 0x8000 <= 0xffff)
252b5132
RH
11376 insn |= value & 0xffff;
11377 else
11378 {
11379 /* The branch offset is too large. If this is an
11380 unconditional branch, and we are not generating PIC code,
11381 we can convert it to an absolute jump instruction. */
11382 if (mips_pic == NO_PIC
11383 && fixP->fx_done
11384 && fixP->fx_frag->fr_address >= text_section->vma
11385 && (fixP->fx_frag->fr_address
11386 < text_section->vma + text_section->_raw_size)
11387 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
11388 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
11389 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
11390 {
11391 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
11392 insn = 0x0c000000; /* jal */
11393 else
11394 insn = 0x08000000; /* j */
11395 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
11396 fixP->fx_done = 0;
11397 fixP->fx_addsy = section_symbol (text_section);
11398 fixP->fx_addnumber = (value << 2) + md_pcrel_from (fixP);
11399 }
11400 else
11401 {
4a6a3df4
AO
11402 /* If we got here, we have branch-relaxation disabled,
11403 and there's nothing we can do to fix this instruction
11404 without turning it into a longer sequence. */
252b5132
RH
11405 as_bad_where (fixP->fx_file, fixP->fx_line,
11406 _("Branch out of range"));
11407 }
11408 }
11409
11410 md_number_to_chars ((char *) buf, (valueT) insn, 4);
11411 break;
11412
11413 case BFD_RELOC_VTABLE_INHERIT:
11414 fixP->fx_done = 0;
11415 if (fixP->fx_addsy
11416 && !S_IS_DEFINED (fixP->fx_addsy)
11417 && !S_IS_WEAK (fixP->fx_addsy))
11418 S_SET_WEAK (fixP->fx_addsy);
11419 break;
11420
11421 case BFD_RELOC_VTABLE_ENTRY:
11422 fixP->fx_done = 0;
11423 break;
11424
11425 default:
11426 internalError ();
11427 }
252b5132
RH
11428}
11429
11430#if 0
11431void
11432printInsn (oc)
11433 unsigned long oc;
11434{
11435 const struct mips_opcode *p;
11436 int treg, sreg, dreg, shamt;
11437 short imm;
11438 const char *args;
11439 int i;
11440
11441 for (i = 0; i < NUMOPCODES; ++i)
11442 {
11443 p = &mips_opcodes[i];
11444 if (((oc & p->mask) == p->match) && (p->pinfo != INSN_MACRO))
11445 {
11446 printf ("%08lx %s\t", oc, p->name);
11447 treg = (oc >> 16) & 0x1f;
11448 sreg = (oc >> 21) & 0x1f;
11449 dreg = (oc >> 11) & 0x1f;
11450 shamt = (oc >> 6) & 0x1f;
11451 imm = oc;
11452 for (args = p->args;; ++args)
11453 {
11454 switch (*args)
11455 {
11456 case '\0':
11457 printf ("\n");
11458 break;
11459
11460 case ',':
11461 case '(':
11462 case ')':
11463 printf ("%c", *args);
11464 continue;
11465
11466 case 'r':
11467 assert (treg == sreg);
11468 printf ("$%d,$%d", treg, sreg);
11469 continue;
11470
11471 case 'd':
11472 case 'G':
11473 printf ("$%d", dreg);
11474 continue;
11475
11476 case 't':
11477 case 'E':
11478 printf ("$%d", treg);
11479 continue;
11480
11481 case 'k':
11482 printf ("0x%x", treg);
11483 continue;
11484
11485 case 'b':
11486 case 's':
11487 printf ("$%d", sreg);
11488 continue;
11489
11490 case 'a':
11491 printf ("0x%08lx", oc & 0x1ffffff);
11492 continue;
11493
11494 case 'i':
11495 case 'j':
11496 case 'o':
11497 case 'u':
11498 printf ("%d", imm);
11499 continue;
11500
11501 case '<':
11502 case '>':
11503 printf ("$%d", shamt);
11504 continue;
11505
11506 default:
11507 internalError ();
11508 }
11509 break;
11510 }
11511 return;
11512 }
11513 }
11514 printf (_("%08lx UNDEFINED\n"), oc);
11515}
11516#endif
11517
11518static symbolS *
11519get_symbol ()
11520{
11521 int c;
11522 char *name;
11523 symbolS *p;
11524
11525 name = input_line_pointer;
11526 c = get_symbol_end ();
11527 p = (symbolS *) symbol_find_or_make (name);
11528 *input_line_pointer = c;
11529 return p;
11530}
11531
11532/* Align the current frag to a given power of two. The MIPS assembler
11533 also automatically adjusts any preceding label. */
11534
11535static void
11536mips_align (to, fill, label)
11537 int to;
11538 int fill;
11539 symbolS *label;
11540{
b34976b6 11541 mips_emit_delays (FALSE);
252b5132
RH
11542 frag_align (to, fill, 0);
11543 record_alignment (now_seg, to);
11544 if (label != NULL)
11545 {
11546 assert (S_GET_SEGMENT (label) == now_seg);
49309057 11547 symbol_set_frag (label, frag_now);
252b5132
RH
11548 S_SET_VALUE (label, (valueT) frag_now_fix ());
11549 }
11550}
11551
11552/* Align to a given power of two. .align 0 turns off the automatic
11553 alignment used by the data creating pseudo-ops. */
11554
11555static void
11556s_align (x)
43841e91 11557 int x ATTRIBUTE_UNUSED;
252b5132
RH
11558{
11559 register int temp;
11560 register long temp_fill;
11561 long max_alignment = 15;
11562
11563 /*
11564
11565 o Note that the assembler pulls down any immediately preceeding label
11566 to the aligned address.
11567 o It's not documented but auto alignment is reinstated by
11568 a .align pseudo instruction.
11569 o Note also that after auto alignment is turned off the mips assembler
11570 issues an error on attempt to assemble an improperly aligned data item.
11571 We don't.
11572
11573 */
11574
11575 temp = get_absolute_expression ();
11576 if (temp > max_alignment)
11577 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
11578 else if (temp < 0)
11579 {
11580 as_warn (_("Alignment negative: 0 assumed."));
11581 temp = 0;
11582 }
11583 if (*input_line_pointer == ',')
11584 {
f9419b05 11585 ++input_line_pointer;
252b5132
RH
11586 temp_fill = get_absolute_expression ();
11587 }
11588 else
11589 temp_fill = 0;
11590 if (temp)
11591 {
11592 auto_align = 1;
11593 mips_align (temp, (int) temp_fill,
11594 insn_labels != NULL ? insn_labels->label : NULL);
11595 }
11596 else
11597 {
11598 auto_align = 0;
11599 }
11600
11601 demand_empty_rest_of_line ();
11602}
11603
11604void
11605mips_flush_pending_output ()
11606{
b34976b6 11607 mips_emit_delays (FALSE);
252b5132
RH
11608 mips_clear_insn_labels ();
11609}
11610
11611static void
11612s_change_sec (sec)
11613 int sec;
11614{
11615 segT seg;
11616
11617 /* When generating embedded PIC code, we only use the .text, .lit8,
11618 .sdata and .sbss sections. We change the .data and .rdata
11619 pseudo-ops to use .sdata. */
11620 if (mips_pic == EMBEDDED_PIC
11621 && (sec == 'd' || sec == 'r'))
11622 sec = 's';
11623
11624#ifdef OBJ_ELF
11625 /* The ELF backend needs to know that we are changing sections, so
11626 that .previous works correctly. We could do something like check
b6ff326e 11627 for an obj_section_change_hook macro, but that might be confusing
252b5132
RH
11628 as it would not be appropriate to use it in the section changing
11629 functions in read.c, since obj-elf.c intercepts those. FIXME:
11630 This should be cleaner, somehow. */
11631 obj_elf_section_change_hook ();
11632#endif
11633
b34976b6 11634 mips_emit_delays (FALSE);
252b5132
RH
11635 switch (sec)
11636 {
11637 case 't':
11638 s_text (0);
11639 break;
11640 case 'd':
11641 s_data (0);
11642 break;
11643 case 'b':
11644 subseg_set (bss_section, (subsegT) get_absolute_expression ());
11645 demand_empty_rest_of_line ();
11646 break;
11647
11648 case 'r':
11649 if (USE_GLOBAL_POINTER_OPT)
11650 {
11651 seg = subseg_new (RDATA_SECTION_NAME,
11652 (subsegT) get_absolute_expression ());
11653 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11654 {
11655 bfd_set_section_flags (stdoutput, seg,
11656 (SEC_ALLOC
11657 | SEC_LOAD
11658 | SEC_READONLY
11659 | SEC_RELOC
11660 | SEC_DATA));
11661 if (strcmp (TARGET_OS, "elf") != 0)
e799a695 11662 record_alignment (seg, 4);
252b5132
RH
11663 }
11664 demand_empty_rest_of_line ();
11665 }
11666 else
11667 {
11668 as_bad (_("No read only data section in this object file format"));
11669 demand_empty_rest_of_line ();
11670 return;
11671 }
11672 break;
11673
11674 case 's':
11675 if (USE_GLOBAL_POINTER_OPT)
11676 {
11677 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
11678 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11679 {
11680 bfd_set_section_flags (stdoutput, seg,
11681 SEC_ALLOC | SEC_LOAD | SEC_RELOC
11682 | SEC_DATA);
11683 if (strcmp (TARGET_OS, "elf") != 0)
e799a695 11684 record_alignment (seg, 4);
252b5132
RH
11685 }
11686 demand_empty_rest_of_line ();
11687 break;
11688 }
11689 else
11690 {
11691 as_bad (_("Global pointers not supported; recompile -G 0"));
11692 demand_empty_rest_of_line ();
11693 return;
11694 }
11695 }
11696
11697 auto_align = 1;
11698}
b34976b6 11699
cca86cc8
SC
11700void
11701s_change_section (ignore)
11702 int ignore ATTRIBUTE_UNUSED;
11703{
7ed4a06a 11704#ifdef OBJ_ELF
cca86cc8
SC
11705 char *section_name;
11706 char c;
4cf0dd0d 11707 char next_c;
cca86cc8
SC
11708 int section_type;
11709 int section_flag;
11710 int section_entry_size;
11711 int section_alignment;
b34976b6 11712
7ed4a06a
TS
11713 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
11714 return;
11715
cca86cc8
SC
11716 section_name = input_line_pointer;
11717 c = get_symbol_end ();
a816d1ed
AO
11718 if (c)
11719 next_c = *(input_line_pointer + 1);
cca86cc8 11720
4cf0dd0d
TS
11721 /* Do we have .section Name<,"flags">? */
11722 if (c != ',' || (c == ',' && next_c == '"'))
cca86cc8 11723 {
4cf0dd0d
TS
11724 /* just after name is now '\0'. */
11725 *input_line_pointer = c;
cca86cc8
SC
11726 input_line_pointer = section_name;
11727 obj_elf_section (ignore);
11728 return;
11729 }
11730 input_line_pointer++;
11731
11732 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
11733 if (c == ',')
11734 section_type = get_absolute_expression ();
11735 else
11736 section_type = 0;
11737 if (*input_line_pointer++ == ',')
11738 section_flag = get_absolute_expression ();
11739 else
11740 section_flag = 0;
11741 if (*input_line_pointer++ == ',')
11742 section_entry_size = get_absolute_expression ();
11743 else
11744 section_entry_size = 0;
11745 if (*input_line_pointer++ == ',')
11746 section_alignment = get_absolute_expression ();
11747 else
11748 section_alignment = 0;
11749
a816d1ed
AO
11750 section_name = xstrdup (section_name);
11751
cca86cc8
SC
11752 obj_elf_change_section (section_name, section_type, section_flag,
11753 section_entry_size, 0, 0, 0);
a816d1ed
AO
11754
11755 if (now_seg->name != section_name)
11756 free (section_name);
7ed4a06a 11757#endif /* OBJ_ELF */
cca86cc8 11758}
252b5132
RH
11759
11760void
11761mips_enable_auto_align ()
11762{
11763 auto_align = 1;
11764}
11765
11766static void
11767s_cons (log_size)
11768 int log_size;
11769{
11770 symbolS *label;
11771
11772 label = insn_labels != NULL ? insn_labels->label : NULL;
b34976b6 11773 mips_emit_delays (FALSE);
252b5132
RH
11774 if (log_size > 0 && auto_align)
11775 mips_align (log_size, 0, label);
11776 mips_clear_insn_labels ();
11777 cons (1 << log_size);
11778}
11779
11780static void
11781s_float_cons (type)
11782 int type;
11783{
11784 symbolS *label;
11785
11786 label = insn_labels != NULL ? insn_labels->label : NULL;
11787
b34976b6 11788 mips_emit_delays (FALSE);
252b5132
RH
11789
11790 if (auto_align)
49309057
ILT
11791 {
11792 if (type == 'd')
11793 mips_align (3, 0, label);
11794 else
11795 mips_align (2, 0, label);
11796 }
252b5132
RH
11797
11798 mips_clear_insn_labels ();
11799
11800 float_cons (type);
11801}
11802
11803/* Handle .globl. We need to override it because on Irix 5 you are
11804 permitted to say
11805 .globl foo .text
11806 where foo is an undefined symbol, to mean that foo should be
11807 considered to be the address of a function. */
11808
11809static void
11810s_mips_globl (x)
43841e91 11811 int x ATTRIBUTE_UNUSED;
252b5132
RH
11812{
11813 char *name;
11814 int c;
11815 symbolS *symbolP;
11816 flagword flag;
11817
11818 name = input_line_pointer;
11819 c = get_symbol_end ();
11820 symbolP = symbol_find_or_make (name);
11821 *input_line_pointer = c;
11822 SKIP_WHITESPACE ();
11823
11824 /* On Irix 5, every global symbol that is not explicitly labelled as
11825 being a function is apparently labelled as being an object. */
11826 flag = BSF_OBJECT;
11827
11828 if (! is_end_of_line[(unsigned char) *input_line_pointer])
11829 {
11830 char *secname;
11831 asection *sec;
11832
11833 secname = input_line_pointer;
11834 c = get_symbol_end ();
11835 sec = bfd_get_section_by_name (stdoutput, secname);
11836 if (sec == NULL)
11837 as_bad (_("%s: no such section"), secname);
11838 *input_line_pointer = c;
11839
11840 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
11841 flag = BSF_FUNCTION;
11842 }
11843
49309057 11844 symbol_get_bfdsym (symbolP)->flags |= flag;
252b5132
RH
11845
11846 S_SET_EXTERNAL (symbolP);
11847 demand_empty_rest_of_line ();
11848}
11849
11850static void
11851s_option (x)
43841e91 11852 int x ATTRIBUTE_UNUSED;
252b5132
RH
11853{
11854 char *opt;
11855 char c;
11856
11857 opt = input_line_pointer;
11858 c = get_symbol_end ();
11859
11860 if (*opt == 'O')
11861 {
11862 /* FIXME: What does this mean? */
11863 }
11864 else if (strncmp (opt, "pic", 3) == 0)
11865 {
11866 int i;
11867
11868 i = atoi (opt + 3);
11869 if (i == 0)
11870 mips_pic = NO_PIC;
11871 else if (i == 2)
11872 mips_pic = SVR4_PIC;
11873 else
11874 as_bad (_(".option pic%d not supported"), i);
11875
11876 if (USE_GLOBAL_POINTER_OPT && mips_pic == SVR4_PIC)
11877 {
11878 if (g_switch_seen && g_switch_value != 0)
11879 as_warn (_("-G may not be used with SVR4 PIC code"));
11880 g_switch_value = 0;
11881 bfd_set_gp_size (stdoutput, 0);
11882 }
11883 }
11884 else
11885 as_warn (_("Unrecognized option \"%s\""), opt);
11886
11887 *input_line_pointer = c;
11888 demand_empty_rest_of_line ();
11889}
11890
11891/* This structure is used to hold a stack of .set values. */
11892
e972090a
NC
11893struct mips_option_stack
11894{
252b5132
RH
11895 struct mips_option_stack *next;
11896 struct mips_set_options options;
11897};
11898
11899static struct mips_option_stack *mips_opts_stack;
11900
11901/* Handle the .set pseudo-op. */
11902
11903static void
11904s_mipsset (x)
43841e91 11905 int x ATTRIBUTE_UNUSED;
252b5132
RH
11906{
11907 char *name = input_line_pointer, ch;
11908
11909 while (!is_end_of_line[(unsigned char) *input_line_pointer])
f9419b05 11910 ++input_line_pointer;
252b5132
RH
11911 ch = *input_line_pointer;
11912 *input_line_pointer = '\0';
11913
11914 if (strcmp (name, "reorder") == 0)
11915 {
11916 if (mips_opts.noreorder && prev_nop_frag != NULL)
11917 {
11918 /* If we still have pending nops, we can discard them. The
11919 usual nop handling will insert any that are still
bdaaa2e1 11920 needed. */
252b5132
RH
11921 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
11922 * (mips_opts.mips16 ? 2 : 4));
11923 prev_nop_frag = NULL;
11924 }
11925 mips_opts.noreorder = 0;
11926 }
11927 else if (strcmp (name, "noreorder") == 0)
11928 {
b34976b6 11929 mips_emit_delays (TRUE);
252b5132
RH
11930 mips_opts.noreorder = 1;
11931 mips_any_noreorder = 1;
11932 }
11933 else if (strcmp (name, "at") == 0)
11934 {
11935 mips_opts.noat = 0;
11936 }
11937 else if (strcmp (name, "noat") == 0)
11938 {
11939 mips_opts.noat = 1;
11940 }
11941 else if (strcmp (name, "macro") == 0)
11942 {
11943 mips_opts.warn_about_macros = 0;
11944 }
11945 else if (strcmp (name, "nomacro") == 0)
11946 {
11947 if (mips_opts.noreorder == 0)
11948 as_bad (_("`noreorder' must be set before `nomacro'"));
11949 mips_opts.warn_about_macros = 1;
11950 }
11951 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
11952 {
11953 mips_opts.nomove = 0;
11954 }
11955 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
11956 {
11957 mips_opts.nomove = 1;
11958 }
11959 else if (strcmp (name, "bopt") == 0)
11960 {
11961 mips_opts.nobopt = 0;
11962 }
11963 else if (strcmp (name, "nobopt") == 0)
11964 {
11965 mips_opts.nobopt = 1;
11966 }
11967 else if (strcmp (name, "mips16") == 0
11968 || strcmp (name, "MIPS-16") == 0)
11969 mips_opts.mips16 = 1;
11970 else if (strcmp (name, "nomips16") == 0
11971 || strcmp (name, "noMIPS-16") == 0)
11972 mips_opts.mips16 = 0;
1f25f5d3
CD
11973 else if (strcmp (name, "mips3d") == 0)
11974 mips_opts.ase_mips3d = 1;
11975 else if (strcmp (name, "nomips3d") == 0)
11976 mips_opts.ase_mips3d = 0;
a4672219
TS
11977 else if (strcmp (name, "mdmx") == 0)
11978 mips_opts.ase_mdmx = 1;
11979 else if (strcmp (name, "nomdmx") == 0)
11980 mips_opts.ase_mdmx = 0;
252b5132
RH
11981 else if (strncmp (name, "mips", 4) == 0)
11982 {
11983 int isa;
11984
11985 /* Permit the user to change the ISA on the fly. Needless to
11986 say, misuse can cause serious problems. */
11987 isa = atoi (name + 4);
553178e4 11988 switch (isa)
98d3f06f
KH
11989 {
11990 case 0:
11991 mips_opts.gp32 = file_mips_gp32;
11992 mips_opts.fp32 = file_mips_fp32;
98d3f06f
KH
11993 break;
11994 case 1:
11995 case 2:
11996 case 32:
11997 mips_opts.gp32 = 1;
11998 mips_opts.fp32 = 1;
11999 break;
12000 case 3:
12001 case 4:
12002 case 5:
12003 case 64:
98d3f06f
KH
12004 mips_opts.gp32 = 0;
12005 mips_opts.fp32 = 0;
12006 break;
12007 default:
12008 as_bad (_("unknown ISA level %s"), name + 4);
12009 break;
12010 }
553178e4 12011
e7af610e 12012 switch (isa)
98d3f06f
KH
12013 {
12014 case 0: mips_opts.isa = file_mips_isa; break;
12015 case 1: mips_opts.isa = ISA_MIPS1; break;
12016 case 2: mips_opts.isa = ISA_MIPS2; break;
12017 case 3: mips_opts.isa = ISA_MIPS3; break;
12018 case 4: mips_opts.isa = ISA_MIPS4; break;
12019 case 5: mips_opts.isa = ISA_MIPS5; break;
12020 case 32: mips_opts.isa = ISA_MIPS32; break;
12021 case 64: mips_opts.isa = ISA_MIPS64; break;
12022 default: as_bad (_("unknown ISA level %s"), name + 4); break;
12023 }
252b5132
RH
12024 }
12025 else if (strcmp (name, "autoextend") == 0)
12026 mips_opts.noautoextend = 0;
12027 else if (strcmp (name, "noautoextend") == 0)
12028 mips_opts.noautoextend = 1;
12029 else if (strcmp (name, "push") == 0)
12030 {
12031 struct mips_option_stack *s;
12032
12033 s = (struct mips_option_stack *) xmalloc (sizeof *s);
12034 s->next = mips_opts_stack;
12035 s->options = mips_opts;
12036 mips_opts_stack = s;
12037 }
12038 else if (strcmp (name, "pop") == 0)
12039 {
12040 struct mips_option_stack *s;
12041
12042 s = mips_opts_stack;
12043 if (s == NULL)
12044 as_bad (_(".set pop with no .set push"));
12045 else
12046 {
12047 /* If we're changing the reorder mode we need to handle
12048 delay slots correctly. */
12049 if (s->options.noreorder && ! mips_opts.noreorder)
b34976b6 12050 mips_emit_delays (TRUE);
252b5132
RH
12051 else if (! s->options.noreorder && mips_opts.noreorder)
12052 {
12053 if (prev_nop_frag != NULL)
12054 {
12055 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
12056 * (mips_opts.mips16 ? 2 : 4));
12057 prev_nop_frag = NULL;
12058 }
12059 }
12060
12061 mips_opts = s->options;
12062 mips_opts_stack = s->next;
12063 free (s);
12064 }
12065 }
12066 else
12067 {
12068 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
12069 }
12070 *input_line_pointer = ch;
12071 demand_empty_rest_of_line ();
12072}
12073
12074/* Handle the .abicalls pseudo-op. I believe this is equivalent to
12075 .option pic2. It means to generate SVR4 PIC calls. */
12076
12077static void
12078s_abicalls (ignore)
43841e91 12079 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
12080{
12081 mips_pic = SVR4_PIC;
12082 if (USE_GLOBAL_POINTER_OPT)
12083 {
12084 if (g_switch_seen && g_switch_value != 0)
12085 as_warn (_("-G may not be used with SVR4 PIC code"));
12086 g_switch_value = 0;
12087 }
12088 bfd_set_gp_size (stdoutput, 0);
12089 demand_empty_rest_of_line ();
12090}
12091
12092/* Handle the .cpload pseudo-op. This is used when generating SVR4
12093 PIC code. It sets the $gp register for the function based on the
12094 function address, which is in the register named in the argument.
12095 This uses a relocation against _gp_disp, which is handled specially
12096 by the linker. The result is:
12097 lui $gp,%hi(_gp_disp)
12098 addiu $gp,$gp,%lo(_gp_disp)
12099 addu $gp,$gp,.cpload argument
12100 The .cpload argument is normally $25 == $t9. */
12101
12102static void
12103s_cpload (ignore)
43841e91 12104 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
12105{
12106 expressionS ex;
12107 int icnt = 0;
12108
6478892d
TS
12109 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
12110 .cpload is ignored. */
12111 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
12112 {
12113 s_ignore (0);
12114 return;
12115 }
12116
d3ecfc59 12117 /* .cpload should be in a .set noreorder section. */
252b5132
RH
12118 if (mips_opts.noreorder == 0)
12119 as_warn (_(".cpload not in noreorder section"));
12120
12121 ex.X_op = O_symbol;
12122 ex.X_add_symbol = symbol_find_or_make ("_gp_disp");
12123 ex.X_op_symbol = NULL;
12124 ex.X_add_number = 0;
12125
12126 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
49309057 12127 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
252b5132 12128
c9914766
TS
12129 macro_build_lui (NULL, &icnt, &ex, mips_gp_register);
12130 macro_build ((char *) NULL, &icnt, &ex, "addiu", "t,r,j",
12131 mips_gp_register, mips_gp_register, (int) BFD_RELOC_LO16);
252b5132
RH
12132
12133 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "addu", "d,v,t",
c9914766 12134 mips_gp_register, mips_gp_register, tc_get_register (0));
252b5132
RH
12135
12136 demand_empty_rest_of_line ();
12137}
12138
6478892d
TS
12139/* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
12140 .cpsetup $reg1, offset|$reg2, label
12141
12142 If offset is given, this results in:
12143 sd $gp, offset($sp)
956cd1d6 12144 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
12145 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
12146 daddu $gp, $gp, $reg1
6478892d
TS
12147
12148 If $reg2 is given, this results in:
12149 daddu $reg2, $gp, $0
956cd1d6 12150 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
12151 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
12152 daddu $gp, $gp, $reg1
12153 $reg1 is normally $25 == $t9. */
6478892d
TS
12154static void
12155s_cpsetup (ignore)
12156 int ignore ATTRIBUTE_UNUSED;
12157{
12158 expressionS ex_off;
12159 expressionS ex_sym;
12160 int reg1;
12161 int icnt = 0;
f21f8242 12162 char *f;
6478892d 12163
8586fc66 12164 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
6478892d
TS
12165 We also need NewABI support. */
12166 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12167 {
12168 s_ignore (0);
12169 return;
12170 }
12171
12172 reg1 = tc_get_register (0);
12173 SKIP_WHITESPACE ();
12174 if (*input_line_pointer != ',')
12175 {
12176 as_bad (_("missing argument separator ',' for .cpsetup"));
12177 return;
12178 }
12179 else
80245285 12180 ++input_line_pointer;
6478892d
TS
12181 SKIP_WHITESPACE ();
12182 if (*input_line_pointer == '$')
80245285
TS
12183 {
12184 mips_cpreturn_register = tc_get_register (0);
12185 mips_cpreturn_offset = -1;
12186 }
6478892d 12187 else
80245285
TS
12188 {
12189 mips_cpreturn_offset = get_absolute_expression ();
12190 mips_cpreturn_register = -1;
12191 }
6478892d
TS
12192 SKIP_WHITESPACE ();
12193 if (*input_line_pointer != ',')
12194 {
12195 as_bad (_("missing argument separator ',' for .cpsetup"));
12196 return;
12197 }
12198 else
f9419b05 12199 ++input_line_pointer;
6478892d 12200 SKIP_WHITESPACE ();
f21f8242 12201 expression (&ex_sym);
6478892d
TS
12202
12203 if (mips_cpreturn_register == -1)
12204 {
12205 ex_off.X_op = O_constant;
12206 ex_off.X_add_symbol = NULL;
12207 ex_off.X_op_symbol = NULL;
12208 ex_off.X_add_number = mips_cpreturn_offset;
12209
12210 macro_build ((char *) NULL, &icnt, &ex_off, "sd", "t,o(b)",
12211 mips_gp_register, (int) BFD_RELOC_LO16, SP);
12212 }
12213 else
12214 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "daddu",
12215 "d,v,t", mips_cpreturn_register, mips_gp_register, 0);
12216
f21f8242
AO
12217 /* Ensure there's room for the next two instructions, so that `f'
12218 doesn't end up with an address in the wrong frag. */
12219 frag_grow (8);
12220 f = frag_more (0);
6478892d
TS
12221 macro_build ((char *) NULL, &icnt, &ex_sym, "lui", "t,u", mips_gp_register,
12222 (int) BFD_RELOC_GPREL16);
f21f8242
AO
12223 fix_new (frag_now, f - frag_now->fr_literal,
12224 0, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
12225 fix_new (frag_now, f - frag_now->fr_literal,
12226 0, NULL, 0, 0, BFD_RELOC_HI16_S);
12227
12228 f = frag_more (0);
6478892d
TS
12229 macro_build ((char *) NULL, &icnt, &ex_sym, "addiu", "t,r,j",
12230 mips_gp_register, mips_gp_register, (int) BFD_RELOC_GPREL16);
f21f8242
AO
12231 fix_new (frag_now, f - frag_now->fr_literal,
12232 0, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
12233 fix_new (frag_now, f - frag_now->fr_literal,
12234 0, NULL, 0, 0, BFD_RELOC_LO16);
12235
8586fc66
TS
12236 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
12237 HAVE_64BIT_ADDRESSES ? "daddu" : "addu", "d,v,t",
12238 mips_gp_register, mips_gp_register, reg1);
6478892d
TS
12239
12240 demand_empty_rest_of_line ();
12241}
12242
12243static void
12244s_cplocal (ignore)
12245 int ignore ATTRIBUTE_UNUSED;
12246{
12247 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
12248 .cplocal is ignored. */
12249 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12250 {
12251 s_ignore (0);
12252 return;
12253 }
12254
12255 mips_gp_register = tc_get_register (0);
85b51719 12256 demand_empty_rest_of_line ();
6478892d
TS
12257}
12258
252b5132
RH
12259/* Handle the .cprestore pseudo-op. This stores $gp into a given
12260 offset from $sp. The offset is remembered, and after making a PIC
12261 call $gp is restored from that location. */
12262
12263static void
12264s_cprestore (ignore)
43841e91 12265 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
12266{
12267 expressionS ex;
12268 int icnt = 0;
12269
6478892d 12270 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
c9914766 12271 .cprestore is ignored. */
6478892d 12272 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
12273 {
12274 s_ignore (0);
12275 return;
12276 }
12277
12278 mips_cprestore_offset = get_absolute_expression ();
7a621144 12279 mips_cprestore_valid = 1;
252b5132
RH
12280
12281 ex.X_op = O_constant;
12282 ex.X_add_symbol = NULL;
12283 ex.X_op_symbol = NULL;
12284 ex.X_add_number = mips_cprestore_offset;
12285
885add95
CD
12286 macro_build_ldst_constoffset ((char *) NULL, &icnt, &ex,
12287 HAVE_32BIT_ADDRESSES ? "sw" : "sd",
12288 mips_gp_register, SP);
252b5132
RH
12289
12290 demand_empty_rest_of_line ();
12291}
12292
6478892d
TS
12293/* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
12294 was given in the preceeding .gpsetup, it results in:
12295 ld $gp, offset($sp)
76b3015f 12296
6478892d
TS
12297 If a register $reg2 was given there, it results in:
12298 daddiu $gp, $gp, $reg2
12299 */
12300static void
12301s_cpreturn (ignore)
12302 int ignore ATTRIBUTE_UNUSED;
12303{
12304 expressionS ex;
12305 int icnt = 0;
12306
12307 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
12308 We also need NewABI support. */
12309 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12310 {
12311 s_ignore (0);
12312 return;
12313 }
12314
12315 if (mips_cpreturn_register == -1)
12316 {
12317 ex.X_op = O_constant;
12318 ex.X_add_symbol = NULL;
12319 ex.X_op_symbol = NULL;
12320 ex.X_add_number = mips_cpreturn_offset;
12321
12322 macro_build ((char *) NULL, &icnt, &ex, "ld", "t,o(b)",
12323 mips_gp_register, (int) BFD_RELOC_LO16, SP);
12324 }
12325 else
12326 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "daddu",
12327 "d,v,t", mips_gp_register, mips_cpreturn_register, 0);
12328
12329 demand_empty_rest_of_line ();
12330}
12331
12332/* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
12333 code. It sets the offset to use in gp_rel relocations. */
12334
12335static void
12336s_gpvalue (ignore)
12337 int ignore ATTRIBUTE_UNUSED;
12338{
12339 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
12340 We also need NewABI support. */
12341 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
12342 {
12343 s_ignore (0);
12344 return;
12345 }
12346
def2e0dd 12347 mips_gprel_offset = get_absolute_expression ();
6478892d
TS
12348
12349 demand_empty_rest_of_line ();
12350}
12351
252b5132
RH
12352/* Handle the .gpword pseudo-op. This is used when generating PIC
12353 code. It generates a 32 bit GP relative reloc. */
12354
12355static void
12356s_gpword (ignore)
43841e91 12357 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
12358{
12359 symbolS *label;
12360 expressionS ex;
12361 char *p;
12362
12363 /* When not generating PIC code, this is treated as .word. */
12364 if (mips_pic != SVR4_PIC)
12365 {
12366 s_cons (2);
12367 return;
12368 }
12369
12370 label = insn_labels != NULL ? insn_labels->label : NULL;
b34976b6 12371 mips_emit_delays (TRUE);
252b5132
RH
12372 if (auto_align)
12373 mips_align (2, 0, label);
12374 mips_clear_insn_labels ();
12375
12376 expression (&ex);
12377
12378 if (ex.X_op != O_symbol || ex.X_add_number != 0)
12379 {
12380 as_bad (_("Unsupported use of .gpword"));
12381 ignore_rest_of_line ();
12382 }
12383
12384 p = frag_more (4);
12385 md_number_to_chars (p, (valueT) 0, 4);
b34976b6 12386 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE,
cdf6fd85 12387 BFD_RELOC_GPREL32);
252b5132
RH
12388
12389 demand_empty_rest_of_line ();
12390}
12391
10181a0d
AO
12392static void
12393s_gpdword (ignore)
12394 int ignore ATTRIBUTE_UNUSED;
12395{
12396 symbolS *label;
12397 expressionS ex;
12398 char *p;
12399
12400 /* When not generating PIC code, this is treated as .dword. */
12401 if (mips_pic != SVR4_PIC)
12402 {
12403 s_cons (3);
12404 return;
12405 }
12406
12407 label = insn_labels != NULL ? insn_labels->label : NULL;
b34976b6 12408 mips_emit_delays (TRUE);
10181a0d
AO
12409 if (auto_align)
12410 mips_align (3, 0, label);
12411 mips_clear_insn_labels ();
12412
12413 expression (&ex);
12414
12415 if (ex.X_op != O_symbol || ex.X_add_number != 0)
12416 {
12417 as_bad (_("Unsupported use of .gpdword"));
12418 ignore_rest_of_line ();
12419 }
12420
12421 p = frag_more (8);
12422 md_number_to_chars (p, (valueT) 0, 8);
b34976b6 12423 fix_new_exp (frag_now, p - frag_now->fr_literal, 8, &ex, FALSE,
10181a0d
AO
12424 BFD_RELOC_GPREL32);
12425
12426 /* GPREL32 composed with 64 gives a 64-bit GP offset. */
12427 ex.X_op = O_absent;
12428 ex.X_add_symbol = 0;
12429 ex.X_add_number = 0;
b34976b6 12430 fix_new_exp (frag_now, p - frag_now->fr_literal, 8, &ex, FALSE,
10181a0d
AO
12431 BFD_RELOC_64);
12432
12433 demand_empty_rest_of_line ();
12434}
12435
252b5132
RH
12436/* Handle the .cpadd pseudo-op. This is used when dealing with switch
12437 tables in SVR4 PIC code. */
12438
12439static void
12440s_cpadd (ignore)
43841e91 12441 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
12442{
12443 int icnt = 0;
12444 int reg;
12445
10181a0d
AO
12446 /* This is ignored when not generating SVR4 PIC code. */
12447 if (mips_pic != SVR4_PIC)
252b5132
RH
12448 {
12449 s_ignore (0);
12450 return;
12451 }
12452
12453 /* Add $gp to the register named as an argument. */
12454 reg = tc_get_register (0);
12455 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 12456 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 12457 "d,v,t", reg, reg, mips_gp_register);
252b5132 12458
bdaaa2e1 12459 demand_empty_rest_of_line ();
252b5132
RH
12460}
12461
12462/* Handle the .insn pseudo-op. This marks instruction labels in
12463 mips16 mode. This permits the linker to handle them specially,
12464 such as generating jalx instructions when needed. We also make
12465 them odd for the duration of the assembly, in order to generate the
12466 right sort of code. We will make them even in the adjust_symtab
12467 routine, while leaving them marked. This is convenient for the
12468 debugger and the disassembler. The linker knows to make them odd
12469 again. */
12470
12471static void
12472s_insn (ignore)
43841e91 12473 int ignore ATTRIBUTE_UNUSED;
252b5132 12474{
f9419b05 12475 mips16_mark_labels ();
252b5132
RH
12476
12477 demand_empty_rest_of_line ();
12478}
12479
12480/* Handle a .stabn directive. We need these in order to mark a label
12481 as being a mips16 text label correctly. Sometimes the compiler
12482 will emit a label, followed by a .stabn, and then switch sections.
12483 If the label and .stabn are in mips16 mode, then the label is
12484 really a mips16 text label. */
12485
12486static void
12487s_mips_stab (type)
12488 int type;
12489{
f9419b05 12490 if (type == 'n')
252b5132
RH
12491 mips16_mark_labels ();
12492
12493 s_stab (type);
12494}
12495
12496/* Handle the .weakext pseudo-op as defined in Kane and Heinrich.
12497 */
12498
12499static void
12500s_mips_weakext (ignore)
43841e91 12501 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
12502{
12503 char *name;
12504 int c;
12505 symbolS *symbolP;
12506 expressionS exp;
12507
12508 name = input_line_pointer;
12509 c = get_symbol_end ();
12510 symbolP = symbol_find_or_make (name);
12511 S_SET_WEAK (symbolP);
12512 *input_line_pointer = c;
12513
12514 SKIP_WHITESPACE ();
12515
12516 if (! is_end_of_line[(unsigned char) *input_line_pointer])
12517 {
12518 if (S_IS_DEFINED (symbolP))
12519 {
956cd1d6 12520 as_bad ("ignoring attempt to redefine symbol %s",
252b5132
RH
12521 S_GET_NAME (symbolP));
12522 ignore_rest_of_line ();
12523 return;
12524 }
bdaaa2e1 12525
252b5132
RH
12526 if (*input_line_pointer == ',')
12527 {
12528 ++input_line_pointer;
12529 SKIP_WHITESPACE ();
12530 }
bdaaa2e1 12531
252b5132
RH
12532 expression (&exp);
12533 if (exp.X_op != O_symbol)
12534 {
12535 as_bad ("bad .weakext directive");
98d3f06f 12536 ignore_rest_of_line ();
252b5132
RH
12537 return;
12538 }
49309057 12539 symbol_set_value_expression (symbolP, &exp);
252b5132
RH
12540 }
12541
12542 demand_empty_rest_of_line ();
12543}
12544
12545/* Parse a register string into a number. Called from the ECOFF code
12546 to parse .frame. The argument is non-zero if this is the frame
12547 register, so that we can record it in mips_frame_reg. */
12548
12549int
12550tc_get_register (frame)
12551 int frame;
12552{
12553 int reg;
12554
12555 SKIP_WHITESPACE ();
12556 if (*input_line_pointer++ != '$')
12557 {
12558 as_warn (_("expected `$'"));
85b51719 12559 reg = ZERO;
252b5132 12560 }
3882b010 12561 else if (ISDIGIT (*input_line_pointer))
252b5132
RH
12562 {
12563 reg = get_absolute_expression ();
12564 if (reg < 0 || reg >= 32)
12565 {
12566 as_warn (_("Bad register number"));
85b51719 12567 reg = ZERO;
252b5132
RH
12568 }
12569 }
12570 else
12571 {
76db943d 12572 if (strncmp (input_line_pointer, "ra", 2) == 0)
85b51719
TS
12573 {
12574 reg = RA;
12575 input_line_pointer += 2;
12576 }
76db943d 12577 else if (strncmp (input_line_pointer, "fp", 2) == 0)
85b51719
TS
12578 {
12579 reg = FP;
12580 input_line_pointer += 2;
12581 }
252b5132 12582 else if (strncmp (input_line_pointer, "sp", 2) == 0)
85b51719
TS
12583 {
12584 reg = SP;
12585 input_line_pointer += 2;
12586 }
252b5132 12587 else if (strncmp (input_line_pointer, "gp", 2) == 0)
85b51719
TS
12588 {
12589 reg = GP;
12590 input_line_pointer += 2;
12591 }
252b5132 12592 else if (strncmp (input_line_pointer, "at", 2) == 0)
85b51719
TS
12593 {
12594 reg = AT;
12595 input_line_pointer += 2;
12596 }
12597 else if (strncmp (input_line_pointer, "kt0", 3) == 0)
12598 {
12599 reg = KT0;
12600 input_line_pointer += 3;
12601 }
12602 else if (strncmp (input_line_pointer, "kt1", 3) == 0)
12603 {
12604 reg = KT1;
12605 input_line_pointer += 3;
12606 }
12607 else if (strncmp (input_line_pointer, "zero", 4) == 0)
12608 {
12609 reg = ZERO;
12610 input_line_pointer += 4;
12611 }
252b5132
RH
12612 else
12613 {
12614 as_warn (_("Unrecognized register name"));
85b51719
TS
12615 reg = ZERO;
12616 while (ISALNUM(*input_line_pointer))
12617 input_line_pointer++;
252b5132 12618 }
252b5132
RH
12619 }
12620 if (frame)
7a621144
DJ
12621 {
12622 mips_frame_reg = reg != 0 ? reg : SP;
12623 mips_frame_reg_valid = 1;
12624 mips_cprestore_valid = 0;
12625 }
252b5132
RH
12626 return reg;
12627}
12628
12629valueT
12630md_section_align (seg, addr)
12631 asection *seg;
12632 valueT addr;
12633{
12634 int align = bfd_get_section_alignment (stdoutput, seg);
12635
12636#ifdef OBJ_ELF
12637 /* We don't need to align ELF sections to the full alignment.
12638 However, Irix 5 may prefer that we align them at least to a 16
12639 byte boundary. We don't bother to align the sections if we are
12640 targeted for an embedded system. */
12641 if (strcmp (TARGET_OS, "elf") == 0)
12642 return addr;
12643 if (align > 4)
12644 align = 4;
12645#endif
12646
12647 return ((addr + (1 << align) - 1) & (-1 << align));
12648}
12649
12650/* Utility routine, called from above as well. If called while the
12651 input file is still being read, it's only an approximation. (For
12652 example, a symbol may later become defined which appeared to be
12653 undefined earlier.) */
12654
12655static int
12656nopic_need_relax (sym, before_relaxing)
12657 symbolS *sym;
12658 int before_relaxing;
12659{
12660 if (sym == 0)
12661 return 0;
12662
6478892d 12663 if (USE_GLOBAL_POINTER_OPT && g_switch_value > 0)
252b5132
RH
12664 {
12665 const char *symname;
12666 int change;
12667
c9914766 12668 /* Find out whether this symbol can be referenced off the $gp
252b5132
RH
12669 register. It can be if it is smaller than the -G size or if
12670 it is in the .sdata or .sbss section. Certain symbols can
c9914766 12671 not be referenced off the $gp, although it appears as though
252b5132
RH
12672 they can. */
12673 symname = S_GET_NAME (sym);
12674 if (symname != (const char *) NULL
12675 && (strcmp (symname, "eprol") == 0
12676 || strcmp (symname, "etext") == 0
12677 || strcmp (symname, "_gp") == 0
12678 || strcmp (symname, "edata") == 0
12679 || strcmp (symname, "_fbss") == 0
12680 || strcmp (symname, "_fdata") == 0
12681 || strcmp (symname, "_ftext") == 0
12682 || strcmp (symname, "end") == 0
12683 || strcmp (symname, "_gp_disp") == 0))
12684 change = 1;
12685 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
12686 && (0
12687#ifndef NO_ECOFF_DEBUGGING
49309057
ILT
12688 || (symbol_get_obj (sym)->ecoff_extern_size != 0
12689 && (symbol_get_obj (sym)->ecoff_extern_size
12690 <= g_switch_value))
252b5132
RH
12691#endif
12692 /* We must defer this decision until after the whole
12693 file has been read, since there might be a .extern
12694 after the first use of this symbol. */
12695 || (before_relaxing
12696#ifndef NO_ECOFF_DEBUGGING
49309057 12697 && symbol_get_obj (sym)->ecoff_extern_size == 0
252b5132
RH
12698#endif
12699 && S_GET_VALUE (sym) == 0)
12700 || (S_GET_VALUE (sym) != 0
12701 && S_GET_VALUE (sym) <= g_switch_value)))
12702 change = 0;
12703 else
12704 {
12705 const char *segname;
12706
12707 segname = segment_name (S_GET_SEGMENT (sym));
12708 assert (strcmp (segname, ".lit8") != 0
12709 && strcmp (segname, ".lit4") != 0);
12710 change = (strcmp (segname, ".sdata") != 0
fba2b7f9
GK
12711 && strcmp (segname, ".sbss") != 0
12712 && strncmp (segname, ".sdata.", 7) != 0
12713 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
252b5132
RH
12714 }
12715 return change;
12716 }
12717 else
c9914766 12718 /* We are not optimizing for the $gp register. */
252b5132
RH
12719 return 1;
12720}
12721
12722/* Given a mips16 variant frag FRAGP, return non-zero if it needs an
12723 extended opcode. SEC is the section the frag is in. */
12724
12725static int
12726mips16_extended_frag (fragp, sec, stretch)
12727 fragS *fragp;
12728 asection *sec;
12729 long stretch;
12730{
12731 int type;
12732 register const struct mips16_immed_operand *op;
12733 offsetT val;
12734 int mintiny, maxtiny;
12735 segT symsec;
98aa84af 12736 fragS *sym_frag;
252b5132
RH
12737
12738 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
12739 return 0;
12740 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
12741 return 1;
12742
12743 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
12744 op = mips16_immed_operands;
12745 while (op->type != type)
12746 {
12747 ++op;
12748 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
12749 }
12750
12751 if (op->unsp)
12752 {
12753 if (type == '<' || type == '>' || type == '[' || type == ']')
12754 {
12755 mintiny = 1;
12756 maxtiny = 1 << op->nbits;
12757 }
12758 else
12759 {
12760 mintiny = 0;
12761 maxtiny = (1 << op->nbits) - 1;
12762 }
12763 }
12764 else
12765 {
12766 mintiny = - (1 << (op->nbits - 1));
12767 maxtiny = (1 << (op->nbits - 1)) - 1;
12768 }
12769
98aa84af 12770 sym_frag = symbol_get_frag (fragp->fr_symbol);
ac62c346 12771 val = S_GET_VALUE (fragp->fr_symbol);
98aa84af 12772 symsec = S_GET_SEGMENT (fragp->fr_symbol);
252b5132
RH
12773
12774 if (op->pcrel)
12775 {
12776 addressT addr;
12777
12778 /* We won't have the section when we are called from
12779 mips_relax_frag. However, we will always have been called
12780 from md_estimate_size_before_relax first. If this is a
12781 branch to a different section, we mark it as such. If SEC is
12782 NULL, and the frag is not marked, then it must be a branch to
12783 the same section. */
12784 if (sec == NULL)
12785 {
12786 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
12787 return 1;
12788 }
12789 else
12790 {
98aa84af 12791 /* Must have been called from md_estimate_size_before_relax. */
252b5132
RH
12792 if (symsec != sec)
12793 {
12794 fragp->fr_subtype =
12795 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12796
12797 /* FIXME: We should support this, and let the linker
12798 catch branches and loads that are out of range. */
12799 as_bad_where (fragp->fr_file, fragp->fr_line,
12800 _("unsupported PC relative reference to different section"));
12801
12802 return 1;
12803 }
98aa84af
AM
12804 if (fragp != sym_frag && sym_frag->fr_address == 0)
12805 /* Assume non-extended on the first relaxation pass.
12806 The address we have calculated will be bogus if this is
12807 a forward branch to another frag, as the forward frag
12808 will have fr_address == 0. */
12809 return 0;
252b5132
RH
12810 }
12811
12812 /* In this case, we know for sure that the symbol fragment is in
98aa84af
AM
12813 the same section. If the relax_marker of the symbol fragment
12814 differs from the relax_marker of this fragment, we have not
12815 yet adjusted the symbol fragment fr_address. We want to add
252b5132
RH
12816 in STRETCH in order to get a better estimate of the address.
12817 This particularly matters because of the shift bits. */
12818 if (stretch != 0
98aa84af 12819 && sym_frag->relax_marker != fragp->relax_marker)
252b5132
RH
12820 {
12821 fragS *f;
12822
12823 /* Adjust stretch for any alignment frag. Note that if have
12824 been expanding the earlier code, the symbol may be
12825 defined in what appears to be an earlier frag. FIXME:
12826 This doesn't handle the fr_subtype field, which specifies
12827 a maximum number of bytes to skip when doing an
12828 alignment. */
98aa84af 12829 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
252b5132
RH
12830 {
12831 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
12832 {
12833 if (stretch < 0)
12834 stretch = - ((- stretch)
12835 & ~ ((1 << (int) f->fr_offset) - 1));
12836 else
12837 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
12838 if (stretch == 0)
12839 break;
12840 }
12841 }
12842 if (f != NULL)
12843 val += stretch;
12844 }
12845
12846 addr = fragp->fr_address + fragp->fr_fix;
12847
12848 /* The base address rules are complicated. The base address of
12849 a branch is the following instruction. The base address of a
12850 PC relative load or add is the instruction itself, but if it
12851 is in a delay slot (in which case it can not be extended) use
12852 the address of the instruction whose delay slot it is in. */
12853 if (type == 'p' || type == 'q')
12854 {
12855 addr += 2;
12856
12857 /* If we are currently assuming that this frag should be
12858 extended, then, the current address is two bytes
bdaaa2e1 12859 higher. */
252b5132
RH
12860 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12861 addr += 2;
12862
12863 /* Ignore the low bit in the target, since it will be set
12864 for a text label. */
12865 if ((val & 1) != 0)
12866 --val;
12867 }
12868 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
12869 addr -= 4;
12870 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
12871 addr -= 2;
12872
12873 val -= addr & ~ ((1 << op->shift) - 1);
12874
12875 /* Branch offsets have an implicit 0 in the lowest bit. */
12876 if (type == 'p' || type == 'q')
12877 val /= 2;
12878
12879 /* If any of the shifted bits are set, we must use an extended
12880 opcode. If the address depends on the size of this
12881 instruction, this can lead to a loop, so we arrange to always
12882 use an extended opcode. We only check this when we are in
12883 the main relaxation loop, when SEC is NULL. */
12884 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
12885 {
12886 fragp->fr_subtype =
12887 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12888 return 1;
12889 }
12890
12891 /* If we are about to mark a frag as extended because the value
12892 is precisely maxtiny + 1, then there is a chance of an
12893 infinite loop as in the following code:
12894 la $4,foo
12895 .skip 1020
12896 .align 2
12897 foo:
12898 In this case when the la is extended, foo is 0x3fc bytes
12899 away, so the la can be shrunk, but then foo is 0x400 away, so
12900 the la must be extended. To avoid this loop, we mark the
12901 frag as extended if it was small, and is about to become
12902 extended with a value of maxtiny + 1. */
12903 if (val == ((maxtiny + 1) << op->shift)
12904 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
12905 && sec == NULL)
12906 {
12907 fragp->fr_subtype =
12908 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12909 return 1;
12910 }
12911 }
12912 else if (symsec != absolute_section && sec != NULL)
12913 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
12914
12915 if ((val & ((1 << op->shift) - 1)) != 0
12916 || val < (mintiny << op->shift)
12917 || val > (maxtiny << op->shift))
12918 return 1;
12919 else
12920 return 0;
12921}
12922
4a6a3df4
AO
12923/* Compute the length of a branch sequence, and adjust the
12924 RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the
12925 worst-case length is computed, with UPDATE being used to indicate
12926 whether an unconditional (-1), branch-likely (+1) or regular (0)
12927 branch is to be computed. */
12928static int
12929relaxed_branch_length (fragp, sec, update)
12930 fragS *fragp;
12931 asection *sec;
12932 int update;
12933{
b34976b6 12934 bfd_boolean toofar;
4a6a3df4
AO
12935 int length;
12936
12937 if (fragp
12938 && S_IS_DEFINED (fragp->fr_symbol)
12939 && sec == S_GET_SEGMENT (fragp->fr_symbol))
12940 {
12941 addressT addr;
12942 offsetT val;
12943
12944 val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset;
12945
12946 addr = fragp->fr_address + fragp->fr_fix + 4;
12947
12948 val -= addr;
12949
12950 toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2);
12951 }
12952 else if (fragp)
12953 /* If the symbol is not defined or it's in a different segment,
12954 assume the user knows what's going on and emit a short
12955 branch. */
b34976b6 12956 toofar = FALSE;
4a6a3df4 12957 else
b34976b6 12958 toofar = TRUE;
4a6a3df4
AO
12959
12960 if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
12961 fragp->fr_subtype
12962 = RELAX_BRANCH_ENCODE (RELAX_BRANCH_RELOC_S2 (fragp->fr_subtype),
12963 RELAX_BRANCH_UNCOND (fragp->fr_subtype),
12964 RELAX_BRANCH_LIKELY (fragp->fr_subtype),
12965 RELAX_BRANCH_LINK (fragp->fr_subtype),
12966 toofar);
12967
12968 length = 4;
12969 if (toofar)
12970 {
12971 if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0))
12972 length += 8;
12973
12974 if (mips_pic != NO_PIC)
12975 {
12976 /* Additional space for PIC loading of target address. */
12977 length += 8;
12978 if (mips_opts.isa == ISA_MIPS1)
12979 /* Additional space for $at-stabilizing nop. */
12980 length += 4;
12981 }
12982
12983 /* If branch is conditional. */
12984 if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0))
12985 length += 8;
12986 }
b34976b6 12987
4a6a3df4
AO
12988 return length;
12989}
12990
252b5132
RH
12991/* Estimate the size of a frag before relaxing. Unless this is the
12992 mips16, we are not really relaxing here, and the final size is
12993 encoded in the subtype information. For the mips16, we have to
12994 decide whether we are using an extended opcode or not. */
12995
252b5132
RH
12996int
12997md_estimate_size_before_relax (fragp, segtype)
12998 fragS *fragp;
12999 asection *segtype;
13000{
43841e91 13001 int change = 0;
b34976b6 13002 bfd_boolean linkonce = FALSE;
252b5132 13003
4a6a3df4
AO
13004 if (RELAX_BRANCH_P (fragp->fr_subtype))
13005 {
13006
b34976b6
AM
13007 fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE);
13008
4a6a3df4
AO
13009 return fragp->fr_var;
13010 }
13011
252b5132 13012 if (RELAX_MIPS16_P (fragp->fr_subtype))
177b4a6a
AO
13013 /* We don't want to modify the EXTENDED bit here; it might get us
13014 into infinite loops. We change it only in mips_relax_frag(). */
13015 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
252b5132
RH
13016
13017 if (mips_pic == NO_PIC)
13018 {
13019 change = nopic_need_relax (fragp->fr_symbol, 0);
13020 }
13021 else if (mips_pic == SVR4_PIC)
13022 {
13023 symbolS *sym;
13024 asection *symsec;
13025
13026 sym = fragp->fr_symbol;
13027
13028 /* Handle the case of a symbol equated to another symbol. */
e0890092 13029 while (symbol_equated_reloc_p (sym))
252b5132
RH
13030 {
13031 symbolS *n;
13032
13033 /* It's possible to get a loop here in a badly written
13034 program. */
49309057 13035 n = symbol_get_value_expression (sym)->X_add_symbol;
252b5132
RH
13036 if (n == sym)
13037 break;
13038 sym = n;
13039 }
13040
13041 symsec = S_GET_SEGMENT (sym);
13042
8614eeee
UC
13043 /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */
13044 if (symsec != segtype && ! S_IS_LOCAL (sym))
beae10d5
KH
13045 {
13046 if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
13047 != 0)
b34976b6 13048 linkonce = TRUE;
beae10d5
KH
13049
13050 /* The GNU toolchain uses an extension for ELF: a section
13051 beginning with the magic string .gnu.linkonce is a linkonce
13052 section. */
13053 if (strncmp (segment_name (symsec), ".gnu.linkonce",
13054 sizeof ".gnu.linkonce" - 1) == 0)
b34976b6 13055 linkonce = TRUE;
beae10d5 13056 }
8614eeee 13057
252b5132
RH
13058 /* This must duplicate the test in adjust_reloc_syms. */
13059 change = (symsec != &bfd_und_section
13060 && symsec != &bfd_abs_section
426b0403 13061 && ! bfd_is_com_section (symsec)
8614eeee 13062 && !linkonce
426b0403 13063#ifdef OBJ_ELF
ea4ff978 13064 /* A global or weak symbol is treated as external. */
9151e8bf 13065 && (OUTPUT_FLAVOR != bfd_target_elf_flavour
b25a253c 13066 || (! S_IS_WEAK (sym)
bad9ca53
TS
13067 && (! S_IS_EXTERNAL (sym)
13068 || mips_pic == EMBEDDED_PIC)))
426b0403
AM
13069#endif
13070 );
252b5132
RH
13071 }
13072 else
13073 abort ();
13074
13075 if (change)
13076 {
13077 /* Record the offset to the first reloc in the fr_opcode field.
13078 This lets md_convert_frag and tc_gen_reloc know that the code
13079 must be expanded. */
13080 fragp->fr_opcode = (fragp->fr_literal
13081 + fragp->fr_fix
13082 - RELAX_OLD (fragp->fr_subtype)
13083 + RELAX_RELOC1 (fragp->fr_subtype));
13084 /* FIXME: This really needs as_warn_where. */
13085 if (RELAX_WARN (fragp->fr_subtype))
9a41af64
TS
13086 as_warn (_("AT used after \".set noat\" or macro used after "
13087 "\".set nomacro\""));
13088
13089 return RELAX_NEW (fragp->fr_subtype) - RELAX_OLD (fragp->fr_subtype);
252b5132
RH
13090 }
13091
9a41af64 13092 return 0;
252b5132
RH
13093}
13094
13095/* This is called to see whether a reloc against a defined symbol
13096 should be converted into a reloc against a section. Don't adjust
13097 MIPS16 jump relocations, so we don't have to worry about the format
13098 of the offset in the .o file. Don't adjust relocations against
13099 mips16 symbols, so that the linker can find them if it needs to set
13100 up a stub. */
13101
13102int
13103mips_fix_adjustable (fixp)
13104 fixS *fixp;
13105{
13106 if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)
13107 return 0;
a161fe53 13108
252b5132
RH
13109 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
13110 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
13111 return 0;
a161fe53 13112
252b5132
RH
13113 if (fixp->fx_addsy == NULL)
13114 return 1;
a161fe53 13115
252b5132
RH
13116#ifdef OBJ_ELF
13117 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
13118 && S_GET_OTHER (fixp->fx_addsy) == STO_MIPS16
13119 && fixp->fx_subsy == NULL)
13120 return 0;
13121#endif
a161fe53 13122
252b5132
RH
13123 return 1;
13124}
13125
13126/* Translate internal representation of relocation info to BFD target
13127 format. */
13128
13129arelent **
13130tc_gen_reloc (section, fixp)
43841e91 13131 asection *section ATTRIBUTE_UNUSED;
252b5132
RH
13132 fixS *fixp;
13133{
13134 static arelent *retval[4];
13135 arelent *reloc;
13136 bfd_reloc_code_real_type code;
13137
13138 reloc = retval[0] = (arelent *) xmalloc (sizeof (arelent));
13139 retval[1] = NULL;
13140
49309057
ILT
13141 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
13142 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
13143 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
13144
13145 if (mips_pic == EMBEDDED_PIC
13146 && SWITCH_TABLE (fixp))
13147 {
13148 /* For a switch table entry we use a special reloc. The addend
13149 is actually the difference between the reloc address and the
13150 subtrahend. */
13151 reloc->addend = reloc->address - S_GET_VALUE (fixp->fx_subsy);
13152 if (OUTPUT_FLAVOR != bfd_target_ecoff_flavour)
13153 as_fatal (_("Double check fx_r_type in tc-mips.c:tc_gen_reloc"));
13154 fixp->fx_r_type = BFD_RELOC_GPREL32;
13155 }
13156 else if (fixp->fx_r_type == BFD_RELOC_PCREL_LO16)
13157 {
4514d474
CD
13158 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
13159 reloc->addend = fixp->fx_addnumber;
252b5132 13160 else
4514d474
CD
13161 {
13162 /* We use a special addend for an internal RELLO reloc. */
13163 if (symbol_section_p (fixp->fx_addsy))
13164 reloc->addend = reloc->address - S_GET_VALUE (fixp->fx_subsy);
13165 else
13166 reloc->addend = fixp->fx_addnumber + reloc->address;
13167 }
252b5132
RH
13168 }
13169 else if (fixp->fx_r_type == BFD_RELOC_PCREL_HI16_S)
13170 {
13171 assert (fixp->fx_next != NULL
13172 && fixp->fx_next->fx_r_type == BFD_RELOC_PCREL_LO16);
4514d474
CD
13173
13174 /* The reloc is relative to the RELLO; adjust the addend
252b5132 13175 accordingly. */
4514d474
CD
13176 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
13177 reloc->addend = fixp->fx_next->fx_addnumber;
252b5132 13178 else
4514d474
CD
13179 {
13180 /* We use a special addend for an internal RELHI reloc. */
13181 if (symbol_section_p (fixp->fx_addsy))
13182 reloc->addend = (fixp->fx_next->fx_frag->fr_address
13183 + fixp->fx_next->fx_where
13184 - S_GET_VALUE (fixp->fx_subsy));
13185 else
13186 reloc->addend = (fixp->fx_addnumber
13187 + fixp->fx_next->fx_frag->fr_address
13188 + fixp->fx_next->fx_where);
13189 }
252b5132 13190 }
4514d474
CD
13191 else if (fixp->fx_pcrel == 0 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
13192 reloc->addend = fixp->fx_addnumber;
252b5132
RH
13193 else
13194 {
13195 if (OUTPUT_FLAVOR != bfd_target_aout_flavour)
13196 /* A gruesome hack which is a result of the gruesome gas reloc
13197 handling. */
13198 reloc->addend = reloc->address;
13199 else
13200 reloc->addend = -reloc->address;
13201 }
13202
13203 /* If this is a variant frag, we may need to adjust the existing
13204 reloc and generate a new one. */
13205 if (fixp->fx_frag->fr_opcode != NULL
ed6fb7bd
SC
13206 && ((fixp->fx_r_type == BFD_RELOC_GPREL16
13207 && ! HAVE_NEWABI)
252b5132
RH
13208 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT16
13209 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL16
13210 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT_HI16
13211 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT_LO16
13212 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL_HI16
6478892d 13213 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL_LO16)
ed6fb7bd 13214 )
252b5132
RH
13215 {
13216 arelent *reloc2;
13217
13218 assert (! RELAX_MIPS16_P (fixp->fx_frag->fr_subtype));
13219
13220 /* If this is not the last reloc in this frag, then we have two
13221 GPREL relocs, or a GOT_HI16/GOT_LO16 pair, or a
13222 CALL_HI16/CALL_LO16, both of which are being replaced. Let
13223 the second one handle all of them. */
13224 if (fixp->fx_next != NULL
13225 && fixp->fx_frag == fixp->fx_next->fx_frag)
13226 {
cdf6fd85
TS
13227 assert ((fixp->fx_r_type == BFD_RELOC_GPREL16
13228 && fixp->fx_next->fx_r_type == BFD_RELOC_GPREL16)
252b5132
RH
13229 || (fixp->fx_r_type == BFD_RELOC_MIPS_GOT_HI16
13230 && (fixp->fx_next->fx_r_type
13231 == BFD_RELOC_MIPS_GOT_LO16))
13232 || (fixp->fx_r_type == BFD_RELOC_MIPS_CALL_HI16
13233 && (fixp->fx_next->fx_r_type
13234 == BFD_RELOC_MIPS_CALL_LO16)));
13235 retval[0] = NULL;
13236 return retval;
13237 }
13238
13239 fixp->fx_where = fixp->fx_frag->fr_opcode - fixp->fx_frag->fr_literal;
13240 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
13241 reloc2 = retval[1] = (arelent *) xmalloc (sizeof (arelent));
13242 retval[2] = NULL;
49309057
ILT
13243 reloc2->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
13244 *reloc2->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
13245 reloc2->address = (reloc->address
13246 + (RELAX_RELOC2 (fixp->fx_frag->fr_subtype)
13247 - RELAX_RELOC1 (fixp->fx_frag->fr_subtype)));
13248 reloc2->addend = fixp->fx_addnumber;
13249 reloc2->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_LO16);
13250 assert (reloc2->howto != NULL);
13251
13252 if (RELAX_RELOC3 (fixp->fx_frag->fr_subtype))
13253 {
13254 arelent *reloc3;
13255
13256 reloc3 = retval[2] = (arelent *) xmalloc (sizeof (arelent));
13257 retval[3] = NULL;
13258 *reloc3 = *reloc2;
13259 reloc3->address += 4;
13260 }
13261
13262 if (mips_pic == NO_PIC)
13263 {
cdf6fd85 13264 assert (fixp->fx_r_type == BFD_RELOC_GPREL16);
252b5132
RH
13265 fixp->fx_r_type = BFD_RELOC_HI16_S;
13266 }
13267 else if (mips_pic == SVR4_PIC)
13268 {
13269 switch (fixp->fx_r_type)
13270 {
13271 default:
13272 abort ();
13273 case BFD_RELOC_MIPS_GOT16:
13274 break;
252b5132
RH
13275 case BFD_RELOC_MIPS_GOT_LO16:
13276 case BFD_RELOC_MIPS_CALL_LO16:
13277 fixp->fx_r_type = BFD_RELOC_MIPS_GOT16;
13278 break;
ed6fb7bd
SC
13279 case BFD_RELOC_MIPS_CALL16:
13280 if (HAVE_NEWABI)
13281 {
13282 /* BFD_RELOC_MIPS_GOT16;*/
13283 fixp->fx_r_type = BFD_RELOC_MIPS_GOT_PAGE;
13284 reloc2->howto = bfd_reloc_type_lookup
13285 (stdoutput, BFD_RELOC_MIPS_GOT_OFST);
13286 }
13287 else
13288 fixp->fx_r_type = BFD_RELOC_MIPS_GOT16;
13289 break;
252b5132
RH
13290 }
13291 }
13292 else
13293 abort ();
ed6fb7bd
SC
13294
13295 /* newabi uses R_MIPS_GOT_DISP for local symbols */
6b70243f 13296 if (HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_MIPS_GOT_LO16)
ed6fb7bd
SC
13297 {
13298 fixp->fx_r_type = BFD_RELOC_MIPS_GOT_DISP;
13299 retval[1] = NULL;
13300 }
252b5132
RH
13301 }
13302
438c16b8
TS
13303 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
13304 entry to be used in the relocation's section offset. */
13305 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
252b5132
RH
13306 {
13307 reloc->address = reloc->addend;
13308 reloc->addend = 0;
13309 }
13310
13311 /* Since DIFF_EXPR_OK is defined in tc-mips.h, it is possible that
13312 fixup_segment converted a non-PC relative reloc into a PC
13313 relative reloc. In such a case, we need to convert the reloc
13314 code. */
13315 code = fixp->fx_r_type;
13316 if (fixp->fx_pcrel)
13317 {
13318 switch (code)
13319 {
13320 case BFD_RELOC_8:
13321 code = BFD_RELOC_8_PCREL;
13322 break;
13323 case BFD_RELOC_16:
13324 code = BFD_RELOC_16_PCREL;
13325 break;
13326 case BFD_RELOC_32:
13327 code = BFD_RELOC_32_PCREL;
13328 break;
13329 case BFD_RELOC_64:
13330 code = BFD_RELOC_64_PCREL;
13331 break;
13332 case BFD_RELOC_8_PCREL:
13333 case BFD_RELOC_16_PCREL:
13334 case BFD_RELOC_32_PCREL:
13335 case BFD_RELOC_64_PCREL:
13336 case BFD_RELOC_16_PCREL_S2:
13337 case BFD_RELOC_PCREL_HI16_S:
13338 case BFD_RELOC_PCREL_LO16:
13339 break;
13340 default:
13341 as_bad_where (fixp->fx_file, fixp->fx_line,
13342 _("Cannot make %s relocation PC relative"),
13343 bfd_get_reloc_code_name (code));
13344 }
13345 }
13346
add55e1f
RS
13347#ifdef OBJ_ELF
13348 /* md_apply_fix3 has a double-subtraction hack to get
13349 bfd_install_relocation to behave nicely. GPREL relocations are
13350 handled correctly without this hack, so undo it here. We can't
13351 stop md_apply_fix3 from subtracting twice in the first place since
13352 the fake addend is required for variant frags above. */
13353 if (fixp->fx_addsy != NULL && OUTPUT_FLAVOR == bfd_target_elf_flavour
98605598 13354 && (code == BFD_RELOC_GPREL16 || code == BFD_RELOC_MIPS16_GPREL)
add55e1f
RS
13355 && reloc->addend != 0
13356 && mips_need_elf_addend_fixup (fixp))
13357 reloc->addend += S_GET_VALUE (fixp->fx_addsy);
13358#endif
13359
252b5132
RH
13360 /* To support a PC relative reloc when generating embedded PIC code
13361 for ECOFF, we use a Cygnus extension. We check for that here to
13362 make sure that we don't let such a reloc escape normally. */
bb2d6cd7
GK
13363 if ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
13364 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
252b5132
RH
13365 && code == BFD_RELOC_16_PCREL_S2
13366 && mips_pic != EMBEDDED_PIC)
13367 reloc->howto = NULL;
13368 else
13369 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
13370
13371 if (reloc->howto == NULL)
13372 {
13373 as_bad_where (fixp->fx_file, fixp->fx_line,
13374 _("Can not represent %s relocation in this object file format"),
13375 bfd_get_reloc_code_name (code));
13376 retval[0] = NULL;
13377 }
13378
13379 return retval;
13380}
13381
13382/* Relax a machine dependent frag. This returns the amount by which
13383 the current size of the frag should change. */
13384
13385int
4a6a3df4
AO
13386mips_relax_frag (sec, fragp, stretch)
13387 asection *sec;
252b5132
RH
13388 fragS *fragp;
13389 long stretch;
13390{
4a6a3df4
AO
13391 if (RELAX_BRANCH_P (fragp->fr_subtype))
13392 {
13393 offsetT old_var = fragp->fr_var;
b34976b6
AM
13394
13395 fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE);
4a6a3df4
AO
13396
13397 return fragp->fr_var - old_var;
13398 }
13399
252b5132
RH
13400 if (! RELAX_MIPS16_P (fragp->fr_subtype))
13401 return 0;
13402
c4e7957c 13403 if (mips16_extended_frag (fragp, NULL, stretch))
252b5132
RH
13404 {
13405 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13406 return 0;
13407 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
13408 return 2;
13409 }
13410 else
13411 {
13412 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13413 return 0;
13414 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
13415 return -2;
13416 }
13417
13418 return 0;
13419}
13420
13421/* Convert a machine dependent frag. */
13422
13423void
13424md_convert_frag (abfd, asec, fragp)
43841e91 13425 bfd *abfd ATTRIBUTE_UNUSED;
252b5132
RH
13426 segT asec;
13427 fragS *fragp;
13428{
13429 int old, new;
13430 char *fixptr;
13431
4a6a3df4
AO
13432 if (RELAX_BRANCH_P (fragp->fr_subtype))
13433 {
13434 bfd_byte *buf;
13435 unsigned long insn;
13436 expressionS exp;
13437 fixS *fixp;
b34976b6 13438
4a6a3df4
AO
13439 buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix;
13440
13441 if (target_big_endian)
13442 insn = bfd_getb32 (buf);
13443 else
13444 insn = bfd_getl32 (buf);
b34976b6 13445
4a6a3df4
AO
13446 if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype))
13447 {
13448 /* We generate a fixup instead of applying it right now
13449 because, if there are linker relaxations, we're going to
13450 need the relocations. */
13451 exp.X_op = O_symbol;
13452 exp.X_add_symbol = fragp->fr_symbol;
13453 exp.X_add_number = fragp->fr_offset;
13454
13455 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13456 4, &exp, 1,
13457 RELAX_BRANCH_RELOC_S2 (fragp->fr_subtype)
13458 ? BFD_RELOC_16_PCREL_S2
13459 : BFD_RELOC_16_PCREL);
13460 fixp->fx_file = fragp->fr_file;
13461 fixp->fx_line = fragp->fr_line;
b34976b6 13462
4a6a3df4
AO
13463 md_number_to_chars ((char *)buf, insn, 4);
13464 buf += 4;
13465 }
13466 else
13467 {
13468 int i;
13469
13470 as_warn_where (fragp->fr_file, fragp->fr_line,
13471 _("relaxed out-of-range branch into a jump"));
13472
13473 if (RELAX_BRANCH_UNCOND (fragp->fr_subtype))
13474 goto uncond;
13475
13476 if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype))
13477 {
13478 /* Reverse the branch. */
13479 switch ((insn >> 28) & 0xf)
13480 {
13481 case 4:
13482 /* bc[0-3][tf]l? and bc1any[24][ft] instructions can
13483 have the condition reversed by tweaking a single
13484 bit, and their opcodes all have 0x4???????. */
13485 assert ((insn & 0xf1000000) == 0x41000000);
13486 insn ^= 0x00010000;
13487 break;
13488
13489 case 0:
13490 /* bltz 0x04000000 bgez 0x04010000
13491 bltzal 0x04100000 bgezal 0x04110000 */
13492 assert ((insn & 0xfc0e0000) == 0x04000000);
13493 insn ^= 0x00010000;
13494 break;
b34976b6 13495
4a6a3df4
AO
13496 case 1:
13497 /* beq 0x10000000 bne 0x14000000
13498 blez 0x18000000 bgtz 0x1c000000 */
13499 insn ^= 0x04000000;
13500 break;
13501
13502 default:
13503 abort ();
13504 }
13505 }
13506
13507 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
13508 {
13509 /* Clear the and-link bit. */
13510 assert ((insn & 0xfc1c0000) == 0x04100000);
13511
13512 /* bltzal 0x04100000 bgezal 0x04110000
13513 bltzall 0x04120000 bgezall 0x04130000 */
13514 insn &= ~0x00100000;
13515 }
13516
13517 /* Branch over the branch (if the branch was likely) or the
13518 full jump (not likely case). Compute the offset from the
13519 current instruction to branch to. */
13520 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
13521 i = 16;
13522 else
13523 {
13524 /* How many bytes in instructions we've already emitted? */
13525 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
13526 /* How many bytes in instructions from here to the end? */
13527 i = fragp->fr_var - i;
13528 }
13529 /* Convert to instruction count. */
13530 i >>= 2;
13531 /* Branch counts from the next instruction. */
b34976b6 13532 i--;
4a6a3df4
AO
13533 insn |= i;
13534 /* Branch over the jump. */
13535 md_number_to_chars ((char *)buf, insn, 4);
13536 buf += 4;
13537
13538 /* Nop */
13539 md_number_to_chars ((char*)buf, 0, 4);
13540 buf += 4;
13541
13542 if (RELAX_BRANCH_LIKELY (fragp->fr_subtype))
13543 {
13544 /* beql $0, $0, 2f */
13545 insn = 0x50000000;
13546 /* Compute the PC offset from the current instruction to
13547 the end of the variable frag. */
13548 /* How many bytes in instructions we've already emitted? */
13549 i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix;
13550 /* How many bytes in instructions from here to the end? */
13551 i = fragp->fr_var - i;
13552 /* Convert to instruction count. */
13553 i >>= 2;
13554 /* Don't decrement i, because we want to branch over the
13555 delay slot. */
13556
13557 insn |= i;
13558 md_number_to_chars ((char *)buf, insn, 4);
13559 buf += 4;
13560
13561 md_number_to_chars ((char *)buf, 0, 4);
13562 buf += 4;
13563 }
13564
13565 uncond:
13566 if (mips_pic == NO_PIC)
13567 {
13568 /* j or jal. */
13569 insn = (RELAX_BRANCH_LINK (fragp->fr_subtype)
13570 ? 0x0c000000 : 0x08000000);
13571 exp.X_op = O_symbol;
13572 exp.X_add_symbol = fragp->fr_symbol;
13573 exp.X_add_number = fragp->fr_offset;
13574
13575 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13576 4, &exp, 0, BFD_RELOC_MIPS_JMP);
13577 fixp->fx_file = fragp->fr_file;
13578 fixp->fx_line = fragp->fr_line;
13579
13580 md_number_to_chars ((char*)buf, insn, 4);
13581 buf += 4;
13582 }
13583 else
13584 {
13585 /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */
13586 insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000;
13587 exp.X_op = O_symbol;
13588 exp.X_add_symbol = fragp->fr_symbol;
13589 exp.X_add_number = fragp->fr_offset;
13590
13591 if (fragp->fr_offset)
13592 {
13593 exp.X_add_symbol = make_expr_symbol (&exp);
13594 exp.X_add_number = 0;
13595 }
13596
13597 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13598 4, &exp, 0, BFD_RELOC_MIPS_GOT16);
13599 fixp->fx_file = fragp->fr_file;
13600 fixp->fx_line = fragp->fr_line;
13601
13602 md_number_to_chars ((char*)buf, insn, 4);
13603 buf += 4;
b34976b6 13604
4a6a3df4
AO
13605 if (mips_opts.isa == ISA_MIPS1)
13606 {
13607 /* nop */
13608 md_number_to_chars ((char*)buf, 0, 4);
13609 buf += 4;
13610 }
13611
13612 /* d/addiu $at, $at, <sym> R_MIPS_LO16 */
13613 insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000;
13614
13615 fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal,
13616 4, &exp, 0, BFD_RELOC_LO16);
13617 fixp->fx_file = fragp->fr_file;
13618 fixp->fx_line = fragp->fr_line;
b34976b6 13619
4a6a3df4
AO
13620 md_number_to_chars ((char*)buf, insn, 4);
13621 buf += 4;
13622
13623 /* j(al)r $at. */
13624 if (RELAX_BRANCH_LINK (fragp->fr_subtype))
13625 insn = 0x0020f809;
13626 else
13627 insn = 0x00200008;
13628
13629 md_number_to_chars ((char*)buf, insn, 4);
13630 buf += 4;
13631 }
13632 }
13633
13634 assert (buf == (bfd_byte *)fragp->fr_literal
13635 + fragp->fr_fix + fragp->fr_var);
13636
13637 fragp->fr_fix += fragp->fr_var;
13638
13639 return;
13640 }
13641
252b5132
RH
13642 if (RELAX_MIPS16_P (fragp->fr_subtype))
13643 {
13644 int type;
13645 register const struct mips16_immed_operand *op;
b34976b6 13646 bfd_boolean small, ext;
252b5132
RH
13647 offsetT val;
13648 bfd_byte *buf;
13649 unsigned long insn;
b34976b6 13650 bfd_boolean use_extend;
252b5132
RH
13651 unsigned short extend;
13652
13653 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
13654 op = mips16_immed_operands;
13655 while (op->type != type)
13656 ++op;
13657
13658 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
13659 {
b34976b6
AM
13660 small = FALSE;
13661 ext = TRUE;
252b5132
RH
13662 }
13663 else
13664 {
b34976b6
AM
13665 small = TRUE;
13666 ext = FALSE;
252b5132
RH
13667 }
13668
6386f3a7 13669 resolve_symbol_value (fragp->fr_symbol);
252b5132
RH
13670 val = S_GET_VALUE (fragp->fr_symbol);
13671 if (op->pcrel)
13672 {
13673 addressT addr;
13674
13675 addr = fragp->fr_address + fragp->fr_fix;
13676
13677 /* The rules for the base address of a PC relative reloc are
13678 complicated; see mips16_extended_frag. */
13679 if (type == 'p' || type == 'q')
13680 {
13681 addr += 2;
13682 if (ext)
13683 addr += 2;
13684 /* Ignore the low bit in the target, since it will be
13685 set for a text label. */
13686 if ((val & 1) != 0)
13687 --val;
13688 }
13689 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
13690 addr -= 4;
13691 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
13692 addr -= 2;
13693
13694 addr &= ~ (addressT) ((1 << op->shift) - 1);
13695 val -= addr;
13696
13697 /* Make sure the section winds up with the alignment we have
13698 assumed. */
13699 if (op->shift > 0)
13700 record_alignment (asec, op->shift);
13701 }
13702
13703 if (ext
13704 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
13705 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
13706 as_warn_where (fragp->fr_file, fragp->fr_line,
13707 _("extended instruction in delay slot"));
13708
13709 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
13710
13711 if (target_big_endian)
13712 insn = bfd_getb16 (buf);
13713 else
13714 insn = bfd_getl16 (buf);
13715
13716 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
13717 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
13718 small, ext, &insn, &use_extend, &extend);
13719
13720 if (use_extend)
13721 {
874e8986 13722 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
252b5132
RH
13723 fragp->fr_fix += 2;
13724 buf += 2;
13725 }
13726
874e8986 13727 md_number_to_chars ((char *) buf, insn, 2);
252b5132
RH
13728 fragp->fr_fix += 2;
13729 buf += 2;
13730 }
13731 else
13732 {
13733 if (fragp->fr_opcode == NULL)
13734 return;
13735
13736 old = RELAX_OLD (fragp->fr_subtype);
13737 new = RELAX_NEW (fragp->fr_subtype);
13738 fixptr = fragp->fr_literal + fragp->fr_fix;
13739
13740 if (new > 0)
13741 memcpy (fixptr - old, fixptr, new);
13742
13743 fragp->fr_fix += new - old;
13744 }
13745}
13746
13747#ifdef OBJ_ELF
13748
13749/* This function is called after the relocs have been generated.
13750 We've been storing mips16 text labels as odd. Here we convert them
13751 back to even for the convenience of the debugger. */
13752
13753void
13754mips_frob_file_after_relocs ()
13755{
13756 asymbol **syms;
13757 unsigned int count, i;
13758
13759 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
13760 return;
13761
13762 syms = bfd_get_outsymbols (stdoutput);
13763 count = bfd_get_symcount (stdoutput);
13764 for (i = 0; i < count; i++, syms++)
13765 {
13766 if (elf_symbol (*syms)->internal_elf_sym.st_other == STO_MIPS16
13767 && ((*syms)->value & 1) != 0)
13768 {
13769 (*syms)->value &= ~1;
13770 /* If the symbol has an odd size, it was probably computed
13771 incorrectly, so adjust that as well. */
13772 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
13773 ++elf_symbol (*syms)->internal_elf_sym.st_size;
13774 }
13775 }
13776}
13777
13778#endif
13779
13780/* This function is called whenever a label is defined. It is used
13781 when handling branch delays; if a branch has a label, we assume we
13782 can not move it. */
13783
13784void
13785mips_define_label (sym)
13786 symbolS *sym;
13787{
13788 struct insn_label_list *l;
13789
13790 if (free_insn_labels == NULL)
13791 l = (struct insn_label_list *) xmalloc (sizeof *l);
13792 else
13793 {
13794 l = free_insn_labels;
13795 free_insn_labels = l->next;
13796 }
13797
13798 l->label = sym;
13799 l->next = insn_labels;
13800 insn_labels = l;
13801}
13802\f
13803#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13804
13805/* Some special processing for a MIPS ELF file. */
13806
13807void
13808mips_elf_final_processing ()
13809{
13810 /* Write out the register information. */
316f5878 13811 if (mips_abi != N64_ABI)
252b5132
RH
13812 {
13813 Elf32_RegInfo s;
13814
13815 s.ri_gprmask = mips_gprmask;
13816 s.ri_cprmask[0] = mips_cprmask[0];
13817 s.ri_cprmask[1] = mips_cprmask[1];
13818 s.ri_cprmask[2] = mips_cprmask[2];
13819 s.ri_cprmask[3] = mips_cprmask[3];
13820 /* The gp_value field is set by the MIPS ELF backend. */
13821
13822 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
13823 ((Elf32_External_RegInfo *)
13824 mips_regmask_frag));
13825 }
13826 else
13827 {
13828 Elf64_Internal_RegInfo s;
13829
13830 s.ri_gprmask = mips_gprmask;
13831 s.ri_pad = 0;
13832 s.ri_cprmask[0] = mips_cprmask[0];
13833 s.ri_cprmask[1] = mips_cprmask[1];
13834 s.ri_cprmask[2] = mips_cprmask[2];
13835 s.ri_cprmask[3] = mips_cprmask[3];
13836 /* The gp_value field is set by the MIPS ELF backend. */
13837
13838 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
13839 ((Elf64_External_RegInfo *)
13840 mips_regmask_frag));
13841 }
13842
13843 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
13844 sort of BFD interface for this. */
13845 if (mips_any_noreorder)
13846 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
13847 if (mips_pic != NO_PIC)
13848 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
13849
98d3f06f 13850 /* Set MIPS ELF flags for ASEs. */
a4672219
TS
13851 if (file_ase_mips16)
13852 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
1f25f5d3
CD
13853#if 0 /* XXX FIXME */
13854 if (file_ase_mips3d)
13855 elf_elfheader (stdoutput)->e_flags |= ???;
13856#endif
deec1734
CD
13857 if (file_ase_mdmx)
13858 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
1f25f5d3 13859
bdaaa2e1 13860 /* Set the MIPS ELF ABI flags. */
316f5878 13861 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
252b5132 13862 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
316f5878 13863 else if (mips_abi == O64_ABI)
252b5132 13864 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
316f5878 13865 else if (mips_abi == EABI_ABI)
252b5132 13866 {
316f5878 13867 if (!file_mips_gp32)
252b5132
RH
13868 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
13869 else
13870 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
13871 }
316f5878 13872 else if (mips_abi == N32_ABI)
be00bddd
TS
13873 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
13874
c9914766 13875 /* Nothing to do for N64_ABI. */
252b5132
RH
13876
13877 if (mips_32bitmode)
13878 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
13879}
13880
13881#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
13882\f
beae10d5
KH
13883typedef struct proc {
13884 symbolS *isym;
13885 unsigned long reg_mask;
13886 unsigned long reg_offset;
13887 unsigned long fpreg_mask;
13888 unsigned long fpreg_offset;
13889 unsigned long frame_offset;
13890 unsigned long frame_reg;
13891 unsigned long pc_reg;
13892} procS;
252b5132
RH
13893
13894static procS cur_proc;
13895static procS *cur_proc_ptr;
13896static int numprocs;
13897
0a9ef439 13898/* Fill in an rs_align_code fragment. */
a19d8eb0 13899
0a9ef439
RH
13900void
13901mips_handle_align (fragp)
13902 fragS *fragp;
a19d8eb0 13903{
0a9ef439
RH
13904 if (fragp->fr_type != rs_align_code)
13905 return;
13906
13907 if (mips_opts.mips16)
a19d8eb0
CP
13908 {
13909 static const unsigned char be_nop[] = { 0x65, 0x00 };
13910 static const unsigned char le_nop[] = { 0x00, 0x65 };
13911
0a9ef439
RH
13912 int bytes;
13913 char *p;
a19d8eb0 13914
0a9ef439
RH
13915 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
13916 p = fragp->fr_literal + fragp->fr_fix;
13917
13918 if (bytes & 1)
13919 {
13920 *p++ = 0;
f9419b05 13921 fragp->fr_fix++;
0a9ef439
RH
13922 }
13923
13924 memcpy (p, (target_big_endian ? be_nop : le_nop), 2);
13925 fragp->fr_var = 2;
a19d8eb0
CP
13926 }
13927
0a9ef439 13928 /* For mips32, a nop is a zero, which we trivially get by doing nothing. */
a19d8eb0
CP
13929}
13930
252b5132
RH
13931static void
13932md_obj_begin ()
13933{
13934}
13935
13936static void
13937md_obj_end ()
13938{
13939 /* check for premature end, nesting errors, etc */
13940 if (cur_proc_ptr)
9a41af64 13941 as_warn (_("missing .end at end of assembly"));
252b5132
RH
13942}
13943
13944static long
13945get_number ()
13946{
13947 int negative = 0;
13948 long val = 0;
13949
13950 if (*input_line_pointer == '-')
13951 {
13952 ++input_line_pointer;
13953 negative = 1;
13954 }
3882b010 13955 if (!ISDIGIT (*input_line_pointer))
956cd1d6 13956 as_bad (_("expected simple number"));
252b5132
RH
13957 if (input_line_pointer[0] == '0')
13958 {
13959 if (input_line_pointer[1] == 'x')
13960 {
13961 input_line_pointer += 2;
3882b010 13962 while (ISXDIGIT (*input_line_pointer))
252b5132
RH
13963 {
13964 val <<= 4;
13965 val |= hex_value (*input_line_pointer++);
13966 }
13967 return negative ? -val : val;
13968 }
13969 else
13970 {
13971 ++input_line_pointer;
3882b010 13972 while (ISDIGIT (*input_line_pointer))
252b5132
RH
13973 {
13974 val <<= 3;
13975 val |= *input_line_pointer++ - '0';
13976 }
13977 return negative ? -val : val;
13978 }
13979 }
3882b010 13980 if (!ISDIGIT (*input_line_pointer))
252b5132
RH
13981 {
13982 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
13983 *input_line_pointer, *input_line_pointer);
956cd1d6 13984 as_warn (_("invalid number"));
252b5132
RH
13985 return -1;
13986 }
3882b010 13987 while (ISDIGIT (*input_line_pointer))
252b5132
RH
13988 {
13989 val *= 10;
13990 val += *input_line_pointer++ - '0';
13991 }
13992 return negative ? -val : val;
13993}
13994
13995/* The .file directive; just like the usual .file directive, but there
c5dd6aab
DJ
13996 is an initial number which is the ECOFF file index. In the non-ECOFF
13997 case .file implies DWARF-2. */
13998
13999static void
14000s_mips_file (x)
14001 int x ATTRIBUTE_UNUSED;
14002{
ecb4347a
DJ
14003 static int first_file_directive = 0;
14004
c5dd6aab
DJ
14005 if (ECOFF_DEBUGGING)
14006 {
14007 get_number ();
14008 s_app_file (0);
14009 }
14010 else
ecb4347a
DJ
14011 {
14012 char *filename;
14013
14014 filename = dwarf2_directive_file (0);
14015
14016 /* Versions of GCC up to 3.1 start files with a ".file"
14017 directive even for stabs output. Make sure that this
14018 ".file" is handled. Note that you need a version of GCC
14019 after 3.1 in order to support DWARF-2 on MIPS. */
14020 if (filename != NULL && ! first_file_directive)
14021 {
14022 (void) new_logical_line (filename, -1);
14023 s_app_file_string (filename);
14024 }
14025 first_file_directive = 1;
14026 }
c5dd6aab
DJ
14027}
14028
14029/* The .loc directive, implying DWARF-2. */
252b5132
RH
14030
14031static void
c5dd6aab 14032s_mips_loc (x)
43841e91 14033 int x ATTRIBUTE_UNUSED;
252b5132 14034{
c5dd6aab
DJ
14035 if (!ECOFF_DEBUGGING)
14036 dwarf2_directive_loc (0);
252b5132
RH
14037}
14038
252b5132
RH
14039/* The .end directive. */
14040
14041static void
14042s_mips_end (x)
43841e91 14043 int x ATTRIBUTE_UNUSED;
252b5132
RH
14044{
14045 symbolS *p;
14046 int maybe_text;
14047
7a621144
DJ
14048 /* Following functions need their own .frame and .cprestore directives. */
14049 mips_frame_reg_valid = 0;
14050 mips_cprestore_valid = 0;
14051
252b5132
RH
14052 if (!is_end_of_line[(unsigned char) *input_line_pointer])
14053 {
14054 p = get_symbol ();
14055 demand_empty_rest_of_line ();
14056 }
14057 else
14058 p = NULL;
14059
14060#ifdef BFD_ASSEMBLER
14061 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
14062 maybe_text = 1;
14063 else
14064 maybe_text = 0;
14065#else
14066 if (now_seg != data_section && now_seg != bss_section)
14067 maybe_text = 1;
14068 else
14069 maybe_text = 0;
14070#endif
14071
14072 if (!maybe_text)
14073 as_warn (_(".end not in text section"));
14074
14075 if (!cur_proc_ptr)
14076 {
14077 as_warn (_(".end directive without a preceding .ent directive."));
14078 demand_empty_rest_of_line ();
14079 return;
14080 }
14081
14082 if (p != NULL)
14083 {
14084 assert (S_GET_NAME (p));
14085 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->isym)))
14086 as_warn (_(".end symbol does not match .ent symbol."));
ecb4347a
DJ
14087
14088 if (debug_type == DEBUG_STABS)
14089 stabs_generate_asm_endfunc (S_GET_NAME (p),
14090 S_GET_NAME (p));
252b5132
RH
14091 }
14092 else
14093 as_warn (_(".end directive missing or unknown symbol"));
14094
ecb4347a
DJ
14095#ifdef OBJ_ELF
14096 /* Generate a .pdr section. */
14097 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
14098 {
14099 segT saved_seg = now_seg;
14100 subsegT saved_subseg = now_subseg;
14101 valueT dot;
14102 expressionS exp;
14103 char *fragp;
252b5132 14104
ecb4347a 14105 dot = frag_now_fix ();
252b5132
RH
14106
14107#ifdef md_flush_pending_output
ecb4347a 14108 md_flush_pending_output ();
252b5132
RH
14109#endif
14110
ecb4347a
DJ
14111 assert (pdr_seg);
14112 subseg_set (pdr_seg, 0);
252b5132 14113
ecb4347a
DJ
14114 /* Write the symbol. */
14115 exp.X_op = O_symbol;
14116 exp.X_add_symbol = p;
14117 exp.X_add_number = 0;
14118 emit_expr (&exp, 4);
252b5132 14119
ecb4347a 14120 fragp = frag_more (7 * 4);
252b5132 14121
ecb4347a
DJ
14122 md_number_to_chars (fragp, (valueT) cur_proc_ptr->reg_mask, 4);
14123 md_number_to_chars (fragp + 4, (valueT) cur_proc_ptr->reg_offset, 4);
14124 md_number_to_chars (fragp + 8, (valueT) cur_proc_ptr->fpreg_mask, 4);
14125 md_number_to_chars (fragp + 12, (valueT) cur_proc_ptr->fpreg_offset, 4);
14126 md_number_to_chars (fragp + 16, (valueT) cur_proc_ptr->frame_offset, 4);
14127 md_number_to_chars (fragp + 20, (valueT) cur_proc_ptr->frame_reg, 4);
14128 md_number_to_chars (fragp + 24, (valueT) cur_proc_ptr->pc_reg, 4);
252b5132 14129
ecb4347a
DJ
14130 subseg_set (saved_seg, saved_subseg);
14131 }
14132#endif /* OBJ_ELF */
252b5132
RH
14133
14134 cur_proc_ptr = NULL;
14135}
14136
14137/* The .aent and .ent directives. */
14138
14139static void
14140s_mips_ent (aent)
14141 int aent;
14142{
252b5132
RH
14143 symbolS *symbolP;
14144 int maybe_text;
14145
14146 symbolP = get_symbol ();
14147 if (*input_line_pointer == ',')
f9419b05 14148 ++input_line_pointer;
252b5132 14149 SKIP_WHITESPACE ();
3882b010 14150 if (ISDIGIT (*input_line_pointer)
d9a62219 14151 || *input_line_pointer == '-')
874e8986 14152 get_number ();
252b5132
RH
14153
14154#ifdef BFD_ASSEMBLER
14155 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
14156 maybe_text = 1;
14157 else
14158 maybe_text = 0;
14159#else
14160 if (now_seg != data_section && now_seg != bss_section)
14161 maybe_text = 1;
14162 else
14163 maybe_text = 0;
14164#endif
14165
14166 if (!maybe_text)
14167 as_warn (_(".ent or .aent not in text section."));
14168
14169 if (!aent && cur_proc_ptr)
9a41af64 14170 as_warn (_("missing .end"));
252b5132
RH
14171
14172 if (!aent)
14173 {
7a621144
DJ
14174 /* This function needs its own .frame and .cprestore directives. */
14175 mips_frame_reg_valid = 0;
14176 mips_cprestore_valid = 0;
14177
252b5132
RH
14178 cur_proc_ptr = &cur_proc;
14179 memset (cur_proc_ptr, '\0', sizeof (procS));
14180
14181 cur_proc_ptr->isym = symbolP;
14182
49309057 14183 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
252b5132 14184
f9419b05 14185 ++numprocs;
ecb4347a
DJ
14186
14187 if (debug_type == DEBUG_STABS)
14188 stabs_generate_asm_func (S_GET_NAME (symbolP),
14189 S_GET_NAME (symbolP));
252b5132
RH
14190 }
14191
14192 demand_empty_rest_of_line ();
14193}
14194
14195/* The .frame directive. If the mdebug section is present (IRIX 5 native)
bdaaa2e1 14196 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
252b5132 14197 s_mips_frame is used so that we can set the PDR information correctly.
bdaaa2e1 14198 We can't use the ecoff routines because they make reference to the ecoff
252b5132
RH
14199 symbol table (in the mdebug section). */
14200
14201static void
14202s_mips_frame (ignore)
2b3c5a5d 14203 int ignore ATTRIBUTE_UNUSED;
252b5132 14204{
ecb4347a
DJ
14205#ifdef OBJ_ELF
14206 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
14207 {
14208 long val;
252b5132 14209
ecb4347a
DJ
14210 if (cur_proc_ptr == (procS *) NULL)
14211 {
14212 as_warn (_(".frame outside of .ent"));
14213 demand_empty_rest_of_line ();
14214 return;
14215 }
252b5132 14216
ecb4347a
DJ
14217 cur_proc_ptr->frame_reg = tc_get_register (1);
14218
14219 SKIP_WHITESPACE ();
14220 if (*input_line_pointer++ != ','
14221 || get_absolute_expression_and_terminator (&val) != ',')
14222 {
14223 as_warn (_("Bad .frame directive"));
14224 --input_line_pointer;
14225 demand_empty_rest_of_line ();
14226 return;
14227 }
252b5132 14228
ecb4347a
DJ
14229 cur_proc_ptr->frame_offset = val;
14230 cur_proc_ptr->pc_reg = tc_get_register (0);
252b5132 14231
252b5132 14232 demand_empty_rest_of_line ();
252b5132 14233 }
ecb4347a
DJ
14234 else
14235#endif /* OBJ_ELF */
14236 s_ignore (ignore);
252b5132
RH
14237}
14238
bdaaa2e1
KH
14239/* The .fmask and .mask directives. If the mdebug section is present
14240 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
252b5132 14241 embedded targets, s_mips_mask is used so that we can set the PDR
bdaaa2e1 14242 information correctly. We can't use the ecoff routines because they
252b5132
RH
14243 make reference to the ecoff symbol table (in the mdebug section). */
14244
14245static void
14246s_mips_mask (reg_type)
14247 char reg_type;
14248{
ecb4347a
DJ
14249#ifdef OBJ_ELF
14250 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
252b5132 14251 {
ecb4347a 14252 long mask, off;
252b5132 14253
ecb4347a
DJ
14254 if (cur_proc_ptr == (procS *) NULL)
14255 {
14256 as_warn (_(".mask/.fmask outside of .ent"));
14257 demand_empty_rest_of_line ();
14258 return;
14259 }
252b5132 14260
ecb4347a
DJ
14261 if (get_absolute_expression_and_terminator (&mask) != ',')
14262 {
14263 as_warn (_("Bad .mask/.fmask directive"));
14264 --input_line_pointer;
14265 demand_empty_rest_of_line ();
14266 return;
14267 }
252b5132 14268
ecb4347a
DJ
14269 off = get_absolute_expression ();
14270
14271 if (reg_type == 'F')
14272 {
14273 cur_proc_ptr->fpreg_mask = mask;
14274 cur_proc_ptr->fpreg_offset = off;
14275 }
14276 else
14277 {
14278 cur_proc_ptr->reg_mask = mask;
14279 cur_proc_ptr->reg_offset = off;
14280 }
14281
14282 demand_empty_rest_of_line ();
252b5132
RH
14283 }
14284 else
ecb4347a
DJ
14285#endif /* OBJ_ELF */
14286 s_ignore (reg_type);
252b5132
RH
14287}
14288
14289/* The .loc directive. */
14290
14291#if 0
14292static void
14293s_loc (x)
14294 int x;
14295{
14296 symbolS *symbolP;
14297 int lineno;
14298 int addroff;
14299
14300 assert (now_seg == text_section);
14301
14302 lineno = get_number ();
14303 addroff = frag_now_fix ();
14304
14305 symbolP = symbol_new ("", N_SLINE, addroff, frag_now);
14306 S_SET_TYPE (symbolP, N_SLINE);
14307 S_SET_OTHER (symbolP, 0);
14308 S_SET_DESC (symbolP, lineno);
14309 symbolP->sy_segment = now_seg;
14310}
14311#endif
e7af610e 14312
316f5878
RS
14313/* A table describing all the processors gas knows about. Names are
14314 matched in the order listed.
e7af610e 14315
316f5878
RS
14316 To ease comparison, please keep this table in the same order as
14317 gcc's mips_cpu_info_table[]. */
e972090a
NC
14318static const struct mips_cpu_info mips_cpu_info_table[] =
14319{
316f5878
RS
14320 /* Entries for generic ISAs */
14321 { "mips1", 1, ISA_MIPS1, CPU_R3000 },
14322 { "mips2", 1, ISA_MIPS2, CPU_R6000 },
14323 { "mips3", 1, ISA_MIPS3, CPU_R4000 },
14324 { "mips4", 1, ISA_MIPS4, CPU_R8000 },
14325 { "mips5", 1, ISA_MIPS5, CPU_MIPS5 },
14326 { "mips32", 1, ISA_MIPS32, CPU_MIPS32 },
14327 { "mips64", 1, ISA_MIPS64, CPU_MIPS64 },
14328
14329 /* MIPS I */
14330 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
14331 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
14332 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
14333
14334 /* MIPS II */
14335 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
14336
14337 /* MIPS III */
14338 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
14339 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
14340 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
14341 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
60b63b72
RS
14342 { "vr4120", 0, ISA_MIPS3, CPU_VR4120 },
14343 { "vr4130", 0, ISA_MIPS3, CPU_VR4120 },
14344 { "vr4181", 0, ISA_MIPS3, CPU_R4111 },
316f5878
RS
14345 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
14346 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
14347 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
14348 { "orion", 0, ISA_MIPS3, CPU_R4600 },
14349 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
14350
14351 /* MIPS IV */
14352 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
14353 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
14354 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
14355 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
60b63b72
RS
14356 { "vr5400", 0, ISA_MIPS4, CPU_VR5400 },
14357 { "vr5500", 0, ISA_MIPS4, CPU_VR5500 },
316f5878
RS
14358 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
14359 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
14360 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
14361 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
14362 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
14363 { "r7000", 0, ISA_MIPS4, CPU_R5000 },
14364
14365 /* MIPS 32 */
14366 { "4kc", 0, ISA_MIPS32, CPU_MIPS32, },
14367 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
14368 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
e7af610e 14369
316f5878
RS
14370 /* MIPS 64 */
14371 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
14372 { "20kc", 0, ISA_MIPS64, CPU_MIPS64 },
e7af610e 14373
c7a23324 14374 /* Broadcom SB-1 CPU core */
316f5878 14375 { "sb1", 0, ISA_MIPS64, CPU_SB1 },
e7af610e 14376
316f5878
RS
14377 /* End marker */
14378 { NULL, 0, 0, 0 }
14379};
e7af610e 14380
84ea6cf2 14381
316f5878
RS
14382/* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
14383 with a final "000" replaced by "k". Ignore case.
e7af610e 14384
316f5878 14385 Note: this function is shared between GCC and GAS. */
c6c98b38 14386
b34976b6 14387static bfd_boolean
316f5878
RS
14388mips_strict_matching_cpu_name_p (canonical, given)
14389 const char *canonical, *given;
14390{
14391 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
14392 given++, canonical++;
14393
14394 return ((*given == 0 && *canonical == 0)
14395 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
14396}
14397
14398
14399/* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
14400 CPU name. We've traditionally allowed a lot of variation here.
14401
14402 Note: this function is shared between GCC and GAS. */
14403
b34976b6 14404static bfd_boolean
316f5878
RS
14405mips_matching_cpu_name_p (canonical, given)
14406 const char *canonical, *given;
14407{
14408 /* First see if the name matches exactly, or with a final "000"
14409 turned into "k". */
14410 if (mips_strict_matching_cpu_name_p (canonical, given))
b34976b6 14411 return TRUE;
316f5878
RS
14412
14413 /* If not, try comparing based on numerical designation alone.
14414 See if GIVEN is an unadorned number, or 'r' followed by a number. */
14415 if (TOLOWER (*given) == 'r')
14416 given++;
14417 if (!ISDIGIT (*given))
b34976b6 14418 return FALSE;
316f5878
RS
14419
14420 /* Skip over some well-known prefixes in the canonical name,
14421 hoping to find a number there too. */
14422 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
14423 canonical += 2;
14424 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
14425 canonical += 2;
14426 else if (TOLOWER (canonical[0]) == 'r')
14427 canonical += 1;
14428
14429 return mips_strict_matching_cpu_name_p (canonical, given);
14430}
14431
14432
14433/* Parse an option that takes the name of a processor as its argument.
14434 OPTION is the name of the option and CPU_STRING is the argument.
14435 Return the corresponding processor enumeration if the CPU_STRING is
14436 recognized, otherwise report an error and return null.
14437
14438 A similar function exists in GCC. */
e7af610e
NC
14439
14440static const struct mips_cpu_info *
316f5878
RS
14441mips_parse_cpu (option, cpu_string)
14442 const char *option, *cpu_string;
e7af610e 14443{
316f5878 14444 const struct mips_cpu_info *p;
e7af610e 14445
316f5878
RS
14446 /* 'from-abi' selects the most compatible architecture for the given
14447 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
14448 EABIs, we have to decide whether we're using the 32-bit or 64-bit
14449 version. Look first at the -mgp options, if given, otherwise base
14450 the choice on MIPS_DEFAULT_64BIT.
e7af610e 14451
316f5878
RS
14452 Treat NO_ABI like the EABIs. One reason to do this is that the
14453 plain 'mips' and 'mips64' configs have 'from-abi' as their default
14454 architecture. This code picks MIPS I for 'mips' and MIPS III for
14455 'mips64', just as we did in the days before 'from-abi'. */
14456 if (strcasecmp (cpu_string, "from-abi") == 0)
14457 {
14458 if (ABI_NEEDS_32BIT_REGS (mips_abi))
14459 return mips_cpu_info_from_isa (ISA_MIPS1);
14460
14461 if (ABI_NEEDS_64BIT_REGS (mips_abi))
14462 return mips_cpu_info_from_isa (ISA_MIPS3);
14463
14464 if (file_mips_gp32 >= 0)
14465 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
14466
14467 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
14468 ? ISA_MIPS3
14469 : ISA_MIPS1);
14470 }
14471
14472 /* 'default' has traditionally been a no-op. Probably not very useful. */
14473 if (strcasecmp (cpu_string, "default") == 0)
14474 return 0;
14475
14476 for (p = mips_cpu_info_table; p->name != 0; p++)
14477 if (mips_matching_cpu_name_p (p->name, cpu_string))
14478 return p;
14479
14480 as_bad ("Bad value (%s) for %s", cpu_string, option);
14481 return 0;
e7af610e
NC
14482}
14483
316f5878
RS
14484/* Return the canonical processor information for ISA (a member of the
14485 ISA_MIPS* enumeration). */
14486
e7af610e
NC
14487static const struct mips_cpu_info *
14488mips_cpu_info_from_isa (isa)
14489 int isa;
14490{
14491 int i;
14492
14493 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
14494 if (mips_cpu_info_table[i].is_isa
316f5878 14495 && isa == mips_cpu_info_table[i].isa)
e7af610e
NC
14496 return (&mips_cpu_info_table[i]);
14497
e972090a 14498 return NULL;
e7af610e 14499}
316f5878
RS
14500\f
14501static void
14502show (stream, string, col_p, first_p)
14503 FILE *stream;
14504 const char *string;
14505 int *col_p;
14506 int *first_p;
14507{
14508 if (*first_p)
14509 {
14510 fprintf (stream, "%24s", "");
14511 *col_p = 24;
14512 }
14513 else
14514 {
14515 fprintf (stream, ", ");
14516 *col_p += 2;
14517 }
e7af610e 14518
316f5878
RS
14519 if (*col_p + strlen (string) > 72)
14520 {
14521 fprintf (stream, "\n%24s", "");
14522 *col_p = 24;
14523 }
14524
14525 fprintf (stream, "%s", string);
14526 *col_p += strlen (string);
14527
14528 *first_p = 0;
14529}
14530
14531void
14532md_show_usage (stream)
14533 FILE *stream;
e7af610e 14534{
316f5878
RS
14535 int column, first;
14536 size_t i;
14537
14538 fprintf (stream, _("\
14539MIPS options:\n\
14540-membedded-pic generate embedded position independent code\n\
14541-EB generate big endian output\n\
14542-EL generate little endian output\n\
14543-g, -g2 do not remove unneeded NOPs or swap branches\n\
14544-G NUM allow referencing objects up to NUM bytes\n\
14545 implicitly with the gp register [default 8]\n"));
14546 fprintf (stream, _("\
14547-mips1 generate MIPS ISA I instructions\n\
14548-mips2 generate MIPS ISA II instructions\n\
14549-mips3 generate MIPS ISA III instructions\n\
14550-mips4 generate MIPS ISA IV instructions\n\
14551-mips5 generate MIPS ISA V instructions\n\
14552-mips32 generate MIPS32 ISA instructions\n\
14553-mips64 generate MIPS64 ISA instructions\n\
14554-march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
14555
14556 first = 1;
e7af610e
NC
14557
14558 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
316f5878
RS
14559 show (stream, mips_cpu_info_table[i].name, &column, &first);
14560 show (stream, "from-abi", &column, &first);
14561 fputc ('\n', stream);
e7af610e 14562
316f5878
RS
14563 fprintf (stream, _("\
14564-mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
14565-no-mCPU don't generate code specific to CPU.\n\
14566 For -mCPU and -no-mCPU, CPU must be one of:\n"));
14567
14568 first = 1;
14569
14570 show (stream, "3900", &column, &first);
14571 show (stream, "4010", &column, &first);
14572 show (stream, "4100", &column, &first);
14573 show (stream, "4650", &column, &first);
14574 fputc ('\n', stream);
14575
14576 fprintf (stream, _("\
14577-mips16 generate mips16 instructions\n\
14578-no-mips16 do not generate mips16 instructions\n"));
14579 fprintf (stream, _("\
14580-mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
14581-mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
14582-O0 remove unneeded NOPs, do not swap branches\n\
14583-O remove unneeded NOPs and swap branches\n\
14584-n warn about NOPs generated from macros\n\
14585--[no-]construct-floats [dis]allow floating point values to be constructed\n\
14586--trap, --no-break trap exception on div by 0 and mult overflow\n\
14587--break, --no-trap break exception on div by 0 and mult overflow\n"));
14588#ifdef OBJ_ELF
14589 fprintf (stream, _("\
14590-KPIC, -call_shared generate SVR4 position independent code\n\
14591-non_shared do not generate position independent code\n\
14592-xgot assume a 32 bit GOT\n\
14593-mabi=ABI create ABI conformant object file for:\n"));
14594
14595 first = 1;
14596
14597 show (stream, "32", &column, &first);
14598 show (stream, "o64", &column, &first);
14599 show (stream, "n32", &column, &first);
14600 show (stream, "64", &column, &first);
14601 show (stream, "eabi", &column, &first);
14602
14603 fputc ('\n', stream);
14604
14605 fprintf (stream, _("\
14606-32 create o32 ABI object file (default)\n\
14607-n32 create n32 ABI object file\n\
14608-64 create 64 ABI object file\n"));
14609#endif
e7af610e 14610}
14e777e0
KB
14611
14612enum dwarf2_format
14613mips_dwarf2_format ()
14614{
14615 if (mips_abi == N64_ABI)
14616 return dwarf2_format_64bit_irix;
14617 else
14618 return dwarf2_format_32bit;
14619}
This page took 1.131018 seconds and 4 git commands to generate.