[ gas/testsuite/ChangeLog ]
[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
TS
286/* Return true if the given CPU supports the MIPS16 ASE. */
287#define CPU_HAS_MIPS16(cpu) \
288 (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0)
289
1f25f5d3
CD
290/* Return true if the given CPU supports the MIPS3D ASE. */
291#define CPU_HAS_MIPS3D(cpu) ((cpu) == CPU_SB1 \
292 )
293
deec1734 294/* Return true if the given CPU supports the MDMX ASE. */
a4672219 295#define CPU_HAS_MDMX(cpu) (false \
deec1734
CD
296 )
297
bdaaa2e1 298/* Whether the processor uses hardware interlocks to protect
252b5132 299 reads from the HI and LO registers, and thus does not
ec68c924 300 require nops to be inserted. */
252b5132 301
ec68c924 302#define hilo_interlocks (mips_arch == CPU_R4010 \
0a758a12 303 || mips_arch == CPU_SB1 \
252b5132
RH
304 )
305
306/* Whether the processor uses hardware interlocks to protect reads
307 from the GPRs, and thus does not require nops to be inserted. */
308#define gpr_interlocks \
e7af610e 309 (mips_opts.isa != ISA_MIPS1 \
ec68c924 310 || mips_arch == CPU_R3900)
252b5132
RH
311
312/* As with other "interlocks" this is used by hardware that has FP
313 (co-processor) interlocks. */
bdaaa2e1 314/* Itbl support may require additional care here. */
ec68c924 315#define cop_interlocks (mips_arch == CPU_R4300 \
0a758a12 316 || mips_arch == CPU_SB1 \
252b5132
RH
317 )
318
6b76fefe
CM
319/* Is this a mfhi or mflo instruction? */
320#define MF_HILO_INSN(PINFO) \
321 ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO))
322
252b5132
RH
323/* MIPS PIC level. */
324
a161fe53 325enum mips_pic_level mips_pic;
252b5132 326
39c0a331
L
327/* Warn about all NOPS that the assembler generates. */
328static int warn_nops = 0;
329
c9914766 330/* 1 if we should generate 32 bit offsets from the $gp register in
252b5132 331 SVR4_PIC mode. Currently has no meaning in other modes. */
c9914766 332static int mips_big_got = 0;
252b5132
RH
333
334/* 1 if trap instructions should used for overflow rather than break
335 instructions. */
c9914766 336static int mips_trap = 0;
252b5132 337
119d663a 338/* 1 if double width floating point constants should not be constructed
b6ff326e 339 by assembling two single width halves into two single width floating
119d663a
NC
340 point registers which just happen to alias the double width destination
341 register. On some architectures this aliasing can be disabled by a bit
d547a75e 342 in the status register, and the setting of this bit cannot be determined
119d663a
NC
343 automatically at assemble time. */
344static int mips_disable_float_construction;
345
252b5132
RH
346/* Non-zero if any .set noreorder directives were used. */
347
348static int mips_any_noreorder;
349
6b76fefe
CM
350/* Non-zero if nops should be inserted when the register referenced in
351 an mfhi/mflo instruction is read in the next two instructions. */
352static int mips_7000_hilo_fix;
353
252b5132 354/* The size of the small data section. */
156c2f8b 355static unsigned int g_switch_value = 8;
252b5132
RH
356/* Whether the -G option was used. */
357static int g_switch_seen = 0;
358
359#define N_RMASK 0xc4
360#define N_VFP 0xd4
361
362/* If we can determine in advance that GP optimization won't be
363 possible, we can skip the relaxation stuff that tries to produce
364 GP-relative references. This makes delay slot optimization work
365 better.
366
367 This function can only provide a guess, but it seems to work for
fba2b7f9
GK
368 gcc output. It needs to guess right for gcc, otherwise gcc
369 will put what it thinks is a GP-relative instruction in a branch
370 delay slot.
252b5132
RH
371
372 I don't know if a fix is needed for the SVR4_PIC mode. I've only
373 fixed it for the non-PIC mode. KR 95/04/07 */
374static int nopic_need_relax PARAMS ((symbolS *, int));
375
376/* handle of the OPCODE hash table */
377static struct hash_control *op_hash = NULL;
378
379/* The opcode hash table we use for the mips16. */
380static struct hash_control *mips16_op_hash = NULL;
381
382/* This array holds the chars that always start a comment. If the
383 pre-processor is disabled, these aren't very useful */
384const char comment_chars[] = "#";
385
386/* This array holds the chars that only start a comment at the beginning of
387 a line. If the line seems to have the form '# 123 filename'
388 .line and .file directives will appear in the pre-processed output */
389/* Note that input_file.c hand checks for '#' at the beginning of the
390 first line of the input file. This is because the compiler outputs
bdaaa2e1 391 #NO_APP at the beginning of its output. */
252b5132
RH
392/* Also note that C style comments are always supported. */
393const char line_comment_chars[] = "#";
394
bdaaa2e1 395/* This array holds machine specific line separator characters. */
63a0b638 396const char line_separator_chars[] = ";";
252b5132
RH
397
398/* Chars that can be used to separate mant from exp in floating point nums */
399const char EXP_CHARS[] = "eE";
400
401/* Chars that mean this number is a floating point constant */
402/* As in 0f12.456 */
403/* or 0d1.2345e12 */
404const char FLT_CHARS[] = "rRsSfFdDxXpP";
405
406/* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
407 changed in read.c . Ideally it shouldn't have to know about it at all,
408 but nothing is ideal around here.
409 */
410
411static char *insn_error;
412
413static int auto_align = 1;
414
415/* When outputting SVR4 PIC code, the assembler needs to know the
416 offset in the stack frame from which to restore the $gp register.
417 This is set by the .cprestore pseudo-op, and saved in this
418 variable. */
419static offsetT mips_cprestore_offset = -1;
420
6478892d
TS
421/* Similiar for NewABI PIC code, where $gp is callee-saved. NewABI has some
422 more optimizations, it can use a register value instead of a memory-saved
956cd1d6 423 offset and even an other register than $gp as global pointer. */
6478892d
TS
424static offsetT mips_cpreturn_offset = -1;
425static int mips_cpreturn_register = -1;
426static int mips_gp_register = GP;
def2e0dd 427static int mips_gprel_offset = 0;
6478892d 428
7a621144
DJ
429/* Whether mips_cprestore_offset has been set in the current function
430 (or whether it has already been warned about, if not). */
431static int mips_cprestore_valid = 0;
432
252b5132
RH
433/* This is the register which holds the stack frame, as set by the
434 .frame pseudo-op. This is needed to implement .cprestore. */
435static int mips_frame_reg = SP;
436
7a621144
DJ
437/* Whether mips_frame_reg has been set in the current function
438 (or whether it has already been warned about, if not). */
439static int mips_frame_reg_valid = 0;
440
252b5132
RH
441/* To output NOP instructions correctly, we need to keep information
442 about the previous two instructions. */
443
444/* Whether we are optimizing. The default value of 2 means to remove
445 unneeded NOPs and swap branch instructions when possible. A value
446 of 1 means to not swap branches. A value of 0 means to always
447 insert NOPs. */
448static int mips_optimize = 2;
449
450/* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
451 equivalent to seeing no -g option at all. */
452static int mips_debug = 0;
453
454/* The previous instruction. */
455static struct mips_cl_insn prev_insn;
456
457/* The instruction before prev_insn. */
458static struct mips_cl_insn prev_prev_insn;
459
460/* If we don't want information for prev_insn or prev_prev_insn, we
461 point the insn_mo field at this dummy integer. */
43841e91 462static const struct mips_opcode dummy_opcode = { NULL, NULL, 0, 0, 0, 0 };
252b5132
RH
463
464/* Non-zero if prev_insn is valid. */
465static int prev_insn_valid;
466
467/* The frag for the previous instruction. */
468static struct frag *prev_insn_frag;
469
470/* The offset into prev_insn_frag for the previous instruction. */
471static long prev_insn_where;
472
473/* The reloc type for the previous instruction, if any. */
f6688943 474static bfd_reloc_code_real_type prev_insn_reloc_type[3];
252b5132
RH
475
476/* The reloc for the previous instruction, if any. */
f6688943 477static fixS *prev_insn_fixp[3];
252b5132
RH
478
479/* Non-zero if the previous instruction was in a delay slot. */
480static int prev_insn_is_delay_slot;
481
482/* Non-zero if the previous instruction was in a .set noreorder. */
483static int prev_insn_unreordered;
484
485/* Non-zero if the previous instruction uses an extend opcode (if
486 mips16). */
487static int prev_insn_extended;
488
489/* Non-zero if the previous previous instruction was in a .set
490 noreorder. */
491static int prev_prev_insn_unreordered;
492
493/* If this is set, it points to a frag holding nop instructions which
494 were inserted before the start of a noreorder section. If those
495 nops turn out to be unnecessary, the size of the frag can be
496 decreased. */
497static fragS *prev_nop_frag;
498
499/* The number of nop instructions we created in prev_nop_frag. */
500static int prev_nop_frag_holds;
501
502/* The number of nop instructions that we know we need in
bdaaa2e1 503 prev_nop_frag. */
252b5132
RH
504static int prev_nop_frag_required;
505
506/* The number of instructions we've seen since prev_nop_frag. */
507static int prev_nop_frag_since;
508
509/* For ECOFF and ELF, relocations against symbols are done in two
510 parts, with a HI relocation and a LO relocation. Each relocation
511 has only 16 bits of space to store an addend. This means that in
512 order for the linker to handle carries correctly, it must be able
513 to locate both the HI and the LO relocation. This means that the
514 relocations must appear in order in the relocation table.
515
516 In order to implement this, we keep track of each unmatched HI
517 relocation. We then sort them so that they immediately precede the
bdaaa2e1 518 corresponding LO relocation. */
252b5132 519
e972090a
NC
520struct mips_hi_fixup
521{
252b5132
RH
522 /* Next HI fixup. */
523 struct mips_hi_fixup *next;
524 /* This fixup. */
525 fixS *fixp;
526 /* The section this fixup is in. */
527 segT seg;
528};
529
530/* The list of unmatched HI relocs. */
531
532static struct mips_hi_fixup *mips_hi_fixup_list;
533
534/* Map normal MIPS register numbers to mips16 register numbers. */
535
536#define X ILLEGAL_REG
e972090a
NC
537static const int mips32_to_16_reg_map[] =
538{
252b5132
RH
539 X, X, 2, 3, 4, 5, 6, 7,
540 X, X, X, X, X, X, X, X,
541 0, 1, X, X, X, X, X, X,
542 X, X, X, X, X, X, X, X
543};
544#undef X
545
546/* Map mips16 register numbers to normal MIPS register numbers. */
547
e972090a
NC
548static const unsigned int mips16_to_32_reg_map[] =
549{
252b5132
RH
550 16, 17, 2, 3, 4, 5, 6, 7
551};
552\f
553/* Since the MIPS does not have multiple forms of PC relative
554 instructions, we do not have to do relaxing as is done on other
555 platforms. However, we do have to handle GP relative addressing
556 correctly, which turns out to be a similar problem.
557
558 Every macro that refers to a symbol can occur in (at least) two
559 forms, one with GP relative addressing and one without. For
560 example, loading a global variable into a register generally uses
561 a macro instruction like this:
562 lw $4,i
563 If i can be addressed off the GP register (this is true if it is in
564 the .sbss or .sdata section, or if it is known to be smaller than
565 the -G argument) this will generate the following instruction:
566 lw $4,i($gp)
567 This instruction will use a GPREL reloc. If i can not be addressed
568 off the GP register, the following instruction sequence will be used:
569 lui $at,i
570 lw $4,i($at)
571 In this case the first instruction will have a HI16 reloc, and the
572 second reloc will have a LO16 reloc. Both relocs will be against
573 the symbol i.
574
575 The issue here is that we may not know whether i is GP addressable
576 until after we see the instruction that uses it. Therefore, we
577 want to be able to choose the final instruction sequence only at
578 the end of the assembly. This is similar to the way other
579 platforms choose the size of a PC relative instruction only at the
580 end of assembly.
581
582 When generating position independent code we do not use GP
583 addressing in quite the same way, but the issue still arises as
584 external symbols and local symbols must be handled differently.
585
586 We handle these issues by actually generating both possible
587 instruction sequences. The longer one is put in a frag_var with
588 type rs_machine_dependent. We encode what to do with the frag in
589 the subtype field. We encode (1) the number of existing bytes to
590 replace, (2) the number of new bytes to use, (3) the offset from
591 the start of the existing bytes to the first reloc we must generate
592 (that is, the offset is applied from the start of the existing
593 bytes after they are replaced by the new bytes, if any), (4) the
594 offset from the start of the existing bytes to the second reloc,
595 (5) whether a third reloc is needed (the third reloc is always four
596 bytes after the second reloc), and (6) whether to warn if this
597 variant is used (this is sometimes needed if .set nomacro or .set
598 noat is in effect). All these numbers are reasonably small.
599
600 Generating two instruction sequences must be handled carefully to
601 ensure that delay slots are handled correctly. Fortunately, there
602 are a limited number of cases. When the second instruction
603 sequence is generated, append_insn is directed to maintain the
604 existing delay slot information, so it continues to apply to any
605 code after the second instruction sequence. This means that the
606 second instruction sequence must not impose any requirements not
607 required by the first instruction sequence.
608
609 These variant frags are then handled in functions called by the
610 machine independent code. md_estimate_size_before_relax returns
611 the final size of the frag. md_convert_frag sets up the final form
612 of the frag. tc_gen_reloc adjust the first reloc and adds a second
613 one if needed. */
614#define RELAX_ENCODE(old, new, reloc1, reloc2, reloc3, warn) \
615 ((relax_substateT) \
616 (((old) << 23) \
617 | ((new) << 16) \
618 | (((reloc1) + 64) << 9) \
619 | (((reloc2) + 64) << 2) \
620 | ((reloc3) ? (1 << 1) : 0) \
621 | ((warn) ? 1 : 0)))
622#define RELAX_OLD(i) (((i) >> 23) & 0x7f)
623#define RELAX_NEW(i) (((i) >> 16) & 0x7f)
9a41af64
TS
624#define RELAX_RELOC1(i) ((valueT) (((i) >> 9) & 0x7f) - 64)
625#define RELAX_RELOC2(i) ((valueT) (((i) >> 2) & 0x7f) - 64)
252b5132
RH
626#define RELAX_RELOC3(i) (((i) >> 1) & 1)
627#define RELAX_WARN(i) ((i) & 1)
628
629/* For mips16 code, we use an entirely different form of relaxation.
630 mips16 supports two versions of most instructions which take
631 immediate values: a small one which takes some small value, and a
632 larger one which takes a 16 bit value. Since branches also follow
633 this pattern, relaxing these values is required.
634
635 We can assemble both mips16 and normal MIPS code in a single
636 object. Therefore, we need to support this type of relaxation at
637 the same time that we support the relaxation described above. We
638 use the high bit of the subtype field to distinguish these cases.
639
640 The information we store for this type of relaxation is the
641 argument code found in the opcode file for this relocation, whether
642 the user explicitly requested a small or extended form, and whether
643 the relocation is in a jump or jal delay slot. That tells us the
644 size of the value, and how it should be stored. We also store
645 whether the fragment is considered to be extended or not. We also
646 store whether this is known to be a branch to a different section,
647 whether we have tried to relax this frag yet, and whether we have
648 ever extended a PC relative fragment because of a shift count. */
649#define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
650 (0x80000000 \
651 | ((type) & 0xff) \
652 | ((small) ? 0x100 : 0) \
653 | ((ext) ? 0x200 : 0) \
654 | ((dslot) ? 0x400 : 0) \
655 | ((jal_dslot) ? 0x800 : 0))
656#define RELAX_MIPS16_P(i) (((i) & 0x80000000) != 0)
657#define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
658#define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
659#define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
660#define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
661#define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
662#define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
663#define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
664#define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
665#define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
666#define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
667#define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
668\f
669/* Prototypes for static functions. */
670
671#ifdef __STDC__
672#define internalError() \
673 as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__)
674#else
675#define internalError() as_fatal (_("MIPS internal Error"));
676#endif
677
678enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
679
680static int insn_uses_reg PARAMS ((struct mips_cl_insn *ip,
681 unsigned int reg, enum mips_regclass class));
156c2f8b 682static int reg_needs_delay PARAMS ((unsigned int));
252b5132
RH
683static void mips16_mark_labels PARAMS ((void));
684static void append_insn PARAMS ((char *place,
685 struct mips_cl_insn * ip,
686 expressionS * p,
f6688943 687 bfd_reloc_code_real_type *r,
252b5132
RH
688 boolean));
689static void mips_no_prev_insn PARAMS ((int));
690static void mips_emit_delays PARAMS ((boolean));
691#ifdef USE_STDARG
692static void macro_build PARAMS ((char *place, int *counter, expressionS * ep,
693 const char *name, const char *fmt,
694 ...));
695#else
696static void macro_build ();
697#endif
698static void mips16_macro_build PARAMS ((char *, int *, expressionS *,
699 const char *, const char *,
700 va_list));
438c16b8 701static void macro_build_jalr PARAMS ((int, expressionS *));
252b5132
RH
702static void macro_build_lui PARAMS ((char *place, int *counter,
703 expressionS * ep, int regnum));
704static void set_at PARAMS ((int *counter, int reg, int unsignedp));
705static void check_absolute_expr PARAMS ((struct mips_cl_insn * ip,
706 expressionS *));
707static void load_register PARAMS ((int *, int, expressionS *, int));
c9914766 708static void load_address PARAMS ((int *, int, expressionS *, int *));
ea1fb5dc 709static void move_register PARAMS ((int *, int, int));
252b5132
RH
710static void macro PARAMS ((struct mips_cl_insn * ip));
711static void mips16_macro PARAMS ((struct mips_cl_insn * ip));
712#ifdef LOSING_COMPILER
713static void macro2 PARAMS ((struct mips_cl_insn * ip));
714#endif
715static void mips_ip PARAMS ((char *str, struct mips_cl_insn * ip));
716static void mips16_ip PARAMS ((char *str, struct mips_cl_insn * ip));
717static void mips16_immed PARAMS ((char *, unsigned int, int, offsetT, boolean,
718 boolean, boolean, unsigned long *,
719 boolean *, unsigned short *));
394f9b3a 720static int my_getPercentOp PARAMS ((char **, unsigned int *, int *));
ad8d3bb3
TS
721static int my_getSmallParser PARAMS ((char **, unsigned int *, int *));
722static int my_getSmallExpression PARAMS ((expressionS *, char *));
723static void my_getExpression PARAMS ((expressionS *, char *));
ae948b86 724#ifdef OBJ_ELF
e013f690 725static int support_64bit_objects PARAMS((void));
ae948b86 726#endif
316f5878 727static void mips_set_option_string PARAMS ((const char **, const char *));
252b5132
RH
728static symbolS *get_symbol PARAMS ((void));
729static void mips_align PARAMS ((int to, int fill, symbolS *label));
730static void s_align PARAMS ((int));
731static void s_change_sec PARAMS ((int));
cca86cc8 732static void s_change_section PARAMS ((int));
252b5132
RH
733static void s_cons PARAMS ((int));
734static void s_float_cons PARAMS ((int));
735static void s_mips_globl PARAMS ((int));
736static void s_option PARAMS ((int));
737static void s_mipsset PARAMS ((int));
738static void s_abicalls PARAMS ((int));
739static void s_cpload PARAMS ((int));
6478892d
TS
740static void s_cpsetup PARAMS ((int));
741static void s_cplocal PARAMS ((int));
252b5132 742static void s_cprestore PARAMS ((int));
6478892d
TS
743static void s_cpreturn PARAMS ((int));
744static void s_gpvalue PARAMS ((int));
252b5132
RH
745static void s_gpword PARAMS ((int));
746static void s_cpadd PARAMS ((int));
747static void s_insn PARAMS ((int));
748static void md_obj_begin PARAMS ((void));
749static void md_obj_end PARAMS ((void));
750static long get_number PARAMS ((void));
751static void s_mips_ent PARAMS ((int));
752static void s_mips_end PARAMS ((int));
753static void s_mips_frame PARAMS ((int));
754static void s_mips_mask PARAMS ((int));
755static void s_mips_stab PARAMS ((int));
756static void s_mips_weakext PARAMS ((int));
c5dd6aab
DJ
757static void s_mips_file PARAMS ((int));
758static void s_mips_loc PARAMS ((int));
252b5132 759static int mips16_extended_frag PARAMS ((fragS *, asection *, long));
252b5132 760static int validate_mips_insn PARAMS ((const struct mips_opcode *));
316f5878 761static void show PARAMS ((FILE *, const char *, int *, int *));
add55e1f
RS
762#ifdef OBJ_ELF
763static int mips_need_elf_addend_fixup PARAMS ((fixS *));
764#endif
e7af610e 765
ad8d3bb3 766/* Return values of my_getSmallExpression(). */
fb1b3232 767
ad8d3bb3 768enum small_ex_type
fb1b3232
TS
769{
770 S_EX_NONE = 0,
ad8d3bb3
TS
771 S_EX_REGISTER,
772
773 /* Direct relocation creation by %percent_op(). */
774 S_EX_HALF,
fb1b3232 775 S_EX_HI,
ad8d3bb3
TS
776 S_EX_LO,
777 S_EX_GP_REL,
778 S_EX_GOT,
779 S_EX_CALL16,
780 S_EX_GOT_DISP,
781 S_EX_GOT_PAGE,
782 S_EX_GOT_OFST,
783 S_EX_GOT_HI,
784 S_EX_GOT_LO,
785 S_EX_NEG,
fb1b3232
TS
786 S_EX_HIGHER,
787 S_EX_HIGHEST,
ad8d3bb3
TS
788 S_EX_CALL_HI,
789 S_EX_CALL_LO
fb1b3232
TS
790};
791
e7af610e
NC
792/* Table and functions used to map between CPU/ISA names, and
793 ISA levels, and CPU numbers. */
794
e972090a
NC
795struct mips_cpu_info
796{
e7af610e
NC
797 const char *name; /* CPU or ISA name. */
798 int is_isa; /* Is this an ISA? (If 0, a CPU.) */
799 int isa; /* ISA level. */
800 int cpu; /* CPU number (default CPU if ISA). */
801};
802
316f5878
RS
803static void mips_set_architecture PARAMS ((const struct mips_cpu_info *));
804static void mips_set_tune PARAMS ((const struct mips_cpu_info *));
805static boolean mips_strict_matching_cpu_name_p PARAMS ((const char *,
806 const char *));
807static boolean mips_matching_cpu_name_p PARAMS ((const char *, const char *));
808static const struct mips_cpu_info *mips_parse_cpu PARAMS ((const char *,
809 const char *));
e7af610e 810static const struct mips_cpu_info *mips_cpu_info_from_isa PARAMS ((int));
252b5132
RH
811\f
812/* Pseudo-op table.
813
814 The following pseudo-ops from the Kane and Heinrich MIPS book
815 should be defined here, but are currently unsupported: .alias,
816 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
817
818 The following pseudo-ops from the Kane and Heinrich MIPS book are
819 specific to the type of debugging information being generated, and
820 should be defined by the object format: .aent, .begin, .bend,
821 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
822 .vreg.
823
824 The following pseudo-ops from the Kane and Heinrich MIPS book are
825 not MIPS CPU specific, but are also not specific to the object file
826 format. This file is probably the best place to define them, but
827 they are not currently supported: .asm0, .endr, .lab, .repeat,
828 .struct. */
829
e972090a
NC
830static const pseudo_typeS mips_pseudo_table[] =
831{
beae10d5 832 /* MIPS specific pseudo-ops. */
252b5132
RH
833 {"option", s_option, 0},
834 {"set", s_mipsset, 0},
835 {"rdata", s_change_sec, 'r'},
836 {"sdata", s_change_sec, 's'},
837 {"livereg", s_ignore, 0},
838 {"abicalls", s_abicalls, 0},
839 {"cpload", s_cpload, 0},
6478892d
TS
840 {"cpsetup", s_cpsetup, 0},
841 {"cplocal", s_cplocal, 0},
252b5132 842 {"cprestore", s_cprestore, 0},
6478892d
TS
843 {"cpreturn", s_cpreturn, 0},
844 {"gpvalue", s_gpvalue, 0},
252b5132
RH
845 {"gpword", s_gpword, 0},
846 {"cpadd", s_cpadd, 0},
847 {"insn", s_insn, 0},
848
beae10d5 849 /* Relatively generic pseudo-ops that happen to be used on MIPS
252b5132
RH
850 chips. */
851 {"asciiz", stringer, 1},
852 {"bss", s_change_sec, 'b'},
853 {"err", s_err, 0},
854 {"half", s_cons, 1},
855 {"dword", s_cons, 3},
856 {"weakext", s_mips_weakext, 0},
857
beae10d5 858 /* These pseudo-ops are defined in read.c, but must be overridden
252b5132
RH
859 here for one reason or another. */
860 {"align", s_align, 0},
861 {"byte", s_cons, 0},
862 {"data", s_change_sec, 'd'},
863 {"double", s_float_cons, 'd'},
864 {"float", s_float_cons, 'f'},
865 {"globl", s_mips_globl, 0},
866 {"global", s_mips_globl, 0},
867 {"hword", s_cons, 1},
868 {"int", s_cons, 2},
869 {"long", s_cons, 2},
870 {"octa", s_cons, 4},
871 {"quad", s_cons, 3},
cca86cc8 872 {"section", s_change_section, 0},
252b5132
RH
873 {"short", s_cons, 1},
874 {"single", s_float_cons, 'f'},
875 {"stabn", s_mips_stab, 'n'},
876 {"text", s_change_sec, 't'},
877 {"word", s_cons, 2},
add56521 878
add56521 879 { "extern", ecoff_directive_extern, 0},
add56521 880
43841e91 881 { NULL, NULL, 0 },
252b5132
RH
882};
883
e972090a
NC
884static const pseudo_typeS mips_nonecoff_pseudo_table[] =
885{
beae10d5
KH
886 /* These pseudo-ops should be defined by the object file format.
887 However, a.out doesn't support them, so we have versions here. */
252b5132
RH
888 {"aent", s_mips_ent, 1},
889 {"bgnb", s_ignore, 0},
890 {"end", s_mips_end, 0},
891 {"endb", s_ignore, 0},
892 {"ent", s_mips_ent, 0},
c5dd6aab 893 {"file", s_mips_file, 0},
252b5132
RH
894 {"fmask", s_mips_mask, 'F'},
895 {"frame", s_mips_frame, 0},
c5dd6aab 896 {"loc", s_mips_loc, 0},
252b5132
RH
897 {"mask", s_mips_mask, 'R'},
898 {"verstamp", s_ignore, 0},
43841e91 899 { NULL, NULL, 0 },
252b5132
RH
900};
901
902extern void pop_insert PARAMS ((const pseudo_typeS *));
903
904void
905mips_pop_insert ()
906{
907 pop_insert (mips_pseudo_table);
908 if (! ECOFF_DEBUGGING)
909 pop_insert (mips_nonecoff_pseudo_table);
910}
911\f
912/* Symbols labelling the current insn. */
913
e972090a
NC
914struct insn_label_list
915{
252b5132
RH
916 struct insn_label_list *next;
917 symbolS *label;
918};
919
920static struct insn_label_list *insn_labels;
921static struct insn_label_list *free_insn_labels;
922
923static void mips_clear_insn_labels PARAMS ((void));
924
925static inline void
926mips_clear_insn_labels ()
927{
928 register struct insn_label_list **pl;
929
930 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
931 ;
932 *pl = insn_labels;
933 insn_labels = NULL;
934}
935\f
936static char *expr_end;
937
938/* Expressions which appear in instructions. These are set by
939 mips_ip. */
940
941static expressionS imm_expr;
942static expressionS offset_expr;
943
944/* Relocs associated with imm_expr and offset_expr. */
945
f6688943
TS
946static bfd_reloc_code_real_type imm_reloc[3]
947 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
948static bfd_reloc_code_real_type offset_reloc[3]
949 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132
RH
950
951/* This is set by mips_ip if imm_reloc is an unmatched HI16_S reloc. */
952
953static boolean imm_unmatched_hi;
954
955/* These are set by mips16_ip if an explicit extension is used. */
956
957static boolean mips16_small, mips16_ext;
958
7ed4a06a 959#ifdef OBJ_ELF
ecb4347a
DJ
960/* The pdr segment for per procedure frame/regmask info. Not used for
961 ECOFF debugging. */
252b5132
RH
962
963static segT pdr_seg;
7ed4a06a 964#endif
252b5132 965
e013f690
TS
966/* The default target format to use. */
967
968const char *
969mips_target_format ()
970{
971 switch (OUTPUT_FLAVOR)
972 {
973 case bfd_target_aout_flavour:
974 return target_big_endian ? "a.out-mips-big" : "a.out-mips-little";
975 case bfd_target_ecoff_flavour:
976 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
977 case bfd_target_coff_flavour:
978 return "pe-mips";
979 case bfd_target_elf_flavour:
980#ifdef TE_TMIPS
cfe86eaa 981 /* This is traditional mips. */
e013f690 982 return (target_big_endian
cfe86eaa
TS
983 ? (HAVE_64BIT_OBJECTS
984 ? "elf64-tradbigmips"
985 : (HAVE_NEWABI
986 ? "elf32-ntradbigmips" : "elf32-tradbigmips"))
987 : (HAVE_64BIT_OBJECTS
988 ? "elf64-tradlittlemips"
989 : (HAVE_NEWABI
990 ? "elf32-ntradlittlemips" : "elf32-tradlittlemips")));
e013f690
TS
991#else
992 return (target_big_endian
cfe86eaa
TS
993 ? (HAVE_64BIT_OBJECTS
994 ? "elf64-bigmips"
995 : (HAVE_NEWABI
996 ? "elf32-nbigmips" : "elf32-bigmips"))
997 : (HAVE_64BIT_OBJECTS
998 ? "elf64-littlemips"
999 : (HAVE_NEWABI
1000 ? "elf32-nlittlemips" : "elf32-littlemips")));
e013f690
TS
1001#endif
1002 default:
1003 abort ();
1004 return NULL;
1005 }
1006}
1007
156c2f8b
NC
1008/* This function is called once, at assembler startup time. It should
1009 set up all the tables, etc. that the MD part of the assembler will need. */
1010
252b5132
RH
1011void
1012md_begin ()
1013{
252b5132 1014 register const char *retval = NULL;
156c2f8b 1015 int i = 0;
252b5132 1016 int broken = 0;
1f25f5d3 1017
ec68c924 1018 if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, mips_arch))
252b5132
RH
1019 as_warn (_("Could not set architecture and machine"));
1020
252b5132
RH
1021 op_hash = hash_new ();
1022
1023 for (i = 0; i < NUMOPCODES;)
1024 {
1025 const char *name = mips_opcodes[i].name;
1026
1027 retval = hash_insert (op_hash, name, (PTR) &mips_opcodes[i]);
1028 if (retval != NULL)
1029 {
1030 fprintf (stderr, _("internal error: can't hash `%s': %s\n"),
1031 mips_opcodes[i].name, retval);
1032 /* Probably a memory allocation problem? Give up now. */
1033 as_fatal (_("Broken assembler. No assembly attempted."));
1034 }
1035 do
1036 {
1037 if (mips_opcodes[i].pinfo != INSN_MACRO)
1038 {
1039 if (!validate_mips_insn (&mips_opcodes[i]))
1040 broken = 1;
1041 }
1042 ++i;
1043 }
1044 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1045 }
1046
1047 mips16_op_hash = hash_new ();
1048
1049 i = 0;
1050 while (i < bfd_mips16_num_opcodes)
1051 {
1052 const char *name = mips16_opcodes[i].name;
1053
1054 retval = hash_insert (mips16_op_hash, name, (PTR) &mips16_opcodes[i]);
1055 if (retval != NULL)
1056 as_fatal (_("internal: can't hash `%s': %s"),
1057 mips16_opcodes[i].name, retval);
1058 do
1059 {
1060 if (mips16_opcodes[i].pinfo != INSN_MACRO
1061 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1062 != mips16_opcodes[i].match))
1063 {
1064 fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"),
1065 mips16_opcodes[i].name, mips16_opcodes[i].args);
1066 broken = 1;
1067 }
1068 ++i;
1069 }
1070 while (i < bfd_mips16_num_opcodes
1071 && strcmp (mips16_opcodes[i].name, name) == 0);
1072 }
1073
1074 if (broken)
1075 as_fatal (_("Broken assembler. No assembly attempted."));
1076
1077 /* We add all the general register names to the symbol table. This
1078 helps us detect invalid uses of them. */
1079 for (i = 0; i < 32; i++)
1080 {
1081 char buf[5];
1082
1083 sprintf (buf, "$%d", i);
1084 symbol_table_insert (symbol_new (buf, reg_section, i,
1085 &zero_address_frag));
1086 }
76db943d
TS
1087 symbol_table_insert (symbol_new ("$ra", reg_section, RA,
1088 &zero_address_frag));
252b5132
RH
1089 symbol_table_insert (symbol_new ("$fp", reg_section, FP,
1090 &zero_address_frag));
1091 symbol_table_insert (symbol_new ("$sp", reg_section, SP,
1092 &zero_address_frag));
1093 symbol_table_insert (symbol_new ("$gp", reg_section, GP,
1094 &zero_address_frag));
1095 symbol_table_insert (symbol_new ("$at", reg_section, AT,
1096 &zero_address_frag));
1097 symbol_table_insert (symbol_new ("$kt0", reg_section, KT0,
1098 &zero_address_frag));
1099 symbol_table_insert (symbol_new ("$kt1", reg_section, KT1,
1100 &zero_address_frag));
85b51719
TS
1101 symbol_table_insert (symbol_new ("$zero", reg_section, ZERO,
1102 &zero_address_frag));
252b5132
RH
1103 symbol_table_insert (symbol_new ("$pc", reg_section, -1,
1104 &zero_address_frag));
1105
1106 mips_no_prev_insn (false);
1107
1108 mips_gprmask = 0;
1109 mips_cprmask[0] = 0;
1110 mips_cprmask[1] = 0;
1111 mips_cprmask[2] = 0;
1112 mips_cprmask[3] = 0;
1113
1114 /* set the default alignment for the text section (2**2) */
1115 record_alignment (text_section, 2);
1116
1117 if (USE_GLOBAL_POINTER_OPT)
1118 bfd_set_gp_size (stdoutput, g_switch_value);
1119
1120 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1121 {
1122 /* On a native system, sections must be aligned to 16 byte
1123 boundaries. When configured for an embedded ELF target, we
1124 don't bother. */
1125 if (strcmp (TARGET_OS, "elf") != 0)
1126 {
1127 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
1128 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
1129 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
1130 }
1131
1132 /* Create a .reginfo section for register masks and a .mdebug
1133 section for debugging information. */
1134 {
1135 segT seg;
1136 subsegT subseg;
1137 flagword flags;
1138 segT sec;
1139
1140 seg = now_seg;
1141 subseg = now_subseg;
1142
1143 /* The ABI says this section should be loaded so that the
1144 running program can access it. However, we don't load it
1145 if we are configured for an embedded target */
1146 flags = SEC_READONLY | SEC_DATA;
1147 if (strcmp (TARGET_OS, "elf") != 0)
1148 flags |= SEC_ALLOC | SEC_LOAD;
1149
316f5878 1150 if (mips_abi != N64_ABI)
252b5132
RH
1151 {
1152 sec = subseg_new (".reginfo", (subsegT) 0);
1153
195325d2
TS
1154 bfd_set_section_flags (stdoutput, sec, flags);
1155 bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2);
bdaaa2e1 1156
252b5132
RH
1157#ifdef OBJ_ELF
1158 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
1159#endif
1160 }
1161 else
1162 {
1163 /* The 64-bit ABI uses a .MIPS.options section rather than
1164 .reginfo section. */
1165 sec = subseg_new (".MIPS.options", (subsegT) 0);
195325d2
TS
1166 bfd_set_section_flags (stdoutput, sec, flags);
1167 bfd_set_section_alignment (stdoutput, sec, 3);
252b5132
RH
1168
1169#ifdef OBJ_ELF
1170 /* Set up the option header. */
1171 {
1172 Elf_Internal_Options opthdr;
1173 char *f;
1174
1175 opthdr.kind = ODK_REGINFO;
1176 opthdr.size = (sizeof (Elf_External_Options)
1177 + sizeof (Elf64_External_RegInfo));
1178 opthdr.section = 0;
1179 opthdr.info = 0;
1180 f = frag_more (sizeof (Elf_External_Options));
1181 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
1182 (Elf_External_Options *) f);
1183
1184 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
1185 }
1186#endif
1187 }
1188
1189 if (ECOFF_DEBUGGING)
1190 {
1191 sec = subseg_new (".mdebug", (subsegT) 0);
1192 (void) bfd_set_section_flags (stdoutput, sec,
1193 SEC_HAS_CONTENTS | SEC_READONLY);
1194 (void) bfd_set_section_alignment (stdoutput, sec, 2);
1195 }
ecb4347a
DJ
1196#ifdef OBJ_ELF
1197 else if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1198 {
1199 pdr_seg = subseg_new (".pdr", (subsegT) 0);
1200 (void) bfd_set_section_flags (stdoutput, pdr_seg,
1201 SEC_READONLY | SEC_RELOC
1202 | SEC_DEBUGGING);
1203 (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2);
1204 }
252b5132
RH
1205#endif
1206
1207 subseg_set (seg, subseg);
1208 }
1209 }
1210
1211 if (! ECOFF_DEBUGGING)
1212 md_obj_begin ();
1213}
1214
1215void
1216md_mips_end ()
1217{
1218 if (! ECOFF_DEBUGGING)
1219 md_obj_end ();
1220}
1221
1222void
1223md_assemble (str)
1224 char *str;
1225{
1226 struct mips_cl_insn insn;
f6688943
TS
1227 bfd_reloc_code_real_type unused_reloc[3]
1228 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132
RH
1229
1230 imm_expr.X_op = O_absent;
252b5132
RH
1231 imm_unmatched_hi = false;
1232 offset_expr.X_op = O_absent;
f6688943
TS
1233 imm_reloc[0] = BFD_RELOC_UNUSED;
1234 imm_reloc[1] = BFD_RELOC_UNUSED;
1235 imm_reloc[2] = BFD_RELOC_UNUSED;
1236 offset_reloc[0] = BFD_RELOC_UNUSED;
1237 offset_reloc[1] = BFD_RELOC_UNUSED;
1238 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
1239
1240 if (mips_opts.mips16)
1241 mips16_ip (str, &insn);
1242 else
1243 {
1244 mips_ip (str, &insn);
beae10d5
KH
1245 DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"),
1246 str, insn.insn_opcode));
252b5132
RH
1247 }
1248
1249 if (insn_error)
1250 {
1251 as_bad ("%s `%s'", insn_error, str);
1252 return;
1253 }
1254
1255 if (insn.insn_mo->pinfo == INSN_MACRO)
1256 {
1257 if (mips_opts.mips16)
1258 mips16_macro (&insn);
1259 else
1260 macro (&insn);
1261 }
1262 else
1263 {
1264 if (imm_expr.X_op != O_absent)
c4e7957c 1265 append_insn (NULL, &insn, &imm_expr, imm_reloc, imm_unmatched_hi);
252b5132 1266 else if (offset_expr.X_op != O_absent)
c4e7957c 1267 append_insn (NULL, &insn, &offset_expr, offset_reloc, false);
252b5132 1268 else
c4e7957c 1269 append_insn (NULL, &insn, NULL, unused_reloc, false);
252b5132
RH
1270 }
1271}
1272
1273/* See whether instruction IP reads register REG. CLASS is the type
1274 of register. */
1275
1276static int
1277insn_uses_reg (ip, reg, class)
1278 struct mips_cl_insn *ip;
1279 unsigned int reg;
1280 enum mips_regclass class;
1281{
1282 if (class == MIPS16_REG)
1283 {
1284 assert (mips_opts.mips16);
1285 reg = mips16_to_32_reg_map[reg];
1286 class = MIPS_GR_REG;
1287 }
1288
85b51719
TS
1289 /* Don't report on general register ZERO, since it never changes. */
1290 if (class == MIPS_GR_REG && reg == ZERO)
252b5132
RH
1291 return 0;
1292
1293 if (class == MIPS_FP_REG)
1294 {
1295 assert (! mips_opts.mips16);
1296 /* If we are called with either $f0 or $f1, we must check $f0.
1297 This is not optimal, because it will introduce an unnecessary
1298 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
1299 need to distinguish reading both $f0 and $f1 or just one of
1300 them. Note that we don't have to check the other way,
1301 because there is no instruction that sets both $f0 and $f1
1302 and requires a delay. */
1303 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
1304 && ((((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS) &~(unsigned)1)
1305 == (reg &~ (unsigned) 1)))
1306 return 1;
1307 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
1308 && ((((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT) &~(unsigned)1)
1309 == (reg &~ (unsigned) 1)))
1310 return 1;
1311 }
1312 else if (! mips_opts.mips16)
1313 {
1314 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
1315 && ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == reg)
1316 return 1;
1317 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
1318 && ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT) == reg)
1319 return 1;
1320 }
1321 else
1322 {
1323 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
1324 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RX)
1325 & MIPS16OP_MASK_RX)]
1326 == reg))
1327 return 1;
1328 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
1329 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RY)
1330 & MIPS16OP_MASK_RY)]
1331 == reg))
1332 return 1;
1333 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
1334 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
1335 & MIPS16OP_MASK_MOVE32Z)]
1336 == reg))
1337 return 1;
1338 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
1339 return 1;
1340 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
1341 return 1;
1342 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
1343 return 1;
1344 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
1345 && ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
1346 & MIPS16OP_MASK_REGR32) == reg)
1347 return 1;
1348 }
1349
1350 return 0;
1351}
1352
1353/* This function returns true if modifying a register requires a
1354 delay. */
1355
1356static int
1357reg_needs_delay (reg)
156c2f8b 1358 unsigned int reg;
252b5132
RH
1359{
1360 unsigned long prev_pinfo;
1361
1362 prev_pinfo = prev_insn.insn_mo->pinfo;
1363 if (! mips_opts.noreorder
9ce8a5dd 1364 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
1365 && ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1366 || (! gpr_interlocks
1367 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))))
1368 {
1369 /* A load from a coprocessor or from memory. All load
1370 delays delay the use of general register rt for one
1371 instruction on the r3000. The r6000 and r4000 use
1372 interlocks. */
bdaaa2e1 1373 /* Itbl support may require additional care here. */
252b5132
RH
1374 know (prev_pinfo & INSN_WRITE_GPR_T);
1375 if (reg == ((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT))
1376 return 1;
1377 }
1378
1379 return 0;
1380}
1381
1382/* Mark instruction labels in mips16 mode. This permits the linker to
1383 handle them specially, such as generating jalx instructions when
1384 needed. We also make them odd for the duration of the assembly, in
1385 order to generate the right sort of code. We will make them even
1386 in the adjust_symtab routine, while leaving them marked. This is
1387 convenient for the debugger and the disassembler. The linker knows
1388 to make them odd again. */
1389
1390static void
1391mips16_mark_labels ()
1392{
1393 if (mips_opts.mips16)
1394 {
1395 struct insn_label_list *l;
98aa84af 1396 valueT val;
252b5132
RH
1397
1398 for (l = insn_labels; l != NULL; l = l->next)
1399 {
1400#ifdef OBJ_ELF
1401 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1402 S_SET_OTHER (l->label, STO_MIPS16);
1403#endif
98aa84af
AM
1404 val = S_GET_VALUE (l->label);
1405 if ((val & 1) == 0)
1406 S_SET_VALUE (l->label, val + 1);
252b5132
RH
1407 }
1408 }
1409}
1410
1411/* Output an instruction. PLACE is where to put the instruction; if
1412 it is NULL, this uses frag_more to get room. IP is the instruction
1413 information. ADDRESS_EXPR is an operand of the instruction to be
1414 used with RELOC_TYPE. */
1415
1416static void
1417append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
1418 char *place;
1419 struct mips_cl_insn *ip;
1420 expressionS *address_expr;
f6688943 1421 bfd_reloc_code_real_type *reloc_type;
252b5132
RH
1422 boolean unmatched_hi;
1423{
1424 register unsigned long prev_pinfo, pinfo;
1425 char *f;
f6688943 1426 fixS *fixp[3];
252b5132
RH
1427 int nops = 0;
1428
1429 /* Mark instruction labels in mips16 mode. */
f9419b05 1430 mips16_mark_labels ();
252b5132
RH
1431
1432 prev_pinfo = prev_insn.insn_mo->pinfo;
1433 pinfo = ip->insn_mo->pinfo;
1434
1435 if (place == NULL && (! mips_opts.noreorder || prev_nop_frag != NULL))
1436 {
1437 int prev_prev_nop;
1438
1439 /* If the previous insn required any delay slots, see if we need
1440 to insert a NOP or two. There are eight kinds of possible
1441 hazards, of which an instruction can have at most one type.
1442 (1) a load from memory delay
1443 (2) a load from a coprocessor delay
1444 (3) an unconditional branch delay
1445 (4) a conditional branch delay
1446 (5) a move to coprocessor register delay
1447 (6) a load coprocessor register from memory delay
1448 (7) a coprocessor condition code delay
1449 (8) a HI/LO special register delay
1450
1451 There are a lot of optimizations we could do that we don't.
1452 In particular, we do not, in general, reorder instructions.
1453 If you use gcc with optimization, it will reorder
1454 instructions and generally do much more optimization then we
1455 do here; repeating all that work in the assembler would only
1456 benefit hand written assembly code, and does not seem worth
1457 it. */
1458
1459 /* This is how a NOP is emitted. */
1460#define emit_nop() \
1461 (mips_opts.mips16 \
1462 ? md_number_to_chars (frag_more (2), 0x6500, 2) \
1463 : md_number_to_chars (frag_more (4), 0, 4))
1464
1465 /* The previous insn might require a delay slot, depending upon
1466 the contents of the current insn. */
1467 if (! mips_opts.mips16
9ce8a5dd 1468 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
1469 && (((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1470 && ! cop_interlocks)
1471 || (! gpr_interlocks
1472 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))))
1473 {
1474 /* A load from a coprocessor or from memory. All load
1475 delays delay the use of general register rt for one
1476 instruction on the r3000. The r6000 and r4000 use
1477 interlocks. */
beae10d5 1478 /* Itbl support may require additional care here. */
252b5132
RH
1479 know (prev_pinfo & INSN_WRITE_GPR_T);
1480 if (mips_optimize == 0
1481 || insn_uses_reg (ip,
1482 ((prev_insn.insn_opcode >> OP_SH_RT)
1483 & OP_MASK_RT),
1484 MIPS_GR_REG))
1485 ++nops;
1486 }
1487 else if (! mips_opts.mips16
9ce8a5dd 1488 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132 1489 && (((prev_pinfo & INSN_COPROC_MOVE_DELAY)
beae10d5 1490 && ! cop_interlocks)
e7af610e 1491 || (mips_opts.isa == ISA_MIPS1
252b5132
RH
1492 && (prev_pinfo & INSN_COPROC_MEMORY_DELAY))))
1493 {
1494 /* A generic coprocessor delay. The previous instruction
1495 modified a coprocessor general or control register. If
1496 it modified a control register, we need to avoid any
1497 coprocessor instruction (this is probably not always
1498 required, but it sometimes is). If it modified a general
1499 register, we avoid using that register.
1500
1501 On the r6000 and r4000 loading a coprocessor register
1502 from memory is interlocked, and does not require a delay.
1503
1504 This case is not handled very well. There is no special
1505 knowledge of CP0 handling, and the coprocessors other
1506 than the floating point unit are not distinguished at
1507 all. */
1508 /* Itbl support may require additional care here. FIXME!
bdaaa2e1 1509 Need to modify this to include knowledge about
252b5132
RH
1510 user specified delays! */
1511 if (prev_pinfo & INSN_WRITE_FPR_T)
1512 {
1513 if (mips_optimize == 0
1514 || insn_uses_reg (ip,
1515 ((prev_insn.insn_opcode >> OP_SH_FT)
1516 & OP_MASK_FT),
1517 MIPS_FP_REG))
1518 ++nops;
1519 }
1520 else if (prev_pinfo & INSN_WRITE_FPR_S)
1521 {
1522 if (mips_optimize == 0
1523 || insn_uses_reg (ip,
1524 ((prev_insn.insn_opcode >> OP_SH_FS)
1525 & OP_MASK_FS),
1526 MIPS_FP_REG))
1527 ++nops;
1528 }
1529 else
1530 {
1531 /* We don't know exactly what the previous instruction
1532 does. If the current instruction uses a coprocessor
1533 register, we must insert a NOP. If previous
1534 instruction may set the condition codes, and the
1535 current instruction uses them, we must insert two
1536 NOPS. */
bdaaa2e1 1537 /* Itbl support may require additional care here. */
252b5132
RH
1538 if (mips_optimize == 0
1539 || ((prev_pinfo & INSN_WRITE_COND_CODE)
1540 && (pinfo & INSN_READ_COND_CODE)))
1541 nops += 2;
1542 else if (pinfo & INSN_COP)
1543 ++nops;
1544 }
1545 }
1546 else if (! mips_opts.mips16
9ce8a5dd 1547 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
1548 && (prev_pinfo & INSN_WRITE_COND_CODE)
1549 && ! cop_interlocks)
1550 {
1551 /* The previous instruction sets the coprocessor condition
1552 codes, but does not require a general coprocessor delay
1553 (this means it is a floating point comparison
1554 instruction). If this instruction uses the condition
1555 codes, we need to insert a single NOP. */
beae10d5 1556 /* Itbl support may require additional care here. */
252b5132
RH
1557 if (mips_optimize == 0
1558 || (pinfo & INSN_READ_COND_CODE))
1559 ++nops;
1560 }
6b76fefe
CM
1561
1562 /* If we're fixing up mfhi/mflo for the r7000 and the
1563 previous insn was an mfhi/mflo and the current insn
1564 reads the register that the mfhi/mflo wrote to, then
1565 insert two nops. */
1566
1567 else if (mips_7000_hilo_fix
1568 && MF_HILO_INSN (prev_pinfo)
1569 && insn_uses_reg (ip, ((prev_insn.insn_opcode >> OP_SH_RD)
beae10d5
KH
1570 & OP_MASK_RD),
1571 MIPS_GR_REG))
6b76fefe
CM
1572 {
1573 nops += 2;
1574 }
1575
1576 /* If we're fixing up mfhi/mflo for the r7000 and the
1577 2nd previous insn was an mfhi/mflo and the current insn
1578 reads the register that the mfhi/mflo wrote to, then
1579 insert one nop. */
1580
1581 else if (mips_7000_hilo_fix
1582 && MF_HILO_INSN (prev_prev_insn.insn_opcode)
1583 && insn_uses_reg (ip, ((prev_prev_insn.insn_opcode >> OP_SH_RD)
1584 & OP_MASK_RD),
1585 MIPS_GR_REG))
bdaaa2e1 1586
6b76fefe 1587 {
f9419b05 1588 ++nops;
6b76fefe 1589 }
bdaaa2e1 1590
252b5132
RH
1591 else if (prev_pinfo & INSN_READ_LO)
1592 {
1593 /* The previous instruction reads the LO register; if the
1594 current instruction writes to the LO register, we must
bdaaa2e1
KH
1595 insert two NOPS. Some newer processors have interlocks.
1596 Also the tx39's multiply instructions can be exectuted
252b5132 1597 immediatly after a read from HI/LO (without the delay),
bdaaa2e1
KH
1598 though the tx39's divide insns still do require the
1599 delay. */
252b5132 1600 if (! (hilo_interlocks
ec68c924 1601 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))
252b5132
RH
1602 && (mips_optimize == 0
1603 || (pinfo & INSN_WRITE_LO)))
1604 nops += 2;
1605 /* Most mips16 branch insns don't have a delay slot.
1606 If a read from LO is immediately followed by a branch
1607 to a write to LO we have a read followed by a write
1608 less than 2 insns away. We assume the target of
1609 a branch might be a write to LO, and insert a nop
bdaaa2e1 1610 between a read and an immediately following branch. */
252b5132
RH
1611 else if (mips_opts.mips16
1612 && (mips_optimize == 0
1613 || (pinfo & MIPS16_INSN_BRANCH)))
f9419b05 1614 ++nops;
252b5132
RH
1615 }
1616 else if (prev_insn.insn_mo->pinfo & INSN_READ_HI)
1617 {
1618 /* The previous instruction reads the HI register; if the
1619 current instruction writes to the HI register, we must
1620 insert a NOP. Some newer processors have interlocks.
bdaaa2e1 1621 Also the note tx39's multiply above. */
252b5132 1622 if (! (hilo_interlocks
ec68c924 1623 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))
252b5132
RH
1624 && (mips_optimize == 0
1625 || (pinfo & INSN_WRITE_HI)))
1626 nops += 2;
1627 /* Most mips16 branch insns don't have a delay slot.
1628 If a read from HI is immediately followed by a branch
1629 to a write to HI we have a read followed by a write
1630 less than 2 insns away. We assume the target of
1631 a branch might be a write to HI, and insert a nop
bdaaa2e1 1632 between a read and an immediately following branch. */
252b5132
RH
1633 else if (mips_opts.mips16
1634 && (mips_optimize == 0
1635 || (pinfo & MIPS16_INSN_BRANCH)))
f9419b05 1636 ++nops;
252b5132
RH
1637 }
1638
1639 /* If the previous instruction was in a noreorder section, then
1640 we don't want to insert the nop after all. */
bdaaa2e1 1641 /* Itbl support may require additional care here. */
252b5132
RH
1642 if (prev_insn_unreordered)
1643 nops = 0;
1644
1645 /* There are two cases which require two intervening
1646 instructions: 1) setting the condition codes using a move to
1647 coprocessor instruction which requires a general coprocessor
1648 delay and then reading the condition codes 2) reading the HI
1649 or LO register and then writing to it (except on processors
1650 which have interlocks). If we are not already emitting a NOP
1651 instruction, we must check for these cases compared to the
1652 instruction previous to the previous instruction. */
1653 if ((! mips_opts.mips16
9ce8a5dd 1654 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
1655 && (prev_prev_insn.insn_mo->pinfo & INSN_COPROC_MOVE_DELAY)
1656 && (prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE)
1657 && (pinfo & INSN_READ_COND_CODE)
1658 && ! cop_interlocks)
1659 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_LO)
1660 && (pinfo & INSN_WRITE_LO)
1661 && ! (hilo_interlocks
ec68c924 1662 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT))))
252b5132
RH
1663 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
1664 && (pinfo & INSN_WRITE_HI)
1665 && ! (hilo_interlocks
ec68c924 1666 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))))
252b5132
RH
1667 prev_prev_nop = 1;
1668 else
1669 prev_prev_nop = 0;
1670
1671 if (prev_prev_insn_unreordered)
1672 prev_prev_nop = 0;
1673
1674 if (prev_prev_nop && nops == 0)
1675 ++nops;
1676
1677 /* If we are being given a nop instruction, don't bother with
1678 one of the nops we would otherwise output. This will only
1679 happen when a nop instruction is used with mips_optimize set
1680 to 0. */
1681 if (nops > 0
1682 && ! mips_opts.noreorder
156c2f8b 1683 && ip->insn_opcode == (unsigned) (mips_opts.mips16 ? 0x6500 : 0))
252b5132
RH
1684 --nops;
1685
1686 /* Now emit the right number of NOP instructions. */
1687 if (nops > 0 && ! mips_opts.noreorder)
1688 {
1689 fragS *old_frag;
1690 unsigned long old_frag_offset;
1691 int i;
1692 struct insn_label_list *l;
1693
1694 old_frag = frag_now;
1695 old_frag_offset = frag_now_fix ();
1696
1697 for (i = 0; i < nops; i++)
1698 emit_nop ();
1699
1700 if (listing)
1701 {
1702 listing_prev_line ();
1703 /* We may be at the start of a variant frag. In case we
1704 are, make sure there is enough space for the frag
1705 after the frags created by listing_prev_line. The
1706 argument to frag_grow here must be at least as large
1707 as the argument to all other calls to frag_grow in
1708 this file. We don't have to worry about being in the
1709 middle of a variant frag, because the variants insert
1710 all needed nop instructions themselves. */
1711 frag_grow (40);
1712 }
1713
1714 for (l = insn_labels; l != NULL; l = l->next)
1715 {
98aa84af
AM
1716 valueT val;
1717
252b5132 1718 assert (S_GET_SEGMENT (l->label) == now_seg);
49309057 1719 symbol_set_frag (l->label, frag_now);
98aa84af 1720 val = (valueT) frag_now_fix ();
252b5132
RH
1721 /* mips16 text labels are stored as odd. */
1722 if (mips_opts.mips16)
f9419b05 1723 ++val;
98aa84af 1724 S_SET_VALUE (l->label, val);
252b5132
RH
1725 }
1726
1727#ifndef NO_ECOFF_DEBUGGING
1728 if (ECOFF_DEBUGGING)
1729 ecoff_fix_loc (old_frag, old_frag_offset);
1730#endif
1731 }
1732 else if (prev_nop_frag != NULL)
1733 {
1734 /* We have a frag holding nops we may be able to remove. If
1735 we don't need any nops, we can decrease the size of
1736 prev_nop_frag by the size of one instruction. If we do
bdaaa2e1 1737 need some nops, we count them in prev_nops_required. */
252b5132
RH
1738 if (prev_nop_frag_since == 0)
1739 {
1740 if (nops == 0)
1741 {
1742 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1743 --prev_nop_frag_holds;
1744 }
1745 else
1746 prev_nop_frag_required += nops;
1747 }
1748 else
1749 {
1750 if (prev_prev_nop == 0)
1751 {
1752 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1753 --prev_nop_frag_holds;
1754 }
1755 else
1756 ++prev_nop_frag_required;
1757 }
1758
1759 if (prev_nop_frag_holds <= prev_nop_frag_required)
1760 prev_nop_frag = NULL;
1761
1762 ++prev_nop_frag_since;
1763
1764 /* Sanity check: by the time we reach the second instruction
1765 after prev_nop_frag, we should have used up all the nops
1766 one way or another. */
1767 assert (prev_nop_frag_since <= 1 || prev_nop_frag == NULL);
1768 }
1769 }
1770
f6688943 1771 if (*reloc_type > BFD_RELOC_UNUSED)
252b5132
RH
1772 {
1773 /* We need to set up a variant frag. */
1774 assert (mips_opts.mips16 && address_expr != NULL);
1775 f = frag_var (rs_machine_dependent, 4, 0,
f6688943 1776 RELAX_MIPS16_ENCODE (*reloc_type - BFD_RELOC_UNUSED,
252b5132
RH
1777 mips16_small, mips16_ext,
1778 (prev_pinfo
1779 & INSN_UNCOND_BRANCH_DELAY),
f6688943 1780 (*prev_insn_reloc_type
252b5132 1781 == BFD_RELOC_MIPS16_JMP)),
c4e7957c 1782 make_expr_symbol (address_expr), 0, NULL);
252b5132
RH
1783 }
1784 else if (place != NULL)
1785 f = place;
1786 else if (mips_opts.mips16
1787 && ! ip->use_extend
f6688943 1788 && *reloc_type != BFD_RELOC_MIPS16_JMP)
252b5132
RH
1789 {
1790 /* Make sure there is enough room to swap this instruction with
1791 a following jump instruction. */
1792 frag_grow (6);
1793 f = frag_more (2);
1794 }
1795 else
1796 {
1797 if (mips_opts.mips16
1798 && mips_opts.noreorder
1799 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
1800 as_warn (_("extended instruction in delay slot"));
1801
1802 f = frag_more (4);
1803 }
1804
f6688943
TS
1805 fixp[0] = fixp[1] = fixp[2] = NULL;
1806 if (address_expr != NULL && *reloc_type < BFD_RELOC_UNUSED)
252b5132
RH
1807 {
1808 if (address_expr->X_op == O_constant)
1809 {
4db1a35d 1810 valueT tmp;
f6688943
TS
1811
1812 switch (*reloc_type)
252b5132
RH
1813 {
1814 case BFD_RELOC_32:
1815 ip->insn_opcode |= address_expr->X_add_number;
1816 break;
1817
f6688943
TS
1818 case BFD_RELOC_MIPS_HIGHEST:
1819 tmp = (address_expr->X_add_number + 0x800080008000) >> 16;
1820 tmp >>= 16;
1821 ip->insn_opcode |= (tmp >> 16) & 0xffff;
1822 break;
1823
1824 case BFD_RELOC_MIPS_HIGHER:
1825 tmp = (address_expr->X_add_number + 0x80008000) >> 16;
1826 ip->insn_opcode |= (tmp >> 16) & 0xffff;
1827 break;
1828
1829 case BFD_RELOC_HI16_S:
1830 ip->insn_opcode |= ((address_expr->X_add_number + 0x8000)
1831 >> 16) & 0xffff;
1832 break;
1833
1834 case BFD_RELOC_HI16:
1835 ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff;
1836 break;
1837
252b5132 1838 case BFD_RELOC_LO16:
ed6fb7bd 1839 case BFD_RELOC_MIPS_GOT_DISP:
252b5132
RH
1840 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
1841 break;
1842
1843 case BFD_RELOC_MIPS_JMP:
1844 if ((address_expr->X_add_number & 3) != 0)
1845 as_bad (_("jump to misaligned address (0x%lx)"),
1846 (unsigned long) address_expr->X_add_number);
7496292d
TS
1847 if (address_expr->X_add_number & ~0xfffffff
1848 || address_expr->X_add_number > 0x7fffffc)
1849 as_bad (_("jump address range overflow (0x%lx)"),
1850 (unsigned long) address_expr->X_add_number);
252b5132
RH
1851 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
1852 break;
1853
1854 case BFD_RELOC_MIPS16_JMP:
1855 if ((address_expr->X_add_number & 3) != 0)
1856 as_bad (_("jump to misaligned address (0x%lx)"),
1857 (unsigned long) address_expr->X_add_number);
7496292d
TS
1858 if (address_expr->X_add_number & ~0xfffffff
1859 || address_expr->X_add_number > 0x7fffffc)
1860 as_bad (_("jump address range overflow (0x%lx)"),
1861 (unsigned long) address_expr->X_add_number);
252b5132
RH
1862 ip->insn_opcode |=
1863 (((address_expr->X_add_number & 0x7c0000) << 3)
1864 | ((address_expr->X_add_number & 0xf800000) >> 7)
1865 | ((address_expr->X_add_number & 0x3fffc) >> 2));
1866 break;
1867
cb56d3d3 1868 case BFD_RELOC_16_PCREL:
233b8738 1869 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
cb56d3d3
TS
1870 break;
1871
252b5132
RH
1872 case BFD_RELOC_16_PCREL_S2:
1873 goto need_reloc;
1874
1875 default:
1876 internalError ();
1877 }
1878 }
1879 else
1880 {
1881 need_reloc:
f6688943 1882 /* Don't generate a reloc if we are writing into a variant frag. */
252b5132
RH
1883 if (place == NULL)
1884 {
f6688943
TS
1885 fixp[0] = fix_new_exp (frag_now, f - frag_now->fr_literal, 4,
1886 address_expr,
1887 (*reloc_type == BFD_RELOC_16_PCREL
1888 || *reloc_type == BFD_RELOC_16_PCREL_S2),
1889 reloc_type[0]);
1890
b6ff326e 1891 /* These relocations can have an addend that won't fit in
f6688943
TS
1892 4 octets for 64bit assembly. */
1893 if (HAVE_64BIT_GPRS &&
1894 (*reloc_type == BFD_RELOC_16
98d3f06f
KH
1895 || *reloc_type == BFD_RELOC_32
1896 || *reloc_type == BFD_RELOC_MIPS_JMP
1897 || *reloc_type == BFD_RELOC_HI16_S
1898 || *reloc_type == BFD_RELOC_LO16
1899 || *reloc_type == BFD_RELOC_GPREL16
1900 || *reloc_type == BFD_RELOC_MIPS_LITERAL
1901 || *reloc_type == BFD_RELOC_GPREL32
1902 || *reloc_type == BFD_RELOC_64
1903 || *reloc_type == BFD_RELOC_CTOR
1904 || *reloc_type == BFD_RELOC_MIPS_SUB
1905 || *reloc_type == BFD_RELOC_MIPS_HIGHEST
1906 || *reloc_type == BFD_RELOC_MIPS_HIGHER
1907 || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
1908 || *reloc_type == BFD_RELOC_MIPS_REL16
1909 || *reloc_type == BFD_RELOC_MIPS_RELGOT))
f6688943
TS
1910 fixp[0]->fx_no_overflow = 1;
1911
252b5132
RH
1912 if (unmatched_hi)
1913 {
1914 struct mips_hi_fixup *hi_fixup;
1915
f6688943 1916 assert (*reloc_type == BFD_RELOC_HI16_S);
252b5132
RH
1917 hi_fixup = ((struct mips_hi_fixup *)
1918 xmalloc (sizeof (struct mips_hi_fixup)));
f6688943 1919 hi_fixup->fixp = fixp[0];
252b5132
RH
1920 hi_fixup->seg = now_seg;
1921 hi_fixup->next = mips_hi_fixup_list;
1922 mips_hi_fixup_list = hi_fixup;
1923 }
f6688943
TS
1924
1925 if (reloc_type[1] != BFD_RELOC_UNUSED)
1926 {
1927 /* FIXME: This symbol can be one of
1928 RSS_UNDEF, RSS_GP, RSS_GP0, RSS_LOC. */
1929 address_expr->X_op = O_absent;
1930 address_expr->X_add_symbol = 0;
1931 address_expr->X_add_number = 0;
1932
1933 fixp[1] = fix_new_exp (frag_now, f - frag_now->fr_literal,
1934 4, address_expr, false,
1935 reloc_type[1]);
1936
b6ff326e 1937 /* These relocations can have an addend that won't fit in
f6688943
TS
1938 4 octets for 64bit assembly. */
1939 if (HAVE_64BIT_GPRS &&
1940 (*reloc_type == BFD_RELOC_16
1941 || *reloc_type == BFD_RELOC_32
1942 || *reloc_type == BFD_RELOC_MIPS_JMP
1943 || *reloc_type == BFD_RELOC_HI16_S
1944 || *reloc_type == BFD_RELOC_LO16
1945 || *reloc_type == BFD_RELOC_GPREL16
1946 || *reloc_type == BFD_RELOC_MIPS_LITERAL
1947 || *reloc_type == BFD_RELOC_GPREL32
1948 || *reloc_type == BFD_RELOC_64
1949 || *reloc_type == BFD_RELOC_CTOR
1950 || *reloc_type == BFD_RELOC_MIPS_SUB
1951 || *reloc_type == BFD_RELOC_MIPS_HIGHEST
1952 || *reloc_type == BFD_RELOC_MIPS_HIGHER
1953 || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
1954 || *reloc_type == BFD_RELOC_MIPS_REL16
1955 || *reloc_type == BFD_RELOC_MIPS_RELGOT))
98d3f06f 1956 fixp[1]->fx_no_overflow = 1;
f6688943
TS
1957
1958 if (reloc_type[2] != BFD_RELOC_UNUSED)
1959 {
1960 address_expr->X_op = O_absent;
1961 address_expr->X_add_symbol = 0;
1962 address_expr->X_add_number = 0;
1963
1964 fixp[2] = fix_new_exp (frag_now,
1965 f - frag_now->fr_literal, 4,
1966 address_expr, false,
1967 reloc_type[2]);
1968
b6ff326e 1969 /* These relocations can have an addend that won't fit in
f6688943
TS
1970 4 octets for 64bit assembly. */
1971 if (HAVE_64BIT_GPRS &&
1972 (*reloc_type == BFD_RELOC_16
1973 || *reloc_type == BFD_RELOC_32
1974 || *reloc_type == BFD_RELOC_MIPS_JMP
1975 || *reloc_type == BFD_RELOC_HI16_S
1976 || *reloc_type == BFD_RELOC_LO16
1977 || *reloc_type == BFD_RELOC_GPREL16
1978 || *reloc_type == BFD_RELOC_MIPS_LITERAL
1979 || *reloc_type == BFD_RELOC_GPREL32
1980 || *reloc_type == BFD_RELOC_64
1981 || *reloc_type == BFD_RELOC_CTOR
1982 || *reloc_type == BFD_RELOC_MIPS_SUB
1983 || *reloc_type == BFD_RELOC_MIPS_HIGHEST
1984 || *reloc_type == BFD_RELOC_MIPS_HIGHER
1985 || *reloc_type == BFD_RELOC_MIPS_SCN_DISP
1986 || *reloc_type == BFD_RELOC_MIPS_REL16
1987 || *reloc_type == BFD_RELOC_MIPS_RELGOT))
98d3f06f 1988 fixp[2]->fx_no_overflow = 1;
f6688943
TS
1989 }
1990 }
252b5132
RH
1991 }
1992 }
1993 }
1994
1995 if (! mips_opts.mips16)
c5dd6aab
DJ
1996 {
1997 md_number_to_chars (f, ip->insn_opcode, 4);
1998#ifdef OBJ_ELF
1999 dwarf2_emit_insn (4);
2000#endif
2001 }
f6688943 2002 else if (*reloc_type == BFD_RELOC_MIPS16_JMP)
252b5132
RH
2003 {
2004 md_number_to_chars (f, ip->insn_opcode >> 16, 2);
2005 md_number_to_chars (f + 2, ip->insn_opcode & 0xffff, 2);
c5dd6aab
DJ
2006#ifdef OBJ_ELF
2007 dwarf2_emit_insn (4);
2008#endif
252b5132
RH
2009 }
2010 else
2011 {
2012 if (ip->use_extend)
2013 {
2014 md_number_to_chars (f, 0xf000 | ip->extend, 2);
2015 f += 2;
2016 }
2017 md_number_to_chars (f, ip->insn_opcode, 2);
c5dd6aab
DJ
2018#ifdef OBJ_ELF
2019 dwarf2_emit_insn (ip->use_extend ? 4 : 2);
2020#endif
252b5132
RH
2021 }
2022
2023 /* Update the register mask information. */
2024 if (! mips_opts.mips16)
2025 {
2026 if (pinfo & INSN_WRITE_GPR_D)
2027 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD);
2028 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
2029 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT);
2030 if (pinfo & INSN_READ_GPR_S)
2031 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS);
2032 if (pinfo & INSN_WRITE_GPR_31)
f9419b05 2033 mips_gprmask |= 1 << RA;
252b5132
RH
2034 if (pinfo & INSN_WRITE_FPR_D)
2035 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FD) & OP_MASK_FD);
2036 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
2037 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS);
2038 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
2039 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT);
2040 if ((pinfo & INSN_READ_FPR_R) != 0)
2041 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FR) & OP_MASK_FR);
2042 if (pinfo & INSN_COP)
2043 {
bdaaa2e1
KH
2044 /* We don't keep enough information to sort these cases out.
2045 The itbl support does keep this information however, although
2046 we currently don't support itbl fprmats as part of the cop
2047 instruction. May want to add this support in the future. */
252b5132
RH
2048 }
2049 /* Never set the bit for $0, which is always zero. */
beae10d5 2050 mips_gprmask &= ~1 << 0;
252b5132
RH
2051 }
2052 else
2053 {
2054 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
2055 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RX)
2056 & MIPS16OP_MASK_RX);
2057 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
2058 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RY)
2059 & MIPS16OP_MASK_RY);
2060 if (pinfo & MIPS16_INSN_WRITE_Z)
2061 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RZ)
2062 & MIPS16OP_MASK_RZ);
2063 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
2064 mips_gprmask |= 1 << TREG;
2065 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
2066 mips_gprmask |= 1 << SP;
2067 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
2068 mips_gprmask |= 1 << RA;
2069 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
2070 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
2071 if (pinfo & MIPS16_INSN_READ_Z)
2072 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
2073 & MIPS16OP_MASK_MOVE32Z);
2074 if (pinfo & MIPS16_INSN_READ_GPR_X)
2075 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
2076 & MIPS16OP_MASK_REGR32);
2077 }
2078
2079 if (place == NULL && ! mips_opts.noreorder)
2080 {
2081 /* Filling the branch delay slot is more complex. We try to
2082 switch the branch with the previous instruction, which we can
2083 do if the previous instruction does not set up a condition
2084 that the branch tests and if the branch is not itself the
2085 target of any branch. */
2086 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
2087 || (pinfo & INSN_COND_BRANCH_DELAY))
2088 {
2089 if (mips_optimize < 2
2090 /* If we have seen .set volatile or .set nomove, don't
2091 optimize. */
2092 || mips_opts.nomove != 0
2093 /* If we had to emit any NOP instructions, then we
2094 already know we can not swap. */
2095 || nops != 0
2096 /* If we don't even know the previous insn, we can not
bdaaa2e1 2097 swap. */
252b5132
RH
2098 || ! prev_insn_valid
2099 /* If the previous insn is already in a branch delay
2100 slot, then we can not swap. */
2101 || prev_insn_is_delay_slot
2102 /* If the previous previous insn was in a .set
2103 noreorder, we can't swap. Actually, the MIPS
2104 assembler will swap in this situation. However, gcc
2105 configured -with-gnu-as will generate code like
2106 .set noreorder
2107 lw $4,XXX
2108 .set reorder
2109 INSN
2110 bne $4,$0,foo
2111 in which we can not swap the bne and INSN. If gcc is
2112 not configured -with-gnu-as, it does not output the
2113 .set pseudo-ops. We don't have to check
2114 prev_insn_unreordered, because prev_insn_valid will
2115 be 0 in that case. We don't want to use
2116 prev_prev_insn_valid, because we do want to be able
2117 to swap at the start of a function. */
2118 || prev_prev_insn_unreordered
2119 /* If the branch is itself the target of a branch, we
2120 can not swap. We cheat on this; all we check for is
2121 whether there is a label on this instruction. If
2122 there are any branches to anything other than a
2123 label, users must use .set noreorder. */
2124 || insn_labels != NULL
2125 /* If the previous instruction is in a variant frag, we
2126 can not do the swap. This does not apply to the
2127 mips16, which uses variant frags for different
2128 purposes. */
2129 || (! mips_opts.mips16
2130 && prev_insn_frag->fr_type == rs_machine_dependent)
2131 /* If the branch reads the condition codes, we don't
2132 even try to swap, because in the sequence
2133 ctc1 $X,$31
2134 INSN
2135 INSN
2136 bc1t LABEL
2137 we can not swap, and I don't feel like handling that
2138 case. */
2139 || (! mips_opts.mips16
9ce8a5dd 2140 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
2141 && (pinfo & INSN_READ_COND_CODE))
2142 /* We can not swap with an instruction that requires a
2143 delay slot, becase the target of the branch might
2144 interfere with that instruction. */
2145 || (! mips_opts.mips16
9ce8a5dd 2146 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132 2147 && (prev_pinfo
bdaaa2e1 2148 /* Itbl support may require additional care here. */
252b5132
RH
2149 & (INSN_LOAD_COPROC_DELAY
2150 | INSN_COPROC_MOVE_DELAY
2151 | INSN_WRITE_COND_CODE)))
2152 || (! (hilo_interlocks
ec68c924 2153 || (mips_tune == CPU_R3900 && (pinfo & INSN_MULT)))
252b5132
RH
2154 && (prev_pinfo
2155 & (INSN_READ_LO
2156 | INSN_READ_HI)))
2157 || (! mips_opts.mips16
2158 && ! gpr_interlocks
2159 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))
2160 || (! mips_opts.mips16
e7af610e 2161 && mips_opts.isa == ISA_MIPS1
bdaaa2e1 2162 /* Itbl support may require additional care here. */
252b5132
RH
2163 && (prev_pinfo & INSN_COPROC_MEMORY_DELAY))
2164 /* We can not swap with a branch instruction. */
2165 || (prev_pinfo
2166 & (INSN_UNCOND_BRANCH_DELAY
2167 | INSN_COND_BRANCH_DELAY
2168 | INSN_COND_BRANCH_LIKELY))
2169 /* We do not swap with a trap instruction, since it
2170 complicates trap handlers to have the trap
2171 instruction be in a delay slot. */
2172 || (prev_pinfo & INSN_TRAP)
2173 /* If the branch reads a register that the previous
2174 instruction sets, we can not swap. */
2175 || (! mips_opts.mips16
2176 && (prev_pinfo & INSN_WRITE_GPR_T)
2177 && insn_uses_reg (ip,
2178 ((prev_insn.insn_opcode >> OP_SH_RT)
2179 & OP_MASK_RT),
2180 MIPS_GR_REG))
2181 || (! mips_opts.mips16
2182 && (prev_pinfo & INSN_WRITE_GPR_D)
2183 && insn_uses_reg (ip,
2184 ((prev_insn.insn_opcode >> OP_SH_RD)
2185 & OP_MASK_RD),
2186 MIPS_GR_REG))
2187 || (mips_opts.mips16
2188 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
2189 && insn_uses_reg (ip,
2190 ((prev_insn.insn_opcode
2191 >> MIPS16OP_SH_RX)
2192 & MIPS16OP_MASK_RX),
2193 MIPS16_REG))
2194 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
2195 && insn_uses_reg (ip,
2196 ((prev_insn.insn_opcode
2197 >> MIPS16OP_SH_RY)
2198 & MIPS16OP_MASK_RY),
2199 MIPS16_REG))
2200 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
2201 && insn_uses_reg (ip,
2202 ((prev_insn.insn_opcode
2203 >> MIPS16OP_SH_RZ)
2204 & MIPS16OP_MASK_RZ),
2205 MIPS16_REG))
2206 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
2207 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
2208 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
2209 && insn_uses_reg (ip, RA, MIPS_GR_REG))
2210 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2211 && insn_uses_reg (ip,
2212 MIPS16OP_EXTRACT_REG32R (prev_insn.
2213 insn_opcode),
2214 MIPS_GR_REG))))
2215 /* If the branch writes a register that the previous
2216 instruction sets, we can not swap (we know that
2217 branches write only to RD or to $31). */
2218 || (! mips_opts.mips16
2219 && (prev_pinfo & INSN_WRITE_GPR_T)
2220 && (((pinfo & INSN_WRITE_GPR_D)
2221 && (((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT)
2222 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2223 || ((pinfo & INSN_WRITE_GPR_31)
2224 && (((prev_insn.insn_opcode >> OP_SH_RT)
2225 & OP_MASK_RT)
f9419b05 2226 == RA))))
252b5132
RH
2227 || (! mips_opts.mips16
2228 && (prev_pinfo & INSN_WRITE_GPR_D)
2229 && (((pinfo & INSN_WRITE_GPR_D)
2230 && (((prev_insn.insn_opcode >> OP_SH_RD) & OP_MASK_RD)
2231 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2232 || ((pinfo & INSN_WRITE_GPR_31)
2233 && (((prev_insn.insn_opcode >> OP_SH_RD)
2234 & OP_MASK_RD)
f9419b05 2235 == RA))))
252b5132
RH
2236 || (mips_opts.mips16
2237 && (pinfo & MIPS16_INSN_WRITE_31)
2238 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
2239 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2240 && (MIPS16OP_EXTRACT_REG32R (prev_insn.insn_opcode)
2241 == RA))))
2242 /* If the branch writes a register that the previous
2243 instruction reads, we can not swap (we know that
2244 branches only write to RD or to $31). */
2245 || (! mips_opts.mips16
2246 && (pinfo & INSN_WRITE_GPR_D)
2247 && insn_uses_reg (&prev_insn,
2248 ((ip->insn_opcode >> OP_SH_RD)
2249 & OP_MASK_RD),
2250 MIPS_GR_REG))
2251 || (! mips_opts.mips16
2252 && (pinfo & INSN_WRITE_GPR_31)
f9419b05 2253 && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG))
252b5132
RH
2254 || (mips_opts.mips16
2255 && (pinfo & MIPS16_INSN_WRITE_31)
2256 && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG))
2257 /* If we are generating embedded PIC code, the branch
2258 might be expanded into a sequence which uses $at, so
2259 we can't swap with an instruction which reads it. */
2260 || (mips_pic == EMBEDDED_PIC
2261 && insn_uses_reg (&prev_insn, AT, MIPS_GR_REG))
2262 /* If the previous previous instruction has a load
2263 delay, and sets a register that the branch reads, we
2264 can not swap. */
2265 || (! mips_opts.mips16
9ce8a5dd 2266 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
bdaaa2e1 2267 /* Itbl support may require additional care here. */
252b5132
RH
2268 && ((prev_prev_insn.insn_mo->pinfo & INSN_LOAD_COPROC_DELAY)
2269 || (! gpr_interlocks
2270 && (prev_prev_insn.insn_mo->pinfo
2271 & INSN_LOAD_MEMORY_DELAY)))
2272 && insn_uses_reg (ip,
2273 ((prev_prev_insn.insn_opcode >> OP_SH_RT)
2274 & OP_MASK_RT),
2275 MIPS_GR_REG))
2276 /* If one instruction sets a condition code and the
2277 other one uses a condition code, we can not swap. */
2278 || ((pinfo & INSN_READ_COND_CODE)
2279 && (prev_pinfo & INSN_WRITE_COND_CODE))
2280 || ((pinfo & INSN_WRITE_COND_CODE)
2281 && (prev_pinfo & INSN_READ_COND_CODE))
2282 /* If the previous instruction uses the PC, we can not
2283 swap. */
2284 || (mips_opts.mips16
2285 && (prev_pinfo & MIPS16_INSN_READ_PC))
2286 /* If the previous instruction was extended, we can not
2287 swap. */
2288 || (mips_opts.mips16 && prev_insn_extended)
2289 /* If the previous instruction had a fixup in mips16
2290 mode, we can not swap. This normally means that the
2291 previous instruction was a 4 byte branch anyhow. */
f6688943 2292 || (mips_opts.mips16 && prev_insn_fixp[0])
bdaaa2e1
KH
2293 /* If the previous instruction is a sync, sync.l, or
2294 sync.p, we can not swap. */
f173e82e 2295 || (prev_pinfo & INSN_SYNC))
252b5132
RH
2296 {
2297 /* We could do even better for unconditional branches to
2298 portions of this object file; we could pick up the
2299 instruction at the destination, put it in the delay
2300 slot, and bump the destination address. */
2301 emit_nop ();
2302 /* Update the previous insn information. */
2303 prev_prev_insn = *ip;
2304 prev_insn.insn_mo = &dummy_opcode;
2305 }
2306 else
2307 {
2308 /* It looks like we can actually do the swap. */
2309 if (! mips_opts.mips16)
2310 {
2311 char *prev_f;
2312 char temp[4];
2313
2314 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2315 memcpy (temp, prev_f, 4);
2316 memcpy (prev_f, f, 4);
2317 memcpy (f, temp, 4);
f6688943
TS
2318 if (prev_insn_fixp[0])
2319 {
2320 prev_insn_fixp[0]->fx_frag = frag_now;
2321 prev_insn_fixp[0]->fx_where = f - frag_now->fr_literal;
2322 }
2323 if (prev_insn_fixp[1])
2324 {
2325 prev_insn_fixp[1]->fx_frag = frag_now;
2326 prev_insn_fixp[1]->fx_where = f - frag_now->fr_literal;
2327 }
2328 if (prev_insn_fixp[2])
252b5132 2329 {
f6688943
TS
2330 prev_insn_fixp[2]->fx_frag = frag_now;
2331 prev_insn_fixp[2]->fx_where = f - frag_now->fr_literal;
252b5132 2332 }
f6688943 2333 if (fixp[0])
252b5132 2334 {
f6688943
TS
2335 fixp[0]->fx_frag = prev_insn_frag;
2336 fixp[0]->fx_where = prev_insn_where;
2337 }
2338 if (fixp[1])
2339 {
2340 fixp[1]->fx_frag = prev_insn_frag;
2341 fixp[1]->fx_where = prev_insn_where;
2342 }
2343 if (fixp[2])
2344 {
2345 fixp[2]->fx_frag = prev_insn_frag;
2346 fixp[2]->fx_where = prev_insn_where;
252b5132
RH
2347 }
2348 }
2349 else
2350 {
2351 char *prev_f;
2352 char temp[2];
2353
f6688943
TS
2354 assert (prev_insn_fixp[0] == NULL);
2355 assert (prev_insn_fixp[1] == NULL);
2356 assert (prev_insn_fixp[2] == NULL);
252b5132
RH
2357 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2358 memcpy (temp, prev_f, 2);
2359 memcpy (prev_f, f, 2);
f6688943 2360 if (*reloc_type != BFD_RELOC_MIPS16_JMP)
252b5132 2361 {
f6688943 2362 assert (*reloc_type == BFD_RELOC_UNUSED);
252b5132
RH
2363 memcpy (f, temp, 2);
2364 }
2365 else
2366 {
2367 memcpy (f, f + 2, 2);
2368 memcpy (f + 2, temp, 2);
2369 }
f6688943
TS
2370 if (fixp[0])
2371 {
2372 fixp[0]->fx_frag = prev_insn_frag;
2373 fixp[0]->fx_where = prev_insn_where;
2374 }
2375 if (fixp[1])
2376 {
2377 fixp[1]->fx_frag = prev_insn_frag;
2378 fixp[1]->fx_where = prev_insn_where;
2379 }
2380 if (fixp[2])
252b5132 2381 {
f6688943
TS
2382 fixp[2]->fx_frag = prev_insn_frag;
2383 fixp[2]->fx_where = prev_insn_where;
252b5132
RH
2384 }
2385 }
2386
2387 /* Update the previous insn information; leave prev_insn
2388 unchanged. */
2389 prev_prev_insn = *ip;
2390 }
2391 prev_insn_is_delay_slot = 1;
2392
2393 /* If that was an unconditional branch, forget the previous
2394 insn information. */
2395 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
2396 {
2397 prev_prev_insn.insn_mo = &dummy_opcode;
2398 prev_insn.insn_mo = &dummy_opcode;
2399 }
2400
f6688943
TS
2401 prev_insn_fixp[0] = NULL;
2402 prev_insn_fixp[1] = NULL;
2403 prev_insn_fixp[2] = NULL;
2404 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2405 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2406 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
252b5132
RH
2407 prev_insn_extended = 0;
2408 }
2409 else if (pinfo & INSN_COND_BRANCH_LIKELY)
2410 {
2411 /* We don't yet optimize a branch likely. What we should do
2412 is look at the target, copy the instruction found there
2413 into the delay slot, and increment the branch to jump to
2414 the next instruction. */
2415 emit_nop ();
2416 /* Update the previous insn information. */
2417 prev_prev_insn = *ip;
2418 prev_insn.insn_mo = &dummy_opcode;
f6688943
TS
2419 prev_insn_fixp[0] = NULL;
2420 prev_insn_fixp[1] = NULL;
2421 prev_insn_fixp[2] = NULL;
2422 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2423 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2424 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
252b5132
RH
2425 prev_insn_extended = 0;
2426 }
2427 else
2428 {
2429 /* Update the previous insn information. */
2430 if (nops > 0)
2431 prev_prev_insn.insn_mo = &dummy_opcode;
2432 else
2433 prev_prev_insn = prev_insn;
2434 prev_insn = *ip;
2435
2436 /* Any time we see a branch, we always fill the delay slot
2437 immediately; since this insn is not a branch, we know it
2438 is not in a delay slot. */
2439 prev_insn_is_delay_slot = 0;
2440
f6688943
TS
2441 prev_insn_fixp[0] = fixp[0];
2442 prev_insn_fixp[1] = fixp[1];
2443 prev_insn_fixp[2] = fixp[2];
2444 prev_insn_reloc_type[0] = reloc_type[0];
2445 prev_insn_reloc_type[1] = reloc_type[1];
2446 prev_insn_reloc_type[2] = reloc_type[2];
252b5132
RH
2447 if (mips_opts.mips16)
2448 prev_insn_extended = (ip->use_extend
f6688943 2449 || *reloc_type > BFD_RELOC_UNUSED);
252b5132
RH
2450 }
2451
2452 prev_prev_insn_unreordered = prev_insn_unreordered;
2453 prev_insn_unreordered = 0;
2454 prev_insn_frag = frag_now;
2455 prev_insn_where = f - frag_now->fr_literal;
2456 prev_insn_valid = 1;
2457 }
2458 else if (place == NULL)
2459 {
2460 /* We need to record a bit of information even when we are not
2461 reordering, in order to determine the base address for mips16
2462 PC relative relocs. */
2463 prev_prev_insn = prev_insn;
2464 prev_insn = *ip;
f6688943
TS
2465 prev_insn_reloc_type[0] = reloc_type[0];
2466 prev_insn_reloc_type[1] = reloc_type[1];
2467 prev_insn_reloc_type[2] = reloc_type[2];
252b5132
RH
2468 prev_prev_insn_unreordered = prev_insn_unreordered;
2469 prev_insn_unreordered = 1;
2470 }
2471
2472 /* We just output an insn, so the next one doesn't have a label. */
2473 mips_clear_insn_labels ();
2474
2475 /* We must ensure that a fixup associated with an unmatched %hi
2476 reloc does not become a variant frag. Otherwise, the
2477 rearrangement of %hi relocs in frob_file may confuse
2478 tc_gen_reloc. */
2479 if (unmatched_hi)
2480 {
2481 frag_wane (frag_now);
2482 frag_new (0);
2483 }
2484}
2485
2486/* This function forgets that there was any previous instruction or
2487 label. If PRESERVE is non-zero, it remembers enough information to
bdaaa2e1 2488 know whether nops are needed before a noreorder section. */
252b5132
RH
2489
2490static void
2491mips_no_prev_insn (preserve)
2492 int preserve;
2493{
2494 if (! preserve)
2495 {
2496 prev_insn.insn_mo = &dummy_opcode;
2497 prev_prev_insn.insn_mo = &dummy_opcode;
2498 prev_nop_frag = NULL;
2499 prev_nop_frag_holds = 0;
2500 prev_nop_frag_required = 0;
2501 prev_nop_frag_since = 0;
2502 }
2503 prev_insn_valid = 0;
2504 prev_insn_is_delay_slot = 0;
2505 prev_insn_unreordered = 0;
2506 prev_insn_extended = 0;
f6688943
TS
2507 prev_insn_reloc_type[0] = BFD_RELOC_UNUSED;
2508 prev_insn_reloc_type[1] = BFD_RELOC_UNUSED;
2509 prev_insn_reloc_type[2] = BFD_RELOC_UNUSED;
252b5132
RH
2510 prev_prev_insn_unreordered = 0;
2511 mips_clear_insn_labels ();
2512}
2513
2514/* This function must be called whenever we turn on noreorder or emit
2515 something other than instructions. It inserts any NOPS which might
2516 be needed by the previous instruction, and clears the information
2517 kept for the previous instructions. The INSNS parameter is true if
bdaaa2e1 2518 instructions are to follow. */
252b5132
RH
2519
2520static void
2521mips_emit_delays (insns)
2522 boolean insns;
2523{
2524 if (! mips_opts.noreorder)
2525 {
2526 int nops;
2527
2528 nops = 0;
2529 if ((! mips_opts.mips16
9ce8a5dd 2530 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
2531 && (! cop_interlocks
2532 && (prev_insn.insn_mo->pinfo
2533 & (INSN_LOAD_COPROC_DELAY
2534 | INSN_COPROC_MOVE_DELAY
2535 | INSN_WRITE_COND_CODE))))
2536 || (! hilo_interlocks
2537 && (prev_insn.insn_mo->pinfo
2538 & (INSN_READ_LO
2539 | INSN_READ_HI)))
2540 || (! mips_opts.mips16
2541 && ! gpr_interlocks
bdaaa2e1 2542 && (prev_insn.insn_mo->pinfo
252b5132
RH
2543 & INSN_LOAD_MEMORY_DELAY))
2544 || (! mips_opts.mips16
e7af610e 2545 && mips_opts.isa == ISA_MIPS1
252b5132
RH
2546 && (prev_insn.insn_mo->pinfo
2547 & INSN_COPROC_MEMORY_DELAY)))
2548 {
beae10d5 2549 /* Itbl support may require additional care here. */
252b5132
RH
2550 ++nops;
2551 if ((! mips_opts.mips16
9ce8a5dd 2552 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
2553 && (! cop_interlocks
2554 && prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE))
2555 || (! hilo_interlocks
2556 && ((prev_insn.insn_mo->pinfo & INSN_READ_HI)
2557 || (prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2558 ++nops;
2559
2560 if (prev_insn_unreordered)
2561 nops = 0;
2562 }
2563 else if ((! mips_opts.mips16
9ce8a5dd 2564 && ISA_HAS_COPROC_DELAYS (mips_opts.isa)
252b5132
RH
2565 && (! cop_interlocks
2566 && prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE))
2567 || (! hilo_interlocks
2568 && ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
2569 || (prev_prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2570 {
beae10d5 2571 /* Itbl support may require additional care here. */
252b5132
RH
2572 if (! prev_prev_insn_unreordered)
2573 ++nops;
2574 }
2575
2576 if (nops > 0)
2577 {
2578 struct insn_label_list *l;
2579
2580 if (insns)
2581 {
2582 /* Record the frag which holds the nop instructions, so
2583 that we can remove them if we don't need them. */
2584 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
2585 prev_nop_frag = frag_now;
2586 prev_nop_frag_holds = nops;
2587 prev_nop_frag_required = 0;
2588 prev_nop_frag_since = 0;
2589 }
2590
2591 for (; nops > 0; --nops)
2592 emit_nop ();
2593
2594 if (insns)
2595 {
2596 /* Move on to a new frag, so that it is safe to simply
bdaaa2e1 2597 decrease the size of prev_nop_frag. */
252b5132
RH
2598 frag_wane (frag_now);
2599 frag_new (0);
2600 }
2601
2602 for (l = insn_labels; l != NULL; l = l->next)
2603 {
98aa84af
AM
2604 valueT val;
2605
252b5132 2606 assert (S_GET_SEGMENT (l->label) == now_seg);
49309057 2607 symbol_set_frag (l->label, frag_now);
98aa84af 2608 val = (valueT) frag_now_fix ();
252b5132
RH
2609 /* mips16 text labels are stored as odd. */
2610 if (mips_opts.mips16)
f9419b05 2611 ++val;
98aa84af 2612 S_SET_VALUE (l->label, val);
252b5132
RH
2613 }
2614 }
2615 }
2616
2617 /* Mark instruction labels in mips16 mode. */
f9419b05 2618 if (insns)
252b5132
RH
2619 mips16_mark_labels ();
2620
2621 mips_no_prev_insn (insns);
2622}
2623
2624/* Build an instruction created by a macro expansion. This is passed
2625 a pointer to the count of instructions created so far, an
2626 expression, the name of the instruction to build, an operand format
2627 string, and corresponding arguments. */
2628
2629#ifdef USE_STDARG
2630static void
2631macro_build (char *place,
2632 int *counter,
2633 expressionS * ep,
2634 const char *name,
2635 const char *fmt,
2636 ...)
2637#else
2638static void
2639macro_build (place, counter, ep, name, fmt, va_alist)
2640 char *place;
2641 int *counter;
2642 expressionS *ep;
2643 const char *name;
2644 const char *fmt;
2645 va_dcl
2646#endif
2647{
2648 struct mips_cl_insn insn;
f6688943 2649 bfd_reloc_code_real_type r[3];
252b5132 2650 va_list args;
252b5132
RH
2651
2652#ifdef USE_STDARG
2653 va_start (args, fmt);
2654#else
2655 va_start (args);
2656#endif
2657
2658 /*
2659 * If the macro is about to expand into a second instruction,
2660 * print a warning if needed. We need to pass ip as a parameter
2661 * to generate a better warning message here...
2662 */
2663 if (mips_opts.warn_about_macros && place == NULL && *counter == 1)
2664 as_warn (_("Macro instruction expanded into multiple instructions"));
2665
80cc45a5
EC
2666 /*
2667 * If the macro is about to expand into a second instruction,
2668 * and it is in a delay slot, print a warning.
2669 */
2670 if (place == NULL
2671 && *counter == 1
2672 && mips_opts.noreorder
2673 && (prev_prev_insn.insn_mo->pinfo
2674 & (INSN_UNCOND_BRANCH_DELAY | INSN_COND_BRANCH_DELAY
2b2e39bf 2675 | INSN_COND_BRANCH_LIKELY)) != 0)
80cc45a5
EC
2676 as_warn (_("Macro instruction expanded into multiple instructions in a branch delay slot"));
2677
252b5132 2678 if (place == NULL)
f9419b05 2679 ++*counter; /* bump instruction counter */
252b5132
RH
2680
2681 if (mips_opts.mips16)
2682 {
2683 mips16_macro_build (place, counter, ep, name, fmt, args);
2684 va_end (args);
2685 return;
2686 }
2687
f6688943
TS
2688 r[0] = BFD_RELOC_UNUSED;
2689 r[1] = BFD_RELOC_UNUSED;
2690 r[2] = BFD_RELOC_UNUSED;
252b5132
RH
2691 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
2692 assert (insn.insn_mo);
2693 assert (strcmp (name, insn.insn_mo->name) == 0);
2694
2695 /* Search until we get a match for NAME. */
2696 while (1)
2697 {
deec1734
CD
2698 /* It is assumed here that macros will never generate
2699 MDMX or MIPS-3D instructions. */
252b5132
RH
2700 if (strcmp (fmt, insn.insn_mo->args) == 0
2701 && insn.insn_mo->pinfo != INSN_MACRO
aec421e0
TS
2702 && OPCODE_IS_MEMBER (insn.insn_mo,
2703 (mips_opts.isa
2704 | (mips_opts.mips16 ? INSN_MIPS16 : 0)),
2705 mips_arch)
ec68c924 2706 && (mips_arch != CPU_R4650 || (insn.insn_mo->pinfo & FP_D) == 0))
252b5132
RH
2707 break;
2708
2709 ++insn.insn_mo;
2710 assert (insn.insn_mo->name);
2711 assert (strcmp (name, insn.insn_mo->name) == 0);
2712 }
2713
2714 insn.insn_opcode = insn.insn_mo->match;
2715 for (;;)
2716 {
2717 switch (*fmt++)
2718 {
2719 case '\0':
2720 break;
2721
2722 case ',':
2723 case '(':
2724 case ')':
2725 continue;
2726
2727 case 't':
2728 case 'w':
2729 case 'E':
38487616 2730 insn.insn_opcode |= va_arg (args, int) << OP_SH_RT;
252b5132
RH
2731 continue;
2732
2733 case 'c':
38487616
TS
2734 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE;
2735 continue;
2736
252b5132
RH
2737 case 'T':
2738 case 'W':
38487616 2739 insn.insn_opcode |= va_arg (args, int) << OP_SH_FT;
252b5132
RH
2740 continue;
2741
2742 case 'd':
2743 case 'G':
38487616 2744 insn.insn_opcode |= va_arg (args, int) << OP_SH_RD;
252b5132
RH
2745 continue;
2746
4372b673
NC
2747 case 'U':
2748 {
2749 int tmp = va_arg (args, int);
2750
38487616
TS
2751 insn.insn_opcode |= tmp << OP_SH_RT;
2752 insn.insn_opcode |= tmp << OP_SH_RD;
beae10d5 2753 continue;
4372b673
NC
2754 }
2755
252b5132
RH
2756 case 'V':
2757 case 'S':
38487616 2758 insn.insn_opcode |= va_arg (args, int) << OP_SH_FS;
252b5132
RH
2759 continue;
2760
2761 case 'z':
2762 continue;
2763
2764 case '<':
38487616 2765 insn.insn_opcode |= va_arg (args, int) << OP_SH_SHAMT;
252b5132
RH
2766 continue;
2767
2768 case 'D':
38487616 2769 insn.insn_opcode |= va_arg (args, int) << OP_SH_FD;
252b5132
RH
2770 continue;
2771
2772 case 'B':
38487616 2773 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE20;
252b5132
RH
2774 continue;
2775
4372b673 2776 case 'J':
38487616 2777 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE19;
4372b673
NC
2778 continue;
2779
252b5132 2780 case 'q':
38487616 2781 insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE2;
252b5132
RH
2782 continue;
2783
2784 case 'b':
2785 case 's':
2786 case 'r':
2787 case 'v':
38487616 2788 insn.insn_opcode |= va_arg (args, int) << OP_SH_RS;
252b5132
RH
2789 continue;
2790
2791 case 'i':
2792 case 'j':
2793 case 'o':
f6688943 2794 *r = (bfd_reloc_code_real_type) va_arg (args, int);
cdf6fd85 2795 assert (*r == BFD_RELOC_GPREL16
f6688943
TS
2796 || *r == BFD_RELOC_MIPS_LITERAL
2797 || *r == BFD_RELOC_MIPS_HIGHER
2798 || *r == BFD_RELOC_HI16_S
2799 || *r == BFD_RELOC_LO16
2800 || *r == BFD_RELOC_MIPS_GOT16
2801 || *r == BFD_RELOC_MIPS_CALL16
438c16b8
TS
2802 || *r == BFD_RELOC_MIPS_GOT_DISP
2803 || *r == BFD_RELOC_MIPS_GOT_PAGE
2804 || *r == BFD_RELOC_MIPS_GOT_OFST
f6688943
TS
2805 || *r == BFD_RELOC_MIPS_GOT_LO16
2806 || *r == BFD_RELOC_MIPS_CALL_LO16
252b5132 2807 || (ep->X_op == O_subtract
f6688943 2808 && *r == BFD_RELOC_PCREL_LO16));
252b5132
RH
2809 continue;
2810
2811 case 'u':
f6688943 2812 *r = (bfd_reloc_code_real_type) va_arg (args, int);
252b5132
RH
2813 assert (ep != NULL
2814 && (ep->X_op == O_constant
2815 || (ep->X_op == O_symbol
f6688943
TS
2816 && (*r == BFD_RELOC_MIPS_HIGHEST
2817 || *r == BFD_RELOC_HI16_S
2818 || *r == BFD_RELOC_HI16
2819 || *r == BFD_RELOC_GPREL16
2820 || *r == BFD_RELOC_MIPS_GOT_HI16
2821 || *r == BFD_RELOC_MIPS_CALL_HI16))
252b5132 2822 || (ep->X_op == O_subtract
f6688943 2823 && *r == BFD_RELOC_PCREL_HI16_S)));
252b5132
RH
2824 continue;
2825
2826 case 'p':
2827 assert (ep != NULL);
2828 /*
2829 * This allows macro() to pass an immediate expression for
2830 * creating short branches without creating a symbol.
2831 * Note that the expression still might come from the assembly
2832 * input, in which case the value is not checked for range nor
2833 * is a relocation entry generated (yuck).
2834 */
2835 if (ep->X_op == O_constant)
2836 {
2837 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
2838 ep = NULL;
2839 }
2840 else
cb56d3d3 2841 if (mips_pic == EMBEDDED_PIC)
f6688943 2842 *r = BFD_RELOC_16_PCREL_S2;
cb56d3d3 2843 else
f6688943 2844 *r = BFD_RELOC_16_PCREL;
252b5132
RH
2845 continue;
2846
2847 case 'a':
2848 assert (ep != NULL);
f6688943 2849 *r = BFD_RELOC_MIPS_JMP;
252b5132
RH
2850 continue;
2851
2852 case 'C':
2853 insn.insn_opcode |= va_arg (args, unsigned long);
2854 continue;
2855
2856 default:
2857 internalError ();
2858 }
2859 break;
2860 }
2861 va_end (args);
f6688943 2862 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132
RH
2863
2864 append_insn (place, &insn, ep, r, false);
2865}
2866
2867static void
2868mips16_macro_build (place, counter, ep, name, fmt, args)
2869 char *place;
43841e91 2870 int *counter ATTRIBUTE_UNUSED;
252b5132
RH
2871 expressionS *ep;
2872 const char *name;
2873 const char *fmt;
2874 va_list args;
2875{
2876 struct mips_cl_insn insn;
f6688943
TS
2877 bfd_reloc_code_real_type r[3]
2878 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
252b5132 2879
252b5132
RH
2880 insn.insn_mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
2881 assert (insn.insn_mo);
2882 assert (strcmp (name, insn.insn_mo->name) == 0);
2883
2884 while (strcmp (fmt, insn.insn_mo->args) != 0
2885 || insn.insn_mo->pinfo == INSN_MACRO)
2886 {
2887 ++insn.insn_mo;
2888 assert (insn.insn_mo->name);
2889 assert (strcmp (name, insn.insn_mo->name) == 0);
2890 }
2891
2892 insn.insn_opcode = insn.insn_mo->match;
2893 insn.use_extend = false;
2894
2895 for (;;)
2896 {
2897 int c;
2898
2899 c = *fmt++;
2900 switch (c)
2901 {
2902 case '\0':
2903 break;
2904
2905 case ',':
2906 case '(':
2907 case ')':
2908 continue;
2909
2910 case 'y':
2911 case 'w':
2912 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RY;
2913 continue;
2914
2915 case 'x':
2916 case 'v':
2917 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RX;
2918 continue;
2919
2920 case 'z':
2921 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RZ;
2922 continue;
2923
2924 case 'Z':
2925 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_MOVE32Z;
2926 continue;
2927
2928 case '0':
2929 case 'S':
2930 case 'P':
2931 case 'R':
2932 continue;
2933
2934 case 'X':
2935 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_REGR32;
2936 continue;
2937
2938 case 'Y':
2939 {
2940 int regno;
2941
2942 regno = va_arg (args, int);
2943 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
2944 insn.insn_opcode |= regno << MIPS16OP_SH_REG32R;
2945 }
2946 continue;
2947
2948 case '<':
2949 case '>':
2950 case '4':
2951 case '5':
2952 case 'H':
2953 case 'W':
2954 case 'D':
2955 case 'j':
2956 case '8':
2957 case 'V':
2958 case 'C':
2959 case 'U':
2960 case 'k':
2961 case 'K':
2962 case 'p':
2963 case 'q':
2964 {
2965 assert (ep != NULL);
2966
2967 if (ep->X_op != O_constant)
874e8986 2968 *r = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
2969 else
2970 {
c4e7957c
TS
2971 mips16_immed (NULL, 0, c, ep->X_add_number, false, false,
2972 false, &insn.insn_opcode, &insn.use_extend,
2973 &insn.extend);
252b5132 2974 ep = NULL;
f6688943 2975 *r = BFD_RELOC_UNUSED;
252b5132
RH
2976 }
2977 }
2978 continue;
2979
2980 case '6':
2981 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_IMM6;
2982 continue;
2983 }
2984
2985 break;
2986 }
2987
f6688943 2988 assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
252b5132
RH
2989
2990 append_insn (place, &insn, ep, r, false);
2991}
2992
438c16b8
TS
2993/*
2994 * Generate a "jalr" instruction with a relocation hint to the called
2995 * function. This occurs in NewABI PIC code.
2996 */
2997static void
2998macro_build_jalr (icnt, ep)
2999 int icnt;
3000 expressionS *ep;
3001{
f21f8242
AO
3002 char *f;
3003
438c16b8 3004 if (HAVE_NEWABI)
f21f8242
AO
3005 {
3006 frag_grow (4);
3007 f = frag_more (0);
3008 }
438c16b8
TS
3009 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr", "d,s",
3010 RA, PIC_CALL_REG);
3011 if (HAVE_NEWABI)
f21f8242
AO
3012 fix_new_exp (frag_now, f - frag_now->fr_literal,
3013 0, ep, false, BFD_RELOC_MIPS_JALR);
438c16b8
TS
3014}
3015
252b5132
RH
3016/*
3017 * Generate a "lui" instruction.
3018 */
3019static void
3020macro_build_lui (place, counter, ep, regnum)
3021 char *place;
3022 int *counter;
3023 expressionS *ep;
3024 int regnum;
3025{
3026 expressionS high_expr;
3027 struct mips_cl_insn insn;
f6688943
TS
3028 bfd_reloc_code_real_type r[3]
3029 = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED};
5a38dc70
AM
3030 const char *name = "lui";
3031 const char *fmt = "t,u";
252b5132
RH
3032
3033 assert (! mips_opts.mips16);
3034
3035 if (place == NULL)
3036 high_expr = *ep;
3037 else
3038 {
3039 high_expr.X_op = O_constant;
3040 high_expr.X_add_number = ep->X_add_number;
3041 }
3042
3043 if (high_expr.X_op == O_constant)
3044 {
3045 /* we can compute the instruction now without a relocation entry */
e7d556df
TS
3046 high_expr.X_add_number = ((high_expr.X_add_number + 0x8000)
3047 >> 16) & 0xffff;
f6688943 3048 *r = BFD_RELOC_UNUSED;
252b5132 3049 }
f6688943 3050 else if (! HAVE_NEWABI)
252b5132
RH
3051 {
3052 assert (ep->X_op == O_symbol);
3053 /* _gp_disp is a special case, used from s_cpload. */
3054 assert (mips_pic == NO_PIC
3055 || strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0);
f6688943 3056 *r = BFD_RELOC_HI16_S;
252b5132
RH
3057 }
3058
3059 /*
3060 * If the macro is about to expand into a second instruction,
3061 * print a warning if needed. We need to pass ip as a parameter
3062 * to generate a better warning message here...
3063 */
3064 if (mips_opts.warn_about_macros && place == NULL && *counter == 1)
3065 as_warn (_("Macro instruction expanded into multiple instructions"));
3066
3067 if (place == NULL)
f9419b05 3068 ++*counter; /* bump instruction counter */
252b5132
RH
3069
3070 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
3071 assert (insn.insn_mo);
3072 assert (strcmp (name, insn.insn_mo->name) == 0);
3073 assert (strcmp (fmt, insn.insn_mo->args) == 0);
3074
3075 insn.insn_opcode = insn.insn_mo->match | (regnum << OP_SH_RT);
f6688943 3076 if (*r == BFD_RELOC_UNUSED)
252b5132
RH
3077 {
3078 insn.insn_opcode |= high_expr.X_add_number;
3079 append_insn (place, &insn, NULL, r, false);
3080 }
3081 else
3082 append_insn (place, &insn, &high_expr, r, false);
3083}
3084
3085/* set_at()
3086 * Generates code to set the $at register to true (one)
3087 * if reg is less than the immediate expression.
3088 */
3089static void
3090set_at (counter, reg, unsignedp)
3091 int *counter;
3092 int reg;
3093 int unsignedp;
3094{
3095 if (imm_expr.X_op == O_constant
3096 && imm_expr.X_add_number >= -0x8000
3097 && imm_expr.X_add_number < 0x8000)
3098 macro_build ((char *) NULL, counter, &imm_expr,
3099 unsignedp ? "sltiu" : "slti",
3100 "t,r,j", AT, reg, (int) BFD_RELOC_LO16);
3101 else
3102 {
4d34fb5f 3103 load_register (counter, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9 3104 macro_build ((char *) NULL, counter, (expressionS *) NULL,
252b5132
RH
3105 unsignedp ? "sltu" : "slt",
3106 "d,v,t", AT, reg, AT);
3107 }
3108}
3109
3110/* Warn if an expression is not a constant. */
3111
3112static void
3113check_absolute_expr (ip, ex)
3114 struct mips_cl_insn *ip;
3115 expressionS *ex;
3116{
3117 if (ex->X_op == O_big)
3118 as_bad (_("unsupported large constant"));
3119 else if (ex->X_op != O_constant)
3120 as_bad (_("Instruction %s requires absolute expression"), ip->insn_mo->name);
3121}
3122
3123/* Count the leading zeroes by performing a binary chop. This is a
3124 bulky bit of source, but performance is a LOT better for the
3125 majority of values than a simple loop to count the bits:
3126 for (lcnt = 0; (lcnt < 32); lcnt++)
3127 if ((v) & (1 << (31 - lcnt)))
3128 break;
3129 However it is not code size friendly, and the gain will drop a bit
3130 on certain cached systems.
3131*/
3132#define COUNT_TOP_ZEROES(v) \
3133 (((v) & ~0xffff) == 0 \
3134 ? ((v) & ~0xff) == 0 \
3135 ? ((v) & ~0xf) == 0 \
3136 ? ((v) & ~0x3) == 0 \
3137 ? ((v) & ~0x1) == 0 \
3138 ? !(v) \
3139 ? 32 \
3140 : 31 \
3141 : 30 \
3142 : ((v) & ~0x7) == 0 \
3143 ? 29 \
3144 : 28 \
3145 : ((v) & ~0x3f) == 0 \
3146 ? ((v) & ~0x1f) == 0 \
3147 ? 27 \
3148 : 26 \
3149 : ((v) & ~0x7f) == 0 \
3150 ? 25 \
3151 : 24 \
3152 : ((v) & ~0xfff) == 0 \
3153 ? ((v) & ~0x3ff) == 0 \
3154 ? ((v) & ~0x1ff) == 0 \
3155 ? 23 \
3156 : 22 \
3157 : ((v) & ~0x7ff) == 0 \
3158 ? 21 \
3159 : 20 \
3160 : ((v) & ~0x3fff) == 0 \
3161 ? ((v) & ~0x1fff) == 0 \
3162 ? 19 \
3163 : 18 \
3164 : ((v) & ~0x7fff) == 0 \
3165 ? 17 \
3166 : 16 \
3167 : ((v) & ~0xffffff) == 0 \
3168 ? ((v) & ~0xfffff) == 0 \
3169 ? ((v) & ~0x3ffff) == 0 \
3170 ? ((v) & ~0x1ffff) == 0 \
3171 ? 15 \
3172 : 14 \
3173 : ((v) & ~0x7ffff) == 0 \
3174 ? 13 \
3175 : 12 \
3176 : ((v) & ~0x3fffff) == 0 \
3177 ? ((v) & ~0x1fffff) == 0 \
3178 ? 11 \
3179 : 10 \
3180 : ((v) & ~0x7fffff) == 0 \
3181 ? 9 \
3182 : 8 \
3183 : ((v) & ~0xfffffff) == 0 \
3184 ? ((v) & ~0x3ffffff) == 0 \
3185 ? ((v) & ~0x1ffffff) == 0 \
3186 ? 7 \
3187 : 6 \
3188 : ((v) & ~0x7ffffff) == 0 \
3189 ? 5 \
3190 : 4 \
3191 : ((v) & ~0x3fffffff) == 0 \
3192 ? ((v) & ~0x1fffffff) == 0 \
3193 ? 3 \
3194 : 2 \
3195 : ((v) & ~0x7fffffff) == 0 \
3196 ? 1 \
3197 : 0)
3198
6373ee54
CD
3199/* Is the given value a sign-extended 32-bit value? */
3200#define IS_SEXT_32BIT_NUM(x) \
3201 (((x) &~ (offsetT) 0x7fffffff) == 0 \
3202 || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff))
3203
252b5132
RH
3204/* load_register()
3205 * This routine generates the least number of instructions neccessary to load
3206 * an absolute expression value into a register.
3207 */
3208static void
3209load_register (counter, reg, ep, dbl)
3210 int *counter;
3211 int reg;
3212 expressionS *ep;
3213 int dbl;
3214{
3215 int freg;
3216 expressionS hi32, lo32;
3217
3218 if (ep->X_op != O_big)
3219 {
3220 assert (ep->X_op == O_constant);
3221 if (ep->X_add_number < 0x8000
3222 && (ep->X_add_number >= 0
3223 || (ep->X_add_number >= -0x8000
3224 && (! dbl
3225 || ! ep->X_unsigned
3226 || sizeof (ep->X_add_number) > 4))))
3227 {
3228 /* We can handle 16 bit signed values with an addiu to
3229 $zero. No need to ever use daddiu here, since $zero and
3230 the result are always correct in 32 bit mode. */
3231 macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
3232 (int) BFD_RELOC_LO16);
3233 return;
3234 }
3235 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
3236 {
3237 /* We can handle 16 bit unsigned values with an ori to
3238 $zero. */
3239 macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, 0,
3240 (int) BFD_RELOC_LO16);
3241 return;
3242 }
6373ee54 3243 else if ((IS_SEXT_32BIT_NUM (ep->X_add_number)
252b5132
RH
3244 && (! dbl
3245 || ! ep->X_unsigned
3246 || sizeof (ep->X_add_number) > 4
3247 || (ep->X_add_number & 0x80000000) == 0))
ca4e0257 3248 || ((HAVE_32BIT_GPRS || ! dbl)
252b5132 3249 && (ep->X_add_number &~ (offsetT) 0xffffffff) == 0)
ca4e0257 3250 || (HAVE_32BIT_GPRS
252b5132
RH
3251 && ! dbl
3252 && ((ep->X_add_number &~ (offsetT) 0xffffffff)
3253 == ~ (offsetT) 0xffffffff)))
3254 {
3255 /* 32 bit values require an lui. */
3256 macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
3257 (int) BFD_RELOC_HI16);
3258 if ((ep->X_add_number & 0xffff) != 0)
3259 macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, reg,
3260 (int) BFD_RELOC_LO16);
3261 return;
3262 }
3263 }
3264
3265 /* The value is larger than 32 bits. */
3266
ca4e0257 3267 if (HAVE_32BIT_GPRS)
252b5132 3268 {
956cd1d6
TS
3269 as_bad (_("Number (0x%lx) larger than 32 bits"),
3270 (unsigned long) ep->X_add_number);
252b5132
RH
3271 macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
3272 (int) BFD_RELOC_LO16);
3273 return;
3274 }
3275
3276 if (ep->X_op != O_big)
3277 {
3278 hi32 = *ep;
3279 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3280 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3281 hi32.X_add_number &= 0xffffffff;
3282 lo32 = *ep;
3283 lo32.X_add_number &= 0xffffffff;
3284 }
3285 else
3286 {
3287 assert (ep->X_add_number > 2);
3288 if (ep->X_add_number == 3)
3289 generic_bignum[3] = 0;
3290 else if (ep->X_add_number > 4)
3291 as_bad (_("Number larger than 64 bits"));
3292 lo32.X_op = O_constant;
3293 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
3294 hi32.X_op = O_constant;
3295 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
3296 }
3297
3298 if (hi32.X_add_number == 0)
3299 freg = 0;
3300 else
3301 {
3302 int shift, bit;
3303 unsigned long hi, lo;
3304
956cd1d6 3305 if (hi32.X_add_number == (offsetT) 0xffffffff)
beae10d5
KH
3306 {
3307 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
3308 {
3309 macro_build ((char *) NULL, counter, &lo32, "addiu", "t,r,j",
252b5132 3310 reg, 0, (int) BFD_RELOC_LO16);
beae10d5
KH
3311 return;
3312 }
3313 if (lo32.X_add_number & 0x80000000)
3314 {
3315 macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
3316 (int) BFD_RELOC_HI16);
252b5132
RH
3317 if (lo32.X_add_number & 0xffff)
3318 macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i",
3319 reg, reg, (int) BFD_RELOC_LO16);
beae10d5
KH
3320 return;
3321 }
3322 }
252b5132
RH
3323
3324 /* Check for 16bit shifted constant. We know that hi32 is
3325 non-zero, so start the mask on the first bit of the hi32
3326 value. */
3327 shift = 17;
3328 do
beae10d5
KH
3329 {
3330 unsigned long himask, lomask;
3331
3332 if (shift < 32)
3333 {
3334 himask = 0xffff >> (32 - shift);
3335 lomask = (0xffff << shift) & 0xffffffff;
3336 }
3337 else
3338 {
3339 himask = 0xffff << (shift - 32);
3340 lomask = 0;
3341 }
3342 if ((hi32.X_add_number & ~(offsetT) himask) == 0
3343 && (lo32.X_add_number & ~(offsetT) lomask) == 0)
3344 {
3345 expressionS tmp;
3346
3347 tmp.X_op = O_constant;
3348 if (shift < 32)
3349 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
3350 | (lo32.X_add_number >> shift));
3351 else
3352 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
3353 macro_build ((char *) NULL, counter, &tmp,
3354 "ori", "t,r,i", reg, 0,
3355 (int) BFD_RELOC_LO16);
2396cfb9 3356 macro_build ((char *) NULL, counter, (expressionS *) NULL,
beae10d5
KH
3357 (shift >= 32) ? "dsll32" : "dsll",
3358 "d,w,<", reg, reg,
3359 (shift >= 32) ? shift - 32 : shift);
3360 return;
3361 }
f9419b05 3362 ++shift;
beae10d5
KH
3363 }
3364 while (shift <= (64 - 16));
252b5132
RH
3365
3366 /* Find the bit number of the lowest one bit, and store the
3367 shifted value in hi/lo. */
3368 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
3369 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
3370 if (lo != 0)
3371 {
3372 bit = 0;
3373 while ((lo & 1) == 0)
3374 {
3375 lo >>= 1;
3376 ++bit;
3377 }
3378 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
3379 hi >>= bit;
3380 }
3381 else
3382 {
3383 bit = 32;
3384 while ((hi & 1) == 0)
3385 {
3386 hi >>= 1;
3387 ++bit;
3388 }
3389 lo = hi;
3390 hi = 0;
3391 }
3392
3393 /* Optimize if the shifted value is a (power of 2) - 1. */
3394 if ((hi == 0 && ((lo + 1) & lo) == 0)
3395 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
beae10d5
KH
3396 {
3397 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
252b5132 3398 if (shift != 0)
beae10d5 3399 {
252b5132
RH
3400 expressionS tmp;
3401
3402 /* This instruction will set the register to be all
3403 ones. */
beae10d5
KH
3404 tmp.X_op = O_constant;
3405 tmp.X_add_number = (offsetT) -1;
3406 macro_build ((char *) NULL, counter, &tmp, "addiu", "t,r,j",
252b5132 3407 reg, 0, (int) BFD_RELOC_LO16);
beae10d5
KH
3408 if (bit != 0)
3409 {
3410 bit += shift;
2396cfb9 3411 macro_build ((char *) NULL, counter, (expressionS *) NULL,
beae10d5
KH
3412 (bit >= 32) ? "dsll32" : "dsll",
3413 "d,w,<", reg, reg,
3414 (bit >= 32) ? bit - 32 : bit);
3415 }
2396cfb9 3416 macro_build ((char *) NULL, counter, (expressionS *) NULL,
252b5132 3417 (shift >= 32) ? "dsrl32" : "dsrl",
beae10d5 3418 "d,w,<", reg, reg,
252b5132 3419 (shift >= 32) ? shift - 32 : shift);
beae10d5
KH
3420 return;
3421 }
3422 }
252b5132
RH
3423
3424 /* Sign extend hi32 before calling load_register, because we can
3425 generally get better code when we load a sign extended value. */
3426 if ((hi32.X_add_number & 0x80000000) != 0)
beae10d5 3427 hi32.X_add_number |= ~(offsetT) 0xffffffff;
252b5132
RH
3428 load_register (counter, reg, &hi32, 0);
3429 freg = reg;
3430 }
3431 if ((lo32.X_add_number & 0xffff0000) == 0)
3432 {
3433 if (freg != 0)
3434 {
2396cfb9
TS
3435 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3436 "dsll32", "d,w,<", reg, freg, 0);
252b5132
RH
3437 freg = reg;
3438 }
3439 }
3440 else
3441 {
3442 expressionS mid16;
3443
956cd1d6 3444 if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff))
beae10d5 3445 {
252b5132
RH
3446 macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
3447 (int) BFD_RELOC_HI16);
956cd1d6
TS
3448 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3449 "dsrl32", "d,w,<", reg, reg, 0);
beae10d5
KH
3450 return;
3451 }
252b5132
RH
3452
3453 if (freg != 0)
3454 {
956cd1d6
TS
3455 macro_build ((char *) NULL, counter, (expressionS *) NULL, "dsll",
3456 "d,w,<", reg, freg, 16);
252b5132
RH
3457 freg = reg;
3458 }
3459 mid16 = lo32;
3460 mid16.X_add_number >>= 16;
3461 macro_build ((char *) NULL, counter, &mid16, "ori", "t,r,i", reg,
3462 freg, (int) BFD_RELOC_LO16);
956cd1d6
TS
3463 macro_build ((char *) NULL, counter, (expressionS *) NULL, "dsll",
3464 "d,w,<", reg, reg, 16);
252b5132
RH
3465 freg = reg;
3466 }
3467 if ((lo32.X_add_number & 0xffff) != 0)
3468 macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i", reg, freg,
3469 (int) BFD_RELOC_LO16);
3470}
3471
3472/* Load an address into a register. */
3473
3474static void
c9914766 3475load_address (counter, reg, ep, used_at)
252b5132
RH
3476 int *counter;
3477 int reg;
3478 expressionS *ep;
d6bc6245 3479 int *used_at;
252b5132 3480{
f9419b05 3481 char *p = NULL;
252b5132
RH
3482
3483 if (ep->X_op != O_constant
3484 && ep->X_op != O_symbol)
3485 {
3486 as_bad (_("expression too complex"));
3487 ep->X_op = O_constant;
3488 }
3489
3490 if (ep->X_op == O_constant)
3491 {
c9914766 3492 load_register (counter, reg, ep, HAVE_64BIT_ADDRESSES);
252b5132
RH
3493 return;
3494 }
3495
3496 if (mips_pic == NO_PIC)
3497 {
3498 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 3499 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
3500 Otherwise we want
3501 lui $reg,<sym> (BFD_RELOC_HI16_S)
3502 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
d6bc6245 3503 If we have an addend, we always use the latter form.
76b3015f 3504
d6bc6245
TS
3505 With 64bit address space and a usable $at we want
3506 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3507 lui $at,<sym> (BFD_RELOC_HI16_S)
3508 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3509 daddiu $at,<sym> (BFD_RELOC_LO16)
3510 dsll32 $reg,0
3a482fd5 3511 daddu $reg,$reg,$at
76b3015f 3512
d6bc6245
TS
3513 If $at is already in use, we use an path which is suboptimal
3514 on superscalar processors.
3515 lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST)
3516 daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER)
3517 dsll $reg,16
3518 daddiu $reg,<sym> (BFD_RELOC_HI16_S)
3519 dsll $reg,16
3520 daddiu $reg,<sym> (BFD_RELOC_LO16)
3521 */
c9914766 3522 if (HAVE_64BIT_ADDRESSES)
d6bc6245 3523 {
d6bc6245
TS
3524 /* We don't do GP optimization for now because RELAX_ENCODE can't
3525 hold the data for such large chunks. */
3526
460597ba 3527 if (*used_at == 0 && ! mips_opts.noat)
d6bc6245
TS
3528 {
3529 macro_build (p, counter, ep, "lui", "t,u",
3530 reg, (int) BFD_RELOC_MIPS_HIGHEST);
3531 macro_build (p, counter, ep, "lui", "t,u",
3532 AT, (int) BFD_RELOC_HI16_S);
3533 macro_build (p, counter, ep, "daddiu", "t,r,j",
3534 reg, reg, (int) BFD_RELOC_MIPS_HIGHER);
3535 macro_build (p, counter, ep, "daddiu", "t,r,j",
3536 AT, AT, (int) BFD_RELOC_LO16);
2396cfb9
TS
3537 macro_build (p, counter, (expressionS *) NULL, "dsll32",
3538 "d,w,<", reg, reg, 0);
3a482fd5 3539 macro_build (p, counter, (expressionS *) NULL, "daddu",
2396cfb9 3540 "d,v,t", reg, reg, AT);
d6bc6245
TS
3541 *used_at = 1;
3542 }
3543 else
3544 {
3545 macro_build (p, counter, ep, "lui", "t,u",
3546 reg, (int) BFD_RELOC_MIPS_HIGHEST);
3547 macro_build (p, counter, ep, "daddiu", "t,r,j",
3548 reg, reg, (int) BFD_RELOC_MIPS_HIGHER);
2396cfb9
TS
3549 macro_build (p, counter, (expressionS *) NULL, "dsll",
3550 "d,w,<", reg, reg, 16);
d6bc6245
TS
3551 macro_build (p, counter, ep, "daddiu", "t,r,j",
3552 reg, reg, (int) BFD_RELOC_HI16_S);
2396cfb9
TS
3553 macro_build (p, counter, (expressionS *) NULL, "dsll",
3554 "d,w,<", reg, reg, 16);
d6bc6245
TS
3555 macro_build (p, counter, ep, "daddiu", "t,r,j",
3556 reg, reg, (int) BFD_RELOC_LO16);
3557 }
3558 }
252b5132
RH
3559 else
3560 {
d6bc6245
TS
3561 if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET
3562 && ! nopic_need_relax (ep->X_add_symbol, 1))
3563 {
3564 frag_grow (20);
3565 macro_build ((char *) NULL, counter, ep,
c9914766
TS
3566 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
3567 reg, mips_gp_register, (int) BFD_RELOC_GPREL16);
d6bc6245
TS
3568 p = frag_var (rs_machine_dependent, 8, 0,
3569 RELAX_ENCODE (4, 8, 0, 4, 0,
3570 mips_opts.warn_about_macros),
956cd1d6 3571 ep->X_add_symbol, 0, NULL);
d6bc6245
TS
3572 }
3573 macro_build_lui (p, counter, ep, reg);
3574 if (p != NULL)
3575 p += 4;
c9914766
TS
3576 macro_build (p, counter, ep,
3577 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
d6bc6245
TS
3578 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3579 }
252b5132
RH
3580 }
3581 else if (mips_pic == SVR4_PIC && ! mips_big_got)
3582 {
3583 expressionS ex;
3584
3585 /* If this is a reference to an external symbol, we want
3586 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3587 Otherwise we want
3588 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3589 nop
3590 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
ed6fb7bd
SC
3591 If we have NewABI, we want
3592 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
252b5132
RH
3593 If there is a constant, it must be added in after. */
3594 ex.X_add_number = ep->X_add_number;
3595 ep->X_add_number = 0;
3596 frag_grow (20);
ed6fb7bd
SC
3597 if (HAVE_NEWABI)
3598 {
3599 macro_build ((char *) NULL, counter, ep,
3600 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
3601 (int) BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
3602 }
3603 else
3604 {
3605 macro_build ((char *) NULL, counter, ep,
3606 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)",
3607 reg, (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
3608 macro_build ((char *) NULL, counter, (expressionS *) NULL, "nop", "");
3609 p = frag_var (rs_machine_dependent, 4, 0,
3610 RELAX_ENCODE (0, 4, -8, 0, 0, mips_opts.warn_about_macros),
3611 ep->X_add_symbol, (offsetT) 0, (char *) NULL);
3612 macro_build (p, counter, ep,
3613 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3614 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3615 }
3616
252b5132
RH
3617 if (ex.X_add_number != 0)
3618 {
3619 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3620 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3621 ex.X_op = O_constant;
3622 macro_build ((char *) NULL, counter, &ex,
ca4e0257 3623 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
3624 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3625 }
3626 }
3627 else if (mips_pic == SVR4_PIC)
3628 {
3629 expressionS ex;
3630 int off;
3631
3632 /* This is the large GOT case. If this is a reference to an
3633 external symbol, we want
3634 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
3635 addu $reg,$reg,$gp
3636 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
3637 Otherwise, for a reference to a local symbol, we want
3638 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3639 nop
3640 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
438c16b8
TS
3641 If we have NewABI, we want
3642 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
3643 addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
252b5132
RH
3644 If there is a constant, it must be added in after. */
3645 ex.X_add_number = ep->X_add_number;
3646 ep->X_add_number = 0;
438c16b8
TS
3647 if (HAVE_NEWABI)
3648 {
3649 macro_build ((char *) NULL, counter, ep,
3650 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
3651 (int) BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register);
3652 macro_build (p, counter, ep,
3653 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
3654 reg, reg, (int) BFD_RELOC_MIPS_GOT_OFST);
3655 }
252b5132 3656 else
438c16b8
TS
3657 {
3658 if (reg_needs_delay (mips_gp_register))
3659 off = 4;
3660 else
3661 off = 0;
3662 frag_grow (32);
3663 macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
3664 (int) BFD_RELOC_MIPS_GOT_HI16);
3665 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3666 HAVE_32BIT_ADDRESSES ? "addu" : "daddu", "d,v,t", reg,
3667 reg, mips_gp_register);
3668 macro_build ((char *) NULL, counter, ep,
3669 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
3670 "t,o(b)", reg, (int) BFD_RELOC_MIPS_GOT_LO16, reg);
3671 p = frag_var (rs_machine_dependent, 12 + off, 0,
3672 RELAX_ENCODE (12, 12 + off, off, 8 + off, 0,
3673 mips_opts.warn_about_macros),
3674 ep->X_add_symbol, 0, NULL);
3675 if (off > 0)
3676 {
3677 /* We need a nop before loading from $gp. This special
3678 check is required because the lui which starts the main
3679 instruction stream does not refer to $gp, and so will not
3680 insert the nop which may be required. */
3681 macro_build (p, counter, (expressionS *) NULL, "nop", "");
3682 p += 4;
3683 }
3684 macro_build (p, counter, ep,
3685 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", reg,
3686 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
3687 p += 4;
252b5132
RH
3688 macro_build (p, counter, (expressionS *) NULL, "nop", "");
3689 p += 4;
438c16b8
TS
3690 macro_build (p, counter, ep,
3691 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3692 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
252b5132 3693 }
438c16b8 3694
252b5132
RH
3695 if (ex.X_add_number != 0)
3696 {
3697 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3698 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
3699 ex.X_op = O_constant;
f7ea7ef2
TS
3700 macro_build ((char *) NULL, counter, &ex,
3701 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
3702 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3703 }
3704 }
3705 else if (mips_pic == EMBEDDED_PIC)
3706 {
3707 /* We always do
cdf6fd85 3708 addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16)
c9914766
TS
3709 */
3710 macro_build ((char *) NULL, counter, ep,
3711 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
3712 "t,r,j", reg, mips_gp_register, (int) BFD_RELOC_GPREL16);
252b5132
RH
3713 }
3714 else
3715 abort ();
3716}
3717
ea1fb5dc
RS
3718/* Move the contents of register SOURCE into register DEST. */
3719
3720static void
3721move_register (counter, dest, source)
3722 int *counter;
3723 int dest;
3724 int source;
3725{
3726 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3727 HAVE_32BIT_GPRS ? "addu" : "daddu",
3728 "d,v,t", dest, source, 0);
3729}
3730
252b5132
RH
3731/*
3732 * Build macros
3733 * This routine implements the seemingly endless macro or synthesized
3734 * instructions and addressing modes in the mips assembly language. Many
3735 * of these macros are simple and are similar to each other. These could
3736 * probably be handled by some kind of table or grammer aproach instead of
3737 * this verbose method. Others are not simple macros but are more like
3738 * optimizing code generation.
3739 * One interesting optimization is when several store macros appear
3740 * consecutivly that would load AT with the upper half of the same address.
3741 * The ensuing load upper instructions are ommited. This implies some kind
3742 * of global optimization. We currently only optimize within a single macro.
3743 * For many of the load and store macros if the address is specified as a
3744 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
3745 * first load register 'at' with zero and use it as the base register. The
3746 * mips assembler simply uses register $zero. Just one tiny optimization
3747 * we're missing.
3748 */
3749static void
3750macro (ip)
3751 struct mips_cl_insn *ip;
3752{
3753 register int treg, sreg, dreg, breg;
3754 int tempreg;
3755 int mask;
3756 int icnt = 0;
43841e91 3757 int used_at = 0;
252b5132
RH
3758 expressionS expr1;
3759 const char *s;
3760 const char *s2;
3761 const char *fmt;
3762 int likely = 0;
3763 int dbl = 0;
3764 int coproc = 0;
3765 int lr = 0;
3766 int imm = 0;
3767 offsetT maxnum;
3768 int off;
3769 bfd_reloc_code_real_type r;
252b5132
RH
3770 int hold_mips_optimize;
3771
3772 assert (! mips_opts.mips16);
3773
3774 treg = (ip->insn_opcode >> 16) & 0x1f;
3775 dreg = (ip->insn_opcode >> 11) & 0x1f;
3776 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
3777 mask = ip->insn_mo->mask;
3778
3779 expr1.X_op = O_constant;
3780 expr1.X_op_symbol = NULL;
3781 expr1.X_add_symbol = NULL;
3782 expr1.X_add_number = 1;
3783
3784 switch (mask)
3785 {
3786 case M_DABS:
3787 dbl = 1;
3788 case M_ABS:
3789 /* bgez $a0,.+12
3790 move v0,$a0
3791 sub v0,$zero,$a0
3792 */
3793
3794 mips_emit_delays (true);
3795 ++mips_opts.noreorder;
3796 mips_any_noreorder = 1;
3797
3798 expr1.X_add_number = 8;
3799 macro_build ((char *) NULL, &icnt, &expr1, "bgez", "s,p", sreg);
3800 if (dreg == sreg)
2396cfb9
TS
3801 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
3802 0);
252b5132 3803 else
ea1fb5dc 3804 move_register (&icnt, dreg, sreg);
2396cfb9 3805 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 3806 dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg);
252b5132
RH
3807
3808 --mips_opts.noreorder;
3809 return;
3810
3811 case M_ADD_I:
3812 s = "addi";
3813 s2 = "add";
3814 goto do_addi;
3815 case M_ADDU_I:
3816 s = "addiu";
3817 s2 = "addu";
3818 goto do_addi;
3819 case M_DADD_I:
3820 dbl = 1;
3821 s = "daddi";
3822 s2 = "dadd";
3823 goto do_addi;
3824 case M_DADDU_I:
3825 dbl = 1;
3826 s = "daddiu";
3827 s2 = "daddu";
3828 do_addi:
3829 if (imm_expr.X_op == O_constant
3830 && imm_expr.X_add_number >= -0x8000
3831 && imm_expr.X_add_number < 0x8000)
3832 {
3833 macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,j", treg, sreg,
3834 (int) BFD_RELOC_LO16);
3835 return;
3836 }
3837 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9
TS
3838 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d,v,t",
3839 treg, sreg, AT);
252b5132
RH
3840 break;
3841
3842 case M_AND_I:
3843 s = "andi";
3844 s2 = "and";
3845 goto do_bit;
3846 case M_OR_I:
3847 s = "ori";
3848 s2 = "or";
3849 goto do_bit;
3850 case M_NOR_I:
3851 s = "";
3852 s2 = "nor";
3853 goto do_bit;
3854 case M_XOR_I:
3855 s = "xori";
3856 s2 = "xor";
3857 do_bit:
3858 if (imm_expr.X_op == O_constant
3859 && imm_expr.X_add_number >= 0
3860 && imm_expr.X_add_number < 0x10000)
3861 {
3862 if (mask != M_NOR_I)
3863 macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,i", treg,
3864 sreg, (int) BFD_RELOC_LO16);
3865 else
3866 {
3867 macro_build ((char *) NULL, &icnt, &imm_expr, "ori", "t,r,i",
3868 treg, sreg, (int) BFD_RELOC_LO16);
2396cfb9
TS
3869 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nor",
3870 "d,v,t", treg, treg, 0);
252b5132
RH
3871 }
3872 return;
3873 }
3874
d6bc6245 3875 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
3876 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d,v,t",
3877 treg, sreg, AT);
252b5132
RH
3878 break;
3879
3880 case M_BEQ_I:
3881 s = "beq";
3882 goto beq_i;
3883 case M_BEQL_I:
3884 s = "beql";
3885 likely = 1;
3886 goto beq_i;
3887 case M_BNE_I:
3888 s = "bne";
3889 goto beq_i;
3890 case M_BNEL_I:
3891 s = "bnel";
3892 likely = 1;
3893 beq_i:
3894 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
3895 {
3896 macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg,
3897 0);
3898 return;
3899 }
4d34fb5f 3900 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
252b5132
RH
3901 macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg, AT);
3902 break;
3903
3904 case M_BGEL:
3905 likely = 1;
3906 case M_BGE:
3907 if (treg == 0)
3908 {
3909 macro_build ((char *) NULL, &icnt, &offset_expr,
2396cfb9 3910 likely ? "bgezl" : "bgez", "s,p", sreg);
252b5132
RH
3911 return;
3912 }
3913 if (sreg == 0)
3914 {
3915 macro_build ((char *) NULL, &icnt, &offset_expr,
2396cfb9 3916 likely ? "blezl" : "blez", "s,p", treg);
252b5132
RH
3917 return;
3918 }
2396cfb9
TS
3919 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
3920 AT, sreg, treg);
252b5132 3921 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 3922 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
3923 break;
3924
3925 case M_BGTL_I:
3926 likely = 1;
3927 case M_BGT_I:
3928 /* check for > max integer */
3929 maxnum = 0x7fffffff;
ca4e0257 3930 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
3931 {
3932 maxnum <<= 16;
3933 maxnum |= 0xffff;
3934 maxnum <<= 16;
3935 maxnum |= 0xffff;
3936 }
3937 if (imm_expr.X_op == O_constant
3938 && imm_expr.X_add_number >= maxnum
ca4e0257 3939 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
3940 {
3941 do_false:
3942 /* result is always false */
3943 if (! likely)
3944 {
39c0a331
L
3945 if (warn_nops)
3946 as_warn (_("Branch %s is always false (nop)"),
3947 ip->insn_mo->name);
2396cfb9
TS
3948 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop",
3949 "", 0);
252b5132
RH
3950 }
3951 else
3952 {
39c0a331
L
3953 if (warn_nops)
3954 as_warn (_("Branch likely %s is always false"),
3955 ip->insn_mo->name);
252b5132
RH
3956 macro_build ((char *) NULL, &icnt, &offset_expr, "bnel",
3957 "s,t,p", 0, 0);
3958 }
3959 return;
3960 }
3961 if (imm_expr.X_op != O_constant)
3962 as_bad (_("Unsupported large constant"));
f9419b05 3963 ++imm_expr.X_add_number;
252b5132
RH
3964 /* FALLTHROUGH */
3965 case M_BGE_I:
3966 case M_BGEL_I:
3967 if (mask == M_BGEL_I)
3968 likely = 1;
3969 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
3970 {
3971 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 3972 likely ? "bgezl" : "bgez", "s,p", sreg);
252b5132
RH
3973 return;
3974 }
3975 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
3976 {
3977 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 3978 likely ? "bgtzl" : "bgtz", "s,p", sreg);
252b5132
RH
3979 return;
3980 }
3981 maxnum = 0x7fffffff;
ca4e0257 3982 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
3983 {
3984 maxnum <<= 16;
3985 maxnum |= 0xffff;
3986 maxnum <<= 16;
3987 maxnum |= 0xffff;
3988 }
3989 maxnum = - maxnum - 1;
3990 if (imm_expr.X_op == O_constant
3991 && imm_expr.X_add_number <= maxnum
ca4e0257 3992 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
3993 {
3994 do_true:
3995 /* result is always true */
3996 as_warn (_("Branch %s is always true"), ip->insn_mo->name);
3997 macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
3998 return;
3999 }
4000 set_at (&icnt, sreg, 0);
4001 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4002 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4003 break;
4004
4005 case M_BGEUL:
4006 likely = 1;
4007 case M_BGEU:
4008 if (treg == 0)
4009 goto do_true;
4010 if (sreg == 0)
4011 {
4012 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4013 likely ? "beql" : "beq", "s,t,p", 0, treg);
252b5132
RH
4014 return;
4015 }
2396cfb9
TS
4016 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4017 "d,v,t", AT, sreg, treg);
252b5132 4018 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4019 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4020 break;
4021
4022 case M_BGTUL_I:
4023 likely = 1;
4024 case M_BGTU_I:
4025 if (sreg == 0
ca4e0257 4026 || (HAVE_32BIT_GPRS
252b5132 4027 && imm_expr.X_op == O_constant
956cd1d6 4028 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
4029 goto do_false;
4030 if (imm_expr.X_op != O_constant)
4031 as_bad (_("Unsupported large constant"));
f9419b05 4032 ++imm_expr.X_add_number;
252b5132
RH
4033 /* FALLTHROUGH */
4034 case M_BGEU_I:
4035 case M_BGEUL_I:
4036 if (mask == M_BGEUL_I)
4037 likely = 1;
4038 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4039 goto do_true;
4040 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4041 {
4042 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4043 likely ? "bnel" : "bne", "s,t,p", sreg, 0);
252b5132
RH
4044 return;
4045 }
4046 set_at (&icnt, sreg, 1);
4047 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4048 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4049 break;
4050
4051 case M_BGTL:
4052 likely = 1;
4053 case M_BGT:
4054 if (treg == 0)
4055 {
4056 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4057 likely ? "bgtzl" : "bgtz", "s,p", sreg);
252b5132
RH
4058 return;
4059 }
4060 if (sreg == 0)
4061 {
4062 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4063 likely ? "bltzl" : "bltz", "s,p", treg);
252b5132
RH
4064 return;
4065 }
2396cfb9
TS
4066 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4067 AT, treg, sreg);
252b5132 4068 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4069 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4070 break;
4071
4072 case M_BGTUL:
4073 likely = 1;
4074 case M_BGTU:
4075 if (treg == 0)
4076 {
4077 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4078 likely ? "bnel" : "bne", "s,t,p", sreg, 0);
252b5132
RH
4079 return;
4080 }
4081 if (sreg == 0)
4082 goto do_false;
2396cfb9
TS
4083 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4084 "d,v,t", AT, treg, sreg);
252b5132 4085 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4086 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4087 break;
4088
4089 case M_BLEL:
4090 likely = 1;
4091 case M_BLE:
4092 if (treg == 0)
4093 {
4094 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4095 likely ? "blezl" : "blez", "s,p", sreg);
252b5132
RH
4096 return;
4097 }
4098 if (sreg == 0)
4099 {
4100 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4101 likely ? "bgezl" : "bgez", "s,p", treg);
252b5132
RH
4102 return;
4103 }
2396cfb9
TS
4104 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4105 AT, treg, sreg);
252b5132 4106 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4107 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4108 break;
4109
4110 case M_BLEL_I:
4111 likely = 1;
4112 case M_BLE_I:
4113 maxnum = 0x7fffffff;
ca4e0257 4114 if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4)
252b5132
RH
4115 {
4116 maxnum <<= 16;
4117 maxnum |= 0xffff;
4118 maxnum <<= 16;
4119 maxnum |= 0xffff;
4120 }
4121 if (imm_expr.X_op == O_constant
4122 && imm_expr.X_add_number >= maxnum
ca4e0257 4123 && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4))
252b5132
RH
4124 goto do_true;
4125 if (imm_expr.X_op != O_constant)
4126 as_bad (_("Unsupported large constant"));
f9419b05 4127 ++imm_expr.X_add_number;
252b5132
RH
4128 /* FALLTHROUGH */
4129 case M_BLT_I:
4130 case M_BLTL_I:
4131 if (mask == M_BLTL_I)
4132 likely = 1;
4133 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4134 {
4135 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4136 likely ? "bltzl" : "bltz", "s,p", sreg);
252b5132
RH
4137 return;
4138 }
4139 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4140 {
4141 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4142 likely ? "blezl" : "blez", "s,p", sreg);
252b5132
RH
4143 return;
4144 }
4145 set_at (&icnt, sreg, 0);
4146 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4147 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4148 break;
4149
4150 case M_BLEUL:
4151 likely = 1;
4152 case M_BLEU:
4153 if (treg == 0)
4154 {
4155 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4156 likely ? "beql" : "beq", "s,t,p", sreg, 0);
252b5132
RH
4157 return;
4158 }
4159 if (sreg == 0)
4160 goto do_true;
2396cfb9
TS
4161 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4162 "d,v,t", AT, treg, sreg);
252b5132 4163 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4164 likely ? "beql" : "beq", "s,t,p", AT, 0);
252b5132
RH
4165 break;
4166
4167 case M_BLEUL_I:
4168 likely = 1;
4169 case M_BLEU_I:
4170 if (sreg == 0
ca4e0257 4171 || (HAVE_32BIT_GPRS
252b5132 4172 && imm_expr.X_op == O_constant
956cd1d6 4173 && imm_expr.X_add_number == (offsetT) 0xffffffff))
252b5132
RH
4174 goto do_true;
4175 if (imm_expr.X_op != O_constant)
4176 as_bad (_("Unsupported large constant"));
f9419b05 4177 ++imm_expr.X_add_number;
252b5132
RH
4178 /* FALLTHROUGH */
4179 case M_BLTU_I:
4180 case M_BLTUL_I:
4181 if (mask == M_BLTUL_I)
4182 likely = 1;
4183 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4184 goto do_false;
4185 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4186 {
4187 macro_build ((char *) NULL, &icnt, &offset_expr,
4188 likely ? "beql" : "beq",
4189 "s,t,p", sreg, 0);
4190 return;
4191 }
4192 set_at (&icnt, sreg, 1);
4193 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4194 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4195 break;
4196
4197 case M_BLTL:
4198 likely = 1;
4199 case M_BLT:
4200 if (treg == 0)
4201 {
4202 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4203 likely ? "bltzl" : "bltz", "s,p", sreg);
252b5132
RH
4204 return;
4205 }
4206 if (sreg == 0)
4207 {
4208 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4209 likely ? "bgtzl" : "bgtz", "s,p", treg);
252b5132
RH
4210 return;
4211 }
2396cfb9
TS
4212 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
4213 AT, sreg, treg);
252b5132 4214 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4215 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4216 break;
4217
4218 case M_BLTUL:
4219 likely = 1;
4220 case M_BLTU:
4221 if (treg == 0)
4222 goto do_false;
4223 if (sreg == 0)
4224 {
4225 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4226 likely ? "bnel" : "bne", "s,t,p", 0, treg);
252b5132
RH
4227 return;
4228 }
2396cfb9
TS
4229 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
4230 "d,v,t", AT, sreg,
252b5132
RH
4231 treg);
4232 macro_build ((char *) NULL, &icnt, &offset_expr,
9a41af64 4233 likely ? "bnel" : "bne", "s,t,p", AT, 0);
252b5132
RH
4234 break;
4235
4236 case M_DDIV_3:
4237 dbl = 1;
4238 case M_DIV_3:
4239 s = "mflo";
4240 goto do_div3;
4241 case M_DREM_3:
4242 dbl = 1;
4243 case M_REM_3:
4244 s = "mfhi";
4245 do_div3:
4246 if (treg == 0)
4247 {
4248 as_warn (_("Divide by zero."));
4249 if (mips_trap)
2396cfb9 4250 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4251 "s,t,q", 0, 0, 7);
252b5132 4252 else
2396cfb9
TS
4253 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4254 "c", 7);
252b5132
RH
4255 return;
4256 }
4257
4258 mips_emit_delays (true);
4259 ++mips_opts.noreorder;
4260 mips_any_noreorder = 1;
4261 if (mips_trap)
4262 {
2396cfb9 4263 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4264 "s,t,q", treg, 0, 7);
2396cfb9 4265 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 4266 dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
252b5132
RH
4267 }
4268 else
4269 {
4270 expr1.X_add_number = 8;
4271 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
2396cfb9 4272 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 4273 dbl ? "ddiv" : "div", "z,s,t", sreg, treg);
2396cfb9
TS
4274 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4275 "c", 7);
252b5132
RH
4276 }
4277 expr1.X_add_number = -1;
4278 macro_build ((char *) NULL, &icnt, &expr1,
4279 dbl ? "daddiu" : "addiu",
4280 "t,r,j", AT, 0, (int) BFD_RELOC_LO16);
4281 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
4282 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, AT);
4283 if (dbl)
4284 {
4285 expr1.X_add_number = 1;
4286 macro_build ((char *) NULL, &icnt, &expr1, "daddiu", "t,r,j", AT, 0,
4287 (int) BFD_RELOC_LO16);
2396cfb9
TS
4288 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsll32",
4289 "d,w,<", AT, AT, 31);
252b5132
RH
4290 }
4291 else
4292 {
4293 expr1.X_add_number = 0x80000000;
4294 macro_build ((char *) NULL, &icnt, &expr1, "lui", "t,u", AT,
4295 (int) BFD_RELOC_HI16);
4296 }
4297 if (mips_trap)
4298 {
2396cfb9 4299 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4300 "s,t,q", sreg, AT, 6);
252b5132
RH
4301 /* We want to close the noreorder block as soon as possible, so
4302 that later insns are available for delay slot filling. */
4303 --mips_opts.noreorder;
4304 }
4305 else
4306 {
4307 expr1.X_add_number = 8;
4308 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", sreg, AT);
2396cfb9
TS
4309 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
4310 0);
252b5132
RH
4311
4312 /* We want to close the noreorder block as soon as possible, so
4313 that later insns are available for delay slot filling. */
4314 --mips_opts.noreorder;
4315
2396cfb9
TS
4316 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4317 "c", 6);
252b5132 4318 }
2396cfb9 4319 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d", dreg);
252b5132
RH
4320 break;
4321
4322 case M_DIV_3I:
4323 s = "div";
4324 s2 = "mflo";
4325 goto do_divi;
4326 case M_DIVU_3I:
4327 s = "divu";
4328 s2 = "mflo";
4329 goto do_divi;
4330 case M_REM_3I:
4331 s = "div";
4332 s2 = "mfhi";
4333 goto do_divi;
4334 case M_REMU_3I:
4335 s = "divu";
4336 s2 = "mfhi";
4337 goto do_divi;
4338 case M_DDIV_3I:
4339 dbl = 1;
4340 s = "ddiv";
4341 s2 = "mflo";
4342 goto do_divi;
4343 case M_DDIVU_3I:
4344 dbl = 1;
4345 s = "ddivu";
4346 s2 = "mflo";
4347 goto do_divi;
4348 case M_DREM_3I:
4349 dbl = 1;
4350 s = "ddiv";
4351 s2 = "mfhi";
4352 goto do_divi;
4353 case M_DREMU_3I:
4354 dbl = 1;
4355 s = "ddivu";
4356 s2 = "mfhi";
4357 do_divi:
4358 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4359 {
4360 as_warn (_("Divide by zero."));
4361 if (mips_trap)
2396cfb9 4362 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4363 "s,t,q", 0, 0, 7);
252b5132 4364 else
2396cfb9
TS
4365 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4366 "c", 7);
252b5132
RH
4367 return;
4368 }
4369 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4370 {
4371 if (strcmp (s2, "mflo") == 0)
ea1fb5dc 4372 move_register (&icnt, dreg, sreg);
252b5132 4373 else
ea1fb5dc 4374 move_register (&icnt, dreg, 0);
252b5132
RH
4375 return;
4376 }
4377 if (imm_expr.X_op == O_constant
4378 && imm_expr.X_add_number == -1
4379 && s[strlen (s) - 1] != 'u')
4380 {
4381 if (strcmp (s2, "mflo") == 0)
4382 {
2396cfb9
TS
4383 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4384 dbl ? "dneg" : "neg", "d,w", dreg, sreg);
252b5132
RH
4385 }
4386 else
ea1fb5dc 4387 move_register (&icnt, dreg, 0);
252b5132
RH
4388 return;
4389 }
4390
4391 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9
TS
4392 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
4393 sreg, AT);
4394 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d", dreg);
252b5132
RH
4395 break;
4396
4397 case M_DIVU_3:
4398 s = "divu";
4399 s2 = "mflo";
4400 goto do_divu3;
4401 case M_REMU_3:
4402 s = "divu";
4403 s2 = "mfhi";
4404 goto do_divu3;
4405 case M_DDIVU_3:
4406 s = "ddivu";
4407 s2 = "mflo";
4408 goto do_divu3;
4409 case M_DREMU_3:
4410 s = "ddivu";
4411 s2 = "mfhi";
4412 do_divu3:
4413 mips_emit_delays (true);
4414 ++mips_opts.noreorder;
4415 mips_any_noreorder = 1;
4416 if (mips_trap)
4417 {
2396cfb9 4418 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "teq",
9bd7d936 4419 "s,t,q", treg, 0, 7);
2396cfb9
TS
4420 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
4421 sreg, treg);
252b5132
RH
4422 /* We want to close the noreorder block as soon as possible, so
4423 that later insns are available for delay slot filling. */
4424 --mips_opts.noreorder;
4425 }
4426 else
4427 {
4428 expr1.X_add_number = 8;
4429 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
2396cfb9
TS
4430 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "z,s,t",
4431 sreg, treg);
252b5132
RH
4432
4433 /* We want to close the noreorder block as soon as possible, so
4434 that later insns are available for delay slot filling. */
4435 --mips_opts.noreorder;
2396cfb9
TS
4436 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
4437 "c", 7);
252b5132 4438 }
2396cfb9 4439 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "d", dreg);
252b5132
RH
4440 return;
4441
4442 case M_DLA_AB:
4443 dbl = 1;
4444 case M_LA_AB:
4445 /* Load the address of a symbol into a register. If breg is not
4446 zero, we then add a base register to it. */
4447
3bec30a8
TS
4448 if (dbl && HAVE_32BIT_GPRS)
4449 as_warn (_("dla used to load 32-bit register"));
4450
c90bbe5b 4451 if (! dbl && HAVE_64BIT_OBJECTS)
3bec30a8
TS
4452 as_warn (_("la used to load 64-bit address"));
4453
0c11417f
MR
4454 if (offset_expr.X_op == O_constant
4455 && offset_expr.X_add_number >= -0x8000
4456 && offset_expr.X_add_number < 0x8000)
4457 {
4458 macro_build ((char *) NULL, &icnt, &offset_expr,
4459 (dbl || HAVE_64BIT_ADDRESSES) ? "daddiu" : "addiu",
4460 "t,r,j", treg, sreg, (int) BFD_RELOC_LO16);
4461 return;
4462 }
4463
afdbd6d0
CD
4464 if (treg == breg)
4465 {
4466 tempreg = AT;
4467 used_at = 1;
4468 }
4469 else
4470 {
4471 tempreg = treg;
4472 used_at = 0;
4473 }
4474
252b5132
RH
4475 /* When generating embedded PIC code, we permit expressions of
4476 the form
afdbd6d0
CD
4477 la $treg,foo-bar
4478 la $treg,foo-bar($breg)
bb2d6cd7 4479 where bar is an address in the current section. These are used
252b5132
RH
4480 when getting the addresses of functions. We don't permit
4481 X_add_number to be non-zero, because if the symbol is
4482 external the relaxing code needs to know that any addend is
4483 purely the offset to X_op_symbol. */
4484 if (mips_pic == EMBEDDED_PIC
4485 && offset_expr.X_op == O_subtract
49309057 4486 && (symbol_constant_p (offset_expr.X_op_symbol)
bb2d6cd7 4487 ? S_GET_SEGMENT (offset_expr.X_op_symbol) == now_seg
49309057
ILT
4488 : (symbol_equated_p (offset_expr.X_op_symbol)
4489 && (S_GET_SEGMENT
4490 (symbol_get_value_expression (offset_expr.X_op_symbol)
4491 ->X_add_symbol)
bb2d6cd7 4492 == now_seg)))
bb2d6cd7
GK
4493 && (offset_expr.X_add_number == 0
4494 || OUTPUT_FLAVOR == bfd_target_elf_flavour))
252b5132 4495 {
afdbd6d0
CD
4496 if (breg == 0)
4497 {
4498 tempreg = treg;
4499 used_at = 0;
4500 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4501 tempreg, (int) BFD_RELOC_PCREL_HI16_S);
4502 }
4503 else
4504 {
4505 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4506 tempreg, (int) BFD_RELOC_PCREL_HI16_S);
4507 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4d34fb5f 4508 (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu",
afdbd6d0
CD
4509 "d,v,t", tempreg, tempreg, breg);
4510 }
252b5132 4511 macro_build ((char *) NULL, &icnt, &offset_expr,
4d34fb5f 4512 (dbl || HAVE_64BIT_ADDRESSES) ? "daddiu" : "addiu",
afdbd6d0
CD
4513 "t,r,j", treg, tempreg, (int) BFD_RELOC_PCREL_LO16);
4514 if (! used_at)
4515 return;
4516 break;
252b5132
RH
4517 }
4518
4519 if (offset_expr.X_op != O_symbol
4520 && offset_expr.X_op != O_constant)
4521 {
4522 as_bad (_("expression too complex"));
4523 offset_expr.X_op = O_constant;
4524 }
4525
252b5132 4526 if (offset_expr.X_op == O_constant)
4d34fb5f
TS
4527 load_register (&icnt, tempreg, &offset_expr,
4528 ((mips_pic == EMBEDDED_PIC || mips_pic == NO_PIC)
4529 ? (dbl || HAVE_64BIT_ADDRESSES)
4530 : HAVE_64BIT_ADDRESSES));
252b5132
RH
4531 else if (mips_pic == NO_PIC)
4532 {
d6bc6245 4533 /* If this is a reference to a GP relative symbol, we want
cdf6fd85 4534 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
4535 Otherwise we want
4536 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4537 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4538 If we have a constant, we need two instructions anyhow,
d6bc6245 4539 so we may as well always use the latter form.
76b3015f 4540
d6bc6245
TS
4541 With 64bit address space and a usable $at we want
4542 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4543 lui $at,<sym> (BFD_RELOC_HI16_S)
4544 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4545 daddiu $at,<sym> (BFD_RELOC_LO16)
4546 dsll32 $tempreg,0
3a482fd5 4547 daddu $tempreg,$tempreg,$at
76b3015f 4548
d6bc6245
TS
4549 If $at is already in use, we use an path which is suboptimal
4550 on superscalar processors.
4551 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
4552 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
4553 dsll $tempreg,16
4554 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
4555 dsll $tempreg,16
4556 daddiu $tempreg,<sym> (BFD_RELOC_LO16)
4557 */
f9419b05 4558 char *p = NULL;
d6bc6245 4559 if (HAVE_64BIT_ADDRESSES)
252b5132 4560 {
d6bc6245
TS
4561 /* We don't do GP optimization for now because RELAX_ENCODE can't
4562 hold the data for such large chunks. */
4563
460597ba 4564 if (used_at == 0 && ! mips_opts.noat)
98d3f06f
KH
4565 {
4566 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
4567 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
4568 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
4569 AT, (int) BFD_RELOC_HI16_S);
4570 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4571 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
4572 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4573 AT, AT, (int) BFD_RELOC_LO16);
4574 macro_build (p, &icnt, (expressionS *) NULL, "dsll32",
4575 "d,w,<", tempreg, tempreg, 0);
3a482fd5
MR
4576 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
4577 "d,v,t", tempreg, tempreg, AT);
98d3f06f
KH
4578 used_at = 1;
4579 }
4580 else
4581 {
4582 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
4583 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
4584 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4585 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
4586 macro_build (p, &icnt, (expressionS *) NULL, "dsll", "d,w,<",
4587 tempreg, tempreg, 16);
4588 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4589 tempreg, tempreg, (int) BFD_RELOC_HI16_S);
4590 macro_build (p, &icnt, (expressionS *) NULL, "dsll", "d,w,<",
4591 tempreg, tempreg, 16);
4592 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
4593 tempreg, tempreg, (int) BFD_RELOC_LO16);
4594 }
4595 }
4596 else
4597 {
4598 if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET
4599 && ! nopic_need_relax (offset_expr.X_add_symbol, 1))
4600 {
4601 frag_grow (20);
4602 macro_build ((char *) NULL, &icnt, &offset_expr, "addiu",
c9914766
TS
4603 "t,r,j", tempreg, mips_gp_register,
4604 (int) BFD_RELOC_GPREL16);
98d3f06f
KH
4605 p = frag_var (rs_machine_dependent, 8, 0,
4606 RELAX_ENCODE (4, 8, 0, 4, 0,
4607 mips_opts.warn_about_macros),
4608 offset_expr.X_add_symbol, 0, NULL);
4609 }
4610 macro_build_lui (p, &icnt, &offset_expr, tempreg);
4611 if (p != NULL)
4612 p += 4;
4613 macro_build (p, &icnt, &offset_expr, "addiu",
4614 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4615 }
252b5132
RH
4616 }
4617 else if (mips_pic == SVR4_PIC && ! mips_big_got)
4618 {
9117d219
NC
4619 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
4620
252b5132
RH
4621 /* If this is a reference to an external symbol, and there
4622 is no constant, we want
4623 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
9117d219
NC
4624 or if tempreg is PIC_CALL_REG
4625 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
252b5132
RH
4626 For a local symbol, we want
4627 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4628 nop
4629 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4630
4631 If we have a small constant, and this is a reference to
4632 an external symbol, we want
4633 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4634 nop
4635 addiu $tempreg,$tempreg,<constant>
4636 For a local symbol, we want the same instruction
4637 sequence, but we output a BFD_RELOC_LO16 reloc on the
4638 addiu instruction.
4639
4640 If we have a large constant, and this is a reference to
4641 an external symbol, we want
4642 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4643 lui $at,<hiconstant>
4644 addiu $at,$at,<loconstant>
4645 addu $tempreg,$tempreg,$at
4646 For a local symbol, we want the same instruction
4647 sequence, but we output a BFD_RELOC_LO16 reloc on the
ed6fb7bd
SC
4648 addiu instruction.
4649
4650 For NewABI, we want for local or external data addresses
4651 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
4652 For a local function symbol, we want
4653 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
4654 nop
4655 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
4656 */
4657
252b5132
RH
4658 expr1.X_add_number = offset_expr.X_add_number;
4659 offset_expr.X_add_number = 0;
4660 frag_grow (32);
9117d219
NC
4661 if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
4662 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16;
ed6fb7bd
SC
4663 else if (HAVE_NEWABI)
4664 lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
4d34fb5f
TS
4665 macro_build ((char *) NULL, &icnt, &offset_expr,
4666 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766 4667 "t,o(b)", tempreg, lw_reloc_type, mips_gp_register);
252b5132
RH
4668 if (expr1.X_add_number == 0)
4669 {
4670 int off;
f9419b05 4671 char *p;
252b5132
RH
4672
4673 if (breg == 0)
4674 off = 0;
4675 else
4676 {
4677 /* We're going to put in an addu instruction using
4678 tempreg, so we may as well insert the nop right
4679 now. */
4680 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4681 "nop", "");
4682 off = 4;
4683 }
4684 p = frag_var (rs_machine_dependent, 8 - off, 0,
4685 RELAX_ENCODE (0, 8 - off, -4 - off, 4 - off, 0,
4686 (breg == 0
4687 ? mips_opts.warn_about_macros
4688 : 0)),
c4e7957c 4689 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
4690 if (breg == 0)
4691 {
4692 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4693 p += 4;
4694 }
4695 macro_build (p, &icnt, &expr1,
ca4e0257 4696 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
4697 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4698 /* FIXME: If breg == 0, and the next instruction uses
4699 $tempreg, then if this variant case is used an extra
4700 nop will be generated. */
4701 }
4702 else if (expr1.X_add_number >= -0x8000
4703 && expr1.X_add_number < 0x8000)
4704 {
4705 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4706 "nop", "");
4707 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 4708 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132 4709 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
c4e7957c
TS
4710 frag_var (rs_machine_dependent, 0, 0,
4711 RELAX_ENCODE (0, 0, -12, -4, 0, 0),
4712 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
4713 }
4714 else
4715 {
4716 int off1;
4717
4718 /* If we are going to add in a base register, and the
4719 target register and the base register are the same,
4720 then we are using AT as a temporary register. Since
4721 we want to load the constant into AT, we add our
4722 current AT (from the global offset table) and the
4723 register into the register now, and pretend we were
4724 not using a base register. */
4725 if (breg != treg)
4726 off1 = 0;
4727 else
4728 {
4729 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4730 "nop", "");
4731 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 4732 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
4733 "d,v,t", treg, AT, breg);
4734 breg = 0;
4735 tempreg = treg;
4736 off1 = -8;
4737 }
4738
4739 /* Set mips_optimize around the lui instruction to avoid
4740 inserting an unnecessary nop after the lw. */
4741 hold_mips_optimize = mips_optimize;
4742 mips_optimize = 2;
c4e7957c 4743 macro_build_lui (NULL, &icnt, &expr1, AT);
252b5132
RH
4744 mips_optimize = hold_mips_optimize;
4745
4746 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 4747 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
4748 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
4749 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 4750 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132 4751 "d,v,t", tempreg, tempreg, AT);
c4e7957c
TS
4752 frag_var (rs_machine_dependent, 0, 0,
4753 RELAX_ENCODE (0, 0, -16 + off1, -8, 0, 0),
4754 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
4755 used_at = 1;
4756 }
4757 }
4758 else if (mips_pic == SVR4_PIC)
4759 {
4760 int gpdel;
f9419b05 4761 char *p;
9117d219
NC
4762 int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16;
4763 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16;
ed6fb7bd 4764 int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
252b5132
RH
4765
4766 /* This is the large GOT case. If this is a reference to an
4767 external symbol, and there is no constant, we want
4768 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4769 addu $tempreg,$tempreg,$gp
4770 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
9117d219
NC
4771 or if tempreg is PIC_CALL_REG
4772 lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16)
4773 addu $tempreg,$tempreg,$gp
4774 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16)
252b5132
RH
4775 For a local symbol, we want
4776 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4777 nop
4778 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4779
4780 If we have a small constant, and this is a reference to
4781 an external symbol, we want
4782 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4783 addu $tempreg,$tempreg,$gp
4784 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
4785 nop
4786 addiu $tempreg,$tempreg,<constant>
4787 For a local symbol, we want
4788 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4789 nop
4790 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
4791
4792 If we have a large constant, and this is a reference to
4793 an external symbol, we want
4794 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4795 addu $tempreg,$tempreg,$gp
4796 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
4797 lui $at,<hiconstant>
4798 addiu $at,$at,<loconstant>
4799 addu $tempreg,$tempreg,$at
4800 For a local symbol, we want
4801 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4802 lui $at,<hiconstant>
4803 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
4804 addu $tempreg,$tempreg,$at
438c16b8 4805
ed6fb7bd
SC
4806 For NewABI, we want for local data addresses
4807 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
438c16b8 4808 */
438c16b8 4809
252b5132
RH
4810 expr1.X_add_number = offset_expr.X_add_number;
4811 offset_expr.X_add_number = 0;
4812 frag_grow (52);
f7ea7ef2 4813 if (reg_needs_delay (mips_gp_register))
252b5132
RH
4814 gpdel = 4;
4815 else
4816 gpdel = 0;
9117d219
NC
4817 if (expr1.X_add_number == 0 && tempreg == PIC_CALL_REG)
4818 {
4819 lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16;
4820 lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16;
4821 }
252b5132 4822 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
9117d219 4823 tempreg, lui_reloc_type);
252b5132 4824 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 4825 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 4826 "d,v,t", tempreg, tempreg, mips_gp_register);
252b5132 4827 macro_build ((char *) NULL, &icnt, &offset_expr,
4d34fb5f 4828 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
9117d219 4829 "t,o(b)", tempreg, lw_reloc_type, tempreg);
252b5132
RH
4830 if (expr1.X_add_number == 0)
4831 {
4832 int off;
4833
4834 if (breg == 0)
4835 off = 0;
4836 else
4837 {
4838 /* We're going to put in an addu instruction using
4839 tempreg, so we may as well insert the nop right
4840 now. */
4841 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4842 "nop", "");
4843 off = 4;
4844 }
4845
4846 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
4847 RELAX_ENCODE (12 + off, 12 + gpdel, gpdel,
4848 8 + gpdel, 0,
4849 (breg == 0
4850 ? mips_opts.warn_about_macros
4851 : 0)),
c4e7957c 4852 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
4853 }
4854 else if (expr1.X_add_number >= -0x8000
4855 && expr1.X_add_number < 0x8000)
4856 {
4857 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4858 "nop", "");
4859 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 4860 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
4861 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4862
4863 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
4864 RELAX_ENCODE (20, 12 + gpdel, gpdel, 8 + gpdel, 0,
4865 (breg == 0
4866 ? mips_opts.warn_about_macros
4867 : 0)),
c4e7957c 4868 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
4869 }
4870 else
4871 {
4872 int adj, dreg;
4873
4874 /* If we are going to add in a base register, and the
4875 target register and the base register are the same,
4876 then we are using AT as a temporary register. Since
4877 we want to load the constant into AT, we add our
4878 current AT (from the global offset table) and the
4879 register into the register now, and pretend we were
4880 not using a base register. */
4881 if (breg != treg)
4882 {
4883 adj = 0;
4884 dreg = tempreg;
4885 }
4886 else
4887 {
4888 assert (tempreg == AT);
4889 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4890 "nop", "");
4891 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 4892 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
4893 "d,v,t", treg, AT, breg);
4894 dreg = treg;
4895 adj = 8;
4896 }
4897
4898 /* Set mips_optimize around the lui instruction to avoid
4899 inserting an unnecessary nop after the lw. */
4900 hold_mips_optimize = mips_optimize;
4901 mips_optimize = 2;
c4e7957c 4902 macro_build_lui (NULL, &icnt, &expr1, AT);
252b5132
RH
4903 mips_optimize = hold_mips_optimize;
4904
4905 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 4906 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
4907 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
4908 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 4909 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
4910 "d,v,t", dreg, dreg, AT);
4911
4912 p = frag_var (rs_machine_dependent, 16 + gpdel + adj, 0,
4913 RELAX_ENCODE (24 + adj, 16 + gpdel + adj, gpdel,
4914 8 + gpdel, 0,
4915 (breg == 0
4916 ? mips_opts.warn_about_macros
4917 : 0)),
c4e7957c 4918 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
4919
4920 used_at = 1;
4921 }
4922
4923 if (gpdel > 0)
4924 {
4925 /* This is needed because this instruction uses $gp, but
4926 the first instruction on the main stream does not. */
4927 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4928 p += 4;
4929 }
ed6fb7bd
SC
4930
4931 if (HAVE_NEWABI)
4932 local_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
252b5132 4933 macro_build (p, &icnt, &offset_expr,
4d34fb5f 4934 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
ed6fb7bd
SC
4935 "t,o(b)", tempreg,
4936 local_reloc_type,
c9914766 4937 mips_gp_register);
252b5132 4938 p += 4;
ed6fb7bd
SC
4939 if (expr1.X_add_number == 0 && HAVE_NEWABI)
4940 {
4941 /* BFD_RELOC_MIPS_GOT_DISP is sufficient for newabi */
4942 }
4943 else
4944 if (expr1.X_add_number >= -0x8000
252b5132
RH
4945 && expr1.X_add_number < 0x8000)
4946 {
4947 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4948 p += 4;
4949 macro_build (p, &icnt, &expr1,
ca4e0257 4950 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
4951 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4952 /* FIXME: If add_number is 0, and there was no base
4953 register, the external symbol case ended with a load,
4954 so if the symbol turns out to not be external, and
4955 the next instruction uses tempreg, an unnecessary nop
4956 will be inserted. */
4957 }
4958 else
4959 {
4960 if (breg == treg)
4961 {
4962 /* We must add in the base register now, as in the
4963 external symbol case. */
4964 assert (tempreg == AT);
4965 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4966 p += 4;
4967 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 4968 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
4969 "d,v,t", treg, AT, breg);
4970 p += 4;
4971 tempreg = treg;
4972 /* We set breg to 0 because we have arranged to add
4973 it in in both cases. */
4974 breg = 0;
4975 }
4976
4977 macro_build_lui (p, &icnt, &expr1, AT);
4978 p += 4;
4979 macro_build (p, &icnt, &expr1,
ca4e0257 4980 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
4981 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
4982 p += 4;
4983 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 4984 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
4985 "d,v,t", tempreg, tempreg, AT);
4986 p += 4;
4987 }
4988 }
4989 else if (mips_pic == EMBEDDED_PIC)
4990 {
4991 /* We use
cdf6fd85 4992 addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16)
252b5132
RH
4993 */
4994 macro_build ((char *) NULL, &icnt, &offset_expr,
c9914766
TS
4995 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j",
4996 tempreg, mips_gp_register, (int) BFD_RELOC_GPREL16);
252b5132
RH
4997 }
4998 else
4999 abort ();
5000
5001 if (breg != 0)
4d34fb5f
TS
5002 {
5003 char *s;
5004
5005 if (mips_pic == EMBEDDED_PIC || mips_pic == NO_PIC)
5006 s = (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu";
5007 else
5008 s = HAVE_64BIT_ADDRESSES ? "daddu" : "addu";
5009
5010 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s,
5011 "d,v,t", treg, tempreg, breg);
5012 }
252b5132
RH
5013
5014 if (! used_at)
5015 return;
5016
5017 break;
5018
5019 case M_J_A:
5020 /* The j instruction may not be used in PIC code, since it
5021 requires an absolute address. We convert it to a b
5022 instruction. */
5023 if (mips_pic == NO_PIC)
5024 macro_build ((char *) NULL, &icnt, &offset_expr, "j", "a");
5025 else
5026 macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
5027 return;
5028
5029 /* The jal instructions must be handled as macros because when
5030 generating PIC code they expand to multi-instruction
5031 sequences. Normally they are simple instructions. */
5032 case M_JAL_1:
5033 dreg = RA;
5034 /* Fall through. */
5035 case M_JAL_2:
5036 if (mips_pic == NO_PIC
5037 || mips_pic == EMBEDDED_PIC)
5038 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
5039 "d,s", dreg, sreg);
5040 else if (mips_pic == SVR4_PIC)
5041 {
5042 if (sreg != PIC_CALL_REG)
5043 as_warn (_("MIPS PIC call to register other than $25"));
bdaaa2e1 5044
252b5132
RH
5045 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
5046 "d,s", dreg, sreg);
6478892d 5047 if (! HAVE_NEWABI)
252b5132 5048 {
6478892d
TS
5049 if (mips_cprestore_offset < 0)
5050 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5051 else
5052 {
7a621144
DJ
5053 if (! mips_frame_reg_valid)
5054 {
5055 as_warn (_("No .frame pseudo-op used in PIC code"));
5056 /* Quiet this warning. */
5057 mips_frame_reg_valid = 1;
5058 }
5059 if (! mips_cprestore_valid)
5060 {
5061 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5062 /* Quiet this warning. */
5063 mips_cprestore_valid = 1;
5064 }
6478892d
TS
5065 expr1.X_add_number = mips_cprestore_offset;
5066 macro_build ((char *) NULL, &icnt, &expr1,
5067 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)",
c9914766
TS
5068 mips_gp_register, (int) BFD_RELOC_LO16,
5069 mips_frame_reg);
6478892d 5070 }
252b5132
RH
5071 }
5072 }
5073 else
5074 abort ();
5075
5076 return;
5077
5078 case M_JAL_A:
5079 if (mips_pic == NO_PIC)
5080 macro_build ((char *) NULL, &icnt, &offset_expr, "jal", "a");
5081 else if (mips_pic == SVR4_PIC)
5082 {
f9419b05
TS
5083 char *p;
5084
252b5132
RH
5085 /* If this is a reference to an external symbol, and we are
5086 using a small GOT, we want
5087 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
5088 nop
f9419b05 5089 jalr $ra,$25
252b5132
RH
5090 nop
5091 lw $gp,cprestore($sp)
5092 The cprestore value is set using the .cprestore
5093 pseudo-op. If we are using a big GOT, we want
5094 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
5095 addu $25,$25,$gp
5096 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
5097 nop
f9419b05 5098 jalr $ra,$25
252b5132
RH
5099 nop
5100 lw $gp,cprestore($sp)
5101 If the symbol is not external, we want
5102 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5103 nop
5104 addiu $25,$25,<sym> (BFD_RELOC_LO16)
f9419b05 5105 jalr $ra,$25
252b5132 5106 nop
438c16b8
TS
5107 lw $gp,cprestore($sp)
5108 For NewABI, we want
5109 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
5110 jalr $ra,$25 (BFD_RELOC_MIPS_JALR)
5111 */
5112 if (HAVE_NEWABI)
252b5132
RH
5113 {
5114 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 5115 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
252b5132 5116 "t,o(b)", PIC_CALL_REG,
438c16b8
TS
5117 (int) BFD_RELOC_MIPS_GOT_DISP, mips_gp_register);
5118 macro_build_jalr (icnt, &offset_expr);
252b5132
RH
5119 }
5120 else
5121 {
438c16b8
TS
5122 frag_grow (40);
5123 if (! mips_big_got)
5124 {
5125 macro_build ((char *) NULL, &icnt, &offset_expr,
5126 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5127 "t,o(b)", PIC_CALL_REG,
5128 (int) BFD_RELOC_MIPS_CALL16, mips_gp_register);
5129 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5130 "nop", "");
5131 p = frag_var (rs_machine_dependent, 4, 0,
5132 RELAX_ENCODE (0, 4, -8, 0, 0, 0),
5133 offset_expr.X_add_symbol, 0, NULL);
5134 }
252b5132 5135 else
252b5132 5136 {
438c16b8
TS
5137 int gpdel;
5138
5139 if (reg_needs_delay (mips_gp_register))
5140 gpdel = 4;
5141 else
5142 gpdel = 0;
5143 macro_build ((char *) NULL, &icnt, &offset_expr, "lui",
5144 "t,u", PIC_CALL_REG,
5145 (int) BFD_RELOC_MIPS_CALL_HI16);
5146 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5147 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5148 "d,v,t", PIC_CALL_REG, PIC_CALL_REG,
5149 mips_gp_register);
5150 macro_build ((char *) NULL, &icnt, &offset_expr,
5151 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5152 "t,o(b)", PIC_CALL_REG,
5153 (int) BFD_RELOC_MIPS_CALL_LO16, PIC_CALL_REG);
5154 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5155 "nop", "");
5156 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
5157 RELAX_ENCODE (16, 12 + gpdel, gpdel,
5158 8 + gpdel, 0, 0),
5159 offset_expr.X_add_symbol, 0, NULL);
5160 if (gpdel > 0)
5161 {
5162 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5163 p += 4;
5164 }
5165 macro_build (p, &icnt, &offset_expr,
5166 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5167 "t,o(b)", PIC_CALL_REG,
5168 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
5169 p += 4;
252b5132
RH
5170 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5171 p += 4;
5172 }
5173 macro_build (p, &icnt, &offset_expr,
438c16b8
TS
5174 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
5175 "t,r,j", PIC_CALL_REG, PIC_CALL_REG,
5176 (int) BFD_RELOC_LO16);
5177 macro_build_jalr (icnt, &offset_expr);
5178
6478892d
TS
5179 if (mips_cprestore_offset < 0)
5180 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5181 else
5182 {
7a621144
DJ
5183 if (! mips_frame_reg_valid)
5184 {
5185 as_warn (_("No .frame pseudo-op used in PIC code"));
5186 /* Quiet this warning. */
5187 mips_frame_reg_valid = 1;
5188 }
5189 if (! mips_cprestore_valid)
5190 {
5191 as_warn (_("No .cprestore pseudo-op used in PIC code"));
5192 /* Quiet this warning. */
5193 mips_cprestore_valid = 1;
5194 }
6478892d
TS
5195 if (mips_opts.noreorder)
5196 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
98d3f06f 5197 "nop", "");
6478892d
TS
5198 expr1.X_add_number = mips_cprestore_offset;
5199 macro_build ((char *) NULL, &icnt, &expr1,
5200 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)",
c9914766
TS
5201 mips_gp_register, (int) BFD_RELOC_LO16,
5202 mips_frame_reg);
6478892d 5203 }
252b5132
RH
5204 }
5205 }
5206 else if (mips_pic == EMBEDDED_PIC)
5207 {
5208 macro_build ((char *) NULL, &icnt, &offset_expr, "bal", "p");
5209 /* The linker may expand the call to a longer sequence which
5210 uses $at, so we must break rather than return. */
5211 break;
5212 }
5213 else
5214 abort ();
5215
5216 return;
5217
5218 case M_LB_AB:
5219 s = "lb";
5220 goto ld;
5221 case M_LBU_AB:
5222 s = "lbu";
5223 goto ld;
5224 case M_LH_AB:
5225 s = "lh";
5226 goto ld;
5227 case M_LHU_AB:
5228 s = "lhu";
5229 goto ld;
5230 case M_LW_AB:
5231 s = "lw";
5232 goto ld;
5233 case M_LWC0_AB:
5234 s = "lwc0";
bdaaa2e1 5235 /* Itbl support may require additional care here. */
252b5132
RH
5236 coproc = 1;
5237 goto ld;
5238 case M_LWC1_AB:
5239 s = "lwc1";
bdaaa2e1 5240 /* Itbl support may require additional care here. */
252b5132
RH
5241 coproc = 1;
5242 goto ld;
5243 case M_LWC2_AB:
5244 s = "lwc2";
bdaaa2e1 5245 /* Itbl support may require additional care here. */
252b5132
RH
5246 coproc = 1;
5247 goto ld;
5248 case M_LWC3_AB:
5249 s = "lwc3";
bdaaa2e1 5250 /* Itbl support may require additional care here. */
252b5132
RH
5251 coproc = 1;
5252 goto ld;
5253 case M_LWL_AB:
5254 s = "lwl";
5255 lr = 1;
5256 goto ld;
5257 case M_LWR_AB:
5258 s = "lwr";
5259 lr = 1;
5260 goto ld;
5261 case M_LDC1_AB:
ec68c924 5262 if (mips_arch == CPU_R4650)
252b5132
RH
5263 {
5264 as_bad (_("opcode not supported on this processor"));
5265 return;
5266 }
5267 s = "ldc1";
bdaaa2e1 5268 /* Itbl support may require additional care here. */
252b5132
RH
5269 coproc = 1;
5270 goto ld;
5271 case M_LDC2_AB:
5272 s = "ldc2";
bdaaa2e1 5273 /* Itbl support may require additional care here. */
252b5132
RH
5274 coproc = 1;
5275 goto ld;
5276 case M_LDC3_AB:
5277 s = "ldc3";
bdaaa2e1 5278 /* Itbl support may require additional care here. */
252b5132
RH
5279 coproc = 1;
5280 goto ld;
5281 case M_LDL_AB:
5282 s = "ldl";
5283 lr = 1;
5284 goto ld;
5285 case M_LDR_AB:
5286 s = "ldr";
5287 lr = 1;
5288 goto ld;
5289 case M_LL_AB:
5290 s = "ll";
5291 goto ld;
5292 case M_LLD_AB:
5293 s = "lld";
5294 goto ld;
5295 case M_LWU_AB:
5296 s = "lwu";
5297 ld:
5298 if (breg == treg || coproc || lr)
5299 {
5300 tempreg = AT;
5301 used_at = 1;
5302 }
5303 else
5304 {
5305 tempreg = treg;
5306 used_at = 0;
5307 }
5308 goto ld_st;
5309 case M_SB_AB:
5310 s = "sb";
5311 goto st;
5312 case M_SH_AB:
5313 s = "sh";
5314 goto st;
5315 case M_SW_AB:
5316 s = "sw";
5317 goto st;
5318 case M_SWC0_AB:
5319 s = "swc0";
bdaaa2e1 5320 /* Itbl support may require additional care here. */
252b5132
RH
5321 coproc = 1;
5322 goto st;
5323 case M_SWC1_AB:
5324 s = "swc1";
bdaaa2e1 5325 /* Itbl support may require additional care here. */
252b5132
RH
5326 coproc = 1;
5327 goto st;
5328 case M_SWC2_AB:
5329 s = "swc2";
bdaaa2e1 5330 /* Itbl support may require additional care here. */
252b5132
RH
5331 coproc = 1;
5332 goto st;
5333 case M_SWC3_AB:
5334 s = "swc3";
bdaaa2e1 5335 /* Itbl support may require additional care here. */
252b5132
RH
5336 coproc = 1;
5337 goto st;
5338 case M_SWL_AB:
5339 s = "swl";
5340 goto st;
5341 case M_SWR_AB:
5342 s = "swr";
5343 goto st;
5344 case M_SC_AB:
5345 s = "sc";
5346 goto st;
5347 case M_SCD_AB:
5348 s = "scd";
5349 goto st;
5350 case M_SDC1_AB:
ec68c924 5351 if (mips_arch == CPU_R4650)
252b5132
RH
5352 {
5353 as_bad (_("opcode not supported on this processor"));
5354 return;
5355 }
5356 s = "sdc1";
5357 coproc = 1;
bdaaa2e1 5358 /* Itbl support may require additional care here. */
252b5132
RH
5359 goto st;
5360 case M_SDC2_AB:
5361 s = "sdc2";
bdaaa2e1 5362 /* Itbl support may require additional care here. */
252b5132
RH
5363 coproc = 1;
5364 goto st;
5365 case M_SDC3_AB:
5366 s = "sdc3";
bdaaa2e1 5367 /* Itbl support may require additional care here. */
252b5132
RH
5368 coproc = 1;
5369 goto st;
5370 case M_SDL_AB:
5371 s = "sdl";
5372 goto st;
5373 case M_SDR_AB:
5374 s = "sdr";
5375 st:
5376 tempreg = AT;
5377 used_at = 1;
5378 ld_st:
bdaaa2e1 5379 /* Itbl support may require additional care here. */
252b5132
RH
5380 if (mask == M_LWC1_AB
5381 || mask == M_SWC1_AB
5382 || mask == M_LDC1_AB
5383 || mask == M_SDC1_AB
5384 || mask == M_L_DAB
5385 || mask == M_S_DAB)
5386 fmt = "T,o(b)";
5387 else if (coproc)
5388 fmt = "E,o(b)";
5389 else
5390 fmt = "t,o(b)";
5391
afdbd6d0
CD
5392 /* For embedded PIC, we allow loads where the offset is calculated
5393 by subtracting a symbol in the current segment from an unknown
5394 symbol, relative to a base register, e.g.:
5395 <op> $treg, <sym>-<localsym>($breg)
5396 This is used by the compiler for switch statements. */
76b3015f 5397 if (mips_pic == EMBEDDED_PIC
afdbd6d0
CD
5398 && offset_expr.X_op == O_subtract
5399 && (symbol_constant_p (offset_expr.X_op_symbol)
5400 ? S_GET_SEGMENT (offset_expr.X_op_symbol) == now_seg
5401 : (symbol_equated_p (offset_expr.X_op_symbol)
5402 && (S_GET_SEGMENT
5403 (symbol_get_value_expression (offset_expr.X_op_symbol)
5404 ->X_add_symbol)
5405 == now_seg)))
5406 && breg != 0
5407 && (offset_expr.X_add_number == 0
5408 || OUTPUT_FLAVOR == bfd_target_elf_flavour))
5409 {
5410 /* For this case, we output the instructions:
5411 lui $tempreg,<sym> (BFD_RELOC_PCREL_HI16_S)
5412 addiu $tempreg,$tempreg,$breg
5413 <op> $treg,<sym>($tempreg) (BFD_RELOC_PCREL_LO16)
5414 If the relocation would fit entirely in 16 bits, it would be
5415 nice to emit:
5416 <op> $treg,<sym>($breg) (BFD_RELOC_PCREL_LO16)
5417 instead, but that seems quite difficult. */
5418 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
5419 tempreg, (int) BFD_RELOC_PCREL_HI16_S);
5420 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5421 ((bfd_arch_bits_per_address (stdoutput) == 32
5422 || ! ISA_HAS_64BIT_REGS (mips_opts.isa))
5423 ? "addu" : "daddu"),
5424 "d,v,t", tempreg, tempreg, breg);
5425 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt, treg,
5426 (int) BFD_RELOC_PCREL_LO16, tempreg);
5427 if (! used_at)
5428 return;
5429 break;
5430 }
5431
252b5132
RH
5432 if (offset_expr.X_op != O_constant
5433 && offset_expr.X_op != O_symbol)
5434 {
5435 as_bad (_("expression too complex"));
5436 offset_expr.X_op = O_constant;
5437 }
5438
5439 /* A constant expression in PIC code can be handled just as it
5440 is in non PIC code. */
5441 if (mips_pic == NO_PIC
5442 || offset_expr.X_op == O_constant)
5443 {
f9419b05
TS
5444 char *p;
5445
252b5132
RH
5446 /* If this is a reference to a GP relative symbol, and there
5447 is no base register, we want
cdf6fd85 5448 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
5449 Otherwise, if there is no base register, we want
5450 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5451 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5452 If we have a constant, we need two instructions anyhow,
5453 so we always use the latter form.
5454
5455 If we have a base register, and this is a reference to a
5456 GP relative symbol, we want
5457 addu $tempreg,$breg,$gp
cdf6fd85 5458 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
5459 Otherwise we want
5460 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
5461 addu $tempreg,$tempreg,$breg
5462 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
d6bc6245 5463 With a constant we always use the latter case.
76b3015f 5464
d6bc6245
TS
5465 With 64bit address space and no base register and $at usable,
5466 we want
5467 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5468 lui $at,<sym> (BFD_RELOC_HI16_S)
5469 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5470 dsll32 $tempreg,0
5471 daddu $tempreg,$at
5472 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5473 If we have a base register, we want
5474 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5475 lui $at,<sym> (BFD_RELOC_HI16_S)
5476 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5477 daddu $at,$breg
5478 dsll32 $tempreg,0
5479 daddu $tempreg,$at
5480 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5481
5482 Without $at we can't generate the optimal path for superscalar
5483 processors here since this would require two temporary registers.
5484 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5485 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5486 dsll $tempreg,16
5487 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5488 dsll $tempreg,16
5489 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
5490 If we have a base register, we want
5491 lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST)
5492 daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER)
5493 dsll $tempreg,16
5494 daddiu $tempreg,<sym> (BFD_RELOC_HI16_S)
5495 dsll $tempreg,16
5496 daddu $tempreg,$tempreg,$breg
5497 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
6373ee54
CD
5498
5499 If we have 64-bit addresses, as an optimization, for
5500 addresses which are 32-bit constants (e.g. kseg0/kseg1
5501 addresses) we fall back to the 32-bit address generation
78d32a17
MR
5502 mechanism since it is more efficient. Note that due to
5503 the signed offset used by memory operations, the 32-bit
5504 range is shifted down by 32768 here. This code should
6373ee54
CD
5505 probably attempt to generate 64-bit constants more
5506 efficiently in general.
d6bc6245 5507 */
6373ee54
CD
5508 if (HAVE_64BIT_ADDRESSES
5509 && !(offset_expr.X_op == O_constant
78d32a17 5510 && IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000)))
d6bc6245
TS
5511 {
5512 p = NULL;
5513
5514 /* We don't do GP optimization for now because RELAX_ENCODE can't
5515 hold the data for such large chunks. */
5516
460597ba 5517 if (used_at == 0 && ! mips_opts.noat)
d6bc6245
TS
5518 {
5519 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
5520 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
5521 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
5522 AT, (int) BFD_RELOC_HI16_S);
5523 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
5524 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
5525 if (breg != 0)
2396cfb9
TS
5526 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
5527 "d,v,t", AT, AT, breg);
5528 macro_build (p, &icnt, (expressionS *) NULL, "dsll32",
5529 "d,w,<", tempreg, tempreg, 0);
5530 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
5531 "d,v,t", tempreg, tempreg, AT);
d6bc6245
TS
5532 macro_build (p, &icnt, &offset_expr, s,
5533 fmt, treg, (int) BFD_RELOC_LO16, tempreg);
5534 used_at = 1;
5535 }
5536 else
5537 {
5538 macro_build (p, &icnt, &offset_expr, "lui", "t,u",
5539 tempreg, (int) BFD_RELOC_MIPS_HIGHEST);
5540 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
5541 tempreg, tempreg, (int) BFD_RELOC_MIPS_HIGHER);
2396cfb9
TS
5542 macro_build (p, &icnt, (expressionS *) NULL, "dsll",
5543 "d,w,<", tempreg, tempreg, 16);
d6bc6245
TS
5544 macro_build (p, &icnt, &offset_expr, "daddiu", "t,r,j",
5545 tempreg, tempreg, (int) BFD_RELOC_HI16_S);
2396cfb9
TS
5546 macro_build (p, &icnt, (expressionS *) NULL, "dsll",
5547 "d,w,<", tempreg, tempreg, 16);
d6bc6245 5548 if (breg != 0)
2396cfb9
TS
5549 macro_build (p, &icnt, (expressionS *) NULL, "daddu",
5550 "d,v,t", tempreg, tempreg, breg);
d6bc6245
TS
5551 macro_build (p, &icnt, &offset_expr, s,
5552 fmt, treg, (int) BFD_RELOC_LO16, tempreg);
5553 }
5554
5555 return;
5556 }
76b3015f 5557
252b5132
RH
5558 if (breg == 0)
5559 {
e7d556df 5560 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
252b5132
RH
5561 || nopic_need_relax (offset_expr.X_add_symbol, 1))
5562 p = NULL;
5563 else
5564 {
5565 frag_grow (20);
5566 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
c9914766
TS
5567 treg, (int) BFD_RELOC_GPREL16,
5568 mips_gp_register);
252b5132
RH
5569 p = frag_var (rs_machine_dependent, 8, 0,
5570 RELAX_ENCODE (4, 8, 0, 4, 0,
5571 (mips_opts.warn_about_macros
5572 || (used_at
5573 && mips_opts.noat))),
956cd1d6 5574 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5575 used_at = 0;
5576 }
5577 macro_build_lui (p, &icnt, &offset_expr, tempreg);
5578 if (p != NULL)
5579 p += 4;
5580 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
5581 (int) BFD_RELOC_LO16, tempreg);
5582 }
5583 else
5584 {
e7d556df 5585 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
252b5132
RH
5586 || nopic_need_relax (offset_expr.X_add_symbol, 1))
5587 p = NULL;
5588 else
5589 {
5590 frag_grow (28);
5591 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5592 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 5593 "d,v,t", tempreg, breg, mips_gp_register);
252b5132 5594 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
cdf6fd85 5595 treg, (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
5596 p = frag_var (rs_machine_dependent, 12, 0,
5597 RELAX_ENCODE (8, 12, 0, 8, 0, 0),
956cd1d6 5598 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5599 }
5600 macro_build_lui (p, &icnt, &offset_expr, tempreg);
5601 if (p != NULL)
5602 p += 4;
5603 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 5604 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5605 "d,v,t", tempreg, tempreg, breg);
5606 if (p != NULL)
5607 p += 4;
5608 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
5609 (int) BFD_RELOC_LO16, tempreg);
5610 }
5611 }
5612 else if (mips_pic == SVR4_PIC && ! mips_big_got)
5613 {
f9419b05 5614 char *p;
ed6fb7bd 5615 int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16;
f9419b05 5616
252b5132
RH
5617 /* If this is a reference to an external symbol, we want
5618 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5619 nop
5620 <op> $treg,0($tempreg)
5621 Otherwise we want
5622 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5623 nop
5624 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5625 <op> $treg,0($tempreg)
ed6fb7bd
SC
5626 If we have NewABI, we want
5627 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP)
252b5132
RH
5628 If there is a base register, we add it to $tempreg before
5629 the <op>. If there is a constant, we stick it in the
5630 <op> instruction. We don't handle constants larger than
5631 16 bits, because we have no way to load the upper 16 bits
5632 (actually, we could handle them for the subset of cases
5633 in which we are not using $at). */
5634 assert (offset_expr.X_op == O_symbol);
5635 expr1.X_add_number = offset_expr.X_add_number;
5636 offset_expr.X_add_number = 0;
ed6fb7bd
SC
5637 if (HAVE_NEWABI)
5638 lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_DISP;
252b5132
RH
5639 if (expr1.X_add_number < -0x8000
5640 || expr1.X_add_number >= 0x8000)
5641 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
5642 frag_grow (20);
5643 macro_build ((char *) NULL, &icnt, &offset_expr,
c9914766 5644 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", tempreg,
ed6fb7bd 5645 (int) lw_reloc_type, mips_gp_register);
252b5132 5646 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
bdaaa2e1 5647 p = frag_var (rs_machine_dependent, 4, 0,
252b5132 5648 RELAX_ENCODE (0, 4, -8, 0, 0, 0),
c4e7957c 5649 offset_expr.X_add_symbol, 0, NULL);
252b5132 5650 macro_build (p, &icnt, &offset_expr,
ca4e0257 5651 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
5652 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5653 if (breg != 0)
5654 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5655 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5656 "d,v,t", tempreg, tempreg, breg);
5657 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
5658 (int) BFD_RELOC_LO16, tempreg);
5659 }
5660 else if (mips_pic == SVR4_PIC)
5661 {
5662 int gpdel;
f9419b05 5663 char *p;
252b5132
RH
5664
5665 /* If this is a reference to an external symbol, we want
5666 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5667 addu $tempreg,$tempreg,$gp
5668 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5669 <op> $treg,0($tempreg)
5670 Otherwise we want
5671 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5672 nop
5673 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5674 <op> $treg,0($tempreg)
5675 If there is a base register, we add it to $tempreg before
5676 the <op>. If there is a constant, we stick it in the
5677 <op> instruction. We don't handle constants larger than
5678 16 bits, because we have no way to load the upper 16 bits
5679 (actually, we could handle them for the subset of cases
438c16b8
TS
5680 in which we are not using $at).
5681
5682 For NewABI, we want
5683 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE)
5684 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_MIPS_GOT_OFST)
5685 <op> $treg,0($tempreg)
5686 */
252b5132
RH
5687 assert (offset_expr.X_op == O_symbol);
5688 expr1.X_add_number = offset_expr.X_add_number;
5689 offset_expr.X_add_number = 0;
5690 if (expr1.X_add_number < -0x8000
5691 || expr1.X_add_number >= 0x8000)
5692 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
438c16b8
TS
5693 if (HAVE_NEWABI)
5694 {
5695 macro_build ((char *) NULL, &icnt, &offset_expr,
5696 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
5697 "t,o(b)", tempreg, BFD_RELOC_MIPS_GOT_PAGE,
5698 mips_gp_register);
5699 macro_build ((char *) NULL, &icnt, &offset_expr,
5700 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
5701 "t,r,j", tempreg, tempreg,
5702 BFD_RELOC_MIPS_GOT_OFST);
5703 if (breg != 0)
5704 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5705 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
5706 "d,v,t", tempreg, tempreg, breg);
5707 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
5708 (int) BFD_RELOC_LO16, tempreg);
5709
5710 if (! used_at)
5711 return;
5712
5713 break;
5714 }
f7ea7ef2 5715 if (reg_needs_delay (mips_gp_register))
252b5132
RH
5716 gpdel = 4;
5717 else
5718 gpdel = 0;
5719 frag_grow (36);
5720 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
5721 tempreg, (int) BFD_RELOC_MIPS_GOT_HI16);
5722 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5723 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 5724 "d,v,t", tempreg, tempreg, mips_gp_register);
252b5132 5725 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 5726 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
252b5132
RH
5727 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT_LO16,
5728 tempreg);
5729 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
5730 RELAX_ENCODE (12, 12 + gpdel, gpdel, 8 + gpdel, 0, 0),
c4e7957c 5731 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
5732 if (gpdel > 0)
5733 {
5734 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5735 p += 4;
5736 }
5737 macro_build (p, &icnt, &offset_expr,
ca4e0257 5738 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766
TS
5739 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT16,
5740 mips_gp_register);
252b5132
RH
5741 p += 4;
5742 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5743 p += 4;
5744 macro_build (p, &icnt, &offset_expr,
ca4e0257 5745 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu",
252b5132
RH
5746 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5747 if (breg != 0)
5748 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5749 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
5750 "d,v,t", tempreg, tempreg, breg);
5751 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
5752 (int) BFD_RELOC_LO16, tempreg);
5753 }
5754 else if (mips_pic == EMBEDDED_PIC)
5755 {
5756 /* If there is no base register, we want
cdf6fd85 5757 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
252b5132
RH
5758 If there is a base register, we want
5759 addu $tempreg,$breg,$gp
cdf6fd85 5760 <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16)
252b5132
RH
5761 */
5762 assert (offset_expr.X_op == O_symbol);
5763 if (breg == 0)
5764 {
5765 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
c9914766 5766 treg, (int) BFD_RELOC_GPREL16, mips_gp_register);
252b5132
RH
5767 used_at = 0;
5768 }
5769 else
5770 {
5771 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 5772 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 5773 "d,v,t", tempreg, breg, mips_gp_register);
252b5132 5774 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
cdf6fd85 5775 treg, (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
5776 }
5777 }
5778 else
5779 abort ();
5780
5781 if (! used_at)
5782 return;
5783
5784 break;
5785
5786 case M_LI:
5787 case M_LI_S:
5788 load_register (&icnt, treg, &imm_expr, 0);
5789 return;
5790
5791 case M_DLI:
5792 load_register (&icnt, treg, &imm_expr, 1);
5793 return;
5794
5795 case M_LI_SS:
5796 if (imm_expr.X_op == O_constant)
5797 {
5798 load_register (&icnt, AT, &imm_expr, 0);
5799 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5800 "mtc1", "t,G", AT, treg);
5801 break;
5802 }
5803 else
5804 {
5805 assert (offset_expr.X_op == O_symbol
5806 && strcmp (segment_name (S_GET_SEGMENT
5807 (offset_expr.X_add_symbol)),
5808 ".lit4") == 0
5809 && offset_expr.X_add_number == 0);
5810 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
c9914766 5811 treg, (int) BFD_RELOC_MIPS_LITERAL, mips_gp_register);
252b5132
RH
5812 return;
5813 }
5814
5815 case M_LI_D:
ca4e0257
RS
5816 /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits
5817 wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high
5818 order 32 bits of the value and the low order 32 bits are either
5819 zero or in OFFSET_EXPR. */
252b5132
RH
5820 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
5821 {
ca4e0257 5822 if (HAVE_64BIT_GPRS)
252b5132
RH
5823 load_register (&icnt, treg, &imm_expr, 1);
5824 else
5825 {
5826 int hreg, lreg;
5827
5828 if (target_big_endian)
5829 {
5830 hreg = treg;
5831 lreg = treg + 1;
5832 }
5833 else
5834 {
5835 hreg = treg + 1;
5836 lreg = treg;
5837 }
5838
5839 if (hreg <= 31)
5840 load_register (&icnt, hreg, &imm_expr, 0);
5841 if (lreg <= 31)
5842 {
5843 if (offset_expr.X_op == O_absent)
ea1fb5dc 5844 move_register (&icnt, lreg, 0);
252b5132
RH
5845 else
5846 {
5847 assert (offset_expr.X_op == O_constant);
5848 load_register (&icnt, lreg, &offset_expr, 0);
5849 }
5850 }
5851 }
5852 return;
5853 }
5854
5855 /* We know that sym is in the .rdata section. First we get the
5856 upper 16 bits of the address. */
5857 if (mips_pic == NO_PIC)
5858 {
956cd1d6 5859 macro_build_lui (NULL, &icnt, &offset_expr, AT);
252b5132
RH
5860 }
5861 else if (mips_pic == SVR4_PIC)
5862 {
5863 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 5864 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766
TS
5865 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
5866 mips_gp_register);
252b5132
RH
5867 }
5868 else if (mips_pic == EMBEDDED_PIC)
5869 {
5870 /* For embedded PIC we pick up the entire address off $gp in
5871 a single instruction. */
5872 macro_build ((char *) NULL, &icnt, &offset_expr,
c9914766
TS
5873 HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu", "t,r,j", AT,
5874 mips_gp_register, (int) BFD_RELOC_GPREL16);
252b5132
RH
5875 offset_expr.X_op = O_constant;
5876 offset_expr.X_add_number = 0;
5877 }
5878 else
5879 abort ();
bdaaa2e1 5880
252b5132 5881 /* Now we load the register(s). */
ca4e0257 5882 if (HAVE_64BIT_GPRS)
252b5132
RH
5883 macro_build ((char *) NULL, &icnt, &offset_expr, "ld", "t,o(b)",
5884 treg, (int) BFD_RELOC_LO16, AT);
5885 else
5886 {
5887 macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
5888 treg, (int) BFD_RELOC_LO16, AT);
f9419b05 5889 if (treg != RA)
252b5132
RH
5890 {
5891 /* FIXME: How in the world do we deal with the possible
5892 overflow here? */
5893 offset_expr.X_add_number += 4;
5894 macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
5895 treg + 1, (int) BFD_RELOC_LO16, AT);
5896 }
5897 }
5898
5899 /* To avoid confusion in tc_gen_reloc, we must ensure that this
5900 does not become a variant frag. */
5901 frag_wane (frag_now);
5902 frag_new (0);
5903
5904 break;
5905
5906 case M_LI_DD:
ca4e0257
RS
5907 /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits
5908 wide, IMM_EXPR is the entire value and the GPRs are known to be 64
5909 bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of
5910 the value and the low order 32 bits are either zero or in
5911 OFFSET_EXPR. */
252b5132
RH
5912 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
5913 {
ca4e0257
RS
5914 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_FPRS);
5915 if (HAVE_64BIT_FPRS)
5916 {
5917 assert (HAVE_64BIT_GPRS);
5918 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5919 "dmtc1", "t,S", AT, treg);
5920 }
252b5132
RH
5921 else
5922 {
5923 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5924 "mtc1", "t,G", AT, treg + 1);
5925 if (offset_expr.X_op == O_absent)
5926 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5927 "mtc1", "t,G", 0, treg);
5928 else
5929 {
5930 assert (offset_expr.X_op == O_constant);
5931 load_register (&icnt, AT, &offset_expr, 0);
5932 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5933 "mtc1", "t,G", AT, treg);
5934 }
5935 }
5936 break;
5937 }
5938
5939 assert (offset_expr.X_op == O_symbol
5940 && offset_expr.X_add_number == 0);
5941 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
5942 if (strcmp (s, ".lit8") == 0)
5943 {
e7af610e 5944 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
5945 {
5946 macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
c9914766
TS
5947 "T,o(b)", treg, (int) BFD_RELOC_MIPS_LITERAL,
5948 mips_gp_register);
252b5132
RH
5949 return;
5950 }
c9914766 5951 breg = mips_gp_register;
252b5132
RH
5952 r = BFD_RELOC_MIPS_LITERAL;
5953 goto dob;
5954 }
5955 else
5956 {
5957 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
5958 if (mips_pic == SVR4_PIC)
5959 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 5960 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766
TS
5961 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
5962 mips_gp_register);
252b5132
RH
5963 else
5964 {
5965 /* FIXME: This won't work for a 64 bit address. */
956cd1d6 5966 macro_build_lui (NULL, &icnt, &offset_expr, AT);
252b5132 5967 }
bdaaa2e1 5968
e7af610e 5969 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
5970 {
5971 macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
5972 "T,o(b)", treg, (int) BFD_RELOC_LO16, AT);
5973
5974 /* To avoid confusion in tc_gen_reloc, we must ensure
5975 that this does not become a variant frag. */
5976 frag_wane (frag_now);
5977 frag_new (0);
5978
5979 break;
5980 }
5981 breg = AT;
5982 r = BFD_RELOC_LO16;
5983 goto dob;
5984 }
5985
5986 case M_L_DOB:
ec68c924 5987 if (mips_arch == CPU_R4650)
252b5132
RH
5988 {
5989 as_bad (_("opcode not supported on this processor"));
5990 return;
5991 }
5992 /* Even on a big endian machine $fn comes before $fn+1. We have
5993 to adjust when loading from memory. */
5994 r = BFD_RELOC_LO16;
5995 dob:
e7af610e 5996 assert (mips_opts.isa == ISA_MIPS1);
252b5132
RH
5997 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
5998 target_big_endian ? treg + 1 : treg,
5999 (int) r, breg);
6000 /* FIXME: A possible overflow which I don't know how to deal
6001 with. */
6002 offset_expr.X_add_number += 4;
6003 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
6004 target_big_endian ? treg : treg + 1,
6005 (int) r, breg);
6006
6007 /* To avoid confusion in tc_gen_reloc, we must ensure that this
6008 does not become a variant frag. */
6009 frag_wane (frag_now);
6010 frag_new (0);
6011
6012 if (breg != AT)
6013 return;
6014 break;
6015
6016 case M_L_DAB:
6017 /*
6018 * The MIPS assembler seems to check for X_add_number not
6019 * being double aligned and generating:
6020 * lui at,%hi(foo+1)
6021 * addu at,at,v1
6022 * addiu at,at,%lo(foo+1)
6023 * lwc1 f2,0(at)
6024 * lwc1 f3,4(at)
6025 * But, the resulting address is the same after relocation so why
6026 * generate the extra instruction?
6027 */
ec68c924 6028 if (mips_arch == CPU_R4650)
252b5132
RH
6029 {
6030 as_bad (_("opcode not supported on this processor"));
6031 return;
6032 }
bdaaa2e1 6033 /* Itbl support may require additional care here. */
252b5132 6034 coproc = 1;
e7af610e 6035 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
6036 {
6037 s = "ldc1";
6038 goto ld;
6039 }
6040
6041 s = "lwc1";
6042 fmt = "T,o(b)";
6043 goto ldd_std;
6044
6045 case M_S_DAB:
ec68c924 6046 if (mips_arch == CPU_R4650)
252b5132
RH
6047 {
6048 as_bad (_("opcode not supported on this processor"));
6049 return;
6050 }
6051
e7af610e 6052 if (mips_opts.isa != ISA_MIPS1)
252b5132
RH
6053 {
6054 s = "sdc1";
6055 goto st;
6056 }
6057
6058 s = "swc1";
6059 fmt = "T,o(b)";
bdaaa2e1 6060 /* Itbl support may require additional care here. */
252b5132
RH
6061 coproc = 1;
6062 goto ldd_std;
6063
6064 case M_LD_AB:
ca4e0257 6065 if (HAVE_64BIT_GPRS)
252b5132
RH
6066 {
6067 s = "ld";
6068 goto ld;
6069 }
6070
6071 s = "lw";
6072 fmt = "t,o(b)";
6073 goto ldd_std;
6074
6075 case M_SD_AB:
ca4e0257 6076 if (HAVE_64BIT_GPRS)
252b5132
RH
6077 {
6078 s = "sd";
6079 goto st;
6080 }
6081
6082 s = "sw";
6083 fmt = "t,o(b)";
6084
6085 ldd_std:
afdbd6d0
CD
6086 /* We do _not_ bother to allow embedded PIC (symbol-local_symbol)
6087 loads for the case of doing a pair of loads to simulate an 'ld'.
6088 This is not currently done by the compiler, and assembly coders
6089 writing embedded-pic code can cope. */
6090
252b5132
RH
6091 if (offset_expr.X_op != O_symbol
6092 && offset_expr.X_op != O_constant)
6093 {
6094 as_bad (_("expression too complex"));
6095 offset_expr.X_op = O_constant;
6096 }
6097
6098 /* Even on a big endian machine $fn comes before $fn+1. We have
6099 to adjust when loading from memory. We set coproc if we must
6100 load $fn+1 first. */
bdaaa2e1 6101 /* Itbl support may require additional care here. */
252b5132
RH
6102 if (! target_big_endian)
6103 coproc = 0;
6104
6105 if (mips_pic == NO_PIC
6106 || offset_expr.X_op == O_constant)
6107 {
f9419b05
TS
6108 char *p;
6109
252b5132 6110 /* If this is a reference to a GP relative symbol, we want
cdf6fd85
TS
6111 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6112 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
6113 If we have a base register, we use this
6114 addu $at,$breg,$gp
cdf6fd85
TS
6115 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6116 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
6117 If this is not a GP relative symbol, we want
6118 lui $at,<sym> (BFD_RELOC_HI16_S)
6119 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6120 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6121 If there is a base register, we add it to $at after the
6122 lui instruction. If there is a constant, we always use
6123 the last case. */
e7d556df 6124 if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET
252b5132
RH
6125 || nopic_need_relax (offset_expr.X_add_symbol, 1))
6126 {
6127 p = NULL;
6128 used_at = 1;
6129 }
6130 else
6131 {
6132 int off;
6133
6134 if (breg == 0)
6135 {
6136 frag_grow (28);
c9914766 6137 tempreg = mips_gp_register;
252b5132
RH
6138 off = 0;
6139 used_at = 0;
6140 }
6141 else
6142 {
6143 frag_grow (36);
6144 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6145 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 6146 "d,v,t", AT, breg, mips_gp_register);
252b5132
RH
6147 tempreg = AT;
6148 off = 4;
6149 used_at = 1;
6150 }
6151
beae10d5 6152 /* Itbl support may require additional care here. */
252b5132
RH
6153 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6154 coproc ? treg + 1 : treg,
cdf6fd85 6155 (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
6156 offset_expr.X_add_number += 4;
6157
6158 /* Set mips_optimize to 2 to avoid inserting an
6159 undesired nop. */
6160 hold_mips_optimize = mips_optimize;
6161 mips_optimize = 2;
beae10d5 6162 /* Itbl support may require additional care here. */
252b5132
RH
6163 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6164 coproc ? treg : treg + 1,
cdf6fd85 6165 (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
6166 mips_optimize = hold_mips_optimize;
6167
6168 p = frag_var (rs_machine_dependent, 12 + off, 0,
6169 RELAX_ENCODE (8 + off, 12 + off, 0, 4 + off, 1,
6170 used_at && mips_opts.noat),
956cd1d6 6171 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
6172
6173 /* We just generated two relocs. When tc_gen_reloc
6174 handles this case, it will skip the first reloc and
6175 handle the second. The second reloc already has an
6176 extra addend of 4, which we added above. We must
6177 subtract it out, and then subtract another 4 to make
6178 the first reloc come out right. The second reloc
6179 will come out right because we are going to add 4 to
6180 offset_expr when we build its instruction below.
6181
6182 If we have a symbol, then we don't want to include
6183 the offset, because it will wind up being included
6184 when we generate the reloc. */
6185
6186 if (offset_expr.X_op == O_constant)
6187 offset_expr.X_add_number -= 8;
6188 else
6189 {
6190 offset_expr.X_add_number = -4;
6191 offset_expr.X_op = O_constant;
6192 }
6193 }
6194 macro_build_lui (p, &icnt, &offset_expr, AT);
6195 if (p != NULL)
6196 p += 4;
6197 if (breg != 0)
6198 {
6199 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 6200 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
6201 "d,v,t", AT, breg, AT);
6202 if (p != NULL)
6203 p += 4;
6204 }
beae10d5 6205 /* Itbl support may require additional care here. */
252b5132
RH
6206 macro_build (p, &icnt, &offset_expr, s, fmt,
6207 coproc ? treg + 1 : treg,
6208 (int) BFD_RELOC_LO16, AT);
6209 if (p != NULL)
6210 p += 4;
6211 /* FIXME: How do we handle overflow here? */
6212 offset_expr.X_add_number += 4;
beae10d5 6213 /* Itbl support may require additional care here. */
252b5132
RH
6214 macro_build (p, &icnt, &offset_expr, s, fmt,
6215 coproc ? treg : treg + 1,
6216 (int) BFD_RELOC_LO16, AT);
bdaaa2e1 6217 }
252b5132
RH
6218 else if (mips_pic == SVR4_PIC && ! mips_big_got)
6219 {
6220 int off;
6221
6222 /* If this is a reference to an external symbol, we want
6223 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6224 nop
6225 <op> $treg,0($at)
6226 <op> $treg+1,4($at)
6227 Otherwise we want
6228 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6229 nop
6230 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6231 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6232 If there is a base register we add it to $at before the
6233 lwc1 instructions. If there is a constant we include it
6234 in the lwc1 instructions. */
6235 used_at = 1;
6236 expr1.X_add_number = offset_expr.X_add_number;
6237 offset_expr.X_add_number = 0;
6238 if (expr1.X_add_number < -0x8000
6239 || expr1.X_add_number >= 0x8000 - 4)
6240 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
6241 if (breg == 0)
6242 off = 0;
6243 else
6244 off = 4;
6245 frag_grow (24 + off);
6246 macro_build ((char *) NULL, &icnt, &offset_expr,
c9914766
TS
6247 HAVE_32BIT_ADDRESSES ? "lw" : "ld", "t,o(b)", AT,
6248 (int) BFD_RELOC_MIPS_GOT16, mips_gp_register);
252b5132
RH
6249 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
6250 if (breg != 0)
6251 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6252 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132 6253 "d,v,t", AT, breg, AT);
beae10d5 6254 /* Itbl support may require additional care here. */
252b5132
RH
6255 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6256 coproc ? treg + 1 : treg,
6257 (int) BFD_RELOC_LO16, AT);
6258 expr1.X_add_number += 4;
6259
6260 /* Set mips_optimize to 2 to avoid inserting an undesired
6261 nop. */
6262 hold_mips_optimize = mips_optimize;
6263 mips_optimize = 2;
beae10d5 6264 /* Itbl support may require additional care here. */
252b5132
RH
6265 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6266 coproc ? treg : treg + 1,
6267 (int) BFD_RELOC_LO16, AT);
6268 mips_optimize = hold_mips_optimize;
6269
6270 (void) frag_var (rs_machine_dependent, 0, 0,
6271 RELAX_ENCODE (0, 0, -16 - off, -8, 1, 0),
c4e7957c 6272 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
6273 }
6274 else if (mips_pic == SVR4_PIC)
6275 {
6276 int gpdel, off;
f9419b05 6277 char *p;
252b5132
RH
6278
6279 /* If this is a reference to an external symbol, we want
6280 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
6281 addu $at,$at,$gp
6282 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
6283 nop
6284 <op> $treg,0($at)
6285 <op> $treg+1,4($at)
6286 Otherwise we want
6287 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
6288 nop
6289 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
6290 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
6291 If there is a base register we add it to $at before the
6292 lwc1 instructions. If there is a constant we include it
6293 in the lwc1 instructions. */
6294 used_at = 1;
6295 expr1.X_add_number = offset_expr.X_add_number;
6296 offset_expr.X_add_number = 0;
6297 if (expr1.X_add_number < -0x8000
6298 || expr1.X_add_number >= 0x8000 - 4)
6299 as_bad (_("PIC code offset overflow (max 16 signed bits)"));
c9914766 6300 if (reg_needs_delay (mips_gp_register))
252b5132
RH
6301 gpdel = 4;
6302 else
6303 gpdel = 0;
6304 if (breg == 0)
6305 off = 0;
6306 else
6307 off = 4;
6308 frag_grow (56);
6309 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
6310 AT, (int) BFD_RELOC_MIPS_GOT_HI16);
6311 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6312 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 6313 "d,v,t", AT, AT, mips_gp_register);
252b5132 6314 macro_build ((char *) NULL, &icnt, &offset_expr,
ca4e0257 6315 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
252b5132
RH
6316 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT_LO16, AT);
6317 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
6318 if (breg != 0)
6319 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6320 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132 6321 "d,v,t", AT, breg, AT);
beae10d5 6322 /* Itbl support may require additional care here. */
252b5132
RH
6323 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6324 coproc ? treg + 1 : treg,
6325 (int) BFD_RELOC_LO16, AT);
6326 expr1.X_add_number += 4;
6327
6328 /* Set mips_optimize to 2 to avoid inserting an undesired
6329 nop. */
6330 hold_mips_optimize = mips_optimize;
6331 mips_optimize = 2;
beae10d5 6332 /* Itbl support may require additional care here. */
252b5132
RH
6333 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
6334 coproc ? treg : treg + 1,
6335 (int) BFD_RELOC_LO16, AT);
6336 mips_optimize = hold_mips_optimize;
6337 expr1.X_add_number -= 4;
6338
6339 p = frag_var (rs_machine_dependent, 16 + gpdel + off, 0,
6340 RELAX_ENCODE (24 + off, 16 + gpdel + off, gpdel,
6341 8 + gpdel + off, 1, 0),
c4e7957c 6342 offset_expr.X_add_symbol, 0, NULL);
252b5132
RH
6343 if (gpdel > 0)
6344 {
6345 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
6346 p += 4;
6347 }
6348 macro_build (p, &icnt, &offset_expr,
ca4e0257 6349 HAVE_32BIT_ADDRESSES ? "lw" : "ld",
c9914766
TS
6350 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16,
6351 mips_gp_register);
252b5132
RH
6352 p += 4;
6353 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
6354 p += 4;
6355 if (breg != 0)
6356 {
6357 macro_build (p, &icnt, (expressionS *) NULL,
ca4e0257 6358 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
6359 "d,v,t", AT, breg, AT);
6360 p += 4;
6361 }
beae10d5 6362 /* Itbl support may require additional care here. */
252b5132
RH
6363 macro_build (p, &icnt, &expr1, s, fmt,
6364 coproc ? treg + 1 : treg,
6365 (int) BFD_RELOC_LO16, AT);
6366 p += 4;
6367 expr1.X_add_number += 4;
6368
6369 /* Set mips_optimize to 2 to avoid inserting an undesired
6370 nop. */
6371 hold_mips_optimize = mips_optimize;
6372 mips_optimize = 2;
beae10d5 6373 /* Itbl support may require additional care here. */
252b5132
RH
6374 macro_build (p, &icnt, &expr1, s, fmt,
6375 coproc ? treg : treg + 1,
6376 (int) BFD_RELOC_LO16, AT);
6377 mips_optimize = hold_mips_optimize;
6378 }
6379 else if (mips_pic == EMBEDDED_PIC)
6380 {
6381 /* If there is no base register, we use
cdf6fd85
TS
6382 <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16)
6383 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16)
252b5132
RH
6384 If we have a base register, we use
6385 addu $at,$breg,$gp
cdf6fd85
TS
6386 <op> $treg,<sym>($at) (BFD_RELOC_GPREL16)
6387 <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16)
252b5132
RH
6388 */
6389 if (breg == 0)
6390 {
c9914766 6391 tempreg = mips_gp_register;
252b5132
RH
6392 used_at = 0;
6393 }
6394 else
6395 {
6396 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 6397 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 6398 "d,v,t", AT, breg, mips_gp_register);
252b5132
RH
6399 tempreg = AT;
6400 used_at = 1;
6401 }
6402
beae10d5 6403 /* Itbl support may require additional care here. */
252b5132
RH
6404 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6405 coproc ? treg + 1 : treg,
cdf6fd85 6406 (int) BFD_RELOC_GPREL16, tempreg);
252b5132 6407 offset_expr.X_add_number += 4;
beae10d5 6408 /* Itbl support may require additional care here. */
252b5132
RH
6409 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
6410 coproc ? treg : treg + 1,
cdf6fd85 6411 (int) BFD_RELOC_GPREL16, tempreg);
252b5132
RH
6412 }
6413 else
6414 abort ();
6415
6416 if (! used_at)
6417 return;
6418
6419 break;
6420
6421 case M_LD_OB:
6422 s = "lw";
6423 goto sd_ob;
6424 case M_SD_OB:
6425 s = "sw";
6426 sd_ob:
ca4e0257 6427 assert (HAVE_32BIT_ADDRESSES);
252b5132
RH
6428 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
6429 (int) BFD_RELOC_LO16, breg);
6430 offset_expr.X_add_number += 4;
6431 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg + 1,
6432 (int) BFD_RELOC_LO16, breg);
6433 return;
6434
6435 /* New code added to support COPZ instructions.
6436 This code builds table entries out of the macros in mip_opcodes.
6437 R4000 uses interlocks to handle coproc delays.
6438 Other chips (like the R3000) require nops to be inserted for delays.
6439
f72c8c98 6440 FIXME: Currently, we require that the user handle delays.
252b5132
RH
6441 In order to fill delay slots for non-interlocked chips,
6442 we must have a way to specify delays based on the coprocessor.
6443 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
6444 What are the side-effects of the cop instruction?
6445 What cache support might we have and what are its effects?
6446 Both coprocessor & memory require delays. how long???
bdaaa2e1 6447 What registers are read/set/modified?
252b5132
RH
6448
6449 If an itbl is provided to interpret cop instructions,
bdaaa2e1 6450 this knowledge can be encoded in the itbl spec. */
252b5132
RH
6451
6452 case M_COP0:
6453 s = "c0";
6454 goto copz;
6455 case M_COP1:
6456 s = "c1";
6457 goto copz;
6458 case M_COP2:
6459 s = "c2";
6460 goto copz;
6461 case M_COP3:
6462 s = "c3";
6463 copz:
6464 /* For now we just do C (same as Cz). The parameter will be
6465 stored in insn_opcode by mips_ip. */
6466 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "C",
6467 ip->insn_opcode);
6468 return;
6469
ea1fb5dc
RS
6470 case M_MOVE:
6471 move_register (&icnt, dreg, sreg);
6472 return;
6473
252b5132
RH
6474#ifdef LOSING_COMPILER
6475 default:
6476 /* Try and see if this is a new itbl instruction.
6477 This code builds table entries out of the macros in mip_opcodes.
6478 FIXME: For now we just assemble the expression and pass it's
6479 value along as a 32-bit immediate.
bdaaa2e1 6480 We may want to have the assembler assemble this value,
252b5132
RH
6481 so that we gain the assembler's knowledge of delay slots,
6482 symbols, etc.
6483 Would it be more efficient to use mask (id) here? */
bdaaa2e1 6484 if (itbl_have_entries
252b5132 6485 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
beae10d5 6486 {
252b5132
RH
6487 s = ip->insn_mo->name;
6488 s2 = "cop3";
6489 coproc = ITBL_DECODE_PNUM (immed_expr);;
6490 macro_build ((char *) NULL, &icnt, &immed_expr, s, "C");
6491 return;
beae10d5 6492 }
252b5132
RH
6493 macro2 (ip);
6494 return;
6495 }
6496 if (mips_opts.noat)
6497 as_warn (_("Macro used $at after \".set noat\""));
6498}
bdaaa2e1 6499
252b5132
RH
6500static void
6501macro2 (ip)
6502 struct mips_cl_insn *ip;
6503{
6504 register int treg, sreg, dreg, breg;
6505 int tempreg;
6506 int mask;
6507 int icnt = 0;
6508 int used_at;
6509 expressionS expr1;
6510 const char *s;
6511 const char *s2;
6512 const char *fmt;
6513 int likely = 0;
6514 int dbl = 0;
6515 int coproc = 0;
6516 int lr = 0;
6517 int imm = 0;
6518 int off;
6519 offsetT maxnum;
6520 bfd_reloc_code_real_type r;
6521 char *p;
bdaaa2e1 6522
252b5132
RH
6523 treg = (ip->insn_opcode >> 16) & 0x1f;
6524 dreg = (ip->insn_opcode >> 11) & 0x1f;
6525 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
6526 mask = ip->insn_mo->mask;
bdaaa2e1 6527
252b5132
RH
6528 expr1.X_op = O_constant;
6529 expr1.X_op_symbol = NULL;
6530 expr1.X_add_symbol = NULL;
6531 expr1.X_add_number = 1;
bdaaa2e1 6532
252b5132
RH
6533 switch (mask)
6534 {
6535#endif /* LOSING_COMPILER */
6536
6537 case M_DMUL:
6538 dbl = 1;
6539 case M_MUL:
2396cfb9
TS
6540 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6541 dbl ? "dmultu" : "multu", "s,t", sreg, treg);
6542 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6543 dreg);
252b5132
RH
6544 return;
6545
6546 case M_DMUL_I:
6547 dbl = 1;
6548 case M_MUL_I:
6549 /* The MIPS assembler some times generates shifts and adds. I'm
6550 not trying to be that fancy. GCC should do this for us
6551 anyway. */
6552 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 6553 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 6554 dbl ? "dmult" : "mult", "s,t", sreg, AT);
2396cfb9
TS
6555 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6556 dreg);
252b5132
RH
6557 break;
6558
6559 case M_DMULO_I:
6560 dbl = 1;
6561 case M_MULO_I:
6562 imm = 1;
6563 goto do_mulo;
6564
6565 case M_DMULO:
6566 dbl = 1;
6567 case M_MULO:
6568 do_mulo:
6569 mips_emit_delays (true);
6570 ++mips_opts.noreorder;
6571 mips_any_noreorder = 1;
6572 if (imm)
6573 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 6574 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 6575 dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg);
2396cfb9
TS
6576 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6577 dreg);
6578 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
f9419b05 6579 dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA);
2396cfb9
TS
6580 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mfhi", "d",
6581 AT);
252b5132 6582 if (mips_trap)
9bd7d936
MR
6583 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "tne",
6584 "s,t,q", dreg, AT, 6);
252b5132
RH
6585 else
6586 {
6587 expr1.X_add_number = 8;
2396cfb9
TS
6588 macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", dreg,
6589 AT);
6590 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
6591 0);
6592 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
6593 "c", 6);
252b5132
RH
6594 }
6595 --mips_opts.noreorder;
2396cfb9 6596 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d", dreg);
252b5132
RH
6597 break;
6598
6599 case M_DMULOU_I:
6600 dbl = 1;
6601 case M_MULOU_I:
6602 imm = 1;
6603 goto do_mulou;
6604
6605 case M_DMULOU:
6606 dbl = 1;
6607 case M_MULOU:
6608 do_mulou:
6609 mips_emit_delays (true);
6610 ++mips_opts.noreorder;
6611 mips_any_noreorder = 1;
6612 if (imm)
6613 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 6614 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
252b5132
RH
6615 dbl ? "dmultu" : "multu",
6616 "s,t", sreg, imm ? AT : treg);
2396cfb9
TS
6617 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mfhi", "d",
6618 AT);
6619 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "d",
6620 dreg);
252b5132 6621 if (mips_trap)
9bd7d936
MR
6622 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "tne",
6623 "s,t,q", AT, 0, 6);
252b5132
RH
6624 else
6625 {
6626 expr1.X_add_number = 8;
6627 macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", AT, 0);
2396cfb9
TS
6628 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "",
6629 0);
6630 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
6631 "c", 6);
252b5132
RH
6632 }
6633 --mips_opts.noreorder;
6634 break;
6635
771c7ce4
TS
6636 case M_DROL:
6637 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
6638 "d,v,t", AT, 0, treg);
6639 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
6640 "d,t,s", AT, sreg, AT);
6641 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
6642 "d,t,s", dreg, sreg, treg);
6643 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6644 "d,v,t", dreg, dreg, AT);
6645 break;
6646
252b5132 6647 case M_ROL:
2396cfb9
TS
6648 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "subu",
6649 "d,v,t", AT, 0, treg);
6650 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srlv",
6651 "d,t,s", AT, sreg, AT);
6652 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sllv",
6653 "d,t,s", dreg, sreg, treg);
6654 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6655 "d,v,t", dreg, dreg, AT);
252b5132
RH
6656 break;
6657
771c7ce4
TS
6658 case M_DROL_I:
6659 {
6660 unsigned int rot;
771c7ce4
TS
6661
6662 if (imm_expr.X_op != O_constant)
6663 as_bad (_("rotate count too large"));
6664 rot = imm_expr.X_add_number & 0x3f;
483fc7cd
RS
6665 if (rot == 0)
6666 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrl",
6667 "d,w,<", dreg, sreg, 0);
6668 else
6669 {
6670 char *l, *r;
6671
6672 l = (rot < 0x20) ? "dsll" : "dsll32";
6673 r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32";
6674 rot &= 0x1f;
6675 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
6676 "d,w,<", AT, sreg, rot);
6677 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
6678 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6679 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6680 "d,v,t", dreg, dreg, AT);
6681 }
771c7ce4
TS
6682 }
6683 break;
6684
252b5132 6685 case M_ROL_I:
771c7ce4
TS
6686 {
6687 unsigned int rot;
6688
6689 if (imm_expr.X_op != O_constant)
6690 as_bad (_("rotate count too large"));
6691 rot = imm_expr.X_add_number & 0x1f;
483fc7cd
RS
6692 if (rot == 0)
6693 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
6694 "d,w,<", dreg, sreg, 0);
6695 else
6696 {
6697 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
6698 "d,w,<", AT, sreg, rot);
6699 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
6700 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6701 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6702 "d,v,t", dreg, dreg, AT);
6703 }
771c7ce4
TS
6704 }
6705 break;
6706
6707 case M_DROR:
6708 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsubu",
6709 "d,v,t", AT, 0, treg);
6710 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsllv",
6711 "d,t,s", AT, sreg, AT);
6712 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrlv",
6713 "d,t,s", dreg, sreg, treg);
6714 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6715 "d,v,t", dreg, dreg, AT);
252b5132
RH
6716 break;
6717
6718 case M_ROR:
2396cfb9
TS
6719 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "subu",
6720 "d,v,t", AT, 0, treg);
6721 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sllv",
6722 "d,t,s", AT, sreg, AT);
6723 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srlv",
6724 "d,t,s", dreg, sreg, treg);
6725 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6726 "d,v,t", dreg, dreg, AT);
252b5132
RH
6727 break;
6728
771c7ce4
TS
6729 case M_DROR_I:
6730 {
6731 unsigned int rot;
771c7ce4
TS
6732
6733 if (imm_expr.X_op != O_constant)
6734 as_bad (_("rotate count too large"));
6735 rot = imm_expr.X_add_number & 0x3f;
483fc7cd
RS
6736 if (rot == 0)
6737 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "dsrl",
6738 "d,w,<", dreg, sreg, 0);
6739 else
6740 {
6741 char *l, *r;
6742
6743 r = (rot < 0x20) ? "dsrl" : "dsrl32";
6744 l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32";
6745 rot &= 0x1f;
6746 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, r,
6747 "d,w,<", AT, sreg, rot);
6748 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, l,
6749 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6750 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6751 "d,v,t", dreg, dreg, AT);
6752 }
771c7ce4
TS
6753 }
6754 break;
6755
252b5132 6756 case M_ROR_I:
771c7ce4
TS
6757 {
6758 unsigned int rot;
6759
6760 if (imm_expr.X_op != O_constant)
6761 as_bad (_("rotate count too large"));
6762 rot = imm_expr.X_add_number & 0x1f;
483fc7cd
RS
6763 if (rot == 0)
6764 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
6765 "d,w,<", dreg, sreg, 0);
6766 else
6767 {
6768 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl",
6769 "d,w,<", AT, sreg, rot);
6770 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll",
6771 "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f);
6772 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or",
6773 "d,v,t", dreg, dreg, AT);
6774 }
771c7ce4 6775 }
252b5132
RH
6776 break;
6777
6778 case M_S_DOB:
ec68c924 6779 if (mips_arch == CPU_R4650)
252b5132
RH
6780 {
6781 as_bad (_("opcode not supported on this processor"));
6782 return;
6783 }
e7af610e 6784 assert (mips_opts.isa == ISA_MIPS1);
252b5132
RH
6785 /* Even on a big endian machine $fn comes before $fn+1. We have
6786 to adjust when storing to memory. */
6787 macro_build ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
6788 target_big_endian ? treg + 1 : treg,
6789 (int) BFD_RELOC_LO16, breg);
6790 offset_expr.X_add_number += 4;
6791 macro_build ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
6792 target_big_endian ? treg : treg + 1,
6793 (int) BFD_RELOC_LO16, breg);
6794 return;
6795
6796 case M_SEQ:
6797 if (sreg == 0)
6798 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6799 treg, (int) BFD_RELOC_LO16);
6800 else if (treg == 0)
6801 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6802 sreg, (int) BFD_RELOC_LO16);
6803 else
6804 {
2396cfb9
TS
6805 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
6806 "d,v,t", dreg, sreg, treg);
252b5132
RH
6807 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6808 dreg, (int) BFD_RELOC_LO16);
6809 }
6810 return;
6811
6812 case M_SEQ_I:
6813 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6814 {
6815 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6816 sreg, (int) BFD_RELOC_LO16);
6817 return;
6818 }
6819 if (sreg == 0)
6820 {
6821 as_warn (_("Instruction %s: result is always false"),
6822 ip->insn_mo->name);
ea1fb5dc 6823 move_register (&icnt, dreg, 0);
252b5132
RH
6824 return;
6825 }
6826 if (imm_expr.X_op == O_constant
6827 && imm_expr.X_add_number >= 0
6828 && imm_expr.X_add_number < 0x10000)
6829 {
6830 macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i", dreg,
6831 sreg, (int) BFD_RELOC_LO16);
6832 used_at = 0;
6833 }
6834 else if (imm_expr.X_op == O_constant
6835 && imm_expr.X_add_number > -0x8000
6836 && imm_expr.X_add_number < 0)
6837 {
6838 imm_expr.X_add_number = -imm_expr.X_add_number;
6839 macro_build ((char *) NULL, &icnt, &imm_expr,
ca4e0257 6840 HAVE_32BIT_GPRS ? "addiu" : "daddiu",
252b5132
RH
6841 "t,r,j", dreg, sreg,
6842 (int) BFD_RELOC_LO16);
6843 used_at = 0;
6844 }
6845 else
6846 {
4d34fb5f 6847 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
6848 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
6849 "d,v,t", dreg, sreg, AT);
252b5132
RH
6850 used_at = 1;
6851 }
6852 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, dreg,
6853 (int) BFD_RELOC_LO16);
6854 if (used_at)
6855 break;
6856 return;
6857
6858 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
6859 s = "slt";
6860 goto sge;
6861 case M_SGEU:
6862 s = "sltu";
6863 sge:
2396cfb9
TS
6864 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6865 dreg, sreg, treg);
252b5132
RH
6866 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6867 (int) BFD_RELOC_LO16);
6868 return;
6869
6870 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
6871 case M_SGEU_I:
6872 if (imm_expr.X_op == O_constant
6873 && imm_expr.X_add_number >= -0x8000
6874 && imm_expr.X_add_number < 0x8000)
6875 {
6876 macro_build ((char *) NULL, &icnt, &imm_expr,
6877 mask == M_SGE_I ? "slti" : "sltiu",
6878 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
6879 used_at = 0;
6880 }
6881 else
6882 {
4d34fb5f 6883 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
6884 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6885 mask == M_SGE_I ? "slt" : "sltu", "d,v,t", dreg, sreg,
6886 AT);
252b5132
RH
6887 used_at = 1;
6888 }
6889 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6890 (int) BFD_RELOC_LO16);
6891 if (used_at)
6892 break;
6893 return;
6894
6895 case M_SGT: /* sreg > treg <==> treg < sreg */
6896 s = "slt";
6897 goto sgt;
6898 case M_SGTU:
6899 s = "sltu";
6900 sgt:
2396cfb9
TS
6901 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6902 dreg, treg, sreg);
252b5132
RH
6903 return;
6904
6905 case M_SGT_I: /* sreg > I <==> I < sreg */
6906 s = "slt";
6907 goto sgti;
6908 case M_SGTU_I:
6909 s = "sltu";
6910 sgti:
4d34fb5f 6911 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
6912 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6913 dreg, AT, sreg);
252b5132
RH
6914 break;
6915
2396cfb9 6916 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
252b5132
RH
6917 s = "slt";
6918 goto sle;
6919 case M_SLEU:
6920 s = "sltu";
6921 sle:
2396cfb9
TS
6922 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6923 dreg, treg, sreg);
252b5132
RH
6924 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6925 (int) BFD_RELOC_LO16);
6926 return;
6927
2396cfb9 6928 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
252b5132
RH
6929 s = "slt";
6930 goto slei;
6931 case M_SLEU_I:
6932 s = "sltu";
6933 slei:
4d34fb5f 6934 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
6935 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "d,v,t",
6936 dreg, AT, sreg);
252b5132
RH
6937 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6938 (int) BFD_RELOC_LO16);
6939 break;
6940
6941 case M_SLT_I:
6942 if (imm_expr.X_op == O_constant
6943 && imm_expr.X_add_number >= -0x8000
6944 && imm_expr.X_add_number < 0x8000)
6945 {
6946 macro_build ((char *) NULL, &icnt, &imm_expr, "slti", "t,r,j",
6947 dreg, sreg, (int) BFD_RELOC_LO16);
6948 return;
6949 }
4d34fb5f 6950 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
6951 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "slt", "d,v,t",
6952 dreg, sreg, AT);
252b5132
RH
6953 break;
6954
6955 case M_SLTU_I:
6956 if (imm_expr.X_op == O_constant
6957 && imm_expr.X_add_number >= -0x8000
6958 && imm_expr.X_add_number < 0x8000)
6959 {
6960 macro_build ((char *) NULL, &icnt, &imm_expr, "sltiu", "t,r,j",
6961 dreg, sreg, (int) BFD_RELOC_LO16);
6962 return;
6963 }
4d34fb5f 6964 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
6965 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6966 "d,v,t", dreg, sreg, AT);
252b5132
RH
6967 break;
6968
6969 case M_SNE:
6970 if (sreg == 0)
2396cfb9
TS
6971 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6972 "d,v,t", dreg, 0, treg);
252b5132 6973 else if (treg == 0)
2396cfb9
TS
6974 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6975 "d,v,t", dreg, 0, sreg);
252b5132
RH
6976 else
6977 {
2396cfb9
TS
6978 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
6979 "d,v,t", dreg, sreg, treg);
6980 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6981 "d,v,t", dreg, 0, dreg);
252b5132
RH
6982 }
6983 return;
6984
6985 case M_SNE_I:
6986 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6987 {
2396cfb9
TS
6988 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
6989 "d,v,t", dreg, 0, sreg);
252b5132
RH
6990 return;
6991 }
6992 if (sreg == 0)
6993 {
6994 as_warn (_("Instruction %s: result is always true"),
6995 ip->insn_mo->name);
6996 macro_build ((char *) NULL, &icnt, &expr1,
ca4e0257 6997 HAVE_32BIT_GPRS ? "addiu" : "daddiu",
252b5132
RH
6998 "t,r,j", dreg, 0, (int) BFD_RELOC_LO16);
6999 return;
7000 }
7001 if (imm_expr.X_op == O_constant
7002 && imm_expr.X_add_number >= 0
7003 && imm_expr.X_add_number < 0x10000)
7004 {
7005 macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i",
7006 dreg, sreg, (int) BFD_RELOC_LO16);
7007 used_at = 0;
7008 }
7009 else if (imm_expr.X_op == O_constant
7010 && imm_expr.X_add_number > -0x8000
7011 && imm_expr.X_add_number < 0)
7012 {
7013 imm_expr.X_add_number = -imm_expr.X_add_number;
7014 macro_build ((char *) NULL, &icnt, &imm_expr,
ca4e0257 7015 HAVE_32BIT_GPRS ? "addiu" : "daddiu",
252b5132
RH
7016 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
7017 used_at = 0;
7018 }
7019 else
7020 {
4d34fb5f 7021 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7022 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "xor",
7023 "d,v,t", dreg, sreg, AT);
252b5132
RH
7024 used_at = 1;
7025 }
2396cfb9
TS
7026 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sltu",
7027 "d,v,t", dreg, 0, dreg);
252b5132
RH
7028 if (used_at)
7029 break;
7030 return;
7031
7032 case M_DSUB_I:
7033 dbl = 1;
7034 case M_SUB_I:
7035 if (imm_expr.X_op == O_constant
7036 && imm_expr.X_add_number > -0x8000
7037 && imm_expr.X_add_number <= 0x8000)
7038 {
7039 imm_expr.X_add_number = -imm_expr.X_add_number;
7040 macro_build ((char *) NULL, &icnt, &imm_expr,
7041 dbl ? "daddi" : "addi",
7042 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
7043 return;
7044 }
7045 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 7046 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 7047 dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT);
252b5132
RH
7048 break;
7049
7050 case M_DSUBU_I:
7051 dbl = 1;
7052 case M_SUBU_I:
7053 if (imm_expr.X_op == O_constant
7054 && imm_expr.X_add_number > -0x8000
7055 && imm_expr.X_add_number <= 0x8000)
7056 {
7057 imm_expr.X_add_number = -imm_expr.X_add_number;
7058 macro_build ((char *) NULL, &icnt, &imm_expr,
7059 dbl ? "daddiu" : "addiu",
7060 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
7061 return;
7062 }
7063 load_register (&icnt, AT, &imm_expr, dbl);
2396cfb9 7064 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 7065 dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT);
252b5132
RH
7066 break;
7067
7068 case M_TEQ_I:
7069 s = "teq";
7070 goto trap;
7071 case M_TGE_I:
7072 s = "tge";
7073 goto trap;
7074 case M_TGEU_I:
7075 s = "tgeu";
7076 goto trap;
7077 case M_TLT_I:
7078 s = "tlt";
7079 goto trap;
7080 case M_TLTU_I:
7081 s = "tltu";
7082 goto trap;
7083 case M_TNE_I:
7084 s = "tne";
7085 trap:
4d34fb5f 7086 load_register (&icnt, AT, &imm_expr, HAVE_64BIT_GPRS);
2396cfb9
TS
7087 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "s,t", sreg,
7088 AT);
252b5132
RH
7089 break;
7090
252b5132 7091 case M_TRUNCWS:
43841e91 7092 case M_TRUNCWD:
e7af610e 7093 assert (mips_opts.isa == ISA_MIPS1);
252b5132
RH
7094 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
7095 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
7096
7097 /*
7098 * Is the double cfc1 instruction a bug in the mips assembler;
7099 * or is there a reason for it?
7100 */
7101 mips_emit_delays (true);
7102 ++mips_opts.noreorder;
7103 mips_any_noreorder = 1;
2396cfb9 7104 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "cfc1", "t,G",
f9419b05 7105 treg, RA);
2396cfb9 7106 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "cfc1", "t,G",
f9419b05 7107 treg, RA);
2396cfb9 7108 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
252b5132
RH
7109 expr1.X_add_number = 3;
7110 macro_build ((char *) NULL, &icnt, &expr1, "ori", "t,r,i", AT, treg,
7111 (int) BFD_RELOC_LO16);
7112 expr1.X_add_number = 2;
7113 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", AT, AT,
7114 (int) BFD_RELOC_LO16);
2396cfb9 7115 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "ctc1", "t,G",
f9419b05 7116 AT, RA);
2396cfb9
TS
7117 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
7118 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
252b5132 7119 mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S", dreg, sreg);
2396cfb9 7120 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "ctc1", "t,G",
f9419b05 7121 treg, RA);
2396cfb9 7122 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
252b5132
RH
7123 --mips_opts.noreorder;
7124 break;
7125
7126 case M_ULH:
7127 s = "lb";
7128 goto ulh;
7129 case M_ULHU:
7130 s = "lbu";
7131 ulh:
7132 if (offset_expr.X_add_number >= 0x7fff)
7133 as_bad (_("operand overflow"));
7134 /* avoid load delay */
7135 if (! target_big_endian)
f9419b05 7136 ++offset_expr.X_add_number;
252b5132
RH
7137 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
7138 (int) BFD_RELOC_LO16, breg);
7139 if (! target_big_endian)
f9419b05 7140 --offset_expr.X_add_number;
252b5132 7141 else
f9419b05 7142 ++offset_expr.X_add_number;
252b5132
RH
7143 macro_build ((char *) NULL, &icnt, &offset_expr, "lbu", "t,o(b)", AT,
7144 (int) BFD_RELOC_LO16, breg);
2396cfb9
TS
7145 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
7146 treg, treg, 8);
7147 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
7148 treg, treg, AT);
252b5132
RH
7149 break;
7150
7151 case M_ULD:
7152 s = "ldl";
7153 s2 = "ldr";
7154 off = 7;
7155 goto ulw;
7156 case M_ULW:
7157 s = "lwl";
7158 s2 = "lwr";
7159 off = 3;
7160 ulw:
7161 if (offset_expr.X_add_number >= 0x8000 - off)
7162 as_bad (_("operand overflow"));
7163 if (! target_big_endian)
7164 offset_expr.X_add_number += off;
7165 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
7166 (int) BFD_RELOC_LO16, breg);
7167 if (! target_big_endian)
7168 offset_expr.X_add_number -= off;
7169 else
7170 offset_expr.X_add_number += off;
7171 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
7172 (int) BFD_RELOC_LO16, breg);
7173 return;
7174
7175 case M_ULD_A:
7176 s = "ldl";
7177 s2 = "ldr";
7178 off = 7;
7179 goto ulwa;
7180 case M_ULW_A:
7181 s = "lwl";
7182 s2 = "lwr";
7183 off = 3;
7184 ulwa:
d6bc6245 7185 used_at = 1;
c9914766 7186 load_address (&icnt, AT, &offset_expr, &used_at);
252b5132
RH
7187 if (breg != 0)
7188 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 7189 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
7190 "d,v,t", AT, AT, breg);
7191 if (! target_big_endian)
7192 expr1.X_add_number = off;
7193 else
7194 expr1.X_add_number = 0;
7195 macro_build ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
7196 (int) BFD_RELOC_LO16, AT);
7197 if (! target_big_endian)
7198 expr1.X_add_number = 0;
7199 else
7200 expr1.X_add_number = off;
7201 macro_build ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
7202 (int) BFD_RELOC_LO16, AT);
7203 break;
7204
7205 case M_ULH_A:
7206 case M_ULHU_A:
d6bc6245 7207 used_at = 1;
c9914766 7208 load_address (&icnt, AT, &offset_expr, &used_at);
252b5132
RH
7209 if (breg != 0)
7210 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 7211 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
7212 "d,v,t", AT, AT, breg);
7213 if (target_big_endian)
7214 expr1.X_add_number = 0;
7215 macro_build ((char *) NULL, &icnt, &expr1,
7216 mask == M_ULH_A ? "lb" : "lbu", "t,o(b)", treg,
7217 (int) BFD_RELOC_LO16, AT);
7218 if (target_big_endian)
7219 expr1.X_add_number = 1;
7220 else
7221 expr1.X_add_number = 0;
7222 macro_build ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
7223 (int) BFD_RELOC_LO16, AT);
2396cfb9
TS
7224 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
7225 treg, treg, 8);
7226 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
7227 treg, treg, AT);
252b5132
RH
7228 break;
7229
7230 case M_USH:
7231 if (offset_expr.X_add_number >= 0x7fff)
7232 as_bad (_("operand overflow"));
7233 if (target_big_endian)
f9419b05 7234 ++offset_expr.X_add_number;
252b5132
RH
7235 macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", treg,
7236 (int) BFD_RELOC_LO16, breg);
2396cfb9
TS
7237 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
7238 AT, treg, 8);
252b5132 7239 if (target_big_endian)
f9419b05 7240 --offset_expr.X_add_number;
252b5132 7241 else
f9419b05 7242 ++offset_expr.X_add_number;
252b5132
RH
7243 macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", AT,
7244 (int) BFD_RELOC_LO16, breg);
7245 break;
7246
7247 case M_USD:
7248 s = "sdl";
7249 s2 = "sdr";
7250 off = 7;
7251 goto usw;
7252 case M_USW:
7253 s = "swl";
7254 s2 = "swr";
7255 off = 3;
7256 usw:
7257 if (offset_expr.X_add_number >= 0x8000 - off)
7258 as_bad (_("operand overflow"));
7259 if (! target_big_endian)
7260 offset_expr.X_add_number += off;
7261 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
7262 (int) BFD_RELOC_LO16, breg);
7263 if (! target_big_endian)
7264 offset_expr.X_add_number -= off;
7265 else
7266 offset_expr.X_add_number += off;
7267 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
7268 (int) BFD_RELOC_LO16, breg);
7269 return;
7270
7271 case M_USD_A:
7272 s = "sdl";
7273 s2 = "sdr";
7274 off = 7;
7275 goto uswa;
7276 case M_USW_A:
7277 s = "swl";
7278 s2 = "swr";
7279 off = 3;
7280 uswa:
d6bc6245 7281 used_at = 1;
c9914766 7282 load_address (&icnt, AT, &offset_expr, &used_at);
252b5132
RH
7283 if (breg != 0)
7284 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 7285 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
7286 "d,v,t", AT, AT, breg);
7287 if (! target_big_endian)
7288 expr1.X_add_number = off;
7289 else
7290 expr1.X_add_number = 0;
7291 macro_build ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
7292 (int) BFD_RELOC_LO16, AT);
7293 if (! target_big_endian)
7294 expr1.X_add_number = 0;
7295 else
7296 expr1.X_add_number = off;
7297 macro_build ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
7298 (int) BFD_RELOC_LO16, AT);
7299 break;
7300
7301 case M_USH_A:
d6bc6245 7302 used_at = 1;
c9914766 7303 load_address (&icnt, AT, &offset_expr, &used_at);
252b5132
RH
7304 if (breg != 0)
7305 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 7306 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
252b5132
RH
7307 "d,v,t", AT, AT, breg);
7308 if (! target_big_endian)
7309 expr1.X_add_number = 0;
7310 macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
7311 (int) BFD_RELOC_LO16, AT);
2396cfb9
TS
7312 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "srl", "d,w,<",
7313 treg, treg, 8);
252b5132
RH
7314 if (! target_big_endian)
7315 expr1.X_add_number = 1;
7316 else
7317 expr1.X_add_number = 0;
7318 macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
7319 (int) BFD_RELOC_LO16, AT);
7320 if (! target_big_endian)
7321 expr1.X_add_number = 0;
7322 else
7323 expr1.X_add_number = 1;
7324 macro_build ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
7325 (int) BFD_RELOC_LO16, AT);
2396cfb9
TS
7326 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "sll", "d,w,<",
7327 treg, treg, 8);
7328 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "or", "d,v,t",
7329 treg, treg, AT);
252b5132
RH
7330 break;
7331
7332 default:
7333 /* FIXME: Check if this is one of the itbl macros, since they
bdaaa2e1 7334 are added dynamically. */
252b5132
RH
7335 as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name);
7336 break;
7337 }
7338 if (mips_opts.noat)
7339 as_warn (_("Macro used $at after \".set noat\""));
7340}
7341
7342/* Implement macros in mips16 mode. */
7343
7344static void
7345mips16_macro (ip)
7346 struct mips_cl_insn *ip;
7347{
7348 int mask;
7349 int xreg, yreg, zreg, tmp;
7350 int icnt;
7351 expressionS expr1;
7352 int dbl;
7353 const char *s, *s2, *s3;
7354
7355 mask = ip->insn_mo->mask;
7356
7357 xreg = (ip->insn_opcode >> MIPS16OP_SH_RX) & MIPS16OP_MASK_RX;
7358 yreg = (ip->insn_opcode >> MIPS16OP_SH_RY) & MIPS16OP_MASK_RY;
7359 zreg = (ip->insn_opcode >> MIPS16OP_SH_RZ) & MIPS16OP_MASK_RZ;
7360
7361 icnt = 0;
7362
7363 expr1.X_op = O_constant;
7364 expr1.X_op_symbol = NULL;
7365 expr1.X_add_symbol = NULL;
7366 expr1.X_add_number = 1;
7367
7368 dbl = 0;
7369
7370 switch (mask)
7371 {
7372 default:
7373 internalError ();
7374
7375 case M_DDIV_3:
7376 dbl = 1;
7377 case M_DIV_3:
7378 s = "mflo";
7379 goto do_div3;
7380 case M_DREM_3:
7381 dbl = 1;
7382 case M_REM_3:
7383 s = "mfhi";
7384 do_div3:
7385 mips_emit_delays (true);
7386 ++mips_opts.noreorder;
7387 mips_any_noreorder = 1;
2396cfb9 7388 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
252b5132
RH
7389 dbl ? "ddiv" : "div",
7390 "0,x,y", xreg, yreg);
7391 expr1.X_add_number = 2;
7392 macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
2396cfb9
TS
7393 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break", "6",
7394 7);
bdaaa2e1 7395
252b5132
RH
7396 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
7397 since that causes an overflow. We should do that as well,
7398 but I don't see how to do the comparisons without a temporary
7399 register. */
7400 --mips_opts.noreorder;
2396cfb9 7401 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "x", zreg);
252b5132
RH
7402 break;
7403
7404 case M_DIVU_3:
7405 s = "divu";
7406 s2 = "mflo";
7407 goto do_divu3;
7408 case M_REMU_3:
7409 s = "divu";
7410 s2 = "mfhi";
7411 goto do_divu3;
7412 case M_DDIVU_3:
7413 s = "ddivu";
7414 s2 = "mflo";
7415 goto do_divu3;
7416 case M_DREMU_3:
7417 s = "ddivu";
7418 s2 = "mfhi";
7419 do_divu3:
7420 mips_emit_delays (true);
7421 ++mips_opts.noreorder;
7422 mips_any_noreorder = 1;
2396cfb9
TS
7423 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "0,x,y",
7424 xreg, yreg);
252b5132
RH
7425 expr1.X_add_number = 2;
7426 macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
98d3f06f
KH
7427 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "break",
7428 "6", 7);
252b5132 7429 --mips_opts.noreorder;
2396cfb9 7430 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s2, "x", zreg);
252b5132
RH
7431 break;
7432
7433 case M_DMUL:
7434 dbl = 1;
7435 case M_MUL:
2396cfb9 7436 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
9a41af64 7437 dbl ? "dmultu" : "multu", "x,y", xreg, yreg);
2396cfb9
TS
7438 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "mflo", "x",
7439 zreg);
252b5132
RH
7440 return;
7441
7442 case M_DSUBU_I:
7443 dbl = 1;
7444 goto do_subu;
7445 case M_SUBU_I:
7446 do_subu:
7447 if (imm_expr.X_op != O_constant)
7448 as_bad (_("Unsupported large constant"));
7449 imm_expr.X_add_number = -imm_expr.X_add_number;
7450 macro_build ((char *) NULL, &icnt, &imm_expr,
9a41af64 7451 dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg);
252b5132
RH
7452 break;
7453
7454 case M_SUBU_I_2:
7455 if (imm_expr.X_op != O_constant)
7456 as_bad (_("Unsupported large constant"));
7457 imm_expr.X_add_number = -imm_expr.X_add_number;
7458 macro_build ((char *) NULL, &icnt, &imm_expr, "addiu",
7459 "x,k", xreg);
7460 break;
7461
7462 case M_DSUBU_I_2:
7463 if (imm_expr.X_op != O_constant)
7464 as_bad (_("Unsupported large constant"));
7465 imm_expr.X_add_number = -imm_expr.X_add_number;
7466 macro_build ((char *) NULL, &icnt, &imm_expr, "daddiu",
7467 "y,j", yreg);
7468 break;
7469
7470 case M_BEQ:
7471 s = "cmp";
7472 s2 = "bteqz";
7473 goto do_branch;
7474 case M_BNE:
7475 s = "cmp";
7476 s2 = "btnez";
7477 goto do_branch;
7478 case M_BLT:
7479 s = "slt";
7480 s2 = "btnez";
7481 goto do_branch;
7482 case M_BLTU:
7483 s = "sltu";
7484 s2 = "btnez";
7485 goto do_branch;
7486 case M_BLE:
7487 s = "slt";
7488 s2 = "bteqz";
7489 goto do_reverse_branch;
7490 case M_BLEU:
7491 s = "sltu";
7492 s2 = "bteqz";
7493 goto do_reverse_branch;
7494 case M_BGE:
7495 s = "slt";
7496 s2 = "bteqz";
7497 goto do_branch;
7498 case M_BGEU:
7499 s = "sltu";
7500 s2 = "bteqz";
7501 goto do_branch;
7502 case M_BGT:
7503 s = "slt";
7504 s2 = "btnez";
7505 goto do_reverse_branch;
7506 case M_BGTU:
7507 s = "sltu";
7508 s2 = "btnez";
7509
7510 do_reverse_branch:
7511 tmp = xreg;
7512 xreg = yreg;
7513 yreg = tmp;
7514
7515 do_branch:
7516 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "x,y",
7517 xreg, yreg);
7518 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
7519 break;
7520
7521 case M_BEQ_I:
7522 s = "cmpi";
7523 s2 = "bteqz";
7524 s3 = "x,U";
7525 goto do_branch_i;
7526 case M_BNE_I:
7527 s = "cmpi";
7528 s2 = "btnez";
7529 s3 = "x,U";
7530 goto do_branch_i;
7531 case M_BLT_I:
7532 s = "slti";
7533 s2 = "btnez";
7534 s3 = "x,8";
7535 goto do_branch_i;
7536 case M_BLTU_I:
7537 s = "sltiu";
7538 s2 = "btnez";
7539 s3 = "x,8";
7540 goto do_branch_i;
7541 case M_BLE_I:
7542 s = "slti";
7543 s2 = "btnez";
7544 s3 = "x,8";
7545 goto do_addone_branch_i;
7546 case M_BLEU_I:
7547 s = "sltiu";
7548 s2 = "btnez";
7549 s3 = "x,8";
7550 goto do_addone_branch_i;
7551 case M_BGE_I:
7552 s = "slti";
7553 s2 = "bteqz";
7554 s3 = "x,8";
7555 goto do_branch_i;
7556 case M_BGEU_I:
7557 s = "sltiu";
7558 s2 = "bteqz";
7559 s3 = "x,8";
7560 goto do_branch_i;
7561 case M_BGT_I:
7562 s = "slti";
7563 s2 = "bteqz";
7564 s3 = "x,8";
7565 goto do_addone_branch_i;
7566 case M_BGTU_I:
7567 s = "sltiu";
7568 s2 = "bteqz";
7569 s3 = "x,8";
7570
7571 do_addone_branch_i:
7572 if (imm_expr.X_op != O_constant)
7573 as_bad (_("Unsupported large constant"));
7574 ++imm_expr.X_add_number;
7575
7576 do_branch_i:
7577 macro_build ((char *) NULL, &icnt, &imm_expr, s, s3, xreg);
7578 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
7579 break;
7580
7581 case M_ABS:
7582 expr1.X_add_number = 0;
98d3f06f 7583 macro_build ((char *) NULL, &icnt, &expr1, "slti", "x,8", yreg);
252b5132 7584 if (xreg != yreg)
ea1fb5dc 7585 move_register (&icnt, xreg, yreg);
252b5132
RH
7586 expr1.X_add_number = 2;
7587 macro_build ((char *) NULL, &icnt, &expr1, "bteqz", "p");
7588 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
7589 "neg", "x,w", xreg, xreg);
7590 }
7591}
7592
7593/* For consistency checking, verify that all bits are specified either
7594 by the match/mask part of the instruction definition, or by the
7595 operand list. */
7596static int
7597validate_mips_insn (opc)
7598 const struct mips_opcode *opc;
7599{
7600 const char *p = opc->args;
7601 char c;
7602 unsigned long used_bits = opc->mask;
7603
7604 if ((used_bits & opc->match) != opc->match)
7605 {
7606 as_bad (_("internal: bad mips opcode (mask error): %s %s"),
7607 opc->name, opc->args);
7608 return 0;
7609 }
7610#define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
7611 while (*p)
7612 switch (c = *p++)
7613 {
7614 case ',': break;
7615 case '(': break;
7616 case ')': break;
7617 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7618 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
7619 case 'A': break;
4372b673 7620 case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break;
252b5132
RH
7621 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
7622 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7623 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7624 case 'F': break;
7625 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
156c2f8b 7626 case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break;
252b5132 7627 case 'I': break;
e972090a 7628 case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break;
252b5132
RH
7629 case 'L': break;
7630 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
7631 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
deec1734
CD
7632 case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break;
7633 case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL);
7634 USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
7635 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
7636 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7637 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
7638 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7639 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
deec1734
CD
7640 case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
7641 case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
7642 case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
252b5132
RH
7643 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
7644 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7645 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
7646 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
7647 case 'f': break;
7648 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
7649 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7650 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7651 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
7652 case 'l': break;
7653 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7654 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
7655 case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break;
7656 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7657 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7658 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7659 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
7660 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
7661 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
7662 case 'x': break;
7663 case 'z': break;
7664 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
4372b673
NC
7665 case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD);
7666 USE_BITS (OP_MASK_RT, OP_SH_RT); break;
252b5132
RH
7667 default:
7668 as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"),
7669 c, opc->name, opc->args);
7670 return 0;
7671 }
7672#undef USE_BITS
7673 if (used_bits != 0xffffffff)
7674 {
7675 as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"),
7676 ~used_bits & 0xffffffff, opc->name, opc->args);
7677 return 0;
7678 }
7679 return 1;
7680}
7681
7682/* This routine assembles an instruction into its binary format. As a
7683 side effect, it sets one of the global variables imm_reloc or
7684 offset_reloc to the type of relocation to do if one of the operands
7685 is an address expression. */
7686
7687static void
7688mips_ip (str, ip)
7689 char *str;
7690 struct mips_cl_insn *ip;
7691{
7692 char *s;
7693 const char *args;
43841e91 7694 char c = 0;
252b5132
RH
7695 struct mips_opcode *insn;
7696 char *argsStart;
7697 unsigned int regno;
7698 unsigned int lastregno = 0;
7699 char *s_reset;
7700 char save_c = 0;
252b5132
RH
7701
7702 insn_error = NULL;
7703
7704 /* If the instruction contains a '.', we first try to match an instruction
7705 including the '.'. Then we try again without the '.'. */
7706 insn = NULL;
3882b010 7707 for (s = str; *s != '\0' && !ISSPACE (*s); ++s)
252b5132
RH
7708 continue;
7709
7710 /* If we stopped on whitespace, then replace the whitespace with null for
7711 the call to hash_find. Save the character we replaced just in case we
7712 have to re-parse the instruction. */
3882b010 7713 if (ISSPACE (*s))
252b5132
RH
7714 {
7715 save_c = *s;
7716 *s++ = '\0';
7717 }
bdaaa2e1 7718
252b5132
RH
7719 insn = (struct mips_opcode *) hash_find (op_hash, str);
7720
7721 /* If we didn't find the instruction in the opcode table, try again, but
7722 this time with just the instruction up to, but not including the
7723 first '.'. */
7724 if (insn == NULL)
7725 {
bdaaa2e1 7726 /* Restore the character we overwrite above (if any). */
252b5132
RH
7727 if (save_c)
7728 *(--s) = save_c;
7729
7730 /* Scan up to the first '.' or whitespace. */
3882b010
L
7731 for (s = str;
7732 *s != '\0' && *s != '.' && !ISSPACE (*s);
7733 ++s)
252b5132
RH
7734 continue;
7735
7736 /* If we did not find a '.', then we can quit now. */
7737 if (*s != '.')
7738 {
7739 insn_error = "unrecognized opcode";
7740 return;
7741 }
7742
7743 /* Lookup the instruction in the hash table. */
7744 *s++ = '\0';
7745 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
7746 {
7747 insn_error = "unrecognized opcode";
7748 return;
7749 }
252b5132
RH
7750 }
7751
7752 argsStart = s;
7753 for (;;)
7754 {
252b5132
RH
7755 boolean ok;
7756
7757 assert (strcmp (insn->name, str) == 0);
7758
1f25f5d3
CD
7759 if (OPCODE_IS_MEMBER (insn,
7760 (mips_opts.isa
aec421e0 7761 | (mips_opts.mips16 ? INSN_MIPS16 : 0)
deec1734 7762 | (mips_opts.ase_mdmx ? INSN_MDMX : 0)
98d3f06f 7763 | (mips_opts.ase_mips3d ? INSN_MIPS3D : 0)),
1f25f5d3 7764 mips_arch))
252b5132 7765 ok = true;
bdaaa2e1 7766 else
252b5132 7767 ok = false;
bdaaa2e1 7768
252b5132
RH
7769 if (insn->pinfo != INSN_MACRO)
7770 {
ec68c924 7771 if (mips_arch == CPU_R4650 && (insn->pinfo & FP_D) != 0)
252b5132
RH
7772 ok = false;
7773 }
7774
7775 if (! ok)
7776 {
7777 if (insn + 1 < &mips_opcodes[NUMOPCODES]
7778 && strcmp (insn->name, insn[1].name) == 0)
7779 {
7780 ++insn;
7781 continue;
7782 }
252b5132 7783 else
beae10d5 7784 {
268f6bed
L
7785 if (!insn_error)
7786 {
7787 static char buf[100];
316f5878
RS
7788 if (mips_arch_info->is_isa)
7789 sprintf (buf,
7790 _("opcode not supported at this ISA level (%s)"),
7791 mips_cpu_info_from_isa (mips_opts.isa)->name);
7792 else
7793 sprintf (buf,
7794 _("opcode not supported on this processor: %s (%s)"),
7795 mips_arch_info->name,
7796 mips_cpu_info_from_isa (mips_opts.isa)->name);
268f6bed
L
7797 insn_error = buf;
7798 }
7799 if (save_c)
7800 *(--s) = save_c;
2bd7f1f3 7801 return;
252b5132 7802 }
252b5132
RH
7803 }
7804
7805 ip->insn_mo = insn;
7806 ip->insn_opcode = insn->match;
268f6bed 7807 insn_error = NULL;
252b5132
RH
7808 for (args = insn->args;; ++args)
7809 {
deec1734
CD
7810 int is_mdmx;
7811
ad8d3bb3 7812 s += strspn (s, " \t");
deec1734 7813 is_mdmx = 0;
252b5132
RH
7814 switch (*args)
7815 {
7816 case '\0': /* end of args */
7817 if (*s == '\0')
7818 return;
7819 break;
7820
7821 case ',':
7822 if (*s++ == *args)
7823 continue;
7824 s--;
7825 switch (*++args)
7826 {
7827 case 'r':
7828 case 'v':
38487616 7829 ip->insn_opcode |= lastregno << OP_SH_RS;
252b5132
RH
7830 continue;
7831
7832 case 'w':
38487616
TS
7833 ip->insn_opcode |= lastregno << OP_SH_RT;
7834 continue;
7835
252b5132 7836 case 'W':
38487616 7837 ip->insn_opcode |= lastregno << OP_SH_FT;
252b5132
RH
7838 continue;
7839
7840 case 'V':
38487616 7841 ip->insn_opcode |= lastregno << OP_SH_FS;
252b5132
RH
7842 continue;
7843 }
7844 break;
7845
7846 case '(':
7847 /* Handle optional base register.
7848 Either the base register is omitted or
bdaaa2e1 7849 we must have a left paren. */
252b5132
RH
7850 /* This is dependent on the next operand specifier
7851 is a base register specification. */
7852 assert (args[1] == 'b' || args[1] == '5'
7853 || args[1] == '-' || args[1] == '4');
7854 if (*s == '\0')
7855 return;
7856
7857 case ')': /* these must match exactly */
7858 if (*s++ == *args)
7859 continue;
7860 break;
7861
7862 case '<': /* must be at least one digit */
7863 /*
7864 * According to the manual, if the shift amount is greater
b6ff326e
KH
7865 * than 31 or less than 0, then the shift amount should be
7866 * mod 32. In reality the mips assembler issues an error.
252b5132
RH
7867 * We issue a warning and mask out all but the low 5 bits.
7868 */
7869 my_getExpression (&imm_expr, s);
7870 check_absolute_expr (ip, &imm_expr);
7871 if ((unsigned long) imm_expr.X_add_number > 31)
7872 {
793b27f4
TS
7873 as_warn (_("Improper shift amount (%lu)"),
7874 (unsigned long) imm_expr.X_add_number);
38487616 7875 imm_expr.X_add_number &= OP_MASK_SHAMT;
252b5132 7876 }
38487616 7877 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_SHAMT;
252b5132
RH
7878 imm_expr.X_op = O_absent;
7879 s = expr_end;
7880 continue;
7881
7882 case '>': /* shift amount minus 32 */
7883 my_getExpression (&imm_expr, s);
7884 check_absolute_expr (ip, &imm_expr);
7885 if ((unsigned long) imm_expr.X_add_number < 32
7886 || (unsigned long) imm_expr.X_add_number > 63)
7887 break;
38487616 7888 ip->insn_opcode |= (imm_expr.X_add_number - 32) << OP_SH_SHAMT;
252b5132
RH
7889 imm_expr.X_op = O_absent;
7890 s = expr_end;
7891 continue;
7892
252b5132
RH
7893 case 'k': /* cache code */
7894 case 'h': /* prefx code */
7895 my_getExpression (&imm_expr, s);
7896 check_absolute_expr (ip, &imm_expr);
7897 if ((unsigned long) imm_expr.X_add_number > 31)
7898 {
7899 as_warn (_("Invalid value for `%s' (%lu)"),
7900 ip->insn_mo->name,
7901 (unsigned long) imm_expr.X_add_number);
7902 imm_expr.X_add_number &= 0x1f;
7903 }
7904 if (*args == 'k')
7905 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CACHE;
7906 else
7907 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_PREFX;
7908 imm_expr.X_op = O_absent;
7909 s = expr_end;
7910 continue;
7911
7912 case 'c': /* break code */
7913 my_getExpression (&imm_expr, s);
7914 check_absolute_expr (ip, &imm_expr);
793b27f4 7915 if ((unsigned long) imm_expr.X_add_number > 1023)
252b5132 7916 {
793b27f4
TS
7917 as_warn (_("Illegal break code (%lu)"),
7918 (unsigned long) imm_expr.X_add_number);
38487616 7919 imm_expr.X_add_number &= OP_MASK_CODE;
252b5132 7920 }
38487616 7921 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE;
252b5132
RH
7922 imm_expr.X_op = O_absent;
7923 s = expr_end;
7924 continue;
7925
7926 case 'q': /* lower break code */
7927 my_getExpression (&imm_expr, s);
7928 check_absolute_expr (ip, &imm_expr);
793b27f4 7929 if ((unsigned long) imm_expr.X_add_number > 1023)
252b5132 7930 {
793b27f4
TS
7931 as_warn (_("Illegal lower break code (%lu)"),
7932 (unsigned long) imm_expr.X_add_number);
38487616 7933 imm_expr.X_add_number &= OP_MASK_CODE2;
252b5132 7934 }
38487616 7935 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE2;
252b5132
RH
7936 imm_expr.X_op = O_absent;
7937 s = expr_end;
7938 continue;
7939
4372b673 7940 case 'B': /* 20-bit syscall/break code. */
156c2f8b 7941 my_getExpression (&imm_expr, s);
156c2f8b 7942 check_absolute_expr (ip, &imm_expr);
793b27f4
TS
7943 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20)
7944 as_warn (_("Illegal 20-bit code (%lu)"),
7945 (unsigned long) imm_expr.X_add_number);
38487616 7946 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE20;
252b5132
RH
7947 imm_expr.X_op = O_absent;
7948 s = expr_end;
7949 continue;
7950
98d3f06f 7951 case 'C': /* Coprocessor code */
beae10d5 7952 my_getExpression (&imm_expr, s);
252b5132 7953 check_absolute_expr (ip, &imm_expr);
98d3f06f 7954 if ((unsigned long) imm_expr.X_add_number >= (1 << 25))
252b5132 7955 {
793b27f4
TS
7956 as_warn (_("Coproccesor code > 25 bits (%lu)"),
7957 (unsigned long) imm_expr.X_add_number);
98d3f06f 7958 imm_expr.X_add_number &= ((1 << 25) - 1);
252b5132 7959 }
beae10d5
KH
7960 ip->insn_opcode |= imm_expr.X_add_number;
7961 imm_expr.X_op = O_absent;
7962 s = expr_end;
7963 continue;
252b5132 7964
4372b673
NC
7965 case 'J': /* 19-bit wait code. */
7966 my_getExpression (&imm_expr, s);
7967 check_absolute_expr (ip, &imm_expr);
793b27f4
TS
7968 if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19)
7969 as_warn (_("Illegal 19-bit code (%lu)"),
7970 (unsigned long) imm_expr.X_add_number);
38487616 7971 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE19;
4372b673
NC
7972 imm_expr.X_op = O_absent;
7973 s = expr_end;
7974 continue;
7975
252b5132 7976 case 'P': /* Performance register */
beae10d5 7977 my_getExpression (&imm_expr, s);
252b5132 7978 check_absolute_expr (ip, &imm_expr);
beae10d5 7979 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
252b5132 7980 {
793b27f4
TS
7981 as_warn (_("Invalid performance register (%lu)"),
7982 (unsigned long) imm_expr.X_add_number);
38487616 7983 imm_expr.X_add_number &= OP_MASK_PERFREG;
252b5132 7984 }
38487616 7985 ip->insn_opcode |= (imm_expr.X_add_number << OP_SH_PERFREG);
beae10d5
KH
7986 imm_expr.X_op = O_absent;
7987 s = expr_end;
7988 continue;
252b5132
RH
7989
7990 case 'b': /* base register */
7991 case 'd': /* destination register */
7992 case 's': /* source register */
7993 case 't': /* target register */
7994 case 'r': /* both target and source */
7995 case 'v': /* both dest and source */
7996 case 'w': /* both dest and target */
7997 case 'E': /* coprocessor target register */
7998 case 'G': /* coprocessor destination register */
7999 case 'x': /* ignore register name */
8000 case 'z': /* must be zero register */
4372b673 8001 case 'U': /* destination register (clo/clz). */
252b5132
RH
8002 s_reset = s;
8003 if (s[0] == '$')
8004 {
8005
3882b010 8006 if (ISDIGIT (s[1]))
252b5132
RH
8007 {
8008 ++s;
8009 regno = 0;
8010 do
8011 {
8012 regno *= 10;
8013 regno += *s - '0';
8014 ++s;
8015 }
3882b010 8016 while (ISDIGIT (*s));
252b5132
RH
8017 if (regno > 31)
8018 as_bad (_("Invalid register number (%d)"), regno);
8019 }
8020 else if (*args == 'E' || *args == 'G')
8021 goto notreg;
8022 else
8023 {
76db943d
TS
8024 if (s[1] == 'r' && s[2] == 'a')
8025 {
8026 s += 3;
8027 regno = RA;
8028 }
8029 else if (s[1] == 'f' && s[2] == 'p')
252b5132
RH
8030 {
8031 s += 3;
8032 regno = FP;
8033 }
8034 else if (s[1] == 's' && s[2] == 'p')
8035 {
8036 s += 3;
8037 regno = SP;
8038 }
8039 else if (s[1] == 'g' && s[2] == 'p')
8040 {
8041 s += 3;
8042 regno = GP;
8043 }
8044 else if (s[1] == 'a' && s[2] == 't')
8045 {
8046 s += 3;
8047 regno = AT;
8048 }
8049 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
8050 {
8051 s += 4;
8052 regno = KT0;
8053 }
8054 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
8055 {
8056 s += 4;
8057 regno = KT1;
8058 }
85b51719
TS
8059 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
8060 {
8061 s += 5;
8062 regno = ZERO;
8063 }
252b5132
RH
8064 else if (itbl_have_entries)
8065 {
8066 char *p, *n;
d7ba4a77 8067 unsigned long r;
252b5132 8068
d7ba4a77 8069 p = s + 1; /* advance past '$' */
252b5132
RH
8070 n = itbl_get_field (&p); /* n is name */
8071
d7ba4a77
ILT
8072 /* See if this is a register defined in an
8073 itbl entry. */
8074 if (itbl_get_reg_val (n, &r))
252b5132
RH
8075 {
8076 /* Get_field advances to the start of
8077 the next field, so we need to back
d7ba4a77 8078 rack to the end of the last field. */
bdaaa2e1 8079 if (p)
252b5132 8080 s = p - 1;
bdaaa2e1 8081 else
d7ba4a77 8082 s = strchr (s, '\0');
252b5132
RH
8083 regno = r;
8084 }
8085 else
8086 goto notreg;
beae10d5 8087 }
252b5132
RH
8088 else
8089 goto notreg;
8090 }
8091 if (regno == AT
8092 && ! mips_opts.noat
8093 && *args != 'E'
8094 && *args != 'G')
8095 as_warn (_("Used $at without \".set noat\""));
8096 c = *args;
8097 if (*s == ' ')
f9419b05 8098 ++s;
252b5132
RH
8099 if (args[1] != *s)
8100 {
8101 if (c == 'r' || c == 'v' || c == 'w')
8102 {
8103 regno = lastregno;
8104 s = s_reset;
f9419b05 8105 ++args;
252b5132
RH
8106 }
8107 }
8108 /* 'z' only matches $0. */
8109 if (c == 'z' && regno != 0)
8110 break;
8111
bdaaa2e1
KH
8112 /* Now that we have assembled one operand, we use the args string
8113 * to figure out where it goes in the instruction. */
252b5132
RH
8114 switch (c)
8115 {
8116 case 'r':
8117 case 's':
8118 case 'v':
8119 case 'b':
38487616 8120 ip->insn_opcode |= regno << OP_SH_RS;
252b5132
RH
8121 break;
8122 case 'd':
8123 case 'G':
38487616 8124 ip->insn_opcode |= regno << OP_SH_RD;
252b5132 8125 break;
4372b673 8126 case 'U':
38487616
TS
8127 ip->insn_opcode |= regno << OP_SH_RD;
8128 ip->insn_opcode |= regno << OP_SH_RT;
4372b673 8129 break;
252b5132
RH
8130 case 'w':
8131 case 't':
8132 case 'E':
38487616 8133 ip->insn_opcode |= regno << OP_SH_RT;
252b5132
RH
8134 break;
8135 case 'x':
8136 /* This case exists because on the r3000 trunc
8137 expands into a macro which requires a gp
8138 register. On the r6000 or r4000 it is
8139 assembled into a single instruction which
8140 ignores the register. Thus the insn version
8141 is MIPS_ISA2 and uses 'x', and the macro
8142 version is MIPS_ISA1 and uses 't'. */
8143 break;
8144 case 'z':
8145 /* This case is for the div instruction, which
8146 acts differently if the destination argument
8147 is $0. This only matches $0, and is checked
8148 outside the switch. */
8149 break;
8150 case 'D':
8151 /* Itbl operand; not yet implemented. FIXME ?? */
8152 break;
8153 /* What about all other operands like 'i', which
8154 can be specified in the opcode table? */
8155 }
8156 lastregno = regno;
8157 continue;
8158 }
8159 notreg:
8160 switch (*args++)
8161 {
8162 case 'r':
8163 case 'v':
38487616 8164 ip->insn_opcode |= lastregno << OP_SH_RS;
252b5132
RH
8165 continue;
8166 case 'w':
38487616 8167 ip->insn_opcode |= lastregno << OP_SH_RT;
252b5132
RH
8168 continue;
8169 }
8170 break;
8171
deec1734
CD
8172 case 'O': /* MDMX alignment immediate constant. */
8173 my_getExpression (&imm_expr, s);
8174 check_absolute_expr (ip, &imm_expr);
8175 if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN)
8176 {
8177 as_warn ("Improper align amount (%ld), using low bits",
8178 (long) imm_expr.X_add_number);
8179 imm_expr.X_add_number &= OP_MASK_ALN;
8180 }
8181 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_ALN;
8182 imm_expr.X_op = O_absent;
8183 s = expr_end;
8184 continue;
8185
8186 case 'Q': /* MDMX vector, element sel, or const. */
8187 if (s[0] != '$')
8188 {
8189 /* MDMX Immediate. */
8190 my_getExpression (&imm_expr, s);
8191 check_absolute_expr (ip, &imm_expr);
8192 if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT)
8193 {
8194 as_warn (_("Invalid MDMX Immediate (%ld)"),
8195 (long) imm_expr.X_add_number);
8196 imm_expr.X_add_number &= OP_MASK_FT;
8197 }
8198 imm_expr.X_add_number &= OP_MASK_FT;
8199 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8200 ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL;
8201 else
8202 ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL;
8203 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_FT;
8204 imm_expr.X_op = O_absent;
8205 s = expr_end;
8206 continue;
8207 }
8208 /* Not MDMX Immediate. Fall through. */
8209 case 'X': /* MDMX destination register. */
8210 case 'Y': /* MDMX source register. */
8211 case 'Z': /* MDMX target register. */
8212 is_mdmx = 1;
252b5132
RH
8213 case 'D': /* floating point destination register */
8214 case 'S': /* floating point source register */
8215 case 'T': /* floating point target register */
8216 case 'R': /* floating point source register */
8217 case 'V':
8218 case 'W':
8219 s_reset = s;
deec1734
CD
8220 /* Accept $fN for FP and MDMX register numbers, and in
8221 addition accept $vN for MDMX register numbers. */
8222 if ((s[0] == '$' && s[1] == 'f' && ISDIGIT (s[2]))
8223 || (is_mdmx != 0 && s[0] == '$' && s[1] == 'v'
8224 && ISDIGIT (s[2])))
252b5132
RH
8225 {
8226 s += 2;
8227 regno = 0;
8228 do
8229 {
8230 regno *= 10;
8231 regno += *s - '0';
8232 ++s;
8233 }
3882b010 8234 while (ISDIGIT (*s));
252b5132
RH
8235
8236 if (regno > 31)
8237 as_bad (_("Invalid float register number (%d)"), regno);
8238
8239 if ((regno & 1) != 0
ca4e0257 8240 && HAVE_32BIT_FPRS
252b5132
RH
8241 && ! (strcmp (str, "mtc1") == 0
8242 || strcmp (str, "mfc1") == 0
8243 || strcmp (str, "lwc1") == 0
8244 || strcmp (str, "swc1") == 0
8245 || strcmp (str, "l.s") == 0
8246 || strcmp (str, "s.s") == 0))
8247 as_warn (_("Float register should be even, was %d"),
8248 regno);
8249
8250 c = *args;
8251 if (*s == ' ')
f9419b05 8252 ++s;
252b5132
RH
8253 if (args[1] != *s)
8254 {
8255 if (c == 'V' || c == 'W')
8256 {
8257 regno = lastregno;
8258 s = s_reset;
f9419b05 8259 ++args;
252b5132
RH
8260 }
8261 }
8262 switch (c)
8263 {
8264 case 'D':
deec1734 8265 case 'X':
38487616 8266 ip->insn_opcode |= regno << OP_SH_FD;
252b5132
RH
8267 break;
8268 case 'V':
8269 case 'S':
deec1734 8270 case 'Y':
38487616 8271 ip->insn_opcode |= regno << OP_SH_FS;
252b5132 8272 break;
deec1734
CD
8273 case 'Q':
8274 /* This is like 'Z', but also needs to fix the MDMX
8275 vector/scalar select bits. Note that the
8276 scalar immediate case is handled above. */
8277 if (*s == '[')
8278 {
8279 int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL));
8280 int max_el = (is_qh ? 3 : 7);
8281 s++;
8282 my_getExpression(&imm_expr, s);
8283 check_absolute_expr (ip, &imm_expr);
8284 s = expr_end;
8285 if (imm_expr.X_add_number > max_el)
8286 as_bad(_("Bad element selector %ld"),
8287 (long) imm_expr.X_add_number);
8288 imm_expr.X_add_number &= max_el;
8289 ip->insn_opcode |= (imm_expr.X_add_number
8290 << (OP_SH_VSEL +
8291 (is_qh ? 2 : 1)));
8292 if (*s != ']')
8293 as_warn(_("Expecting ']' found '%s'"), s);
8294 else
8295 s++;
8296 }
8297 else
8298 {
8299 if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL))
8300 ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH
8301 << OP_SH_VSEL);
8302 else
8303 ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB <<
8304 OP_SH_VSEL);
8305 }
8306 /* Fall through */
252b5132
RH
8307 case 'W':
8308 case 'T':
deec1734 8309 case 'Z':
38487616 8310 ip->insn_opcode |= regno << OP_SH_FT;
252b5132
RH
8311 break;
8312 case 'R':
38487616 8313 ip->insn_opcode |= regno << OP_SH_FR;
252b5132
RH
8314 break;
8315 }
8316 lastregno = regno;
8317 continue;
8318 }
8319
252b5132
RH
8320 switch (*args++)
8321 {
8322 case 'V':
38487616 8323 ip->insn_opcode |= lastregno << OP_SH_FS;
252b5132
RH
8324 continue;
8325 case 'W':
38487616 8326 ip->insn_opcode |= lastregno << OP_SH_FT;
252b5132
RH
8327 continue;
8328 }
8329 break;
8330
8331 case 'I':
8332 my_getExpression (&imm_expr, s);
8333 if (imm_expr.X_op != O_big
8334 && imm_expr.X_op != O_constant)
8335 insn_error = _("absolute expression required");
8336 s = expr_end;
8337 continue;
8338
8339 case 'A':
8340 my_getExpression (&offset_expr, s);
f6688943 8341 *imm_reloc = BFD_RELOC_32;
252b5132
RH
8342 s = expr_end;
8343 continue;
8344
8345 case 'F':
8346 case 'L':
8347 case 'f':
8348 case 'l':
8349 {
8350 int f64;
ca4e0257 8351 int using_gprs;
252b5132
RH
8352 char *save_in;
8353 char *err;
8354 unsigned char temp[8];
8355 int len;
8356 unsigned int length;
8357 segT seg;
8358 subsegT subseg;
8359 char *p;
8360
8361 /* These only appear as the last operand in an
8362 instruction, and every instruction that accepts
8363 them in any variant accepts them in all variants.
8364 This means we don't have to worry about backing out
8365 any changes if the instruction does not match.
8366
8367 The difference between them is the size of the
8368 floating point constant and where it goes. For 'F'
8369 and 'L' the constant is 64 bits; for 'f' and 'l' it
8370 is 32 bits. Where the constant is placed is based
8371 on how the MIPS assembler does things:
8372 F -- .rdata
8373 L -- .lit8
8374 f -- immediate value
8375 l -- .lit4
8376
8377 The .lit4 and .lit8 sections are only used if
8378 permitted by the -G argument.
8379
8380 When generating embedded PIC code, we use the
8381 .lit8 section but not the .lit4 section (we can do
8382 .lit4 inline easily; we need to put .lit8
8383 somewhere in the data segment, and using .lit8
8384 permits the linker to eventually combine identical
ca4e0257
RS
8385 .lit8 entries).
8386
8387 The code below needs to know whether the target register
8388 is 32 or 64 bits wide. It relies on the fact 'f' and
8389 'F' are used with GPR-based instructions and 'l' and
8390 'L' are used with FPR-based instructions. */
252b5132
RH
8391
8392 f64 = *args == 'F' || *args == 'L';
ca4e0257 8393 using_gprs = *args == 'F' || *args == 'f';
252b5132
RH
8394
8395 save_in = input_line_pointer;
8396 input_line_pointer = s;
8397 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
8398 length = len;
8399 s = input_line_pointer;
8400 input_line_pointer = save_in;
8401 if (err != NULL && *err != '\0')
8402 {
8403 as_bad (_("Bad floating point constant: %s"), err);
8404 memset (temp, '\0', sizeof temp);
8405 length = f64 ? 8 : 4;
8406 }
8407
156c2f8b 8408 assert (length == (unsigned) (f64 ? 8 : 4));
252b5132
RH
8409
8410 if (*args == 'f'
8411 || (*args == 'l'
8412 && (! USE_GLOBAL_POINTER_OPT
8413 || mips_pic == EMBEDDED_PIC
8414 || g_switch_value < 4
8415 || (temp[0] == 0 && temp[1] == 0)
8416 || (temp[2] == 0 && temp[3] == 0))))
8417 {
8418 imm_expr.X_op = O_constant;
8419 if (! target_big_endian)
8420 imm_expr.X_add_number = bfd_getl32 (temp);
8421 else
8422 imm_expr.X_add_number = bfd_getb32 (temp);
8423 }
8424 else if (length > 4
119d663a 8425 && ! mips_disable_float_construction
ca4e0257
RS
8426 /* Constants can only be constructed in GPRs and
8427 copied to FPRs if the GPRs are at least as wide
8428 as the FPRs. Force the constant into memory if
8429 we are using 64-bit FPRs but the GPRs are only
8430 32 bits wide. */
8431 && (using_gprs
8432 || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS))
252b5132
RH
8433 && ((temp[0] == 0 && temp[1] == 0)
8434 || (temp[2] == 0 && temp[3] == 0))
8435 && ((temp[4] == 0 && temp[5] == 0)
8436 || (temp[6] == 0 && temp[7] == 0)))
8437 {
ca4e0257
RS
8438 /* The value is simple enough to load with a couple of
8439 instructions. If using 32-bit registers, set
8440 imm_expr to the high order 32 bits and offset_expr to
8441 the low order 32 bits. Otherwise, set imm_expr to
8442 the entire 64 bit constant. */
8443 if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS)
252b5132
RH
8444 {
8445 imm_expr.X_op = O_constant;
8446 offset_expr.X_op = O_constant;
8447 if (! target_big_endian)
8448 {
8449 imm_expr.X_add_number = bfd_getl32 (temp + 4);
8450 offset_expr.X_add_number = bfd_getl32 (temp);
8451 }
8452 else
8453 {
8454 imm_expr.X_add_number = bfd_getb32 (temp);
8455 offset_expr.X_add_number = bfd_getb32 (temp + 4);
8456 }
8457 if (offset_expr.X_add_number == 0)
8458 offset_expr.X_op = O_absent;
8459 }
8460 else if (sizeof (imm_expr.X_add_number) > 4)
8461 {
8462 imm_expr.X_op = O_constant;
8463 if (! target_big_endian)
8464 imm_expr.X_add_number = bfd_getl64 (temp);
8465 else
8466 imm_expr.X_add_number = bfd_getb64 (temp);
8467 }
8468 else
8469 {
8470 imm_expr.X_op = O_big;
8471 imm_expr.X_add_number = 4;
8472 if (! target_big_endian)
8473 {
8474 generic_bignum[0] = bfd_getl16 (temp);
8475 generic_bignum[1] = bfd_getl16 (temp + 2);
8476 generic_bignum[2] = bfd_getl16 (temp + 4);
8477 generic_bignum[3] = bfd_getl16 (temp + 6);
8478 }
8479 else
8480 {
8481 generic_bignum[0] = bfd_getb16 (temp + 6);
8482 generic_bignum[1] = bfd_getb16 (temp + 4);
8483 generic_bignum[2] = bfd_getb16 (temp + 2);
8484 generic_bignum[3] = bfd_getb16 (temp);
8485 }
8486 }
8487 }
8488 else
8489 {
8490 const char *newname;
8491 segT new_seg;
8492
8493 /* Switch to the right section. */
8494 seg = now_seg;
8495 subseg = now_subseg;
8496 switch (*args)
8497 {
8498 default: /* unused default case avoids warnings. */
8499 case 'L':
8500 newname = RDATA_SECTION_NAME;
bb2d6cd7
GK
8501 if ((USE_GLOBAL_POINTER_OPT && g_switch_value >= 8)
8502 || mips_pic == EMBEDDED_PIC)
252b5132
RH
8503 newname = ".lit8";
8504 break;
8505 case 'F':
bb2d6cd7
GK
8506 if (mips_pic == EMBEDDED_PIC)
8507 newname = ".lit8";
8508 else
8509 newname = RDATA_SECTION_NAME;
252b5132
RH
8510 break;
8511 case 'l':
8512 assert (!USE_GLOBAL_POINTER_OPT
8513 || g_switch_value >= 4);
8514 newname = ".lit4";
8515 break;
8516 }
8517 new_seg = subseg_new (newname, (subsegT) 0);
8518 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
8519 bfd_set_section_flags (stdoutput, new_seg,
8520 (SEC_ALLOC
8521 | SEC_LOAD
8522 | SEC_READONLY
8523 | SEC_DATA));
8524 frag_align (*args == 'l' ? 2 : 3, 0, 0);
8525 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
8526 && strcmp (TARGET_OS, "elf") != 0)
8527 record_alignment (new_seg, 4);
8528 else
8529 record_alignment (new_seg, *args == 'l' ? 2 : 3);
8530 if (seg == now_seg)
8531 as_bad (_("Can't use floating point insn in this section"));
8532
8533 /* Set the argument to the current address in the
8534 section. */
8535 offset_expr.X_op = O_symbol;
8536 offset_expr.X_add_symbol =
8537 symbol_new ("L0\001", now_seg,
8538 (valueT) frag_now_fix (), frag_now);
8539 offset_expr.X_add_number = 0;
8540
8541 /* Put the floating point number into the section. */
8542 p = frag_more ((int) length);
8543 memcpy (p, temp, length);
8544
8545 /* Switch back to the original section. */
8546 subseg_set (seg, subseg);
8547 }
8548 }
8549 continue;
8550
8551 case 'i': /* 16 bit unsigned immediate */
8552 case 'j': /* 16 bit signed immediate */
f6688943 8553 *imm_reloc = BFD_RELOC_LO16;
252b5132 8554 c = my_getSmallExpression (&imm_expr, s);
fb1b3232 8555 if (c != S_EX_NONE)
252b5132 8556 {
fb1b3232 8557 if (c != S_EX_LO)
252b5132 8558 {
fdb987ee
RS
8559 if (c == S_EX_HI)
8560 {
8561 *imm_reloc = BFD_RELOC_HI16_S;
8562 imm_unmatched_hi = true;
8563 }
ad8d3bb3 8564#ifdef OBJ_ELF
fb1b3232 8565 else if (c == S_EX_HIGHEST)
98d3f06f 8566 *imm_reloc = BFD_RELOC_MIPS_HIGHEST;
fb1b3232 8567 else if (c == S_EX_HIGHER)
98d3f06f 8568 *imm_reloc = BFD_RELOC_MIPS_HIGHER;
ad8d3bb3
TS
8569 else if (c == S_EX_GP_REL)
8570 {
8571 /* This occurs in NewABI only. */
8572 c = my_getSmallExpression (&imm_expr, s);
8573 if (c != S_EX_NEG)
8574 as_bad (_("bad composition of relocations"));
8575 else
8576 {
8577 c = my_getSmallExpression (&imm_expr, s);
8578 if (c != S_EX_LO)
8579 as_bad (_("bad composition of relocations"));
8580 else
8581 {
8582 imm_reloc[0] = BFD_RELOC_GPREL16;
8583 imm_reloc[1] = BFD_RELOC_MIPS_SUB;
8584 imm_reloc[2] = BFD_RELOC_LO16;
8585 }
8586 }
8587 }
8588#endif
252b5132 8589 else
f6688943 8590 *imm_reloc = BFD_RELOC_HI16;
252b5132
RH
8591 }
8592 else if (imm_expr.X_op == O_constant)
8593 imm_expr.X_add_number &= 0xffff;
8594 }
8595 if (*args == 'i')
8596 {
fb1b3232 8597 if ((c == S_EX_NONE && imm_expr.X_op != O_constant)
252b5132 8598 || ((imm_expr.X_add_number < 0
beae10d5
KH
8599 || imm_expr.X_add_number >= 0x10000)
8600 && imm_expr.X_op == O_constant))
252b5132
RH
8601 {
8602 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8603 !strcmp (insn->name, insn[1].name))
8604 break;
2ae7e77b
AH
8605 if (imm_expr.X_op == O_constant
8606 || imm_expr.X_op == O_big)
252b5132
RH
8607 as_bad (_("16 bit expression not in range 0..65535"));
8608 }
8609 }
8610 else
8611 {
8612 int more;
8613 offsetT max;
8614
8615 /* The upper bound should be 0x8000, but
8616 unfortunately the MIPS assembler accepts numbers
8617 from 0x8000 to 0xffff and sign extends them, and
8618 we want to be compatible. We only permit this
8619 extended range for an instruction which does not
8620 provide any further alternates, since those
8621 alternates may handle other cases. People should
8622 use the numbers they mean, rather than relying on
8623 a mysterious sign extension. */
8624 more = (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8625 strcmp (insn->name, insn[1].name) == 0);
8626 if (more)
8627 max = 0x8000;
8628 else
8629 max = 0x10000;
fb1b3232 8630 if ((c == S_EX_NONE && imm_expr.X_op != O_constant)
252b5132 8631 || ((imm_expr.X_add_number < -0x8000
beae10d5
KH
8632 || imm_expr.X_add_number >= max)
8633 && imm_expr.X_op == O_constant)
252b5132
RH
8634 || (more
8635 && imm_expr.X_add_number < 0
ca4e0257 8636 && HAVE_64BIT_GPRS
252b5132
RH
8637 && imm_expr.X_unsigned
8638 && sizeof (imm_expr.X_add_number) <= 4))
8639 {
8640 if (more)
8641 break;
2ae7e77b
AH
8642 if (imm_expr.X_op == O_constant
8643 || imm_expr.X_op == O_big)
252b5132
RH
8644 as_bad (_("16 bit expression not in range -32768..32767"));
8645 }
8646 }
8647 s = expr_end;
8648 continue;
8649
8650 case 'o': /* 16 bit offset */
8651 c = my_getSmallExpression (&offset_expr, s);
8652
8653 /* If this value won't fit into a 16 bit offset, then go
8654 find a macro that will generate the 32 bit offset
afdbd6d0 8655 code pattern. */
fb1b3232 8656 if (c == S_EX_NONE
252b5132
RH
8657 && (offset_expr.X_op != O_constant
8658 || offset_expr.X_add_number >= 0x8000
afdbd6d0 8659 || offset_expr.X_add_number < -0x8000))
252b5132
RH
8660 break;
8661
fb1b3232 8662 if (c == S_EX_HI)
252b5132
RH
8663 {
8664 if (offset_expr.X_op != O_constant)
8665 break;
8666 offset_expr.X_add_number =
8667 (offset_expr.X_add_number >> 16) & 0xffff;
8668 }
f6688943 8669 *offset_reloc = BFD_RELOC_LO16;
252b5132
RH
8670 s = expr_end;
8671 continue;
8672
8673 case 'p': /* pc relative offset */
cb56d3d3 8674 if (mips_pic == EMBEDDED_PIC)
f6688943 8675 *offset_reloc = BFD_RELOC_16_PCREL_S2;
cb56d3d3 8676 else
f6688943 8677 *offset_reloc = BFD_RELOC_16_PCREL;
252b5132
RH
8678 my_getExpression (&offset_expr, s);
8679 s = expr_end;
8680 continue;
8681
8682 case 'u': /* upper 16 bits */
8683 c = my_getSmallExpression (&imm_expr, s);
f6688943 8684 *imm_reloc = BFD_RELOC_LO16;
e7d556df 8685 if (c != S_EX_NONE)
252b5132 8686 {
fb1b3232 8687 if (c != S_EX_LO)
252b5132 8688 {
fdb987ee 8689 if (c == S_EX_HI)
252b5132 8690 {
f6688943 8691 *imm_reloc = BFD_RELOC_HI16_S;
252b5132
RH
8692 imm_unmatched_hi = true;
8693 }
645dc66c
TS
8694#ifdef OBJ_ELF
8695 else if (c == S_EX_HIGHEST)
98d3f06f 8696 *imm_reloc = BFD_RELOC_MIPS_HIGHEST;
ad8d3bb3
TS
8697 else if (c == S_EX_GP_REL)
8698 {
8699 /* This occurs in NewABI only. */
8700 c = my_getSmallExpression (&imm_expr, s);
8701 if (c != S_EX_NEG)
8702 as_bad (_("bad composition of relocations"));
8703 else
8704 {
8705 c = my_getSmallExpression (&imm_expr, s);
8706 if (c != S_EX_HI)
8707 as_bad (_("bad composition of relocations"));
8708 else
8709 {
8710 imm_reloc[0] = BFD_RELOC_GPREL16;
8711 imm_reloc[1] = BFD_RELOC_MIPS_SUB;
8712 imm_reloc[2] = BFD_RELOC_HI16_S;
8713 }
8714 }
8715 }
8716#endif
252b5132 8717 else
f6688943 8718 *imm_reloc = BFD_RELOC_HI16;
252b5132
RH
8719 }
8720 else if (imm_expr.X_op == O_constant)
8721 imm_expr.X_add_number &= 0xffff;
8722 }
fdb987ee
RS
8723 else if (imm_expr.X_op == O_constant
8724 && (imm_expr.X_add_number < 0
8725 || imm_expr.X_add_number >= 0x10000))
252b5132
RH
8726 as_bad (_("lui expression not in range 0..65535"));
8727 s = expr_end;
8728 continue;
8729
8730 case 'a': /* 26 bit address */
8731 my_getExpression (&offset_expr, s);
8732 s = expr_end;
f6688943 8733 *offset_reloc = BFD_RELOC_MIPS_JMP;
252b5132
RH
8734 continue;
8735
8736 case 'N': /* 3 bit branch condition code */
8737 case 'M': /* 3 bit compare condition code */
8738 if (strncmp (s, "$fcc", 4) != 0)
8739 break;
8740 s += 4;
8741 regno = 0;
8742 do
8743 {
8744 regno *= 10;
8745 regno += *s - '0';
8746 ++s;
8747 }
3882b010 8748 while (ISDIGIT (*s));
252b5132
RH
8749 if (regno > 7)
8750 as_bad (_("invalid condition code register $fcc%d"), regno);
8751 if (*args == 'N')
8752 ip->insn_opcode |= regno << OP_SH_BCC;
8753 else
8754 ip->insn_opcode |= regno << OP_SH_CCC;
beae10d5 8755 continue;
252b5132 8756
156c2f8b
NC
8757 case 'H':
8758 if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X'))
8759 s += 2;
3882b010 8760 if (ISDIGIT (*s))
156c2f8b
NC
8761 {
8762 c = 0;
8763 do
8764 {
8765 c *= 10;
8766 c += *s - '0';
8767 ++s;
8768 }
3882b010 8769 while (ISDIGIT (*s));
156c2f8b
NC
8770 }
8771 else
8772 c = 8; /* Invalid sel value. */
8773
8774 if (c > 7)
8775 as_bad (_("invalid coprocessor sub-selection value (0-7)"));
8776 ip->insn_opcode |= c;
8777 continue;
8778
252b5132
RH
8779 default:
8780 as_bad (_("bad char = '%c'\n"), *args);
8781 internalError ();
8782 }
8783 break;
8784 }
8785 /* Args don't match. */
8786 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8787 !strcmp (insn->name, insn[1].name))
8788 {
8789 ++insn;
8790 s = argsStart;
268f6bed 8791 insn_error = _("illegal operands");
252b5132
RH
8792 continue;
8793 }
268f6bed
L
8794 if (save_c)
8795 *(--s) = save_c;
252b5132
RH
8796 insn_error = _("illegal operands");
8797 return;
8798 }
8799}
8800
8801/* This routine assembles an instruction into its binary format when
8802 assembling for the mips16. As a side effect, it sets one of the
8803 global variables imm_reloc or offset_reloc to the type of
8804 relocation to do if one of the operands is an address expression.
8805 It also sets mips16_small and mips16_ext if the user explicitly
8806 requested a small or extended instruction. */
8807
8808static void
8809mips16_ip (str, ip)
8810 char *str;
8811 struct mips_cl_insn *ip;
8812{
8813 char *s;
8814 const char *args;
8815 struct mips_opcode *insn;
8816 char *argsstart;
8817 unsigned int regno;
8818 unsigned int lastregno = 0;
8819 char *s_reset;
8820
8821 insn_error = NULL;
8822
8823 mips16_small = false;
8824 mips16_ext = false;
8825
3882b010 8826 for (s = str; ISLOWER (*s); ++s)
252b5132
RH
8827 ;
8828 switch (*s)
8829 {
8830 case '\0':
8831 break;
8832
8833 case ' ':
8834 *s++ = '\0';
8835 break;
8836
8837 case '.':
8838 if (s[1] == 't' && s[2] == ' ')
8839 {
8840 *s = '\0';
8841 mips16_small = true;
8842 s += 3;
8843 break;
8844 }
8845 else if (s[1] == 'e' && s[2] == ' ')
8846 {
8847 *s = '\0';
8848 mips16_ext = true;
8849 s += 3;
8850 break;
8851 }
8852 /* Fall through. */
8853 default:
8854 insn_error = _("unknown opcode");
8855 return;
8856 }
8857
8858 if (mips_opts.noautoextend && ! mips16_ext)
8859 mips16_small = true;
8860
8861 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
8862 {
8863 insn_error = _("unrecognized opcode");
8864 return;
8865 }
8866
8867 argsstart = s;
8868 for (;;)
8869 {
8870 assert (strcmp (insn->name, str) == 0);
8871
8872 ip->insn_mo = insn;
8873 ip->insn_opcode = insn->match;
8874 ip->use_extend = false;
8875 imm_expr.X_op = O_absent;
f6688943
TS
8876 imm_reloc[0] = BFD_RELOC_UNUSED;
8877 imm_reloc[1] = BFD_RELOC_UNUSED;
8878 imm_reloc[2] = BFD_RELOC_UNUSED;
252b5132 8879 offset_expr.X_op = O_absent;
f6688943
TS
8880 offset_reloc[0] = BFD_RELOC_UNUSED;
8881 offset_reloc[1] = BFD_RELOC_UNUSED;
8882 offset_reloc[2] = BFD_RELOC_UNUSED;
252b5132
RH
8883 for (args = insn->args; 1; ++args)
8884 {
8885 int c;
8886
8887 if (*s == ' ')
8888 ++s;
8889
8890 /* In this switch statement we call break if we did not find
8891 a match, continue if we did find a match, or return if we
8892 are done. */
8893
8894 c = *args;
8895 switch (c)
8896 {
8897 case '\0':
8898 if (*s == '\0')
8899 {
8900 /* Stuff the immediate value in now, if we can. */
8901 if (imm_expr.X_op == O_constant
f6688943 8902 && *imm_reloc > BFD_RELOC_UNUSED
252b5132
RH
8903 && insn->pinfo != INSN_MACRO)
8904 {
c4e7957c 8905 mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED,
252b5132
RH
8906 imm_expr.X_add_number, true, mips16_small,
8907 mips16_ext, &ip->insn_opcode,
8908 &ip->use_extend, &ip->extend);
8909 imm_expr.X_op = O_absent;
f6688943 8910 *imm_reloc = BFD_RELOC_UNUSED;
252b5132
RH
8911 }
8912
8913 return;
8914 }
8915 break;
8916
8917 case ',':
8918 if (*s++ == c)
8919 continue;
8920 s--;
8921 switch (*++args)
8922 {
8923 case 'v':
8924 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
8925 continue;
8926 case 'w':
8927 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
8928 continue;
8929 }
8930 break;
8931
8932 case '(':
8933 case ')':
8934 if (*s++ == c)
8935 continue;
8936 break;
8937
8938 case 'v':
8939 case 'w':
8940 if (s[0] != '$')
8941 {
8942 if (c == 'v')
8943 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
8944 else
8945 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
8946 ++args;
8947 continue;
8948 }
8949 /* Fall through. */
8950 case 'x':
8951 case 'y':
8952 case 'z':
8953 case 'Z':
8954 case '0':
8955 case 'S':
8956 case 'R':
8957 case 'X':
8958 case 'Y':
8959 if (s[0] != '$')
8960 break;
8961 s_reset = s;
3882b010 8962 if (ISDIGIT (s[1]))
252b5132
RH
8963 {
8964 ++s;
8965 regno = 0;
8966 do
8967 {
8968 regno *= 10;
8969 regno += *s - '0';
8970 ++s;
8971 }
3882b010 8972 while (ISDIGIT (*s));
252b5132
RH
8973 if (regno > 31)
8974 {
8975 as_bad (_("invalid register number (%d)"), regno);
8976 regno = 2;
8977 }
8978 }
8979 else
8980 {
76db943d
TS
8981 if (s[1] == 'r' && s[2] == 'a')
8982 {
8983 s += 3;
8984 regno = RA;
8985 }
8986 else if (s[1] == 'f' && s[2] == 'p')
252b5132
RH
8987 {
8988 s += 3;
8989 regno = FP;
8990 }
8991 else if (s[1] == 's' && s[2] == 'p')
8992 {
8993 s += 3;
8994 regno = SP;
8995 }
8996 else if (s[1] == 'g' && s[2] == 'p')
8997 {
8998 s += 3;
8999 regno = GP;
9000 }
9001 else if (s[1] == 'a' && s[2] == 't')
9002 {
9003 s += 3;
9004 regno = AT;
9005 }
9006 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
9007 {
9008 s += 4;
9009 regno = KT0;
9010 }
9011 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
9012 {
9013 s += 4;
9014 regno = KT1;
9015 }
85b51719
TS
9016 else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o')
9017 {
9018 s += 5;
9019 regno = ZERO;
9020 }
252b5132
RH
9021 else
9022 break;
9023 }
9024
9025 if (*s == ' ')
9026 ++s;
9027 if (args[1] != *s)
9028 {
9029 if (c == 'v' || c == 'w')
9030 {
9031 regno = mips16_to_32_reg_map[lastregno];
9032 s = s_reset;
f9419b05 9033 ++args;
252b5132
RH
9034 }
9035 }
9036
9037 switch (c)
9038 {
9039 case 'x':
9040 case 'y':
9041 case 'z':
9042 case 'v':
9043 case 'w':
9044 case 'Z':
9045 regno = mips32_to_16_reg_map[regno];
9046 break;
9047
9048 case '0':
9049 if (regno != 0)
9050 regno = ILLEGAL_REG;
9051 break;
9052
9053 case 'S':
9054 if (regno != SP)
9055 regno = ILLEGAL_REG;
9056 break;
9057
9058 case 'R':
9059 if (regno != RA)
9060 regno = ILLEGAL_REG;
9061 break;
9062
9063 case 'X':
9064 case 'Y':
9065 if (regno == AT && ! mips_opts.noat)
9066 as_warn (_("used $at without \".set noat\""));
9067 break;
9068
9069 default:
9070 internalError ();
9071 }
9072
9073 if (regno == ILLEGAL_REG)
9074 break;
9075
9076 switch (c)
9077 {
9078 case 'x':
9079 case 'v':
9080 ip->insn_opcode |= regno << MIPS16OP_SH_RX;
9081 break;
9082 case 'y':
9083 case 'w':
9084 ip->insn_opcode |= regno << MIPS16OP_SH_RY;
9085 break;
9086 case 'z':
9087 ip->insn_opcode |= regno << MIPS16OP_SH_RZ;
9088 break;
9089 case 'Z':
9090 ip->insn_opcode |= regno << MIPS16OP_SH_MOVE32Z;
9091 case '0':
9092 case 'S':
9093 case 'R':
9094 break;
9095 case 'X':
9096 ip->insn_opcode |= regno << MIPS16OP_SH_REGR32;
9097 break;
9098 case 'Y':
9099 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
9100 ip->insn_opcode |= regno << MIPS16OP_SH_REG32R;
9101 break;
9102 default:
9103 internalError ();
9104 }
9105
9106 lastregno = regno;
9107 continue;
9108
9109 case 'P':
9110 if (strncmp (s, "$pc", 3) == 0)
9111 {
9112 s += 3;
9113 continue;
9114 }
9115 break;
9116
9117 case '<':
9118 case '>':
9119 case '[':
9120 case ']':
9121 case '4':
9122 case '5':
9123 case 'H':
9124 case 'W':
9125 case 'D':
9126 case 'j':
9127 case '8':
9128 case 'V':
9129 case 'C':
9130 case 'U':
9131 case 'k':
9132 case 'K':
9133 if (s[0] == '%'
9134 && strncmp (s + 1, "gprel(", sizeof "gprel(" - 1) == 0)
9135 {
9136 /* This is %gprel(SYMBOL). We need to read SYMBOL,
9137 and generate the appropriate reloc. If the text
9138 inside %gprel is not a symbol name with an
9139 optional offset, then we generate a normal reloc
9140 and will probably fail later. */
9141 my_getExpression (&imm_expr, s + sizeof "%gprel" - 1);
9142 if (imm_expr.X_op == O_symbol)
9143 {
9144 mips16_ext = true;
f6688943 9145 *imm_reloc = BFD_RELOC_MIPS16_GPREL;
252b5132
RH
9146 s = expr_end;
9147 ip->use_extend = true;
9148 ip->extend = 0;
9149 continue;
9150 }
9151 }
9152 else
9153 {
9154 /* Just pick up a normal expression. */
9155 my_getExpression (&imm_expr, s);
9156 }
9157
9158 if (imm_expr.X_op == O_register)
9159 {
9160 /* What we thought was an expression turned out to
9161 be a register. */
9162
9163 if (s[0] == '(' && args[1] == '(')
9164 {
9165 /* It looks like the expression was omitted
9166 before a register indirection, which means
9167 that the expression is implicitly zero. We
9168 still set up imm_expr, so that we handle
9169 explicit extensions correctly. */
9170 imm_expr.X_op = O_constant;
9171 imm_expr.X_add_number = 0;
f6688943 9172 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
9173 continue;
9174 }
9175
9176 break;
9177 }
9178
9179 /* We need to relax this instruction. */
f6688943 9180 *imm_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
9181 s = expr_end;
9182 continue;
9183
9184 case 'p':
9185 case 'q':
9186 case 'A':
9187 case 'B':
9188 case 'E':
9189 /* We use offset_reloc rather than imm_reloc for the PC
9190 relative operands. This lets macros with both
9191 immediate and address operands work correctly. */
9192 my_getExpression (&offset_expr, s);
9193
9194 if (offset_expr.X_op == O_register)
9195 break;
9196
9197 /* We need to relax this instruction. */
f6688943 9198 *offset_reloc = (int) BFD_RELOC_UNUSED + c;
252b5132
RH
9199 s = expr_end;
9200 continue;
9201
9202 case '6': /* break code */
9203 my_getExpression (&imm_expr, s);
9204 check_absolute_expr (ip, &imm_expr);
9205 if ((unsigned long) imm_expr.X_add_number > 63)
9206 {
9207 as_warn (_("Invalid value for `%s' (%lu)"),
9208 ip->insn_mo->name,
9209 (unsigned long) imm_expr.X_add_number);
9210 imm_expr.X_add_number &= 0x3f;
9211 }
9212 ip->insn_opcode |= imm_expr.X_add_number << MIPS16OP_SH_IMM6;
9213 imm_expr.X_op = O_absent;
9214 s = expr_end;
9215 continue;
9216
9217 case 'a': /* 26 bit address */
9218 my_getExpression (&offset_expr, s);
9219 s = expr_end;
f6688943 9220 *offset_reloc = BFD_RELOC_MIPS16_JMP;
252b5132
RH
9221 ip->insn_opcode <<= 16;
9222 continue;
9223
9224 case 'l': /* register list for entry macro */
9225 case 'L': /* register list for exit macro */
9226 {
9227 int mask;
9228
9229 if (c == 'l')
9230 mask = 0;
9231 else
9232 mask = 7 << 3;
9233 while (*s != '\0')
9234 {
9235 int freg, reg1, reg2;
9236
9237 while (*s == ' ' || *s == ',')
9238 ++s;
9239 if (*s != '$')
9240 {
9241 as_bad (_("can't parse register list"));
9242 break;
9243 }
9244 ++s;
9245 if (*s != 'f')
9246 freg = 0;
9247 else
9248 {
9249 freg = 1;
9250 ++s;
9251 }
9252 reg1 = 0;
3882b010 9253 while (ISDIGIT (*s))
252b5132
RH
9254 {
9255 reg1 *= 10;
9256 reg1 += *s - '0';
9257 ++s;
9258 }
9259 if (*s == ' ')
9260 ++s;
9261 if (*s != '-')
9262 reg2 = reg1;
9263 else
9264 {
9265 ++s;
9266 if (*s != '$')
9267 break;
9268 ++s;
9269 if (freg)
9270 {
9271 if (*s == 'f')
9272 ++s;
9273 else
9274 {
9275 as_bad (_("invalid register list"));
9276 break;
9277 }
9278 }
9279 reg2 = 0;
3882b010 9280 while (ISDIGIT (*s))
252b5132
RH
9281 {
9282 reg2 *= 10;
9283 reg2 += *s - '0';
9284 ++s;
9285 }
9286 }
9287 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
9288 {
9289 mask &= ~ (7 << 3);
9290 mask |= 5 << 3;
9291 }
9292 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
9293 {
9294 mask &= ~ (7 << 3);
9295 mask |= 6 << 3;
9296 }
9297 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
9298 mask |= (reg2 - 3) << 3;
9299 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
9300 mask |= (reg2 - 15) << 1;
f9419b05 9301 else if (reg1 == RA && reg2 == RA)
252b5132
RH
9302 mask |= 1;
9303 else
9304 {
9305 as_bad (_("invalid register list"));
9306 break;
9307 }
9308 }
9309 /* The mask is filled in in the opcode table for the
9310 benefit of the disassembler. We remove it before
9311 applying the actual mask. */
9312 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
9313 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
9314 }
9315 continue;
9316
9317 case 'e': /* extend code */
9318 my_getExpression (&imm_expr, s);
9319 check_absolute_expr (ip, &imm_expr);
9320 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
9321 {
9322 as_warn (_("Invalid value for `%s' (%lu)"),
9323 ip->insn_mo->name,
9324 (unsigned long) imm_expr.X_add_number);
9325 imm_expr.X_add_number &= 0x7ff;
9326 }
9327 ip->insn_opcode |= imm_expr.X_add_number;
9328 imm_expr.X_op = O_absent;
9329 s = expr_end;
9330 continue;
9331
9332 default:
9333 internalError ();
9334 }
9335 break;
9336 }
9337
9338 /* Args don't match. */
9339 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
9340 strcmp (insn->name, insn[1].name) == 0)
9341 {
9342 ++insn;
9343 s = argsstart;
9344 continue;
9345 }
9346
9347 insn_error = _("illegal operands");
9348
9349 return;
9350 }
9351}
9352
9353/* This structure holds information we know about a mips16 immediate
9354 argument type. */
9355
e972090a
NC
9356struct mips16_immed_operand
9357{
252b5132
RH
9358 /* The type code used in the argument string in the opcode table. */
9359 int type;
9360 /* The number of bits in the short form of the opcode. */
9361 int nbits;
9362 /* The number of bits in the extended form of the opcode. */
9363 int extbits;
9364 /* The amount by which the short form is shifted when it is used;
9365 for example, the sw instruction has a shift count of 2. */
9366 int shift;
9367 /* The amount by which the short form is shifted when it is stored
9368 into the instruction code. */
9369 int op_shift;
9370 /* Non-zero if the short form is unsigned. */
9371 int unsp;
9372 /* Non-zero if the extended form is unsigned. */
9373 int extu;
9374 /* Non-zero if the value is PC relative. */
9375 int pcrel;
9376};
9377
9378/* The mips16 immediate operand types. */
9379
9380static const struct mips16_immed_operand mips16_immed_operands[] =
9381{
9382 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9383 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9384 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
9385 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
9386 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
9387 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
9388 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
9389 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
9390 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
9391 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
9392 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
9393 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
9394 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
9395 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
9396 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
9397 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
9398 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9399 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
9400 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
9401 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
9402 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
9403};
9404
9405#define MIPS16_NUM_IMMED \
9406 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
9407
9408/* Handle a mips16 instruction with an immediate value. This or's the
9409 small immediate value into *INSN. It sets *USE_EXTEND to indicate
9410 whether an extended value is needed; if one is needed, it sets
9411 *EXTEND to the value. The argument type is TYPE. The value is VAL.
9412 If SMALL is true, an unextended opcode was explicitly requested.
9413 If EXT is true, an extended opcode was explicitly requested. If
9414 WARN is true, warn if EXT does not match reality. */
9415
9416static void
9417mips16_immed (file, line, type, val, warn, small, ext, insn, use_extend,
9418 extend)
9419 char *file;
9420 unsigned int line;
9421 int type;
9422 offsetT val;
9423 boolean warn;
9424 boolean small;
9425 boolean ext;
9426 unsigned long *insn;
9427 boolean *use_extend;
9428 unsigned short *extend;
9429{
9430 register const struct mips16_immed_operand *op;
9431 int mintiny, maxtiny;
9432 boolean needext;
9433
9434 op = mips16_immed_operands;
9435 while (op->type != type)
9436 {
9437 ++op;
9438 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
9439 }
9440
9441 if (op->unsp)
9442 {
9443 if (type == '<' || type == '>' || type == '[' || type == ']')
9444 {
9445 mintiny = 1;
9446 maxtiny = 1 << op->nbits;
9447 }
9448 else
9449 {
9450 mintiny = 0;
9451 maxtiny = (1 << op->nbits) - 1;
9452 }
9453 }
9454 else
9455 {
9456 mintiny = - (1 << (op->nbits - 1));
9457 maxtiny = (1 << (op->nbits - 1)) - 1;
9458 }
9459
9460 /* Branch offsets have an implicit 0 in the lowest bit. */
9461 if (type == 'p' || type == 'q')
9462 val /= 2;
9463
9464 if ((val & ((1 << op->shift) - 1)) != 0
9465 || val < (mintiny << op->shift)
9466 || val > (maxtiny << op->shift))
9467 needext = true;
9468 else
9469 needext = false;
9470
9471 if (warn && ext && ! needext)
beae10d5
KH
9472 as_warn_where (file, line,
9473 _("extended operand requested but not required"));
252b5132
RH
9474 if (small && needext)
9475 as_bad_where (file, line, _("invalid unextended operand value"));
9476
9477 if (small || (! ext && ! needext))
9478 {
9479 int insnval;
9480
9481 *use_extend = false;
9482 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
9483 insnval <<= op->op_shift;
9484 *insn |= insnval;
9485 }
9486 else
9487 {
9488 long minext, maxext;
9489 int extval;
9490
9491 if (op->extu)
9492 {
9493 minext = 0;
9494 maxext = (1 << op->extbits) - 1;
9495 }
9496 else
9497 {
9498 minext = - (1 << (op->extbits - 1));
9499 maxext = (1 << (op->extbits - 1)) - 1;
9500 }
9501 if (val < minext || val > maxext)
9502 as_bad_where (file, line,
9503 _("operand value out of range for instruction"));
9504
9505 *use_extend = true;
9506 if (op->extbits == 16)
9507 {
9508 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
9509 val &= 0x1f;
9510 }
9511 else if (op->extbits == 15)
9512 {
9513 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
9514 val &= 0xf;
9515 }
9516 else
9517 {
9518 extval = ((val & 0x1f) << 6) | (val & 0x20);
9519 val = 0;
9520 }
9521
9522 *extend = (unsigned short) extval;
9523 *insn |= val;
9524 }
9525}
9526\f
ad8d3bb3
TS
9527static struct percent_op_match
9528{
9529 const char *str;
9530 const enum small_ex_type type;
9531} percent_op[] =
9532{
ad8d3bb3
TS
9533 {"%lo", S_EX_LO},
9534#ifdef OBJ_ELF
394f9b3a
TS
9535 {"%call_hi", S_EX_CALL_HI},
9536 {"%call_lo", S_EX_CALL_LO},
ad8d3bb3
TS
9537 {"%call16", S_EX_CALL16},
9538 {"%got_disp", S_EX_GOT_DISP},
9539 {"%got_page", S_EX_GOT_PAGE},
9540 {"%got_ofst", S_EX_GOT_OFST},
9541 {"%got_hi", S_EX_GOT_HI},
9542 {"%got_lo", S_EX_GOT_LO},
394f9b3a
TS
9543 {"%got", S_EX_GOT},
9544 {"%gp_rel", S_EX_GP_REL},
9545 {"%half", S_EX_HALF},
ad8d3bb3 9546 {"%highest", S_EX_HIGHEST},
394f9b3a
TS
9547 {"%higher", S_EX_HIGHER},
9548 {"%neg", S_EX_NEG},
ad8d3bb3 9549#endif
394f9b3a 9550 {"%hi", S_EX_HI}
ad8d3bb3
TS
9551};
9552
9553/* Parse small expression input. STR gets adjusted to eat up whitespace.
9554 It detects valid "%percent_op(...)" and "($reg)" strings. Percent_op's
9555 can be nested, this is handled by blanking the innermost, parsing the
9556 rest by subsequent calls. */
252b5132
RH
9557
9558static int
ad8d3bb3
TS
9559my_getSmallParser (str, len, nestlevel)
9560 char **str;
9561 unsigned int *len;
9562 int *nestlevel;
252b5132 9563{
ad8d3bb3
TS
9564 *len = 0;
9565 *str += strspn (*str, " \t");
394f9b3a 9566 /* Check for expression in parentheses. */
ad8d3bb3 9567 if (**str == '(')
252b5132 9568 {
ad8d3bb3
TS
9569 char *b = *str + 1 + strspn (*str + 1, " \t");
9570 char *e;
9571
9572 /* Check for base register. */
9573 if (b[0] == '$')
9574 {
9575 if (strchr (b, ')')
9576 && (e = b + strcspn (b, ") \t"))
9577 && e - b > 1 && e - b < 4)
9578 {
98d3f06f
KH
9579 if ((e - b == 3
9580 && ((b[1] == 'f' && b[2] == 'p')
9581 || (b[1] == 's' && b[2] == 'p')
9582 || (b[1] == 'g' && b[2] == 'p')
9583 || (b[1] == 'a' && b[2] == 't')
9584 || (ISDIGIT (b[1])
9585 && ISDIGIT (b[2]))))
9586 || (ISDIGIT (b[1])))
9587 {
9588 *len = strcspn (*str, ")") + 1;
9589 return S_EX_REGISTER;
9590 }
ad8d3bb3
TS
9591 }
9592 }
394f9b3a 9593 /* Check for percent_op (in parentheses). */
ad8d3bb3
TS
9594 else if (b[0] == '%')
9595 {
9596 *str = b;
394f9b3a 9597 return my_getPercentOp (str, len, nestlevel);
ad8d3bb3 9598 }
76b3015f 9599
394f9b3a
TS
9600 /* Some other expression in the parentheses, which can contain
9601 parentheses itself. Attempt to find the matching one. */
9602 {
9603 int pcnt = 1;
9604 char *s;
9605
9606 *len = 1;
9607 for (s = *str + 1; *s && pcnt; s++, (*len)++)
9608 {
9609 if (*s == '(')
f9419b05 9610 ++pcnt;
394f9b3a 9611 else if (*s == ')')
f9419b05 9612 --pcnt;
394f9b3a
TS
9613 }
9614 }
fb1b3232 9615 }
394f9b3a 9616 /* Check for percent_op (outside of parentheses). */
ad8d3bb3 9617 else if (*str[0] == '%')
394f9b3a
TS
9618 return my_getPercentOp (str, len, nestlevel);
9619
9620 /* Any other expression. */
9621 return S_EX_NONE;
9622}
ad8d3bb3 9623
394f9b3a
TS
9624static int
9625my_getPercentOp (str, len, nestlevel)
9626 char **str;
9627 unsigned int *len;
9628 int *nestlevel;
9629{
9630 char *tmp = *str + 1;
9631 unsigned int i = 0;
ad8d3bb3 9632
394f9b3a
TS
9633 while (ISALPHA (*tmp) || *tmp == '_')
9634 {
9635 *tmp = TOLOWER (*tmp);
9636 tmp++;
9637 }
9638 while (i < (sizeof (percent_op) / sizeof (struct percent_op_match)))
9639 {
9640 if (strncmp (*str, percent_op[i].str, strlen (percent_op[i].str)))
98d3f06f 9641 i++;
394f9b3a 9642 else
ad8d3bb3 9643 {
394f9b3a 9644 int type = percent_op[i].type;
ad8d3bb3 9645
394f9b3a
TS
9646 /* Only %hi and %lo are allowed for OldABI. */
9647 if (! HAVE_NEWABI && type != S_EX_HI && type != S_EX_LO)
9648 return S_EX_NONE;
ad8d3bb3 9649
394f9b3a 9650 *len = strlen (percent_op[i].str);
f9419b05 9651 ++(*nestlevel);
394f9b3a 9652 return type;
ad8d3bb3 9653 }
fb1b3232 9654 }
ad8d3bb3
TS
9655 return S_EX_NONE;
9656}
9657
9658static int
9659my_getSmallExpression (ep, str)
9660 expressionS *ep;
9661 char *str;
9662{
9663 static char *oldstr = NULL;
9664 int c = S_EX_NONE;
9665 int oldc;
394f9b3a 9666 int nestlevel = -1;
ad8d3bb3
TS
9667 unsigned int len;
9668
394f9b3a
TS
9669 /* Don't update oldstr if the last call had nested percent_op's. We need
9670 it to parse the outer ones later. */
ad8d3bb3
TS
9671 if (! oldstr)
9672 oldstr = str;
76b3015f 9673
ad8d3bb3 9674 do
fb1b3232 9675 {
ad8d3bb3 9676 oldc = c;
394f9b3a 9677 c = my_getSmallParser (&str, &len, &nestlevel);
ad8d3bb3
TS
9678 if (c != S_EX_NONE && c != S_EX_REGISTER)
9679 str += len;
fb1b3232 9680 }
ad8d3bb3
TS
9681 while (c != S_EX_NONE && c != S_EX_REGISTER);
9682
394f9b3a 9683 if (nestlevel >= 0)
fb1b3232 9684 {
394f9b3a
TS
9685 /* A percent_op was encountered. Don't try to get an expression if
9686 it is already blanked out. */
ad8d3bb3
TS
9687 if (*(str + strspn (str + 1, " )")) != ')')
9688 {
9689 char save;
9690
394f9b3a 9691 /* Let my_getExpression() stop at the closing parenthesis. */
ad8d3bb3
TS
9692 save = *(str + len);
9693 *(str + len) = '\0';
9694 my_getExpression (ep, str);
9695 *(str + len) = save;
9696 }
394f9b3a 9697 if (nestlevel > 0)
ad8d3bb3 9698 {
394f9b3a
TS
9699 /* Blank out including the % sign and the proper matching
9700 parenthesis. */
9701 int pcnt = 1;
9702 char *s = strrchr (oldstr, '%');
9703 char *end;
9704
9705 for (end = strchr (s, '(') + 1; *end && pcnt; end++)
9706 {
9707 if (*end == '(')
f9419b05 9708 ++pcnt;
394f9b3a 9709 else if (*end == ')')
f9419b05 9710 --pcnt;
394f9b3a
TS
9711 }
9712
9713 memset (s, ' ', end - s);
ad8d3bb3
TS
9714 str = oldstr;
9715 }
9716 else
394f9b3a
TS
9717 expr_end = str + len;
9718
ad8d3bb3 9719 c = oldc;
fb1b3232 9720 }
ad8d3bb3 9721 else if (c == S_EX_NONE)
fb1b3232 9722 {
ad8d3bb3 9723 my_getExpression (ep, str);
fb1b3232 9724 }
ad8d3bb3 9725 else if (c == S_EX_REGISTER)
fb1b3232 9726 {
ad8d3bb3
TS
9727 ep->X_op = O_constant;
9728 expr_end = str;
9729 ep->X_add_symbol = NULL;
9730 ep->X_op_symbol = NULL;
9731 ep->X_add_number = 0;
fb1b3232 9732 }
fb1b3232
TS
9733 else
9734 {
98d3f06f 9735 as_fatal (_("internal error"));
fb1b3232 9736 }
252b5132 9737
394f9b3a
TS
9738 if (nestlevel <= 0)
9739 /* All percent_op's have been handled. */
ad8d3bb3 9740 oldstr = NULL;
fb1b3232 9741
fb1b3232 9742 return c;
252b5132
RH
9743}
9744
9745static void
9746my_getExpression (ep, str)
9747 expressionS *ep;
9748 char *str;
9749{
9750 char *save_in;
98aa84af 9751 valueT val;
252b5132
RH
9752
9753 save_in = input_line_pointer;
9754 input_line_pointer = str;
9755 expression (ep);
9756 expr_end = input_line_pointer;
9757 input_line_pointer = save_in;
9758
9759 /* If we are in mips16 mode, and this is an expression based on `.',
9760 then we bump the value of the symbol by 1 since that is how other
9761 text symbols are handled. We don't bother to handle complex
9762 expressions, just `.' plus or minus a constant. */
9763 if (mips_opts.mips16
9764 && ep->X_op == O_symbol
9765 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
9766 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
49309057
ILT
9767 && symbol_get_frag (ep->X_add_symbol) == frag_now
9768 && symbol_constant_p (ep->X_add_symbol)
98aa84af
AM
9769 && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ())
9770 S_SET_VALUE (ep->X_add_symbol, val + 1);
252b5132
RH
9771}
9772
9773/* Turn a string in input_line_pointer into a floating point constant
bc0d738a
NC
9774 of type TYPE, and store the appropriate bytes in *LITP. The number
9775 of LITTLENUMS emitted is stored in *SIZEP. An error message is
252b5132
RH
9776 returned, or NULL on OK. */
9777
9778char *
9779md_atof (type, litP, sizeP)
9780 int type;
9781 char *litP;
9782 int *sizeP;
9783{
9784 int prec;
9785 LITTLENUM_TYPE words[4];
9786 char *t;
9787 int i;
9788
9789 switch (type)
9790 {
9791 case 'f':
9792 prec = 2;
9793 break;
9794
9795 case 'd':
9796 prec = 4;
9797 break;
9798
9799 default:
9800 *sizeP = 0;
9801 return _("bad call to md_atof");
9802 }
9803
9804 t = atof_ieee (input_line_pointer, type, words);
9805 if (t)
9806 input_line_pointer = t;
9807
9808 *sizeP = prec * 2;
9809
9810 if (! target_big_endian)
9811 {
9812 for (i = prec - 1; i >= 0; i--)
9813 {
9814 md_number_to_chars (litP, (valueT) words[i], 2);
9815 litP += 2;
9816 }
9817 }
9818 else
9819 {
9820 for (i = 0; i < prec; i++)
9821 {
9822 md_number_to_chars (litP, (valueT) words[i], 2);
9823 litP += 2;
9824 }
9825 }
bdaaa2e1 9826
252b5132
RH
9827 return NULL;
9828}
9829
9830void
9831md_number_to_chars (buf, val, n)
9832 char *buf;
9833 valueT val;
9834 int n;
9835{
9836 if (target_big_endian)
9837 number_to_chars_bigendian (buf, val, n);
9838 else
9839 number_to_chars_littleendian (buf, val, n);
9840}
9841\f
ae948b86 9842#ifdef OBJ_ELF
e013f690
TS
9843static int support_64bit_objects(void)
9844{
9845 const char **list, **l;
9846
9847 list = bfd_target_list ();
9848 for (l = list; *l != NULL; l++)
9849#ifdef TE_TMIPS
9850 /* This is traditional mips */
9851 if (strcmp (*l, "elf64-tradbigmips") == 0
9852 || strcmp (*l, "elf64-tradlittlemips") == 0)
9853#else
9854 if (strcmp (*l, "elf64-bigmips") == 0
9855 || strcmp (*l, "elf64-littlemips") == 0)
9856#endif
9857 break;
9858 free (list);
9859 return (*l != NULL);
9860}
ae948b86 9861#endif /* OBJ_ELF */
e013f690 9862
5a38dc70 9863const char *md_shortopts = "nO::g::G:";
252b5132 9864
e972090a
NC
9865struct option md_longopts[] =
9866{
252b5132
RH
9867#define OPTION_MIPS1 (OPTION_MD_BASE + 1)
9868 {"mips0", no_argument, NULL, OPTION_MIPS1},
9869 {"mips1", no_argument, NULL, OPTION_MIPS1},
9870#define OPTION_MIPS2 (OPTION_MD_BASE + 2)
9871 {"mips2", no_argument, NULL, OPTION_MIPS2},
9872#define OPTION_MIPS3 (OPTION_MD_BASE + 3)
9873 {"mips3", no_argument, NULL, OPTION_MIPS3},
9874#define OPTION_MIPS4 (OPTION_MD_BASE + 4)
9875 {"mips4", no_argument, NULL, OPTION_MIPS4},
ae948b86
TS
9876#define OPTION_MIPS5 (OPTION_MD_BASE + 5)
9877 {"mips5", no_argument, NULL, OPTION_MIPS5},
9878#define OPTION_MIPS32 (OPTION_MD_BASE + 6)
9879 {"mips32", no_argument, NULL, OPTION_MIPS32},
9880#define OPTION_MIPS64 (OPTION_MD_BASE + 7)
9881 {"mips64", no_argument, NULL, OPTION_MIPS64},
9882#define OPTION_MEMBEDDED_PIC (OPTION_MD_BASE + 8)
252b5132 9883 {"membedded-pic", no_argument, NULL, OPTION_MEMBEDDED_PIC},
ae948b86 9884#define OPTION_TRAP (OPTION_MD_BASE + 9)
252b5132
RH
9885 {"trap", no_argument, NULL, OPTION_TRAP},
9886 {"no-break", no_argument, NULL, OPTION_TRAP},
ae948b86 9887#define OPTION_BREAK (OPTION_MD_BASE + 10)
252b5132
RH
9888 {"break", no_argument, NULL, OPTION_BREAK},
9889 {"no-trap", no_argument, NULL, OPTION_BREAK},
ae948b86 9890#define OPTION_EB (OPTION_MD_BASE + 11)
252b5132 9891 {"EB", no_argument, NULL, OPTION_EB},
ae948b86 9892#define OPTION_EL (OPTION_MD_BASE + 12)
252b5132 9893 {"EL", no_argument, NULL, OPTION_EL},
ae948b86 9894#define OPTION_MIPS16 (OPTION_MD_BASE + 13)
252b5132 9895 {"mips16", no_argument, NULL, OPTION_MIPS16},
ae948b86 9896#define OPTION_NO_MIPS16 (OPTION_MD_BASE + 14)
252b5132 9897 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
ae948b86 9898#define OPTION_M7000_HILO_FIX (OPTION_MD_BASE + 15)
6b76fefe 9899 {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX},
9ee72ff1
TS
9900#define OPTION_MNO_7000_HILO_FIX (OPTION_MD_BASE + 16)
9901 {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
9902 {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX},
ae948b86
TS
9903#define OPTION_FP32 (OPTION_MD_BASE + 17)
9904 {"mfp32", no_argument, NULL, OPTION_FP32},
9905#define OPTION_GP32 (OPTION_MD_BASE + 18)
c97ef257 9906 {"mgp32", no_argument, NULL, OPTION_GP32},
ae948b86 9907#define OPTION_CONSTRUCT_FLOATS (OPTION_MD_BASE + 19)
119d663a 9908 {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS},
ae948b86 9909#define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MD_BASE + 20)
119d663a 9910 {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS},
ae948b86 9911#define OPTION_MARCH (OPTION_MD_BASE + 21)
ec68c924 9912 {"march", required_argument, NULL, OPTION_MARCH},
ae948b86 9913#define OPTION_MTUNE (OPTION_MD_BASE + 22)
ec68c924 9914 {"mtune", required_argument, NULL, OPTION_MTUNE},
316f5878
RS
9915#define OPTION_FP64 (OPTION_MD_BASE + 23)
9916 {"mfp64", no_argument, NULL, OPTION_FP64},
ae948b86
TS
9917#define OPTION_M4650 (OPTION_MD_BASE + 24)
9918 {"m4650", no_argument, NULL, OPTION_M4650},
9919#define OPTION_NO_M4650 (OPTION_MD_BASE + 25)
9920 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
9921#define OPTION_M4010 (OPTION_MD_BASE + 26)
9922 {"m4010", no_argument, NULL, OPTION_M4010},
9923#define OPTION_NO_M4010 (OPTION_MD_BASE + 27)
9924 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
9925#define OPTION_M4100 (OPTION_MD_BASE + 28)
9926 {"m4100", no_argument, NULL, OPTION_M4100},
9927#define OPTION_NO_M4100 (OPTION_MD_BASE + 29)
9928 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
9929#define OPTION_M3900 (OPTION_MD_BASE + 30)
9930 {"m3900", no_argument, NULL, OPTION_M3900},
9931#define OPTION_NO_M3900 (OPTION_MD_BASE + 31)
9932 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
9933#define OPTION_GP64 (OPTION_MD_BASE + 32)
9934 {"mgp64", no_argument, NULL, OPTION_GP64},
1f25f5d3
CD
9935#define OPTION_MIPS3D (OPTION_MD_BASE + 33)
9936 {"mips3d", no_argument, NULL, OPTION_MIPS3D},
9937#define OPTION_NO_MIPS3D (OPTION_MD_BASE + 34)
9938 {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D},
deec1734
CD
9939#define OPTION_MDMX (OPTION_MD_BASE + 35)
9940 {"mdmx", no_argument, NULL, OPTION_MDMX},
9941#define OPTION_NO_MDMX (OPTION_MD_BASE + 36)
9942 {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX},
156c2f8b 9943#ifdef OBJ_ELF
deec1734 9944#define OPTION_ELF_BASE (OPTION_MD_BASE + 37)
156c2f8b 9945#define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0)
156c2f8b
NC
9946 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
9947 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
ae948b86 9948#define OPTION_NON_SHARED (OPTION_ELF_BASE + 1)
156c2f8b 9949 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
ae948b86 9950#define OPTION_XGOT (OPTION_ELF_BASE + 2)
156c2f8b 9951 {"xgot", no_argument, NULL, OPTION_XGOT},
ae948b86
TS
9952#define OPTION_MABI (OPTION_ELF_BASE + 3)
9953 {"mabi", required_argument, NULL, OPTION_MABI},
9954#define OPTION_32 (OPTION_ELF_BASE + 4)
156c2f8b 9955 {"32", no_argument, NULL, OPTION_32},
ae948b86 9956#define OPTION_N32 (OPTION_ELF_BASE + 5)
e013f690 9957 {"n32", no_argument, NULL, OPTION_N32},
ae948b86 9958#define OPTION_64 (OPTION_ELF_BASE + 6)
156c2f8b 9959 {"64", no_argument, NULL, OPTION_64},
ecb4347a
DJ
9960#define OPTION_MDEBUG (OPTION_ELF_BASE + 7)
9961 {"mdebug", no_argument, NULL, OPTION_MDEBUG},
9962#define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 8)
9963 {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG},
ae948b86 9964#endif /* OBJ_ELF */
252b5132
RH
9965 {NULL, no_argument, NULL, 0}
9966};
156c2f8b 9967size_t md_longopts_size = sizeof (md_longopts);
252b5132 9968
316f5878
RS
9969/* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to
9970 NEW_VALUE. Warn if another value was already specified. Note:
9971 we have to defer parsing the -march and -mtune arguments in order
9972 to handle 'from-abi' correctly, since the ABI might be specified
9973 in a later argument. */
9974
9975static void
9976mips_set_option_string (string_ptr, new_value)
9977 const char **string_ptr, *new_value;
9978{
9979 if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0)
9980 as_warn (_("A different %s was already specified, is now %s"),
9981 string_ptr == &mips_arch_string ? "-march" : "-mtune",
9982 new_value);
9983
9984 *string_ptr = new_value;
9985}
9986
252b5132
RH
9987int
9988md_parse_option (c, arg)
9989 int c;
9990 char *arg;
9991{
9992 switch (c)
9993 {
119d663a
NC
9994 case OPTION_CONSTRUCT_FLOATS:
9995 mips_disable_float_construction = 0;
9996 break;
bdaaa2e1 9997
119d663a
NC
9998 case OPTION_NO_CONSTRUCT_FLOATS:
9999 mips_disable_float_construction = 1;
10000 break;
bdaaa2e1 10001
252b5132
RH
10002 case OPTION_TRAP:
10003 mips_trap = 1;
10004 break;
10005
10006 case OPTION_BREAK:
10007 mips_trap = 0;
10008 break;
10009
10010 case OPTION_EB:
10011 target_big_endian = 1;
10012 break;
10013
10014 case OPTION_EL:
10015 target_big_endian = 0;
10016 break;
10017
39c0a331
L
10018 case 'n':
10019 warn_nops = 1;
10020 break;
10021
252b5132
RH
10022 case 'O':
10023 if (arg && arg[1] == '0')
10024 mips_optimize = 1;
10025 else
10026 mips_optimize = 2;
10027 break;
10028
10029 case 'g':
10030 if (arg == NULL)
10031 mips_debug = 2;
10032 else
10033 mips_debug = atoi (arg);
10034 /* When the MIPS assembler sees -g or -g2, it does not do
10035 optimizations which limit full symbolic debugging. We take
10036 that to be equivalent to -O0. */
10037 if (mips_debug == 2)
10038 mips_optimize = 1;
10039 break;
10040
10041 case OPTION_MIPS1:
316f5878 10042 file_mips_isa = ISA_MIPS1;
252b5132
RH
10043 break;
10044
10045 case OPTION_MIPS2:
316f5878 10046 file_mips_isa = ISA_MIPS2;
252b5132
RH
10047 break;
10048
10049 case OPTION_MIPS3:
316f5878 10050 file_mips_isa = ISA_MIPS3;
252b5132
RH
10051 break;
10052
10053 case OPTION_MIPS4:
316f5878 10054 file_mips_isa = ISA_MIPS4;
e7af610e
NC
10055 break;
10056
84ea6cf2 10057 case OPTION_MIPS5:
316f5878 10058 file_mips_isa = ISA_MIPS5;
84ea6cf2
NC
10059 break;
10060
e7af610e 10061 case OPTION_MIPS32:
316f5878 10062 file_mips_isa = ISA_MIPS32;
252b5132
RH
10063 break;
10064
84ea6cf2 10065 case OPTION_MIPS64:
316f5878 10066 file_mips_isa = ISA_MIPS64;
84ea6cf2
NC
10067 break;
10068
ec68c924 10069 case OPTION_MTUNE:
316f5878
RS
10070 mips_set_option_string (&mips_tune_string, arg);
10071 break;
ec68c924 10072
316f5878
RS
10073 case OPTION_MARCH:
10074 mips_set_option_string (&mips_arch_string, arg);
252b5132
RH
10075 break;
10076
10077 case OPTION_M4650:
316f5878
RS
10078 mips_set_option_string (&mips_arch_string, "4650");
10079 mips_set_option_string (&mips_tune_string, "4650");
252b5132
RH
10080 break;
10081
10082 case OPTION_NO_M4650:
10083 break;
10084
10085 case OPTION_M4010:
316f5878
RS
10086 mips_set_option_string (&mips_arch_string, "4010");
10087 mips_set_option_string (&mips_tune_string, "4010");
252b5132
RH
10088 break;
10089
10090 case OPTION_NO_M4010:
10091 break;
10092
10093 case OPTION_M4100:
316f5878
RS
10094 mips_set_option_string (&mips_arch_string, "4100");
10095 mips_set_option_string (&mips_tune_string, "4100");
252b5132
RH
10096 break;
10097
10098 case OPTION_NO_M4100:
10099 break;
10100
252b5132 10101 case OPTION_M3900:
316f5878
RS
10102 mips_set_option_string (&mips_arch_string, "3900");
10103 mips_set_option_string (&mips_tune_string, "3900");
252b5132 10104 break;
bdaaa2e1 10105
252b5132
RH
10106 case OPTION_NO_M3900:
10107 break;
10108
deec1734
CD
10109 case OPTION_MDMX:
10110 mips_opts.ase_mdmx = 1;
10111 break;
10112
10113 case OPTION_NO_MDMX:
10114 mips_opts.ase_mdmx = 0;
10115 break;
10116
252b5132
RH
10117 case OPTION_MIPS16:
10118 mips_opts.mips16 = 1;
10119 mips_no_prev_insn (false);
10120 break;
10121
10122 case OPTION_NO_MIPS16:
10123 mips_opts.mips16 = 0;
10124 mips_no_prev_insn (false);
10125 break;
10126
1f25f5d3
CD
10127 case OPTION_MIPS3D:
10128 mips_opts.ase_mips3d = 1;
10129 break;
10130
10131 case OPTION_NO_MIPS3D:
10132 mips_opts.ase_mips3d = 0;
10133 break;
10134
252b5132
RH
10135 case OPTION_MEMBEDDED_PIC:
10136 mips_pic = EMBEDDED_PIC;
10137 if (USE_GLOBAL_POINTER_OPT && g_switch_seen)
10138 {
10139 as_bad (_("-G may not be used with embedded PIC code"));
10140 return 0;
10141 }
10142 g_switch_value = 0x7fffffff;
10143 break;
10144
0f074f60 10145#ifdef OBJ_ELF
252b5132
RH
10146 /* When generating ELF code, we permit -KPIC and -call_shared to
10147 select SVR4_PIC, and -non_shared to select no PIC. This is
10148 intended to be compatible with Irix 5. */
10149 case OPTION_CALL_SHARED:
10150 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10151 {
10152 as_bad (_("-call_shared is supported only for ELF format"));
10153 return 0;
10154 }
10155 mips_pic = SVR4_PIC;
10156 if (g_switch_seen && g_switch_value != 0)
10157 {
10158 as_bad (_("-G may not be used with SVR4 PIC code"));
10159 return 0;
10160 }
10161 g_switch_value = 0;
10162 break;
10163
10164 case OPTION_NON_SHARED:
10165 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10166 {
10167 as_bad (_("-non_shared is supported only for ELF format"));
10168 return 0;
10169 }
10170 mips_pic = NO_PIC;
10171 break;
10172
10173 /* The -xgot option tells the assembler to use 32 offsets when
10174 accessing the got in SVR4_PIC mode. It is for Irix
10175 compatibility. */
10176 case OPTION_XGOT:
10177 mips_big_got = 1;
10178 break;
0f074f60 10179#endif /* OBJ_ELF */
252b5132
RH
10180
10181 case 'G':
10182 if (! USE_GLOBAL_POINTER_OPT)
10183 {
10184 as_bad (_("-G is not supported for this configuration"));
10185 return 0;
10186 }
10187 else if (mips_pic == SVR4_PIC || mips_pic == EMBEDDED_PIC)
10188 {
10189 as_bad (_("-G may not be used with SVR4 or embedded PIC code"));
10190 return 0;
10191 }
10192 else
10193 g_switch_value = atoi (arg);
10194 g_switch_seen = 1;
10195 break;
10196
0f074f60 10197#ifdef OBJ_ELF
34ba82a8
TS
10198 /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32
10199 and -mabi=64. */
252b5132 10200 case OPTION_32:
34ba82a8
TS
10201 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10202 {
10203 as_bad (_("-32 is supported for ELF format only"));
10204 return 0;
10205 }
316f5878 10206 mips_abi = O32_ABI;
252b5132
RH
10207 break;
10208
e013f690 10209 case OPTION_N32:
34ba82a8
TS
10210 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10211 {
10212 as_bad (_("-n32 is supported for ELF format only"));
10213 return 0;
10214 }
316f5878 10215 mips_abi = N32_ABI;
e013f690 10216 break;
252b5132 10217
e013f690 10218 case OPTION_64:
34ba82a8
TS
10219 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10220 {
10221 as_bad (_("-64 is supported for ELF format only"));
10222 return 0;
10223 }
316f5878 10224 mips_abi = N64_ABI;
e013f690
TS
10225 if (! support_64bit_objects())
10226 as_fatal (_("No compiled in support for 64 bit object file format"));
252b5132 10227 break;
ae948b86 10228#endif /* OBJ_ELF */
252b5132 10229
c97ef257 10230 case OPTION_GP32:
a325df1d 10231 file_mips_gp32 = 1;
c97ef257
AH
10232 break;
10233
10234 case OPTION_GP64:
a325df1d 10235 file_mips_gp32 = 0;
c97ef257 10236 break;
252b5132 10237
ca4e0257 10238 case OPTION_FP32:
a325df1d 10239 file_mips_fp32 = 1;
316f5878
RS
10240 break;
10241
10242 case OPTION_FP64:
10243 file_mips_fp32 = 0;
ca4e0257
RS
10244 break;
10245
ae948b86 10246#ifdef OBJ_ELF
252b5132 10247 case OPTION_MABI:
34ba82a8
TS
10248 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
10249 {
10250 as_bad (_("-mabi is supported for ELF format only"));
10251 return 0;
10252 }
e013f690 10253 if (strcmp (arg, "32") == 0)
316f5878 10254 mips_abi = O32_ABI;
e013f690 10255 else if (strcmp (arg, "o64") == 0)
316f5878 10256 mips_abi = O64_ABI;
e013f690 10257 else if (strcmp (arg, "n32") == 0)
316f5878 10258 mips_abi = N32_ABI;
e013f690
TS
10259 else if (strcmp (arg, "64") == 0)
10260 {
316f5878 10261 mips_abi = N64_ABI;
e013f690
TS
10262 if (! support_64bit_objects())
10263 as_fatal (_("No compiled in support for 64 bit object file "
10264 "format"));
10265 }
10266 else if (strcmp (arg, "eabi") == 0)
316f5878 10267 mips_abi = EABI_ABI;
e013f690 10268 else
da0e507f
TS
10269 {
10270 as_fatal (_("invalid abi -mabi=%s"), arg);
10271 return 0;
10272 }
252b5132 10273 break;
e013f690 10274#endif /* OBJ_ELF */
252b5132 10275
6b76fefe
CM
10276 case OPTION_M7000_HILO_FIX:
10277 mips_7000_hilo_fix = true;
10278 break;
10279
9ee72ff1 10280 case OPTION_MNO_7000_HILO_FIX:
6b76fefe
CM
10281 mips_7000_hilo_fix = false;
10282 break;
10283
ecb4347a
DJ
10284#ifdef OBJ_ELF
10285 case OPTION_MDEBUG:
10286 mips_flag_mdebug = true;
10287 break;
10288
10289 case OPTION_NO_MDEBUG:
10290 mips_flag_mdebug = false;
10291 break;
10292#endif /* OBJ_ELF */
10293
252b5132
RH
10294 default:
10295 return 0;
10296 }
10297
10298 return 1;
10299}
316f5878
RS
10300\f
10301/* Set up globals to generate code for the ISA or processor
10302 described by INFO. */
252b5132 10303
252b5132 10304static void
316f5878
RS
10305mips_set_architecture (info)
10306 const struct mips_cpu_info *info;
252b5132 10307{
316f5878 10308 if (info != 0)
252b5132 10309 {
316f5878
RS
10310 mips_arch_info = info;
10311 mips_arch = info->cpu;
10312 mips_opts.isa = info->isa;
252b5132 10313 }
252b5132
RH
10314}
10315
252b5132 10316
316f5878 10317/* Likewise for tuning. */
252b5132 10318
316f5878
RS
10319static void
10320mips_set_tune (info)
10321 const struct mips_cpu_info *info;
10322{
10323 if (info != 0)
10324 {
10325 mips_tune_info = info;
10326 mips_tune = info->cpu;
10327 }
10328}
80cc45a5 10329
34ba82a8 10330
252b5132 10331void
e9670677
MR
10332mips_after_parse_args ()
10333{
e9670677
MR
10334 /* GP relative stuff not working for PE */
10335 if (strncmp (TARGET_OS, "pe", 2) == 0
10336 && g_switch_value != 0)
10337 {
10338 if (g_switch_seen)
10339 as_bad (_("-G not supported in this configuration."));
10340 g_switch_value = 0;
10341 }
10342
22923709
RS
10343 /* The following code determines the architecture and register size.
10344 Similar code was added to GCC 3.3 (see override_options() in
10345 config/mips/mips.c). The GAS and GCC code should be kept in sync
10346 as much as possible. */
e9670677 10347
316f5878
RS
10348 if (mips_arch_string != 0)
10349 mips_set_architecture (mips_parse_cpu ("-march", mips_arch_string));
e9670677 10350
316f5878
RS
10351 if (mips_tune_string != 0)
10352 mips_set_tune (mips_parse_cpu ("-mtune", mips_tune_string));
e9670677 10353
316f5878 10354 if (file_mips_isa != ISA_UNKNOWN)
e9670677 10355 {
316f5878
RS
10356 /* Handle -mipsN. At this point, file_mips_isa contains the
10357 ISA level specified by -mipsN, while mips_opts.isa contains
10358 the -march selection (if any). */
10359 if (mips_arch_info != 0)
e9670677 10360 {
316f5878
RS
10361 /* -march takes precedence over -mipsN, since it is more descriptive.
10362 There's no harm in specifying both as long as the ISA levels
10363 are the same. */
10364 if (file_mips_isa != mips_opts.isa)
10365 as_bad (_("-%s conflicts with the other architecture options, which imply -%s"),
10366 mips_cpu_info_from_isa (file_mips_isa)->name,
10367 mips_cpu_info_from_isa (mips_opts.isa)->name);
e9670677 10368 }
316f5878
RS
10369 else
10370 mips_set_architecture (mips_cpu_info_from_isa (file_mips_isa));
e9670677
MR
10371 }
10372
316f5878
RS
10373 if (mips_arch_info == 0)
10374 mips_set_architecture (mips_parse_cpu ("default CPU",
10375 MIPS_CPU_STRING_DEFAULT));
e9670677 10376
316f5878
RS
10377 if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (mips_opts.isa))
10378 as_bad ("-march=%s is not compatible with the selected ABI",
10379 mips_arch_info->name);
e9670677 10380
316f5878
RS
10381 /* Optimize for mips_arch, unless -mtune selects a different processor. */
10382 if (mips_tune_info == 0)
10383 mips_set_tune (mips_arch_info);
e9670677 10384
316f5878 10385 if (file_mips_gp32 >= 0)
e9670677 10386 {
316f5878
RS
10387 /* The user specified the size of the integer registers. Make sure
10388 it agrees with the ABI and ISA. */
10389 if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa))
10390 as_bad (_("-mgp64 used with a 32-bit processor"));
10391 else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi))
10392 as_bad (_("-mgp32 used with a 64-bit ABI"));
10393 else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi))
10394 as_bad (_("-mgp64 used with a 32-bit ABI"));
e9670677
MR
10395 }
10396 else
10397 {
316f5878
RS
10398 /* Infer the integer register size from the ABI and processor.
10399 Restrict ourselves to 32-bit registers if that's all the
10400 processor has, or if the ABI cannot handle 64-bit registers. */
10401 file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi)
10402 || !ISA_HAS_64BIT_REGS (mips_opts.isa));
e9670677
MR
10403 }
10404
316f5878
RS
10405 /* ??? GAS treats single-float processors as though they had 64-bit
10406 float registers (although it complains when double-precision
10407 instructions are used). As things stand, saying they have 32-bit
10408 registers would lead to spurious "register must be even" messages.
10409 So here we assume float registers are always the same size as
10410 integer ones, unless the user says otherwise. */
10411 if (file_mips_fp32 < 0)
10412 file_mips_fp32 = file_mips_gp32;
e9670677 10413
316f5878 10414 /* End of GCC-shared inference code. */
e9670677 10415
316f5878
RS
10416 /* ??? When do we want this flag to be set? Who uses it? */
10417 if (file_mips_gp32 == 1
10418 && mips_abi == NO_ABI
10419 && ISA_HAS_64BIT_REGS (mips_opts.isa))
10420 mips_32bitmode = 1;
e9670677
MR
10421
10422 if (mips_opts.isa == ISA_MIPS1 && mips_trap)
10423 as_bad (_("trap exception not supported at ISA 1"));
10424
e9670677
MR
10425 /* If the selected architecture includes support for ASEs, enable
10426 generation of code for them. */
a4672219
TS
10427 if (mips_opts.mips16 == -1)
10428 mips_opts.mips16 = (CPU_HAS_MIPS16 (mips_arch)) ? 1 : 0;
ffdefa66 10429 if (mips_opts.ase_mips3d == -1)
a4672219 10430 mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (mips_arch)) ? 1 : 0;
ffdefa66 10431 if (mips_opts.ase_mdmx == -1)
a4672219 10432 mips_opts.ase_mdmx = (CPU_HAS_MDMX (mips_arch)) ? 1 : 0;
e9670677 10433
e9670677 10434 file_mips_isa = mips_opts.isa;
a4672219 10435 file_ase_mips16 = mips_opts.mips16;
e9670677
MR
10436 file_ase_mips3d = mips_opts.ase_mips3d;
10437 file_ase_mdmx = mips_opts.ase_mdmx;
10438 mips_opts.gp32 = file_mips_gp32;
10439 mips_opts.fp32 = file_mips_fp32;
10440
ecb4347a
DJ
10441 if (mips_flag_mdebug < 0)
10442 {
10443#ifdef OBJ_MAYBE_ECOFF
10444 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour)
10445 mips_flag_mdebug = 1;
10446 else
10447#endif /* OBJ_MAYBE_ECOFF */
10448 mips_flag_mdebug = 0;
10449 }
e9670677
MR
10450}
10451\f
10452void
252b5132
RH
10453mips_init_after_args ()
10454{
10455 /* initialize opcodes */
10456 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
beae10d5 10457 mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes;
252b5132
RH
10458}
10459
10460long
10461md_pcrel_from (fixP)
10462 fixS *fixP;
10463{
10464 if (OUTPUT_FLAVOR != bfd_target_aout_flavour
10465 && fixP->fx_addsy != (symbolS *) NULL
10466 && ! S_IS_DEFINED (fixP->fx_addsy))
10467 {
6478892d
TS
10468 /* This makes a branch to an undefined symbol be a branch to the
10469 current location. */
cb56d3d3 10470 if (mips_pic == EMBEDDED_PIC)
6478892d 10471 return 4;
cb56d3d3 10472 else
6478892d 10473 return 1;
252b5132
RH
10474 }
10475
c9914766 10476 /* Return the address of the delay slot. */
252b5132
RH
10477 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
10478}
10479
252b5132
RH
10480/* This is called before the symbol table is processed. In order to
10481 work with gcc when using mips-tfile, we must keep all local labels.
10482 However, in other cases, we want to discard them. If we were
10483 called with -g, but we didn't see any debugging information, it may
10484 mean that gcc is smuggling debugging information through to
10485 mips-tfile, in which case we must generate all local labels. */
10486
10487void
10488mips_frob_file_before_adjust ()
10489{
10490#ifndef NO_ECOFF_DEBUGGING
10491 if (ECOFF_DEBUGGING
10492 && mips_debug != 0
10493 && ! ecoff_debugging_seen)
10494 flag_keep_locals = 1;
10495#endif
10496}
10497
10498/* Sort any unmatched HI16_S relocs so that they immediately precede
94f592af 10499 the corresponding LO reloc. This is called before md_apply_fix3 and
252b5132
RH
10500 tc_gen_reloc. Unmatched HI16_S relocs can only be generated by
10501 explicit use of the %hi modifier. */
10502
10503void
10504mips_frob_file ()
10505{
10506 struct mips_hi_fixup *l;
10507
10508 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
10509 {
10510 segment_info_type *seginfo;
10511 int pass;
10512
10513 assert (l->fixp->fx_r_type == BFD_RELOC_HI16_S);
10514
10515 /* Check quickly whether the next fixup happens to be a matching
10516 %lo. */
10517 if (l->fixp->fx_next != NULL
10518 && l->fixp->fx_next->fx_r_type == BFD_RELOC_LO16
10519 && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
10520 && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
10521 continue;
10522
10523 /* Look through the fixups for this segment for a matching %lo.
10524 When we find one, move the %hi just in front of it. We do
10525 this in two passes. In the first pass, we try to find a
10526 unique %lo. In the second pass, we permit multiple %hi
10527 relocs for a single %lo (this is a GNU extension). */
10528 seginfo = seg_info (l->seg);
10529 for (pass = 0; pass < 2; pass++)
10530 {
10531 fixS *f, *prev;
10532
10533 prev = NULL;
10534 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
10535 {
10536 /* Check whether this is a %lo fixup which matches l->fixp. */
10537 if (f->fx_r_type == BFD_RELOC_LO16
10538 && f->fx_addsy == l->fixp->fx_addsy
10539 && f->fx_offset == l->fixp->fx_offset
10540 && (pass == 1
10541 || prev == NULL
10542 || prev->fx_r_type != BFD_RELOC_HI16_S
10543 || prev->fx_addsy != f->fx_addsy
10544 || prev->fx_offset != f->fx_offset))
10545 {
10546 fixS **pf;
10547
10548 /* Move l->fixp before f. */
10549 for (pf = &seginfo->fix_root;
10550 *pf != l->fixp;
10551 pf = &(*pf)->fx_next)
10552 assert (*pf != NULL);
10553
10554 *pf = l->fixp->fx_next;
10555
10556 l->fixp->fx_next = f;
10557 if (prev == NULL)
10558 seginfo->fix_root = l->fixp;
10559 else
10560 prev->fx_next = l->fixp;
10561
10562 break;
10563 }
10564
10565 prev = f;
10566 }
10567
10568 if (f != NULL)
10569 break;
10570
10571#if 0 /* GCC code motion plus incomplete dead code elimination
10572 can leave a %hi without a %lo. */
10573 if (pass == 1)
10574 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
10575 _("Unmatched %%hi reloc"));
10576#endif
10577 }
10578 }
10579}
10580
10581/* When generating embedded PIC code we need to use a special
10582 relocation to represent the difference of two symbols in the .text
10583 section (switch tables use a difference of this sort). See
10584 include/coff/mips.h for details. This macro checks whether this
10585 fixup requires the special reloc. */
10586#define SWITCH_TABLE(fixp) \
10587 ((fixp)->fx_r_type == BFD_RELOC_32 \
bb2d6cd7 10588 && OUTPUT_FLAVOR != bfd_target_elf_flavour \
252b5132
RH
10589 && (fixp)->fx_addsy != NULL \
10590 && (fixp)->fx_subsy != NULL \
10591 && S_GET_SEGMENT ((fixp)->fx_addsy) == text_section \
10592 && S_GET_SEGMENT ((fixp)->fx_subsy) == text_section)
10593
10594/* When generating embedded PIC code we must keep all PC relative
10595 relocations, in case the linker has to relax a call. We also need
f6688943
TS
10596 to keep relocations for switch table entries.
10597
10598 We may have combined relocations without symbols in the N32/N64 ABI.
10599 We have to prevent gas from dropping them. */
252b5132 10600
252b5132
RH
10601int
10602mips_force_relocation (fixp)
10603 fixS *fixp;
10604{
10605 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
a161fe53
AM
10606 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY
10607 || S_FORCE_RELOC (fixp->fx_addsy))
252b5132
RH
10608 return 1;
10609
f6688943
TS
10610 if (HAVE_NEWABI
10611 && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr
10612 && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB
10613 || fixp->fx_r_type == BFD_RELOC_HI16_S
10614 || fixp->fx_r_type == BFD_RELOC_LO16))
10615 return 1;
10616
252b5132
RH
10617 return (mips_pic == EMBEDDED_PIC
10618 && (fixp->fx_pcrel
10619 || SWITCH_TABLE (fixp)
10620 || fixp->fx_r_type == BFD_RELOC_PCREL_HI16_S
10621 || fixp->fx_r_type == BFD_RELOC_PCREL_LO16));
10622}
10623
add55e1f
RS
10624#ifdef OBJ_ELF
10625static int
10626mips_need_elf_addend_fixup (fixP)
10627 fixS *fixP;
10628{
2d2bf3e0
CD
10629 if (S_GET_OTHER (fixP->fx_addsy) == STO_MIPS16)
10630 return 1;
b25a253c
CD
10631 if (mips_pic == EMBEDDED_PIC
10632 && S_IS_WEAK (fixP->fx_addsy))
10633 return 1;
10634 if (mips_pic != EMBEDDED_PIC
10635 && (S_IS_WEAK (fixP->fx_addsy)
bad9ca53 10636 || S_IS_EXTERNAL (fixP->fx_addsy))
2d2bf3e0
CD
10637 && !S_IS_COMMON (fixP->fx_addsy))
10638 return 1;
10639 if (symbol_used_in_reloc_p (fixP->fx_addsy)
10640 && (((bfd_get_section_flags (stdoutput,
10641 S_GET_SEGMENT (fixP->fx_addsy))
10642 & SEC_LINK_ONCE) != 0)
10643 || !strncmp (segment_name (S_GET_SEGMENT (fixP->fx_addsy)),
10644 ".gnu.linkonce",
10645 sizeof (".gnu.linkonce") - 1)))
10646 return 1;
10647 return 0;
add55e1f
RS
10648}
10649#endif
10650
252b5132
RH
10651/* Apply a fixup to the object file. */
10652
94f592af
NC
10653void
10654md_apply_fix3 (fixP, valP, seg)
252b5132 10655 fixS *fixP;
98d3f06f 10656 valueT *valP;
94f592af 10657 segT seg ATTRIBUTE_UNUSED;
252b5132 10658{
874e8986 10659 bfd_byte *buf;
98aa84af
AM
10660 long insn;
10661 valueT value;
ed6fb7bd 10662 static int previous_fx_r_type = 0;
252b5132
RH
10663
10664 assert (fixP->fx_size == 4
10665 || fixP->fx_r_type == BFD_RELOC_16
f6688943
TS
10666 || fixP->fx_r_type == BFD_RELOC_32
10667 || fixP->fx_r_type == BFD_RELOC_MIPS_JMP
10668 || fixP->fx_r_type == BFD_RELOC_HI16_S
10669 || fixP->fx_r_type == BFD_RELOC_LO16
10670 || fixP->fx_r_type == BFD_RELOC_GPREL16
76b3015f 10671 || fixP->fx_r_type == BFD_RELOC_MIPS_LITERAL
f6688943 10672 || fixP->fx_r_type == BFD_RELOC_GPREL32
252b5132 10673 || fixP->fx_r_type == BFD_RELOC_64
f6688943
TS
10674 || fixP->fx_r_type == BFD_RELOC_CTOR
10675 || fixP->fx_r_type == BFD_RELOC_MIPS_SUB
10676 || fixP->fx_r_type == BFD_RELOC_MIPS_HIGHEST
10677 || fixP->fx_r_type == BFD_RELOC_MIPS_HIGHER
10678 || fixP->fx_r_type == BFD_RELOC_MIPS_SCN_DISP
10679 || fixP->fx_r_type == BFD_RELOC_MIPS_REL16
10680 || fixP->fx_r_type == BFD_RELOC_MIPS_RELGOT
252b5132 10681 || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
438c16b8
TS
10682 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY
10683 || fixP->fx_r_type == BFD_RELOC_MIPS_JALR);
252b5132 10684
98d3f06f 10685 value = *valP;
252b5132
RH
10686
10687 /* If we aren't adjusting this fixup to be against the section
10688 symbol, we need to adjust the value. */
10689#ifdef OBJ_ELF
10690 if (fixP->fx_addsy != NULL && OUTPUT_FLAVOR == bfd_target_elf_flavour)
bb2d6cd7 10691 {
add55e1f 10692 if (mips_need_elf_addend_fixup (fixP))
98aa84af 10693 {
d6e9d61a 10694 reloc_howto_type *howto;
98aa84af 10695 valueT symval = S_GET_VALUE (fixP->fx_addsy);
94f592af 10696
98aa84af 10697 value -= symval;
d6e9d61a
MR
10698
10699 howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type);
10700 if (value != 0 && howto->partial_inplace && ! fixP->fx_pcrel)
98aa84af
AM
10701 {
10702 /* In this case, the bfd_install_relocation routine will
10703 incorrectly add the symbol value back in. We just want
7461da6e 10704 the addend to appear in the object file. */
98aa84af 10705 value -= symval;
7461da6e
RS
10706
10707 /* Make sure the addend is still non-zero. If it became zero
10708 after the last operation, set it to a spurious value and
10709 subtract the same value from the object file's contents. */
10710 if (value == 0)
10711 {
10712 value = 8;
10713
10714 /* The in-place addends for LO16 relocations are signed;
10715 leave the matching HI16 in-place addends as zero. */
10716 if (fixP->fx_r_type != BFD_RELOC_HI16_S)
10717 {
7461da6e
RS
10718 bfd_vma contents, mask, field;
10719
7461da6e
RS
10720 contents = bfd_get_bits (fixP->fx_frag->fr_literal
10721 + fixP->fx_where,
10722 fixP->fx_size * 8,
10723 target_big_endian);
10724
10725 /* MASK has bits set where the relocation should go.
10726 FIELD is -value, shifted into the appropriate place
10727 for this relocation. */
10728 mask = 1 << (howto->bitsize - 1);
10729 mask = (((mask - 1) << 1) | 1) << howto->bitpos;
10730 field = (-value >> howto->rightshift) << howto->bitpos;
10731
10732 bfd_put_bits ((field & mask) | (contents & ~mask),
10733 fixP->fx_frag->fr_literal + fixP->fx_where,
10734 fixP->fx_size * 8,
10735 target_big_endian);
10736 }
10737 }
98aa84af
AM
10738 }
10739 }
252b5132 10740
bb2d6cd7
GK
10741 /* This code was generated using trial and error and so is
10742 fragile and not trustworthy. If you change it, you should
10743 rerun the elf-rel, elf-rel2, and empic testcases and ensure
10744 they still pass. */
10745 if (fixP->fx_pcrel || fixP->fx_subsy != NULL)
10746 {
10747 value += fixP->fx_frag->fr_address + fixP->fx_where;
10748
10749 /* BFD's REL handling, for MIPS, is _very_ weird.
10750 This gives the right results, but it can't possibly
10751 be the way things are supposed to work. */
cb56d3d3
TS
10752 if ((fixP->fx_r_type != BFD_RELOC_16_PCREL
10753 && fixP->fx_r_type != BFD_RELOC_16_PCREL_S2)
bb2d6cd7
GK
10754 || S_GET_SEGMENT (fixP->fx_addsy) != undefined_section)
10755 value += fixP->fx_frag->fr_address + fixP->fx_where;
10756 }
10757 }
10758#endif
252b5132 10759
94f592af 10760 fixP->fx_addnumber = value; /* Remember value for tc_gen_reloc. */
252b5132 10761
ed6fb7bd
SC
10762 /* We are not done if this is a composite relocation to set up gp. */
10763 if (fixP->fx_addsy == NULL && ! fixP->fx_pcrel
10764 && !(fixP->fx_r_type == BFD_RELOC_MIPS_SUB
10765 || (previous_fx_r_type == BFD_RELOC_MIPS_SUB
10766 && (fixP->fx_r_type == BFD_RELOC_HI16_S
10767 || fixP->fx_r_type == BFD_RELOC_LO16))))
252b5132 10768 fixP->fx_done = 1;
ed6fb7bd 10769 previous_fx_r_type = fixP->fx_r_type;
252b5132
RH
10770
10771 switch (fixP->fx_r_type)
10772 {
10773 case BFD_RELOC_MIPS_JMP:
e369bcce
TS
10774 case BFD_RELOC_MIPS_SHIFT5:
10775 case BFD_RELOC_MIPS_SHIFT6:
10776 case BFD_RELOC_MIPS_GOT_DISP:
10777 case BFD_RELOC_MIPS_GOT_PAGE:
10778 case BFD_RELOC_MIPS_GOT_OFST:
10779 case BFD_RELOC_MIPS_SUB:
10780 case BFD_RELOC_MIPS_INSERT_A:
10781 case BFD_RELOC_MIPS_INSERT_B:
10782 case BFD_RELOC_MIPS_DELETE:
10783 case BFD_RELOC_MIPS_HIGHEST:
10784 case BFD_RELOC_MIPS_HIGHER:
10785 case BFD_RELOC_MIPS_SCN_DISP:
10786 case BFD_RELOC_MIPS_REL16:
10787 case BFD_RELOC_MIPS_RELGOT:
10788 case BFD_RELOC_MIPS_JALR:
252b5132
RH
10789 case BFD_RELOC_HI16:
10790 case BFD_RELOC_HI16_S:
cdf6fd85 10791 case BFD_RELOC_GPREL16:
252b5132
RH
10792 case BFD_RELOC_MIPS_LITERAL:
10793 case BFD_RELOC_MIPS_CALL16:
10794 case BFD_RELOC_MIPS_GOT16:
cdf6fd85 10795 case BFD_RELOC_GPREL32:
252b5132
RH
10796 case BFD_RELOC_MIPS_GOT_HI16:
10797 case BFD_RELOC_MIPS_GOT_LO16:
10798 case BFD_RELOC_MIPS_CALL_HI16:
10799 case BFD_RELOC_MIPS_CALL_LO16:
10800 case BFD_RELOC_MIPS16_GPREL:
10801 if (fixP->fx_pcrel)
10802 as_bad_where (fixP->fx_file, fixP->fx_line,
10803 _("Invalid PC relative reloc"));
10804 /* Nothing needed to do. The value comes from the reloc entry */
10805 break;
10806
10807 case BFD_RELOC_MIPS16_JMP:
10808 /* We currently always generate a reloc against a symbol, which
10809 means that we don't want an addend even if the symbol is
10810 defined. */
10811 fixP->fx_addnumber = 0;
10812 break;
10813
10814 case BFD_RELOC_PCREL_HI16_S:
10815 /* The addend for this is tricky if it is internal, so we just
10816 do everything here rather than in bfd_install_relocation. */
bdaaa2e1 10817 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
bb2d6cd7
GK
10818 && !fixP->fx_done
10819 && value != 0)
10820 break;
10821 if (fixP->fx_addsy
10822 && (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_SECTION_SYM) == 0)
252b5132
RH
10823 {
10824 /* For an external symbol adjust by the address to make it
10825 pcrel_offset. We use the address of the RELLO reloc
10826 which follows this one. */
10827 value += (fixP->fx_next->fx_frag->fr_address
10828 + fixP->fx_next->fx_where);
10829 }
e7d556df 10830 value = ((value + 0x8000) >> 16) & 0xffff;
874e8986 10831 buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
252b5132
RH
10832 if (target_big_endian)
10833 buf += 2;
874e8986 10834 md_number_to_chars ((char *) buf, value, 2);
252b5132
RH
10835 break;
10836
10837 case BFD_RELOC_PCREL_LO16:
10838 /* The addend for this is tricky if it is internal, so we just
10839 do everything here rather than in bfd_install_relocation. */
bdaaa2e1 10840 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
bb2d6cd7
GK
10841 && !fixP->fx_done
10842 && value != 0)
10843 break;
10844 if (fixP->fx_addsy
10845 && (symbol_get_bfdsym (fixP->fx_addsy)->flags & BSF_SECTION_SYM) == 0)
252b5132 10846 value += fixP->fx_frag->fr_address + fixP->fx_where;
874e8986 10847 buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
252b5132
RH
10848 if (target_big_endian)
10849 buf += 2;
874e8986 10850 md_number_to_chars ((char *) buf, value, 2);
252b5132
RH
10851 break;
10852
10853 case BFD_RELOC_64:
10854 /* This is handled like BFD_RELOC_32, but we output a sign
10855 extended value if we are only 32 bits. */
10856 if (fixP->fx_done
10857 || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
10858 {
10859 if (8 <= sizeof (valueT))
10860 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
10861 value, 8);
10862 else
10863 {
10864 long w1, w2;
10865 long hiv;
10866
10867 w1 = w2 = fixP->fx_where;
10868 if (target_big_endian)
10869 w1 += 4;
10870 else
10871 w2 += 4;
10872 md_number_to_chars (fixP->fx_frag->fr_literal + w1, value, 4);
10873 if ((value & 0x80000000) != 0)
10874 hiv = 0xffffffff;
10875 else
10876 hiv = 0;
10877 md_number_to_chars (fixP->fx_frag->fr_literal + w2, hiv, 4);
10878 }
10879 }
10880 break;
10881
056350c6 10882 case BFD_RELOC_RVA:
252b5132
RH
10883 case BFD_RELOC_32:
10884 /* If we are deleting this reloc entry, we must fill in the
10885 value now. This can happen if we have a .word which is not
10886 resolved when it appears but is later defined. We also need
10887 to fill in the value if this is an embedded PIC switch table
10888 entry. */
10889 if (fixP->fx_done
10890 || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
10891 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
10892 value, 4);
10893 break;
10894
10895 case BFD_RELOC_16:
10896 /* If we are deleting this reloc entry, we must fill in the
10897 value now. */
10898 assert (fixP->fx_size == 2);
10899 if (fixP->fx_done)
10900 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
10901 value, 2);
10902 break;
10903
10904 case BFD_RELOC_LO16:
10905 /* When handling an embedded PIC switch statement, we can wind
10906 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
10907 if (fixP->fx_done)
10908 {
98aa84af 10909 if (value + 0x8000 > 0xffff)
252b5132
RH
10910 as_bad_where (fixP->fx_file, fixP->fx_line,
10911 _("relocation overflow"));
874e8986 10912 buf = (bfd_byte *) fixP->fx_frag->fr_literal + fixP->fx_where;
252b5132
RH
10913 if (target_big_endian)
10914 buf += 2;
874e8986 10915 md_number_to_chars ((char *) buf, value, 2);
252b5132
RH
10916 }
10917 break;
10918
10919 case BFD_RELOC_16_PCREL_S2:
cb56d3d3
TS
10920 if ((value & 0x3) != 0)
10921 as_bad_where (fixP->fx_file, fixP->fx_line,
10922 _("Branch to odd address (%lx)"), (long) value);
10923
10924 /* Fall through. */
10925
10926 case BFD_RELOC_16_PCREL:
252b5132
RH
10927 /*
10928 * We need to save the bits in the instruction since fixup_segment()
10929 * might be deleting the relocation entry (i.e., a branch within
10930 * the current segment).
10931 */
bb2d6cd7
GK
10932 if (!fixP->fx_done && value != 0)
10933 break;
10934 /* If 'value' is zero, the remaining reloc code won't actually
10935 do the store, so it must be done here. This is probably
10936 a bug somewhere. */
b25a253c
CD
10937 if (!fixP->fx_done
10938 && (fixP->fx_r_type != BFD_RELOC_16_PCREL_S2
10939 || fixP->fx_addsy == NULL /* ??? */
10940 || ! S_IS_DEFINED (fixP->fx_addsy)))
bb2d6cd7 10941 value -= fixP->fx_frag->fr_address + fixP->fx_where;
bdaaa2e1 10942
98aa84af 10943 value = (offsetT) value >> 2;
252b5132
RH
10944
10945 /* update old instruction data */
874e8986 10946 buf = (bfd_byte *) (fixP->fx_where + fixP->fx_frag->fr_literal);
252b5132
RH
10947 if (target_big_endian)
10948 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
10949 else
10950 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
10951
98aa84af 10952 if (value + 0x8000 <= 0xffff)
252b5132
RH
10953 insn |= value & 0xffff;
10954 else
10955 {
10956 /* The branch offset is too large. If this is an
10957 unconditional branch, and we are not generating PIC code,
10958 we can convert it to an absolute jump instruction. */
10959 if (mips_pic == NO_PIC
10960 && fixP->fx_done
10961 && fixP->fx_frag->fr_address >= text_section->vma
10962 && (fixP->fx_frag->fr_address
10963 < text_section->vma + text_section->_raw_size)
10964 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
10965 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
10966 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
10967 {
10968 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
10969 insn = 0x0c000000; /* jal */
10970 else
10971 insn = 0x08000000; /* j */
10972 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
10973 fixP->fx_done = 0;
10974 fixP->fx_addsy = section_symbol (text_section);
10975 fixP->fx_addnumber = (value << 2) + md_pcrel_from (fixP);
10976 }
10977 else
10978 {
10979 /* FIXME. It would be possible in principle to handle
10980 conditional branches which overflow. They could be
10981 transformed into a branch around a jump. This would
10982 require setting up variant frags for each different
10983 branch type. The native MIPS assembler attempts to
10984 handle these cases, but it appears to do it
10985 incorrectly. */
10986 as_bad_where (fixP->fx_file, fixP->fx_line,
10987 _("Branch out of range"));
10988 }
10989 }
10990
10991 md_number_to_chars ((char *) buf, (valueT) insn, 4);
10992 break;
10993
10994 case BFD_RELOC_VTABLE_INHERIT:
10995 fixP->fx_done = 0;
10996 if (fixP->fx_addsy
10997 && !S_IS_DEFINED (fixP->fx_addsy)
10998 && !S_IS_WEAK (fixP->fx_addsy))
10999 S_SET_WEAK (fixP->fx_addsy);
11000 break;
11001
11002 case BFD_RELOC_VTABLE_ENTRY:
11003 fixP->fx_done = 0;
11004 break;
11005
11006 default:
11007 internalError ();
11008 }
252b5132
RH
11009}
11010
11011#if 0
11012void
11013printInsn (oc)
11014 unsigned long oc;
11015{
11016 const struct mips_opcode *p;
11017 int treg, sreg, dreg, shamt;
11018 short imm;
11019 const char *args;
11020 int i;
11021
11022 for (i = 0; i < NUMOPCODES; ++i)
11023 {
11024 p = &mips_opcodes[i];
11025 if (((oc & p->mask) == p->match) && (p->pinfo != INSN_MACRO))
11026 {
11027 printf ("%08lx %s\t", oc, p->name);
11028 treg = (oc >> 16) & 0x1f;
11029 sreg = (oc >> 21) & 0x1f;
11030 dreg = (oc >> 11) & 0x1f;
11031 shamt = (oc >> 6) & 0x1f;
11032 imm = oc;
11033 for (args = p->args;; ++args)
11034 {
11035 switch (*args)
11036 {
11037 case '\0':
11038 printf ("\n");
11039 break;
11040
11041 case ',':
11042 case '(':
11043 case ')':
11044 printf ("%c", *args);
11045 continue;
11046
11047 case 'r':
11048 assert (treg == sreg);
11049 printf ("$%d,$%d", treg, sreg);
11050 continue;
11051
11052 case 'd':
11053 case 'G':
11054 printf ("$%d", dreg);
11055 continue;
11056
11057 case 't':
11058 case 'E':
11059 printf ("$%d", treg);
11060 continue;
11061
11062 case 'k':
11063 printf ("0x%x", treg);
11064 continue;
11065
11066 case 'b':
11067 case 's':
11068 printf ("$%d", sreg);
11069 continue;
11070
11071 case 'a':
11072 printf ("0x%08lx", oc & 0x1ffffff);
11073 continue;
11074
11075 case 'i':
11076 case 'j':
11077 case 'o':
11078 case 'u':
11079 printf ("%d", imm);
11080 continue;
11081
11082 case '<':
11083 case '>':
11084 printf ("$%d", shamt);
11085 continue;
11086
11087 default:
11088 internalError ();
11089 }
11090 break;
11091 }
11092 return;
11093 }
11094 }
11095 printf (_("%08lx UNDEFINED\n"), oc);
11096}
11097#endif
11098
11099static symbolS *
11100get_symbol ()
11101{
11102 int c;
11103 char *name;
11104 symbolS *p;
11105
11106 name = input_line_pointer;
11107 c = get_symbol_end ();
11108 p = (symbolS *) symbol_find_or_make (name);
11109 *input_line_pointer = c;
11110 return p;
11111}
11112
11113/* Align the current frag to a given power of two. The MIPS assembler
11114 also automatically adjusts any preceding label. */
11115
11116static void
11117mips_align (to, fill, label)
11118 int to;
11119 int fill;
11120 symbolS *label;
11121{
11122 mips_emit_delays (false);
11123 frag_align (to, fill, 0);
11124 record_alignment (now_seg, to);
11125 if (label != NULL)
11126 {
11127 assert (S_GET_SEGMENT (label) == now_seg);
49309057 11128 symbol_set_frag (label, frag_now);
252b5132
RH
11129 S_SET_VALUE (label, (valueT) frag_now_fix ());
11130 }
11131}
11132
11133/* Align to a given power of two. .align 0 turns off the automatic
11134 alignment used by the data creating pseudo-ops. */
11135
11136static void
11137s_align (x)
43841e91 11138 int x ATTRIBUTE_UNUSED;
252b5132
RH
11139{
11140 register int temp;
11141 register long temp_fill;
11142 long max_alignment = 15;
11143
11144 /*
11145
11146 o Note that the assembler pulls down any immediately preceeding label
11147 to the aligned address.
11148 o It's not documented but auto alignment is reinstated by
11149 a .align pseudo instruction.
11150 o Note also that after auto alignment is turned off the mips assembler
11151 issues an error on attempt to assemble an improperly aligned data item.
11152 We don't.
11153
11154 */
11155
11156 temp = get_absolute_expression ();
11157 if (temp > max_alignment)
11158 as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment);
11159 else if (temp < 0)
11160 {
11161 as_warn (_("Alignment negative: 0 assumed."));
11162 temp = 0;
11163 }
11164 if (*input_line_pointer == ',')
11165 {
f9419b05 11166 ++input_line_pointer;
252b5132
RH
11167 temp_fill = get_absolute_expression ();
11168 }
11169 else
11170 temp_fill = 0;
11171 if (temp)
11172 {
11173 auto_align = 1;
11174 mips_align (temp, (int) temp_fill,
11175 insn_labels != NULL ? insn_labels->label : NULL);
11176 }
11177 else
11178 {
11179 auto_align = 0;
11180 }
11181
11182 demand_empty_rest_of_line ();
11183}
11184
11185void
11186mips_flush_pending_output ()
11187{
11188 mips_emit_delays (false);
11189 mips_clear_insn_labels ();
11190}
11191
11192static void
11193s_change_sec (sec)
11194 int sec;
11195{
11196 segT seg;
11197
11198 /* When generating embedded PIC code, we only use the .text, .lit8,
11199 .sdata and .sbss sections. We change the .data and .rdata
11200 pseudo-ops to use .sdata. */
11201 if (mips_pic == EMBEDDED_PIC
11202 && (sec == 'd' || sec == 'r'))
11203 sec = 's';
11204
11205#ifdef OBJ_ELF
11206 /* The ELF backend needs to know that we are changing sections, so
11207 that .previous works correctly. We could do something like check
b6ff326e 11208 for an obj_section_change_hook macro, but that might be confusing
252b5132
RH
11209 as it would not be appropriate to use it in the section changing
11210 functions in read.c, since obj-elf.c intercepts those. FIXME:
11211 This should be cleaner, somehow. */
11212 obj_elf_section_change_hook ();
11213#endif
11214
11215 mips_emit_delays (false);
11216 switch (sec)
11217 {
11218 case 't':
11219 s_text (0);
11220 break;
11221 case 'd':
11222 s_data (0);
11223 break;
11224 case 'b':
11225 subseg_set (bss_section, (subsegT) get_absolute_expression ());
11226 demand_empty_rest_of_line ();
11227 break;
11228
11229 case 'r':
11230 if (USE_GLOBAL_POINTER_OPT)
11231 {
11232 seg = subseg_new (RDATA_SECTION_NAME,
11233 (subsegT) get_absolute_expression ());
11234 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11235 {
11236 bfd_set_section_flags (stdoutput, seg,
11237 (SEC_ALLOC
11238 | SEC_LOAD
11239 | SEC_READONLY
11240 | SEC_RELOC
11241 | SEC_DATA));
11242 if (strcmp (TARGET_OS, "elf") != 0)
e799a695 11243 record_alignment (seg, 4);
252b5132
RH
11244 }
11245 demand_empty_rest_of_line ();
11246 }
11247 else
11248 {
11249 as_bad (_("No read only data section in this object file format"));
11250 demand_empty_rest_of_line ();
11251 return;
11252 }
11253 break;
11254
11255 case 's':
11256 if (USE_GLOBAL_POINTER_OPT)
11257 {
11258 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
11259 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
11260 {
11261 bfd_set_section_flags (stdoutput, seg,
11262 SEC_ALLOC | SEC_LOAD | SEC_RELOC
11263 | SEC_DATA);
11264 if (strcmp (TARGET_OS, "elf") != 0)
e799a695 11265 record_alignment (seg, 4);
252b5132
RH
11266 }
11267 demand_empty_rest_of_line ();
11268 break;
11269 }
11270 else
11271 {
11272 as_bad (_("Global pointers not supported; recompile -G 0"));
11273 demand_empty_rest_of_line ();
11274 return;
11275 }
11276 }
11277
11278 auto_align = 1;
11279}
cca86cc8
SC
11280
11281void
11282s_change_section (ignore)
11283 int ignore ATTRIBUTE_UNUSED;
11284{
7ed4a06a 11285#ifdef OBJ_ELF
cca86cc8
SC
11286 char *section_name;
11287 char c;
4cf0dd0d 11288 char next_c;
cca86cc8
SC
11289 int section_type;
11290 int section_flag;
11291 int section_entry_size;
11292 int section_alignment;
cca86cc8 11293
7ed4a06a
TS
11294 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
11295 return;
11296
cca86cc8
SC
11297 section_name = input_line_pointer;
11298 c = get_symbol_end ();
4cf0dd0d 11299 next_c = *(input_line_pointer + 1);
cca86cc8 11300
4cf0dd0d
TS
11301 /* Do we have .section Name<,"flags">? */
11302 if (c != ',' || (c == ',' && next_c == '"'))
cca86cc8 11303 {
4cf0dd0d
TS
11304 /* just after name is now '\0'. */
11305 *input_line_pointer = c;
cca86cc8
SC
11306 input_line_pointer = section_name;
11307 obj_elf_section (ignore);
11308 return;
11309 }
11310 input_line_pointer++;
11311
11312 /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */
11313 if (c == ',')
11314 section_type = get_absolute_expression ();
11315 else
11316 section_type = 0;
11317 if (*input_line_pointer++ == ',')
11318 section_flag = get_absolute_expression ();
11319 else
11320 section_flag = 0;
11321 if (*input_line_pointer++ == ',')
11322 section_entry_size = get_absolute_expression ();
11323 else
11324 section_entry_size = 0;
11325 if (*input_line_pointer++ == ',')
11326 section_alignment = get_absolute_expression ();
11327 else
11328 section_alignment = 0;
11329
11330 obj_elf_change_section (section_name, section_type, section_flag,
11331 section_entry_size, 0, 0, 0);
7ed4a06a 11332#endif /* OBJ_ELF */
cca86cc8 11333}
252b5132
RH
11334
11335void
11336mips_enable_auto_align ()
11337{
11338 auto_align = 1;
11339}
11340
11341static void
11342s_cons (log_size)
11343 int log_size;
11344{
11345 symbolS *label;
11346
11347 label = insn_labels != NULL ? insn_labels->label : NULL;
11348 mips_emit_delays (false);
11349 if (log_size > 0 && auto_align)
11350 mips_align (log_size, 0, label);
11351 mips_clear_insn_labels ();
11352 cons (1 << log_size);
11353}
11354
11355static void
11356s_float_cons (type)
11357 int type;
11358{
11359 symbolS *label;
11360
11361 label = insn_labels != NULL ? insn_labels->label : NULL;
11362
11363 mips_emit_delays (false);
11364
11365 if (auto_align)
49309057
ILT
11366 {
11367 if (type == 'd')
11368 mips_align (3, 0, label);
11369 else
11370 mips_align (2, 0, label);
11371 }
252b5132
RH
11372
11373 mips_clear_insn_labels ();
11374
11375 float_cons (type);
11376}
11377
11378/* Handle .globl. We need to override it because on Irix 5 you are
11379 permitted to say
11380 .globl foo .text
11381 where foo is an undefined symbol, to mean that foo should be
11382 considered to be the address of a function. */
11383
11384static void
11385s_mips_globl (x)
43841e91 11386 int x ATTRIBUTE_UNUSED;
252b5132
RH
11387{
11388 char *name;
11389 int c;
11390 symbolS *symbolP;
11391 flagword flag;
11392
11393 name = input_line_pointer;
11394 c = get_symbol_end ();
11395 symbolP = symbol_find_or_make (name);
11396 *input_line_pointer = c;
11397 SKIP_WHITESPACE ();
11398
11399 /* On Irix 5, every global symbol that is not explicitly labelled as
11400 being a function is apparently labelled as being an object. */
11401 flag = BSF_OBJECT;
11402
11403 if (! is_end_of_line[(unsigned char) *input_line_pointer])
11404 {
11405 char *secname;
11406 asection *sec;
11407
11408 secname = input_line_pointer;
11409 c = get_symbol_end ();
11410 sec = bfd_get_section_by_name (stdoutput, secname);
11411 if (sec == NULL)
11412 as_bad (_("%s: no such section"), secname);
11413 *input_line_pointer = c;
11414
11415 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
11416 flag = BSF_FUNCTION;
11417 }
11418
49309057 11419 symbol_get_bfdsym (symbolP)->flags |= flag;
252b5132
RH
11420
11421 S_SET_EXTERNAL (symbolP);
11422 demand_empty_rest_of_line ();
11423}
11424
11425static void
11426s_option (x)
43841e91 11427 int x ATTRIBUTE_UNUSED;
252b5132
RH
11428{
11429 char *opt;
11430 char c;
11431
11432 opt = input_line_pointer;
11433 c = get_symbol_end ();
11434
11435 if (*opt == 'O')
11436 {
11437 /* FIXME: What does this mean? */
11438 }
11439 else if (strncmp (opt, "pic", 3) == 0)
11440 {
11441 int i;
11442
11443 i = atoi (opt + 3);
11444 if (i == 0)
11445 mips_pic = NO_PIC;
11446 else if (i == 2)
11447 mips_pic = SVR4_PIC;
11448 else
11449 as_bad (_(".option pic%d not supported"), i);
11450
11451 if (USE_GLOBAL_POINTER_OPT && mips_pic == SVR4_PIC)
11452 {
11453 if (g_switch_seen && g_switch_value != 0)
11454 as_warn (_("-G may not be used with SVR4 PIC code"));
11455 g_switch_value = 0;
11456 bfd_set_gp_size (stdoutput, 0);
11457 }
11458 }
11459 else
11460 as_warn (_("Unrecognized option \"%s\""), opt);
11461
11462 *input_line_pointer = c;
11463 demand_empty_rest_of_line ();
11464}
11465
11466/* This structure is used to hold a stack of .set values. */
11467
e972090a
NC
11468struct mips_option_stack
11469{
252b5132
RH
11470 struct mips_option_stack *next;
11471 struct mips_set_options options;
11472};
11473
11474static struct mips_option_stack *mips_opts_stack;
11475
11476/* Handle the .set pseudo-op. */
11477
11478static void
11479s_mipsset (x)
43841e91 11480 int x ATTRIBUTE_UNUSED;
252b5132
RH
11481{
11482 char *name = input_line_pointer, ch;
11483
11484 while (!is_end_of_line[(unsigned char) *input_line_pointer])
f9419b05 11485 ++input_line_pointer;
252b5132
RH
11486 ch = *input_line_pointer;
11487 *input_line_pointer = '\0';
11488
11489 if (strcmp (name, "reorder") == 0)
11490 {
11491 if (mips_opts.noreorder && prev_nop_frag != NULL)
11492 {
11493 /* If we still have pending nops, we can discard them. The
11494 usual nop handling will insert any that are still
bdaaa2e1 11495 needed. */
252b5132
RH
11496 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
11497 * (mips_opts.mips16 ? 2 : 4));
11498 prev_nop_frag = NULL;
11499 }
11500 mips_opts.noreorder = 0;
11501 }
11502 else if (strcmp (name, "noreorder") == 0)
11503 {
11504 mips_emit_delays (true);
11505 mips_opts.noreorder = 1;
11506 mips_any_noreorder = 1;
11507 }
11508 else if (strcmp (name, "at") == 0)
11509 {
11510 mips_opts.noat = 0;
11511 }
11512 else if (strcmp (name, "noat") == 0)
11513 {
11514 mips_opts.noat = 1;
11515 }
11516 else if (strcmp (name, "macro") == 0)
11517 {
11518 mips_opts.warn_about_macros = 0;
11519 }
11520 else if (strcmp (name, "nomacro") == 0)
11521 {
11522 if (mips_opts.noreorder == 0)
11523 as_bad (_("`noreorder' must be set before `nomacro'"));
11524 mips_opts.warn_about_macros = 1;
11525 }
11526 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
11527 {
11528 mips_opts.nomove = 0;
11529 }
11530 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
11531 {
11532 mips_opts.nomove = 1;
11533 }
11534 else if (strcmp (name, "bopt") == 0)
11535 {
11536 mips_opts.nobopt = 0;
11537 }
11538 else if (strcmp (name, "nobopt") == 0)
11539 {
11540 mips_opts.nobopt = 1;
11541 }
11542 else if (strcmp (name, "mips16") == 0
11543 || strcmp (name, "MIPS-16") == 0)
11544 mips_opts.mips16 = 1;
11545 else if (strcmp (name, "nomips16") == 0
11546 || strcmp (name, "noMIPS-16") == 0)
11547 mips_opts.mips16 = 0;
1f25f5d3
CD
11548 else if (strcmp (name, "mips3d") == 0)
11549 mips_opts.ase_mips3d = 1;
11550 else if (strcmp (name, "nomips3d") == 0)
11551 mips_opts.ase_mips3d = 0;
a4672219
TS
11552 else if (strcmp (name, "mdmx") == 0)
11553 mips_opts.ase_mdmx = 1;
11554 else if (strcmp (name, "nomdmx") == 0)
11555 mips_opts.ase_mdmx = 0;
252b5132
RH
11556 else if (strncmp (name, "mips", 4) == 0)
11557 {
11558 int isa;
11559
11560 /* Permit the user to change the ISA on the fly. Needless to
11561 say, misuse can cause serious problems. */
11562 isa = atoi (name + 4);
553178e4 11563 switch (isa)
98d3f06f
KH
11564 {
11565 case 0:
11566 mips_opts.gp32 = file_mips_gp32;
11567 mips_opts.fp32 = file_mips_fp32;
98d3f06f
KH
11568 break;
11569 case 1:
11570 case 2:
11571 case 32:
11572 mips_opts.gp32 = 1;
11573 mips_opts.fp32 = 1;
11574 break;
11575 case 3:
11576 case 4:
11577 case 5:
11578 case 64:
98d3f06f
KH
11579 mips_opts.gp32 = 0;
11580 mips_opts.fp32 = 0;
11581 break;
11582 default:
11583 as_bad (_("unknown ISA level %s"), name + 4);
11584 break;
11585 }
553178e4 11586
e7af610e 11587 switch (isa)
98d3f06f
KH
11588 {
11589 case 0: mips_opts.isa = file_mips_isa; break;
11590 case 1: mips_opts.isa = ISA_MIPS1; break;
11591 case 2: mips_opts.isa = ISA_MIPS2; break;
11592 case 3: mips_opts.isa = ISA_MIPS3; break;
11593 case 4: mips_opts.isa = ISA_MIPS4; break;
11594 case 5: mips_opts.isa = ISA_MIPS5; break;
11595 case 32: mips_opts.isa = ISA_MIPS32; break;
11596 case 64: mips_opts.isa = ISA_MIPS64; break;
11597 default: as_bad (_("unknown ISA level %s"), name + 4); break;
11598 }
252b5132
RH
11599 }
11600 else if (strcmp (name, "autoextend") == 0)
11601 mips_opts.noautoextend = 0;
11602 else if (strcmp (name, "noautoextend") == 0)
11603 mips_opts.noautoextend = 1;
11604 else if (strcmp (name, "push") == 0)
11605 {
11606 struct mips_option_stack *s;
11607
11608 s = (struct mips_option_stack *) xmalloc (sizeof *s);
11609 s->next = mips_opts_stack;
11610 s->options = mips_opts;
11611 mips_opts_stack = s;
11612 }
11613 else if (strcmp (name, "pop") == 0)
11614 {
11615 struct mips_option_stack *s;
11616
11617 s = mips_opts_stack;
11618 if (s == NULL)
11619 as_bad (_(".set pop with no .set push"));
11620 else
11621 {
11622 /* If we're changing the reorder mode we need to handle
11623 delay slots correctly. */
11624 if (s->options.noreorder && ! mips_opts.noreorder)
11625 mips_emit_delays (true);
11626 else if (! s->options.noreorder && mips_opts.noreorder)
11627 {
11628 if (prev_nop_frag != NULL)
11629 {
11630 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
11631 * (mips_opts.mips16 ? 2 : 4));
11632 prev_nop_frag = NULL;
11633 }
11634 }
11635
11636 mips_opts = s->options;
11637 mips_opts_stack = s->next;
11638 free (s);
11639 }
11640 }
11641 else
11642 {
11643 as_warn (_("Tried to set unrecognized symbol: %s\n"), name);
11644 }
11645 *input_line_pointer = ch;
11646 demand_empty_rest_of_line ();
11647}
11648
11649/* Handle the .abicalls pseudo-op. I believe this is equivalent to
11650 .option pic2. It means to generate SVR4 PIC calls. */
11651
11652static void
11653s_abicalls (ignore)
43841e91 11654 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
11655{
11656 mips_pic = SVR4_PIC;
11657 if (USE_GLOBAL_POINTER_OPT)
11658 {
11659 if (g_switch_seen && g_switch_value != 0)
11660 as_warn (_("-G may not be used with SVR4 PIC code"));
11661 g_switch_value = 0;
11662 }
11663 bfd_set_gp_size (stdoutput, 0);
11664 demand_empty_rest_of_line ();
11665}
11666
11667/* Handle the .cpload pseudo-op. This is used when generating SVR4
11668 PIC code. It sets the $gp register for the function based on the
11669 function address, which is in the register named in the argument.
11670 This uses a relocation against _gp_disp, which is handled specially
11671 by the linker. The result is:
11672 lui $gp,%hi(_gp_disp)
11673 addiu $gp,$gp,%lo(_gp_disp)
11674 addu $gp,$gp,.cpload argument
11675 The .cpload argument is normally $25 == $t9. */
11676
11677static void
11678s_cpload (ignore)
43841e91 11679 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
11680{
11681 expressionS ex;
11682 int icnt = 0;
11683
6478892d
TS
11684 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
11685 .cpload is ignored. */
11686 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
11687 {
11688 s_ignore (0);
11689 return;
11690 }
11691
d3ecfc59 11692 /* .cpload should be in a .set noreorder section. */
252b5132
RH
11693 if (mips_opts.noreorder == 0)
11694 as_warn (_(".cpload not in noreorder section"));
11695
11696 ex.X_op = O_symbol;
11697 ex.X_add_symbol = symbol_find_or_make ("_gp_disp");
11698 ex.X_op_symbol = NULL;
11699 ex.X_add_number = 0;
11700
11701 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
49309057 11702 symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT;
252b5132 11703
c9914766
TS
11704 macro_build_lui (NULL, &icnt, &ex, mips_gp_register);
11705 macro_build ((char *) NULL, &icnt, &ex, "addiu", "t,r,j",
11706 mips_gp_register, mips_gp_register, (int) BFD_RELOC_LO16);
252b5132
RH
11707
11708 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "addu", "d,v,t",
c9914766 11709 mips_gp_register, mips_gp_register, tc_get_register (0));
252b5132
RH
11710
11711 demand_empty_rest_of_line ();
11712}
11713
6478892d
TS
11714/* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is:
11715 .cpsetup $reg1, offset|$reg2, label
11716
11717 If offset is given, this results in:
11718 sd $gp, offset($sp)
956cd1d6 11719 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
11720 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11721 daddu $gp, $gp, $reg1
6478892d
TS
11722
11723 If $reg2 is given, this results in:
11724 daddu $reg2, $gp, $0
956cd1d6 11725 lui $gp, %hi(%neg(%gp_rel(label)))
698b7d9d
TS
11726 addiu $gp, $gp, %lo(%neg(%gp_rel(label)))
11727 daddu $gp, $gp, $reg1
11728 $reg1 is normally $25 == $t9. */
6478892d
TS
11729static void
11730s_cpsetup (ignore)
11731 int ignore ATTRIBUTE_UNUSED;
11732{
11733 expressionS ex_off;
11734 expressionS ex_sym;
11735 int reg1;
11736 int icnt = 0;
f21f8242 11737 char *f;
6478892d 11738
8586fc66 11739 /* If we are not generating SVR4 PIC code, .cpsetup is ignored.
6478892d
TS
11740 We also need NewABI support. */
11741 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11742 {
11743 s_ignore (0);
11744 return;
11745 }
11746
11747 reg1 = tc_get_register (0);
11748 SKIP_WHITESPACE ();
11749 if (*input_line_pointer != ',')
11750 {
11751 as_bad (_("missing argument separator ',' for .cpsetup"));
11752 return;
11753 }
11754 else
80245285 11755 ++input_line_pointer;
6478892d
TS
11756 SKIP_WHITESPACE ();
11757 if (*input_line_pointer == '$')
80245285
TS
11758 {
11759 mips_cpreturn_register = tc_get_register (0);
11760 mips_cpreturn_offset = -1;
11761 }
6478892d 11762 else
80245285
TS
11763 {
11764 mips_cpreturn_offset = get_absolute_expression ();
11765 mips_cpreturn_register = -1;
11766 }
6478892d
TS
11767 SKIP_WHITESPACE ();
11768 if (*input_line_pointer != ',')
11769 {
11770 as_bad (_("missing argument separator ',' for .cpsetup"));
11771 return;
11772 }
11773 else
f9419b05 11774 ++input_line_pointer;
6478892d 11775 SKIP_WHITESPACE ();
f21f8242 11776 expression (&ex_sym);
6478892d
TS
11777
11778 if (mips_cpreturn_register == -1)
11779 {
11780 ex_off.X_op = O_constant;
11781 ex_off.X_add_symbol = NULL;
11782 ex_off.X_op_symbol = NULL;
11783 ex_off.X_add_number = mips_cpreturn_offset;
11784
11785 macro_build ((char *) NULL, &icnt, &ex_off, "sd", "t,o(b)",
11786 mips_gp_register, (int) BFD_RELOC_LO16, SP);
11787 }
11788 else
11789 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "daddu",
11790 "d,v,t", mips_cpreturn_register, mips_gp_register, 0);
11791
f21f8242
AO
11792 /* Ensure there's room for the next two instructions, so that `f'
11793 doesn't end up with an address in the wrong frag. */
11794 frag_grow (8);
11795 f = frag_more (0);
6478892d
TS
11796 macro_build ((char *) NULL, &icnt, &ex_sym, "lui", "t,u", mips_gp_register,
11797 (int) BFD_RELOC_GPREL16);
f21f8242
AO
11798 fix_new (frag_now, f - frag_now->fr_literal,
11799 0, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
11800 fix_new (frag_now, f - frag_now->fr_literal,
11801 0, NULL, 0, 0, BFD_RELOC_HI16_S);
11802
11803 f = frag_more (0);
6478892d
TS
11804 macro_build ((char *) NULL, &icnt, &ex_sym, "addiu", "t,r,j",
11805 mips_gp_register, mips_gp_register, (int) BFD_RELOC_GPREL16);
f21f8242
AO
11806 fix_new (frag_now, f - frag_now->fr_literal,
11807 0, NULL, 0, 0, BFD_RELOC_MIPS_SUB);
11808 fix_new (frag_now, f - frag_now->fr_literal,
11809 0, NULL, 0, 0, BFD_RELOC_LO16);
11810
8586fc66
TS
11811 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
11812 HAVE_64BIT_ADDRESSES ? "daddu" : "addu", "d,v,t",
11813 mips_gp_register, mips_gp_register, reg1);
6478892d
TS
11814
11815 demand_empty_rest_of_line ();
11816}
11817
11818static void
11819s_cplocal (ignore)
11820 int ignore ATTRIBUTE_UNUSED;
11821{
11822 /* If we are not generating SVR4 PIC code, or if this is not NewABI code,
11823 .cplocal is ignored. */
11824 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11825 {
11826 s_ignore (0);
11827 return;
11828 }
11829
11830 mips_gp_register = tc_get_register (0);
85b51719 11831 demand_empty_rest_of_line ();
6478892d
TS
11832}
11833
252b5132
RH
11834/* Handle the .cprestore pseudo-op. This stores $gp into a given
11835 offset from $sp. The offset is remembered, and after making a PIC
11836 call $gp is restored from that location. */
11837
11838static void
11839s_cprestore (ignore)
43841e91 11840 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
11841{
11842 expressionS ex;
11843 int icnt = 0;
11844
6478892d 11845 /* If we are not generating SVR4 PIC code, or if this is NewABI code,
c9914766 11846 .cprestore is ignored. */
6478892d 11847 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
11848 {
11849 s_ignore (0);
11850 return;
11851 }
11852
11853 mips_cprestore_offset = get_absolute_expression ();
7a621144 11854 mips_cprestore_valid = 1;
252b5132
RH
11855
11856 ex.X_op = O_constant;
11857 ex.X_add_symbol = NULL;
11858 ex.X_op_symbol = NULL;
11859 ex.X_add_number = mips_cprestore_offset;
11860
c9914766
TS
11861 macro_build ((char *) NULL, &icnt, &ex, HAVE_32BIT_ADDRESSES ? "sw" : "sd",
11862 "t,o(b)", mips_gp_register, (int) BFD_RELOC_LO16, SP);
252b5132
RH
11863
11864 demand_empty_rest_of_line ();
11865}
11866
6478892d
TS
11867/* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset
11868 was given in the preceeding .gpsetup, it results in:
11869 ld $gp, offset($sp)
76b3015f 11870
6478892d
TS
11871 If a register $reg2 was given there, it results in:
11872 daddiu $gp, $gp, $reg2
11873 */
11874static void
11875s_cpreturn (ignore)
11876 int ignore ATTRIBUTE_UNUSED;
11877{
11878 expressionS ex;
11879 int icnt = 0;
11880
11881 /* If we are not generating SVR4 PIC code, .cpreturn is ignored.
11882 We also need NewABI support. */
11883 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11884 {
11885 s_ignore (0);
11886 return;
11887 }
11888
11889 if (mips_cpreturn_register == -1)
11890 {
11891 ex.X_op = O_constant;
11892 ex.X_add_symbol = NULL;
11893 ex.X_op_symbol = NULL;
11894 ex.X_add_number = mips_cpreturn_offset;
11895
11896 macro_build ((char *) NULL, &icnt, &ex, "ld", "t,o(b)",
11897 mips_gp_register, (int) BFD_RELOC_LO16, SP);
11898 }
11899 else
11900 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "daddu",
11901 "d,v,t", mips_gp_register, mips_cpreturn_register, 0);
11902
11903 demand_empty_rest_of_line ();
11904}
11905
11906/* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC
11907 code. It sets the offset to use in gp_rel relocations. */
11908
11909static void
11910s_gpvalue (ignore)
11911 int ignore ATTRIBUTE_UNUSED;
11912{
11913 /* If we are not generating SVR4 PIC code, .gpvalue is ignored.
11914 We also need NewABI support. */
11915 if (mips_pic != SVR4_PIC || ! HAVE_NEWABI)
11916 {
11917 s_ignore (0);
11918 return;
11919 }
11920
def2e0dd 11921 mips_gprel_offset = get_absolute_expression ();
6478892d
TS
11922
11923 demand_empty_rest_of_line ();
11924}
11925
252b5132
RH
11926/* Handle the .gpword pseudo-op. This is used when generating PIC
11927 code. It generates a 32 bit GP relative reloc. */
11928
11929static void
11930s_gpword (ignore)
43841e91 11931 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
11932{
11933 symbolS *label;
11934 expressionS ex;
11935 char *p;
11936
11937 /* When not generating PIC code, this is treated as .word. */
11938 if (mips_pic != SVR4_PIC)
11939 {
11940 s_cons (2);
11941 return;
11942 }
11943
11944 label = insn_labels != NULL ? insn_labels->label : NULL;
11945 mips_emit_delays (true);
11946 if (auto_align)
11947 mips_align (2, 0, label);
11948 mips_clear_insn_labels ();
11949
11950 expression (&ex);
11951
11952 if (ex.X_op != O_symbol || ex.X_add_number != 0)
11953 {
11954 as_bad (_("Unsupported use of .gpword"));
11955 ignore_rest_of_line ();
11956 }
11957
11958 p = frag_more (4);
11959 md_number_to_chars (p, (valueT) 0, 4);
c9914766 11960 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, false,
cdf6fd85 11961 BFD_RELOC_GPREL32);
252b5132
RH
11962
11963 demand_empty_rest_of_line ();
11964}
11965
11966/* Handle the .cpadd pseudo-op. This is used when dealing with switch
11967 tables in SVR4 PIC code. */
11968
11969static void
11970s_cpadd (ignore)
43841e91 11971 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
11972{
11973 int icnt = 0;
11974 int reg;
11975
6478892d
TS
11976 /* This is ignored when not generating SVR4 PIC code or if this is NewABI
11977 code. */
11978 if (mips_pic != SVR4_PIC || HAVE_NEWABI)
252b5132
RH
11979 {
11980 s_ignore (0);
11981 return;
11982 }
11983
11984 /* Add $gp to the register named as an argument. */
11985 reg = tc_get_register (0);
11986 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
ca4e0257 11987 HAVE_32BIT_ADDRESSES ? "addu" : "daddu",
c9914766 11988 "d,v,t", reg, reg, mips_gp_register);
252b5132 11989
bdaaa2e1 11990 demand_empty_rest_of_line ();
252b5132
RH
11991}
11992
11993/* Handle the .insn pseudo-op. This marks instruction labels in
11994 mips16 mode. This permits the linker to handle them specially,
11995 such as generating jalx instructions when needed. We also make
11996 them odd for the duration of the assembly, in order to generate the
11997 right sort of code. We will make them even in the adjust_symtab
11998 routine, while leaving them marked. This is convenient for the
11999 debugger and the disassembler. The linker knows to make them odd
12000 again. */
12001
12002static void
12003s_insn (ignore)
43841e91 12004 int ignore ATTRIBUTE_UNUSED;
252b5132 12005{
f9419b05 12006 mips16_mark_labels ();
252b5132
RH
12007
12008 demand_empty_rest_of_line ();
12009}
12010
12011/* Handle a .stabn directive. We need these in order to mark a label
12012 as being a mips16 text label correctly. Sometimes the compiler
12013 will emit a label, followed by a .stabn, and then switch sections.
12014 If the label and .stabn are in mips16 mode, then the label is
12015 really a mips16 text label. */
12016
12017static void
12018s_mips_stab (type)
12019 int type;
12020{
f9419b05 12021 if (type == 'n')
252b5132
RH
12022 mips16_mark_labels ();
12023
12024 s_stab (type);
12025}
12026
12027/* Handle the .weakext pseudo-op as defined in Kane and Heinrich.
12028 */
12029
12030static void
12031s_mips_weakext (ignore)
43841e91 12032 int ignore ATTRIBUTE_UNUSED;
252b5132
RH
12033{
12034 char *name;
12035 int c;
12036 symbolS *symbolP;
12037 expressionS exp;
12038
12039 name = input_line_pointer;
12040 c = get_symbol_end ();
12041 symbolP = symbol_find_or_make (name);
12042 S_SET_WEAK (symbolP);
12043 *input_line_pointer = c;
12044
12045 SKIP_WHITESPACE ();
12046
12047 if (! is_end_of_line[(unsigned char) *input_line_pointer])
12048 {
12049 if (S_IS_DEFINED (symbolP))
12050 {
956cd1d6 12051 as_bad ("ignoring attempt to redefine symbol %s",
252b5132
RH
12052 S_GET_NAME (symbolP));
12053 ignore_rest_of_line ();
12054 return;
12055 }
bdaaa2e1 12056
252b5132
RH
12057 if (*input_line_pointer == ',')
12058 {
12059 ++input_line_pointer;
12060 SKIP_WHITESPACE ();
12061 }
bdaaa2e1 12062
252b5132
RH
12063 expression (&exp);
12064 if (exp.X_op != O_symbol)
12065 {
12066 as_bad ("bad .weakext directive");
98d3f06f 12067 ignore_rest_of_line ();
252b5132
RH
12068 return;
12069 }
49309057 12070 symbol_set_value_expression (symbolP, &exp);
252b5132
RH
12071 }
12072
12073 demand_empty_rest_of_line ();
12074}
12075
12076/* Parse a register string into a number. Called from the ECOFF code
12077 to parse .frame. The argument is non-zero if this is the frame
12078 register, so that we can record it in mips_frame_reg. */
12079
12080int
12081tc_get_register (frame)
12082 int frame;
12083{
12084 int reg;
12085
12086 SKIP_WHITESPACE ();
12087 if (*input_line_pointer++ != '$')
12088 {
12089 as_warn (_("expected `$'"));
85b51719 12090 reg = ZERO;
252b5132 12091 }
3882b010 12092 else if (ISDIGIT (*input_line_pointer))
252b5132
RH
12093 {
12094 reg = get_absolute_expression ();
12095 if (reg < 0 || reg >= 32)
12096 {
12097 as_warn (_("Bad register number"));
85b51719 12098 reg = ZERO;
252b5132
RH
12099 }
12100 }
12101 else
12102 {
76db943d 12103 if (strncmp (input_line_pointer, "ra", 2) == 0)
85b51719
TS
12104 {
12105 reg = RA;
12106 input_line_pointer += 2;
12107 }
76db943d 12108 else if (strncmp (input_line_pointer, "fp", 2) == 0)
85b51719
TS
12109 {
12110 reg = FP;
12111 input_line_pointer += 2;
12112 }
252b5132 12113 else if (strncmp (input_line_pointer, "sp", 2) == 0)
85b51719
TS
12114 {
12115 reg = SP;
12116 input_line_pointer += 2;
12117 }
252b5132 12118 else if (strncmp (input_line_pointer, "gp", 2) == 0)
85b51719
TS
12119 {
12120 reg = GP;
12121 input_line_pointer += 2;
12122 }
252b5132 12123 else if (strncmp (input_line_pointer, "at", 2) == 0)
85b51719
TS
12124 {
12125 reg = AT;
12126 input_line_pointer += 2;
12127 }
12128 else if (strncmp (input_line_pointer, "kt0", 3) == 0)
12129 {
12130 reg = KT0;
12131 input_line_pointer += 3;
12132 }
12133 else if (strncmp (input_line_pointer, "kt1", 3) == 0)
12134 {
12135 reg = KT1;
12136 input_line_pointer += 3;
12137 }
12138 else if (strncmp (input_line_pointer, "zero", 4) == 0)
12139 {
12140 reg = ZERO;
12141 input_line_pointer += 4;
12142 }
252b5132
RH
12143 else
12144 {
12145 as_warn (_("Unrecognized register name"));
85b51719
TS
12146 reg = ZERO;
12147 while (ISALNUM(*input_line_pointer))
12148 input_line_pointer++;
252b5132 12149 }
252b5132
RH
12150 }
12151 if (frame)
7a621144
DJ
12152 {
12153 mips_frame_reg = reg != 0 ? reg : SP;
12154 mips_frame_reg_valid = 1;
12155 mips_cprestore_valid = 0;
12156 }
252b5132
RH
12157 return reg;
12158}
12159
12160valueT
12161md_section_align (seg, addr)
12162 asection *seg;
12163 valueT addr;
12164{
12165 int align = bfd_get_section_alignment (stdoutput, seg);
12166
12167#ifdef OBJ_ELF
12168 /* We don't need to align ELF sections to the full alignment.
12169 However, Irix 5 may prefer that we align them at least to a 16
12170 byte boundary. We don't bother to align the sections if we are
12171 targeted for an embedded system. */
12172 if (strcmp (TARGET_OS, "elf") == 0)
12173 return addr;
12174 if (align > 4)
12175 align = 4;
12176#endif
12177
12178 return ((addr + (1 << align) - 1) & (-1 << align));
12179}
12180
12181/* Utility routine, called from above as well. If called while the
12182 input file is still being read, it's only an approximation. (For
12183 example, a symbol may later become defined which appeared to be
12184 undefined earlier.) */
12185
12186static int
12187nopic_need_relax (sym, before_relaxing)
12188 symbolS *sym;
12189 int before_relaxing;
12190{
12191 if (sym == 0)
12192 return 0;
12193
6478892d 12194 if (USE_GLOBAL_POINTER_OPT && g_switch_value > 0)
252b5132
RH
12195 {
12196 const char *symname;
12197 int change;
12198
c9914766 12199 /* Find out whether this symbol can be referenced off the $gp
252b5132
RH
12200 register. It can be if it is smaller than the -G size or if
12201 it is in the .sdata or .sbss section. Certain symbols can
c9914766 12202 not be referenced off the $gp, although it appears as though
252b5132
RH
12203 they can. */
12204 symname = S_GET_NAME (sym);
12205 if (symname != (const char *) NULL
12206 && (strcmp (symname, "eprol") == 0
12207 || strcmp (symname, "etext") == 0
12208 || strcmp (symname, "_gp") == 0
12209 || strcmp (symname, "edata") == 0
12210 || strcmp (symname, "_fbss") == 0
12211 || strcmp (symname, "_fdata") == 0
12212 || strcmp (symname, "_ftext") == 0
12213 || strcmp (symname, "end") == 0
12214 || strcmp (symname, "_gp_disp") == 0))
12215 change = 1;
12216 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
12217 && (0
12218#ifndef NO_ECOFF_DEBUGGING
49309057
ILT
12219 || (symbol_get_obj (sym)->ecoff_extern_size != 0
12220 && (symbol_get_obj (sym)->ecoff_extern_size
12221 <= g_switch_value))
252b5132
RH
12222#endif
12223 /* We must defer this decision until after the whole
12224 file has been read, since there might be a .extern
12225 after the first use of this symbol. */
12226 || (before_relaxing
12227#ifndef NO_ECOFF_DEBUGGING
49309057 12228 && symbol_get_obj (sym)->ecoff_extern_size == 0
252b5132
RH
12229#endif
12230 && S_GET_VALUE (sym) == 0)
12231 || (S_GET_VALUE (sym) != 0
12232 && S_GET_VALUE (sym) <= g_switch_value)))
12233 change = 0;
12234 else
12235 {
12236 const char *segname;
12237
12238 segname = segment_name (S_GET_SEGMENT (sym));
12239 assert (strcmp (segname, ".lit8") != 0
12240 && strcmp (segname, ".lit4") != 0);
12241 change = (strcmp (segname, ".sdata") != 0
fba2b7f9
GK
12242 && strcmp (segname, ".sbss") != 0
12243 && strncmp (segname, ".sdata.", 7) != 0
12244 && strncmp (segname, ".gnu.linkonce.s.", 16) != 0);
252b5132
RH
12245 }
12246 return change;
12247 }
12248 else
c9914766 12249 /* We are not optimizing for the $gp register. */
252b5132
RH
12250 return 1;
12251}
12252
12253/* Given a mips16 variant frag FRAGP, return non-zero if it needs an
12254 extended opcode. SEC is the section the frag is in. */
12255
12256static int
12257mips16_extended_frag (fragp, sec, stretch)
12258 fragS *fragp;
12259 asection *sec;
12260 long stretch;
12261{
12262 int type;
12263 register const struct mips16_immed_operand *op;
12264 offsetT val;
12265 int mintiny, maxtiny;
12266 segT symsec;
98aa84af 12267 fragS *sym_frag;
252b5132
RH
12268
12269 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
12270 return 0;
12271 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
12272 return 1;
12273
12274 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
12275 op = mips16_immed_operands;
12276 while (op->type != type)
12277 {
12278 ++op;
12279 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
12280 }
12281
12282 if (op->unsp)
12283 {
12284 if (type == '<' || type == '>' || type == '[' || type == ']')
12285 {
12286 mintiny = 1;
12287 maxtiny = 1 << op->nbits;
12288 }
12289 else
12290 {
12291 mintiny = 0;
12292 maxtiny = (1 << op->nbits) - 1;
12293 }
12294 }
12295 else
12296 {
12297 mintiny = - (1 << (op->nbits - 1));
12298 maxtiny = (1 << (op->nbits - 1)) - 1;
12299 }
12300
98aa84af 12301 sym_frag = symbol_get_frag (fragp->fr_symbol);
ac62c346 12302 val = S_GET_VALUE (fragp->fr_symbol);
98aa84af 12303 symsec = S_GET_SEGMENT (fragp->fr_symbol);
252b5132
RH
12304
12305 if (op->pcrel)
12306 {
12307 addressT addr;
12308
12309 /* We won't have the section when we are called from
12310 mips_relax_frag. However, we will always have been called
12311 from md_estimate_size_before_relax first. If this is a
12312 branch to a different section, we mark it as such. If SEC is
12313 NULL, and the frag is not marked, then it must be a branch to
12314 the same section. */
12315 if (sec == NULL)
12316 {
12317 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
12318 return 1;
12319 }
12320 else
12321 {
98aa84af 12322 /* Must have been called from md_estimate_size_before_relax. */
252b5132
RH
12323 if (symsec != sec)
12324 {
12325 fragp->fr_subtype =
12326 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12327
12328 /* FIXME: We should support this, and let the linker
12329 catch branches and loads that are out of range. */
12330 as_bad_where (fragp->fr_file, fragp->fr_line,
12331 _("unsupported PC relative reference to different section"));
12332
12333 return 1;
12334 }
98aa84af
AM
12335 if (fragp != sym_frag && sym_frag->fr_address == 0)
12336 /* Assume non-extended on the first relaxation pass.
12337 The address we have calculated will be bogus if this is
12338 a forward branch to another frag, as the forward frag
12339 will have fr_address == 0. */
12340 return 0;
252b5132
RH
12341 }
12342
12343 /* In this case, we know for sure that the symbol fragment is in
98aa84af
AM
12344 the same section. If the relax_marker of the symbol fragment
12345 differs from the relax_marker of this fragment, we have not
12346 yet adjusted the symbol fragment fr_address. We want to add
252b5132
RH
12347 in STRETCH in order to get a better estimate of the address.
12348 This particularly matters because of the shift bits. */
12349 if (stretch != 0
98aa84af 12350 && sym_frag->relax_marker != fragp->relax_marker)
252b5132
RH
12351 {
12352 fragS *f;
12353
12354 /* Adjust stretch for any alignment frag. Note that if have
12355 been expanding the earlier code, the symbol may be
12356 defined in what appears to be an earlier frag. FIXME:
12357 This doesn't handle the fr_subtype field, which specifies
12358 a maximum number of bytes to skip when doing an
12359 alignment. */
98aa84af 12360 for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next)
252b5132
RH
12361 {
12362 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
12363 {
12364 if (stretch < 0)
12365 stretch = - ((- stretch)
12366 & ~ ((1 << (int) f->fr_offset) - 1));
12367 else
12368 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
12369 if (stretch == 0)
12370 break;
12371 }
12372 }
12373 if (f != NULL)
12374 val += stretch;
12375 }
12376
12377 addr = fragp->fr_address + fragp->fr_fix;
12378
12379 /* The base address rules are complicated. The base address of
12380 a branch is the following instruction. The base address of a
12381 PC relative load or add is the instruction itself, but if it
12382 is in a delay slot (in which case it can not be extended) use
12383 the address of the instruction whose delay slot it is in. */
12384 if (type == 'p' || type == 'q')
12385 {
12386 addr += 2;
12387
12388 /* If we are currently assuming that this frag should be
12389 extended, then, the current address is two bytes
bdaaa2e1 12390 higher. */
252b5132
RH
12391 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12392 addr += 2;
12393
12394 /* Ignore the low bit in the target, since it will be set
12395 for a text label. */
12396 if ((val & 1) != 0)
12397 --val;
12398 }
12399 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
12400 addr -= 4;
12401 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
12402 addr -= 2;
12403
12404 val -= addr & ~ ((1 << op->shift) - 1);
12405
12406 /* Branch offsets have an implicit 0 in the lowest bit. */
12407 if (type == 'p' || type == 'q')
12408 val /= 2;
12409
12410 /* If any of the shifted bits are set, we must use an extended
12411 opcode. If the address depends on the size of this
12412 instruction, this can lead to a loop, so we arrange to always
12413 use an extended opcode. We only check this when we are in
12414 the main relaxation loop, when SEC is NULL. */
12415 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
12416 {
12417 fragp->fr_subtype =
12418 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12419 return 1;
12420 }
12421
12422 /* If we are about to mark a frag as extended because the value
12423 is precisely maxtiny + 1, then there is a chance of an
12424 infinite loop as in the following code:
12425 la $4,foo
12426 .skip 1020
12427 .align 2
12428 foo:
12429 In this case when the la is extended, foo is 0x3fc bytes
12430 away, so the la can be shrunk, but then foo is 0x400 away, so
12431 the la must be extended. To avoid this loop, we mark the
12432 frag as extended if it was small, and is about to become
12433 extended with a value of maxtiny + 1. */
12434 if (val == ((maxtiny + 1) << op->shift)
12435 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
12436 && sec == NULL)
12437 {
12438 fragp->fr_subtype =
12439 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
12440 return 1;
12441 }
12442 }
12443 else if (symsec != absolute_section && sec != NULL)
12444 as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation"));
12445
12446 if ((val & ((1 << op->shift) - 1)) != 0
12447 || val < (mintiny << op->shift)
12448 || val > (maxtiny << op->shift))
12449 return 1;
12450 else
12451 return 0;
12452}
12453
12454/* Estimate the size of a frag before relaxing. Unless this is the
12455 mips16, we are not really relaxing here, and the final size is
12456 encoded in the subtype information. For the mips16, we have to
12457 decide whether we are using an extended opcode or not. */
12458
252b5132
RH
12459int
12460md_estimate_size_before_relax (fragp, segtype)
12461 fragS *fragp;
12462 asection *segtype;
12463{
43841e91 12464 int change = 0;
8614eeee 12465 boolean linkonce = false;
252b5132
RH
12466
12467 if (RELAX_MIPS16_P (fragp->fr_subtype))
177b4a6a
AO
12468 /* We don't want to modify the EXTENDED bit here; it might get us
12469 into infinite loops. We change it only in mips_relax_frag(). */
12470 return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2);
252b5132
RH
12471
12472 if (mips_pic == NO_PIC)
12473 {
12474 change = nopic_need_relax (fragp->fr_symbol, 0);
12475 }
12476 else if (mips_pic == SVR4_PIC)
12477 {
12478 symbolS *sym;
12479 asection *symsec;
12480
12481 sym = fragp->fr_symbol;
12482
12483 /* Handle the case of a symbol equated to another symbol. */
e0890092 12484 while (symbol_equated_reloc_p (sym))
252b5132
RH
12485 {
12486 symbolS *n;
12487
12488 /* It's possible to get a loop here in a badly written
12489 program. */
49309057 12490 n = symbol_get_value_expression (sym)->X_add_symbol;
252b5132
RH
12491 if (n == sym)
12492 break;
12493 sym = n;
12494 }
12495
12496 symsec = S_GET_SEGMENT (sym);
12497
8614eeee
UC
12498 /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */
12499 if (symsec != segtype && ! S_IS_LOCAL (sym))
beae10d5
KH
12500 {
12501 if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE)
12502 != 0)
12503 linkonce = true;
12504
12505 /* The GNU toolchain uses an extension for ELF: a section
12506 beginning with the magic string .gnu.linkonce is a linkonce
12507 section. */
12508 if (strncmp (segment_name (symsec), ".gnu.linkonce",
12509 sizeof ".gnu.linkonce" - 1) == 0)
12510 linkonce = true;
12511 }
8614eeee 12512
252b5132
RH
12513 /* This must duplicate the test in adjust_reloc_syms. */
12514 change = (symsec != &bfd_und_section
12515 && symsec != &bfd_abs_section
426b0403 12516 && ! bfd_is_com_section (symsec)
8614eeee 12517 && !linkonce
426b0403 12518#ifdef OBJ_ELF
ea4ff978 12519 /* A global or weak symbol is treated as external. */
9151e8bf 12520 && (OUTPUT_FLAVOR != bfd_target_elf_flavour
b25a253c 12521 || (! S_IS_WEAK (sym)
bad9ca53
TS
12522 && (! S_IS_EXTERNAL (sym)
12523 || mips_pic == EMBEDDED_PIC)))
426b0403
AM
12524#endif
12525 );
252b5132
RH
12526 }
12527 else
12528 abort ();
12529
12530 if (change)
12531 {
12532 /* Record the offset to the first reloc in the fr_opcode field.
12533 This lets md_convert_frag and tc_gen_reloc know that the code
12534 must be expanded. */
12535 fragp->fr_opcode = (fragp->fr_literal
12536 + fragp->fr_fix
12537 - RELAX_OLD (fragp->fr_subtype)
12538 + RELAX_RELOC1 (fragp->fr_subtype));
12539 /* FIXME: This really needs as_warn_where. */
12540 if (RELAX_WARN (fragp->fr_subtype))
9a41af64
TS
12541 as_warn (_("AT used after \".set noat\" or macro used after "
12542 "\".set nomacro\""));
12543
12544 return RELAX_NEW (fragp->fr_subtype) - RELAX_OLD (fragp->fr_subtype);
252b5132
RH
12545 }
12546
9a41af64 12547 return 0;
252b5132
RH
12548}
12549
12550/* This is called to see whether a reloc against a defined symbol
12551 should be converted into a reloc against a section. Don't adjust
12552 MIPS16 jump relocations, so we don't have to worry about the format
12553 of the offset in the .o file. Don't adjust relocations against
12554 mips16 symbols, so that the linker can find them if it needs to set
12555 up a stub. */
12556
12557int
12558mips_fix_adjustable (fixp)
12559 fixS *fixp;
12560{
12561 if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)
12562 return 0;
a161fe53 12563
252b5132
RH
12564 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
12565 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
12566 return 0;
a161fe53 12567
252b5132
RH
12568 if (fixp->fx_addsy == NULL)
12569 return 1;
a161fe53 12570
252b5132
RH
12571#ifdef OBJ_ELF
12572 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
12573 && S_GET_OTHER (fixp->fx_addsy) == STO_MIPS16
12574 && fixp->fx_subsy == NULL)
12575 return 0;
12576#endif
a161fe53 12577
252b5132
RH
12578 return 1;
12579}
12580
12581/* Translate internal representation of relocation info to BFD target
12582 format. */
12583
12584arelent **
12585tc_gen_reloc (section, fixp)
43841e91 12586 asection *section ATTRIBUTE_UNUSED;
252b5132
RH
12587 fixS *fixp;
12588{
12589 static arelent *retval[4];
12590 arelent *reloc;
12591 bfd_reloc_code_real_type code;
12592
12593 reloc = retval[0] = (arelent *) xmalloc (sizeof (arelent));
12594 retval[1] = NULL;
12595
49309057
ILT
12596 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
12597 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
12598 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
12599
12600 if (mips_pic == EMBEDDED_PIC
12601 && SWITCH_TABLE (fixp))
12602 {
12603 /* For a switch table entry we use a special reloc. The addend
12604 is actually the difference between the reloc address and the
12605 subtrahend. */
12606 reloc->addend = reloc->address - S_GET_VALUE (fixp->fx_subsy);
12607 if (OUTPUT_FLAVOR != bfd_target_ecoff_flavour)
12608 as_fatal (_("Double check fx_r_type in tc-mips.c:tc_gen_reloc"));
12609 fixp->fx_r_type = BFD_RELOC_GPREL32;
12610 }
12611 else if (fixp->fx_r_type == BFD_RELOC_PCREL_LO16)
12612 {
4514d474
CD
12613 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
12614 reloc->addend = fixp->fx_addnumber;
252b5132 12615 else
4514d474
CD
12616 {
12617 /* We use a special addend for an internal RELLO reloc. */
12618 if (symbol_section_p (fixp->fx_addsy))
12619 reloc->addend = reloc->address - S_GET_VALUE (fixp->fx_subsy);
12620 else
12621 reloc->addend = fixp->fx_addnumber + reloc->address;
12622 }
252b5132
RH
12623 }
12624 else if (fixp->fx_r_type == BFD_RELOC_PCREL_HI16_S)
12625 {
12626 assert (fixp->fx_next != NULL
12627 && fixp->fx_next->fx_r_type == BFD_RELOC_PCREL_LO16);
4514d474
CD
12628
12629 /* The reloc is relative to the RELLO; adjust the addend
252b5132 12630 accordingly. */
4514d474
CD
12631 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
12632 reloc->addend = fixp->fx_next->fx_addnumber;
252b5132 12633 else
4514d474
CD
12634 {
12635 /* We use a special addend for an internal RELHI reloc. */
12636 if (symbol_section_p (fixp->fx_addsy))
12637 reloc->addend = (fixp->fx_next->fx_frag->fr_address
12638 + fixp->fx_next->fx_where
12639 - S_GET_VALUE (fixp->fx_subsy));
12640 else
12641 reloc->addend = (fixp->fx_addnumber
12642 + fixp->fx_next->fx_frag->fr_address
12643 + fixp->fx_next->fx_where);
12644 }
252b5132 12645 }
4514d474
CD
12646 else if (fixp->fx_pcrel == 0 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
12647 reloc->addend = fixp->fx_addnumber;
252b5132
RH
12648 else
12649 {
12650 if (OUTPUT_FLAVOR != bfd_target_aout_flavour)
12651 /* A gruesome hack which is a result of the gruesome gas reloc
12652 handling. */
12653 reloc->addend = reloc->address;
12654 else
12655 reloc->addend = -reloc->address;
12656 }
12657
12658 /* If this is a variant frag, we may need to adjust the existing
12659 reloc and generate a new one. */
12660 if (fixp->fx_frag->fr_opcode != NULL
ed6fb7bd
SC
12661 && ((fixp->fx_r_type == BFD_RELOC_GPREL16
12662 && ! HAVE_NEWABI)
252b5132
RH
12663 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT16
12664 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL16
12665 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT_HI16
12666 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT_LO16
12667 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL_HI16
6478892d 12668 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL_LO16)
ed6fb7bd 12669 )
252b5132
RH
12670 {
12671 arelent *reloc2;
12672
12673 assert (! RELAX_MIPS16_P (fixp->fx_frag->fr_subtype));
12674
12675 /* If this is not the last reloc in this frag, then we have two
12676 GPREL relocs, or a GOT_HI16/GOT_LO16 pair, or a
12677 CALL_HI16/CALL_LO16, both of which are being replaced. Let
12678 the second one handle all of them. */
12679 if (fixp->fx_next != NULL
12680 && fixp->fx_frag == fixp->fx_next->fx_frag)
12681 {
cdf6fd85
TS
12682 assert ((fixp->fx_r_type == BFD_RELOC_GPREL16
12683 && fixp->fx_next->fx_r_type == BFD_RELOC_GPREL16)
252b5132
RH
12684 || (fixp->fx_r_type == BFD_RELOC_MIPS_GOT_HI16
12685 && (fixp->fx_next->fx_r_type
12686 == BFD_RELOC_MIPS_GOT_LO16))
12687 || (fixp->fx_r_type == BFD_RELOC_MIPS_CALL_HI16
12688 && (fixp->fx_next->fx_r_type
12689 == BFD_RELOC_MIPS_CALL_LO16)));
12690 retval[0] = NULL;
12691 return retval;
12692 }
12693
12694 fixp->fx_where = fixp->fx_frag->fr_opcode - fixp->fx_frag->fr_literal;
12695 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
12696 reloc2 = retval[1] = (arelent *) xmalloc (sizeof (arelent));
12697 retval[2] = NULL;
49309057
ILT
12698 reloc2->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
12699 *reloc2->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
252b5132
RH
12700 reloc2->address = (reloc->address
12701 + (RELAX_RELOC2 (fixp->fx_frag->fr_subtype)
12702 - RELAX_RELOC1 (fixp->fx_frag->fr_subtype)));
12703 reloc2->addend = fixp->fx_addnumber;
12704 reloc2->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_LO16);
12705 assert (reloc2->howto != NULL);
12706
12707 if (RELAX_RELOC3 (fixp->fx_frag->fr_subtype))
12708 {
12709 arelent *reloc3;
12710
12711 reloc3 = retval[2] = (arelent *) xmalloc (sizeof (arelent));
12712 retval[3] = NULL;
12713 *reloc3 = *reloc2;
12714 reloc3->address += 4;
12715 }
12716
12717 if (mips_pic == NO_PIC)
12718 {
cdf6fd85 12719 assert (fixp->fx_r_type == BFD_RELOC_GPREL16);
252b5132
RH
12720 fixp->fx_r_type = BFD_RELOC_HI16_S;
12721 }
12722 else if (mips_pic == SVR4_PIC)
12723 {
12724 switch (fixp->fx_r_type)
12725 {
12726 default:
12727 abort ();
12728 case BFD_RELOC_MIPS_GOT16:
12729 break;
252b5132
RH
12730 case BFD_RELOC_MIPS_GOT_LO16:
12731 case BFD_RELOC_MIPS_CALL_LO16:
12732 fixp->fx_r_type = BFD_RELOC_MIPS_GOT16;
12733 break;
ed6fb7bd
SC
12734 case BFD_RELOC_MIPS_CALL16:
12735 if (HAVE_NEWABI)
12736 {
12737 /* BFD_RELOC_MIPS_GOT16;*/
12738 fixp->fx_r_type = BFD_RELOC_MIPS_GOT_PAGE;
12739 reloc2->howto = bfd_reloc_type_lookup
12740 (stdoutput, BFD_RELOC_MIPS_GOT_OFST);
12741 }
12742 else
12743 fixp->fx_r_type = BFD_RELOC_MIPS_GOT16;
12744 break;
252b5132
RH
12745 }
12746 }
12747 else
12748 abort ();
ed6fb7bd
SC
12749
12750 /* newabi uses R_MIPS_GOT_DISP for local symbols */
12751 if (HAVE_NEWABI && BFD_RELOC_MIPS_GOT_LO16)
12752 {
12753 fixp->fx_r_type = BFD_RELOC_MIPS_GOT_DISP;
12754 retval[1] = NULL;
12755 }
252b5132
RH
12756 }
12757
438c16b8
TS
12758 /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable
12759 entry to be used in the relocation's section offset. */
12760 if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
252b5132
RH
12761 {
12762 reloc->address = reloc->addend;
12763 reloc->addend = 0;
12764 }
12765
12766 /* Since DIFF_EXPR_OK is defined in tc-mips.h, it is possible that
12767 fixup_segment converted a non-PC relative reloc into a PC
12768 relative reloc. In such a case, we need to convert the reloc
12769 code. */
12770 code = fixp->fx_r_type;
12771 if (fixp->fx_pcrel)
12772 {
12773 switch (code)
12774 {
12775 case BFD_RELOC_8:
12776 code = BFD_RELOC_8_PCREL;
12777 break;
12778 case BFD_RELOC_16:
12779 code = BFD_RELOC_16_PCREL;
12780 break;
12781 case BFD_RELOC_32:
12782 code = BFD_RELOC_32_PCREL;
12783 break;
12784 case BFD_RELOC_64:
12785 code = BFD_RELOC_64_PCREL;
12786 break;
12787 case BFD_RELOC_8_PCREL:
12788 case BFD_RELOC_16_PCREL:
12789 case BFD_RELOC_32_PCREL:
12790 case BFD_RELOC_64_PCREL:
12791 case BFD_RELOC_16_PCREL_S2:
12792 case BFD_RELOC_PCREL_HI16_S:
12793 case BFD_RELOC_PCREL_LO16:
12794 break;
12795 default:
12796 as_bad_where (fixp->fx_file, fixp->fx_line,
12797 _("Cannot make %s relocation PC relative"),
12798 bfd_get_reloc_code_name (code));
12799 }
12800 }
12801
add55e1f
RS
12802#ifdef OBJ_ELF
12803 /* md_apply_fix3 has a double-subtraction hack to get
12804 bfd_install_relocation to behave nicely. GPREL relocations are
12805 handled correctly without this hack, so undo it here. We can't
12806 stop md_apply_fix3 from subtracting twice in the first place since
12807 the fake addend is required for variant frags above. */
12808 if (fixp->fx_addsy != NULL && OUTPUT_FLAVOR == bfd_target_elf_flavour
98605598 12809 && (code == BFD_RELOC_GPREL16 || code == BFD_RELOC_MIPS16_GPREL)
add55e1f
RS
12810 && reloc->addend != 0
12811 && mips_need_elf_addend_fixup (fixp))
12812 reloc->addend += S_GET_VALUE (fixp->fx_addsy);
12813#endif
12814
252b5132
RH
12815 /* To support a PC relative reloc when generating embedded PIC code
12816 for ECOFF, we use a Cygnus extension. We check for that here to
12817 make sure that we don't let such a reloc escape normally. */
bb2d6cd7
GK
12818 if ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour
12819 || OUTPUT_FLAVOR == bfd_target_elf_flavour)
252b5132
RH
12820 && code == BFD_RELOC_16_PCREL_S2
12821 && mips_pic != EMBEDDED_PIC)
12822 reloc->howto = NULL;
12823 else
12824 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
12825
12826 if (reloc->howto == NULL)
12827 {
12828 as_bad_where (fixp->fx_file, fixp->fx_line,
12829 _("Can not represent %s relocation in this object file format"),
12830 bfd_get_reloc_code_name (code));
12831 retval[0] = NULL;
12832 }
12833
12834 return retval;
12835}
12836
12837/* Relax a machine dependent frag. This returns the amount by which
12838 the current size of the frag should change. */
12839
12840int
12841mips_relax_frag (fragp, stretch)
12842 fragS *fragp;
12843 long stretch;
12844{
12845 if (! RELAX_MIPS16_P (fragp->fr_subtype))
12846 return 0;
12847
c4e7957c 12848 if (mips16_extended_frag (fragp, NULL, stretch))
252b5132
RH
12849 {
12850 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12851 return 0;
12852 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
12853 return 2;
12854 }
12855 else
12856 {
12857 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12858 return 0;
12859 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
12860 return -2;
12861 }
12862
12863 return 0;
12864}
12865
12866/* Convert a machine dependent frag. */
12867
12868void
12869md_convert_frag (abfd, asec, fragp)
43841e91 12870 bfd *abfd ATTRIBUTE_UNUSED;
252b5132
RH
12871 segT asec;
12872 fragS *fragp;
12873{
12874 int old, new;
12875 char *fixptr;
12876
12877 if (RELAX_MIPS16_P (fragp->fr_subtype))
12878 {
12879 int type;
12880 register const struct mips16_immed_operand *op;
12881 boolean small, ext;
12882 offsetT val;
12883 bfd_byte *buf;
12884 unsigned long insn;
12885 boolean use_extend;
12886 unsigned short extend;
12887
12888 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
12889 op = mips16_immed_operands;
12890 while (op->type != type)
12891 ++op;
12892
12893 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
12894 {
12895 small = false;
12896 ext = true;
12897 }
12898 else
12899 {
12900 small = true;
12901 ext = false;
12902 }
12903
6386f3a7 12904 resolve_symbol_value (fragp->fr_symbol);
252b5132
RH
12905 val = S_GET_VALUE (fragp->fr_symbol);
12906 if (op->pcrel)
12907 {
12908 addressT addr;
12909
12910 addr = fragp->fr_address + fragp->fr_fix;
12911
12912 /* The rules for the base address of a PC relative reloc are
12913 complicated; see mips16_extended_frag. */
12914 if (type == 'p' || type == 'q')
12915 {
12916 addr += 2;
12917 if (ext)
12918 addr += 2;
12919 /* Ignore the low bit in the target, since it will be
12920 set for a text label. */
12921 if ((val & 1) != 0)
12922 --val;
12923 }
12924 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
12925 addr -= 4;
12926 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
12927 addr -= 2;
12928
12929 addr &= ~ (addressT) ((1 << op->shift) - 1);
12930 val -= addr;
12931
12932 /* Make sure the section winds up with the alignment we have
12933 assumed. */
12934 if (op->shift > 0)
12935 record_alignment (asec, op->shift);
12936 }
12937
12938 if (ext
12939 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
12940 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
12941 as_warn_where (fragp->fr_file, fragp->fr_line,
12942 _("extended instruction in delay slot"));
12943
12944 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
12945
12946 if (target_big_endian)
12947 insn = bfd_getb16 (buf);
12948 else
12949 insn = bfd_getl16 (buf);
12950
12951 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
12952 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
12953 small, ext, &insn, &use_extend, &extend);
12954
12955 if (use_extend)
12956 {
874e8986 12957 md_number_to_chars ((char *) buf, 0xf000 | extend, 2);
252b5132
RH
12958 fragp->fr_fix += 2;
12959 buf += 2;
12960 }
12961
874e8986 12962 md_number_to_chars ((char *) buf, insn, 2);
252b5132
RH
12963 fragp->fr_fix += 2;
12964 buf += 2;
12965 }
12966 else
12967 {
12968 if (fragp->fr_opcode == NULL)
12969 return;
12970
12971 old = RELAX_OLD (fragp->fr_subtype);
12972 new = RELAX_NEW (fragp->fr_subtype);
12973 fixptr = fragp->fr_literal + fragp->fr_fix;
12974
12975 if (new > 0)
12976 memcpy (fixptr - old, fixptr, new);
12977
12978 fragp->fr_fix += new - old;
12979 }
12980}
12981
12982#ifdef OBJ_ELF
12983
12984/* This function is called after the relocs have been generated.
12985 We've been storing mips16 text labels as odd. Here we convert them
12986 back to even for the convenience of the debugger. */
12987
12988void
12989mips_frob_file_after_relocs ()
12990{
12991 asymbol **syms;
12992 unsigned int count, i;
12993
12994 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
12995 return;
12996
12997 syms = bfd_get_outsymbols (stdoutput);
12998 count = bfd_get_symcount (stdoutput);
12999 for (i = 0; i < count; i++, syms++)
13000 {
13001 if (elf_symbol (*syms)->internal_elf_sym.st_other == STO_MIPS16
13002 && ((*syms)->value & 1) != 0)
13003 {
13004 (*syms)->value &= ~1;
13005 /* If the symbol has an odd size, it was probably computed
13006 incorrectly, so adjust that as well. */
13007 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
13008 ++elf_symbol (*syms)->internal_elf_sym.st_size;
13009 }
13010 }
13011}
13012
13013#endif
13014
13015/* This function is called whenever a label is defined. It is used
13016 when handling branch delays; if a branch has a label, we assume we
13017 can not move it. */
13018
13019void
13020mips_define_label (sym)
13021 symbolS *sym;
13022{
13023 struct insn_label_list *l;
13024
13025 if (free_insn_labels == NULL)
13026 l = (struct insn_label_list *) xmalloc (sizeof *l);
13027 else
13028 {
13029 l = free_insn_labels;
13030 free_insn_labels = l->next;
13031 }
13032
13033 l->label = sym;
13034 l->next = insn_labels;
13035 insn_labels = l;
13036}
13037\f
13038#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
13039
13040/* Some special processing for a MIPS ELF file. */
13041
13042void
13043mips_elf_final_processing ()
13044{
13045 /* Write out the register information. */
316f5878 13046 if (mips_abi != N64_ABI)
252b5132
RH
13047 {
13048 Elf32_RegInfo s;
13049
13050 s.ri_gprmask = mips_gprmask;
13051 s.ri_cprmask[0] = mips_cprmask[0];
13052 s.ri_cprmask[1] = mips_cprmask[1];
13053 s.ri_cprmask[2] = mips_cprmask[2];
13054 s.ri_cprmask[3] = mips_cprmask[3];
13055 /* The gp_value field is set by the MIPS ELF backend. */
13056
13057 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
13058 ((Elf32_External_RegInfo *)
13059 mips_regmask_frag));
13060 }
13061 else
13062 {
13063 Elf64_Internal_RegInfo s;
13064
13065 s.ri_gprmask = mips_gprmask;
13066 s.ri_pad = 0;
13067 s.ri_cprmask[0] = mips_cprmask[0];
13068 s.ri_cprmask[1] = mips_cprmask[1];
13069 s.ri_cprmask[2] = mips_cprmask[2];
13070 s.ri_cprmask[3] = mips_cprmask[3];
13071 /* The gp_value field is set by the MIPS ELF backend. */
13072
13073 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
13074 ((Elf64_External_RegInfo *)
13075 mips_regmask_frag));
13076 }
13077
13078 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
13079 sort of BFD interface for this. */
13080 if (mips_any_noreorder)
13081 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
13082 if (mips_pic != NO_PIC)
13083 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
13084
98d3f06f 13085 /* Set MIPS ELF flags for ASEs. */
a4672219
TS
13086 if (file_ase_mips16)
13087 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16;
1f25f5d3
CD
13088#if 0 /* XXX FIXME */
13089 if (file_ase_mips3d)
13090 elf_elfheader (stdoutput)->e_flags |= ???;
13091#endif
deec1734
CD
13092 if (file_ase_mdmx)
13093 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX;
1f25f5d3 13094
bdaaa2e1 13095 /* Set the MIPS ELF ABI flags. */
316f5878 13096 if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32)
252b5132 13097 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32;
316f5878 13098 else if (mips_abi == O64_ABI)
252b5132 13099 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64;
316f5878 13100 else if (mips_abi == EABI_ABI)
252b5132 13101 {
316f5878 13102 if (!file_mips_gp32)
252b5132
RH
13103 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64;
13104 else
13105 elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32;
13106 }
316f5878 13107 else if (mips_abi == N32_ABI)
be00bddd
TS
13108 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2;
13109
c9914766 13110 /* Nothing to do for N64_ABI. */
252b5132
RH
13111
13112 if (mips_32bitmode)
13113 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE;
13114}
13115
13116#endif /* OBJ_ELF || OBJ_MAYBE_ELF */
13117\f
beae10d5
KH
13118typedef struct proc {
13119 symbolS *isym;
13120 unsigned long reg_mask;
13121 unsigned long reg_offset;
13122 unsigned long fpreg_mask;
13123 unsigned long fpreg_offset;
13124 unsigned long frame_offset;
13125 unsigned long frame_reg;
13126 unsigned long pc_reg;
13127} procS;
252b5132
RH
13128
13129static procS cur_proc;
13130static procS *cur_proc_ptr;
13131static int numprocs;
13132
0a9ef439 13133/* Fill in an rs_align_code fragment. */
a19d8eb0 13134
0a9ef439
RH
13135void
13136mips_handle_align (fragp)
13137 fragS *fragp;
a19d8eb0 13138{
0a9ef439
RH
13139 if (fragp->fr_type != rs_align_code)
13140 return;
13141
13142 if (mips_opts.mips16)
a19d8eb0
CP
13143 {
13144 static const unsigned char be_nop[] = { 0x65, 0x00 };
13145 static const unsigned char le_nop[] = { 0x00, 0x65 };
13146
0a9ef439
RH
13147 int bytes;
13148 char *p;
a19d8eb0 13149
0a9ef439
RH
13150 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
13151 p = fragp->fr_literal + fragp->fr_fix;
13152
13153 if (bytes & 1)
13154 {
13155 *p++ = 0;
f9419b05 13156 fragp->fr_fix++;
0a9ef439
RH
13157 }
13158
13159 memcpy (p, (target_big_endian ? be_nop : le_nop), 2);
13160 fragp->fr_var = 2;
a19d8eb0
CP
13161 }
13162
0a9ef439 13163 /* For mips32, a nop is a zero, which we trivially get by doing nothing. */
a19d8eb0
CP
13164}
13165
252b5132
RH
13166static void
13167md_obj_begin ()
13168{
13169}
13170
13171static void
13172md_obj_end ()
13173{
13174 /* check for premature end, nesting errors, etc */
13175 if (cur_proc_ptr)
9a41af64 13176 as_warn (_("missing .end at end of assembly"));
252b5132
RH
13177}
13178
13179static long
13180get_number ()
13181{
13182 int negative = 0;
13183 long val = 0;
13184
13185 if (*input_line_pointer == '-')
13186 {
13187 ++input_line_pointer;
13188 negative = 1;
13189 }
3882b010 13190 if (!ISDIGIT (*input_line_pointer))
956cd1d6 13191 as_bad (_("expected simple number"));
252b5132
RH
13192 if (input_line_pointer[0] == '0')
13193 {
13194 if (input_line_pointer[1] == 'x')
13195 {
13196 input_line_pointer += 2;
3882b010 13197 while (ISXDIGIT (*input_line_pointer))
252b5132
RH
13198 {
13199 val <<= 4;
13200 val |= hex_value (*input_line_pointer++);
13201 }
13202 return negative ? -val : val;
13203 }
13204 else
13205 {
13206 ++input_line_pointer;
3882b010 13207 while (ISDIGIT (*input_line_pointer))
252b5132
RH
13208 {
13209 val <<= 3;
13210 val |= *input_line_pointer++ - '0';
13211 }
13212 return negative ? -val : val;
13213 }
13214 }
3882b010 13215 if (!ISDIGIT (*input_line_pointer))
252b5132
RH
13216 {
13217 printf (_(" *input_line_pointer == '%c' 0x%02x\n"),
13218 *input_line_pointer, *input_line_pointer);
956cd1d6 13219 as_warn (_("invalid number"));
252b5132
RH
13220 return -1;
13221 }
3882b010 13222 while (ISDIGIT (*input_line_pointer))
252b5132
RH
13223 {
13224 val *= 10;
13225 val += *input_line_pointer++ - '0';
13226 }
13227 return negative ? -val : val;
13228}
13229
13230/* The .file directive; just like the usual .file directive, but there
c5dd6aab
DJ
13231 is an initial number which is the ECOFF file index. In the non-ECOFF
13232 case .file implies DWARF-2. */
13233
13234static void
13235s_mips_file (x)
13236 int x ATTRIBUTE_UNUSED;
13237{
ecb4347a
DJ
13238 static int first_file_directive = 0;
13239
c5dd6aab
DJ
13240 if (ECOFF_DEBUGGING)
13241 {
13242 get_number ();
13243 s_app_file (0);
13244 }
13245 else
ecb4347a
DJ
13246 {
13247 char *filename;
13248
13249 filename = dwarf2_directive_file (0);
13250
13251 /* Versions of GCC up to 3.1 start files with a ".file"
13252 directive even for stabs output. Make sure that this
13253 ".file" is handled. Note that you need a version of GCC
13254 after 3.1 in order to support DWARF-2 on MIPS. */
13255 if (filename != NULL && ! first_file_directive)
13256 {
13257 (void) new_logical_line (filename, -1);
13258 s_app_file_string (filename);
13259 }
13260 first_file_directive = 1;
13261 }
c5dd6aab
DJ
13262}
13263
13264/* The .loc directive, implying DWARF-2. */
252b5132
RH
13265
13266static void
c5dd6aab 13267s_mips_loc (x)
43841e91 13268 int x ATTRIBUTE_UNUSED;
252b5132 13269{
c5dd6aab
DJ
13270 if (!ECOFF_DEBUGGING)
13271 dwarf2_directive_loc (0);
252b5132
RH
13272}
13273
252b5132
RH
13274/* The .end directive. */
13275
13276static void
13277s_mips_end (x)
43841e91 13278 int x ATTRIBUTE_UNUSED;
252b5132
RH
13279{
13280 symbolS *p;
13281 int maybe_text;
13282
7a621144
DJ
13283 /* Following functions need their own .frame and .cprestore directives. */
13284 mips_frame_reg_valid = 0;
13285 mips_cprestore_valid = 0;
13286
252b5132
RH
13287 if (!is_end_of_line[(unsigned char) *input_line_pointer])
13288 {
13289 p = get_symbol ();
13290 demand_empty_rest_of_line ();
13291 }
13292 else
13293 p = NULL;
13294
13295#ifdef BFD_ASSEMBLER
13296 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
13297 maybe_text = 1;
13298 else
13299 maybe_text = 0;
13300#else
13301 if (now_seg != data_section && now_seg != bss_section)
13302 maybe_text = 1;
13303 else
13304 maybe_text = 0;
13305#endif
13306
13307 if (!maybe_text)
13308 as_warn (_(".end not in text section"));
13309
13310 if (!cur_proc_ptr)
13311 {
13312 as_warn (_(".end directive without a preceding .ent directive."));
13313 demand_empty_rest_of_line ();
13314 return;
13315 }
13316
13317 if (p != NULL)
13318 {
13319 assert (S_GET_NAME (p));
13320 if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->isym)))
13321 as_warn (_(".end symbol does not match .ent symbol."));
ecb4347a
DJ
13322
13323 if (debug_type == DEBUG_STABS)
13324 stabs_generate_asm_endfunc (S_GET_NAME (p),
13325 S_GET_NAME (p));
252b5132
RH
13326 }
13327 else
13328 as_warn (_(".end directive missing or unknown symbol"));
13329
ecb4347a
DJ
13330#ifdef OBJ_ELF
13331 /* Generate a .pdr section. */
13332 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13333 {
13334 segT saved_seg = now_seg;
13335 subsegT saved_subseg = now_subseg;
13336 valueT dot;
13337 expressionS exp;
13338 char *fragp;
252b5132 13339
ecb4347a 13340 dot = frag_now_fix ();
252b5132
RH
13341
13342#ifdef md_flush_pending_output
ecb4347a 13343 md_flush_pending_output ();
252b5132
RH
13344#endif
13345
ecb4347a
DJ
13346 assert (pdr_seg);
13347 subseg_set (pdr_seg, 0);
252b5132 13348
ecb4347a
DJ
13349 /* Write the symbol. */
13350 exp.X_op = O_symbol;
13351 exp.X_add_symbol = p;
13352 exp.X_add_number = 0;
13353 emit_expr (&exp, 4);
252b5132 13354
ecb4347a 13355 fragp = frag_more (7 * 4);
252b5132 13356
ecb4347a
DJ
13357 md_number_to_chars (fragp, (valueT) cur_proc_ptr->reg_mask, 4);
13358 md_number_to_chars (fragp + 4, (valueT) cur_proc_ptr->reg_offset, 4);
13359 md_number_to_chars (fragp + 8, (valueT) cur_proc_ptr->fpreg_mask, 4);
13360 md_number_to_chars (fragp + 12, (valueT) cur_proc_ptr->fpreg_offset, 4);
13361 md_number_to_chars (fragp + 16, (valueT) cur_proc_ptr->frame_offset, 4);
13362 md_number_to_chars (fragp + 20, (valueT) cur_proc_ptr->frame_reg, 4);
13363 md_number_to_chars (fragp + 24, (valueT) cur_proc_ptr->pc_reg, 4);
252b5132 13364
ecb4347a
DJ
13365 subseg_set (saved_seg, saved_subseg);
13366 }
13367#endif /* OBJ_ELF */
252b5132
RH
13368
13369 cur_proc_ptr = NULL;
13370}
13371
13372/* The .aent and .ent directives. */
13373
13374static void
13375s_mips_ent (aent)
13376 int aent;
13377{
252b5132
RH
13378 symbolS *symbolP;
13379 int maybe_text;
13380
13381 symbolP = get_symbol ();
13382 if (*input_line_pointer == ',')
f9419b05 13383 ++input_line_pointer;
252b5132 13384 SKIP_WHITESPACE ();
3882b010 13385 if (ISDIGIT (*input_line_pointer)
d9a62219 13386 || *input_line_pointer == '-')
874e8986 13387 get_number ();
252b5132
RH
13388
13389#ifdef BFD_ASSEMBLER
13390 if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0)
13391 maybe_text = 1;
13392 else
13393 maybe_text = 0;
13394#else
13395 if (now_seg != data_section && now_seg != bss_section)
13396 maybe_text = 1;
13397 else
13398 maybe_text = 0;
13399#endif
13400
13401 if (!maybe_text)
13402 as_warn (_(".ent or .aent not in text section."));
13403
13404 if (!aent && cur_proc_ptr)
9a41af64 13405 as_warn (_("missing .end"));
252b5132
RH
13406
13407 if (!aent)
13408 {
7a621144
DJ
13409 /* This function needs its own .frame and .cprestore directives. */
13410 mips_frame_reg_valid = 0;
13411 mips_cprestore_valid = 0;
13412
252b5132
RH
13413 cur_proc_ptr = &cur_proc;
13414 memset (cur_proc_ptr, '\0', sizeof (procS));
13415
13416 cur_proc_ptr->isym = symbolP;
13417
49309057 13418 symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION;
252b5132 13419
f9419b05 13420 ++numprocs;
ecb4347a
DJ
13421
13422 if (debug_type == DEBUG_STABS)
13423 stabs_generate_asm_func (S_GET_NAME (symbolP),
13424 S_GET_NAME (symbolP));
252b5132
RH
13425 }
13426
13427 demand_empty_rest_of_line ();
13428}
13429
13430/* The .frame directive. If the mdebug section is present (IRIX 5 native)
bdaaa2e1 13431 then ecoff.c (ecoff_directive_frame) is used. For embedded targets,
252b5132 13432 s_mips_frame is used so that we can set the PDR information correctly.
bdaaa2e1 13433 We can't use the ecoff routines because they make reference to the ecoff
252b5132
RH
13434 symbol table (in the mdebug section). */
13435
13436static void
13437s_mips_frame (ignore)
2b3c5a5d 13438 int ignore ATTRIBUTE_UNUSED;
252b5132 13439{
ecb4347a
DJ
13440#ifdef OBJ_ELF
13441 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
13442 {
13443 long val;
252b5132 13444
ecb4347a
DJ
13445 if (cur_proc_ptr == (procS *) NULL)
13446 {
13447 as_warn (_(".frame outside of .ent"));
13448 demand_empty_rest_of_line ();
13449 return;
13450 }
252b5132 13451
ecb4347a
DJ
13452 cur_proc_ptr->frame_reg = tc_get_register (1);
13453
13454 SKIP_WHITESPACE ();
13455 if (*input_line_pointer++ != ','
13456 || get_absolute_expression_and_terminator (&val) != ',')
13457 {
13458 as_warn (_("Bad .frame directive"));
13459 --input_line_pointer;
13460 demand_empty_rest_of_line ();
13461 return;
13462 }
252b5132 13463
ecb4347a
DJ
13464 cur_proc_ptr->frame_offset = val;
13465 cur_proc_ptr->pc_reg = tc_get_register (0);
252b5132 13466
252b5132 13467 demand_empty_rest_of_line ();
252b5132 13468 }
ecb4347a
DJ
13469 else
13470#endif /* OBJ_ELF */
13471 s_ignore (ignore);
252b5132
RH
13472}
13473
bdaaa2e1
KH
13474/* The .fmask and .mask directives. If the mdebug section is present
13475 (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For
252b5132 13476 embedded targets, s_mips_mask is used so that we can set the PDR
bdaaa2e1 13477 information correctly. We can't use the ecoff routines because they
252b5132
RH
13478 make reference to the ecoff symbol table (in the mdebug section). */
13479
13480static void
13481s_mips_mask (reg_type)
13482 char reg_type;
13483{
ecb4347a
DJ
13484#ifdef OBJ_ELF
13485 if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING)
252b5132 13486 {
ecb4347a 13487 long mask, off;
252b5132 13488
ecb4347a
DJ
13489 if (cur_proc_ptr == (procS *) NULL)
13490 {
13491 as_warn (_(".mask/.fmask outside of .ent"));
13492 demand_empty_rest_of_line ();
13493 return;
13494 }
252b5132 13495
ecb4347a
DJ
13496 if (get_absolute_expression_and_terminator (&mask) != ',')
13497 {
13498 as_warn (_("Bad .mask/.fmask directive"));
13499 --input_line_pointer;
13500 demand_empty_rest_of_line ();
13501 return;
13502 }
252b5132 13503
ecb4347a
DJ
13504 off = get_absolute_expression ();
13505
13506 if (reg_type == 'F')
13507 {
13508 cur_proc_ptr->fpreg_mask = mask;
13509 cur_proc_ptr->fpreg_offset = off;
13510 }
13511 else
13512 {
13513 cur_proc_ptr->reg_mask = mask;
13514 cur_proc_ptr->reg_offset = off;
13515 }
13516
13517 demand_empty_rest_of_line ();
252b5132
RH
13518 }
13519 else
ecb4347a
DJ
13520#endif /* OBJ_ELF */
13521 s_ignore (reg_type);
252b5132
RH
13522}
13523
13524/* The .loc directive. */
13525
13526#if 0
13527static void
13528s_loc (x)
13529 int x;
13530{
13531 symbolS *symbolP;
13532 int lineno;
13533 int addroff;
13534
13535 assert (now_seg == text_section);
13536
13537 lineno = get_number ();
13538 addroff = frag_now_fix ();
13539
13540 symbolP = symbol_new ("", N_SLINE, addroff, frag_now);
13541 S_SET_TYPE (symbolP, N_SLINE);
13542 S_SET_OTHER (symbolP, 0);
13543 S_SET_DESC (symbolP, lineno);
13544 symbolP->sy_segment = now_seg;
13545}
13546#endif
e7af610e 13547
316f5878
RS
13548/* A table describing all the processors gas knows about. Names are
13549 matched in the order listed.
e7af610e 13550
316f5878
RS
13551 To ease comparison, please keep this table in the same order as
13552 gcc's mips_cpu_info_table[]. */
e972090a
NC
13553static const struct mips_cpu_info mips_cpu_info_table[] =
13554{
316f5878
RS
13555 /* Entries for generic ISAs */
13556 { "mips1", 1, ISA_MIPS1, CPU_R3000 },
13557 { "mips2", 1, ISA_MIPS2, CPU_R6000 },
13558 { "mips3", 1, ISA_MIPS3, CPU_R4000 },
13559 { "mips4", 1, ISA_MIPS4, CPU_R8000 },
13560 { "mips5", 1, ISA_MIPS5, CPU_MIPS5 },
13561 { "mips32", 1, ISA_MIPS32, CPU_MIPS32 },
13562 { "mips64", 1, ISA_MIPS64, CPU_MIPS64 },
13563
13564 /* MIPS I */
13565 { "r3000", 0, ISA_MIPS1, CPU_R3000 },
13566 { "r2000", 0, ISA_MIPS1, CPU_R3000 },
13567 { "r3900", 0, ISA_MIPS1, CPU_R3900 },
13568
13569 /* MIPS II */
13570 { "r6000", 0, ISA_MIPS2, CPU_R6000 },
13571
13572 /* MIPS III */
13573 { "r4000", 0, ISA_MIPS3, CPU_R4000 },
13574 { "r4010", 0, ISA_MIPS2, CPU_R4010 },
13575 { "vr4100", 0, ISA_MIPS3, CPU_VR4100 },
13576 { "vr4111", 0, ISA_MIPS3, CPU_R4111 },
13577 { "vr4300", 0, ISA_MIPS3, CPU_R4300 },
13578 { "r4400", 0, ISA_MIPS3, CPU_R4400 },
13579 { "r4600", 0, ISA_MIPS3, CPU_R4600 },
13580 { "orion", 0, ISA_MIPS3, CPU_R4600 },
13581 { "r4650", 0, ISA_MIPS3, CPU_R4650 },
13582
13583 /* MIPS IV */
13584 { "r8000", 0, ISA_MIPS4, CPU_R8000 },
13585 { "r10000", 0, ISA_MIPS4, CPU_R10000 },
13586 { "r12000", 0, ISA_MIPS4, CPU_R12000 },
13587 { "vr5000", 0, ISA_MIPS4, CPU_R5000 },
13588 { "rm5200", 0, ISA_MIPS4, CPU_R5000 },
13589 { "rm5230", 0, ISA_MIPS4, CPU_R5000 },
13590 { "rm5231", 0, ISA_MIPS4, CPU_R5000 },
13591 { "rm5261", 0, ISA_MIPS4, CPU_R5000 },
13592 { "rm5721", 0, ISA_MIPS4, CPU_R5000 },
13593 { "r7000", 0, ISA_MIPS4, CPU_R5000 },
13594
13595 /* MIPS 32 */
13596 { "4kc", 0, ISA_MIPS32, CPU_MIPS32, },
13597 { "4km", 0, ISA_MIPS32, CPU_MIPS32 },
13598 { "4kp", 0, ISA_MIPS32, CPU_MIPS32 },
e7af610e 13599
316f5878
RS
13600 /* MIPS 64 */
13601 { "5kc", 0, ISA_MIPS64, CPU_MIPS64 },
13602 { "20kc", 0, ISA_MIPS64, CPU_MIPS64 },
e7af610e 13603
c7a23324 13604 /* Broadcom SB-1 CPU core */
316f5878 13605 { "sb1", 0, ISA_MIPS64, CPU_SB1 },
e7af610e 13606
316f5878
RS
13607 /* End marker */
13608 { NULL, 0, 0, 0 }
13609};
e7af610e 13610
84ea6cf2 13611
316f5878
RS
13612/* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL
13613 with a final "000" replaced by "k". Ignore case.
e7af610e 13614
316f5878 13615 Note: this function is shared between GCC and GAS. */
c6c98b38 13616
316f5878
RS
13617static boolean
13618mips_strict_matching_cpu_name_p (canonical, given)
13619 const char *canonical, *given;
13620{
13621 while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical))
13622 given++, canonical++;
13623
13624 return ((*given == 0 && *canonical == 0)
13625 || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0));
13626}
13627
13628
13629/* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied
13630 CPU name. We've traditionally allowed a lot of variation here.
13631
13632 Note: this function is shared between GCC and GAS. */
13633
13634static boolean
13635mips_matching_cpu_name_p (canonical, given)
13636 const char *canonical, *given;
13637{
13638 /* First see if the name matches exactly, or with a final "000"
13639 turned into "k". */
13640 if (mips_strict_matching_cpu_name_p (canonical, given))
13641 return true;
13642
13643 /* If not, try comparing based on numerical designation alone.
13644 See if GIVEN is an unadorned number, or 'r' followed by a number. */
13645 if (TOLOWER (*given) == 'r')
13646 given++;
13647 if (!ISDIGIT (*given))
13648 return false;
13649
13650 /* Skip over some well-known prefixes in the canonical name,
13651 hoping to find a number there too. */
13652 if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r')
13653 canonical += 2;
13654 else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm')
13655 canonical += 2;
13656 else if (TOLOWER (canonical[0]) == 'r')
13657 canonical += 1;
13658
13659 return mips_strict_matching_cpu_name_p (canonical, given);
13660}
13661
13662
13663/* Parse an option that takes the name of a processor as its argument.
13664 OPTION is the name of the option and CPU_STRING is the argument.
13665 Return the corresponding processor enumeration if the CPU_STRING is
13666 recognized, otherwise report an error and return null.
13667
13668 A similar function exists in GCC. */
e7af610e
NC
13669
13670static const struct mips_cpu_info *
316f5878
RS
13671mips_parse_cpu (option, cpu_string)
13672 const char *option, *cpu_string;
e7af610e 13673{
316f5878 13674 const struct mips_cpu_info *p;
e7af610e 13675
316f5878
RS
13676 /* 'from-abi' selects the most compatible architecture for the given
13677 ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the
13678 EABIs, we have to decide whether we're using the 32-bit or 64-bit
13679 version. Look first at the -mgp options, if given, otherwise base
13680 the choice on MIPS_DEFAULT_64BIT.
e7af610e 13681
316f5878
RS
13682 Treat NO_ABI like the EABIs. One reason to do this is that the
13683 plain 'mips' and 'mips64' configs have 'from-abi' as their default
13684 architecture. This code picks MIPS I for 'mips' and MIPS III for
13685 'mips64', just as we did in the days before 'from-abi'. */
13686 if (strcasecmp (cpu_string, "from-abi") == 0)
13687 {
13688 if (ABI_NEEDS_32BIT_REGS (mips_abi))
13689 return mips_cpu_info_from_isa (ISA_MIPS1);
13690
13691 if (ABI_NEEDS_64BIT_REGS (mips_abi))
13692 return mips_cpu_info_from_isa (ISA_MIPS3);
13693
13694 if (file_mips_gp32 >= 0)
13695 return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3);
13696
13697 return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT
13698 ? ISA_MIPS3
13699 : ISA_MIPS1);
13700 }
13701
13702 /* 'default' has traditionally been a no-op. Probably not very useful. */
13703 if (strcasecmp (cpu_string, "default") == 0)
13704 return 0;
13705
13706 for (p = mips_cpu_info_table; p->name != 0; p++)
13707 if (mips_matching_cpu_name_p (p->name, cpu_string))
13708 return p;
13709
13710 as_bad ("Bad value (%s) for %s", cpu_string, option);
13711 return 0;
e7af610e
NC
13712}
13713
316f5878
RS
13714/* Return the canonical processor information for ISA (a member of the
13715 ISA_MIPS* enumeration). */
13716
e7af610e
NC
13717static const struct mips_cpu_info *
13718mips_cpu_info_from_isa (isa)
13719 int isa;
13720{
13721 int i;
13722
13723 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
13724 if (mips_cpu_info_table[i].is_isa
316f5878 13725 && isa == mips_cpu_info_table[i].isa)
e7af610e
NC
13726 return (&mips_cpu_info_table[i]);
13727
e972090a 13728 return NULL;
e7af610e 13729}
316f5878
RS
13730\f
13731static void
13732show (stream, string, col_p, first_p)
13733 FILE *stream;
13734 const char *string;
13735 int *col_p;
13736 int *first_p;
13737{
13738 if (*first_p)
13739 {
13740 fprintf (stream, "%24s", "");
13741 *col_p = 24;
13742 }
13743 else
13744 {
13745 fprintf (stream, ", ");
13746 *col_p += 2;
13747 }
e7af610e 13748
316f5878
RS
13749 if (*col_p + strlen (string) > 72)
13750 {
13751 fprintf (stream, "\n%24s", "");
13752 *col_p = 24;
13753 }
13754
13755 fprintf (stream, "%s", string);
13756 *col_p += strlen (string);
13757
13758 *first_p = 0;
13759}
13760
13761void
13762md_show_usage (stream)
13763 FILE *stream;
e7af610e 13764{
316f5878
RS
13765 int column, first;
13766 size_t i;
13767
13768 fprintf (stream, _("\
13769MIPS options:\n\
13770-membedded-pic generate embedded position independent code\n\
13771-EB generate big endian output\n\
13772-EL generate little endian output\n\
13773-g, -g2 do not remove unneeded NOPs or swap branches\n\
13774-G NUM allow referencing objects up to NUM bytes\n\
13775 implicitly with the gp register [default 8]\n"));
13776 fprintf (stream, _("\
13777-mips1 generate MIPS ISA I instructions\n\
13778-mips2 generate MIPS ISA II instructions\n\
13779-mips3 generate MIPS ISA III instructions\n\
13780-mips4 generate MIPS ISA IV instructions\n\
13781-mips5 generate MIPS ISA V instructions\n\
13782-mips32 generate MIPS32 ISA instructions\n\
13783-mips64 generate MIPS64 ISA instructions\n\
13784-march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n"));
13785
13786 first = 1;
e7af610e
NC
13787
13788 for (i = 0; mips_cpu_info_table[i].name != NULL; i++)
316f5878
RS
13789 show (stream, mips_cpu_info_table[i].name, &column, &first);
13790 show (stream, "from-abi", &column, &first);
13791 fputc ('\n', stream);
e7af610e 13792
316f5878
RS
13793 fprintf (stream, _("\
13794-mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\
13795-no-mCPU don't generate code specific to CPU.\n\
13796 For -mCPU and -no-mCPU, CPU must be one of:\n"));
13797
13798 first = 1;
13799
13800 show (stream, "3900", &column, &first);
13801 show (stream, "4010", &column, &first);
13802 show (stream, "4100", &column, &first);
13803 show (stream, "4650", &column, &first);
13804 fputc ('\n', stream);
13805
13806 fprintf (stream, _("\
13807-mips16 generate mips16 instructions\n\
13808-no-mips16 do not generate mips16 instructions\n"));
13809 fprintf (stream, _("\
13810-mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\
13811-mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\
13812-O0 remove unneeded NOPs, do not swap branches\n\
13813-O remove unneeded NOPs and swap branches\n\
13814-n warn about NOPs generated from macros\n\
13815--[no-]construct-floats [dis]allow floating point values to be constructed\n\
13816--trap, --no-break trap exception on div by 0 and mult overflow\n\
13817--break, --no-trap break exception on div by 0 and mult overflow\n"));
13818#ifdef OBJ_ELF
13819 fprintf (stream, _("\
13820-KPIC, -call_shared generate SVR4 position independent code\n\
13821-non_shared do not generate position independent code\n\
13822-xgot assume a 32 bit GOT\n\
13823-mabi=ABI create ABI conformant object file for:\n"));
13824
13825 first = 1;
13826
13827 show (stream, "32", &column, &first);
13828 show (stream, "o64", &column, &first);
13829 show (stream, "n32", &column, &first);
13830 show (stream, "64", &column, &first);
13831 show (stream, "eabi", &column, &first);
13832
13833 fputc ('\n', stream);
13834
13835 fprintf (stream, _("\
13836-32 create o32 ABI object file (default)\n\
13837-n32 create n32 ABI object file\n\
13838-64 create 64 ABI object file\n"));
13839#endif
e7af610e 13840}
This page took 1.215541 seconds and 4 git commands to generate.