Remove 4300 and 5400 from hilo_interlocks definition.
[deliverable/binutils-gdb.git] / gas / config / tc-mips.c
1 /* tc-mips.c -- assemble code for a MIPS chip.
2 Copyright (C) 1993, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
3 Contributed by the OSF and Ralph Campbell.
4 Written by Keith Knowles and Ralph Campbell, working independently.
5 Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus
6 Support.
7
8 This file is part of GAS.
9
10 GAS is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 GAS is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GAS; see the file COPYING. If not, write to the Free
22 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 02111-1307, USA. */
24
25 #include "as.h"
26 #include "config.h"
27 #include "subsegs.h"
28
29 #include <ctype.h>
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"
40
41 #ifdef DEBUG
42 #define DBG(x) printf x
43 #else
44 #define DBG(x)
45 #endif
46
47 #ifdef OBJ_MAYBE_ELF
48 /* Clean up namespace so we can include obj-elf.h too. */
49 static int mips_output_flavor PARAMS ((void));
50 static int mips_output_flavor () { return OUTPUT_FLAVOR; }
51 #undef OBJ_PROCESS_STAB
52 #undef OUTPUT_FLAVOR
53 #undef S_GET_ALIGN
54 #undef S_GET_SIZE
55 #undef S_SET_ALIGN
56 #undef S_SET_SIZE
57 #undef TARGET_SYMBOL_FIELDS
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
80 #include "ecoff.h"
81
82 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
83 static char *mips_regmask_frag;
84 #endif
85
86 #define AT 1
87 #define TREG 24
88 #define PIC_CALL_REG 25
89 #define KT0 26
90 #define KT1 27
91 #define GP 28
92 #define SP 29
93 #define FP 30
94 #define RA 31
95
96 #define ILLEGAL_REG (32)
97
98 /* Allow override of standard little-endian ECOFF format. */
99
100 #ifndef ECOFF_LITTLE_FORMAT
101 #define ECOFF_LITTLE_FORMAT "ecoff-littlemips"
102 #endif
103
104 extern int target_big_endian;
105
106 /* 1 is we should use the 64 bit MIPS ELF ABI, 0 if we should use the
107 32 bit ABI. This has no meaning for ECOFF.
108 Note that the default is always 32 bit, even if "configured" for
109 64 bit [e.g. --target=mips64-elf]. */
110 static int mips_64;
111
112 /* The default target format to use. */
113 const char *
114 mips_target_format ()
115 {
116 switch (OUTPUT_FLAVOR)
117 {
118 case bfd_target_aout_flavour:
119 return target_big_endian ? "a.out-mips-big" : "a.out-mips-little";
120 case bfd_target_ecoff_flavour:
121 return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT;
122 case bfd_target_elf_flavour:
123 return (target_big_endian
124 ? (mips_64 ? "elf64-bigmips" : "elf32-bigmips")
125 : (mips_64 ? "elf64-littlemips" : "elf32-littlemips"));
126 default:
127 abort ();
128 return NULL;
129 }
130 }
131
132 /* The name of the readonly data section. */
133 #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_aout_flavour \
134 ? ".data" \
135 : OUTPUT_FLAVOR == bfd_target_ecoff_flavour \
136 ? ".rdata" \
137 : OUTPUT_FLAVOR == bfd_target_elf_flavour \
138 ? ".rodata" \
139 : (abort (), ""))
140
141 /* This is the set of options which may be modified by the .set
142 pseudo-op. We use a struct so that .set push and .set pop are more
143 reliable. */
144
145 struct mips_set_options
146 {
147 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
148 if it has not been initialized. Changed by `.set mipsN', and the
149 -mipsN command line option, and the default CPU. */
150 int isa;
151 /* Whether we are assembling for the mips16 processor. 0 if we are
152 not, 1 if we are, and -1 if the value has not been initialized.
153 Changed by `.set mips16' and `.set nomips16', and the -mips16 and
154 -nomips16 command line options, and the default CPU. */
155 int mips16;
156 /* Non-zero if we should not reorder instructions. Changed by `.set
157 reorder' and `.set noreorder'. */
158 int noreorder;
159 /* Non-zero if we should not permit the $at ($1) register to be used
160 in instructions. Changed by `.set at' and `.set noat'. */
161 int noat;
162 /* Non-zero if we should warn when a macro instruction expands into
163 more than one machine instruction. Changed by `.set nomacro' and
164 `.set macro'. */
165 int warn_about_macros;
166 /* Non-zero if we should not move instructions. Changed by `.set
167 move', `.set volatile', `.set nomove', and `.set novolatile'. */
168 int nomove;
169 /* Non-zero if we should not optimize branches by moving the target
170 of the branch into the delay slot. Actually, we don't perform
171 this optimization anyhow. Changed by `.set bopt' and `.set
172 nobopt'. */
173 int nobopt;
174 /* Non-zero if we should not autoextend mips16 instructions.
175 Changed by `.set autoextend' and `.set noautoextend'. */
176 int noautoextend;
177 };
178
179 /* This is the struct we use to hold the current set of options. Note
180 that we must set the isa and mips16 fields to -1 to indicate that
181 they have not been initialized. */
182
183 static struct mips_set_options mips_opts = { -1, -1 };
184
185 /* These variables are filled in with the masks of registers used.
186 The object format code reads them and puts them in the appropriate
187 place. */
188 unsigned long mips_gprmask;
189 unsigned long mips_cprmask[4];
190
191 /* MIPS ISA we are using for this output file. */
192 static int file_mips_isa;
193
194 /* The CPU type as a number: 2000, 3000, 4000, 4400, etc. */
195 static int mips_cpu = -1;
196
197 /* Whether the 4650 instructions (mad/madu) are permitted. */
198 static int mips_4650 = -1;
199
200 /* Whether the 4010 instructions are permitted. */
201 static int mips_4010 = -1;
202
203 /* Whether the 4100 MADD16 and DMADD16 are permitted. */
204 static int mips_4100 = -1;
205
206 /* start-sanitize-vr4320 */
207 /* Whether NEC vr4320 instructions are permitted. */
208 static int mips_4320 = -1;
209
210 /* end-sanitize-vr4320 */
211 /* start-sanitize-vr5400 */
212 /* Whether NEC vr5400 instructions are permitted. */
213 static int mips_5400 = -1;
214
215 /* end-sanitize-vr5400 */
216 /* start-sanitize-r5900 */
217 /* Whether Toshiba r5900 instructions are permitted. */
218 static int mips_5900 = -1;
219
220 /* end-sanitize-r5900 */
221 /* Whether Toshiba r3900 instructions are permitted. */
222 static int mips_3900 = -1;
223
224 /* start-sanitize-tx49 */
225 /* Whether Toshiba r4900 instructions are permitted. */
226 static int mips_4900 = -1;
227
228 /* end-sanitize-tx49 */
229 /* start-sanitize-tx19 */
230 /* The tx19 (r1900) is a mips16 decoder with a tx39(r3900) behind it.
231 The tx19 related options and configuration bits are handled by
232 the tx39 flags. */
233 /* end-sanitize-tx19 */
234
235 /* Whether the processor uses hardware interlocks to protect
236 reads from the HI and LO registers, and thus does not
237 require nops to be inserted. */
238 #define hilo_interlocks (mips_4010 || mips_3900 \
239 /* start-sanitize-tx49 */ \
240 || mips_cpu == 4900 || mips_4900 \
241 /* end-sanitize-tx49 */ \
242 /* start-sanitize-vr4320 */ \
243 || mips_cpu == 4320 \
244 /* end-sanitize-vr4320 */ \
245 )
246
247 /* Whether the processor uses hardware interlocks to protect reads
248 from the GPRs, and thus does not require nops to be inserted. */
249 #define gpr_interlocks (mips_opts.isa >= 2 || mips_3900)
250 /* start-sanitize-vr5400 */
251 #undef gpr_interlocks
252 #define gpr_interlocks (mips_opts.isa >= 2 || mips_3900 || mips_5400)
253 /* end-sanitize-vr5400 */
254
255
256 /* As with other "interlocks" this is used by hardware that has FP
257 (co-processor) interlocks. */
258 /* Itbl support may require additional care here. */
259 #define cop_interlocks (mips_cpu == 4300 \
260 /* start-sanitize-vr4320 */ \
261 || mips_cpu == 4320 \
262 /* end-sanitize-vr4320 */ \
263 /* start-sanitize-vr5400 */ \
264 || mips_cpu == 5400 \
265 /* end-sanitize-vr5400 */ \
266 )
267
268 /* MIPS PIC level. */
269
270 enum mips_pic_level
271 {
272 /* Do not generate PIC code. */
273 NO_PIC,
274
275 /* Generate PIC code as in Irix 4. This is not implemented, and I'm
276 not sure what it is supposed to do. */
277 IRIX4_PIC,
278
279 /* Generate PIC code as in the SVR4 MIPS ABI. */
280 SVR4_PIC,
281
282 /* Generate PIC code without using a global offset table: the data
283 segment has a maximum size of 64K, all data references are off
284 the $gp register, and all text references are PC relative. This
285 is used on some embedded systems. */
286 EMBEDDED_PIC
287 };
288
289 static enum mips_pic_level mips_pic;
290
291 /* 1 if we should generate 32 bit offsets from the GP register in
292 SVR4_PIC mode. Currently has no meaning in other modes. */
293 static int mips_big_got;
294
295 /* 1 if trap instructions should used for overflow rather than break
296 instructions. */
297 static int mips_trap;
298
299 /* Non-zero if any .set noreorder directives were used. */
300
301 static int mips_any_noreorder;
302
303 /* The size of the small data section. */
304 static int g_switch_value = 8;
305 /* Whether the -G option was used. */
306 static int g_switch_seen = 0;
307
308 #define N_RMASK 0xc4
309 #define N_VFP 0xd4
310
311 /* If we can determine in advance that GP optimization won't be
312 possible, we can skip the relaxation stuff that tries to produce
313 GP-relative references. This makes delay slot optimization work
314 better.
315
316 This function can only provide a guess, but it seems to work for
317 gcc output. If it guesses wrong, the only loss should be in
318 efficiency; it shouldn't introduce any bugs.
319
320 I don't know if a fix is needed for the SVR4_PIC mode. I've only
321 fixed it for the non-PIC mode. KR 95/04/07 */
322 static int nopic_need_relax PARAMS ((symbolS *, int));
323
324 /* handle of the OPCODE hash table */
325 static struct hash_control *op_hash = NULL;
326
327 /* The opcode hash table we use for the mips16. */
328 static struct hash_control *mips16_op_hash = NULL;
329
330 /* This array holds the chars that always start a comment. If the
331 pre-processor is disabled, these aren't very useful */
332 const char comment_chars[] = "#";
333
334 /* This array holds the chars that only start a comment at the beginning of
335 a line. If the line seems to have the form '# 123 filename'
336 .line and .file directives will appear in the pre-processed output */
337 /* Note that input_file.c hand checks for '#' at the beginning of the
338 first line of the input file. This is because the compiler outputs
339 #NO_APP at the beginning of its output. */
340 /* Also note that C style comments are always supported. */
341 const char line_comment_chars[] = "#";
342
343 /* This array holds machine specific line separator characters. */
344 const char line_separator_chars[] = "";
345
346 /* Chars that can be used to separate mant from exp in floating point nums */
347 const char EXP_CHARS[] = "eE";
348
349 /* Chars that mean this number is a floating point constant */
350 /* As in 0f12.456 */
351 /* or 0d1.2345e12 */
352 const char FLT_CHARS[] = "rRsSfFdDxXpP";
353
354 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
355 changed in read.c . Ideally it shouldn't have to know about it at all,
356 but nothing is ideal around here.
357 */
358
359 static char *insn_error;
360
361 static int auto_align = 1;
362
363 /* When outputting SVR4 PIC code, the assembler needs to know the
364 offset in the stack frame from which to restore the $gp register.
365 This is set by the .cprestore pseudo-op, and saved in this
366 variable. */
367 static offsetT mips_cprestore_offset = -1;
368
369 /* This is the register which holds the stack frame, as set by the
370 .frame pseudo-op. This is needed to implement .cprestore. */
371 static int mips_frame_reg = SP;
372
373 /* To output NOP instructions correctly, we need to keep information
374 about the previous two instructions. */
375
376 /* Whether we are optimizing. The default value of 2 means to remove
377 unneeded NOPs and swap branch instructions when possible. A value
378 of 1 means to not swap branches. A value of 0 means to always
379 insert NOPs. */
380 static int mips_optimize = 2;
381
382 /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is
383 equivalent to seeing no -g option at all. */
384 static int mips_debug = 0;
385
386 /* The previous instruction. */
387 static struct mips_cl_insn prev_insn;
388
389 /* The instruction before prev_insn. */
390 static struct mips_cl_insn prev_prev_insn;
391
392 /* If we don't want information for prev_insn or prev_prev_insn, we
393 point the insn_mo field at this dummy integer. */
394 static const struct mips_opcode dummy_opcode = { 0 };
395
396 /* Non-zero if prev_insn is valid. */
397 static int prev_insn_valid;
398
399 /* The frag for the previous instruction. */
400 static struct frag *prev_insn_frag;
401
402 /* The offset into prev_insn_frag for the previous instruction. */
403 static long prev_insn_where;
404
405 /* The reloc type for the previous instruction, if any. */
406 static bfd_reloc_code_real_type prev_insn_reloc_type;
407
408 /* The reloc for the previous instruction, if any. */
409 static fixS *prev_insn_fixp;
410
411 /* Non-zero if the previous instruction was in a delay slot. */
412 static int prev_insn_is_delay_slot;
413
414 /* Non-zero if the previous instruction was in a .set noreorder. */
415 static int prev_insn_unreordered;
416
417 /* Non-zero if the previous instruction uses an extend opcode (if
418 mips16). */
419 static int prev_insn_extended;
420
421 /* Non-zero if the previous previous instruction was in a .set
422 noreorder. */
423 static int prev_prev_insn_unreordered;
424
425 /* If this is set, it points to a frag holding nop instructions which
426 were inserted before the start of a noreorder section. If those
427 nops turn out to be unnecessary, the size of the frag can be
428 decreased. */
429 static fragS *prev_nop_frag;
430
431 /* The number of nop instructions we created in prev_nop_frag. */
432 static int prev_nop_frag_holds;
433
434 /* The number of nop instructions that we know we need in
435 prev_nop_frag. */
436 static int prev_nop_frag_required;
437
438 /* The number of instructions we've seen since prev_nop_frag. */
439 static int prev_nop_frag_since;
440
441 /* For ECOFF and ELF, relocations against symbols are done in two
442 parts, with a HI relocation and a LO relocation. Each relocation
443 has only 16 bits of space to store an addend. This means that in
444 order for the linker to handle carries correctly, it must be able
445 to locate both the HI and the LO relocation. This means that the
446 relocations must appear in order in the relocation table.
447
448 In order to implement this, we keep track of each unmatched HI
449 relocation. We then sort them so that they immediately precede the
450 corresponding LO relocation. */
451
452 struct mips_hi_fixup
453 {
454 /* Next HI fixup. */
455 struct mips_hi_fixup *next;
456 /* This fixup. */
457 fixS *fixp;
458 /* The section this fixup is in. */
459 segT seg;
460 };
461
462 /* The list of unmatched HI relocs. */
463
464 static struct mips_hi_fixup *mips_hi_fixup_list;
465
466 /* Map normal MIPS register numbers to mips16 register numbers. */
467
468 #define X ILLEGAL_REG
469 static const int mips32_to_16_reg_map[] =
470 {
471 X, X, 2, 3, 4, 5, 6, 7,
472 X, X, X, X, X, X, X, X,
473 0, 1, X, X, X, X, X, X,
474 X, X, X, X, X, X, X, X
475 };
476 #undef X
477
478 /* Map mips16 register numbers to normal MIPS register numbers. */
479
480 static const int mips16_to_32_reg_map[] =
481 {
482 16, 17, 2, 3, 4, 5, 6, 7
483 };
484 \f
485 /* Since the MIPS does not have multiple forms of PC relative
486 instructions, we do not have to do relaxing as is done on other
487 platforms. However, we do have to handle GP relative addressing
488 correctly, which turns out to be a similar problem.
489
490 Every macro that refers to a symbol can occur in (at least) two
491 forms, one with GP relative addressing and one without. For
492 example, loading a global variable into a register generally uses
493 a macro instruction like this:
494 lw $4,i
495 If i can be addressed off the GP register (this is true if it is in
496 the .sbss or .sdata section, or if it is known to be smaller than
497 the -G argument) this will generate the following instruction:
498 lw $4,i($gp)
499 This instruction will use a GPREL reloc. If i can not be addressed
500 off the GP register, the following instruction sequence will be used:
501 lui $at,i
502 lw $4,i($at)
503 In this case the first instruction will have a HI16 reloc, and the
504 second reloc will have a LO16 reloc. Both relocs will be against
505 the symbol i.
506
507 The issue here is that we may not know whether i is GP addressable
508 until after we see the instruction that uses it. Therefore, we
509 want to be able to choose the final instruction sequence only at
510 the end of the assembly. This is similar to the way other
511 platforms choose the size of a PC relative instruction only at the
512 end of assembly.
513
514 When generating position independent code we do not use GP
515 addressing in quite the same way, but the issue still arises as
516 external symbols and local symbols must be handled differently.
517
518 We handle these issues by actually generating both possible
519 instruction sequences. The longer one is put in a frag_var with
520 type rs_machine_dependent. We encode what to do with the frag in
521 the subtype field. We encode (1) the number of existing bytes to
522 replace, (2) the number of new bytes to use, (3) the offset from
523 the start of the existing bytes to the first reloc we must generate
524 (that is, the offset is applied from the start of the existing
525 bytes after they are replaced by the new bytes, if any), (4) the
526 offset from the start of the existing bytes to the second reloc,
527 (5) whether a third reloc is needed (the third reloc is always four
528 bytes after the second reloc), and (6) whether to warn if this
529 variant is used (this is sometimes needed if .set nomacro or .set
530 noat is in effect). All these numbers are reasonably small.
531
532 Generating two instruction sequences must be handled carefully to
533 ensure that delay slots are handled correctly. Fortunately, there
534 are a limited number of cases. When the second instruction
535 sequence is generated, append_insn is directed to maintain the
536 existing delay slot information, so it continues to apply to any
537 code after the second instruction sequence. This means that the
538 second instruction sequence must not impose any requirements not
539 required by the first instruction sequence.
540
541 These variant frags are then handled in functions called by the
542 machine independent code. md_estimate_size_before_relax returns
543 the final size of the frag. md_convert_frag sets up the final form
544 of the frag. tc_gen_reloc adjust the first reloc and adds a second
545 one if needed. */
546 #define RELAX_ENCODE(old, new, reloc1, reloc2, reloc3, warn) \
547 ((relax_substateT) \
548 (((old) << 23) \
549 | ((new) << 16) \
550 | (((reloc1) + 64) << 9) \
551 | (((reloc2) + 64) << 2) \
552 | ((reloc3) ? (1 << 1) : 0) \
553 | ((warn) ? 1 : 0)))
554 #define RELAX_OLD(i) (((i) >> 23) & 0x7f)
555 #define RELAX_NEW(i) (((i) >> 16) & 0x7f)
556 #define RELAX_RELOC1(i) ((bfd_vma)(((i) >> 9) & 0x7f) - 64)
557 #define RELAX_RELOC2(i) ((bfd_vma)(((i) >> 2) & 0x7f) - 64)
558 #define RELAX_RELOC3(i) (((i) >> 1) & 1)
559 #define RELAX_WARN(i) ((i) & 1)
560
561 /* For mips16 code, we use an entirely different form of relaxation.
562 mips16 supports two versions of most instructions which take
563 immediate values: a small one which takes some small value, and a
564 larger one which takes a 16 bit value. Since branches also follow
565 this pattern, relaxing these values is required.
566
567 We can assemble both mips16 and normal MIPS code in a single
568 object. Therefore, we need to support this type of relaxation at
569 the same time that we support the relaxation described above. We
570 use the high bit of the subtype field to distinguish these cases.
571
572 The information we store for this type of relaxation is the
573 argument code found in the opcode file for this relocation, whether
574 the user explicitly requested a small or extended form, and whether
575 the relocation is in a jump or jal delay slot. That tells us the
576 size of the value, and how it should be stored. We also store
577 whether the fragment is considered to be extended or not. We also
578 store whether this is known to be a branch to a different section,
579 whether we have tried to relax this frag yet, and whether we have
580 ever extended a PC relative fragment because of a shift count. */
581 #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \
582 (0x80000000 \
583 | ((type) & 0xff) \
584 | ((small) ? 0x100 : 0) \
585 | ((ext) ? 0x200 : 0) \
586 | ((dslot) ? 0x400 : 0) \
587 | ((jal_dslot) ? 0x800 : 0))
588 #define RELAX_MIPS16_P(i) (((i) & 0x80000000) != 0)
589 #define RELAX_MIPS16_TYPE(i) ((i) & 0xff)
590 #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0)
591 #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0)
592 #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0)
593 #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0)
594 #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0)
595 #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000)
596 #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000)
597 #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0)
598 #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000)
599 #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000)
600 \f
601 /* Prototypes for static functions. */
602
603 #ifdef __STDC__
604 #define internalError() \
605 as_fatal ("internal Error, line %d, %s", __LINE__, __FILE__)
606 #else
607 #define internalError() as_fatal ("MIPS internal Error");
608 #endif
609
610 enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG };
611
612 static int insn_uses_reg PARAMS ((struct mips_cl_insn *ip,
613 unsigned int reg, enum mips_regclass class));
614 static int reg_needs_delay PARAMS ((int));
615 static void mips16_mark_labels PARAMS ((void));
616 static void append_insn PARAMS ((char *place,
617 struct mips_cl_insn * ip,
618 expressionS * p,
619 bfd_reloc_code_real_type r,
620 boolean));
621 static void mips_no_prev_insn PARAMS ((int));
622 static void mips_emit_delays PARAMS ((boolean));
623 #ifdef USE_STDARG
624 static void macro_build PARAMS ((char *place, int *counter, expressionS * ep,
625 const char *name, const char *fmt,
626 ...));
627 #else
628 static void macro_build ();
629 #endif
630 static void mips16_macro_build PARAMS ((char *, int *, expressionS *,
631 const char *, const char *,
632 va_list));
633 static void macro_build_lui PARAMS ((char *place, int *counter,
634 expressionS * ep, int regnum));
635 static void set_at PARAMS ((int *counter, int reg, int unsignedp));
636 static void check_absolute_expr PARAMS ((struct mips_cl_insn * ip,
637 expressionS *));
638 static void load_register PARAMS ((int *, int, expressionS *, int));
639 static void load_address PARAMS ((int *counter, int reg, expressionS *ep));
640 static void macro PARAMS ((struct mips_cl_insn * ip));
641 static void mips16_macro PARAMS ((struct mips_cl_insn * ip));
642 #ifdef LOSING_COMPILER
643 static void macro2 PARAMS ((struct mips_cl_insn * ip));
644 #endif
645 static void mips_ip PARAMS ((char *str, struct mips_cl_insn * ip));
646 static void mips16_ip PARAMS ((char *str, struct mips_cl_insn * ip));
647 static void mips16_immed PARAMS ((char *, unsigned int, int, offsetT, boolean,
648 boolean, boolean, unsigned long *,
649 boolean *, unsigned short *));
650 static int my_getSmallExpression PARAMS ((expressionS * ep, char *str));
651 static void my_getExpression PARAMS ((expressionS * ep, char *str));
652 static symbolS *get_symbol PARAMS ((void));
653 static void mips_align PARAMS ((int to, int fill, symbolS *label));
654 static void s_align PARAMS ((int));
655 static void s_change_sec PARAMS ((int));
656 static void s_cons PARAMS ((int));
657 static void s_float_cons PARAMS ((int));
658 static void s_mips_globl PARAMS ((int));
659 static void s_option PARAMS ((int));
660 static void s_mipsset PARAMS ((int));
661 static void s_abicalls PARAMS ((int));
662 static void s_cpload PARAMS ((int));
663 static void s_cprestore PARAMS ((int));
664 static void s_gpword PARAMS ((int));
665 static void s_cpadd PARAMS ((int));
666 static void s_insn PARAMS ((int));
667 static void md_obj_begin PARAMS ((void));
668 static void md_obj_end PARAMS ((void));
669 static long get_number PARAMS ((void));
670 static void s_ent PARAMS ((int));
671 static void s_mipsend PARAMS ((int));
672 static void s_file PARAMS ((int));
673 static void s_mips_stab PARAMS ((int));
674 static void s_mips_weakext PARAMS ((int));
675 static int mips16_extended_frag PARAMS ((fragS *, asection *, long));
676
677
678 static int validate_mips_insn PARAMS ((const struct mips_opcode *));
679 \f
680 /* Pseudo-op table.
681
682 The following pseudo-ops from the Kane and Heinrich MIPS book
683 should be defined here, but are currently unsupported: .alias,
684 .galive, .gjaldef, .gjrlive, .livereg, .noalias.
685
686 The following pseudo-ops from the Kane and Heinrich MIPS book are
687 specific to the type of debugging information being generated, and
688 should be defined by the object format: .aent, .begin, .bend,
689 .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp,
690 .vreg.
691
692 The following pseudo-ops from the Kane and Heinrich MIPS book are
693 not MIPS CPU specific, but are also not specific to the object file
694 format. This file is probably the best place to define them, but
695 they are not currently supported: .asm0, .endr, .lab, .repeat,
696 .struct. */
697
698 static const pseudo_typeS mips_pseudo_table[] =
699 {
700 /* MIPS specific pseudo-ops. */
701 {"option", s_option, 0},
702 {"set", s_mipsset, 0},
703 {"rdata", s_change_sec, 'r'},
704 {"sdata", s_change_sec, 's'},
705 {"livereg", s_ignore, 0},
706 {"abicalls", s_abicalls, 0},
707 {"cpload", s_cpload, 0},
708 {"cprestore", s_cprestore, 0},
709 {"gpword", s_gpword, 0},
710 {"cpadd", s_cpadd, 0},
711 {"insn", s_insn, 0},
712
713 /* Relatively generic pseudo-ops that happen to be used on MIPS
714 chips. */
715 {"asciiz", stringer, 1},
716 {"bss", s_change_sec, 'b'},
717 {"err", s_err, 0},
718 {"half", s_cons, 1},
719 {"dword", s_cons, 3},
720 {"weakext", s_mips_weakext, 0},
721
722 /* These pseudo-ops are defined in read.c, but must be overridden
723 here for one reason or another. */
724 {"align", s_align, 0},
725 {"byte", s_cons, 0},
726 {"data", s_change_sec, 'd'},
727 {"double", s_float_cons, 'd'},
728 {"float", s_float_cons, 'f'},
729 {"globl", s_mips_globl, 0},
730 {"global", s_mips_globl, 0},
731 {"hword", s_cons, 1},
732 {"int", s_cons, 2},
733 {"long", s_cons, 2},
734 {"octa", s_cons, 4},
735 {"quad", s_cons, 3},
736 {"short", s_cons, 1},
737 {"single", s_float_cons, 'f'},
738 {"stabn", s_mips_stab, 'n'},
739 {"text", s_change_sec, 't'},
740 {"word", s_cons, 2},
741 { 0 },
742 };
743
744 static const pseudo_typeS mips_nonecoff_pseudo_table[] = {
745 /* These pseudo-ops should be defined by the object file format.
746 However, a.out doesn't support them, so we have versions here. */
747 {"aent", s_ent, 1},
748 {"bgnb", s_ignore, 0},
749 {"end", s_mipsend, 0},
750 {"endb", s_ignore, 0},
751 {"ent", s_ent, 0},
752 {"file", s_file, 0},
753 {"fmask", s_ignore, 'F'},
754 {"frame", s_ignore, 0},
755 {"loc", s_ignore, 0},
756 {"mask", s_ignore, 'R'},
757 {"verstamp", s_ignore, 0},
758 { 0 },
759 };
760
761 extern void pop_insert PARAMS ((const pseudo_typeS *));
762
763 void
764 mips_pop_insert ()
765 {
766 pop_insert (mips_pseudo_table);
767 if (! ECOFF_DEBUGGING)
768 pop_insert (mips_nonecoff_pseudo_table);
769 }
770 \f
771 /* Symbols labelling the current insn. */
772
773 struct insn_label_list
774 {
775 struct insn_label_list *next;
776 symbolS *label;
777 };
778
779 static struct insn_label_list *insn_labels;
780 static struct insn_label_list *free_insn_labels;
781
782 static void mips_clear_insn_labels PARAMS ((void));
783
784 static inline void
785 mips_clear_insn_labels ()
786 {
787 register struct insn_label_list **pl;
788
789 for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next)
790 ;
791 *pl = insn_labels;
792 insn_labels = NULL;
793 }
794 \f
795 static char *expr_end;
796
797 /* Expressions which appear in instructions. These are set by
798 mips_ip. */
799
800 static expressionS imm_expr;
801 static expressionS offset_expr;
802
803 /* Relocs associated with imm_expr and offset_expr. */
804
805 static bfd_reloc_code_real_type imm_reloc;
806 static bfd_reloc_code_real_type offset_reloc;
807
808 /* This is set by mips_ip if imm_reloc is an unmatched HI16_S reloc. */
809
810 static boolean imm_unmatched_hi;
811
812 /* These are set by mips16_ip if an explicit extension is used. */
813
814 static boolean mips16_small, mips16_ext;
815
816 /*
817 * This function is called once, at assembler startup time. It should
818 * set up all the tables, etc. that the MD part of the assembler will need.
819 */
820 void
821 md_begin ()
822 {
823 boolean ok = false;
824 register const char *retval = NULL;
825 register unsigned int i = 0;
826 const char *cpu;
827 char *a = NULL;
828 int broken = 0;
829
830 cpu = TARGET_CPU;
831 if (strcmp (cpu + (sizeof TARGET_CPU) - 3, "el") == 0)
832 {
833 a = xmalloc (sizeof TARGET_CPU);
834 strcpy (a, TARGET_CPU);
835 a[(sizeof TARGET_CPU) - 3] = '\0';
836 cpu = a;
837 }
838
839 if (mips_cpu < 0)
840 {
841 /* Set mips_cpu based on TARGET_CPU, unless TARGET_CPU is
842 just the generic 'mips', in which case set mips_cpu based
843 on the given ISA, if any. */
844
845 if (strcmp (cpu, "mips") == 0)
846 {
847 if (mips_opts.isa < 0)
848 mips_cpu = 3000;
849
850 else if (mips_opts.isa == 2)
851 mips_cpu = 6000;
852
853 else if (mips_opts.isa == 3)
854 mips_cpu = 4000;
855
856 else if (mips_opts.isa == 4)
857 mips_cpu = 8000;
858
859 else
860 mips_cpu = 3000;
861 }
862
863 else if (strcmp (cpu, "r3900") == 0
864 || strcmp (cpu, "mipstx39") == 0
865 /* start-sanitize-tx19 */
866 || strcmp (cpu, "r1900") == 0
867 || strcmp (cpu, "mipstx19") == 0
868 /* end-sanitize-tx19 */
869 )
870 mips_cpu = 3900;
871
872 else if (strcmp (cpu, "r6000") == 0
873 || strcmp (cpu, "mips2") == 0)
874 mips_cpu = 6000;
875
876 else if (strcmp (cpu, "mips64") == 0
877 || strcmp (cpu, "r4000") == 0
878 || strcmp (cpu, "mips3") == 0)
879 mips_cpu = 4000;
880
881 else if (strcmp (cpu, "r4400") == 0)
882 mips_cpu = 4400;
883
884 else if (strcmp (cpu, "mips64orion") == 0
885 || strcmp (cpu, "r4600") == 0)
886 mips_cpu = 4600;
887
888 else if (strcmp (cpu, "r4650") == 0)
889 mips_cpu = 4650;
890
891 else if (strcmp (cpu, "mips64vr4300") == 0)
892 mips_cpu = 4300;
893
894 /* start-sanitize-vr4320 */
895 else if (strcmp (cpu, "r4320") == 0
896 || strcmp (cpu, "mips64vr4320") == 0)
897 mips_cpu = 4320;
898
899 /* end-sanitize-vr4320 */
900 else if (strcmp (cpu, "mips64vr4100") == 0)
901 mips_cpu = 4100;
902
903 else if (strcmp (cpu, "r4010") == 0)
904 mips_cpu = 4010;
905
906 /* start-sanitize-tx49 */
907 else if (strcmp (cpu, "mips64tx49") == 0)
908 mips_cpu = 4900;
909 /* end-sanitize-tx49 */
910
911 else if (strcmp (cpu, "r5000") == 0
912 || strcmp (cpu, "mips64vr5000") == 0)
913 mips_cpu = 5000;
914
915 /* start-sanitize-vr5400 */
916 else if (strcmp (cpu, "r5400") == 0
917 || strcmp (cpu, "mips64vr5400") == 0)
918 mips_cpu = 5400;
919 /* end-sanitize-vr5400 */
920
921 /* start-sanitize-r5900 */
922 else if (strcmp (cpu, "r5900") == 0
923 || strcmp (cpu, "mips64r5900") == 0)
924 mips_cpu = 5900;
925 /* end-sanitize-r5900 */
926
927 else if (strcmp (cpu, "r8000") == 0
928 || strcmp (cpu, "mips4") == 0)
929 mips_cpu = 8000;
930
931 else if (strcmp (cpu, "r10000") == 0)
932 mips_cpu = 10000;
933
934 else if (strcmp (cpu, "mips16") == 0)
935 mips_cpu = 0; /* FIXME */
936
937 else
938 mips_cpu = 3000;
939 }
940
941 if (mips_opts.isa == -1)
942 {
943 if (mips_cpu == 3000
944 || mips_cpu == 3900)
945 mips_opts.isa = 1;
946
947 else if (mips_cpu == 6000
948 || mips_cpu == 4010)
949 mips_opts.isa = 2;
950
951 else if (mips_cpu == 4000
952 || mips_cpu == 4100
953 || mips_cpu == 4400
954 || mips_cpu == 4300
955 /* start-sanitize-vr4320 */
956 || mips_cpu == 4320
957 /* end-sanitize-vr4320 */
958 || mips_cpu == 4600
959 /* start-sanitize-tx49 */
960 || mips_cpu == 4900
961 /* end-sanitize-tx49 */
962 /* start-sanitize-r5900 */
963 || mips_cpu == 5900
964 /* end-sanitize-r5900 */
965 || mips_cpu == 4650)
966 mips_opts.isa = 3;
967
968 else if (mips_cpu == 5000
969 /* start-sanitize-vr5400 */
970 || mips_cpu == 5400
971 /* end-sanitize-vr5400 */
972 || mips_cpu == 8000
973 || mips_cpu == 10000)
974 mips_opts.isa = 4;
975
976 else
977 mips_opts.isa = 1;
978 }
979
980 if (mips_opts.mips16 < 0)
981 {
982 if (strncmp (TARGET_CPU, "mips16", sizeof "mips16" - 1) == 0)
983 mips_opts.mips16 = 1;
984 else
985 mips_opts.mips16 = 0;
986 }
987
988 if (mips_4650 < 0)
989 mips_4650 = (mips_cpu == 4650);
990
991 if (mips_4010 < 0)
992 mips_4010 = (mips_cpu == 4010);
993
994 if (mips_4100 < 0)
995 mips_4100 = (mips_cpu == 4100);
996
997 /* start-sanitize-vr4320 */
998 if (mips_4320 < 0)
999 mips_4320 = (mips_cpu == 4320);
1000
1001 /* end-sanitize-vr4320 */
1002 /* start-sanitize-vr5400 */
1003 if (mips_5400 < 0)
1004 mips_5400 = (mips_cpu == 5400);
1005 /* end-sanitize-vr5400 */
1006
1007 /* start-sanitize-r5900 */
1008 if (mips_5900 < 0)
1009 mips_5900 = (mips_cpu == 5900);
1010 /* end-sanitize-r5900 */
1011
1012 if (mips_3900 < 0)
1013 mips_3900 = (mips_cpu == 3900);
1014
1015 /* start-sanitize-tx49 */
1016 if (mips_4900 < 0)
1017 mips_4900 = (mips_cpu == 4900);
1018
1019 /* end-sanitize-tx49 */
1020
1021 /* End of TARGET_CPU processing, get rid of malloced memory
1022 if necessary. */
1023 cpu = NULL;
1024 if (a != NULL)
1025 {
1026 free (a);
1027 a = NULL;
1028 }
1029
1030 if (mips_opts.isa < 2 && mips_trap)
1031 as_bad ("trap exception not supported at ISA 1");
1032
1033 if (mips_cpu != 0 && mips_cpu != -1)
1034 {
1035 ok = bfd_set_arch_mach (stdoutput, bfd_arch_mips, mips_cpu);
1036 }
1037 else
1038 {
1039 switch (mips_opts.isa)
1040 {
1041 case 1:
1042 ok = bfd_set_arch_mach (stdoutput, bfd_arch_mips, 3000);
1043 break;
1044 case 2:
1045 ok = bfd_set_arch_mach (stdoutput, bfd_arch_mips, 6000);
1046 break;
1047 case 3:
1048 ok = bfd_set_arch_mach (stdoutput, bfd_arch_mips, 4000);
1049 break;
1050 case 4:
1051 ok = bfd_set_arch_mach (stdoutput, bfd_arch_mips, 8000);
1052 break;
1053 }
1054 }
1055
1056 if (! ok)
1057 as_warn ("Could not set architecture and machine");
1058
1059 file_mips_isa = mips_opts.isa;
1060
1061 op_hash = hash_new ();
1062
1063 for (i = 0; i < NUMOPCODES;)
1064 {
1065 const char *name = mips_opcodes[i].name;
1066
1067 retval = hash_insert (op_hash, name, (PTR) &mips_opcodes[i]);
1068 if (retval != NULL)
1069 {
1070 fprintf (stderr, "internal error: can't hash `%s': %s\n",
1071 mips_opcodes[i].name, retval);
1072 /* Probably a memory allocation problem? Give up now. */
1073 as_fatal ("Broken assembler. No assembly attempted.");
1074 }
1075 do
1076 {
1077 if (mips_opcodes[i].pinfo != INSN_MACRO)
1078 {
1079 if (!validate_mips_insn (&mips_opcodes[i]))
1080 broken = 1;
1081 }
1082 ++i;
1083 }
1084 while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name));
1085 }
1086
1087 mips16_op_hash = hash_new ();
1088
1089 i = 0;
1090 while (i < bfd_mips16_num_opcodes)
1091 {
1092 const char *name = mips16_opcodes[i].name;
1093
1094 retval = hash_insert (mips16_op_hash, name, (PTR) &mips16_opcodes[i]);
1095 if (retval != NULL)
1096 as_fatal ("internal: can't hash `%s': %s",
1097 mips16_opcodes[i].name, retval);
1098 do
1099 {
1100 if (mips16_opcodes[i].pinfo != INSN_MACRO
1101 && ((mips16_opcodes[i].match & mips16_opcodes[i].mask)
1102 != mips16_opcodes[i].match))
1103 {
1104 fprintf (stderr, "internal error: bad mips16 opcode: %s %s\n",
1105 mips16_opcodes[i].name, mips16_opcodes[i].args);
1106 broken = 1;
1107 }
1108 ++i;
1109 }
1110 while (i < bfd_mips16_num_opcodes
1111 && strcmp (mips16_opcodes[i].name, name) == 0);
1112 }
1113
1114 if (broken)
1115 as_fatal ("Broken assembler. No assembly attempted.");
1116
1117 /* We add all the general register names to the symbol table. This
1118 helps us detect invalid uses of them. */
1119 for (i = 0; i < 32; i++)
1120 {
1121 char buf[5];
1122
1123 sprintf (buf, "$%d", i);
1124 symbol_table_insert (symbol_new (buf, reg_section, i,
1125 &zero_address_frag));
1126 }
1127 symbol_table_insert (symbol_new ("$fp", reg_section, FP,
1128 &zero_address_frag));
1129 symbol_table_insert (symbol_new ("$sp", reg_section, SP,
1130 &zero_address_frag));
1131 symbol_table_insert (symbol_new ("$gp", reg_section, GP,
1132 &zero_address_frag));
1133 symbol_table_insert (symbol_new ("$at", reg_section, AT,
1134 &zero_address_frag));
1135 symbol_table_insert (symbol_new ("$kt0", reg_section, KT0,
1136 &zero_address_frag));
1137 symbol_table_insert (symbol_new ("$kt1", reg_section, KT1,
1138 &zero_address_frag));
1139 symbol_table_insert (symbol_new ("$pc", reg_section, -1,
1140 &zero_address_frag));
1141
1142 mips_no_prev_insn (false);
1143
1144 mips_gprmask = 0;
1145 mips_cprmask[0] = 0;
1146 mips_cprmask[1] = 0;
1147 mips_cprmask[2] = 0;
1148 mips_cprmask[3] = 0;
1149
1150 /* set the default alignment for the text section (2**2) */
1151 record_alignment (text_section, 2);
1152
1153 if (USE_GLOBAL_POINTER_OPT)
1154 bfd_set_gp_size (stdoutput, g_switch_value);
1155
1156 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1157 {
1158 /* On a native system, sections must be aligned to 16 byte
1159 boundaries. When configured for an embedded ELF target, we
1160 don't bother. */
1161 if (strcmp (TARGET_OS, "elf") != 0)
1162 {
1163 (void) bfd_set_section_alignment (stdoutput, text_section, 4);
1164 (void) bfd_set_section_alignment (stdoutput, data_section, 4);
1165 (void) bfd_set_section_alignment (stdoutput, bss_section, 4);
1166 }
1167
1168 /* Create a .reginfo section for register masks and a .mdebug
1169 section for debugging information. */
1170 {
1171 segT seg;
1172 subsegT subseg;
1173 flagword flags;
1174 segT sec;
1175
1176 seg = now_seg;
1177 subseg = now_subseg;
1178
1179 /* The ABI says this section should be loaded so that the
1180 running program can access it. However, we don't load it
1181 if we are configured for an embedded target */
1182 flags = SEC_READONLY | SEC_DATA;
1183 if (strcmp (TARGET_OS, "elf") != 0)
1184 flags |= SEC_ALLOC | SEC_LOAD;
1185
1186 if (! mips_64)
1187 {
1188 sec = subseg_new (".reginfo", (subsegT) 0);
1189
1190
1191 (void) bfd_set_section_flags (stdoutput, sec, flags);
1192 (void) bfd_set_section_alignment (stdoutput, sec, 2);
1193
1194 #ifdef OBJ_ELF
1195 mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo));
1196 #endif
1197 }
1198 else
1199 {
1200 /* The 64-bit ABI uses a .MIPS.options section rather than
1201 .reginfo section. */
1202 sec = subseg_new (".MIPS.options", (subsegT) 0);
1203 (void) bfd_set_section_flags (stdoutput, sec, flags);
1204 (void) bfd_set_section_alignment (stdoutput, sec, 3);
1205
1206 #ifdef OBJ_ELF
1207 /* Set up the option header. */
1208 {
1209 Elf_Internal_Options opthdr;
1210 char *f;
1211
1212 opthdr.kind = ODK_REGINFO;
1213 opthdr.size = (sizeof (Elf_External_Options)
1214 + sizeof (Elf64_External_RegInfo));
1215 opthdr.section = 0;
1216 opthdr.info = 0;
1217 f = frag_more (sizeof (Elf_External_Options));
1218 bfd_mips_elf_swap_options_out (stdoutput, &opthdr,
1219 (Elf_External_Options *) f);
1220
1221 mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo));
1222 }
1223 #endif
1224 }
1225
1226 if (ECOFF_DEBUGGING)
1227 {
1228 sec = subseg_new (".mdebug", (subsegT) 0);
1229 (void) bfd_set_section_flags (stdoutput, sec,
1230 SEC_HAS_CONTENTS | SEC_READONLY);
1231 (void) bfd_set_section_alignment (stdoutput, sec, 2);
1232 }
1233
1234 subseg_set (seg, subseg);
1235 }
1236 }
1237
1238 if (! ECOFF_DEBUGGING)
1239 md_obj_begin ();
1240 }
1241
1242 void
1243 md_mips_end ()
1244 {
1245 if (! ECOFF_DEBUGGING)
1246 md_obj_end ();
1247 }
1248
1249 void
1250 md_assemble (str)
1251 char *str;
1252 {
1253 struct mips_cl_insn insn;
1254
1255 imm_expr.X_op = O_absent;
1256 imm_reloc = BFD_RELOC_UNUSED;
1257 imm_unmatched_hi = false;
1258 offset_expr.X_op = O_absent;
1259 offset_reloc = BFD_RELOC_UNUSED;
1260
1261 if (mips_opts.mips16)
1262 mips16_ip (str, &insn);
1263 else
1264 {
1265 mips_ip (str, &insn);
1266 DBG(("returned from mips_ip(%s) insn_opcode = 0x%x\n",
1267 str, insn.insn_opcode));
1268 }
1269
1270 if (insn_error)
1271 {
1272 as_bad ("%s `%s'", insn_error, str);
1273 return;
1274 }
1275
1276 if (insn.insn_mo->pinfo == INSN_MACRO)
1277 {
1278 if (mips_opts.mips16)
1279 mips16_macro (&insn);
1280 else
1281 macro (&insn);
1282 }
1283 else
1284 {
1285 if (imm_expr.X_op != O_absent)
1286 append_insn ((char *) NULL, &insn, &imm_expr, imm_reloc,
1287 imm_unmatched_hi);
1288 else if (offset_expr.X_op != O_absent)
1289 append_insn ((char *) NULL, &insn, &offset_expr, offset_reloc, false);
1290 else
1291 append_insn ((char *) NULL, &insn, NULL, BFD_RELOC_UNUSED, false);
1292 }
1293 }
1294
1295 /* See whether instruction IP reads register REG. CLASS is the type
1296 of register. */
1297
1298 static int
1299 insn_uses_reg (ip, reg, class)
1300 struct mips_cl_insn *ip;
1301 unsigned int reg;
1302 enum mips_regclass class;
1303 {
1304 if (class == MIPS16_REG)
1305 {
1306 assert (mips_opts.mips16);
1307 reg = mips16_to_32_reg_map[reg];
1308 class = MIPS_GR_REG;
1309 }
1310
1311 /* Don't report on general register 0, since it never changes. */
1312 if (class == MIPS_GR_REG && reg == 0)
1313 return 0;
1314
1315 if (class == MIPS_FP_REG)
1316 {
1317 assert (! mips_opts.mips16);
1318 /* If we are called with either $f0 or $f1, we must check $f0.
1319 This is not optimal, because it will introduce an unnecessary
1320 NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would
1321 need to distinguish reading both $f0 and $f1 or just one of
1322 them. Note that we don't have to check the other way,
1323 because there is no instruction that sets both $f0 and $f1
1324 and requires a delay. */
1325 if ((ip->insn_mo->pinfo & INSN_READ_FPR_S)
1326 && ((((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS) &~(unsigned)1)
1327 == (reg &~ (unsigned) 1)))
1328 return 1;
1329 if ((ip->insn_mo->pinfo & INSN_READ_FPR_T)
1330 && ((((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT) &~(unsigned)1)
1331 == (reg &~ (unsigned) 1)))
1332 return 1;
1333 }
1334 else if (! mips_opts.mips16)
1335 {
1336 if ((ip->insn_mo->pinfo & INSN_READ_GPR_S)
1337 && ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == reg)
1338 return 1;
1339 if ((ip->insn_mo->pinfo & INSN_READ_GPR_T)
1340 && ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT) == reg)
1341 return 1;
1342 }
1343 else
1344 {
1345 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X)
1346 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RX)
1347 & MIPS16OP_MASK_RX)]
1348 == reg))
1349 return 1;
1350 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y)
1351 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RY)
1352 & MIPS16OP_MASK_RY)]
1353 == reg))
1354 return 1;
1355 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z)
1356 && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
1357 & MIPS16OP_MASK_MOVE32Z)]
1358 == reg))
1359 return 1;
1360 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG)
1361 return 1;
1362 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP)
1363 return 1;
1364 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA)
1365 return 1;
1366 if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X)
1367 && ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
1368 & MIPS16OP_MASK_REGR32) == reg)
1369 return 1;
1370 }
1371
1372 return 0;
1373 }
1374
1375 /* This function returns true if modifying a register requires a
1376 delay. */
1377
1378 static int
1379 reg_needs_delay (reg)
1380 int reg;
1381 {
1382 unsigned long prev_pinfo;
1383
1384 prev_pinfo = prev_insn.insn_mo->pinfo;
1385 if (! mips_opts.noreorder
1386 && mips_opts.isa < 4
1387 && ((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1388 || (! gpr_interlocks
1389 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))))
1390 {
1391 /* A load from a coprocessor or from memory. All load
1392 delays delay the use of general register rt for one
1393 instruction on the r3000. The r6000 and r4000 use
1394 interlocks. */
1395 /* Itbl support may require additional care here. */
1396 know (prev_pinfo & INSN_WRITE_GPR_T);
1397 if (reg == ((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT))
1398 return 1;
1399 }
1400
1401 return 0;
1402 }
1403
1404 /* Mark instruction labels in mips16 mode. This permits the linker to
1405 handle them specially, such as generating jalx instructions when
1406 needed. We also make them odd for the duration of the assembly, in
1407 order to generate the right sort of code. We will make them even
1408 in the adjust_symtab routine, while leaving them marked. This is
1409 convenient for the debugger and the disassembler. The linker knows
1410 to make them odd again. */
1411
1412 static void
1413 mips16_mark_labels ()
1414 {
1415 if (mips_opts.mips16)
1416 {
1417 struct insn_label_list *l;
1418
1419 for (l = insn_labels; l != NULL; l = l->next)
1420 {
1421 #ifdef OBJ_ELF
1422 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
1423 S_SET_OTHER (l->label, STO_MIPS16);
1424 #endif
1425 if ((l->label->sy_value.X_add_number & 1) == 0)
1426 ++l->label->sy_value.X_add_number;
1427 }
1428 }
1429 }
1430
1431 /* Output an instruction. PLACE is where to put the instruction; if
1432 it is NULL, this uses frag_more to get room. IP is the instruction
1433 information. ADDRESS_EXPR is an operand of the instruction to be
1434 used with RELOC_TYPE. */
1435
1436 static void
1437 append_insn (place, ip, address_expr, reloc_type, unmatched_hi)
1438 char *place;
1439 struct mips_cl_insn *ip;
1440 expressionS *address_expr;
1441 bfd_reloc_code_real_type reloc_type;
1442 boolean unmatched_hi;
1443 {
1444 register unsigned long prev_pinfo, pinfo;
1445 char *f;
1446 fixS *fixp;
1447 int nops = 0;
1448
1449 /* Mark instruction labels in mips16 mode. */
1450 if (mips_opts.mips16)
1451 mips16_mark_labels ();
1452
1453 prev_pinfo = prev_insn.insn_mo->pinfo;
1454 pinfo = ip->insn_mo->pinfo;
1455
1456 if (place == NULL && (! mips_opts.noreorder || prev_nop_frag != NULL))
1457 {
1458 int prev_prev_nop;
1459
1460 /* If the previous insn required any delay slots, see if we need
1461 to insert a NOP or two. There are eight kinds of possible
1462 hazards, of which an instruction can have at most one type.
1463 (1) a load from memory delay
1464 (2) a load from a coprocessor delay
1465 (3) an unconditional branch delay
1466 (4) a conditional branch delay
1467 (5) a move to coprocessor register delay
1468 (6) a load coprocessor register from memory delay
1469 (7) a coprocessor condition code delay
1470 (8) a HI/LO special register delay
1471
1472 There are a lot of optimizations we could do that we don't.
1473 In particular, we do not, in general, reorder instructions.
1474 If you use gcc with optimization, it will reorder
1475 instructions and generally do much more optimization then we
1476 do here; repeating all that work in the assembler would only
1477 benefit hand written assembly code, and does not seem worth
1478 it. */
1479
1480 /* This is how a NOP is emitted. */
1481 #define emit_nop() \
1482 (mips_opts.mips16 \
1483 ? md_number_to_chars (frag_more (2), 0x6500, 2) \
1484 : md_number_to_chars (frag_more (4), 0, 4))
1485
1486 /* The previous insn might require a delay slot, depending upon
1487 the contents of the current insn. */
1488 if (! mips_opts.mips16
1489 && mips_opts.isa < 4
1490 && (((prev_pinfo & INSN_LOAD_COPROC_DELAY)
1491 && ! cop_interlocks)
1492 || (! gpr_interlocks
1493 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))))
1494 {
1495 /* A load from a coprocessor or from memory. All load
1496 delays delay the use of general register rt for one
1497 instruction on the r3000. The r6000 and r4000 use
1498 interlocks. */
1499 /* Itbl support may require additional care here. */
1500 know (prev_pinfo & INSN_WRITE_GPR_T);
1501 if (mips_optimize == 0
1502 || insn_uses_reg (ip,
1503 ((prev_insn.insn_opcode >> OP_SH_RT)
1504 & OP_MASK_RT),
1505 MIPS_GR_REG))
1506 ++nops;
1507 }
1508 else if (! mips_opts.mips16
1509 && mips_opts.isa < 4
1510 && (((prev_pinfo & INSN_COPROC_MOVE_DELAY)
1511 && ! cop_interlocks)
1512 || (mips_opts.isa < 2
1513 && (prev_pinfo & INSN_COPROC_MEMORY_DELAY))))
1514 {
1515 /* A generic coprocessor delay. The previous instruction
1516 modified a coprocessor general or control register. If
1517 it modified a control register, we need to avoid any
1518 coprocessor instruction (this is probably not always
1519 required, but it sometimes is). If it modified a general
1520 register, we avoid using that register.
1521
1522 On the r6000 and r4000 loading a coprocessor register
1523 from memory is interlocked, and does not require a delay.
1524
1525 This case is not handled very well. There is no special
1526 knowledge of CP0 handling, and the coprocessors other
1527 than the floating point unit are not distinguished at
1528 all. */
1529 /* Itbl support may require additional care here. FIXME!
1530 Need to modify this to include knowledge about
1531 user specified delays! */
1532 if (prev_pinfo & INSN_WRITE_FPR_T)
1533 {
1534 if (mips_optimize == 0
1535 || insn_uses_reg (ip,
1536 ((prev_insn.insn_opcode >> OP_SH_FT)
1537 & OP_MASK_FT),
1538 MIPS_FP_REG))
1539 ++nops;
1540 }
1541 else if (prev_pinfo & INSN_WRITE_FPR_S)
1542 {
1543 if (mips_optimize == 0
1544 || insn_uses_reg (ip,
1545 ((prev_insn.insn_opcode >> OP_SH_FS)
1546 & OP_MASK_FS),
1547 MIPS_FP_REG))
1548 ++nops;
1549 }
1550 else
1551 {
1552 /* We don't know exactly what the previous instruction
1553 does. If the current instruction uses a coprocessor
1554 register, we must insert a NOP. If previous
1555 instruction may set the condition codes, and the
1556 current instruction uses them, we must insert two
1557 NOPS. */
1558 /* Itbl support may require additional care here. */
1559 if (mips_optimize == 0
1560 || ((prev_pinfo & INSN_WRITE_COND_CODE)
1561 && (pinfo & INSN_READ_COND_CODE)))
1562 nops += 2;
1563 else if (pinfo & INSN_COP)
1564 ++nops;
1565 }
1566 }
1567 else if (! mips_opts.mips16
1568 && mips_opts.isa < 4
1569 && (prev_pinfo & INSN_WRITE_COND_CODE)
1570 && ! cop_interlocks)
1571 {
1572 /* The previous instruction sets the coprocessor condition
1573 codes, but does not require a general coprocessor delay
1574 (this means it is a floating point comparison
1575 instruction). If this instruction uses the condition
1576 codes, we need to insert a single NOP. */
1577 /* Itbl support may require additional care here. */
1578 if (mips_optimize == 0
1579 || (pinfo & INSN_READ_COND_CODE))
1580 ++nops;
1581 }
1582 else if (prev_pinfo & INSN_READ_LO)
1583 {
1584 /* The previous instruction reads the LO register; if the
1585 current instruction writes to the LO register, we must
1586 insert two NOPS. Some newer processors have interlocks. */
1587 if (! hilo_interlocks
1588 && (mips_optimize == 0
1589 || (pinfo & INSN_WRITE_LO)))
1590 nops += 2;
1591 }
1592 else if (prev_insn.insn_mo->pinfo & INSN_READ_HI)
1593 {
1594 /* The previous instruction reads the HI register; if the
1595 current instruction writes to the HI register, we must
1596 insert a NOP. Some newer processors have interlocks. */
1597 if (! hilo_interlocks
1598 && (mips_optimize == 0
1599 || (pinfo & INSN_WRITE_HI)))
1600 nops += 2;
1601 }
1602
1603 /* If the previous instruction was in a noreorder section, then
1604 we don't want to insert the nop after all. */
1605 /* Itbl support may require additional care here. */
1606 if (prev_insn_unreordered)
1607 nops = 0;
1608
1609 /* There are two cases which require two intervening
1610 instructions: 1) setting the condition codes using a move to
1611 coprocessor instruction which requires a general coprocessor
1612 delay and then reading the condition codes 2) reading the HI
1613 or LO register and then writing to it (except on processors
1614 which have interlocks). If we are not already emitting a NOP
1615 instruction, we must check for these cases compared to the
1616 instruction previous to the previous instruction. */
1617 if ((! mips_opts.mips16
1618 && mips_opts.isa < 4
1619 && (prev_prev_insn.insn_mo->pinfo & INSN_COPROC_MOVE_DELAY)
1620 && (prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE)
1621 && (pinfo & INSN_READ_COND_CODE)
1622 && ! cop_interlocks)
1623 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_LO)
1624 && (pinfo & INSN_WRITE_LO)
1625 && ! hilo_interlocks)
1626 || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
1627 && (pinfo & INSN_WRITE_HI)
1628 && ! hilo_interlocks))
1629 prev_prev_nop = 1;
1630 else
1631 prev_prev_nop = 0;
1632
1633 if (prev_prev_insn_unreordered)
1634 prev_prev_nop = 0;
1635
1636 if (prev_prev_nop && nops == 0)
1637 ++nops;
1638
1639 /* If we are being given a nop instruction, don't bother with
1640 one of the nops we would otherwise output. This will only
1641 happen when a nop instruction is used with mips_optimize set
1642 to 0. */
1643 if (nops > 0
1644 && ! mips_opts.noreorder
1645 && ip->insn_opcode == (mips_opts.mips16 ? 0x6500 : 0))
1646 --nops;
1647
1648 /* Now emit the right number of NOP instructions. */
1649 if (nops > 0 && ! mips_opts.noreorder)
1650 {
1651 fragS *old_frag;
1652 unsigned long old_frag_offset;
1653 int i;
1654 struct insn_label_list *l;
1655
1656 old_frag = frag_now;
1657 old_frag_offset = frag_now_fix ();
1658
1659 for (i = 0; i < nops; i++)
1660 emit_nop ();
1661
1662 if (listing)
1663 {
1664 listing_prev_line ();
1665 /* We may be at the start of a variant frag. In case we
1666 are, make sure there is enough space for the frag
1667 after the frags created by listing_prev_line. The
1668 argument to frag_grow here must be at least as large
1669 as the argument to all other calls to frag_grow in
1670 this file. We don't have to worry about being in the
1671 middle of a variant frag, because the variants insert
1672 all needed nop instructions themselves. */
1673 frag_grow (40);
1674 }
1675
1676 for (l = insn_labels; l != NULL; l = l->next)
1677 {
1678 assert (S_GET_SEGMENT (l->label) == now_seg);
1679 l->label->sy_frag = frag_now;
1680 S_SET_VALUE (l->label, (valueT) frag_now_fix ());
1681 /* mips16 text labels are stored as odd. */
1682 if (mips_opts.mips16)
1683 ++l->label->sy_value.X_add_number;
1684 }
1685
1686 #ifndef NO_ECOFF_DEBUGGING
1687 if (ECOFF_DEBUGGING)
1688 ecoff_fix_loc (old_frag, old_frag_offset);
1689 #endif
1690 }
1691 else if (prev_nop_frag != NULL)
1692 {
1693 /* We have a frag holding nops we may be able to remove. If
1694 we don't need any nops, we can decrease the size of
1695 prev_nop_frag by the size of one instruction. If we do
1696 need some nops, we count them in prev_nops_required. */
1697 if (prev_nop_frag_since == 0)
1698 {
1699 if (nops == 0)
1700 {
1701 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1702 --prev_nop_frag_holds;
1703 }
1704 else
1705 prev_nop_frag_required += nops;
1706 }
1707 else
1708 {
1709 if (prev_prev_nop == 0)
1710 {
1711 prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4;
1712 --prev_nop_frag_holds;
1713 }
1714 else
1715 ++prev_nop_frag_required;
1716 }
1717
1718 if (prev_nop_frag_holds <= prev_nop_frag_required)
1719 prev_nop_frag = NULL;
1720
1721 ++prev_nop_frag_since;
1722
1723 /* Sanity check: by the time we reach the second instruction
1724 after prev_nop_frag, we should have used up all the nops
1725 one way or another. */
1726 assert (prev_nop_frag_since <= 1 || prev_nop_frag == NULL);
1727 }
1728 }
1729
1730 if (reloc_type > BFD_RELOC_UNUSED)
1731 {
1732 /* We need to set up a variant frag. */
1733 assert (mips_opts.mips16 && address_expr != NULL);
1734 f = frag_var (rs_machine_dependent, 4, 0,
1735 RELAX_MIPS16_ENCODE (reloc_type - BFD_RELOC_UNUSED,
1736 mips16_small, mips16_ext,
1737 (prev_pinfo
1738 & INSN_UNCOND_BRANCH_DELAY),
1739 (prev_insn_reloc_type
1740 == BFD_RELOC_MIPS16_JMP)),
1741 make_expr_symbol (address_expr), (offsetT) 0,
1742 (char *) NULL);
1743 }
1744 else if (place != NULL)
1745 f = place;
1746 else if (mips_opts.mips16
1747 && ! ip->use_extend
1748 && reloc_type != BFD_RELOC_MIPS16_JMP)
1749 {
1750 /* Make sure there is enough room to swap this instruction with
1751 a following jump instruction. */
1752 frag_grow (6);
1753 f = frag_more (2);
1754 }
1755 else
1756 {
1757 if (mips_opts.mips16
1758 && mips_opts.noreorder
1759 && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0)
1760 as_warn ("extended instruction in delay slot");
1761
1762 f = frag_more (4);
1763 }
1764
1765 fixp = NULL;
1766 if (address_expr != NULL && reloc_type < BFD_RELOC_UNUSED)
1767 {
1768 if (address_expr->X_op == O_constant)
1769 {
1770 switch (reloc_type)
1771 {
1772 case BFD_RELOC_32:
1773 ip->insn_opcode |= address_expr->X_add_number;
1774 break;
1775
1776 case BFD_RELOC_LO16:
1777 ip->insn_opcode |= address_expr->X_add_number & 0xffff;
1778 break;
1779
1780 case BFD_RELOC_MIPS_JMP:
1781 if ((address_expr->X_add_number & 3) != 0)
1782 as_bad ("jump to misaligned address (0x%lx)",
1783 (unsigned long) address_expr->X_add_number);
1784 ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff;
1785 break;
1786
1787 case BFD_RELOC_MIPS16_JMP:
1788 if ((address_expr->X_add_number & 3) != 0)
1789 as_bad ("jump to misaligned address (0x%lx)",
1790 (unsigned long) address_expr->X_add_number);
1791 ip->insn_opcode |=
1792 (((address_expr->X_add_number & 0x7c0000) << 3)
1793 | ((address_expr->X_add_number & 0xf800000) >> 7)
1794 | ((address_expr->X_add_number & 0x3fffc) >> 2));
1795 break;
1796
1797 /* start-sanitize-r5900 */
1798 case BFD_RELOC_MIPS15_S3:
1799 ip->insn_opcode |= ((imm_expr.X_add_number & 0x7fff) >> 3) << 6;
1800 break;
1801 /* end-sanitize-r5900 */
1802
1803 case BFD_RELOC_16_PCREL_S2:
1804 goto need_reloc;
1805
1806 default:
1807 internalError ();
1808 }
1809 }
1810 else
1811 {
1812 need_reloc:
1813 /* Don't generate a reloc if we are writing into a variant
1814 frag. */
1815 if (place == NULL)
1816 {
1817 fixp = fix_new_exp (frag_now, f - frag_now->fr_literal, 4,
1818 address_expr,
1819 reloc_type == BFD_RELOC_16_PCREL_S2,
1820 reloc_type);
1821 if (unmatched_hi)
1822 {
1823 struct mips_hi_fixup *hi_fixup;
1824
1825 assert (reloc_type == BFD_RELOC_HI16_S);
1826 hi_fixup = ((struct mips_hi_fixup *)
1827 xmalloc (sizeof (struct mips_hi_fixup)));
1828 hi_fixup->fixp = fixp;
1829 hi_fixup->seg = now_seg;
1830 hi_fixup->next = mips_hi_fixup_list;
1831 mips_hi_fixup_list = hi_fixup;
1832 }
1833 }
1834 }
1835 }
1836
1837 if (! mips_opts.mips16)
1838 md_number_to_chars (f, ip->insn_opcode, 4);
1839 else if (reloc_type == BFD_RELOC_MIPS16_JMP)
1840 {
1841 md_number_to_chars (f, ip->insn_opcode >> 16, 2);
1842 md_number_to_chars (f + 2, ip->insn_opcode & 0xffff, 2);
1843 }
1844 else
1845 {
1846 if (ip->use_extend)
1847 {
1848 md_number_to_chars (f, 0xf000 | ip->extend, 2);
1849 f += 2;
1850 }
1851 md_number_to_chars (f, ip->insn_opcode, 2);
1852 }
1853
1854 /* Update the register mask information. */
1855 if (! mips_opts.mips16)
1856 {
1857 if (pinfo & INSN_WRITE_GPR_D)
1858 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD);
1859 if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0)
1860 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT);
1861 if (pinfo & INSN_READ_GPR_S)
1862 mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS);
1863 if (pinfo & INSN_WRITE_GPR_31)
1864 mips_gprmask |= 1 << 31;
1865 if (pinfo & INSN_WRITE_FPR_D)
1866 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FD) & OP_MASK_FD);
1867 if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0)
1868 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS);
1869 if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0)
1870 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT);
1871 if ((pinfo & INSN_READ_FPR_R) != 0)
1872 mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FR) & OP_MASK_FR);
1873 if (pinfo & INSN_COP)
1874 {
1875 /* We don't keep enough information to sort these cases out.
1876 The itbl support does keep this information however, although
1877 we currently don't support itbl fprmats as part of the cop
1878 instruction. May want to add this support in the future. */
1879 }
1880 /* Never set the bit for $0, which is always zero. */
1881 mips_gprmask &=~ 1 << 0;
1882 }
1883 else
1884 {
1885 if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X))
1886 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RX)
1887 & MIPS16OP_MASK_RX);
1888 if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y))
1889 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RY)
1890 & MIPS16OP_MASK_RY);
1891 if (pinfo & MIPS16_INSN_WRITE_Z)
1892 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RZ)
1893 & MIPS16OP_MASK_RZ);
1894 if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T))
1895 mips_gprmask |= 1 << TREG;
1896 if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP))
1897 mips_gprmask |= 1 << SP;
1898 if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31))
1899 mips_gprmask |= 1 << RA;
1900 if (pinfo & MIPS16_INSN_WRITE_GPR_Y)
1901 mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode);
1902 if (pinfo & MIPS16_INSN_READ_Z)
1903 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z)
1904 & MIPS16OP_MASK_MOVE32Z);
1905 if (pinfo & MIPS16_INSN_READ_GPR_X)
1906 mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_REGR32)
1907 & MIPS16OP_MASK_REGR32);
1908 }
1909
1910 if (place == NULL && ! mips_opts.noreorder)
1911 {
1912 /* Filling the branch delay slot is more complex. We try to
1913 switch the branch with the previous instruction, which we can
1914 do if the previous instruction does not set up a condition
1915 that the branch tests and if the branch is not itself the
1916 target of any branch. */
1917 if ((pinfo & INSN_UNCOND_BRANCH_DELAY)
1918 || (pinfo & INSN_COND_BRANCH_DELAY))
1919 {
1920 if (mips_optimize < 2
1921 /* If we have seen .set volatile or .set nomove, don't
1922 optimize. */
1923 || mips_opts.nomove != 0
1924 /* If we had to emit any NOP instructions, then we
1925 already know we can not swap. */
1926 || nops != 0
1927 /* If we don't even know the previous insn, we can not
1928 swap. */
1929 || ! prev_insn_valid
1930 /* If the previous insn is already in a branch delay
1931 slot, then we can not swap. */
1932 || prev_insn_is_delay_slot
1933 /* If the previous previous insn was in a .set
1934 noreorder, we can't swap. Actually, the MIPS
1935 assembler will swap in this situation. However, gcc
1936 configured -with-gnu-as will generate code like
1937 .set noreorder
1938 lw $4,XXX
1939 .set reorder
1940 INSN
1941 bne $4,$0,foo
1942 in which we can not swap the bne and INSN. If gcc is
1943 not configured -with-gnu-as, it does not output the
1944 .set pseudo-ops. We don't have to check
1945 prev_insn_unreordered, because prev_insn_valid will
1946 be 0 in that case. We don't want to use
1947 prev_prev_insn_valid, because we do want to be able
1948 to swap at the start of a function. */
1949 || prev_prev_insn_unreordered
1950 /* If the branch is itself the target of a branch, we
1951 can not swap. We cheat on this; all we check for is
1952 whether there is a label on this instruction. If
1953 there are any branches to anything other than a
1954 label, users must use .set noreorder. */
1955 || insn_labels != NULL
1956 /* If the previous instruction is in a variant frag, we
1957 can not do the swap. This does not apply to the
1958 mips16, which uses variant frags for different
1959 purposes. */
1960 || (! mips_opts.mips16
1961 && prev_insn_frag->fr_type == rs_machine_dependent)
1962 /* If the branch reads the condition codes, we don't
1963 even try to swap, because in the sequence
1964 ctc1 $X,$31
1965 INSN
1966 INSN
1967 bc1t LABEL
1968 we can not swap, and I don't feel like handling that
1969 case. */
1970 || (! mips_opts.mips16
1971 && mips_opts.isa < 4
1972 && (pinfo & INSN_READ_COND_CODE))
1973 /* We can not swap with an instruction that requires a
1974 delay slot, becase the target of the branch might
1975 interfere with that instruction. */
1976 || (! mips_opts.mips16
1977 && mips_opts.isa < 4
1978 && (prev_pinfo
1979 /* Itbl support may require additional care here. */
1980 & (INSN_LOAD_COPROC_DELAY
1981 | INSN_COPROC_MOVE_DELAY
1982 | INSN_WRITE_COND_CODE)))
1983 || (! hilo_interlocks
1984 && (prev_pinfo
1985 & (INSN_READ_LO
1986 | INSN_READ_HI)))
1987 || (! mips_opts.mips16
1988 && ! gpr_interlocks
1989 && (prev_pinfo & INSN_LOAD_MEMORY_DELAY))
1990 || (! mips_opts.mips16
1991 && mips_opts.isa < 2
1992 /* Itbl support may require additional care here. */
1993 && (prev_pinfo & INSN_COPROC_MEMORY_DELAY))
1994 /* We can not swap with a branch instruction. */
1995 || (prev_pinfo
1996 & (INSN_UNCOND_BRANCH_DELAY
1997 | INSN_COND_BRANCH_DELAY
1998 | INSN_COND_BRANCH_LIKELY))
1999 /* We do not swap with a trap instruction, since it
2000 complicates trap handlers to have the trap
2001 instruction be in a delay slot. */
2002 || (prev_pinfo & INSN_TRAP)
2003 /* If the branch reads a register that the previous
2004 instruction sets, we can not swap. */
2005 || (! mips_opts.mips16
2006 && (prev_pinfo & INSN_WRITE_GPR_T)
2007 && insn_uses_reg (ip,
2008 ((prev_insn.insn_opcode >> OP_SH_RT)
2009 & OP_MASK_RT),
2010 MIPS_GR_REG))
2011 || (! mips_opts.mips16
2012 && (prev_pinfo & INSN_WRITE_GPR_D)
2013 && insn_uses_reg (ip,
2014 ((prev_insn.insn_opcode >> OP_SH_RD)
2015 & OP_MASK_RD),
2016 MIPS_GR_REG))
2017 || (mips_opts.mips16
2018 && (((prev_pinfo & MIPS16_INSN_WRITE_X)
2019 && insn_uses_reg (ip,
2020 ((prev_insn.insn_opcode
2021 >> MIPS16OP_SH_RX)
2022 & MIPS16OP_MASK_RX),
2023 MIPS16_REG))
2024 || ((prev_pinfo & MIPS16_INSN_WRITE_Y)
2025 && insn_uses_reg (ip,
2026 ((prev_insn.insn_opcode
2027 >> MIPS16OP_SH_RY)
2028 & MIPS16OP_MASK_RY),
2029 MIPS16_REG))
2030 || ((prev_pinfo & MIPS16_INSN_WRITE_Z)
2031 && insn_uses_reg (ip,
2032 ((prev_insn.insn_opcode
2033 >> MIPS16OP_SH_RZ)
2034 & MIPS16OP_MASK_RZ),
2035 MIPS16_REG))
2036 || ((prev_pinfo & MIPS16_INSN_WRITE_T)
2037 && insn_uses_reg (ip, TREG, MIPS_GR_REG))
2038 || ((prev_pinfo & MIPS16_INSN_WRITE_31)
2039 && insn_uses_reg (ip, RA, MIPS_GR_REG))
2040 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2041 && insn_uses_reg (ip,
2042 MIPS16OP_EXTRACT_REG32R (prev_insn.
2043 insn_opcode),
2044 MIPS_GR_REG))))
2045 /* If the branch writes a register that the previous
2046 instruction sets, we can not swap (we know that
2047 branches write only to RD or to $31). */
2048 || (! mips_opts.mips16
2049 && (prev_pinfo & INSN_WRITE_GPR_T)
2050 && (((pinfo & INSN_WRITE_GPR_D)
2051 && (((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT)
2052 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2053 || ((pinfo & INSN_WRITE_GPR_31)
2054 && (((prev_insn.insn_opcode >> OP_SH_RT)
2055 & OP_MASK_RT)
2056 == 31))))
2057 || (! mips_opts.mips16
2058 && (prev_pinfo & INSN_WRITE_GPR_D)
2059 && (((pinfo & INSN_WRITE_GPR_D)
2060 && (((prev_insn.insn_opcode >> OP_SH_RD) & OP_MASK_RD)
2061 == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD)))
2062 || ((pinfo & INSN_WRITE_GPR_31)
2063 && (((prev_insn.insn_opcode >> OP_SH_RD)
2064 & OP_MASK_RD)
2065 == 31))))
2066 || (mips_opts.mips16
2067 && (pinfo & MIPS16_INSN_WRITE_31)
2068 && ((prev_pinfo & MIPS16_INSN_WRITE_31)
2069 || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y)
2070 && (MIPS16OP_EXTRACT_REG32R (prev_insn.insn_opcode)
2071 == RA))))
2072 /* If the branch writes a register that the previous
2073 instruction reads, we can not swap (we know that
2074 branches only write to RD or to $31). */
2075 || (! mips_opts.mips16
2076 && (pinfo & INSN_WRITE_GPR_D)
2077 && insn_uses_reg (&prev_insn,
2078 ((ip->insn_opcode >> OP_SH_RD)
2079 & OP_MASK_RD),
2080 MIPS_GR_REG))
2081 || (! mips_opts.mips16
2082 && (pinfo & INSN_WRITE_GPR_31)
2083 && insn_uses_reg (&prev_insn, 31, MIPS_GR_REG))
2084 || (mips_opts.mips16
2085 && (pinfo & MIPS16_INSN_WRITE_31)
2086 && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG))
2087 /* If we are generating embedded PIC code, the branch
2088 might be expanded into a sequence which uses $at, so
2089 we can't swap with an instruction which reads it. */
2090 || (mips_pic == EMBEDDED_PIC
2091 && insn_uses_reg (&prev_insn, AT, MIPS_GR_REG))
2092 /* If the previous previous instruction has a load
2093 delay, and sets a register that the branch reads, we
2094 can not swap. */
2095 || (! mips_opts.mips16
2096 && mips_opts.isa < 4
2097 /* Itbl support may require additional care here. */
2098 && ((prev_prev_insn.insn_mo->pinfo & INSN_LOAD_COPROC_DELAY)
2099 || (! gpr_interlocks
2100 && (prev_prev_insn.insn_mo->pinfo
2101 & INSN_LOAD_MEMORY_DELAY)))
2102 && insn_uses_reg (ip,
2103 ((prev_prev_insn.insn_opcode >> OP_SH_RT)
2104 & OP_MASK_RT),
2105 MIPS_GR_REG))
2106 /* If one instruction sets a condition code and the
2107 other one uses a condition code, we can not swap. */
2108 || ((pinfo & INSN_READ_COND_CODE)
2109 && (prev_pinfo & INSN_WRITE_COND_CODE))
2110 || ((pinfo & INSN_WRITE_COND_CODE)
2111 && (prev_pinfo & INSN_READ_COND_CODE))
2112 /* If the previous instruction uses the PC, we can not
2113 swap. */
2114 || (mips_opts.mips16
2115 && (prev_pinfo & MIPS16_INSN_READ_PC))
2116 /* If the previous instruction was extended, we can not
2117 swap. */
2118 || (mips_opts.mips16 && prev_insn_extended)
2119 /* If the previous instruction had a fixup in mips16
2120 mode, we can not swap. This normally means that the
2121 previous instruction was a 4 byte branch anyhow. */
2122 || (mips_opts.mips16 && prev_insn_fixp))
2123 {
2124 /* We could do even better for unconditional branches to
2125 portions of this object file; we could pick up the
2126 instruction at the destination, put it in the delay
2127 slot, and bump the destination address. */
2128 emit_nop ();
2129 /* Update the previous insn information. */
2130 prev_prev_insn = *ip;
2131 prev_insn.insn_mo = &dummy_opcode;
2132 }
2133 else
2134 {
2135 /* It looks like we can actually do the swap. */
2136 if (! mips_opts.mips16)
2137 {
2138 char *prev_f;
2139 char temp[4];
2140
2141 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2142 memcpy (temp, prev_f, 4);
2143 memcpy (prev_f, f, 4);
2144 memcpy (f, temp, 4);
2145 if (prev_insn_fixp)
2146 {
2147 prev_insn_fixp->fx_frag = frag_now;
2148 prev_insn_fixp->fx_where = f - frag_now->fr_literal;
2149 }
2150 if (fixp)
2151 {
2152 fixp->fx_frag = prev_insn_frag;
2153 fixp->fx_where = prev_insn_where;
2154 }
2155 }
2156 else
2157 {
2158 char *prev_f;
2159 char temp[2];
2160
2161 assert (prev_insn_fixp == NULL);
2162 prev_f = prev_insn_frag->fr_literal + prev_insn_where;
2163 memcpy (temp, prev_f, 2);
2164 memcpy (prev_f, f, 2);
2165 if (reloc_type != BFD_RELOC_MIPS16_JMP)
2166 {
2167 assert (reloc_type == BFD_RELOC_UNUSED);
2168 memcpy (f, temp, 2);
2169 }
2170 else
2171 {
2172 memcpy (f, f + 2, 2);
2173 memcpy (f + 2, temp, 2);
2174 }
2175 if (fixp)
2176 {
2177 fixp->fx_frag = prev_insn_frag;
2178 fixp->fx_where = prev_insn_where;
2179 }
2180 }
2181
2182 /* Update the previous insn information; leave prev_insn
2183 unchanged. */
2184 prev_prev_insn = *ip;
2185 }
2186 prev_insn_is_delay_slot = 1;
2187
2188 /* If that was an unconditional branch, forget the previous
2189 insn information. */
2190 if (pinfo & INSN_UNCOND_BRANCH_DELAY)
2191 {
2192 prev_prev_insn.insn_mo = &dummy_opcode;
2193 prev_insn.insn_mo = &dummy_opcode;
2194 }
2195
2196 prev_insn_fixp = NULL;
2197 prev_insn_reloc_type = BFD_RELOC_UNUSED;
2198 prev_insn_extended = 0;
2199 }
2200 else if (pinfo & INSN_COND_BRANCH_LIKELY)
2201 {
2202 /* We don't yet optimize a branch likely. What we should do
2203 is look at the target, copy the instruction found there
2204 into the delay slot, and increment the branch to jump to
2205 the next instruction. */
2206 emit_nop ();
2207 /* Update the previous insn information. */
2208 prev_prev_insn = *ip;
2209 prev_insn.insn_mo = &dummy_opcode;
2210 prev_insn_fixp = NULL;
2211 prev_insn_reloc_type = BFD_RELOC_UNUSED;
2212 prev_insn_extended = 0;
2213 }
2214 else
2215 {
2216 /* Update the previous insn information. */
2217 if (nops > 0)
2218 prev_prev_insn.insn_mo = &dummy_opcode;
2219 else
2220 prev_prev_insn = prev_insn;
2221 prev_insn = *ip;
2222
2223 /* Any time we see a branch, we always fill the delay slot
2224 immediately; since this insn is not a branch, we know it
2225 is not in a delay slot. */
2226 prev_insn_is_delay_slot = 0;
2227
2228 prev_insn_fixp = fixp;
2229 prev_insn_reloc_type = reloc_type;
2230 if (mips_opts.mips16)
2231 prev_insn_extended = (ip->use_extend
2232 || reloc_type > BFD_RELOC_UNUSED);
2233 }
2234
2235 prev_prev_insn_unreordered = prev_insn_unreordered;
2236 prev_insn_unreordered = 0;
2237 prev_insn_frag = frag_now;
2238 prev_insn_where = f - frag_now->fr_literal;
2239 prev_insn_valid = 1;
2240 }
2241 else if (place == NULL)
2242 {
2243 /* We need to record a bit of information even when we are not
2244 reordering, in order to determine the base address for mips16
2245 PC relative relocs. */
2246 prev_prev_insn = prev_insn;
2247 prev_insn = *ip;
2248 prev_insn_reloc_type = reloc_type;
2249 prev_prev_insn_unreordered = prev_insn_unreordered;
2250 prev_insn_unreordered = 1;
2251 }
2252
2253 /* We just output an insn, so the next one doesn't have a label. */
2254 mips_clear_insn_labels ();
2255
2256 /* We must ensure that a fixup associated with an unmatched %hi
2257 reloc does not become a variant frag. Otherwise, the
2258 rearrangement of %hi relocs in frob_file may confuse
2259 tc_gen_reloc. */
2260 if (unmatched_hi)
2261 {
2262 frag_wane (frag_now);
2263 frag_new (0);
2264 }
2265 }
2266
2267 /* This function forgets that there was any previous instruction or
2268 label. If PRESERVE is non-zero, it remembers enough information to
2269 know whether nops are needed before a noreorder section. */
2270
2271 static void
2272 mips_no_prev_insn (preserve)
2273 int preserve;
2274 {
2275 if (! preserve)
2276 {
2277 prev_insn.insn_mo = &dummy_opcode;
2278 prev_prev_insn.insn_mo = &dummy_opcode;
2279 prev_nop_frag = NULL;
2280 prev_nop_frag_holds = 0;
2281 prev_nop_frag_required = 0;
2282 prev_nop_frag_since = 0;
2283 }
2284 prev_insn_valid = 0;
2285 prev_insn_is_delay_slot = 0;
2286 prev_insn_unreordered = 0;
2287 prev_insn_extended = 0;
2288 prev_insn_reloc_type = BFD_RELOC_UNUSED;
2289 prev_prev_insn_unreordered = 0;
2290 mips_clear_insn_labels ();
2291 }
2292
2293 /* This function must be called whenever we turn on noreorder or emit
2294 something other than instructions. It inserts any NOPS which might
2295 be needed by the previous instruction, and clears the information
2296 kept for the previous instructions. The INSNS parameter is true if
2297 instructions are to follow. */
2298
2299 static void
2300 mips_emit_delays (insns)
2301 boolean insns;
2302 {
2303 if (! mips_opts.noreorder)
2304 {
2305 int nops;
2306
2307 nops = 0;
2308 if ((! mips_opts.mips16
2309 && mips_opts.isa < 4
2310 && (! cop_interlocks
2311 && (prev_insn.insn_mo->pinfo
2312 & (INSN_LOAD_COPROC_DELAY
2313 | INSN_COPROC_MOVE_DELAY
2314 | INSN_WRITE_COND_CODE))))
2315 || (! hilo_interlocks
2316 && (prev_insn.insn_mo->pinfo
2317 & (INSN_READ_LO
2318 | INSN_READ_HI)))
2319 || (! mips_opts.mips16
2320 && ! gpr_interlocks
2321 && (prev_insn.insn_mo->pinfo
2322 & INSN_LOAD_MEMORY_DELAY))
2323 || (! mips_opts.mips16
2324 && mips_opts.isa < 2
2325 && (prev_insn.insn_mo->pinfo
2326 & INSN_COPROC_MEMORY_DELAY)))
2327 {
2328 /* Itbl support may require additional care here. */
2329 ++nops;
2330 if ((! mips_opts.mips16
2331 && mips_opts.isa < 4
2332 && (! cop_interlocks
2333 && prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE))
2334 || (! hilo_interlocks
2335 && ((prev_insn.insn_mo->pinfo & INSN_READ_HI)
2336 || (prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2337 ++nops;
2338
2339 if (prev_insn_unreordered)
2340 nops = 0;
2341 }
2342 else if ((! mips_opts.mips16
2343 && mips_opts.isa < 4
2344 && (! cop_interlocks
2345 && prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE))
2346 || (! hilo_interlocks
2347 && ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI)
2348 || (prev_prev_insn.insn_mo->pinfo & INSN_READ_LO))))
2349 {
2350 /* Itbl support may require additional care here. */
2351 if (! prev_prev_insn_unreordered)
2352 ++nops;
2353 }
2354
2355 if (nops > 0)
2356 {
2357 struct insn_label_list *l;
2358
2359 if (insns)
2360 {
2361 /* Record the frag which holds the nop instructions, so
2362 that we can remove them if we don't need them. */
2363 frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4);
2364 prev_nop_frag = frag_now;
2365 prev_nop_frag_holds = nops;
2366 prev_nop_frag_required = 0;
2367 prev_nop_frag_since = 0;
2368 }
2369
2370 for (; nops > 0; --nops)
2371 emit_nop ();
2372
2373 if (insns)
2374 {
2375 /* Move on to a new frag, so that it is safe to simply
2376 decrease the size of prev_nop_frag. */
2377 frag_wane (frag_now);
2378 frag_new (0);
2379 }
2380
2381 for (l = insn_labels; l != NULL; l = l->next)
2382 {
2383 assert (S_GET_SEGMENT (l->label) == now_seg);
2384 l->label->sy_frag = frag_now;
2385 S_SET_VALUE (l->label, (valueT) frag_now_fix ());
2386 /* mips16 text labels are stored as odd. */
2387 if (mips_opts.mips16)
2388 ++l->label->sy_value.X_add_number;
2389 }
2390 }
2391 }
2392
2393 /* Mark instruction labels in mips16 mode. */
2394 if (mips_opts.mips16 && insns)
2395 mips16_mark_labels ();
2396
2397 mips_no_prev_insn (insns);
2398 }
2399
2400 /* Build an instruction created by a macro expansion. This is passed
2401 a pointer to the count of instructions created so far, an
2402 expression, the name of the instruction to build, an operand format
2403 string, and corresponding arguments. */
2404
2405 #ifdef USE_STDARG
2406 static void
2407 macro_build (char *place,
2408 int *counter,
2409 expressionS * ep,
2410 const char *name,
2411 const char *fmt,
2412 ...)
2413 #else
2414 static void
2415 macro_build (place, counter, ep, name, fmt, va_alist)
2416 char *place;
2417 int *counter;
2418 expressionS *ep;
2419 const char *name;
2420 const char *fmt;
2421 va_dcl
2422 #endif
2423 {
2424 struct mips_cl_insn insn;
2425 bfd_reloc_code_real_type r;
2426 va_list args;
2427 int insn_isa;
2428
2429 #ifdef USE_STDARG
2430 va_start (args, fmt);
2431 #else
2432 va_start (args);
2433 #endif
2434
2435 /*
2436 * If the macro is about to expand into a second instruction,
2437 * print a warning if needed. We need to pass ip as a parameter
2438 * to generate a better warning message here...
2439 */
2440 if (mips_opts.warn_about_macros && place == NULL && *counter == 1)
2441 as_warn ("Macro instruction expanded into multiple instructions");
2442
2443 if (place == NULL)
2444 *counter += 1; /* bump instruction counter */
2445
2446 if (mips_opts.mips16)
2447 {
2448 mips16_macro_build (place, counter, ep, name, fmt, args);
2449 va_end (args);
2450 return;
2451 }
2452
2453 r = BFD_RELOC_UNUSED;
2454 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
2455 assert (insn.insn_mo);
2456 assert (strcmp (name, insn.insn_mo->name) == 0);
2457
2458 /* Search until we get a match for NAME. */
2459 while (1)
2460 {
2461 if ((insn.insn_mo->membership & INSN_ISA) == INSN_ISA1)
2462 insn_isa = 1;
2463 else if ((insn.insn_mo->membership & INSN_ISA) == INSN_ISA2)
2464 insn_isa = 2;
2465 else if ((insn.insn_mo->membership & INSN_ISA) == INSN_ISA3)
2466 insn_isa = 3;
2467 else if ((insn.insn_mo->membership & INSN_ISA) == INSN_ISA4)
2468 insn_isa = 4;
2469 else
2470 insn_isa = 15;
2471
2472 if (strcmp (fmt, insn.insn_mo->args) == 0
2473 && insn.insn_mo->pinfo != INSN_MACRO
2474 && (insn_isa <= mips_opts.isa
2475 || (mips_4650
2476 && (insn.insn_mo->membership & INSN_4650) != 0)
2477 || (mips_4010
2478 && (insn.insn_mo->membership & INSN_4010) != 0)
2479 || (mips_4100
2480 && (insn.insn_mo->membership & INSN_4100) != 0)
2481 /* start-sanitize-vr4320 */
2482 || (mips_4320
2483 && (insn.insn_mo->membership & INSN_4320) != 0)
2484 /* end-sanitize-vr4320 */
2485 /* start-sanitize-tx49 */
2486 || (mips_4900
2487 && (insn.insn_mo->membership & INSN_4900) != 0)
2488 /* end-sanitize-tx49 */
2489 /* start-sanitize-r5900 */
2490 || (mips_5900
2491 && (insn.insn_mo->membership & INSN_5900) != 0)
2492 /* end-sanitize-r5900 */
2493 /* start-sanitize-vr5400 */
2494 || (mips_5400
2495 && (insn.insn_mo->membership & INSN_5400) != 0)
2496 /* end-sanitize-vr5400 */
2497 || (mips_3900
2498 && (insn.insn_mo->membership & INSN_3900) != 0))
2499 /* start-sanitize-r5900 */
2500 && (! mips_5900 || (insn.insn_mo->pinfo & FP_D) == 0)
2501 /* end-sanitize-r5900 */
2502 && (! mips_4650 || (insn.insn_mo->pinfo & FP_D) == 0))
2503 break;
2504
2505 ++insn.insn_mo;
2506 assert (insn.insn_mo->name);
2507 assert (strcmp (name, insn.insn_mo->name) == 0);
2508 }
2509
2510 insn.insn_opcode = insn.insn_mo->match;
2511 for (;;)
2512 {
2513 switch (*fmt++)
2514 {
2515 case '\0':
2516 break;
2517
2518 case ',':
2519 case '(':
2520 case ')':
2521 continue;
2522
2523 case 't':
2524 case 'w':
2525 case 'E':
2526 insn.insn_opcode |= va_arg (args, int) << 16;
2527 continue;
2528
2529 case 'c':
2530 case 'T':
2531 case 'W':
2532 insn.insn_opcode |= va_arg (args, int) << 16;
2533 continue;
2534
2535 case 'd':
2536 case 'G':
2537 insn.insn_opcode |= va_arg (args, int) << 11;
2538 continue;
2539
2540 case 'V':
2541 case 'S':
2542 insn.insn_opcode |= va_arg (args, int) << 11;
2543 continue;
2544
2545 case 'z':
2546 continue;
2547
2548 case '<':
2549 insn.insn_opcode |= va_arg (args, int) << 6;
2550 continue;
2551
2552 case 'D':
2553 insn.insn_opcode |= va_arg (args, int) << 6;
2554 continue;
2555
2556 case 'B':
2557 insn.insn_opcode |= va_arg (args, int) << 6;
2558 continue;
2559
2560 case 'b':
2561 case 's':
2562 case 'r':
2563 case 'v':
2564 insn.insn_opcode |= va_arg (args, int) << 21;
2565 continue;
2566
2567 case 'i':
2568 case 'j':
2569 case 'o':
2570 r = (bfd_reloc_code_real_type) va_arg (args, int);
2571 assert (r == BFD_RELOC_MIPS_GPREL
2572 || r == BFD_RELOC_MIPS_LITERAL
2573 || r == BFD_RELOC_LO16
2574 || r == BFD_RELOC_MIPS_GOT16
2575 || r == BFD_RELOC_MIPS_CALL16
2576 || r == BFD_RELOC_MIPS_GOT_LO16
2577 || r == BFD_RELOC_MIPS_CALL_LO16
2578 || (ep->X_op == O_subtract
2579 && now_seg == text_section
2580 && r == BFD_RELOC_PCREL_LO16));
2581 continue;
2582
2583 case 'u':
2584 r = (bfd_reloc_code_real_type) va_arg (args, int);
2585 assert (ep != NULL
2586 && (ep->X_op == O_constant
2587 || (ep->X_op == O_symbol
2588 && (r == BFD_RELOC_HI16_S
2589 || r == BFD_RELOC_HI16
2590 || r == BFD_RELOC_MIPS_GOT_HI16
2591 || r == BFD_RELOC_MIPS_CALL_HI16))
2592 || (ep->X_op == O_subtract
2593 && now_seg == text_section
2594 && r == BFD_RELOC_PCREL_HI16_S)));
2595 if (ep->X_op == O_constant)
2596 {
2597 insn.insn_opcode |= (ep->X_add_number >> 16) & 0xffff;
2598 ep = NULL;
2599 r = BFD_RELOC_UNUSED;
2600 }
2601 continue;
2602
2603 case 'p':
2604 assert (ep != NULL);
2605 /*
2606 * This allows macro() to pass an immediate expression for
2607 * creating short branches without creating a symbol.
2608 * Note that the expression still might come from the assembly
2609 * input, in which case the value is not checked for range nor
2610 * is a relocation entry generated (yuck).
2611 */
2612 if (ep->X_op == O_constant)
2613 {
2614 insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff;
2615 ep = NULL;
2616 }
2617 else
2618 r = BFD_RELOC_16_PCREL_S2;
2619 continue;
2620
2621 case 'a':
2622 assert (ep != NULL);
2623 r = BFD_RELOC_MIPS_JMP;
2624 continue;
2625
2626 case 'C':
2627 insn.insn_opcode |= va_arg (args, unsigned long);
2628 continue;
2629
2630 default:
2631 internalError ();
2632 }
2633 break;
2634 }
2635 va_end (args);
2636 assert (r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
2637
2638 append_insn (place, &insn, ep, r, false);
2639 }
2640
2641 static void
2642 mips16_macro_build (place, counter, ep, name, fmt, args)
2643 char *place;
2644 int *counter;
2645 expressionS *ep;
2646 const char *name;
2647 const char *fmt;
2648 va_list args;
2649 {
2650 struct mips_cl_insn insn;
2651 bfd_reloc_code_real_type r;
2652
2653 r = BFD_RELOC_UNUSED;
2654 insn.insn_mo = (struct mips_opcode *) hash_find (mips16_op_hash, name);
2655 assert (insn.insn_mo);
2656 assert (strcmp (name, insn.insn_mo->name) == 0);
2657
2658 while (strcmp (fmt, insn.insn_mo->args) != 0
2659 || insn.insn_mo->pinfo == INSN_MACRO)
2660 {
2661 ++insn.insn_mo;
2662 assert (insn.insn_mo->name);
2663 assert (strcmp (name, insn.insn_mo->name) == 0);
2664 }
2665
2666 insn.insn_opcode = insn.insn_mo->match;
2667 insn.use_extend = false;
2668
2669 for (;;)
2670 {
2671 int c;
2672
2673 c = *fmt++;
2674 switch (c)
2675 {
2676 case '\0':
2677 break;
2678
2679 case ',':
2680 case '(':
2681 case ')':
2682 continue;
2683
2684 case 'y':
2685 case 'w':
2686 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RY;
2687 continue;
2688
2689 case 'x':
2690 case 'v':
2691 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RX;
2692 continue;
2693
2694 case 'z':
2695 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RZ;
2696 continue;
2697
2698 case 'Z':
2699 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_MOVE32Z;
2700 continue;
2701
2702 case '0':
2703 case 'S':
2704 case 'P':
2705 case 'R':
2706 continue;
2707
2708 case 'X':
2709 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_REGR32;
2710 continue;
2711
2712 case 'Y':
2713 {
2714 int regno;
2715
2716 regno = va_arg (args, int);
2717 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
2718 insn.insn_opcode |= regno << MIPS16OP_SH_REG32R;
2719 }
2720 continue;
2721
2722 case '<':
2723 case '>':
2724 case '4':
2725 case '5':
2726 case 'H':
2727 case 'W':
2728 case 'D':
2729 case 'j':
2730 case '8':
2731 case 'V':
2732 case 'C':
2733 case 'U':
2734 case 'k':
2735 case 'K':
2736 case 'p':
2737 case 'q':
2738 {
2739 assert (ep != NULL);
2740
2741 if (ep->X_op != O_constant)
2742 r = BFD_RELOC_UNUSED + c;
2743 else
2744 {
2745 mips16_immed ((char *) NULL, 0, c, ep->X_add_number, false,
2746 false, false, &insn.insn_opcode,
2747 &insn.use_extend, &insn.extend);
2748 ep = NULL;
2749 r = BFD_RELOC_UNUSED;
2750 }
2751 }
2752 continue;
2753
2754 case '6':
2755 insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_IMM6;
2756 continue;
2757 }
2758
2759 break;
2760 }
2761
2762 assert (r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL);
2763
2764 append_insn (place, &insn, ep, r, false);
2765 }
2766
2767 /*
2768 * Generate a "lui" instruction.
2769 */
2770 static void
2771 macro_build_lui (place, counter, ep, regnum)
2772 char *place;
2773 int *counter;
2774 expressionS *ep;
2775 int regnum;
2776 {
2777 expressionS high_expr;
2778 struct mips_cl_insn insn;
2779 bfd_reloc_code_real_type r;
2780 CONST char *name = "lui";
2781 CONST char *fmt = "t,u";
2782
2783 assert (! mips_opts.mips16);
2784
2785 if (place == NULL)
2786 high_expr = *ep;
2787 else
2788 {
2789 high_expr.X_op = O_constant;
2790 high_expr.X_add_number = ep->X_add_number;
2791 }
2792
2793 if (high_expr.X_op == O_constant)
2794 {
2795 /* we can compute the instruction now without a relocation entry */
2796 if (high_expr.X_add_number & 0x8000)
2797 high_expr.X_add_number += 0x10000;
2798 high_expr.X_add_number =
2799 ((unsigned long) high_expr.X_add_number >> 16) & 0xffff;
2800 r = BFD_RELOC_UNUSED;
2801 }
2802 else
2803 {
2804 assert (ep->X_op == O_symbol);
2805 /* _gp_disp is a special case, used from s_cpload. */
2806 assert (mips_pic == NO_PIC
2807 || strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0);
2808 r = BFD_RELOC_HI16_S;
2809 }
2810
2811 /*
2812 * If the macro is about to expand into a second instruction,
2813 * print a warning if needed. We need to pass ip as a parameter
2814 * to generate a better warning message here...
2815 */
2816 if (mips_opts.warn_about_macros && place == NULL && *counter == 1)
2817 as_warn ("Macro instruction expanded into multiple instructions");
2818
2819 if (place == NULL)
2820 *counter += 1; /* bump instruction counter */
2821
2822 insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name);
2823 assert (insn.insn_mo);
2824 assert (strcmp (name, insn.insn_mo->name) == 0);
2825 assert (strcmp (fmt, insn.insn_mo->args) == 0);
2826
2827 insn.insn_opcode = insn.insn_mo->match | (regnum << OP_SH_RT);
2828 if (r == BFD_RELOC_UNUSED)
2829 {
2830 insn.insn_opcode |= high_expr.X_add_number;
2831 append_insn (place, &insn, NULL, r, false);
2832 }
2833 else
2834 append_insn (place, &insn, &high_expr, r, false);
2835 }
2836
2837 /* set_at()
2838 * Generates code to set the $at register to true (one)
2839 * if reg is less than the immediate expression.
2840 */
2841 static void
2842 set_at (counter, reg, unsignedp)
2843 int *counter;
2844 int reg;
2845 int unsignedp;
2846 {
2847 if (imm_expr.X_op == O_constant
2848 && imm_expr.X_add_number >= -0x8000
2849 && imm_expr.X_add_number < 0x8000)
2850 macro_build ((char *) NULL, counter, &imm_expr,
2851 unsignedp ? "sltiu" : "slti",
2852 "t,r,j", AT, reg, (int) BFD_RELOC_LO16);
2853 else
2854 {
2855 load_register (counter, AT, &imm_expr, 0);
2856 macro_build ((char *) NULL, counter, NULL,
2857 unsignedp ? "sltu" : "slt",
2858 "d,v,t", AT, reg, AT);
2859 }
2860 }
2861
2862 /* Warn if an expression is not a constant. */
2863
2864 static void
2865 check_absolute_expr (ip, ex)
2866 struct mips_cl_insn *ip;
2867 expressionS *ex;
2868 {
2869 if (ex->X_op == O_big)
2870 as_bad ("unsupported large constant");
2871 else if (ex->X_op != O_constant)
2872 as_bad ("Instruction %s requires absolute expression", ip->insn_mo->name);
2873 }
2874
2875 /* Count the leading zeroes by performing a binary chop. This is a
2876 bulky bit of source, but performance is a LOT better for the
2877 majority of values than a simple loop to count the bits:
2878 for (lcnt = 0; (lcnt < 32); lcnt++)
2879 if ((v) & (1 << (31 - lcnt)))
2880 break;
2881 However it is not code size friendly, and the gain will drop a bit
2882 on certain cached systems.
2883 */
2884 #define COUNT_TOP_ZEROES(v) \
2885 (((v) & ~0xffff) == 0 \
2886 ? ((v) & ~0xff) == 0 \
2887 ? ((v) & ~0xf) == 0 \
2888 ? ((v) & ~0x3) == 0 \
2889 ? ((v) & ~0x1) == 0 \
2890 ? !(v) \
2891 ? 32 \
2892 : 31 \
2893 : 30 \
2894 : ((v) & ~0x7) == 0 \
2895 ? 29 \
2896 : 28 \
2897 : ((v) & ~0x3f) == 0 \
2898 ? ((v) & ~0x1f) == 0 \
2899 ? 27 \
2900 : 26 \
2901 : ((v) & ~0x7f) == 0 \
2902 ? 25 \
2903 : 24 \
2904 : ((v) & ~0xfff) == 0 \
2905 ? ((v) & ~0x3ff) == 0 \
2906 ? ((v) & ~0x1ff) == 0 \
2907 ? 23 \
2908 : 22 \
2909 : ((v) & ~0x7ff) == 0 \
2910 ? 21 \
2911 : 20 \
2912 : ((v) & ~0x3fff) == 0 \
2913 ? ((v) & ~0x1fff) == 0 \
2914 ? 19 \
2915 : 18 \
2916 : ((v) & ~0x7fff) == 0 \
2917 ? 17 \
2918 : 16 \
2919 : ((v) & ~0xffffff) == 0 \
2920 ? ((v) & ~0xfffff) == 0 \
2921 ? ((v) & ~0x3ffff) == 0 \
2922 ? ((v) & ~0x1ffff) == 0 \
2923 ? 15 \
2924 : 14 \
2925 : ((v) & ~0x7ffff) == 0 \
2926 ? 13 \
2927 : 12 \
2928 : ((v) & ~0x3fffff) == 0 \
2929 ? ((v) & ~0x1fffff) == 0 \
2930 ? 11 \
2931 : 10 \
2932 : ((v) & ~0x7fffff) == 0 \
2933 ? 9 \
2934 : 8 \
2935 : ((v) & ~0xfffffff) == 0 \
2936 ? ((v) & ~0x3ffffff) == 0 \
2937 ? ((v) & ~0x1ffffff) == 0 \
2938 ? 7 \
2939 : 6 \
2940 : ((v) & ~0x7ffffff) == 0 \
2941 ? 5 \
2942 : 4 \
2943 : ((v) & ~0x3fffffff) == 0 \
2944 ? ((v) & ~0x1fffffff) == 0 \
2945 ? 3 \
2946 : 2 \
2947 : ((v) & ~0x7fffffff) == 0 \
2948 ? 1 \
2949 : 0)
2950
2951 /* load_register()
2952 * This routine generates the least number of instructions neccessary to load
2953 * an absolute expression value into a register.
2954 */
2955 static void
2956 load_register (counter, reg, ep, dbl)
2957 int *counter;
2958 int reg;
2959 expressionS *ep;
2960 int dbl;
2961 {
2962 int freg;
2963 expressionS hi32, lo32;
2964
2965 if (ep->X_op != O_big)
2966 {
2967 assert (ep->X_op == O_constant);
2968 if (ep->X_add_number < 0x8000
2969 && (ep->X_add_number >= 0
2970 || (ep->X_add_number >= -0x8000
2971 && (! dbl
2972 || ! ep->X_unsigned
2973 || sizeof (ep->X_add_number) > 4))))
2974 {
2975 /* We can handle 16 bit signed values with an addiu to
2976 $zero. No need to ever use daddiu here, since $zero and
2977 the result are always correct in 32 bit mode. */
2978 macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
2979 (int) BFD_RELOC_LO16);
2980 return;
2981 }
2982 else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000)
2983 {
2984 /* We can handle 16 bit unsigned values with an ori to
2985 $zero. */
2986 macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, 0,
2987 (int) BFD_RELOC_LO16);
2988 return;
2989 }
2990 else if ((((ep->X_add_number &~ (offsetT) 0x7fffffff) == 0
2991 || ((ep->X_add_number &~ (offsetT) 0x7fffffff)
2992 == ~ (offsetT) 0x7fffffff))
2993 && (! dbl
2994 || ! ep->X_unsigned
2995 || sizeof (ep->X_add_number) > 4
2996 || (ep->X_add_number & 0x80000000) == 0))
2997 || ((mips_opts.isa < 3 || ! dbl)
2998 && (ep->X_add_number &~ (offsetT) 0xffffffff) == 0)
2999 || (mips_opts.isa < 3
3000 && ! dbl
3001 && ((ep->X_add_number &~ (offsetT) 0xffffffff)
3002 == ~ (offsetT) 0xffffffff)))
3003 {
3004 /* 32 bit values require an lui. */
3005 macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
3006 (int) BFD_RELOC_HI16);
3007 if ((ep->X_add_number & 0xffff) != 0)
3008 macro_build ((char *) NULL, counter, ep, "ori", "t,r,i", reg, reg,
3009 (int) BFD_RELOC_LO16);
3010 return;
3011 }
3012 }
3013
3014 /* The value is larger than 32 bits. */
3015
3016 if (mips_opts.isa < 3)
3017 {
3018 as_bad ("Number larger than 32 bits");
3019 macro_build ((char *) NULL, counter, ep, "addiu", "t,r,j", reg, 0,
3020 (int) BFD_RELOC_LO16);
3021 return;
3022 }
3023
3024 if (ep->X_op != O_big)
3025 {
3026 hi32 = *ep;
3027 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3028 hi32.X_add_number = (valueT) hi32.X_add_number >> 16;
3029 hi32.X_add_number &= 0xffffffff;
3030 lo32 = *ep;
3031 lo32.X_add_number &= 0xffffffff;
3032 }
3033 else
3034 {
3035 assert (ep->X_add_number > 2);
3036 if (ep->X_add_number == 3)
3037 generic_bignum[3] = 0;
3038 else if (ep->X_add_number > 4)
3039 as_bad ("Number larger than 64 bits");
3040 lo32.X_op = O_constant;
3041 lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16);
3042 hi32.X_op = O_constant;
3043 hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16);
3044 }
3045
3046 if (hi32.X_add_number == 0)
3047 freg = 0;
3048 else
3049 {
3050 int shift, bit;
3051 unsigned long hi, lo;
3052
3053 if (hi32.X_add_number == 0xffffffff)
3054 {
3055 if ((lo32.X_add_number & 0xffff8000) == 0xffff8000)
3056 {
3057 macro_build ((char *) NULL, counter, &lo32, "addiu", "t,r,j",
3058 reg, 0, (int) BFD_RELOC_LO16);
3059 return;
3060 }
3061 if (lo32.X_add_number & 0x80000000)
3062 {
3063 macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
3064 (int) BFD_RELOC_HI16);
3065 if (lo32.X_add_number & 0xffff)
3066 macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i",
3067 reg, reg, (int) BFD_RELOC_LO16);
3068 return;
3069 }
3070 }
3071
3072 /* Check for 16bit shifted constant. We know that hi32 is
3073 non-zero, so start the mask on the first bit of the hi32
3074 value. */
3075 shift = 17;
3076 do
3077 {
3078 unsigned long himask, lomask;
3079
3080 if (shift < 32)
3081 {
3082 himask = 0xffff >> (32 - shift);
3083 lomask = (0xffff << shift) & 0xffffffff;
3084 }
3085 else
3086 {
3087 himask = 0xffff << (shift - 32);
3088 lomask = 0;
3089 }
3090 if ((hi32.X_add_number & ~ (offsetT) himask) == 0
3091 && (lo32.X_add_number & ~ (offsetT) lomask) == 0)
3092 {
3093 expressionS tmp;
3094
3095 tmp.X_op = O_constant;
3096 if (shift < 32)
3097 tmp.X_add_number = ((hi32.X_add_number << (32 - shift))
3098 | (lo32.X_add_number >> shift));
3099 else
3100 tmp.X_add_number = hi32.X_add_number >> (shift - 32);
3101 macro_build ((char *) NULL, counter, &tmp, "ori", "t,r,i", reg, 0,
3102 (int) BFD_RELOC_LO16);
3103 macro_build ((char *) NULL, counter, NULL,
3104 (shift >= 32) ? "dsll32" : "dsll",
3105 "d,w,<", reg, reg,
3106 (shift >= 32) ? shift - 32 : shift);
3107 return;
3108 }
3109 shift++;
3110 } while (shift <= (64 - 16));
3111
3112 /* Find the bit number of the lowest one bit, and store the
3113 shifted value in hi/lo. */
3114 hi = (unsigned long) (hi32.X_add_number & 0xffffffff);
3115 lo = (unsigned long) (lo32.X_add_number & 0xffffffff);
3116 if (lo != 0)
3117 {
3118 bit = 0;
3119 while ((lo & 1) == 0)
3120 {
3121 lo >>= 1;
3122 ++bit;
3123 }
3124 lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit);
3125 hi >>= bit;
3126 }
3127 else
3128 {
3129 bit = 32;
3130 while ((hi & 1) == 0)
3131 {
3132 hi >>= 1;
3133 ++bit;
3134 }
3135 lo = hi;
3136 hi = 0;
3137 }
3138
3139 /* Optimize if the shifted value is a (power of 2) - 1. */
3140 if ((hi == 0 && ((lo + 1) & lo) == 0)
3141 || (lo == 0xffffffff && ((hi + 1) & hi) == 0))
3142 {
3143 shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number);
3144 if (shift != 0)
3145 {
3146 expressionS tmp;
3147
3148 /* This instruction will set the register to be all
3149 ones. */
3150 tmp.X_op = O_constant;
3151 tmp.X_add_number = (offsetT) -1;
3152 macro_build ((char *) NULL, counter, &tmp, "addiu", "t,r,j",
3153 reg, 0, (int) BFD_RELOC_LO16);
3154 if (bit != 0)
3155 {
3156 bit += shift;
3157 macro_build ((char *) NULL, counter, NULL,
3158 (bit >= 32) ? "dsll32" : "dsll",
3159 "d,w,<", reg, reg,
3160 (bit >= 32) ? bit - 32 : bit);
3161 }
3162 macro_build ((char *) NULL, counter, NULL,
3163 (shift >= 32) ? "dsrl32" : "dsrl",
3164 "d,w,<", reg, reg,
3165 (shift >= 32) ? shift - 32 : shift);
3166 return;
3167 }
3168 }
3169
3170 /* Sign extend hi32 before calling load_register, because we can
3171 generally get better code when we load a sign extended value. */
3172 if ((hi32.X_add_number & 0x80000000) != 0)
3173 hi32.X_add_number |= ~ (offsetT) 0xffffffff;
3174 load_register (counter, reg, &hi32, 0);
3175 freg = reg;
3176 }
3177 if ((lo32.X_add_number & 0xffff0000) == 0)
3178 {
3179 if (freg != 0)
3180 {
3181 macro_build ((char *) NULL, counter, NULL, "dsll32", "d,w,<", reg,
3182 freg, 0);
3183 freg = reg;
3184 }
3185 }
3186 else
3187 {
3188 expressionS mid16;
3189
3190 if ((freg == 0) && (lo32.X_add_number == 0xffffffff))
3191 {
3192 macro_build ((char *) NULL, counter, &lo32, "lui", "t,u", reg,
3193 (int) BFD_RELOC_HI16);
3194 macro_build ((char *) NULL, counter, NULL, "dsrl32", "d,w,<", reg,
3195 reg, 0);
3196 return;
3197 }
3198
3199 if (freg != 0)
3200 {
3201 macro_build ((char *) NULL, counter, NULL, "dsll", "d,w,<", reg,
3202 freg, 16);
3203 freg = reg;
3204 }
3205 mid16 = lo32;
3206 mid16.X_add_number >>= 16;
3207 macro_build ((char *) NULL, counter, &mid16, "ori", "t,r,i", reg,
3208 freg, (int) BFD_RELOC_LO16);
3209 macro_build ((char *) NULL, counter, NULL, "dsll", "d,w,<", reg,
3210 reg, 16);
3211 freg = reg;
3212 }
3213 if ((lo32.X_add_number & 0xffff) != 0)
3214 macro_build ((char *) NULL, counter, &lo32, "ori", "t,r,i", reg, freg,
3215 (int) BFD_RELOC_LO16);
3216 }
3217
3218 /* Load an address into a register. */
3219
3220 static void
3221 load_address (counter, reg, ep)
3222 int *counter;
3223 int reg;
3224 expressionS *ep;
3225 {
3226 char *p;
3227
3228 if (ep->X_op != O_constant
3229 && ep->X_op != O_symbol)
3230 {
3231 as_bad ("expression too complex");
3232 ep->X_op = O_constant;
3233 }
3234
3235 if (ep->X_op == O_constant)
3236 {
3237 load_register (counter, reg, ep, 0);
3238 return;
3239 }
3240
3241 if (mips_pic == NO_PIC)
3242 {
3243 /* If this is a reference to a GP relative symbol, we want
3244 addiu $reg,$gp,<sym> (BFD_RELOC_MIPS_GPREL)
3245 Otherwise we want
3246 lui $reg,<sym> (BFD_RELOC_HI16_S)
3247 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3248 If we have an addend, we always use the latter form. */
3249 if ((valueT) ep->X_add_number >= MAX_GPREL_OFFSET
3250 || nopic_need_relax (ep->X_add_symbol, 1))
3251 p = NULL;
3252 else
3253 {
3254 frag_grow (20);
3255 macro_build ((char *) NULL, counter, ep,
3256 ((bfd_arch_bits_per_address (stdoutput) == 32
3257 || mips_opts.isa < 3)
3258 ? "addiu" : "daddiu"),
3259 "t,r,j", reg, GP, (int) BFD_RELOC_MIPS_GPREL);
3260 p = frag_var (rs_machine_dependent, 8, 0,
3261 RELAX_ENCODE (4, 8, 0, 4, 0,
3262 mips_opts.warn_about_macros),
3263 ep->X_add_symbol, (offsetT) 0, (char *) NULL);
3264 }
3265 macro_build_lui (p, counter, ep, reg);
3266 if (p != NULL)
3267 p += 4;
3268 macro_build (p, counter, ep,
3269 ((bfd_arch_bits_per_address (stdoutput) == 32
3270 || mips_opts.isa < 3)
3271 ? "addiu" : "daddiu"),
3272 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3273 }
3274 else if (mips_pic == SVR4_PIC && ! mips_big_got)
3275 {
3276 expressionS ex;
3277
3278 /* If this is a reference to an external symbol, we want
3279 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3280 Otherwise we want
3281 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3282 nop
3283 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3284 If there is a constant, it must be added in after. */
3285 ex.X_add_number = ep->X_add_number;
3286 ep->X_add_number = 0;
3287 frag_grow (20);
3288 macro_build ((char *) NULL, counter, ep,
3289 ((bfd_arch_bits_per_address (stdoutput) == 32
3290 || mips_opts.isa < 3)
3291 ? "lw" : "ld"),
3292 "t,o(b)", reg, (int) BFD_RELOC_MIPS_GOT16, GP);
3293 macro_build ((char *) NULL, counter, (expressionS *) NULL, "nop", "");
3294 p = frag_var (rs_machine_dependent, 4, 0,
3295 RELAX_ENCODE (0, 4, -8, 0, 0, mips_opts.warn_about_macros),
3296 ep->X_add_symbol, (offsetT) 0, (char *) NULL);
3297 macro_build (p, counter, ep,
3298 ((bfd_arch_bits_per_address (stdoutput) == 32
3299 || mips_opts.isa < 3)
3300 ? "addiu" : "daddiu"),
3301 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3302 if (ex.X_add_number != 0)
3303 {
3304 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3305 as_bad ("PIC code offset overflow (max 16 signed bits)");
3306 ex.X_op = O_constant;
3307 macro_build ((char *) NULL, counter, &ex,
3308 ((bfd_arch_bits_per_address (stdoutput) == 32
3309 || mips_opts.isa < 3)
3310 ? "addiu" : "daddiu"),
3311 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3312 }
3313 }
3314 else if (mips_pic == SVR4_PIC)
3315 {
3316 expressionS ex;
3317 int off;
3318
3319 /* This is the large GOT case. If this is a reference to an
3320 external symbol, we want
3321 lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
3322 addu $reg,$reg,$gp
3323 lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16)
3324 Otherwise, for a reference to a local symbol, we want
3325 lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
3326 nop
3327 addiu $reg,$reg,<sym> (BFD_RELOC_LO16)
3328 If there is a constant, it must be added in after. */
3329 ex.X_add_number = ep->X_add_number;
3330 ep->X_add_number = 0;
3331 if (reg_needs_delay (GP))
3332 off = 4;
3333 else
3334 off = 0;
3335 frag_grow (32);
3336 macro_build ((char *) NULL, counter, ep, "lui", "t,u", reg,
3337 (int) BFD_RELOC_MIPS_GOT_HI16);
3338 macro_build ((char *) NULL, counter, (expressionS *) NULL,
3339 ((bfd_arch_bits_per_address (stdoutput) == 32
3340 || mips_opts.isa < 3)
3341 ? "addu" : "daddu"),
3342 "d,v,t", reg, reg, GP);
3343 macro_build ((char *) NULL, counter, ep,
3344 ((bfd_arch_bits_per_address (stdoutput) == 32
3345 || mips_opts.isa < 3)
3346 ? "lw" : "ld"),
3347 "t,o(b)", reg, (int) BFD_RELOC_MIPS_GOT_LO16, reg);
3348 p = frag_var (rs_machine_dependent, 12 + off, 0,
3349 RELAX_ENCODE (12, 12 + off, off, 8 + off, 0,
3350 mips_opts.warn_about_macros),
3351 ep->X_add_symbol, (offsetT) 0, (char *) NULL);
3352 if (off > 0)
3353 {
3354 /* We need a nop before loading from $gp. This special
3355 check is required because the lui which starts the main
3356 instruction stream does not refer to $gp, and so will not
3357 insert the nop which may be required. */
3358 macro_build (p, counter, (expressionS *) NULL, "nop", "");
3359 p += 4;
3360 }
3361 macro_build (p, counter, ep,
3362 ((bfd_arch_bits_per_address (stdoutput) == 32
3363 || mips_opts.isa < 3)
3364 ? "lw" : "ld"),
3365 "t,o(b)", reg, (int) BFD_RELOC_MIPS_GOT16, GP);
3366 p += 4;
3367 macro_build (p, counter, (expressionS *) NULL, "nop", "");
3368 p += 4;
3369 macro_build (p, counter, ep,
3370 ((bfd_arch_bits_per_address (stdoutput) == 32
3371 || mips_opts.isa < 3)
3372 ? "addiu" : "daddiu"),
3373 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3374 if (ex.X_add_number != 0)
3375 {
3376 if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000)
3377 as_bad ("PIC code offset overflow (max 16 signed bits)");
3378 ex.X_op = O_constant;
3379 macro_build ((char *) NULL, counter, &ex,
3380 ((bfd_arch_bits_per_address (stdoutput) == 32
3381 || mips_opts.isa < 3)
3382 ? "addiu" : "daddiu"),
3383 "t,r,j", reg, reg, (int) BFD_RELOC_LO16);
3384 }
3385 }
3386 else if (mips_pic == EMBEDDED_PIC)
3387 {
3388 /* We always do
3389 addiu $reg,$gp,<sym> (BFD_RELOC_MIPS_GPREL)
3390 */
3391 macro_build ((char *) NULL, counter, ep,
3392 ((bfd_arch_bits_per_address (stdoutput) == 32
3393 || mips_opts.isa < 3)
3394 ? "addiu" : "daddiu"),
3395 "t,r,j", reg, GP, (int) BFD_RELOC_MIPS_GPREL);
3396 }
3397 else
3398 abort ();
3399 }
3400
3401 /*
3402 * Build macros
3403 * This routine implements the seemingly endless macro or synthesized
3404 * instructions and addressing modes in the mips assembly language. Many
3405 * of these macros are simple and are similar to each other. These could
3406 * probably be handled by some kind of table or grammer aproach instead of
3407 * this verbose method. Others are not simple macros but are more like
3408 * optimizing code generation.
3409 * One interesting optimization is when several store macros appear
3410 * consecutivly that would load AT with the upper half of the same address.
3411 * The ensuing load upper instructions are ommited. This implies some kind
3412 * of global optimization. We currently only optimize within a single macro.
3413 * For many of the load and store macros if the address is specified as a
3414 * constant expression in the first 64k of memory (ie ld $2,0x4000c) we
3415 * first load register 'at' with zero and use it as the base register. The
3416 * mips assembler simply uses register $zero. Just one tiny optimization
3417 * we're missing.
3418 */
3419 static void
3420 macro (ip)
3421 struct mips_cl_insn *ip;
3422 {
3423 register int treg, sreg, dreg, breg;
3424 int tempreg;
3425 int mask;
3426 int icnt = 0;
3427 int used_at;
3428 expressionS expr1;
3429 const char *s;
3430 const char *s2;
3431 const char *fmt;
3432 int likely = 0;
3433 int dbl = 0;
3434 int coproc = 0;
3435 int lr = 0;
3436 offsetT maxnum;
3437 int off;
3438 bfd_reloc_code_real_type r;
3439 char *p;
3440 int hold_mips_optimize;
3441
3442 assert (! mips_opts.mips16);
3443
3444 treg = (ip->insn_opcode >> 16) & 0x1f;
3445 dreg = (ip->insn_opcode >> 11) & 0x1f;
3446 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
3447 mask = ip->insn_mo->mask;
3448
3449 expr1.X_op = O_constant;
3450 expr1.X_op_symbol = NULL;
3451 expr1.X_add_symbol = NULL;
3452 expr1.X_add_number = 1;
3453
3454 switch (mask)
3455 {
3456 case M_DABS:
3457 dbl = 1;
3458 case M_ABS:
3459 /* bgez $a0,.+12
3460 move v0,$a0
3461 sub v0,$zero,$a0
3462 */
3463
3464 mips_emit_delays (true);
3465 ++mips_opts.noreorder;
3466 mips_any_noreorder = 1;
3467
3468 expr1.X_add_number = 8;
3469 macro_build ((char *) NULL, &icnt, &expr1, "bgez", "s,p", sreg);
3470 if (dreg == sreg)
3471 macro_build ((char *) NULL, &icnt, NULL, "nop", "", 0);
3472 else
3473 macro_build ((char *) NULL, &icnt, NULL, "move", "d,s", dreg, sreg, 0);
3474 macro_build ((char *) NULL, &icnt, NULL,
3475 dbl ? "dsub" : "sub",
3476 "d,v,t", dreg, 0, sreg);
3477
3478 --mips_opts.noreorder;
3479 return;
3480
3481 case M_ADD_I:
3482 s = "addi";
3483 s2 = "add";
3484 goto do_addi;
3485 case M_ADDU_I:
3486 s = "addiu";
3487 s2 = "addu";
3488 goto do_addi;
3489 case M_DADD_I:
3490 dbl = 1;
3491 s = "daddi";
3492 s2 = "dadd";
3493 goto do_addi;
3494 case M_DADDU_I:
3495 dbl = 1;
3496 s = "daddiu";
3497 s2 = "daddu";
3498 do_addi:
3499 if (imm_expr.X_op == O_constant
3500 && imm_expr.X_add_number >= -0x8000
3501 && imm_expr.X_add_number < 0x8000)
3502 {
3503 macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,j", treg, sreg,
3504 (int) BFD_RELOC_LO16);
3505 return;
3506 }
3507 load_register (&icnt, AT, &imm_expr, dbl);
3508 macro_build ((char *) NULL, &icnt, NULL, s2, "d,v,t", treg, sreg, AT);
3509 break;
3510
3511 case M_AND_I:
3512 s = "andi";
3513 s2 = "and";
3514 goto do_bit;
3515 case M_OR_I:
3516 s = "ori";
3517 s2 = "or";
3518 goto do_bit;
3519 case M_NOR_I:
3520 s = "";
3521 s2 = "nor";
3522 goto do_bit;
3523 case M_XOR_I:
3524 s = "xori";
3525 s2 = "xor";
3526 do_bit:
3527 if (imm_expr.X_op == O_constant
3528 && imm_expr.X_add_number >= 0
3529 && imm_expr.X_add_number < 0x10000)
3530 {
3531 if (mask != M_NOR_I)
3532 macro_build ((char *) NULL, &icnt, &imm_expr, s, "t,r,i", treg,
3533 sreg, (int) BFD_RELOC_LO16);
3534 else
3535 {
3536 macro_build ((char *) NULL, &icnt, &imm_expr, "ori", "t,r,i",
3537 treg, sreg, (int) BFD_RELOC_LO16);
3538 macro_build ((char *) NULL, &icnt, NULL, "nor", "d,v,t",
3539 treg, treg, 0);
3540 }
3541 return;
3542 }
3543
3544 load_register (&icnt, AT, &imm_expr, 0);
3545 macro_build ((char *) NULL, &icnt, NULL, s2, "d,v,t", treg, sreg, AT);
3546 break;
3547
3548 case M_BEQ_I:
3549 s = "beq";
3550 goto beq_i;
3551 case M_BEQL_I:
3552 s = "beql";
3553 likely = 1;
3554 goto beq_i;
3555 case M_BNE_I:
3556 s = "bne";
3557 goto beq_i;
3558 case M_BNEL_I:
3559 s = "bnel";
3560 likely = 1;
3561 beq_i:
3562 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
3563 {
3564 macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg,
3565 0);
3566 return;
3567 }
3568 load_register (&icnt, AT, &imm_expr, 0);
3569 macro_build ((char *) NULL, &icnt, &offset_expr, s, "s,t,p", sreg, AT);
3570 break;
3571
3572 case M_BGEL:
3573 likely = 1;
3574 case M_BGE:
3575 if (treg == 0)
3576 {
3577 macro_build ((char *) NULL, &icnt, &offset_expr,
3578 likely ? "bgezl" : "bgez",
3579 "s,p", sreg);
3580 return;
3581 }
3582 if (sreg == 0)
3583 {
3584 macro_build ((char *) NULL, &icnt, &offset_expr,
3585 likely ? "blezl" : "blez",
3586 "s,p", treg);
3587 return;
3588 }
3589 macro_build ((char *) NULL, &icnt, NULL, "slt", "d,v,t", AT, sreg, treg);
3590 macro_build ((char *) NULL, &icnt, &offset_expr,
3591 likely ? "beql" : "beq",
3592 "s,t,p", AT, 0);
3593 break;
3594
3595 case M_BGTL_I:
3596 likely = 1;
3597 case M_BGT_I:
3598 /* check for > max integer */
3599 maxnum = 0x7fffffff;
3600 if (mips_opts.isa >= 3 && sizeof (maxnum) > 4)
3601 {
3602 maxnum <<= 16;
3603 maxnum |= 0xffff;
3604 maxnum <<= 16;
3605 maxnum |= 0xffff;
3606 }
3607 if (imm_expr.X_op == O_constant
3608 && imm_expr.X_add_number >= maxnum
3609 && (mips_opts.isa < 3 || sizeof (maxnum) > 4))
3610 {
3611 do_false:
3612 /* result is always false */
3613 if (! likely)
3614 {
3615 as_warn ("Branch %s is always false (nop)", ip->insn_mo->name);
3616 macro_build ((char *) NULL, &icnt, NULL, "nop", "", 0);
3617 }
3618 else
3619 {
3620 as_warn ("Branch likely %s is always false", ip->insn_mo->name);
3621 macro_build ((char *) NULL, &icnt, &offset_expr, "bnel",
3622 "s,t,p", 0, 0);
3623 }
3624 return;
3625 }
3626 if (imm_expr.X_op != O_constant)
3627 as_bad ("Unsupported large constant");
3628 imm_expr.X_add_number++;
3629 /* FALLTHROUGH */
3630 case M_BGE_I:
3631 case M_BGEL_I:
3632 if (mask == M_BGEL_I)
3633 likely = 1;
3634 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
3635 {
3636 macro_build ((char *) NULL, &icnt, &offset_expr,
3637 likely ? "bgezl" : "bgez",
3638 "s,p", sreg);
3639 return;
3640 }
3641 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
3642 {
3643 macro_build ((char *) NULL, &icnt, &offset_expr,
3644 likely ? "bgtzl" : "bgtz",
3645 "s,p", sreg);
3646 return;
3647 }
3648 maxnum = 0x7fffffff;
3649 if (mips_opts.isa >= 3 && sizeof (maxnum) > 4)
3650 {
3651 maxnum <<= 16;
3652 maxnum |= 0xffff;
3653 maxnum <<= 16;
3654 maxnum |= 0xffff;
3655 }
3656 maxnum = - maxnum - 1;
3657 if (imm_expr.X_op == O_constant
3658 && imm_expr.X_add_number <= maxnum
3659 && (mips_opts.isa < 3 || sizeof (maxnum) > 4))
3660 {
3661 do_true:
3662 /* result is always true */
3663 as_warn ("Branch %s is always true", ip->insn_mo->name);
3664 macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
3665 return;
3666 }
3667 set_at (&icnt, sreg, 0);
3668 macro_build ((char *) NULL, &icnt, &offset_expr,
3669 likely ? "beql" : "beq",
3670 "s,t,p", AT, 0);
3671 break;
3672
3673 case M_BGEUL:
3674 likely = 1;
3675 case M_BGEU:
3676 if (treg == 0)
3677 goto do_true;
3678 if (sreg == 0)
3679 {
3680 macro_build ((char *) NULL, &icnt, &offset_expr,
3681 likely ? "beql" : "beq",
3682 "s,t,p", 0, treg);
3683 return;
3684 }
3685 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", AT, sreg,
3686 treg);
3687 macro_build ((char *) NULL, &icnt, &offset_expr,
3688 likely ? "beql" : "beq",
3689 "s,t,p", AT, 0);
3690 break;
3691
3692 case M_BGTUL_I:
3693 likely = 1;
3694 case M_BGTU_I:
3695 if (sreg == 0
3696 || (mips_opts.isa < 3
3697 && imm_expr.X_op == O_constant
3698 && imm_expr.X_add_number == 0xffffffff))
3699 goto do_false;
3700 if (imm_expr.X_op != O_constant)
3701 as_bad ("Unsupported large constant");
3702 imm_expr.X_add_number++;
3703 /* FALLTHROUGH */
3704 case M_BGEU_I:
3705 case M_BGEUL_I:
3706 if (mask == M_BGEUL_I)
3707 likely = 1;
3708 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
3709 goto do_true;
3710 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
3711 {
3712 macro_build ((char *) NULL, &icnt, &offset_expr,
3713 likely ? "bnel" : "bne",
3714 "s,t,p", sreg, 0);
3715 return;
3716 }
3717 set_at (&icnt, sreg, 1);
3718 macro_build ((char *) NULL, &icnt, &offset_expr,
3719 likely ? "beql" : "beq",
3720 "s,t,p", AT, 0);
3721 break;
3722
3723 case M_BGTL:
3724 likely = 1;
3725 case M_BGT:
3726 if (treg == 0)
3727 {
3728 macro_build ((char *) NULL, &icnt, &offset_expr,
3729 likely ? "bgtzl" : "bgtz",
3730 "s,p", sreg);
3731 return;
3732 }
3733 if (sreg == 0)
3734 {
3735 macro_build ((char *) NULL, &icnt, &offset_expr,
3736 likely ? "bltzl" : "bltz",
3737 "s,p", treg);
3738 return;
3739 }
3740 macro_build ((char *) NULL, &icnt, NULL, "slt", "d,v,t", AT, treg, sreg);
3741 macro_build ((char *) NULL, &icnt, &offset_expr,
3742 likely ? "bnel" : "bne",
3743 "s,t,p", AT, 0);
3744 break;
3745
3746 case M_BGTUL:
3747 likely = 1;
3748 case M_BGTU:
3749 if (treg == 0)
3750 {
3751 macro_build ((char *) NULL, &icnt, &offset_expr,
3752 likely ? "bnel" : "bne",
3753 "s,t,p", sreg, 0);
3754 return;
3755 }
3756 if (sreg == 0)
3757 goto do_false;
3758 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", AT, treg,
3759 sreg);
3760 macro_build ((char *) NULL, &icnt, &offset_expr,
3761 likely ? "bnel" : "bne",
3762 "s,t,p", AT, 0);
3763 break;
3764
3765 case M_BLEL:
3766 likely = 1;
3767 case M_BLE:
3768 if (treg == 0)
3769 {
3770 macro_build ((char *) NULL, &icnt, &offset_expr,
3771 likely ? "blezl" : "blez",
3772 "s,p", sreg);
3773 return;
3774 }
3775 if (sreg == 0)
3776 {
3777 macro_build ((char *) NULL, &icnt, &offset_expr,
3778 likely ? "bgezl" : "bgez",
3779 "s,p", treg);
3780 return;
3781 }
3782 macro_build ((char *) NULL, &icnt, NULL, "slt", "d,v,t", AT, treg, sreg);
3783 macro_build ((char *) NULL, &icnt, &offset_expr,
3784 likely ? "beql" : "beq",
3785 "s,t,p", AT, 0);
3786 break;
3787
3788 case M_BLEL_I:
3789 likely = 1;
3790 case M_BLE_I:
3791 maxnum = 0x7fffffff;
3792 if (mips_opts.isa >= 3 && sizeof (maxnum) > 4)
3793 {
3794 maxnum <<= 16;
3795 maxnum |= 0xffff;
3796 maxnum <<= 16;
3797 maxnum |= 0xffff;
3798 }
3799 if (imm_expr.X_op == O_constant
3800 && imm_expr.X_add_number >= maxnum
3801 && (mips_opts.isa < 3 || sizeof (maxnum) > 4))
3802 goto do_true;
3803 if (imm_expr.X_op != O_constant)
3804 as_bad ("Unsupported large constant");
3805 imm_expr.X_add_number++;
3806 /* FALLTHROUGH */
3807 case M_BLT_I:
3808 case M_BLTL_I:
3809 if (mask == M_BLTL_I)
3810 likely = 1;
3811 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
3812 {
3813 macro_build ((char *) NULL, &icnt, &offset_expr,
3814 likely ? "bltzl" : "bltz",
3815 "s,p", sreg);
3816 return;
3817 }
3818 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
3819 {
3820 macro_build ((char *) NULL, &icnt, &offset_expr,
3821 likely ? "blezl" : "blez",
3822 "s,p", sreg);
3823 return;
3824 }
3825 set_at (&icnt, sreg, 0);
3826 macro_build ((char *) NULL, &icnt, &offset_expr,
3827 likely ? "bnel" : "bne",
3828 "s,t,p", AT, 0);
3829 break;
3830
3831 case M_BLEUL:
3832 likely = 1;
3833 case M_BLEU:
3834 if (treg == 0)
3835 {
3836 macro_build ((char *) NULL, &icnt, &offset_expr,
3837 likely ? "beql" : "beq",
3838 "s,t,p", sreg, 0);
3839 return;
3840 }
3841 if (sreg == 0)
3842 goto do_true;
3843 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", AT, treg,
3844 sreg);
3845 macro_build ((char *) NULL, &icnt, &offset_expr,
3846 likely ? "beql" : "beq",
3847 "s,t,p", AT, 0);
3848 break;
3849
3850 case M_BLEUL_I:
3851 likely = 1;
3852 case M_BLEU_I:
3853 if (sreg == 0
3854 || (mips_opts.isa < 3
3855 && imm_expr.X_op == O_constant
3856 && imm_expr.X_add_number == 0xffffffff))
3857 goto do_true;
3858 if (imm_expr.X_op != O_constant)
3859 as_bad ("Unsupported large constant");
3860 imm_expr.X_add_number++;
3861 /* FALLTHROUGH */
3862 case M_BLTU_I:
3863 case M_BLTUL_I:
3864 if (mask == M_BLTUL_I)
3865 likely = 1;
3866 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
3867 goto do_false;
3868 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
3869 {
3870 macro_build ((char *) NULL, &icnt, &offset_expr,
3871 likely ? "beql" : "beq",
3872 "s,t,p", sreg, 0);
3873 return;
3874 }
3875 set_at (&icnt, sreg, 1);
3876 macro_build ((char *) NULL, &icnt, &offset_expr,
3877 likely ? "bnel" : "bne",
3878 "s,t,p", AT, 0);
3879 break;
3880
3881 case M_BLTL:
3882 likely = 1;
3883 case M_BLT:
3884 if (treg == 0)
3885 {
3886 macro_build ((char *) NULL, &icnt, &offset_expr,
3887 likely ? "bltzl" : "bltz",
3888 "s,p", sreg);
3889 return;
3890 }
3891 if (sreg == 0)
3892 {
3893 macro_build ((char *) NULL, &icnt, &offset_expr,
3894 likely ? "bgtzl" : "bgtz",
3895 "s,p", treg);
3896 return;
3897 }
3898 macro_build ((char *) NULL, &icnt, NULL, "slt", "d,v,t", AT, sreg, treg);
3899 macro_build ((char *) NULL, &icnt, &offset_expr,
3900 likely ? "bnel" : "bne",
3901 "s,t,p", AT, 0);
3902 break;
3903
3904 case M_BLTUL:
3905 likely = 1;
3906 case M_BLTU:
3907 if (treg == 0)
3908 goto do_false;
3909 if (sreg == 0)
3910 {
3911 macro_build ((char *) NULL, &icnt, &offset_expr,
3912 likely ? "bnel" : "bne",
3913 "s,t,p", 0, treg);
3914 return;
3915 }
3916 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", AT, sreg,
3917 treg);
3918 macro_build ((char *) NULL, &icnt, &offset_expr,
3919 likely ? "bnel" : "bne",
3920 "s,t,p", AT, 0);
3921 break;
3922
3923 case M_DDIV_3:
3924 dbl = 1;
3925 case M_DIV_3:
3926 s = "mflo";
3927 goto do_div3;
3928 case M_DREM_3:
3929 dbl = 1;
3930 case M_REM_3:
3931 s = "mfhi";
3932 do_div3:
3933 if (treg == 0)
3934 {
3935 as_warn ("Divide by zero.");
3936 if (mips_trap)
3937 macro_build ((char *) NULL, &icnt, NULL, "teq", "s,t", 0, 0);
3938 else
3939 macro_build ((char *) NULL, &icnt, NULL, "break", "c", 7);
3940 return;
3941 }
3942
3943 mips_emit_delays (true);
3944 ++mips_opts.noreorder;
3945 mips_any_noreorder = 1;
3946 if (mips_trap)
3947 {
3948 macro_build ((char *) NULL, &icnt, NULL, "teq", "s,t", treg, 0);
3949 macro_build ((char *) NULL, &icnt, NULL,
3950 dbl ? "ddiv" : "div",
3951 "z,s,t", sreg, treg);
3952 }
3953 else
3954 {
3955 expr1.X_add_number = 8;
3956 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
3957 macro_build ((char *) NULL, &icnt, NULL,
3958 dbl ? "ddiv" : "div",
3959 "z,s,t", sreg, treg);
3960 macro_build ((char *) NULL, &icnt, NULL, "break", "c", 7);
3961 }
3962 expr1.X_add_number = -1;
3963 macro_build ((char *) NULL, &icnt, &expr1,
3964 dbl ? "daddiu" : "addiu",
3965 "t,r,j", AT, 0, (int) BFD_RELOC_LO16);
3966 expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16);
3967 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, AT);
3968 if (dbl)
3969 {
3970 expr1.X_add_number = 1;
3971 macro_build ((char *) NULL, &icnt, &expr1, "daddiu", "t,r,j", AT, 0,
3972 (int) BFD_RELOC_LO16);
3973 macro_build ((char *) NULL, &icnt, NULL, "dsll32", "d,w,<", AT, AT,
3974 31);
3975 }
3976 else
3977 {
3978 expr1.X_add_number = 0x80000000;
3979 macro_build ((char *) NULL, &icnt, &expr1, "lui", "t,u", AT,
3980 (int) BFD_RELOC_HI16);
3981 }
3982 if (mips_trap)
3983 macro_build ((char *) NULL, &icnt, NULL, "teq", "s,t", sreg, AT);
3984 else
3985 {
3986 expr1.X_add_number = 8;
3987 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", sreg, AT);
3988 macro_build ((char *) NULL, &icnt, NULL, "nop", "", 0);
3989 macro_build ((char *) NULL, &icnt, NULL, "break", "c", 6);
3990 }
3991 --mips_opts.noreorder;
3992 macro_build ((char *) NULL, &icnt, NULL, s, "d", dreg);
3993 break;
3994
3995 case M_DIV_3I:
3996 s = "div";
3997 s2 = "mflo";
3998 goto do_divi;
3999 case M_DIVU_3I:
4000 s = "divu";
4001 s2 = "mflo";
4002 goto do_divi;
4003 case M_REM_3I:
4004 s = "div";
4005 s2 = "mfhi";
4006 goto do_divi;
4007 case M_REMU_3I:
4008 s = "divu";
4009 s2 = "mfhi";
4010 goto do_divi;
4011 case M_DDIV_3I:
4012 dbl = 1;
4013 s = "ddiv";
4014 s2 = "mflo";
4015 goto do_divi;
4016 case M_DDIVU_3I:
4017 dbl = 1;
4018 s = "ddivu";
4019 s2 = "mflo";
4020 goto do_divi;
4021 case M_DREM_3I:
4022 dbl = 1;
4023 s = "ddiv";
4024 s2 = "mfhi";
4025 goto do_divi;
4026 case M_DREMU_3I:
4027 dbl = 1;
4028 s = "ddivu";
4029 s2 = "mfhi";
4030 do_divi:
4031 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
4032 {
4033 as_warn ("Divide by zero.");
4034 if (mips_trap)
4035 macro_build ((char *) NULL, &icnt, NULL, "teq", "s,t", 0, 0);
4036 else
4037 macro_build ((char *) NULL, &icnt, NULL, "break", "c", 7);
4038 return;
4039 }
4040 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1)
4041 {
4042 if (strcmp (s2, "mflo") == 0)
4043 macro_build ((char *) NULL, &icnt, NULL, "move", "d,s", dreg,
4044 sreg);
4045 else
4046 macro_build ((char *) NULL, &icnt, NULL, "move", "d,s", dreg, 0);
4047 return;
4048 }
4049 if (imm_expr.X_op == O_constant
4050 && imm_expr.X_add_number == -1
4051 && s[strlen (s) - 1] != 'u')
4052 {
4053 if (strcmp (s2, "mflo") == 0)
4054 {
4055 if (dbl)
4056 macro_build ((char *) NULL, &icnt, NULL, "dneg", "d,w", dreg,
4057 sreg);
4058 else
4059 macro_build ((char *) NULL, &icnt, NULL, "neg", "d,w", dreg,
4060 sreg);
4061 }
4062 else
4063 macro_build ((char *) NULL, &icnt, NULL, "move", "d,s", dreg, 0);
4064 return;
4065 }
4066
4067 load_register (&icnt, AT, &imm_expr, dbl);
4068 macro_build ((char *) NULL, &icnt, NULL, s, "z,s,t", sreg, AT);
4069 macro_build ((char *) NULL, &icnt, NULL, s2, "d", dreg);
4070 break;
4071
4072 case M_DIVU_3:
4073 s = "divu";
4074 s2 = "mflo";
4075 goto do_divu3;
4076 case M_REMU_3:
4077 s = "divu";
4078 s2 = "mfhi";
4079 goto do_divu3;
4080 case M_DDIVU_3:
4081 s = "ddivu";
4082 s2 = "mflo";
4083 goto do_divu3;
4084 case M_DREMU_3:
4085 s = "ddivu";
4086 s2 = "mfhi";
4087 do_divu3:
4088 mips_emit_delays (true);
4089 ++mips_opts.noreorder;
4090 mips_any_noreorder = 1;
4091 if (mips_trap)
4092 {
4093 macro_build ((char *) NULL, &icnt, NULL, "teq", "s,t", treg, 0);
4094 macro_build ((char *) NULL, &icnt, NULL, s, "z,s,t", sreg, treg);
4095 }
4096 else
4097 {
4098 expr1.X_add_number = 8;
4099 macro_build ((char *) NULL, &icnt, &expr1, "bne", "s,t,p", treg, 0);
4100 macro_build ((char *) NULL, &icnt, NULL, s, "z,s,t", sreg, treg);
4101 macro_build ((char *) NULL, &icnt, NULL, "break", "c", 7);
4102 }
4103 --mips_opts.noreorder;
4104 macro_build ((char *) NULL, &icnt, NULL, s2, "d", dreg);
4105 return;
4106
4107 case M_DLA_AB:
4108 dbl = 1;
4109 case M_LA_AB:
4110 /* Load the address of a symbol into a register. If breg is not
4111 zero, we then add a base register to it. */
4112
4113 /* When generating embedded PIC code, we permit expressions of
4114 the form
4115 la $4,foo-bar
4116 where bar is an address in the .text section. These are used
4117 when getting the addresses of functions. We don't permit
4118 X_add_number to be non-zero, because if the symbol is
4119 external the relaxing code needs to know that any addend is
4120 purely the offset to X_op_symbol. */
4121 if (mips_pic == EMBEDDED_PIC
4122 && offset_expr.X_op == O_subtract
4123 && now_seg == text_section
4124 && (offset_expr.X_op_symbol->sy_value.X_op == O_constant
4125 ? S_GET_SEGMENT (offset_expr.X_op_symbol) == text_section
4126 : (offset_expr.X_op_symbol->sy_value.X_op == O_symbol
4127 && (S_GET_SEGMENT (offset_expr.X_op_symbol
4128 ->sy_value.X_add_symbol)
4129 == text_section)))
4130 && breg == 0
4131 && offset_expr.X_add_number == 0)
4132 {
4133 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4134 treg, (int) BFD_RELOC_PCREL_HI16_S);
4135 macro_build ((char *) NULL, &icnt, &offset_expr,
4136 ((bfd_arch_bits_per_address (stdoutput) == 32
4137 || mips_opts.isa < 3)
4138 ? "addiu" : "daddiu"),
4139 "t,r,j", treg, treg, (int) BFD_RELOC_PCREL_LO16);
4140 return;
4141 }
4142
4143 if (offset_expr.X_op != O_symbol
4144 && offset_expr.X_op != O_constant)
4145 {
4146 as_bad ("expression too complex");
4147 offset_expr.X_op = O_constant;
4148 }
4149
4150 if (treg == breg)
4151 {
4152 tempreg = AT;
4153 used_at = 1;
4154 }
4155 else
4156 {
4157 tempreg = treg;
4158 used_at = 0;
4159 }
4160
4161 if (offset_expr.X_op == O_constant)
4162 load_register (&icnt, tempreg, &offset_expr, dbl);
4163 else if (mips_pic == NO_PIC)
4164 {
4165 /* If this is a reference to an GP relative symbol, we want
4166 addiu $tempreg,$gp,<sym> (BFD_RELOC_MIPS_GPREL)
4167 Otherwise we want
4168 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4169 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4170 If we have a constant, we need two instructions anyhow,
4171 so we may as well always use the latter form. */
4172 if ((valueT) offset_expr.X_add_number >= MAX_GPREL_OFFSET
4173 || nopic_need_relax (offset_expr.X_add_symbol, 1))
4174 p = NULL;
4175 else
4176 {
4177 frag_grow (20);
4178 macro_build ((char *) NULL, &icnt, &offset_expr,
4179 ((bfd_arch_bits_per_address (stdoutput) == 32
4180 || mips_opts.isa < 3)
4181 ? "addiu" : "daddiu"),
4182 "t,r,j", tempreg, GP, (int) BFD_RELOC_MIPS_GPREL);
4183 p = frag_var (rs_machine_dependent, 8, 0,
4184 RELAX_ENCODE (4, 8, 0, 4, 0,
4185 mips_opts.warn_about_macros),
4186 offset_expr.X_add_symbol, (offsetT) 0,
4187 (char *) NULL);
4188 }
4189 macro_build_lui (p, &icnt, &offset_expr, tempreg);
4190 if (p != NULL)
4191 p += 4;
4192 macro_build (p, &icnt, &offset_expr,
4193 ((bfd_arch_bits_per_address (stdoutput) == 32
4194 || mips_opts.isa < 3)
4195 ? "addiu" : "daddiu"),
4196 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4197 }
4198 else if (mips_pic == SVR4_PIC && ! mips_big_got)
4199 {
4200 /* If this is a reference to an external symbol, and there
4201 is no constant, we want
4202 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4203 For a local symbol, we want
4204 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4205 nop
4206 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4207
4208 If we have a small constant, and this is a reference to
4209 an external symbol, we want
4210 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4211 nop
4212 addiu $tempreg,$tempreg,<constant>
4213 For a local symbol, we want the same instruction
4214 sequence, but we output a BFD_RELOC_LO16 reloc on the
4215 addiu instruction.
4216
4217 If we have a large constant, and this is a reference to
4218 an external symbol, we want
4219 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4220 lui $at,<hiconstant>
4221 addiu $at,$at,<loconstant>
4222 addu $tempreg,$tempreg,$at
4223 For a local symbol, we want the same instruction
4224 sequence, but we output a BFD_RELOC_LO16 reloc on the
4225 addiu instruction. */
4226 expr1.X_add_number = offset_expr.X_add_number;
4227 offset_expr.X_add_number = 0;
4228 frag_grow (32);
4229 macro_build ((char *) NULL, &icnt, &offset_expr,
4230 dbl ? "ld" : "lw",
4231 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT16, GP);
4232 if (expr1.X_add_number == 0)
4233 {
4234 int off;
4235
4236 if (breg == 0)
4237 off = 0;
4238 else
4239 {
4240 /* We're going to put in an addu instruction using
4241 tempreg, so we may as well insert the nop right
4242 now. */
4243 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4244 "nop", "");
4245 off = 4;
4246 }
4247 p = frag_var (rs_machine_dependent, 8 - off, 0,
4248 RELAX_ENCODE (0, 8 - off, -4 - off, 4 - off, 0,
4249 (breg == 0
4250 ? mips_opts.warn_about_macros
4251 : 0)),
4252 offset_expr.X_add_symbol, (offsetT) 0,
4253 (char *) NULL);
4254 if (breg == 0)
4255 {
4256 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4257 p += 4;
4258 }
4259 macro_build (p, &icnt, &expr1,
4260 ((bfd_arch_bits_per_address (stdoutput) == 32
4261 || mips_opts.isa < 3)
4262 ? "addiu" : "daddiu"),
4263 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4264 /* FIXME: If breg == 0, and the next instruction uses
4265 $tempreg, then if this variant case is used an extra
4266 nop will be generated. */
4267 }
4268 else if (expr1.X_add_number >= -0x8000
4269 && expr1.X_add_number < 0x8000)
4270 {
4271 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4272 "nop", "");
4273 macro_build ((char *) NULL, &icnt, &expr1,
4274 ((bfd_arch_bits_per_address (stdoutput) == 32
4275 || mips_opts.isa < 3)
4276 ? "addiu" : "daddiu"),
4277 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4278 (void) frag_var (rs_machine_dependent, 0, 0,
4279 RELAX_ENCODE (0, 0, -12, -4, 0, 0),
4280 offset_expr.X_add_symbol, (offsetT) 0,
4281 (char *) NULL);
4282 }
4283 else
4284 {
4285 int off1;
4286
4287 /* If we are going to add in a base register, and the
4288 target register and the base register are the same,
4289 then we are using AT as a temporary register. Since
4290 we want to load the constant into AT, we add our
4291 current AT (from the global offset table) and the
4292 register into the register now, and pretend we were
4293 not using a base register. */
4294 if (breg != treg)
4295 off1 = 0;
4296 else
4297 {
4298 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4299 "nop", "");
4300 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4301 ((bfd_arch_bits_per_address (stdoutput) == 32
4302 || mips_opts.isa < 3)
4303 ? "addu" : "daddu"),
4304 "d,v,t", treg, AT, breg);
4305 breg = 0;
4306 tempreg = treg;
4307 off1 = -8;
4308 }
4309
4310 /* Set mips_optimize around the lui instruction to avoid
4311 inserting an unnecessary nop after the lw. */
4312 hold_mips_optimize = mips_optimize;
4313 mips_optimize = 2;
4314 macro_build_lui ((char *) NULL, &icnt, &expr1, AT);
4315 mips_optimize = hold_mips_optimize;
4316
4317 macro_build ((char *) NULL, &icnt, &expr1,
4318 ((bfd_arch_bits_per_address (stdoutput) == 32
4319 || mips_opts.isa < 3)
4320 ? "addiu" : "daddiu"),
4321 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
4322 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4323 ((bfd_arch_bits_per_address (stdoutput) == 32
4324 || mips_opts.isa < 3)
4325 ? "addu" : "daddu"),
4326 "d,v,t", tempreg, tempreg, AT);
4327 (void) frag_var (rs_machine_dependent, 0, 0,
4328 RELAX_ENCODE (0, 0, -16 + off1, -8, 0, 0),
4329 offset_expr.X_add_symbol, (offsetT) 0,
4330 (char *) NULL);
4331 used_at = 1;
4332 }
4333 }
4334 else if (mips_pic == SVR4_PIC)
4335 {
4336 int gpdel;
4337
4338 /* This is the large GOT case. If this is a reference to an
4339 external symbol, and there is no constant, we want
4340 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4341 addu $tempreg,$tempreg,$gp
4342 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
4343 For a local symbol, we want
4344 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4345 nop
4346 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
4347
4348 If we have a small constant, and this is a reference to
4349 an external symbol, we want
4350 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4351 addu $tempreg,$tempreg,$gp
4352 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
4353 nop
4354 addiu $tempreg,$tempreg,<constant>
4355 For a local symbol, we want
4356 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4357 nop
4358 addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16)
4359
4360 If we have a large constant, and this is a reference to
4361 an external symbol, we want
4362 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
4363 addu $tempreg,$tempreg,$gp
4364 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
4365 lui $at,<hiconstant>
4366 addiu $at,$at,<loconstant>
4367 addu $tempreg,$tempreg,$at
4368 For a local symbol, we want
4369 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4370 lui $at,<hiconstant>
4371 addiu $at,$at,<loconstant> (BFD_RELOC_LO16)
4372 addu $tempreg,$tempreg,$at
4373 */
4374 expr1.X_add_number = offset_expr.X_add_number;
4375 offset_expr.X_add_number = 0;
4376 frag_grow (52);
4377 if (reg_needs_delay (GP))
4378 gpdel = 4;
4379 else
4380 gpdel = 0;
4381 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4382 tempreg, (int) BFD_RELOC_MIPS_GOT_HI16);
4383 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4384 ((bfd_arch_bits_per_address (stdoutput) == 32
4385 || mips_opts.isa < 3)
4386 ? "addu" : "daddu"),
4387 "d,v,t", tempreg, tempreg, GP);
4388 macro_build ((char *) NULL, &icnt, &offset_expr,
4389 dbl ? "ld" : "lw",
4390 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT_LO16,
4391 tempreg);
4392 if (expr1.X_add_number == 0)
4393 {
4394 int off;
4395
4396 if (breg == 0)
4397 off = 0;
4398 else
4399 {
4400 /* We're going to put in an addu instruction using
4401 tempreg, so we may as well insert the nop right
4402 now. */
4403 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4404 "nop", "");
4405 off = 4;
4406 }
4407
4408 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
4409 RELAX_ENCODE (12 + off, 12 + gpdel, gpdel,
4410 8 + gpdel, 0,
4411 (breg == 0
4412 ? mips_opts.warn_about_macros
4413 : 0)),
4414 offset_expr.X_add_symbol, (offsetT) 0,
4415 (char *) NULL);
4416 }
4417 else if (expr1.X_add_number >= -0x8000
4418 && expr1.X_add_number < 0x8000)
4419 {
4420 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4421 "nop", "");
4422 macro_build ((char *) NULL, &icnt, &expr1,
4423 ((bfd_arch_bits_per_address (stdoutput) == 32
4424 || mips_opts.isa < 3)
4425 ? "addiu" : "daddiu"),
4426 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4427
4428 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
4429 RELAX_ENCODE (20, 12 + gpdel, gpdel, 8 + gpdel, 0,
4430 (breg == 0
4431 ? mips_opts.warn_about_macros
4432 : 0)),
4433 offset_expr.X_add_symbol, (offsetT) 0,
4434 (char *) NULL);
4435 }
4436 else
4437 {
4438 int adj, dreg;
4439
4440 /* If we are going to add in a base register, and the
4441 target register and the base register are the same,
4442 then we are using AT as a temporary register. Since
4443 we want to load the constant into AT, we add our
4444 current AT (from the global offset table) and the
4445 register into the register now, and pretend we were
4446 not using a base register. */
4447 if (breg != treg)
4448 {
4449 adj = 0;
4450 dreg = tempreg;
4451 }
4452 else
4453 {
4454 assert (tempreg == AT);
4455 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4456 "nop", "");
4457 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4458 ((bfd_arch_bits_per_address (stdoutput) == 32
4459 || mips_opts.isa < 3)
4460 ? "addu" : "daddu"),
4461 "d,v,t", treg, AT, breg);
4462 dreg = treg;
4463 adj = 8;
4464 }
4465
4466 /* Set mips_optimize around the lui instruction to avoid
4467 inserting an unnecessary nop after the lw. */
4468 hold_mips_optimize = mips_optimize;
4469 mips_optimize = 2;
4470 macro_build_lui ((char *) NULL, &icnt, &expr1, AT);
4471 mips_optimize = hold_mips_optimize;
4472
4473 macro_build ((char *) NULL, &icnt, &expr1,
4474 ((bfd_arch_bits_per_address (stdoutput) == 32
4475 || mips_opts.isa < 3)
4476 ? "addiu" : "daddiu"),
4477 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
4478 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4479 ((bfd_arch_bits_per_address (stdoutput) == 32
4480 || mips_opts.isa < 3)
4481 ? "addu" : "daddu"),
4482 "d,v,t", dreg, dreg, AT);
4483
4484 p = frag_var (rs_machine_dependent, 16 + gpdel + adj, 0,
4485 RELAX_ENCODE (24 + adj, 16 + gpdel + adj, gpdel,
4486 8 + gpdel, 0,
4487 (breg == 0
4488 ? mips_opts.warn_about_macros
4489 : 0)),
4490 offset_expr.X_add_symbol, (offsetT) 0,
4491 (char *) NULL);
4492
4493 used_at = 1;
4494 }
4495
4496 if (gpdel > 0)
4497 {
4498 /* This is needed because this instruction uses $gp, but
4499 the first instruction on the main stream does not. */
4500 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4501 p += 4;
4502 }
4503 macro_build (p, &icnt, &offset_expr,
4504 dbl ? "ld" : "lw",
4505 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT16, GP);
4506 p += 4;
4507 if (expr1.X_add_number >= -0x8000
4508 && expr1.X_add_number < 0x8000)
4509 {
4510 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4511 p += 4;
4512 macro_build (p, &icnt, &expr1,
4513 ((bfd_arch_bits_per_address (stdoutput) == 32
4514 || mips_opts.isa < 3)
4515 ? "addiu" : "daddiu"),
4516 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
4517 /* FIXME: If add_number is 0, and there was no base
4518 register, the external symbol case ended with a load,
4519 so if the symbol turns out to not be external, and
4520 the next instruction uses tempreg, an unnecessary nop
4521 will be inserted. */
4522 }
4523 else
4524 {
4525 if (breg == treg)
4526 {
4527 /* We must add in the base register now, as in the
4528 external symbol case. */
4529 assert (tempreg == AT);
4530 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4531 p += 4;
4532 macro_build (p, &icnt, (expressionS *) NULL,
4533 ((bfd_arch_bits_per_address (stdoutput) == 32
4534 || mips_opts.isa < 3)
4535 ? "addu" : "daddu"),
4536 "d,v,t", treg, AT, breg);
4537 p += 4;
4538 tempreg = treg;
4539 /* We set breg to 0 because we have arranged to add
4540 it in in both cases. */
4541 breg = 0;
4542 }
4543
4544 macro_build_lui (p, &icnt, &expr1, AT);
4545 p += 4;
4546 macro_build (p, &icnt, &expr1,
4547 ((bfd_arch_bits_per_address (stdoutput) == 32
4548 || mips_opts.isa < 3)
4549 ? "addiu" : "daddiu"),
4550 "t,r,j", AT, AT, (int) BFD_RELOC_LO16);
4551 p += 4;
4552 macro_build (p, &icnt, (expressionS *) NULL,
4553 ((bfd_arch_bits_per_address (stdoutput) == 32
4554 || mips_opts.isa < 3)
4555 ? "addu" : "daddu"),
4556 "d,v,t", tempreg, tempreg, AT);
4557 p += 4;
4558 }
4559 }
4560 else if (mips_pic == EMBEDDED_PIC)
4561 {
4562 /* We use
4563 addiu $tempreg,$gp,<sym> (BFD_RELOC_MIPS_GPREL)
4564 */
4565 macro_build ((char *) NULL, &icnt, &offset_expr,
4566 ((bfd_arch_bits_per_address (stdoutput) == 32
4567 || mips_opts.isa < 3)
4568 ? "addiu" : "daddiu"),
4569 "t,r,j", tempreg, GP, (int) BFD_RELOC_MIPS_GPREL);
4570 }
4571 else
4572 abort ();
4573
4574 if (breg != 0)
4575 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4576 ((bfd_arch_bits_per_address (stdoutput) == 32
4577 || mips_opts.isa < 3)
4578 ? "addu" : "daddu"),
4579 "d,v,t", treg, tempreg, breg);
4580
4581 if (! used_at)
4582 return;
4583
4584 break;
4585
4586 case M_J_A:
4587 /* The j instruction may not be used in PIC code, since it
4588 requires an absolute address. We convert it to a b
4589 instruction. */
4590 if (mips_pic == NO_PIC)
4591 macro_build ((char *) NULL, &icnt, &offset_expr, "j", "a");
4592 else
4593 macro_build ((char *) NULL, &icnt, &offset_expr, "b", "p");
4594 return;
4595
4596 /* The jal instructions must be handled as macros because when
4597 generating PIC code they expand to multi-instruction
4598 sequences. Normally they are simple instructions. */
4599 case M_JAL_1:
4600 dreg = RA;
4601 /* Fall through. */
4602 case M_JAL_2:
4603 if (mips_pic == NO_PIC
4604 || mips_pic == EMBEDDED_PIC)
4605 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
4606 "d,s", dreg, sreg);
4607 else if (mips_pic == SVR4_PIC)
4608 {
4609 if (sreg != PIC_CALL_REG)
4610 as_warn ("MIPS PIC call to register other than $25");
4611
4612 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "jalr",
4613 "d,s", dreg, sreg);
4614 if (mips_cprestore_offset < 0)
4615 as_warn ("No .cprestore pseudo-op used in PIC code");
4616 else
4617 {
4618 expr1.X_add_number = mips_cprestore_offset;
4619 macro_build ((char *) NULL, &icnt, &expr1,
4620 ((bfd_arch_bits_per_address (stdoutput) == 32
4621 || mips_opts.isa < 3)
4622 ? "lw" : "ld"),
4623 "t,o(b)", GP, (int) BFD_RELOC_LO16, mips_frame_reg);
4624 }
4625 }
4626 else
4627 abort ();
4628
4629 return;
4630
4631 case M_JAL_A:
4632 if (mips_pic == NO_PIC)
4633 macro_build ((char *) NULL, &icnt, &offset_expr, "jal", "a");
4634 else if (mips_pic == SVR4_PIC)
4635 {
4636 /* If this is a reference to an external symbol, and we are
4637 using a small GOT, we want
4638 lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16)
4639 nop
4640 jalr $25
4641 nop
4642 lw $gp,cprestore($sp)
4643 The cprestore value is set using the .cprestore
4644 pseudo-op. If we are using a big GOT, we want
4645 lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16)
4646 addu $25,$25,$gp
4647 lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16)
4648 nop
4649 jalr $25
4650 nop
4651 lw $gp,cprestore($sp)
4652 If the symbol is not external, we want
4653 lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
4654 nop
4655 addiu $25,$25,<sym> (BFD_RELOC_LO16)
4656 jalr $25
4657 nop
4658 lw $gp,cprestore($sp) */
4659 frag_grow (40);
4660 if (! mips_big_got)
4661 {
4662 macro_build ((char *) NULL, &icnt, &offset_expr,
4663 ((bfd_arch_bits_per_address (stdoutput) == 32
4664 || mips_opts.isa < 3)
4665 ? "lw" : "ld"),
4666 "t,o(b)", PIC_CALL_REG,
4667 (int) BFD_RELOC_MIPS_CALL16, GP);
4668 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4669 "nop", "");
4670 p = frag_var (rs_machine_dependent, 4, 0,
4671 RELAX_ENCODE (0, 4, -8, 0, 0, 0),
4672 offset_expr.X_add_symbol, (offsetT) 0,
4673 (char *) NULL);
4674 }
4675 else
4676 {
4677 int gpdel;
4678
4679 if (reg_needs_delay (GP))
4680 gpdel = 4;
4681 else
4682 gpdel = 0;
4683 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
4684 PIC_CALL_REG, (int) BFD_RELOC_MIPS_CALL_HI16);
4685 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4686 ((bfd_arch_bits_per_address (stdoutput) == 32
4687 || mips_opts.isa < 3)
4688 ? "addu" : "daddu"),
4689 "d,v,t", PIC_CALL_REG, PIC_CALL_REG, GP);
4690 macro_build ((char *) NULL, &icnt, &offset_expr,
4691 ((bfd_arch_bits_per_address (stdoutput) == 32
4692 || mips_opts.isa < 3)
4693 ? "lw" : "ld"),
4694 "t,o(b)", PIC_CALL_REG,
4695 (int) BFD_RELOC_MIPS_CALL_LO16, PIC_CALL_REG);
4696 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4697 "nop", "");
4698 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
4699 RELAX_ENCODE (16, 12 + gpdel, gpdel, 8 + gpdel,
4700 0, 0),
4701 offset_expr.X_add_symbol, (offsetT) 0,
4702 (char *) NULL);
4703 if (gpdel > 0)
4704 {
4705 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4706 p += 4;
4707 }
4708 macro_build (p, &icnt, &offset_expr,
4709 ((bfd_arch_bits_per_address (stdoutput) == 32
4710 || mips_opts.isa < 3)
4711 ? "lw" : "ld"),
4712 "t,o(b)", PIC_CALL_REG,
4713 (int) BFD_RELOC_MIPS_GOT16, GP);
4714 p += 4;
4715 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
4716 p += 4;
4717 }
4718 macro_build (p, &icnt, &offset_expr,
4719 ((bfd_arch_bits_per_address (stdoutput) == 32
4720 || mips_opts.isa < 3)
4721 ? "addiu" : "daddiu"),
4722 "t,r,j", PIC_CALL_REG, PIC_CALL_REG,
4723 (int) BFD_RELOC_LO16);
4724 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4725 "jalr", "s", PIC_CALL_REG);
4726 if (mips_cprestore_offset < 0)
4727 as_warn ("No .cprestore pseudo-op used in PIC code");
4728 else
4729 {
4730 if (mips_opts.noreorder)
4731 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4732 "nop", "");
4733 expr1.X_add_number = mips_cprestore_offset;
4734 macro_build ((char *) NULL, &icnt, &expr1,
4735 ((bfd_arch_bits_per_address (stdoutput) == 32
4736 || mips_opts.isa < 3)
4737 ? "lw" : "ld"),
4738 "t,o(b)", GP, (int) BFD_RELOC_LO16,
4739 mips_frame_reg);
4740 }
4741 }
4742 else if (mips_pic == EMBEDDED_PIC)
4743 {
4744 macro_build ((char *) NULL, &icnt, &offset_expr, "bal", "p");
4745 /* The linker may expand the call to a longer sequence which
4746 uses $at, so we must break rather than return. */
4747 break;
4748 }
4749 else
4750 abort ();
4751
4752 return;
4753
4754 case M_LB_AB:
4755 s = "lb";
4756 goto ld;
4757 case M_LBU_AB:
4758 s = "lbu";
4759 goto ld;
4760 case M_LH_AB:
4761 s = "lh";
4762 goto ld;
4763 case M_LHU_AB:
4764 s = "lhu";
4765 goto ld;
4766 case M_LW_AB:
4767 s = "lw";
4768 goto ld;
4769 case M_LWC0_AB:
4770 s = "lwc0";
4771 /* Itbl support may require additional care here. */
4772 coproc = 1;
4773 goto ld;
4774 case M_LWC1_AB:
4775 s = "lwc1";
4776 /* Itbl support may require additional care here. */
4777 coproc = 1;
4778 goto ld;
4779 case M_LWC2_AB:
4780 s = "lwc2";
4781 /* Itbl support may require additional care here. */
4782 coproc = 1;
4783 goto ld;
4784 case M_LWC3_AB:
4785 s = "lwc3";
4786 /* Itbl support may require additional care here. */
4787 coproc = 1;
4788 goto ld;
4789 case M_LWL_AB:
4790 s = "lwl";
4791 lr = 1;
4792 goto ld;
4793 case M_LWR_AB:
4794 s = "lwr";
4795 lr = 1;
4796 goto ld;
4797 case M_LDC1_AB:
4798 if (mips_4650)
4799 {
4800 as_bad ("opcode not supported on this processor");
4801 return;
4802 }
4803 s = "ldc1";
4804 /* Itbl support may require additional care here. */
4805 coproc = 1;
4806 goto ld;
4807 case M_LDC2_AB:
4808 s = "ldc2";
4809 /* Itbl support may require additional care here. */
4810 coproc = 1;
4811 goto ld;
4812 case M_LDC3_AB:
4813 s = "ldc3";
4814 /* Itbl support may require additional care here. */
4815 coproc = 1;
4816 goto ld;
4817 case M_LDL_AB:
4818 s = "ldl";
4819 lr = 1;
4820 goto ld;
4821 case M_LDR_AB:
4822 s = "ldr";
4823 lr = 1;
4824 goto ld;
4825 case M_LL_AB:
4826 s = "ll";
4827 goto ld;
4828 case M_LLD_AB:
4829 s = "lld";
4830 goto ld;
4831 case M_LWU_AB:
4832 s = "lwu";
4833 ld:
4834 if (breg == treg || coproc || lr)
4835 {
4836 tempreg = AT;
4837 used_at = 1;
4838 }
4839 else
4840 {
4841 tempreg = treg;
4842 used_at = 0;
4843 }
4844 goto ld_st;
4845 case M_SB_AB:
4846 s = "sb";
4847 goto st;
4848 case M_SH_AB:
4849 s = "sh";
4850 goto st;
4851 case M_SW_AB:
4852 s = "sw";
4853 goto st;
4854 case M_SWC0_AB:
4855 s = "swc0";
4856 /* Itbl support may require additional care here. */
4857 coproc = 1;
4858 goto st;
4859 case M_SWC1_AB:
4860 s = "swc1";
4861 /* Itbl support may require additional care here. */
4862 coproc = 1;
4863 goto st;
4864 case M_SWC2_AB:
4865 s = "swc2";
4866 /* Itbl support may require additional care here. */
4867 coproc = 1;
4868 goto st;
4869 case M_SWC3_AB:
4870 s = "swc3";
4871 /* Itbl support may require additional care here. */
4872 coproc = 1;
4873 goto st;
4874 case M_SWL_AB:
4875 s = "swl";
4876 goto st;
4877 case M_SWR_AB:
4878 s = "swr";
4879 goto st;
4880 case M_SC_AB:
4881 s = "sc";
4882 goto st;
4883 case M_SCD_AB:
4884 s = "scd";
4885 goto st;
4886 case M_SDC1_AB:
4887 if (mips_4650)
4888 {
4889 as_bad ("opcode not supported on this processor");
4890 return;
4891 }
4892 s = "sdc1";
4893 coproc = 1;
4894 /* Itbl support may require additional care here. */
4895 goto st;
4896 case M_SDC2_AB:
4897 s = "sdc2";
4898 /* Itbl support may require additional care here. */
4899 coproc = 1;
4900 goto st;
4901 case M_SDC3_AB:
4902 s = "sdc3";
4903 /* Itbl support may require additional care here. */
4904 coproc = 1;
4905 goto st;
4906 case M_SDL_AB:
4907 s = "sdl";
4908 goto st;
4909 case M_SDR_AB:
4910 s = "sdr";
4911 st:
4912 tempreg = AT;
4913 used_at = 1;
4914 ld_st:
4915 /* Itbl support may require additional care here. */
4916 if (mask == M_LWC1_AB
4917 || mask == M_SWC1_AB
4918 || mask == M_LDC1_AB
4919 || mask == M_SDC1_AB
4920 || mask == M_L_DAB
4921 || mask == M_S_DAB)
4922 fmt = "T,o(b)";
4923 else if (coproc)
4924 fmt = "E,o(b)";
4925 else
4926 fmt = "t,o(b)";
4927
4928 if (offset_expr.X_op != O_constant
4929 && offset_expr.X_op != O_symbol)
4930 {
4931 as_bad ("expression too complex");
4932 offset_expr.X_op = O_constant;
4933 }
4934
4935 /* A constant expression in PIC code can be handled just as it
4936 is in non PIC code. */
4937 if (mips_pic == NO_PIC
4938 || offset_expr.X_op == O_constant)
4939 {
4940 /* If this is a reference to a GP relative symbol, and there
4941 is no base register, we want
4942 <op> $treg,<sym>($gp) (BFD_RELOC_MIPS_GPREL)
4943 Otherwise, if there is no base register, we want
4944 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4945 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
4946 If we have a constant, we need two instructions anyhow,
4947 so we always use the latter form.
4948
4949 If we have a base register, and this is a reference to a
4950 GP relative symbol, we want
4951 addu $tempreg,$breg,$gp
4952 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GPREL)
4953 Otherwise we want
4954 lui $tempreg,<sym> (BFD_RELOC_HI16_S)
4955 addu $tempreg,$tempreg,$breg
4956 <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16)
4957 With a constant we always use the latter case. */
4958 if (breg == 0)
4959 {
4960 if ((valueT) offset_expr.X_add_number >= MAX_GPREL_OFFSET
4961 || nopic_need_relax (offset_expr.X_add_symbol, 1))
4962 p = NULL;
4963 else
4964 {
4965 frag_grow (20);
4966 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
4967 treg, (int) BFD_RELOC_MIPS_GPREL, GP);
4968 p = frag_var (rs_machine_dependent, 8, 0,
4969 RELAX_ENCODE (4, 8, 0, 4, 0,
4970 (mips_opts.warn_about_macros
4971 || (used_at
4972 && mips_opts.noat))),
4973 offset_expr.X_add_symbol, (offsetT) 0,
4974 (char *) NULL);
4975 used_at = 0;
4976 }
4977 macro_build_lui (p, &icnt, &offset_expr, tempreg);
4978 if (p != NULL)
4979 p += 4;
4980 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
4981 (int) BFD_RELOC_LO16, tempreg);
4982 }
4983 else
4984 {
4985 if ((valueT) offset_expr.X_add_number >= MAX_GPREL_OFFSET
4986 || nopic_need_relax (offset_expr.X_add_symbol, 1))
4987 p = NULL;
4988 else
4989 {
4990 frag_grow (28);
4991 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
4992 ((bfd_arch_bits_per_address (stdoutput) == 32
4993 || mips_opts.isa < 3)
4994 ? "addu" : "daddu"),
4995 "d,v,t", tempreg, breg, GP);
4996 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
4997 treg, (int) BFD_RELOC_MIPS_GPREL, tempreg);
4998 p = frag_var (rs_machine_dependent, 12, 0,
4999 RELAX_ENCODE (8, 12, 0, 8, 0, 0),
5000 offset_expr.X_add_symbol, (offsetT) 0,
5001 (char *) NULL);
5002 }
5003 macro_build_lui (p, &icnt, &offset_expr, tempreg);
5004 if (p != NULL)
5005 p += 4;
5006 macro_build (p, &icnt, (expressionS *) NULL,
5007 ((bfd_arch_bits_per_address (stdoutput) == 32
5008 || mips_opts.isa < 3)
5009 ? "addu" : "daddu"),
5010 "d,v,t", tempreg, tempreg, breg);
5011 if (p != NULL)
5012 p += 4;
5013 macro_build (p, &icnt, &offset_expr, s, fmt, treg,
5014 (int) BFD_RELOC_LO16, tempreg);
5015 }
5016 }
5017 else if (mips_pic == SVR4_PIC && ! mips_big_got)
5018 {
5019 /* If this is a reference to an external symbol, we want
5020 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5021 nop
5022 <op> $treg,0($tempreg)
5023 Otherwise we want
5024 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5025 nop
5026 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5027 <op> $treg,0($tempreg)
5028 If there is a base register, we add it to $tempreg before
5029 the <op>. If there is a constant, we stick it in the
5030 <op> instruction. We don't handle constants larger than
5031 16 bits, because we have no way to load the upper 16 bits
5032 (actually, we could handle them for the subset of cases
5033 in which we are not using $at). */
5034 assert (offset_expr.X_op == O_symbol);
5035 expr1.X_add_number = offset_expr.X_add_number;
5036 offset_expr.X_add_number = 0;
5037 if (expr1.X_add_number < -0x8000
5038 || expr1.X_add_number >= 0x8000)
5039 as_bad ("PIC code offset overflow (max 16 signed bits)");
5040 frag_grow (20);
5041 macro_build ((char *) NULL, &icnt, &offset_expr,
5042 ((bfd_arch_bits_per_address (stdoutput) == 32
5043 || mips_opts.isa < 3)
5044 ? "lw" : "ld"),
5045 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT16, GP);
5046 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
5047 p = frag_var (rs_machine_dependent, 4, 0,
5048 RELAX_ENCODE (0, 4, -8, 0, 0, 0),
5049 offset_expr.X_add_symbol, (offsetT) 0,
5050 (char *) NULL);
5051 macro_build (p, &icnt, &offset_expr,
5052 ((bfd_arch_bits_per_address (stdoutput) == 32
5053 || mips_opts.isa < 3)
5054 ? "addiu" : "daddiu"),
5055 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5056 if (breg != 0)
5057 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5058 ((bfd_arch_bits_per_address (stdoutput) == 32
5059 || mips_opts.isa < 3)
5060 ? "addu" : "daddu"),
5061 "d,v,t", tempreg, tempreg, breg);
5062 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
5063 (int) BFD_RELOC_LO16, tempreg);
5064 }
5065 else if (mips_pic == SVR4_PIC)
5066 {
5067 int gpdel;
5068
5069 /* If this is a reference to an external symbol, we want
5070 lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5071 addu $tempreg,$tempreg,$gp
5072 lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16)
5073 <op> $treg,0($tempreg)
5074 Otherwise we want
5075 lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5076 nop
5077 addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16)
5078 <op> $treg,0($tempreg)
5079 If there is a base register, we add it to $tempreg before
5080 the <op>. If there is a constant, we stick it in the
5081 <op> instruction. We don't handle constants larger than
5082 16 bits, because we have no way to load the upper 16 bits
5083 (actually, we could handle them for the subset of cases
5084 in which we are not using $at). */
5085 assert (offset_expr.X_op == O_symbol);
5086 expr1.X_add_number = offset_expr.X_add_number;
5087 offset_expr.X_add_number = 0;
5088 if (expr1.X_add_number < -0x8000
5089 || expr1.X_add_number >= 0x8000)
5090 as_bad ("PIC code offset overflow (max 16 signed bits)");
5091 if (reg_needs_delay (GP))
5092 gpdel = 4;
5093 else
5094 gpdel = 0;
5095 frag_grow (36);
5096 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
5097 tempreg, (int) BFD_RELOC_MIPS_GOT_HI16);
5098 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5099 ((bfd_arch_bits_per_address (stdoutput) == 32
5100 || mips_opts.isa < 3)
5101 ? "addu" : "daddu"),
5102 "d,v,t", tempreg, tempreg, GP);
5103 macro_build ((char *) NULL, &icnt, &offset_expr,
5104 ((bfd_arch_bits_per_address (stdoutput) == 32
5105 || mips_opts.isa < 3)
5106 ? "lw" : "ld"),
5107 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT_LO16,
5108 tempreg);
5109 p = frag_var (rs_machine_dependent, 12 + gpdel, 0,
5110 RELAX_ENCODE (12, 12 + gpdel, gpdel, 8 + gpdel, 0, 0),
5111 offset_expr.X_add_symbol, (offsetT) 0, (char *) NULL);
5112 if (gpdel > 0)
5113 {
5114 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5115 p += 4;
5116 }
5117 macro_build (p, &icnt, &offset_expr,
5118 ((bfd_arch_bits_per_address (stdoutput) == 32
5119 || mips_opts.isa < 3)
5120 ? "lw" : "ld"),
5121 "t,o(b)", tempreg, (int) BFD_RELOC_MIPS_GOT16, GP);
5122 p += 4;
5123 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5124 p += 4;
5125 macro_build (p, &icnt, &offset_expr,
5126 ((bfd_arch_bits_per_address (stdoutput) == 32
5127 || mips_opts.isa < 3)
5128 ? "addiu" : "daddiu"),
5129 "t,r,j", tempreg, tempreg, (int) BFD_RELOC_LO16);
5130 if (breg != 0)
5131 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5132 ((bfd_arch_bits_per_address (stdoutput) == 32
5133 || mips_opts.isa < 3)
5134 ? "addu" : "daddu"),
5135 "d,v,t", tempreg, tempreg, breg);
5136 macro_build ((char *) NULL, &icnt, &expr1, s, fmt, treg,
5137 (int) BFD_RELOC_LO16, tempreg);
5138 }
5139 else if (mips_pic == EMBEDDED_PIC)
5140 {
5141 /* If there is no base register, we want
5142 <op> $treg,<sym>($gp) (BFD_RELOC_MIPS_GPREL)
5143 If there is a base register, we want
5144 addu $tempreg,$breg,$gp
5145 <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GPREL)
5146 */
5147 assert (offset_expr.X_op == O_symbol);
5148 if (breg == 0)
5149 {
5150 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5151 treg, (int) BFD_RELOC_MIPS_GPREL, GP);
5152 used_at = 0;
5153 }
5154 else
5155 {
5156 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5157 ((bfd_arch_bits_per_address (stdoutput) == 32
5158 || mips_opts.isa < 3)
5159 ? "addu" : "daddu"),
5160 "d,v,t", tempreg, breg, GP);
5161 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5162 treg, (int) BFD_RELOC_MIPS_GPREL, tempreg);
5163 }
5164 }
5165 else
5166 abort ();
5167
5168 if (! used_at)
5169 return;
5170
5171 break;
5172
5173 case M_LI:
5174 case M_LI_S:
5175 load_register (&icnt, treg, &imm_expr, 0);
5176 return;
5177
5178 case M_DLI:
5179 load_register (&icnt, treg, &imm_expr, 1);
5180 return;
5181
5182 case M_LI_SS:
5183 if (imm_expr.X_op == O_constant)
5184 {
5185 load_register (&icnt, AT, &imm_expr, 0);
5186 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5187 "mtc1", "t,G", AT, treg);
5188 break;
5189 }
5190 else
5191 {
5192 assert (offset_expr.X_op == O_symbol
5193 && strcmp (segment_name (S_GET_SEGMENT
5194 (offset_expr.X_add_symbol)),
5195 ".lit4") == 0
5196 && offset_expr.X_add_number == 0);
5197 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
5198 treg, (int) BFD_RELOC_MIPS_LITERAL, GP);
5199 return;
5200 }
5201
5202 case M_LI_D:
5203 /* If we have a constant in IMM_EXPR, then in mips3 mode it is
5204 the entire value, and in mips1 mode it is the high order 32
5205 bits of the value and the low order 32 bits are either zero
5206 or in offset_expr. */
5207 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
5208 {
5209 if (mips_opts.isa >= 3)
5210 load_register (&icnt, treg, &imm_expr, 1);
5211 else
5212 {
5213 int hreg, lreg;
5214
5215 if (target_big_endian)
5216 {
5217 hreg = treg;
5218 lreg = treg + 1;
5219 }
5220 else
5221 {
5222 hreg = treg + 1;
5223 lreg = treg;
5224 }
5225
5226 if (hreg <= 31)
5227 load_register (&icnt, hreg, &imm_expr, 0);
5228 if (lreg <= 31)
5229 {
5230 if (offset_expr.X_op == O_absent)
5231 macro_build ((char *) NULL, &icnt, NULL, "move", "d,s",
5232 lreg, 0);
5233 else
5234 {
5235 assert (offset_expr.X_op == O_constant);
5236 load_register (&icnt, lreg, &offset_expr, 0);
5237 }
5238 }
5239 }
5240 return;
5241 }
5242
5243 /* We know that sym is in the .rdata section. First we get the
5244 upper 16 bits of the address. */
5245 if (mips_pic == NO_PIC)
5246 {
5247 /* FIXME: This won't work for a 64 bit address. */
5248 macro_build_lui ((char *) NULL, &icnt, &offset_expr, AT);
5249 }
5250 else if (mips_pic == SVR4_PIC)
5251 {
5252 macro_build ((char *) NULL, &icnt, &offset_expr,
5253 ((bfd_arch_bits_per_address (stdoutput) == 32
5254 || mips_opts.isa < 3)
5255 ? "lw" : "ld"),
5256 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16, GP);
5257 }
5258 else if (mips_pic == EMBEDDED_PIC)
5259 {
5260 /* For embedded PIC we pick up the entire address off $gp in
5261 a single instruction. */
5262 macro_build ((char *) NULL, &icnt, &offset_expr,
5263 ((bfd_arch_bits_per_address (stdoutput) == 32
5264 || mips_opts.isa < 3)
5265 ? "addiu" : "daddiu"),
5266 "t,r,j", AT, GP, (int) BFD_RELOC_MIPS_GPREL);
5267 offset_expr.X_op = O_constant;
5268 offset_expr.X_add_number = 0;
5269 }
5270 else
5271 abort ();
5272
5273 /* Now we load the register(s). */
5274 if (mips_opts.isa >= 3)
5275 macro_build ((char *) NULL, &icnt, &offset_expr, "ld", "t,o(b)",
5276 treg, (int) BFD_RELOC_LO16, AT);
5277 else
5278 {
5279 macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
5280 treg, (int) BFD_RELOC_LO16, AT);
5281 if (treg != 31)
5282 {
5283 /* FIXME: How in the world do we deal with the possible
5284 overflow here? */
5285 offset_expr.X_add_number += 4;
5286 macro_build ((char *) NULL, &icnt, &offset_expr, "lw", "t,o(b)",
5287 treg + 1, (int) BFD_RELOC_LO16, AT);
5288 }
5289 }
5290
5291 /* To avoid confusion in tc_gen_reloc, we must ensure that this
5292 does not become a variant frag. */
5293 frag_wane (frag_now);
5294 frag_new (0);
5295
5296 break;
5297
5298 case M_LI_DD:
5299 /* If we have a constant in IMM_EXPR, then in mips3 mode it is
5300 the entire value, and in mips1 mode it is the high order 32
5301 bits of the value and the low order 32 bits are either zero
5302 or in offset_expr. */
5303 if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big)
5304 {
5305 load_register (&icnt, AT, &imm_expr, mips_opts.isa >= 3);
5306 if (mips_opts.isa >= 3)
5307 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5308 "dmtc1", "t,S", AT, treg);
5309 else
5310 {
5311 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5312 "mtc1", "t,G", AT, treg + 1);
5313 if (offset_expr.X_op == O_absent)
5314 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5315 "mtc1", "t,G", 0, treg);
5316 else
5317 {
5318 assert (offset_expr.X_op == O_constant);
5319 load_register (&icnt, AT, &offset_expr, 0);
5320 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5321 "mtc1", "t,G", AT, treg);
5322 }
5323 }
5324 break;
5325 }
5326
5327 assert (offset_expr.X_op == O_symbol
5328 && offset_expr.X_add_number == 0);
5329 s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol));
5330 if (strcmp (s, ".lit8") == 0)
5331 {
5332 if (mips_opts.isa >= 2)
5333 {
5334 macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
5335 "T,o(b)", treg, (int) BFD_RELOC_MIPS_LITERAL, GP);
5336 return;
5337 }
5338 breg = GP;
5339 r = BFD_RELOC_MIPS_LITERAL;
5340 goto dob;
5341 }
5342 else
5343 {
5344 assert (strcmp (s, RDATA_SECTION_NAME) == 0);
5345 if (mips_pic == SVR4_PIC)
5346 macro_build ((char *) NULL, &icnt, &offset_expr,
5347 ((bfd_arch_bits_per_address (stdoutput) == 32
5348 || mips_opts.isa < 3)
5349 ? "lw" : "ld"),
5350 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16, GP);
5351 else
5352 {
5353 /* FIXME: This won't work for a 64 bit address. */
5354 macro_build_lui ((char *) NULL, &icnt, &offset_expr, AT);
5355 }
5356
5357 if (mips_opts.isa >= 2)
5358 {
5359 macro_build ((char *) NULL, &icnt, &offset_expr, "ldc1",
5360 "T,o(b)", treg, (int) BFD_RELOC_LO16, AT);
5361
5362 /* To avoid confusion in tc_gen_reloc, we must ensure
5363 that this does not become a variant frag. */
5364 frag_wane (frag_now);
5365 frag_new (0);
5366
5367 break;
5368 }
5369 breg = AT;
5370 r = BFD_RELOC_LO16;
5371 goto dob;
5372 }
5373
5374 case M_L_DOB:
5375 if (mips_4650)
5376 {
5377 as_bad ("opcode not supported on this processor");
5378 return;
5379 }
5380 /* Even on a big endian machine $fn comes before $fn+1. We have
5381 to adjust when loading from memory. */
5382 r = BFD_RELOC_LO16;
5383 dob:
5384 assert (mips_opts.isa < 2);
5385 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
5386 target_big_endian ? treg + 1 : treg,
5387 (int) r, breg);
5388 /* FIXME: A possible overflow which I don't know how to deal
5389 with. */
5390 offset_expr.X_add_number += 4;
5391 macro_build ((char *) NULL, &icnt, &offset_expr, "lwc1", "T,o(b)",
5392 target_big_endian ? treg : treg + 1,
5393 (int) r, breg);
5394
5395 /* To avoid confusion in tc_gen_reloc, we must ensure that this
5396 does not become a variant frag. */
5397 frag_wane (frag_now);
5398 frag_new (0);
5399
5400 if (breg != AT)
5401 return;
5402 break;
5403
5404 case M_L_DAB:
5405 /*
5406 * The MIPS assembler seems to check for X_add_number not
5407 * being double aligned and generating:
5408 * lui at,%hi(foo+1)
5409 * addu at,at,v1
5410 * addiu at,at,%lo(foo+1)
5411 * lwc1 f2,0(at)
5412 * lwc1 f3,4(at)
5413 * But, the resulting address is the same after relocation so why
5414 * generate the extra instruction?
5415 */
5416 if (mips_4650)
5417 {
5418 as_bad ("opcode not supported on this processor");
5419 return;
5420 }
5421 /* Itbl support may require additional care here. */
5422 coproc = 1;
5423 if (mips_opts.isa >= 2)
5424 {
5425 s = "ldc1";
5426 goto ld;
5427 }
5428
5429 s = "lwc1";
5430 fmt = "T,o(b)";
5431 goto ldd_std;
5432
5433 case M_S_DAB:
5434 if (mips_4650)
5435 {
5436 as_bad ("opcode not supported on this processor");
5437 return;
5438 }
5439
5440 if (mips_opts.isa >= 2)
5441 {
5442 s = "sdc1";
5443 goto st;
5444 }
5445
5446 s = "swc1";
5447 fmt = "T,o(b)";
5448 /* Itbl support may require additional care here. */
5449 coproc = 1;
5450 goto ldd_std;
5451
5452 case M_LD_AB:
5453 if (mips_opts.isa >= 3)
5454 {
5455 s = "ld";
5456 goto ld;
5457 }
5458
5459 s = "lw";
5460 fmt = "t,o(b)";
5461 goto ldd_std;
5462
5463 case M_SD_AB:
5464 if (mips_opts.isa >= 3)
5465 {
5466 s = "sd";
5467 goto st;
5468 }
5469
5470 s = "sw";
5471 fmt = "t,o(b)";
5472
5473 ldd_std:
5474 if (offset_expr.X_op != O_symbol
5475 && offset_expr.X_op != O_constant)
5476 {
5477 as_bad ("expression too complex");
5478 offset_expr.X_op = O_constant;
5479 }
5480
5481 /* Even on a big endian machine $fn comes before $fn+1. We have
5482 to adjust when loading from memory. We set coproc if we must
5483 load $fn+1 first. */
5484 /* Itbl support may require additional care here. */
5485 if (! target_big_endian)
5486 coproc = 0;
5487
5488 if (mips_pic == NO_PIC
5489 || offset_expr.X_op == O_constant)
5490 {
5491 /* If this is a reference to a GP relative symbol, we want
5492 <op> $treg,<sym>($gp) (BFD_RELOC_MIPS_GPREL)
5493 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_MIPS_GPREL)
5494 If we have a base register, we use this
5495 addu $at,$breg,$gp
5496 <op> $treg,<sym>($at) (BFD_RELOC_MIPS_GPREL)
5497 <op> $treg+1,<sym>+4($at) (BFD_RELOC_MIPS_GPREL)
5498 If this is not a GP relative symbol, we want
5499 lui $at,<sym> (BFD_RELOC_HI16_S)
5500 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
5501 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
5502 If there is a base register, we add it to $at after the
5503 lui instruction. If there is a constant, we always use
5504 the last case. */
5505 if ((valueT) offset_expr.X_add_number >= MAX_GPREL_OFFSET
5506 || nopic_need_relax (offset_expr.X_add_symbol, 1))
5507 {
5508 p = NULL;
5509 used_at = 1;
5510 }
5511 else
5512 {
5513 int off;
5514
5515 if (breg == 0)
5516 {
5517 frag_grow (28);
5518 tempreg = GP;
5519 off = 0;
5520 used_at = 0;
5521 }
5522 else
5523 {
5524 frag_grow (36);
5525 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5526 ((bfd_arch_bits_per_address (stdoutput) == 32
5527 || mips_opts.isa < 3)
5528 ? "addu" : "daddu"),
5529 "d,v,t", AT, breg, GP);
5530 tempreg = AT;
5531 off = 4;
5532 used_at = 1;
5533 }
5534
5535 /* Itbl support may require additional care here. */
5536 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5537 coproc ? treg + 1 : treg,
5538 (int) BFD_RELOC_MIPS_GPREL, tempreg);
5539 offset_expr.X_add_number += 4;
5540
5541 /* Set mips_optimize to 2 to avoid inserting an
5542 undesired nop. */
5543 hold_mips_optimize = mips_optimize;
5544 mips_optimize = 2;
5545 /* Itbl support may require additional care here. */
5546 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5547 coproc ? treg : treg + 1,
5548 (int) BFD_RELOC_MIPS_GPREL, tempreg);
5549 mips_optimize = hold_mips_optimize;
5550
5551 p = frag_var (rs_machine_dependent, 12 + off, 0,
5552 RELAX_ENCODE (8 + off, 12 + off, 0, 4 + off, 1,
5553 used_at && mips_opts.noat),
5554 offset_expr.X_add_symbol, (offsetT) 0,
5555 (char *) NULL);
5556
5557 /* We just generated two relocs. When tc_gen_reloc
5558 handles this case, it will skip the first reloc and
5559 handle the second. The second reloc already has an
5560 extra addend of 4, which we added above. We must
5561 subtract it out, and then subtract another 4 to make
5562 the first reloc come out right. The second reloc
5563 will come out right because we are going to add 4 to
5564 offset_expr when we build its instruction below.
5565
5566 If we have a symbol, then we don't want to include
5567 the offset, because it will wind up being included
5568 when we generate the reloc. */
5569
5570 if (offset_expr.X_op == O_constant)
5571 offset_expr.X_add_number -= 8;
5572 else
5573 {
5574 offset_expr.X_add_number = -4;
5575 offset_expr.X_op = O_constant;
5576 }
5577 }
5578 macro_build_lui (p, &icnt, &offset_expr, AT);
5579 if (p != NULL)
5580 p += 4;
5581 if (breg != 0)
5582 {
5583 macro_build (p, &icnt, (expressionS *) NULL,
5584 ((bfd_arch_bits_per_address (stdoutput) == 32
5585 || mips_opts.isa < 3)
5586 ? "addu" : "daddu"),
5587 "d,v,t", AT, breg, AT);
5588 if (p != NULL)
5589 p += 4;
5590 }
5591 /* Itbl support may require additional care here. */
5592 macro_build (p, &icnt, &offset_expr, s, fmt,
5593 coproc ? treg + 1 : treg,
5594 (int) BFD_RELOC_LO16, AT);
5595 if (p != NULL)
5596 p += 4;
5597 /* FIXME: How do we handle overflow here? */
5598 offset_expr.X_add_number += 4;
5599 /* Itbl support may require additional care here. */
5600 macro_build (p, &icnt, &offset_expr, s, fmt,
5601 coproc ? treg : treg + 1,
5602 (int) BFD_RELOC_LO16, AT);
5603 }
5604 else if (mips_pic == SVR4_PIC && ! mips_big_got)
5605 {
5606 int off;
5607
5608 /* If this is a reference to an external symbol, we want
5609 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5610 nop
5611 <op> $treg,0($at)
5612 <op> $treg+1,4($at)
5613 Otherwise we want
5614 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5615 nop
5616 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
5617 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
5618 If there is a base register we add it to $at before the
5619 lwc1 instructions. If there is a constant we include it
5620 in the lwc1 instructions. */
5621 used_at = 1;
5622 expr1.X_add_number = offset_expr.X_add_number;
5623 offset_expr.X_add_number = 0;
5624 if (expr1.X_add_number < -0x8000
5625 || expr1.X_add_number >= 0x8000 - 4)
5626 as_bad ("PIC code offset overflow (max 16 signed bits)");
5627 if (breg == 0)
5628 off = 0;
5629 else
5630 off = 4;
5631 frag_grow (24 + off);
5632 macro_build ((char *) NULL, &icnt, &offset_expr,
5633 ((bfd_arch_bits_per_address (stdoutput) == 32
5634 || mips_opts.isa < 3)
5635 ? "lw" : "ld"),
5636 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16, GP);
5637 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
5638 if (breg != 0)
5639 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5640 ((bfd_arch_bits_per_address (stdoutput) == 32
5641 || mips_opts.isa < 3)
5642 ? "addu" : "daddu"),
5643 "d,v,t", AT, breg, AT);
5644 /* Itbl support may require additional care here. */
5645 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
5646 coproc ? treg + 1 : treg,
5647 (int) BFD_RELOC_LO16, AT);
5648 expr1.X_add_number += 4;
5649
5650 /* Set mips_optimize to 2 to avoid inserting an undesired
5651 nop. */
5652 hold_mips_optimize = mips_optimize;
5653 mips_optimize = 2;
5654 /* Itbl support may require additional care here. */
5655 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
5656 coproc ? treg : treg + 1,
5657 (int) BFD_RELOC_LO16, AT);
5658 mips_optimize = hold_mips_optimize;
5659
5660 (void) frag_var (rs_machine_dependent, 0, 0,
5661 RELAX_ENCODE (0, 0, -16 - off, -8, 1, 0),
5662 offset_expr.X_add_symbol, (offsetT) 0,
5663 (char *) NULL);
5664 }
5665 else if (mips_pic == SVR4_PIC)
5666 {
5667 int gpdel, off;
5668
5669 /* If this is a reference to an external symbol, we want
5670 lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16)
5671 addu $at,$at,$gp
5672 lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16)
5673 nop
5674 <op> $treg,0($at)
5675 <op> $treg+1,4($at)
5676 Otherwise we want
5677 lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16)
5678 nop
5679 <op> $treg,<sym>($at) (BFD_RELOC_LO16)
5680 <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16)
5681 If there is a base register we add it to $at before the
5682 lwc1 instructions. If there is a constant we include it
5683 in the lwc1 instructions. */
5684 used_at = 1;
5685 expr1.X_add_number = offset_expr.X_add_number;
5686 offset_expr.X_add_number = 0;
5687 if (expr1.X_add_number < -0x8000
5688 || expr1.X_add_number >= 0x8000 - 4)
5689 as_bad ("PIC code offset overflow (max 16 signed bits)");
5690 if (reg_needs_delay (GP))
5691 gpdel = 4;
5692 else
5693 gpdel = 0;
5694 if (breg == 0)
5695 off = 0;
5696 else
5697 off = 4;
5698 frag_grow (56);
5699 macro_build ((char *) NULL, &icnt, &offset_expr, "lui", "t,u",
5700 AT, (int) BFD_RELOC_MIPS_GOT_HI16);
5701 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5702 ((bfd_arch_bits_per_address (stdoutput) == 32
5703 || mips_opts.isa < 3)
5704 ? "addu" : "daddu"),
5705 "d,v,t", AT, AT, GP);
5706 macro_build ((char *) NULL, &icnt, &offset_expr,
5707 ((bfd_arch_bits_per_address (stdoutput) == 32
5708 || mips_opts.isa < 3)
5709 ? "lw" : "ld"),
5710 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT_LO16, AT);
5711 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "nop", "");
5712 if (breg != 0)
5713 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5714 ((bfd_arch_bits_per_address (stdoutput) == 32
5715 || mips_opts.isa < 3)
5716 ? "addu" : "daddu"),
5717 "d,v,t", AT, breg, AT);
5718 /* Itbl support may require additional care here. */
5719 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
5720 coproc ? treg + 1 : treg,
5721 (int) BFD_RELOC_LO16, AT);
5722 expr1.X_add_number += 4;
5723
5724 /* Set mips_optimize to 2 to avoid inserting an undesired
5725 nop. */
5726 hold_mips_optimize = mips_optimize;
5727 mips_optimize = 2;
5728 /* Itbl support may require additional care here. */
5729 macro_build ((char *) NULL, &icnt, &expr1, s, fmt,
5730 coproc ? treg : treg + 1,
5731 (int) BFD_RELOC_LO16, AT);
5732 mips_optimize = hold_mips_optimize;
5733 expr1.X_add_number -= 4;
5734
5735 p = frag_var (rs_machine_dependent, 16 + gpdel + off, 0,
5736 RELAX_ENCODE (24 + off, 16 + gpdel + off, gpdel,
5737 8 + gpdel + off, 1, 0),
5738 offset_expr.X_add_symbol, (offsetT) 0,
5739 (char *) NULL);
5740 if (gpdel > 0)
5741 {
5742 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5743 p += 4;
5744 }
5745 macro_build (p, &icnt, &offset_expr,
5746 ((bfd_arch_bits_per_address (stdoutput) == 32
5747 || mips_opts.isa < 3)
5748 ? "lw" : "ld"),
5749 "t,o(b)", AT, (int) BFD_RELOC_MIPS_GOT16, GP);
5750 p += 4;
5751 macro_build (p, &icnt, (expressionS *) NULL, "nop", "");
5752 p += 4;
5753 if (breg != 0)
5754 {
5755 macro_build (p, &icnt, (expressionS *) NULL,
5756 ((bfd_arch_bits_per_address (stdoutput) == 32
5757 || mips_opts.isa < 3)
5758 ? "addu" : "daddu"),
5759 "d,v,t", AT, breg, AT);
5760 p += 4;
5761 }
5762 /* Itbl support may require additional care here. */
5763 macro_build (p, &icnt, &expr1, s, fmt,
5764 coproc ? treg + 1 : treg,
5765 (int) BFD_RELOC_LO16, AT);
5766 p += 4;
5767 expr1.X_add_number += 4;
5768
5769 /* Set mips_optimize to 2 to avoid inserting an undesired
5770 nop. */
5771 hold_mips_optimize = mips_optimize;
5772 mips_optimize = 2;
5773 /* Itbl support may require additional care here. */
5774 macro_build (p, &icnt, &expr1, s, fmt,
5775 coproc ? treg : treg + 1,
5776 (int) BFD_RELOC_LO16, AT);
5777 mips_optimize = hold_mips_optimize;
5778 }
5779 else if (mips_pic == EMBEDDED_PIC)
5780 {
5781 /* If there is no base register, we use
5782 <op> $treg,<sym>($gp) (BFD_RELOC_MIPS_GPREL)
5783 <op> $treg+1,<sym>+4($gp) (BFD_RELOC_MIPS_GPREL)
5784 If we have a base register, we use
5785 addu $at,$breg,$gp
5786 <op> $treg,<sym>($at) (BFD_RELOC_MIPS_GPREL)
5787 <op> $treg+1,<sym>+4($at) (BFD_RELOC_MIPS_GPREL)
5788 */
5789 if (breg == 0)
5790 {
5791 tempreg = GP;
5792 used_at = 0;
5793 }
5794 else
5795 {
5796 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
5797 ((bfd_arch_bits_per_address (stdoutput) == 32
5798 || mips_opts.isa < 3)
5799 ? "addu" : "daddu"),
5800 "d,v,t", AT, breg, GP);
5801 tempreg = AT;
5802 used_at = 1;
5803 }
5804
5805 /* Itbl support may require additional care here. */
5806 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5807 coproc ? treg + 1 : treg,
5808 (int) BFD_RELOC_MIPS_GPREL, tempreg);
5809 offset_expr.X_add_number += 4;
5810 /* Itbl support may require additional care here. */
5811 macro_build ((char *) NULL, &icnt, &offset_expr, s, fmt,
5812 coproc ? treg : treg + 1,
5813 (int) BFD_RELOC_MIPS_GPREL, tempreg);
5814 }
5815 else
5816 abort ();
5817
5818 if (! used_at)
5819 return;
5820
5821 break;
5822
5823 case M_LD_OB:
5824 s = "lw";
5825 goto sd_ob;
5826 case M_SD_OB:
5827 s = "sw";
5828 sd_ob:
5829 assert (bfd_arch_bits_per_address (stdoutput) == 32 || mips_opts.isa < 3);
5830 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
5831 (int) BFD_RELOC_LO16, breg);
5832 offset_expr.X_add_number += 4;
5833 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg + 1,
5834 (int) BFD_RELOC_LO16, breg);
5835 return;
5836
5837 /* New code added to support COPZ instructions.
5838 This code builds table entries out of the macros in mip_opcodes.
5839 R4000 uses interlocks to handle coproc delays.
5840 Other chips (like the R3000) require nops to be inserted for delays.
5841
5842 FIXME: Currently, we require that the user handle delays.
5843 In order to fill delay slots for non-interlocked chips,
5844 we must have a way to specify delays based on the coprocessor.
5845 Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc.
5846 What are the side-effects of the cop instruction?
5847 What cache support might we have and what are its effects?
5848 Both coprocessor & memory require delays. how long???
5849 What registers are read/set/modified?
5850
5851 If an itbl is provided to interpret cop instructions,
5852 this knowledge can be encoded in the itbl spec. */
5853
5854 case M_COP0:
5855 s = "c0";
5856 goto copz;
5857 case M_COP1:
5858 s = "c1";
5859 goto copz;
5860 case M_COP2:
5861 s = "c2";
5862 goto copz;
5863 case M_COP3:
5864 s = "c3";
5865 copz:
5866 /* For now we just do C (same as Cz). The parameter will be
5867 stored in insn_opcode by mips_ip. */
5868 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "C",
5869 ip->insn_opcode);
5870 return;
5871
5872 #ifdef LOSING_COMPILER
5873 default:
5874 /* Try and see if this is a new itbl instruction.
5875 This code builds table entries out of the macros in mip_opcodes.
5876 FIXME: For now we just assemble the expression and pass it's
5877 value along as a 32-bit immediate.
5878 We may want to have the assembler assemble this value,
5879 so that we gain the assembler's knowledge of delay slots,
5880 symbols, etc.
5881 Would it be more efficient to use mask (id) here? */
5882 if (itbl_have_entries
5883 && (immed_expr = itbl_assemble (ip->insn_mo->name, "")))
5884 {
5885 s = ip->insn_mo->name;
5886 s2 = "cop3";
5887 coproc = ITBL_DECODE_PNUM (immed_expr);;
5888 macro_build ((char *) NULL, &icnt, &immed_expr, s, "C");
5889 return;
5890 }
5891 macro2 (ip);
5892 return;
5893 }
5894 if (mips_opts.noat)
5895 as_warn ("Macro used $at after \".set noat\"");
5896 }
5897
5898 static void
5899 macro2 (ip)
5900 struct mips_cl_insn *ip;
5901 {
5902 register int treg, sreg, dreg, breg;
5903 int tempreg;
5904 int mask;
5905 int icnt = 0;
5906 int used_at;
5907 expressionS expr1;
5908 const char *s;
5909 const char *s2;
5910 const char *fmt;
5911 int likely = 0;
5912 int dbl = 0;
5913 int coproc = 0;
5914 int lr = 0;
5915 int off;
5916 offsetT maxnum;
5917 bfd_reloc_code_real_type r;
5918 char *p;
5919
5920 treg = (ip->insn_opcode >> 16) & 0x1f;
5921 dreg = (ip->insn_opcode >> 11) & 0x1f;
5922 sreg = breg = (ip->insn_opcode >> 21) & 0x1f;
5923 mask = ip->insn_mo->mask;
5924
5925 expr1.X_op = O_constant;
5926 expr1.X_op_symbol = NULL;
5927 expr1.X_add_symbol = NULL;
5928 expr1.X_add_number = 1;
5929
5930 switch (mask)
5931 {
5932 #endif /* LOSING_COMPILER */
5933
5934 case M_DMUL:
5935 dbl = 1;
5936 case M_MUL:
5937 macro_build ((char *) NULL, &icnt, NULL,
5938 dbl ? "dmultu" : "multu",
5939 "s,t", sreg, treg);
5940 macro_build ((char *) NULL, &icnt, NULL, "mflo", "d", dreg);
5941 return;
5942
5943 case M_DMUL_I:
5944 dbl = 1;
5945 case M_MUL_I:
5946 /* The MIPS assembler some times generates shifts and adds. I'm
5947 not trying to be that fancy. GCC should do this for us
5948 anyway. */
5949 load_register (&icnt, AT, &imm_expr, dbl);
5950 macro_build ((char *) NULL, &icnt, NULL,
5951 dbl ? "dmult" : "mult",
5952 "s,t", sreg, AT);
5953 macro_build ((char *) NULL, &icnt, NULL, "mflo", "d", dreg);
5954 break;
5955
5956 case M_DMULO:
5957 dbl = 1;
5958 case M_MULO:
5959 mips_emit_delays (true);
5960 ++mips_opts.noreorder;
5961 mips_any_noreorder = 1;
5962 macro_build ((char *) NULL, &icnt, NULL,
5963 dbl ? "dmult" : "mult",
5964 "s,t", sreg, treg);
5965 macro_build ((char *) NULL, &icnt, NULL, "mflo", "d", dreg);
5966 macro_build ((char *) NULL, &icnt, NULL,
5967 dbl ? "dsra32" : "sra",
5968 "d,w,<", dreg, dreg, 31);
5969 macro_build ((char *) NULL, &icnt, NULL, "mfhi", "d", AT);
5970 if (mips_trap)
5971 macro_build ((char *) NULL, &icnt, NULL, "tne", "s,t", dreg, AT);
5972 else
5973 {
5974 expr1.X_add_number = 8;
5975 macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", dreg, AT);
5976 macro_build ((char *) NULL, &icnt, NULL, "nop", "", 0);
5977 macro_build ((char *) NULL, &icnt, NULL, "break", "c", 6);
5978 }
5979 --mips_opts.noreorder;
5980 macro_build ((char *) NULL, &icnt, NULL, "mflo", "d", dreg);
5981 break;
5982
5983 case M_DMULOU:
5984 dbl = 1;
5985 case M_MULOU:
5986 mips_emit_delays (true);
5987 ++mips_opts.noreorder;
5988 mips_any_noreorder = 1;
5989 macro_build ((char *) NULL, &icnt, NULL,
5990 dbl ? "dmultu" : "multu",
5991 "s,t", sreg, treg);
5992 macro_build ((char *) NULL, &icnt, NULL, "mfhi", "d", AT);
5993 macro_build ((char *) NULL, &icnt, NULL, "mflo", "d", dreg);
5994 if (mips_trap)
5995 macro_build ((char *) NULL, &icnt, NULL, "tne", "s,t", AT, 0);
5996 else
5997 {
5998 expr1.X_add_number = 8;
5999 macro_build ((char *) NULL, &icnt, &expr1, "beq", "s,t,p", AT, 0);
6000 macro_build ((char *) NULL, &icnt, NULL, "nop", "", 0);
6001 macro_build ((char *) NULL, &icnt, NULL, "break", "c", 6);
6002 }
6003 --mips_opts.noreorder;
6004 break;
6005
6006 case M_ROL:
6007 macro_build ((char *) NULL, &icnt, NULL, "subu", "d,v,t", AT, 0, treg);
6008 macro_build ((char *) NULL, &icnt, NULL, "srlv", "d,t,s", AT, sreg, AT);
6009 macro_build ((char *) NULL, &icnt, NULL, "sllv", "d,t,s", dreg, sreg,
6010 treg);
6011 macro_build ((char *) NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
6012 break;
6013
6014 case M_ROL_I:
6015 if (imm_expr.X_op != O_constant)
6016 as_bad ("rotate count too large");
6017 macro_build ((char *) NULL, &icnt, NULL, "sll", "d,w,<", AT, sreg,
6018 (int) (imm_expr.X_add_number & 0x1f));
6019 macro_build ((char *) NULL, &icnt, NULL, "srl", "d,w,<", dreg, sreg,
6020 (int) ((0 - imm_expr.X_add_number) & 0x1f));
6021 macro_build ((char *) NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
6022 break;
6023
6024 case M_ROR:
6025 macro_build ((char *) NULL, &icnt, NULL, "subu", "d,v,t", AT, 0, treg);
6026 macro_build ((char *) NULL, &icnt, NULL, "sllv", "d,t,s", AT, sreg, AT);
6027 macro_build ((char *) NULL, &icnt, NULL, "srlv", "d,t,s", dreg, sreg,
6028 treg);
6029 macro_build ((char *) NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
6030 break;
6031
6032 case M_ROR_I:
6033 if (imm_expr.X_op != O_constant)
6034 as_bad ("rotate count too large");
6035 macro_build ((char *) NULL, &icnt, NULL, "srl", "d,w,<", AT, sreg,
6036 (int) (imm_expr.X_add_number & 0x1f));
6037 macro_build ((char *) NULL, &icnt, NULL, "sll", "d,w,<", dreg, sreg,
6038 (int) ((0 - imm_expr.X_add_number) & 0x1f));
6039 macro_build ((char *) NULL, &icnt, NULL, "or", "d,v,t", dreg, dreg, AT);
6040 break;
6041
6042 case M_S_DOB:
6043 if (mips_4650)
6044 {
6045 as_bad ("opcode not supported on this processor");
6046 return;
6047 }
6048 assert (mips_opts.isa < 2);
6049 /* Even on a big endian machine $fn comes before $fn+1. We have
6050 to adjust when storing to memory. */
6051 macro_build ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
6052 target_big_endian ? treg + 1 : treg,
6053 (int) BFD_RELOC_LO16, breg);
6054 offset_expr.X_add_number += 4;
6055 macro_build ((char *) NULL, &icnt, &offset_expr, "swc1", "T,o(b)",
6056 target_big_endian ? treg : treg + 1,
6057 (int) BFD_RELOC_LO16, breg);
6058 return;
6059
6060 case M_SEQ:
6061 if (sreg == 0)
6062 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6063 treg, (int) BFD_RELOC_LO16);
6064 else if (treg == 0)
6065 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6066 sreg, (int) BFD_RELOC_LO16);
6067 else
6068 {
6069 macro_build ((char *) NULL, &icnt, NULL, "xor", "d,v,t", dreg,
6070 sreg, treg);
6071 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6072 dreg, (int) BFD_RELOC_LO16);
6073 }
6074 return;
6075
6076 case M_SEQ_I:
6077 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6078 {
6079 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg,
6080 sreg, (int) BFD_RELOC_LO16);
6081 return;
6082 }
6083 if (sreg == 0)
6084 {
6085 as_warn ("Instruction %s: result is always false",
6086 ip->insn_mo->name);
6087 macro_build ((char *) NULL, &icnt, NULL, "move", "d,s", dreg, 0);
6088 return;
6089 }
6090 if (imm_expr.X_op == O_constant
6091 && imm_expr.X_add_number >= 0
6092 && imm_expr.X_add_number < 0x10000)
6093 {
6094 macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i", dreg,
6095 sreg, (int) BFD_RELOC_LO16);
6096 used_at = 0;
6097 }
6098 else if (imm_expr.X_op == O_constant
6099 && imm_expr.X_add_number > -0x8000
6100 && imm_expr.X_add_number < 0)
6101 {
6102 imm_expr.X_add_number = -imm_expr.X_add_number;
6103 macro_build ((char *) NULL, &icnt, &imm_expr,
6104 ((bfd_arch_bits_per_address (stdoutput) == 32
6105 || mips_opts.isa < 3)
6106 ? "addiu" : "daddiu"),
6107 "t,r,j", dreg, sreg,
6108 (int) BFD_RELOC_LO16);
6109 used_at = 0;
6110 }
6111 else
6112 {
6113 load_register (&icnt, AT, &imm_expr, 0);
6114 macro_build ((char *) NULL, &icnt, NULL, "xor", "d,v,t", dreg,
6115 sreg, AT);
6116 used_at = 1;
6117 }
6118 macro_build ((char *) NULL, &icnt, &expr1, "sltiu", "t,r,j", dreg, dreg,
6119 (int) BFD_RELOC_LO16);
6120 if (used_at)
6121 break;
6122 return;
6123
6124 case M_SGE: /* sreg >= treg <==> not (sreg < treg) */
6125 s = "slt";
6126 goto sge;
6127 case M_SGEU:
6128 s = "sltu";
6129 sge:
6130 macro_build ((char *) NULL, &icnt, NULL, s, "d,v,t", dreg, sreg, treg);
6131 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6132 (int) BFD_RELOC_LO16);
6133 return;
6134
6135 case M_SGE_I: /* sreg >= I <==> not (sreg < I) */
6136 case M_SGEU_I:
6137 if (imm_expr.X_op == O_constant
6138 && imm_expr.X_add_number >= -0x8000
6139 && imm_expr.X_add_number < 0x8000)
6140 {
6141 macro_build ((char *) NULL, &icnt, &expr1,
6142 mask == M_SGE_I ? "slti" : "sltiu",
6143 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
6144 used_at = 0;
6145 }
6146 else
6147 {
6148 load_register (&icnt, AT, &imm_expr, 0);
6149 macro_build ((char *) NULL, &icnt, NULL,
6150 mask == M_SGE_I ? "slt" : "sltu",
6151 "d,v,t", dreg, sreg, AT);
6152 used_at = 1;
6153 }
6154 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6155 (int) BFD_RELOC_LO16);
6156 if (used_at)
6157 break;
6158 return;
6159
6160 case M_SGT: /* sreg > treg <==> treg < sreg */
6161 s = "slt";
6162 goto sgt;
6163 case M_SGTU:
6164 s = "sltu";
6165 sgt:
6166 macro_build ((char *) NULL, &icnt, NULL, s, "d,v,t", dreg, treg, sreg);
6167 return;
6168
6169 case M_SGT_I: /* sreg > I <==> I < sreg */
6170 s = "slt";
6171 goto sgti;
6172 case M_SGTU_I:
6173 s = "sltu";
6174 sgti:
6175 load_register (&icnt, AT, &imm_expr, 0);
6176 macro_build ((char *) NULL, &icnt, NULL, s, "d,v,t", dreg, AT, sreg);
6177 break;
6178
6179 case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */
6180 s = "slt";
6181 goto sle;
6182 case M_SLEU:
6183 s = "sltu";
6184 sle:
6185 macro_build ((char *) NULL, &icnt, NULL, s, "d,v,t", dreg, treg, sreg);
6186 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6187 (int) BFD_RELOC_LO16);
6188 return;
6189
6190 case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */
6191 s = "slt";
6192 goto slei;
6193 case M_SLEU_I:
6194 s = "sltu";
6195 slei:
6196 load_register (&icnt, AT, &imm_expr, 0);
6197 macro_build ((char *) NULL, &icnt, NULL, s, "d,v,t", dreg, AT, sreg);
6198 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", dreg, dreg,
6199 (int) BFD_RELOC_LO16);
6200 break;
6201
6202 case M_SLT_I:
6203 if (imm_expr.X_op == O_constant
6204 && imm_expr.X_add_number >= -0x8000
6205 && imm_expr.X_add_number < 0x8000)
6206 {
6207 macro_build ((char *) NULL, &icnt, &imm_expr, "slti", "t,r,j",
6208 dreg, sreg, (int) BFD_RELOC_LO16);
6209 return;
6210 }
6211 load_register (&icnt, AT, &imm_expr, 0);
6212 macro_build ((char *) NULL, &icnt, NULL, "slt", "d,v,t", dreg, sreg, AT);
6213 break;
6214
6215 case M_SLTU_I:
6216 if (imm_expr.X_op == O_constant
6217 && imm_expr.X_add_number >= -0x8000
6218 && imm_expr.X_add_number < 0x8000)
6219 {
6220 macro_build ((char *) NULL, &icnt, &imm_expr, "sltiu", "t,r,j",
6221 dreg, sreg, (int) BFD_RELOC_LO16);
6222 return;
6223 }
6224 load_register (&icnt, AT, &imm_expr, 0);
6225 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", dreg, sreg,
6226 AT);
6227 break;
6228
6229 case M_SNE:
6230 if (sreg == 0)
6231 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", dreg, 0,
6232 treg);
6233 else if (treg == 0)
6234 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", dreg, 0,
6235 sreg);
6236 else
6237 {
6238 macro_build ((char *) NULL, &icnt, NULL, "xor", "d,v,t", dreg,
6239 sreg, treg);
6240 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", dreg, 0,
6241 dreg);
6242 }
6243 return;
6244
6245 case M_SNE_I:
6246 if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0)
6247 {
6248 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", dreg, 0,
6249 sreg);
6250 return;
6251 }
6252 if (sreg == 0)
6253 {
6254 as_warn ("Instruction %s: result is always true",
6255 ip->insn_mo->name);
6256 macro_build ((char *) NULL, &icnt, &expr1,
6257 ((bfd_arch_bits_per_address (stdoutput) == 32
6258 || mips_opts.isa < 3)
6259 ? "addiu" : "daddiu"),
6260 "t,r,j", dreg, 0, (int) BFD_RELOC_LO16);
6261 return;
6262 }
6263 if (imm_expr.X_op == O_constant
6264 && imm_expr.X_add_number >= 0
6265 && imm_expr.X_add_number < 0x10000)
6266 {
6267 macro_build ((char *) NULL, &icnt, &imm_expr, "xori", "t,r,i",
6268 dreg, sreg, (int) BFD_RELOC_LO16);
6269 used_at = 0;
6270 }
6271 else if (imm_expr.X_op == O_constant
6272 && imm_expr.X_add_number > -0x8000
6273 && imm_expr.X_add_number < 0)
6274 {
6275 imm_expr.X_add_number = -imm_expr.X_add_number;
6276 macro_build ((char *) NULL, &icnt, &imm_expr,
6277 ((bfd_arch_bits_per_address (stdoutput) == 32
6278 || mips_opts.isa < 3)
6279 ? "addiu" : "daddiu"),
6280 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
6281 used_at = 0;
6282 }
6283 else
6284 {
6285 load_register (&icnt, AT, &imm_expr, 0);
6286 macro_build ((char *) NULL, &icnt, NULL, "xor", "d,v,t", dreg,
6287 sreg, AT);
6288 used_at = 1;
6289 }
6290 macro_build ((char *) NULL, &icnt, NULL, "sltu", "d,v,t", dreg, 0, dreg);
6291 if (used_at)
6292 break;
6293 return;
6294
6295 case M_DSUB_I:
6296 dbl = 1;
6297 case M_SUB_I:
6298 if (imm_expr.X_op == O_constant
6299 && imm_expr.X_add_number > -0x8000
6300 && imm_expr.X_add_number <= 0x8000)
6301 {
6302 imm_expr.X_add_number = -imm_expr.X_add_number;
6303 macro_build ((char *) NULL, &icnt, &imm_expr,
6304 dbl ? "daddi" : "addi",
6305 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
6306 return;
6307 }
6308 load_register (&icnt, AT, &imm_expr, dbl);
6309 macro_build ((char *) NULL, &icnt, NULL,
6310 dbl ? "dsub" : "sub",
6311 "d,v,t", dreg, sreg, AT);
6312 break;
6313
6314 case M_DSUBU_I:
6315 dbl = 1;
6316 case M_SUBU_I:
6317 if (imm_expr.X_op == O_constant
6318 && imm_expr.X_add_number > -0x8000
6319 && imm_expr.X_add_number <= 0x8000)
6320 {
6321 imm_expr.X_add_number = -imm_expr.X_add_number;
6322 macro_build ((char *) NULL, &icnt, &imm_expr,
6323 dbl ? "daddiu" : "addiu",
6324 "t,r,j", dreg, sreg, (int) BFD_RELOC_LO16);
6325 return;
6326 }
6327 load_register (&icnt, AT, &imm_expr, dbl);
6328 macro_build ((char *) NULL, &icnt, NULL,
6329 dbl ? "dsubu" : "subu",
6330 "d,v,t", dreg, sreg, AT);
6331 break;
6332
6333 case M_TEQ_I:
6334 s = "teq";
6335 goto trap;
6336 case M_TGE_I:
6337 s = "tge";
6338 goto trap;
6339 case M_TGEU_I:
6340 s = "tgeu";
6341 goto trap;
6342 case M_TLT_I:
6343 s = "tlt";
6344 goto trap;
6345 case M_TLTU_I:
6346 s = "tltu";
6347 goto trap;
6348 case M_TNE_I:
6349 s = "tne";
6350 trap:
6351 load_register (&icnt, AT, &imm_expr, 0);
6352 macro_build ((char *) NULL, &icnt, NULL, s, "s,t", sreg, AT);
6353 break;
6354
6355 case M_TRUNCWD:
6356 case M_TRUNCWS:
6357 assert (mips_opts.isa < 2);
6358 sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */
6359 dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */
6360
6361 /*
6362 * Is the double cfc1 instruction a bug in the mips assembler;
6363 * or is there a reason for it?
6364 */
6365 mips_emit_delays (true);
6366 ++mips_opts.noreorder;
6367 mips_any_noreorder = 1;
6368 macro_build ((char *) NULL, &icnt, NULL, "cfc1", "t,G", treg, 31);
6369 macro_build ((char *) NULL, &icnt, NULL, "cfc1", "t,G", treg, 31);
6370 macro_build ((char *) NULL, &icnt, NULL, "nop", "");
6371 expr1.X_add_number = 3;
6372 macro_build ((char *) NULL, &icnt, &expr1, "ori", "t,r,i", AT, treg,
6373 (int) BFD_RELOC_LO16);
6374 expr1.X_add_number = 2;
6375 macro_build ((char *) NULL, &icnt, &expr1, "xori", "t,r,i", AT, AT,
6376 (int) BFD_RELOC_LO16);
6377 macro_build ((char *) NULL, &icnt, NULL, "ctc1", "t,G", AT, 31);
6378 macro_build ((char *) NULL, &icnt, NULL, "nop", "");
6379 macro_build ((char *) NULL, &icnt, NULL,
6380 mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S", dreg, sreg);
6381 macro_build ((char *) NULL, &icnt, NULL, "ctc1", "t,G", treg, 31);
6382 macro_build ((char *) NULL, &icnt, NULL, "nop", "");
6383 --mips_opts.noreorder;
6384 break;
6385
6386 case M_ULH:
6387 s = "lb";
6388 goto ulh;
6389 case M_ULHU:
6390 s = "lbu";
6391 ulh:
6392 if (offset_expr.X_add_number >= 0x7fff)
6393 as_bad ("operand overflow");
6394 /* avoid load delay */
6395 if (! target_big_endian)
6396 offset_expr.X_add_number += 1;
6397 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
6398 (int) BFD_RELOC_LO16, breg);
6399 if (! target_big_endian)
6400 offset_expr.X_add_number -= 1;
6401 else
6402 offset_expr.X_add_number += 1;
6403 macro_build ((char *) NULL, &icnt, &offset_expr, "lbu", "t,o(b)", AT,
6404 (int) BFD_RELOC_LO16, breg);
6405 macro_build ((char *) NULL, &icnt, NULL, "sll", "d,w,<", treg, treg, 8);
6406 macro_build ((char *) NULL, &icnt, NULL, "or", "d,v,t", treg, treg, AT);
6407 break;
6408
6409 case M_ULD:
6410 s = "ldl";
6411 s2 = "ldr";
6412 off = 7;
6413 goto ulw;
6414 case M_ULW:
6415 s = "lwl";
6416 s2 = "lwr";
6417 off = 3;
6418 ulw:
6419 if (offset_expr.X_add_number >= 0x8000 - off)
6420 as_bad ("operand overflow");
6421 if (! target_big_endian)
6422 offset_expr.X_add_number += off;
6423 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
6424 (int) BFD_RELOC_LO16, breg);
6425 if (! target_big_endian)
6426 offset_expr.X_add_number -= off;
6427 else
6428 offset_expr.X_add_number += off;
6429 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
6430 (int) BFD_RELOC_LO16, breg);
6431 return;
6432
6433 case M_ULD_A:
6434 s = "ldl";
6435 s2 = "ldr";
6436 off = 7;
6437 goto ulwa;
6438 case M_ULW_A:
6439 s = "lwl";
6440 s2 = "lwr";
6441 off = 3;
6442 ulwa:
6443 load_address (&icnt, AT, &offset_expr);
6444 if (breg != 0)
6445 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6446 ((bfd_arch_bits_per_address (stdoutput) == 32
6447 || mips_opts.isa < 3)
6448 ? "addu" : "daddu"),
6449 "d,v,t", AT, AT, breg);
6450 if (! target_big_endian)
6451 expr1.X_add_number = off;
6452 else
6453 expr1.X_add_number = 0;
6454 macro_build ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
6455 (int) BFD_RELOC_LO16, AT);
6456 if (! target_big_endian)
6457 expr1.X_add_number = 0;
6458 else
6459 expr1.X_add_number = off;
6460 macro_build ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
6461 (int) BFD_RELOC_LO16, AT);
6462 break;
6463
6464 case M_ULH_A:
6465 case M_ULHU_A:
6466 load_address (&icnt, AT, &offset_expr);
6467 if (breg != 0)
6468 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6469 ((bfd_arch_bits_per_address (stdoutput) == 32
6470 || mips_opts.isa < 3)
6471 ? "addu" : "daddu"),
6472 "d,v,t", AT, AT, breg);
6473 if (target_big_endian)
6474 expr1.X_add_number = 0;
6475 macro_build ((char *) NULL, &icnt, &expr1,
6476 mask == M_ULH_A ? "lb" : "lbu", "t,o(b)", treg,
6477 (int) BFD_RELOC_LO16, AT);
6478 if (target_big_endian)
6479 expr1.X_add_number = 1;
6480 else
6481 expr1.X_add_number = 0;
6482 macro_build ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
6483 (int) BFD_RELOC_LO16, AT);
6484 macro_build ((char *) NULL, &icnt, NULL, "sll", "d,w,<", treg,
6485 treg, 8);
6486 macro_build ((char *) NULL, &icnt, NULL, "or", "d,v,t", treg,
6487 treg, AT);
6488 break;
6489
6490 case M_USH:
6491 if (offset_expr.X_add_number >= 0x7fff)
6492 as_bad ("operand overflow");
6493 if (target_big_endian)
6494 offset_expr.X_add_number += 1;
6495 macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", treg,
6496 (int) BFD_RELOC_LO16, breg);
6497 macro_build ((char *) NULL, &icnt, NULL, "srl", "d,w,<", AT, treg, 8);
6498 if (target_big_endian)
6499 offset_expr.X_add_number -= 1;
6500 else
6501 offset_expr.X_add_number += 1;
6502 macro_build ((char *) NULL, &icnt, &offset_expr, "sb", "t,o(b)", AT,
6503 (int) BFD_RELOC_LO16, breg);
6504 break;
6505
6506 case M_USD:
6507 s = "sdl";
6508 s2 = "sdr";
6509 off = 7;
6510 goto usw;
6511 case M_USW:
6512 s = "swl";
6513 s2 = "swr";
6514 off = 3;
6515 usw:
6516 if (offset_expr.X_add_number >= 0x8000 - off)
6517 as_bad ("operand overflow");
6518 if (! target_big_endian)
6519 offset_expr.X_add_number += off;
6520 macro_build ((char *) NULL, &icnt, &offset_expr, s, "t,o(b)", treg,
6521 (int) BFD_RELOC_LO16, breg);
6522 if (! target_big_endian)
6523 offset_expr.X_add_number -= off;
6524 else
6525 offset_expr.X_add_number += off;
6526 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "t,o(b)", treg,
6527 (int) BFD_RELOC_LO16, breg);
6528 return;
6529
6530 case M_USD_A:
6531 s = "sdl";
6532 s2 = "sdr";
6533 off = 7;
6534 goto uswa;
6535 case M_USW_A:
6536 s = "swl";
6537 s2 = "swr";
6538 off = 3;
6539 uswa:
6540 load_address (&icnt, AT, &offset_expr);
6541 if (breg != 0)
6542 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6543 ((bfd_arch_bits_per_address (stdoutput) == 32
6544 || mips_opts.isa < 3)
6545 ? "addu" : "daddu"),
6546 "d,v,t", AT, AT, breg);
6547 if (! target_big_endian)
6548 expr1.X_add_number = off;
6549 else
6550 expr1.X_add_number = 0;
6551 macro_build ((char *) NULL, &icnt, &expr1, s, "t,o(b)", treg,
6552 (int) BFD_RELOC_LO16, AT);
6553 if (! target_big_endian)
6554 expr1.X_add_number = 0;
6555 else
6556 expr1.X_add_number = off;
6557 macro_build ((char *) NULL, &icnt, &expr1, s2, "t,o(b)", treg,
6558 (int) BFD_RELOC_LO16, AT);
6559 break;
6560
6561 case M_USH_A:
6562 load_address (&icnt, AT, &offset_expr);
6563 if (breg != 0)
6564 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6565 ((bfd_arch_bits_per_address (stdoutput) == 32
6566 || mips_opts.isa < 3)
6567 ? "addu" : "daddu"),
6568 "d,v,t", AT, AT, breg);
6569 if (! target_big_endian)
6570 expr1.X_add_number = 0;
6571 macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
6572 (int) BFD_RELOC_LO16, AT);
6573 macro_build ((char *) NULL, &icnt, NULL, "srl", "d,w,<", treg,
6574 treg, 8);
6575 if (! target_big_endian)
6576 expr1.X_add_number = 1;
6577 else
6578 expr1.X_add_number = 0;
6579 macro_build ((char *) NULL, &icnt, &expr1, "sb", "t,o(b)", treg,
6580 (int) BFD_RELOC_LO16, AT);
6581 if (! target_big_endian)
6582 expr1.X_add_number = 0;
6583 else
6584 expr1.X_add_number = 1;
6585 macro_build ((char *) NULL, &icnt, &expr1, "lbu", "t,o(b)", AT,
6586 (int) BFD_RELOC_LO16, AT);
6587 macro_build ((char *) NULL, &icnt, NULL, "sll", "d,w,<", treg,
6588 treg, 8);
6589 macro_build ((char *) NULL, &icnt, NULL, "or", "d,v,t", treg,
6590 treg, AT);
6591 break;
6592
6593 default:
6594 /* FIXME: Check if this is one of the itbl macros, since they
6595 are added dynamically. */
6596 as_bad ("Macro %s not implemented yet", ip->insn_mo->name);
6597 break;
6598 }
6599 if (mips_opts.noat)
6600 as_warn ("Macro used $at after \".set noat\"");
6601 }
6602
6603 /* Implement macros in mips16 mode. */
6604
6605 static void
6606 mips16_macro (ip)
6607 struct mips_cl_insn *ip;
6608 {
6609 int mask;
6610 int xreg, yreg, zreg, tmp;
6611 int icnt;
6612 expressionS expr1;
6613 int dbl;
6614 const char *s, *s2, *s3;
6615
6616 mask = ip->insn_mo->mask;
6617
6618 xreg = (ip->insn_opcode >> MIPS16OP_SH_RX) & MIPS16OP_MASK_RX;
6619 yreg = (ip->insn_opcode >> MIPS16OP_SH_RY) & MIPS16OP_MASK_RY;
6620 zreg = (ip->insn_opcode >> MIPS16OP_SH_RZ) & MIPS16OP_MASK_RZ;
6621
6622 icnt = 0;
6623
6624 expr1.X_op = O_constant;
6625 expr1.X_op_symbol = NULL;
6626 expr1.X_add_symbol = NULL;
6627 expr1.X_add_number = 1;
6628
6629 dbl = 0;
6630
6631 switch (mask)
6632 {
6633 default:
6634 internalError ();
6635
6636 case M_DDIV_3:
6637 dbl = 1;
6638 case M_DIV_3:
6639 s = "mflo";
6640 goto do_div3;
6641 case M_DREM_3:
6642 dbl = 1;
6643 case M_REM_3:
6644 s = "mfhi";
6645 do_div3:
6646 mips_emit_delays (true);
6647 ++mips_opts.noreorder;
6648 mips_any_noreorder = 1;
6649 macro_build ((char *) NULL, &icnt, NULL,
6650 dbl ? "ddiv" : "div",
6651 "0,x,y", xreg, yreg);
6652 expr1.X_add_number = 2;
6653 macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
6654 macro_build ((char *) NULL, &icnt, NULL, "break", "6", 7);
6655 /* FIXME: The normal code checks for of -1 / -0x80000000 here,
6656 since that causes an overflow. We should do that as well,
6657 but I don't see how to do the comparisons without a temporary
6658 register. */
6659 --mips_opts.noreorder;
6660 macro_build ((char *) NULL, &icnt, NULL, s, "x", zreg);
6661 break;
6662
6663 case M_DIVU_3:
6664 s = "divu";
6665 s2 = "mflo";
6666 goto do_divu3;
6667 case M_REMU_3:
6668 s = "divu";
6669 s2 = "mfhi";
6670 goto do_divu3;
6671 case M_DDIVU_3:
6672 s = "ddivu";
6673 s2 = "mflo";
6674 goto do_divu3;
6675 case M_DREMU_3:
6676 s = "ddivu";
6677 s2 = "mfhi";
6678 do_divu3:
6679 mips_emit_delays (true);
6680 ++mips_opts.noreorder;
6681 mips_any_noreorder = 1;
6682 macro_build ((char *) NULL, &icnt, NULL, s, "0,x,y", xreg, yreg);
6683 expr1.X_add_number = 2;
6684 macro_build ((char *) NULL, &icnt, &expr1, "bnez", "x,p", yreg);
6685 macro_build ((char *) NULL, &icnt, NULL, "break", "6", 7);
6686 --mips_opts.noreorder;
6687 macro_build ((char *) NULL, &icnt, NULL, s2, "x", zreg);
6688 break;
6689
6690 case M_DMUL:
6691 dbl = 1;
6692 case M_MUL:
6693 macro_build ((char *) NULL, &icnt, NULL,
6694 dbl ? "dmultu" : "multu",
6695 "x,y", xreg, yreg);
6696 macro_build ((char *) NULL, &icnt, NULL, "mflo", "x", zreg);
6697 return;
6698
6699 case M_DSUBU_I:
6700 dbl = 1;
6701 goto do_subu;
6702 case M_SUBU_I:
6703 do_subu:
6704 if (imm_expr.X_op != O_constant)
6705 as_bad ("Unsupported large constant");
6706 imm_expr.X_add_number = -imm_expr.X_add_number;
6707 macro_build ((char *) NULL, &icnt, &imm_expr,
6708 dbl ? "daddiu" : "addiu",
6709 "y,x,4", yreg, xreg);
6710 break;
6711
6712 case M_SUBU_I_2:
6713 if (imm_expr.X_op != O_constant)
6714 as_bad ("Unsupported large constant");
6715 imm_expr.X_add_number = -imm_expr.X_add_number;
6716 macro_build ((char *) NULL, &icnt, &imm_expr, "addiu",
6717 "x,k", xreg);
6718 break;
6719
6720 case M_DSUBU_I_2:
6721 if (imm_expr.X_op != O_constant)
6722 as_bad ("Unsupported large constant");
6723 imm_expr.X_add_number = -imm_expr.X_add_number;
6724 macro_build ((char *) NULL, &icnt, &imm_expr, "daddiu",
6725 "y,j", yreg);
6726 break;
6727
6728 case M_BEQ:
6729 s = "cmp";
6730 s2 = "bteqz";
6731 goto do_branch;
6732 case M_BNE:
6733 s = "cmp";
6734 s2 = "btnez";
6735 goto do_branch;
6736 case M_BLT:
6737 s = "slt";
6738 s2 = "btnez";
6739 goto do_branch;
6740 case M_BLTU:
6741 s = "sltu";
6742 s2 = "btnez";
6743 goto do_branch;
6744 case M_BLE:
6745 s = "slt";
6746 s2 = "bteqz";
6747 goto do_reverse_branch;
6748 case M_BLEU:
6749 s = "sltu";
6750 s2 = "bteqz";
6751 goto do_reverse_branch;
6752 case M_BGE:
6753 s = "slt";
6754 s2 = "bteqz";
6755 goto do_branch;
6756 case M_BGEU:
6757 s = "sltu";
6758 s2 = "bteqz";
6759 goto do_branch;
6760 case M_BGT:
6761 s = "slt";
6762 s2 = "btnez";
6763 goto do_reverse_branch;
6764 case M_BGTU:
6765 s = "sltu";
6766 s2 = "btnez";
6767
6768 do_reverse_branch:
6769 tmp = xreg;
6770 xreg = yreg;
6771 yreg = tmp;
6772
6773 do_branch:
6774 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, s, "x,y",
6775 xreg, yreg);
6776 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
6777 break;
6778
6779 case M_BEQ_I:
6780 s = "cmpi";
6781 s2 = "bteqz";
6782 s3 = "x,U";
6783 goto do_branch_i;
6784 case M_BNE_I:
6785 s = "cmpi";
6786 s2 = "btnez";
6787 s3 = "x,U";
6788 goto do_branch_i;
6789 case M_BLT_I:
6790 s = "slti";
6791 s2 = "btnez";
6792 s3 = "x,8";
6793 goto do_branch_i;
6794 case M_BLTU_I:
6795 s = "sltiu";
6796 s2 = "btnez";
6797 s3 = "x,8";
6798 goto do_branch_i;
6799 case M_BLE_I:
6800 s = "slti";
6801 s2 = "btnez";
6802 s3 = "x,8";
6803 goto do_addone_branch_i;
6804 case M_BLEU_I:
6805 s = "sltiu";
6806 s2 = "btnez";
6807 s3 = "x,8";
6808 goto do_addone_branch_i;
6809 case M_BGE_I:
6810 s = "slti";
6811 s2 = "bteqz";
6812 s3 = "x,8";
6813 goto do_branch_i;
6814 case M_BGEU_I:
6815 s = "sltiu";
6816 s2 = "bteqz";
6817 s3 = "x,8";
6818 goto do_branch_i;
6819 case M_BGT_I:
6820 s = "slti";
6821 s2 = "bteqz";
6822 s3 = "x,8";
6823 goto do_addone_branch_i;
6824 case M_BGTU_I:
6825 s = "sltiu";
6826 s2 = "bteqz";
6827 s3 = "x,8";
6828
6829 do_addone_branch_i:
6830 if (imm_expr.X_op != O_constant)
6831 as_bad ("Unsupported large constant");
6832 ++imm_expr.X_add_number;
6833
6834 do_branch_i:
6835 macro_build ((char *) NULL, &icnt, &imm_expr, s, s3, xreg);
6836 macro_build ((char *) NULL, &icnt, &offset_expr, s2, "p");
6837 break;
6838
6839 case M_ABS:
6840 expr1.X_add_number = 0;
6841 macro_build ((char *) NULL, &icnt, &expr1, "slti", "x,8", yreg);
6842 if (xreg != yreg)
6843 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6844 "move", "y,X", xreg, yreg);
6845 expr1.X_add_number = 2;
6846 macro_build ((char *) NULL, &icnt, &expr1, "bteqz", "p");
6847 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
6848 "neg", "x,w", xreg, xreg);
6849 }
6850 }
6851
6852 /* For consistency checking, verify that all bits are specified either
6853 by the match/mask part of the instruction definition, or by the
6854 operand list. */
6855 static int
6856 validate_mips_insn (opc)
6857 const struct mips_opcode *opc;
6858 {
6859 const char *p = opc->args;
6860 char c;
6861 unsigned long used_bits = opc->mask;
6862
6863 if ((used_bits & opc->match) != opc->match)
6864 {
6865 as_bad ("internal: bad mips opcode (mask error): %s %s",
6866 opc->name, opc->args);
6867 return 0;
6868 }
6869 #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift)))
6870 while (*p)
6871 switch (c = *p++)
6872 {
6873 case ',': break;
6874 case '(': break;
6875 case ')': break;
6876 case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
6877 case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break;
6878 case 'A': break;
6879 case 'B': USE_BITS (OP_MASK_SYSCALL, OP_SH_SYSCALL); break;
6880 case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break;
6881 case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break;
6882 case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
6883 case 'F': break;
6884 case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
6885 case 'I': break;
6886 case 'L': break;
6887 case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break;
6888 case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break;
6889 case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break;
6890 case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
6891 case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
6892 case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break;
6893 case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break;
6894 case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break;
6895 case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
6896 case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break;
6897 case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break;
6898 case 'f': break;
6899 case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break;
6900 case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
6901 case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
6902 case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break;
6903 case 'l': break;
6904 case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
6905 case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break;
6906 case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
6907 case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
6908 case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
6909 case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break;
6910 case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break;
6911 case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break;
6912 case 'x': break;
6913 case 'z': break;
6914 case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break;
6915 /* start-sanitize-r5900 */
6916 case '0': USE_BITS (OP_MASK_VADDI, OP_SH_VADDI); break;
6917 case '1': USE_BITS (OP_MASK_VUTREG, OP_SH_VUTREG); break;
6918 case '2': USE_BITS (OP_MASK_VUSREG, OP_SH_VUSREG); break;
6919 case '3': USE_BITS (OP_MASK_VUDREG, OP_SH_VUDREG); break;
6920 case '4': USE_BITS (OP_MASK_VUTREG, OP_SH_VUTREG); break;
6921 case '5': USE_BITS (OP_MASK_VUSREG, OP_SH_VUSREG); break;
6922 case '6': USE_BITS (OP_MASK_VUDREG, OP_SH_VUDREG); break;
6923 case '7':
6924 USE_BITS (OP_MASK_VUTREG, OP_SH_VUTREG);
6925 USE_BITS (OP_MASK_VUFTF, OP_SH_VUFTF);
6926 break;
6927 case '8':
6928 USE_BITS (OP_MASK_VUSREG, OP_SH_VUSREG);
6929 USE_BITS (OP_MASK_VUFSF, OP_SH_VUFSF);
6930 break;
6931 case '9': break;
6932 case 'K': break;
6933 case 'X': break;
6934 case 'U': break;
6935 case 'Q': break;
6936 case 'J': break;
6937 case 'O': USE_BITS (OP_MASK_VUCALLMS, OP_SH_VUCALLMS);break;
6938 case '&': USE_BITS (OP_MASK_VUDEST, OP_SH_VUDEST); break;
6939 case '#':
6940 p++;
6941 break;
6942 case '-': break;
6943 case '+': break;
6944 /* end-sanitize-r5900 */
6945 /* start-sanitize-vr5400 */
6946 case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break;
6947 case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break;
6948 case '[': break;
6949 case ']': break;
6950 /* end-sanitize-vr5400 */
6951 default:
6952 as_bad ("internal: bad mips opcode (unknown operand type `%c'): %s %s",
6953 c, opc->name, opc->args);
6954 return 0;
6955 }
6956 #undef USE_BITS
6957 /* Some of the trapping instructions (break, t*, sdbbp) have "code"
6958 fields that cannot currently be set by assembly code. Ignore them
6959 for now. */
6960 if (opc->pinfo & INSN_TRAP)
6961 {
6962 static const char *const trap_insns[] = {
6963 "break", "sdbbp",
6964 "teq", "tge", "tgeu", "tlt", "tltu", "tne",
6965 };
6966 int i;
6967 for (i = sizeof(trap_insns)/sizeof(trap_insns[0]) - 1; i >= 0; i--)
6968 if (!strcmp (trap_insns[i], opc->name))
6969 {
6970 used_bits |= 0xffc0;
6971 break;
6972 }
6973 }
6974 if (used_bits != 0xffffffff)
6975 {
6976 as_bad ("internal: bad mips opcode (bits 0x%lx undefined): %s %s",
6977 ~used_bits & 0xffffffff, opc->name, opc->args);
6978 return 0;
6979 }
6980 return 1;
6981 }
6982
6983 /* This routine assembles an instruction into its binary format. As a
6984 side effect, it sets one of the global variables imm_reloc or
6985 offset_reloc to the type of relocation to do if one of the operands
6986 is an address expression. */
6987
6988 static void
6989 mips_ip (str, ip)
6990 char *str;
6991 struct mips_cl_insn *ip;
6992 {
6993 char *s;
6994 const char *args;
6995 char c;
6996 struct mips_opcode *insn;
6997 char *argsStart;
6998 unsigned int regno;
6999 unsigned int lastregno = 0;
7000 char *s_reset;
7001 char save_c = 0;
7002
7003 insn_error = NULL;
7004
7005 /* If the instruction contains a '.', we first try to match an instruction
7006 including the '.'. Then we try again without the '.'. */
7007 insn = NULL;
7008 for (s = str; *s != '\0' && !isspace(*s); ++s)
7009 continue;
7010
7011 /* If we stopped on whitespace, then replace the whitespace with null for
7012 the call to hash_find. Save the character we replaced just in case we
7013 have to re-parse the instruction. */
7014 if (isspace (*s))
7015 {
7016 save_c = *s;
7017 *s++ = '\0';
7018 }
7019
7020 insn = (struct mips_opcode *) hash_find (op_hash, str);
7021
7022 /* If we didn't find the instruction in the opcode table, try again, but
7023 this time with just the instruction up to, but not including the
7024 first '.'. */
7025 if (insn == NULL)
7026 {
7027 /* Restore the character we overwrite above (if any). */
7028 if (save_c)
7029 *(--s) = save_c;
7030
7031 /* Scan up to the first '.' or whitespace. */
7032 for (s = str; *s != '\0' && *s != '.' && !isspace (*s); ++s)
7033 continue;
7034
7035 /* If we did not find a '.', then we can quit now. */
7036 if (*s != '.')
7037 {
7038 insn_error = "unrecognized opcode";
7039 return;
7040 }
7041
7042 /* Lookup the instruction in the hash table. */
7043 *s++ = '\0';
7044 if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL)
7045 {
7046 insn_error = "unrecognized opcode";
7047 return;
7048 }
7049 }
7050
7051 argsStart = s;
7052 for (;;)
7053 {
7054 int insn_isa;
7055 boolean ok;
7056
7057 assert (strcmp (insn->name, str) == 0);
7058
7059 if ((insn->membership & INSN_ISA) == INSN_ISA1)
7060 insn_isa = 1;
7061 else if ((insn->membership & INSN_ISA) == INSN_ISA2)
7062 insn_isa = 2;
7063 else if ((insn->membership & INSN_ISA) == INSN_ISA3)
7064 insn_isa = 3;
7065 else if ((insn->membership & INSN_ISA) == INSN_ISA4)
7066 insn_isa = 4;
7067 else
7068 insn_isa = 15;
7069
7070 if (insn_isa <= mips_opts.isa)
7071 ok = true;
7072 else if (insn->pinfo == INSN_MACRO)
7073 ok = false;
7074 else if ((mips_4650 && (insn->membership & INSN_4650) != 0)
7075 || (mips_4010 && (insn->membership & INSN_4010) != 0)
7076 || (mips_4100 && (insn->membership & INSN_4100) != 0)
7077 /* start-sanitize-vr4320 */
7078 || (mips_4320 && (insn->membership & INSN_4320) != 0)
7079 /* end-sanitize-vr4320 */
7080 /* start-sanitize-tx49 */
7081 || (mips_4900 && (insn->membership & INSN_4900) != 0)
7082 /* end-sanitize-tx49 */
7083 /* start-sanitize-r5900 */
7084 || (mips_5900 && (insn->membership & INSN_5900) != 0)
7085 /* end-sanitize-r5900 */
7086 /* start-sanitize-vr5400 */
7087 || (mips_5400 && (insn->membership & INSN_5400) != 0)
7088 /* end-sanitize-vr5400 */
7089 || (mips_3900 && (insn->membership & INSN_3900) != 0))
7090 ok = true;
7091 else
7092 ok = false;
7093
7094 if (insn->pinfo != INSN_MACRO)
7095 {
7096 if (mips_4650 && (insn->pinfo & FP_D) != 0)
7097 ok = false;
7098 /* start-sanitize-r5900 */
7099 if (mips_5900 && (insn->pinfo & FP_D) != 0)
7100 ok = false;
7101 /* end-sanitize-r5900 */
7102 }
7103
7104 if (! ok)
7105 {
7106 if (insn + 1 < &mips_opcodes[NUMOPCODES]
7107 && strcmp (insn->name, insn[1].name) == 0)
7108 {
7109 ++insn;
7110 continue;
7111 }
7112 if (insn_isa == 15
7113 || insn_isa <= mips_opts.isa)
7114 insn_error = "opcode not supported on this processor";
7115 else
7116 {
7117 static char buf[100];
7118
7119 sprintf (buf, "opcode requires -mips%d or greater", insn_isa);
7120 insn_error = buf;
7121 }
7122 return;
7123 }
7124
7125 ip->insn_mo = insn;
7126 ip->insn_opcode = insn->match;
7127 for (args = insn->args;; ++args)
7128 {
7129 if (*s == ' ')
7130 ++s;
7131 switch (*args)
7132 {
7133 case '\0': /* end of args */
7134 if (*s == '\0')
7135 return;
7136 break;
7137
7138 case ',':
7139 if (*s++ == *args)
7140 continue;
7141 s--;
7142 switch (*++args)
7143 {
7144 case 'r':
7145 case 'v':
7146 ip->insn_opcode |= lastregno << 21;
7147 continue;
7148
7149 case 'w':
7150 case 'W':
7151 ip->insn_opcode |= lastregno << 16;
7152 continue;
7153
7154 case 'V':
7155 ip->insn_opcode |= lastregno << 11;
7156 continue;
7157 }
7158 break;
7159
7160 case '(':
7161 /* Handle optional base register.
7162 Either the base register is omitted or
7163 we must have a left paren. */
7164 /* This is dependent on the next operand specifier
7165 is a base register specification. */
7166 assert (args[1] == 'b' || args[1] == '5'
7167 || args[1] == '-' || args[1] == '4');
7168 if (*s == '\0')
7169 return;
7170
7171 case ')': /* these must match exactly */
7172 /* start-sanitize-vr5400 */
7173 case '[':
7174 case ']':
7175 /* end-sanitize-vr5400 */
7176 /* start-sanitize-r5900 */
7177 case '-':
7178 case '+':
7179 /* end-sanitize-r5900 */
7180 if (*s++ == *args)
7181 continue;
7182 break;
7183
7184 case '<': /* must be at least one digit */
7185 /*
7186 * According to the manual, if the shift amount is greater
7187 * than 31 or less than 0 the the shift amount should be
7188 * mod 32. In reality the mips assembler issues an error.
7189 * We issue a warning and mask out all but the low 5 bits.
7190 */
7191 my_getExpression (&imm_expr, s);
7192 check_absolute_expr (ip, &imm_expr);
7193 if ((unsigned long) imm_expr.X_add_number > 31)
7194 {
7195 as_warn ("Improper shift amount (%ld)",
7196 (long) imm_expr.X_add_number);
7197 imm_expr.X_add_number = imm_expr.X_add_number & 0x1f;
7198 }
7199 ip->insn_opcode |= imm_expr.X_add_number << 6;
7200 imm_expr.X_op = O_absent;
7201 s = expr_end;
7202 continue;
7203
7204 case '>': /* shift amount minus 32 */
7205 my_getExpression (&imm_expr, s);
7206 check_absolute_expr (ip, &imm_expr);
7207 if ((unsigned long) imm_expr.X_add_number < 32
7208 || (unsigned long) imm_expr.X_add_number > 63)
7209 break;
7210 ip->insn_opcode |= (imm_expr.X_add_number - 32) << 6;
7211 imm_expr.X_op = O_absent;
7212 s = expr_end;
7213 continue;
7214
7215 /* start-sanitize-r5900 */
7216 case '0': /* 5 bit signed immediate at 6 */
7217 my_getExpression (&imm_expr, s);
7218 check_absolute_expr (ip, &imm_expr);
7219 if ((c == '\0' && imm_expr.X_op != O_constant)
7220 || ((imm_expr.X_add_number < -16
7221 || imm_expr.X_add_number >= 16)
7222 && imm_expr.X_op == O_constant))
7223 {
7224 if (imm_expr.X_op != O_constant
7225 && imm_expr.X_op != O_big)
7226 insn_error = "absolute expression required";
7227 else
7228 as_bad ("5 bit expression not in range -16..15");
7229 }
7230 ip->insn_opcode |= (imm_expr.X_add_number) << 6;
7231 imm_expr.X_op = O_absent;
7232 s = expr_end;
7233 continue;
7234
7235 case '9': /* vi19 for vcallmsr */
7236 if (strncmp (s, "vi19", 4) == 0)
7237 s += 4;
7238 else
7239 as_bad ("expected vi19");
7240 continue;
7241
7242 case '#': /* escape character */
7243 /* '#' specifies that we've got an optional suffix to this
7244 operand that must match exactly (if it exists). */
7245 if (*s != '\0' && *s != ','
7246 && *s != ' ' && *s != '\t' && *s != '\n')
7247 {
7248 if (*s == *(args + 1))
7249 {
7250 s++;
7251 args++;
7252 continue;
7253 }
7254 break;
7255 }
7256 args++;
7257 continue;
7258
7259 case 'K': /* DEST operand completer (optional), must
7260 match previous dest if specified. */
7261 case '&': /* DEST instruction completer */
7262 {
7263 int w,x,y,z;
7264 static int last_h;
7265
7266 w = x = y = z = 0;
7267
7268 /* Parse the completer. */
7269 s_reset = s;
7270 while (*s != '\0' && *s != ' ' && *s != ',')
7271 {
7272 if (*s == 'w')
7273 w++;
7274 else if (*s == 'x')
7275 x++;
7276 else if (*s == 'y')
7277 y++;
7278 else if (*s == 'z')
7279 z++;
7280 else
7281 {
7282 insn_error = "Invalid dest specification";
7283 continue;
7284 }
7285 s++;
7286 }
7287
7288 /* Each completer can only appear once. */
7289 if (w > 1 || x > 1 || y > 1 || z > 1)
7290 {
7291 insn_error = "Invalid dest specification";
7292 continue;
7293 }
7294
7295 /* If this is the opcode completer, then we must insert
7296 the appropriate value into the insn. */
7297 if (*args == '&')
7298 {
7299 ip->insn_opcode |= ((w << 21) | (x << 24)
7300 | (y << 23) | (z << 22));
7301 last_h = (w << 3) | (x << 0) | (y << 1) | (z << 2);
7302 }
7303 else
7304 {
7305 int temp;
7306
7307 /* This is the operand completer, make sure it matches
7308 the previous opcode completer. */
7309 temp = (w << 3) | (x << 0) | (y << 1) | (z << 2);
7310 if (temp && temp != last_h)
7311 {
7312 insn_error = "DEST field in operand does not match DEST field in instruction";
7313 continue;
7314 }
7315
7316 }
7317
7318 continue;
7319 }
7320
7321 case 'J': /* vu0 I register */
7322 if (s[0] == 'I')
7323 s += 1;
7324 else
7325 insn_error = "operand `I' expected";
7326 continue;
7327
7328 case 'Q': /* vu0 Q register */
7329 if (s[0] == 'Q')
7330 s += 1;
7331 else
7332 insn_error = "operand `Q' expected";
7333 continue;
7334
7335 case 'X': /* vu0 R register */
7336 if (s[0] == 'R')
7337 s += 1;
7338 else
7339 insn_error = "operand `R' expected";
7340 continue;
7341
7342 case 'U': /* vu0 ACC register */
7343 if (s[0] == 'A' && s[1] == 'C' && s[2] == 'C')
7344 s += 3;
7345 else
7346 insn_error = "operand `ACC' expected";
7347 continue;
7348
7349 case 'O':
7350 my_getSmallExpression (&imm_expr, s);
7351 imm_reloc = BFD_RELOC_MIPS15_S3;
7352 s = expr_end;
7353 continue;
7354 /* end-sanitize-r5900 */
7355
7356 case 'k': /* cache code */
7357 case 'h': /* prefx code */
7358 my_getExpression (&imm_expr, s);
7359 check_absolute_expr (ip, &imm_expr);
7360 if ((unsigned long) imm_expr.X_add_number > 31)
7361 {
7362 as_warn ("Invalid value for `%s' (%lu)",
7363 ip->insn_mo->name,
7364 (unsigned long) imm_expr.X_add_number);
7365 imm_expr.X_add_number &= 0x1f;
7366 }
7367 if (*args == 'k')
7368 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CACHE;
7369 else
7370 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_PREFX;
7371 imm_expr.X_op = O_absent;
7372 s = expr_end;
7373 continue;
7374
7375 case 'c': /* break code */
7376 my_getExpression (&imm_expr, s);
7377 check_absolute_expr (ip, &imm_expr);
7378 if ((unsigned) imm_expr.X_add_number > 1023)
7379 as_warn ("Illegal break code (%ld)",
7380 (long) imm_expr.X_add_number);
7381 ip->insn_opcode |= imm_expr.X_add_number << 16;
7382 imm_expr.X_op = O_absent;
7383 s = expr_end;
7384 continue;
7385
7386 case 'B': /* syscall code */
7387 my_getExpression (&imm_expr, s);
7388 check_absolute_expr (ip, &imm_expr);
7389 if ((unsigned) imm_expr.X_add_number > 0xfffff)
7390 as_warn ("Illegal syscall code (%ld)",
7391 (long) imm_expr.X_add_number);
7392 ip->insn_opcode |= imm_expr.X_add_number << 6;
7393 imm_expr.X_op = O_absent;
7394 s = expr_end;
7395 continue;
7396
7397 case 'C': /* Coprocessor code */
7398 my_getExpression (&imm_expr, s);
7399 check_absolute_expr (ip, &imm_expr);
7400 if ((unsigned long) imm_expr.X_add_number >= (1<<25))
7401 {
7402 as_warn ("Coproccesor code > 25 bits (%ld)",
7403 (long) imm_expr.X_add_number);
7404 imm_expr.X_add_number &= ((1<<25) - 1);
7405 }
7406 ip->insn_opcode |= imm_expr.X_add_number;
7407 imm_expr.X_op = O_absent;
7408 s = expr_end;
7409 continue;
7410
7411 case 'P': /* Performance register */
7412 my_getExpression (&imm_expr, s);
7413 check_absolute_expr (ip, &imm_expr);
7414 if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1)
7415 {
7416 as_warn ("Invalidate performance regster (%ld)",
7417 (long) imm_expr.X_add_number);
7418 imm_expr.X_add_number &= 1;
7419 }
7420 ip->insn_opcode |= (imm_expr.X_add_number << 1);
7421 imm_expr.X_op = O_absent;
7422 s = expr_end;
7423 continue;
7424
7425 case 'b': /* base register */
7426 case 'd': /* destination register */
7427 case 's': /* source register */
7428 case 't': /* target register */
7429 case 'r': /* both target and source */
7430 case 'v': /* both dest and source */
7431 case 'w': /* both dest and target */
7432 case 'E': /* coprocessor target register */
7433 case 'G': /* coprocessor destination register */
7434 case 'x': /* ignore register name */
7435 case 'z': /* must be zero register */
7436 s_reset = s;
7437 if (s[0] == '$')
7438 {
7439 if (isdigit (s[1]))
7440 {
7441 ++s;
7442 regno = 0;
7443 do
7444 {
7445 regno *= 10;
7446 regno += *s - '0';
7447 ++s;
7448 }
7449 while (isdigit (*s));
7450 if (regno > 31)
7451 as_bad ("Invalid register number (%d)", regno);
7452 }
7453 else if (*args == 'E' || *args == 'G')
7454 goto notreg;
7455 else
7456 {
7457 if (s[1] == 'f' && s[2] == 'p')
7458 {
7459 s += 3;
7460 regno = FP;
7461 }
7462 else if (s[1] == 's' && s[2] == 'p')
7463 {
7464 s += 3;
7465 regno = SP;
7466 }
7467 else if (s[1] == 'g' && s[2] == 'p')
7468 {
7469 s += 3;
7470 regno = GP;
7471 }
7472 else if (s[1] == 'a' && s[2] == 't')
7473 {
7474 s += 3;
7475 regno = AT;
7476 }
7477 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
7478 {
7479 s += 4;
7480 regno = KT0;
7481 }
7482 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
7483 {
7484 s += 4;
7485 regno = KT1;
7486 }
7487 else if (itbl_have_entries)
7488 {
7489 char *p, *n;
7490 int r;
7491
7492 p = s+1; /* advance past '$' */
7493 n = itbl_get_field (&p); /* n is name */
7494
7495 /* See if this is a register defined in an
7496 itbl entry */
7497 r = itbl_get_reg_val (n);
7498 if (r)
7499 {
7500 /* Get_field advances to the start of
7501 the next field, so we need to back
7502 rack to the end of the last field. */
7503 if (p)
7504 s = p - 1;
7505 else
7506 s = strchr (s,'\0');
7507 regno = r;
7508 }
7509 else
7510 goto notreg;
7511 }
7512 else
7513 goto notreg;
7514 }
7515 if (regno == AT
7516 && ! mips_opts.noat
7517 && *args != 'E'
7518 && *args != 'G')
7519 as_warn ("Used $at without \".set noat\"");
7520 c = *args;
7521 if (*s == ' ')
7522 s++;
7523 if (args[1] != *s)
7524 {
7525 if (c == 'r' || c == 'v' || c == 'w')
7526 {
7527 regno = lastregno;
7528 s = s_reset;
7529 args++;
7530 }
7531 }
7532 /* 'z' only matches $0. */
7533 if (c == 'z' && regno != 0)
7534 break;
7535
7536 /* Now that we have assembled one operand, we use the args string
7537 * to figure out where it goes in the instruction. */
7538 switch (c)
7539 {
7540 case 'r':
7541 case 's':
7542 case 'v':
7543 case 'b':
7544 ip->insn_opcode |= regno << 21;
7545 break;
7546 case 'd':
7547 case 'G':
7548 ip->insn_opcode |= regno << 11;
7549 break;
7550 case 'w':
7551 case 't':
7552 case 'E':
7553 ip->insn_opcode |= regno << 16;
7554 break;
7555 case 'x':
7556 /* This case exists because on the r3000 trunc
7557 expands into a macro which requires a gp
7558 register. On the r6000 or r4000 it is
7559 assembled into a single instruction which
7560 ignores the register. Thus the insn version
7561 is MIPS_ISA2 and uses 'x', and the macro
7562 version is MIPS_ISA1 and uses 't'. */
7563 break;
7564 case 'z':
7565 /* This case is for the div instruction, which
7566 acts differently if the destination argument
7567 is $0. This only matches $0, and is checked
7568 outside the switch. */
7569 break;
7570 case 'D':
7571 /* Itbl operand; not yet implemented. FIXME ?? */
7572 break;
7573 /* What about all other operands like 'i', which
7574 can be specified in the opcode table? */
7575 }
7576 lastregno = regno;
7577 continue;
7578 }
7579 notreg:
7580 switch (*args++)
7581 {
7582 case 'r':
7583 case 'v':
7584 ip->insn_opcode |= lastregno << 21;
7585 continue;
7586 case 'w':
7587 ip->insn_opcode |= lastregno << 16;
7588 continue;
7589 }
7590 break;
7591
7592 case 'D': /* floating point destination register */
7593 case 'S': /* floating point source register */
7594 case 'T': /* floating point target register */
7595 case 'R': /* floating point source register */
7596 case 'V':
7597 case 'W':
7598 /* start-sanitize-r5900 */
7599 case '1': /* vu0 fp reg position 1 */
7600 case '2': /* vu0 fp reg position 2 */
7601 case '3': /* vu0 fp reg position 3 */
7602 case '4': /* vu0 int reg position 1 */
7603 case '5': /* vu0 int reg position 2 */
7604 case '6': /* vu0 int reg position 3 */
7605 case '7': /* vu0 fp reg with ftf modifier */
7606 case '8': /* vu0 fp reg with fsf modifier */
7607 /* end-sanitize-r5900 */
7608 s_reset = s;
7609 if (s[0] == '$' && s[1] == 'f' && isdigit (s[2]))
7610 {
7611 s += 2;
7612 regno = 0;
7613 do
7614 {
7615 regno *= 10;
7616 regno += *s - '0';
7617 ++s;
7618 }
7619 while (isdigit (*s));
7620
7621 if (regno > 31)
7622 as_bad ("Invalid float register number (%d)", regno);
7623
7624 if ((regno & 1) != 0
7625 && mips_opts.isa < 3
7626 && ! (strcmp (str, "mtc1") == 0
7627 || strcmp (str, "mfc1") == 0
7628 || strcmp (str, "lwc1") == 0
7629 || strcmp (str, "swc1") == 0
7630 || strcmp (str, "l.s") == 0
7631 || strcmp (str, "s.s") == 0))
7632 as_warn ("Float register should be even, was %d",
7633 regno);
7634
7635 c = *args;
7636 if (*s == ' ')
7637 s++;
7638 if (args[1] != *s)
7639 {
7640 if (c == 'V' || c == 'W')
7641 {
7642 regno = lastregno;
7643 s = s_reset;
7644 args++;
7645 }
7646 }
7647 switch (c)
7648 {
7649 case 'D':
7650 ip->insn_opcode |= regno << 6;
7651 break;
7652 case 'V':
7653 case 'S':
7654 ip->insn_opcode |= regno << 11;
7655 break;
7656 case 'W':
7657 case 'T':
7658 ip->insn_opcode |= regno << 16;
7659 break;
7660 case 'R':
7661 ip->insn_opcode |= regno << 21;
7662 break;
7663 }
7664 lastregno = regno;
7665 continue;
7666 }
7667
7668 /* start-sanitize-r5900 */
7669 /* Handle vf and vi regsiters for vu0. */
7670 if (s[0] == 'v'
7671 && (s[1] == 'f' || s[1] == 'i')
7672 && isdigit (s[2]))
7673 {
7674 s += 2;
7675 regno = 0;
7676 do
7677 {
7678 regno *= 10;
7679 regno += *s - '0';
7680 ++s;
7681 }
7682 while (isdigit (*s));
7683
7684 if (regno > 31)
7685 as_bad ("Invalid vu0 register number (%d)", regno);
7686
7687 c = *args;
7688
7689 if (c == '7' || c == '8')
7690 {
7691 int value;
7692
7693 switch (*s)
7694 {
7695 case 'w':
7696 value = 3;
7697 s++;
7698 ip->insn_opcode |= value << (c == '7' ? 23 : 21);
7699 break;
7700 case 'x':
7701 value = 0;
7702 s++;
7703 ip->insn_opcode |= value << (c == '7' ? 23 : 21);
7704 break;
7705 case 'y':
7706 value = 1;
7707 s++;
7708 ip->insn_opcode |= value << (c == '7' ? 23 : 21);
7709 break;
7710 case 'z':
7711 value = 2;
7712 s++;
7713 ip->insn_opcode |= value << (c == '7' ? 23 : 21);
7714 break;
7715 default:
7716 as_bad ("Invalid FSF/FTF specification");
7717 }
7718 }
7719
7720 if (*s == ' ')
7721 s++;
7722 if (args[1] != *s)
7723 {
7724 if (c == 'V' || c == 'W')
7725 {
7726 regno = lastregno;
7727 s = s_reset;
7728 args++;
7729 }
7730 }
7731 switch (c)
7732 {
7733 case '1':
7734 case '4':
7735 case '7':
7736 ip->insn_opcode |= regno << 16;
7737 break;
7738 case '2':
7739 case '5':
7740 case '8':
7741 ip->insn_opcode |= regno << 11;
7742 break;
7743 case '3':
7744 case '6':
7745 ip->insn_opcode |= regno << 6;
7746 break;
7747 }
7748 lastregno = regno;
7749 continue;
7750 }
7751 /* end-sanitize-r5900 */
7752
7753 switch (*args++)
7754 {
7755 case 'V':
7756 ip->insn_opcode |= lastregno << 11;
7757 continue;
7758 case 'W':
7759 ip->insn_opcode |= lastregno << 16;
7760 continue;
7761 }
7762 break;
7763
7764 case 'I':
7765 my_getExpression (&imm_expr, s);
7766 if (imm_expr.X_op != O_big
7767 && imm_expr.X_op != O_constant)
7768 insn_error = "absolute expression required";
7769 s = expr_end;
7770 continue;
7771
7772 case 'A':
7773 my_getExpression (&offset_expr, s);
7774 imm_reloc = BFD_RELOC_32;
7775 s = expr_end;
7776 continue;
7777
7778 case 'F':
7779 case 'L':
7780 case 'f':
7781 case 'l':
7782 {
7783 int f64;
7784 char *save_in;
7785 char *err;
7786 unsigned char temp[8];
7787 int len;
7788 unsigned int length;
7789 segT seg;
7790 subsegT subseg;
7791 char *p;
7792
7793 /* These only appear as the last operand in an
7794 instruction, and every instruction that accepts
7795 them in any variant accepts them in all variants.
7796 This means we don't have to worry about backing out
7797 any changes if the instruction does not match.
7798
7799 The difference between them is the size of the
7800 floating point constant and where it goes. For 'F'
7801 and 'L' the constant is 64 bits; for 'f' and 'l' it
7802 is 32 bits. Where the constant is placed is based
7803 on how the MIPS assembler does things:
7804 F -- .rdata
7805 L -- .lit8
7806 f -- immediate value
7807 l -- .lit4
7808
7809 The .lit4 and .lit8 sections are only used if
7810 permitted by the -G argument.
7811
7812 When generating embedded PIC code, we use the
7813 .lit8 section but not the .lit4 section (we can do
7814 .lit4 inline easily; we need to put .lit8
7815 somewhere in the data segment, and using .lit8
7816 permits the linker to eventually combine identical
7817 .lit8 entries). */
7818
7819 f64 = *args == 'F' || *args == 'L';
7820
7821 save_in = input_line_pointer;
7822 input_line_pointer = s;
7823 err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len);
7824 length = len;
7825 s = input_line_pointer;
7826 input_line_pointer = save_in;
7827 if (err != NULL && *err != '\0')
7828 {
7829 as_bad ("Bad floating point constant: %s", err);
7830 memset (temp, '\0', sizeof temp);
7831 length = f64 ? 8 : 4;
7832 }
7833
7834 assert (length == (f64 ? 8 : 4));
7835
7836 if (*args == 'f'
7837 || (*args == 'l'
7838 && (! USE_GLOBAL_POINTER_OPT
7839 || mips_pic == EMBEDDED_PIC
7840 || g_switch_value < 4
7841 || (temp[0] == 0 && temp[1] == 0)
7842 || (temp[2] == 0 && temp[3] == 0))))
7843 {
7844 imm_expr.X_op = O_constant;
7845 if (! target_big_endian)
7846 imm_expr.X_add_number = bfd_getl32 (temp);
7847 else
7848 imm_expr.X_add_number = bfd_getb32 (temp);
7849 }
7850 else if (length > 4
7851 && ((temp[0] == 0 && temp[1] == 0)
7852 || (temp[2] == 0 && temp[3] == 0))
7853 && ((temp[4] == 0 && temp[5] == 0)
7854 || (temp[6] == 0 && temp[7] == 0)))
7855 {
7856 /* The value is simple enough to load with a
7857 couple of instructions. In mips1 mode, set
7858 imm_expr to the high order 32 bits and
7859 offset_expr to the low order 32 bits.
7860 Otherwise, set imm_expr to the entire 64 bit
7861 constant. */
7862 if (mips_opts.isa < 3)
7863 {
7864 imm_expr.X_op = O_constant;
7865 offset_expr.X_op = O_constant;
7866 if (! target_big_endian)
7867 {
7868 imm_expr.X_add_number = bfd_getl32 (temp + 4);
7869 offset_expr.X_add_number = bfd_getl32 (temp);
7870 }
7871 else
7872 {
7873 imm_expr.X_add_number = bfd_getb32 (temp);
7874 offset_expr.X_add_number = bfd_getb32 (temp + 4);
7875 }
7876 if (offset_expr.X_add_number == 0)
7877 offset_expr.X_op = O_absent;
7878 }
7879 else if (sizeof (imm_expr.X_add_number) > 4)
7880 {
7881 imm_expr.X_op = O_constant;
7882 if (! target_big_endian)
7883 imm_expr.X_add_number = bfd_getl64 (temp);
7884 else
7885 imm_expr.X_add_number = bfd_getb64 (temp);
7886 }
7887 else
7888 {
7889 imm_expr.X_op = O_big;
7890 imm_expr.X_add_number = 4;
7891 if (! target_big_endian)
7892 {
7893 generic_bignum[0] = bfd_getl16 (temp);
7894 generic_bignum[1] = bfd_getl16 (temp + 2);
7895 generic_bignum[2] = bfd_getl16 (temp + 4);
7896 generic_bignum[3] = bfd_getl16 (temp + 6);
7897 }
7898 else
7899 {
7900 generic_bignum[0] = bfd_getb16 (temp + 6);
7901 generic_bignum[1] = bfd_getb16 (temp + 4);
7902 generic_bignum[2] = bfd_getb16 (temp + 2);
7903 generic_bignum[3] = bfd_getb16 (temp);
7904 }
7905 }
7906 }
7907 else
7908 {
7909 const char *newname;
7910 segT new_seg;
7911
7912 /* Switch to the right section. */
7913 seg = now_seg;
7914 subseg = now_subseg;
7915 switch (*args)
7916 {
7917 default: /* unused default case avoids warnings. */
7918 case 'L':
7919 newname = RDATA_SECTION_NAME;
7920 if (USE_GLOBAL_POINTER_OPT && g_switch_value >= 8)
7921 newname = ".lit8";
7922 break;
7923 case 'F':
7924 newname = RDATA_SECTION_NAME;
7925 break;
7926 case 'l':
7927 assert (!USE_GLOBAL_POINTER_OPT
7928 || g_switch_value >= 4);
7929 newname = ".lit4";
7930 break;
7931 }
7932 new_seg = subseg_new (newname, (subsegT) 0);
7933 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
7934 bfd_set_section_flags (stdoutput, new_seg,
7935 (SEC_ALLOC
7936 | SEC_LOAD
7937 | SEC_READONLY
7938 | SEC_DATA));
7939 frag_align (*args == 'l' ? 2 : 3, 0, 0);
7940 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
7941 && strcmp (TARGET_OS, "elf") != 0)
7942 record_alignment (new_seg, 4);
7943 else
7944 record_alignment (new_seg, *args == 'l' ? 2 : 3);
7945 if (seg == now_seg)
7946 as_bad ("Can't use floating point insn in this section");
7947
7948 /* Set the argument to the current address in the
7949 section. */
7950 offset_expr.X_op = O_symbol;
7951 offset_expr.X_add_symbol =
7952 symbol_new ("L0\001", now_seg,
7953 (valueT) frag_now_fix (), frag_now);
7954 offset_expr.X_add_number = 0;
7955
7956 /* Put the floating point number into the section. */
7957 p = frag_more ((int) length);
7958 memcpy (p, temp, length);
7959
7960 /* Switch back to the original section. */
7961 subseg_set (seg, subseg);
7962 }
7963 }
7964 continue;
7965
7966 case 'i': /* 16 bit unsigned immediate */
7967 case 'j': /* 16 bit signed immediate */
7968 imm_reloc = BFD_RELOC_LO16;
7969 c = my_getSmallExpression (&imm_expr, s);
7970 if (c != '\0')
7971 {
7972 if (c != 'l')
7973 {
7974 if (imm_expr.X_op == O_constant)
7975 imm_expr.X_add_number =
7976 (imm_expr.X_add_number >> 16) & 0xffff;
7977 else if (c == 'h')
7978 {
7979 imm_reloc = BFD_RELOC_HI16_S;
7980 imm_unmatched_hi = true;
7981 }
7982 else
7983 imm_reloc = BFD_RELOC_HI16;
7984 }
7985 }
7986 if (*args == 'i')
7987 {
7988 if ((c == '\0' && imm_expr.X_op != O_constant)
7989 || ((imm_expr.X_add_number < 0
7990 || imm_expr.X_add_number >= 0x10000)
7991 && imm_expr.X_op == O_constant))
7992 {
7993 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
7994 !strcmp (insn->name, insn[1].name))
7995 break;
7996 if (imm_expr.X_op != O_constant
7997 && imm_expr.X_op != O_big)
7998 insn_error = "absolute expression required";
7999 else
8000 as_bad ("16 bit expression not in range 0..65535");
8001 }
8002 }
8003 else
8004 {
8005 int more;
8006 offsetT max;
8007
8008 /* The upper bound should be 0x8000, but
8009 unfortunately the MIPS assembler accepts numbers
8010 from 0x8000 to 0xffff and sign extends them, and
8011 we want to be compatible. We only permit this
8012 extended range for an instruction which does not
8013 provide any further alternates, since those
8014 alternates may handle other cases. People should
8015 use the numbers they mean, rather than relying on
8016 a mysterious sign extension. */
8017 more = (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8018 strcmp (insn->name, insn[1].name) == 0);
8019 if (more)
8020 max = 0x8000;
8021 else
8022 max = 0x10000;
8023 if ((c == '\0' && imm_expr.X_op != O_constant)
8024 || ((imm_expr.X_add_number < -0x8000
8025 || imm_expr.X_add_number >= max)
8026 && imm_expr.X_op == O_constant)
8027 || (more
8028 && imm_expr.X_add_number < 0
8029 && mips_opts.isa >= 3
8030 && imm_expr.X_unsigned
8031 && sizeof (imm_expr.X_add_number) <= 4))
8032 {
8033 if (more)
8034 break;
8035 if (imm_expr.X_op != O_constant
8036 && imm_expr.X_op != O_big)
8037 insn_error = "absolute expression required";
8038 else
8039 as_bad ("16 bit expression not in range -32768..32767");
8040 }
8041 }
8042 s = expr_end;
8043 continue;
8044
8045 case 'o': /* 16 bit offset */
8046 c = my_getSmallExpression (&offset_expr, s);
8047
8048 /* If this value won't fit into a 16 bit offset, then go
8049 find a macro that will generate the 32 bit offset
8050 code pattern. As a special hack, we accept the
8051 difference of two local symbols as a constant. This
8052 is required to suppose embedded PIC switches, which
8053 use an instruction which looks like
8054 lw $4,$L12-$LS12($4)
8055 The problem with handling this in a more general
8056 fashion is that the macro function doesn't expect to
8057 see anything which can be handled in a single
8058 constant instruction. */
8059 if (c == 0
8060 && (offset_expr.X_op != O_constant
8061 || offset_expr.X_add_number >= 0x8000
8062 || offset_expr.X_add_number < -0x8000)
8063 && (mips_pic != EMBEDDED_PIC
8064 || offset_expr.X_op != O_subtract
8065 || now_seg != text_section
8066 || (S_GET_SEGMENT (offset_expr.X_op_symbol)
8067 != text_section)))
8068 break;
8069
8070 offset_reloc = BFD_RELOC_LO16;
8071 if (c == 'h' || c == 'H')
8072 {
8073 assert (offset_expr.X_op == O_constant);
8074 offset_expr.X_add_number =
8075 (offset_expr.X_add_number >> 16) & 0xffff;
8076 }
8077 s = expr_end;
8078 continue;
8079
8080 case 'p': /* pc relative offset */
8081 offset_reloc = BFD_RELOC_16_PCREL_S2;
8082 my_getExpression (&offset_expr, s);
8083 s = expr_end;
8084 continue;
8085
8086 case 'u': /* upper 16 bits */
8087 c = my_getSmallExpression (&imm_expr, s);
8088 if (imm_expr.X_op == O_constant
8089 && (imm_expr.X_add_number < 0
8090 || imm_expr.X_add_number >= 0x10000))
8091 as_bad ("lui expression not in range 0..65535");
8092 imm_reloc = BFD_RELOC_LO16;
8093 if (c)
8094 {
8095 if (c != 'l')
8096 {
8097 if (imm_expr.X_op == O_constant)
8098 imm_expr.X_add_number =
8099 (imm_expr.X_add_number >> 16) & 0xffff;
8100 else if (c == 'h')
8101 {
8102 imm_reloc = BFD_RELOC_HI16_S;
8103 imm_unmatched_hi = true;
8104 }
8105 else
8106 imm_reloc = BFD_RELOC_HI16;
8107 }
8108 }
8109 s = expr_end;
8110 continue;
8111
8112 case 'a': /* 26 bit address */
8113 my_getExpression (&offset_expr, s);
8114 s = expr_end;
8115 offset_reloc = BFD_RELOC_MIPS_JMP;
8116 continue;
8117
8118 case 'N': /* 3 bit branch condition code */
8119 case 'M': /* 3 bit compare condition code */
8120 if (strncmp (s, "$fcc", 4) != 0)
8121 break;
8122 s += 4;
8123 regno = 0;
8124 do
8125 {
8126 regno *= 10;
8127 regno += *s - '0';
8128 ++s;
8129 }
8130 while (isdigit (*s));
8131 if (regno > 7)
8132 as_bad ("invalid condition code register $fcc%d", regno);
8133 if (*args == 'N')
8134 ip->insn_opcode |= regno << OP_SH_BCC;
8135 else
8136 ip->insn_opcode |= regno << OP_SH_CCC;
8137 continue;
8138
8139 /* start-sanitize-vr5400 */
8140 case 'e': /* must be at least one digit */
8141 my_getExpression (&imm_expr, s);
8142 check_absolute_expr (ip, &imm_expr);
8143 if ((unsigned long) imm_expr.X_add_number > (unsigned long) OP_MASK_VECBYTE)
8144 {
8145 as_bad ("bad byte vector index (%ld)",
8146 (long) imm_expr.X_add_number);
8147 imm_expr.X_add_number = imm_expr.X_add_number;
8148 }
8149 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_VECBYTE;
8150 imm_expr.X_op = O_absent;
8151 s = expr_end;
8152 continue;
8153
8154 case '%':
8155 my_getExpression (&imm_expr, s);
8156 check_absolute_expr (ip, &imm_expr);
8157 if ((unsigned long) imm_expr.X_add_number > (unsigned long) OP_MASK_VECALIGN)
8158 {
8159 as_bad ("bad byte vector index (%ld)",
8160 (long) imm_expr.X_add_number);
8161 imm_expr.X_add_number = imm_expr.X_add_number;
8162 }
8163 ip->insn_opcode |= imm_expr.X_add_number << OP_SH_VECALIGN;
8164 imm_expr.X_op = O_absent;
8165 s = expr_end;
8166 continue;
8167
8168 /* end-sanitize-vr5400 */
8169 default:
8170 as_bad ("bad char = '%c'\n", *args);
8171 internalError ();
8172 }
8173 break;
8174 }
8175 /* Args don't match. */
8176 if (insn + 1 < &mips_opcodes[NUMOPCODES] &&
8177 !strcmp (insn->name, insn[1].name))
8178 {
8179 ++insn;
8180 s = argsStart;
8181 continue;
8182 }
8183 insn_error = "illegal operands";
8184 return;
8185 }
8186 }
8187
8188 /* This routine assembles an instruction into its binary format when
8189 assembling for the mips16. As a side effect, it sets one of the
8190 global variables imm_reloc or offset_reloc to the type of
8191 relocation to do if one of the operands is an address expression.
8192 It also sets mips16_small and mips16_ext if the user explicitly
8193 requested a small or extended instruction. */
8194
8195 static void
8196 mips16_ip (str, ip)
8197 char *str;
8198 struct mips_cl_insn *ip;
8199 {
8200 char *s;
8201 const char *args;
8202 struct mips_opcode *insn;
8203 char *argsstart;
8204 unsigned int regno;
8205 unsigned int lastregno = 0;
8206 char *s_reset;
8207
8208 insn_error = NULL;
8209
8210 mips16_small = false;
8211 mips16_ext = false;
8212
8213 for (s = str; islower (*s); ++s)
8214 ;
8215 switch (*s)
8216 {
8217 case '\0':
8218 break;
8219
8220 case ' ':
8221 *s++ = '\0';
8222 break;
8223
8224 case '.':
8225 if (s[1] == 't' && s[2] == ' ')
8226 {
8227 *s = '\0';
8228 mips16_small = true;
8229 s += 3;
8230 break;
8231 }
8232 else if (s[1] == 'e' && s[2] == ' ')
8233 {
8234 *s = '\0';
8235 mips16_ext = true;
8236 s += 3;
8237 break;
8238 }
8239 /* Fall through. */
8240 default:
8241 insn_error = "unknown opcode";
8242 return;
8243 }
8244
8245 if (mips_opts.noautoextend && ! mips16_ext)
8246 mips16_small = true;
8247
8248 if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL)
8249 {
8250 insn_error = "unrecognized opcode";
8251 return;
8252 }
8253
8254 argsstart = s;
8255 for (;;)
8256 {
8257 assert (strcmp (insn->name, str) == 0);
8258
8259 ip->insn_mo = insn;
8260 ip->insn_opcode = insn->match;
8261 ip->use_extend = false;
8262 imm_expr.X_op = O_absent;
8263 imm_reloc = BFD_RELOC_UNUSED;
8264 offset_expr.X_op = O_absent;
8265 offset_reloc = BFD_RELOC_UNUSED;
8266 for (args = insn->args; 1; ++args)
8267 {
8268 int c;
8269
8270 if (*s == ' ')
8271 ++s;
8272
8273 /* In this switch statement we call break if we did not find
8274 a match, continue if we did find a match, or return if we
8275 are done. */
8276
8277 c = *args;
8278 switch (c)
8279 {
8280 case '\0':
8281 if (*s == '\0')
8282 {
8283 /* Stuff the immediate value in now, if we can. */
8284 if (imm_expr.X_op == O_constant
8285 && imm_reloc > BFD_RELOC_UNUSED
8286 && insn->pinfo != INSN_MACRO)
8287 {
8288 mips16_immed ((char *) NULL, 0,
8289 imm_reloc - BFD_RELOC_UNUSED,
8290 imm_expr.X_add_number, true, mips16_small,
8291 mips16_ext, &ip->insn_opcode,
8292 &ip->use_extend, &ip->extend);
8293 imm_expr.X_op = O_absent;
8294 imm_reloc = BFD_RELOC_UNUSED;
8295 }
8296
8297 return;
8298 }
8299 break;
8300
8301 case ',':
8302 if (*s++ == c)
8303 continue;
8304 s--;
8305 switch (*++args)
8306 {
8307 case 'v':
8308 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
8309 continue;
8310 case 'w':
8311 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
8312 continue;
8313 }
8314 break;
8315
8316 case '(':
8317 case ')':
8318 if (*s++ == c)
8319 continue;
8320 break;
8321
8322 case 'v':
8323 case 'w':
8324 if (s[0] != '$')
8325 {
8326 if (c == 'v')
8327 ip->insn_opcode |= lastregno << MIPS16OP_SH_RX;
8328 else
8329 ip->insn_opcode |= lastregno << MIPS16OP_SH_RY;
8330 ++args;
8331 continue;
8332 }
8333 /* Fall through. */
8334 case 'x':
8335 case 'y':
8336 case 'z':
8337 case 'Z':
8338 case '0':
8339 case 'S':
8340 case 'R':
8341 case 'X':
8342 case 'Y':
8343 if (s[0] != '$')
8344 break;
8345 s_reset = s;
8346 if (isdigit (s[1]))
8347 {
8348 ++s;
8349 regno = 0;
8350 do
8351 {
8352 regno *= 10;
8353 regno += *s - '0';
8354 ++s;
8355 }
8356 while (isdigit (*s));
8357 if (regno > 31)
8358 {
8359 as_bad ("invalid register number (%d)", regno);
8360 regno = 2;
8361 }
8362 }
8363 else
8364 {
8365 if (s[1] == 'f' && s[2] == 'p')
8366 {
8367 s += 3;
8368 regno = FP;
8369 }
8370 else if (s[1] == 's' && s[2] == 'p')
8371 {
8372 s += 3;
8373 regno = SP;
8374 }
8375 else if (s[1] == 'g' && s[2] == 'p')
8376 {
8377 s += 3;
8378 regno = GP;
8379 }
8380 else if (s[1] == 'a' && s[2] == 't')
8381 {
8382 s += 3;
8383 regno = AT;
8384 }
8385 else if (s[1] == 'k' && s[2] == 't' && s[3] == '0')
8386 {
8387 s += 4;
8388 regno = KT0;
8389 }
8390 else if (s[1] == 'k' && s[2] == 't' && s[3] == '1')
8391 {
8392 s += 4;
8393 regno = KT1;
8394 }
8395 else
8396 break;
8397 }
8398
8399 if (*s == ' ')
8400 ++s;
8401 if (args[1] != *s)
8402 {
8403 if (c == 'v' || c == 'w')
8404 {
8405 regno = mips16_to_32_reg_map[lastregno];
8406 s = s_reset;
8407 args++;
8408 }
8409 }
8410
8411 switch (c)
8412 {
8413 case 'x':
8414 case 'y':
8415 case 'z':
8416 case 'v':
8417 case 'w':
8418 case 'Z':
8419 regno = mips32_to_16_reg_map[regno];
8420 break;
8421
8422 case '0':
8423 if (regno != 0)
8424 regno = ILLEGAL_REG;
8425 break;
8426
8427 case 'S':
8428 if (regno != SP)
8429 regno = ILLEGAL_REG;
8430 break;
8431
8432 case 'R':
8433 if (regno != RA)
8434 regno = ILLEGAL_REG;
8435 break;
8436
8437 case 'X':
8438 case 'Y':
8439 if (regno == AT && ! mips_opts.noat)
8440 as_warn ("used $at without \".set noat\"");
8441 break;
8442
8443 default:
8444 internalError ();
8445 }
8446
8447 if (regno == ILLEGAL_REG)
8448 break;
8449
8450 switch (c)
8451 {
8452 case 'x':
8453 case 'v':
8454 ip->insn_opcode |= regno << MIPS16OP_SH_RX;
8455 break;
8456 case 'y':
8457 case 'w':
8458 ip->insn_opcode |= regno << MIPS16OP_SH_RY;
8459 break;
8460 case 'z':
8461 ip->insn_opcode |= regno << MIPS16OP_SH_RZ;
8462 break;
8463 case 'Z':
8464 ip->insn_opcode |= regno << MIPS16OP_SH_MOVE32Z;
8465 case '0':
8466 case 'S':
8467 case 'R':
8468 break;
8469 case 'X':
8470 ip->insn_opcode |= regno << MIPS16OP_SH_REGR32;
8471 break;
8472 case 'Y':
8473 regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3);
8474 ip->insn_opcode |= regno << MIPS16OP_SH_REG32R;
8475 break;
8476 default:
8477 internalError ();
8478 }
8479
8480 lastregno = regno;
8481 continue;
8482
8483 case 'P':
8484 if (strncmp (s, "$pc", 3) == 0)
8485 {
8486 s += 3;
8487 continue;
8488 }
8489 break;
8490
8491 case '<':
8492 case '>':
8493 case '[':
8494 case ']':
8495 case '4':
8496 case '5':
8497 case 'H':
8498 case 'W':
8499 case 'D':
8500 case 'j':
8501 case '8':
8502 case 'V':
8503 case 'C':
8504 case 'U':
8505 case 'k':
8506 case 'K':
8507 if (s[0] == '%'
8508 && strncmp (s + 1, "gprel(", sizeof "gprel(" - 1) == 0)
8509 {
8510 /* This is %gprel(SYMBOL). We need to read SYMBOL,
8511 and generate the appropriate reloc. If the text
8512 inside %gprel is not a symbol name with an
8513 optional offset, then we generate a normal reloc
8514 and will probably fail later. */
8515 my_getExpression (&imm_expr, s + sizeof "%gprel" - 1);
8516 if (imm_expr.X_op == O_symbol)
8517 {
8518 mips16_ext = true;
8519 imm_reloc = BFD_RELOC_MIPS16_GPREL;
8520 s = expr_end;
8521 ip->use_extend = true;
8522 ip->extend = 0;
8523 continue;
8524 }
8525 }
8526 else
8527 {
8528 /* Just pick up a normal expression. */
8529 my_getExpression (&imm_expr, s);
8530 }
8531
8532 if (imm_expr.X_op == O_register)
8533 {
8534 /* What we thought was an expression turned out to
8535 be a register. */
8536
8537 if (s[0] == '(' && args[1] == '(')
8538 {
8539 /* It looks like the expression was omitted
8540 before a register indirection, which means
8541 that the expression is implicitly zero. We
8542 still set up imm_expr, so that we handle
8543 explicit extensions correctly. */
8544 imm_expr.X_op = O_constant;
8545 imm_expr.X_add_number = 0;
8546 imm_reloc = (int) BFD_RELOC_UNUSED + c;
8547 continue;
8548 }
8549
8550 break;
8551 }
8552
8553 /* We need to relax this instruction. */
8554 imm_reloc = (int) BFD_RELOC_UNUSED + c;
8555 s = expr_end;
8556 continue;
8557
8558 case 'p':
8559 case 'q':
8560 case 'A':
8561 case 'B':
8562 case 'E':
8563 /* We use offset_reloc rather than imm_reloc for the PC
8564 relative operands. This lets macros with both
8565 immediate and address operands work correctly. */
8566 my_getExpression (&offset_expr, s);
8567
8568 if (offset_expr.X_op == O_register)
8569 break;
8570
8571 /* We need to relax this instruction. */
8572 offset_reloc = (int) BFD_RELOC_UNUSED + c;
8573 s = expr_end;
8574 continue;
8575
8576 case '6': /* break code */
8577 my_getExpression (&imm_expr, s);
8578 check_absolute_expr (ip, &imm_expr);
8579 if ((unsigned long) imm_expr.X_add_number > 63)
8580 {
8581 as_warn ("Invalid value for `%s' (%lu)",
8582 ip->insn_mo->name,
8583 (unsigned long) imm_expr.X_add_number);
8584 imm_expr.X_add_number &= 0x3f;
8585 }
8586 ip->insn_opcode |= imm_expr.X_add_number << MIPS16OP_SH_IMM6;
8587 imm_expr.X_op = O_absent;
8588 s = expr_end;
8589 continue;
8590
8591 case 'a': /* 26 bit address */
8592 my_getExpression (&offset_expr, s);
8593 s = expr_end;
8594 offset_reloc = BFD_RELOC_MIPS16_JMP;
8595 ip->insn_opcode <<= 16;
8596 continue;
8597
8598 case 'l': /* register list for entry macro */
8599 case 'L': /* register list for exit macro */
8600 {
8601 int mask;
8602
8603 if (c == 'l')
8604 mask = 0;
8605 else
8606 mask = 7 << 3;
8607 while (*s != '\0')
8608 {
8609 int freg, reg1, reg2;
8610
8611 while (*s == ' ' || *s == ',')
8612 ++s;
8613 if (*s != '$')
8614 {
8615 as_bad ("can't parse register list");
8616 break;
8617 }
8618 ++s;
8619 if (*s != 'f')
8620 freg = 0;
8621 else
8622 {
8623 freg = 1;
8624 ++s;
8625 }
8626 reg1 = 0;
8627 while (isdigit (*s))
8628 {
8629 reg1 *= 10;
8630 reg1 += *s - '0';
8631 ++s;
8632 }
8633 if (*s == ' ')
8634 ++s;
8635 if (*s != '-')
8636 reg2 = reg1;
8637 else
8638 {
8639 ++s;
8640 if (*s != '$')
8641 break;
8642 ++s;
8643 if (freg)
8644 {
8645 if (*s == 'f')
8646 ++s;
8647 else
8648 {
8649 as_bad ("invalid register list");
8650 break;
8651 }
8652 }
8653 reg2 = 0;
8654 while (isdigit (*s))
8655 {
8656 reg2 *= 10;
8657 reg2 += *s - '0';
8658 ++s;
8659 }
8660 }
8661 if (freg && reg1 == 0 && reg2 == 0 && c == 'L')
8662 {
8663 mask &= ~ (7 << 3);
8664 mask |= 5 << 3;
8665 }
8666 else if (freg && reg1 == 0 && reg2 == 1 && c == 'L')
8667 {
8668 mask &= ~ (7 << 3);
8669 mask |= 6 << 3;
8670 }
8671 else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L')
8672 mask |= (reg2 - 3) << 3;
8673 else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17)
8674 mask |= (reg2 - 15) << 1;
8675 else if (reg1 == 31 && reg2 == 31)
8676 mask |= 1;
8677 else
8678 {
8679 as_bad ("invalid register list");
8680 break;
8681 }
8682 }
8683 /* The mask is filled in in the opcode table for the
8684 benefit of the disassembler. We remove it before
8685 applying the actual mask. */
8686 ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6);
8687 ip->insn_opcode |= mask << MIPS16OP_SH_IMM6;
8688 }
8689 continue;
8690
8691 case 'e': /* extend code */
8692 my_getExpression (&imm_expr, s);
8693 check_absolute_expr (ip, &imm_expr);
8694 if ((unsigned long) imm_expr.X_add_number > 0x7ff)
8695 {
8696 as_warn ("Invalid value for `%s' (%lu)",
8697 ip->insn_mo->name,
8698 (unsigned long) imm_expr.X_add_number);
8699 imm_expr.X_add_number &= 0x7ff;
8700 }
8701 ip->insn_opcode |= imm_expr.X_add_number;
8702 imm_expr.X_op = O_absent;
8703 s = expr_end;
8704 continue;
8705
8706 default:
8707 internalError ();
8708 }
8709 break;
8710 }
8711
8712 /* Args don't match. */
8713 if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] &&
8714 strcmp (insn->name, insn[1].name) == 0)
8715 {
8716 ++insn;
8717 s = argsstart;
8718 continue;
8719 }
8720
8721 insn_error = "illegal operands";
8722
8723 return;
8724 }
8725 }
8726
8727 /* This structure holds information we know about a mips16 immediate
8728 argument type. */
8729
8730 struct mips16_immed_operand
8731 {
8732 /* The type code used in the argument string in the opcode table. */
8733 int type;
8734 /* The number of bits in the short form of the opcode. */
8735 int nbits;
8736 /* The number of bits in the extended form of the opcode. */
8737 int extbits;
8738 /* The amount by which the short form is shifted when it is used;
8739 for example, the sw instruction has a shift count of 2. */
8740 int shift;
8741 /* The amount by which the short form is shifted when it is stored
8742 into the instruction code. */
8743 int op_shift;
8744 /* Non-zero if the short form is unsigned. */
8745 int unsp;
8746 /* Non-zero if the extended form is unsigned. */
8747 int extu;
8748 /* Non-zero if the value is PC relative. */
8749 int pcrel;
8750 };
8751
8752 /* The mips16 immediate operand types. */
8753
8754 static const struct mips16_immed_operand mips16_immed_operands[] =
8755 {
8756 { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
8757 { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 },
8758 { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 },
8759 { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 },
8760 { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 },
8761 { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 },
8762 { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 },
8763 { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 },
8764 { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 },
8765 { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 },
8766 { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 },
8767 { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 },
8768 { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 },
8769 { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 },
8770 { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 },
8771 { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 },
8772 { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
8773 { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 },
8774 { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 },
8775 { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 },
8776 { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 }
8777 };
8778
8779 #define MIPS16_NUM_IMMED \
8780 (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0])
8781
8782 /* Handle a mips16 instruction with an immediate value. This or's the
8783 small immediate value into *INSN. It sets *USE_EXTEND to indicate
8784 whether an extended value is needed; if one is needed, it sets
8785 *EXTEND to the value. The argument type is TYPE. The value is VAL.
8786 If SMALL is true, an unextended opcode was explicitly requested.
8787 If EXT is true, an extended opcode was explicitly requested. If
8788 WARN is true, warn if EXT does not match reality. */
8789
8790 static void
8791 mips16_immed (file, line, type, val, warn, small, ext, insn, use_extend,
8792 extend)
8793 char *file;
8794 unsigned int line;
8795 int type;
8796 offsetT val;
8797 boolean warn;
8798 boolean small;
8799 boolean ext;
8800 unsigned long *insn;
8801 boolean *use_extend;
8802 unsigned short *extend;
8803 {
8804 register const struct mips16_immed_operand *op;
8805 int mintiny, maxtiny;
8806 boolean needext;
8807
8808 op = mips16_immed_operands;
8809 while (op->type != type)
8810 {
8811 ++op;
8812 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
8813 }
8814
8815 if (op->unsp)
8816 {
8817 if (type == '<' || type == '>' || type == '[' || type == ']')
8818 {
8819 mintiny = 1;
8820 maxtiny = 1 << op->nbits;
8821 }
8822 else
8823 {
8824 mintiny = 0;
8825 maxtiny = (1 << op->nbits) - 1;
8826 }
8827 }
8828 else
8829 {
8830 mintiny = - (1 << (op->nbits - 1));
8831 maxtiny = (1 << (op->nbits - 1)) - 1;
8832 }
8833
8834 /* Branch offsets have an implicit 0 in the lowest bit. */
8835 if (type == 'p' || type == 'q')
8836 val /= 2;
8837
8838 if ((val & ((1 << op->shift) - 1)) != 0
8839 || val < (mintiny << op->shift)
8840 || val > (maxtiny << op->shift))
8841 needext = true;
8842 else
8843 needext = false;
8844
8845 if (warn && ext && ! needext)
8846 as_warn_where (file, line, "extended operand requested but not required");
8847 if (small && needext)
8848 as_bad_where (file, line, "invalid unextended operand value");
8849
8850 if (small || (! ext && ! needext))
8851 {
8852 int insnval;
8853
8854 *use_extend = false;
8855 insnval = ((val >> op->shift) & ((1 << op->nbits) - 1));
8856 insnval <<= op->op_shift;
8857 *insn |= insnval;
8858 }
8859 else
8860 {
8861 long minext, maxext;
8862 int extval;
8863
8864 if (op->extu)
8865 {
8866 minext = 0;
8867 maxext = (1 << op->extbits) - 1;
8868 }
8869 else
8870 {
8871 minext = - (1 << (op->extbits - 1));
8872 maxext = (1 << (op->extbits - 1)) - 1;
8873 }
8874 if (val < minext || val > maxext)
8875 as_bad_where (file, line,
8876 "operand value out of range for instruction");
8877
8878 *use_extend = true;
8879 if (op->extbits == 16)
8880 {
8881 extval = ((val >> 11) & 0x1f) | (val & 0x7e0);
8882 val &= 0x1f;
8883 }
8884 else if (op->extbits == 15)
8885 {
8886 extval = ((val >> 11) & 0xf) | (val & 0x7f0);
8887 val &= 0xf;
8888 }
8889 else
8890 {
8891 extval = ((val & 0x1f) << 6) | (val & 0x20);
8892 val = 0;
8893 }
8894
8895 *extend = (unsigned short) extval;
8896 *insn |= val;
8897 }
8898 }
8899 \f
8900 #define LP '('
8901 #define RP ')'
8902
8903 static int
8904 my_getSmallExpression (ep, str)
8905 expressionS *ep;
8906 char *str;
8907 {
8908 char *sp;
8909 int c = 0;
8910
8911 if (*str == ' ')
8912 str++;
8913 if (*str == LP
8914 || (*str == '%' &&
8915 ((str[1] == 'h' && str[2] == 'i')
8916 || (str[1] == 'H' && str[2] == 'I')
8917 || (str[1] == 'l' && str[2] == 'o'))
8918 && str[3] == LP))
8919 {
8920 if (*str == LP)
8921 c = 0;
8922 else
8923 {
8924 c = str[1];
8925 str += 3;
8926 }
8927
8928 /*
8929 * A small expression may be followed by a base register.
8930 * Scan to the end of this operand, and then back over a possible
8931 * base register. Then scan the small expression up to that
8932 * point. (Based on code in sparc.c...)
8933 */
8934 for (sp = str; *sp && *sp != ','; sp++)
8935 ;
8936 if (sp - 4 >= str && sp[-1] == RP)
8937 {
8938 if (isdigit (sp[-2]))
8939 {
8940 for (sp -= 3; sp >= str && isdigit (*sp); sp--)
8941 ;
8942 if (*sp == '$' && sp > str && sp[-1] == LP)
8943 {
8944 sp--;
8945 goto do_it;
8946 }
8947 }
8948 else if (sp - 5 >= str
8949 && sp[-5] == LP
8950 && sp[-4] == '$'
8951 && ((sp[-3] == 'f' && sp[-2] == 'p')
8952 || (sp[-3] == 's' && sp[-2] == 'p')
8953 || (sp[-3] == 'g' && sp[-2] == 'p')
8954 || (sp[-3] == 'a' && sp[-2] == 't')))
8955 {
8956 sp -= 5;
8957 do_it:
8958 if (sp == str)
8959 {
8960 /* no expression means zero offset */
8961 if (c)
8962 {
8963 /* %xx(reg) is an error */
8964 ep->X_op = O_absent;
8965 expr_end = str - 3;
8966 }
8967 else
8968 {
8969 ep->X_op = O_constant;
8970 expr_end = sp;
8971 }
8972 ep->X_add_symbol = NULL;
8973 ep->X_op_symbol = NULL;
8974 ep->X_add_number = 0;
8975 }
8976 else
8977 {
8978 *sp = '\0';
8979 my_getExpression (ep, str);
8980 *sp = LP;
8981 }
8982 return c;
8983 }
8984 }
8985 }
8986 my_getExpression (ep, str);
8987 return c; /* => %hi or %lo encountered */
8988 }
8989
8990 static void
8991 my_getExpression (ep, str)
8992 expressionS *ep;
8993 char *str;
8994 {
8995 char *save_in;
8996
8997 save_in = input_line_pointer;
8998 input_line_pointer = str;
8999 expression (ep);
9000 expr_end = input_line_pointer;
9001 input_line_pointer = save_in;
9002
9003 /* If we are in mips16 mode, and this is an expression based on `.',
9004 then we bump the value of the symbol by 1 since that is how other
9005 text symbols are handled. We don't bother to handle complex
9006 expressions, just `.' plus or minus a constant. */
9007 if (mips_opts.mips16
9008 && ep->X_op == O_symbol
9009 && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0
9010 && S_GET_SEGMENT (ep->X_add_symbol) == now_seg
9011 && ep->X_add_symbol->sy_frag == frag_now
9012 && ep->X_add_symbol->sy_value.X_op == O_constant
9013 && ep->X_add_symbol->sy_value.X_add_number == frag_now_fix ())
9014 ++ep->X_add_symbol->sy_value.X_add_number;
9015 }
9016
9017 /* Turn a string in input_line_pointer into a floating point constant
9018 of type type, and store the appropriate bytes in *litP. The number
9019 of LITTLENUMS emitted is stored in *sizeP . An error message is
9020 returned, or NULL on OK. */
9021
9022 char *
9023 md_atof (type, litP, sizeP)
9024 int type;
9025 char *litP;
9026 int *sizeP;
9027 {
9028 int prec;
9029 LITTLENUM_TYPE words[4];
9030 char *t;
9031 int i;
9032
9033 switch (type)
9034 {
9035 case 'f':
9036 prec = 2;
9037 break;
9038
9039 case 'd':
9040 prec = 4;
9041 break;
9042
9043 default:
9044 *sizeP = 0;
9045 return "bad call to md_atof";
9046 }
9047
9048 t = atof_ieee (input_line_pointer, type, words);
9049 if (t)
9050 input_line_pointer = t;
9051
9052 *sizeP = prec * 2;
9053
9054 if (! target_big_endian)
9055 {
9056 for (i = prec - 1; i >= 0; i--)
9057 {
9058 md_number_to_chars (litP, (valueT) words[i], 2);
9059 litP += 2;
9060 }
9061 }
9062 else
9063 {
9064 for (i = 0; i < prec; i++)
9065 {
9066 md_number_to_chars (litP, (valueT) words[i], 2);
9067 litP += 2;
9068 }
9069 }
9070
9071 return NULL;
9072 }
9073
9074 void
9075 md_number_to_chars (buf, val, n)
9076 char *buf;
9077 valueT val;
9078 int n;
9079 {
9080 if (target_big_endian)
9081 number_to_chars_bigendian (buf, val, n);
9082 else
9083 number_to_chars_littleendian (buf, val, n);
9084 }
9085 \f
9086 CONST char *md_shortopts = "O::g::G:";
9087
9088 struct option md_longopts[] = {
9089 #define OPTION_MIPS1 (OPTION_MD_BASE + 1)
9090 {"mips0", no_argument, NULL, OPTION_MIPS1},
9091 {"mips1", no_argument, NULL, OPTION_MIPS1},
9092 #define OPTION_MIPS2 (OPTION_MD_BASE + 2)
9093 {"mips2", no_argument, NULL, OPTION_MIPS2},
9094 #define OPTION_MIPS3 (OPTION_MD_BASE + 3)
9095 {"mips3", no_argument, NULL, OPTION_MIPS3},
9096 #define OPTION_MIPS4 (OPTION_MD_BASE + 4)
9097 {"mips4", no_argument, NULL, OPTION_MIPS4},
9098 #define OPTION_MCPU (OPTION_MD_BASE + 5)
9099 {"mcpu", required_argument, NULL, OPTION_MCPU},
9100 #define OPTION_MEMBEDDED_PIC (OPTION_MD_BASE + 6)
9101 {"membedded-pic", no_argument, NULL, OPTION_MEMBEDDED_PIC},
9102 #define OPTION_TRAP (OPTION_MD_BASE + 9)
9103 {"trap", no_argument, NULL, OPTION_TRAP},
9104 {"no-break", no_argument, NULL, OPTION_TRAP},
9105 #define OPTION_BREAK (OPTION_MD_BASE + 10)
9106 {"break", no_argument, NULL, OPTION_BREAK},
9107 {"no-trap", no_argument, NULL, OPTION_BREAK},
9108 #define OPTION_EB (OPTION_MD_BASE + 11)
9109 {"EB", no_argument, NULL, OPTION_EB},
9110 #define OPTION_EL (OPTION_MD_BASE + 12)
9111 {"EL", no_argument, NULL, OPTION_EL},
9112 #define OPTION_M4650 (OPTION_MD_BASE + 13)
9113 {"m4650", no_argument, NULL, OPTION_M4650},
9114 #define OPTION_NO_M4650 (OPTION_MD_BASE + 14)
9115 {"no-m4650", no_argument, NULL, OPTION_NO_M4650},
9116 #define OPTION_M4010 (OPTION_MD_BASE + 15)
9117 {"m4010", no_argument, NULL, OPTION_M4010},
9118 #define OPTION_NO_M4010 (OPTION_MD_BASE + 16)
9119 {"no-m4010", no_argument, NULL, OPTION_NO_M4010},
9120 #define OPTION_M4100 (OPTION_MD_BASE + 17)
9121 {"m4100", no_argument, NULL, OPTION_M4100},
9122 #define OPTION_NO_M4100 (OPTION_MD_BASE + 18)
9123 {"no-m4100", no_argument, NULL, OPTION_NO_M4100},
9124 #define OPTION_MIPS16 (OPTION_MD_BASE + 22)
9125 {"mips16", no_argument, NULL, OPTION_MIPS16},
9126 #define OPTION_NO_MIPS16 (OPTION_MD_BASE + 23)
9127 {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16},
9128 /* start-sanitize-r5900 */
9129 #define OPTION_M5900 (OPTION_MD_BASE + 24)
9130 {"m5900", no_argument, NULL, OPTION_M5900},
9131 #define OPTION_NO_M5900 (OPTION_MD_BASE + 25)
9132 {"no-m5900", no_argument, NULL, OPTION_NO_M5900},
9133 /* end-sanitize-r5900 */
9134 #define OPTION_M3900 (OPTION_MD_BASE + 26)
9135 {"m3900", no_argument, NULL, OPTION_M3900},
9136 #define OPTION_NO_M3900 (OPTION_MD_BASE + 27)
9137 {"no-m3900", no_argument, NULL, OPTION_NO_M3900},
9138
9139 /* start-sanitize-tx19 */
9140 {"m1900", no_argument, NULL, OPTION_M3900},
9141 {"no-m1900", no_argument, NULL, OPTION_NO_M3900},
9142 /* end-sanitize-tx19 */
9143
9144 /* start-sanitize-vr5400 */
9145 #define OPTION_M5400 (OPTION_MD_BASE + 28)
9146 {"m5400", no_argument, NULL, OPTION_M5400},
9147 #define OPTION_NO_M5400 (OPTION_MD_BASE + 29)
9148 {"no-m5400", no_argument, NULL, OPTION_NO_M5400},
9149
9150 /* end-sanitize-vr5400 */
9151 /* start-sanitize-tx49 */
9152 #define OPTION_M4900 (OPTION_MD_BASE + 30)
9153 {"m4900", no_argument, NULL, OPTION_M4900},
9154 #define OPTION_NO_M4900 (OPTION_MD_BASE + 31)
9155 {"no-m4900", no_argument, NULL, OPTION_NO_M4900},
9156
9157 /* end-sanitize-tx49 */
9158 /* start-sanitize-vr4320 */
9159 #define OPTION_M4320 (OPTION_MD_BASE + 32)
9160 {"m4320", no_argument, NULL, OPTION_M4320},
9161 #define OPTION_NO_M4320 (OPTION_MD_BASE + 33)
9162 {"no-m4320", no_argument, NULL, OPTION_NO_M4320},
9163
9164 /* end-sanitize-vr4320 */
9165 #define OPTION_CALL_SHARED (OPTION_MD_BASE + 7)
9166 #define OPTION_NON_SHARED (OPTION_MD_BASE + 8)
9167 #define OPTION_XGOT (OPTION_MD_BASE + 19)
9168 #define OPTION_32 (OPTION_MD_BASE + 20)
9169 #define OPTION_64 (OPTION_MD_BASE + 21)
9170 #ifdef OBJ_ELF
9171 {"KPIC", no_argument, NULL, OPTION_CALL_SHARED},
9172 {"xgot", no_argument, NULL, OPTION_XGOT},
9173 {"call_shared", no_argument, NULL, OPTION_CALL_SHARED},
9174 {"non_shared", no_argument, NULL, OPTION_NON_SHARED},
9175 {"32", no_argument, NULL, OPTION_32},
9176 {"64", no_argument, NULL, OPTION_64},
9177 #endif
9178
9179 {NULL, no_argument, NULL, 0}
9180 };
9181 size_t md_longopts_size = sizeof(md_longopts);
9182
9183 int
9184 md_parse_option (c, arg)
9185 int c;
9186 char *arg;
9187 {
9188 switch (c)
9189 {
9190 case OPTION_TRAP:
9191 mips_trap = 1;
9192 break;
9193
9194 case OPTION_BREAK:
9195 mips_trap = 0;
9196 break;
9197
9198 case OPTION_EB:
9199 target_big_endian = 1;
9200 break;
9201
9202 case OPTION_EL:
9203 target_big_endian = 0;
9204 break;
9205
9206 case 'O':
9207 if (arg && arg[1] == '0')
9208 mips_optimize = 1;
9209 else
9210 mips_optimize = 2;
9211 break;
9212
9213 case 'g':
9214 if (arg == NULL)
9215 mips_debug = 2;
9216 else
9217 mips_debug = atoi (arg);
9218 /* When the MIPS assembler sees -g or -g2, it does not do
9219 optimizations which limit full symbolic debugging. We take
9220 that to be equivalent to -O0. */
9221 if (mips_debug == 2)
9222 mips_optimize = 1;
9223 break;
9224
9225 case OPTION_MIPS1:
9226 mips_opts.isa = 1;
9227 break;
9228
9229 case OPTION_MIPS2:
9230 mips_opts.isa = 2;
9231 break;
9232
9233 case OPTION_MIPS3:
9234 mips_opts.isa = 3;
9235 break;
9236
9237 case OPTION_MIPS4:
9238 mips_opts.isa = 4;
9239 break;
9240
9241 case OPTION_MCPU:
9242 {
9243 char *p;
9244
9245 /* Identify the processor type */
9246 p = arg;
9247 if (strcmp (p, "default") == 0
9248 || strcmp (p, "DEFAULT") == 0)
9249 mips_cpu = -1;
9250 else
9251 {
9252 int sv = 0;
9253
9254 /* We need to cope with the various "vr" prefixes for the 4300
9255 processor. */
9256 if (*p == 'v' || *p == 'V')
9257 {
9258 sv = 1;
9259 p++;
9260 }
9261
9262 if (*p == 'r' || *p == 'R')
9263 p++;
9264
9265 mips_cpu = -1;
9266 switch (*p)
9267 {
9268 case '1':
9269 if (strcmp (p, "10000") == 0
9270 || strcmp (p, "10k") == 0
9271 || strcmp (p, "10K") == 0)
9272 mips_cpu = 10000;
9273 /* start-sanitize-tx19 */
9274 else if (strcmp (p, "1900") == 0)
9275 mips_cpu = 3900;
9276 /* end-sanitize-tx19 */
9277 break;
9278
9279 case '2':
9280 if (strcmp (p, "2000") == 0
9281 || strcmp (p, "2k") == 0
9282 || strcmp (p, "2K") == 0)
9283 mips_cpu = 2000;
9284 break;
9285
9286 case '3':
9287 if (strcmp (p, "3000") == 0
9288 || strcmp (p, "3k") == 0
9289 || strcmp (p, "3K") == 0)
9290 mips_cpu = 3000;
9291 else if (strcmp (p, "3900") == 0)
9292 mips_cpu = 3900;
9293 break;
9294
9295 case '4':
9296 if (strcmp (p, "4000") == 0
9297 || strcmp (p, "4k") == 0
9298 || strcmp (p, "4K") == 0)
9299 mips_cpu = 4000;
9300 else if (strcmp (p, "4100") == 0)
9301 mips_cpu = 4100;
9302 else if (strcmp (p, "4300") == 0)
9303 mips_cpu = 4300;
9304 /* start-sanitize-vr4320 */
9305 else if (strcmp (p, "4320") == 0)
9306 mips_cpu = 4320;
9307 /* end-sanitize-vr4320 */
9308 else if (strcmp (p, "4400") == 0)
9309 mips_cpu = 4400;
9310 else if (strcmp (p, "4600") == 0)
9311 mips_cpu = 4600;
9312 else if (strcmp (p, "4650") == 0)
9313 mips_cpu = 4650;
9314 /* start-sanitize-tx49 */
9315 else if (strcmp (p, "4900") == 0)
9316 mips_cpu = 4900;
9317 /* end-sanitize-tx49 */
9318 else if (strcmp (p, "4010") == 0)
9319 mips_cpu = 4010;
9320 break;
9321
9322 case '5':
9323 if (strcmp (p, "5000") == 0
9324 || strcmp (p, "5k") == 0
9325 || strcmp (p, "5K") == 0)
9326 mips_cpu = 5000;
9327 /* start-sanitize-vr5400 */
9328 else if (strcmp (p, "5400") == 0)
9329 mips_cpu = 5400;
9330 /* end-sanitize-vr5400 */
9331 /* start-sanitize-r5900 */
9332 else if (strcmp (p, "5900") == 0)
9333 mips_cpu = 5900;
9334 /* end-sanitize-r5900 */
9335 break;
9336
9337 case '6':
9338 if (strcmp (p, "6000") == 0
9339 || strcmp (p, "6k") == 0
9340 || strcmp (p, "6K") == 0)
9341 mips_cpu = 6000;
9342 break;
9343
9344 case '8':
9345 if (strcmp (p, "8000") == 0
9346 || strcmp (p, "8k") == 0
9347 || strcmp (p, "8K") == 0)
9348 mips_cpu = 8000;
9349 break;
9350
9351 case 'o':
9352 if (strcmp (p, "orion") == 0)
9353 mips_cpu = 4600;
9354 break;
9355 }
9356
9357 if (sv
9358 && (mips_cpu != 4300
9359 && mips_cpu != 4100
9360 /* start-sanitize-vr4320 */
9361 && mips_cpu != 4320
9362 /* end-sanitize-vr4320 */
9363 /* start-sanitize-vr5400 */
9364 && mips_cpu != 5400
9365 /* end-sanitize-vr5400 */
9366 && mips_cpu != 5000))
9367 {
9368 as_bad ("ignoring invalid leading 'v' in -mcpu=%s switch", arg);
9369 return 0;
9370 }
9371
9372 if (mips_cpu == -1)
9373 {
9374 as_bad ("invalid architecture -mcpu=%s", arg);
9375 return 0;
9376 }
9377 }
9378 }
9379 break;
9380
9381 case OPTION_M4650:
9382 mips_4650 = 1;
9383 break;
9384
9385 case OPTION_NO_M4650:
9386 mips_4650 = 0;
9387 break;
9388
9389 case OPTION_M4010:
9390 mips_4010 = 1;
9391 break;
9392
9393 case OPTION_NO_M4010:
9394 mips_4010 = 0;
9395 break;
9396
9397 case OPTION_M4100:
9398 mips_4100 = 1;
9399 break;
9400
9401 case OPTION_NO_M4100:
9402 mips_4100 = 0;
9403 break;
9404
9405 /* start-sanitize-r5900 */
9406 case OPTION_M5900:
9407 mips_5900 = 1;
9408 break;
9409
9410 case OPTION_NO_M5900:
9411 mips_5900 = 0;
9412 break;
9413 /* end-sanitize-r5900 */
9414
9415 /* start-sanitize-vr4320 */
9416 case OPTION_M4320:
9417 mips_4320 = 1;
9418 break;
9419
9420 case OPTION_NO_M4320:
9421 mips_4320 = 0;
9422 break;
9423
9424 /* end-sanitize-vr4320 */
9425 /* start-sanitize-vr5400 */
9426 case OPTION_M5400:
9427 mips_5400 = 1;
9428 break;
9429
9430 case OPTION_NO_M5400:
9431 mips_5400 = 0;
9432 break;
9433
9434 /* end-sanitize-vr5400 */
9435 case OPTION_M3900:
9436 mips_3900 = 1;
9437 break;
9438
9439 case OPTION_NO_M3900:
9440 mips_3900 = 0;
9441 break;
9442
9443 /* start-sanitize-tx49 */
9444 case OPTION_M4900:
9445 mips_4900 = 1;
9446 break;
9447
9448 case OPTION_NO_M4900:
9449 mips_4900 = 0;
9450 break;
9451
9452 /* end-sanitize-tx49 */
9453 case OPTION_MIPS16:
9454 mips_opts.mips16 = 1;
9455 mips_no_prev_insn (false);
9456 break;
9457
9458 case OPTION_NO_MIPS16:
9459 mips_opts.mips16 = 0;
9460 mips_no_prev_insn (false);
9461 break;
9462
9463 case OPTION_MEMBEDDED_PIC:
9464 mips_pic = EMBEDDED_PIC;
9465 if (USE_GLOBAL_POINTER_OPT && g_switch_seen)
9466 {
9467 as_bad ("-G may not be used with embedded PIC code");
9468 return 0;
9469 }
9470 g_switch_value = 0x7fffffff;
9471 break;
9472
9473 /* When generating ELF code, we permit -KPIC and -call_shared to
9474 select SVR4_PIC, and -non_shared to select no PIC. This is
9475 intended to be compatible with Irix 5. */
9476 case OPTION_CALL_SHARED:
9477 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
9478 {
9479 as_bad ("-call_shared is supported only for ELF format");
9480 return 0;
9481 }
9482 mips_pic = SVR4_PIC;
9483 if (g_switch_seen && g_switch_value != 0)
9484 {
9485 as_bad ("-G may not be used with SVR4 PIC code");
9486 return 0;
9487 }
9488 g_switch_value = 0;
9489 break;
9490
9491 case OPTION_NON_SHARED:
9492 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
9493 {
9494 as_bad ("-non_shared is supported only for ELF format");
9495 return 0;
9496 }
9497 mips_pic = NO_PIC;
9498 break;
9499
9500 /* The -xgot option tells the assembler to use 32 offsets when
9501 accessing the got in SVR4_PIC mode. It is for Irix
9502 compatibility. */
9503 case OPTION_XGOT:
9504 mips_big_got = 1;
9505 break;
9506
9507 case 'G':
9508 if (! USE_GLOBAL_POINTER_OPT)
9509 {
9510 as_bad ("-G is not supported for this configuration");
9511 return 0;
9512 }
9513 else if (mips_pic == SVR4_PIC || mips_pic == EMBEDDED_PIC)
9514 {
9515 as_bad ("-G may not be used with SVR4 or embedded PIC code");
9516 return 0;
9517 }
9518 else
9519 g_switch_value = atoi (arg);
9520 g_switch_seen = 1;
9521 break;
9522
9523 /* The -32 and -64 options tell the assembler to output the 32
9524 bit or the 64 bit MIPS ELF format. */
9525 case OPTION_32:
9526 mips_64 = 0;
9527 break;
9528
9529 case OPTION_64:
9530 {
9531 const char **list, **l;
9532
9533 list = bfd_target_list ();
9534 for (l = list; *l != NULL; l++)
9535 if (strcmp (*l, "elf64-bigmips") == 0
9536 || strcmp (*l, "elf64-littlemips") == 0)
9537 break;
9538 if (*l == NULL)
9539 as_fatal ("No compiled in support for 64 bit object file format");
9540 free (list);
9541 mips_64 = 1;
9542 }
9543 break;
9544
9545 default:
9546 return 0;
9547 }
9548
9549 return 1;
9550 }
9551
9552 void
9553 md_show_usage (stream)
9554 FILE *stream;
9555 {
9556 fprintf(stream, "\
9557 MIPS options:\n\
9558 -membedded-pic generate embedded position independent code\n\
9559 -EB generate big endian output\n\
9560 -EL generate little endian output\n\
9561 -g, -g2 do not remove uneeded NOPs or swap branches\n\
9562 -G NUM allow referencing objects up to NUM bytes\n\
9563 implicitly with the gp register [default 8]\n");
9564 fprintf(stream, "\
9565 -mips1, -mcpu=r{2,3}000 generate code for r2000 and r3000\n\
9566 -mips2, -mcpu=r6000 generate code for r6000\n\
9567 -mips3, -mcpu=r4000 generate code for r4000\n\
9568 -mips4, -mcpu=r8000 generate code for r8000\n\
9569 -mcpu=vr4300 generate code for vr4300\n\
9570 -mcpu=vr4100 generate code for vr4100\n\
9571 -m4650 permit R4650 instructions\n\
9572 -no-m4650 do not permit R4650 instructions\n\
9573 -m4010 permit R4010 instructions\n\
9574 -no-m4010 do not permit R4010 instructions\n\
9575 -m4100 permit VR4100 instructions\n\
9576 -no-m4100 do not permit VR4100 instructions\n");
9577 fprintf(stream, "\
9578 -mips16 generate mips16 instructions\n\
9579 -no-mips16 do not generate mips16 instructions\n");
9580 fprintf(stream, "\
9581 -O0 remove unneeded NOPs, do not swap branches\n\
9582 -O remove unneeded NOPs and swap branches\n\
9583 --trap, --no-break trap exception on div by 0 and mult overflow\n\
9584 --break, --no-trap break exception on div by 0 and mult overflow\n");
9585 #ifdef OBJ_ELF
9586 fprintf(stream, "\
9587 -KPIC, -call_shared generate SVR4 position independent code\n\
9588 -non_shared do not generate position independent code\n\
9589 -xgot assume a 32 bit GOT\n\
9590 -32 create 32 bit object file (default)\n\
9591 -64 create 64 bit object file\n");
9592 #endif
9593 }
9594 \f
9595 void
9596 mips_init_after_args ()
9597 {
9598 /* initialize opcodes */
9599 bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes;
9600 mips_opcodes = (struct mips_opcode*) mips_builtin_opcodes;
9601 }
9602
9603 long
9604 md_pcrel_from (fixP)
9605 fixS *fixP;
9606 {
9607 if (OUTPUT_FLAVOR != bfd_target_aout_flavour
9608 && fixP->fx_addsy != (symbolS *) NULL
9609 && ! S_IS_DEFINED (fixP->fx_addsy))
9610 {
9611 /* This makes a branch to an undefined symbol be a branch to the
9612 current location. */
9613 return 4;
9614 }
9615
9616 /* return the address of the delay slot */
9617 return fixP->fx_size + fixP->fx_where + fixP->fx_frag->fr_address;
9618 }
9619
9620 /* This is called by emit_expr via TC_CONS_FIX_NEW when creating a
9621 reloc for a cons. We could use the definition there, except that
9622 we want to handle 64 bit relocs specially. */
9623
9624 void
9625 cons_fix_new_mips (frag, where, nbytes, exp)
9626 fragS *frag;
9627 int where;
9628 unsigned int nbytes;
9629 expressionS *exp;
9630 {
9631 #ifndef OBJ_ELF
9632 /* If we are assembling in 32 bit mode, turn an 8 byte reloc into a
9633 4 byte reloc. */
9634 if (nbytes == 8 && ! mips_64)
9635 {
9636 if (target_big_endian)
9637 where += 4;
9638 nbytes = 4;
9639 }
9640 #endif
9641
9642 if (nbytes != 2 && nbytes != 4 && nbytes != 8)
9643 as_bad ("Unsupported reloc size %d", nbytes);
9644
9645 fix_new_exp (frag_now, where, (int) nbytes, exp, 0,
9646 (nbytes == 2
9647 ? BFD_RELOC_16
9648 : (nbytes == 4 ? BFD_RELOC_32 : BFD_RELOC_64)));
9649 }
9650
9651 /* This is called before the symbol table is processed. In order to
9652 work with gcc when using mips-tfile, we must keep all local labels.
9653 However, in other cases, we want to discard them. If we were
9654 called with -g, but we didn't see any debugging information, it may
9655 mean that gcc is smuggling debugging information through to
9656 mips-tfile, in which case we must generate all local labels. */
9657
9658 void
9659 mips_frob_file_before_adjust ()
9660 {
9661 #ifndef NO_ECOFF_DEBUGGING
9662 if (ECOFF_DEBUGGING
9663 && mips_debug != 0
9664 && ! ecoff_debugging_seen)
9665 flag_keep_locals = 1;
9666 #endif
9667 }
9668
9669 /* Sort any unmatched HI16_S relocs so that they immediately precede
9670 the corresponding LO reloc. This is called before md_apply_fix and
9671 tc_gen_reloc. Unmatched HI16_S relocs can only be generated by
9672 explicit use of the %hi modifier. */
9673
9674 void
9675 mips_frob_file ()
9676 {
9677 struct mips_hi_fixup *l;
9678
9679 for (l = mips_hi_fixup_list; l != NULL; l = l->next)
9680 {
9681 segment_info_type *seginfo;
9682 int pass;
9683
9684 assert (l->fixp->fx_r_type == BFD_RELOC_HI16_S);
9685
9686 /* Check quickly whether the next fixup happens to be a matching
9687 %lo. */
9688 if (l->fixp->fx_next != NULL
9689 && l->fixp->fx_next->fx_r_type == BFD_RELOC_LO16
9690 && l->fixp->fx_addsy == l->fixp->fx_next->fx_addsy
9691 && l->fixp->fx_offset == l->fixp->fx_next->fx_offset)
9692 continue;
9693
9694 /* Look through the fixups for this segment for a matching %lo.
9695 When we find one, move the %hi just in front of it. We do
9696 this in two passes. In the first pass, we try to find a
9697 unique %lo. In the second pass, we permit multiple %hi
9698 relocs for a single %lo (this is a GNU extension). */
9699 seginfo = seg_info (l->seg);
9700 for (pass = 0; pass < 2; pass++)
9701 {
9702 fixS *f, *prev;
9703
9704 prev = NULL;
9705 for (f = seginfo->fix_root; f != NULL; f = f->fx_next)
9706 {
9707 /* Check whether this is a %lo fixup which matches l->fixp. */
9708 if (f->fx_r_type == BFD_RELOC_LO16
9709 && f->fx_addsy == l->fixp->fx_addsy
9710 && f->fx_offset == l->fixp->fx_offset
9711 && (pass == 1
9712 || prev == NULL
9713 || prev->fx_r_type != BFD_RELOC_HI16_S
9714 || prev->fx_addsy != f->fx_addsy
9715 || prev->fx_offset != f->fx_offset))
9716 {
9717 fixS **pf;
9718
9719 /* Move l->fixp before f. */
9720 for (pf = &seginfo->fix_root;
9721 *pf != l->fixp;
9722 pf = &(*pf)->fx_next)
9723 assert (*pf != NULL);
9724
9725 *pf = l->fixp->fx_next;
9726
9727 l->fixp->fx_next = f;
9728 if (prev == NULL)
9729 seginfo->fix_root = l->fixp;
9730 else
9731 prev->fx_next = l->fixp;
9732
9733 break;
9734 }
9735
9736 prev = f;
9737 }
9738
9739 if (f != NULL)
9740 break;
9741
9742 if (pass == 1)
9743 as_warn_where (l->fixp->fx_file, l->fixp->fx_line,
9744 "Unmatched %%hi reloc");
9745 }
9746 }
9747 }
9748
9749 /* When generating embedded PIC code we need to use a special
9750 relocation to represent the difference of two symbols in the .text
9751 section (switch tables use a difference of this sort). See
9752 include/coff/mips.h for details. This macro checks whether this
9753 fixup requires the special reloc. */
9754 #define SWITCH_TABLE(fixp) \
9755 ((fixp)->fx_r_type == BFD_RELOC_32 \
9756 && (fixp)->fx_addsy != NULL \
9757 && (fixp)->fx_subsy != NULL \
9758 && S_GET_SEGMENT ((fixp)->fx_addsy) == text_section \
9759 && S_GET_SEGMENT ((fixp)->fx_subsy) == text_section)
9760
9761 /* When generating embedded PIC code we must keep all PC relative
9762 relocations, in case the linker has to relax a call. We also need
9763 to keep relocations for switch table entries. */
9764
9765 /*ARGSUSED*/
9766 int
9767 mips_force_relocation (fixp)
9768 fixS *fixp;
9769 {
9770 return (mips_pic == EMBEDDED_PIC
9771 && (fixp->fx_pcrel
9772 || SWITCH_TABLE (fixp)
9773 || fixp->fx_r_type == BFD_RELOC_PCREL_HI16_S
9774 || fixp->fx_r_type == BFD_RELOC_PCREL_LO16));
9775 }
9776
9777 /* Apply a fixup to the object file. */
9778
9779 int
9780 md_apply_fix (fixP, valueP)
9781 fixS *fixP;
9782 valueT *valueP;
9783 {
9784 unsigned char *buf;
9785 long insn, value;
9786
9787 assert (fixP->fx_size == 4
9788 || fixP->fx_r_type == BFD_RELOC_16
9789 || fixP->fx_r_type == BFD_RELOC_64);
9790
9791 value = *valueP;
9792
9793 /* If we aren't adjusting this fixup to be against the section
9794 symbol, we need to adjust the value. */
9795 #ifdef OBJ_ELF
9796 if (fixP->fx_addsy != NULL
9797 && OUTPUT_FLAVOR == bfd_target_elf_flavour
9798 && S_GET_OTHER (fixP->fx_addsy) == STO_MIPS16)
9799 {
9800 value -= S_GET_VALUE (fixP->fx_addsy);
9801 if (value != 0 && ! fixP->fx_pcrel)
9802 {
9803 /* In this case, the bfd_install_relocation routine will
9804 incorrectly add the symbol value back in. We just want
9805 the addend to appear in the object file. */
9806 value -= S_GET_VALUE (fixP->fx_addsy);
9807 }
9808 }
9809 #endif
9810
9811 fixP->fx_addnumber = value; /* Remember value for tc_gen_reloc */
9812
9813 if (fixP->fx_addsy == NULL && ! fixP->fx_pcrel)
9814 fixP->fx_done = 1;
9815
9816 switch (fixP->fx_r_type)
9817 {
9818 case BFD_RELOC_MIPS_JMP:
9819 case BFD_RELOC_HI16:
9820 case BFD_RELOC_HI16_S:
9821 case BFD_RELOC_MIPS_GPREL:
9822 case BFD_RELOC_MIPS_LITERAL:
9823 case BFD_RELOC_MIPS_CALL16:
9824 case BFD_RELOC_MIPS_GOT16:
9825 case BFD_RELOC_MIPS_GPREL32:
9826 case BFD_RELOC_MIPS_GOT_HI16:
9827 case BFD_RELOC_MIPS_GOT_LO16:
9828 case BFD_RELOC_MIPS_CALL_HI16:
9829 case BFD_RELOC_MIPS_CALL_LO16:
9830 case BFD_RELOC_MIPS16_GPREL:
9831 /* start-sanitize-r5900 */
9832 case BFD_RELOC_MIPS15_S3:
9833 /* end-sanitize-r5900 */
9834 if (fixP->fx_pcrel)
9835 as_bad_where (fixP->fx_file, fixP->fx_line,
9836 "Invalid PC relative reloc");
9837 /* Nothing needed to do. The value comes from the reloc entry */
9838 break;
9839
9840 case BFD_RELOC_MIPS16_JMP:
9841 /* We currently always generate a reloc against a symbol, which
9842 means that we don't want an addend even if the symbol is
9843 defined. */
9844 fixP->fx_addnumber = 0;
9845 break;
9846
9847 case BFD_RELOC_PCREL_HI16_S:
9848 /* The addend for this is tricky if it is internal, so we just
9849 do everything here rather than in bfd_install_relocation. */
9850 if ((fixP->fx_addsy->bsym->flags & BSF_SECTION_SYM) == 0)
9851 {
9852 /* For an external symbol adjust by the address to make it
9853 pcrel_offset. We use the address of the RELLO reloc
9854 which follows this one. */
9855 value += (fixP->fx_next->fx_frag->fr_address
9856 + fixP->fx_next->fx_where);
9857 }
9858 if (value & 0x8000)
9859 value += 0x10000;
9860 value >>= 16;
9861 buf = (unsigned char *) fixP->fx_frag->fr_literal + fixP->fx_where;
9862 if (target_big_endian)
9863 buf += 2;
9864 md_number_to_chars (buf, value, 2);
9865 break;
9866
9867 case BFD_RELOC_PCREL_LO16:
9868 /* The addend for this is tricky if it is internal, so we just
9869 do everything here rather than in bfd_install_relocation. */
9870 if ((fixP->fx_addsy->bsym->flags & BSF_SECTION_SYM) == 0)
9871 value += fixP->fx_frag->fr_address + fixP->fx_where;
9872 buf = (unsigned char *) fixP->fx_frag->fr_literal + fixP->fx_where;
9873 if (target_big_endian)
9874 buf += 2;
9875 md_number_to_chars (buf, value, 2);
9876 break;
9877
9878 case BFD_RELOC_64:
9879 /* This is handled like BFD_RELOC_32, but we output a sign
9880 extended value if we are only 32 bits. */
9881 if (fixP->fx_done
9882 || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
9883 {
9884 if (8 <= sizeof (valueT))
9885 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
9886 value, 8);
9887 else
9888 {
9889 long w1, w2;
9890 long hiv;
9891
9892 w1 = w2 = fixP->fx_where;
9893 if (target_big_endian)
9894 w1 += 4;
9895 else
9896 w2 += 4;
9897 md_number_to_chars (fixP->fx_frag->fr_literal + w1, value, 4);
9898 if ((value & 0x80000000) != 0)
9899 hiv = 0xffffffff;
9900 else
9901 hiv = 0;
9902 md_number_to_chars (fixP->fx_frag->fr_literal + w2, hiv, 4);
9903 }
9904 }
9905 break;
9906
9907 case BFD_RELOC_32:
9908 /* If we are deleting this reloc entry, we must fill in the
9909 value now. This can happen if we have a .word which is not
9910 resolved when it appears but is later defined. We also need
9911 to fill in the value if this is an embedded PIC switch table
9912 entry. */
9913 if (fixP->fx_done
9914 || (mips_pic == EMBEDDED_PIC && SWITCH_TABLE (fixP)))
9915 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
9916 value, 4);
9917 break;
9918
9919 case BFD_RELOC_16:
9920 /* If we are deleting this reloc entry, we must fill in the
9921 value now. */
9922 assert (fixP->fx_size == 2);
9923 if (fixP->fx_done)
9924 md_number_to_chars (fixP->fx_frag->fr_literal + fixP->fx_where,
9925 value, 2);
9926 break;
9927
9928 case BFD_RELOC_LO16:
9929 /* When handling an embedded PIC switch statement, we can wind
9930 up deleting a LO16 reloc. See the 'o' case in mips_ip. */
9931 if (fixP->fx_done)
9932 {
9933 if (value < -0x8000 || value > 0x7fff)
9934 as_bad_where (fixP->fx_file, fixP->fx_line,
9935 "relocation overflow");
9936 buf = (unsigned char *) fixP->fx_frag->fr_literal + fixP->fx_where;
9937 if (target_big_endian)
9938 buf += 2;
9939 md_number_to_chars (buf, value, 2);
9940 }
9941 break;
9942
9943 case BFD_RELOC_16_PCREL_S2:
9944 /*
9945 * We need to save the bits in the instruction since fixup_segment()
9946 * might be deleting the relocation entry (i.e., a branch within
9947 * the current segment).
9948 */
9949 if ((value & 0x3) != 0)
9950 as_bad_where (fixP->fx_file, fixP->fx_line,
9951 "Branch to odd address (%lx)", value);
9952 value >>= 2;
9953
9954 /* update old instruction data */
9955 buf = (unsigned char *) (fixP->fx_where + fixP->fx_frag->fr_literal);
9956 if (target_big_endian)
9957 insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
9958 else
9959 insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
9960
9961 if (value >= -0x8000 && value < 0x8000)
9962 insn |= value & 0xffff;
9963 else
9964 {
9965 /* The branch offset is too large. If this is an
9966 unconditional branch, and we are not generating PIC code,
9967 we can convert it to an absolute jump instruction. */
9968 if (mips_pic == NO_PIC
9969 && fixP->fx_done
9970 && fixP->fx_frag->fr_address >= text_section->vma
9971 && (fixP->fx_frag->fr_address
9972 < text_section->vma + text_section->_raw_size)
9973 && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */
9974 || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */
9975 || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */
9976 {
9977 if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */
9978 insn = 0x0c000000; /* jal */
9979 else
9980 insn = 0x08000000; /* j */
9981 fixP->fx_r_type = BFD_RELOC_MIPS_JMP;
9982 fixP->fx_done = 0;
9983 fixP->fx_addsy = section_symbol (text_section);
9984 fixP->fx_addnumber = (value << 2) + md_pcrel_from (fixP);
9985 }
9986 else
9987 {
9988 /* FIXME. It would be possible in principle to handle
9989 conditional branches which overflow. They could be
9990 transformed into a branch around a jump. This would
9991 require setting up variant frags for each different
9992 branch type. The native MIPS assembler attempts to
9993 handle these cases, but it appears to do it
9994 incorrectly. */
9995 as_bad_where (fixP->fx_file, fixP->fx_line,
9996 "Branch out of range");
9997 }
9998 }
9999
10000 md_number_to_chars ((char *) buf, (valueT) insn, 4);
10001 break;
10002
10003 default:
10004 internalError ();
10005 }
10006
10007 return 1;
10008 }
10009
10010 #if 0
10011 void
10012 printInsn (oc)
10013 unsigned long oc;
10014 {
10015 const struct mips_opcode *p;
10016 int treg, sreg, dreg, shamt;
10017 short imm;
10018 const char *args;
10019 int i;
10020
10021 for (i = 0; i < NUMOPCODES; ++i)
10022 {
10023 p = &mips_opcodes[i];
10024 if (((oc & p->mask) == p->match) && (p->pinfo != INSN_MACRO))
10025 {
10026 printf ("%08lx %s\t", oc, p->name);
10027 treg = (oc >> 16) & 0x1f;
10028 sreg = (oc >> 21) & 0x1f;
10029 dreg = (oc >> 11) & 0x1f;
10030 shamt = (oc >> 6) & 0x1f;
10031 imm = oc;
10032 for (args = p->args;; ++args)
10033 {
10034 switch (*args)
10035 {
10036 case '\0':
10037 printf ("\n");
10038 break;
10039
10040 case ',':
10041 case '(':
10042 case ')':
10043 printf ("%c", *args);
10044 continue;
10045
10046 case 'r':
10047 assert (treg == sreg);
10048 printf ("$%d,$%d", treg, sreg);
10049 continue;
10050
10051 case 'd':
10052 case 'G':
10053 printf ("$%d", dreg);
10054 continue;
10055
10056 case 't':
10057 case 'E':
10058 printf ("$%d", treg);
10059 continue;
10060
10061 case 'k':
10062 printf ("0x%x", treg);
10063 continue;
10064
10065 case 'b':
10066 case 's':
10067 printf ("$%d", sreg);
10068 continue;
10069
10070 case 'a':
10071 printf ("0x%08lx", oc & 0x1ffffff);
10072 continue;
10073
10074 case 'i':
10075 case 'j':
10076 case 'o':
10077 case 'u':
10078 printf ("%d", imm);
10079 continue;
10080
10081 case '<':
10082 case '>':
10083 printf ("$%d", shamt);
10084 continue;
10085
10086 default:
10087 internalError ();
10088 }
10089 break;
10090 }
10091 return;
10092 }
10093 }
10094 printf ("%08lx UNDEFINED\n", oc);
10095 }
10096 #endif
10097
10098 static symbolS *
10099 get_symbol ()
10100 {
10101 int c;
10102 char *name;
10103 symbolS *p;
10104
10105 name = input_line_pointer;
10106 c = get_symbol_end ();
10107 p = (symbolS *) symbol_find_or_make (name);
10108 *input_line_pointer = c;
10109 return p;
10110 }
10111
10112 /* Align the current frag to a given power of two. The MIPS assembler
10113 also automatically adjusts any preceding label. */
10114
10115 static void
10116 mips_align (to, fill, label)
10117 int to;
10118 int fill;
10119 symbolS *label;
10120 {
10121 mips_emit_delays (false);
10122 frag_align (to, fill, 0);
10123 record_alignment (now_seg, to);
10124 if (label != NULL)
10125 {
10126 assert (S_GET_SEGMENT (label) == now_seg);
10127 label->sy_frag = frag_now;
10128 S_SET_VALUE (label, (valueT) frag_now_fix ());
10129 }
10130 }
10131
10132 /* Align to a given power of two. .align 0 turns off the automatic
10133 alignment used by the data creating pseudo-ops. */
10134
10135 static void
10136 s_align (x)
10137 int x;
10138 {
10139 register int temp;
10140 register long temp_fill;
10141 long max_alignment = 15;
10142
10143 /*
10144
10145 o Note that the assembler pulls down any immediately preceeding label
10146 to the aligned address.
10147 o It's not documented but auto alignment is reinstated by
10148 a .align pseudo instruction.
10149 o Note also that after auto alignment is turned off the mips assembler
10150 issues an error on attempt to assemble an improperly aligned data item.
10151 We don't.
10152
10153 */
10154
10155 temp = get_absolute_expression ();
10156 if (temp > max_alignment)
10157 as_bad ("Alignment too large: %d. assumed.", temp = max_alignment);
10158 else if (temp < 0)
10159 {
10160 as_warn ("Alignment negative: 0 assumed.");
10161 temp = 0;
10162 }
10163 if (*input_line_pointer == ',')
10164 {
10165 input_line_pointer++;
10166 temp_fill = get_absolute_expression ();
10167 }
10168 else
10169 temp_fill = 0;
10170 if (temp)
10171 {
10172 auto_align = 1;
10173 mips_align (temp, (int) temp_fill,
10174 insn_labels != NULL ? insn_labels->label : NULL);
10175 }
10176 else
10177 {
10178 auto_align = 0;
10179 }
10180
10181 demand_empty_rest_of_line ();
10182 }
10183
10184 void
10185 mips_flush_pending_output ()
10186 {
10187 mips_emit_delays (false);
10188 mips_clear_insn_labels ();
10189 }
10190
10191 static void
10192 s_change_sec (sec)
10193 int sec;
10194 {
10195 segT seg;
10196
10197 /* When generating embedded PIC code, we only use the .text, .lit8,
10198 .sdata and .sbss sections. We change the .data and .rdata
10199 pseudo-ops to use .sdata. */
10200 if (mips_pic == EMBEDDED_PIC
10201 && (sec == 'd' || sec == 'r'))
10202 sec = 's';
10203
10204 #ifdef OBJ_ELF
10205 /* The ELF backend needs to know that we are changing sections, so
10206 that .previous works correctly. We could do something like check
10207 for a obj_section_change_hook macro, but that might be confusing
10208 as it would not be appropriate to use it in the section changing
10209 functions in read.c, since obj-elf.c intercepts those. FIXME:
10210 This should be cleaner, somehow. */
10211 obj_elf_section_change_hook ();
10212 #endif
10213
10214 mips_emit_delays (false);
10215 switch (sec)
10216 {
10217 case 't':
10218 s_text (0);
10219 break;
10220 case 'd':
10221 s_data (0);
10222 break;
10223 case 'b':
10224 subseg_set (bss_section, (subsegT) get_absolute_expression ());
10225 demand_empty_rest_of_line ();
10226 break;
10227
10228 case 'r':
10229 if (USE_GLOBAL_POINTER_OPT)
10230 {
10231 seg = subseg_new (RDATA_SECTION_NAME,
10232 (subsegT) get_absolute_expression ());
10233 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
10234 {
10235 bfd_set_section_flags (stdoutput, seg,
10236 (SEC_ALLOC
10237 | SEC_LOAD
10238 | SEC_READONLY
10239 | SEC_RELOC
10240 | SEC_DATA));
10241 if (strcmp (TARGET_OS, "elf") != 0)
10242 bfd_set_section_alignment (stdoutput, seg, 4);
10243 }
10244 demand_empty_rest_of_line ();
10245 }
10246 else
10247 {
10248 as_bad ("No read only data section in this object file format");
10249 demand_empty_rest_of_line ();
10250 return;
10251 }
10252 break;
10253
10254 case 's':
10255 if (USE_GLOBAL_POINTER_OPT)
10256 {
10257 seg = subseg_new (".sdata", (subsegT) get_absolute_expression ());
10258 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
10259 {
10260 bfd_set_section_flags (stdoutput, seg,
10261 SEC_ALLOC | SEC_LOAD | SEC_RELOC
10262 | SEC_DATA);
10263 if (strcmp (TARGET_OS, "elf") != 0)
10264 bfd_set_section_alignment (stdoutput, seg, 4);
10265 }
10266 demand_empty_rest_of_line ();
10267 break;
10268 }
10269 else
10270 {
10271 as_bad ("Global pointers not supported; recompile -G 0");
10272 demand_empty_rest_of_line ();
10273 return;
10274 }
10275 }
10276
10277 auto_align = 1;
10278 }
10279
10280 void
10281 mips_enable_auto_align ()
10282 {
10283 auto_align = 1;
10284 }
10285
10286 static void
10287 s_cons (log_size)
10288 int log_size;
10289 {
10290 symbolS *label;
10291
10292 label = insn_labels != NULL ? insn_labels->label : NULL;
10293 mips_emit_delays (false);
10294 if (log_size > 0 && auto_align)
10295 mips_align (log_size, 0, label);
10296 mips_clear_insn_labels ();
10297 cons (1 << log_size);
10298 }
10299
10300 static void
10301 s_float_cons (type)
10302 int type;
10303 {
10304 symbolS *label;
10305
10306 label = insn_labels != NULL ? insn_labels->label : NULL;
10307
10308 mips_emit_delays (false);
10309
10310 if (auto_align)
10311 if (type == 'd')
10312 mips_align (3, 0, label);
10313 else
10314 mips_align (2, 0, label);
10315
10316 mips_clear_insn_labels ();
10317
10318 float_cons (type);
10319 }
10320
10321 /* Handle .globl. We need to override it because on Irix 5 you are
10322 permitted to say
10323 .globl foo .text
10324 where foo is an undefined symbol, to mean that foo should be
10325 considered to be the address of a function. */
10326
10327 static void
10328 s_mips_globl (x)
10329 int x;
10330 {
10331 char *name;
10332 int c;
10333 symbolS *symbolP;
10334 flagword flag;
10335
10336 name = input_line_pointer;
10337 c = get_symbol_end ();
10338 symbolP = symbol_find_or_make (name);
10339 *input_line_pointer = c;
10340 SKIP_WHITESPACE ();
10341
10342 /* On Irix 5, every global symbol that is not explicitly labelled as
10343 being a function is apparently labelled as being an object. */
10344 flag = BSF_OBJECT;
10345
10346 if (! is_end_of_line[(unsigned char) *input_line_pointer])
10347 {
10348 char *secname;
10349 asection *sec;
10350
10351 secname = input_line_pointer;
10352 c = get_symbol_end ();
10353 sec = bfd_get_section_by_name (stdoutput, secname);
10354 if (sec == NULL)
10355 as_bad ("%s: no such section", secname);
10356 *input_line_pointer = c;
10357
10358 if (sec != NULL && (sec->flags & SEC_CODE) != 0)
10359 flag = BSF_FUNCTION;
10360 }
10361
10362 symbolP->bsym->flags |= flag;
10363
10364 S_SET_EXTERNAL (symbolP);
10365 demand_empty_rest_of_line ();
10366 }
10367
10368 static void
10369 s_option (x)
10370 int x;
10371 {
10372 char *opt;
10373 char c;
10374
10375 opt = input_line_pointer;
10376 c = get_symbol_end ();
10377
10378 if (*opt == 'O')
10379 {
10380 /* FIXME: What does this mean? */
10381 }
10382 else if (strncmp (opt, "pic", 3) == 0)
10383 {
10384 int i;
10385
10386 i = atoi (opt + 3);
10387 if (i == 0)
10388 mips_pic = NO_PIC;
10389 else if (i == 2)
10390 mips_pic = SVR4_PIC;
10391 else
10392 as_bad (".option pic%d not supported", i);
10393
10394 if (USE_GLOBAL_POINTER_OPT && mips_pic == SVR4_PIC)
10395 {
10396 if (g_switch_seen && g_switch_value != 0)
10397 as_warn ("-G may not be used with SVR4 PIC code");
10398 g_switch_value = 0;
10399 bfd_set_gp_size (stdoutput, 0);
10400 }
10401 }
10402 else
10403 as_warn ("Unrecognized option \"%s\"", opt);
10404
10405 *input_line_pointer = c;
10406 demand_empty_rest_of_line ();
10407 }
10408
10409 /* This structure is used to hold a stack of .set values. */
10410
10411 struct mips_option_stack
10412 {
10413 struct mips_option_stack *next;
10414 struct mips_set_options options;
10415 };
10416
10417 static struct mips_option_stack *mips_opts_stack;
10418
10419 /* Handle the .set pseudo-op. */
10420
10421 static void
10422 s_mipsset (x)
10423 int x;
10424 {
10425 char *name = input_line_pointer, ch;
10426
10427 while (!is_end_of_line[(unsigned char) *input_line_pointer])
10428 input_line_pointer++;
10429 ch = *input_line_pointer;
10430 *input_line_pointer = '\0';
10431
10432 if (strcmp (name, "reorder") == 0)
10433 {
10434 if (mips_opts.noreorder && prev_nop_frag != NULL)
10435 {
10436 /* If we still have pending nops, we can discard them. The
10437 usual nop handling will insert any that are still
10438 needed. */
10439 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
10440 * (mips_opts.mips16 ? 2 : 4));
10441 prev_nop_frag = NULL;
10442 }
10443 mips_opts.noreorder = 0;
10444 }
10445 else if (strcmp (name, "noreorder") == 0)
10446 {
10447 mips_emit_delays (true);
10448 mips_opts.noreorder = 1;
10449 mips_any_noreorder = 1;
10450 }
10451 else if (strcmp (name, "at") == 0)
10452 {
10453 mips_opts.noat = 0;
10454 }
10455 else if (strcmp (name, "noat") == 0)
10456 {
10457 mips_opts.noat = 1;
10458 }
10459 else if (strcmp (name, "macro") == 0)
10460 {
10461 mips_opts.warn_about_macros = 0;
10462 }
10463 else if (strcmp (name, "nomacro") == 0)
10464 {
10465 if (mips_opts.noreorder == 0)
10466 as_bad ("`noreorder' must be set before `nomacro'");
10467 mips_opts.warn_about_macros = 1;
10468 }
10469 else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0)
10470 {
10471 mips_opts.nomove = 0;
10472 }
10473 else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0)
10474 {
10475 mips_opts.nomove = 1;
10476 }
10477 else if (strcmp (name, "bopt") == 0)
10478 {
10479 mips_opts.nobopt = 0;
10480 }
10481 else if (strcmp (name, "nobopt") == 0)
10482 {
10483 mips_opts.nobopt = 1;
10484 }
10485 else if (strcmp (name, "mips16") == 0
10486 || strcmp (name, "MIPS-16") == 0)
10487 mips_opts.mips16 = 1;
10488 else if (strcmp (name, "nomips16") == 0
10489 || strcmp (name, "noMIPS-16") == 0)
10490 mips_opts.mips16 = 0;
10491 else if (strncmp (name, "mips", 4) == 0)
10492 {
10493 int isa;
10494
10495 /* Permit the user to change the ISA on the fly. Needless to
10496 say, misuse can cause serious problems. */
10497 isa = atoi (name + 4);
10498 if (isa == 0)
10499 mips_opts.isa = file_mips_isa;
10500 else if (isa < 1 || isa > 4)
10501 as_bad ("unknown ISA level");
10502 else
10503 mips_opts.isa = isa;
10504 }
10505 else if (strcmp (name, "autoextend") == 0)
10506 mips_opts.noautoextend = 0;
10507 else if (strcmp (name, "noautoextend") == 0)
10508 mips_opts.noautoextend = 1;
10509 else if (strcmp (name, "push") == 0)
10510 {
10511 struct mips_option_stack *s;
10512
10513 s = (struct mips_option_stack *) xmalloc (sizeof *s);
10514 s->next = mips_opts_stack;
10515 s->options = mips_opts;
10516 mips_opts_stack = s;
10517 }
10518 else if (strcmp (name, "pop") == 0)
10519 {
10520 struct mips_option_stack *s;
10521
10522 s = mips_opts_stack;
10523 if (s == NULL)
10524 as_bad (".set pop with no .set push");
10525 else
10526 {
10527 /* If we're changing the reorder mode we need to handle
10528 delay slots correctly. */
10529 if (s->options.noreorder && ! mips_opts.noreorder)
10530 mips_emit_delays (true);
10531 else if (! s->options.noreorder && mips_opts.noreorder)
10532 {
10533 if (prev_nop_frag != NULL)
10534 {
10535 prev_nop_frag->fr_fix -= (prev_nop_frag_holds
10536 * (mips_opts.mips16 ? 2 : 4));
10537 prev_nop_frag = NULL;
10538 }
10539 }
10540
10541 mips_opts = s->options;
10542 mips_opts_stack = s->next;
10543 free (s);
10544 }
10545 }
10546 else
10547 {
10548 as_warn ("Tried to set unrecognized symbol: %s\n", name);
10549 }
10550 *input_line_pointer = ch;
10551 demand_empty_rest_of_line ();
10552 }
10553
10554 /* Handle the .abicalls pseudo-op. I believe this is equivalent to
10555 .option pic2. It means to generate SVR4 PIC calls. */
10556
10557 static void
10558 s_abicalls (ignore)
10559 int ignore;
10560 {
10561 mips_pic = SVR4_PIC;
10562 if (USE_GLOBAL_POINTER_OPT)
10563 {
10564 if (g_switch_seen && g_switch_value != 0)
10565 as_warn ("-G may not be used with SVR4 PIC code");
10566 g_switch_value = 0;
10567 }
10568 bfd_set_gp_size (stdoutput, 0);
10569 demand_empty_rest_of_line ();
10570 }
10571
10572 /* Handle the .cpload pseudo-op. This is used when generating SVR4
10573 PIC code. It sets the $gp register for the function based on the
10574 function address, which is in the register named in the argument.
10575 This uses a relocation against _gp_disp, which is handled specially
10576 by the linker. The result is:
10577 lui $gp,%hi(_gp_disp)
10578 addiu $gp,$gp,%lo(_gp_disp)
10579 addu $gp,$gp,.cpload argument
10580 The .cpload argument is normally $25 == $t9. */
10581
10582 static void
10583 s_cpload (ignore)
10584 int ignore;
10585 {
10586 expressionS ex;
10587 int icnt = 0;
10588
10589 /* If we are not generating SVR4 PIC code, .cpload is ignored. */
10590 if (mips_pic != SVR4_PIC)
10591 {
10592 s_ignore (0);
10593 return;
10594 }
10595
10596 /* .cpload should be a in .set noreorder section. */
10597 if (mips_opts.noreorder == 0)
10598 as_warn (".cpload not in noreorder section");
10599
10600 ex.X_op = O_symbol;
10601 ex.X_add_symbol = symbol_find_or_make ("_gp_disp");
10602 ex.X_op_symbol = NULL;
10603 ex.X_add_number = 0;
10604
10605 /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */
10606 ex.X_add_symbol->bsym->flags |= BSF_OBJECT;
10607
10608 macro_build_lui ((char *) NULL, &icnt, &ex, GP);
10609 macro_build ((char *) NULL, &icnt, &ex, "addiu", "t,r,j", GP, GP,
10610 (int) BFD_RELOC_LO16);
10611
10612 macro_build ((char *) NULL, &icnt, (expressionS *) NULL, "addu", "d,v,t",
10613 GP, GP, tc_get_register (0));
10614
10615 demand_empty_rest_of_line ();
10616 }
10617
10618 /* Handle the .cprestore pseudo-op. This stores $gp into a given
10619 offset from $sp. The offset is remembered, and after making a PIC
10620 call $gp is restored from that location. */
10621
10622 static void
10623 s_cprestore (ignore)
10624 int ignore;
10625 {
10626 expressionS ex;
10627 int icnt = 0;
10628
10629 /* If we are not generating SVR4 PIC code, .cprestore is ignored. */
10630 if (mips_pic != SVR4_PIC)
10631 {
10632 s_ignore (0);
10633 return;
10634 }
10635
10636 mips_cprestore_offset = get_absolute_expression ();
10637
10638 ex.X_op = O_constant;
10639 ex.X_add_symbol = NULL;
10640 ex.X_op_symbol = NULL;
10641 ex.X_add_number = mips_cprestore_offset;
10642
10643 macro_build ((char *) NULL, &icnt, &ex,
10644 ((bfd_arch_bits_per_address (stdoutput) == 32
10645 || mips_opts.isa < 3)
10646 ? "sw" : "sd"),
10647 "t,o(b)", GP, (int) BFD_RELOC_LO16, SP);
10648
10649 demand_empty_rest_of_line ();
10650 }
10651
10652 /* Handle the .gpword pseudo-op. This is used when generating PIC
10653 code. It generates a 32 bit GP relative reloc. */
10654
10655 static void
10656 s_gpword (ignore)
10657 int ignore;
10658 {
10659 symbolS *label;
10660 expressionS ex;
10661 char *p;
10662
10663 /* When not generating PIC code, this is treated as .word. */
10664 if (mips_pic != SVR4_PIC)
10665 {
10666 s_cons (2);
10667 return;
10668 }
10669
10670 label = insn_labels != NULL ? insn_labels->label : NULL;
10671 mips_emit_delays (true);
10672 if (auto_align)
10673 mips_align (2, 0, label);
10674 mips_clear_insn_labels ();
10675
10676 expression (&ex);
10677
10678 if (ex.X_op != O_symbol || ex.X_add_number != 0)
10679 {
10680 as_bad ("Unsupported use of .gpword");
10681 ignore_rest_of_line ();
10682 }
10683
10684 p = frag_more (4);
10685 md_number_to_chars (p, (valueT) 0, 4);
10686 fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, 0,
10687 BFD_RELOC_MIPS_GPREL32);
10688
10689 demand_empty_rest_of_line ();
10690 }
10691
10692 /* Handle the .cpadd pseudo-op. This is used when dealing with switch
10693 tables in SVR4 PIC code. */
10694
10695 static void
10696 s_cpadd (ignore)
10697 int ignore;
10698 {
10699 int icnt = 0;
10700 int reg;
10701
10702 /* This is ignored when not generating SVR4 PIC code. */
10703 if (mips_pic != SVR4_PIC)
10704 {
10705 s_ignore (0);
10706 return;
10707 }
10708
10709 /* Add $gp to the register named as an argument. */
10710 reg = tc_get_register (0);
10711 macro_build ((char *) NULL, &icnt, (expressionS *) NULL,
10712 ((bfd_arch_bits_per_address (stdoutput) == 32
10713 || mips_opts.isa < 3)
10714 ? "addu" : "daddu"),
10715 "d,v,t", reg, reg, GP);
10716
10717 demand_empty_rest_of_line ();
10718 }
10719
10720 /* Handle the .insn pseudo-op. This marks instruction labels in
10721 mips16 mode. This permits the linker to handle them specially,
10722 such as generating jalx instructions when needed. We also make
10723 them odd for the duration of the assembly, in order to generate the
10724 right sort of code. We will make them even in the adjust_symtab
10725 routine, while leaving them marked. This is convenient for the
10726 debugger and the disassembler. The linker knows to make them odd
10727 again. */
10728
10729 static void
10730 s_insn (ignore)
10731 int ignore;
10732 {
10733 if (mips_opts.mips16)
10734 mips16_mark_labels ();
10735
10736 demand_empty_rest_of_line ();
10737 }
10738
10739 /* Handle a .stabn directive. We need these in order to mark a label
10740 as being a mips16 text label correctly. Sometimes the compiler
10741 will emit a label, followed by a .stabn, and then switch sections.
10742 If the label and .stabn are in mips16 mode, then the label is
10743 really a mips16 text label. */
10744
10745 static void
10746 s_mips_stab (type)
10747 int type;
10748 {
10749 if (type == 'n' && mips_opts.mips16)
10750 mips16_mark_labels ();
10751
10752 s_stab (type);
10753 }
10754
10755 /* Handle the .weakext pseudo-op as defined in Kane and Heinrich.
10756 */
10757
10758 static void
10759 s_mips_weakext (ignore)
10760 int ignore;
10761 {
10762 char *name;
10763 int c;
10764 symbolS *symbolP;
10765 expressionS exp;
10766
10767 name = input_line_pointer;
10768 c = get_symbol_end ();
10769 symbolP = symbol_find_or_make (name);
10770 S_SET_WEAK (symbolP);
10771 *input_line_pointer = c;
10772
10773 SKIP_WHITESPACE ();
10774
10775 if (! is_end_of_line[(unsigned char) *input_line_pointer])
10776 {
10777 if (S_IS_DEFINED (symbolP))
10778 {
10779 as_bad ("Ignoring attempt to redefine symbol `%s'.",
10780 S_GET_NAME (symbolP));
10781 ignore_rest_of_line ();
10782 return;
10783 }
10784
10785 if (*input_line_pointer == ',')
10786 {
10787 ++input_line_pointer;
10788 SKIP_WHITESPACE ();
10789 }
10790
10791 expression (&exp);
10792 if (exp.X_op != O_symbol)
10793 {
10794 as_bad ("bad .weakext directive");
10795 ignore_rest_of_line();
10796 return;
10797 }
10798 symbolP->sy_value = exp;
10799 }
10800
10801 demand_empty_rest_of_line ();
10802 }
10803
10804 /* Parse a register string into a number. Called from the ECOFF code
10805 to parse .frame. The argument is non-zero if this is the frame
10806 register, so that we can record it in mips_frame_reg. */
10807
10808 int
10809 tc_get_register (frame)
10810 int frame;
10811 {
10812 int reg;
10813
10814 SKIP_WHITESPACE ();
10815 if (*input_line_pointer++ != '$')
10816 {
10817 as_warn ("expected `$'");
10818 reg = 0;
10819 }
10820 else if (isdigit ((unsigned char) *input_line_pointer))
10821 {
10822 reg = get_absolute_expression ();
10823 if (reg < 0 || reg >= 32)
10824 {
10825 as_warn ("Bad register number");
10826 reg = 0;
10827 }
10828 }
10829 else
10830 {
10831 if (strncmp (input_line_pointer, "fp", 2) == 0)
10832 reg = FP;
10833 else if (strncmp (input_line_pointer, "sp", 2) == 0)
10834 reg = SP;
10835 else if (strncmp (input_line_pointer, "gp", 2) == 0)
10836 reg = GP;
10837 else if (strncmp (input_line_pointer, "at", 2) == 0)
10838 reg = AT;
10839 else
10840 {
10841 as_warn ("Unrecognized register name");
10842 reg = 0;
10843 }
10844 input_line_pointer += 2;
10845 }
10846 if (frame)
10847 mips_frame_reg = reg != 0 ? reg : SP;
10848 return reg;
10849 }
10850
10851 valueT
10852 md_section_align (seg, addr)
10853 asection *seg;
10854 valueT addr;
10855 {
10856 int align = bfd_get_section_alignment (stdoutput, seg);
10857
10858 #ifdef OBJ_ELF
10859 /* We don't need to align ELF sections to the full alignment.
10860 However, Irix 5 may prefer that we align them at least to a 16
10861 byte boundary. We don't bother to align the sections if we are
10862 targeted for an embedded system. */
10863 if (strcmp (TARGET_OS, "elf") == 0)
10864 return addr;
10865 if (align > 4)
10866 align = 4;
10867 #endif
10868
10869 return ((addr + (1 << align) - 1) & (-1 << align));
10870 }
10871
10872 /* Utility routine, called from above as well. If called while the
10873 input file is still being read, it's only an approximation. (For
10874 example, a symbol may later become defined which appeared to be
10875 undefined earlier.) */
10876
10877 static int
10878 nopic_need_relax (sym, before_relaxing)
10879 symbolS *sym;
10880 int before_relaxing;
10881 {
10882 if (sym == 0)
10883 return 0;
10884
10885 if (USE_GLOBAL_POINTER_OPT)
10886 {
10887 const char *symname;
10888 int change;
10889
10890 /* Find out whether this symbol can be referenced off the GP
10891 register. It can be if it is smaller than the -G size or if
10892 it is in the .sdata or .sbss section. Certain symbols can
10893 not be referenced off the GP, although it appears as though
10894 they can. */
10895 symname = S_GET_NAME (sym);
10896 if (symname != (const char *) NULL
10897 && (strcmp (symname, "eprol") == 0
10898 || strcmp (symname, "etext") == 0
10899 || strcmp (symname, "_gp") == 0
10900 || strcmp (symname, "edata") == 0
10901 || strcmp (symname, "_fbss") == 0
10902 || strcmp (symname, "_fdata") == 0
10903 || strcmp (symname, "_ftext") == 0
10904 || strcmp (symname, "end") == 0
10905 || strcmp (symname, "_gp_disp") == 0))
10906 change = 1;
10907 else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym))
10908 && (0
10909 #ifndef NO_ECOFF_DEBUGGING
10910 || (sym->ecoff_extern_size != 0
10911 && sym->ecoff_extern_size <= g_switch_value)
10912 #endif
10913 /* We must defer this decision until after the whole
10914 file has been read, since there might be a .extern
10915 after the first use of this symbol. */
10916 || (before_relaxing
10917 #ifndef NO_ECOFF_DEBUGGING
10918 && sym->ecoff_extern_size == 0
10919 #endif
10920 && S_GET_VALUE (sym) == 0)
10921 || (S_GET_VALUE (sym) != 0
10922 && S_GET_VALUE (sym) <= g_switch_value)))
10923 change = 0;
10924 else
10925 {
10926 const char *segname;
10927
10928 segname = segment_name (S_GET_SEGMENT (sym));
10929 assert (strcmp (segname, ".lit8") != 0
10930 && strcmp (segname, ".lit4") != 0);
10931 change = (strcmp (segname, ".sdata") != 0
10932 && strcmp (segname, ".sbss") != 0);
10933 }
10934 return change;
10935 }
10936 else
10937 /* We are not optimizing for the GP register. */
10938 return 1;
10939 }
10940
10941 /* Given a mips16 variant frag FRAGP, return non-zero if it needs an
10942 extended opcode. SEC is the section the frag is in. */
10943
10944 static int
10945 mips16_extended_frag (fragp, sec, stretch)
10946 fragS *fragp;
10947 asection *sec;
10948 long stretch;
10949 {
10950 int type;
10951 register const struct mips16_immed_operand *op;
10952 offsetT val;
10953 int mintiny, maxtiny;
10954 segT symsec;
10955
10956 if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype))
10957 return 0;
10958 if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype))
10959 return 1;
10960
10961 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
10962 op = mips16_immed_operands;
10963 while (op->type != type)
10964 {
10965 ++op;
10966 assert (op < mips16_immed_operands + MIPS16_NUM_IMMED);
10967 }
10968
10969 if (op->unsp)
10970 {
10971 if (type == '<' || type == '>' || type == '[' || type == ']')
10972 {
10973 mintiny = 1;
10974 maxtiny = 1 << op->nbits;
10975 }
10976 else
10977 {
10978 mintiny = 0;
10979 maxtiny = (1 << op->nbits) - 1;
10980 }
10981 }
10982 else
10983 {
10984 mintiny = - (1 << (op->nbits - 1));
10985 maxtiny = (1 << (op->nbits - 1)) - 1;
10986 }
10987
10988 /* We can't call S_GET_VALUE here, because we don't want to lock in
10989 a particular frag address. */
10990 if (fragp->fr_symbol->sy_value.X_op == O_constant)
10991 {
10992 val = (fragp->fr_symbol->sy_value.X_add_number
10993 + fragp->fr_symbol->sy_frag->fr_address);
10994 symsec = S_GET_SEGMENT (fragp->fr_symbol);
10995 }
10996 else if (fragp->fr_symbol->sy_value.X_op == O_symbol
10997 && (fragp->fr_symbol->sy_value.X_add_symbol->sy_value.X_op
10998 == O_constant))
10999 {
11000 val = (fragp->fr_symbol->sy_value.X_add_symbol->sy_value.X_add_number
11001 + fragp->fr_symbol->sy_value.X_add_symbol->sy_frag->fr_address
11002 + fragp->fr_symbol->sy_value.X_add_number
11003 + fragp->fr_symbol->sy_frag->fr_address);
11004 symsec = S_GET_SEGMENT (fragp->fr_symbol->sy_value.X_add_symbol);
11005 }
11006 else
11007 return 1;
11008
11009 if (op->pcrel)
11010 {
11011 addressT addr;
11012
11013 /* We won't have the section when we are called from
11014 mips_relax_frag. However, we will always have been called
11015 from md_estimate_size_before_relax first. If this is a
11016 branch to a different section, we mark it as such. If SEC is
11017 NULL, and the frag is not marked, then it must be a branch to
11018 the same section. */
11019 if (sec == NULL)
11020 {
11021 if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype))
11022 return 1;
11023 }
11024 else
11025 {
11026 if (symsec != sec)
11027 {
11028 fragp->fr_subtype =
11029 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
11030
11031 /* FIXME: We should support this, and let the linker
11032 catch branches and loads that are out of range. */
11033 as_bad_where (fragp->fr_file, fragp->fr_line,
11034 "unsupported PC relative reference to different section");
11035
11036 return 1;
11037 }
11038 }
11039
11040 /* In this case, we know for sure that the symbol fragment is in
11041 the same section. If the fr_address of the symbol fragment
11042 is greater then the address of this fragment we want to add
11043 in STRETCH in order to get a better estimate of the address.
11044 This particularly matters because of the shift bits. */
11045 if (stretch != 0
11046 && fragp->fr_symbol->sy_frag->fr_address >= fragp->fr_address)
11047 {
11048 fragS *f;
11049
11050 /* Adjust stretch for any alignment frag. Note that if have
11051 been expanding the earlier code, the symbol may be
11052 defined in what appears to be an earlier frag. FIXME:
11053 This doesn't handle the fr_subtype field, which specifies
11054 a maximum number of bytes to skip when doing an
11055 alignment. */
11056 for (f = fragp;
11057 f != NULL && f != fragp->fr_symbol->sy_frag;
11058 f = f->fr_next)
11059 {
11060 if (f->fr_type == rs_align || f->fr_type == rs_align_code)
11061 {
11062 if (stretch < 0)
11063 stretch = - ((- stretch)
11064 & ~ ((1 << (int) f->fr_offset) - 1));
11065 else
11066 stretch &= ~ ((1 << (int) f->fr_offset) - 1);
11067 if (stretch == 0)
11068 break;
11069 }
11070 }
11071 if (f != NULL)
11072 val += stretch;
11073 }
11074
11075 addr = fragp->fr_address + fragp->fr_fix;
11076
11077 /* The base address rules are complicated. The base address of
11078 a branch is the following instruction. The base address of a
11079 PC relative load or add is the instruction itself, but if it
11080 is in a delay slot (in which case it can not be extended) use
11081 the address of the instruction whose delay slot it is in. */
11082 if (type == 'p' || type == 'q')
11083 {
11084 addr += 2;
11085
11086 /* If we are currently assuming that this frag should be
11087 extended, then, the current address is two bytes
11088 higher. */
11089 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
11090 addr += 2;
11091
11092 /* Ignore the low bit in the target, since it will be set
11093 for a text label. */
11094 if ((val & 1) != 0)
11095 --val;
11096 }
11097 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
11098 addr -= 4;
11099 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
11100 addr -= 2;
11101
11102 val -= addr & ~ ((1 << op->shift) - 1);
11103
11104 /* Branch offsets have an implicit 0 in the lowest bit. */
11105 if (type == 'p' || type == 'q')
11106 val /= 2;
11107
11108 /* If any of the shifted bits are set, we must use an extended
11109 opcode. If the address depends on the size of this
11110 instruction, this can lead to a loop, so we arrange to always
11111 use an extended opcode. We only check this when we are in
11112 the main relaxation loop, when SEC is NULL. */
11113 if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL)
11114 {
11115 fragp->fr_subtype =
11116 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
11117 return 1;
11118 }
11119
11120 /* If we are about to mark a frag as extended because the value
11121 is precisely maxtiny + 1, then there is a chance of an
11122 infinite loop as in the following code:
11123 la $4,foo
11124 .skip 1020
11125 .align 2
11126 foo:
11127 In this case when the la is extended, foo is 0x3fc bytes
11128 away, so the la can be shrunk, but then foo is 0x400 away, so
11129 the la must be extended. To avoid this loop, we mark the
11130 frag as extended if it was small, and is about to become
11131 extended with a value of maxtiny + 1. */
11132 if (val == ((maxtiny + 1) << op->shift)
11133 && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)
11134 && sec == NULL)
11135 {
11136 fragp->fr_subtype =
11137 RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype);
11138 return 1;
11139 }
11140 }
11141 else if (symsec != absolute_section && sec != NULL)
11142 as_bad_where (fragp->fr_file, fragp->fr_line, "unsupported relocation");
11143
11144 if ((val & ((1 << op->shift) - 1)) != 0
11145 || val < (mintiny << op->shift)
11146 || val > (maxtiny << op->shift))
11147 return 1;
11148 else
11149 return 0;
11150 }
11151
11152 /* Estimate the size of a frag before relaxing. Unless this is the
11153 mips16, we are not really relaxing here, and the final size is
11154 encoded in the subtype information. For the mips16, we have to
11155 decide whether we are using an extended opcode or not. */
11156
11157 /*ARGSUSED*/
11158 int
11159 md_estimate_size_before_relax (fragp, segtype)
11160 fragS *fragp;
11161 asection *segtype;
11162 {
11163 int change;
11164
11165 if (RELAX_MIPS16_P (fragp->fr_subtype))
11166 {
11167 if (mips16_extended_frag (fragp, segtype, 0))
11168 {
11169 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
11170 return 4;
11171 }
11172 else
11173 {
11174 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
11175 return 2;
11176 }
11177 }
11178
11179 if (mips_pic == NO_PIC)
11180 {
11181 change = nopic_need_relax (fragp->fr_symbol, 0);
11182 }
11183 else if (mips_pic == SVR4_PIC)
11184 {
11185 symbolS *sym;
11186 asection *symsec;
11187
11188 sym = fragp->fr_symbol;
11189
11190 /* Handle the case of a symbol equated to another symbol. */
11191 while (sym->sy_value.X_op == O_symbol
11192 && (! S_IS_DEFINED (sym) || S_IS_COMMON (sym)))
11193 {
11194 symbolS *n;
11195
11196 /* It's possible to get a loop here in a badly written
11197 program. */
11198 n = sym->sy_value.X_add_symbol;
11199 if (n == sym)
11200 break;
11201 sym = n;
11202 }
11203
11204 symsec = S_GET_SEGMENT (sym);
11205
11206 /* This must duplicate the test in adjust_reloc_syms. */
11207 change = (symsec != &bfd_und_section
11208 && symsec != &bfd_abs_section
11209 && ! bfd_is_com_section (symsec));
11210 }
11211 else
11212 abort ();
11213
11214 if (change)
11215 {
11216 /* Record the offset to the first reloc in the fr_opcode field.
11217 This lets md_convert_frag and tc_gen_reloc know that the code
11218 must be expanded. */
11219 fragp->fr_opcode = (fragp->fr_literal
11220 + fragp->fr_fix
11221 - RELAX_OLD (fragp->fr_subtype)
11222 + RELAX_RELOC1 (fragp->fr_subtype));
11223 /* FIXME: This really needs as_warn_where. */
11224 if (RELAX_WARN (fragp->fr_subtype))
11225 as_warn ("AT used after \".set noat\" or macro used after \".set nomacro\"");
11226 }
11227
11228 if (! change)
11229 return 0;
11230 else
11231 return RELAX_NEW (fragp->fr_subtype) - RELAX_OLD (fragp->fr_subtype);
11232 }
11233
11234 /* This is called to see whether a reloc against a defined symbol
11235 should be converted into a reloc against a section. Don't adjust
11236 MIPS16 jump relocations, so we don't have to worry about the format
11237 of the offset in the .o file. Don't adjust relocations against
11238 mips16 symbols, so that the linker can find them if it needs to set
11239 up a stub. */
11240
11241 int
11242 mips_fix_adjustable (fixp)
11243 fixS *fixp;
11244 {
11245 if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP)
11246 return 0;
11247 if (fixp->fx_addsy == NULL)
11248 return 1;
11249 #ifdef OBJ_ELF
11250 if (OUTPUT_FLAVOR == bfd_target_elf_flavour
11251 && S_GET_OTHER (fixp->fx_addsy) == STO_MIPS16
11252 && fixp->fx_subsy == NULL)
11253 return 0;
11254 #endif
11255 return 1;
11256 }
11257
11258 /* Translate internal representation of relocation info to BFD target
11259 format. */
11260
11261 arelent **
11262 tc_gen_reloc (section, fixp)
11263 asection *section;
11264 fixS *fixp;
11265 {
11266 static arelent *retval[4];
11267 arelent *reloc;
11268 bfd_reloc_code_real_type code;
11269
11270 reloc = retval[0] = (arelent *) xmalloc (sizeof (arelent));
11271 retval[1] = NULL;
11272
11273 reloc->sym_ptr_ptr = &fixp->fx_addsy->bsym;
11274 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
11275
11276 if (mips_pic == EMBEDDED_PIC
11277 && SWITCH_TABLE (fixp))
11278 {
11279 /* For a switch table entry we use a special reloc. The addend
11280 is actually the difference between the reloc address and the
11281 subtrahend. */
11282 reloc->addend = reloc->address - S_GET_VALUE (fixp->fx_subsy);
11283 if (OUTPUT_FLAVOR != bfd_target_ecoff_flavour)
11284 as_fatal ("Double check fx_r_type in tc-mips.c:tc_gen_reloc");
11285 fixp->fx_r_type = BFD_RELOC_GPREL32;
11286 }
11287 else if (fixp->fx_r_type == BFD_RELOC_PCREL_LO16)
11288 {
11289 /* We use a special addend for an internal RELLO reloc. */
11290 if (fixp->fx_addsy->bsym->flags & BSF_SECTION_SYM)
11291 reloc->addend = reloc->address - S_GET_VALUE (fixp->fx_subsy);
11292 else
11293 reloc->addend = fixp->fx_addnumber + reloc->address;
11294 }
11295 else if (fixp->fx_r_type == BFD_RELOC_PCREL_HI16_S)
11296 {
11297 assert (fixp->fx_next != NULL
11298 && fixp->fx_next->fx_r_type == BFD_RELOC_PCREL_LO16);
11299 /* We use a special addend for an internal RELHI reloc. The
11300 reloc is relative to the RELLO; adjust the addend
11301 accordingly. */
11302 if (fixp->fx_addsy->bsym->flags & BSF_SECTION_SYM)
11303 reloc->addend = (fixp->fx_next->fx_frag->fr_address
11304 + fixp->fx_next->fx_where
11305 - S_GET_VALUE (fixp->fx_subsy));
11306 else
11307 reloc->addend = (fixp->fx_addnumber
11308 + fixp->fx_next->fx_frag->fr_address
11309 + fixp->fx_next->fx_where);
11310 }
11311 else if (fixp->fx_pcrel == 0)
11312 reloc->addend = fixp->fx_addnumber;
11313 else
11314 {
11315 if (OUTPUT_FLAVOR != bfd_target_aout_flavour)
11316 /* A gruesome hack which is a result of the gruesome gas reloc
11317 handling. */
11318 reloc->addend = reloc->address;
11319 else
11320 reloc->addend = -reloc->address;
11321 }
11322
11323 /* If this is a variant frag, we may need to adjust the existing
11324 reloc and generate a new one. */
11325 if (fixp->fx_frag->fr_opcode != NULL
11326 && (fixp->fx_r_type == BFD_RELOC_MIPS_GPREL
11327 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT16
11328 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL16
11329 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT_HI16
11330 || fixp->fx_r_type == BFD_RELOC_MIPS_GOT_LO16
11331 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL_HI16
11332 || fixp->fx_r_type == BFD_RELOC_MIPS_CALL_LO16))
11333 {
11334 arelent *reloc2;
11335
11336 assert (! RELAX_MIPS16_P (fixp->fx_frag->fr_subtype));
11337
11338 /* If this is not the last reloc in this frag, then we have two
11339 GPREL relocs, or a GOT_HI16/GOT_LO16 pair, or a
11340 CALL_HI16/CALL_LO16, both of which are being replaced. Let
11341 the second one handle all of them. */
11342 if (fixp->fx_next != NULL
11343 && fixp->fx_frag == fixp->fx_next->fx_frag)
11344 {
11345 assert ((fixp->fx_r_type == BFD_RELOC_MIPS_GPREL
11346 && fixp->fx_next->fx_r_type == BFD_RELOC_MIPS_GPREL)
11347 || (fixp->fx_r_type == BFD_RELOC_MIPS_GOT_HI16
11348 && (fixp->fx_next->fx_r_type
11349 == BFD_RELOC_MIPS_GOT_LO16))
11350 || (fixp->fx_r_type == BFD_RELOC_MIPS_CALL_HI16
11351 && (fixp->fx_next->fx_r_type
11352 == BFD_RELOC_MIPS_CALL_LO16)));
11353 retval[0] = NULL;
11354 return retval;
11355 }
11356
11357 fixp->fx_where = fixp->fx_frag->fr_opcode - fixp->fx_frag->fr_literal;
11358 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
11359 reloc2 = retval[1] = (arelent *) xmalloc (sizeof (arelent));
11360 retval[2] = NULL;
11361 reloc2->sym_ptr_ptr = &fixp->fx_addsy->bsym;
11362 reloc2->address = (reloc->address
11363 + (RELAX_RELOC2 (fixp->fx_frag->fr_subtype)
11364 - RELAX_RELOC1 (fixp->fx_frag->fr_subtype)));
11365 reloc2->addend = fixp->fx_addnumber;
11366 reloc2->howto = bfd_reloc_type_lookup (stdoutput, BFD_RELOC_LO16);
11367 assert (reloc2->howto != NULL);
11368
11369 if (RELAX_RELOC3 (fixp->fx_frag->fr_subtype))
11370 {
11371 arelent *reloc3;
11372
11373 reloc3 = retval[2] = (arelent *) xmalloc (sizeof (arelent));
11374 retval[3] = NULL;
11375 *reloc3 = *reloc2;
11376 reloc3->address += 4;
11377 }
11378
11379 if (mips_pic == NO_PIC)
11380 {
11381 assert (fixp->fx_r_type == BFD_RELOC_MIPS_GPREL);
11382 fixp->fx_r_type = BFD_RELOC_HI16_S;
11383 }
11384 else if (mips_pic == SVR4_PIC)
11385 {
11386 switch (fixp->fx_r_type)
11387 {
11388 default:
11389 abort ();
11390 case BFD_RELOC_MIPS_GOT16:
11391 break;
11392 case BFD_RELOC_MIPS_CALL16:
11393 case BFD_RELOC_MIPS_GOT_LO16:
11394 case BFD_RELOC_MIPS_CALL_LO16:
11395 fixp->fx_r_type = BFD_RELOC_MIPS_GOT16;
11396 break;
11397 }
11398 }
11399 else
11400 abort ();
11401 }
11402
11403 /* Since DIFF_EXPR_OK is defined in tc-mips.h, it is possible that
11404 fixup_segment converted a non-PC relative reloc into a PC
11405 relative reloc. In such a case, we need to convert the reloc
11406 code. */
11407 code = fixp->fx_r_type;
11408 if (fixp->fx_pcrel)
11409 {
11410 switch (code)
11411 {
11412 case BFD_RELOC_8:
11413 code = BFD_RELOC_8_PCREL;
11414 break;
11415 case BFD_RELOC_16:
11416 code = BFD_RELOC_16_PCREL;
11417 break;
11418 case BFD_RELOC_32:
11419 code = BFD_RELOC_32_PCREL;
11420 break;
11421 case BFD_RELOC_64:
11422 code = BFD_RELOC_64_PCREL;
11423 break;
11424 case BFD_RELOC_8_PCREL:
11425 case BFD_RELOC_16_PCREL:
11426 case BFD_RELOC_32_PCREL:
11427 case BFD_RELOC_64_PCREL:
11428 case BFD_RELOC_16_PCREL_S2:
11429 case BFD_RELOC_PCREL_HI16_S:
11430 case BFD_RELOC_PCREL_LO16:
11431 break;
11432 default:
11433 as_bad_where (fixp->fx_file, fixp->fx_line,
11434 "Cannot make %s relocation PC relative",
11435 bfd_get_reloc_code_name (code));
11436 }
11437 }
11438
11439 /* To support a PC relative reloc when generating embedded PIC code
11440 for ECOFF, we use a Cygnus extension. We check for that here to
11441 make sure that we don't let such a reloc escape normally. */
11442 if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour
11443 && code == BFD_RELOC_16_PCREL_S2
11444 && mips_pic != EMBEDDED_PIC)
11445 reloc->howto = NULL;
11446 else
11447 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
11448
11449 if (reloc->howto == NULL)
11450 {
11451 as_bad_where (fixp->fx_file, fixp->fx_line,
11452 "Can not represent %s relocation in this object file format",
11453 bfd_get_reloc_code_name (code));
11454 retval[0] = NULL;
11455 }
11456
11457 return retval;
11458 }
11459
11460 /* Relax a machine dependent frag. This returns the amount by which
11461 the current size of the frag should change. */
11462
11463 int
11464 mips_relax_frag (fragp, stretch)
11465 fragS *fragp;
11466 long stretch;
11467 {
11468 if (! RELAX_MIPS16_P (fragp->fr_subtype))
11469 return 0;
11470
11471 if (mips16_extended_frag (fragp, (asection *) NULL, stretch))
11472 {
11473 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
11474 return 0;
11475 fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype);
11476 return 2;
11477 }
11478 else
11479 {
11480 if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
11481 return 0;
11482 fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype);
11483 return -2;
11484 }
11485
11486 return 0;
11487 }
11488
11489 /* Convert a machine dependent frag. */
11490
11491 void
11492 md_convert_frag (abfd, asec, fragp)
11493 bfd *abfd;
11494 segT asec;
11495 fragS *fragp;
11496 {
11497 int old, new;
11498 char *fixptr;
11499
11500 if (RELAX_MIPS16_P (fragp->fr_subtype))
11501 {
11502 int type;
11503 register const struct mips16_immed_operand *op;
11504 boolean small, ext;
11505 offsetT val;
11506 bfd_byte *buf;
11507 unsigned long insn;
11508 boolean use_extend;
11509 unsigned short extend;
11510
11511 type = RELAX_MIPS16_TYPE (fragp->fr_subtype);
11512 op = mips16_immed_operands;
11513 while (op->type != type)
11514 ++op;
11515
11516 if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype))
11517 {
11518 small = false;
11519 ext = true;
11520 }
11521 else
11522 {
11523 small = true;
11524 ext = false;
11525 }
11526
11527 resolve_symbol_value (fragp->fr_symbol, 1);
11528 val = S_GET_VALUE (fragp->fr_symbol);
11529 if (op->pcrel)
11530 {
11531 addressT addr;
11532
11533 addr = fragp->fr_address + fragp->fr_fix;
11534
11535 /* The rules for the base address of a PC relative reloc are
11536 complicated; see mips16_extended_frag. */
11537 if (type == 'p' || type == 'q')
11538 {
11539 addr += 2;
11540 if (ext)
11541 addr += 2;
11542 /* Ignore the low bit in the target, since it will be
11543 set for a text label. */
11544 if ((val & 1) != 0)
11545 --val;
11546 }
11547 else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype))
11548 addr -= 4;
11549 else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype))
11550 addr -= 2;
11551
11552 addr &= ~ (addressT) ((1 << op->shift) - 1);
11553 val -= addr;
11554
11555 /* Make sure the section winds up with the alignment we have
11556 assumed. */
11557 if (op->shift > 0)
11558 record_alignment (asec, op->shift);
11559 }
11560
11561 if (ext
11562 && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)
11563 || RELAX_MIPS16_DSLOT (fragp->fr_subtype)))
11564 as_warn_where (fragp->fr_file, fragp->fr_line,
11565 "extended instruction in delay slot");
11566
11567 buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix);
11568
11569 if (target_big_endian)
11570 insn = bfd_getb16 (buf);
11571 else
11572 insn = bfd_getl16 (buf);
11573
11574 mips16_immed (fragp->fr_file, fragp->fr_line, type, val,
11575 RELAX_MIPS16_USER_EXT (fragp->fr_subtype),
11576 small, ext, &insn, &use_extend, &extend);
11577
11578 if (use_extend)
11579 {
11580 md_number_to_chars (buf, 0xf000 | extend, 2);
11581 fragp->fr_fix += 2;
11582 buf += 2;
11583 }
11584
11585 md_number_to_chars (buf, insn, 2);
11586 fragp->fr_fix += 2;
11587 buf += 2;
11588 }
11589 else
11590 {
11591 if (fragp->fr_opcode == NULL)
11592 return;
11593
11594 old = RELAX_OLD (fragp->fr_subtype);
11595 new = RELAX_NEW (fragp->fr_subtype);
11596 fixptr = fragp->fr_literal + fragp->fr_fix;
11597
11598 if (new > 0)
11599 memcpy (fixptr - old, fixptr, new);
11600
11601 fragp->fr_fix += new - old;
11602 }
11603 }
11604
11605 #ifdef OBJ_ELF
11606
11607 /* This function is called after the relocs have been generated.
11608 We've been storing mips16 text labels as odd. Here we convert them
11609 back to even for the convenience of the debugger. */
11610
11611 void
11612 mips_frob_file_after_relocs ()
11613 {
11614 asymbol **syms;
11615 unsigned int count, i;
11616
11617 if (OUTPUT_FLAVOR != bfd_target_elf_flavour)
11618 return;
11619
11620 syms = bfd_get_outsymbols (stdoutput);
11621 count = bfd_get_symcount (stdoutput);
11622 for (i = 0; i < count; i++, syms++)
11623 {
11624 if (elf_symbol (*syms)->internal_elf_sym.st_other == STO_MIPS16
11625 && ((*syms)->value & 1) != 0)
11626 {
11627 (*syms)->value &= ~1;
11628 /* If the symbol has an odd size, it was probably computed
11629 incorrectly, so adjust that as well. */
11630 if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0)
11631 ++elf_symbol (*syms)->internal_elf_sym.st_size;
11632 }
11633 }
11634 }
11635
11636 #endif
11637
11638 /* This function is called whenever a label is defined. It is used
11639 when handling branch delays; if a branch has a label, we assume we
11640 can not move it. */
11641
11642 void
11643 mips_define_label (sym)
11644 symbolS *sym;
11645 {
11646 struct insn_label_list *l;
11647
11648 if (free_insn_labels == NULL)
11649 l = (struct insn_label_list *) xmalloc (sizeof *l);
11650 else
11651 {
11652 l = free_insn_labels;
11653 free_insn_labels = l->next;
11654 }
11655
11656 l->label = sym;
11657 l->next = insn_labels;
11658 insn_labels = l;
11659 }
11660 \f
11661 #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
11662
11663 /* Some special processing for a MIPS ELF file. */
11664
11665 void
11666 mips_elf_final_processing ()
11667 {
11668 /* Write out the register information. */
11669 if (! mips_64)
11670 {
11671 Elf32_RegInfo s;
11672
11673 s.ri_gprmask = mips_gprmask;
11674 s.ri_cprmask[0] = mips_cprmask[0];
11675 s.ri_cprmask[1] = mips_cprmask[1];
11676 s.ri_cprmask[2] = mips_cprmask[2];
11677 s.ri_cprmask[3] = mips_cprmask[3];
11678 /* The gp_value field is set by the MIPS ELF backend. */
11679
11680 bfd_mips_elf32_swap_reginfo_out (stdoutput, &s,
11681 ((Elf32_External_RegInfo *)
11682 mips_regmask_frag));
11683 }
11684 else
11685 {
11686 Elf64_Internal_RegInfo s;
11687
11688 s.ri_gprmask = mips_gprmask;
11689 s.ri_pad = 0;
11690 s.ri_cprmask[0] = mips_cprmask[0];
11691 s.ri_cprmask[1] = mips_cprmask[1];
11692 s.ri_cprmask[2] = mips_cprmask[2];
11693 s.ri_cprmask[3] = mips_cprmask[3];
11694 /* The gp_value field is set by the MIPS ELF backend. */
11695
11696 bfd_mips_elf64_swap_reginfo_out (stdoutput, &s,
11697 ((Elf64_External_RegInfo *)
11698 mips_regmask_frag));
11699 }
11700
11701 /* Set the MIPS ELF flag bits. FIXME: There should probably be some
11702 sort of BFD interface for this. */
11703 if (mips_any_noreorder)
11704 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER;
11705 if (mips_pic != NO_PIC)
11706 elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC;
11707 }
11708
11709 #endif /* OBJ_ELF || OBJ_MAYBE_ELF */
11710 \f
11711 /* These functions should really be defined by the object file format,
11712 since they are related to debugging information. However, this
11713 code has to work for the a.out format, which does not define them,
11714 so we provide simple versions here. These don't actually generate
11715 any debugging information, but they do simple checking and someday
11716 somebody may make them useful. */
11717
11718 typedef struct loc
11719 {
11720 struct loc *loc_next;
11721 unsigned long loc_fileno;
11722 unsigned long loc_lineno;
11723 unsigned long loc_offset;
11724 unsigned short loc_delta;
11725 unsigned short loc_count;
11726 #if 0
11727 fragS *loc_frag;
11728 #endif
11729 }
11730 locS;
11731
11732 typedef struct proc
11733 {
11734 struct proc *proc_next;
11735 struct symbol *proc_isym;
11736 struct symbol *proc_end;
11737 unsigned long proc_reg_mask;
11738 unsigned long proc_reg_offset;
11739 unsigned long proc_fpreg_mask;
11740 unsigned long proc_fpreg_offset;
11741 unsigned long proc_frameoffset;
11742 unsigned long proc_framereg;
11743 unsigned long proc_pcreg;
11744 locS *proc_iline;
11745 struct file *proc_file;
11746 int proc_index;
11747 }
11748 procS;
11749
11750 typedef struct file
11751 {
11752 struct file *file_next;
11753 unsigned long file_fileno;
11754 struct symbol *file_symbol;
11755 struct symbol *file_end;
11756 struct proc *file_proc;
11757 int file_numprocs;
11758 }
11759 fileS;
11760
11761 static struct obstack proc_frags;
11762 static procS *proc_lastP;
11763 static procS *proc_rootP;
11764 static int numprocs;
11765
11766 static void
11767 md_obj_begin ()
11768 {
11769 obstack_begin (&proc_frags, 0x2000);
11770 }
11771
11772 static void
11773 md_obj_end ()
11774 {
11775 /* check for premature end, nesting errors, etc */
11776 if (proc_lastP && proc_lastP->proc_end == NULL)
11777 as_warn ("missing `.end' at end of assembly");
11778 }
11779
11780 static long
11781 get_number ()
11782 {
11783 int negative = 0;
11784 long val = 0;
11785
11786 if (*input_line_pointer == '-')
11787 {
11788 ++input_line_pointer;
11789 negative = 1;
11790 }
11791 if (!isdigit (*input_line_pointer))
11792 as_bad ("Expected simple number.");
11793 if (input_line_pointer[0] == '0')
11794 {
11795 if (input_line_pointer[1] == 'x')
11796 {
11797 input_line_pointer += 2;
11798 while (isxdigit (*input_line_pointer))
11799 {
11800 val <<= 4;
11801 val |= hex_value (*input_line_pointer++);
11802 }
11803 return negative ? -val : val;
11804 }
11805 else
11806 {
11807 ++input_line_pointer;
11808 while (isdigit (*input_line_pointer))
11809 {
11810 val <<= 3;
11811 val |= *input_line_pointer++ - '0';
11812 }
11813 return negative ? -val : val;
11814 }
11815 }
11816 if (!isdigit (*input_line_pointer))
11817 {
11818 printf (" *input_line_pointer == '%c' 0x%02x\n",
11819 *input_line_pointer, *input_line_pointer);
11820 as_warn ("Invalid number");
11821 return -1;
11822 }
11823 while (isdigit (*input_line_pointer))
11824 {
11825 val *= 10;
11826 val += *input_line_pointer++ - '0';
11827 }
11828 return negative ? -val : val;
11829 }
11830
11831 /* The .file directive; just like the usual .file directive, but there
11832 is an initial number which is the ECOFF file index. */
11833
11834 static void
11835 s_file (x)
11836 int x;
11837 {
11838 int line;
11839
11840 line = get_number ();
11841 s_app_file (0);
11842 }
11843
11844
11845 /* The .end directive. */
11846
11847 static void
11848 s_mipsend (x)
11849 int x;
11850 {
11851 symbolS *p;
11852
11853 if (!is_end_of_line[(unsigned char) *input_line_pointer])
11854 {
11855 p = get_symbol ();
11856 demand_empty_rest_of_line ();
11857 }
11858 else
11859 p = NULL;
11860 if (now_seg != text_section)
11861 as_warn (".end not in text section");
11862 if (!proc_lastP)
11863 {
11864 as_warn (".end and no .ent seen yet.");
11865 return;
11866 }
11867
11868 if (p != NULL)
11869 {
11870 assert (S_GET_NAME (p));
11871 if (strcmp (S_GET_NAME (p), S_GET_NAME (proc_lastP->proc_isym)))
11872 as_warn (".end symbol does not match .ent symbol.");
11873 }
11874
11875 proc_lastP->proc_end = (symbolS *) 1;
11876 }
11877
11878 /* The .aent and .ent directives. */
11879
11880 static void
11881 s_ent (aent)
11882 int aent;
11883 {
11884 int number = 0;
11885 procS *procP;
11886 symbolS *symbolP;
11887
11888 symbolP = get_symbol ();
11889 if (*input_line_pointer == ',')
11890 input_line_pointer++;
11891 SKIP_WHITESPACE ();
11892 if (isdigit (*input_line_pointer) || *input_line_pointer == '-')
11893 number = get_number ();
11894 if (now_seg != text_section)
11895 as_warn (".ent or .aent not in text section.");
11896
11897 if (!aent && proc_lastP && proc_lastP->proc_end == NULL)
11898 as_warn ("missing `.end'");
11899
11900 if (!aent)
11901 {
11902 procP = (procS *) obstack_alloc (&proc_frags, sizeof (*procP));
11903 procP->proc_isym = symbolP;
11904 procP->proc_reg_mask = 0;
11905 procP->proc_reg_offset = 0;
11906 procP->proc_fpreg_mask = 0;
11907 procP->proc_fpreg_offset = 0;
11908 procP->proc_frameoffset = 0;
11909 procP->proc_framereg = 0;
11910 procP->proc_pcreg = 0;
11911 procP->proc_end = NULL;
11912 procP->proc_next = NULL;
11913 if (proc_lastP)
11914 proc_lastP->proc_next = procP;
11915 else
11916 proc_rootP = procP;
11917 proc_lastP = procP;
11918 numprocs++;
11919 }
11920 demand_empty_rest_of_line ();
11921 }
11922
11923 /* The .frame directive. */
11924
11925 #if 0
11926 static void
11927 s_frame (x)
11928 int x;
11929 {
11930 char str[100];
11931 symbolS *symP;
11932 int frame_reg;
11933 int frame_off;
11934 int pcreg;
11935
11936 frame_reg = tc_get_register (1);
11937 if (*input_line_pointer == ',')
11938 input_line_pointer++;
11939 frame_off = get_absolute_expression ();
11940 if (*input_line_pointer == ',')
11941 input_line_pointer++;
11942 pcreg = tc_get_register (0);
11943
11944 /* bob third eye */
11945 assert (proc_rootP);
11946 proc_rootP->proc_framereg = frame_reg;
11947 proc_rootP->proc_frameoffset = frame_off;
11948 proc_rootP->proc_pcreg = pcreg;
11949 /* bob macho .frame */
11950
11951 /* We don't have to write out a frame stab for unoptimized code. */
11952 if (!(frame_reg == FP && frame_off == 0))
11953 {
11954 if (!proc_lastP)
11955 as_warn ("No .ent for .frame to use.");
11956 (void) sprintf (str, "R%d;%d", frame_reg, frame_off);
11957 symP = symbol_new (str, N_VFP, 0, frag_now);
11958 S_SET_TYPE (symP, N_RMASK);
11959 S_SET_OTHER (symP, 0);
11960 S_SET_DESC (symP, 0);
11961 symP->sy_forward = proc_lastP->proc_isym;
11962 /* bob perhaps I should have used pseudo set */
11963 }
11964 demand_empty_rest_of_line ();
11965 }
11966 #endif
11967
11968 /* The .fmask and .mask directives. */
11969
11970 #if 0
11971 static void
11972 s_mask (reg_type)
11973 char reg_type;
11974 {
11975 char str[100], *strP;
11976 symbolS *symP;
11977 int i;
11978 unsigned int mask;
11979 int off;
11980
11981 mask = get_number ();
11982 if (*input_line_pointer == ',')
11983 input_line_pointer++;
11984 off = get_absolute_expression ();
11985
11986 /* bob only for coff */
11987 assert (proc_rootP);
11988 if (reg_type == 'F')
11989 {
11990 proc_rootP->proc_fpreg_mask = mask;
11991 proc_rootP->proc_fpreg_offset = off;
11992 }
11993 else
11994 {
11995 proc_rootP->proc_reg_mask = mask;
11996 proc_rootP->proc_reg_offset = off;
11997 }
11998
11999 /* bob macho .mask + .fmask */
12000
12001 /* We don't have to write out a mask stab if no saved regs. */
12002 if (!(mask == 0))
12003 {
12004 if (!proc_lastP)
12005 as_warn ("No .ent for .mask to use.");
12006 strP = str;
12007 for (i = 0; i < 32; i++)
12008 {
12009 if (mask % 2)
12010 {
12011 sprintf (strP, "%c%d,", reg_type, i);
12012 strP += strlen (strP);
12013 }
12014 mask /= 2;
12015 }
12016 sprintf (strP, ";%d,", off);
12017 symP = symbol_new (str, N_RMASK, 0, frag_now);
12018 S_SET_TYPE (symP, N_RMASK);
12019 S_SET_OTHER (symP, 0);
12020 S_SET_DESC (symP, 0);
12021 symP->sy_forward = proc_lastP->proc_isym;
12022 /* bob perhaps I should have used pseudo set */
12023 }
12024 }
12025 #endif
12026
12027 /* The .loc directive. */
12028
12029 #if 0
12030 static void
12031 s_loc (x)
12032 int x;
12033 {
12034 symbolS *symbolP;
12035 int lineno;
12036 int addroff;
12037
12038 assert (now_seg == text_section);
12039
12040 lineno = get_number ();
12041 addroff = frag_now_fix ();
12042
12043 symbolP = symbol_new ("", N_SLINE, addroff, frag_now);
12044 S_SET_TYPE (symbolP, N_SLINE);
12045 S_SET_OTHER (symbolP, 0);
12046 S_SET_DESC (symbolP, lineno);
12047 symbolP->sy_segment = now_seg;
12048 }
12049 #endif
This page took 0.395067 seconds and 4 git commands to generate.