]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* tc-mips.c -- assemble code for a MIPS chip. |
81912461 ILT |
2 | Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, |
3 | 2003, 2004 Free Software Foundation, Inc. | |
252b5132 RH |
4 | Contributed by the OSF and Ralph Campbell. |
5 | Written by Keith Knowles and Ralph Campbell, working independently. | |
6 | Modified for ECOFF and R4000 support by Ian Lance Taylor of Cygnus | |
7 | Support. | |
8 | ||
9 | This file is part of GAS. | |
10 | ||
11 | GAS is free software; you can redistribute it and/or modify | |
12 | it under the terms of the GNU General Public License as published by | |
13 | the Free Software Foundation; either version 2, or (at your option) | |
14 | any later version. | |
15 | ||
16 | GAS is distributed in the hope that it will be useful, | |
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 | GNU General Public License for more details. | |
20 | ||
21 | You should have received a copy of the GNU General Public License | |
22 | along with GAS; see the file COPYING. If not, write to the Free | |
23 | Software Foundation, 59 Temple Place - Suite 330, Boston, MA | |
24 | 02111-1307, USA. */ | |
25 | ||
26 | #include "as.h" | |
27 | #include "config.h" | |
28 | #include "subsegs.h" | |
3882b010 | 29 | #include "safe-ctype.h" |
252b5132 | 30 | |
252b5132 | 31 | #include <stdarg.h> |
252b5132 RH |
32 | |
33 | #include "opcode/mips.h" | |
34 | #include "itbl-ops.h" | |
c5dd6aab | 35 | #include "dwarf2dbg.h" |
252b5132 RH |
36 | |
37 | #ifdef DEBUG | |
38 | #define DBG(x) printf x | |
39 | #else | |
40 | #define DBG(x) | |
41 | #endif | |
42 | ||
43 | #ifdef OBJ_MAYBE_ELF | |
44 | /* Clean up namespace so we can include obj-elf.h too. */ | |
17a2f251 TS |
45 | static int mips_output_flavor (void); |
46 | static int mips_output_flavor (void) { return OUTPUT_FLAVOR; } | |
252b5132 RH |
47 | #undef OBJ_PROCESS_STAB |
48 | #undef OUTPUT_FLAVOR | |
49 | #undef S_GET_ALIGN | |
50 | #undef S_GET_SIZE | |
51 | #undef S_SET_ALIGN | |
52 | #undef S_SET_SIZE | |
252b5132 RH |
53 | #undef obj_frob_file |
54 | #undef obj_frob_file_after_relocs | |
55 | #undef obj_frob_symbol | |
56 | #undef obj_pop_insert | |
57 | #undef obj_sec_sym_ok_for_reloc | |
58 | #undef OBJ_COPY_SYMBOL_ATTRIBUTES | |
59 | ||
60 | #include "obj-elf.h" | |
61 | /* Fix any of them that we actually care about. */ | |
62 | #undef OUTPUT_FLAVOR | |
63 | #define OUTPUT_FLAVOR mips_output_flavor() | |
64 | #endif | |
65 | ||
66 | #if defined (OBJ_ELF) | |
67 | #include "elf/mips.h" | |
68 | #endif | |
69 | ||
70 | #ifndef ECOFF_DEBUGGING | |
71 | #define NO_ECOFF_DEBUGGING | |
72 | #define ECOFF_DEBUGGING 0 | |
73 | #endif | |
74 | ||
ecb4347a DJ |
75 | int mips_flag_mdebug = -1; |
76 | ||
dcd410fe RO |
77 | /* Control generation of .pdr sections. Off by default on IRIX: the native |
78 | linker doesn't know about and discards them, but relocations against them | |
79 | remain, leading to rld crashes. */ | |
80 | #ifdef TE_IRIX | |
81 | int mips_flag_pdr = FALSE; | |
82 | #else | |
83 | int mips_flag_pdr = TRUE; | |
84 | #endif | |
85 | ||
252b5132 RH |
86 | #include "ecoff.h" |
87 | ||
88 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
89 | static char *mips_regmask_frag; | |
90 | #endif | |
91 | ||
85b51719 | 92 | #define ZERO 0 |
252b5132 RH |
93 | #define AT 1 |
94 | #define TREG 24 | |
95 | #define PIC_CALL_REG 25 | |
96 | #define KT0 26 | |
97 | #define KT1 27 | |
98 | #define GP 28 | |
99 | #define SP 29 | |
100 | #define FP 30 | |
101 | #define RA 31 | |
102 | ||
103 | #define ILLEGAL_REG (32) | |
104 | ||
105 | /* Allow override of standard little-endian ECOFF format. */ | |
106 | ||
107 | #ifndef ECOFF_LITTLE_FORMAT | |
108 | #define ECOFF_LITTLE_FORMAT "ecoff-littlemips" | |
109 | #endif | |
110 | ||
111 | extern int target_big_endian; | |
112 | ||
252b5132 | 113 | /* The name of the readonly data section. */ |
4d0d148d | 114 | #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \ |
252b5132 | 115 | ? ".rdata" \ |
056350c6 NC |
116 | : OUTPUT_FLAVOR == bfd_target_coff_flavour \ |
117 | ? ".rdata" \ | |
252b5132 RH |
118 | : OUTPUT_FLAVOR == bfd_target_elf_flavour \ |
119 | ? ".rodata" \ | |
120 | : (abort (), "")) | |
121 | ||
a325df1d TS |
122 | /* The ABI to use. */ |
123 | enum mips_abi_level | |
124 | { | |
125 | NO_ABI = 0, | |
126 | O32_ABI, | |
127 | O64_ABI, | |
128 | N32_ABI, | |
129 | N64_ABI, | |
130 | EABI_ABI | |
131 | }; | |
132 | ||
133 | /* MIPS ABI we are using for this output file. */ | |
316f5878 | 134 | static enum mips_abi_level mips_abi = NO_ABI; |
a325df1d | 135 | |
143d77c5 EC |
136 | /* Whether or not we have code that can call pic code. */ |
137 | int mips_abicalls = FALSE; | |
138 | ||
252b5132 RH |
139 | /* This is the set of options which may be modified by the .set |
140 | pseudo-op. We use a struct so that .set push and .set pop are more | |
141 | reliable. */ | |
142 | ||
e972090a NC |
143 | struct mips_set_options |
144 | { | |
252b5132 RH |
145 | /* MIPS ISA (Instruction Set Architecture) level. This is set to -1 |
146 | if it has not been initialized. Changed by `.set mipsN', and the | |
147 | -mipsN command line option, and the default CPU. */ | |
148 | int isa; | |
1f25f5d3 CD |
149 | /* Enabled Application Specific Extensions (ASEs). These are set to -1 |
150 | if they have not been initialized. Changed by `.set <asename>', by | |
151 | command line options, and based on the default architecture. */ | |
152 | int ase_mips3d; | |
deec1734 | 153 | int ase_mdmx; |
252b5132 RH |
154 | /* Whether we are assembling for the mips16 processor. 0 if we are |
155 | not, 1 if we are, and -1 if the value has not been initialized. | |
156 | Changed by `.set mips16' and `.set nomips16', and the -mips16 and | |
157 | -nomips16 command line options, and the default CPU. */ | |
158 | int mips16; | |
159 | /* Non-zero if we should not reorder instructions. Changed by `.set | |
160 | reorder' and `.set noreorder'. */ | |
161 | int noreorder; | |
162 | /* Non-zero if we should not permit the $at ($1) register to be used | |
163 | in instructions. Changed by `.set at' and `.set noat'. */ | |
164 | int noat; | |
165 | /* Non-zero if we should warn when a macro instruction expands into | |
166 | more than one machine instruction. Changed by `.set nomacro' and | |
167 | `.set macro'. */ | |
168 | int warn_about_macros; | |
169 | /* Non-zero if we should not move instructions. Changed by `.set | |
170 | move', `.set volatile', `.set nomove', and `.set novolatile'. */ | |
171 | int nomove; | |
172 | /* Non-zero if we should not optimize branches by moving the target | |
173 | of the branch into the delay slot. Actually, we don't perform | |
174 | this optimization anyhow. Changed by `.set bopt' and `.set | |
175 | nobopt'. */ | |
176 | int nobopt; | |
177 | /* Non-zero if we should not autoextend mips16 instructions. | |
178 | Changed by `.set autoextend' and `.set noautoextend'. */ | |
179 | int noautoextend; | |
a325df1d TS |
180 | /* Restrict general purpose registers and floating point registers |
181 | to 32 bit. This is initially determined when -mgp32 or -mfp32 | |
182 | is passed but can changed if the assembler code uses .set mipsN. */ | |
183 | int gp32; | |
184 | int fp32; | |
fef14a42 TS |
185 | /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march |
186 | command line option, and the default CPU. */ | |
187 | int arch; | |
252b5132 RH |
188 | }; |
189 | ||
a325df1d | 190 | /* True if -mgp32 was passed. */ |
a8e8e863 | 191 | static int file_mips_gp32 = -1; |
a325df1d TS |
192 | |
193 | /* True if -mfp32 was passed. */ | |
a8e8e863 | 194 | static int file_mips_fp32 = -1; |
a325df1d | 195 | |
252b5132 | 196 | /* This is the struct we use to hold the current set of options. Note |
a4672219 | 197 | that we must set the isa field to ISA_UNKNOWN and the ASE fields to |
e7af610e | 198 | -1 to indicate that they have not been initialized. */ |
252b5132 | 199 | |
e972090a NC |
200 | static struct mips_set_options mips_opts = |
201 | { | |
fef14a42 | 202 | ISA_UNKNOWN, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0, 0, CPU_UNKNOWN |
e7af610e | 203 | }; |
252b5132 RH |
204 | |
205 | /* These variables are filled in with the masks of registers used. | |
206 | The object format code reads them and puts them in the appropriate | |
207 | place. */ | |
208 | unsigned long mips_gprmask; | |
209 | unsigned long mips_cprmask[4]; | |
210 | ||
211 | /* MIPS ISA we are using for this output file. */ | |
e7af610e | 212 | static int file_mips_isa = ISA_UNKNOWN; |
252b5132 | 213 | |
a4672219 TS |
214 | /* True if -mips16 was passed or implied by arguments passed on the |
215 | command line (e.g., by -march). */ | |
216 | static int file_ase_mips16; | |
217 | ||
1f25f5d3 CD |
218 | /* True if -mips3d was passed or implied by arguments passed on the |
219 | command line (e.g., by -march). */ | |
220 | static int file_ase_mips3d; | |
221 | ||
deec1734 CD |
222 | /* True if -mdmx was passed or implied by arguments passed on the |
223 | command line (e.g., by -march). */ | |
224 | static int file_ase_mdmx; | |
225 | ||
ec68c924 | 226 | /* The argument of the -march= flag. The architecture we are assembling. */ |
fef14a42 | 227 | static int file_mips_arch = CPU_UNKNOWN; |
316f5878 | 228 | static const char *mips_arch_string; |
ec68c924 EC |
229 | |
230 | /* The argument of the -mtune= flag. The architecture for which we | |
231 | are optimizing. */ | |
232 | static int mips_tune = CPU_UNKNOWN; | |
316f5878 | 233 | static const char *mips_tune_string; |
ec68c924 | 234 | |
316f5878 | 235 | /* True when generating 32-bit code for a 64-bit processor. */ |
252b5132 RH |
236 | static int mips_32bitmode = 0; |
237 | ||
316f5878 RS |
238 | /* True if the given ABI requires 32-bit registers. */ |
239 | #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI) | |
240 | ||
241 | /* Likewise 64-bit registers. */ | |
242 | #define ABI_NEEDS_64BIT_REGS(ABI) \ | |
243 | ((ABI) == N32_ABI \ | |
244 | || (ABI) == N64_ABI \ | |
245 | || (ABI) == O64_ABI) | |
246 | ||
bdaaa2e1 | 247 | /* Return true if ISA supports 64 bit gp register instructions. */ |
9ce8a5dd | 248 | #define ISA_HAS_64BIT_REGS(ISA) ( \ |
e7af610e NC |
249 | (ISA) == ISA_MIPS3 \ |
250 | || (ISA) == ISA_MIPS4 \ | |
84ea6cf2 | 251 | || (ISA) == ISA_MIPS5 \ |
d1cf510e | 252 | || (ISA) == ISA_MIPS64 \ |
5f74bc13 | 253 | || (ISA) == ISA_MIPS64R2 \ |
9ce8a5dd GRK |
254 | ) |
255 | ||
af7ee8bf CD |
256 | /* Return true if ISA supports 64-bit right rotate (dror et al.) |
257 | instructions. */ | |
258 | #define ISA_HAS_DROR(ISA) ( \ | |
5f74bc13 | 259 | (ISA) == ISA_MIPS64R2 \ |
af7ee8bf CD |
260 | ) |
261 | ||
262 | /* Return true if ISA supports 32-bit right rotate (ror et al.) | |
263 | instructions. */ | |
264 | #define ISA_HAS_ROR(ISA) ( \ | |
265 | (ISA) == ISA_MIPS32R2 \ | |
5f74bc13 | 266 | || (ISA) == ISA_MIPS64R2 \ |
af7ee8bf CD |
267 | ) |
268 | ||
e013f690 | 269 | #define HAVE_32BIT_GPRS \ |
316f5878 | 270 | (mips_opts.gp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa)) |
ca4e0257 | 271 | |
e013f690 | 272 | #define HAVE_32BIT_FPRS \ |
316f5878 | 273 | (mips_opts.fp32 || ! ISA_HAS_64BIT_REGS (mips_opts.isa)) |
ca4e0257 RS |
274 | |
275 | #define HAVE_64BIT_GPRS (! HAVE_32BIT_GPRS) | |
276 | #define HAVE_64BIT_FPRS (! HAVE_32BIT_FPRS) | |
277 | ||
316f5878 | 278 | #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI) |
e013f690 | 279 | |
316f5878 | 280 | #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI) |
e013f690 | 281 | |
3b91255e RS |
282 | /* True if relocations are stored in-place. */ |
283 | #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI) | |
284 | ||
3e722fb5 | 285 | /* We can only have 64bit addresses if the object file format supports it. */ |
afdbd6d0 CD |
286 | #define HAVE_32BIT_ADDRESSES \ |
287 | (HAVE_32BIT_GPRS \ | |
3e722fb5 CD |
288 | || (bfd_arch_bits_per_address (stdoutput) == 32 \ |
289 | || ! HAVE_64BIT_OBJECTS)) \ | |
e013f690 TS |
290 | |
291 | #define HAVE_64BIT_ADDRESSES (! HAVE_32BIT_ADDRESSES) | |
ca4e0257 | 292 | |
b7c7d6c1 TS |
293 | /* Addresses are loaded in different ways, depending on the address size |
294 | in use. The n32 ABI Documentation also mandates the use of additions | |
295 | with overflow checking, but existing implementations don't follow it. */ | |
f899b4b8 | 296 | #define ADDRESS_ADD_INSN \ |
b7c7d6c1 | 297 | (HAVE_32BIT_ADDRESSES ? "addu" : "daddu") |
f899b4b8 TS |
298 | |
299 | #define ADDRESS_ADDI_INSN \ | |
b7c7d6c1 | 300 | (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu") |
f899b4b8 TS |
301 | |
302 | #define ADDRESS_LOAD_INSN \ | |
303 | (HAVE_32BIT_ADDRESSES ? "lw" : "ld") | |
304 | ||
305 | #define ADDRESS_STORE_INSN \ | |
306 | (HAVE_32BIT_ADDRESSES ? "sw" : "sd") | |
307 | ||
a4672219 | 308 | /* Return true if the given CPU supports the MIPS16 ASE. */ |
3396de36 TS |
309 | #define CPU_HAS_MIPS16(cpu) \ |
310 | (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \ | |
311 | || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0) | |
a4672219 | 312 | |
1f25f5d3 CD |
313 | /* Return true if the given CPU supports the MIPS3D ASE. */ |
314 | #define CPU_HAS_MIPS3D(cpu) ((cpu) == CPU_SB1 \ | |
315 | ) | |
316 | ||
deec1734 | 317 | /* Return true if the given CPU supports the MDMX ASE. */ |
b34976b6 | 318 | #define CPU_HAS_MDMX(cpu) (FALSE \ |
deec1734 CD |
319 | ) |
320 | ||
60b63b72 RS |
321 | /* True if CPU has a dror instruction. */ |
322 | #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500) | |
323 | ||
324 | /* True if CPU has a ror instruction. */ | |
325 | #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU) | |
326 | ||
c8978940 CD |
327 | /* True if mflo and mfhi can be immediately followed by instructions |
328 | which write to the HI and LO registers. | |
329 | ||
330 | According to MIPS specifications, MIPS ISAs I, II, and III need | |
331 | (at least) two instructions between the reads of HI/LO and | |
332 | instructions which write them, and later ISAs do not. Contradicting | |
333 | the MIPS specifications, some MIPS IV processor user manuals (e.g. | |
334 | the UM for the NEC Vr5000) document needing the instructions between | |
335 | HI/LO reads and writes, as well. Therefore, we declare only MIPS32, | |
336 | MIPS64 and later ISAs to have the interlocks, plus any specific | |
337 | earlier-ISA CPUs for which CPU documentation declares that the | |
338 | instructions are really interlocked. */ | |
339 | #define hilo_interlocks \ | |
340 | (mips_opts.isa == ISA_MIPS32 \ | |
341 | || mips_opts.isa == ISA_MIPS32R2 \ | |
342 | || mips_opts.isa == ISA_MIPS64 \ | |
343 | || mips_opts.isa == ISA_MIPS64R2 \ | |
344 | || mips_opts.arch == CPU_R4010 \ | |
345 | || mips_opts.arch == CPU_R10000 \ | |
346 | || mips_opts.arch == CPU_R12000 \ | |
347 | || mips_opts.arch == CPU_RM7000 \ | |
c8978940 CD |
348 | || mips_opts.arch == CPU_VR5500 \ |
349 | ) | |
252b5132 RH |
350 | |
351 | /* Whether the processor uses hardware interlocks to protect reads | |
81912461 ILT |
352 | from the GPRs after they are loaded from memory, and thus does not |
353 | require nops to be inserted. This applies to instructions marked | |
354 | INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA | |
355 | level I. */ | |
252b5132 | 356 | #define gpr_interlocks \ |
e7af610e | 357 | (mips_opts.isa != ISA_MIPS1 \ |
fef14a42 | 358 | || mips_opts.arch == CPU_R3900) |
252b5132 | 359 | |
81912461 ILT |
360 | /* Whether the processor uses hardware interlocks to avoid delays |
361 | required by coprocessor instructions, and thus does not require | |
362 | nops to be inserted. This applies to instructions marked | |
363 | INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays | |
364 | between instructions marked INSN_WRITE_COND_CODE and ones marked | |
365 | INSN_READ_COND_CODE. These nops are only required at MIPS ISA | |
366 | levels I, II, and III. */ | |
bdaaa2e1 | 367 | /* Itbl support may require additional care here. */ |
81912461 ILT |
368 | #define cop_interlocks \ |
369 | ((mips_opts.isa != ISA_MIPS1 \ | |
370 | && mips_opts.isa != ISA_MIPS2 \ | |
371 | && mips_opts.isa != ISA_MIPS3) \ | |
372 | || mips_opts.arch == CPU_R4300 \ | |
81912461 ILT |
373 | ) |
374 | ||
375 | /* Whether the processor uses hardware interlocks to protect reads | |
376 | from coprocessor registers after they are loaded from memory, and | |
377 | thus does not require nops to be inserted. This applies to | |
378 | instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only | |
379 | requires at MIPS ISA level I. */ | |
380 | #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1) | |
252b5132 | 381 | |
6b76fefe CM |
382 | /* Is this a mfhi or mflo instruction? */ |
383 | #define MF_HILO_INSN(PINFO) \ | |
384 | ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO)) | |
385 | ||
252b5132 RH |
386 | /* MIPS PIC level. */ |
387 | ||
a161fe53 | 388 | enum mips_pic_level mips_pic; |
252b5132 | 389 | |
c9914766 | 390 | /* 1 if we should generate 32 bit offsets from the $gp register in |
252b5132 | 391 | SVR4_PIC mode. Currently has no meaning in other modes. */ |
c9914766 | 392 | static int mips_big_got = 0; |
252b5132 RH |
393 | |
394 | /* 1 if trap instructions should used for overflow rather than break | |
395 | instructions. */ | |
c9914766 | 396 | static int mips_trap = 0; |
252b5132 | 397 | |
119d663a | 398 | /* 1 if double width floating point constants should not be constructed |
b6ff326e | 399 | by assembling two single width halves into two single width floating |
119d663a NC |
400 | point registers which just happen to alias the double width destination |
401 | register. On some architectures this aliasing can be disabled by a bit | |
d547a75e | 402 | in the status register, and the setting of this bit cannot be determined |
119d663a NC |
403 | automatically at assemble time. */ |
404 | static int mips_disable_float_construction; | |
405 | ||
252b5132 RH |
406 | /* Non-zero if any .set noreorder directives were used. */ |
407 | ||
408 | static int mips_any_noreorder; | |
409 | ||
6b76fefe CM |
410 | /* Non-zero if nops should be inserted when the register referenced in |
411 | an mfhi/mflo instruction is read in the next two instructions. */ | |
412 | static int mips_7000_hilo_fix; | |
413 | ||
252b5132 | 414 | /* The size of the small data section. */ |
156c2f8b | 415 | static unsigned int g_switch_value = 8; |
252b5132 RH |
416 | /* Whether the -G option was used. */ |
417 | static int g_switch_seen = 0; | |
418 | ||
419 | #define N_RMASK 0xc4 | |
420 | #define N_VFP 0xd4 | |
421 | ||
422 | /* If we can determine in advance that GP optimization won't be | |
423 | possible, we can skip the relaxation stuff that tries to produce | |
424 | GP-relative references. This makes delay slot optimization work | |
425 | better. | |
426 | ||
427 | This function can only provide a guess, but it seems to work for | |
fba2b7f9 GK |
428 | gcc output. It needs to guess right for gcc, otherwise gcc |
429 | will put what it thinks is a GP-relative instruction in a branch | |
430 | delay slot. | |
252b5132 RH |
431 | |
432 | I don't know if a fix is needed for the SVR4_PIC mode. I've only | |
433 | fixed it for the non-PIC mode. KR 95/04/07 */ | |
17a2f251 | 434 | static int nopic_need_relax (symbolS *, int); |
252b5132 RH |
435 | |
436 | /* handle of the OPCODE hash table */ | |
437 | static struct hash_control *op_hash = NULL; | |
438 | ||
439 | /* The opcode hash table we use for the mips16. */ | |
440 | static struct hash_control *mips16_op_hash = NULL; | |
441 | ||
442 | /* This array holds the chars that always start a comment. If the | |
443 | pre-processor is disabled, these aren't very useful */ | |
444 | const char comment_chars[] = "#"; | |
445 | ||
446 | /* This array holds the chars that only start a comment at the beginning of | |
447 | a line. If the line seems to have the form '# 123 filename' | |
448 | .line and .file directives will appear in the pre-processed output */ | |
449 | /* Note that input_file.c hand checks for '#' at the beginning of the | |
450 | first line of the input file. This is because the compiler outputs | |
bdaaa2e1 | 451 | #NO_APP at the beginning of its output. */ |
252b5132 RH |
452 | /* Also note that C style comments are always supported. */ |
453 | const char line_comment_chars[] = "#"; | |
454 | ||
bdaaa2e1 | 455 | /* This array holds machine specific line separator characters. */ |
63a0b638 | 456 | const char line_separator_chars[] = ";"; |
252b5132 RH |
457 | |
458 | /* Chars that can be used to separate mant from exp in floating point nums */ | |
459 | const char EXP_CHARS[] = "eE"; | |
460 | ||
461 | /* Chars that mean this number is a floating point constant */ | |
462 | /* As in 0f12.456 */ | |
463 | /* or 0d1.2345e12 */ | |
464 | const char FLT_CHARS[] = "rRsSfFdDxXpP"; | |
465 | ||
466 | /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be | |
467 | changed in read.c . Ideally it shouldn't have to know about it at all, | |
468 | but nothing is ideal around here. | |
469 | */ | |
470 | ||
471 | static char *insn_error; | |
472 | ||
473 | static int auto_align = 1; | |
474 | ||
475 | /* When outputting SVR4 PIC code, the assembler needs to know the | |
476 | offset in the stack frame from which to restore the $gp register. | |
477 | This is set by the .cprestore pseudo-op, and saved in this | |
478 | variable. */ | |
479 | static offsetT mips_cprestore_offset = -1; | |
480 | ||
67c1ffbe | 481 | /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some |
6478892d | 482 | more optimizations, it can use a register value instead of a memory-saved |
956cd1d6 | 483 | offset and even an other register than $gp as global pointer. */ |
6478892d TS |
484 | static offsetT mips_cpreturn_offset = -1; |
485 | static int mips_cpreturn_register = -1; | |
486 | static int mips_gp_register = GP; | |
def2e0dd | 487 | static int mips_gprel_offset = 0; |
6478892d | 488 | |
7a621144 DJ |
489 | /* Whether mips_cprestore_offset has been set in the current function |
490 | (or whether it has already been warned about, if not). */ | |
491 | static int mips_cprestore_valid = 0; | |
492 | ||
252b5132 RH |
493 | /* This is the register which holds the stack frame, as set by the |
494 | .frame pseudo-op. This is needed to implement .cprestore. */ | |
495 | static int mips_frame_reg = SP; | |
496 | ||
7a621144 DJ |
497 | /* Whether mips_frame_reg has been set in the current function |
498 | (or whether it has already been warned about, if not). */ | |
499 | static int mips_frame_reg_valid = 0; | |
500 | ||
252b5132 RH |
501 | /* To output NOP instructions correctly, we need to keep information |
502 | about the previous two instructions. */ | |
503 | ||
504 | /* Whether we are optimizing. The default value of 2 means to remove | |
505 | unneeded NOPs and swap branch instructions when possible. A value | |
506 | of 1 means to not swap branches. A value of 0 means to always | |
507 | insert NOPs. */ | |
508 | static int mips_optimize = 2; | |
509 | ||
510 | /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is | |
511 | equivalent to seeing no -g option at all. */ | |
512 | static int mips_debug = 0; | |
513 | ||
514 | /* The previous instruction. */ | |
515 | static struct mips_cl_insn prev_insn; | |
516 | ||
517 | /* The instruction before prev_insn. */ | |
518 | static struct mips_cl_insn prev_prev_insn; | |
519 | ||
520 | /* If we don't want information for prev_insn or prev_prev_insn, we | |
521 | point the insn_mo field at this dummy integer. */ | |
43841e91 | 522 | static const struct mips_opcode dummy_opcode = { NULL, NULL, 0, 0, 0, 0 }; |
252b5132 RH |
523 | |
524 | /* Non-zero if prev_insn is valid. */ | |
525 | static int prev_insn_valid; | |
526 | ||
527 | /* The frag for the previous instruction. */ | |
528 | static struct frag *prev_insn_frag; | |
529 | ||
530 | /* The offset into prev_insn_frag for the previous instruction. */ | |
531 | static long prev_insn_where; | |
532 | ||
533 | /* The reloc type for the previous instruction, if any. */ | |
f6688943 | 534 | static bfd_reloc_code_real_type prev_insn_reloc_type[3]; |
252b5132 RH |
535 | |
536 | /* The reloc for the previous instruction, if any. */ | |
f6688943 | 537 | static fixS *prev_insn_fixp[3]; |
252b5132 RH |
538 | |
539 | /* Non-zero if the previous instruction was in a delay slot. */ | |
540 | static int prev_insn_is_delay_slot; | |
541 | ||
542 | /* Non-zero if the previous instruction was in a .set noreorder. */ | |
543 | static int prev_insn_unreordered; | |
544 | ||
545 | /* Non-zero if the previous instruction uses an extend opcode (if | |
546 | mips16). */ | |
547 | static int prev_insn_extended; | |
548 | ||
549 | /* Non-zero if the previous previous instruction was in a .set | |
550 | noreorder. */ | |
551 | static int prev_prev_insn_unreordered; | |
552 | ||
553 | /* If this is set, it points to a frag holding nop instructions which | |
554 | were inserted before the start of a noreorder section. If those | |
555 | nops turn out to be unnecessary, the size of the frag can be | |
556 | decreased. */ | |
557 | static fragS *prev_nop_frag; | |
558 | ||
559 | /* The number of nop instructions we created in prev_nop_frag. */ | |
560 | static int prev_nop_frag_holds; | |
561 | ||
562 | /* The number of nop instructions that we know we need in | |
bdaaa2e1 | 563 | prev_nop_frag. */ |
252b5132 RH |
564 | static int prev_nop_frag_required; |
565 | ||
566 | /* The number of instructions we've seen since prev_nop_frag. */ | |
567 | static int prev_nop_frag_since; | |
568 | ||
569 | /* For ECOFF and ELF, relocations against symbols are done in two | |
570 | parts, with a HI relocation and a LO relocation. Each relocation | |
571 | has only 16 bits of space to store an addend. This means that in | |
572 | order for the linker to handle carries correctly, it must be able | |
573 | to locate both the HI and the LO relocation. This means that the | |
574 | relocations must appear in order in the relocation table. | |
575 | ||
576 | In order to implement this, we keep track of each unmatched HI | |
577 | relocation. We then sort them so that they immediately precede the | |
bdaaa2e1 | 578 | corresponding LO relocation. */ |
252b5132 | 579 | |
e972090a NC |
580 | struct mips_hi_fixup |
581 | { | |
252b5132 RH |
582 | /* Next HI fixup. */ |
583 | struct mips_hi_fixup *next; | |
584 | /* This fixup. */ | |
585 | fixS *fixp; | |
586 | /* The section this fixup is in. */ | |
587 | segT seg; | |
588 | }; | |
589 | ||
590 | /* The list of unmatched HI relocs. */ | |
591 | ||
592 | static struct mips_hi_fixup *mips_hi_fixup_list; | |
593 | ||
64bdfcaf RS |
594 | /* The frag containing the last explicit relocation operator. |
595 | Null if explicit relocations have not been used. */ | |
596 | ||
597 | static fragS *prev_reloc_op_frag; | |
598 | ||
252b5132 RH |
599 | /* Map normal MIPS register numbers to mips16 register numbers. */ |
600 | ||
601 | #define X ILLEGAL_REG | |
e972090a NC |
602 | static const int mips32_to_16_reg_map[] = |
603 | { | |
252b5132 RH |
604 | X, X, 2, 3, 4, 5, 6, 7, |
605 | X, X, X, X, X, X, X, X, | |
606 | 0, 1, X, X, X, X, X, X, | |
607 | X, X, X, X, X, X, X, X | |
608 | }; | |
609 | #undef X | |
610 | ||
611 | /* Map mips16 register numbers to normal MIPS register numbers. */ | |
612 | ||
e972090a NC |
613 | static const unsigned int mips16_to_32_reg_map[] = |
614 | { | |
252b5132 RH |
615 | 16, 17, 2, 3, 4, 5, 6, 7 |
616 | }; | |
60b63b72 | 617 | |
d766e8ec | 618 | static int mips_fix_vr4120; |
4a6a3df4 AO |
619 | |
620 | /* We don't relax branches by default, since this causes us to expand | |
621 | `la .l2 - .l1' if there's a branch between .l1 and .l2, because we | |
622 | fail to compute the offset before expanding the macro to the most | |
623 | efficient expansion. */ | |
624 | ||
625 | static int mips_relax_branch; | |
252b5132 | 626 | \f |
4d7206a2 RS |
627 | /* The expansion of many macros depends on the type of symbol that |
628 | they refer to. For example, when generating position-dependent code, | |
629 | a macro that refers to a symbol may have two different expansions, | |
630 | one which uses GP-relative addresses and one which uses absolute | |
631 | addresses. When generating SVR4-style PIC, a macro may have | |
632 | different expansions for local and global symbols. | |
633 | ||
634 | We handle these situations by generating both sequences and putting | |
635 | them in variant frags. In position-dependent code, the first sequence | |
636 | will be the GP-relative one and the second sequence will be the | |
637 | absolute one. In SVR4 PIC, the first sequence will be for global | |
638 | symbols and the second will be for local symbols. | |
639 | ||
584892a6 RS |
640 | The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and |
641 | SECOND are the lengths of the two sequences in bytes. These fields | |
642 | can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition, | |
643 | the subtype has the following flags: | |
4d7206a2 | 644 | |
584892a6 RS |
645 | RELAX_USE_SECOND |
646 | Set if it has been decided that we should use the second | |
647 | sequence instead of the first. | |
648 | ||
649 | RELAX_SECOND_LONGER | |
650 | Set in the first variant frag if the macro's second implementation | |
651 | is longer than its first. This refers to the macro as a whole, | |
652 | not an individual relaxation. | |
653 | ||
654 | RELAX_NOMACRO | |
655 | Set in the first variant frag if the macro appeared in a .set nomacro | |
656 | block and if one alternative requires a warning but the other does not. | |
657 | ||
658 | RELAX_DELAY_SLOT | |
659 | Like RELAX_NOMACRO, but indicates that the macro appears in a branch | |
660 | delay slot. | |
4d7206a2 RS |
661 | |
662 | The frag's "opcode" points to the first fixup for relaxable code. | |
663 | ||
664 | Relaxable macros are generated using a sequence such as: | |
665 | ||
666 | relax_start (SYMBOL); | |
667 | ... generate first expansion ... | |
668 | relax_switch (); | |
669 | ... generate second expansion ... | |
670 | relax_end (); | |
671 | ||
672 | The code and fixups for the unwanted alternative are discarded | |
673 | by md_convert_frag. */ | |
584892a6 | 674 | #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND)) |
4d7206a2 | 675 | |
584892a6 RS |
676 | #define RELAX_FIRST(X) (((X) >> 8) & 0xff) |
677 | #define RELAX_SECOND(X) ((X) & 0xff) | |
678 | #define RELAX_USE_SECOND 0x10000 | |
679 | #define RELAX_SECOND_LONGER 0x20000 | |
680 | #define RELAX_NOMACRO 0x40000 | |
681 | #define RELAX_DELAY_SLOT 0x80000 | |
252b5132 | 682 | |
4a6a3df4 AO |
683 | /* Branch without likely bit. If label is out of range, we turn: |
684 | ||
685 | beq reg1, reg2, label | |
686 | delay slot | |
687 | ||
688 | into | |
689 | ||
690 | bne reg1, reg2, 0f | |
691 | nop | |
692 | j label | |
693 | 0: delay slot | |
694 | ||
695 | with the following opcode replacements: | |
696 | ||
697 | beq <-> bne | |
698 | blez <-> bgtz | |
699 | bltz <-> bgez | |
700 | bc1f <-> bc1t | |
701 | ||
702 | bltzal <-> bgezal (with jal label instead of j label) | |
703 | ||
704 | Even though keeping the delay slot instruction in the delay slot of | |
705 | the branch would be more efficient, it would be very tricky to do | |
706 | correctly, because we'd have to introduce a variable frag *after* | |
707 | the delay slot instruction, and expand that instead. Let's do it | |
708 | the easy way for now, even if the branch-not-taken case now costs | |
709 | one additional instruction. Out-of-range branches are not supposed | |
710 | to be common, anyway. | |
711 | ||
712 | Branch likely. If label is out of range, we turn: | |
713 | ||
714 | beql reg1, reg2, label | |
715 | delay slot (annulled if branch not taken) | |
716 | ||
717 | into | |
718 | ||
719 | beql reg1, reg2, 1f | |
720 | nop | |
721 | beql $0, $0, 2f | |
722 | nop | |
723 | 1: j[al] label | |
724 | delay slot (executed only if branch taken) | |
725 | 2: | |
726 | ||
727 | It would be possible to generate a shorter sequence by losing the | |
728 | likely bit, generating something like: | |
b34976b6 | 729 | |
4a6a3df4 AO |
730 | bne reg1, reg2, 0f |
731 | nop | |
732 | j[al] label | |
733 | delay slot (executed only if branch taken) | |
734 | 0: | |
735 | ||
736 | beql -> bne | |
737 | bnel -> beq | |
738 | blezl -> bgtz | |
739 | bgtzl -> blez | |
740 | bltzl -> bgez | |
741 | bgezl -> bltz | |
742 | bc1fl -> bc1t | |
743 | bc1tl -> bc1f | |
744 | ||
745 | bltzall -> bgezal (with jal label instead of j label) | |
746 | bgezall -> bltzal (ditto) | |
747 | ||
748 | ||
749 | but it's not clear that it would actually improve performance. */ | |
af6ae2ad | 750 | #define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \ |
4a6a3df4 AO |
751 | ((relax_substateT) \ |
752 | (0xc0000000 \ | |
753 | | ((toofar) ? 1 : 0) \ | |
754 | | ((link) ? 2 : 0) \ | |
755 | | ((likely) ? 4 : 0) \ | |
af6ae2ad | 756 | | ((uncond) ? 8 : 0))) |
4a6a3df4 | 757 | #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000) |
4a6a3df4 AO |
758 | #define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0) |
759 | #define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0) | |
760 | #define RELAX_BRANCH_LINK(i) (((i) & 2) != 0) | |
ae6063d4 | 761 | #define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0) |
4a6a3df4 | 762 | |
252b5132 RH |
763 | /* For mips16 code, we use an entirely different form of relaxation. |
764 | mips16 supports two versions of most instructions which take | |
765 | immediate values: a small one which takes some small value, and a | |
766 | larger one which takes a 16 bit value. Since branches also follow | |
767 | this pattern, relaxing these values is required. | |
768 | ||
769 | We can assemble both mips16 and normal MIPS code in a single | |
770 | object. Therefore, we need to support this type of relaxation at | |
771 | the same time that we support the relaxation described above. We | |
772 | use the high bit of the subtype field to distinguish these cases. | |
773 | ||
774 | The information we store for this type of relaxation is the | |
775 | argument code found in the opcode file for this relocation, whether | |
776 | the user explicitly requested a small or extended form, and whether | |
777 | the relocation is in a jump or jal delay slot. That tells us the | |
778 | size of the value, and how it should be stored. We also store | |
779 | whether the fragment is considered to be extended or not. We also | |
780 | store whether this is known to be a branch to a different section, | |
781 | whether we have tried to relax this frag yet, and whether we have | |
782 | ever extended a PC relative fragment because of a shift count. */ | |
783 | #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \ | |
784 | (0x80000000 \ | |
785 | | ((type) & 0xff) \ | |
786 | | ((small) ? 0x100 : 0) \ | |
787 | | ((ext) ? 0x200 : 0) \ | |
788 | | ((dslot) ? 0x400 : 0) \ | |
789 | | ((jal_dslot) ? 0x800 : 0)) | |
4a6a3df4 | 790 | #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000) |
252b5132 RH |
791 | #define RELAX_MIPS16_TYPE(i) ((i) & 0xff) |
792 | #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0) | |
793 | #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0) | |
794 | #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0) | |
795 | #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0) | |
796 | #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0) | |
797 | #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000) | |
798 | #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000) | |
799 | #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0) | |
800 | #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000) | |
801 | #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000) | |
885add95 CD |
802 | |
803 | /* Is the given value a sign-extended 32-bit value? */ | |
804 | #define IS_SEXT_32BIT_NUM(x) \ | |
805 | (((x) &~ (offsetT) 0x7fffffff) == 0 \ | |
806 | || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff)) | |
807 | ||
808 | /* Is the given value a sign-extended 16-bit value? */ | |
809 | #define IS_SEXT_16BIT_NUM(x) \ | |
810 | (((x) &~ (offsetT) 0x7fff) == 0 \ | |
811 | || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff)) | |
812 | ||
4d7206a2 RS |
813 | \f |
814 | /* Global variables used when generating relaxable macros. See the | |
815 | comment above RELAX_ENCODE for more details about how relaxation | |
816 | is used. */ | |
817 | static struct { | |
818 | /* 0 if we're not emitting a relaxable macro. | |
819 | 1 if we're emitting the first of the two relaxation alternatives. | |
820 | 2 if we're emitting the second alternative. */ | |
821 | int sequence; | |
822 | ||
823 | /* The first relaxable fixup in the current frag. (In other words, | |
824 | the first fixup that refers to relaxable code.) */ | |
825 | fixS *first_fixup; | |
826 | ||
827 | /* sizes[0] says how many bytes of the first alternative are stored in | |
828 | the current frag. Likewise sizes[1] for the second alternative. */ | |
829 | unsigned int sizes[2]; | |
830 | ||
831 | /* The symbol on which the choice of sequence depends. */ | |
832 | symbolS *symbol; | |
833 | } mips_relax; | |
252b5132 | 834 | \f |
584892a6 RS |
835 | /* Global variables used to decide whether a macro needs a warning. */ |
836 | static struct { | |
837 | /* True if the macro is in a branch delay slot. */ | |
838 | bfd_boolean delay_slot_p; | |
839 | ||
840 | /* For relaxable macros, sizes[0] is the length of the first alternative | |
841 | in bytes and sizes[1] is the length of the second alternative. | |
842 | For non-relaxable macros, both elements give the length of the | |
843 | macro in bytes. */ | |
844 | unsigned int sizes[2]; | |
845 | ||
846 | /* The first variant frag for this macro. */ | |
847 | fragS *first_frag; | |
848 | } mips_macro_warning; | |
849 | \f | |
252b5132 RH |
850 | /* Prototypes for static functions. */ |
851 | ||
17a2f251 | 852 | #define internalError() \ |
252b5132 | 853 | as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__) |
252b5132 RH |
854 | |
855 | enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG }; | |
856 | ||
b34976b6 | 857 | static void append_insn |
4d7206a2 | 858 | (struct mips_cl_insn *ip, expressionS *p, bfd_reloc_code_real_type *r); |
17a2f251 | 859 | static void mips_no_prev_insn (int); |
b34976b6 | 860 | static void mips16_macro_build |
67c0d1eb RS |
861 | (expressionS *, const char *, const char *, va_list); |
862 | static void load_register (int, expressionS *, int); | |
584892a6 RS |
863 | static void macro_start (void); |
864 | static void macro_end (void); | |
17a2f251 TS |
865 | static void macro (struct mips_cl_insn * ip); |
866 | static void mips16_macro (struct mips_cl_insn * ip); | |
252b5132 | 867 | #ifdef LOSING_COMPILER |
17a2f251 | 868 | static void macro2 (struct mips_cl_insn * ip); |
252b5132 | 869 | #endif |
17a2f251 TS |
870 | static void mips_ip (char *str, struct mips_cl_insn * ip); |
871 | static void mips16_ip (char *str, struct mips_cl_insn * ip); | |
b34976b6 | 872 | static void mips16_immed |
17a2f251 TS |
873 | (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean, |
874 | unsigned long *, bfd_boolean *, unsigned short *); | |
5e0116d5 | 875 | static size_t my_getSmallExpression |
17a2f251 TS |
876 | (expressionS *, bfd_reloc_code_real_type *, char *); |
877 | static void my_getExpression (expressionS *, char *); | |
878 | static void s_align (int); | |
879 | static void s_change_sec (int); | |
880 | static void s_change_section (int); | |
881 | static void s_cons (int); | |
882 | static void s_float_cons (int); | |
883 | static void s_mips_globl (int); | |
884 | static void s_option (int); | |
885 | static void s_mipsset (int); | |
886 | static void s_abicalls (int); | |
887 | static void s_cpload (int); | |
888 | static void s_cpsetup (int); | |
889 | static void s_cplocal (int); | |
890 | static void s_cprestore (int); | |
891 | static void s_cpreturn (int); | |
892 | static void s_gpvalue (int); | |
893 | static void s_gpword (int); | |
894 | static void s_gpdword (int); | |
895 | static void s_cpadd (int); | |
896 | static void s_insn (int); | |
897 | static void md_obj_begin (void); | |
898 | static void md_obj_end (void); | |
899 | static void s_mips_ent (int); | |
900 | static void s_mips_end (int); | |
901 | static void s_mips_frame (int); | |
902 | static void s_mips_mask (int reg_type); | |
903 | static void s_mips_stab (int); | |
904 | static void s_mips_weakext (int); | |
905 | static void s_mips_file (int); | |
906 | static void s_mips_loc (int); | |
907 | static bfd_boolean pic_need_relax (symbolS *, asection *); | |
4a6a3df4 | 908 | static int relaxed_branch_length (fragS *, asection *, int); |
17a2f251 | 909 | static int validate_mips_insn (const struct mips_opcode *); |
e7af610e NC |
910 | |
911 | /* Table and functions used to map between CPU/ISA names, and | |
912 | ISA levels, and CPU numbers. */ | |
913 | ||
e972090a NC |
914 | struct mips_cpu_info |
915 | { | |
e7af610e NC |
916 | const char *name; /* CPU or ISA name. */ |
917 | int is_isa; /* Is this an ISA? (If 0, a CPU.) */ | |
918 | int isa; /* ISA level. */ | |
919 | int cpu; /* CPU number (default CPU if ISA). */ | |
920 | }; | |
921 | ||
17a2f251 TS |
922 | static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *); |
923 | static const struct mips_cpu_info *mips_cpu_info_from_isa (int); | |
924 | static const struct mips_cpu_info *mips_cpu_info_from_arch (int); | |
252b5132 RH |
925 | \f |
926 | /* Pseudo-op table. | |
927 | ||
928 | The following pseudo-ops from the Kane and Heinrich MIPS book | |
929 | should be defined here, but are currently unsupported: .alias, | |
930 | .galive, .gjaldef, .gjrlive, .livereg, .noalias. | |
931 | ||
932 | The following pseudo-ops from the Kane and Heinrich MIPS book are | |
933 | specific to the type of debugging information being generated, and | |
934 | should be defined by the object format: .aent, .begin, .bend, | |
935 | .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp, | |
936 | .vreg. | |
937 | ||
938 | The following pseudo-ops from the Kane and Heinrich MIPS book are | |
939 | not MIPS CPU specific, but are also not specific to the object file | |
940 | format. This file is probably the best place to define them, but | |
941 | they are not currently supported: .asm0, .endr, .lab, .repeat, | |
942 | .struct. */ | |
943 | ||
e972090a NC |
944 | static const pseudo_typeS mips_pseudo_table[] = |
945 | { | |
beae10d5 | 946 | /* MIPS specific pseudo-ops. */ |
252b5132 RH |
947 | {"option", s_option, 0}, |
948 | {"set", s_mipsset, 0}, | |
949 | {"rdata", s_change_sec, 'r'}, | |
950 | {"sdata", s_change_sec, 's'}, | |
951 | {"livereg", s_ignore, 0}, | |
952 | {"abicalls", s_abicalls, 0}, | |
953 | {"cpload", s_cpload, 0}, | |
6478892d TS |
954 | {"cpsetup", s_cpsetup, 0}, |
955 | {"cplocal", s_cplocal, 0}, | |
252b5132 | 956 | {"cprestore", s_cprestore, 0}, |
6478892d TS |
957 | {"cpreturn", s_cpreturn, 0}, |
958 | {"gpvalue", s_gpvalue, 0}, | |
252b5132 | 959 | {"gpword", s_gpword, 0}, |
10181a0d | 960 | {"gpdword", s_gpdword, 0}, |
252b5132 RH |
961 | {"cpadd", s_cpadd, 0}, |
962 | {"insn", s_insn, 0}, | |
963 | ||
beae10d5 | 964 | /* Relatively generic pseudo-ops that happen to be used on MIPS |
252b5132 RH |
965 | chips. */ |
966 | {"asciiz", stringer, 1}, | |
967 | {"bss", s_change_sec, 'b'}, | |
968 | {"err", s_err, 0}, | |
969 | {"half", s_cons, 1}, | |
970 | {"dword", s_cons, 3}, | |
971 | {"weakext", s_mips_weakext, 0}, | |
972 | ||
beae10d5 | 973 | /* These pseudo-ops are defined in read.c, but must be overridden |
252b5132 RH |
974 | here for one reason or another. */ |
975 | {"align", s_align, 0}, | |
976 | {"byte", s_cons, 0}, | |
977 | {"data", s_change_sec, 'd'}, | |
978 | {"double", s_float_cons, 'd'}, | |
979 | {"float", s_float_cons, 'f'}, | |
980 | {"globl", s_mips_globl, 0}, | |
981 | {"global", s_mips_globl, 0}, | |
982 | {"hword", s_cons, 1}, | |
983 | {"int", s_cons, 2}, | |
984 | {"long", s_cons, 2}, | |
985 | {"octa", s_cons, 4}, | |
986 | {"quad", s_cons, 3}, | |
cca86cc8 | 987 | {"section", s_change_section, 0}, |
252b5132 RH |
988 | {"short", s_cons, 1}, |
989 | {"single", s_float_cons, 'f'}, | |
990 | {"stabn", s_mips_stab, 'n'}, | |
991 | {"text", s_change_sec, 't'}, | |
992 | {"word", s_cons, 2}, | |
add56521 | 993 | |
add56521 | 994 | { "extern", ecoff_directive_extern, 0}, |
add56521 | 995 | |
43841e91 | 996 | { NULL, NULL, 0 }, |
252b5132 RH |
997 | }; |
998 | ||
e972090a NC |
999 | static const pseudo_typeS mips_nonecoff_pseudo_table[] = |
1000 | { | |
beae10d5 KH |
1001 | /* These pseudo-ops should be defined by the object file format. |
1002 | However, a.out doesn't support them, so we have versions here. */ | |
252b5132 RH |
1003 | {"aent", s_mips_ent, 1}, |
1004 | {"bgnb", s_ignore, 0}, | |
1005 | {"end", s_mips_end, 0}, | |
1006 | {"endb", s_ignore, 0}, | |
1007 | {"ent", s_mips_ent, 0}, | |
c5dd6aab | 1008 | {"file", s_mips_file, 0}, |
252b5132 RH |
1009 | {"fmask", s_mips_mask, 'F'}, |
1010 | {"frame", s_mips_frame, 0}, | |
c5dd6aab | 1011 | {"loc", s_mips_loc, 0}, |
252b5132 RH |
1012 | {"mask", s_mips_mask, 'R'}, |
1013 | {"verstamp", s_ignore, 0}, | |
43841e91 | 1014 | { NULL, NULL, 0 }, |
252b5132 RH |
1015 | }; |
1016 | ||
17a2f251 | 1017 | extern void pop_insert (const pseudo_typeS *); |
252b5132 RH |
1018 | |
1019 | void | |
17a2f251 | 1020 | mips_pop_insert (void) |
252b5132 RH |
1021 | { |
1022 | pop_insert (mips_pseudo_table); | |
1023 | if (! ECOFF_DEBUGGING) | |
1024 | pop_insert (mips_nonecoff_pseudo_table); | |
1025 | } | |
1026 | \f | |
1027 | /* Symbols labelling the current insn. */ | |
1028 | ||
e972090a NC |
1029 | struct insn_label_list |
1030 | { | |
252b5132 RH |
1031 | struct insn_label_list *next; |
1032 | symbolS *label; | |
1033 | }; | |
1034 | ||
1035 | static struct insn_label_list *insn_labels; | |
1036 | static struct insn_label_list *free_insn_labels; | |
1037 | ||
17a2f251 | 1038 | static void mips_clear_insn_labels (void); |
252b5132 RH |
1039 | |
1040 | static inline void | |
17a2f251 | 1041 | mips_clear_insn_labels (void) |
252b5132 RH |
1042 | { |
1043 | register struct insn_label_list **pl; | |
1044 | ||
1045 | for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next) | |
1046 | ; | |
1047 | *pl = insn_labels; | |
1048 | insn_labels = NULL; | |
1049 | } | |
1050 | \f | |
1051 | static char *expr_end; | |
1052 | ||
1053 | /* Expressions which appear in instructions. These are set by | |
1054 | mips_ip. */ | |
1055 | ||
1056 | static expressionS imm_expr; | |
5f74bc13 | 1057 | static expressionS imm2_expr; |
252b5132 RH |
1058 | static expressionS offset_expr; |
1059 | ||
1060 | /* Relocs associated with imm_expr and offset_expr. */ | |
1061 | ||
f6688943 TS |
1062 | static bfd_reloc_code_real_type imm_reloc[3] |
1063 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
1064 | static bfd_reloc_code_real_type offset_reloc[3] | |
1065 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
252b5132 | 1066 | |
252b5132 RH |
1067 | /* These are set by mips16_ip if an explicit extension is used. */ |
1068 | ||
b34976b6 | 1069 | static bfd_boolean mips16_small, mips16_ext; |
252b5132 | 1070 | |
7ed4a06a | 1071 | #ifdef OBJ_ELF |
ecb4347a DJ |
1072 | /* The pdr segment for per procedure frame/regmask info. Not used for |
1073 | ECOFF debugging. */ | |
252b5132 RH |
1074 | |
1075 | static segT pdr_seg; | |
7ed4a06a | 1076 | #endif |
252b5132 | 1077 | |
e013f690 TS |
1078 | /* The default target format to use. */ |
1079 | ||
1080 | const char * | |
17a2f251 | 1081 | mips_target_format (void) |
e013f690 TS |
1082 | { |
1083 | switch (OUTPUT_FLAVOR) | |
1084 | { | |
e013f690 TS |
1085 | case bfd_target_ecoff_flavour: |
1086 | return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT; | |
1087 | case bfd_target_coff_flavour: | |
1088 | return "pe-mips"; | |
1089 | case bfd_target_elf_flavour: | |
1090 | #ifdef TE_TMIPS | |
cfe86eaa | 1091 | /* This is traditional mips. */ |
e013f690 | 1092 | return (target_big_endian |
cfe86eaa TS |
1093 | ? (HAVE_64BIT_OBJECTS |
1094 | ? "elf64-tradbigmips" | |
1095 | : (HAVE_NEWABI | |
1096 | ? "elf32-ntradbigmips" : "elf32-tradbigmips")) | |
1097 | : (HAVE_64BIT_OBJECTS | |
1098 | ? "elf64-tradlittlemips" | |
1099 | : (HAVE_NEWABI | |
1100 | ? "elf32-ntradlittlemips" : "elf32-tradlittlemips"))); | |
e013f690 TS |
1101 | #else |
1102 | return (target_big_endian | |
cfe86eaa TS |
1103 | ? (HAVE_64BIT_OBJECTS |
1104 | ? "elf64-bigmips" | |
1105 | : (HAVE_NEWABI | |
1106 | ? "elf32-nbigmips" : "elf32-bigmips")) | |
1107 | : (HAVE_64BIT_OBJECTS | |
1108 | ? "elf64-littlemips" | |
1109 | : (HAVE_NEWABI | |
1110 | ? "elf32-nlittlemips" : "elf32-littlemips"))); | |
e013f690 TS |
1111 | #endif |
1112 | default: | |
1113 | abort (); | |
1114 | return NULL; | |
1115 | } | |
1116 | } | |
1117 | ||
156c2f8b NC |
1118 | /* This function is called once, at assembler startup time. It should |
1119 | set up all the tables, etc. that the MD part of the assembler will need. */ | |
1120 | ||
252b5132 | 1121 | void |
17a2f251 | 1122 | md_begin (void) |
252b5132 | 1123 | { |
252b5132 | 1124 | register const char *retval = NULL; |
156c2f8b | 1125 | int i = 0; |
252b5132 | 1126 | int broken = 0; |
1f25f5d3 | 1127 | |
fef14a42 | 1128 | if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch)) |
252b5132 RH |
1129 | as_warn (_("Could not set architecture and machine")); |
1130 | ||
252b5132 RH |
1131 | op_hash = hash_new (); |
1132 | ||
1133 | for (i = 0; i < NUMOPCODES;) | |
1134 | { | |
1135 | const char *name = mips_opcodes[i].name; | |
1136 | ||
17a2f251 | 1137 | retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]); |
252b5132 RH |
1138 | if (retval != NULL) |
1139 | { | |
1140 | fprintf (stderr, _("internal error: can't hash `%s': %s\n"), | |
1141 | mips_opcodes[i].name, retval); | |
1142 | /* Probably a memory allocation problem? Give up now. */ | |
1143 | as_fatal (_("Broken assembler. No assembly attempted.")); | |
1144 | } | |
1145 | do | |
1146 | { | |
1147 | if (mips_opcodes[i].pinfo != INSN_MACRO) | |
1148 | { | |
1149 | if (!validate_mips_insn (&mips_opcodes[i])) | |
1150 | broken = 1; | |
1151 | } | |
1152 | ++i; | |
1153 | } | |
1154 | while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name)); | |
1155 | } | |
1156 | ||
1157 | mips16_op_hash = hash_new (); | |
1158 | ||
1159 | i = 0; | |
1160 | while (i < bfd_mips16_num_opcodes) | |
1161 | { | |
1162 | const char *name = mips16_opcodes[i].name; | |
1163 | ||
17a2f251 | 1164 | retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]); |
252b5132 RH |
1165 | if (retval != NULL) |
1166 | as_fatal (_("internal: can't hash `%s': %s"), | |
1167 | mips16_opcodes[i].name, retval); | |
1168 | do | |
1169 | { | |
1170 | if (mips16_opcodes[i].pinfo != INSN_MACRO | |
1171 | && ((mips16_opcodes[i].match & mips16_opcodes[i].mask) | |
1172 | != mips16_opcodes[i].match)) | |
1173 | { | |
1174 | fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"), | |
1175 | mips16_opcodes[i].name, mips16_opcodes[i].args); | |
1176 | broken = 1; | |
1177 | } | |
1178 | ++i; | |
1179 | } | |
1180 | while (i < bfd_mips16_num_opcodes | |
1181 | && strcmp (mips16_opcodes[i].name, name) == 0); | |
1182 | } | |
1183 | ||
1184 | if (broken) | |
1185 | as_fatal (_("Broken assembler. No assembly attempted.")); | |
1186 | ||
1187 | /* We add all the general register names to the symbol table. This | |
1188 | helps us detect invalid uses of them. */ | |
1189 | for (i = 0; i < 32; i++) | |
1190 | { | |
1191 | char buf[5]; | |
1192 | ||
1193 | sprintf (buf, "$%d", i); | |
1194 | symbol_table_insert (symbol_new (buf, reg_section, i, | |
1195 | &zero_address_frag)); | |
1196 | } | |
76db943d TS |
1197 | symbol_table_insert (symbol_new ("$ra", reg_section, RA, |
1198 | &zero_address_frag)); | |
252b5132 RH |
1199 | symbol_table_insert (symbol_new ("$fp", reg_section, FP, |
1200 | &zero_address_frag)); | |
1201 | symbol_table_insert (symbol_new ("$sp", reg_section, SP, | |
1202 | &zero_address_frag)); | |
1203 | symbol_table_insert (symbol_new ("$gp", reg_section, GP, | |
1204 | &zero_address_frag)); | |
1205 | symbol_table_insert (symbol_new ("$at", reg_section, AT, | |
1206 | &zero_address_frag)); | |
1207 | symbol_table_insert (symbol_new ("$kt0", reg_section, KT0, | |
1208 | &zero_address_frag)); | |
1209 | symbol_table_insert (symbol_new ("$kt1", reg_section, KT1, | |
1210 | &zero_address_frag)); | |
85b51719 TS |
1211 | symbol_table_insert (symbol_new ("$zero", reg_section, ZERO, |
1212 | &zero_address_frag)); | |
252b5132 RH |
1213 | symbol_table_insert (symbol_new ("$pc", reg_section, -1, |
1214 | &zero_address_frag)); | |
1215 | ||
6047c971 AO |
1216 | /* If we don't add these register names to the symbol table, they |
1217 | may end up being added as regular symbols by operand(), and then | |
1218 | make it to the object file as undefined in case they're not | |
1219 | regarded as local symbols. They're local in o32, since `$' is a | |
1220 | local symbol prefix, but not in n32 or n64. */ | |
1221 | for (i = 0; i < 8; i++) | |
1222 | { | |
1223 | char buf[6]; | |
1224 | ||
1225 | sprintf (buf, "$fcc%i", i); | |
1226 | symbol_table_insert (symbol_new (buf, reg_section, -1, | |
1227 | &zero_address_frag)); | |
1228 | } | |
1229 | ||
b34976b6 | 1230 | mips_no_prev_insn (FALSE); |
252b5132 RH |
1231 | |
1232 | mips_gprmask = 0; | |
1233 | mips_cprmask[0] = 0; | |
1234 | mips_cprmask[1] = 0; | |
1235 | mips_cprmask[2] = 0; | |
1236 | mips_cprmask[3] = 0; | |
1237 | ||
1238 | /* set the default alignment for the text section (2**2) */ | |
1239 | record_alignment (text_section, 2); | |
1240 | ||
4d0d148d | 1241 | bfd_set_gp_size (stdoutput, g_switch_value); |
252b5132 RH |
1242 | |
1243 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour) | |
1244 | { | |
1245 | /* On a native system, sections must be aligned to 16 byte | |
1246 | boundaries. When configured for an embedded ELF target, we | |
1247 | don't bother. */ | |
1248 | if (strcmp (TARGET_OS, "elf") != 0) | |
1249 | { | |
1250 | (void) bfd_set_section_alignment (stdoutput, text_section, 4); | |
1251 | (void) bfd_set_section_alignment (stdoutput, data_section, 4); | |
1252 | (void) bfd_set_section_alignment (stdoutput, bss_section, 4); | |
1253 | } | |
1254 | ||
1255 | /* Create a .reginfo section for register masks and a .mdebug | |
1256 | section for debugging information. */ | |
1257 | { | |
1258 | segT seg; | |
1259 | subsegT subseg; | |
1260 | flagword flags; | |
1261 | segT sec; | |
1262 | ||
1263 | seg = now_seg; | |
1264 | subseg = now_subseg; | |
1265 | ||
1266 | /* The ABI says this section should be loaded so that the | |
1267 | running program can access it. However, we don't load it | |
1268 | if we are configured for an embedded target */ | |
1269 | flags = SEC_READONLY | SEC_DATA; | |
1270 | if (strcmp (TARGET_OS, "elf") != 0) | |
1271 | flags |= SEC_ALLOC | SEC_LOAD; | |
1272 | ||
316f5878 | 1273 | if (mips_abi != N64_ABI) |
252b5132 RH |
1274 | { |
1275 | sec = subseg_new (".reginfo", (subsegT) 0); | |
1276 | ||
195325d2 TS |
1277 | bfd_set_section_flags (stdoutput, sec, flags); |
1278 | bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2); | |
bdaaa2e1 | 1279 | |
252b5132 RH |
1280 | #ifdef OBJ_ELF |
1281 | mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo)); | |
1282 | #endif | |
1283 | } | |
1284 | else | |
1285 | { | |
1286 | /* The 64-bit ABI uses a .MIPS.options section rather than | |
1287 | .reginfo section. */ | |
1288 | sec = subseg_new (".MIPS.options", (subsegT) 0); | |
195325d2 TS |
1289 | bfd_set_section_flags (stdoutput, sec, flags); |
1290 | bfd_set_section_alignment (stdoutput, sec, 3); | |
252b5132 RH |
1291 | |
1292 | #ifdef OBJ_ELF | |
1293 | /* Set up the option header. */ | |
1294 | { | |
1295 | Elf_Internal_Options opthdr; | |
1296 | char *f; | |
1297 | ||
1298 | opthdr.kind = ODK_REGINFO; | |
1299 | opthdr.size = (sizeof (Elf_External_Options) | |
1300 | + sizeof (Elf64_External_RegInfo)); | |
1301 | opthdr.section = 0; | |
1302 | opthdr.info = 0; | |
1303 | f = frag_more (sizeof (Elf_External_Options)); | |
1304 | bfd_mips_elf_swap_options_out (stdoutput, &opthdr, | |
1305 | (Elf_External_Options *) f); | |
1306 | ||
1307 | mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo)); | |
1308 | } | |
1309 | #endif | |
1310 | } | |
1311 | ||
1312 | if (ECOFF_DEBUGGING) | |
1313 | { | |
1314 | sec = subseg_new (".mdebug", (subsegT) 0); | |
1315 | (void) bfd_set_section_flags (stdoutput, sec, | |
1316 | SEC_HAS_CONTENTS | SEC_READONLY); | |
1317 | (void) bfd_set_section_alignment (stdoutput, sec, 2); | |
1318 | } | |
ecb4347a | 1319 | #ifdef OBJ_ELF |
dcd410fe | 1320 | else if (OUTPUT_FLAVOR == bfd_target_elf_flavour && mips_flag_pdr) |
ecb4347a DJ |
1321 | { |
1322 | pdr_seg = subseg_new (".pdr", (subsegT) 0); | |
1323 | (void) bfd_set_section_flags (stdoutput, pdr_seg, | |
1324 | SEC_READONLY | SEC_RELOC | |
1325 | | SEC_DEBUGGING); | |
1326 | (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2); | |
1327 | } | |
252b5132 RH |
1328 | #endif |
1329 | ||
1330 | subseg_set (seg, subseg); | |
1331 | } | |
1332 | } | |
1333 | ||
1334 | if (! ECOFF_DEBUGGING) | |
1335 | md_obj_begin (); | |
1336 | } | |
1337 | ||
1338 | void | |
17a2f251 | 1339 | md_mips_end (void) |
252b5132 RH |
1340 | { |
1341 | if (! ECOFF_DEBUGGING) | |
1342 | md_obj_end (); | |
1343 | } | |
1344 | ||
1345 | void | |
17a2f251 | 1346 | md_assemble (char *str) |
252b5132 RH |
1347 | { |
1348 | struct mips_cl_insn insn; | |
f6688943 TS |
1349 | bfd_reloc_code_real_type unused_reloc[3] |
1350 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
252b5132 RH |
1351 | |
1352 | imm_expr.X_op = O_absent; | |
5f74bc13 | 1353 | imm2_expr.X_op = O_absent; |
252b5132 | 1354 | offset_expr.X_op = O_absent; |
f6688943 TS |
1355 | imm_reloc[0] = BFD_RELOC_UNUSED; |
1356 | imm_reloc[1] = BFD_RELOC_UNUSED; | |
1357 | imm_reloc[2] = BFD_RELOC_UNUSED; | |
1358 | offset_reloc[0] = BFD_RELOC_UNUSED; | |
1359 | offset_reloc[1] = BFD_RELOC_UNUSED; | |
1360 | offset_reloc[2] = BFD_RELOC_UNUSED; | |
252b5132 RH |
1361 | |
1362 | if (mips_opts.mips16) | |
1363 | mips16_ip (str, &insn); | |
1364 | else | |
1365 | { | |
1366 | mips_ip (str, &insn); | |
beae10d5 KH |
1367 | DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"), |
1368 | str, insn.insn_opcode)); | |
252b5132 RH |
1369 | } |
1370 | ||
1371 | if (insn_error) | |
1372 | { | |
1373 | as_bad ("%s `%s'", insn_error, str); | |
1374 | return; | |
1375 | } | |
1376 | ||
1377 | if (insn.insn_mo->pinfo == INSN_MACRO) | |
1378 | { | |
584892a6 | 1379 | macro_start (); |
252b5132 RH |
1380 | if (mips_opts.mips16) |
1381 | mips16_macro (&insn); | |
1382 | else | |
1383 | macro (&insn); | |
584892a6 | 1384 | macro_end (); |
252b5132 RH |
1385 | } |
1386 | else | |
1387 | { | |
1388 | if (imm_expr.X_op != O_absent) | |
4d7206a2 | 1389 | append_insn (&insn, &imm_expr, imm_reloc); |
252b5132 | 1390 | else if (offset_expr.X_op != O_absent) |
4d7206a2 | 1391 | append_insn (&insn, &offset_expr, offset_reloc); |
252b5132 | 1392 | else |
4d7206a2 | 1393 | append_insn (&insn, NULL, unused_reloc); |
252b5132 RH |
1394 | } |
1395 | } | |
1396 | ||
5919d012 RS |
1397 | /* Return true if the given relocation might need a matching %lo(). |
1398 | Note that R_MIPS_GOT16 relocations only need a matching %lo() when | |
1399 | applied to local symbols. */ | |
1400 | ||
1401 | static inline bfd_boolean | |
17a2f251 | 1402 | reloc_needs_lo_p (bfd_reloc_code_real_type reloc) |
5919d012 | 1403 | { |
3b91255e RS |
1404 | return (HAVE_IN_PLACE_ADDENDS |
1405 | && (reloc == BFD_RELOC_HI16_S | |
1406 | || reloc == BFD_RELOC_MIPS_GOT16)); | |
5919d012 RS |
1407 | } |
1408 | ||
1409 | /* Return true if the given fixup is followed by a matching R_MIPS_LO16 | |
1410 | relocation. */ | |
1411 | ||
1412 | static inline bfd_boolean | |
17a2f251 | 1413 | fixup_has_matching_lo_p (fixS *fixp) |
5919d012 RS |
1414 | { |
1415 | return (fixp->fx_next != NULL | |
1416 | && fixp->fx_next->fx_r_type == BFD_RELOC_LO16 | |
1417 | && fixp->fx_addsy == fixp->fx_next->fx_addsy | |
1418 | && fixp->fx_offset == fixp->fx_next->fx_offset); | |
1419 | } | |
1420 | ||
252b5132 RH |
1421 | /* See whether instruction IP reads register REG. CLASS is the type |
1422 | of register. */ | |
1423 | ||
1424 | static int | |
17a2f251 TS |
1425 | insn_uses_reg (struct mips_cl_insn *ip, unsigned int reg, |
1426 | enum mips_regclass class) | |
252b5132 RH |
1427 | { |
1428 | if (class == MIPS16_REG) | |
1429 | { | |
1430 | assert (mips_opts.mips16); | |
1431 | reg = mips16_to_32_reg_map[reg]; | |
1432 | class = MIPS_GR_REG; | |
1433 | } | |
1434 | ||
85b51719 TS |
1435 | /* Don't report on general register ZERO, since it never changes. */ |
1436 | if (class == MIPS_GR_REG && reg == ZERO) | |
252b5132 RH |
1437 | return 0; |
1438 | ||
1439 | if (class == MIPS_FP_REG) | |
1440 | { | |
1441 | assert (! mips_opts.mips16); | |
1442 | /* If we are called with either $f0 or $f1, we must check $f0. | |
1443 | This is not optimal, because it will introduce an unnecessary | |
1444 | NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would | |
1445 | need to distinguish reading both $f0 and $f1 or just one of | |
1446 | them. Note that we don't have to check the other way, | |
1447 | because there is no instruction that sets both $f0 and $f1 | |
1448 | and requires a delay. */ | |
1449 | if ((ip->insn_mo->pinfo & INSN_READ_FPR_S) | |
1450 | && ((((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS) &~(unsigned)1) | |
1451 | == (reg &~ (unsigned) 1))) | |
1452 | return 1; | |
1453 | if ((ip->insn_mo->pinfo & INSN_READ_FPR_T) | |
1454 | && ((((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT) &~(unsigned)1) | |
1455 | == (reg &~ (unsigned) 1))) | |
1456 | return 1; | |
1457 | } | |
1458 | else if (! mips_opts.mips16) | |
1459 | { | |
1460 | if ((ip->insn_mo->pinfo & INSN_READ_GPR_S) | |
1461 | && ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS) == reg) | |
1462 | return 1; | |
1463 | if ((ip->insn_mo->pinfo & INSN_READ_GPR_T) | |
1464 | && ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT) == reg) | |
1465 | return 1; | |
1466 | } | |
1467 | else | |
1468 | { | |
1469 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X) | |
1470 | && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RX) | |
1471 | & MIPS16OP_MASK_RX)] | |
1472 | == reg)) | |
1473 | return 1; | |
1474 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y) | |
1475 | && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_RY) | |
1476 | & MIPS16OP_MASK_RY)] | |
1477 | == reg)) | |
1478 | return 1; | |
1479 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z) | |
1480 | && (mips16_to_32_reg_map[((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z) | |
1481 | & MIPS16OP_MASK_MOVE32Z)] | |
1482 | == reg)) | |
1483 | return 1; | |
1484 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG) | |
1485 | return 1; | |
1486 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP) | |
1487 | return 1; | |
1488 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA) | |
1489 | return 1; | |
1490 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X) | |
1491 | && ((ip->insn_opcode >> MIPS16OP_SH_REGR32) | |
1492 | & MIPS16OP_MASK_REGR32) == reg) | |
1493 | return 1; | |
1494 | } | |
1495 | ||
1496 | return 0; | |
1497 | } | |
1498 | ||
1499 | /* This function returns true if modifying a register requires a | |
1500 | delay. */ | |
1501 | ||
1502 | static int | |
17a2f251 | 1503 | reg_needs_delay (unsigned int reg) |
252b5132 RH |
1504 | { |
1505 | unsigned long prev_pinfo; | |
1506 | ||
1507 | prev_pinfo = prev_insn.insn_mo->pinfo; | |
1508 | if (! mips_opts.noreorder | |
81912461 ILT |
1509 | && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY) |
1510 | && ! gpr_interlocks) | |
1511 | || ((prev_pinfo & INSN_LOAD_COPROC_DELAY) | |
1512 | && ! cop_interlocks))) | |
252b5132 | 1513 | { |
81912461 ILT |
1514 | /* A load from a coprocessor or from memory. All load delays |
1515 | delay the use of general register rt for one instruction. */ | |
bdaaa2e1 | 1516 | /* Itbl support may require additional care here. */ |
252b5132 RH |
1517 | know (prev_pinfo & INSN_WRITE_GPR_T); |
1518 | if (reg == ((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT)) | |
1519 | return 1; | |
1520 | } | |
1521 | ||
1522 | return 0; | |
1523 | } | |
1524 | ||
1525 | /* Mark instruction labels in mips16 mode. This permits the linker to | |
1526 | handle them specially, such as generating jalx instructions when | |
1527 | needed. We also make them odd for the duration of the assembly, in | |
1528 | order to generate the right sort of code. We will make them even | |
1529 | in the adjust_symtab routine, while leaving them marked. This is | |
1530 | convenient for the debugger and the disassembler. The linker knows | |
1531 | to make them odd again. */ | |
1532 | ||
1533 | static void | |
17a2f251 | 1534 | mips16_mark_labels (void) |
252b5132 RH |
1535 | { |
1536 | if (mips_opts.mips16) | |
1537 | { | |
1538 | struct insn_label_list *l; | |
98aa84af | 1539 | valueT val; |
252b5132 RH |
1540 | |
1541 | for (l = insn_labels; l != NULL; l = l->next) | |
1542 | { | |
1543 | #ifdef OBJ_ELF | |
1544 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour) | |
1545 | S_SET_OTHER (l->label, STO_MIPS16); | |
1546 | #endif | |
98aa84af AM |
1547 | val = S_GET_VALUE (l->label); |
1548 | if ((val & 1) == 0) | |
1549 | S_SET_VALUE (l->label, val + 1); | |
252b5132 RH |
1550 | } |
1551 | } | |
1552 | } | |
1553 | ||
4d7206a2 RS |
1554 | /* End the current frag. Make it a variant frag and record the |
1555 | relaxation info. */ | |
1556 | ||
1557 | static void | |
1558 | relax_close_frag (void) | |
1559 | { | |
584892a6 | 1560 | mips_macro_warning.first_frag = frag_now; |
4d7206a2 | 1561 | frag_var (rs_machine_dependent, 0, 0, |
584892a6 | 1562 | RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]), |
4d7206a2 RS |
1563 | mips_relax.symbol, 0, (char *) mips_relax.first_fixup); |
1564 | ||
1565 | memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes)); | |
1566 | mips_relax.first_fixup = 0; | |
1567 | } | |
1568 | ||
1569 | /* Start a new relaxation sequence whose expansion depends on SYMBOL. | |
1570 | See the comment above RELAX_ENCODE for more details. */ | |
1571 | ||
1572 | static void | |
1573 | relax_start (symbolS *symbol) | |
1574 | { | |
1575 | assert (mips_relax.sequence == 0); | |
1576 | mips_relax.sequence = 1; | |
1577 | mips_relax.symbol = symbol; | |
1578 | } | |
1579 | ||
1580 | /* Start generating the second version of a relaxable sequence. | |
1581 | See the comment above RELAX_ENCODE for more details. */ | |
252b5132 RH |
1582 | |
1583 | static void | |
4d7206a2 RS |
1584 | relax_switch (void) |
1585 | { | |
1586 | assert (mips_relax.sequence == 1); | |
1587 | mips_relax.sequence = 2; | |
1588 | } | |
1589 | ||
1590 | /* End the current relaxable sequence. */ | |
1591 | ||
1592 | static void | |
1593 | relax_end (void) | |
1594 | { | |
1595 | assert (mips_relax.sequence == 2); | |
1596 | relax_close_frag (); | |
1597 | mips_relax.sequence = 0; | |
1598 | } | |
1599 | ||
1600 | /* Output an instruction. IP is the instruction information. | |
1601 | ADDRESS_EXPR is an operand of the instruction to be used with | |
1602 | RELOC_TYPE. */ | |
1603 | ||
1604 | static void | |
1605 | append_insn (struct mips_cl_insn *ip, expressionS *address_expr, | |
17a2f251 | 1606 | bfd_reloc_code_real_type *reloc_type) |
252b5132 RH |
1607 | { |
1608 | register unsigned long prev_pinfo, pinfo; | |
1609 | char *f; | |
f6688943 | 1610 | fixS *fixp[3]; |
252b5132 | 1611 | int nops = 0; |
895921c9 MR |
1612 | relax_stateT prev_insn_frag_type = 0; |
1613 | bfd_boolean relaxed_branch = FALSE; | |
f5040a92 | 1614 | bfd_boolean force_new_frag = FALSE; |
252b5132 RH |
1615 | |
1616 | /* Mark instruction labels in mips16 mode. */ | |
f9419b05 | 1617 | mips16_mark_labels (); |
252b5132 RH |
1618 | |
1619 | prev_pinfo = prev_insn.insn_mo->pinfo; | |
1620 | pinfo = ip->insn_mo->pinfo; | |
1621 | ||
4d7206a2 RS |
1622 | if (mips_relax.sequence != 2 |
1623 | && (!mips_opts.noreorder || prev_nop_frag != NULL)) | |
252b5132 RH |
1624 | { |
1625 | int prev_prev_nop; | |
1626 | ||
1627 | /* If the previous insn required any delay slots, see if we need | |
1628 | to insert a NOP or two. There are eight kinds of possible | |
1629 | hazards, of which an instruction can have at most one type. | |
1630 | (1) a load from memory delay | |
1631 | (2) a load from a coprocessor delay | |
1632 | (3) an unconditional branch delay | |
1633 | (4) a conditional branch delay | |
1634 | (5) a move to coprocessor register delay | |
1635 | (6) a load coprocessor register from memory delay | |
1636 | (7) a coprocessor condition code delay | |
1637 | (8) a HI/LO special register delay | |
1638 | ||
1639 | There are a lot of optimizations we could do that we don't. | |
1640 | In particular, we do not, in general, reorder instructions. | |
1641 | If you use gcc with optimization, it will reorder | |
1642 | instructions and generally do much more optimization then we | |
1643 | do here; repeating all that work in the assembler would only | |
1644 | benefit hand written assembly code, and does not seem worth | |
1645 | it. */ | |
1646 | ||
1647 | /* This is how a NOP is emitted. */ | |
1648 | #define emit_nop() \ | |
1649 | (mips_opts.mips16 \ | |
1650 | ? md_number_to_chars (frag_more (2), 0x6500, 2) \ | |
1651 | : md_number_to_chars (frag_more (4), 0, 4)) | |
1652 | ||
1653 | /* The previous insn might require a delay slot, depending upon | |
1654 | the contents of the current insn. */ | |
1655 | if (! mips_opts.mips16 | |
81912461 ILT |
1656 | && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY) |
1657 | && ! gpr_interlocks) | |
1658 | || ((prev_pinfo & INSN_LOAD_COPROC_DELAY) | |
1659 | && ! cop_interlocks))) | |
252b5132 RH |
1660 | { |
1661 | /* A load from a coprocessor or from memory. All load | |
1662 | delays delay the use of general register rt for one | |
81912461 | 1663 | instruction. */ |
beae10d5 | 1664 | /* Itbl support may require additional care here. */ |
252b5132 RH |
1665 | know (prev_pinfo & INSN_WRITE_GPR_T); |
1666 | if (mips_optimize == 0 | |
1667 | || insn_uses_reg (ip, | |
1668 | ((prev_insn.insn_opcode >> OP_SH_RT) | |
1669 | & OP_MASK_RT), | |
1670 | MIPS_GR_REG)) | |
1671 | ++nops; | |
1672 | } | |
1673 | else if (! mips_opts.mips16 | |
252b5132 | 1674 | && (((prev_pinfo & INSN_COPROC_MOVE_DELAY) |
beae10d5 | 1675 | && ! cop_interlocks) |
81912461 ILT |
1676 | || ((prev_pinfo & INSN_COPROC_MEMORY_DELAY) |
1677 | && ! cop_mem_interlocks))) | |
252b5132 RH |
1678 | { |
1679 | /* A generic coprocessor delay. The previous instruction | |
1680 | modified a coprocessor general or control register. If | |
1681 | it modified a control register, we need to avoid any | |
1682 | coprocessor instruction (this is probably not always | |
1683 | required, but it sometimes is). If it modified a general | |
1684 | register, we avoid using that register. | |
1685 | ||
252b5132 RH |
1686 | This case is not handled very well. There is no special |
1687 | knowledge of CP0 handling, and the coprocessors other | |
1688 | than the floating point unit are not distinguished at | |
1689 | all. */ | |
1690 | /* Itbl support may require additional care here. FIXME! | |
bdaaa2e1 | 1691 | Need to modify this to include knowledge about |
252b5132 RH |
1692 | user specified delays! */ |
1693 | if (prev_pinfo & INSN_WRITE_FPR_T) | |
1694 | { | |
1695 | if (mips_optimize == 0 | |
1696 | || insn_uses_reg (ip, | |
1697 | ((prev_insn.insn_opcode >> OP_SH_FT) | |
1698 | & OP_MASK_FT), | |
1699 | MIPS_FP_REG)) | |
1700 | ++nops; | |
1701 | } | |
1702 | else if (prev_pinfo & INSN_WRITE_FPR_S) | |
1703 | { | |
1704 | if (mips_optimize == 0 | |
1705 | || insn_uses_reg (ip, | |
1706 | ((prev_insn.insn_opcode >> OP_SH_FS) | |
1707 | & OP_MASK_FS), | |
1708 | MIPS_FP_REG)) | |
1709 | ++nops; | |
1710 | } | |
1711 | else | |
1712 | { | |
1713 | /* We don't know exactly what the previous instruction | |
1714 | does. If the current instruction uses a coprocessor | |
1715 | register, we must insert a NOP. If previous | |
1716 | instruction may set the condition codes, and the | |
1717 | current instruction uses them, we must insert two | |
1718 | NOPS. */ | |
bdaaa2e1 | 1719 | /* Itbl support may require additional care here. */ |
252b5132 RH |
1720 | if (mips_optimize == 0 |
1721 | || ((prev_pinfo & INSN_WRITE_COND_CODE) | |
1722 | && (pinfo & INSN_READ_COND_CODE))) | |
1723 | nops += 2; | |
1724 | else if (pinfo & INSN_COP) | |
1725 | ++nops; | |
1726 | } | |
1727 | } | |
1728 | else if (! mips_opts.mips16 | |
252b5132 RH |
1729 | && (prev_pinfo & INSN_WRITE_COND_CODE) |
1730 | && ! cop_interlocks) | |
1731 | { | |
1732 | /* The previous instruction sets the coprocessor condition | |
1733 | codes, but does not require a general coprocessor delay | |
1734 | (this means it is a floating point comparison | |
1735 | instruction). If this instruction uses the condition | |
1736 | codes, we need to insert a single NOP. */ | |
beae10d5 | 1737 | /* Itbl support may require additional care here. */ |
252b5132 RH |
1738 | if (mips_optimize == 0 |
1739 | || (pinfo & INSN_READ_COND_CODE)) | |
1740 | ++nops; | |
1741 | } | |
6b76fefe CM |
1742 | |
1743 | /* If we're fixing up mfhi/mflo for the r7000 and the | |
1744 | previous insn was an mfhi/mflo and the current insn | |
1745 | reads the register that the mfhi/mflo wrote to, then | |
1746 | insert two nops. */ | |
1747 | ||
1748 | else if (mips_7000_hilo_fix | |
1749 | && MF_HILO_INSN (prev_pinfo) | |
1750 | && insn_uses_reg (ip, ((prev_insn.insn_opcode >> OP_SH_RD) | |
beae10d5 KH |
1751 | & OP_MASK_RD), |
1752 | MIPS_GR_REG)) | |
6b76fefe CM |
1753 | { |
1754 | nops += 2; | |
1755 | } | |
1756 | ||
1757 | /* If we're fixing up mfhi/mflo for the r7000 and the | |
1758 | 2nd previous insn was an mfhi/mflo and the current insn | |
1759 | reads the register that the mfhi/mflo wrote to, then | |
1760 | insert one nop. */ | |
1761 | ||
1762 | else if (mips_7000_hilo_fix | |
1763 | && MF_HILO_INSN (prev_prev_insn.insn_opcode) | |
1764 | && insn_uses_reg (ip, ((prev_prev_insn.insn_opcode >> OP_SH_RD) | |
1765 | & OP_MASK_RD), | |
1766 | MIPS_GR_REG)) | |
bdaaa2e1 | 1767 | |
6b76fefe | 1768 | { |
f9419b05 | 1769 | ++nops; |
6b76fefe | 1770 | } |
bdaaa2e1 | 1771 | |
252b5132 RH |
1772 | else if (prev_pinfo & INSN_READ_LO) |
1773 | { | |
1774 | /* The previous instruction reads the LO register; if the | |
1775 | current instruction writes to the LO register, we must | |
bdaaa2e1 | 1776 | insert two NOPS. Some newer processors have interlocks. |
67c1ffbe KH |
1777 | Also the tx39's multiply instructions can be executed |
1778 | immediately after a read from HI/LO (without the delay), | |
bdaaa2e1 KH |
1779 | though the tx39's divide insns still do require the |
1780 | delay. */ | |
252b5132 | 1781 | if (! (hilo_interlocks |
048cdf86 | 1782 | || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT))) |
252b5132 RH |
1783 | && (mips_optimize == 0 |
1784 | || (pinfo & INSN_WRITE_LO))) | |
1785 | nops += 2; | |
1786 | /* Most mips16 branch insns don't have a delay slot. | |
1787 | If a read from LO is immediately followed by a branch | |
1788 | to a write to LO we have a read followed by a write | |
1789 | less than 2 insns away. We assume the target of | |
1790 | a branch might be a write to LO, and insert a nop | |
bdaaa2e1 | 1791 | between a read and an immediately following branch. */ |
252b5132 RH |
1792 | else if (mips_opts.mips16 |
1793 | && (mips_optimize == 0 | |
1794 | || (pinfo & MIPS16_INSN_BRANCH))) | |
f9419b05 | 1795 | ++nops; |
252b5132 RH |
1796 | } |
1797 | else if (prev_insn.insn_mo->pinfo & INSN_READ_HI) | |
1798 | { | |
1799 | /* The previous instruction reads the HI register; if the | |
1800 | current instruction writes to the HI register, we must | |
1801 | insert a NOP. Some newer processors have interlocks. | |
bdaaa2e1 | 1802 | Also the note tx39's multiply above. */ |
252b5132 | 1803 | if (! (hilo_interlocks |
048cdf86 | 1804 | || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT))) |
252b5132 RH |
1805 | && (mips_optimize == 0 |
1806 | || (pinfo & INSN_WRITE_HI))) | |
1807 | nops += 2; | |
1808 | /* Most mips16 branch insns don't have a delay slot. | |
1809 | If a read from HI is immediately followed by a branch | |
1810 | to a write to HI we have a read followed by a write | |
1811 | less than 2 insns away. We assume the target of | |
1812 | a branch might be a write to HI, and insert a nop | |
bdaaa2e1 | 1813 | between a read and an immediately following branch. */ |
252b5132 RH |
1814 | else if (mips_opts.mips16 |
1815 | && (mips_optimize == 0 | |
1816 | || (pinfo & MIPS16_INSN_BRANCH))) | |
f9419b05 | 1817 | ++nops; |
252b5132 RH |
1818 | } |
1819 | ||
1820 | /* If the previous instruction was in a noreorder section, then | |
1821 | we don't want to insert the nop after all. */ | |
bdaaa2e1 | 1822 | /* Itbl support may require additional care here. */ |
252b5132 RH |
1823 | if (prev_insn_unreordered) |
1824 | nops = 0; | |
1825 | ||
1826 | /* There are two cases which require two intervening | |
1827 | instructions: 1) setting the condition codes using a move to | |
1828 | coprocessor instruction which requires a general coprocessor | |
1829 | delay and then reading the condition codes 2) reading the HI | |
1830 | or LO register and then writing to it (except on processors | |
1831 | which have interlocks). If we are not already emitting a NOP | |
1832 | instruction, we must check for these cases compared to the | |
1833 | instruction previous to the previous instruction. */ | |
1834 | if ((! mips_opts.mips16 | |
252b5132 RH |
1835 | && (prev_prev_insn.insn_mo->pinfo & INSN_COPROC_MOVE_DELAY) |
1836 | && (prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE) | |
1837 | && (pinfo & INSN_READ_COND_CODE) | |
1838 | && ! cop_interlocks) | |
1839 | || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_LO) | |
1840 | && (pinfo & INSN_WRITE_LO) | |
1841 | && ! (hilo_interlocks | |
048cdf86 | 1842 | || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT)))) |
252b5132 RH |
1843 | || ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI) |
1844 | && (pinfo & INSN_WRITE_HI) | |
1845 | && ! (hilo_interlocks | |
048cdf86 | 1846 | || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT))))) |
252b5132 RH |
1847 | prev_prev_nop = 1; |
1848 | else | |
1849 | prev_prev_nop = 0; | |
1850 | ||
1851 | if (prev_prev_insn_unreordered) | |
1852 | prev_prev_nop = 0; | |
1853 | ||
1854 | if (prev_prev_nop && nops == 0) | |
1855 | ++nops; | |
1856 | ||
d766e8ec | 1857 | if (mips_fix_vr4120 && prev_insn.insn_mo->name) |
60b63b72 RS |
1858 | { |
1859 | /* We're out of bits in pinfo, so we must resort to string | |
1860 | ops here. Shortcuts are selected based on opcodes being | |
d766e8ec | 1861 | limited to the VR4120 instruction set. */ |
60b63b72 RS |
1862 | int min_nops = 0; |
1863 | const char *pn = prev_insn.insn_mo->name; | |
1864 | const char *tn = ip->insn_mo->name; | |
532c738a RS |
1865 | if (strncmp (pn, "macc", 4) == 0 |
1866 | || strncmp (pn, "dmacc", 5) == 0) | |
60b63b72 RS |
1867 | { |
1868 | /* Errata 21 - [D]DIV[U] after [D]MACC */ | |
1869 | if (strstr (tn, "div")) | |
532c738a | 1870 | min_nops = 1; |
60b63b72 | 1871 | |
532c738a RS |
1872 | /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU |
1873 | instruction is executed immediately after a MACC or | |
1874 | DMACC instruction, the result of [either instruction] | |
1875 | is incorrect." */ | |
1876 | if (strncmp (tn, "mult", 4) == 0 | |
1877 | || strncmp (tn, "dmult", 5) == 0) | |
1878 | min_nops = 1; | |
1879 | ||
1880 | /* Errata 23 - Continuous DMULT[U]/DMACC instructions. | |
1881 | Applies on top of VR4181A MD(1) errata. */ | |
1882 | if (pn[0] == 'd' && strncmp (tn, "dmacc", 5) == 0) | |
1883 | min_nops = 1; | |
60b63b72 RS |
1884 | |
1885 | /* Errata 24 - MT{LO,HI} after [D]MACC */ | |
1886 | if (strcmp (tn, "mtlo") == 0 | |
1887 | || strcmp (tn, "mthi") == 0) | |
532c738a | 1888 | min_nops = 1; |
60b63b72 | 1889 | } |
532c738a RS |
1890 | else if (strncmp (pn, "dmult", 5) == 0 |
1891 | && (strncmp (tn, "dmult", 5) == 0 | |
1892 | || strncmp (tn, "dmacc", 5) == 0)) | |
60b63b72 RS |
1893 | { |
1894 | /* Here is the rest of errata 23. */ | |
1895 | min_nops = 1; | |
1896 | } | |
532c738a RS |
1897 | else if ((strncmp (pn, "dmult", 5) == 0 || strstr (pn, "div")) |
1898 | && (strncmp (tn, "macc", 4) == 0 | |
1899 | || strncmp (tn, "dmacc", 5) == 0)) | |
1900 | { | |
1901 | /* VR4181A errata MD(4): "If a MACC or DMACC instruction is | |
1902 | executed immediately after a DMULT, DMULTU, DIV, DIVU, | |
1903 | DDIV or DDIVU instruction, the result of the MACC or | |
1904 | DMACC instruction is incorrect.". This partly overlaps | |
1905 | the workaround for errata 23. */ | |
1906 | min_nops = 1; | |
1907 | } | |
60b63b72 RS |
1908 | if (nops < min_nops) |
1909 | nops = min_nops; | |
1910 | } | |
1911 | ||
252b5132 RH |
1912 | /* If we are being given a nop instruction, don't bother with |
1913 | one of the nops we would otherwise output. This will only | |
1914 | happen when a nop instruction is used with mips_optimize set | |
1915 | to 0. */ | |
1916 | if (nops > 0 | |
1917 | && ! mips_opts.noreorder | |
156c2f8b | 1918 | && ip->insn_opcode == (unsigned) (mips_opts.mips16 ? 0x6500 : 0)) |
252b5132 RH |
1919 | --nops; |
1920 | ||
1921 | /* Now emit the right number of NOP instructions. */ | |
1922 | if (nops > 0 && ! mips_opts.noreorder) | |
1923 | { | |
1924 | fragS *old_frag; | |
1925 | unsigned long old_frag_offset; | |
1926 | int i; | |
1927 | struct insn_label_list *l; | |
1928 | ||
1929 | old_frag = frag_now; | |
1930 | old_frag_offset = frag_now_fix (); | |
1931 | ||
1932 | for (i = 0; i < nops; i++) | |
1933 | emit_nop (); | |
1934 | ||
1935 | if (listing) | |
1936 | { | |
1937 | listing_prev_line (); | |
1938 | /* We may be at the start of a variant frag. In case we | |
1939 | are, make sure there is enough space for the frag | |
1940 | after the frags created by listing_prev_line. The | |
1941 | argument to frag_grow here must be at least as large | |
1942 | as the argument to all other calls to frag_grow in | |
1943 | this file. We don't have to worry about being in the | |
1944 | middle of a variant frag, because the variants insert | |
1945 | all needed nop instructions themselves. */ | |
1946 | frag_grow (40); | |
1947 | } | |
1948 | ||
1949 | for (l = insn_labels; l != NULL; l = l->next) | |
1950 | { | |
98aa84af AM |
1951 | valueT val; |
1952 | ||
252b5132 | 1953 | assert (S_GET_SEGMENT (l->label) == now_seg); |
49309057 | 1954 | symbol_set_frag (l->label, frag_now); |
98aa84af | 1955 | val = (valueT) frag_now_fix (); |
252b5132 RH |
1956 | /* mips16 text labels are stored as odd. */ |
1957 | if (mips_opts.mips16) | |
f9419b05 | 1958 | ++val; |
98aa84af | 1959 | S_SET_VALUE (l->label, val); |
252b5132 RH |
1960 | } |
1961 | ||
1962 | #ifndef NO_ECOFF_DEBUGGING | |
1963 | if (ECOFF_DEBUGGING) | |
1964 | ecoff_fix_loc (old_frag, old_frag_offset); | |
1965 | #endif | |
1966 | } | |
1967 | else if (prev_nop_frag != NULL) | |
1968 | { | |
1969 | /* We have a frag holding nops we may be able to remove. If | |
1970 | we don't need any nops, we can decrease the size of | |
1971 | prev_nop_frag by the size of one instruction. If we do | |
bdaaa2e1 | 1972 | need some nops, we count them in prev_nops_required. */ |
252b5132 RH |
1973 | if (prev_nop_frag_since == 0) |
1974 | { | |
1975 | if (nops == 0) | |
1976 | { | |
1977 | prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4; | |
1978 | --prev_nop_frag_holds; | |
1979 | } | |
1980 | else | |
1981 | prev_nop_frag_required += nops; | |
1982 | } | |
1983 | else | |
1984 | { | |
1985 | if (prev_prev_nop == 0) | |
1986 | { | |
1987 | prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4; | |
1988 | --prev_nop_frag_holds; | |
1989 | } | |
1990 | else | |
1991 | ++prev_nop_frag_required; | |
1992 | } | |
1993 | ||
1994 | if (prev_nop_frag_holds <= prev_nop_frag_required) | |
1995 | prev_nop_frag = NULL; | |
1996 | ||
1997 | ++prev_nop_frag_since; | |
1998 | ||
1999 | /* Sanity check: by the time we reach the second instruction | |
2000 | after prev_nop_frag, we should have used up all the nops | |
2001 | one way or another. */ | |
2002 | assert (prev_nop_frag_since <= 1 || prev_nop_frag == NULL); | |
2003 | } | |
2004 | } | |
2005 | ||
895921c9 MR |
2006 | /* Record the frag type before frag_var. */ |
2007 | if (prev_insn_frag) | |
2008 | prev_insn_frag_type = prev_insn_frag->fr_type; | |
2009 | ||
4d7206a2 | 2010 | if (address_expr |
0b25d3e6 | 2011 | && *reloc_type == BFD_RELOC_16_PCREL_S2 |
4a6a3df4 AO |
2012 | && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY |
2013 | || pinfo & INSN_COND_BRANCH_LIKELY) | |
2014 | && mips_relax_branch | |
2015 | /* Don't try branch relaxation within .set nomacro, or within | |
2016 | .set noat if we use $at for PIC computations. If it turns | |
2017 | out that the branch was out-of-range, we'll get an error. */ | |
2018 | && !mips_opts.warn_about_macros | |
2019 | && !(mips_opts.noat && mips_pic != NO_PIC) | |
2020 | && !mips_opts.mips16) | |
2021 | { | |
895921c9 | 2022 | relaxed_branch = TRUE; |
4a6a3df4 AO |
2023 | f = frag_var (rs_machine_dependent, |
2024 | relaxed_branch_length | |
2025 | (NULL, NULL, | |
2026 | (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1 | |
2027 | : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1 : 0), 4, | |
2028 | RELAX_BRANCH_ENCODE | |
af6ae2ad | 2029 | (pinfo & INSN_UNCOND_BRANCH_DELAY, |
4a6a3df4 AO |
2030 | pinfo & INSN_COND_BRANCH_LIKELY, |
2031 | pinfo & INSN_WRITE_GPR_31, | |
2032 | 0), | |
2033 | address_expr->X_add_symbol, | |
2034 | address_expr->X_add_number, | |
2035 | 0); | |
2036 | *reloc_type = BFD_RELOC_UNUSED; | |
2037 | } | |
2038 | else if (*reloc_type > BFD_RELOC_UNUSED) | |
252b5132 RH |
2039 | { |
2040 | /* We need to set up a variant frag. */ | |
2041 | assert (mips_opts.mips16 && address_expr != NULL); | |
2042 | f = frag_var (rs_machine_dependent, 4, 0, | |
f6688943 | 2043 | RELAX_MIPS16_ENCODE (*reloc_type - BFD_RELOC_UNUSED, |
252b5132 RH |
2044 | mips16_small, mips16_ext, |
2045 | (prev_pinfo | |
2046 | & INSN_UNCOND_BRANCH_DELAY), | |
f6688943 | 2047 | (*prev_insn_reloc_type |
252b5132 | 2048 | == BFD_RELOC_MIPS16_JMP)), |
c4e7957c | 2049 | make_expr_symbol (address_expr), 0, NULL); |
252b5132 | 2050 | } |
252b5132 RH |
2051 | else if (mips_opts.mips16 |
2052 | && ! ip->use_extend | |
f6688943 | 2053 | && *reloc_type != BFD_RELOC_MIPS16_JMP) |
252b5132 RH |
2054 | { |
2055 | /* Make sure there is enough room to swap this instruction with | |
2056 | a following jump instruction. */ | |
2057 | frag_grow (6); | |
2058 | f = frag_more (2); | |
2059 | } | |
2060 | else | |
2061 | { | |
2062 | if (mips_opts.mips16 | |
2063 | && mips_opts.noreorder | |
2064 | && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0) | |
2065 | as_warn (_("extended instruction in delay slot")); | |
2066 | ||
4d7206a2 RS |
2067 | if (mips_relax.sequence) |
2068 | { | |
2069 | /* If we've reached the end of this frag, turn it into a variant | |
2070 | frag and record the information for the instructions we've | |
2071 | written so far. */ | |
2072 | if (frag_room () < 4) | |
2073 | relax_close_frag (); | |
2074 | mips_relax.sizes[mips_relax.sequence - 1] += 4; | |
2075 | } | |
2076 | ||
584892a6 RS |
2077 | if (mips_relax.sequence != 2) |
2078 | mips_macro_warning.sizes[0] += 4; | |
2079 | if (mips_relax.sequence != 1) | |
2080 | mips_macro_warning.sizes[1] += 4; | |
2081 | ||
252b5132 RH |
2082 | f = frag_more (4); |
2083 | } | |
2084 | ||
f6688943 | 2085 | fixp[0] = fixp[1] = fixp[2] = NULL; |
01a3f561 | 2086 | if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED) |
252b5132 RH |
2087 | { |
2088 | if (address_expr->X_op == O_constant) | |
2089 | { | |
4db1a35d | 2090 | valueT tmp; |
f6688943 TS |
2091 | |
2092 | switch (*reloc_type) | |
252b5132 RH |
2093 | { |
2094 | case BFD_RELOC_32: | |
2095 | ip->insn_opcode |= address_expr->X_add_number; | |
2096 | break; | |
2097 | ||
f6688943 | 2098 | case BFD_RELOC_MIPS_HIGHEST: |
6344efa4 AM |
2099 | tmp = (address_expr->X_add_number |
2100 | + ((valueT) 0x8000 << 32) + 0x80008000) >> 16; | |
f6688943 TS |
2101 | tmp >>= 16; |
2102 | ip->insn_opcode |= (tmp >> 16) & 0xffff; | |
2103 | break; | |
2104 | ||
2105 | case BFD_RELOC_MIPS_HIGHER: | |
2106 | tmp = (address_expr->X_add_number + 0x80008000) >> 16; | |
2107 | ip->insn_opcode |= (tmp >> 16) & 0xffff; | |
2108 | break; | |
2109 | ||
2110 | case BFD_RELOC_HI16_S: | |
2111 | ip->insn_opcode |= ((address_expr->X_add_number + 0x8000) | |
2112 | >> 16) & 0xffff; | |
2113 | break; | |
2114 | ||
2115 | case BFD_RELOC_HI16: | |
2116 | ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff; | |
2117 | break; | |
2118 | ||
01a3f561 | 2119 | case BFD_RELOC_UNUSED: |
252b5132 | 2120 | case BFD_RELOC_LO16: |
ed6fb7bd | 2121 | case BFD_RELOC_MIPS_GOT_DISP: |
252b5132 RH |
2122 | ip->insn_opcode |= address_expr->X_add_number & 0xffff; |
2123 | break; | |
2124 | ||
2125 | case BFD_RELOC_MIPS_JMP: | |
2126 | if ((address_expr->X_add_number & 3) != 0) | |
2127 | as_bad (_("jump to misaligned address (0x%lx)"), | |
2128 | (unsigned long) address_expr->X_add_number); | |
f3c0ec86 | 2129 | if (address_expr->X_add_number & ~0xfffffff) |
7496292d TS |
2130 | as_bad (_("jump address range overflow (0x%lx)"), |
2131 | (unsigned long) address_expr->X_add_number); | |
252b5132 RH |
2132 | ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff; |
2133 | break; | |
2134 | ||
2135 | case BFD_RELOC_MIPS16_JMP: | |
2136 | if ((address_expr->X_add_number & 3) != 0) | |
2137 | as_bad (_("jump to misaligned address (0x%lx)"), | |
2138 | (unsigned long) address_expr->X_add_number); | |
f3c0ec86 | 2139 | if (address_expr->X_add_number & ~0xfffffff) |
7496292d TS |
2140 | as_bad (_("jump address range overflow (0x%lx)"), |
2141 | (unsigned long) address_expr->X_add_number); | |
252b5132 RH |
2142 | ip->insn_opcode |= |
2143 | (((address_expr->X_add_number & 0x7c0000) << 3) | |
2144 | | ((address_expr->X_add_number & 0xf800000) >> 7) | |
2145 | | ((address_expr->X_add_number & 0x3fffc) >> 2)); | |
2146 | break; | |
2147 | ||
252b5132 RH |
2148 | case BFD_RELOC_16_PCREL_S2: |
2149 | goto need_reloc; | |
2150 | ||
2151 | default: | |
2152 | internalError (); | |
2153 | } | |
2154 | } | |
01a3f561 | 2155 | else if (*reloc_type < BFD_RELOC_UNUSED) |
252b5132 | 2156 | need_reloc: |
4d7206a2 RS |
2157 | { |
2158 | reloc_howto_type *howto; | |
2159 | int i; | |
34ce925e | 2160 | |
4d7206a2 RS |
2161 | /* In a compound relocation, it is the final (outermost) |
2162 | operator that determines the relocated field. */ | |
2163 | for (i = 1; i < 3; i++) | |
2164 | if (reloc_type[i] == BFD_RELOC_UNUSED) | |
2165 | break; | |
34ce925e | 2166 | |
4d7206a2 RS |
2167 | howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]); |
2168 | fixp[0] = fix_new_exp (frag_now, f - frag_now->fr_literal, | |
2169 | bfd_get_reloc_size(howto), | |
2170 | address_expr, | |
2171 | reloc_type[0] == BFD_RELOC_16_PCREL_S2, | |
2172 | reloc_type[0]); | |
2173 | ||
2174 | /* These relocations can have an addend that won't fit in | |
2175 | 4 octets for 64bit assembly. */ | |
2176 | if (HAVE_64BIT_GPRS | |
2177 | && ! howto->partial_inplace | |
2178 | && (reloc_type[0] == BFD_RELOC_16 | |
2179 | || reloc_type[0] == BFD_RELOC_32 | |
2180 | || reloc_type[0] == BFD_RELOC_MIPS_JMP | |
2181 | || reloc_type[0] == BFD_RELOC_HI16_S | |
2182 | || reloc_type[0] == BFD_RELOC_LO16 | |
2183 | || reloc_type[0] == BFD_RELOC_GPREL16 | |
2184 | || reloc_type[0] == BFD_RELOC_MIPS_LITERAL | |
2185 | || reloc_type[0] == BFD_RELOC_GPREL32 | |
2186 | || reloc_type[0] == BFD_RELOC_64 | |
2187 | || reloc_type[0] == BFD_RELOC_CTOR | |
2188 | || reloc_type[0] == BFD_RELOC_MIPS_SUB | |
2189 | || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST | |
2190 | || reloc_type[0] == BFD_RELOC_MIPS_HIGHER | |
2191 | || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP | |
2192 | || reloc_type[0] == BFD_RELOC_MIPS_REL16 | |
2193 | || reloc_type[0] == BFD_RELOC_MIPS_RELGOT)) | |
2194 | fixp[0]->fx_no_overflow = 1; | |
2195 | ||
2196 | if (mips_relax.sequence) | |
2197 | { | |
2198 | if (mips_relax.first_fixup == 0) | |
2199 | mips_relax.first_fixup = fixp[0]; | |
2200 | } | |
2201 | else if (reloc_needs_lo_p (*reloc_type)) | |
2202 | { | |
2203 | struct mips_hi_fixup *hi_fixup; | |
252b5132 | 2204 | |
4d7206a2 RS |
2205 | /* Reuse the last entry if it already has a matching %lo. */ |
2206 | hi_fixup = mips_hi_fixup_list; | |
2207 | if (hi_fixup == 0 | |
2208 | || !fixup_has_matching_lo_p (hi_fixup->fixp)) | |
2209 | { | |
2210 | hi_fixup = ((struct mips_hi_fixup *) | |
2211 | xmalloc (sizeof (struct mips_hi_fixup))); | |
2212 | hi_fixup->next = mips_hi_fixup_list; | |
2213 | mips_hi_fixup_list = hi_fixup; | |
252b5132 | 2214 | } |
4d7206a2 RS |
2215 | hi_fixup->fixp = fixp[0]; |
2216 | hi_fixup->seg = now_seg; | |
2217 | } | |
f6688943 | 2218 | |
4d7206a2 RS |
2219 | /* Add fixups for the second and third relocations, if given. |
2220 | Note that the ABI allows the second relocation to be | |
2221 | against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the | |
2222 | moment we only use RSS_UNDEF, but we could add support | |
2223 | for the others if it ever becomes necessary. */ | |
2224 | for (i = 1; i < 3; i++) | |
2225 | if (reloc_type[i] != BFD_RELOC_UNUSED) | |
2226 | { | |
2227 | address_expr->X_op = O_absent; | |
2228 | address_expr->X_add_symbol = 0; | |
2229 | address_expr->X_add_number = 0; | |
34ce925e | 2230 | |
4d7206a2 RS |
2231 | fixp[i] = fix_new_exp (frag_now, fixp[0]->fx_where, |
2232 | fixp[0]->fx_size, address_expr, | |
2233 | FALSE, reloc_type[i]); | |
b1dca8ee RS |
2234 | |
2235 | /* Use fx_tcbit to mark compound relocs. */ | |
2236 | fixp[0]->fx_tcbit = 1; | |
2237 | fixp[i]->fx_tcbit = 1; | |
4d7206a2 | 2238 | } |
252b5132 RH |
2239 | } |
2240 | } | |
2241 | ||
2242 | if (! mips_opts.mips16) | |
c5dd6aab DJ |
2243 | { |
2244 | md_number_to_chars (f, ip->insn_opcode, 4); | |
2245 | #ifdef OBJ_ELF | |
2246 | dwarf2_emit_insn (4); | |
2247 | #endif | |
2248 | } | |
f6688943 | 2249 | else if (*reloc_type == BFD_RELOC_MIPS16_JMP) |
252b5132 RH |
2250 | { |
2251 | md_number_to_chars (f, ip->insn_opcode >> 16, 2); | |
2252 | md_number_to_chars (f + 2, ip->insn_opcode & 0xffff, 2); | |
c5dd6aab | 2253 | #ifdef OBJ_ELF |
20e56c33 RS |
2254 | /* The value passed to dwarf2_emit_insn is the distance between |
2255 | the end of the current instruction and the address that should | |
2256 | be recorded in the debug tables. Since we want to use ISA-encoded | |
2257 | addresses in MIPS16 debug info, the value is one byte less than | |
2258 | the real instruction length. */ | |
2259 | dwarf2_emit_insn (3); | |
c5dd6aab | 2260 | #endif |
252b5132 RH |
2261 | } |
2262 | else | |
2263 | { | |
2264 | if (ip->use_extend) | |
2265 | { | |
2266 | md_number_to_chars (f, 0xf000 | ip->extend, 2); | |
2267 | f += 2; | |
2268 | } | |
2269 | md_number_to_chars (f, ip->insn_opcode, 2); | |
c5dd6aab | 2270 | #ifdef OBJ_ELF |
20e56c33 | 2271 | dwarf2_emit_insn (ip->use_extend ? 3 : 1); |
c5dd6aab | 2272 | #endif |
252b5132 RH |
2273 | } |
2274 | ||
2275 | /* Update the register mask information. */ | |
2276 | if (! mips_opts.mips16) | |
2277 | { | |
2278 | if (pinfo & INSN_WRITE_GPR_D) | |
2279 | mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD); | |
2280 | if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0) | |
2281 | mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RT) & OP_MASK_RT); | |
2282 | if (pinfo & INSN_READ_GPR_S) | |
2283 | mips_gprmask |= 1 << ((ip->insn_opcode >> OP_SH_RS) & OP_MASK_RS); | |
2284 | if (pinfo & INSN_WRITE_GPR_31) | |
f9419b05 | 2285 | mips_gprmask |= 1 << RA; |
252b5132 RH |
2286 | if (pinfo & INSN_WRITE_FPR_D) |
2287 | mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FD) & OP_MASK_FD); | |
2288 | if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0) | |
2289 | mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FS) & OP_MASK_FS); | |
2290 | if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0) | |
2291 | mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FT) & OP_MASK_FT); | |
2292 | if ((pinfo & INSN_READ_FPR_R) != 0) | |
2293 | mips_cprmask[1] |= 1 << ((ip->insn_opcode >> OP_SH_FR) & OP_MASK_FR); | |
2294 | if (pinfo & INSN_COP) | |
2295 | { | |
bdaaa2e1 KH |
2296 | /* We don't keep enough information to sort these cases out. |
2297 | The itbl support does keep this information however, although | |
2298 | we currently don't support itbl fprmats as part of the cop | |
2299 | instruction. May want to add this support in the future. */ | |
252b5132 RH |
2300 | } |
2301 | /* Never set the bit for $0, which is always zero. */ | |
beae10d5 | 2302 | mips_gprmask &= ~1 << 0; |
252b5132 RH |
2303 | } |
2304 | else | |
2305 | { | |
2306 | if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X)) | |
2307 | mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RX) | |
2308 | & MIPS16OP_MASK_RX); | |
2309 | if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y)) | |
2310 | mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RY) | |
2311 | & MIPS16OP_MASK_RY); | |
2312 | if (pinfo & MIPS16_INSN_WRITE_Z) | |
2313 | mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_RZ) | |
2314 | & MIPS16OP_MASK_RZ); | |
2315 | if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T)) | |
2316 | mips_gprmask |= 1 << TREG; | |
2317 | if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP)) | |
2318 | mips_gprmask |= 1 << SP; | |
2319 | if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31)) | |
2320 | mips_gprmask |= 1 << RA; | |
2321 | if (pinfo & MIPS16_INSN_WRITE_GPR_Y) | |
2322 | mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode); | |
2323 | if (pinfo & MIPS16_INSN_READ_Z) | |
2324 | mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_MOVE32Z) | |
2325 | & MIPS16OP_MASK_MOVE32Z); | |
2326 | if (pinfo & MIPS16_INSN_READ_GPR_X) | |
2327 | mips_gprmask |= 1 << ((ip->insn_opcode >> MIPS16OP_SH_REGR32) | |
2328 | & MIPS16OP_MASK_REGR32); | |
2329 | } | |
2330 | ||
4d7206a2 | 2331 | if (mips_relax.sequence != 2 && !mips_opts.noreorder) |
252b5132 RH |
2332 | { |
2333 | /* Filling the branch delay slot is more complex. We try to | |
2334 | switch the branch with the previous instruction, which we can | |
2335 | do if the previous instruction does not set up a condition | |
2336 | that the branch tests and if the branch is not itself the | |
2337 | target of any branch. */ | |
2338 | if ((pinfo & INSN_UNCOND_BRANCH_DELAY) | |
2339 | || (pinfo & INSN_COND_BRANCH_DELAY)) | |
2340 | { | |
2341 | if (mips_optimize < 2 | |
2342 | /* If we have seen .set volatile or .set nomove, don't | |
2343 | optimize. */ | |
2344 | || mips_opts.nomove != 0 | |
2345 | /* If we had to emit any NOP instructions, then we | |
2346 | already know we can not swap. */ | |
2347 | || nops != 0 | |
2348 | /* If we don't even know the previous insn, we can not | |
bdaaa2e1 | 2349 | swap. */ |
252b5132 RH |
2350 | || ! prev_insn_valid |
2351 | /* If the previous insn is already in a branch delay | |
2352 | slot, then we can not swap. */ | |
2353 | || prev_insn_is_delay_slot | |
2354 | /* If the previous previous insn was in a .set | |
2355 | noreorder, we can't swap. Actually, the MIPS | |
2356 | assembler will swap in this situation. However, gcc | |
2357 | configured -with-gnu-as will generate code like | |
2358 | .set noreorder | |
2359 | lw $4,XXX | |
2360 | .set reorder | |
2361 | INSN | |
2362 | bne $4,$0,foo | |
2363 | in which we can not swap the bne and INSN. If gcc is | |
2364 | not configured -with-gnu-as, it does not output the | |
2365 | .set pseudo-ops. We don't have to check | |
2366 | prev_insn_unreordered, because prev_insn_valid will | |
2367 | be 0 in that case. We don't want to use | |
2368 | prev_prev_insn_valid, because we do want to be able | |
2369 | to swap at the start of a function. */ | |
2370 | || prev_prev_insn_unreordered | |
2371 | /* If the branch is itself the target of a branch, we | |
2372 | can not swap. We cheat on this; all we check for is | |
2373 | whether there is a label on this instruction. If | |
2374 | there are any branches to anything other than a | |
2375 | label, users must use .set noreorder. */ | |
2376 | || insn_labels != NULL | |
895921c9 MR |
2377 | /* If the previous instruction is in a variant frag |
2378 | other than this branch's one, we cannot do the swap. | |
2379 | This does not apply to the mips16, which uses variant | |
2380 | frags for different purposes. */ | |
252b5132 | 2381 | || (! mips_opts.mips16 |
895921c9 | 2382 | && prev_insn_frag_type == rs_machine_dependent) |
252b5132 RH |
2383 | /* If the branch reads the condition codes, we don't |
2384 | even try to swap, because in the sequence | |
2385 | ctc1 $X,$31 | |
2386 | INSN | |
2387 | INSN | |
2388 | bc1t LABEL | |
2389 | we can not swap, and I don't feel like handling that | |
2390 | case. */ | |
2391 | || (! mips_opts.mips16 | |
81912461 ILT |
2392 | && (pinfo & INSN_READ_COND_CODE) |
2393 | && ! cop_interlocks) | |
252b5132 | 2394 | /* We can not swap with an instruction that requires a |
67c1ffbe | 2395 | delay slot, because the target of the branch might |
252b5132 RH |
2396 | interfere with that instruction. */ |
2397 | || (! mips_opts.mips16 | |
252b5132 | 2398 | && (prev_pinfo |
bdaaa2e1 | 2399 | /* Itbl support may require additional care here. */ |
252b5132 RH |
2400 | & (INSN_LOAD_COPROC_DELAY |
2401 | | INSN_COPROC_MOVE_DELAY | |
81912461 ILT |
2402 | | INSN_WRITE_COND_CODE)) |
2403 | && ! cop_interlocks) | |
252b5132 | 2404 | || (! (hilo_interlocks |
048cdf86 | 2405 | || (mips_opts.arch == CPU_R3900 && (pinfo & INSN_MULT))) |
252b5132 RH |
2406 | && (prev_pinfo |
2407 | & (INSN_READ_LO | |
2408 | | INSN_READ_HI))) | |
2409 | || (! mips_opts.mips16 | |
81912461 ILT |
2410 | && (prev_pinfo & INSN_LOAD_MEMORY_DELAY) |
2411 | && ! gpr_interlocks) | |
252b5132 | 2412 | || (! mips_opts.mips16 |
bdaaa2e1 | 2413 | /* Itbl support may require additional care here. */ |
81912461 ILT |
2414 | && (prev_pinfo & INSN_COPROC_MEMORY_DELAY) |
2415 | && ! cop_mem_interlocks) | |
252b5132 RH |
2416 | /* We can not swap with a branch instruction. */ |
2417 | || (prev_pinfo | |
2418 | & (INSN_UNCOND_BRANCH_DELAY | |
2419 | | INSN_COND_BRANCH_DELAY | |
2420 | | INSN_COND_BRANCH_LIKELY)) | |
2421 | /* We do not swap with a trap instruction, since it | |
2422 | complicates trap handlers to have the trap | |
2423 | instruction be in a delay slot. */ | |
2424 | || (prev_pinfo & INSN_TRAP) | |
2425 | /* If the branch reads a register that the previous | |
2426 | instruction sets, we can not swap. */ | |
2427 | || (! mips_opts.mips16 | |
2428 | && (prev_pinfo & INSN_WRITE_GPR_T) | |
2429 | && insn_uses_reg (ip, | |
2430 | ((prev_insn.insn_opcode >> OP_SH_RT) | |
2431 | & OP_MASK_RT), | |
2432 | MIPS_GR_REG)) | |
2433 | || (! mips_opts.mips16 | |
2434 | && (prev_pinfo & INSN_WRITE_GPR_D) | |
2435 | && insn_uses_reg (ip, | |
2436 | ((prev_insn.insn_opcode >> OP_SH_RD) | |
2437 | & OP_MASK_RD), | |
2438 | MIPS_GR_REG)) | |
2439 | || (mips_opts.mips16 | |
2440 | && (((prev_pinfo & MIPS16_INSN_WRITE_X) | |
2441 | && insn_uses_reg (ip, | |
2442 | ((prev_insn.insn_opcode | |
2443 | >> MIPS16OP_SH_RX) | |
2444 | & MIPS16OP_MASK_RX), | |
2445 | MIPS16_REG)) | |
2446 | || ((prev_pinfo & MIPS16_INSN_WRITE_Y) | |
2447 | && insn_uses_reg (ip, | |
2448 | ((prev_insn.insn_opcode | |
2449 | >> MIPS16OP_SH_RY) | |
2450 | & MIPS16OP_MASK_RY), | |
2451 | MIPS16_REG)) | |
2452 | || ((prev_pinfo & MIPS16_INSN_WRITE_Z) | |
2453 | && insn_uses_reg (ip, | |
2454 | ((prev_insn.insn_opcode | |
2455 | >> MIPS16OP_SH_RZ) | |
2456 | & MIPS16OP_MASK_RZ), | |
2457 | MIPS16_REG)) | |
2458 | || ((prev_pinfo & MIPS16_INSN_WRITE_T) | |
2459 | && insn_uses_reg (ip, TREG, MIPS_GR_REG)) | |
2460 | || ((prev_pinfo & MIPS16_INSN_WRITE_31) | |
2461 | && insn_uses_reg (ip, RA, MIPS_GR_REG)) | |
2462 | || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y) | |
2463 | && insn_uses_reg (ip, | |
2464 | MIPS16OP_EXTRACT_REG32R (prev_insn. | |
2465 | insn_opcode), | |
2466 | MIPS_GR_REG)))) | |
2467 | /* If the branch writes a register that the previous | |
2468 | instruction sets, we can not swap (we know that | |
2469 | branches write only to RD or to $31). */ | |
2470 | || (! mips_opts.mips16 | |
2471 | && (prev_pinfo & INSN_WRITE_GPR_T) | |
2472 | && (((pinfo & INSN_WRITE_GPR_D) | |
2473 | && (((prev_insn.insn_opcode >> OP_SH_RT) & OP_MASK_RT) | |
2474 | == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD))) | |
2475 | || ((pinfo & INSN_WRITE_GPR_31) | |
2476 | && (((prev_insn.insn_opcode >> OP_SH_RT) | |
2477 | & OP_MASK_RT) | |
f9419b05 | 2478 | == RA)))) |
252b5132 RH |
2479 | || (! mips_opts.mips16 |
2480 | && (prev_pinfo & INSN_WRITE_GPR_D) | |
2481 | && (((pinfo & INSN_WRITE_GPR_D) | |
2482 | && (((prev_insn.insn_opcode >> OP_SH_RD) & OP_MASK_RD) | |
2483 | == ((ip->insn_opcode >> OP_SH_RD) & OP_MASK_RD))) | |
2484 | || ((pinfo & INSN_WRITE_GPR_31) | |
2485 | && (((prev_insn.insn_opcode >> OP_SH_RD) | |
2486 | & OP_MASK_RD) | |
f9419b05 | 2487 | == RA)))) |
252b5132 RH |
2488 | || (mips_opts.mips16 |
2489 | && (pinfo & MIPS16_INSN_WRITE_31) | |
2490 | && ((prev_pinfo & MIPS16_INSN_WRITE_31) | |
2491 | || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y) | |
2492 | && (MIPS16OP_EXTRACT_REG32R (prev_insn.insn_opcode) | |
2493 | == RA)))) | |
2494 | /* If the branch writes a register that the previous | |
2495 | instruction reads, we can not swap (we know that | |
2496 | branches only write to RD or to $31). */ | |
2497 | || (! mips_opts.mips16 | |
2498 | && (pinfo & INSN_WRITE_GPR_D) | |
2499 | && insn_uses_reg (&prev_insn, | |
2500 | ((ip->insn_opcode >> OP_SH_RD) | |
2501 | & OP_MASK_RD), | |
2502 | MIPS_GR_REG)) | |
2503 | || (! mips_opts.mips16 | |
2504 | && (pinfo & INSN_WRITE_GPR_31) | |
f9419b05 | 2505 | && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG)) |
252b5132 RH |
2506 | || (mips_opts.mips16 |
2507 | && (pinfo & MIPS16_INSN_WRITE_31) | |
2508 | && insn_uses_reg (&prev_insn, RA, MIPS_GR_REG)) | |
252b5132 RH |
2509 | /* If the previous previous instruction has a load |
2510 | delay, and sets a register that the branch reads, we | |
2511 | can not swap. */ | |
2512 | || (! mips_opts.mips16 | |
bdaaa2e1 | 2513 | /* Itbl support may require additional care here. */ |
81912461 ILT |
2514 | && (((prev_prev_insn.insn_mo->pinfo & INSN_LOAD_COPROC_DELAY) |
2515 | && ! cop_interlocks) | |
2516 | || ((prev_prev_insn.insn_mo->pinfo | |
2517 | & INSN_LOAD_MEMORY_DELAY) | |
2518 | && ! gpr_interlocks)) | |
252b5132 RH |
2519 | && insn_uses_reg (ip, |
2520 | ((prev_prev_insn.insn_opcode >> OP_SH_RT) | |
2521 | & OP_MASK_RT), | |
2522 | MIPS_GR_REG)) | |
2523 | /* If one instruction sets a condition code and the | |
2524 | other one uses a condition code, we can not swap. */ | |
2525 | || ((pinfo & INSN_READ_COND_CODE) | |
2526 | && (prev_pinfo & INSN_WRITE_COND_CODE)) | |
2527 | || ((pinfo & INSN_WRITE_COND_CODE) | |
2528 | && (prev_pinfo & INSN_READ_COND_CODE)) | |
2529 | /* If the previous instruction uses the PC, we can not | |
2530 | swap. */ | |
2531 | || (mips_opts.mips16 | |
2532 | && (prev_pinfo & MIPS16_INSN_READ_PC)) | |
2533 | /* If the previous instruction was extended, we can not | |
2534 | swap. */ | |
2535 | || (mips_opts.mips16 && prev_insn_extended) | |
2536 | /* If the previous instruction had a fixup in mips16 | |
2537 | mode, we can not swap. This normally means that the | |
2538 | previous instruction was a 4 byte branch anyhow. */ | |
f6688943 | 2539 | || (mips_opts.mips16 && prev_insn_fixp[0]) |
bdaaa2e1 KH |
2540 | /* If the previous instruction is a sync, sync.l, or |
2541 | sync.p, we can not swap. */ | |
f173e82e | 2542 | || (prev_pinfo & INSN_SYNC)) |
252b5132 RH |
2543 | { |
2544 | /* We could do even better for unconditional branches to | |
2545 | portions of this object file; we could pick up the | |
2546 | instruction at the destination, put it in the delay | |
2547 | slot, and bump the destination address. */ | |
2548 | emit_nop (); | |
2549 | /* Update the previous insn information. */ | |
2550 | prev_prev_insn = *ip; | |
2551 | prev_insn.insn_mo = &dummy_opcode; | |
2552 | } | |
2553 | else | |
2554 | { | |
2555 | /* It looks like we can actually do the swap. */ | |
2556 | if (! mips_opts.mips16) | |
2557 | { | |
2558 | char *prev_f; | |
2559 | char temp[4]; | |
2560 | ||
2561 | prev_f = prev_insn_frag->fr_literal + prev_insn_where; | |
895921c9 MR |
2562 | if (!relaxed_branch) |
2563 | { | |
2564 | /* If this is not a relaxed branch, then just | |
2565 | swap the instructions. */ | |
2566 | memcpy (temp, prev_f, 4); | |
2567 | memcpy (prev_f, f, 4); | |
2568 | memcpy (f, temp, 4); | |
2569 | } | |
2570 | else | |
2571 | { | |
2572 | /* If this is a relaxed branch, then we move the | |
2573 | instruction to be placed in the delay slot to | |
2574 | the current frag, shrinking the fixed part of | |
2575 | the originating frag. If the branch occupies | |
2576 | the tail of the latter, we move it backwards, | |
2577 | into the space freed by the moved instruction. */ | |
2578 | f = frag_more (4); | |
2579 | memcpy (f, prev_f, 4); | |
2580 | prev_insn_frag->fr_fix -= 4; | |
2581 | if (prev_insn_frag->fr_type == rs_machine_dependent) | |
2582 | memmove (prev_f, prev_f + 4, prev_insn_frag->fr_var); | |
2583 | } | |
2584 | ||
f6688943 TS |
2585 | if (prev_insn_fixp[0]) |
2586 | { | |
2587 | prev_insn_fixp[0]->fx_frag = frag_now; | |
2588 | prev_insn_fixp[0]->fx_where = f - frag_now->fr_literal; | |
2589 | } | |
2590 | if (prev_insn_fixp[1]) | |
2591 | { | |
2592 | prev_insn_fixp[1]->fx_frag = frag_now; | |
2593 | prev_insn_fixp[1]->fx_where = f - frag_now->fr_literal; | |
2594 | } | |
2595 | if (prev_insn_fixp[2]) | |
252b5132 | 2596 | { |
f6688943 TS |
2597 | prev_insn_fixp[2]->fx_frag = frag_now; |
2598 | prev_insn_fixp[2]->fx_where = f - frag_now->fr_literal; | |
252b5132 | 2599 | } |
f5040a92 AO |
2600 | if (prev_insn_fixp[0] && HAVE_NEWABI |
2601 | && prev_insn_frag != frag_now | |
2602 | && (prev_insn_fixp[0]->fx_r_type | |
2603 | == BFD_RELOC_MIPS_GOT_DISP | |
2604 | || (prev_insn_fixp[0]->fx_r_type | |
2605 | == BFD_RELOC_MIPS_CALL16))) | |
2606 | { | |
2607 | /* To avoid confusion in tc_gen_reloc, we must | |
2608 | ensure that this does not become a variant | |
2609 | frag. */ | |
2610 | force_new_frag = TRUE; | |
2611 | } | |
895921c9 MR |
2612 | |
2613 | if (!relaxed_branch) | |
f6688943 | 2614 | { |
895921c9 MR |
2615 | if (fixp[0]) |
2616 | { | |
2617 | fixp[0]->fx_frag = prev_insn_frag; | |
2618 | fixp[0]->fx_where = prev_insn_where; | |
2619 | } | |
2620 | if (fixp[1]) | |
2621 | { | |
2622 | fixp[1]->fx_frag = prev_insn_frag; | |
2623 | fixp[1]->fx_where = prev_insn_where; | |
2624 | } | |
2625 | if (fixp[2]) | |
2626 | { | |
2627 | fixp[2]->fx_frag = prev_insn_frag; | |
2628 | fixp[2]->fx_where = prev_insn_where; | |
2629 | } | |
f6688943 | 2630 | } |
895921c9 | 2631 | else if (prev_insn_frag->fr_type == rs_machine_dependent) |
f6688943 | 2632 | { |
895921c9 MR |
2633 | if (fixp[0]) |
2634 | fixp[0]->fx_where -= 4; | |
2635 | if (fixp[1]) | |
2636 | fixp[1]->fx_where -= 4; | |
2637 | if (fixp[2]) | |
2638 | fixp[2]->fx_where -= 4; | |
252b5132 RH |
2639 | } |
2640 | } | |
2641 | else | |
2642 | { | |
2643 | char *prev_f; | |
2644 | char temp[2]; | |
2645 | ||
f6688943 TS |
2646 | assert (prev_insn_fixp[0] == NULL); |
2647 | assert (prev_insn_fixp[1] == NULL); | |
2648 | assert (prev_insn_fixp[2] == NULL); | |
252b5132 RH |
2649 | prev_f = prev_insn_frag->fr_literal + prev_insn_where; |
2650 | memcpy (temp, prev_f, 2); | |
2651 | memcpy (prev_f, f, 2); | |
f6688943 | 2652 | if (*reloc_type != BFD_RELOC_MIPS16_JMP) |
252b5132 | 2653 | { |
f6688943 | 2654 | assert (*reloc_type == BFD_RELOC_UNUSED); |
252b5132 RH |
2655 | memcpy (f, temp, 2); |
2656 | } | |
2657 | else | |
2658 | { | |
2659 | memcpy (f, f + 2, 2); | |
2660 | memcpy (f + 2, temp, 2); | |
2661 | } | |
f6688943 TS |
2662 | if (fixp[0]) |
2663 | { | |
2664 | fixp[0]->fx_frag = prev_insn_frag; | |
2665 | fixp[0]->fx_where = prev_insn_where; | |
2666 | } | |
2667 | if (fixp[1]) | |
2668 | { | |
2669 | fixp[1]->fx_frag = prev_insn_frag; | |
2670 | fixp[1]->fx_where = prev_insn_where; | |
2671 | } | |
2672 | if (fixp[2]) | |
252b5132 | 2673 | { |
f6688943 TS |
2674 | fixp[2]->fx_frag = prev_insn_frag; |
2675 | fixp[2]->fx_where = prev_insn_where; | |
252b5132 RH |
2676 | } |
2677 | } | |
2678 | ||
2679 | /* Update the previous insn information; leave prev_insn | |
2680 | unchanged. */ | |
2681 | prev_prev_insn = *ip; | |
2682 | } | |
2683 | prev_insn_is_delay_slot = 1; | |
2684 | ||
2685 | /* If that was an unconditional branch, forget the previous | |
2686 | insn information. */ | |
2687 | if (pinfo & INSN_UNCOND_BRANCH_DELAY) | |
2688 | { | |
2689 | prev_prev_insn.insn_mo = &dummy_opcode; | |
2690 | prev_insn.insn_mo = &dummy_opcode; | |
2691 | } | |
2692 | ||
f6688943 TS |
2693 | prev_insn_fixp[0] = NULL; |
2694 | prev_insn_fixp[1] = NULL; | |
2695 | prev_insn_fixp[2] = NULL; | |
2696 | prev_insn_reloc_type[0] = BFD_RELOC_UNUSED; | |
2697 | prev_insn_reloc_type[1] = BFD_RELOC_UNUSED; | |
2698 | prev_insn_reloc_type[2] = BFD_RELOC_UNUSED; | |
252b5132 RH |
2699 | prev_insn_extended = 0; |
2700 | } | |
2701 | else if (pinfo & INSN_COND_BRANCH_LIKELY) | |
2702 | { | |
2703 | /* We don't yet optimize a branch likely. What we should do | |
2704 | is look at the target, copy the instruction found there | |
2705 | into the delay slot, and increment the branch to jump to | |
2706 | the next instruction. */ | |
2707 | emit_nop (); | |
2708 | /* Update the previous insn information. */ | |
2709 | prev_prev_insn = *ip; | |
2710 | prev_insn.insn_mo = &dummy_opcode; | |
f6688943 TS |
2711 | prev_insn_fixp[0] = NULL; |
2712 | prev_insn_fixp[1] = NULL; | |
2713 | prev_insn_fixp[2] = NULL; | |
2714 | prev_insn_reloc_type[0] = BFD_RELOC_UNUSED; | |
2715 | prev_insn_reloc_type[1] = BFD_RELOC_UNUSED; | |
2716 | prev_insn_reloc_type[2] = BFD_RELOC_UNUSED; | |
252b5132 | 2717 | prev_insn_extended = 0; |
f7870c8d | 2718 | prev_insn_is_delay_slot = 1; |
252b5132 RH |
2719 | } |
2720 | else | |
2721 | { | |
2722 | /* Update the previous insn information. */ | |
2723 | if (nops > 0) | |
2724 | prev_prev_insn.insn_mo = &dummy_opcode; | |
2725 | else | |
2726 | prev_prev_insn = prev_insn; | |
2727 | prev_insn = *ip; | |
2728 | ||
2729 | /* Any time we see a branch, we always fill the delay slot | |
2730 | immediately; since this insn is not a branch, we know it | |
2731 | is not in a delay slot. */ | |
2732 | prev_insn_is_delay_slot = 0; | |
2733 | ||
f6688943 TS |
2734 | prev_insn_fixp[0] = fixp[0]; |
2735 | prev_insn_fixp[1] = fixp[1]; | |
2736 | prev_insn_fixp[2] = fixp[2]; | |
2737 | prev_insn_reloc_type[0] = reloc_type[0]; | |
2738 | prev_insn_reloc_type[1] = reloc_type[1]; | |
2739 | prev_insn_reloc_type[2] = reloc_type[2]; | |
252b5132 RH |
2740 | if (mips_opts.mips16) |
2741 | prev_insn_extended = (ip->use_extend | |
f6688943 | 2742 | || *reloc_type > BFD_RELOC_UNUSED); |
252b5132 RH |
2743 | } |
2744 | ||
2745 | prev_prev_insn_unreordered = prev_insn_unreordered; | |
2746 | prev_insn_unreordered = 0; | |
2747 | prev_insn_frag = frag_now; | |
2748 | prev_insn_where = f - frag_now->fr_literal; | |
2749 | prev_insn_valid = 1; | |
2750 | } | |
4d7206a2 | 2751 | else if (mips_relax.sequence != 2) |
252b5132 RH |
2752 | { |
2753 | /* We need to record a bit of information even when we are not | |
2754 | reordering, in order to determine the base address for mips16 | |
2755 | PC relative relocs. */ | |
2756 | prev_prev_insn = prev_insn; | |
2757 | prev_insn = *ip; | |
f6688943 TS |
2758 | prev_insn_reloc_type[0] = reloc_type[0]; |
2759 | prev_insn_reloc_type[1] = reloc_type[1]; | |
2760 | prev_insn_reloc_type[2] = reloc_type[2]; | |
252b5132 RH |
2761 | prev_prev_insn_unreordered = prev_insn_unreordered; |
2762 | prev_insn_unreordered = 1; | |
2763 | } | |
2764 | ||
2765 | /* We just output an insn, so the next one doesn't have a label. */ | |
2766 | mips_clear_insn_labels (); | |
252b5132 RH |
2767 | } |
2768 | ||
2769 | /* This function forgets that there was any previous instruction or | |
2770 | label. If PRESERVE is non-zero, it remembers enough information to | |
bdaaa2e1 | 2771 | know whether nops are needed before a noreorder section. */ |
252b5132 RH |
2772 | |
2773 | static void | |
17a2f251 | 2774 | mips_no_prev_insn (int preserve) |
252b5132 RH |
2775 | { |
2776 | if (! preserve) | |
2777 | { | |
2778 | prev_insn.insn_mo = &dummy_opcode; | |
2779 | prev_prev_insn.insn_mo = &dummy_opcode; | |
2780 | prev_nop_frag = NULL; | |
2781 | prev_nop_frag_holds = 0; | |
2782 | prev_nop_frag_required = 0; | |
2783 | prev_nop_frag_since = 0; | |
2784 | } | |
2785 | prev_insn_valid = 0; | |
2786 | prev_insn_is_delay_slot = 0; | |
2787 | prev_insn_unreordered = 0; | |
2788 | prev_insn_extended = 0; | |
f6688943 TS |
2789 | prev_insn_reloc_type[0] = BFD_RELOC_UNUSED; |
2790 | prev_insn_reloc_type[1] = BFD_RELOC_UNUSED; | |
2791 | prev_insn_reloc_type[2] = BFD_RELOC_UNUSED; | |
252b5132 RH |
2792 | prev_prev_insn_unreordered = 0; |
2793 | mips_clear_insn_labels (); | |
2794 | } | |
2795 | ||
2796 | /* This function must be called whenever we turn on noreorder or emit | |
2797 | something other than instructions. It inserts any NOPS which might | |
2798 | be needed by the previous instruction, and clears the information | |
2799 | kept for the previous instructions. The INSNS parameter is true if | |
bdaaa2e1 | 2800 | instructions are to follow. */ |
252b5132 RH |
2801 | |
2802 | static void | |
17a2f251 | 2803 | mips_emit_delays (bfd_boolean insns) |
252b5132 RH |
2804 | { |
2805 | if (! mips_opts.noreorder) | |
2806 | { | |
2807 | int nops; | |
2808 | ||
2809 | nops = 0; | |
2810 | if ((! mips_opts.mips16 | |
81912461 ILT |
2811 | && ((prev_insn.insn_mo->pinfo |
2812 | & (INSN_LOAD_COPROC_DELAY | |
2813 | | INSN_COPROC_MOVE_DELAY | |
2814 | | INSN_WRITE_COND_CODE)) | |
2815 | && ! cop_interlocks)) | |
252b5132 RH |
2816 | || (! hilo_interlocks |
2817 | && (prev_insn.insn_mo->pinfo | |
2818 | & (INSN_READ_LO | |
2819 | | INSN_READ_HI))) | |
2820 | || (! mips_opts.mips16 | |
81912461 ILT |
2821 | && (prev_insn.insn_mo->pinfo & INSN_LOAD_MEMORY_DELAY) |
2822 | && ! gpr_interlocks) | |
252b5132 | 2823 | || (! mips_opts.mips16 |
81912461 ILT |
2824 | && (prev_insn.insn_mo->pinfo & INSN_COPROC_MEMORY_DELAY) |
2825 | && ! cop_mem_interlocks)) | |
252b5132 | 2826 | { |
beae10d5 | 2827 | /* Itbl support may require additional care here. */ |
252b5132 RH |
2828 | ++nops; |
2829 | if ((! mips_opts.mips16 | |
81912461 ILT |
2830 | && ((prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE) |
2831 | && ! cop_interlocks)) | |
252b5132 RH |
2832 | || (! hilo_interlocks |
2833 | && ((prev_insn.insn_mo->pinfo & INSN_READ_HI) | |
2834 | || (prev_insn.insn_mo->pinfo & INSN_READ_LO)))) | |
2835 | ++nops; | |
2836 | ||
2837 | if (prev_insn_unreordered) | |
2838 | nops = 0; | |
2839 | } | |
2840 | else if ((! mips_opts.mips16 | |
81912461 ILT |
2841 | && ((prev_prev_insn.insn_mo->pinfo & INSN_WRITE_COND_CODE) |
2842 | && ! cop_interlocks)) | |
252b5132 RH |
2843 | || (! hilo_interlocks |
2844 | && ((prev_prev_insn.insn_mo->pinfo & INSN_READ_HI) | |
2845 | || (prev_prev_insn.insn_mo->pinfo & INSN_READ_LO)))) | |
2846 | { | |
beae10d5 | 2847 | /* Itbl support may require additional care here. */ |
252b5132 RH |
2848 | if (! prev_prev_insn_unreordered) |
2849 | ++nops; | |
2850 | } | |
2851 | ||
d766e8ec | 2852 | if (mips_fix_vr4120 && prev_insn.insn_mo->name) |
60b63b72 RS |
2853 | { |
2854 | int min_nops = 0; | |
2855 | const char *pn = prev_insn.insn_mo->name; | |
532c738a RS |
2856 | if (strncmp (pn, "macc", 4) == 0 |
2857 | || strncmp (pn, "dmacc", 5) == 0 | |
2858 | || strncmp (pn, "dmult", 5) == 0 | |
2859 | || strstr (pn, "div")) | |
2860 | min_nops = 1; | |
60b63b72 RS |
2861 | if (nops < min_nops) |
2862 | nops = min_nops; | |
2863 | } | |
2864 | ||
252b5132 RH |
2865 | if (nops > 0) |
2866 | { | |
2867 | struct insn_label_list *l; | |
2868 | ||
2869 | if (insns) | |
2870 | { | |
2871 | /* Record the frag which holds the nop instructions, so | |
2872 | that we can remove them if we don't need them. */ | |
2873 | frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4); | |
2874 | prev_nop_frag = frag_now; | |
2875 | prev_nop_frag_holds = nops; | |
2876 | prev_nop_frag_required = 0; | |
2877 | prev_nop_frag_since = 0; | |
2878 | } | |
2879 | ||
2880 | for (; nops > 0; --nops) | |
2881 | emit_nop (); | |
2882 | ||
2883 | if (insns) | |
2884 | { | |
2885 | /* Move on to a new frag, so that it is safe to simply | |
bdaaa2e1 | 2886 | decrease the size of prev_nop_frag. */ |
252b5132 RH |
2887 | frag_wane (frag_now); |
2888 | frag_new (0); | |
2889 | } | |
2890 | ||
2891 | for (l = insn_labels; l != NULL; l = l->next) | |
2892 | { | |
98aa84af AM |
2893 | valueT val; |
2894 | ||
252b5132 | 2895 | assert (S_GET_SEGMENT (l->label) == now_seg); |
49309057 | 2896 | symbol_set_frag (l->label, frag_now); |
98aa84af | 2897 | val = (valueT) frag_now_fix (); |
252b5132 RH |
2898 | /* mips16 text labels are stored as odd. */ |
2899 | if (mips_opts.mips16) | |
f9419b05 | 2900 | ++val; |
98aa84af | 2901 | S_SET_VALUE (l->label, val); |
252b5132 RH |
2902 | } |
2903 | } | |
2904 | } | |
2905 | ||
2906 | /* Mark instruction labels in mips16 mode. */ | |
f9419b05 | 2907 | if (insns) |
252b5132 RH |
2908 | mips16_mark_labels (); |
2909 | ||
2910 | mips_no_prev_insn (insns); | |
2911 | } | |
2912 | ||
584892a6 RS |
2913 | /* Set up global variables for the start of a new macro. */ |
2914 | ||
2915 | static void | |
2916 | macro_start (void) | |
2917 | { | |
2918 | memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes)); | |
2919 | mips_macro_warning.delay_slot_p = (mips_opts.noreorder | |
2920 | && (prev_insn.insn_mo->pinfo | |
2921 | & (INSN_UNCOND_BRANCH_DELAY | |
2922 | | INSN_COND_BRANCH_DELAY | |
2923 | | INSN_COND_BRANCH_LIKELY)) != 0); | |
2924 | } | |
2925 | ||
2926 | /* Given that a macro is longer than 4 bytes, return the appropriate warning | |
2927 | for it. Return null if no warning is needed. SUBTYPE is a bitmask of | |
2928 | RELAX_DELAY_SLOT and RELAX_NOMACRO. */ | |
2929 | ||
2930 | static const char * | |
2931 | macro_warning (relax_substateT subtype) | |
2932 | { | |
2933 | if (subtype & RELAX_DELAY_SLOT) | |
2934 | return _("Macro instruction expanded into multiple instructions" | |
2935 | " in a branch delay slot"); | |
2936 | else if (subtype & RELAX_NOMACRO) | |
2937 | return _("Macro instruction expanded into multiple instructions"); | |
2938 | else | |
2939 | return 0; | |
2940 | } | |
2941 | ||
2942 | /* Finish up a macro. Emit warnings as appropriate. */ | |
2943 | ||
2944 | static void | |
2945 | macro_end (void) | |
2946 | { | |
2947 | if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4) | |
2948 | { | |
2949 | relax_substateT subtype; | |
2950 | ||
2951 | /* Set up the relaxation warning flags. */ | |
2952 | subtype = 0; | |
2953 | if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0]) | |
2954 | subtype |= RELAX_SECOND_LONGER; | |
2955 | if (mips_opts.warn_about_macros) | |
2956 | subtype |= RELAX_NOMACRO; | |
2957 | if (mips_macro_warning.delay_slot_p) | |
2958 | subtype |= RELAX_DELAY_SLOT; | |
2959 | ||
2960 | if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4) | |
2961 | { | |
2962 | /* Either the macro has a single implementation or both | |
2963 | implementations are longer than 4 bytes. Emit the | |
2964 | warning now. */ | |
2965 | const char *msg = macro_warning (subtype); | |
2966 | if (msg != 0) | |
2967 | as_warn (msg); | |
2968 | } | |
2969 | else | |
2970 | { | |
2971 | /* One implementation might need a warning but the other | |
2972 | definitely doesn't. */ | |
2973 | mips_macro_warning.first_frag->fr_subtype |= subtype; | |
2974 | } | |
2975 | } | |
2976 | } | |
2977 | ||
252b5132 RH |
2978 | /* Build an instruction created by a macro expansion. This is passed |
2979 | a pointer to the count of instructions created so far, an | |
2980 | expression, the name of the instruction to build, an operand format | |
2981 | string, and corresponding arguments. */ | |
2982 | ||
252b5132 | 2983 | static void |
67c0d1eb | 2984 | macro_build (expressionS *ep, const char *name, const char *fmt, ...) |
252b5132 RH |
2985 | { |
2986 | struct mips_cl_insn insn; | |
f6688943 | 2987 | bfd_reloc_code_real_type r[3]; |
252b5132 | 2988 | va_list args; |
252b5132 | 2989 | |
252b5132 | 2990 | va_start (args, fmt); |
252b5132 | 2991 | |
252b5132 RH |
2992 | if (mips_opts.mips16) |
2993 | { | |
67c0d1eb | 2994 | mips16_macro_build (ep, name, fmt, args); |
252b5132 RH |
2995 | va_end (args); |
2996 | return; | |
2997 | } | |
2998 | ||
f6688943 TS |
2999 | r[0] = BFD_RELOC_UNUSED; |
3000 | r[1] = BFD_RELOC_UNUSED; | |
3001 | r[2] = BFD_RELOC_UNUSED; | |
252b5132 RH |
3002 | insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name); |
3003 | assert (insn.insn_mo); | |
3004 | assert (strcmp (name, insn.insn_mo->name) == 0); | |
3005 | ||
3006 | /* Search until we get a match for NAME. */ | |
3007 | while (1) | |
3008 | { | |
b34976b6 | 3009 | /* It is assumed here that macros will never generate |
deec1734 | 3010 | MDMX or MIPS-3D instructions. */ |
252b5132 RH |
3011 | if (strcmp (fmt, insn.insn_mo->args) == 0 |
3012 | && insn.insn_mo->pinfo != INSN_MACRO | |
aec421e0 TS |
3013 | && OPCODE_IS_MEMBER (insn.insn_mo, |
3014 | (mips_opts.isa | |
3396de36 | 3015 | | (file_ase_mips16 ? INSN_MIPS16 : 0)), |
fef14a42 TS |
3016 | mips_opts.arch) |
3017 | && (mips_opts.arch != CPU_R4650 || (insn.insn_mo->pinfo & FP_D) == 0)) | |
252b5132 RH |
3018 | break; |
3019 | ||
3020 | ++insn.insn_mo; | |
3021 | assert (insn.insn_mo->name); | |
3022 | assert (strcmp (name, insn.insn_mo->name) == 0); | |
3023 | } | |
3024 | ||
3025 | insn.insn_opcode = insn.insn_mo->match; | |
3026 | for (;;) | |
3027 | { | |
3028 | switch (*fmt++) | |
3029 | { | |
3030 | case '\0': | |
3031 | break; | |
3032 | ||
3033 | case ',': | |
3034 | case '(': | |
3035 | case ')': | |
3036 | continue; | |
3037 | ||
5f74bc13 CD |
3038 | case '+': |
3039 | switch (*fmt++) | |
3040 | { | |
3041 | case 'A': | |
3042 | case 'E': | |
3043 | insn.insn_opcode |= (va_arg (args, int) | |
3044 | & OP_MASK_SHAMT) << OP_SH_SHAMT; | |
3045 | continue; | |
3046 | ||
3047 | case 'B': | |
3048 | case 'F': | |
3049 | /* Note that in the macro case, these arguments are already | |
3050 | in MSB form. (When handling the instruction in the | |
3051 | non-macro case, these arguments are sizes from which | |
3052 | MSB values must be calculated.) */ | |
3053 | insn.insn_opcode |= (va_arg (args, int) | |
3054 | & OP_MASK_INSMSB) << OP_SH_INSMSB; | |
3055 | continue; | |
3056 | ||
3057 | case 'C': | |
3058 | case 'G': | |
3059 | case 'H': | |
3060 | /* Note that in the macro case, these arguments are already | |
3061 | in MSBD form. (When handling the instruction in the | |
3062 | non-macro case, these arguments are sizes from which | |
3063 | MSBD values must be calculated.) */ | |
3064 | insn.insn_opcode |= (va_arg (args, int) | |
3065 | & OP_MASK_EXTMSBD) << OP_SH_EXTMSBD; | |
3066 | continue; | |
3067 | ||
3068 | default: | |
3069 | internalError (); | |
3070 | } | |
3071 | continue; | |
3072 | ||
252b5132 RH |
3073 | case 't': |
3074 | case 'w': | |
3075 | case 'E': | |
38487616 | 3076 | insn.insn_opcode |= va_arg (args, int) << OP_SH_RT; |
252b5132 RH |
3077 | continue; |
3078 | ||
3079 | case 'c': | |
38487616 TS |
3080 | insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE; |
3081 | continue; | |
3082 | ||
252b5132 RH |
3083 | case 'T': |
3084 | case 'W': | |
38487616 | 3085 | insn.insn_opcode |= va_arg (args, int) << OP_SH_FT; |
252b5132 RH |
3086 | continue; |
3087 | ||
3088 | case 'd': | |
3089 | case 'G': | |
af7ee8bf | 3090 | case 'K': |
38487616 | 3091 | insn.insn_opcode |= va_arg (args, int) << OP_SH_RD; |
252b5132 RH |
3092 | continue; |
3093 | ||
4372b673 NC |
3094 | case 'U': |
3095 | { | |
3096 | int tmp = va_arg (args, int); | |
3097 | ||
38487616 TS |
3098 | insn.insn_opcode |= tmp << OP_SH_RT; |
3099 | insn.insn_opcode |= tmp << OP_SH_RD; | |
beae10d5 | 3100 | continue; |
4372b673 NC |
3101 | } |
3102 | ||
252b5132 RH |
3103 | case 'V': |
3104 | case 'S': | |
38487616 | 3105 | insn.insn_opcode |= va_arg (args, int) << OP_SH_FS; |
252b5132 RH |
3106 | continue; |
3107 | ||
3108 | case 'z': | |
3109 | continue; | |
3110 | ||
3111 | case '<': | |
38487616 | 3112 | insn.insn_opcode |= va_arg (args, int) << OP_SH_SHAMT; |
252b5132 RH |
3113 | continue; |
3114 | ||
3115 | case 'D': | |
38487616 | 3116 | insn.insn_opcode |= va_arg (args, int) << OP_SH_FD; |
252b5132 RH |
3117 | continue; |
3118 | ||
3119 | case 'B': | |
38487616 | 3120 | insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE20; |
252b5132 RH |
3121 | continue; |
3122 | ||
4372b673 | 3123 | case 'J': |
38487616 | 3124 | insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE19; |
4372b673 NC |
3125 | continue; |
3126 | ||
252b5132 | 3127 | case 'q': |
38487616 | 3128 | insn.insn_opcode |= va_arg (args, int) << OP_SH_CODE2; |
252b5132 RH |
3129 | continue; |
3130 | ||
3131 | case 'b': | |
3132 | case 's': | |
3133 | case 'r': | |
3134 | case 'v': | |
38487616 | 3135 | insn.insn_opcode |= va_arg (args, int) << OP_SH_RS; |
252b5132 RH |
3136 | continue; |
3137 | ||
3138 | case 'i': | |
3139 | case 'j': | |
3140 | case 'o': | |
f6688943 | 3141 | *r = (bfd_reloc_code_real_type) va_arg (args, int); |
cdf6fd85 | 3142 | assert (*r == BFD_RELOC_GPREL16 |
f6688943 TS |
3143 | || *r == BFD_RELOC_MIPS_LITERAL |
3144 | || *r == BFD_RELOC_MIPS_HIGHER | |
3145 | || *r == BFD_RELOC_HI16_S | |
3146 | || *r == BFD_RELOC_LO16 | |
3147 | || *r == BFD_RELOC_MIPS_GOT16 | |
3148 | || *r == BFD_RELOC_MIPS_CALL16 | |
438c16b8 TS |
3149 | || *r == BFD_RELOC_MIPS_GOT_DISP |
3150 | || *r == BFD_RELOC_MIPS_GOT_PAGE | |
3151 | || *r == BFD_RELOC_MIPS_GOT_OFST | |
f6688943 | 3152 | || *r == BFD_RELOC_MIPS_GOT_LO16 |
3e722fb5 | 3153 | || *r == BFD_RELOC_MIPS_CALL_LO16); |
252b5132 RH |
3154 | continue; |
3155 | ||
3156 | case 'u': | |
f6688943 | 3157 | *r = (bfd_reloc_code_real_type) va_arg (args, int); |
252b5132 RH |
3158 | assert (ep != NULL |
3159 | && (ep->X_op == O_constant | |
3160 | || (ep->X_op == O_symbol | |
f6688943 TS |
3161 | && (*r == BFD_RELOC_MIPS_HIGHEST |
3162 | || *r == BFD_RELOC_HI16_S | |
3163 | || *r == BFD_RELOC_HI16 | |
3164 | || *r == BFD_RELOC_GPREL16 | |
3165 | || *r == BFD_RELOC_MIPS_GOT_HI16 | |
3e722fb5 | 3166 | || *r == BFD_RELOC_MIPS_CALL_HI16)))); |
252b5132 RH |
3167 | continue; |
3168 | ||
3169 | case 'p': | |
3170 | assert (ep != NULL); | |
3171 | /* | |
3172 | * This allows macro() to pass an immediate expression for | |
3173 | * creating short branches without creating a symbol. | |
0b25d3e6 AO |
3174 | * Note that the expression still might come from the assembly |
3175 | * input, in which case the value is not checked for range nor | |
3176 | * is a relocation entry generated (yuck). | |
252b5132 RH |
3177 | */ |
3178 | if (ep->X_op == O_constant) | |
3179 | { | |
3180 | insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff; | |
3181 | ep = NULL; | |
3182 | } | |
3183 | else | |
0b25d3e6 | 3184 | *r = BFD_RELOC_16_PCREL_S2; |
252b5132 RH |
3185 | continue; |
3186 | ||
3187 | case 'a': | |
3188 | assert (ep != NULL); | |
f6688943 | 3189 | *r = BFD_RELOC_MIPS_JMP; |
252b5132 RH |
3190 | continue; |
3191 | ||
3192 | case 'C': | |
3193 | insn.insn_opcode |= va_arg (args, unsigned long); | |
3194 | continue; | |
3195 | ||
3196 | default: | |
3197 | internalError (); | |
3198 | } | |
3199 | break; | |
3200 | } | |
3201 | va_end (args); | |
f6688943 | 3202 | assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL); |
252b5132 | 3203 | |
4d7206a2 | 3204 | append_insn (&insn, ep, r); |
252b5132 RH |
3205 | } |
3206 | ||
3207 | static void | |
67c0d1eb | 3208 | mips16_macro_build (expressionS *ep, const char *name, const char *fmt, |
17a2f251 | 3209 | va_list args) |
252b5132 RH |
3210 | { |
3211 | struct mips_cl_insn insn; | |
f6688943 TS |
3212 | bfd_reloc_code_real_type r[3] |
3213 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
252b5132 | 3214 | |
252b5132 RH |
3215 | insn.insn_mo = (struct mips_opcode *) hash_find (mips16_op_hash, name); |
3216 | assert (insn.insn_mo); | |
3217 | assert (strcmp (name, insn.insn_mo->name) == 0); | |
3218 | ||
3219 | while (strcmp (fmt, insn.insn_mo->args) != 0 | |
3220 | || insn.insn_mo->pinfo == INSN_MACRO) | |
3221 | { | |
3222 | ++insn.insn_mo; | |
3223 | assert (insn.insn_mo->name); | |
3224 | assert (strcmp (name, insn.insn_mo->name) == 0); | |
3225 | } | |
3226 | ||
3227 | insn.insn_opcode = insn.insn_mo->match; | |
b34976b6 | 3228 | insn.use_extend = FALSE; |
252b5132 RH |
3229 | |
3230 | for (;;) | |
3231 | { | |
3232 | int c; | |
3233 | ||
3234 | c = *fmt++; | |
3235 | switch (c) | |
3236 | { | |
3237 | case '\0': | |
3238 | break; | |
3239 | ||
3240 | case ',': | |
3241 | case '(': | |
3242 | case ')': | |
3243 | continue; | |
3244 | ||
3245 | case 'y': | |
3246 | case 'w': | |
3247 | insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RY; | |
3248 | continue; | |
3249 | ||
3250 | case 'x': | |
3251 | case 'v': | |
3252 | insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RX; | |
3253 | continue; | |
3254 | ||
3255 | case 'z': | |
3256 | insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_RZ; | |
3257 | continue; | |
3258 | ||
3259 | case 'Z': | |
3260 | insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_MOVE32Z; | |
3261 | continue; | |
3262 | ||
3263 | case '0': | |
3264 | case 'S': | |
3265 | case 'P': | |
3266 | case 'R': | |
3267 | continue; | |
3268 | ||
3269 | case 'X': | |
3270 | insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_REGR32; | |
3271 | continue; | |
3272 | ||
3273 | case 'Y': | |
3274 | { | |
3275 | int regno; | |
3276 | ||
3277 | regno = va_arg (args, int); | |
3278 | regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3); | |
3279 | insn.insn_opcode |= regno << MIPS16OP_SH_REG32R; | |
3280 | } | |
3281 | continue; | |
3282 | ||
3283 | case '<': | |
3284 | case '>': | |
3285 | case '4': | |
3286 | case '5': | |
3287 | case 'H': | |
3288 | case 'W': | |
3289 | case 'D': | |
3290 | case 'j': | |
3291 | case '8': | |
3292 | case 'V': | |
3293 | case 'C': | |
3294 | case 'U': | |
3295 | case 'k': | |
3296 | case 'K': | |
3297 | case 'p': | |
3298 | case 'q': | |
3299 | { | |
3300 | assert (ep != NULL); | |
3301 | ||
3302 | if (ep->X_op != O_constant) | |
874e8986 | 3303 | *r = (int) BFD_RELOC_UNUSED + c; |
252b5132 RH |
3304 | else |
3305 | { | |
b34976b6 AM |
3306 | mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE, |
3307 | FALSE, &insn.insn_opcode, &insn.use_extend, | |
c4e7957c | 3308 | &insn.extend); |
252b5132 | 3309 | ep = NULL; |
f6688943 | 3310 | *r = BFD_RELOC_UNUSED; |
252b5132 RH |
3311 | } |
3312 | } | |
3313 | continue; | |
3314 | ||
3315 | case '6': | |
3316 | insn.insn_opcode |= va_arg (args, int) << MIPS16OP_SH_IMM6; | |
3317 | continue; | |
3318 | } | |
3319 | ||
3320 | break; | |
3321 | } | |
3322 | ||
f6688943 | 3323 | assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL); |
252b5132 | 3324 | |
4d7206a2 | 3325 | append_insn (&insn, ep, r); |
252b5132 RH |
3326 | } |
3327 | ||
438c16b8 TS |
3328 | /* |
3329 | * Generate a "jalr" instruction with a relocation hint to the called | |
3330 | * function. This occurs in NewABI PIC code. | |
3331 | */ | |
3332 | static void | |
67c0d1eb | 3333 | macro_build_jalr (expressionS *ep) |
438c16b8 | 3334 | { |
685736be | 3335 | char *f = NULL; |
b34976b6 | 3336 | |
438c16b8 | 3337 | if (HAVE_NEWABI) |
f21f8242 | 3338 | { |
cc3d92a5 | 3339 | frag_grow (8); |
f21f8242 AO |
3340 | f = frag_more (0); |
3341 | } | |
67c0d1eb | 3342 | macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG); |
438c16b8 | 3343 | if (HAVE_NEWABI) |
f21f8242 | 3344 | fix_new_exp (frag_now, f - frag_now->fr_literal, |
a105a300 | 3345 | 4, ep, FALSE, BFD_RELOC_MIPS_JALR); |
438c16b8 TS |
3346 | } |
3347 | ||
252b5132 RH |
3348 | /* |
3349 | * Generate a "lui" instruction. | |
3350 | */ | |
3351 | static void | |
67c0d1eb | 3352 | macro_build_lui (expressionS *ep, int regnum) |
252b5132 RH |
3353 | { |
3354 | expressionS high_expr; | |
3355 | struct mips_cl_insn insn; | |
f6688943 TS |
3356 | bfd_reloc_code_real_type r[3] |
3357 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
5a38dc70 AM |
3358 | const char *name = "lui"; |
3359 | const char *fmt = "t,u"; | |
252b5132 RH |
3360 | |
3361 | assert (! mips_opts.mips16); | |
3362 | ||
4d7206a2 | 3363 | high_expr = *ep; |
252b5132 RH |
3364 | |
3365 | if (high_expr.X_op == O_constant) | |
3366 | { | |
3367 | /* we can compute the instruction now without a relocation entry */ | |
e7d556df TS |
3368 | high_expr.X_add_number = ((high_expr.X_add_number + 0x8000) |
3369 | >> 16) & 0xffff; | |
f6688943 | 3370 | *r = BFD_RELOC_UNUSED; |
252b5132 | 3371 | } |
78e1bb40 | 3372 | else |
252b5132 RH |
3373 | { |
3374 | assert (ep->X_op == O_symbol); | |
3375 | /* _gp_disp is a special case, used from s_cpload. */ | |
3376 | assert (mips_pic == NO_PIC | |
78e1bb40 AO |
3377 | || (! HAVE_NEWABI |
3378 | && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0)); | |
f6688943 | 3379 | *r = BFD_RELOC_HI16_S; |
252b5132 RH |
3380 | } |
3381 | ||
252b5132 RH |
3382 | insn.insn_mo = (struct mips_opcode *) hash_find (op_hash, name); |
3383 | assert (insn.insn_mo); | |
3384 | assert (strcmp (name, insn.insn_mo->name) == 0); | |
3385 | assert (strcmp (fmt, insn.insn_mo->args) == 0); | |
3386 | ||
3387 | insn.insn_opcode = insn.insn_mo->match | (regnum << OP_SH_RT); | |
f6688943 | 3388 | if (*r == BFD_RELOC_UNUSED) |
252b5132 RH |
3389 | { |
3390 | insn.insn_opcode |= high_expr.X_add_number; | |
4d7206a2 | 3391 | append_insn (&insn, NULL, r); |
252b5132 RH |
3392 | } |
3393 | else | |
4d7206a2 | 3394 | append_insn (&insn, &high_expr, r); |
252b5132 RH |
3395 | } |
3396 | ||
885add95 CD |
3397 | /* Generate a sequence of instructions to do a load or store from a constant |
3398 | offset off of a base register (breg) into/from a target register (treg), | |
3399 | using AT if necessary. */ | |
3400 | static void | |
67c0d1eb RS |
3401 | macro_build_ldst_constoffset (expressionS *ep, const char *op, |
3402 | int treg, int breg, int dbl) | |
885add95 CD |
3403 | { |
3404 | assert (ep->X_op == O_constant); | |
3405 | ||
256ab948 | 3406 | /* Sign-extending 32-bit constants makes their handling easier. */ |
d17e7bce TS |
3407 | if (! dbl && ! ((ep->X_add_number & ~((bfd_vma) 0x7fffffff)) |
3408 | == ~((bfd_vma) 0x7fffffff))) | |
ae826530 | 3409 | { |
d17e7bce | 3410 | if (ep->X_add_number & ~((bfd_vma) 0xffffffff)) |
1b8e29e5 | 3411 | as_bad (_("constant too large")); |
ae826530 | 3412 | |
1b8e29e5 TS |
3413 | ep->X_add_number = (((ep->X_add_number & 0xffffffff) ^ 0x80000000) |
3414 | - 0x80000000); | |
ae826530 | 3415 | } |
256ab948 | 3416 | |
67c1ffbe | 3417 | /* Right now, this routine can only handle signed 32-bit constants. */ |
ecd13cd3 | 3418 | if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000)) |
885add95 CD |
3419 | as_warn (_("operand overflow")); |
3420 | ||
3421 | if (IS_SEXT_16BIT_NUM(ep->X_add_number)) | |
3422 | { | |
3423 | /* Signed 16-bit offset will fit in the op. Easy! */ | |
67c0d1eb | 3424 | macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg); |
885add95 CD |
3425 | } |
3426 | else | |
3427 | { | |
3428 | /* 32-bit offset, need multiple instructions and AT, like: | |
3429 | lui $tempreg,const_hi (BFD_RELOC_HI16_S) | |
3430 | addu $tempreg,$tempreg,$breg | |
3431 | <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16) | |
3432 | to handle the complete offset. */ | |
67c0d1eb RS |
3433 | macro_build_lui (ep, AT); |
3434 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); | |
3435 | macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT); | |
885add95 CD |
3436 | |
3437 | if (mips_opts.noat) | |
3438 | as_warn (_("Macro used $at after \".set noat\"")); | |
3439 | } | |
3440 | } | |
3441 | ||
252b5132 RH |
3442 | /* set_at() |
3443 | * Generates code to set the $at register to true (one) | |
3444 | * if reg is less than the immediate expression. | |
3445 | */ | |
3446 | static void | |
67c0d1eb | 3447 | set_at (int reg, int unsignedp) |
252b5132 RH |
3448 | { |
3449 | if (imm_expr.X_op == O_constant | |
3450 | && imm_expr.X_add_number >= -0x8000 | |
3451 | && imm_expr.X_add_number < 0x8000) | |
67c0d1eb RS |
3452 | macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j", |
3453 | AT, reg, BFD_RELOC_LO16); | |
252b5132 RH |
3454 | else |
3455 | { | |
67c0d1eb RS |
3456 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
3457 | macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT); | |
252b5132 RH |
3458 | } |
3459 | } | |
3460 | ||
13757d0c TS |
3461 | static void |
3462 | normalize_constant_expr (expressionS *ex) | |
3463 | { | |
3464 | if (ex->X_op == O_constant && HAVE_32BIT_GPRS) | |
3465 | ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000) | |
3466 | - 0x80000000); | |
3467 | } | |
3468 | ||
252b5132 RH |
3469 | /* Warn if an expression is not a constant. */ |
3470 | ||
3471 | static void | |
17a2f251 | 3472 | check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex) |
252b5132 RH |
3473 | { |
3474 | if (ex->X_op == O_big) | |
3475 | as_bad (_("unsupported large constant")); | |
3476 | else if (ex->X_op != O_constant) | |
3477 | as_bad (_("Instruction %s requires absolute expression"), ip->insn_mo->name); | |
13757d0c TS |
3478 | |
3479 | normalize_constant_expr (ex); | |
252b5132 RH |
3480 | } |
3481 | ||
3482 | /* Count the leading zeroes by performing a binary chop. This is a | |
3483 | bulky bit of source, but performance is a LOT better for the | |
3484 | majority of values than a simple loop to count the bits: | |
3485 | for (lcnt = 0; (lcnt < 32); lcnt++) | |
3486 | if ((v) & (1 << (31 - lcnt))) | |
3487 | break; | |
3488 | However it is not code size friendly, and the gain will drop a bit | |
3489 | on certain cached systems. | |
3490 | */ | |
3491 | #define COUNT_TOP_ZEROES(v) \ | |
3492 | (((v) & ~0xffff) == 0 \ | |
3493 | ? ((v) & ~0xff) == 0 \ | |
3494 | ? ((v) & ~0xf) == 0 \ | |
3495 | ? ((v) & ~0x3) == 0 \ | |
3496 | ? ((v) & ~0x1) == 0 \ | |
3497 | ? !(v) \ | |
3498 | ? 32 \ | |
3499 | : 31 \ | |
3500 | : 30 \ | |
3501 | : ((v) & ~0x7) == 0 \ | |
3502 | ? 29 \ | |
3503 | : 28 \ | |
3504 | : ((v) & ~0x3f) == 0 \ | |
3505 | ? ((v) & ~0x1f) == 0 \ | |
3506 | ? 27 \ | |
3507 | : 26 \ | |
3508 | : ((v) & ~0x7f) == 0 \ | |
3509 | ? 25 \ | |
3510 | : 24 \ | |
3511 | : ((v) & ~0xfff) == 0 \ | |
3512 | ? ((v) & ~0x3ff) == 0 \ | |
3513 | ? ((v) & ~0x1ff) == 0 \ | |
3514 | ? 23 \ | |
3515 | : 22 \ | |
3516 | : ((v) & ~0x7ff) == 0 \ | |
3517 | ? 21 \ | |
3518 | : 20 \ | |
3519 | : ((v) & ~0x3fff) == 0 \ | |
3520 | ? ((v) & ~0x1fff) == 0 \ | |
3521 | ? 19 \ | |
3522 | : 18 \ | |
3523 | : ((v) & ~0x7fff) == 0 \ | |
3524 | ? 17 \ | |
3525 | : 16 \ | |
3526 | : ((v) & ~0xffffff) == 0 \ | |
3527 | ? ((v) & ~0xfffff) == 0 \ | |
3528 | ? ((v) & ~0x3ffff) == 0 \ | |
3529 | ? ((v) & ~0x1ffff) == 0 \ | |
3530 | ? 15 \ | |
3531 | : 14 \ | |
3532 | : ((v) & ~0x7ffff) == 0 \ | |
3533 | ? 13 \ | |
3534 | : 12 \ | |
3535 | : ((v) & ~0x3fffff) == 0 \ | |
3536 | ? ((v) & ~0x1fffff) == 0 \ | |
3537 | ? 11 \ | |
3538 | : 10 \ | |
3539 | : ((v) & ~0x7fffff) == 0 \ | |
3540 | ? 9 \ | |
3541 | : 8 \ | |
3542 | : ((v) & ~0xfffffff) == 0 \ | |
3543 | ? ((v) & ~0x3ffffff) == 0 \ | |
3544 | ? ((v) & ~0x1ffffff) == 0 \ | |
3545 | ? 7 \ | |
3546 | : 6 \ | |
3547 | : ((v) & ~0x7ffffff) == 0 \ | |
3548 | ? 5 \ | |
3549 | : 4 \ | |
3550 | : ((v) & ~0x3fffffff) == 0 \ | |
3551 | ? ((v) & ~0x1fffffff) == 0 \ | |
3552 | ? 3 \ | |
3553 | : 2 \ | |
3554 | : ((v) & ~0x7fffffff) == 0 \ | |
3555 | ? 1 \ | |
3556 | : 0) | |
3557 | ||
3558 | /* load_register() | |
67c1ffbe | 3559 | * This routine generates the least number of instructions necessary to load |
252b5132 RH |
3560 | * an absolute expression value into a register. |
3561 | */ | |
3562 | static void | |
67c0d1eb | 3563 | load_register (int reg, expressionS *ep, int dbl) |
252b5132 RH |
3564 | { |
3565 | int freg; | |
3566 | expressionS hi32, lo32; | |
3567 | ||
3568 | if (ep->X_op != O_big) | |
3569 | { | |
3570 | assert (ep->X_op == O_constant); | |
256ab948 TS |
3571 | |
3572 | /* Sign-extending 32-bit constants makes their handling easier. */ | |
d17e7bce TS |
3573 | if (! dbl && ! ((ep->X_add_number & ~((bfd_vma) 0x7fffffff)) |
3574 | == ~((bfd_vma) 0x7fffffff))) | |
ae826530 | 3575 | { |
d17e7bce | 3576 | if (ep->X_add_number & ~((bfd_vma) 0xffffffff)) |
1b8e29e5 | 3577 | as_bad (_("constant too large")); |
ae826530 | 3578 | |
1b8e29e5 TS |
3579 | ep->X_add_number = (((ep->X_add_number & 0xffffffff) ^ 0x80000000) |
3580 | - 0x80000000); | |
ae826530 | 3581 | } |
256ab948 TS |
3582 | |
3583 | if (IS_SEXT_16BIT_NUM (ep->X_add_number)) | |
252b5132 RH |
3584 | { |
3585 | /* We can handle 16 bit signed values with an addiu to | |
3586 | $zero. No need to ever use daddiu here, since $zero and | |
3587 | the result are always correct in 32 bit mode. */ | |
67c0d1eb | 3588 | macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16); |
252b5132 RH |
3589 | return; |
3590 | } | |
3591 | else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000) | |
3592 | { | |
3593 | /* We can handle 16 bit unsigned values with an ori to | |
3594 | $zero. */ | |
67c0d1eb | 3595 | macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16); |
252b5132 RH |
3596 | return; |
3597 | } | |
256ab948 | 3598 | else if ((IS_SEXT_32BIT_NUM (ep->X_add_number))) |
252b5132 RH |
3599 | { |
3600 | /* 32 bit values require an lui. */ | |
67c0d1eb | 3601 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16); |
252b5132 | 3602 | if ((ep->X_add_number & 0xffff) != 0) |
67c0d1eb | 3603 | macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16); |
252b5132 RH |
3604 | return; |
3605 | } | |
3606 | } | |
3607 | ||
3608 | /* The value is larger than 32 bits. */ | |
3609 | ||
ca4e0257 | 3610 | if (HAVE_32BIT_GPRS) |
252b5132 | 3611 | { |
956cd1d6 TS |
3612 | as_bad (_("Number (0x%lx) larger than 32 bits"), |
3613 | (unsigned long) ep->X_add_number); | |
67c0d1eb | 3614 | macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16); |
252b5132 RH |
3615 | return; |
3616 | } | |
3617 | ||
3618 | if (ep->X_op != O_big) | |
3619 | { | |
3620 | hi32 = *ep; | |
3621 | hi32.X_add_number = (valueT) hi32.X_add_number >> 16; | |
3622 | hi32.X_add_number = (valueT) hi32.X_add_number >> 16; | |
3623 | hi32.X_add_number &= 0xffffffff; | |
3624 | lo32 = *ep; | |
3625 | lo32.X_add_number &= 0xffffffff; | |
3626 | } | |
3627 | else | |
3628 | { | |
3629 | assert (ep->X_add_number > 2); | |
3630 | if (ep->X_add_number == 3) | |
3631 | generic_bignum[3] = 0; | |
3632 | else if (ep->X_add_number > 4) | |
3633 | as_bad (_("Number larger than 64 bits")); | |
3634 | lo32.X_op = O_constant; | |
3635 | lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16); | |
3636 | hi32.X_op = O_constant; | |
3637 | hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16); | |
3638 | } | |
3639 | ||
3640 | if (hi32.X_add_number == 0) | |
3641 | freg = 0; | |
3642 | else | |
3643 | { | |
3644 | int shift, bit; | |
3645 | unsigned long hi, lo; | |
3646 | ||
956cd1d6 | 3647 | if (hi32.X_add_number == (offsetT) 0xffffffff) |
beae10d5 KH |
3648 | { |
3649 | if ((lo32.X_add_number & 0xffff8000) == 0xffff8000) | |
3650 | { | |
67c0d1eb | 3651 | macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16); |
beae10d5 KH |
3652 | return; |
3653 | } | |
3654 | if (lo32.X_add_number & 0x80000000) | |
3655 | { | |
67c0d1eb | 3656 | macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16); |
252b5132 | 3657 | if (lo32.X_add_number & 0xffff) |
67c0d1eb | 3658 | macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16); |
beae10d5 KH |
3659 | return; |
3660 | } | |
3661 | } | |
252b5132 RH |
3662 | |
3663 | /* Check for 16bit shifted constant. We know that hi32 is | |
3664 | non-zero, so start the mask on the first bit of the hi32 | |
3665 | value. */ | |
3666 | shift = 17; | |
3667 | do | |
beae10d5 KH |
3668 | { |
3669 | unsigned long himask, lomask; | |
3670 | ||
3671 | if (shift < 32) | |
3672 | { | |
3673 | himask = 0xffff >> (32 - shift); | |
3674 | lomask = (0xffff << shift) & 0xffffffff; | |
3675 | } | |
3676 | else | |
3677 | { | |
3678 | himask = 0xffff << (shift - 32); | |
3679 | lomask = 0; | |
3680 | } | |
3681 | if ((hi32.X_add_number & ~(offsetT) himask) == 0 | |
3682 | && (lo32.X_add_number & ~(offsetT) lomask) == 0) | |
3683 | { | |
3684 | expressionS tmp; | |
3685 | ||
3686 | tmp.X_op = O_constant; | |
3687 | if (shift < 32) | |
3688 | tmp.X_add_number = ((hi32.X_add_number << (32 - shift)) | |
3689 | | (lo32.X_add_number >> shift)); | |
3690 | else | |
3691 | tmp.X_add_number = hi32.X_add_number >> (shift - 32); | |
67c0d1eb RS |
3692 | macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16); |
3693 | macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<", | |
3694 | reg, reg, (shift >= 32) ? shift - 32 : shift); | |
beae10d5 KH |
3695 | return; |
3696 | } | |
f9419b05 | 3697 | ++shift; |
beae10d5 KH |
3698 | } |
3699 | while (shift <= (64 - 16)); | |
252b5132 RH |
3700 | |
3701 | /* Find the bit number of the lowest one bit, and store the | |
3702 | shifted value in hi/lo. */ | |
3703 | hi = (unsigned long) (hi32.X_add_number & 0xffffffff); | |
3704 | lo = (unsigned long) (lo32.X_add_number & 0xffffffff); | |
3705 | if (lo != 0) | |
3706 | { | |
3707 | bit = 0; | |
3708 | while ((lo & 1) == 0) | |
3709 | { | |
3710 | lo >>= 1; | |
3711 | ++bit; | |
3712 | } | |
3713 | lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit); | |
3714 | hi >>= bit; | |
3715 | } | |
3716 | else | |
3717 | { | |
3718 | bit = 32; | |
3719 | while ((hi & 1) == 0) | |
3720 | { | |
3721 | hi >>= 1; | |
3722 | ++bit; | |
3723 | } | |
3724 | lo = hi; | |
3725 | hi = 0; | |
3726 | } | |
3727 | ||
3728 | /* Optimize if the shifted value is a (power of 2) - 1. */ | |
3729 | if ((hi == 0 && ((lo + 1) & lo) == 0) | |
3730 | || (lo == 0xffffffff && ((hi + 1) & hi) == 0)) | |
beae10d5 KH |
3731 | { |
3732 | shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number); | |
252b5132 | 3733 | if (shift != 0) |
beae10d5 | 3734 | { |
252b5132 RH |
3735 | expressionS tmp; |
3736 | ||
3737 | /* This instruction will set the register to be all | |
3738 | ones. */ | |
beae10d5 KH |
3739 | tmp.X_op = O_constant; |
3740 | tmp.X_add_number = (offsetT) -1; | |
67c0d1eb | 3741 | macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16); |
beae10d5 KH |
3742 | if (bit != 0) |
3743 | { | |
3744 | bit += shift; | |
67c0d1eb RS |
3745 | macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<", |
3746 | reg, reg, (bit >= 32) ? bit - 32 : bit); | |
beae10d5 | 3747 | } |
67c0d1eb RS |
3748 | macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<", |
3749 | reg, reg, (shift >= 32) ? shift - 32 : shift); | |
beae10d5 KH |
3750 | return; |
3751 | } | |
3752 | } | |
252b5132 RH |
3753 | |
3754 | /* Sign extend hi32 before calling load_register, because we can | |
3755 | generally get better code when we load a sign extended value. */ | |
3756 | if ((hi32.X_add_number & 0x80000000) != 0) | |
beae10d5 | 3757 | hi32.X_add_number |= ~(offsetT) 0xffffffff; |
67c0d1eb | 3758 | load_register (reg, &hi32, 0); |
252b5132 RH |
3759 | freg = reg; |
3760 | } | |
3761 | if ((lo32.X_add_number & 0xffff0000) == 0) | |
3762 | { | |
3763 | if (freg != 0) | |
3764 | { | |
67c0d1eb | 3765 | macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0); |
252b5132 RH |
3766 | freg = reg; |
3767 | } | |
3768 | } | |
3769 | else | |
3770 | { | |
3771 | expressionS mid16; | |
3772 | ||
956cd1d6 | 3773 | if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff)) |
beae10d5 | 3774 | { |
67c0d1eb RS |
3775 | macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16); |
3776 | macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0); | |
beae10d5 KH |
3777 | return; |
3778 | } | |
252b5132 RH |
3779 | |
3780 | if (freg != 0) | |
3781 | { | |
67c0d1eb | 3782 | macro_build (NULL, "dsll", "d,w,<", reg, freg, 16); |
252b5132 RH |
3783 | freg = reg; |
3784 | } | |
3785 | mid16 = lo32; | |
3786 | mid16.X_add_number >>= 16; | |
67c0d1eb RS |
3787 | macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16); |
3788 | macro_build (NULL, "dsll", "d,w,<", reg, reg, 16); | |
252b5132 RH |
3789 | freg = reg; |
3790 | } | |
3791 | if ((lo32.X_add_number & 0xffff) != 0) | |
67c0d1eb | 3792 | macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16); |
252b5132 RH |
3793 | } |
3794 | ||
269137b2 TS |
3795 | static inline void |
3796 | load_delay_nop (void) | |
3797 | { | |
3798 | if (!gpr_interlocks) | |
3799 | macro_build (NULL, "nop", ""); | |
3800 | } | |
3801 | ||
252b5132 RH |
3802 | /* Load an address into a register. */ |
3803 | ||
3804 | static void | |
67c0d1eb | 3805 | load_address (int reg, expressionS *ep, int *used_at) |
252b5132 | 3806 | { |
252b5132 RH |
3807 | if (ep->X_op != O_constant |
3808 | && ep->X_op != O_symbol) | |
3809 | { | |
3810 | as_bad (_("expression too complex")); | |
3811 | ep->X_op = O_constant; | |
3812 | } | |
3813 | ||
3814 | if (ep->X_op == O_constant) | |
3815 | { | |
67c0d1eb | 3816 | load_register (reg, ep, HAVE_64BIT_ADDRESSES); |
252b5132 RH |
3817 | return; |
3818 | } | |
3819 | ||
3820 | if (mips_pic == NO_PIC) | |
3821 | { | |
3822 | /* If this is a reference to a GP relative symbol, we want | |
cdf6fd85 | 3823 | addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16) |
252b5132 RH |
3824 | Otherwise we want |
3825 | lui $reg,<sym> (BFD_RELOC_HI16_S) | |
3826 | addiu $reg,$reg,<sym> (BFD_RELOC_LO16) | |
d6bc6245 | 3827 | If we have an addend, we always use the latter form. |
76b3015f | 3828 | |
d6bc6245 TS |
3829 | With 64bit address space and a usable $at we want |
3830 | lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
3831 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
3832 | daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
3833 | daddiu $at,<sym> (BFD_RELOC_LO16) | |
3834 | dsll32 $reg,0 | |
3a482fd5 | 3835 | daddu $reg,$reg,$at |
76b3015f | 3836 | |
c03099e6 | 3837 | If $at is already in use, we use a path which is suboptimal |
d6bc6245 TS |
3838 | on superscalar processors. |
3839 | lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
3840 | daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
3841 | dsll $reg,16 | |
3842 | daddiu $reg,<sym> (BFD_RELOC_HI16_S) | |
3843 | dsll $reg,16 | |
3844 | daddiu $reg,<sym> (BFD_RELOC_LO16) | |
3845 | */ | |
c9914766 | 3846 | if (HAVE_64BIT_ADDRESSES) |
d6bc6245 | 3847 | { |
e864ceca RS |
3848 | /* ??? We don't provide a GP-relative alternative for these macros. |
3849 | It used not to be possible with the original relaxation code, | |
3850 | but it could be done now. */ | |
d6bc6245 | 3851 | |
460597ba | 3852 | if (*used_at == 0 && ! mips_opts.noat) |
d6bc6245 | 3853 | { |
67c0d1eb RS |
3854 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST); |
3855 | macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S); | |
3856 | macro_build (ep, "daddiu", "t,r,j", reg, reg, | |
3857 | BFD_RELOC_MIPS_HIGHER); | |
3858 | macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16); | |
3859 | macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0); | |
3860 | macro_build (NULL, "daddu", "d,v,t", reg, reg, AT); | |
d6bc6245 TS |
3861 | *used_at = 1; |
3862 | } | |
3863 | else | |
3864 | { | |
67c0d1eb RS |
3865 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST); |
3866 | macro_build (ep, "daddiu", "t,r,j", reg, reg, | |
3867 | BFD_RELOC_MIPS_HIGHER); | |
3868 | macro_build (NULL, "dsll", "d,w,<", reg, reg, 16); | |
3869 | macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S); | |
3870 | macro_build (NULL, "dsll", "d,w,<", reg, reg, 16); | |
3871 | macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16); | |
d6bc6245 TS |
3872 | } |
3873 | } | |
252b5132 RH |
3874 | else |
3875 | { | |
d6bc6245 TS |
3876 | if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET |
3877 | && ! nopic_need_relax (ep->X_add_symbol, 1)) | |
3878 | { | |
4d7206a2 | 3879 | relax_start (ep->X_add_symbol); |
67c0d1eb | 3880 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, |
17a2f251 | 3881 | mips_gp_register, BFD_RELOC_GPREL16); |
4d7206a2 | 3882 | relax_switch (); |
d6bc6245 | 3883 | } |
67c0d1eb RS |
3884 | macro_build_lui (ep, reg); |
3885 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", | |
3886 | reg, reg, BFD_RELOC_LO16); | |
4d7206a2 RS |
3887 | if (mips_relax.sequence) |
3888 | relax_end (); | |
d6bc6245 | 3889 | } |
252b5132 RH |
3890 | } |
3891 | else if (mips_pic == SVR4_PIC && ! mips_big_got) | |
3892 | { | |
3893 | expressionS ex; | |
3894 | ||
3895 | /* If this is a reference to an external symbol, we want | |
3896 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
3897 | Otherwise we want | |
3898 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
3899 | nop | |
3900 | addiu $reg,$reg,<sym> (BFD_RELOC_LO16) | |
f5040a92 AO |
3901 | If there is a constant, it must be added in after. |
3902 | ||
ed6fb7bd | 3903 | If we have NewABI, we want |
f5040a92 AO |
3904 | lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP) |
3905 | unless we're referencing a global symbol with a non-zero | |
3906 | offset, in which case cst must be added separately. */ | |
ed6fb7bd SC |
3907 | if (HAVE_NEWABI) |
3908 | { | |
f5040a92 AO |
3909 | if (ep->X_add_number) |
3910 | { | |
4d7206a2 | 3911 | ex.X_add_number = ep->X_add_number; |
f5040a92 | 3912 | ep->X_add_number = 0; |
4d7206a2 | 3913 | relax_start (ep->X_add_symbol); |
67c0d1eb RS |
3914 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
3915 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
f5040a92 AO |
3916 | if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000) |
3917 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
3918 | ex.X_op = O_constant; | |
67c0d1eb | 3919 | macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", |
17a2f251 | 3920 | reg, reg, BFD_RELOC_LO16); |
f5040a92 | 3921 | ep->X_add_number = ex.X_add_number; |
4d7206a2 | 3922 | relax_switch (); |
f5040a92 | 3923 | } |
67c0d1eb | 3924 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
17a2f251 | 3925 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); |
4d7206a2 RS |
3926 | if (mips_relax.sequence) |
3927 | relax_end (); | |
ed6fb7bd SC |
3928 | } |
3929 | else | |
3930 | { | |
f5040a92 AO |
3931 | ex.X_add_number = ep->X_add_number; |
3932 | ep->X_add_number = 0; | |
67c0d1eb RS |
3933 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
3934 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
269137b2 | 3935 | load_delay_nop (); |
4d7206a2 RS |
3936 | relax_start (ep->X_add_symbol); |
3937 | relax_switch (); | |
67c0d1eb | 3938 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
17a2f251 | 3939 | BFD_RELOC_LO16); |
4d7206a2 | 3940 | relax_end (); |
ed6fb7bd | 3941 | |
f5040a92 AO |
3942 | if (ex.X_add_number != 0) |
3943 | { | |
3944 | if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000) | |
3945 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
3946 | ex.X_op = O_constant; | |
67c0d1eb | 3947 | macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", |
17a2f251 | 3948 | reg, reg, BFD_RELOC_LO16); |
f5040a92 | 3949 | } |
252b5132 RH |
3950 | } |
3951 | } | |
3952 | else if (mips_pic == SVR4_PIC) | |
3953 | { | |
3954 | expressionS ex; | |
252b5132 RH |
3955 | |
3956 | /* This is the large GOT case. If this is a reference to an | |
3957 | external symbol, we want | |
3958 | lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
3959 | addu $reg,$reg,$gp | |
3960 | lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16) | |
f5040a92 AO |
3961 | |
3962 | Otherwise, for a reference to a local symbol in old ABI, we want | |
252b5132 RH |
3963 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) |
3964 | nop | |
3965 | addiu $reg,$reg,<sym> (BFD_RELOC_LO16) | |
684022ea | 3966 | If there is a constant, it must be added in after. |
f5040a92 AO |
3967 | |
3968 | In the NewABI, for local symbols, with or without offsets, we want: | |
438c16b8 TS |
3969 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE) |
3970 | addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST) | |
f5040a92 | 3971 | */ |
438c16b8 TS |
3972 | if (HAVE_NEWABI) |
3973 | { | |
4d7206a2 | 3974 | ex.X_add_number = ep->X_add_number; |
f5040a92 | 3975 | ep->X_add_number = 0; |
4d7206a2 | 3976 | relax_start (ep->X_add_symbol); |
67c0d1eb RS |
3977 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16); |
3978 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
3979 | reg, reg, mips_gp_register); | |
3980 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", | |
3981 | reg, BFD_RELOC_MIPS_GOT_LO16, reg); | |
f5040a92 AO |
3982 | if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000) |
3983 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
3984 | else if (ex.X_add_number) | |
3985 | { | |
3986 | ex.X_op = O_constant; | |
67c0d1eb RS |
3987 | macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
3988 | BFD_RELOC_LO16); | |
f5040a92 AO |
3989 | } |
3990 | ||
3991 | ep->X_add_number = ex.X_add_number; | |
4d7206a2 | 3992 | relax_switch (); |
67c0d1eb | 3993 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
17a2f251 | 3994 | BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register); |
67c0d1eb RS |
3995 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
3996 | BFD_RELOC_MIPS_GOT_OFST); | |
4d7206a2 | 3997 | relax_end (); |
438c16b8 | 3998 | } |
252b5132 | 3999 | else |
438c16b8 | 4000 | { |
f5040a92 AO |
4001 | ex.X_add_number = ep->X_add_number; |
4002 | ep->X_add_number = 0; | |
4d7206a2 | 4003 | relax_start (ep->X_add_symbol); |
67c0d1eb RS |
4004 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16); |
4005 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
4006 | reg, reg, mips_gp_register); | |
4007 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", | |
4008 | reg, BFD_RELOC_MIPS_GOT_LO16, reg); | |
4d7206a2 RS |
4009 | relax_switch (); |
4010 | if (reg_needs_delay (mips_gp_register)) | |
438c16b8 TS |
4011 | { |
4012 | /* We need a nop before loading from $gp. This special | |
4013 | check is required because the lui which starts the main | |
4014 | instruction stream does not refer to $gp, and so will not | |
4015 | insert the nop which may be required. */ | |
67c0d1eb | 4016 | macro_build (NULL, "nop", ""); |
438c16b8 | 4017 | } |
67c0d1eb | 4018 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
17a2f251 | 4019 | BFD_RELOC_MIPS_GOT16, mips_gp_register); |
269137b2 | 4020 | load_delay_nop (); |
67c0d1eb | 4021 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
17a2f251 | 4022 | BFD_RELOC_LO16); |
4d7206a2 | 4023 | relax_end (); |
438c16b8 | 4024 | |
f5040a92 AO |
4025 | if (ex.X_add_number != 0) |
4026 | { | |
4027 | if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000) | |
4028 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
4029 | ex.X_op = O_constant; | |
67c0d1eb RS |
4030 | macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
4031 | BFD_RELOC_LO16); | |
f5040a92 | 4032 | } |
252b5132 RH |
4033 | } |
4034 | } | |
252b5132 RH |
4035 | else |
4036 | abort (); | |
4037 | } | |
4038 | ||
ea1fb5dc RS |
4039 | /* Move the contents of register SOURCE into register DEST. */ |
4040 | ||
4041 | static void | |
67c0d1eb | 4042 | move_register (int dest, int source) |
ea1fb5dc | 4043 | { |
67c0d1eb RS |
4044 | macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t", |
4045 | dest, source, 0); | |
ea1fb5dc RS |
4046 | } |
4047 | ||
4d7206a2 | 4048 | /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where |
f6a22291 MR |
4049 | LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement. |
4050 | The two alternatives are: | |
4d7206a2 RS |
4051 | |
4052 | Global symbol Local sybmol | |
4053 | ------------- ------------ | |
4054 | lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET) | |
4055 | ... ... | |
4056 | addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET) | |
4057 | ||
4058 | load_got_offset emits the first instruction and add_got_offset | |
f6a22291 MR |
4059 | emits the second for a 16-bit offset or add_got_offset_hilo emits |
4060 | a sequence to add a 32-bit offset using a scratch register. */ | |
4d7206a2 RS |
4061 | |
4062 | static void | |
67c0d1eb | 4063 | load_got_offset (int dest, expressionS *local) |
4d7206a2 RS |
4064 | { |
4065 | expressionS global; | |
4066 | ||
4067 | global = *local; | |
4068 | global.X_add_number = 0; | |
4069 | ||
4070 | relax_start (local->X_add_symbol); | |
67c0d1eb RS |
4071 | macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest, |
4072 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
4d7206a2 | 4073 | relax_switch (); |
67c0d1eb RS |
4074 | macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest, |
4075 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
4d7206a2 RS |
4076 | relax_end (); |
4077 | } | |
4078 | ||
4079 | static void | |
67c0d1eb | 4080 | add_got_offset (int dest, expressionS *local) |
4d7206a2 RS |
4081 | { |
4082 | expressionS global; | |
4083 | ||
4084 | global.X_op = O_constant; | |
4085 | global.X_op_symbol = NULL; | |
4086 | global.X_add_symbol = NULL; | |
4087 | global.X_add_number = local->X_add_number; | |
4088 | ||
4089 | relax_start (local->X_add_symbol); | |
67c0d1eb | 4090 | macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j", |
4d7206a2 RS |
4091 | dest, dest, BFD_RELOC_LO16); |
4092 | relax_switch (); | |
67c0d1eb | 4093 | macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16); |
4d7206a2 RS |
4094 | relax_end (); |
4095 | } | |
4096 | ||
f6a22291 MR |
4097 | static void |
4098 | add_got_offset_hilo (int dest, expressionS *local, int tmp) | |
4099 | { | |
4100 | expressionS global; | |
4101 | int hold_mips_optimize; | |
4102 | ||
4103 | global.X_op = O_constant; | |
4104 | global.X_op_symbol = NULL; | |
4105 | global.X_add_symbol = NULL; | |
4106 | global.X_add_number = local->X_add_number; | |
4107 | ||
4108 | relax_start (local->X_add_symbol); | |
4109 | load_register (tmp, &global, HAVE_64BIT_ADDRESSES); | |
4110 | relax_switch (); | |
4111 | /* Set mips_optimize around the lui instruction to avoid | |
4112 | inserting an unnecessary nop after the lw. */ | |
4113 | hold_mips_optimize = mips_optimize; | |
4114 | mips_optimize = 2; | |
4115 | macro_build_lui (&global, tmp); | |
4116 | mips_optimize = hold_mips_optimize; | |
4117 | macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16); | |
4118 | relax_end (); | |
4119 | ||
4120 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp); | |
4121 | } | |
4122 | ||
252b5132 RH |
4123 | /* |
4124 | * Build macros | |
4125 | * This routine implements the seemingly endless macro or synthesized | |
4126 | * instructions and addressing modes in the mips assembly language. Many | |
4127 | * of these macros are simple and are similar to each other. These could | |
67c1ffbe | 4128 | * probably be handled by some kind of table or grammar approach instead of |
252b5132 RH |
4129 | * this verbose method. Others are not simple macros but are more like |
4130 | * optimizing code generation. | |
4131 | * One interesting optimization is when several store macros appear | |
67c1ffbe | 4132 | * consecutively that would load AT with the upper half of the same address. |
252b5132 RH |
4133 | * The ensuing load upper instructions are ommited. This implies some kind |
4134 | * of global optimization. We currently only optimize within a single macro. | |
4135 | * For many of the load and store macros if the address is specified as a | |
4136 | * constant expression in the first 64k of memory (ie ld $2,0x4000c) we | |
4137 | * first load register 'at' with zero and use it as the base register. The | |
4138 | * mips assembler simply uses register $zero. Just one tiny optimization | |
4139 | * we're missing. | |
4140 | */ | |
4141 | static void | |
17a2f251 | 4142 | macro (struct mips_cl_insn *ip) |
252b5132 RH |
4143 | { |
4144 | register int treg, sreg, dreg, breg; | |
4145 | int tempreg; | |
4146 | int mask; | |
43841e91 | 4147 | int used_at = 0; |
252b5132 RH |
4148 | expressionS expr1; |
4149 | const char *s; | |
4150 | const char *s2; | |
4151 | const char *fmt; | |
4152 | int likely = 0; | |
4153 | int dbl = 0; | |
4154 | int coproc = 0; | |
4155 | int lr = 0; | |
4156 | int imm = 0; | |
1abe91b1 | 4157 | int call = 0; |
252b5132 | 4158 | int off; |
67c0d1eb | 4159 | offsetT maxnum; |
252b5132 | 4160 | bfd_reloc_code_real_type r; |
252b5132 RH |
4161 | int hold_mips_optimize; |
4162 | ||
4163 | assert (! mips_opts.mips16); | |
4164 | ||
4165 | treg = (ip->insn_opcode >> 16) & 0x1f; | |
4166 | dreg = (ip->insn_opcode >> 11) & 0x1f; | |
4167 | sreg = breg = (ip->insn_opcode >> 21) & 0x1f; | |
4168 | mask = ip->insn_mo->mask; | |
4169 | ||
4170 | expr1.X_op = O_constant; | |
4171 | expr1.X_op_symbol = NULL; | |
4172 | expr1.X_add_symbol = NULL; | |
4173 | expr1.X_add_number = 1; | |
4174 | ||
4175 | switch (mask) | |
4176 | { | |
4177 | case M_DABS: | |
4178 | dbl = 1; | |
4179 | case M_ABS: | |
4180 | /* bgez $a0,.+12 | |
4181 | move v0,$a0 | |
4182 | sub v0,$zero,$a0 | |
4183 | */ | |
4184 | ||
b34976b6 | 4185 | mips_emit_delays (TRUE); |
252b5132 RH |
4186 | ++mips_opts.noreorder; |
4187 | mips_any_noreorder = 1; | |
4188 | ||
4189 | expr1.X_add_number = 8; | |
67c0d1eb | 4190 | macro_build (&expr1, "bgez", "s,p", sreg); |
252b5132 | 4191 | if (dreg == sreg) |
67c0d1eb | 4192 | macro_build (NULL, "nop", "", 0); |
252b5132 | 4193 | else |
67c0d1eb RS |
4194 | move_register (dreg, sreg); |
4195 | macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg); | |
252b5132 RH |
4196 | |
4197 | --mips_opts.noreorder; | |
4198 | return; | |
4199 | ||
4200 | case M_ADD_I: | |
4201 | s = "addi"; | |
4202 | s2 = "add"; | |
4203 | goto do_addi; | |
4204 | case M_ADDU_I: | |
4205 | s = "addiu"; | |
4206 | s2 = "addu"; | |
4207 | goto do_addi; | |
4208 | case M_DADD_I: | |
4209 | dbl = 1; | |
4210 | s = "daddi"; | |
4211 | s2 = "dadd"; | |
4212 | goto do_addi; | |
4213 | case M_DADDU_I: | |
4214 | dbl = 1; | |
4215 | s = "daddiu"; | |
4216 | s2 = "daddu"; | |
4217 | do_addi: | |
4218 | if (imm_expr.X_op == O_constant | |
4219 | && imm_expr.X_add_number >= -0x8000 | |
4220 | && imm_expr.X_add_number < 0x8000) | |
4221 | { | |
67c0d1eb | 4222 | macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
4223 | return; |
4224 | } | |
67c0d1eb RS |
4225 | load_register (AT, &imm_expr, dbl); |
4226 | macro_build (NULL, s2, "d,v,t", treg, sreg, AT); | |
252b5132 RH |
4227 | break; |
4228 | ||
4229 | case M_AND_I: | |
4230 | s = "andi"; | |
4231 | s2 = "and"; | |
4232 | goto do_bit; | |
4233 | case M_OR_I: | |
4234 | s = "ori"; | |
4235 | s2 = "or"; | |
4236 | goto do_bit; | |
4237 | case M_NOR_I: | |
4238 | s = ""; | |
4239 | s2 = "nor"; | |
4240 | goto do_bit; | |
4241 | case M_XOR_I: | |
4242 | s = "xori"; | |
4243 | s2 = "xor"; | |
4244 | do_bit: | |
4245 | if (imm_expr.X_op == O_constant | |
4246 | && imm_expr.X_add_number >= 0 | |
4247 | && imm_expr.X_add_number < 0x10000) | |
4248 | { | |
4249 | if (mask != M_NOR_I) | |
67c0d1eb | 4250 | macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
4251 | else |
4252 | { | |
67c0d1eb RS |
4253 | macro_build (&imm_expr, "ori", "t,r,i", |
4254 | treg, sreg, BFD_RELOC_LO16); | |
4255 | macro_build (NULL, "nor", "d,v,t", treg, treg, 0); | |
252b5132 RH |
4256 | } |
4257 | return; | |
4258 | } | |
4259 | ||
67c0d1eb RS |
4260 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
4261 | macro_build (NULL, s2, "d,v,t", treg, sreg, AT); | |
252b5132 RH |
4262 | break; |
4263 | ||
4264 | case M_BEQ_I: | |
4265 | s = "beq"; | |
4266 | goto beq_i; | |
4267 | case M_BEQL_I: | |
4268 | s = "beql"; | |
4269 | likely = 1; | |
4270 | goto beq_i; | |
4271 | case M_BNE_I: | |
4272 | s = "bne"; | |
4273 | goto beq_i; | |
4274 | case M_BNEL_I: | |
4275 | s = "bnel"; | |
4276 | likely = 1; | |
4277 | beq_i: | |
4278 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
4279 | { | |
67c0d1eb | 4280 | macro_build (&offset_expr, s, "s,t,p", sreg, 0); |
252b5132 RH |
4281 | return; |
4282 | } | |
67c0d1eb RS |
4283 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
4284 | macro_build (&offset_expr, s, "s,t,p", sreg, AT); | |
252b5132 RH |
4285 | break; |
4286 | ||
4287 | case M_BGEL: | |
4288 | likely = 1; | |
4289 | case M_BGE: | |
4290 | if (treg == 0) | |
4291 | { | |
67c0d1eb | 4292 | macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg); |
252b5132 RH |
4293 | return; |
4294 | } | |
4295 | if (sreg == 0) | |
4296 | { | |
67c0d1eb | 4297 | macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg); |
252b5132 RH |
4298 | return; |
4299 | } | |
67c0d1eb RS |
4300 | macro_build (NULL, "slt", "d,v,t", AT, sreg, treg); |
4301 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4302 | break; |
4303 | ||
4304 | case M_BGTL_I: | |
4305 | likely = 1; | |
4306 | case M_BGT_I: | |
4307 | /* check for > max integer */ | |
4308 | maxnum = 0x7fffffff; | |
ca4e0257 | 4309 | if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4) |
252b5132 RH |
4310 | { |
4311 | maxnum <<= 16; | |
4312 | maxnum |= 0xffff; | |
4313 | maxnum <<= 16; | |
4314 | maxnum |= 0xffff; | |
4315 | } | |
4316 | if (imm_expr.X_op == O_constant | |
4317 | && imm_expr.X_add_number >= maxnum | |
ca4e0257 | 4318 | && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4)) |
252b5132 RH |
4319 | { |
4320 | do_false: | |
4321 | /* result is always false */ | |
4322 | if (! likely) | |
67c0d1eb | 4323 | macro_build (NULL, "nop", "", 0); |
252b5132 | 4324 | else |
67c0d1eb | 4325 | macro_build (&offset_expr, "bnel", "s,t,p", 0, 0); |
252b5132 RH |
4326 | return; |
4327 | } | |
4328 | if (imm_expr.X_op != O_constant) | |
4329 | as_bad (_("Unsupported large constant")); | |
f9419b05 | 4330 | ++imm_expr.X_add_number; |
252b5132 RH |
4331 | /* FALLTHROUGH */ |
4332 | case M_BGE_I: | |
4333 | case M_BGEL_I: | |
4334 | if (mask == M_BGEL_I) | |
4335 | likely = 1; | |
4336 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
4337 | { | |
67c0d1eb | 4338 | macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg); |
252b5132 RH |
4339 | return; |
4340 | } | |
4341 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
4342 | { | |
67c0d1eb | 4343 | macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg); |
252b5132 RH |
4344 | return; |
4345 | } | |
4346 | maxnum = 0x7fffffff; | |
ca4e0257 | 4347 | if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4) |
252b5132 RH |
4348 | { |
4349 | maxnum <<= 16; | |
4350 | maxnum |= 0xffff; | |
4351 | maxnum <<= 16; | |
4352 | maxnum |= 0xffff; | |
4353 | } | |
4354 | maxnum = - maxnum - 1; | |
4355 | if (imm_expr.X_op == O_constant | |
4356 | && imm_expr.X_add_number <= maxnum | |
ca4e0257 | 4357 | && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4)) |
252b5132 RH |
4358 | { |
4359 | do_true: | |
4360 | /* result is always true */ | |
4361 | as_warn (_("Branch %s is always true"), ip->insn_mo->name); | |
67c0d1eb | 4362 | macro_build (&offset_expr, "b", "p"); |
252b5132 RH |
4363 | return; |
4364 | } | |
67c0d1eb RS |
4365 | set_at (sreg, 0); |
4366 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4367 | break; |
4368 | ||
4369 | case M_BGEUL: | |
4370 | likely = 1; | |
4371 | case M_BGEU: | |
4372 | if (treg == 0) | |
4373 | goto do_true; | |
4374 | if (sreg == 0) | |
4375 | { | |
67c0d1eb | 4376 | macro_build (&offset_expr, likely ? "beql" : "beq", |
17a2f251 | 4377 | "s,t,p", 0, treg); |
252b5132 RH |
4378 | return; |
4379 | } | |
67c0d1eb RS |
4380 | macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg); |
4381 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4382 | break; |
4383 | ||
4384 | case M_BGTUL_I: | |
4385 | likely = 1; | |
4386 | case M_BGTU_I: | |
4387 | if (sreg == 0 | |
ca4e0257 | 4388 | || (HAVE_32BIT_GPRS |
252b5132 | 4389 | && imm_expr.X_op == O_constant |
956cd1d6 | 4390 | && imm_expr.X_add_number == (offsetT) 0xffffffff)) |
252b5132 RH |
4391 | goto do_false; |
4392 | if (imm_expr.X_op != O_constant) | |
4393 | as_bad (_("Unsupported large constant")); | |
f9419b05 | 4394 | ++imm_expr.X_add_number; |
252b5132 RH |
4395 | /* FALLTHROUGH */ |
4396 | case M_BGEU_I: | |
4397 | case M_BGEUL_I: | |
4398 | if (mask == M_BGEUL_I) | |
4399 | likely = 1; | |
4400 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
4401 | goto do_true; | |
4402 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
4403 | { | |
67c0d1eb | 4404 | macro_build (&offset_expr, likely ? "bnel" : "bne", |
17a2f251 | 4405 | "s,t,p", sreg, 0); |
252b5132 RH |
4406 | return; |
4407 | } | |
67c0d1eb RS |
4408 | set_at (sreg, 1); |
4409 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4410 | break; |
4411 | ||
4412 | case M_BGTL: | |
4413 | likely = 1; | |
4414 | case M_BGT: | |
4415 | if (treg == 0) | |
4416 | { | |
67c0d1eb | 4417 | macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg); |
252b5132 RH |
4418 | return; |
4419 | } | |
4420 | if (sreg == 0) | |
4421 | { | |
67c0d1eb | 4422 | macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg); |
252b5132 RH |
4423 | return; |
4424 | } | |
67c0d1eb RS |
4425 | macro_build (NULL, "slt", "d,v,t", AT, treg, sreg); |
4426 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
4427 | break; |
4428 | ||
4429 | case M_BGTUL: | |
4430 | likely = 1; | |
4431 | case M_BGTU: | |
4432 | if (treg == 0) | |
4433 | { | |
67c0d1eb | 4434 | macro_build (&offset_expr, likely ? "bnel" : "bne", |
17a2f251 | 4435 | "s,t,p", sreg, 0); |
252b5132 RH |
4436 | return; |
4437 | } | |
4438 | if (sreg == 0) | |
4439 | goto do_false; | |
67c0d1eb RS |
4440 | macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg); |
4441 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
4442 | break; |
4443 | ||
4444 | case M_BLEL: | |
4445 | likely = 1; | |
4446 | case M_BLE: | |
4447 | if (treg == 0) | |
4448 | { | |
67c0d1eb | 4449 | macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg); |
252b5132 RH |
4450 | return; |
4451 | } | |
4452 | if (sreg == 0) | |
4453 | { | |
67c0d1eb | 4454 | macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg); |
252b5132 RH |
4455 | return; |
4456 | } | |
67c0d1eb RS |
4457 | macro_build (NULL, "slt", "d,v,t", AT, treg, sreg); |
4458 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4459 | break; |
4460 | ||
4461 | case M_BLEL_I: | |
4462 | likely = 1; | |
4463 | case M_BLE_I: | |
4464 | maxnum = 0x7fffffff; | |
ca4e0257 | 4465 | if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4) |
252b5132 RH |
4466 | { |
4467 | maxnum <<= 16; | |
4468 | maxnum |= 0xffff; | |
4469 | maxnum <<= 16; | |
4470 | maxnum |= 0xffff; | |
4471 | } | |
4472 | if (imm_expr.X_op == O_constant | |
4473 | && imm_expr.X_add_number >= maxnum | |
ca4e0257 | 4474 | && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4)) |
252b5132 RH |
4475 | goto do_true; |
4476 | if (imm_expr.X_op != O_constant) | |
4477 | as_bad (_("Unsupported large constant")); | |
f9419b05 | 4478 | ++imm_expr.X_add_number; |
252b5132 RH |
4479 | /* FALLTHROUGH */ |
4480 | case M_BLT_I: | |
4481 | case M_BLTL_I: | |
4482 | if (mask == M_BLTL_I) | |
4483 | likely = 1; | |
4484 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
4485 | { | |
67c0d1eb | 4486 | macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg); |
252b5132 RH |
4487 | return; |
4488 | } | |
4489 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
4490 | { | |
67c0d1eb | 4491 | macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg); |
252b5132 RH |
4492 | return; |
4493 | } | |
67c0d1eb RS |
4494 | set_at (sreg, 0); |
4495 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
4496 | break; |
4497 | ||
4498 | case M_BLEUL: | |
4499 | likely = 1; | |
4500 | case M_BLEU: | |
4501 | if (treg == 0) | |
4502 | { | |
67c0d1eb | 4503 | macro_build (&offset_expr, likely ? "beql" : "beq", |
17a2f251 | 4504 | "s,t,p", sreg, 0); |
252b5132 RH |
4505 | return; |
4506 | } | |
4507 | if (sreg == 0) | |
4508 | goto do_true; | |
67c0d1eb RS |
4509 | macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg); |
4510 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4511 | break; |
4512 | ||
4513 | case M_BLEUL_I: | |
4514 | likely = 1; | |
4515 | case M_BLEU_I: | |
4516 | if (sreg == 0 | |
ca4e0257 | 4517 | || (HAVE_32BIT_GPRS |
252b5132 | 4518 | && imm_expr.X_op == O_constant |
956cd1d6 | 4519 | && imm_expr.X_add_number == (offsetT) 0xffffffff)) |
252b5132 RH |
4520 | goto do_true; |
4521 | if (imm_expr.X_op != O_constant) | |
4522 | as_bad (_("Unsupported large constant")); | |
f9419b05 | 4523 | ++imm_expr.X_add_number; |
252b5132 RH |
4524 | /* FALLTHROUGH */ |
4525 | case M_BLTU_I: | |
4526 | case M_BLTUL_I: | |
4527 | if (mask == M_BLTUL_I) | |
4528 | likely = 1; | |
4529 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
4530 | goto do_false; | |
4531 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
4532 | { | |
67c0d1eb | 4533 | macro_build (&offset_expr, likely ? "beql" : "beq", |
252b5132 RH |
4534 | "s,t,p", sreg, 0); |
4535 | return; | |
4536 | } | |
67c0d1eb RS |
4537 | set_at (sreg, 1); |
4538 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
4539 | break; |
4540 | ||
4541 | case M_BLTL: | |
4542 | likely = 1; | |
4543 | case M_BLT: | |
4544 | if (treg == 0) | |
4545 | { | |
67c0d1eb | 4546 | macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg); |
252b5132 RH |
4547 | return; |
4548 | } | |
4549 | if (sreg == 0) | |
4550 | { | |
67c0d1eb | 4551 | macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg); |
252b5132 RH |
4552 | return; |
4553 | } | |
67c0d1eb RS |
4554 | macro_build (NULL, "slt", "d,v,t", AT, sreg, treg); |
4555 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
4556 | break; |
4557 | ||
4558 | case M_BLTUL: | |
4559 | likely = 1; | |
4560 | case M_BLTU: | |
4561 | if (treg == 0) | |
4562 | goto do_false; | |
4563 | if (sreg == 0) | |
4564 | { | |
67c0d1eb | 4565 | macro_build (&offset_expr, likely ? "bnel" : "bne", |
17a2f251 | 4566 | "s,t,p", 0, treg); |
252b5132 RH |
4567 | return; |
4568 | } | |
67c0d1eb RS |
4569 | macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg); |
4570 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
4571 | break; |
4572 | ||
5f74bc13 CD |
4573 | case M_DEXT: |
4574 | { | |
4575 | unsigned long pos; | |
4576 | unsigned long size; | |
4577 | ||
4578 | if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant) | |
4579 | { | |
4580 | as_bad (_("Unsupported large constant")); | |
4581 | pos = size = 1; | |
4582 | } | |
4583 | else | |
4584 | { | |
4585 | pos = (unsigned long) imm_expr.X_add_number; | |
4586 | size = (unsigned long) imm2_expr.X_add_number; | |
4587 | } | |
4588 | ||
4589 | if (pos > 63) | |
4590 | { | |
4591 | as_bad (_("Improper position (%lu)"), pos); | |
4592 | pos = 1; | |
4593 | } | |
4594 | if (size == 0 || size > 64 | |
4595 | || (pos + size - 1) > 63) | |
4596 | { | |
4597 | as_bad (_("Improper extract size (%lu, position %lu)"), | |
4598 | size, pos); | |
4599 | size = 1; | |
4600 | } | |
4601 | ||
4602 | if (size <= 32 && pos < 32) | |
4603 | { | |
4604 | s = "dext"; | |
4605 | fmt = "t,r,+A,+C"; | |
4606 | } | |
4607 | else if (size <= 32) | |
4608 | { | |
4609 | s = "dextu"; | |
4610 | fmt = "t,r,+E,+H"; | |
4611 | } | |
4612 | else | |
4613 | { | |
4614 | s = "dextm"; | |
4615 | fmt = "t,r,+A,+G"; | |
4616 | } | |
67c0d1eb | 4617 | macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1); |
5f74bc13 CD |
4618 | } |
4619 | return; | |
4620 | ||
4621 | case M_DINS: | |
4622 | { | |
4623 | unsigned long pos; | |
4624 | unsigned long size; | |
4625 | ||
4626 | if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant) | |
4627 | { | |
4628 | as_bad (_("Unsupported large constant")); | |
4629 | pos = size = 1; | |
4630 | } | |
4631 | else | |
4632 | { | |
4633 | pos = (unsigned long) imm_expr.X_add_number; | |
4634 | size = (unsigned long) imm2_expr.X_add_number; | |
4635 | } | |
4636 | ||
4637 | if (pos > 63) | |
4638 | { | |
4639 | as_bad (_("Improper position (%lu)"), pos); | |
4640 | pos = 1; | |
4641 | } | |
4642 | if (size == 0 || size > 64 | |
4643 | || (pos + size - 1) > 63) | |
4644 | { | |
4645 | as_bad (_("Improper insert size (%lu, position %lu)"), | |
4646 | size, pos); | |
4647 | size = 1; | |
4648 | } | |
4649 | ||
4650 | if (pos < 32 && (pos + size - 1) < 32) | |
4651 | { | |
4652 | s = "dins"; | |
4653 | fmt = "t,r,+A,+B"; | |
4654 | } | |
4655 | else if (pos >= 32) | |
4656 | { | |
4657 | s = "dinsu"; | |
4658 | fmt = "t,r,+E,+F"; | |
4659 | } | |
4660 | else | |
4661 | { | |
4662 | s = "dinsm"; | |
4663 | fmt = "t,r,+A,+F"; | |
4664 | } | |
67c0d1eb RS |
4665 | macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, |
4666 | pos + size - 1); | |
5f74bc13 CD |
4667 | } |
4668 | return; | |
4669 | ||
252b5132 RH |
4670 | case M_DDIV_3: |
4671 | dbl = 1; | |
4672 | case M_DIV_3: | |
4673 | s = "mflo"; | |
4674 | goto do_div3; | |
4675 | case M_DREM_3: | |
4676 | dbl = 1; | |
4677 | case M_REM_3: | |
4678 | s = "mfhi"; | |
4679 | do_div3: | |
4680 | if (treg == 0) | |
4681 | { | |
4682 | as_warn (_("Divide by zero.")); | |
4683 | if (mips_trap) | |
67c0d1eb | 4684 | macro_build (NULL, "teq", "s,t,q", 0, 0, 7); |
252b5132 | 4685 | else |
67c0d1eb | 4686 | macro_build (NULL, "break", "c", 7); |
252b5132 RH |
4687 | return; |
4688 | } | |
4689 | ||
b34976b6 | 4690 | mips_emit_delays (TRUE); |
252b5132 RH |
4691 | ++mips_opts.noreorder; |
4692 | mips_any_noreorder = 1; | |
4693 | if (mips_trap) | |
4694 | { | |
67c0d1eb RS |
4695 | macro_build (NULL, "teq", "s,t,q", treg, 0, 7); |
4696 | macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg); | |
252b5132 RH |
4697 | } |
4698 | else | |
4699 | { | |
4700 | expr1.X_add_number = 8; | |
67c0d1eb RS |
4701 | macro_build (&expr1, "bne", "s,t,p", treg, 0); |
4702 | macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg); | |
4703 | macro_build (NULL, "break", "c", 7); | |
252b5132 RH |
4704 | } |
4705 | expr1.X_add_number = -1; | |
f6a22291 | 4706 | load_register (AT, &expr1, dbl); |
252b5132 | 4707 | expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16); |
67c0d1eb | 4708 | macro_build (&expr1, "bne", "s,t,p", treg, AT); |
252b5132 RH |
4709 | if (dbl) |
4710 | { | |
4711 | expr1.X_add_number = 1; | |
f6a22291 | 4712 | load_register (AT, &expr1, dbl); |
67c0d1eb | 4713 | macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31); |
252b5132 RH |
4714 | } |
4715 | else | |
4716 | { | |
4717 | expr1.X_add_number = 0x80000000; | |
67c0d1eb | 4718 | macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16); |
252b5132 RH |
4719 | } |
4720 | if (mips_trap) | |
4721 | { | |
67c0d1eb | 4722 | macro_build (NULL, "teq", "s,t,q", sreg, AT, 6); |
252b5132 RH |
4723 | /* We want to close the noreorder block as soon as possible, so |
4724 | that later insns are available for delay slot filling. */ | |
4725 | --mips_opts.noreorder; | |
4726 | } | |
4727 | else | |
4728 | { | |
4729 | expr1.X_add_number = 8; | |
67c0d1eb RS |
4730 | macro_build (&expr1, "bne", "s,t,p", sreg, AT); |
4731 | macro_build (NULL, "nop", "", 0); | |
252b5132 RH |
4732 | |
4733 | /* We want to close the noreorder block as soon as possible, so | |
4734 | that later insns are available for delay slot filling. */ | |
4735 | --mips_opts.noreorder; | |
4736 | ||
67c0d1eb | 4737 | macro_build (NULL, "break", "c", 6); |
252b5132 | 4738 | } |
67c0d1eb | 4739 | macro_build (NULL, s, "d", dreg); |
252b5132 RH |
4740 | break; |
4741 | ||
4742 | case M_DIV_3I: | |
4743 | s = "div"; | |
4744 | s2 = "mflo"; | |
4745 | goto do_divi; | |
4746 | case M_DIVU_3I: | |
4747 | s = "divu"; | |
4748 | s2 = "mflo"; | |
4749 | goto do_divi; | |
4750 | case M_REM_3I: | |
4751 | s = "div"; | |
4752 | s2 = "mfhi"; | |
4753 | goto do_divi; | |
4754 | case M_REMU_3I: | |
4755 | s = "divu"; | |
4756 | s2 = "mfhi"; | |
4757 | goto do_divi; | |
4758 | case M_DDIV_3I: | |
4759 | dbl = 1; | |
4760 | s = "ddiv"; | |
4761 | s2 = "mflo"; | |
4762 | goto do_divi; | |
4763 | case M_DDIVU_3I: | |
4764 | dbl = 1; | |
4765 | s = "ddivu"; | |
4766 | s2 = "mflo"; | |
4767 | goto do_divi; | |
4768 | case M_DREM_3I: | |
4769 | dbl = 1; | |
4770 | s = "ddiv"; | |
4771 | s2 = "mfhi"; | |
4772 | goto do_divi; | |
4773 | case M_DREMU_3I: | |
4774 | dbl = 1; | |
4775 | s = "ddivu"; | |
4776 | s2 = "mfhi"; | |
4777 | do_divi: | |
4778 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
4779 | { | |
4780 | as_warn (_("Divide by zero.")); | |
4781 | if (mips_trap) | |
67c0d1eb | 4782 | macro_build (NULL, "teq", "s,t,q", 0, 0, 7); |
252b5132 | 4783 | else |
67c0d1eb | 4784 | macro_build (NULL, "break", "c", 7); |
252b5132 RH |
4785 | return; |
4786 | } | |
4787 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
4788 | { | |
4789 | if (strcmp (s2, "mflo") == 0) | |
67c0d1eb | 4790 | move_register (dreg, sreg); |
252b5132 | 4791 | else |
67c0d1eb | 4792 | move_register (dreg, 0); |
252b5132 RH |
4793 | return; |
4794 | } | |
4795 | if (imm_expr.X_op == O_constant | |
4796 | && imm_expr.X_add_number == -1 | |
4797 | && s[strlen (s) - 1] != 'u') | |
4798 | { | |
4799 | if (strcmp (s2, "mflo") == 0) | |
4800 | { | |
67c0d1eb | 4801 | macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg); |
252b5132 RH |
4802 | } |
4803 | else | |
67c0d1eb | 4804 | move_register (dreg, 0); |
252b5132 RH |
4805 | return; |
4806 | } | |
4807 | ||
67c0d1eb RS |
4808 | load_register (AT, &imm_expr, dbl); |
4809 | macro_build (NULL, s, "z,s,t", sreg, AT); | |
4810 | macro_build (NULL, s2, "d", dreg); | |
252b5132 RH |
4811 | break; |
4812 | ||
4813 | case M_DIVU_3: | |
4814 | s = "divu"; | |
4815 | s2 = "mflo"; | |
4816 | goto do_divu3; | |
4817 | case M_REMU_3: | |
4818 | s = "divu"; | |
4819 | s2 = "mfhi"; | |
4820 | goto do_divu3; | |
4821 | case M_DDIVU_3: | |
4822 | s = "ddivu"; | |
4823 | s2 = "mflo"; | |
4824 | goto do_divu3; | |
4825 | case M_DREMU_3: | |
4826 | s = "ddivu"; | |
4827 | s2 = "mfhi"; | |
4828 | do_divu3: | |
b34976b6 | 4829 | mips_emit_delays (TRUE); |
252b5132 RH |
4830 | ++mips_opts.noreorder; |
4831 | mips_any_noreorder = 1; | |
4832 | if (mips_trap) | |
4833 | { | |
67c0d1eb RS |
4834 | macro_build (NULL, "teq", "s,t,q", treg, 0, 7); |
4835 | macro_build (NULL, s, "z,s,t", sreg, treg); | |
252b5132 RH |
4836 | /* We want to close the noreorder block as soon as possible, so |
4837 | that later insns are available for delay slot filling. */ | |
4838 | --mips_opts.noreorder; | |
4839 | } | |
4840 | else | |
4841 | { | |
4842 | expr1.X_add_number = 8; | |
67c0d1eb RS |
4843 | macro_build (&expr1, "bne", "s,t,p", treg, 0); |
4844 | macro_build (NULL, s, "z,s,t", sreg, treg); | |
252b5132 RH |
4845 | |
4846 | /* We want to close the noreorder block as soon as possible, so | |
4847 | that later insns are available for delay slot filling. */ | |
4848 | --mips_opts.noreorder; | |
67c0d1eb | 4849 | macro_build (NULL, "break", "c", 7); |
252b5132 | 4850 | } |
67c0d1eb | 4851 | macro_build (NULL, s2, "d", dreg); |
252b5132 RH |
4852 | return; |
4853 | ||
1abe91b1 MR |
4854 | case M_DLCA_AB: |
4855 | dbl = 1; | |
4856 | case M_LCA_AB: | |
4857 | call = 1; | |
4858 | goto do_la; | |
252b5132 RH |
4859 | case M_DLA_AB: |
4860 | dbl = 1; | |
4861 | case M_LA_AB: | |
1abe91b1 | 4862 | do_la: |
252b5132 RH |
4863 | /* Load the address of a symbol into a register. If breg is not |
4864 | zero, we then add a base register to it. */ | |
4865 | ||
3bec30a8 TS |
4866 | if (dbl && HAVE_32BIT_GPRS) |
4867 | as_warn (_("dla used to load 32-bit register")); | |
4868 | ||
c90bbe5b | 4869 | if (! dbl && HAVE_64BIT_OBJECTS) |
3bec30a8 TS |
4870 | as_warn (_("la used to load 64-bit address")); |
4871 | ||
0c11417f MR |
4872 | if (offset_expr.X_op == O_constant |
4873 | && offset_expr.X_add_number >= -0x8000 | |
4874 | && offset_expr.X_add_number < 0x8000) | |
4875 | { | |
67c0d1eb | 4876 | macro_build (&offset_expr, |
b7c7d6c1 | 4877 | (dbl || HAVE_64BIT_ADDRESSES) ? "daddiu" : "addiu", |
17a2f251 | 4878 | "t,r,j", treg, sreg, BFD_RELOC_LO16); |
0c11417f MR |
4879 | return; |
4880 | } | |
4881 | ||
afdbd6d0 CD |
4882 | if (treg == breg) |
4883 | { | |
4884 | tempreg = AT; | |
4885 | used_at = 1; | |
4886 | } | |
4887 | else | |
4888 | { | |
4889 | tempreg = treg; | |
4890 | used_at = 0; | |
4891 | } | |
4892 | ||
252b5132 RH |
4893 | if (offset_expr.X_op != O_symbol |
4894 | && offset_expr.X_op != O_constant) | |
4895 | { | |
4896 | as_bad (_("expression too complex")); | |
4897 | offset_expr.X_op = O_constant; | |
4898 | } | |
4899 | ||
252b5132 | 4900 | if (offset_expr.X_op == O_constant) |
67c0d1eb | 4901 | load_register (tempreg, &offset_expr, |
3e722fb5 | 4902 | (mips_pic == NO_PIC |
4d34fb5f TS |
4903 | ? (dbl || HAVE_64BIT_ADDRESSES) |
4904 | : HAVE_64BIT_ADDRESSES)); | |
252b5132 RH |
4905 | else if (mips_pic == NO_PIC) |
4906 | { | |
d6bc6245 | 4907 | /* If this is a reference to a GP relative symbol, we want |
cdf6fd85 | 4908 | addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16) |
252b5132 RH |
4909 | Otherwise we want |
4910 | lui $tempreg,<sym> (BFD_RELOC_HI16_S) | |
4911 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
4912 | If we have a constant, we need two instructions anyhow, | |
d6bc6245 | 4913 | so we may as well always use the latter form. |
76b3015f | 4914 | |
d6bc6245 TS |
4915 | With 64bit address space and a usable $at we want |
4916 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
4917 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
4918 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
4919 | daddiu $at,<sym> (BFD_RELOC_LO16) | |
4920 | dsll32 $tempreg,0 | |
3a482fd5 | 4921 | daddu $tempreg,$tempreg,$at |
76b3015f | 4922 | |
c03099e6 | 4923 | If $at is already in use, we use a path which is suboptimal |
d6bc6245 TS |
4924 | on superscalar processors. |
4925 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
4926 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
4927 | dsll $tempreg,16 | |
4928 | daddiu $tempreg,<sym> (BFD_RELOC_HI16_S) | |
4929 | dsll $tempreg,16 | |
4930 | daddiu $tempreg,<sym> (BFD_RELOC_LO16) | |
4931 | */ | |
d6bc6245 | 4932 | if (HAVE_64BIT_ADDRESSES) |
252b5132 | 4933 | { |
e864ceca RS |
4934 | /* ??? We don't provide a GP-relative alternative for |
4935 | these macros. It used not to be possible with the | |
4936 | original relaxation code, but it could be done now. */ | |
d6bc6245 | 4937 | |
460597ba | 4938 | if (used_at == 0 && ! mips_opts.noat) |
98d3f06f | 4939 | { |
67c0d1eb | 4940 | macro_build (&offset_expr, "lui", "t,u", |
17a2f251 | 4941 | tempreg, BFD_RELOC_MIPS_HIGHEST); |
67c0d1eb | 4942 | macro_build (&offset_expr, "lui", "t,u", |
17a2f251 | 4943 | AT, BFD_RELOC_HI16_S); |
67c0d1eb | 4944 | macro_build (&offset_expr, "daddiu", "t,r,j", |
17a2f251 | 4945 | tempreg, tempreg, BFD_RELOC_MIPS_HIGHER); |
67c0d1eb | 4946 | macro_build (&offset_expr, "daddiu", "t,r,j", |
17a2f251 | 4947 | AT, AT, BFD_RELOC_LO16); |
67c0d1eb RS |
4948 | macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0); |
4949 | macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT); | |
98d3f06f KH |
4950 | used_at = 1; |
4951 | } | |
4952 | else | |
4953 | { | |
67c0d1eb | 4954 | macro_build (&offset_expr, "lui", "t,u", |
17a2f251 | 4955 | tempreg, BFD_RELOC_MIPS_HIGHEST); |
67c0d1eb | 4956 | macro_build (&offset_expr, "daddiu", "t,r,j", |
17a2f251 | 4957 | tempreg, tempreg, BFD_RELOC_MIPS_HIGHER); |
67c0d1eb RS |
4958 | macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16); |
4959 | macro_build (&offset_expr, "daddiu", "t,r,j", | |
17a2f251 | 4960 | tempreg, tempreg, BFD_RELOC_HI16_S); |
67c0d1eb RS |
4961 | macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16); |
4962 | macro_build (&offset_expr, "daddiu", "t,r,j", | |
17a2f251 | 4963 | tempreg, tempreg, BFD_RELOC_LO16); |
98d3f06f KH |
4964 | } |
4965 | } | |
4966 | else | |
4967 | { | |
4968 | if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET | |
4969 | && ! nopic_need_relax (offset_expr.X_add_symbol, 1)) | |
4970 | { | |
4d7206a2 | 4971 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
4972 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", |
4973 | tempreg, mips_gp_register, BFD_RELOC_GPREL16); | |
4d7206a2 | 4974 | relax_switch (); |
98d3f06f | 4975 | } |
67c0d1eb RS |
4976 | macro_build_lui (&offset_expr, tempreg); |
4977 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", | |
4978 | tempreg, tempreg, BFD_RELOC_LO16); | |
4d7206a2 RS |
4979 | if (mips_relax.sequence) |
4980 | relax_end (); | |
98d3f06f | 4981 | } |
252b5132 | 4982 | } |
f5040a92 | 4983 | else if (mips_pic == SVR4_PIC && ! mips_big_got && ! HAVE_NEWABI) |
252b5132 | 4984 | { |
9117d219 NC |
4985 | int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16; |
4986 | ||
252b5132 RH |
4987 | /* If this is a reference to an external symbol, and there |
4988 | is no constant, we want | |
4989 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
1abe91b1 | 4990 | or for lca or if tempreg is PIC_CALL_REG |
9117d219 | 4991 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16) |
252b5132 RH |
4992 | For a local symbol, we want |
4993 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
4994 | nop | |
4995 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
4996 | ||
4997 | If we have a small constant, and this is a reference to | |
4998 | an external symbol, we want | |
4999 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5000 | nop | |
5001 | addiu $tempreg,$tempreg,<constant> | |
5002 | For a local symbol, we want the same instruction | |
5003 | sequence, but we output a BFD_RELOC_LO16 reloc on the | |
5004 | addiu instruction. | |
5005 | ||
5006 | If we have a large constant, and this is a reference to | |
5007 | an external symbol, we want | |
5008 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5009 | lui $at,<hiconstant> | |
5010 | addiu $at,$at,<loconstant> | |
5011 | addu $tempreg,$tempreg,$at | |
5012 | For a local symbol, we want the same instruction | |
5013 | sequence, but we output a BFD_RELOC_LO16 reloc on the | |
ed6fb7bd | 5014 | addiu instruction. |
ed6fb7bd SC |
5015 | */ |
5016 | ||
4d7206a2 | 5017 | if (offset_expr.X_add_number == 0) |
252b5132 | 5018 | { |
4d7206a2 RS |
5019 | if (breg == 0 && (call || tempreg == PIC_CALL_REG)) |
5020 | lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16; | |
5021 | ||
5022 | relax_start (offset_expr.X_add_symbol); | |
67c0d1eb RS |
5023 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5024 | lw_reloc_type, mips_gp_register); | |
4d7206a2 | 5025 | if (breg != 0) |
252b5132 RH |
5026 | { |
5027 | /* We're going to put in an addu instruction using | |
5028 | tempreg, so we may as well insert the nop right | |
5029 | now. */ | |
269137b2 | 5030 | load_delay_nop (); |
252b5132 | 5031 | } |
4d7206a2 | 5032 | relax_switch (); |
67c0d1eb RS |
5033 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
5034 | tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
269137b2 | 5035 | load_delay_nop (); |
67c0d1eb RS |
5036 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", |
5037 | tempreg, tempreg, BFD_RELOC_LO16); | |
4d7206a2 | 5038 | relax_end (); |
252b5132 RH |
5039 | /* FIXME: If breg == 0, and the next instruction uses |
5040 | $tempreg, then if this variant case is used an extra | |
5041 | nop will be generated. */ | |
5042 | } | |
4d7206a2 RS |
5043 | else if (offset_expr.X_add_number >= -0x8000 |
5044 | && offset_expr.X_add_number < 0x8000) | |
252b5132 | 5045 | { |
67c0d1eb | 5046 | load_got_offset (tempreg, &offset_expr); |
269137b2 | 5047 | load_delay_nop (); |
67c0d1eb | 5048 | add_got_offset (tempreg, &offset_expr); |
252b5132 RH |
5049 | } |
5050 | else | |
5051 | { | |
4d7206a2 RS |
5052 | expr1.X_add_number = offset_expr.X_add_number; |
5053 | offset_expr.X_add_number = | |
5054 | ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000; | |
67c0d1eb | 5055 | load_got_offset (tempreg, &offset_expr); |
f6a22291 | 5056 | offset_expr.X_add_number = expr1.X_add_number; |
252b5132 RH |
5057 | /* If we are going to add in a base register, and the |
5058 | target register and the base register are the same, | |
5059 | then we are using AT as a temporary register. Since | |
5060 | we want to load the constant into AT, we add our | |
5061 | current AT (from the global offset table) and the | |
5062 | register into the register now, and pretend we were | |
5063 | not using a base register. */ | |
67c0d1eb | 5064 | if (breg == treg) |
252b5132 | 5065 | { |
269137b2 | 5066 | load_delay_nop (); |
67c0d1eb | 5067 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5068 | treg, AT, breg); |
252b5132 RH |
5069 | breg = 0; |
5070 | tempreg = treg; | |
252b5132 | 5071 | } |
f6a22291 | 5072 | add_got_offset_hilo (tempreg, &offset_expr, AT); |
252b5132 RH |
5073 | used_at = 1; |
5074 | } | |
5075 | } | |
f5040a92 AO |
5076 | else if (mips_pic == SVR4_PIC && ! mips_big_got && HAVE_NEWABI) |
5077 | { | |
67c0d1eb | 5078 | int add_breg_early = 0; |
f5040a92 AO |
5079 | |
5080 | /* If this is a reference to an external, and there is no | |
5081 | constant, or local symbol (*), with or without a | |
5082 | constant, we want | |
5083 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP) | |
1abe91b1 | 5084 | or for lca or if tempreg is PIC_CALL_REG |
f5040a92 AO |
5085 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16) |
5086 | ||
5087 | If we have a small constant, and this is a reference to | |
5088 | an external symbol, we want | |
5089 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP) | |
5090 | addiu $tempreg,$tempreg,<constant> | |
5091 | ||
5092 | If we have a large constant, and this is a reference to | |
5093 | an external symbol, we want | |
5094 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP) | |
5095 | lui $at,<hiconstant> | |
5096 | addiu $at,$at,<loconstant> | |
5097 | addu $tempreg,$tempreg,$at | |
5098 | ||
5099 | (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for | |
5100 | local symbols, even though it introduces an additional | |
5101 | instruction. */ | |
5102 | ||
f5040a92 AO |
5103 | if (offset_expr.X_add_number) |
5104 | { | |
4d7206a2 | 5105 | expr1.X_add_number = offset_expr.X_add_number; |
f5040a92 AO |
5106 | offset_expr.X_add_number = 0; |
5107 | ||
4d7206a2 | 5108 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
5109 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5110 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
f5040a92 AO |
5111 | |
5112 | if (expr1.X_add_number >= -0x8000 | |
5113 | && expr1.X_add_number < 0x8000) | |
5114 | { | |
67c0d1eb RS |
5115 | macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j", |
5116 | tempreg, tempreg, BFD_RELOC_LO16); | |
f5040a92 | 5117 | } |
ecd13cd3 | 5118 | else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000)) |
f5040a92 AO |
5119 | { |
5120 | int dreg; | |
5121 | ||
5122 | /* If we are going to add in a base register, and the | |
5123 | target register and the base register are the same, | |
5124 | then we are using AT as a temporary register. Since | |
5125 | we want to load the constant into AT, we add our | |
5126 | current AT (from the global offset table) and the | |
5127 | register into the register now, and pretend we were | |
5128 | not using a base register. */ | |
5129 | if (breg != treg) | |
5130 | dreg = tempreg; | |
5131 | else | |
5132 | { | |
5133 | assert (tempreg == AT); | |
67c0d1eb RS |
5134 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
5135 | treg, AT, breg); | |
f5040a92 | 5136 | dreg = treg; |
67c0d1eb | 5137 | add_breg_early = 1; |
f5040a92 AO |
5138 | } |
5139 | ||
f6a22291 | 5140 | load_register (AT, &expr1, HAVE_64BIT_ADDRESSES); |
67c0d1eb | 5141 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5142 | dreg, dreg, AT); |
f5040a92 | 5143 | |
f5040a92 AO |
5144 | used_at = 1; |
5145 | } | |
5146 | else | |
5147 | as_bad (_("PIC code offset overflow (max 32 signed bits)")); | |
5148 | ||
4d7206a2 | 5149 | relax_switch (); |
f5040a92 AO |
5150 | offset_expr.X_add_number = expr1.X_add_number; |
5151 | ||
67c0d1eb RS |
5152 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5153 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
5154 | if (add_breg_early) | |
f5040a92 | 5155 | { |
67c0d1eb | 5156 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
f899b4b8 | 5157 | treg, tempreg, breg); |
f5040a92 AO |
5158 | breg = 0; |
5159 | tempreg = treg; | |
5160 | } | |
4d7206a2 | 5161 | relax_end (); |
f5040a92 | 5162 | } |
4d7206a2 | 5163 | else if (breg == 0 && (call || tempreg == PIC_CALL_REG)) |
f5040a92 | 5164 | { |
4d7206a2 | 5165 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
5166 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5167 | BFD_RELOC_MIPS_CALL16, mips_gp_register); | |
4d7206a2 | 5168 | relax_switch (); |
67c0d1eb RS |
5169 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5170 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
4d7206a2 | 5171 | relax_end (); |
f5040a92 | 5172 | } |
4d7206a2 | 5173 | else |
f5040a92 | 5174 | { |
67c0d1eb RS |
5175 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5176 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
f5040a92 AO |
5177 | } |
5178 | } | |
5179 | else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI) | |
252b5132 | 5180 | { |
67c0d1eb | 5181 | int gpdelay; |
9117d219 NC |
5182 | int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16; |
5183 | int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16; | |
ed6fb7bd | 5184 | int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16; |
252b5132 RH |
5185 | |
5186 | /* This is the large GOT case. If this is a reference to an | |
5187 | external symbol, and there is no constant, we want | |
5188 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5189 | addu $tempreg,$tempreg,$gp | |
5190 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
1abe91b1 | 5191 | or for lca or if tempreg is PIC_CALL_REG |
9117d219 NC |
5192 | lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16) |
5193 | addu $tempreg,$tempreg,$gp | |
5194 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16) | |
252b5132 RH |
5195 | For a local symbol, we want |
5196 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5197 | nop | |
5198 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
5199 | ||
5200 | If we have a small constant, and this is a reference to | |
5201 | an external symbol, we want | |
5202 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5203 | addu $tempreg,$tempreg,$gp | |
5204 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
5205 | nop | |
5206 | addiu $tempreg,$tempreg,<constant> | |
5207 | For a local symbol, we want | |
5208 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5209 | nop | |
5210 | addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16) | |
5211 | ||
5212 | If we have a large constant, and this is a reference to | |
5213 | an external symbol, we want | |
5214 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5215 | addu $tempreg,$tempreg,$gp | |
5216 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
5217 | lui $at,<hiconstant> | |
5218 | addiu $at,$at,<loconstant> | |
5219 | addu $tempreg,$tempreg,$at | |
5220 | For a local symbol, we want | |
5221 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5222 | lui $at,<hiconstant> | |
5223 | addiu $at,$at,<loconstant> (BFD_RELOC_LO16) | |
5224 | addu $tempreg,$tempreg,$at | |
f5040a92 | 5225 | */ |
438c16b8 | 5226 | |
252b5132 RH |
5227 | expr1.X_add_number = offset_expr.X_add_number; |
5228 | offset_expr.X_add_number = 0; | |
4d7206a2 | 5229 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb | 5230 | gpdelay = reg_needs_delay (mips_gp_register); |
1abe91b1 MR |
5231 | if (expr1.X_add_number == 0 && breg == 0 |
5232 | && (call || tempreg == PIC_CALL_REG)) | |
9117d219 NC |
5233 | { |
5234 | lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16; | |
5235 | lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16; | |
5236 | } | |
67c0d1eb RS |
5237 | macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type); |
5238 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
17a2f251 | 5239 | tempreg, tempreg, mips_gp_register); |
67c0d1eb | 5240 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
17a2f251 | 5241 | tempreg, lw_reloc_type, tempreg); |
252b5132 RH |
5242 | if (expr1.X_add_number == 0) |
5243 | { | |
67c0d1eb | 5244 | if (breg != 0) |
252b5132 RH |
5245 | { |
5246 | /* We're going to put in an addu instruction using | |
5247 | tempreg, so we may as well insert the nop right | |
5248 | now. */ | |
269137b2 | 5249 | load_delay_nop (); |
252b5132 | 5250 | } |
252b5132 RH |
5251 | } |
5252 | else if (expr1.X_add_number >= -0x8000 | |
5253 | && expr1.X_add_number < 0x8000) | |
5254 | { | |
269137b2 | 5255 | load_delay_nop (); |
67c0d1eb | 5256 | macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j", |
17a2f251 | 5257 | tempreg, tempreg, BFD_RELOC_LO16); |
252b5132 RH |
5258 | } |
5259 | else | |
5260 | { | |
67c0d1eb | 5261 | int dreg; |
252b5132 RH |
5262 | |
5263 | /* If we are going to add in a base register, and the | |
5264 | target register and the base register are the same, | |
5265 | then we are using AT as a temporary register. Since | |
5266 | we want to load the constant into AT, we add our | |
5267 | current AT (from the global offset table) and the | |
5268 | register into the register now, and pretend we were | |
5269 | not using a base register. */ | |
5270 | if (breg != treg) | |
67c0d1eb | 5271 | dreg = tempreg; |
252b5132 RH |
5272 | else |
5273 | { | |
5274 | assert (tempreg == AT); | |
269137b2 | 5275 | load_delay_nop (); |
67c0d1eb | 5276 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5277 | treg, AT, breg); |
252b5132 | 5278 | dreg = treg; |
252b5132 RH |
5279 | } |
5280 | ||
f6a22291 | 5281 | load_register (AT, &expr1, HAVE_64BIT_ADDRESSES); |
67c0d1eb | 5282 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT); |
252b5132 | 5283 | |
252b5132 RH |
5284 | used_at = 1; |
5285 | } | |
4d7206a2 RS |
5286 | offset_expr.X_add_number = |
5287 | ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000; | |
5288 | relax_switch (); | |
252b5132 | 5289 | |
67c0d1eb | 5290 | if (gpdelay) |
252b5132 RH |
5291 | { |
5292 | /* This is needed because this instruction uses $gp, but | |
f5040a92 | 5293 | the first instruction on the main stream does not. */ |
67c0d1eb | 5294 | macro_build (NULL, "nop", ""); |
252b5132 | 5295 | } |
ed6fb7bd | 5296 | |
67c0d1eb RS |
5297 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5298 | local_reloc_type, mips_gp_register); | |
f5040a92 | 5299 | if (expr1.X_add_number >= -0x8000 |
252b5132 RH |
5300 | && expr1.X_add_number < 0x8000) |
5301 | { | |
269137b2 | 5302 | load_delay_nop (); |
67c0d1eb RS |
5303 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", |
5304 | tempreg, tempreg, BFD_RELOC_LO16); | |
252b5132 | 5305 | /* FIXME: If add_number is 0, and there was no base |
f5040a92 AO |
5306 | register, the external symbol case ended with a load, |
5307 | so if the symbol turns out to not be external, and | |
5308 | the next instruction uses tempreg, an unnecessary nop | |
5309 | will be inserted. */ | |
252b5132 RH |
5310 | } |
5311 | else | |
5312 | { | |
5313 | if (breg == treg) | |
5314 | { | |
5315 | /* We must add in the base register now, as in the | |
f5040a92 | 5316 | external symbol case. */ |
252b5132 | 5317 | assert (tempreg == AT); |
269137b2 | 5318 | load_delay_nop (); |
67c0d1eb | 5319 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5320 | treg, AT, breg); |
252b5132 RH |
5321 | tempreg = treg; |
5322 | /* We set breg to 0 because we have arranged to add | |
f5040a92 | 5323 | it in in both cases. */ |
252b5132 RH |
5324 | breg = 0; |
5325 | } | |
5326 | ||
67c0d1eb RS |
5327 | macro_build_lui (&expr1, AT); |
5328 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", | |
17a2f251 | 5329 | AT, AT, BFD_RELOC_LO16); |
67c0d1eb | 5330 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5331 | tempreg, tempreg, AT); |
252b5132 | 5332 | } |
4d7206a2 | 5333 | relax_end (); |
252b5132 | 5334 | } |
f5040a92 AO |
5335 | else if (mips_pic == SVR4_PIC && HAVE_NEWABI) |
5336 | { | |
f5040a92 AO |
5337 | int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16; |
5338 | int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16; | |
67c0d1eb | 5339 | int add_breg_early = 0; |
f5040a92 AO |
5340 | |
5341 | /* This is the large GOT case. If this is a reference to an | |
5342 | external symbol, and there is no constant, we want | |
5343 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5344 | add $tempreg,$tempreg,$gp | |
5345 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
1abe91b1 | 5346 | or for lca or if tempreg is PIC_CALL_REG |
f5040a92 AO |
5347 | lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16) |
5348 | add $tempreg,$tempreg,$gp | |
5349 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16) | |
5350 | ||
5351 | If we have a small constant, and this is a reference to | |
5352 | an external symbol, we want | |
5353 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5354 | add $tempreg,$tempreg,$gp | |
5355 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
5356 | addi $tempreg,$tempreg,<constant> | |
5357 | ||
5358 | If we have a large constant, and this is a reference to | |
5359 | an external symbol, we want | |
5360 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5361 | addu $tempreg,$tempreg,$gp | |
5362 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
5363 | lui $at,<hiconstant> | |
5364 | addi $at,$at,<loconstant> | |
5365 | add $tempreg,$tempreg,$at | |
5366 | ||
5367 | If we have NewABI, and we know it's a local symbol, we want | |
5368 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE) | |
5369 | addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST) | |
5370 | otherwise we have to resort to GOT_HI16/GOT_LO16. */ | |
5371 | ||
4d7206a2 | 5372 | relax_start (offset_expr.X_add_symbol); |
f5040a92 | 5373 | |
4d7206a2 | 5374 | expr1.X_add_number = offset_expr.X_add_number; |
f5040a92 AO |
5375 | offset_expr.X_add_number = 0; |
5376 | ||
1abe91b1 MR |
5377 | if (expr1.X_add_number == 0 && breg == 0 |
5378 | && (call || tempreg == PIC_CALL_REG)) | |
f5040a92 AO |
5379 | { |
5380 | lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16; | |
5381 | lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16; | |
5382 | } | |
67c0d1eb RS |
5383 | macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type); |
5384 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
17a2f251 | 5385 | tempreg, tempreg, mips_gp_register); |
67c0d1eb RS |
5386 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
5387 | tempreg, lw_reloc_type, tempreg); | |
f5040a92 AO |
5388 | |
5389 | if (expr1.X_add_number == 0) | |
4d7206a2 | 5390 | ; |
f5040a92 AO |
5391 | else if (expr1.X_add_number >= -0x8000 |
5392 | && expr1.X_add_number < 0x8000) | |
5393 | { | |
67c0d1eb | 5394 | macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j", |
17a2f251 | 5395 | tempreg, tempreg, BFD_RELOC_LO16); |
f5040a92 | 5396 | } |
ecd13cd3 | 5397 | else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000)) |
f5040a92 AO |
5398 | { |
5399 | int dreg; | |
5400 | ||
5401 | /* If we are going to add in a base register, and the | |
5402 | target register and the base register are the same, | |
5403 | then we are using AT as a temporary register. Since | |
5404 | we want to load the constant into AT, we add our | |
5405 | current AT (from the global offset table) and the | |
5406 | register into the register now, and pretend we were | |
5407 | not using a base register. */ | |
5408 | if (breg != treg) | |
5409 | dreg = tempreg; | |
5410 | else | |
5411 | { | |
5412 | assert (tempreg == AT); | |
67c0d1eb | 5413 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5414 | treg, AT, breg); |
f5040a92 | 5415 | dreg = treg; |
67c0d1eb | 5416 | add_breg_early = 1; |
f5040a92 AO |
5417 | } |
5418 | ||
f6a22291 | 5419 | load_register (AT, &expr1, HAVE_64BIT_ADDRESSES); |
67c0d1eb | 5420 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT); |
f5040a92 | 5421 | |
f5040a92 AO |
5422 | used_at = 1; |
5423 | } | |
5424 | else | |
5425 | as_bad (_("PIC code offset overflow (max 32 signed bits)")); | |
5426 | ||
4d7206a2 | 5427 | relax_switch (); |
f5040a92 | 5428 | offset_expr.X_add_number = expr1.X_add_number; |
67c0d1eb RS |
5429 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5430 | BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register); | |
5431 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg, | |
5432 | tempreg, BFD_RELOC_MIPS_GOT_OFST); | |
5433 | if (add_breg_early) | |
f5040a92 | 5434 | { |
67c0d1eb | 5435 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5436 | treg, tempreg, breg); |
f5040a92 AO |
5437 | breg = 0; |
5438 | tempreg = treg; | |
5439 | } | |
4d7206a2 | 5440 | relax_end (); |
f5040a92 | 5441 | } |
252b5132 RH |
5442 | else |
5443 | abort (); | |
5444 | ||
5445 | if (breg != 0) | |
4d34fb5f TS |
5446 | { |
5447 | char *s; | |
5448 | ||
3e722fb5 | 5449 | if (mips_pic == NO_PIC) |
b7c7d6c1 | 5450 | s = (dbl || HAVE_64BIT_ADDRESSES) ? "daddu" : "addu"; |
4d34fb5f | 5451 | else |
f899b4b8 | 5452 | s = ADDRESS_ADD_INSN; |
4d34fb5f | 5453 | |
67c0d1eb | 5454 | macro_build (NULL, s, "d,v,t", treg, tempreg, breg); |
4d34fb5f | 5455 | } |
252b5132 RH |
5456 | |
5457 | if (! used_at) | |
5458 | return; | |
5459 | ||
5460 | break; | |
5461 | ||
5462 | case M_J_A: | |
5463 | /* The j instruction may not be used in PIC code, since it | |
5464 | requires an absolute address. We convert it to a b | |
5465 | instruction. */ | |
5466 | if (mips_pic == NO_PIC) | |
67c0d1eb | 5467 | macro_build (&offset_expr, "j", "a"); |
252b5132 | 5468 | else |
67c0d1eb | 5469 | macro_build (&offset_expr, "b", "p"); |
252b5132 RH |
5470 | return; |
5471 | ||
5472 | /* The jal instructions must be handled as macros because when | |
5473 | generating PIC code they expand to multi-instruction | |
5474 | sequences. Normally they are simple instructions. */ | |
5475 | case M_JAL_1: | |
5476 | dreg = RA; | |
5477 | /* Fall through. */ | |
5478 | case M_JAL_2: | |
3e722fb5 | 5479 | if (mips_pic == NO_PIC) |
67c0d1eb | 5480 | macro_build (NULL, "jalr", "d,s", dreg, sreg); |
252b5132 RH |
5481 | else if (mips_pic == SVR4_PIC) |
5482 | { | |
5483 | if (sreg != PIC_CALL_REG) | |
5484 | as_warn (_("MIPS PIC call to register other than $25")); | |
bdaaa2e1 | 5485 | |
67c0d1eb | 5486 | macro_build (NULL, "jalr", "d,s", dreg, sreg); |
6478892d | 5487 | if (! HAVE_NEWABI) |
252b5132 | 5488 | { |
6478892d TS |
5489 | if (mips_cprestore_offset < 0) |
5490 | as_warn (_("No .cprestore pseudo-op used in PIC code")); | |
5491 | else | |
5492 | { | |
7a621144 DJ |
5493 | if (! mips_frame_reg_valid) |
5494 | { | |
5495 | as_warn (_("No .frame pseudo-op used in PIC code")); | |
5496 | /* Quiet this warning. */ | |
5497 | mips_frame_reg_valid = 1; | |
5498 | } | |
5499 | if (! mips_cprestore_valid) | |
5500 | { | |
5501 | as_warn (_("No .cprestore pseudo-op used in PIC code")); | |
5502 | /* Quiet this warning. */ | |
5503 | mips_cprestore_valid = 1; | |
5504 | } | |
6478892d | 5505 | expr1.X_add_number = mips_cprestore_offset; |
67c0d1eb | 5506 | macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN, |
f899b4b8 | 5507 | mips_gp_register, |
256ab948 TS |
5508 | mips_frame_reg, |
5509 | HAVE_64BIT_ADDRESSES); | |
6478892d | 5510 | } |
252b5132 RH |
5511 | } |
5512 | } | |
5513 | else | |
5514 | abort (); | |
5515 | ||
5516 | return; | |
5517 | ||
5518 | case M_JAL_A: | |
5519 | if (mips_pic == NO_PIC) | |
67c0d1eb | 5520 | macro_build (&offset_expr, "jal", "a"); |
252b5132 RH |
5521 | else if (mips_pic == SVR4_PIC) |
5522 | { | |
5523 | /* If this is a reference to an external symbol, and we are | |
5524 | using a small GOT, we want | |
5525 | lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16) | |
5526 | nop | |
f9419b05 | 5527 | jalr $ra,$25 |
252b5132 RH |
5528 | nop |
5529 | lw $gp,cprestore($sp) | |
5530 | The cprestore value is set using the .cprestore | |
5531 | pseudo-op. If we are using a big GOT, we want | |
5532 | lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16) | |
5533 | addu $25,$25,$gp | |
5534 | lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16) | |
5535 | nop | |
f9419b05 | 5536 | jalr $ra,$25 |
252b5132 RH |
5537 | nop |
5538 | lw $gp,cprestore($sp) | |
5539 | If the symbol is not external, we want | |
5540 | lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5541 | nop | |
5542 | addiu $25,$25,<sym> (BFD_RELOC_LO16) | |
f9419b05 | 5543 | jalr $ra,$25 |
252b5132 | 5544 | nop |
438c16b8 | 5545 | lw $gp,cprestore($sp) |
f5040a92 AO |
5546 | |
5547 | For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16 | |
5548 | sequences above, minus nops, unless the symbol is local, | |
5549 | which enables us to use GOT_PAGE/GOT_OFST (big got) or | |
5550 | GOT_DISP. */ | |
438c16b8 | 5551 | if (HAVE_NEWABI) |
252b5132 | 5552 | { |
f5040a92 AO |
5553 | if (! mips_big_got) |
5554 | { | |
4d7206a2 | 5555 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
5556 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
5557 | PIC_CALL_REG, BFD_RELOC_MIPS_CALL16, | |
f5040a92 | 5558 | mips_gp_register); |
4d7206a2 | 5559 | relax_switch (); |
67c0d1eb RS |
5560 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
5561 | PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP, | |
4d7206a2 RS |
5562 | mips_gp_register); |
5563 | relax_end (); | |
f5040a92 AO |
5564 | } |
5565 | else | |
5566 | { | |
4d7206a2 | 5567 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
5568 | macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG, |
5569 | BFD_RELOC_MIPS_CALL_HI16); | |
5570 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG, | |
5571 | PIC_CALL_REG, mips_gp_register); | |
5572 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", | |
5573 | PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16, | |
5574 | PIC_CALL_REG); | |
4d7206a2 | 5575 | relax_switch (); |
67c0d1eb RS |
5576 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
5577 | PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE, | |
5578 | mips_gp_register); | |
5579 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", | |
5580 | PIC_CALL_REG, PIC_CALL_REG, | |
17a2f251 | 5581 | BFD_RELOC_MIPS_GOT_OFST); |
4d7206a2 | 5582 | relax_end (); |
f5040a92 | 5583 | } |
684022ea | 5584 | |
67c0d1eb | 5585 | macro_build_jalr (&offset_expr); |
252b5132 RH |
5586 | } |
5587 | else | |
5588 | { | |
4d7206a2 | 5589 | relax_start (offset_expr.X_add_symbol); |
438c16b8 TS |
5590 | if (! mips_big_got) |
5591 | { | |
67c0d1eb RS |
5592 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
5593 | PIC_CALL_REG, BFD_RELOC_MIPS_CALL16, | |
17a2f251 | 5594 | mips_gp_register); |
269137b2 | 5595 | load_delay_nop (); |
4d7206a2 | 5596 | relax_switch (); |
438c16b8 | 5597 | } |
252b5132 | 5598 | else |
252b5132 | 5599 | { |
67c0d1eb RS |
5600 | int gpdelay; |
5601 | ||
5602 | gpdelay = reg_needs_delay (mips_gp_register); | |
5603 | macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG, | |
5604 | BFD_RELOC_MIPS_CALL_HI16); | |
5605 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG, | |
5606 | PIC_CALL_REG, mips_gp_register); | |
5607 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", | |
5608 | PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16, | |
5609 | PIC_CALL_REG); | |
269137b2 | 5610 | load_delay_nop (); |
4d7206a2 | 5611 | relax_switch (); |
67c0d1eb RS |
5612 | if (gpdelay) |
5613 | macro_build (NULL, "nop", ""); | |
252b5132 | 5614 | } |
67c0d1eb RS |
5615 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
5616 | PIC_CALL_REG, BFD_RELOC_MIPS_GOT16, | |
4d7206a2 | 5617 | mips_gp_register); |
269137b2 | 5618 | load_delay_nop (); |
67c0d1eb RS |
5619 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", |
5620 | PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16); | |
4d7206a2 | 5621 | relax_end (); |
67c0d1eb | 5622 | macro_build_jalr (&offset_expr); |
438c16b8 | 5623 | |
6478892d TS |
5624 | if (mips_cprestore_offset < 0) |
5625 | as_warn (_("No .cprestore pseudo-op used in PIC code")); | |
5626 | else | |
5627 | { | |
7a621144 DJ |
5628 | if (! mips_frame_reg_valid) |
5629 | { | |
5630 | as_warn (_("No .frame pseudo-op used in PIC code")); | |
5631 | /* Quiet this warning. */ | |
5632 | mips_frame_reg_valid = 1; | |
5633 | } | |
5634 | if (! mips_cprestore_valid) | |
5635 | { | |
5636 | as_warn (_("No .cprestore pseudo-op used in PIC code")); | |
5637 | /* Quiet this warning. */ | |
5638 | mips_cprestore_valid = 1; | |
5639 | } | |
6478892d | 5640 | if (mips_opts.noreorder) |
67c0d1eb | 5641 | macro_build (NULL, "nop", ""); |
6478892d | 5642 | expr1.X_add_number = mips_cprestore_offset; |
67c0d1eb | 5643 | macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN, |
f899b4b8 | 5644 | mips_gp_register, |
256ab948 TS |
5645 | mips_frame_reg, |
5646 | HAVE_64BIT_ADDRESSES); | |
6478892d | 5647 | } |
252b5132 RH |
5648 | } |
5649 | } | |
252b5132 RH |
5650 | else |
5651 | abort (); | |
5652 | ||
5653 | return; | |
5654 | ||
5655 | case M_LB_AB: | |
5656 | s = "lb"; | |
5657 | goto ld; | |
5658 | case M_LBU_AB: | |
5659 | s = "lbu"; | |
5660 | goto ld; | |
5661 | case M_LH_AB: | |
5662 | s = "lh"; | |
5663 | goto ld; | |
5664 | case M_LHU_AB: | |
5665 | s = "lhu"; | |
5666 | goto ld; | |
5667 | case M_LW_AB: | |
5668 | s = "lw"; | |
5669 | goto ld; | |
5670 | case M_LWC0_AB: | |
5671 | s = "lwc0"; | |
bdaaa2e1 | 5672 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5673 | coproc = 1; |
5674 | goto ld; | |
5675 | case M_LWC1_AB: | |
5676 | s = "lwc1"; | |
bdaaa2e1 | 5677 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5678 | coproc = 1; |
5679 | goto ld; | |
5680 | case M_LWC2_AB: | |
5681 | s = "lwc2"; | |
bdaaa2e1 | 5682 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5683 | coproc = 1; |
5684 | goto ld; | |
5685 | case M_LWC3_AB: | |
5686 | s = "lwc3"; | |
bdaaa2e1 | 5687 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5688 | coproc = 1; |
5689 | goto ld; | |
5690 | case M_LWL_AB: | |
5691 | s = "lwl"; | |
5692 | lr = 1; | |
5693 | goto ld; | |
5694 | case M_LWR_AB: | |
5695 | s = "lwr"; | |
5696 | lr = 1; | |
5697 | goto ld; | |
5698 | case M_LDC1_AB: | |
fef14a42 | 5699 | if (mips_opts.arch == CPU_R4650) |
252b5132 RH |
5700 | { |
5701 | as_bad (_("opcode not supported on this processor")); | |
5702 | return; | |
5703 | } | |
5704 | s = "ldc1"; | |
bdaaa2e1 | 5705 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5706 | coproc = 1; |
5707 | goto ld; | |
5708 | case M_LDC2_AB: | |
5709 | s = "ldc2"; | |
bdaaa2e1 | 5710 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5711 | coproc = 1; |
5712 | goto ld; | |
5713 | case M_LDC3_AB: | |
5714 | s = "ldc3"; | |
bdaaa2e1 | 5715 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5716 | coproc = 1; |
5717 | goto ld; | |
5718 | case M_LDL_AB: | |
5719 | s = "ldl"; | |
5720 | lr = 1; | |
5721 | goto ld; | |
5722 | case M_LDR_AB: | |
5723 | s = "ldr"; | |
5724 | lr = 1; | |
5725 | goto ld; | |
5726 | case M_LL_AB: | |
5727 | s = "ll"; | |
5728 | goto ld; | |
5729 | case M_LLD_AB: | |
5730 | s = "lld"; | |
5731 | goto ld; | |
5732 | case M_LWU_AB: | |
5733 | s = "lwu"; | |
5734 | ld: | |
5735 | if (breg == treg || coproc || lr) | |
5736 | { | |
5737 | tempreg = AT; | |
5738 | used_at = 1; | |
5739 | } | |
5740 | else | |
5741 | { | |
5742 | tempreg = treg; | |
5743 | used_at = 0; | |
5744 | } | |
5745 | goto ld_st; | |
5746 | case M_SB_AB: | |
5747 | s = "sb"; | |
5748 | goto st; | |
5749 | case M_SH_AB: | |
5750 | s = "sh"; | |
5751 | goto st; | |
5752 | case M_SW_AB: | |
5753 | s = "sw"; | |
5754 | goto st; | |
5755 | case M_SWC0_AB: | |
5756 | s = "swc0"; | |
bdaaa2e1 | 5757 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5758 | coproc = 1; |
5759 | goto st; | |
5760 | case M_SWC1_AB: | |
5761 | s = "swc1"; | |
bdaaa2e1 | 5762 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5763 | coproc = 1; |
5764 | goto st; | |
5765 | case M_SWC2_AB: | |
5766 | s = "swc2"; | |
bdaaa2e1 | 5767 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5768 | coproc = 1; |
5769 | goto st; | |
5770 | case M_SWC3_AB: | |
5771 | s = "swc3"; | |
bdaaa2e1 | 5772 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5773 | coproc = 1; |
5774 | goto st; | |
5775 | case M_SWL_AB: | |
5776 | s = "swl"; | |
5777 | goto st; | |
5778 | case M_SWR_AB: | |
5779 | s = "swr"; | |
5780 | goto st; | |
5781 | case M_SC_AB: | |
5782 | s = "sc"; | |
5783 | goto st; | |
5784 | case M_SCD_AB: | |
5785 | s = "scd"; | |
5786 | goto st; | |
5787 | case M_SDC1_AB: | |
fef14a42 | 5788 | if (mips_opts.arch == CPU_R4650) |
252b5132 RH |
5789 | { |
5790 | as_bad (_("opcode not supported on this processor")); | |
5791 | return; | |
5792 | } | |
5793 | s = "sdc1"; | |
5794 | coproc = 1; | |
bdaaa2e1 | 5795 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5796 | goto st; |
5797 | case M_SDC2_AB: | |
5798 | s = "sdc2"; | |
bdaaa2e1 | 5799 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5800 | coproc = 1; |
5801 | goto st; | |
5802 | case M_SDC3_AB: | |
5803 | s = "sdc3"; | |
bdaaa2e1 | 5804 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5805 | coproc = 1; |
5806 | goto st; | |
5807 | case M_SDL_AB: | |
5808 | s = "sdl"; | |
5809 | goto st; | |
5810 | case M_SDR_AB: | |
5811 | s = "sdr"; | |
5812 | st: | |
5813 | tempreg = AT; | |
5814 | used_at = 1; | |
5815 | ld_st: | |
bdaaa2e1 | 5816 | /* Itbl support may require additional care here. */ |
252b5132 RH |
5817 | if (mask == M_LWC1_AB |
5818 | || mask == M_SWC1_AB | |
5819 | || mask == M_LDC1_AB | |
5820 | || mask == M_SDC1_AB | |
5821 | || mask == M_L_DAB | |
5822 | || mask == M_S_DAB) | |
5823 | fmt = "T,o(b)"; | |
5824 | else if (coproc) | |
5825 | fmt = "E,o(b)"; | |
5826 | else | |
5827 | fmt = "t,o(b)"; | |
5828 | ||
256ab948 TS |
5829 | /* Sign-extending 32-bit constants makes their handling easier. |
5830 | The HAVE_64BIT_GPRS... part is due to the linux kernel hack | |
5831 | described below. */ | |
5832 | if ((! HAVE_64BIT_ADDRESSES | |
5833 | && (! HAVE_64BIT_GPRS && offset_expr.X_op == O_constant)) | |
d17e7bce TS |
5834 | && (offset_expr.X_op == O_constant) |
5835 | && ! ((offset_expr.X_add_number & ~((bfd_vma) 0x7fffffff)) | |
5836 | == ~((bfd_vma) 0x7fffffff))) | |
ae826530 | 5837 | { |
d17e7bce | 5838 | if (offset_expr.X_add_number & ~((bfd_vma) 0xffffffff)) |
1b8e29e5 | 5839 | as_bad (_("constant too large")); |
ae826530 | 5840 | |
1b8e29e5 TS |
5841 | offset_expr.X_add_number = (((offset_expr.X_add_number & 0xffffffff) |
5842 | ^ 0x80000000) - 0x80000000); | |
ae826530 | 5843 | } |
256ab948 | 5844 | |
252b5132 RH |
5845 | if (offset_expr.X_op != O_constant |
5846 | && offset_expr.X_op != O_symbol) | |
5847 | { | |
5848 | as_bad (_("expression too complex")); | |
5849 | offset_expr.X_op = O_constant; | |
5850 | } | |
5851 | ||
5852 | /* A constant expression in PIC code can be handled just as it | |
5853 | is in non PIC code. */ | |
5854 | if (mips_pic == NO_PIC | |
5855 | || offset_expr.X_op == O_constant) | |
5856 | { | |
5857 | /* If this is a reference to a GP relative symbol, and there | |
5858 | is no base register, we want | |
cdf6fd85 | 5859 | <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16) |
252b5132 RH |
5860 | Otherwise, if there is no base register, we want |
5861 | lui $tempreg,<sym> (BFD_RELOC_HI16_S) | |
5862 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
5863 | If we have a constant, we need two instructions anyhow, | |
5864 | so we always use the latter form. | |
5865 | ||
5866 | If we have a base register, and this is a reference to a | |
5867 | GP relative symbol, we want | |
5868 | addu $tempreg,$breg,$gp | |
cdf6fd85 | 5869 | <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16) |
252b5132 RH |
5870 | Otherwise we want |
5871 | lui $tempreg,<sym> (BFD_RELOC_HI16_S) | |
5872 | addu $tempreg,$tempreg,$breg | |
5873 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
d6bc6245 | 5874 | With a constant we always use the latter case. |
76b3015f | 5875 | |
d6bc6245 TS |
5876 | With 64bit address space and no base register and $at usable, |
5877 | we want | |
5878 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
5879 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
5880 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
5881 | dsll32 $tempreg,0 | |
5882 | daddu $tempreg,$at | |
5883 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
5884 | If we have a base register, we want | |
5885 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
5886 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
5887 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
5888 | daddu $at,$breg | |
5889 | dsll32 $tempreg,0 | |
5890 | daddu $tempreg,$at | |
5891 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
5892 | ||
5893 | Without $at we can't generate the optimal path for superscalar | |
5894 | processors here since this would require two temporary registers. | |
5895 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
5896 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
5897 | dsll $tempreg,16 | |
5898 | daddiu $tempreg,<sym> (BFD_RELOC_HI16_S) | |
5899 | dsll $tempreg,16 | |
5900 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
5901 | If we have a base register, we want | |
5902 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
5903 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
5904 | dsll $tempreg,16 | |
5905 | daddiu $tempreg,<sym> (BFD_RELOC_HI16_S) | |
5906 | dsll $tempreg,16 | |
5907 | daddu $tempreg,$tempreg,$breg | |
5908 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
6373ee54 CD |
5909 | |
5910 | If we have 64-bit addresses, as an optimization, for | |
5911 | addresses which are 32-bit constants (e.g. kseg0/kseg1 | |
5912 | addresses) we fall back to the 32-bit address generation | |
78d32a17 MR |
5913 | mechanism since it is more efficient. Note that due to |
5914 | the signed offset used by memory operations, the 32-bit | |
5915 | range is shifted down by 32768 here. This code should | |
6373ee54 CD |
5916 | probably attempt to generate 64-bit constants more |
5917 | efficiently in general. | |
9214dd3b AO |
5918 | |
5919 | As an extension for architectures with 64-bit registers, | |
5920 | we don't truncate 64-bit addresses given as literal | |
5921 | constants down to 32 bits, to support existing practice | |
5922 | in the mips64 Linux (the kernel), that compiles source | |
5923 | files with -mabi=64, assembling them as o32 or n32 (with | |
5924 | -Wa,-32 or -Wa,-n32). This is not beautiful, but since | |
5925 | the whole kernel is loaded into a memory region that is | |
67c1ffbe | 5926 | addressable with sign-extended 32-bit addresses, it is |
9214dd3b AO |
5927 | wasteful to compute the upper 32 bits of every |
5928 | non-literal address, that takes more space and time. | |
5929 | Some day this should probably be implemented as an | |
5930 | assembler option, such that the kernel doesn't have to | |
5931 | use such ugly hacks, even though it will still have to | |
5932 | end up converting the binary to ELF32 for a number of | |
5933 | platforms whose boot loaders don't support ELF64 | |
5934 | binaries. */ | |
256ab948 TS |
5935 | if ((HAVE_64BIT_ADDRESSES |
5936 | && ! (offset_expr.X_op == O_constant | |
5937 | && IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000))) | |
5938 | || (HAVE_64BIT_GPRS | |
5939 | && offset_expr.X_op == O_constant | |
5940 | && ! IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000))) | |
d6bc6245 | 5941 | { |
e864ceca RS |
5942 | /* ??? We don't provide a GP-relative alternative for |
5943 | these macros. It used not to be possible with the | |
5944 | original relaxation code, but it could be done now. */ | |
d6bc6245 | 5945 | |
460597ba | 5946 | if (used_at == 0 && ! mips_opts.noat) |
d6bc6245 | 5947 | { |
67c0d1eb RS |
5948 | macro_build (&offset_expr, "lui", "t,u", tempreg, |
5949 | BFD_RELOC_MIPS_HIGHEST); | |
5950 | macro_build (&offset_expr, "lui", "t,u", AT, | |
5951 | BFD_RELOC_HI16_S); | |
5952 | macro_build (&offset_expr, "daddiu", "t,r,j", tempreg, | |
5953 | tempreg, BFD_RELOC_MIPS_HIGHER); | |
d6bc6245 | 5954 | if (breg != 0) |
67c0d1eb RS |
5955 | macro_build (NULL, "daddu", "d,v,t", AT, AT, breg); |
5956 | macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0); | |
5957 | macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT); | |
5958 | macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, | |
5959 | tempreg); | |
d6bc6245 TS |
5960 | used_at = 1; |
5961 | } | |
5962 | else | |
5963 | { | |
67c0d1eb RS |
5964 | macro_build (&offset_expr, "lui", "t,u", tempreg, |
5965 | BFD_RELOC_MIPS_HIGHEST); | |
5966 | macro_build (&offset_expr, "daddiu", "t,r,j", tempreg, | |
5967 | tempreg, BFD_RELOC_MIPS_HIGHER); | |
5968 | macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16); | |
5969 | macro_build (&offset_expr, "daddiu", "t,r,j", tempreg, | |
5970 | tempreg, BFD_RELOC_HI16_S); | |
5971 | macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16); | |
d6bc6245 | 5972 | if (breg != 0) |
67c0d1eb | 5973 | macro_build (NULL, "daddu", "d,v,t", |
17a2f251 | 5974 | tempreg, tempreg, breg); |
67c0d1eb | 5975 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 5976 | BFD_RELOC_LO16, tempreg); |
d6bc6245 TS |
5977 | } |
5978 | ||
5979 | return; | |
5980 | } | |
256ab948 TS |
5981 | |
5982 | if (offset_expr.X_op == O_constant | |
ecd13cd3 | 5983 | && ! IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000)) |
5a7a0b7b | 5984 | as_bad (_("load/store address overflow (max 32 bits)")); |
76b3015f | 5985 | |
252b5132 RH |
5986 | if (breg == 0) |
5987 | { | |
67c0d1eb RS |
5988 | if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET |
5989 | && ! nopic_need_relax (offset_expr.X_add_symbol, 1)) | |
252b5132 | 5990 | { |
4d7206a2 | 5991 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
5992 | macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16, |
5993 | mips_gp_register); | |
4d7206a2 | 5994 | relax_switch (); |
252b5132 RH |
5995 | used_at = 0; |
5996 | } | |
67c0d1eb RS |
5997 | macro_build_lui (&offset_expr, tempreg); |
5998 | macro_build (&offset_expr, s, fmt, treg, | |
17a2f251 | 5999 | BFD_RELOC_LO16, tempreg); |
4d7206a2 RS |
6000 | if (mips_relax.sequence) |
6001 | relax_end (); | |
252b5132 RH |
6002 | } |
6003 | else | |
6004 | { | |
67c0d1eb RS |
6005 | if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET |
6006 | && ! nopic_need_relax (offset_expr.X_add_symbol, 1)) | |
252b5132 | 6007 | { |
4d7206a2 | 6008 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb | 6009 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6010 | tempreg, breg, mips_gp_register); |
67c0d1eb | 6011 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 6012 | BFD_RELOC_GPREL16, tempreg); |
4d7206a2 | 6013 | relax_switch (); |
252b5132 | 6014 | } |
67c0d1eb RS |
6015 | macro_build_lui (&offset_expr, tempreg); |
6016 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
17a2f251 | 6017 | tempreg, tempreg, breg); |
67c0d1eb | 6018 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 6019 | BFD_RELOC_LO16, tempreg); |
4d7206a2 RS |
6020 | if (mips_relax.sequence) |
6021 | relax_end (); | |
252b5132 RH |
6022 | } |
6023 | } | |
6024 | else if (mips_pic == SVR4_PIC && ! mips_big_got) | |
6025 | { | |
ed6fb7bd | 6026 | int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16; |
f9419b05 | 6027 | |
252b5132 RH |
6028 | /* If this is a reference to an external symbol, we want |
6029 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6030 | nop | |
6031 | <op> $treg,0($tempreg) | |
6032 | Otherwise we want | |
6033 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6034 | nop | |
6035 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
6036 | <op> $treg,0($tempreg) | |
f5040a92 AO |
6037 | |
6038 | For NewABI, we want | |
6039 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE) | |
6040 | <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) | |
6041 | ||
252b5132 RH |
6042 | If there is a base register, we add it to $tempreg before |
6043 | the <op>. If there is a constant, we stick it in the | |
6044 | <op> instruction. We don't handle constants larger than | |
6045 | 16 bits, because we have no way to load the upper 16 bits | |
6046 | (actually, we could handle them for the subset of cases | |
6047 | in which we are not using $at). */ | |
6048 | assert (offset_expr.X_op == O_symbol); | |
f5040a92 AO |
6049 | if (HAVE_NEWABI) |
6050 | { | |
67c0d1eb RS |
6051 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
6052 | BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register); | |
f5040a92 | 6053 | if (breg != 0) |
67c0d1eb | 6054 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6055 | tempreg, tempreg, breg); |
67c0d1eb | 6056 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 6057 | BFD_RELOC_MIPS_GOT_OFST, tempreg); |
f5040a92 AO |
6058 | |
6059 | if (! used_at) | |
6060 | return; | |
6061 | ||
6062 | break; | |
6063 | } | |
252b5132 RH |
6064 | expr1.X_add_number = offset_expr.X_add_number; |
6065 | offset_expr.X_add_number = 0; | |
6066 | if (expr1.X_add_number < -0x8000 | |
6067 | || expr1.X_add_number >= 0x8000) | |
6068 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
67c0d1eb RS |
6069 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
6070 | lw_reloc_type, mips_gp_register); | |
269137b2 | 6071 | load_delay_nop (); |
4d7206a2 RS |
6072 | relax_start (offset_expr.X_add_symbol); |
6073 | relax_switch (); | |
67c0d1eb RS |
6074 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg, |
6075 | tempreg, BFD_RELOC_LO16); | |
4d7206a2 | 6076 | relax_end (); |
252b5132 | 6077 | if (breg != 0) |
67c0d1eb | 6078 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6079 | tempreg, tempreg, breg); |
67c0d1eb | 6080 | macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg); |
252b5132 | 6081 | } |
f5040a92 | 6082 | else if (mips_pic == SVR4_PIC && ! HAVE_NEWABI) |
252b5132 | 6083 | { |
67c0d1eb | 6084 | int gpdelay; |
252b5132 RH |
6085 | |
6086 | /* If this is a reference to an external symbol, we want | |
6087 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
6088 | addu $tempreg,$tempreg,$gp | |
6089 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
6090 | <op> $treg,0($tempreg) | |
6091 | Otherwise we want | |
6092 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6093 | nop | |
6094 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
6095 | <op> $treg,0($tempreg) | |
6096 | If there is a base register, we add it to $tempreg before | |
6097 | the <op>. If there is a constant, we stick it in the | |
6098 | <op> instruction. We don't handle constants larger than | |
6099 | 16 bits, because we have no way to load the upper 16 bits | |
6100 | (actually, we could handle them for the subset of cases | |
f5040a92 | 6101 | in which we are not using $at). */ |
252b5132 RH |
6102 | assert (offset_expr.X_op == O_symbol); |
6103 | expr1.X_add_number = offset_expr.X_add_number; | |
6104 | offset_expr.X_add_number = 0; | |
6105 | if (expr1.X_add_number < -0x8000 | |
6106 | || expr1.X_add_number >= 0x8000) | |
6107 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
67c0d1eb | 6108 | gpdelay = reg_needs_delay (mips_gp_register); |
4d7206a2 | 6109 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb | 6110 | macro_build (&offset_expr, "lui", "t,u", tempreg, |
17a2f251 | 6111 | BFD_RELOC_MIPS_GOT_HI16); |
67c0d1eb RS |
6112 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg, |
6113 | mips_gp_register); | |
6114 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, | |
6115 | BFD_RELOC_MIPS_GOT_LO16, tempreg); | |
4d7206a2 | 6116 | relax_switch (); |
67c0d1eb RS |
6117 | if (gpdelay) |
6118 | macro_build (NULL, "nop", ""); | |
6119 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, | |
6120 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
269137b2 | 6121 | load_delay_nop (); |
67c0d1eb RS |
6122 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg, |
6123 | tempreg, BFD_RELOC_LO16); | |
4d7206a2 RS |
6124 | relax_end (); |
6125 | ||
252b5132 | 6126 | if (breg != 0) |
67c0d1eb | 6127 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6128 | tempreg, tempreg, breg); |
67c0d1eb | 6129 | macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg); |
252b5132 | 6130 | } |
f5040a92 AO |
6131 | else if (mips_pic == SVR4_PIC && HAVE_NEWABI) |
6132 | { | |
f5040a92 AO |
6133 | /* If this is a reference to an external symbol, we want |
6134 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
6135 | add $tempreg,$tempreg,$gp | |
6136 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
6137 | <op> $treg,<ofst>($tempreg) | |
6138 | Otherwise, for local symbols, we want: | |
6139 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE) | |
6140 | <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */ | |
6141 | assert (offset_expr.X_op == O_symbol); | |
4d7206a2 | 6142 | expr1.X_add_number = offset_expr.X_add_number; |
f5040a92 AO |
6143 | offset_expr.X_add_number = 0; |
6144 | if (expr1.X_add_number < -0x8000 | |
6145 | || expr1.X_add_number >= 0x8000) | |
6146 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
4d7206a2 | 6147 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb | 6148 | macro_build (&offset_expr, "lui", "t,u", tempreg, |
17a2f251 | 6149 | BFD_RELOC_MIPS_GOT_HI16); |
67c0d1eb RS |
6150 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg, |
6151 | mips_gp_register); | |
6152 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, | |
6153 | BFD_RELOC_MIPS_GOT_LO16, tempreg); | |
f5040a92 | 6154 | if (breg != 0) |
67c0d1eb | 6155 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6156 | tempreg, tempreg, breg); |
67c0d1eb | 6157 | macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg); |
684022ea | 6158 | |
4d7206a2 | 6159 | relax_switch (); |
f5040a92 | 6160 | offset_expr.X_add_number = expr1.X_add_number; |
67c0d1eb RS |
6161 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
6162 | BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register); | |
f5040a92 | 6163 | if (breg != 0) |
67c0d1eb | 6164 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6165 | tempreg, tempreg, breg); |
67c0d1eb | 6166 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 6167 | BFD_RELOC_MIPS_GOT_OFST, tempreg); |
4d7206a2 | 6168 | relax_end (); |
f5040a92 | 6169 | } |
252b5132 RH |
6170 | else |
6171 | abort (); | |
6172 | ||
6173 | if (! used_at) | |
6174 | return; | |
6175 | ||
6176 | break; | |
6177 | ||
6178 | case M_LI: | |
6179 | case M_LI_S: | |
67c0d1eb | 6180 | load_register (treg, &imm_expr, 0); |
252b5132 RH |
6181 | return; |
6182 | ||
6183 | case M_DLI: | |
67c0d1eb | 6184 | load_register (treg, &imm_expr, 1); |
252b5132 RH |
6185 | return; |
6186 | ||
6187 | case M_LI_SS: | |
6188 | if (imm_expr.X_op == O_constant) | |
6189 | { | |
67c0d1eb RS |
6190 | load_register (AT, &imm_expr, 0); |
6191 | macro_build (NULL, "mtc1", "t,G", AT, treg); | |
252b5132 RH |
6192 | break; |
6193 | } | |
6194 | else | |
6195 | { | |
6196 | assert (offset_expr.X_op == O_symbol | |
6197 | && strcmp (segment_name (S_GET_SEGMENT | |
6198 | (offset_expr.X_add_symbol)), | |
6199 | ".lit4") == 0 | |
6200 | && offset_expr.X_add_number == 0); | |
67c0d1eb | 6201 | macro_build (&offset_expr, "lwc1", "T,o(b)", treg, |
17a2f251 | 6202 | BFD_RELOC_MIPS_LITERAL, mips_gp_register); |
252b5132 RH |
6203 | return; |
6204 | } | |
6205 | ||
6206 | case M_LI_D: | |
ca4e0257 RS |
6207 | /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits |
6208 | wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high | |
6209 | order 32 bits of the value and the low order 32 bits are either | |
6210 | zero or in OFFSET_EXPR. */ | |
252b5132 RH |
6211 | if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big) |
6212 | { | |
ca4e0257 | 6213 | if (HAVE_64BIT_GPRS) |
67c0d1eb | 6214 | load_register (treg, &imm_expr, 1); |
252b5132 RH |
6215 | else |
6216 | { | |
6217 | int hreg, lreg; | |
6218 | ||
6219 | if (target_big_endian) | |
6220 | { | |
6221 | hreg = treg; | |
6222 | lreg = treg + 1; | |
6223 | } | |
6224 | else | |
6225 | { | |
6226 | hreg = treg + 1; | |
6227 | lreg = treg; | |
6228 | } | |
6229 | ||
6230 | if (hreg <= 31) | |
67c0d1eb | 6231 | load_register (hreg, &imm_expr, 0); |
252b5132 RH |
6232 | if (lreg <= 31) |
6233 | { | |
6234 | if (offset_expr.X_op == O_absent) | |
67c0d1eb | 6235 | move_register (lreg, 0); |
252b5132 RH |
6236 | else |
6237 | { | |
6238 | assert (offset_expr.X_op == O_constant); | |
67c0d1eb | 6239 | load_register (lreg, &offset_expr, 0); |
252b5132 RH |
6240 | } |
6241 | } | |
6242 | } | |
6243 | return; | |
6244 | } | |
6245 | ||
6246 | /* We know that sym is in the .rdata section. First we get the | |
6247 | upper 16 bits of the address. */ | |
6248 | if (mips_pic == NO_PIC) | |
6249 | { | |
67c0d1eb | 6250 | macro_build_lui (&offset_expr, AT); |
252b5132 RH |
6251 | } |
6252 | else if (mips_pic == SVR4_PIC) | |
6253 | { | |
67c0d1eb RS |
6254 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT, |
6255 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
252b5132 | 6256 | } |
252b5132 RH |
6257 | else |
6258 | abort (); | |
bdaaa2e1 | 6259 | |
252b5132 | 6260 | /* Now we load the register(s). */ |
ca4e0257 | 6261 | if (HAVE_64BIT_GPRS) |
67c0d1eb | 6262 | macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
6263 | else |
6264 | { | |
67c0d1eb | 6265 | macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT); |
f9419b05 | 6266 | if (treg != RA) |
252b5132 RH |
6267 | { |
6268 | /* FIXME: How in the world do we deal with the possible | |
6269 | overflow here? */ | |
6270 | offset_expr.X_add_number += 4; | |
67c0d1eb | 6271 | macro_build (&offset_expr, "lw", "t,o(b)", |
17a2f251 | 6272 | treg + 1, BFD_RELOC_LO16, AT); |
252b5132 RH |
6273 | } |
6274 | } | |
252b5132 RH |
6275 | break; |
6276 | ||
6277 | case M_LI_DD: | |
ca4e0257 RS |
6278 | /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits |
6279 | wide, IMM_EXPR is the entire value and the GPRs are known to be 64 | |
6280 | bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of | |
6281 | the value and the low order 32 bits are either zero or in | |
6282 | OFFSET_EXPR. */ | |
252b5132 RH |
6283 | if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big) |
6284 | { | |
67c0d1eb | 6285 | load_register (AT, &imm_expr, HAVE_64BIT_FPRS); |
ca4e0257 RS |
6286 | if (HAVE_64BIT_FPRS) |
6287 | { | |
6288 | assert (HAVE_64BIT_GPRS); | |
67c0d1eb | 6289 | macro_build (NULL, "dmtc1", "t,S", AT, treg); |
ca4e0257 | 6290 | } |
252b5132 RH |
6291 | else |
6292 | { | |
67c0d1eb | 6293 | macro_build (NULL, "mtc1", "t,G", AT, treg + 1); |
252b5132 | 6294 | if (offset_expr.X_op == O_absent) |
67c0d1eb | 6295 | macro_build (NULL, "mtc1", "t,G", 0, treg); |
252b5132 RH |
6296 | else |
6297 | { | |
6298 | assert (offset_expr.X_op == O_constant); | |
67c0d1eb RS |
6299 | load_register (AT, &offset_expr, 0); |
6300 | macro_build (NULL, "mtc1", "t,G", AT, treg); | |
252b5132 RH |
6301 | } |
6302 | } | |
6303 | break; | |
6304 | } | |
6305 | ||
6306 | assert (offset_expr.X_op == O_symbol | |
6307 | && offset_expr.X_add_number == 0); | |
6308 | s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol)); | |
6309 | if (strcmp (s, ".lit8") == 0) | |
6310 | { | |
e7af610e | 6311 | if (mips_opts.isa != ISA_MIPS1) |
252b5132 | 6312 | { |
67c0d1eb | 6313 | macro_build (&offset_expr, "ldc1", "T,o(b)", treg, |
17a2f251 | 6314 | BFD_RELOC_MIPS_LITERAL, mips_gp_register); |
252b5132 RH |
6315 | return; |
6316 | } | |
c9914766 | 6317 | breg = mips_gp_register; |
252b5132 RH |
6318 | r = BFD_RELOC_MIPS_LITERAL; |
6319 | goto dob; | |
6320 | } | |
6321 | else | |
6322 | { | |
6323 | assert (strcmp (s, RDATA_SECTION_NAME) == 0); | |
6324 | if (mips_pic == SVR4_PIC) | |
67c0d1eb RS |
6325 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT, |
6326 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
252b5132 RH |
6327 | else |
6328 | { | |
6329 | /* FIXME: This won't work for a 64 bit address. */ | |
67c0d1eb | 6330 | macro_build_lui (&offset_expr, AT); |
252b5132 | 6331 | } |
bdaaa2e1 | 6332 | |
e7af610e | 6333 | if (mips_opts.isa != ISA_MIPS1) |
252b5132 | 6334 | { |
67c0d1eb RS |
6335 | macro_build (&offset_expr, "ldc1", "T,o(b)", |
6336 | treg, BFD_RELOC_LO16, AT); | |
252b5132 RH |
6337 | break; |
6338 | } | |
6339 | breg = AT; | |
6340 | r = BFD_RELOC_LO16; | |
6341 | goto dob; | |
6342 | } | |
6343 | ||
6344 | case M_L_DOB: | |
fef14a42 | 6345 | if (mips_opts.arch == CPU_R4650) |
252b5132 RH |
6346 | { |
6347 | as_bad (_("opcode not supported on this processor")); | |
6348 | return; | |
6349 | } | |
6350 | /* Even on a big endian machine $fn comes before $fn+1. We have | |
6351 | to adjust when loading from memory. */ | |
6352 | r = BFD_RELOC_LO16; | |
6353 | dob: | |
e7af610e | 6354 | assert (mips_opts.isa == ISA_MIPS1); |
67c0d1eb | 6355 | macro_build (&offset_expr, "lwc1", "T,o(b)", |
17a2f251 | 6356 | target_big_endian ? treg + 1 : treg, r, breg); |
252b5132 RH |
6357 | /* FIXME: A possible overflow which I don't know how to deal |
6358 | with. */ | |
6359 | offset_expr.X_add_number += 4; | |
67c0d1eb | 6360 | macro_build (&offset_expr, "lwc1", "T,o(b)", |
17a2f251 | 6361 | target_big_endian ? treg : treg + 1, r, breg); |
252b5132 | 6362 | |
252b5132 RH |
6363 | if (breg != AT) |
6364 | return; | |
6365 | break; | |
6366 | ||
6367 | case M_L_DAB: | |
6368 | /* | |
6369 | * The MIPS assembler seems to check for X_add_number not | |
6370 | * being double aligned and generating: | |
6371 | * lui at,%hi(foo+1) | |
6372 | * addu at,at,v1 | |
6373 | * addiu at,at,%lo(foo+1) | |
6374 | * lwc1 f2,0(at) | |
6375 | * lwc1 f3,4(at) | |
6376 | * But, the resulting address is the same after relocation so why | |
6377 | * generate the extra instruction? | |
6378 | */ | |
fef14a42 | 6379 | if (mips_opts.arch == CPU_R4650) |
252b5132 RH |
6380 | { |
6381 | as_bad (_("opcode not supported on this processor")); | |
6382 | return; | |
6383 | } | |
bdaaa2e1 | 6384 | /* Itbl support may require additional care here. */ |
252b5132 | 6385 | coproc = 1; |
e7af610e | 6386 | if (mips_opts.isa != ISA_MIPS1) |
252b5132 RH |
6387 | { |
6388 | s = "ldc1"; | |
6389 | goto ld; | |
6390 | } | |
6391 | ||
6392 | s = "lwc1"; | |
6393 | fmt = "T,o(b)"; | |
6394 | goto ldd_std; | |
6395 | ||
6396 | case M_S_DAB: | |
fef14a42 | 6397 | if (mips_opts.arch == CPU_R4650) |
252b5132 RH |
6398 | { |
6399 | as_bad (_("opcode not supported on this processor")); | |
6400 | return; | |
6401 | } | |
6402 | ||
e7af610e | 6403 | if (mips_opts.isa != ISA_MIPS1) |
252b5132 RH |
6404 | { |
6405 | s = "sdc1"; | |
6406 | goto st; | |
6407 | } | |
6408 | ||
6409 | s = "swc1"; | |
6410 | fmt = "T,o(b)"; | |
bdaaa2e1 | 6411 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6412 | coproc = 1; |
6413 | goto ldd_std; | |
6414 | ||
6415 | case M_LD_AB: | |
ca4e0257 | 6416 | if (HAVE_64BIT_GPRS) |
252b5132 RH |
6417 | { |
6418 | s = "ld"; | |
6419 | goto ld; | |
6420 | } | |
6421 | ||
6422 | s = "lw"; | |
6423 | fmt = "t,o(b)"; | |
6424 | goto ldd_std; | |
6425 | ||
6426 | case M_SD_AB: | |
ca4e0257 | 6427 | if (HAVE_64BIT_GPRS) |
252b5132 RH |
6428 | { |
6429 | s = "sd"; | |
6430 | goto st; | |
6431 | } | |
6432 | ||
6433 | s = "sw"; | |
6434 | fmt = "t,o(b)"; | |
6435 | ||
6436 | ldd_std: | |
6437 | if (offset_expr.X_op != O_symbol | |
6438 | && offset_expr.X_op != O_constant) | |
6439 | { | |
6440 | as_bad (_("expression too complex")); | |
6441 | offset_expr.X_op = O_constant; | |
6442 | } | |
6443 | ||
6444 | /* Even on a big endian machine $fn comes before $fn+1. We have | |
6445 | to adjust when loading from memory. We set coproc if we must | |
6446 | load $fn+1 first. */ | |
bdaaa2e1 | 6447 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6448 | if (! target_big_endian) |
6449 | coproc = 0; | |
6450 | ||
6451 | if (mips_pic == NO_PIC | |
6452 | || offset_expr.X_op == O_constant) | |
6453 | { | |
6454 | /* If this is a reference to a GP relative symbol, we want | |
cdf6fd85 TS |
6455 | <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16) |
6456 | <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16) | |
252b5132 RH |
6457 | If we have a base register, we use this |
6458 | addu $at,$breg,$gp | |
cdf6fd85 TS |
6459 | <op> $treg,<sym>($at) (BFD_RELOC_GPREL16) |
6460 | <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16) | |
252b5132 RH |
6461 | If this is not a GP relative symbol, we want |
6462 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
6463 | <op> $treg,<sym>($at) (BFD_RELOC_LO16) | |
6464 | <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16) | |
6465 | If there is a base register, we add it to $at after the | |
6466 | lui instruction. If there is a constant, we always use | |
6467 | the last case. */ | |
e7d556df | 6468 | if ((valueT) offset_expr.X_add_number > MAX_GPREL_OFFSET |
252b5132 | 6469 | || nopic_need_relax (offset_expr.X_add_symbol, 1)) |
67c0d1eb | 6470 | used_at = 1; |
252b5132 RH |
6471 | else |
6472 | { | |
4d7206a2 | 6473 | relax_start (offset_expr.X_add_symbol); |
252b5132 RH |
6474 | if (breg == 0) |
6475 | { | |
c9914766 | 6476 | tempreg = mips_gp_register; |
252b5132 RH |
6477 | used_at = 0; |
6478 | } | |
6479 | else | |
6480 | { | |
67c0d1eb | 6481 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6482 | AT, breg, mips_gp_register); |
252b5132 | 6483 | tempreg = AT; |
252b5132 RH |
6484 | used_at = 1; |
6485 | } | |
6486 | ||
beae10d5 | 6487 | /* Itbl support may require additional care here. */ |
67c0d1eb | 6488 | macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg, |
17a2f251 | 6489 | BFD_RELOC_GPREL16, tempreg); |
252b5132 RH |
6490 | offset_expr.X_add_number += 4; |
6491 | ||
6492 | /* Set mips_optimize to 2 to avoid inserting an | |
6493 | undesired nop. */ | |
6494 | hold_mips_optimize = mips_optimize; | |
6495 | mips_optimize = 2; | |
beae10d5 | 6496 | /* Itbl support may require additional care here. */ |
67c0d1eb | 6497 | macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1, |
17a2f251 | 6498 | BFD_RELOC_GPREL16, tempreg); |
252b5132 RH |
6499 | mips_optimize = hold_mips_optimize; |
6500 | ||
4d7206a2 | 6501 | relax_switch (); |
252b5132 RH |
6502 | |
6503 | /* We just generated two relocs. When tc_gen_reloc | |
6504 | handles this case, it will skip the first reloc and | |
6505 | handle the second. The second reloc already has an | |
6506 | extra addend of 4, which we added above. We must | |
6507 | subtract it out, and then subtract another 4 to make | |
6508 | the first reloc come out right. The second reloc | |
6509 | will come out right because we are going to add 4 to | |
6510 | offset_expr when we build its instruction below. | |
6511 | ||
6512 | If we have a symbol, then we don't want to include | |
6513 | the offset, because it will wind up being included | |
6514 | when we generate the reloc. */ | |
6515 | ||
6516 | if (offset_expr.X_op == O_constant) | |
6517 | offset_expr.X_add_number -= 8; | |
6518 | else | |
6519 | { | |
6520 | offset_expr.X_add_number = -4; | |
6521 | offset_expr.X_op = O_constant; | |
6522 | } | |
6523 | } | |
67c0d1eb | 6524 | macro_build_lui (&offset_expr, AT); |
252b5132 | 6525 | if (breg != 0) |
67c0d1eb | 6526 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT); |
beae10d5 | 6527 | /* Itbl support may require additional care here. */ |
67c0d1eb | 6528 | macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg, |
17a2f251 | 6529 | BFD_RELOC_LO16, AT); |
252b5132 RH |
6530 | /* FIXME: How do we handle overflow here? */ |
6531 | offset_expr.X_add_number += 4; | |
beae10d5 | 6532 | /* Itbl support may require additional care here. */ |
67c0d1eb | 6533 | macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1, |
17a2f251 | 6534 | BFD_RELOC_LO16, AT); |
4d7206a2 RS |
6535 | if (mips_relax.sequence) |
6536 | relax_end (); | |
bdaaa2e1 | 6537 | } |
252b5132 RH |
6538 | else if (mips_pic == SVR4_PIC && ! mips_big_got) |
6539 | { | |
252b5132 RH |
6540 | /* If this is a reference to an external symbol, we want |
6541 | lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6542 | nop | |
6543 | <op> $treg,0($at) | |
6544 | <op> $treg+1,4($at) | |
6545 | Otherwise we want | |
6546 | lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6547 | nop | |
6548 | <op> $treg,<sym>($at) (BFD_RELOC_LO16) | |
6549 | <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16) | |
6550 | If there is a base register we add it to $at before the | |
6551 | lwc1 instructions. If there is a constant we include it | |
6552 | in the lwc1 instructions. */ | |
6553 | used_at = 1; | |
6554 | expr1.X_add_number = offset_expr.X_add_number; | |
252b5132 RH |
6555 | if (expr1.X_add_number < -0x8000 |
6556 | || expr1.X_add_number >= 0x8000 - 4) | |
6557 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
67c0d1eb | 6558 | load_got_offset (AT, &offset_expr); |
269137b2 | 6559 | load_delay_nop (); |
252b5132 | 6560 | if (breg != 0) |
67c0d1eb | 6561 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT); |
252b5132 RH |
6562 | |
6563 | /* Set mips_optimize to 2 to avoid inserting an undesired | |
6564 | nop. */ | |
6565 | hold_mips_optimize = mips_optimize; | |
6566 | mips_optimize = 2; | |
4d7206a2 | 6567 | |
beae10d5 | 6568 | /* Itbl support may require additional care here. */ |
4d7206a2 | 6569 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
6570 | macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg, |
6571 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 6572 | expr1.X_add_number += 4; |
67c0d1eb RS |
6573 | macro_build (&expr1, s, fmt, coproc ? treg : treg + 1, |
6574 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 6575 | relax_switch (); |
67c0d1eb RS |
6576 | macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg, |
6577 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 6578 | offset_expr.X_add_number += 4; |
67c0d1eb RS |
6579 | macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1, |
6580 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 6581 | relax_end (); |
252b5132 | 6582 | |
4d7206a2 | 6583 | mips_optimize = hold_mips_optimize; |
252b5132 RH |
6584 | } |
6585 | else if (mips_pic == SVR4_PIC) | |
6586 | { | |
67c0d1eb | 6587 | int gpdelay; |
252b5132 RH |
6588 | |
6589 | /* If this is a reference to an external symbol, we want | |
6590 | lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
6591 | addu $at,$at,$gp | |
6592 | lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16) | |
6593 | nop | |
6594 | <op> $treg,0($at) | |
6595 | <op> $treg+1,4($at) | |
6596 | Otherwise we want | |
6597 | lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6598 | nop | |
6599 | <op> $treg,<sym>($at) (BFD_RELOC_LO16) | |
6600 | <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16) | |
6601 | If there is a base register we add it to $at before the | |
6602 | lwc1 instructions. If there is a constant we include it | |
6603 | in the lwc1 instructions. */ | |
6604 | used_at = 1; | |
6605 | expr1.X_add_number = offset_expr.X_add_number; | |
6606 | offset_expr.X_add_number = 0; | |
6607 | if (expr1.X_add_number < -0x8000 | |
6608 | || expr1.X_add_number >= 0x8000 - 4) | |
6609 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
67c0d1eb | 6610 | gpdelay = reg_needs_delay (mips_gp_register); |
4d7206a2 | 6611 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
6612 | macro_build (&offset_expr, "lui", "t,u", |
6613 | AT, BFD_RELOC_MIPS_GOT_HI16); | |
6614 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
17a2f251 | 6615 | AT, AT, mips_gp_register); |
67c0d1eb | 6616 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
17a2f251 | 6617 | AT, BFD_RELOC_MIPS_GOT_LO16, AT); |
269137b2 | 6618 | load_delay_nop (); |
252b5132 | 6619 | if (breg != 0) |
67c0d1eb | 6620 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT); |
beae10d5 | 6621 | /* Itbl support may require additional care here. */ |
67c0d1eb | 6622 | macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg, |
17a2f251 | 6623 | BFD_RELOC_LO16, AT); |
252b5132 RH |
6624 | expr1.X_add_number += 4; |
6625 | ||
6626 | /* Set mips_optimize to 2 to avoid inserting an undesired | |
6627 | nop. */ | |
6628 | hold_mips_optimize = mips_optimize; | |
6629 | mips_optimize = 2; | |
beae10d5 | 6630 | /* Itbl support may require additional care here. */ |
67c0d1eb | 6631 | macro_build (&expr1, s, fmt, coproc ? treg : treg + 1, |
17a2f251 | 6632 | BFD_RELOC_LO16, AT); |
252b5132 RH |
6633 | mips_optimize = hold_mips_optimize; |
6634 | expr1.X_add_number -= 4; | |
6635 | ||
4d7206a2 RS |
6636 | relax_switch (); |
6637 | offset_expr.X_add_number = expr1.X_add_number; | |
67c0d1eb RS |
6638 | if (gpdelay) |
6639 | macro_build (NULL, "nop", ""); | |
6640 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT, | |
6641 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
269137b2 | 6642 | load_delay_nop (); |
252b5132 | 6643 | if (breg != 0) |
67c0d1eb | 6644 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT); |
beae10d5 | 6645 | /* Itbl support may require additional care here. */ |
67c0d1eb RS |
6646 | macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg, |
6647 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 6648 | offset_expr.X_add_number += 4; |
252b5132 RH |
6649 | |
6650 | /* Set mips_optimize to 2 to avoid inserting an undesired | |
6651 | nop. */ | |
6652 | hold_mips_optimize = mips_optimize; | |
6653 | mips_optimize = 2; | |
beae10d5 | 6654 | /* Itbl support may require additional care here. */ |
67c0d1eb RS |
6655 | macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1, |
6656 | BFD_RELOC_LO16, AT); | |
252b5132 | 6657 | mips_optimize = hold_mips_optimize; |
4d7206a2 | 6658 | relax_end (); |
252b5132 | 6659 | } |
252b5132 RH |
6660 | else |
6661 | abort (); | |
6662 | ||
6663 | if (! used_at) | |
6664 | return; | |
6665 | ||
6666 | break; | |
6667 | ||
6668 | case M_LD_OB: | |
6669 | s = "lw"; | |
6670 | goto sd_ob; | |
6671 | case M_SD_OB: | |
6672 | s = "sw"; | |
6673 | sd_ob: | |
ca4e0257 | 6674 | assert (HAVE_32BIT_ADDRESSES); |
67c0d1eb | 6675 | macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg); |
252b5132 | 6676 | offset_expr.X_add_number += 4; |
67c0d1eb | 6677 | macro_build (&offset_expr, s, "t,o(b)", treg + 1, BFD_RELOC_LO16, breg); |
252b5132 RH |
6678 | return; |
6679 | ||
6680 | /* New code added to support COPZ instructions. | |
6681 | This code builds table entries out of the macros in mip_opcodes. | |
6682 | R4000 uses interlocks to handle coproc delays. | |
6683 | Other chips (like the R3000) require nops to be inserted for delays. | |
6684 | ||
f72c8c98 | 6685 | FIXME: Currently, we require that the user handle delays. |
252b5132 RH |
6686 | In order to fill delay slots for non-interlocked chips, |
6687 | we must have a way to specify delays based on the coprocessor. | |
6688 | Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc. | |
6689 | What are the side-effects of the cop instruction? | |
6690 | What cache support might we have and what are its effects? | |
6691 | Both coprocessor & memory require delays. how long??? | |
bdaaa2e1 | 6692 | What registers are read/set/modified? |
252b5132 RH |
6693 | |
6694 | If an itbl is provided to interpret cop instructions, | |
bdaaa2e1 | 6695 | this knowledge can be encoded in the itbl spec. */ |
252b5132 RH |
6696 | |
6697 | case M_COP0: | |
6698 | s = "c0"; | |
6699 | goto copz; | |
6700 | case M_COP1: | |
6701 | s = "c1"; | |
6702 | goto copz; | |
6703 | case M_COP2: | |
6704 | s = "c2"; | |
6705 | goto copz; | |
6706 | case M_COP3: | |
6707 | s = "c3"; | |
6708 | copz: | |
6709 | /* For now we just do C (same as Cz). The parameter will be | |
6710 | stored in insn_opcode by mips_ip. */ | |
67c0d1eb | 6711 | macro_build (NULL, s, "C", ip->insn_opcode); |
252b5132 RH |
6712 | return; |
6713 | ||
ea1fb5dc | 6714 | case M_MOVE: |
67c0d1eb | 6715 | move_register (dreg, sreg); |
ea1fb5dc RS |
6716 | return; |
6717 | ||
252b5132 RH |
6718 | #ifdef LOSING_COMPILER |
6719 | default: | |
6720 | /* Try and see if this is a new itbl instruction. | |
6721 | This code builds table entries out of the macros in mip_opcodes. | |
6722 | FIXME: For now we just assemble the expression and pass it's | |
6723 | value along as a 32-bit immediate. | |
bdaaa2e1 | 6724 | We may want to have the assembler assemble this value, |
252b5132 RH |
6725 | so that we gain the assembler's knowledge of delay slots, |
6726 | symbols, etc. | |
6727 | Would it be more efficient to use mask (id) here? */ | |
bdaaa2e1 | 6728 | if (itbl_have_entries |
252b5132 | 6729 | && (immed_expr = itbl_assemble (ip->insn_mo->name, ""))) |
beae10d5 | 6730 | { |
252b5132 RH |
6731 | s = ip->insn_mo->name; |
6732 | s2 = "cop3"; | |
6733 | coproc = ITBL_DECODE_PNUM (immed_expr);; | |
67c0d1eb | 6734 | macro_build (&immed_expr, s, "C"); |
252b5132 | 6735 | return; |
beae10d5 | 6736 | } |
252b5132 RH |
6737 | macro2 (ip); |
6738 | return; | |
6739 | } | |
6740 | if (mips_opts.noat) | |
6741 | as_warn (_("Macro used $at after \".set noat\"")); | |
6742 | } | |
bdaaa2e1 | 6743 | |
252b5132 | 6744 | static void |
17a2f251 | 6745 | macro2 (struct mips_cl_insn *ip) |
252b5132 RH |
6746 | { |
6747 | register int treg, sreg, dreg, breg; | |
6748 | int tempreg; | |
6749 | int mask; | |
252b5132 RH |
6750 | int used_at; |
6751 | expressionS expr1; | |
6752 | const char *s; | |
6753 | const char *s2; | |
6754 | const char *fmt; | |
6755 | int likely = 0; | |
6756 | int dbl = 0; | |
6757 | int coproc = 0; | |
6758 | int lr = 0; | |
6759 | int imm = 0; | |
6760 | int off; | |
6761 | offsetT maxnum; | |
6762 | bfd_reloc_code_real_type r; | |
bdaaa2e1 | 6763 | |
252b5132 RH |
6764 | treg = (ip->insn_opcode >> 16) & 0x1f; |
6765 | dreg = (ip->insn_opcode >> 11) & 0x1f; | |
6766 | sreg = breg = (ip->insn_opcode >> 21) & 0x1f; | |
6767 | mask = ip->insn_mo->mask; | |
bdaaa2e1 | 6768 | |
252b5132 RH |
6769 | expr1.X_op = O_constant; |
6770 | expr1.X_op_symbol = NULL; | |
6771 | expr1.X_add_symbol = NULL; | |
6772 | expr1.X_add_number = 1; | |
bdaaa2e1 | 6773 | |
252b5132 RH |
6774 | switch (mask) |
6775 | { | |
6776 | #endif /* LOSING_COMPILER */ | |
6777 | ||
6778 | case M_DMUL: | |
6779 | dbl = 1; | |
6780 | case M_MUL: | |
67c0d1eb RS |
6781 | macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg); |
6782 | macro_build (NULL, "mflo", "d", dreg); | |
252b5132 RH |
6783 | return; |
6784 | ||
6785 | case M_DMUL_I: | |
6786 | dbl = 1; | |
6787 | case M_MUL_I: | |
6788 | /* The MIPS assembler some times generates shifts and adds. I'm | |
6789 | not trying to be that fancy. GCC should do this for us | |
6790 | anyway. */ | |
67c0d1eb RS |
6791 | load_register (AT, &imm_expr, dbl); |
6792 | macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT); | |
6793 | macro_build (NULL, "mflo", "d", dreg); | |
252b5132 RH |
6794 | break; |
6795 | ||
6796 | case M_DMULO_I: | |
6797 | dbl = 1; | |
6798 | case M_MULO_I: | |
6799 | imm = 1; | |
6800 | goto do_mulo; | |
6801 | ||
6802 | case M_DMULO: | |
6803 | dbl = 1; | |
6804 | case M_MULO: | |
6805 | do_mulo: | |
b34976b6 | 6806 | mips_emit_delays (TRUE); |
252b5132 RH |
6807 | ++mips_opts.noreorder; |
6808 | mips_any_noreorder = 1; | |
6809 | if (imm) | |
67c0d1eb RS |
6810 | load_register (AT, &imm_expr, dbl); |
6811 | macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg); | |
6812 | macro_build (NULL, "mflo", "d", dreg); | |
6813 | macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA); | |
6814 | macro_build (NULL, "mfhi", "d", AT); | |
252b5132 | 6815 | if (mips_trap) |
67c0d1eb | 6816 | macro_build (NULL, "tne", "s,t,q", dreg, AT, 6); |
252b5132 RH |
6817 | else |
6818 | { | |
6819 | expr1.X_add_number = 8; | |
67c0d1eb RS |
6820 | macro_build (&expr1, "beq", "s,t,p", dreg, AT); |
6821 | macro_build (NULL, "nop", "", 0); | |
6822 | macro_build (NULL, "break", "c", 6); | |
252b5132 RH |
6823 | } |
6824 | --mips_opts.noreorder; | |
67c0d1eb | 6825 | macro_build (NULL, "mflo", "d", dreg); |
252b5132 RH |
6826 | break; |
6827 | ||
6828 | case M_DMULOU_I: | |
6829 | dbl = 1; | |
6830 | case M_MULOU_I: | |
6831 | imm = 1; | |
6832 | goto do_mulou; | |
6833 | ||
6834 | case M_DMULOU: | |
6835 | dbl = 1; | |
6836 | case M_MULOU: | |
6837 | do_mulou: | |
b34976b6 | 6838 | mips_emit_delays (TRUE); |
252b5132 RH |
6839 | ++mips_opts.noreorder; |
6840 | mips_any_noreorder = 1; | |
6841 | if (imm) | |
67c0d1eb RS |
6842 | load_register (AT, &imm_expr, dbl); |
6843 | macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", | |
17a2f251 | 6844 | sreg, imm ? AT : treg); |
67c0d1eb RS |
6845 | macro_build (NULL, "mfhi", "d", AT); |
6846 | macro_build (NULL, "mflo", "d", dreg); | |
252b5132 | 6847 | if (mips_trap) |
67c0d1eb | 6848 | macro_build (NULL, "tne", "s,t,q", AT, 0, 6); |
252b5132 RH |
6849 | else |
6850 | { | |
6851 | expr1.X_add_number = 8; | |
67c0d1eb RS |
6852 | macro_build (&expr1, "beq", "s,t,p", AT, 0); |
6853 | macro_build (NULL, "nop", "", 0); | |
6854 | macro_build (NULL, "break", "c", 6); | |
252b5132 RH |
6855 | } |
6856 | --mips_opts.noreorder; | |
6857 | break; | |
6858 | ||
771c7ce4 | 6859 | case M_DROL: |
fef14a42 | 6860 | if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) |
82dd0097 CD |
6861 | { |
6862 | if (dreg == sreg) | |
6863 | { | |
6864 | tempreg = AT; | |
6865 | used_at = 1; | |
6866 | } | |
6867 | else | |
6868 | { | |
6869 | tempreg = dreg; | |
6870 | used_at = 0; | |
6871 | } | |
67c0d1eb RS |
6872 | macro_build (NULL, "dnegu", "d,w", tempreg, treg); |
6873 | macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg); | |
82dd0097 CD |
6874 | if (used_at) |
6875 | break; | |
6876 | return; | |
6877 | } | |
67c0d1eb RS |
6878 | macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg); |
6879 | macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT); | |
6880 | macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg); | |
6881 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 TS |
6882 | break; |
6883 | ||
252b5132 | 6884 | case M_ROL: |
fef14a42 | 6885 | if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch)) |
82dd0097 CD |
6886 | { |
6887 | if (dreg == sreg) | |
6888 | { | |
6889 | tempreg = AT; | |
6890 | used_at = 1; | |
6891 | } | |
6892 | else | |
6893 | { | |
6894 | tempreg = dreg; | |
6895 | used_at = 0; | |
6896 | } | |
67c0d1eb RS |
6897 | macro_build (NULL, "negu", "d,w", tempreg, treg); |
6898 | macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg); | |
82dd0097 CD |
6899 | if (used_at) |
6900 | break; | |
6901 | return; | |
6902 | } | |
67c0d1eb RS |
6903 | macro_build (NULL, "subu", "d,v,t", AT, 0, treg); |
6904 | macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT); | |
6905 | macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg); | |
6906 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
252b5132 RH |
6907 | break; |
6908 | ||
771c7ce4 TS |
6909 | case M_DROL_I: |
6910 | { | |
6911 | unsigned int rot; | |
82dd0097 | 6912 | char *l, *r; |
771c7ce4 TS |
6913 | |
6914 | if (imm_expr.X_op != O_constant) | |
82dd0097 | 6915 | as_bad (_("Improper rotate count")); |
771c7ce4 | 6916 | rot = imm_expr.X_add_number & 0x3f; |
fef14a42 | 6917 | if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) |
60b63b72 RS |
6918 | { |
6919 | rot = (64 - rot) & 0x3f; | |
6920 | if (rot >= 32) | |
67c0d1eb | 6921 | macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32); |
60b63b72 | 6922 | else |
67c0d1eb | 6923 | macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot); |
82dd0097 | 6924 | return; |
60b63b72 | 6925 | } |
483fc7cd | 6926 | if (rot == 0) |
483fc7cd | 6927 | { |
67c0d1eb | 6928 | macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0); |
82dd0097 | 6929 | return; |
483fc7cd | 6930 | } |
82dd0097 CD |
6931 | l = (rot < 0x20) ? "dsll" : "dsll32"; |
6932 | r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32"; | |
6933 | rot &= 0x1f; | |
67c0d1eb RS |
6934 | macro_build (NULL, l, "d,w,<", AT, sreg, rot); |
6935 | macro_build (NULL, r, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f); | |
6936 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 TS |
6937 | } |
6938 | break; | |
6939 | ||
252b5132 | 6940 | case M_ROL_I: |
771c7ce4 TS |
6941 | { |
6942 | unsigned int rot; | |
6943 | ||
6944 | if (imm_expr.X_op != O_constant) | |
82dd0097 | 6945 | as_bad (_("Improper rotate count")); |
771c7ce4 | 6946 | rot = imm_expr.X_add_number & 0x1f; |
fef14a42 | 6947 | if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch)) |
60b63b72 | 6948 | { |
67c0d1eb | 6949 | macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f); |
82dd0097 | 6950 | return; |
60b63b72 | 6951 | } |
483fc7cd | 6952 | if (rot == 0) |
483fc7cd | 6953 | { |
67c0d1eb | 6954 | macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0); |
82dd0097 | 6955 | return; |
483fc7cd | 6956 | } |
67c0d1eb RS |
6957 | macro_build (NULL, "sll", "d,w,<", AT, sreg, rot); |
6958 | macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f); | |
6959 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 TS |
6960 | } |
6961 | break; | |
6962 | ||
6963 | case M_DROR: | |
fef14a42 | 6964 | if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) |
82dd0097 | 6965 | { |
67c0d1eb | 6966 | macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg); |
82dd0097 CD |
6967 | return; |
6968 | } | |
67c0d1eb RS |
6969 | macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg); |
6970 | macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT); | |
6971 | macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg); | |
6972 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
252b5132 RH |
6973 | break; |
6974 | ||
6975 | case M_ROR: | |
fef14a42 | 6976 | if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch)) |
82dd0097 | 6977 | { |
67c0d1eb | 6978 | macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg); |
82dd0097 CD |
6979 | return; |
6980 | } | |
67c0d1eb RS |
6981 | macro_build (NULL, "subu", "d,v,t", AT, 0, treg); |
6982 | macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT); | |
6983 | macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg); | |
6984 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
252b5132 RH |
6985 | break; |
6986 | ||
771c7ce4 TS |
6987 | case M_DROR_I: |
6988 | { | |
6989 | unsigned int rot; | |
82dd0097 | 6990 | char *l, *r; |
771c7ce4 TS |
6991 | |
6992 | if (imm_expr.X_op != O_constant) | |
82dd0097 | 6993 | as_bad (_("Improper rotate count")); |
771c7ce4 | 6994 | rot = imm_expr.X_add_number & 0x3f; |
fef14a42 | 6995 | if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) |
82dd0097 CD |
6996 | { |
6997 | if (rot >= 32) | |
67c0d1eb | 6998 | macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32); |
82dd0097 | 6999 | else |
67c0d1eb | 7000 | macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot); |
82dd0097 CD |
7001 | return; |
7002 | } | |
483fc7cd | 7003 | if (rot == 0) |
483fc7cd | 7004 | { |
67c0d1eb | 7005 | macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0); |
82dd0097 | 7006 | return; |
483fc7cd | 7007 | } |
82dd0097 CD |
7008 | r = (rot < 0x20) ? "dsrl" : "dsrl32"; |
7009 | l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32"; | |
7010 | rot &= 0x1f; | |
67c0d1eb RS |
7011 | macro_build (NULL, r, "d,w,<", AT, sreg, rot); |
7012 | macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f); | |
7013 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 TS |
7014 | } |
7015 | break; | |
7016 | ||
252b5132 | 7017 | case M_ROR_I: |
771c7ce4 TS |
7018 | { |
7019 | unsigned int rot; | |
7020 | ||
7021 | if (imm_expr.X_op != O_constant) | |
82dd0097 | 7022 | as_bad (_("Improper rotate count")); |
771c7ce4 | 7023 | rot = imm_expr.X_add_number & 0x1f; |
fef14a42 | 7024 | if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch)) |
82dd0097 | 7025 | { |
67c0d1eb | 7026 | macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot); |
82dd0097 CD |
7027 | return; |
7028 | } | |
483fc7cd | 7029 | if (rot == 0) |
483fc7cd | 7030 | { |
67c0d1eb | 7031 | macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0); |
82dd0097 | 7032 | return; |
483fc7cd | 7033 | } |
67c0d1eb RS |
7034 | macro_build (NULL, "srl", "d,w,<", AT, sreg, rot); |
7035 | macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f); | |
7036 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 | 7037 | } |
252b5132 RH |
7038 | break; |
7039 | ||
7040 | case M_S_DOB: | |
fef14a42 | 7041 | if (mips_opts.arch == CPU_R4650) |
252b5132 RH |
7042 | { |
7043 | as_bad (_("opcode not supported on this processor")); | |
7044 | return; | |
7045 | } | |
e7af610e | 7046 | assert (mips_opts.isa == ISA_MIPS1); |
252b5132 RH |
7047 | /* Even on a big endian machine $fn comes before $fn+1. We have |
7048 | to adjust when storing to memory. */ | |
67c0d1eb RS |
7049 | macro_build (&offset_expr, "swc1", "T,o(b)", |
7050 | target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg); | |
252b5132 | 7051 | offset_expr.X_add_number += 4; |
67c0d1eb RS |
7052 | macro_build (&offset_expr, "swc1", "T,o(b)", |
7053 | target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg); | |
252b5132 RH |
7054 | return; |
7055 | ||
7056 | case M_SEQ: | |
7057 | if (sreg == 0) | |
67c0d1eb | 7058 | macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16); |
252b5132 | 7059 | else if (treg == 0) |
67c0d1eb | 7060 | macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7061 | else |
7062 | { | |
67c0d1eb RS |
7063 | macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg); |
7064 | macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16); | |
252b5132 RH |
7065 | } |
7066 | return; | |
7067 | ||
7068 | case M_SEQ_I: | |
7069 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
7070 | { | |
67c0d1eb | 7071 | macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7072 | return; |
7073 | } | |
7074 | if (sreg == 0) | |
7075 | { | |
7076 | as_warn (_("Instruction %s: result is always false"), | |
7077 | ip->insn_mo->name); | |
67c0d1eb | 7078 | move_register (dreg, 0); |
252b5132 RH |
7079 | return; |
7080 | } | |
7081 | if (imm_expr.X_op == O_constant | |
7082 | && imm_expr.X_add_number >= 0 | |
7083 | && imm_expr.X_add_number < 0x10000) | |
7084 | { | |
67c0d1eb | 7085 | macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7086 | used_at = 0; |
7087 | } | |
7088 | else if (imm_expr.X_op == O_constant | |
7089 | && imm_expr.X_add_number > -0x8000 | |
7090 | && imm_expr.X_add_number < 0) | |
7091 | { | |
7092 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 7093 | macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu", |
17a2f251 | 7094 | "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7095 | used_at = 0; |
7096 | } | |
7097 | else | |
7098 | { | |
67c0d1eb RS |
7099 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7100 | macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7101 | used_at = 1; |
7102 | } | |
67c0d1eb | 7103 | macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16); |
252b5132 RH |
7104 | if (used_at) |
7105 | break; | |
7106 | return; | |
7107 | ||
7108 | case M_SGE: /* sreg >= treg <==> not (sreg < treg) */ | |
7109 | s = "slt"; | |
7110 | goto sge; | |
7111 | case M_SGEU: | |
7112 | s = "sltu"; | |
7113 | sge: | |
67c0d1eb RS |
7114 | macro_build (NULL, s, "d,v,t", dreg, sreg, treg); |
7115 | macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16); | |
252b5132 RH |
7116 | return; |
7117 | ||
7118 | case M_SGE_I: /* sreg >= I <==> not (sreg < I) */ | |
7119 | case M_SGEU_I: | |
7120 | if (imm_expr.X_op == O_constant | |
7121 | && imm_expr.X_add_number >= -0x8000 | |
7122 | && imm_expr.X_add_number < 0x8000) | |
7123 | { | |
67c0d1eb RS |
7124 | macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j", |
7125 | dreg, sreg, BFD_RELOC_LO16); | |
252b5132 RH |
7126 | used_at = 0; |
7127 | } | |
7128 | else | |
7129 | { | |
67c0d1eb RS |
7130 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7131 | macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t", | |
7132 | dreg, sreg, AT); | |
252b5132 RH |
7133 | used_at = 1; |
7134 | } | |
67c0d1eb | 7135 | macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16); |
252b5132 RH |
7136 | if (used_at) |
7137 | break; | |
7138 | return; | |
7139 | ||
7140 | case M_SGT: /* sreg > treg <==> treg < sreg */ | |
7141 | s = "slt"; | |
7142 | goto sgt; | |
7143 | case M_SGTU: | |
7144 | s = "sltu"; | |
7145 | sgt: | |
67c0d1eb | 7146 | macro_build (NULL, s, "d,v,t", dreg, treg, sreg); |
252b5132 RH |
7147 | return; |
7148 | ||
7149 | case M_SGT_I: /* sreg > I <==> I < sreg */ | |
7150 | s = "slt"; | |
7151 | goto sgti; | |
7152 | case M_SGTU_I: | |
7153 | s = "sltu"; | |
7154 | sgti: | |
67c0d1eb RS |
7155 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7156 | macro_build (NULL, s, "d,v,t", dreg, AT, sreg); | |
252b5132 RH |
7157 | break; |
7158 | ||
2396cfb9 | 7159 | case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */ |
252b5132 RH |
7160 | s = "slt"; |
7161 | goto sle; | |
7162 | case M_SLEU: | |
7163 | s = "sltu"; | |
7164 | sle: | |
67c0d1eb RS |
7165 | macro_build (NULL, s, "d,v,t", dreg, treg, sreg); |
7166 | macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16); | |
252b5132 RH |
7167 | return; |
7168 | ||
2396cfb9 | 7169 | case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */ |
252b5132 RH |
7170 | s = "slt"; |
7171 | goto slei; | |
7172 | case M_SLEU_I: | |
7173 | s = "sltu"; | |
7174 | slei: | |
67c0d1eb RS |
7175 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7176 | macro_build (NULL, s, "d,v,t", dreg, AT, sreg); | |
7177 | macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16); | |
252b5132 RH |
7178 | break; |
7179 | ||
7180 | case M_SLT_I: | |
7181 | if (imm_expr.X_op == O_constant | |
7182 | && imm_expr.X_add_number >= -0x8000 | |
7183 | && imm_expr.X_add_number < 0x8000) | |
7184 | { | |
67c0d1eb | 7185 | macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7186 | return; |
7187 | } | |
67c0d1eb RS |
7188 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7189 | macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7190 | break; |
7191 | ||
7192 | case M_SLTU_I: | |
7193 | if (imm_expr.X_op == O_constant | |
7194 | && imm_expr.X_add_number >= -0x8000 | |
7195 | && imm_expr.X_add_number < 0x8000) | |
7196 | { | |
67c0d1eb | 7197 | macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg, |
17a2f251 | 7198 | BFD_RELOC_LO16); |
252b5132 RH |
7199 | return; |
7200 | } | |
67c0d1eb RS |
7201 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7202 | macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7203 | break; |
7204 | ||
7205 | case M_SNE: | |
7206 | if (sreg == 0) | |
67c0d1eb | 7207 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg); |
252b5132 | 7208 | else if (treg == 0) |
67c0d1eb | 7209 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg); |
252b5132 RH |
7210 | else |
7211 | { | |
67c0d1eb RS |
7212 | macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg); |
7213 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg); | |
252b5132 RH |
7214 | } |
7215 | return; | |
7216 | ||
7217 | case M_SNE_I: | |
7218 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
7219 | { | |
67c0d1eb | 7220 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg); |
252b5132 RH |
7221 | return; |
7222 | } | |
7223 | if (sreg == 0) | |
7224 | { | |
7225 | as_warn (_("Instruction %s: result is always true"), | |
7226 | ip->insn_mo->name); | |
67c0d1eb RS |
7227 | macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j", |
7228 | dreg, 0, BFD_RELOC_LO16); | |
252b5132 RH |
7229 | return; |
7230 | } | |
7231 | if (imm_expr.X_op == O_constant | |
7232 | && imm_expr.X_add_number >= 0 | |
7233 | && imm_expr.X_add_number < 0x10000) | |
7234 | { | |
67c0d1eb | 7235 | macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7236 | used_at = 0; |
7237 | } | |
7238 | else if (imm_expr.X_op == O_constant | |
7239 | && imm_expr.X_add_number > -0x8000 | |
7240 | && imm_expr.X_add_number < 0) | |
7241 | { | |
7242 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 7243 | macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu", |
17a2f251 | 7244 | "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7245 | used_at = 0; |
7246 | } | |
7247 | else | |
7248 | { | |
67c0d1eb RS |
7249 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7250 | macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7251 | used_at = 1; |
7252 | } | |
67c0d1eb | 7253 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg); |
252b5132 RH |
7254 | if (used_at) |
7255 | break; | |
7256 | return; | |
7257 | ||
7258 | case M_DSUB_I: | |
7259 | dbl = 1; | |
7260 | case M_SUB_I: | |
7261 | if (imm_expr.X_op == O_constant | |
7262 | && imm_expr.X_add_number > -0x8000 | |
7263 | && imm_expr.X_add_number <= 0x8000) | |
7264 | { | |
7265 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb RS |
7266 | macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j", |
7267 | dreg, sreg, BFD_RELOC_LO16); | |
252b5132 RH |
7268 | return; |
7269 | } | |
67c0d1eb RS |
7270 | load_register (AT, &imm_expr, dbl); |
7271 | macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7272 | break; |
7273 | ||
7274 | case M_DSUBU_I: | |
7275 | dbl = 1; | |
7276 | case M_SUBU_I: | |
7277 | if (imm_expr.X_op == O_constant | |
7278 | && imm_expr.X_add_number > -0x8000 | |
7279 | && imm_expr.X_add_number <= 0x8000) | |
7280 | { | |
7281 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb RS |
7282 | macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j", |
7283 | dreg, sreg, BFD_RELOC_LO16); | |
252b5132 RH |
7284 | return; |
7285 | } | |
67c0d1eb RS |
7286 | load_register (AT, &imm_expr, dbl); |
7287 | macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7288 | break; |
7289 | ||
7290 | case M_TEQ_I: | |
7291 | s = "teq"; | |
7292 | goto trap; | |
7293 | case M_TGE_I: | |
7294 | s = "tge"; | |
7295 | goto trap; | |
7296 | case M_TGEU_I: | |
7297 | s = "tgeu"; | |
7298 | goto trap; | |
7299 | case M_TLT_I: | |
7300 | s = "tlt"; | |
7301 | goto trap; | |
7302 | case M_TLTU_I: | |
7303 | s = "tltu"; | |
7304 | goto trap; | |
7305 | case M_TNE_I: | |
7306 | s = "tne"; | |
7307 | trap: | |
67c0d1eb RS |
7308 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7309 | macro_build (NULL, s, "s,t", sreg, AT); | |
252b5132 RH |
7310 | break; |
7311 | ||
252b5132 | 7312 | case M_TRUNCWS: |
43841e91 | 7313 | case M_TRUNCWD: |
e7af610e | 7314 | assert (mips_opts.isa == ISA_MIPS1); |
252b5132 RH |
7315 | sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */ |
7316 | dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */ | |
7317 | ||
7318 | /* | |
7319 | * Is the double cfc1 instruction a bug in the mips assembler; | |
7320 | * or is there a reason for it? | |
7321 | */ | |
b34976b6 | 7322 | mips_emit_delays (TRUE); |
252b5132 RH |
7323 | ++mips_opts.noreorder; |
7324 | mips_any_noreorder = 1; | |
67c0d1eb RS |
7325 | macro_build (NULL, "cfc1", "t,G", treg, RA); |
7326 | macro_build (NULL, "cfc1", "t,G", treg, RA); | |
7327 | macro_build (NULL, "nop", ""); | |
252b5132 | 7328 | expr1.X_add_number = 3; |
67c0d1eb | 7329 | macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16); |
252b5132 | 7330 | expr1.X_add_number = 2; |
67c0d1eb RS |
7331 | macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16); |
7332 | macro_build (NULL, "ctc1", "t,G", AT, RA); | |
7333 | macro_build (NULL, "nop", ""); | |
7334 | macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S", | |
7335 | dreg, sreg); | |
7336 | macro_build (NULL, "ctc1", "t,G", treg, RA); | |
7337 | macro_build (NULL, "nop", ""); | |
252b5132 RH |
7338 | --mips_opts.noreorder; |
7339 | break; | |
7340 | ||
7341 | case M_ULH: | |
7342 | s = "lb"; | |
7343 | goto ulh; | |
7344 | case M_ULHU: | |
7345 | s = "lbu"; | |
7346 | ulh: | |
7347 | if (offset_expr.X_add_number >= 0x7fff) | |
7348 | as_bad (_("operand overflow")); | |
252b5132 | 7349 | if (! target_big_endian) |
f9419b05 | 7350 | ++offset_expr.X_add_number; |
67c0d1eb | 7351 | macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg); |
252b5132 | 7352 | if (! target_big_endian) |
f9419b05 | 7353 | --offset_expr.X_add_number; |
252b5132 | 7354 | else |
f9419b05 | 7355 | ++offset_expr.X_add_number; |
67c0d1eb RS |
7356 | macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg); |
7357 | macro_build (NULL, "sll", "d,w,<", AT, AT, 8); | |
7358 | macro_build (NULL, "or", "d,v,t", treg, treg, AT); | |
252b5132 RH |
7359 | break; |
7360 | ||
7361 | case M_ULD: | |
7362 | s = "ldl"; | |
7363 | s2 = "ldr"; | |
7364 | off = 7; | |
7365 | goto ulw; | |
7366 | case M_ULW: | |
7367 | s = "lwl"; | |
7368 | s2 = "lwr"; | |
7369 | off = 3; | |
7370 | ulw: | |
7371 | if (offset_expr.X_add_number >= 0x8000 - off) | |
7372 | as_bad (_("operand overflow")); | |
af22f5b2 CD |
7373 | if (treg != breg) |
7374 | tempreg = treg; | |
7375 | else | |
7376 | tempreg = AT; | |
252b5132 RH |
7377 | if (! target_big_endian) |
7378 | offset_expr.X_add_number += off; | |
67c0d1eb | 7379 | macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg); |
252b5132 RH |
7380 | if (! target_big_endian) |
7381 | offset_expr.X_add_number -= off; | |
7382 | else | |
7383 | offset_expr.X_add_number += off; | |
67c0d1eb | 7384 | macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg); |
af22f5b2 CD |
7385 | |
7386 | /* If necessary, move the result in tempreg the final destination. */ | |
7387 | if (treg == tempreg) | |
7388 | return; | |
7389 | /* Protect second load's delay slot. */ | |
017315e4 | 7390 | load_delay_nop (); |
67c0d1eb | 7391 | move_register (treg, tempreg); |
af22f5b2 | 7392 | break; |
252b5132 RH |
7393 | |
7394 | case M_ULD_A: | |
7395 | s = "ldl"; | |
7396 | s2 = "ldr"; | |
7397 | off = 7; | |
7398 | goto ulwa; | |
7399 | case M_ULW_A: | |
7400 | s = "lwl"; | |
7401 | s2 = "lwr"; | |
7402 | off = 3; | |
7403 | ulwa: | |
d6bc6245 | 7404 | used_at = 1; |
67c0d1eb | 7405 | load_address (AT, &offset_expr, &used_at); |
252b5132 | 7406 | if (breg != 0) |
67c0d1eb | 7407 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); |
252b5132 RH |
7408 | if (! target_big_endian) |
7409 | expr1.X_add_number = off; | |
7410 | else | |
7411 | expr1.X_add_number = 0; | |
67c0d1eb | 7412 | macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
7413 | if (! target_big_endian) |
7414 | expr1.X_add_number = 0; | |
7415 | else | |
7416 | expr1.X_add_number = off; | |
67c0d1eb | 7417 | macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
7418 | break; |
7419 | ||
7420 | case M_ULH_A: | |
7421 | case M_ULHU_A: | |
d6bc6245 | 7422 | used_at = 1; |
67c0d1eb | 7423 | load_address (AT, &offset_expr, &used_at); |
252b5132 | 7424 | if (breg != 0) |
67c0d1eb | 7425 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); |
252b5132 RH |
7426 | if (target_big_endian) |
7427 | expr1.X_add_number = 0; | |
67c0d1eb | 7428 | macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)", |
17a2f251 | 7429 | treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
7430 | if (target_big_endian) |
7431 | expr1.X_add_number = 1; | |
7432 | else | |
7433 | expr1.X_add_number = 0; | |
67c0d1eb RS |
7434 | macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT); |
7435 | macro_build (NULL, "sll", "d,w,<", treg, treg, 8); | |
7436 | macro_build (NULL, "or", "d,v,t", treg, treg, AT); | |
252b5132 RH |
7437 | break; |
7438 | ||
7439 | case M_USH: | |
7440 | if (offset_expr.X_add_number >= 0x7fff) | |
7441 | as_bad (_("operand overflow")); | |
7442 | if (target_big_endian) | |
f9419b05 | 7443 | ++offset_expr.X_add_number; |
67c0d1eb RS |
7444 | macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg); |
7445 | macro_build (NULL, "srl", "d,w,<", AT, treg, 8); | |
252b5132 | 7446 | if (target_big_endian) |
f9419b05 | 7447 | --offset_expr.X_add_number; |
252b5132 | 7448 | else |
f9419b05 | 7449 | ++offset_expr.X_add_number; |
67c0d1eb | 7450 | macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg); |
252b5132 RH |
7451 | break; |
7452 | ||
7453 | case M_USD: | |
7454 | s = "sdl"; | |
7455 | s2 = "sdr"; | |
7456 | off = 7; | |
7457 | goto usw; | |
7458 | case M_USW: | |
7459 | s = "swl"; | |
7460 | s2 = "swr"; | |
7461 | off = 3; | |
7462 | usw: | |
7463 | if (offset_expr.X_add_number >= 0x8000 - off) | |
7464 | as_bad (_("operand overflow")); | |
7465 | if (! target_big_endian) | |
7466 | offset_expr.X_add_number += off; | |
67c0d1eb | 7467 | macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg); |
252b5132 RH |
7468 | if (! target_big_endian) |
7469 | offset_expr.X_add_number -= off; | |
7470 | else | |
7471 | offset_expr.X_add_number += off; | |
67c0d1eb | 7472 | macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg); |
252b5132 RH |
7473 | return; |
7474 | ||
7475 | case M_USD_A: | |
7476 | s = "sdl"; | |
7477 | s2 = "sdr"; | |
7478 | off = 7; | |
7479 | goto uswa; | |
7480 | case M_USW_A: | |
7481 | s = "swl"; | |
7482 | s2 = "swr"; | |
7483 | off = 3; | |
7484 | uswa: | |
d6bc6245 | 7485 | used_at = 1; |
67c0d1eb | 7486 | load_address (AT, &offset_expr, &used_at); |
252b5132 | 7487 | if (breg != 0) |
67c0d1eb | 7488 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); |
252b5132 RH |
7489 | if (! target_big_endian) |
7490 | expr1.X_add_number = off; | |
7491 | else | |
7492 | expr1.X_add_number = 0; | |
67c0d1eb | 7493 | macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
7494 | if (! target_big_endian) |
7495 | expr1.X_add_number = 0; | |
7496 | else | |
7497 | expr1.X_add_number = off; | |
67c0d1eb | 7498 | macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
7499 | break; |
7500 | ||
7501 | case M_USH_A: | |
d6bc6245 | 7502 | used_at = 1; |
67c0d1eb | 7503 | load_address (AT, &offset_expr, &used_at); |
252b5132 | 7504 | if (breg != 0) |
67c0d1eb | 7505 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); |
252b5132 RH |
7506 | if (! target_big_endian) |
7507 | expr1.X_add_number = 0; | |
67c0d1eb RS |
7508 | macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT); |
7509 | macro_build (NULL, "srl", "d,w,<", treg, treg, 8); | |
252b5132 RH |
7510 | if (! target_big_endian) |
7511 | expr1.X_add_number = 1; | |
7512 | else | |
7513 | expr1.X_add_number = 0; | |
67c0d1eb | 7514 | macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
7515 | if (! target_big_endian) |
7516 | expr1.X_add_number = 0; | |
7517 | else | |
7518 | expr1.X_add_number = 1; | |
67c0d1eb RS |
7519 | macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT); |
7520 | macro_build (NULL, "sll", "d,w,<", treg, treg, 8); | |
7521 | macro_build (NULL, "or", "d,v,t", treg, treg, AT); | |
252b5132 RH |
7522 | break; |
7523 | ||
7524 | default: | |
7525 | /* FIXME: Check if this is one of the itbl macros, since they | |
bdaaa2e1 | 7526 | are added dynamically. */ |
252b5132 RH |
7527 | as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name); |
7528 | break; | |
7529 | } | |
7530 | if (mips_opts.noat) | |
7531 | as_warn (_("Macro used $at after \".set noat\"")); | |
7532 | } | |
7533 | ||
7534 | /* Implement macros in mips16 mode. */ | |
7535 | ||
7536 | static void | |
17a2f251 | 7537 | mips16_macro (struct mips_cl_insn *ip) |
252b5132 RH |
7538 | { |
7539 | int mask; | |
7540 | int xreg, yreg, zreg, tmp; | |
252b5132 RH |
7541 | expressionS expr1; |
7542 | int dbl; | |
7543 | const char *s, *s2, *s3; | |
7544 | ||
7545 | mask = ip->insn_mo->mask; | |
7546 | ||
7547 | xreg = (ip->insn_opcode >> MIPS16OP_SH_RX) & MIPS16OP_MASK_RX; | |
7548 | yreg = (ip->insn_opcode >> MIPS16OP_SH_RY) & MIPS16OP_MASK_RY; | |
7549 | zreg = (ip->insn_opcode >> MIPS16OP_SH_RZ) & MIPS16OP_MASK_RZ; | |
7550 | ||
252b5132 RH |
7551 | expr1.X_op = O_constant; |
7552 | expr1.X_op_symbol = NULL; | |
7553 | expr1.X_add_symbol = NULL; | |
7554 | expr1.X_add_number = 1; | |
7555 | ||
7556 | dbl = 0; | |
7557 | ||
7558 | switch (mask) | |
7559 | { | |
7560 | default: | |
7561 | internalError (); | |
7562 | ||
7563 | case M_DDIV_3: | |
7564 | dbl = 1; | |
7565 | case M_DIV_3: | |
7566 | s = "mflo"; | |
7567 | goto do_div3; | |
7568 | case M_DREM_3: | |
7569 | dbl = 1; | |
7570 | case M_REM_3: | |
7571 | s = "mfhi"; | |
7572 | do_div3: | |
b34976b6 | 7573 | mips_emit_delays (TRUE); |
252b5132 RH |
7574 | ++mips_opts.noreorder; |
7575 | mips_any_noreorder = 1; | |
67c0d1eb | 7576 | macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg); |
252b5132 | 7577 | expr1.X_add_number = 2; |
67c0d1eb RS |
7578 | macro_build (&expr1, "bnez", "x,p", yreg); |
7579 | macro_build (NULL, "break", "6", 7); | |
bdaaa2e1 | 7580 | |
252b5132 RH |
7581 | /* FIXME: The normal code checks for of -1 / -0x80000000 here, |
7582 | since that causes an overflow. We should do that as well, | |
7583 | but I don't see how to do the comparisons without a temporary | |
7584 | register. */ | |
7585 | --mips_opts.noreorder; | |
67c0d1eb | 7586 | macro_build (NULL, s, "x", zreg); |
252b5132 RH |
7587 | break; |
7588 | ||
7589 | case M_DIVU_3: | |
7590 | s = "divu"; | |
7591 | s2 = "mflo"; | |
7592 | goto do_divu3; | |
7593 | case M_REMU_3: | |
7594 | s = "divu"; | |
7595 | s2 = "mfhi"; | |
7596 | goto do_divu3; | |
7597 | case M_DDIVU_3: | |
7598 | s = "ddivu"; | |
7599 | s2 = "mflo"; | |
7600 | goto do_divu3; | |
7601 | case M_DREMU_3: | |
7602 | s = "ddivu"; | |
7603 | s2 = "mfhi"; | |
7604 | do_divu3: | |
b34976b6 | 7605 | mips_emit_delays (TRUE); |
252b5132 RH |
7606 | ++mips_opts.noreorder; |
7607 | mips_any_noreorder = 1; | |
67c0d1eb | 7608 | macro_build (NULL, s, "0,x,y", xreg, yreg); |
252b5132 | 7609 | expr1.X_add_number = 2; |
67c0d1eb RS |
7610 | macro_build (&expr1, "bnez", "x,p", yreg); |
7611 | macro_build (NULL, "break", "6", 7); | |
252b5132 | 7612 | --mips_opts.noreorder; |
67c0d1eb | 7613 | macro_build (NULL, s2, "x", zreg); |
252b5132 RH |
7614 | break; |
7615 | ||
7616 | case M_DMUL: | |
7617 | dbl = 1; | |
7618 | case M_MUL: | |
67c0d1eb RS |
7619 | macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg); |
7620 | macro_build (NULL, "mflo", "x", zreg); | |
252b5132 RH |
7621 | return; |
7622 | ||
7623 | case M_DSUBU_I: | |
7624 | dbl = 1; | |
7625 | goto do_subu; | |
7626 | case M_SUBU_I: | |
7627 | do_subu: | |
7628 | if (imm_expr.X_op != O_constant) | |
7629 | as_bad (_("Unsupported large constant")); | |
7630 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 7631 | macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg); |
252b5132 RH |
7632 | break; |
7633 | ||
7634 | case M_SUBU_I_2: | |
7635 | if (imm_expr.X_op != O_constant) | |
7636 | as_bad (_("Unsupported large constant")); | |
7637 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 7638 | macro_build (&imm_expr, "addiu", "x,k", xreg); |
252b5132 RH |
7639 | break; |
7640 | ||
7641 | case M_DSUBU_I_2: | |
7642 | if (imm_expr.X_op != O_constant) | |
7643 | as_bad (_("Unsupported large constant")); | |
7644 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 7645 | macro_build (&imm_expr, "daddiu", "y,j", yreg); |
252b5132 RH |
7646 | break; |
7647 | ||
7648 | case M_BEQ: | |
7649 | s = "cmp"; | |
7650 | s2 = "bteqz"; | |
7651 | goto do_branch; | |
7652 | case M_BNE: | |
7653 | s = "cmp"; | |
7654 | s2 = "btnez"; | |
7655 | goto do_branch; | |
7656 | case M_BLT: | |
7657 | s = "slt"; | |
7658 | s2 = "btnez"; | |
7659 | goto do_branch; | |
7660 | case M_BLTU: | |
7661 | s = "sltu"; | |
7662 | s2 = "btnez"; | |
7663 | goto do_branch; | |
7664 | case M_BLE: | |
7665 | s = "slt"; | |
7666 | s2 = "bteqz"; | |
7667 | goto do_reverse_branch; | |
7668 | case M_BLEU: | |
7669 | s = "sltu"; | |
7670 | s2 = "bteqz"; | |
7671 | goto do_reverse_branch; | |
7672 | case M_BGE: | |
7673 | s = "slt"; | |
7674 | s2 = "bteqz"; | |
7675 | goto do_branch; | |
7676 | case M_BGEU: | |
7677 | s = "sltu"; | |
7678 | s2 = "bteqz"; | |
7679 | goto do_branch; | |
7680 | case M_BGT: | |
7681 | s = "slt"; | |
7682 | s2 = "btnez"; | |
7683 | goto do_reverse_branch; | |
7684 | case M_BGTU: | |
7685 | s = "sltu"; | |
7686 | s2 = "btnez"; | |
7687 | ||
7688 | do_reverse_branch: | |
7689 | tmp = xreg; | |
7690 | xreg = yreg; | |
7691 | yreg = tmp; | |
7692 | ||
7693 | do_branch: | |
67c0d1eb RS |
7694 | macro_build (NULL, s, "x,y", xreg, yreg); |
7695 | macro_build (&offset_expr, s2, "p"); | |
252b5132 RH |
7696 | break; |
7697 | ||
7698 | case M_BEQ_I: | |
7699 | s = "cmpi"; | |
7700 | s2 = "bteqz"; | |
7701 | s3 = "x,U"; | |
7702 | goto do_branch_i; | |
7703 | case M_BNE_I: | |
7704 | s = "cmpi"; | |
7705 | s2 = "btnez"; | |
7706 | s3 = "x,U"; | |
7707 | goto do_branch_i; | |
7708 | case M_BLT_I: | |
7709 | s = "slti"; | |
7710 | s2 = "btnez"; | |
7711 | s3 = "x,8"; | |
7712 | goto do_branch_i; | |
7713 | case M_BLTU_I: | |
7714 | s = "sltiu"; | |
7715 | s2 = "btnez"; | |
7716 | s3 = "x,8"; | |
7717 | goto do_branch_i; | |
7718 | case M_BLE_I: | |
7719 | s = "slti"; | |
7720 | s2 = "btnez"; | |
7721 | s3 = "x,8"; | |
7722 | goto do_addone_branch_i; | |
7723 | case M_BLEU_I: | |
7724 | s = "sltiu"; | |
7725 | s2 = "btnez"; | |
7726 | s3 = "x,8"; | |
7727 | goto do_addone_branch_i; | |
7728 | case M_BGE_I: | |
7729 | s = "slti"; | |
7730 | s2 = "bteqz"; | |
7731 | s3 = "x,8"; | |
7732 | goto do_branch_i; | |
7733 | case M_BGEU_I: | |
7734 | s = "sltiu"; | |
7735 | s2 = "bteqz"; | |
7736 | s3 = "x,8"; | |
7737 | goto do_branch_i; | |
7738 | case M_BGT_I: | |
7739 | s = "slti"; | |
7740 | s2 = "bteqz"; | |
7741 | s3 = "x,8"; | |
7742 | goto do_addone_branch_i; | |
7743 | case M_BGTU_I: | |
7744 | s = "sltiu"; | |
7745 | s2 = "bteqz"; | |
7746 | s3 = "x,8"; | |
7747 | ||
7748 | do_addone_branch_i: | |
7749 | if (imm_expr.X_op != O_constant) | |
7750 | as_bad (_("Unsupported large constant")); | |
7751 | ++imm_expr.X_add_number; | |
7752 | ||
7753 | do_branch_i: | |
67c0d1eb RS |
7754 | macro_build (&imm_expr, s, s3, xreg); |
7755 | macro_build (&offset_expr, s2, "p"); | |
252b5132 RH |
7756 | break; |
7757 | ||
7758 | case M_ABS: | |
7759 | expr1.X_add_number = 0; | |
67c0d1eb | 7760 | macro_build (&expr1, "slti", "x,8", yreg); |
252b5132 | 7761 | if (xreg != yreg) |
67c0d1eb | 7762 | move_register (xreg, yreg); |
252b5132 | 7763 | expr1.X_add_number = 2; |
67c0d1eb RS |
7764 | macro_build (&expr1, "bteqz", "p"); |
7765 | macro_build (NULL, "neg", "x,w", xreg, xreg); | |
252b5132 RH |
7766 | } |
7767 | } | |
7768 | ||
7769 | /* For consistency checking, verify that all bits are specified either | |
7770 | by the match/mask part of the instruction definition, or by the | |
7771 | operand list. */ | |
7772 | static int | |
17a2f251 | 7773 | validate_mips_insn (const struct mips_opcode *opc) |
252b5132 RH |
7774 | { |
7775 | const char *p = opc->args; | |
7776 | char c; | |
7777 | unsigned long used_bits = opc->mask; | |
7778 | ||
7779 | if ((used_bits & opc->match) != opc->match) | |
7780 | { | |
7781 | as_bad (_("internal: bad mips opcode (mask error): %s %s"), | |
7782 | opc->name, opc->args); | |
7783 | return 0; | |
7784 | } | |
7785 | #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift))) | |
7786 | while (*p) | |
7787 | switch (c = *p++) | |
7788 | { | |
7789 | case ',': break; | |
7790 | case '(': break; | |
7791 | case ')': break; | |
af7ee8bf CD |
7792 | case '+': |
7793 | switch (c = *p++) | |
7794 | { | |
7795 | case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break; | |
7796 | case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break; | |
7797 | case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break; | |
bbcc0807 CD |
7798 | case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD); |
7799 | USE_BITS (OP_MASK_SEL, OP_SH_SEL); break; | |
5f74bc13 CD |
7800 | case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break; |
7801 | case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break; | |
7802 | case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break; | |
7803 | case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break; | |
7804 | case 'I': break; | |
af7ee8bf CD |
7805 | default: |
7806 | as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"), | |
7807 | c, opc->name, opc->args); | |
7808 | return 0; | |
7809 | } | |
7810 | break; | |
252b5132 RH |
7811 | case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break; |
7812 | case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break; | |
7813 | case 'A': break; | |
4372b673 | 7814 | case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break; |
252b5132 RH |
7815 | case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break; |
7816 | case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break; | |
7817 | case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break; | |
7818 | case 'F': break; | |
7819 | case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break; | |
156c2f8b | 7820 | case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break; |
252b5132 | 7821 | case 'I': break; |
e972090a | 7822 | case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break; |
af7ee8bf | 7823 | case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break; |
252b5132 RH |
7824 | case 'L': break; |
7825 | case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break; | |
7826 | case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break; | |
deec1734 CD |
7827 | case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break; |
7828 | case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL); | |
7829 | USE_BITS (OP_MASK_FT, OP_SH_FT); break; | |
252b5132 RH |
7830 | case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break; |
7831 | case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break; | |
7832 | case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break; | |
7833 | case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break; | |
7834 | case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break; | |
deec1734 CD |
7835 | case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break; |
7836 | case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break; | |
7837 | case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break; | |
252b5132 RH |
7838 | case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break; |
7839 | case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break; | |
7840 | case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break; | |
7841 | case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break; | |
7842 | case 'f': break; | |
7843 | case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break; | |
7844 | case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break; | |
7845 | case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break; | |
7846 | case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break; | |
7847 | case 'l': break; | |
7848 | case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break; | |
7849 | case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break; | |
7850 | case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break; | |
7851 | case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break; | |
7852 | case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break; | |
7853 | case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break; | |
7854 | case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break; | |
7855 | case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break; | |
7856 | case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break; | |
7857 | case 'x': break; | |
7858 | case 'z': break; | |
7859 | case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break; | |
4372b673 NC |
7860 | case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD); |
7861 | USE_BITS (OP_MASK_RT, OP_SH_RT); break; | |
60b63b72 RS |
7862 | case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break; |
7863 | case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break; | |
7864 | case '[': break; | |
7865 | case ']': break; | |
252b5132 RH |
7866 | default: |
7867 | as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"), | |
7868 | c, opc->name, opc->args); | |
7869 | return 0; | |
7870 | } | |
7871 | #undef USE_BITS | |
7872 | if (used_bits != 0xffffffff) | |
7873 | { | |
7874 | as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"), | |
7875 | ~used_bits & 0xffffffff, opc->name, opc->args); | |
7876 | return 0; | |
7877 | } | |
7878 | return 1; | |
7879 | } | |
7880 | ||
7881 | /* This routine assembles an instruction into its binary format. As a | |
7882 | side effect, it sets one of the global variables imm_reloc or | |
7883 | offset_reloc to the type of relocation to do if one of the operands | |
7884 | is an address expression. */ | |
7885 | ||
7886 | static void | |
17a2f251 | 7887 | mips_ip (char *str, struct mips_cl_insn *ip) |
252b5132 RH |
7888 | { |
7889 | char *s; | |
7890 | const char *args; | |
43841e91 | 7891 | char c = 0; |
252b5132 RH |
7892 | struct mips_opcode *insn; |
7893 | char *argsStart; | |
7894 | unsigned int regno; | |
7895 | unsigned int lastregno = 0; | |
af7ee8bf | 7896 | unsigned int lastpos = 0; |
071742cf | 7897 | unsigned int limlo, limhi; |
252b5132 RH |
7898 | char *s_reset; |
7899 | char save_c = 0; | |
252b5132 RH |
7900 | |
7901 | insn_error = NULL; | |
7902 | ||
7903 | /* If the instruction contains a '.', we first try to match an instruction | |
7904 | including the '.'. Then we try again without the '.'. */ | |
7905 | insn = NULL; | |
3882b010 | 7906 | for (s = str; *s != '\0' && !ISSPACE (*s); ++s) |
252b5132 RH |
7907 | continue; |
7908 | ||
7909 | /* If we stopped on whitespace, then replace the whitespace with null for | |
7910 | the call to hash_find. Save the character we replaced just in case we | |
7911 | have to re-parse the instruction. */ | |
3882b010 | 7912 | if (ISSPACE (*s)) |
252b5132 RH |
7913 | { |
7914 | save_c = *s; | |
7915 | *s++ = '\0'; | |
7916 | } | |
bdaaa2e1 | 7917 | |
252b5132 RH |
7918 | insn = (struct mips_opcode *) hash_find (op_hash, str); |
7919 | ||
7920 | /* If we didn't find the instruction in the opcode table, try again, but | |
7921 | this time with just the instruction up to, but not including the | |
7922 | first '.'. */ | |
7923 | if (insn == NULL) | |
7924 | { | |
bdaaa2e1 | 7925 | /* Restore the character we overwrite above (if any). */ |
252b5132 RH |
7926 | if (save_c) |
7927 | *(--s) = save_c; | |
7928 | ||
7929 | /* Scan up to the first '.' or whitespace. */ | |
3882b010 L |
7930 | for (s = str; |
7931 | *s != '\0' && *s != '.' && !ISSPACE (*s); | |
7932 | ++s) | |
252b5132 RH |
7933 | continue; |
7934 | ||
7935 | /* If we did not find a '.', then we can quit now. */ | |
7936 | if (*s != '.') | |
7937 | { | |
7938 | insn_error = "unrecognized opcode"; | |
7939 | return; | |
7940 | } | |
7941 | ||
7942 | /* Lookup the instruction in the hash table. */ | |
7943 | *s++ = '\0'; | |
7944 | if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL) | |
7945 | { | |
7946 | insn_error = "unrecognized opcode"; | |
7947 | return; | |
7948 | } | |
252b5132 RH |
7949 | } |
7950 | ||
7951 | argsStart = s; | |
7952 | for (;;) | |
7953 | { | |
b34976b6 | 7954 | bfd_boolean ok; |
252b5132 RH |
7955 | |
7956 | assert (strcmp (insn->name, str) == 0); | |
7957 | ||
1f25f5d3 CD |
7958 | if (OPCODE_IS_MEMBER (insn, |
7959 | (mips_opts.isa | |
3396de36 | 7960 | | (file_ase_mips16 ? INSN_MIPS16 : 0) |
deec1734 | 7961 | | (mips_opts.ase_mdmx ? INSN_MDMX : 0) |
98d3f06f | 7962 | | (mips_opts.ase_mips3d ? INSN_MIPS3D : 0)), |
fef14a42 | 7963 | mips_opts.arch)) |
b34976b6 | 7964 | ok = TRUE; |
bdaaa2e1 | 7965 | else |
b34976b6 | 7966 | ok = FALSE; |
bdaaa2e1 | 7967 | |
252b5132 RH |
7968 | if (insn->pinfo != INSN_MACRO) |
7969 | { | |
fef14a42 | 7970 | if (mips_opts.arch == CPU_R4650 && (insn->pinfo & FP_D) != 0) |
b34976b6 | 7971 | ok = FALSE; |
252b5132 RH |
7972 | } |
7973 | ||
7974 | if (! ok) | |
7975 | { | |
7976 | if (insn + 1 < &mips_opcodes[NUMOPCODES] | |
7977 | && strcmp (insn->name, insn[1].name) == 0) | |
7978 | { | |
7979 | ++insn; | |
7980 | continue; | |
7981 | } | |
252b5132 | 7982 | else |
beae10d5 | 7983 | { |
268f6bed L |
7984 | if (!insn_error) |
7985 | { | |
7986 | static char buf[100]; | |
fef14a42 TS |
7987 | sprintf (buf, |
7988 | _("opcode not supported on this processor: %s (%s)"), | |
7989 | mips_cpu_info_from_arch (mips_opts.arch)->name, | |
7990 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
268f6bed L |
7991 | insn_error = buf; |
7992 | } | |
7993 | if (save_c) | |
7994 | *(--s) = save_c; | |
2bd7f1f3 | 7995 | return; |
252b5132 | 7996 | } |
252b5132 RH |
7997 | } |
7998 | ||
7999 | ip->insn_mo = insn; | |
8000 | ip->insn_opcode = insn->match; | |
268f6bed | 8001 | insn_error = NULL; |
252b5132 RH |
8002 | for (args = insn->args;; ++args) |
8003 | { | |
deec1734 CD |
8004 | int is_mdmx; |
8005 | ||
ad8d3bb3 | 8006 | s += strspn (s, " \t"); |
deec1734 | 8007 | is_mdmx = 0; |
252b5132 RH |
8008 | switch (*args) |
8009 | { | |
8010 | case '\0': /* end of args */ | |
8011 | if (*s == '\0') | |
8012 | return; | |
8013 | break; | |
8014 | ||
8015 | case ',': | |
8016 | if (*s++ == *args) | |
8017 | continue; | |
8018 | s--; | |
8019 | switch (*++args) | |
8020 | { | |
8021 | case 'r': | |
8022 | case 'v': | |
38487616 | 8023 | ip->insn_opcode |= lastregno << OP_SH_RS; |
252b5132 RH |
8024 | continue; |
8025 | ||
8026 | case 'w': | |
38487616 TS |
8027 | ip->insn_opcode |= lastregno << OP_SH_RT; |
8028 | continue; | |
8029 | ||
252b5132 | 8030 | case 'W': |
38487616 | 8031 | ip->insn_opcode |= lastregno << OP_SH_FT; |
252b5132 RH |
8032 | continue; |
8033 | ||
8034 | case 'V': | |
38487616 | 8035 | ip->insn_opcode |= lastregno << OP_SH_FS; |
252b5132 RH |
8036 | continue; |
8037 | } | |
8038 | break; | |
8039 | ||
8040 | case '(': | |
8041 | /* Handle optional base register. | |
8042 | Either the base register is omitted or | |
bdaaa2e1 | 8043 | we must have a left paren. */ |
252b5132 RH |
8044 | /* This is dependent on the next operand specifier |
8045 | is a base register specification. */ | |
8046 | assert (args[1] == 'b' || args[1] == '5' | |
8047 | || args[1] == '-' || args[1] == '4'); | |
8048 | if (*s == '\0') | |
8049 | return; | |
8050 | ||
8051 | case ')': /* these must match exactly */ | |
60b63b72 RS |
8052 | case '[': |
8053 | case ']': | |
252b5132 RH |
8054 | if (*s++ == *args) |
8055 | continue; | |
8056 | break; | |
8057 | ||
af7ee8bf CD |
8058 | case '+': /* Opcode extension character. */ |
8059 | switch (*++args) | |
8060 | { | |
071742cf CD |
8061 | case 'A': /* ins/ext position, becomes LSB. */ |
8062 | limlo = 0; | |
8063 | limhi = 31; | |
5f74bc13 CD |
8064 | goto do_lsb; |
8065 | case 'E': | |
8066 | limlo = 32; | |
8067 | limhi = 63; | |
8068 | goto do_lsb; | |
8069 | do_lsb: | |
071742cf CD |
8070 | my_getExpression (&imm_expr, s); |
8071 | check_absolute_expr (ip, &imm_expr); | |
8072 | if ((unsigned long) imm_expr.X_add_number < limlo | |
8073 | || (unsigned long) imm_expr.X_add_number > limhi) | |
8074 | { | |
8075 | as_bad (_("Improper position (%lu)"), | |
8076 | (unsigned long) imm_expr.X_add_number); | |
8077 | imm_expr.X_add_number = limlo; | |
8078 | } | |
8079 | lastpos = imm_expr.X_add_number; | |
8080 | ip->insn_opcode |= (imm_expr.X_add_number | |
8081 | & OP_MASK_SHAMT) << OP_SH_SHAMT; | |
8082 | imm_expr.X_op = O_absent; | |
8083 | s = expr_end; | |
8084 | continue; | |
8085 | ||
8086 | case 'B': /* ins size, becomes MSB. */ | |
8087 | limlo = 1; | |
8088 | limhi = 32; | |
5f74bc13 CD |
8089 | goto do_msb; |
8090 | case 'F': | |
8091 | limlo = 33; | |
8092 | limhi = 64; | |
8093 | goto do_msb; | |
8094 | do_msb: | |
071742cf CD |
8095 | my_getExpression (&imm_expr, s); |
8096 | check_absolute_expr (ip, &imm_expr); | |
8097 | /* Check for negative input so that small negative numbers | |
8098 | will not succeed incorrectly. The checks against | |
8099 | (pos+size) transitively check "size" itself, | |
8100 | assuming that "pos" is reasonable. */ | |
8101 | if ((long) imm_expr.X_add_number < 0 | |
8102 | || ((unsigned long) imm_expr.X_add_number | |
8103 | + lastpos) < limlo | |
8104 | || ((unsigned long) imm_expr.X_add_number | |
8105 | + lastpos) > limhi) | |
8106 | { | |
8107 | as_bad (_("Improper insert size (%lu, position %lu)"), | |
8108 | (unsigned long) imm_expr.X_add_number, | |
8109 | (unsigned long) lastpos); | |
8110 | imm_expr.X_add_number = limlo - lastpos; | |
8111 | } | |
8112 | ip->insn_opcode |= ((lastpos + imm_expr.X_add_number - 1) | |
8113 | & OP_MASK_INSMSB) << OP_SH_INSMSB; | |
8114 | imm_expr.X_op = O_absent; | |
8115 | s = expr_end; | |
8116 | continue; | |
8117 | ||
8118 | case 'C': /* ext size, becomes MSBD. */ | |
8119 | limlo = 1; | |
8120 | limhi = 32; | |
5f74bc13 CD |
8121 | goto do_msbd; |
8122 | case 'G': | |
8123 | limlo = 33; | |
8124 | limhi = 64; | |
8125 | goto do_msbd; | |
8126 | case 'H': | |
8127 | limlo = 33; | |
8128 | limhi = 64; | |
8129 | goto do_msbd; | |
8130 | do_msbd: | |
071742cf CD |
8131 | my_getExpression (&imm_expr, s); |
8132 | check_absolute_expr (ip, &imm_expr); | |
8133 | /* Check for negative input so that small negative numbers | |
8134 | will not succeed incorrectly. The checks against | |
8135 | (pos+size) transitively check "size" itself, | |
8136 | assuming that "pos" is reasonable. */ | |
8137 | if ((long) imm_expr.X_add_number < 0 | |
8138 | || ((unsigned long) imm_expr.X_add_number | |
8139 | + lastpos) < limlo | |
8140 | || ((unsigned long) imm_expr.X_add_number | |
8141 | + lastpos) > limhi) | |
8142 | { | |
8143 | as_bad (_("Improper extract size (%lu, position %lu)"), | |
8144 | (unsigned long) imm_expr.X_add_number, | |
8145 | (unsigned long) lastpos); | |
8146 | imm_expr.X_add_number = limlo - lastpos; | |
8147 | } | |
8148 | ip->insn_opcode |= ((imm_expr.X_add_number - 1) | |
8149 | & OP_MASK_EXTMSBD) << OP_SH_EXTMSBD; | |
8150 | imm_expr.X_op = O_absent; | |
8151 | s = expr_end; | |
8152 | continue; | |
af7ee8bf | 8153 | |
bbcc0807 CD |
8154 | case 'D': |
8155 | /* +D is for disassembly only; never match. */ | |
8156 | break; | |
8157 | ||
5f74bc13 CD |
8158 | case 'I': |
8159 | /* "+I" is like "I", except that imm2_expr is used. */ | |
8160 | my_getExpression (&imm2_expr, s); | |
8161 | if (imm2_expr.X_op != O_big | |
8162 | && imm2_expr.X_op != O_constant) | |
8163 | insn_error = _("absolute expression required"); | |
13757d0c | 8164 | normalize_constant_expr (&imm2_expr); |
5f74bc13 CD |
8165 | s = expr_end; |
8166 | continue; | |
8167 | ||
af7ee8bf CD |
8168 | default: |
8169 | as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"), | |
8170 | *args, insn->name, insn->args); | |
8171 | /* Further processing is fruitless. */ | |
8172 | return; | |
8173 | } | |
8174 | break; | |
8175 | ||
252b5132 RH |
8176 | case '<': /* must be at least one digit */ |
8177 | /* | |
8178 | * According to the manual, if the shift amount is greater | |
b6ff326e KH |
8179 | * than 31 or less than 0, then the shift amount should be |
8180 | * mod 32. In reality the mips assembler issues an error. | |
252b5132 RH |
8181 | * We issue a warning and mask out all but the low 5 bits. |
8182 | */ | |
8183 | my_getExpression (&imm_expr, s); | |
8184 | check_absolute_expr (ip, &imm_expr); | |
8185 | if ((unsigned long) imm_expr.X_add_number > 31) | |
8186 | { | |
793b27f4 TS |
8187 | as_warn (_("Improper shift amount (%lu)"), |
8188 | (unsigned long) imm_expr.X_add_number); | |
38487616 | 8189 | imm_expr.X_add_number &= OP_MASK_SHAMT; |
252b5132 | 8190 | } |
38487616 | 8191 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_SHAMT; |
252b5132 RH |
8192 | imm_expr.X_op = O_absent; |
8193 | s = expr_end; | |
8194 | continue; | |
8195 | ||
8196 | case '>': /* shift amount minus 32 */ | |
8197 | my_getExpression (&imm_expr, s); | |
8198 | check_absolute_expr (ip, &imm_expr); | |
8199 | if ((unsigned long) imm_expr.X_add_number < 32 | |
8200 | || (unsigned long) imm_expr.X_add_number > 63) | |
8201 | break; | |
38487616 | 8202 | ip->insn_opcode |= (imm_expr.X_add_number - 32) << OP_SH_SHAMT; |
252b5132 RH |
8203 | imm_expr.X_op = O_absent; |
8204 | s = expr_end; | |
8205 | continue; | |
8206 | ||
252b5132 RH |
8207 | case 'k': /* cache code */ |
8208 | case 'h': /* prefx code */ | |
8209 | my_getExpression (&imm_expr, s); | |
8210 | check_absolute_expr (ip, &imm_expr); | |
8211 | if ((unsigned long) imm_expr.X_add_number > 31) | |
8212 | { | |
8213 | as_warn (_("Invalid value for `%s' (%lu)"), | |
8214 | ip->insn_mo->name, | |
8215 | (unsigned long) imm_expr.X_add_number); | |
8216 | imm_expr.X_add_number &= 0x1f; | |
8217 | } | |
8218 | if (*args == 'k') | |
8219 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CACHE; | |
8220 | else | |
8221 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_PREFX; | |
8222 | imm_expr.X_op = O_absent; | |
8223 | s = expr_end; | |
8224 | continue; | |
8225 | ||
8226 | case 'c': /* break code */ | |
8227 | my_getExpression (&imm_expr, s); | |
8228 | check_absolute_expr (ip, &imm_expr); | |
793b27f4 | 8229 | if ((unsigned long) imm_expr.X_add_number > 1023) |
252b5132 | 8230 | { |
793b27f4 TS |
8231 | as_warn (_("Illegal break code (%lu)"), |
8232 | (unsigned long) imm_expr.X_add_number); | |
38487616 | 8233 | imm_expr.X_add_number &= OP_MASK_CODE; |
252b5132 | 8234 | } |
38487616 | 8235 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE; |
252b5132 RH |
8236 | imm_expr.X_op = O_absent; |
8237 | s = expr_end; | |
8238 | continue; | |
8239 | ||
8240 | case 'q': /* lower break code */ | |
8241 | my_getExpression (&imm_expr, s); | |
8242 | check_absolute_expr (ip, &imm_expr); | |
793b27f4 | 8243 | if ((unsigned long) imm_expr.X_add_number > 1023) |
252b5132 | 8244 | { |
793b27f4 TS |
8245 | as_warn (_("Illegal lower break code (%lu)"), |
8246 | (unsigned long) imm_expr.X_add_number); | |
38487616 | 8247 | imm_expr.X_add_number &= OP_MASK_CODE2; |
252b5132 | 8248 | } |
38487616 | 8249 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE2; |
252b5132 RH |
8250 | imm_expr.X_op = O_absent; |
8251 | s = expr_end; | |
8252 | continue; | |
8253 | ||
4372b673 | 8254 | case 'B': /* 20-bit syscall/break code. */ |
156c2f8b | 8255 | my_getExpression (&imm_expr, s); |
156c2f8b | 8256 | check_absolute_expr (ip, &imm_expr); |
793b27f4 TS |
8257 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20) |
8258 | as_warn (_("Illegal 20-bit code (%lu)"), | |
8259 | (unsigned long) imm_expr.X_add_number); | |
38487616 | 8260 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE20; |
252b5132 RH |
8261 | imm_expr.X_op = O_absent; |
8262 | s = expr_end; | |
8263 | continue; | |
8264 | ||
98d3f06f | 8265 | case 'C': /* Coprocessor code */ |
beae10d5 | 8266 | my_getExpression (&imm_expr, s); |
252b5132 | 8267 | check_absolute_expr (ip, &imm_expr); |
98d3f06f | 8268 | if ((unsigned long) imm_expr.X_add_number >= (1 << 25)) |
252b5132 | 8269 | { |
793b27f4 TS |
8270 | as_warn (_("Coproccesor code > 25 bits (%lu)"), |
8271 | (unsigned long) imm_expr.X_add_number); | |
98d3f06f | 8272 | imm_expr.X_add_number &= ((1 << 25) - 1); |
252b5132 | 8273 | } |
beae10d5 KH |
8274 | ip->insn_opcode |= imm_expr.X_add_number; |
8275 | imm_expr.X_op = O_absent; | |
8276 | s = expr_end; | |
8277 | continue; | |
252b5132 | 8278 | |
4372b673 NC |
8279 | case 'J': /* 19-bit wait code. */ |
8280 | my_getExpression (&imm_expr, s); | |
8281 | check_absolute_expr (ip, &imm_expr); | |
793b27f4 TS |
8282 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19) |
8283 | as_warn (_("Illegal 19-bit code (%lu)"), | |
8284 | (unsigned long) imm_expr.X_add_number); | |
38487616 | 8285 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_CODE19; |
4372b673 NC |
8286 | imm_expr.X_op = O_absent; |
8287 | s = expr_end; | |
8288 | continue; | |
8289 | ||
252b5132 | 8290 | case 'P': /* Performance register */ |
beae10d5 | 8291 | my_getExpression (&imm_expr, s); |
252b5132 | 8292 | check_absolute_expr (ip, &imm_expr); |
beae10d5 | 8293 | if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1) |
252b5132 | 8294 | { |
793b27f4 TS |
8295 | as_warn (_("Invalid performance register (%lu)"), |
8296 | (unsigned long) imm_expr.X_add_number); | |
38487616 | 8297 | imm_expr.X_add_number &= OP_MASK_PERFREG; |
252b5132 | 8298 | } |
38487616 | 8299 | ip->insn_opcode |= (imm_expr.X_add_number << OP_SH_PERFREG); |
beae10d5 KH |
8300 | imm_expr.X_op = O_absent; |
8301 | s = expr_end; | |
8302 | continue; | |
252b5132 RH |
8303 | |
8304 | case 'b': /* base register */ | |
8305 | case 'd': /* destination register */ | |
8306 | case 's': /* source register */ | |
8307 | case 't': /* target register */ | |
8308 | case 'r': /* both target and source */ | |
8309 | case 'v': /* both dest and source */ | |
8310 | case 'w': /* both dest and target */ | |
8311 | case 'E': /* coprocessor target register */ | |
8312 | case 'G': /* coprocessor destination register */ | |
af7ee8bf | 8313 | case 'K': /* 'rdhwr' destination register */ |
252b5132 RH |
8314 | case 'x': /* ignore register name */ |
8315 | case 'z': /* must be zero register */ | |
4372b673 | 8316 | case 'U': /* destination register (clo/clz). */ |
252b5132 RH |
8317 | s_reset = s; |
8318 | if (s[0] == '$') | |
8319 | { | |
8320 | ||
3882b010 | 8321 | if (ISDIGIT (s[1])) |
252b5132 RH |
8322 | { |
8323 | ++s; | |
8324 | regno = 0; | |
8325 | do | |
8326 | { | |
8327 | regno *= 10; | |
8328 | regno += *s - '0'; | |
8329 | ++s; | |
8330 | } | |
3882b010 | 8331 | while (ISDIGIT (*s)); |
252b5132 RH |
8332 | if (regno > 31) |
8333 | as_bad (_("Invalid register number (%d)"), regno); | |
8334 | } | |
af7ee8bf | 8335 | else if (*args == 'E' || *args == 'G' || *args == 'K') |
252b5132 RH |
8336 | goto notreg; |
8337 | else | |
8338 | { | |
76db943d TS |
8339 | if (s[1] == 'r' && s[2] == 'a') |
8340 | { | |
8341 | s += 3; | |
8342 | regno = RA; | |
8343 | } | |
8344 | else if (s[1] == 'f' && s[2] == 'p') | |
252b5132 RH |
8345 | { |
8346 | s += 3; | |
8347 | regno = FP; | |
8348 | } | |
8349 | else if (s[1] == 's' && s[2] == 'p') | |
8350 | { | |
8351 | s += 3; | |
8352 | regno = SP; | |
8353 | } | |
8354 | else if (s[1] == 'g' && s[2] == 'p') | |
8355 | { | |
8356 | s += 3; | |
8357 | regno = GP; | |
8358 | } | |
8359 | else if (s[1] == 'a' && s[2] == 't') | |
8360 | { | |
8361 | s += 3; | |
8362 | regno = AT; | |
8363 | } | |
8364 | else if (s[1] == 'k' && s[2] == 't' && s[3] == '0') | |
8365 | { | |
8366 | s += 4; | |
8367 | regno = KT0; | |
8368 | } | |
8369 | else if (s[1] == 'k' && s[2] == 't' && s[3] == '1') | |
8370 | { | |
8371 | s += 4; | |
8372 | regno = KT1; | |
8373 | } | |
85b51719 TS |
8374 | else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o') |
8375 | { | |
8376 | s += 5; | |
8377 | regno = ZERO; | |
8378 | } | |
252b5132 RH |
8379 | else if (itbl_have_entries) |
8380 | { | |
8381 | char *p, *n; | |
d7ba4a77 | 8382 | unsigned long r; |
252b5132 | 8383 | |
d7ba4a77 | 8384 | p = s + 1; /* advance past '$' */ |
252b5132 RH |
8385 | n = itbl_get_field (&p); /* n is name */ |
8386 | ||
d7ba4a77 ILT |
8387 | /* See if this is a register defined in an |
8388 | itbl entry. */ | |
8389 | if (itbl_get_reg_val (n, &r)) | |
252b5132 RH |
8390 | { |
8391 | /* Get_field advances to the start of | |
8392 | the next field, so we need to back | |
d7ba4a77 | 8393 | rack to the end of the last field. */ |
bdaaa2e1 | 8394 | if (p) |
252b5132 | 8395 | s = p - 1; |
bdaaa2e1 | 8396 | else |
d7ba4a77 | 8397 | s = strchr (s, '\0'); |
252b5132 RH |
8398 | regno = r; |
8399 | } | |
8400 | else | |
8401 | goto notreg; | |
beae10d5 | 8402 | } |
252b5132 RH |
8403 | else |
8404 | goto notreg; | |
8405 | } | |
8406 | if (regno == AT | |
8407 | && ! mips_opts.noat | |
8408 | && *args != 'E' | |
af7ee8bf CD |
8409 | && *args != 'G' |
8410 | && *args != 'K') | |
252b5132 RH |
8411 | as_warn (_("Used $at without \".set noat\"")); |
8412 | c = *args; | |
8413 | if (*s == ' ') | |
f9419b05 | 8414 | ++s; |
252b5132 RH |
8415 | if (args[1] != *s) |
8416 | { | |
8417 | if (c == 'r' || c == 'v' || c == 'w') | |
8418 | { | |
8419 | regno = lastregno; | |
8420 | s = s_reset; | |
f9419b05 | 8421 | ++args; |
252b5132 RH |
8422 | } |
8423 | } | |
8424 | /* 'z' only matches $0. */ | |
8425 | if (c == 'z' && regno != 0) | |
8426 | break; | |
8427 | ||
bdaaa2e1 KH |
8428 | /* Now that we have assembled one operand, we use the args string |
8429 | * to figure out where it goes in the instruction. */ | |
252b5132 RH |
8430 | switch (c) |
8431 | { | |
8432 | case 'r': | |
8433 | case 's': | |
8434 | case 'v': | |
8435 | case 'b': | |
38487616 | 8436 | ip->insn_opcode |= regno << OP_SH_RS; |
252b5132 RH |
8437 | break; |
8438 | case 'd': | |
8439 | case 'G': | |
af7ee8bf | 8440 | case 'K': |
38487616 | 8441 | ip->insn_opcode |= regno << OP_SH_RD; |
252b5132 | 8442 | break; |
4372b673 | 8443 | case 'U': |
38487616 TS |
8444 | ip->insn_opcode |= regno << OP_SH_RD; |
8445 | ip->insn_opcode |= regno << OP_SH_RT; | |
4372b673 | 8446 | break; |
252b5132 RH |
8447 | case 'w': |
8448 | case 't': | |
8449 | case 'E': | |
38487616 | 8450 | ip->insn_opcode |= regno << OP_SH_RT; |
252b5132 RH |
8451 | break; |
8452 | case 'x': | |
8453 | /* This case exists because on the r3000 trunc | |
8454 | expands into a macro which requires a gp | |
8455 | register. On the r6000 or r4000 it is | |
8456 | assembled into a single instruction which | |
8457 | ignores the register. Thus the insn version | |
8458 | is MIPS_ISA2 and uses 'x', and the macro | |
8459 | version is MIPS_ISA1 and uses 't'. */ | |
8460 | break; | |
8461 | case 'z': | |
8462 | /* This case is for the div instruction, which | |
8463 | acts differently if the destination argument | |
8464 | is $0. This only matches $0, and is checked | |
8465 | outside the switch. */ | |
8466 | break; | |
8467 | case 'D': | |
8468 | /* Itbl operand; not yet implemented. FIXME ?? */ | |
8469 | break; | |
8470 | /* What about all other operands like 'i', which | |
8471 | can be specified in the opcode table? */ | |
8472 | } | |
8473 | lastregno = regno; | |
8474 | continue; | |
8475 | } | |
8476 | notreg: | |
8477 | switch (*args++) | |
8478 | { | |
8479 | case 'r': | |
8480 | case 'v': | |
38487616 | 8481 | ip->insn_opcode |= lastregno << OP_SH_RS; |
252b5132 RH |
8482 | continue; |
8483 | case 'w': | |
38487616 | 8484 | ip->insn_opcode |= lastregno << OP_SH_RT; |
252b5132 RH |
8485 | continue; |
8486 | } | |
8487 | break; | |
8488 | ||
deec1734 CD |
8489 | case 'O': /* MDMX alignment immediate constant. */ |
8490 | my_getExpression (&imm_expr, s); | |
8491 | check_absolute_expr (ip, &imm_expr); | |
8492 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN) | |
8493 | { | |
8494 | as_warn ("Improper align amount (%ld), using low bits", | |
8495 | (long) imm_expr.X_add_number); | |
8496 | imm_expr.X_add_number &= OP_MASK_ALN; | |
8497 | } | |
8498 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_ALN; | |
8499 | imm_expr.X_op = O_absent; | |
8500 | s = expr_end; | |
8501 | continue; | |
8502 | ||
8503 | case 'Q': /* MDMX vector, element sel, or const. */ | |
8504 | if (s[0] != '$') | |
8505 | { | |
8506 | /* MDMX Immediate. */ | |
8507 | my_getExpression (&imm_expr, s); | |
8508 | check_absolute_expr (ip, &imm_expr); | |
8509 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT) | |
8510 | { | |
8511 | as_warn (_("Invalid MDMX Immediate (%ld)"), | |
8512 | (long) imm_expr.X_add_number); | |
8513 | imm_expr.X_add_number &= OP_MASK_FT; | |
8514 | } | |
8515 | imm_expr.X_add_number &= OP_MASK_FT; | |
8516 | if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL)) | |
8517 | ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL; | |
8518 | else | |
8519 | ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL; | |
8520 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_FT; | |
8521 | imm_expr.X_op = O_absent; | |
8522 | s = expr_end; | |
8523 | continue; | |
8524 | } | |
8525 | /* Not MDMX Immediate. Fall through. */ | |
8526 | case 'X': /* MDMX destination register. */ | |
8527 | case 'Y': /* MDMX source register. */ | |
8528 | case 'Z': /* MDMX target register. */ | |
8529 | is_mdmx = 1; | |
252b5132 RH |
8530 | case 'D': /* floating point destination register */ |
8531 | case 'S': /* floating point source register */ | |
8532 | case 'T': /* floating point target register */ | |
8533 | case 'R': /* floating point source register */ | |
8534 | case 'V': | |
8535 | case 'W': | |
8536 | s_reset = s; | |
deec1734 CD |
8537 | /* Accept $fN for FP and MDMX register numbers, and in |
8538 | addition accept $vN for MDMX register numbers. */ | |
8539 | if ((s[0] == '$' && s[1] == 'f' && ISDIGIT (s[2])) | |
8540 | || (is_mdmx != 0 && s[0] == '$' && s[1] == 'v' | |
8541 | && ISDIGIT (s[2]))) | |
252b5132 RH |
8542 | { |
8543 | s += 2; | |
8544 | regno = 0; | |
8545 | do | |
8546 | { | |
8547 | regno *= 10; | |
8548 | regno += *s - '0'; | |
8549 | ++s; | |
8550 | } | |
3882b010 | 8551 | while (ISDIGIT (*s)); |
252b5132 RH |
8552 | |
8553 | if (regno > 31) | |
8554 | as_bad (_("Invalid float register number (%d)"), regno); | |
8555 | ||
8556 | if ((regno & 1) != 0 | |
ca4e0257 | 8557 | && HAVE_32BIT_FPRS |
252b5132 RH |
8558 | && ! (strcmp (str, "mtc1") == 0 |
8559 | || strcmp (str, "mfc1") == 0 | |
8560 | || strcmp (str, "lwc1") == 0 | |
8561 | || strcmp (str, "swc1") == 0 | |
8562 | || strcmp (str, "l.s") == 0 | |
8563 | || strcmp (str, "s.s") == 0)) | |
8564 | as_warn (_("Float register should be even, was %d"), | |
8565 | regno); | |
8566 | ||
8567 | c = *args; | |
8568 | if (*s == ' ') | |
f9419b05 | 8569 | ++s; |
252b5132 RH |
8570 | if (args[1] != *s) |
8571 | { | |
8572 | if (c == 'V' || c == 'W') | |
8573 | { | |
8574 | regno = lastregno; | |
8575 | s = s_reset; | |
f9419b05 | 8576 | ++args; |
252b5132 RH |
8577 | } |
8578 | } | |
8579 | switch (c) | |
8580 | { | |
8581 | case 'D': | |
deec1734 | 8582 | case 'X': |
38487616 | 8583 | ip->insn_opcode |= regno << OP_SH_FD; |
252b5132 RH |
8584 | break; |
8585 | case 'V': | |
8586 | case 'S': | |
deec1734 | 8587 | case 'Y': |
38487616 | 8588 | ip->insn_opcode |= regno << OP_SH_FS; |
252b5132 | 8589 | break; |
deec1734 CD |
8590 | case 'Q': |
8591 | /* This is like 'Z', but also needs to fix the MDMX | |
8592 | vector/scalar select bits. Note that the | |
8593 | scalar immediate case is handled above. */ | |
8594 | if (*s == '[') | |
8595 | { | |
8596 | int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL)); | |
8597 | int max_el = (is_qh ? 3 : 7); | |
8598 | s++; | |
8599 | my_getExpression(&imm_expr, s); | |
8600 | check_absolute_expr (ip, &imm_expr); | |
8601 | s = expr_end; | |
8602 | if (imm_expr.X_add_number > max_el) | |
8603 | as_bad(_("Bad element selector %ld"), | |
8604 | (long) imm_expr.X_add_number); | |
8605 | imm_expr.X_add_number &= max_el; | |
8606 | ip->insn_opcode |= (imm_expr.X_add_number | |
8607 | << (OP_SH_VSEL + | |
8608 | (is_qh ? 2 : 1))); | |
01a3f561 | 8609 | imm_expr.X_op = O_absent; |
deec1734 CD |
8610 | if (*s != ']') |
8611 | as_warn(_("Expecting ']' found '%s'"), s); | |
8612 | else | |
8613 | s++; | |
8614 | } | |
8615 | else | |
8616 | { | |
8617 | if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL)) | |
8618 | ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH | |
8619 | << OP_SH_VSEL); | |
8620 | else | |
8621 | ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB << | |
8622 | OP_SH_VSEL); | |
8623 | } | |
8624 | /* Fall through */ | |
252b5132 RH |
8625 | case 'W': |
8626 | case 'T': | |
deec1734 | 8627 | case 'Z': |
38487616 | 8628 | ip->insn_opcode |= regno << OP_SH_FT; |
252b5132 RH |
8629 | break; |
8630 | case 'R': | |
38487616 | 8631 | ip->insn_opcode |= regno << OP_SH_FR; |
252b5132 RH |
8632 | break; |
8633 | } | |
8634 | lastregno = regno; | |
8635 | continue; | |
8636 | } | |
8637 | ||
252b5132 RH |
8638 | switch (*args++) |
8639 | { | |
8640 | case 'V': | |
38487616 | 8641 | ip->insn_opcode |= lastregno << OP_SH_FS; |
252b5132 RH |
8642 | continue; |
8643 | case 'W': | |
38487616 | 8644 | ip->insn_opcode |= lastregno << OP_SH_FT; |
252b5132 RH |
8645 | continue; |
8646 | } | |
8647 | break; | |
8648 | ||
8649 | case 'I': | |
8650 | my_getExpression (&imm_expr, s); | |
8651 | if (imm_expr.X_op != O_big | |
8652 | && imm_expr.X_op != O_constant) | |
8653 | insn_error = _("absolute expression required"); | |
13757d0c | 8654 | normalize_constant_expr (&imm_expr); |
252b5132 RH |
8655 | s = expr_end; |
8656 | continue; | |
8657 | ||
8658 | case 'A': | |
8659 | my_getExpression (&offset_expr, s); | |
f6688943 | 8660 | *imm_reloc = BFD_RELOC_32; |
252b5132 RH |
8661 | s = expr_end; |
8662 | continue; | |
8663 | ||
8664 | case 'F': | |
8665 | case 'L': | |
8666 | case 'f': | |
8667 | case 'l': | |
8668 | { | |
8669 | int f64; | |
ca4e0257 | 8670 | int using_gprs; |
252b5132 RH |
8671 | char *save_in; |
8672 | char *err; | |
8673 | unsigned char temp[8]; | |
8674 | int len; | |
8675 | unsigned int length; | |
8676 | segT seg; | |
8677 | subsegT subseg; | |
8678 | char *p; | |
8679 | ||
8680 | /* These only appear as the last operand in an | |
8681 | instruction, and every instruction that accepts | |
8682 | them in any variant accepts them in all variants. | |
8683 | This means we don't have to worry about backing out | |
8684 | any changes if the instruction does not match. | |
8685 | ||
8686 | The difference between them is the size of the | |
8687 | floating point constant and where it goes. For 'F' | |
8688 | and 'L' the constant is 64 bits; for 'f' and 'l' it | |
8689 | is 32 bits. Where the constant is placed is based | |
8690 | on how the MIPS assembler does things: | |
8691 | F -- .rdata | |
8692 | L -- .lit8 | |
8693 | f -- immediate value | |
8694 | l -- .lit4 | |
8695 | ||
8696 | The .lit4 and .lit8 sections are only used if | |
8697 | permitted by the -G argument. | |
8698 | ||
ca4e0257 RS |
8699 | The code below needs to know whether the target register |
8700 | is 32 or 64 bits wide. It relies on the fact 'f' and | |
8701 | 'F' are used with GPR-based instructions and 'l' and | |
8702 | 'L' are used with FPR-based instructions. */ | |
252b5132 RH |
8703 | |
8704 | f64 = *args == 'F' || *args == 'L'; | |
ca4e0257 | 8705 | using_gprs = *args == 'F' || *args == 'f'; |
252b5132 RH |
8706 | |
8707 | save_in = input_line_pointer; | |
8708 | input_line_pointer = s; | |
8709 | err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len); | |
8710 | length = len; | |
8711 | s = input_line_pointer; | |
8712 | input_line_pointer = save_in; | |
8713 | if (err != NULL && *err != '\0') | |
8714 | { | |
8715 | as_bad (_("Bad floating point constant: %s"), err); | |
8716 | memset (temp, '\0', sizeof temp); | |
8717 | length = f64 ? 8 : 4; | |
8718 | } | |
8719 | ||
156c2f8b | 8720 | assert (length == (unsigned) (f64 ? 8 : 4)); |
252b5132 RH |
8721 | |
8722 | if (*args == 'f' | |
8723 | || (*args == 'l' | |
3e722fb5 | 8724 | && (g_switch_value < 4 |
252b5132 RH |
8725 | || (temp[0] == 0 && temp[1] == 0) |
8726 | || (temp[2] == 0 && temp[3] == 0)))) | |
8727 | { | |
8728 | imm_expr.X_op = O_constant; | |
8729 | if (! target_big_endian) | |
8730 | imm_expr.X_add_number = bfd_getl32 (temp); | |
8731 | else | |
8732 | imm_expr.X_add_number = bfd_getb32 (temp); | |
8733 | } | |
8734 | else if (length > 4 | |
119d663a | 8735 | && ! mips_disable_float_construction |
ca4e0257 RS |
8736 | /* Constants can only be constructed in GPRs and |
8737 | copied to FPRs if the GPRs are at least as wide | |
8738 | as the FPRs. Force the constant into memory if | |
8739 | we are using 64-bit FPRs but the GPRs are only | |
8740 | 32 bits wide. */ | |
8741 | && (using_gprs | |
8742 | || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS)) | |
252b5132 RH |
8743 | && ((temp[0] == 0 && temp[1] == 0) |
8744 | || (temp[2] == 0 && temp[3] == 0)) | |
8745 | && ((temp[4] == 0 && temp[5] == 0) | |
8746 | || (temp[6] == 0 && temp[7] == 0))) | |
8747 | { | |
ca4e0257 RS |
8748 | /* The value is simple enough to load with a couple of |
8749 | instructions. If using 32-bit registers, set | |
8750 | imm_expr to the high order 32 bits and offset_expr to | |
8751 | the low order 32 bits. Otherwise, set imm_expr to | |
8752 | the entire 64 bit constant. */ | |
8753 | if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS) | |
252b5132 RH |
8754 | { |
8755 | imm_expr.X_op = O_constant; | |
8756 | offset_expr.X_op = O_constant; | |
8757 | if (! target_big_endian) | |
8758 | { | |
8759 | imm_expr.X_add_number = bfd_getl32 (temp + 4); | |
8760 | offset_expr.X_add_number = bfd_getl32 (temp); | |
8761 | } | |
8762 | else | |
8763 | { | |
8764 | imm_expr.X_add_number = bfd_getb32 (temp); | |
8765 | offset_expr.X_add_number = bfd_getb32 (temp + 4); | |
8766 | } | |
8767 | if (offset_expr.X_add_number == 0) | |
8768 | offset_expr.X_op = O_absent; | |
8769 | } | |
8770 | else if (sizeof (imm_expr.X_add_number) > 4) | |
8771 | { | |
8772 | imm_expr.X_op = O_constant; | |
8773 | if (! target_big_endian) | |
8774 | imm_expr.X_add_number = bfd_getl64 (temp); | |
8775 | else | |
8776 | imm_expr.X_add_number = bfd_getb64 (temp); | |
8777 | } | |
8778 | else | |
8779 | { | |
8780 | imm_expr.X_op = O_big; | |
8781 | imm_expr.X_add_number = 4; | |
8782 | if (! target_big_endian) | |
8783 | { | |
8784 | generic_bignum[0] = bfd_getl16 (temp); | |
8785 | generic_bignum[1] = bfd_getl16 (temp + 2); | |
8786 | generic_bignum[2] = bfd_getl16 (temp + 4); | |
8787 | generic_bignum[3] = bfd_getl16 (temp + 6); | |
8788 | } | |
8789 | else | |
8790 | { | |
8791 | generic_bignum[0] = bfd_getb16 (temp + 6); | |
8792 | generic_bignum[1] = bfd_getb16 (temp + 4); | |
8793 | generic_bignum[2] = bfd_getb16 (temp + 2); | |
8794 | generic_bignum[3] = bfd_getb16 (temp); | |
8795 | } | |
8796 | } | |
8797 | } | |
8798 | else | |
8799 | { | |
8800 | const char *newname; | |
8801 | segT new_seg; | |
8802 | ||
8803 | /* Switch to the right section. */ | |
8804 | seg = now_seg; | |
8805 | subseg = now_subseg; | |
8806 | switch (*args) | |
8807 | { | |
8808 | default: /* unused default case avoids warnings. */ | |
8809 | case 'L': | |
8810 | newname = RDATA_SECTION_NAME; | |
3e722fb5 | 8811 | if (g_switch_value >= 8) |
252b5132 RH |
8812 | newname = ".lit8"; |
8813 | break; | |
8814 | case 'F': | |
3e722fb5 | 8815 | newname = RDATA_SECTION_NAME; |
252b5132 RH |
8816 | break; |
8817 | case 'l': | |
4d0d148d | 8818 | assert (g_switch_value >= 4); |
252b5132 RH |
8819 | newname = ".lit4"; |
8820 | break; | |
8821 | } | |
8822 | new_seg = subseg_new (newname, (subsegT) 0); | |
8823 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour) | |
8824 | bfd_set_section_flags (stdoutput, new_seg, | |
8825 | (SEC_ALLOC | |
8826 | | SEC_LOAD | |
8827 | | SEC_READONLY | |
8828 | | SEC_DATA)); | |
8829 | frag_align (*args == 'l' ? 2 : 3, 0, 0); | |
8830 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour | |
8831 | && strcmp (TARGET_OS, "elf") != 0) | |
8832 | record_alignment (new_seg, 4); | |
8833 | else | |
8834 | record_alignment (new_seg, *args == 'l' ? 2 : 3); | |
8835 | if (seg == now_seg) | |
8836 | as_bad (_("Can't use floating point insn in this section")); | |
8837 | ||
8838 | /* Set the argument to the current address in the | |
8839 | section. */ | |
8840 | offset_expr.X_op = O_symbol; | |
8841 | offset_expr.X_add_symbol = | |
8842 | symbol_new ("L0\001", now_seg, | |
8843 | (valueT) frag_now_fix (), frag_now); | |
8844 | offset_expr.X_add_number = 0; | |
8845 | ||
8846 | /* Put the floating point number into the section. */ | |
8847 | p = frag_more ((int) length); | |
8848 | memcpy (p, temp, length); | |
8849 | ||
8850 | /* Switch back to the original section. */ | |
8851 | subseg_set (seg, subseg); | |
8852 | } | |
8853 | } | |
8854 | continue; | |
8855 | ||
8856 | case 'i': /* 16 bit unsigned immediate */ | |
8857 | case 'j': /* 16 bit signed immediate */ | |
f6688943 | 8858 | *imm_reloc = BFD_RELOC_LO16; |
5e0116d5 | 8859 | if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0) |
252b5132 RH |
8860 | { |
8861 | int more; | |
5e0116d5 RS |
8862 | offsetT minval, maxval; |
8863 | ||
8864 | more = (insn + 1 < &mips_opcodes[NUMOPCODES] | |
8865 | && strcmp (insn->name, insn[1].name) == 0); | |
8866 | ||
8867 | /* If the expression was written as an unsigned number, | |
8868 | only treat it as signed if there are no more | |
8869 | alternatives. */ | |
8870 | if (more | |
8871 | && *args == 'j' | |
8872 | && sizeof (imm_expr.X_add_number) <= 4 | |
8873 | && imm_expr.X_op == O_constant | |
8874 | && imm_expr.X_add_number < 0 | |
8875 | && imm_expr.X_unsigned | |
8876 | && HAVE_64BIT_GPRS) | |
8877 | break; | |
8878 | ||
8879 | /* For compatibility with older assemblers, we accept | |
8880 | 0x8000-0xffff as signed 16-bit numbers when only | |
8881 | signed numbers are allowed. */ | |
8882 | if (*args == 'i') | |
8883 | minval = 0, maxval = 0xffff; | |
8884 | else if (more) | |
8885 | minval = -0x8000, maxval = 0x7fff; | |
252b5132 | 8886 | else |
5e0116d5 RS |
8887 | minval = -0x8000, maxval = 0xffff; |
8888 | ||
8889 | if (imm_expr.X_op != O_constant | |
8890 | || imm_expr.X_add_number < minval | |
8891 | || imm_expr.X_add_number > maxval) | |
252b5132 RH |
8892 | { |
8893 | if (more) | |
8894 | break; | |
2ae7e77b AH |
8895 | if (imm_expr.X_op == O_constant |
8896 | || imm_expr.X_op == O_big) | |
5e0116d5 | 8897 | as_bad (_("expression out of range")); |
252b5132 RH |
8898 | } |
8899 | } | |
8900 | s = expr_end; | |
8901 | continue; | |
8902 | ||
8903 | case 'o': /* 16 bit offset */ | |
5e0116d5 RS |
8904 | /* Check whether there is only a single bracketed expression |
8905 | left. If so, it must be the base register and the | |
8906 | constant must be zero. */ | |
8907 | if (*s == '(' && strchr (s + 1, '(') == 0) | |
8908 | { | |
8909 | offset_expr.X_op = O_constant; | |
8910 | offset_expr.X_add_number = 0; | |
8911 | continue; | |
8912 | } | |
252b5132 RH |
8913 | |
8914 | /* If this value won't fit into a 16 bit offset, then go | |
8915 | find a macro that will generate the 32 bit offset | |
afdbd6d0 | 8916 | code pattern. */ |
5e0116d5 | 8917 | if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0 |
252b5132 RH |
8918 | && (offset_expr.X_op != O_constant |
8919 | || offset_expr.X_add_number >= 0x8000 | |
afdbd6d0 | 8920 | || offset_expr.X_add_number < -0x8000)) |
252b5132 RH |
8921 | break; |
8922 | ||
252b5132 RH |
8923 | s = expr_end; |
8924 | continue; | |
8925 | ||
8926 | case 'p': /* pc relative offset */ | |
0b25d3e6 | 8927 | *offset_reloc = BFD_RELOC_16_PCREL_S2; |
252b5132 RH |
8928 | my_getExpression (&offset_expr, s); |
8929 | s = expr_end; | |
8930 | continue; | |
8931 | ||
8932 | case 'u': /* upper 16 bits */ | |
5e0116d5 RS |
8933 | if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0 |
8934 | && imm_expr.X_op == O_constant | |
8935 | && (imm_expr.X_add_number < 0 | |
8936 | || imm_expr.X_add_number >= 0x10000)) | |
252b5132 RH |
8937 | as_bad (_("lui expression not in range 0..65535")); |
8938 | s = expr_end; | |
8939 | continue; | |
8940 | ||
8941 | case 'a': /* 26 bit address */ | |
8942 | my_getExpression (&offset_expr, s); | |
8943 | s = expr_end; | |
f6688943 | 8944 | *offset_reloc = BFD_RELOC_MIPS_JMP; |
252b5132 RH |
8945 | continue; |
8946 | ||
8947 | case 'N': /* 3 bit branch condition code */ | |
8948 | case 'M': /* 3 bit compare condition code */ | |
8949 | if (strncmp (s, "$fcc", 4) != 0) | |
8950 | break; | |
8951 | s += 4; | |
8952 | regno = 0; | |
8953 | do | |
8954 | { | |
8955 | regno *= 10; | |
8956 | regno += *s - '0'; | |
8957 | ++s; | |
8958 | } | |
3882b010 | 8959 | while (ISDIGIT (*s)); |
252b5132 | 8960 | if (regno > 7) |
30c378fd CD |
8961 | as_bad (_("Invalid condition code register $fcc%d"), regno); |
8962 | if ((strcmp(str + strlen(str) - 3, ".ps") == 0 | |
8963 | || strcmp(str + strlen(str) - 5, "any2f") == 0 | |
8964 | || strcmp(str + strlen(str) - 5, "any2t") == 0) | |
8965 | && (regno & 1) != 0) | |
8966 | as_warn(_("Condition code register should be even for %s, was %d"), | |
8967 | str, regno); | |
8968 | if ((strcmp(str + strlen(str) - 5, "any4f") == 0 | |
8969 | || strcmp(str + strlen(str) - 5, "any4t") == 0) | |
8970 | && (regno & 3) != 0) | |
8971 | as_warn(_("Condition code register should be 0 or 4 for %s, was %d"), | |
8972 | str, regno); | |
252b5132 RH |
8973 | if (*args == 'N') |
8974 | ip->insn_opcode |= regno << OP_SH_BCC; | |
8975 | else | |
8976 | ip->insn_opcode |= regno << OP_SH_CCC; | |
beae10d5 | 8977 | continue; |
252b5132 | 8978 | |
156c2f8b NC |
8979 | case 'H': |
8980 | if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X')) | |
8981 | s += 2; | |
3882b010 | 8982 | if (ISDIGIT (*s)) |
156c2f8b NC |
8983 | { |
8984 | c = 0; | |
8985 | do | |
8986 | { | |
8987 | c *= 10; | |
8988 | c += *s - '0'; | |
8989 | ++s; | |
8990 | } | |
3882b010 | 8991 | while (ISDIGIT (*s)); |
156c2f8b NC |
8992 | } |
8993 | else | |
8994 | c = 8; /* Invalid sel value. */ | |
8995 | ||
8996 | if (c > 7) | |
8997 | as_bad (_("invalid coprocessor sub-selection value (0-7)")); | |
8998 | ip->insn_opcode |= c; | |
8999 | continue; | |
9000 | ||
60b63b72 RS |
9001 | case 'e': |
9002 | /* Must be at least one digit. */ | |
9003 | my_getExpression (&imm_expr, s); | |
9004 | check_absolute_expr (ip, &imm_expr); | |
9005 | ||
9006 | if ((unsigned long) imm_expr.X_add_number | |
9007 | > (unsigned long) OP_MASK_VECBYTE) | |
9008 | { | |
9009 | as_bad (_("bad byte vector index (%ld)"), | |
9010 | (long) imm_expr.X_add_number); | |
9011 | imm_expr.X_add_number = 0; | |
9012 | } | |
9013 | ||
9014 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_VECBYTE; | |
9015 | imm_expr.X_op = O_absent; | |
9016 | s = expr_end; | |
9017 | continue; | |
9018 | ||
9019 | case '%': | |
9020 | my_getExpression (&imm_expr, s); | |
9021 | check_absolute_expr (ip, &imm_expr); | |
9022 | ||
9023 | if ((unsigned long) imm_expr.X_add_number | |
9024 | > (unsigned long) OP_MASK_VECALIGN) | |
9025 | { | |
9026 | as_bad (_("bad byte vector index (%ld)"), | |
9027 | (long) imm_expr.X_add_number); | |
9028 | imm_expr.X_add_number = 0; | |
9029 | } | |
9030 | ||
9031 | ip->insn_opcode |= imm_expr.X_add_number << OP_SH_VECALIGN; | |
9032 | imm_expr.X_op = O_absent; | |
9033 | s = expr_end; | |
9034 | continue; | |
9035 | ||
252b5132 RH |
9036 | default: |
9037 | as_bad (_("bad char = '%c'\n"), *args); | |
9038 | internalError (); | |
9039 | } | |
9040 | break; | |
9041 | } | |
9042 | /* Args don't match. */ | |
9043 | if (insn + 1 < &mips_opcodes[NUMOPCODES] && | |
9044 | !strcmp (insn->name, insn[1].name)) | |
9045 | { | |
9046 | ++insn; | |
9047 | s = argsStart; | |
268f6bed | 9048 | insn_error = _("illegal operands"); |
252b5132 RH |
9049 | continue; |
9050 | } | |
268f6bed L |
9051 | if (save_c) |
9052 | *(--s) = save_c; | |
252b5132 RH |
9053 | insn_error = _("illegal operands"); |
9054 | return; | |
9055 | } | |
9056 | } | |
9057 | ||
9058 | /* This routine assembles an instruction into its binary format when | |
9059 | assembling for the mips16. As a side effect, it sets one of the | |
9060 | global variables imm_reloc or offset_reloc to the type of | |
9061 | relocation to do if one of the operands is an address expression. | |
9062 | It also sets mips16_small and mips16_ext if the user explicitly | |
9063 | requested a small or extended instruction. */ | |
9064 | ||
9065 | static void | |
17a2f251 | 9066 | mips16_ip (char *str, struct mips_cl_insn *ip) |
252b5132 RH |
9067 | { |
9068 | char *s; | |
9069 | const char *args; | |
9070 | struct mips_opcode *insn; | |
9071 | char *argsstart; | |
9072 | unsigned int regno; | |
9073 | unsigned int lastregno = 0; | |
9074 | char *s_reset; | |
9075 | ||
9076 | insn_error = NULL; | |
9077 | ||
b34976b6 AM |
9078 | mips16_small = FALSE; |
9079 | mips16_ext = FALSE; | |
252b5132 | 9080 | |
3882b010 | 9081 | for (s = str; ISLOWER (*s); ++s) |
252b5132 RH |
9082 | ; |
9083 | switch (*s) | |
9084 | { | |
9085 | case '\0': | |
9086 | break; | |
9087 | ||
9088 | case ' ': | |
9089 | *s++ = '\0'; | |
9090 | break; | |
9091 | ||
9092 | case '.': | |
9093 | if (s[1] == 't' && s[2] == ' ') | |
9094 | { | |
9095 | *s = '\0'; | |
b34976b6 | 9096 | mips16_small = TRUE; |
252b5132 RH |
9097 | s += 3; |
9098 | break; | |
9099 | } | |
9100 | else if (s[1] == 'e' && s[2] == ' ') | |
9101 | { | |
9102 | *s = '\0'; | |
b34976b6 | 9103 | mips16_ext = TRUE; |
252b5132 RH |
9104 | s += 3; |
9105 | break; | |
9106 | } | |
9107 | /* Fall through. */ | |
9108 | default: | |
9109 | insn_error = _("unknown opcode"); | |
9110 | return; | |
9111 | } | |
9112 | ||
9113 | if (mips_opts.noautoextend && ! mips16_ext) | |
b34976b6 | 9114 | mips16_small = TRUE; |
252b5132 RH |
9115 | |
9116 | if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL) | |
9117 | { | |
9118 | insn_error = _("unrecognized opcode"); | |
9119 | return; | |
9120 | } | |
9121 | ||
9122 | argsstart = s; | |
9123 | for (;;) | |
9124 | { | |
9125 | assert (strcmp (insn->name, str) == 0); | |
9126 | ||
9127 | ip->insn_mo = insn; | |
9128 | ip->insn_opcode = insn->match; | |
b34976b6 | 9129 | ip->use_extend = FALSE; |
252b5132 | 9130 | imm_expr.X_op = O_absent; |
f6688943 TS |
9131 | imm_reloc[0] = BFD_RELOC_UNUSED; |
9132 | imm_reloc[1] = BFD_RELOC_UNUSED; | |
9133 | imm_reloc[2] = BFD_RELOC_UNUSED; | |
5f74bc13 | 9134 | imm2_expr.X_op = O_absent; |
252b5132 | 9135 | offset_expr.X_op = O_absent; |
f6688943 TS |
9136 | offset_reloc[0] = BFD_RELOC_UNUSED; |
9137 | offset_reloc[1] = BFD_RELOC_UNUSED; | |
9138 | offset_reloc[2] = BFD_RELOC_UNUSED; | |
252b5132 RH |
9139 | for (args = insn->args; 1; ++args) |
9140 | { | |
9141 | int c; | |
9142 | ||
9143 | if (*s == ' ') | |
9144 | ++s; | |
9145 | ||
9146 | /* In this switch statement we call break if we did not find | |
9147 | a match, continue if we did find a match, or return if we | |
9148 | are done. */ | |
9149 | ||
9150 | c = *args; | |
9151 | switch (c) | |
9152 | { | |
9153 | case '\0': | |
9154 | if (*s == '\0') | |
9155 | { | |
9156 | /* Stuff the immediate value in now, if we can. */ | |
9157 | if (imm_expr.X_op == O_constant | |
f6688943 | 9158 | && *imm_reloc > BFD_RELOC_UNUSED |
252b5132 RH |
9159 | && insn->pinfo != INSN_MACRO) |
9160 | { | |
c4e7957c | 9161 | mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED, |
b34976b6 | 9162 | imm_expr.X_add_number, TRUE, mips16_small, |
252b5132 RH |
9163 | mips16_ext, &ip->insn_opcode, |
9164 | &ip->use_extend, &ip->extend); | |
9165 | imm_expr.X_op = O_absent; | |
f6688943 | 9166 | *imm_reloc = BFD_RELOC_UNUSED; |
252b5132 RH |
9167 | } |
9168 | ||
9169 | return; | |
9170 | } | |
9171 | break; | |
9172 | ||
9173 | case ',': | |
9174 | if (*s++ == c) | |
9175 | continue; | |
9176 | s--; | |
9177 | switch (*++args) | |
9178 | { | |
9179 | case 'v': | |
9180 | ip->insn_opcode |= lastregno << MIPS16OP_SH_RX; | |
9181 | continue; | |
9182 | case 'w': | |
9183 | ip->insn_opcode |= lastregno << MIPS16OP_SH_RY; | |
9184 | continue; | |
9185 | } | |
9186 | break; | |
9187 | ||
9188 | case '(': | |
9189 | case ')': | |
9190 | if (*s++ == c) | |
9191 | continue; | |
9192 | break; | |
9193 | ||
9194 | case 'v': | |
9195 | case 'w': | |
9196 | if (s[0] != '$') | |
9197 | { | |
9198 | if (c == 'v') | |
9199 | ip->insn_opcode |= lastregno << MIPS16OP_SH_RX; | |
9200 | else | |
9201 | ip->insn_opcode |= lastregno << MIPS16OP_SH_RY; | |
9202 | ++args; | |
9203 | continue; | |
9204 | } | |
9205 | /* Fall through. */ | |
9206 | case 'x': | |
9207 | case 'y': | |
9208 | case 'z': | |
9209 | case 'Z': | |
9210 | case '0': | |
9211 | case 'S': | |
9212 | case 'R': | |
9213 | case 'X': | |
9214 | case 'Y': | |
9215 | if (s[0] != '$') | |
9216 | break; | |
9217 | s_reset = s; | |
3882b010 | 9218 | if (ISDIGIT (s[1])) |
252b5132 RH |
9219 | { |
9220 | ++s; | |
9221 | regno = 0; | |
9222 | do | |
9223 | { | |
9224 | regno *= 10; | |
9225 | regno += *s - '0'; | |
9226 | ++s; | |
9227 | } | |
3882b010 | 9228 | while (ISDIGIT (*s)); |
252b5132 RH |
9229 | if (regno > 31) |
9230 | { | |
9231 | as_bad (_("invalid register number (%d)"), regno); | |
9232 | regno = 2; | |
9233 | } | |
9234 | } | |
9235 | else | |
9236 | { | |
76db943d TS |
9237 | if (s[1] == 'r' && s[2] == 'a') |
9238 | { | |
9239 | s += 3; | |
9240 | regno = RA; | |
9241 | } | |
9242 | else if (s[1] == 'f' && s[2] == 'p') | |
252b5132 RH |
9243 | { |
9244 | s += 3; | |
9245 | regno = FP; | |
9246 | } | |
9247 | else if (s[1] == 's' && s[2] == 'p') | |
9248 | { | |
9249 | s += 3; | |
9250 | regno = SP; | |
9251 | } | |
9252 | else if (s[1] == 'g' && s[2] == 'p') | |
9253 | { | |
9254 | s += 3; | |
9255 | regno = GP; | |
9256 | } | |
9257 | else if (s[1] == 'a' && s[2] == 't') | |
9258 | { | |
9259 | s += 3; | |
9260 | regno = AT; | |
9261 | } | |
9262 | else if (s[1] == 'k' && s[2] == 't' && s[3] == '0') | |
9263 | { | |
9264 | s += 4; | |
9265 | regno = KT0; | |
9266 | } | |
9267 | else if (s[1] == 'k' && s[2] == 't' && s[3] == '1') | |
9268 | { | |
9269 | s += 4; | |
9270 | regno = KT1; | |
9271 | } | |
85b51719 TS |
9272 | else if (s[1] == 'z' && s[2] == 'e' && s[3] == 'r' && s[4] == 'o') |
9273 | { | |
9274 | s += 5; | |
9275 | regno = ZERO; | |
9276 | } | |
252b5132 RH |
9277 | else |
9278 | break; | |
9279 | } | |
9280 | ||
9281 | if (*s == ' ') | |
9282 | ++s; | |
9283 | if (args[1] != *s) | |
9284 | { | |
9285 | if (c == 'v' || c == 'w') | |
9286 | { | |
9287 | regno = mips16_to_32_reg_map[lastregno]; | |
9288 | s = s_reset; | |
f9419b05 | 9289 | ++args; |
252b5132 RH |
9290 | } |
9291 | } | |
9292 | ||
9293 | switch (c) | |
9294 | { | |
9295 | case 'x': | |
9296 | case 'y': | |
9297 | case 'z': | |
9298 | case 'v': | |
9299 | case 'w': | |
9300 | case 'Z': | |
9301 | regno = mips32_to_16_reg_map[regno]; | |
9302 | break; | |
9303 | ||
9304 | case '0': | |
9305 | if (regno != 0) | |
9306 | regno = ILLEGAL_REG; | |
9307 | break; | |
9308 | ||
9309 | case 'S': | |
9310 | if (regno != SP) | |
9311 | regno = ILLEGAL_REG; | |
9312 | break; | |
9313 | ||
9314 | case 'R': | |
9315 | if (regno != RA) | |
9316 | regno = ILLEGAL_REG; | |
9317 | break; | |
9318 | ||
9319 | case 'X': | |
9320 | case 'Y': | |
9321 | if (regno == AT && ! mips_opts.noat) | |
9322 | as_warn (_("used $at without \".set noat\"")); | |
9323 | break; | |
9324 | ||
9325 | default: | |
9326 | internalError (); | |
9327 | } | |
9328 | ||
9329 | if (regno == ILLEGAL_REG) | |
9330 | break; | |
9331 | ||
9332 | switch (c) | |
9333 | { | |
9334 | case 'x': | |
9335 | case 'v': | |
9336 | ip->insn_opcode |= regno << MIPS16OP_SH_RX; | |
9337 | break; | |
9338 | case 'y': | |
9339 | case 'w': | |
9340 | ip->insn_opcode |= regno << MIPS16OP_SH_RY; | |
9341 | break; | |
9342 | case 'z': | |
9343 | ip->insn_opcode |= regno << MIPS16OP_SH_RZ; | |
9344 | break; | |
9345 | case 'Z': | |
9346 | ip->insn_opcode |= regno << MIPS16OP_SH_MOVE32Z; | |
9347 | case '0': | |
9348 | case 'S': | |
9349 | case 'R': | |
9350 | break; | |
9351 | case 'X': | |
9352 | ip->insn_opcode |= regno << MIPS16OP_SH_REGR32; | |
9353 | break; | |
9354 | case 'Y': | |
9355 | regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3); | |
9356 | ip->insn_opcode |= regno << MIPS16OP_SH_REG32R; | |
9357 | break; | |
9358 | default: | |
9359 | internalError (); | |
9360 | } | |
9361 | ||
9362 | lastregno = regno; | |
9363 | continue; | |
9364 | ||
9365 | case 'P': | |
9366 | if (strncmp (s, "$pc", 3) == 0) | |
9367 | { | |
9368 | s += 3; | |
9369 | continue; | |
9370 | } | |
9371 | break; | |
9372 | ||
9373 | case '<': | |
9374 | case '>': | |
9375 | case '[': | |
9376 | case ']': | |
9377 | case '4': | |
9378 | case '5': | |
9379 | case 'H': | |
9380 | case 'W': | |
9381 | case 'D': | |
9382 | case 'j': | |
9383 | case '8': | |
9384 | case 'V': | |
9385 | case 'C': | |
9386 | case 'U': | |
9387 | case 'k': | |
9388 | case 'K': | |
9389 | if (s[0] == '%' | |
9390 | && strncmp (s + 1, "gprel(", sizeof "gprel(" - 1) == 0) | |
9391 | { | |
9392 | /* This is %gprel(SYMBOL). We need to read SYMBOL, | |
9393 | and generate the appropriate reloc. If the text | |
9394 | inside %gprel is not a symbol name with an | |
9395 | optional offset, then we generate a normal reloc | |
9396 | and will probably fail later. */ | |
9397 | my_getExpression (&imm_expr, s + sizeof "%gprel" - 1); | |
9398 | if (imm_expr.X_op == O_symbol) | |
9399 | { | |
b34976b6 | 9400 | mips16_ext = TRUE; |
f6688943 | 9401 | *imm_reloc = BFD_RELOC_MIPS16_GPREL; |
252b5132 | 9402 | s = expr_end; |
b34976b6 | 9403 | ip->use_extend = TRUE; |
252b5132 RH |
9404 | ip->extend = 0; |
9405 | continue; | |
9406 | } | |
9407 | } | |
9408 | else | |
9409 | { | |
9410 | /* Just pick up a normal expression. */ | |
9411 | my_getExpression (&imm_expr, s); | |
9412 | } | |
9413 | ||
9414 | if (imm_expr.X_op == O_register) | |
9415 | { | |
9416 | /* What we thought was an expression turned out to | |
9417 | be a register. */ | |
9418 | ||
9419 | if (s[0] == '(' && args[1] == '(') | |
9420 | { | |
9421 | /* It looks like the expression was omitted | |
9422 | before a register indirection, which means | |
9423 | that the expression is implicitly zero. We | |
9424 | still set up imm_expr, so that we handle | |
9425 | explicit extensions correctly. */ | |
9426 | imm_expr.X_op = O_constant; | |
9427 | imm_expr.X_add_number = 0; | |
f6688943 | 9428 | *imm_reloc = (int) BFD_RELOC_UNUSED + c; |
252b5132 RH |
9429 | continue; |
9430 | } | |
9431 | ||
9432 | break; | |
9433 | } | |
9434 | ||
9435 | /* We need to relax this instruction. */ | |
f6688943 | 9436 | *imm_reloc = (int) BFD_RELOC_UNUSED + c; |
252b5132 RH |
9437 | s = expr_end; |
9438 | continue; | |
9439 | ||
9440 | case 'p': | |
9441 | case 'q': | |
9442 | case 'A': | |
9443 | case 'B': | |
9444 | case 'E': | |
9445 | /* We use offset_reloc rather than imm_reloc for the PC | |
9446 | relative operands. This lets macros with both | |
9447 | immediate and address operands work correctly. */ | |
9448 | my_getExpression (&offset_expr, s); | |
9449 | ||
9450 | if (offset_expr.X_op == O_register) | |
9451 | break; | |
9452 | ||
9453 | /* We need to relax this instruction. */ | |
f6688943 | 9454 | *offset_reloc = (int) BFD_RELOC_UNUSED + c; |
252b5132 RH |
9455 | s = expr_end; |
9456 | continue; | |
9457 | ||
9458 | case '6': /* break code */ | |
9459 | my_getExpression (&imm_expr, s); | |
9460 | check_absolute_expr (ip, &imm_expr); | |
9461 | if ((unsigned long) imm_expr.X_add_number > 63) | |
9462 | { | |
9463 | as_warn (_("Invalid value for `%s' (%lu)"), | |
9464 | ip->insn_mo->name, | |
9465 | (unsigned long) imm_expr.X_add_number); | |
9466 | imm_expr.X_add_number &= 0x3f; | |
9467 | } | |
9468 | ip->insn_opcode |= imm_expr.X_add_number << MIPS16OP_SH_IMM6; | |
9469 | imm_expr.X_op = O_absent; | |
9470 | s = expr_end; | |
9471 | continue; | |
9472 | ||
9473 | case 'a': /* 26 bit address */ | |
9474 | my_getExpression (&offset_expr, s); | |
9475 | s = expr_end; | |
f6688943 | 9476 | *offset_reloc = BFD_RELOC_MIPS16_JMP; |
252b5132 RH |
9477 | ip->insn_opcode <<= 16; |
9478 | continue; | |
9479 | ||
9480 | case 'l': /* register list for entry macro */ | |
9481 | case 'L': /* register list for exit macro */ | |
9482 | { | |
9483 | int mask; | |
9484 | ||
9485 | if (c == 'l') | |
9486 | mask = 0; | |
9487 | else | |
9488 | mask = 7 << 3; | |
9489 | while (*s != '\0') | |
9490 | { | |
9491 | int freg, reg1, reg2; | |
9492 | ||
9493 | while (*s == ' ' || *s == ',') | |
9494 | ++s; | |
9495 | if (*s != '$') | |
9496 | { | |
9497 | as_bad (_("can't parse register list")); | |
9498 | break; | |
9499 | } | |
9500 | ++s; | |
9501 | if (*s != 'f') | |
9502 | freg = 0; | |
9503 | else | |
9504 | { | |
9505 | freg = 1; | |
9506 | ++s; | |
9507 | } | |
9508 | reg1 = 0; | |
3882b010 | 9509 | while (ISDIGIT (*s)) |
252b5132 RH |
9510 | { |
9511 | reg1 *= 10; | |
9512 | reg1 += *s - '0'; | |
9513 | ++s; | |
9514 | } | |
9515 | if (*s == ' ') | |
9516 | ++s; | |
9517 | if (*s != '-') | |
9518 | reg2 = reg1; | |
9519 | else | |
9520 | { | |
9521 | ++s; | |
9522 | if (*s != '$') | |
9523 | break; | |
9524 | ++s; | |
9525 | if (freg) | |
9526 | { | |
9527 | if (*s == 'f') | |
9528 | ++s; | |
9529 | else | |
9530 | { | |
9531 | as_bad (_("invalid register list")); | |
9532 | break; | |
9533 | } | |
9534 | } | |
9535 | reg2 = 0; | |
3882b010 | 9536 | while (ISDIGIT (*s)) |
252b5132 RH |
9537 | { |
9538 | reg2 *= 10; | |
9539 | reg2 += *s - '0'; | |
9540 | ++s; | |
9541 | } | |
9542 | } | |
9543 | if (freg && reg1 == 0 && reg2 == 0 && c == 'L') | |
9544 | { | |
9545 | mask &= ~ (7 << 3); | |
9546 | mask |= 5 << 3; | |
9547 | } | |
9548 | else if (freg && reg1 == 0 && reg2 == 1 && c == 'L') | |
9549 | { | |
9550 | mask &= ~ (7 << 3); | |
9551 | mask |= 6 << 3; | |
9552 | } | |
9553 | else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L') | |
9554 | mask |= (reg2 - 3) << 3; | |
9555 | else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17) | |
9556 | mask |= (reg2 - 15) << 1; | |
f9419b05 | 9557 | else if (reg1 == RA && reg2 == RA) |
252b5132 RH |
9558 | mask |= 1; |
9559 | else | |
9560 | { | |
9561 | as_bad (_("invalid register list")); | |
9562 | break; | |
9563 | } | |
9564 | } | |
9565 | /* The mask is filled in in the opcode table for the | |
9566 | benefit of the disassembler. We remove it before | |
9567 | applying the actual mask. */ | |
9568 | ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6); | |
9569 | ip->insn_opcode |= mask << MIPS16OP_SH_IMM6; | |
9570 | } | |
9571 | continue; | |
9572 | ||
9573 | case 'e': /* extend code */ | |
9574 | my_getExpression (&imm_expr, s); | |
9575 | check_absolute_expr (ip, &imm_expr); | |
9576 | if ((unsigned long) imm_expr.X_add_number > 0x7ff) | |
9577 | { | |
9578 | as_warn (_("Invalid value for `%s' (%lu)"), | |
9579 | ip->insn_mo->name, | |
9580 | (unsigned long) imm_expr.X_add_number); | |
9581 | imm_expr.X_add_number &= 0x7ff; | |
9582 | } | |
9583 | ip->insn_opcode |= imm_expr.X_add_number; | |
9584 | imm_expr.X_op = O_absent; | |
9585 | s = expr_end; | |
9586 | continue; | |
9587 | ||
9588 | default: | |
9589 | internalError (); | |
9590 | } | |
9591 | break; | |
9592 | } | |
9593 | ||
9594 | /* Args don't match. */ | |
9595 | if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] && | |
9596 | strcmp (insn->name, insn[1].name) == 0) | |
9597 | { | |
9598 | ++insn; | |
9599 | s = argsstart; | |
9600 | continue; | |
9601 | } | |
9602 | ||
9603 | insn_error = _("illegal operands"); | |
9604 | ||
9605 | return; | |
9606 | } | |
9607 | } | |
9608 | ||
9609 | /* This structure holds information we know about a mips16 immediate | |
9610 | argument type. */ | |
9611 | ||
e972090a NC |
9612 | struct mips16_immed_operand |
9613 | { | |
252b5132 RH |
9614 | /* The type code used in the argument string in the opcode table. */ |
9615 | int type; | |
9616 | /* The number of bits in the short form of the opcode. */ | |
9617 | int nbits; | |
9618 | /* The number of bits in the extended form of the opcode. */ | |
9619 | int extbits; | |
9620 | /* The amount by which the short form is shifted when it is used; | |
9621 | for example, the sw instruction has a shift count of 2. */ | |
9622 | int shift; | |
9623 | /* The amount by which the short form is shifted when it is stored | |
9624 | into the instruction code. */ | |
9625 | int op_shift; | |
9626 | /* Non-zero if the short form is unsigned. */ | |
9627 | int unsp; | |
9628 | /* Non-zero if the extended form is unsigned. */ | |
9629 | int extu; | |
9630 | /* Non-zero if the value is PC relative. */ | |
9631 | int pcrel; | |
9632 | }; | |
9633 | ||
9634 | /* The mips16 immediate operand types. */ | |
9635 | ||
9636 | static const struct mips16_immed_operand mips16_immed_operands[] = | |
9637 | { | |
9638 | { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 }, | |
9639 | { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 }, | |
9640 | { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 }, | |
9641 | { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 }, | |
9642 | { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 }, | |
9643 | { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 }, | |
9644 | { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 }, | |
9645 | { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 }, | |
9646 | { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 }, | |
9647 | { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 }, | |
9648 | { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 }, | |
9649 | { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 }, | |
9650 | { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 }, | |
9651 | { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 }, | |
9652 | { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 }, | |
9653 | { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 }, | |
9654 | { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 }, | |
9655 | { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 }, | |
9656 | { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 }, | |
9657 | { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 }, | |
9658 | { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 } | |
9659 | }; | |
9660 | ||
9661 | #define MIPS16_NUM_IMMED \ | |
9662 | (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0]) | |
9663 | ||
9664 | /* Handle a mips16 instruction with an immediate value. This or's the | |
9665 | small immediate value into *INSN. It sets *USE_EXTEND to indicate | |
9666 | whether an extended value is needed; if one is needed, it sets | |
9667 | *EXTEND to the value. The argument type is TYPE. The value is VAL. | |
9668 | If SMALL is true, an unextended opcode was explicitly requested. | |
9669 | If EXT is true, an extended opcode was explicitly requested. If | |
9670 | WARN is true, warn if EXT does not match reality. */ | |
9671 | ||
9672 | static void | |
17a2f251 TS |
9673 | mips16_immed (char *file, unsigned int line, int type, offsetT val, |
9674 | bfd_boolean warn, bfd_boolean small, bfd_boolean ext, | |
9675 | unsigned long *insn, bfd_boolean *use_extend, | |
9676 | unsigned short *extend) | |
252b5132 RH |
9677 | { |
9678 | register const struct mips16_immed_operand *op; | |
9679 | int mintiny, maxtiny; | |
b34976b6 | 9680 | bfd_boolean needext; |
252b5132 RH |
9681 | |
9682 | op = mips16_immed_operands; | |
9683 | while (op->type != type) | |
9684 | { | |
9685 | ++op; | |
9686 | assert (op < mips16_immed_operands + MIPS16_NUM_IMMED); | |
9687 | } | |
9688 | ||
9689 | if (op->unsp) | |
9690 | { | |
9691 | if (type == '<' || type == '>' || type == '[' || type == ']') | |
9692 | { | |
9693 | mintiny = 1; | |
9694 | maxtiny = 1 << op->nbits; | |
9695 | } | |
9696 | else | |
9697 | { | |
9698 | mintiny = 0; | |
9699 | maxtiny = (1 << op->nbits) - 1; | |
9700 | } | |
9701 | } | |
9702 | else | |
9703 | { | |
9704 | mintiny = - (1 << (op->nbits - 1)); | |
9705 | maxtiny = (1 << (op->nbits - 1)) - 1; | |
9706 | } | |
9707 | ||
9708 | /* Branch offsets have an implicit 0 in the lowest bit. */ | |
9709 | if (type == 'p' || type == 'q') | |
9710 | val /= 2; | |
9711 | ||
9712 | if ((val & ((1 << op->shift) - 1)) != 0 | |
9713 | || val < (mintiny << op->shift) | |
9714 | || val > (maxtiny << op->shift)) | |
b34976b6 | 9715 | needext = TRUE; |
252b5132 | 9716 | else |
b34976b6 | 9717 | needext = FALSE; |
252b5132 RH |
9718 | |
9719 | if (warn && ext && ! needext) | |
beae10d5 KH |
9720 | as_warn_where (file, line, |
9721 | _("extended operand requested but not required")); | |
252b5132 RH |
9722 | if (small && needext) |
9723 | as_bad_where (file, line, _("invalid unextended operand value")); | |
9724 | ||
9725 | if (small || (! ext && ! needext)) | |
9726 | { | |
9727 | int insnval; | |
9728 | ||
b34976b6 | 9729 | *use_extend = FALSE; |
252b5132 RH |
9730 | insnval = ((val >> op->shift) & ((1 << op->nbits) - 1)); |
9731 | insnval <<= op->op_shift; | |
9732 | *insn |= insnval; | |
9733 | } | |
9734 | else | |
9735 | { | |
9736 | long minext, maxext; | |
9737 | int extval; | |
9738 | ||
9739 | if (op->extu) | |
9740 | { | |
9741 | minext = 0; | |
9742 | maxext = (1 << op->extbits) - 1; | |
9743 | } | |
9744 | else | |
9745 | { | |
9746 | minext = - (1 << (op->extbits - 1)); | |
9747 | maxext = (1 << (op->extbits - 1)) - 1; | |
9748 | } | |
9749 | if (val < minext || val > maxext) | |
9750 | as_bad_where (file, line, | |
9751 | _("operand value out of range for instruction")); | |
9752 | ||
b34976b6 | 9753 | *use_extend = TRUE; |
252b5132 RH |
9754 | if (op->extbits == 16) |
9755 | { | |
9756 | extval = ((val >> 11) & 0x1f) | (val & 0x7e0); | |
9757 | val &= 0x1f; | |
9758 | } | |
9759 | else if (op->extbits == 15) | |
9760 | { | |
9761 | extval = ((val >> 11) & 0xf) | (val & 0x7f0); | |
9762 | val &= 0xf; | |
9763 | } | |
9764 | else | |
9765 | { | |
9766 | extval = ((val & 0x1f) << 6) | (val & 0x20); | |
9767 | val = 0; | |
9768 | } | |
9769 | ||
9770 | *extend = (unsigned short) extval; | |
9771 | *insn |= val; | |
9772 | } | |
9773 | } | |
9774 | \f | |
5e0116d5 | 9775 | static const struct percent_op_match |
ad8d3bb3 | 9776 | { |
5e0116d5 RS |
9777 | const char *str; |
9778 | bfd_reloc_code_real_type reloc; | |
ad8d3bb3 TS |
9779 | } percent_op[] = |
9780 | { | |
5e0116d5 | 9781 | {"%lo", BFD_RELOC_LO16}, |
ad8d3bb3 | 9782 | #ifdef OBJ_ELF |
5e0116d5 RS |
9783 | {"%call_hi", BFD_RELOC_MIPS_CALL_HI16}, |
9784 | {"%call_lo", BFD_RELOC_MIPS_CALL_LO16}, | |
9785 | {"%call16", BFD_RELOC_MIPS_CALL16}, | |
9786 | {"%got_disp", BFD_RELOC_MIPS_GOT_DISP}, | |
9787 | {"%got_page", BFD_RELOC_MIPS_GOT_PAGE}, | |
9788 | {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST}, | |
9789 | {"%got_hi", BFD_RELOC_MIPS_GOT_HI16}, | |
9790 | {"%got_lo", BFD_RELOC_MIPS_GOT_LO16}, | |
9791 | {"%got", BFD_RELOC_MIPS_GOT16}, | |
9792 | {"%gp_rel", BFD_RELOC_GPREL16}, | |
9793 | {"%half", BFD_RELOC_16}, | |
9794 | {"%highest", BFD_RELOC_MIPS_HIGHEST}, | |
9795 | {"%higher", BFD_RELOC_MIPS_HIGHER}, | |
9796 | {"%neg", BFD_RELOC_MIPS_SUB}, | |
ad8d3bb3 | 9797 | #endif |
5e0116d5 | 9798 | {"%hi", BFD_RELOC_HI16_S} |
ad8d3bb3 TS |
9799 | }; |
9800 | ||
252b5132 | 9801 | |
5e0116d5 RS |
9802 | /* Return true if *STR points to a relocation operator. When returning true, |
9803 | move *STR over the operator and store its relocation code in *RELOC. | |
9804 | Leave both *STR and *RELOC alone when returning false. */ | |
9805 | ||
9806 | static bfd_boolean | |
17a2f251 | 9807 | parse_relocation (char **str, bfd_reloc_code_real_type *reloc) |
252b5132 | 9808 | { |
5e0116d5 | 9809 | size_t i; |
76b3015f | 9810 | |
5e0116d5 RS |
9811 | for (i = 0; i < ARRAY_SIZE (percent_op); i++) |
9812 | if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0) | |
394f9b3a | 9813 | { |
5e0116d5 RS |
9814 | *str += strlen (percent_op[i].str); |
9815 | *reloc = percent_op[i].reloc; | |
394f9b3a | 9816 | |
5e0116d5 RS |
9817 | /* Check whether the output BFD supports this relocation. |
9818 | If not, issue an error and fall back on something safe. */ | |
9819 | if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc)) | |
394f9b3a | 9820 | { |
5e0116d5 RS |
9821 | as_bad ("relocation %s isn't supported by the current ABI", |
9822 | percent_op[i].str); | |
01a3f561 | 9823 | *reloc = BFD_RELOC_UNUSED; |
394f9b3a | 9824 | } |
5e0116d5 | 9825 | return TRUE; |
394f9b3a | 9826 | } |
5e0116d5 | 9827 | return FALSE; |
394f9b3a | 9828 | } |
ad8d3bb3 | 9829 | |
ad8d3bb3 | 9830 | |
5e0116d5 RS |
9831 | /* Parse string STR as a 16-bit relocatable operand. Store the |
9832 | expression in *EP and the relocations in the array starting | |
9833 | at RELOC. Return the number of relocation operators used. | |
ad8d3bb3 | 9834 | |
01a3f561 | 9835 | On exit, EXPR_END points to the first character after the expression. */ |
ad8d3bb3 | 9836 | |
5e0116d5 | 9837 | static size_t |
17a2f251 TS |
9838 | my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc, |
9839 | char *str) | |
ad8d3bb3 | 9840 | { |
5e0116d5 RS |
9841 | bfd_reloc_code_real_type reversed_reloc[3]; |
9842 | size_t reloc_index, i; | |
09b8f35a RS |
9843 | int crux_depth, str_depth; |
9844 | char *crux; | |
5e0116d5 RS |
9845 | |
9846 | /* Search for the start of the main expression, recoding relocations | |
09b8f35a RS |
9847 | in REVERSED_RELOC. End the loop with CRUX pointing to the start |
9848 | of the main expression and with CRUX_DEPTH containing the number | |
9849 | of open brackets at that point. */ | |
9850 | reloc_index = -1; | |
9851 | str_depth = 0; | |
9852 | do | |
fb1b3232 | 9853 | { |
09b8f35a RS |
9854 | reloc_index++; |
9855 | crux = str; | |
9856 | crux_depth = str_depth; | |
9857 | ||
9858 | /* Skip over whitespace and brackets, keeping count of the number | |
9859 | of brackets. */ | |
9860 | while (*str == ' ' || *str == '\t' || *str == '(') | |
9861 | if (*str++ == '(') | |
9862 | str_depth++; | |
5e0116d5 | 9863 | } |
09b8f35a RS |
9864 | while (*str == '%' |
9865 | && reloc_index < (HAVE_NEWABI ? 3 : 1) | |
9866 | && parse_relocation (&str, &reversed_reloc[reloc_index])); | |
ad8d3bb3 | 9867 | |
09b8f35a | 9868 | my_getExpression (ep, crux); |
5e0116d5 | 9869 | str = expr_end; |
394f9b3a | 9870 | |
5e0116d5 | 9871 | /* Match every open bracket. */ |
09b8f35a | 9872 | while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t')) |
5e0116d5 | 9873 | if (*str++ == ')') |
09b8f35a | 9874 | crux_depth--; |
394f9b3a | 9875 | |
09b8f35a | 9876 | if (crux_depth > 0) |
5e0116d5 | 9877 | as_bad ("unclosed '('"); |
394f9b3a | 9878 | |
5e0116d5 | 9879 | expr_end = str; |
252b5132 | 9880 | |
01a3f561 | 9881 | if (reloc_index != 0) |
64bdfcaf RS |
9882 | { |
9883 | prev_reloc_op_frag = frag_now; | |
9884 | for (i = 0; i < reloc_index; i++) | |
9885 | reloc[i] = reversed_reloc[reloc_index - 1 - i]; | |
9886 | } | |
fb1b3232 | 9887 | |
5e0116d5 | 9888 | return reloc_index; |
252b5132 RH |
9889 | } |
9890 | ||
9891 | static void | |
17a2f251 | 9892 | my_getExpression (expressionS *ep, char *str) |
252b5132 RH |
9893 | { |
9894 | char *save_in; | |
98aa84af | 9895 | valueT val; |
252b5132 RH |
9896 | |
9897 | save_in = input_line_pointer; | |
9898 | input_line_pointer = str; | |
9899 | expression (ep); | |
9900 | expr_end = input_line_pointer; | |
9901 | input_line_pointer = save_in; | |
9902 | ||
9903 | /* If we are in mips16 mode, and this is an expression based on `.', | |
9904 | then we bump the value of the symbol by 1 since that is how other | |
9905 | text symbols are handled. We don't bother to handle complex | |
9906 | expressions, just `.' plus or minus a constant. */ | |
9907 | if (mips_opts.mips16 | |
9908 | && ep->X_op == O_symbol | |
9909 | && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0 | |
9910 | && S_GET_SEGMENT (ep->X_add_symbol) == now_seg | |
49309057 ILT |
9911 | && symbol_get_frag (ep->X_add_symbol) == frag_now |
9912 | && symbol_constant_p (ep->X_add_symbol) | |
98aa84af AM |
9913 | && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ()) |
9914 | S_SET_VALUE (ep->X_add_symbol, val + 1); | |
252b5132 RH |
9915 | } |
9916 | ||
9917 | /* Turn a string in input_line_pointer into a floating point constant | |
bc0d738a NC |
9918 | of type TYPE, and store the appropriate bytes in *LITP. The number |
9919 | of LITTLENUMS emitted is stored in *SIZEP. An error message is | |
252b5132 RH |
9920 | returned, or NULL on OK. */ |
9921 | ||
9922 | char * | |
17a2f251 | 9923 | md_atof (int type, char *litP, int *sizeP) |
252b5132 RH |
9924 | { |
9925 | int prec; | |
9926 | LITTLENUM_TYPE words[4]; | |
9927 | char *t; | |
9928 | int i; | |
9929 | ||
9930 | switch (type) | |
9931 | { | |
9932 | case 'f': | |
9933 | prec = 2; | |
9934 | break; | |
9935 | ||
9936 | case 'd': | |
9937 | prec = 4; | |
9938 | break; | |
9939 | ||
9940 | default: | |
9941 | *sizeP = 0; | |
9942 | return _("bad call to md_atof"); | |
9943 | } | |
9944 | ||
9945 | t = atof_ieee (input_line_pointer, type, words); | |
9946 | if (t) | |
9947 | input_line_pointer = t; | |
9948 | ||
9949 | *sizeP = prec * 2; | |
9950 | ||
9951 | if (! target_big_endian) | |
9952 | { | |
9953 | for (i = prec - 1; i >= 0; i--) | |
9954 | { | |
17a2f251 | 9955 | md_number_to_chars (litP, words[i], 2); |
252b5132 RH |
9956 | litP += 2; |
9957 | } | |
9958 | } | |
9959 | else | |
9960 | { | |
9961 | for (i = 0; i < prec; i++) | |
9962 | { | |
17a2f251 | 9963 | md_number_to_chars (litP, words[i], 2); |
252b5132 RH |
9964 | litP += 2; |
9965 | } | |
9966 | } | |
bdaaa2e1 | 9967 | |
252b5132 RH |
9968 | return NULL; |
9969 | } | |
9970 | ||
9971 | void | |
17a2f251 | 9972 | md_number_to_chars (char *buf, valueT val, int n) |
252b5132 RH |
9973 | { |
9974 | if (target_big_endian) | |
9975 | number_to_chars_bigendian (buf, val, n); | |
9976 | else | |
9977 | number_to_chars_littleendian (buf, val, n); | |
9978 | } | |
9979 | \f | |
ae948b86 | 9980 | #ifdef OBJ_ELF |
e013f690 TS |
9981 | static int support_64bit_objects(void) |
9982 | { | |
9983 | const char **list, **l; | |
aa3d8fdf | 9984 | int yes; |
e013f690 TS |
9985 | |
9986 | list = bfd_target_list (); | |
9987 | for (l = list; *l != NULL; l++) | |
9988 | #ifdef TE_TMIPS | |
9989 | /* This is traditional mips */ | |
9990 | if (strcmp (*l, "elf64-tradbigmips") == 0 | |
9991 | || strcmp (*l, "elf64-tradlittlemips") == 0) | |
9992 | #else | |
9993 | if (strcmp (*l, "elf64-bigmips") == 0 | |
9994 | || strcmp (*l, "elf64-littlemips") == 0) | |
9995 | #endif | |
9996 | break; | |
aa3d8fdf | 9997 | yes = (*l != NULL); |
e013f690 | 9998 | free (list); |
aa3d8fdf | 9999 | return yes; |
e013f690 | 10000 | } |
ae948b86 | 10001 | #endif /* OBJ_ELF */ |
e013f690 | 10002 | |
78849248 | 10003 | const char *md_shortopts = "O::g::G:"; |
252b5132 | 10004 | |
e972090a NC |
10005 | struct option md_longopts[] = |
10006 | { | |
f9b4148d CD |
10007 | /* Options which specify architecture. */ |
10008 | #define OPTION_ARCH_BASE (OPTION_MD_BASE) | |
10009 | #define OPTION_MARCH (OPTION_ARCH_BASE + 0) | |
10010 | {"march", required_argument, NULL, OPTION_MARCH}, | |
10011 | #define OPTION_MTUNE (OPTION_ARCH_BASE + 1) | |
10012 | {"mtune", required_argument, NULL, OPTION_MTUNE}, | |
10013 | #define OPTION_MIPS1 (OPTION_ARCH_BASE + 2) | |
252b5132 RH |
10014 | {"mips0", no_argument, NULL, OPTION_MIPS1}, |
10015 | {"mips1", no_argument, NULL, OPTION_MIPS1}, | |
f9b4148d | 10016 | #define OPTION_MIPS2 (OPTION_ARCH_BASE + 3) |
252b5132 | 10017 | {"mips2", no_argument, NULL, OPTION_MIPS2}, |
f9b4148d | 10018 | #define OPTION_MIPS3 (OPTION_ARCH_BASE + 4) |
252b5132 | 10019 | {"mips3", no_argument, NULL, OPTION_MIPS3}, |
f9b4148d | 10020 | #define OPTION_MIPS4 (OPTION_ARCH_BASE + 5) |
252b5132 | 10021 | {"mips4", no_argument, NULL, OPTION_MIPS4}, |
f9b4148d | 10022 | #define OPTION_MIPS5 (OPTION_ARCH_BASE + 6) |
ae948b86 | 10023 | {"mips5", no_argument, NULL, OPTION_MIPS5}, |
f9b4148d | 10024 | #define OPTION_MIPS32 (OPTION_ARCH_BASE + 7) |
ae948b86 | 10025 | {"mips32", no_argument, NULL, OPTION_MIPS32}, |
f9b4148d | 10026 | #define OPTION_MIPS64 (OPTION_ARCH_BASE + 8) |
ae948b86 | 10027 | {"mips64", no_argument, NULL, OPTION_MIPS64}, |
f9b4148d CD |
10028 | #define OPTION_MIPS32R2 (OPTION_ARCH_BASE + 9) |
10029 | {"mips32r2", no_argument, NULL, OPTION_MIPS32R2}, | |
5f74bc13 CD |
10030 | #define OPTION_MIPS64R2 (OPTION_ARCH_BASE + 10) |
10031 | {"mips64r2", no_argument, NULL, OPTION_MIPS64R2}, | |
f9b4148d CD |
10032 | |
10033 | /* Options which specify Application Specific Extensions (ASEs). */ | |
5f74bc13 | 10034 | #define OPTION_ASE_BASE (OPTION_ARCH_BASE + 11) |
f9b4148d CD |
10035 | #define OPTION_MIPS16 (OPTION_ASE_BASE + 0) |
10036 | {"mips16", no_argument, NULL, OPTION_MIPS16}, | |
10037 | #define OPTION_NO_MIPS16 (OPTION_ASE_BASE + 1) | |
10038 | {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16}, | |
10039 | #define OPTION_MIPS3D (OPTION_ASE_BASE + 2) | |
10040 | {"mips3d", no_argument, NULL, OPTION_MIPS3D}, | |
10041 | #define OPTION_NO_MIPS3D (OPTION_ASE_BASE + 3) | |
10042 | {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D}, | |
10043 | #define OPTION_MDMX (OPTION_ASE_BASE + 4) | |
10044 | {"mdmx", no_argument, NULL, OPTION_MDMX}, | |
10045 | #define OPTION_NO_MDMX (OPTION_ASE_BASE + 5) | |
10046 | {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX}, | |
10047 | ||
10048 | /* Old-style architecture options. Don't add more of these. */ | |
10049 | #define OPTION_COMPAT_ARCH_BASE (OPTION_ASE_BASE + 6) | |
10050 | #define OPTION_M4650 (OPTION_COMPAT_ARCH_BASE + 0) | |
10051 | {"m4650", no_argument, NULL, OPTION_M4650}, | |
10052 | #define OPTION_NO_M4650 (OPTION_COMPAT_ARCH_BASE + 1) | |
10053 | {"no-m4650", no_argument, NULL, OPTION_NO_M4650}, | |
10054 | #define OPTION_M4010 (OPTION_COMPAT_ARCH_BASE + 2) | |
10055 | {"m4010", no_argument, NULL, OPTION_M4010}, | |
10056 | #define OPTION_NO_M4010 (OPTION_COMPAT_ARCH_BASE + 3) | |
10057 | {"no-m4010", no_argument, NULL, OPTION_NO_M4010}, | |
10058 | #define OPTION_M4100 (OPTION_COMPAT_ARCH_BASE + 4) | |
10059 | {"m4100", no_argument, NULL, OPTION_M4100}, | |
10060 | #define OPTION_NO_M4100 (OPTION_COMPAT_ARCH_BASE + 5) | |
10061 | {"no-m4100", no_argument, NULL, OPTION_NO_M4100}, | |
10062 | #define OPTION_M3900 (OPTION_COMPAT_ARCH_BASE + 6) | |
10063 | {"m3900", no_argument, NULL, OPTION_M3900}, | |
10064 | #define OPTION_NO_M3900 (OPTION_COMPAT_ARCH_BASE + 7) | |
10065 | {"no-m3900", no_argument, NULL, OPTION_NO_M3900}, | |
10066 | ||
10067 | /* Options which enable bug fixes. */ | |
10068 | #define OPTION_FIX_BASE (OPTION_COMPAT_ARCH_BASE + 8) | |
10069 | #define OPTION_M7000_HILO_FIX (OPTION_FIX_BASE + 0) | |
10070 | {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX}, | |
10071 | #define OPTION_MNO_7000_HILO_FIX (OPTION_FIX_BASE + 1) | |
10072 | {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX}, | |
10073 | {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX}, | |
d766e8ec RS |
10074 | #define OPTION_FIX_VR4120 (OPTION_FIX_BASE + 2) |
10075 | #define OPTION_NO_FIX_VR4120 (OPTION_FIX_BASE + 3) | |
10076 | {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120}, | |
10077 | {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120}, | |
f9b4148d CD |
10078 | |
10079 | /* Miscellaneous options. */ | |
10080 | #define OPTION_MISC_BASE (OPTION_FIX_BASE + 4) | |
1ffcab4b | 10081 | #define OPTION_TRAP (OPTION_MISC_BASE + 0) |
252b5132 RH |
10082 | {"trap", no_argument, NULL, OPTION_TRAP}, |
10083 | {"no-break", no_argument, NULL, OPTION_TRAP}, | |
1ffcab4b | 10084 | #define OPTION_BREAK (OPTION_MISC_BASE + 1) |
252b5132 RH |
10085 | {"break", no_argument, NULL, OPTION_BREAK}, |
10086 | {"no-trap", no_argument, NULL, OPTION_BREAK}, | |
1ffcab4b | 10087 | #define OPTION_EB (OPTION_MISC_BASE + 2) |
252b5132 | 10088 | {"EB", no_argument, NULL, OPTION_EB}, |
1ffcab4b | 10089 | #define OPTION_EL (OPTION_MISC_BASE + 3) |
252b5132 | 10090 | {"EL", no_argument, NULL, OPTION_EL}, |
1ffcab4b | 10091 | #define OPTION_FP32 (OPTION_MISC_BASE + 4) |
ae948b86 | 10092 | {"mfp32", no_argument, NULL, OPTION_FP32}, |
1ffcab4b | 10093 | #define OPTION_GP32 (OPTION_MISC_BASE + 5) |
c97ef257 | 10094 | {"mgp32", no_argument, NULL, OPTION_GP32}, |
1ffcab4b | 10095 | #define OPTION_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 6) |
119d663a | 10096 | {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS}, |
1ffcab4b | 10097 | #define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 7) |
119d663a | 10098 | {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS}, |
1ffcab4b | 10099 | #define OPTION_FP64 (OPTION_MISC_BASE + 8) |
316f5878 | 10100 | {"mfp64", no_argument, NULL, OPTION_FP64}, |
1ffcab4b | 10101 | #define OPTION_GP64 (OPTION_MISC_BASE + 9) |
ae948b86 | 10102 | {"mgp64", no_argument, NULL, OPTION_GP64}, |
1ffcab4b CD |
10103 | #define OPTION_RELAX_BRANCH (OPTION_MISC_BASE + 10) |
10104 | #define OPTION_NO_RELAX_BRANCH (OPTION_MISC_BASE + 11) | |
4a6a3df4 AO |
10105 | {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH}, |
10106 | {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH}, | |
f9b4148d CD |
10107 | |
10108 | /* ELF-specific options. */ | |
156c2f8b | 10109 | #ifdef OBJ_ELF |
1ffcab4b | 10110 | #define OPTION_ELF_BASE (OPTION_MISC_BASE + 12) |
156c2f8b | 10111 | #define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0) |
156c2f8b NC |
10112 | {"KPIC", no_argument, NULL, OPTION_CALL_SHARED}, |
10113 | {"call_shared", no_argument, NULL, OPTION_CALL_SHARED}, | |
ae948b86 | 10114 | #define OPTION_NON_SHARED (OPTION_ELF_BASE + 1) |
156c2f8b | 10115 | {"non_shared", no_argument, NULL, OPTION_NON_SHARED}, |
ae948b86 | 10116 | #define OPTION_XGOT (OPTION_ELF_BASE + 2) |
156c2f8b | 10117 | {"xgot", no_argument, NULL, OPTION_XGOT}, |
ae948b86 TS |
10118 | #define OPTION_MABI (OPTION_ELF_BASE + 3) |
10119 | {"mabi", required_argument, NULL, OPTION_MABI}, | |
10120 | #define OPTION_32 (OPTION_ELF_BASE + 4) | |
156c2f8b | 10121 | {"32", no_argument, NULL, OPTION_32}, |
ae948b86 | 10122 | #define OPTION_N32 (OPTION_ELF_BASE + 5) |
e013f690 | 10123 | {"n32", no_argument, NULL, OPTION_N32}, |
ae948b86 | 10124 | #define OPTION_64 (OPTION_ELF_BASE + 6) |
156c2f8b | 10125 | {"64", no_argument, NULL, OPTION_64}, |
ecb4347a DJ |
10126 | #define OPTION_MDEBUG (OPTION_ELF_BASE + 7) |
10127 | {"mdebug", no_argument, NULL, OPTION_MDEBUG}, | |
10128 | #define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 8) | |
10129 | {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG}, | |
dcd410fe RO |
10130 | #define OPTION_PDR (OPTION_ELF_BASE + 9) |
10131 | {"mpdr", no_argument, NULL, OPTION_PDR}, | |
10132 | #define OPTION_NO_PDR (OPTION_ELF_BASE + 10) | |
10133 | {"mno-pdr", no_argument, NULL, OPTION_NO_PDR}, | |
ae948b86 | 10134 | #endif /* OBJ_ELF */ |
f9b4148d | 10135 | |
252b5132 RH |
10136 | {NULL, no_argument, NULL, 0} |
10137 | }; | |
156c2f8b | 10138 | size_t md_longopts_size = sizeof (md_longopts); |
252b5132 | 10139 | |
316f5878 RS |
10140 | /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to |
10141 | NEW_VALUE. Warn if another value was already specified. Note: | |
10142 | we have to defer parsing the -march and -mtune arguments in order | |
10143 | to handle 'from-abi' correctly, since the ABI might be specified | |
10144 | in a later argument. */ | |
10145 | ||
10146 | static void | |
17a2f251 | 10147 | mips_set_option_string (const char **string_ptr, const char *new_value) |
316f5878 RS |
10148 | { |
10149 | if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0) | |
10150 | as_warn (_("A different %s was already specified, is now %s"), | |
10151 | string_ptr == &mips_arch_string ? "-march" : "-mtune", | |
10152 | new_value); | |
10153 | ||
10154 | *string_ptr = new_value; | |
10155 | } | |
10156 | ||
252b5132 | 10157 | int |
17a2f251 | 10158 | md_parse_option (int c, char *arg) |
252b5132 RH |
10159 | { |
10160 | switch (c) | |
10161 | { | |
119d663a NC |
10162 | case OPTION_CONSTRUCT_FLOATS: |
10163 | mips_disable_float_construction = 0; | |
10164 | break; | |
bdaaa2e1 | 10165 | |
119d663a NC |
10166 | case OPTION_NO_CONSTRUCT_FLOATS: |
10167 | mips_disable_float_construction = 1; | |
10168 | break; | |
bdaaa2e1 | 10169 | |
252b5132 RH |
10170 | case OPTION_TRAP: |
10171 | mips_trap = 1; | |
10172 | break; | |
10173 | ||
10174 | case OPTION_BREAK: | |
10175 | mips_trap = 0; | |
10176 | break; | |
10177 | ||
10178 | case OPTION_EB: | |
10179 | target_big_endian = 1; | |
10180 | break; | |
10181 | ||
10182 | case OPTION_EL: | |
10183 | target_big_endian = 0; | |
10184 | break; | |
10185 | ||
10186 | case 'O': | |
10187 | if (arg && arg[1] == '0') | |
10188 | mips_optimize = 1; | |
10189 | else | |
10190 | mips_optimize = 2; | |
10191 | break; | |
10192 | ||
10193 | case 'g': | |
10194 | if (arg == NULL) | |
10195 | mips_debug = 2; | |
10196 | else | |
10197 | mips_debug = atoi (arg); | |
10198 | /* When the MIPS assembler sees -g or -g2, it does not do | |
10199 | optimizations which limit full symbolic debugging. We take | |
10200 | that to be equivalent to -O0. */ | |
10201 | if (mips_debug == 2) | |
10202 | mips_optimize = 1; | |
10203 | break; | |
10204 | ||
10205 | case OPTION_MIPS1: | |
316f5878 | 10206 | file_mips_isa = ISA_MIPS1; |
252b5132 RH |
10207 | break; |
10208 | ||
10209 | case OPTION_MIPS2: | |
316f5878 | 10210 | file_mips_isa = ISA_MIPS2; |
252b5132 RH |
10211 | break; |
10212 | ||
10213 | case OPTION_MIPS3: | |
316f5878 | 10214 | file_mips_isa = ISA_MIPS3; |
252b5132 RH |
10215 | break; |
10216 | ||
10217 | case OPTION_MIPS4: | |
316f5878 | 10218 | file_mips_isa = ISA_MIPS4; |
e7af610e NC |
10219 | break; |
10220 | ||
84ea6cf2 | 10221 | case OPTION_MIPS5: |
316f5878 | 10222 | file_mips_isa = ISA_MIPS5; |
84ea6cf2 NC |
10223 | break; |
10224 | ||
e7af610e | 10225 | case OPTION_MIPS32: |
316f5878 | 10226 | file_mips_isa = ISA_MIPS32; |
252b5132 RH |
10227 | break; |
10228 | ||
af7ee8bf CD |
10229 | case OPTION_MIPS32R2: |
10230 | file_mips_isa = ISA_MIPS32R2; | |
10231 | break; | |
10232 | ||
5f74bc13 CD |
10233 | case OPTION_MIPS64R2: |
10234 | file_mips_isa = ISA_MIPS64R2; | |
10235 | break; | |
10236 | ||
84ea6cf2 | 10237 | case OPTION_MIPS64: |
316f5878 | 10238 | file_mips_isa = ISA_MIPS64; |
84ea6cf2 NC |
10239 | break; |
10240 | ||
ec68c924 | 10241 | case OPTION_MTUNE: |
316f5878 RS |
10242 | mips_set_option_string (&mips_tune_string, arg); |
10243 | break; | |
ec68c924 | 10244 | |
316f5878 RS |
10245 | case OPTION_MARCH: |
10246 | mips_set_option_string (&mips_arch_string, arg); | |
252b5132 RH |
10247 | break; |
10248 | ||
10249 | case OPTION_M4650: | |
316f5878 RS |
10250 | mips_set_option_string (&mips_arch_string, "4650"); |
10251 | mips_set_option_string (&mips_tune_string, "4650"); | |
252b5132 RH |
10252 | break; |
10253 | ||
10254 | case OPTION_NO_M4650: | |
10255 | break; | |
10256 | ||
10257 | case OPTION_M4010: | |
316f5878 RS |
10258 | mips_set_option_string (&mips_arch_string, "4010"); |
10259 | mips_set_option_string (&mips_tune_string, "4010"); | |
252b5132 RH |
10260 | break; |
10261 | ||
10262 | case OPTION_NO_M4010: | |
10263 | break; | |
10264 | ||
10265 | case OPTION_M4100: | |
316f5878 RS |
10266 | mips_set_option_string (&mips_arch_string, "4100"); |
10267 | mips_set_option_string (&mips_tune_string, "4100"); | |
252b5132 RH |
10268 | break; |
10269 | ||
10270 | case OPTION_NO_M4100: | |
10271 | break; | |
10272 | ||
252b5132 | 10273 | case OPTION_M3900: |
316f5878 RS |
10274 | mips_set_option_string (&mips_arch_string, "3900"); |
10275 | mips_set_option_string (&mips_tune_string, "3900"); | |
252b5132 | 10276 | break; |
bdaaa2e1 | 10277 | |
252b5132 RH |
10278 | case OPTION_NO_M3900: |
10279 | break; | |
10280 | ||
deec1734 CD |
10281 | case OPTION_MDMX: |
10282 | mips_opts.ase_mdmx = 1; | |
10283 | break; | |
10284 | ||
10285 | case OPTION_NO_MDMX: | |
10286 | mips_opts.ase_mdmx = 0; | |
10287 | break; | |
10288 | ||
252b5132 RH |
10289 | case OPTION_MIPS16: |
10290 | mips_opts.mips16 = 1; | |
b34976b6 | 10291 | mips_no_prev_insn (FALSE); |
252b5132 RH |
10292 | break; |
10293 | ||
10294 | case OPTION_NO_MIPS16: | |
10295 | mips_opts.mips16 = 0; | |
b34976b6 | 10296 | mips_no_prev_insn (FALSE); |
252b5132 RH |
10297 | break; |
10298 | ||
1f25f5d3 CD |
10299 | case OPTION_MIPS3D: |
10300 | mips_opts.ase_mips3d = 1; | |
10301 | break; | |
10302 | ||
10303 | case OPTION_NO_MIPS3D: | |
10304 | mips_opts.ase_mips3d = 0; | |
10305 | break; | |
10306 | ||
d766e8ec RS |
10307 | case OPTION_FIX_VR4120: |
10308 | mips_fix_vr4120 = 1; | |
60b63b72 RS |
10309 | break; |
10310 | ||
d766e8ec RS |
10311 | case OPTION_NO_FIX_VR4120: |
10312 | mips_fix_vr4120 = 0; | |
60b63b72 RS |
10313 | break; |
10314 | ||
4a6a3df4 AO |
10315 | case OPTION_RELAX_BRANCH: |
10316 | mips_relax_branch = 1; | |
10317 | break; | |
10318 | ||
10319 | case OPTION_NO_RELAX_BRANCH: | |
10320 | mips_relax_branch = 0; | |
10321 | break; | |
10322 | ||
0f074f60 | 10323 | #ifdef OBJ_ELF |
252b5132 RH |
10324 | /* When generating ELF code, we permit -KPIC and -call_shared to |
10325 | select SVR4_PIC, and -non_shared to select no PIC. This is | |
10326 | intended to be compatible with Irix 5. */ | |
10327 | case OPTION_CALL_SHARED: | |
10328 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour) | |
10329 | { | |
10330 | as_bad (_("-call_shared is supported only for ELF format")); | |
10331 | return 0; | |
10332 | } | |
10333 | mips_pic = SVR4_PIC; | |
143d77c5 | 10334 | mips_abicalls = TRUE; |
252b5132 RH |
10335 | if (g_switch_seen && g_switch_value != 0) |
10336 | { | |
10337 | as_bad (_("-G may not be used with SVR4 PIC code")); | |
10338 | return 0; | |
10339 | } | |
10340 | g_switch_value = 0; | |
10341 | break; | |
10342 | ||
10343 | case OPTION_NON_SHARED: | |
10344 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour) | |
10345 | { | |
10346 | as_bad (_("-non_shared is supported only for ELF format")); | |
10347 | return 0; | |
10348 | } | |
10349 | mips_pic = NO_PIC; | |
143d77c5 | 10350 | mips_abicalls = FALSE; |
252b5132 RH |
10351 | break; |
10352 | ||
10353 | /* The -xgot option tells the assembler to use 32 offsets when | |
10354 | accessing the got in SVR4_PIC mode. It is for Irix | |
10355 | compatibility. */ | |
10356 | case OPTION_XGOT: | |
10357 | mips_big_got = 1; | |
10358 | break; | |
0f074f60 | 10359 | #endif /* OBJ_ELF */ |
252b5132 RH |
10360 | |
10361 | case 'G': | |
3e722fb5 | 10362 | if (mips_pic == SVR4_PIC) |
252b5132 | 10363 | { |
3e722fb5 | 10364 | as_bad (_("-G may not be used with SVR4 PIC code")); |
252b5132 RH |
10365 | return 0; |
10366 | } | |
10367 | else | |
10368 | g_switch_value = atoi (arg); | |
10369 | g_switch_seen = 1; | |
10370 | break; | |
10371 | ||
0f074f60 | 10372 | #ifdef OBJ_ELF |
34ba82a8 TS |
10373 | /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32 |
10374 | and -mabi=64. */ | |
252b5132 | 10375 | case OPTION_32: |
34ba82a8 TS |
10376 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour) |
10377 | { | |
10378 | as_bad (_("-32 is supported for ELF format only")); | |
10379 | return 0; | |
10380 | } | |
316f5878 | 10381 | mips_abi = O32_ABI; |
252b5132 RH |
10382 | break; |
10383 | ||
e013f690 | 10384 | case OPTION_N32: |
34ba82a8 TS |
10385 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour) |
10386 | { | |
10387 | as_bad (_("-n32 is supported for ELF format only")); | |
10388 | return 0; | |
10389 | } | |
316f5878 | 10390 | mips_abi = N32_ABI; |
e013f690 | 10391 | break; |
252b5132 | 10392 | |
e013f690 | 10393 | case OPTION_64: |
34ba82a8 TS |
10394 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour) |
10395 | { | |
10396 | as_bad (_("-64 is supported for ELF format only")); | |
10397 | return 0; | |
10398 | } | |
316f5878 | 10399 | mips_abi = N64_ABI; |
e013f690 TS |
10400 | if (! support_64bit_objects()) |
10401 | as_fatal (_("No compiled in support for 64 bit object file format")); | |
252b5132 | 10402 | break; |
ae948b86 | 10403 | #endif /* OBJ_ELF */ |
252b5132 | 10404 | |
c97ef257 | 10405 | case OPTION_GP32: |
a325df1d | 10406 | file_mips_gp32 = 1; |
c97ef257 AH |
10407 | break; |
10408 | ||
10409 | case OPTION_GP64: | |
a325df1d | 10410 | file_mips_gp32 = 0; |
c97ef257 | 10411 | break; |
252b5132 | 10412 | |
ca4e0257 | 10413 | case OPTION_FP32: |
a325df1d | 10414 | file_mips_fp32 = 1; |
316f5878 RS |
10415 | break; |
10416 | ||
10417 | case OPTION_FP64: | |
10418 | file_mips_fp32 = 0; | |
ca4e0257 RS |
10419 | break; |
10420 | ||
ae948b86 | 10421 | #ifdef OBJ_ELF |
252b5132 | 10422 | case OPTION_MABI: |
34ba82a8 TS |
10423 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour) |
10424 | { | |
10425 | as_bad (_("-mabi is supported for ELF format only")); | |
10426 | return 0; | |
10427 | } | |
e013f690 | 10428 | if (strcmp (arg, "32") == 0) |
316f5878 | 10429 | mips_abi = O32_ABI; |
e013f690 | 10430 | else if (strcmp (arg, "o64") == 0) |
316f5878 | 10431 | mips_abi = O64_ABI; |
e013f690 | 10432 | else if (strcmp (arg, "n32") == 0) |
316f5878 | 10433 | mips_abi = N32_ABI; |
e013f690 TS |
10434 | else if (strcmp (arg, "64") == 0) |
10435 | { | |
316f5878 | 10436 | mips_abi = N64_ABI; |
e013f690 TS |
10437 | if (! support_64bit_objects()) |
10438 | as_fatal (_("No compiled in support for 64 bit object file " | |
10439 | "format")); | |
10440 | } | |
10441 | else if (strcmp (arg, "eabi") == 0) | |
316f5878 | 10442 | mips_abi = EABI_ABI; |
e013f690 | 10443 | else |
da0e507f TS |
10444 | { |
10445 | as_fatal (_("invalid abi -mabi=%s"), arg); | |
10446 | return 0; | |
10447 | } | |
252b5132 | 10448 | break; |
e013f690 | 10449 | #endif /* OBJ_ELF */ |
252b5132 | 10450 | |
6b76fefe | 10451 | case OPTION_M7000_HILO_FIX: |
b34976b6 | 10452 | mips_7000_hilo_fix = TRUE; |
6b76fefe CM |
10453 | break; |
10454 | ||
9ee72ff1 | 10455 | case OPTION_MNO_7000_HILO_FIX: |
b34976b6 | 10456 | mips_7000_hilo_fix = FALSE; |
6b76fefe CM |
10457 | break; |
10458 | ||
ecb4347a DJ |
10459 | #ifdef OBJ_ELF |
10460 | case OPTION_MDEBUG: | |
b34976b6 | 10461 | mips_flag_mdebug = TRUE; |
ecb4347a DJ |
10462 | break; |
10463 | ||
10464 | case OPTION_NO_MDEBUG: | |
b34976b6 | 10465 | mips_flag_mdebug = FALSE; |
ecb4347a | 10466 | break; |
dcd410fe RO |
10467 | |
10468 | case OPTION_PDR: | |
10469 | mips_flag_pdr = TRUE; | |
10470 | break; | |
10471 | ||
10472 | case OPTION_NO_PDR: | |
10473 | mips_flag_pdr = FALSE; | |
10474 | break; | |
ecb4347a DJ |
10475 | #endif /* OBJ_ELF */ |
10476 | ||
252b5132 RH |
10477 | default: |
10478 | return 0; | |
10479 | } | |
10480 | ||
10481 | return 1; | |
10482 | } | |
316f5878 RS |
10483 | \f |
10484 | /* Set up globals to generate code for the ISA or processor | |
10485 | described by INFO. */ | |
252b5132 | 10486 | |
252b5132 | 10487 | static void |
17a2f251 | 10488 | mips_set_architecture (const struct mips_cpu_info *info) |
252b5132 | 10489 | { |
316f5878 | 10490 | if (info != 0) |
252b5132 | 10491 | { |
fef14a42 TS |
10492 | file_mips_arch = info->cpu; |
10493 | mips_opts.arch = info->cpu; | |
316f5878 | 10494 | mips_opts.isa = info->isa; |
252b5132 | 10495 | } |
252b5132 RH |
10496 | } |
10497 | ||
252b5132 | 10498 | |
316f5878 | 10499 | /* Likewise for tuning. */ |
252b5132 | 10500 | |
316f5878 | 10501 | static void |
17a2f251 | 10502 | mips_set_tune (const struct mips_cpu_info *info) |
316f5878 RS |
10503 | { |
10504 | if (info != 0) | |
fef14a42 | 10505 | mips_tune = info->cpu; |
316f5878 | 10506 | } |
80cc45a5 | 10507 | |
34ba82a8 | 10508 | |
252b5132 | 10509 | void |
17a2f251 | 10510 | mips_after_parse_args (void) |
e9670677 | 10511 | { |
fef14a42 TS |
10512 | const struct mips_cpu_info *arch_info = 0; |
10513 | const struct mips_cpu_info *tune_info = 0; | |
10514 | ||
e9670677 MR |
10515 | /* GP relative stuff not working for PE */ |
10516 | if (strncmp (TARGET_OS, "pe", 2) == 0 | |
10517 | && g_switch_value != 0) | |
10518 | { | |
10519 | if (g_switch_seen) | |
10520 | as_bad (_("-G not supported in this configuration.")); | |
10521 | g_switch_value = 0; | |
10522 | } | |
10523 | ||
cac012d6 AO |
10524 | if (mips_abi == NO_ABI) |
10525 | mips_abi = MIPS_DEFAULT_ABI; | |
10526 | ||
22923709 RS |
10527 | /* The following code determines the architecture and register size. |
10528 | Similar code was added to GCC 3.3 (see override_options() in | |
10529 | config/mips/mips.c). The GAS and GCC code should be kept in sync | |
10530 | as much as possible. */ | |
e9670677 | 10531 | |
316f5878 | 10532 | if (mips_arch_string != 0) |
fef14a42 | 10533 | arch_info = mips_parse_cpu ("-march", mips_arch_string); |
e9670677 | 10534 | |
316f5878 | 10535 | if (file_mips_isa != ISA_UNKNOWN) |
e9670677 | 10536 | { |
316f5878 | 10537 | /* Handle -mipsN. At this point, file_mips_isa contains the |
fef14a42 | 10538 | ISA level specified by -mipsN, while arch_info->isa contains |
316f5878 | 10539 | the -march selection (if any). */ |
fef14a42 | 10540 | if (arch_info != 0) |
e9670677 | 10541 | { |
316f5878 RS |
10542 | /* -march takes precedence over -mipsN, since it is more descriptive. |
10543 | There's no harm in specifying both as long as the ISA levels | |
10544 | are the same. */ | |
fef14a42 | 10545 | if (file_mips_isa != arch_info->isa) |
316f5878 RS |
10546 | as_bad (_("-%s conflicts with the other architecture options, which imply -%s"), |
10547 | mips_cpu_info_from_isa (file_mips_isa)->name, | |
fef14a42 | 10548 | mips_cpu_info_from_isa (arch_info->isa)->name); |
e9670677 | 10549 | } |
316f5878 | 10550 | else |
fef14a42 | 10551 | arch_info = mips_cpu_info_from_isa (file_mips_isa); |
e9670677 MR |
10552 | } |
10553 | ||
fef14a42 TS |
10554 | if (arch_info == 0) |
10555 | arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT); | |
e9670677 | 10556 | |
fef14a42 | 10557 | if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa)) |
316f5878 | 10558 | as_bad ("-march=%s is not compatible with the selected ABI", |
fef14a42 TS |
10559 | arch_info->name); |
10560 | ||
10561 | mips_set_architecture (arch_info); | |
10562 | ||
10563 | /* Optimize for file_mips_arch, unless -mtune selects a different processor. */ | |
10564 | if (mips_tune_string != 0) | |
10565 | tune_info = mips_parse_cpu ("-mtune", mips_tune_string); | |
e9670677 | 10566 | |
fef14a42 TS |
10567 | if (tune_info == 0) |
10568 | mips_set_tune (arch_info); | |
10569 | else | |
10570 | mips_set_tune (tune_info); | |
e9670677 | 10571 | |
316f5878 | 10572 | if (file_mips_gp32 >= 0) |
e9670677 | 10573 | { |
316f5878 RS |
10574 | /* The user specified the size of the integer registers. Make sure |
10575 | it agrees with the ABI and ISA. */ | |
10576 | if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa)) | |
10577 | as_bad (_("-mgp64 used with a 32-bit processor")); | |
10578 | else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi)) | |
10579 | as_bad (_("-mgp32 used with a 64-bit ABI")); | |
10580 | else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi)) | |
10581 | as_bad (_("-mgp64 used with a 32-bit ABI")); | |
e9670677 MR |
10582 | } |
10583 | else | |
10584 | { | |
316f5878 RS |
10585 | /* Infer the integer register size from the ABI and processor. |
10586 | Restrict ourselves to 32-bit registers if that's all the | |
10587 | processor has, or if the ABI cannot handle 64-bit registers. */ | |
10588 | file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi) | |
10589 | || !ISA_HAS_64BIT_REGS (mips_opts.isa)); | |
e9670677 MR |
10590 | } |
10591 | ||
316f5878 RS |
10592 | /* ??? GAS treats single-float processors as though they had 64-bit |
10593 | float registers (although it complains when double-precision | |
10594 | instructions are used). As things stand, saying they have 32-bit | |
10595 | registers would lead to spurious "register must be even" messages. | |
10596 | So here we assume float registers are always the same size as | |
10597 | integer ones, unless the user says otherwise. */ | |
10598 | if (file_mips_fp32 < 0) | |
10599 | file_mips_fp32 = file_mips_gp32; | |
e9670677 | 10600 | |
316f5878 | 10601 | /* End of GCC-shared inference code. */ |
e9670677 | 10602 | |
17a2f251 TS |
10603 | /* This flag is set when we have a 64-bit capable CPU but use only |
10604 | 32-bit wide registers. Note that EABI does not use it. */ | |
10605 | if (ISA_HAS_64BIT_REGS (mips_opts.isa) | |
10606 | && ((mips_abi == NO_ABI && file_mips_gp32 == 1) | |
10607 | || mips_abi == O32_ABI)) | |
316f5878 | 10608 | mips_32bitmode = 1; |
e9670677 MR |
10609 | |
10610 | if (mips_opts.isa == ISA_MIPS1 && mips_trap) | |
10611 | as_bad (_("trap exception not supported at ISA 1")); | |
10612 | ||
e9670677 MR |
10613 | /* If the selected architecture includes support for ASEs, enable |
10614 | generation of code for them. */ | |
a4672219 | 10615 | if (mips_opts.mips16 == -1) |
fef14a42 | 10616 | mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0; |
ffdefa66 | 10617 | if (mips_opts.ase_mips3d == -1) |
fef14a42 | 10618 | mips_opts.ase_mips3d = (CPU_HAS_MIPS3D (file_mips_arch)) ? 1 : 0; |
ffdefa66 | 10619 | if (mips_opts.ase_mdmx == -1) |
fef14a42 | 10620 | mips_opts.ase_mdmx = (CPU_HAS_MDMX (file_mips_arch)) ? 1 : 0; |
e9670677 | 10621 | |
e9670677 | 10622 | file_mips_isa = mips_opts.isa; |
a4672219 | 10623 | file_ase_mips16 = mips_opts.mips16; |
e9670677 MR |
10624 | file_ase_mips3d = mips_opts.ase_mips3d; |
10625 | file_ase_mdmx = mips_opts.ase_mdmx; | |
10626 | mips_opts.gp32 = file_mips_gp32; | |
10627 | mips_opts.fp32 = file_mips_fp32; | |
10628 | ||
ecb4347a DJ |
10629 | if (mips_flag_mdebug < 0) |
10630 | { | |
10631 | #ifdef OBJ_MAYBE_ECOFF | |
10632 | if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour) | |
10633 | mips_flag_mdebug = 1; | |
10634 | else | |
10635 | #endif /* OBJ_MAYBE_ECOFF */ | |
10636 | mips_flag_mdebug = 0; | |
10637 | } | |
e9670677 MR |
10638 | } |
10639 | \f | |
10640 | void | |
17a2f251 | 10641 | mips_init_after_args (void) |
252b5132 RH |
10642 | { |
10643 | /* initialize opcodes */ | |
10644 | bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes; | |
beae10d5 | 10645 | mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes; |
252b5132 RH |
10646 | } |
10647 | ||
10648 | long | |
17a2f251 | 10649 | md_pcrel_from (fixS *fixP) |
252b5132 | 10650 | { |
a7ebbfdf TS |
10651 | valueT addr = fixP->fx_where + fixP->fx_frag->fr_address; |
10652 | switch (fixP->fx_r_type) | |
10653 | { | |
10654 | case BFD_RELOC_16_PCREL_S2: | |
10655 | case BFD_RELOC_MIPS_JMP: | |
10656 | /* Return the address of the delay slot. */ | |
10657 | return addr + 4; | |
10658 | default: | |
10659 | return addr; | |
10660 | } | |
252b5132 RH |
10661 | } |
10662 | ||
252b5132 RH |
10663 | /* This is called before the symbol table is processed. In order to |
10664 | work with gcc when using mips-tfile, we must keep all local labels. | |
10665 | However, in other cases, we want to discard them. If we were | |
10666 | called with -g, but we didn't see any debugging information, it may | |
10667 | mean that gcc is smuggling debugging information through to | |
10668 | mips-tfile, in which case we must generate all local labels. */ | |
10669 | ||
10670 | void | |
17a2f251 | 10671 | mips_frob_file_before_adjust (void) |
252b5132 RH |
10672 | { |
10673 | #ifndef NO_ECOFF_DEBUGGING | |
10674 | if (ECOFF_DEBUGGING | |
10675 | && mips_debug != 0 | |
10676 | && ! ecoff_debugging_seen) | |
10677 | flag_keep_locals = 1; | |
10678 | #endif | |
10679 | } | |
10680 | ||
3b91255e RS |
10681 | /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede |
10682 | the corresponding LO16 reloc. This is called before md_apply_fix3 and | |
10683 | tc_gen_reloc. Unmatched relocs can only be generated by use of explicit | |
10684 | relocation operators. | |
10685 | ||
10686 | For our purposes, a %lo() expression matches a %got() or %hi() | |
10687 | expression if: | |
10688 | ||
10689 | (a) it refers to the same symbol; and | |
10690 | (b) the offset applied in the %lo() expression is no lower than | |
10691 | the offset applied in the %got() or %hi(). | |
10692 | ||
10693 | (b) allows us to cope with code like: | |
10694 | ||
10695 | lui $4,%hi(foo) | |
10696 | lh $4,%lo(foo+2)($4) | |
10697 | ||
10698 | ...which is legal on RELA targets, and has a well-defined behaviour | |
10699 | if the user knows that adding 2 to "foo" will not induce a carry to | |
10700 | the high 16 bits. | |
10701 | ||
10702 | When several %lo()s match a particular %got() or %hi(), we use the | |
10703 | following rules to distinguish them: | |
10704 | ||
10705 | (1) %lo()s with smaller offsets are a better match than %lo()s with | |
10706 | higher offsets. | |
10707 | ||
10708 | (2) %lo()s with no matching %got() or %hi() are better than those | |
10709 | that already have a matching %got() or %hi(). | |
10710 | ||
10711 | (3) later %lo()s are better than earlier %lo()s. | |
10712 | ||
10713 | These rules are applied in order. | |
10714 | ||
10715 | (1) means, among other things, that %lo()s with identical offsets are | |
10716 | chosen if they exist. | |
10717 | ||
10718 | (2) means that we won't associate several high-part relocations with | |
10719 | the same low-part relocation unless there's no alternative. Having | |
10720 | several high parts for the same low part is a GNU extension; this rule | |
10721 | allows careful users to avoid it. | |
10722 | ||
10723 | (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order, | |
10724 | with the last high-part relocation being at the front of the list. | |
10725 | It therefore makes sense to choose the last matching low-part | |
10726 | relocation, all other things being equal. It's also easier | |
10727 | to code that way. */ | |
252b5132 RH |
10728 | |
10729 | void | |
17a2f251 | 10730 | mips_frob_file (void) |
252b5132 RH |
10731 | { |
10732 | struct mips_hi_fixup *l; | |
10733 | ||
10734 | for (l = mips_hi_fixup_list; l != NULL; l = l->next) | |
10735 | { | |
10736 | segment_info_type *seginfo; | |
3b91255e RS |
10737 | bfd_boolean matched_lo_p; |
10738 | fixS **hi_pos, **lo_pos, **pos; | |
252b5132 | 10739 | |
5919d012 | 10740 | assert (reloc_needs_lo_p (l->fixp->fx_r_type)); |
252b5132 | 10741 | |
5919d012 RS |
10742 | /* If a GOT16 relocation turns out to be against a global symbol, |
10743 | there isn't supposed to be a matching LO. */ | |
10744 | if (l->fixp->fx_r_type == BFD_RELOC_MIPS_GOT16 | |
10745 | && !pic_need_relax (l->fixp->fx_addsy, l->seg)) | |
10746 | continue; | |
10747 | ||
10748 | /* Check quickly whether the next fixup happens to be a matching %lo. */ | |
10749 | if (fixup_has_matching_lo_p (l->fixp)) | |
252b5132 RH |
10750 | continue; |
10751 | ||
252b5132 | 10752 | seginfo = seg_info (l->seg); |
252b5132 | 10753 | |
3b91255e RS |
10754 | /* Set HI_POS to the position of this relocation in the chain. |
10755 | Set LO_POS to the position of the chosen low-part relocation. | |
10756 | MATCHED_LO_P is true on entry to the loop if *POS is a low-part | |
10757 | relocation that matches an immediately-preceding high-part | |
10758 | relocation. */ | |
10759 | hi_pos = NULL; | |
10760 | lo_pos = NULL; | |
10761 | matched_lo_p = FALSE; | |
10762 | for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next) | |
10763 | { | |
10764 | if (*pos == l->fixp) | |
10765 | hi_pos = pos; | |
10766 | ||
10767 | if ((*pos)->fx_r_type == BFD_RELOC_LO16 | |
10768 | && (*pos)->fx_addsy == l->fixp->fx_addsy | |
10769 | && (*pos)->fx_offset >= l->fixp->fx_offset | |
10770 | && (lo_pos == NULL | |
10771 | || (*pos)->fx_offset < (*lo_pos)->fx_offset | |
10772 | || (!matched_lo_p | |
10773 | && (*pos)->fx_offset == (*lo_pos)->fx_offset))) | |
10774 | lo_pos = pos; | |
10775 | ||
10776 | matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type) | |
10777 | && fixup_has_matching_lo_p (*pos)); | |
10778 | } | |
10779 | ||
10780 | /* If we found a match, remove the high-part relocation from its | |
10781 | current position and insert it before the low-part relocation. | |
10782 | Make the offsets match so that fixup_has_matching_lo_p() | |
10783 | will return true. | |
10784 | ||
10785 | We don't warn about unmatched high-part relocations since some | |
10786 | versions of gcc have been known to emit dead "lui ...%hi(...)" | |
10787 | instructions. */ | |
10788 | if (lo_pos != NULL) | |
10789 | { | |
10790 | l->fixp->fx_offset = (*lo_pos)->fx_offset; | |
10791 | if (l->fixp->fx_next != *lo_pos) | |
252b5132 | 10792 | { |
3b91255e RS |
10793 | *hi_pos = l->fixp->fx_next; |
10794 | l->fixp->fx_next = *lo_pos; | |
10795 | *lo_pos = l->fixp; | |
252b5132 | 10796 | } |
252b5132 RH |
10797 | } |
10798 | } | |
10799 | } | |
10800 | ||
3e722fb5 | 10801 | /* We may have combined relocations without symbols in the N32/N64 ABI. |
f6688943 | 10802 | We have to prevent gas from dropping them. */ |
252b5132 | 10803 | |
252b5132 | 10804 | int |
17a2f251 | 10805 | mips_force_relocation (fixS *fixp) |
252b5132 | 10806 | { |
ae6063d4 | 10807 | if (generic_force_reloc (fixp)) |
252b5132 RH |
10808 | return 1; |
10809 | ||
f6688943 TS |
10810 | if (HAVE_NEWABI |
10811 | && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr | |
10812 | && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB | |
10813 | || fixp->fx_r_type == BFD_RELOC_HI16_S | |
10814 | || fixp->fx_r_type == BFD_RELOC_LO16)) | |
10815 | return 1; | |
10816 | ||
3e722fb5 | 10817 | return 0; |
252b5132 RH |
10818 | } |
10819 | ||
45f8dfe8 AO |
10820 | /* This hook is called before a fix is simplified. We don't really |
10821 | decide whether to skip a fix here. Rather, we turn global symbols | |
10822 | used as branch targets into local symbols, such that they undergo | |
10823 | simplification. We can only do this if the symbol is defined and | |
10824 | it is in the same section as the branch. If this doesn't hold, we | |
10825 | emit a better error message than just saying the relocation is not | |
10826 | valid for the selected object format. | |
10827 | ||
10828 | FIXP is the fix-up we're going to try to simplify, SEG is the | |
10829 | segment in which the fix up occurs. The return value should be | |
10830 | non-zero to indicate the fix-up is valid for further | |
10831 | simplifications. */ | |
10832 | ||
10833 | int | |
17a2f251 | 10834 | mips_validate_fix (struct fix *fixP, asection *seg) |
45f8dfe8 AO |
10835 | { |
10836 | /* There's a lot of discussion on whether it should be possible to | |
10837 | use R_MIPS_PC16 to represent branch relocations. The outcome | |
10838 | seems to be that it can, but gas/bfd are very broken in creating | |
10839 | RELA relocations for this, so for now we only accept branches to | |
10840 | symbols in the same section. Anything else is of dubious value, | |
10841 | since there's no guarantee that at link time the symbol would be | |
10842 | in range. Even for branches to local symbols this is arguably | |
10843 | wrong, since it we assume the symbol is not going to be | |
10844 | overridden, which should be possible per ELF library semantics, | |
10845 | but then, there isn't a dynamic relocation that could be used to | |
10846 | this effect, and the target would likely be out of range as well. | |
10847 | ||
10848 | Unfortunately, it seems that there is too much code out there | |
10849 | that relies on branches to symbols that are global to be resolved | |
10850 | as if they were local, like the IRIX tools do, so we do it as | |
10851 | well, but with a warning so that people are reminded to fix their | |
10852 | code. If we ever get back to using R_MIPS_PC16 for branch | |
10853 | targets, this entire block should go away (and probably the | |
10854 | whole function). */ | |
10855 | ||
10856 | if (fixP->fx_r_type == BFD_RELOC_16_PCREL_S2 | |
3e722fb5 CD |
10857 | && ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour |
10858 | || OUTPUT_FLAVOR == bfd_target_elf_flavour) | |
45f8dfe8 AO |
10859 | || bfd_reloc_type_lookup (stdoutput, BFD_RELOC_16_PCREL_S2) == NULL) |
10860 | && fixP->fx_addsy) | |
10861 | { | |
10862 | if (! S_IS_DEFINED (fixP->fx_addsy)) | |
10863 | { | |
10864 | as_bad_where (fixP->fx_file, fixP->fx_line, | |
10865 | _("Cannot branch to undefined symbol.")); | |
10866 | /* Avoid any further errors about this fixup. */ | |
10867 | fixP->fx_done = 1; | |
10868 | } | |
10869 | else if (S_GET_SEGMENT (fixP->fx_addsy) != seg) | |
10870 | { | |
10871 | as_bad_where (fixP->fx_file, fixP->fx_line, | |
10872 | _("Cannot branch to symbol in another section.")); | |
10873 | fixP->fx_done = 1; | |
10874 | } | |
10875 | else if (S_IS_EXTERNAL (fixP->fx_addsy)) | |
10876 | { | |
10877 | symbolS *sym = fixP->fx_addsy; | |
10878 | ||
115695a8 CD |
10879 | if (mips_pic == SVR4_PIC) |
10880 | as_warn_where (fixP->fx_file, fixP->fx_line, | |
10881 | _("Pretending global symbol used as branch target is local.")); | |
45f8dfe8 AO |
10882 | |
10883 | fixP->fx_addsy = symbol_create (S_GET_NAME (sym), | |
10884 | S_GET_SEGMENT (sym), | |
10885 | S_GET_VALUE (sym), | |
10886 | symbol_get_frag (sym)); | |
10887 | copy_symbol_attributes (fixP->fx_addsy, sym); | |
10888 | S_CLEAR_EXTERNAL (fixP->fx_addsy); | |
10889 | assert (symbol_resolved_p (sym)); | |
10890 | symbol_mark_resolved (fixP->fx_addsy); | |
10891 | } | |
10892 | } | |
10893 | ||
10894 | return 1; | |
10895 | } | |
10896 | ||
252b5132 RH |
10897 | /* Apply a fixup to the object file. */ |
10898 | ||
94f592af | 10899 | void |
17a2f251 | 10900 | md_apply_fix3 (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) |
252b5132 | 10901 | { |
874e8986 | 10902 | bfd_byte *buf; |
98aa84af | 10903 | long insn; |
a7ebbfdf | 10904 | reloc_howto_type *howto; |
252b5132 | 10905 | |
a7ebbfdf TS |
10906 | /* We ignore generic BFD relocations we don't know about. */ |
10907 | howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type); | |
10908 | if (! howto) | |
10909 | return; | |
65551fa4 | 10910 | |
252b5132 RH |
10911 | assert (fixP->fx_size == 4 |
10912 | || fixP->fx_r_type == BFD_RELOC_16 | |
10913 | || fixP->fx_r_type == BFD_RELOC_64 | |
f6688943 TS |
10914 | || fixP->fx_r_type == BFD_RELOC_CTOR |
10915 | || fixP->fx_r_type == BFD_RELOC_MIPS_SUB | |
252b5132 | 10916 | || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT |
a7ebbfdf | 10917 | || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY); |
252b5132 | 10918 | |
a7ebbfdf | 10919 | buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where); |
252b5132 | 10920 | |
3e722fb5 | 10921 | assert (! fixP->fx_pcrel); |
b1dca8ee RS |
10922 | |
10923 | /* Don't treat parts of a composite relocation as done. There are two | |
10924 | reasons for this: | |
10925 | ||
10926 | (1) The second and third parts will be against 0 (RSS_UNDEF) but | |
10927 | should nevertheless be emitted if the first part is. | |
10928 | ||
10929 | (2) In normal usage, composite relocations are never assembly-time | |
10930 | constants. The easiest way of dealing with the pathological | |
10931 | exceptions is to generate a relocation against STN_UNDEF and | |
10932 | leave everything up to the linker. */ | |
10933 | if (fixP->fx_addsy == NULL && fixP->fx_tcbit == 0) | |
252b5132 RH |
10934 | fixP->fx_done = 1; |
10935 | ||
10936 | switch (fixP->fx_r_type) | |
10937 | { | |
10938 | case BFD_RELOC_MIPS_JMP: | |
e369bcce TS |
10939 | case BFD_RELOC_MIPS_SHIFT5: |
10940 | case BFD_RELOC_MIPS_SHIFT6: | |
10941 | case BFD_RELOC_MIPS_GOT_DISP: | |
10942 | case BFD_RELOC_MIPS_GOT_PAGE: | |
10943 | case BFD_RELOC_MIPS_GOT_OFST: | |
10944 | case BFD_RELOC_MIPS_SUB: | |
10945 | case BFD_RELOC_MIPS_INSERT_A: | |
10946 | case BFD_RELOC_MIPS_INSERT_B: | |
10947 | case BFD_RELOC_MIPS_DELETE: | |
10948 | case BFD_RELOC_MIPS_HIGHEST: | |
10949 | case BFD_RELOC_MIPS_HIGHER: | |
10950 | case BFD_RELOC_MIPS_SCN_DISP: | |
10951 | case BFD_RELOC_MIPS_REL16: | |
10952 | case BFD_RELOC_MIPS_RELGOT: | |
10953 | case BFD_RELOC_MIPS_JALR: | |
252b5132 RH |
10954 | case BFD_RELOC_HI16: |
10955 | case BFD_RELOC_HI16_S: | |
cdf6fd85 | 10956 | case BFD_RELOC_GPREL16: |
252b5132 RH |
10957 | case BFD_RELOC_MIPS_LITERAL: |
10958 | case BFD_RELOC_MIPS_CALL16: | |
10959 | case BFD_RELOC_MIPS_GOT16: | |
cdf6fd85 | 10960 | case BFD_RELOC_GPREL32: |
252b5132 RH |
10961 | case BFD_RELOC_MIPS_GOT_HI16: |
10962 | case BFD_RELOC_MIPS_GOT_LO16: | |
10963 | case BFD_RELOC_MIPS_CALL_HI16: | |
10964 | case BFD_RELOC_MIPS_CALL_LO16: | |
10965 | case BFD_RELOC_MIPS16_GPREL: | |
3e722fb5 | 10966 | assert (! fixP->fx_pcrel); |
252b5132 RH |
10967 | /* Nothing needed to do. The value comes from the reloc entry */ |
10968 | break; | |
10969 | ||
10970 | case BFD_RELOC_MIPS16_JMP: | |
10971 | /* We currently always generate a reloc against a symbol, which | |
10972 | means that we don't want an addend even if the symbol is | |
10973 | defined. */ | |
a7ebbfdf | 10974 | *valP = 0; |
252b5132 RH |
10975 | break; |
10976 | ||
252b5132 RH |
10977 | case BFD_RELOC_64: |
10978 | /* This is handled like BFD_RELOC_32, but we output a sign | |
10979 | extended value if we are only 32 bits. */ | |
3e722fb5 | 10980 | if (fixP->fx_done) |
252b5132 RH |
10981 | { |
10982 | if (8 <= sizeof (valueT)) | |
a7ebbfdf | 10983 | md_number_to_chars (buf, *valP, 8); |
252b5132 RH |
10984 | else |
10985 | { | |
a7ebbfdf | 10986 | valueT hiv; |
252b5132 | 10987 | |
a7ebbfdf | 10988 | if ((*valP & 0x80000000) != 0) |
252b5132 RH |
10989 | hiv = 0xffffffff; |
10990 | else | |
10991 | hiv = 0; | |
a7ebbfdf TS |
10992 | md_number_to_chars ((char *)(buf + target_big_endian ? 4 : 0), |
10993 | *valP, 4); | |
10994 | md_number_to_chars ((char *)(buf + target_big_endian ? 0 : 4), | |
10995 | hiv, 4); | |
252b5132 RH |
10996 | } |
10997 | } | |
10998 | break; | |
10999 | ||
056350c6 | 11000 | case BFD_RELOC_RVA: |
252b5132 RH |
11001 | case BFD_RELOC_32: |
11002 | /* If we are deleting this reloc entry, we must fill in the | |
11003 | value now. This can happen if we have a .word which is not | |
3e722fb5 CD |
11004 | resolved when it appears but is later defined. */ |
11005 | if (fixP->fx_done) | |
a7ebbfdf | 11006 | md_number_to_chars (buf, *valP, 4); |
252b5132 RH |
11007 | break; |
11008 | ||
11009 | case BFD_RELOC_16: | |
11010 | /* If we are deleting this reloc entry, we must fill in the | |
11011 | value now. */ | |
252b5132 | 11012 | if (fixP->fx_done) |
a7ebbfdf | 11013 | md_number_to_chars (buf, *valP, 2); |
252b5132 RH |
11014 | break; |
11015 | ||
11016 | case BFD_RELOC_LO16: | |
3e722fb5 CD |
11017 | /* FIXME: Now that embedded-PIC is gone, some of this code/comment |
11018 | may be safe to remove, but if so it's not obvious. */ | |
252b5132 RH |
11019 | /* When handling an embedded PIC switch statement, we can wind |
11020 | up deleting a LO16 reloc. See the 'o' case in mips_ip. */ | |
11021 | if (fixP->fx_done) | |
11022 | { | |
a7ebbfdf | 11023 | if (*valP + 0x8000 > 0xffff) |
252b5132 RH |
11024 | as_bad_where (fixP->fx_file, fixP->fx_line, |
11025 | _("relocation overflow")); | |
252b5132 RH |
11026 | if (target_big_endian) |
11027 | buf += 2; | |
17a2f251 | 11028 | md_number_to_chars (buf, *valP, 2); |
252b5132 RH |
11029 | } |
11030 | break; | |
11031 | ||
11032 | case BFD_RELOC_16_PCREL_S2: | |
a7ebbfdf | 11033 | if ((*valP & 0x3) != 0) |
cb56d3d3 | 11034 | as_bad_where (fixP->fx_file, fixP->fx_line, |
a7ebbfdf | 11035 | _("Branch to odd address (%lx)"), (long) *valP); |
cb56d3d3 | 11036 | |
252b5132 RH |
11037 | /* |
11038 | * We need to save the bits in the instruction since fixup_segment() | |
11039 | * might be deleting the relocation entry (i.e., a branch within | |
11040 | * the current segment). | |
11041 | */ | |
a7ebbfdf | 11042 | if (! fixP->fx_done) |
bb2d6cd7 | 11043 | break; |
252b5132 RH |
11044 | |
11045 | /* update old instruction data */ | |
252b5132 RH |
11046 | if (target_big_endian) |
11047 | insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3]; | |
11048 | else | |
11049 | insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0]; | |
11050 | ||
a7ebbfdf TS |
11051 | if (*valP + 0x20000 <= 0x3ffff) |
11052 | { | |
11053 | insn |= (*valP >> 2) & 0xffff; | |
17a2f251 | 11054 | md_number_to_chars (buf, insn, 4); |
a7ebbfdf TS |
11055 | } |
11056 | else if (mips_pic == NO_PIC | |
11057 | && fixP->fx_done | |
11058 | && fixP->fx_frag->fr_address >= text_section->vma | |
11059 | && (fixP->fx_frag->fr_address | |
587aac4e | 11060 | < text_section->vma + bfd_get_section_size (text_section)) |
a7ebbfdf TS |
11061 | && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */ |
11062 | || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */ | |
11063 | || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */ | |
252b5132 RH |
11064 | { |
11065 | /* The branch offset is too large. If this is an | |
11066 | unconditional branch, and we are not generating PIC code, | |
11067 | we can convert it to an absolute jump instruction. */ | |
a7ebbfdf TS |
11068 | if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */ |
11069 | insn = 0x0c000000; /* jal */ | |
252b5132 | 11070 | else |
a7ebbfdf TS |
11071 | insn = 0x08000000; /* j */ |
11072 | fixP->fx_r_type = BFD_RELOC_MIPS_JMP; | |
11073 | fixP->fx_done = 0; | |
11074 | fixP->fx_addsy = section_symbol (text_section); | |
11075 | *valP += md_pcrel_from (fixP); | |
17a2f251 | 11076 | md_number_to_chars (buf, insn, 4); |
a7ebbfdf TS |
11077 | } |
11078 | else | |
11079 | { | |
11080 | /* If we got here, we have branch-relaxation disabled, | |
11081 | and there's nothing we can do to fix this instruction | |
11082 | without turning it into a longer sequence. */ | |
11083 | as_bad_where (fixP->fx_file, fixP->fx_line, | |
11084 | _("Branch out of range")); | |
252b5132 | 11085 | } |
252b5132 RH |
11086 | break; |
11087 | ||
11088 | case BFD_RELOC_VTABLE_INHERIT: | |
11089 | fixP->fx_done = 0; | |
11090 | if (fixP->fx_addsy | |
11091 | && !S_IS_DEFINED (fixP->fx_addsy) | |
11092 | && !S_IS_WEAK (fixP->fx_addsy)) | |
11093 | S_SET_WEAK (fixP->fx_addsy); | |
11094 | break; | |
11095 | ||
11096 | case BFD_RELOC_VTABLE_ENTRY: | |
11097 | fixP->fx_done = 0; | |
11098 | break; | |
11099 | ||
11100 | default: | |
11101 | internalError (); | |
11102 | } | |
a7ebbfdf TS |
11103 | |
11104 | /* Remember value for tc_gen_reloc. */ | |
11105 | fixP->fx_addnumber = *valP; | |
252b5132 RH |
11106 | } |
11107 | ||
11108 | #if 0 | |
11109 | void | |
17a2f251 | 11110 | printInsn (unsigned long oc) |
252b5132 RH |
11111 | { |
11112 | const struct mips_opcode *p; | |
11113 | int treg, sreg, dreg, shamt; | |
11114 | short imm; | |
11115 | const char *args; | |
11116 | int i; | |
11117 | ||
11118 | for (i = 0; i < NUMOPCODES; ++i) | |
11119 | { | |
11120 | p = &mips_opcodes[i]; | |
11121 | if (((oc & p->mask) == p->match) && (p->pinfo != INSN_MACRO)) | |
11122 | { | |
11123 | printf ("%08lx %s\t", oc, p->name); | |
11124 | treg = (oc >> 16) & 0x1f; | |
11125 | sreg = (oc >> 21) & 0x1f; | |
11126 | dreg = (oc >> 11) & 0x1f; | |
11127 | shamt = (oc >> 6) & 0x1f; | |
11128 | imm = oc; | |
11129 | for (args = p->args;; ++args) | |
11130 | { | |
11131 | switch (*args) | |
11132 | { | |
11133 | case '\0': | |
11134 | printf ("\n"); | |
11135 | break; | |
11136 | ||
11137 | case ',': | |
11138 | case '(': | |
11139 | case ')': | |
11140 | printf ("%c", *args); | |
11141 | continue; | |
11142 | ||
11143 | case 'r': | |
11144 | assert (treg == sreg); | |
11145 | printf ("$%d,$%d", treg, sreg); | |
11146 | continue; | |
11147 | ||
11148 | case 'd': | |
11149 | case 'G': | |
11150 | printf ("$%d", dreg); | |
11151 | continue; | |
11152 | ||
11153 | case 't': | |
11154 | case 'E': | |
11155 | printf ("$%d", treg); | |
11156 | continue; | |
11157 | ||
11158 | case 'k': | |
11159 | printf ("0x%x", treg); | |
11160 | continue; | |
11161 | ||
11162 | case 'b': | |
11163 | case 's': | |
11164 | printf ("$%d", sreg); | |
11165 | continue; | |
11166 | ||
11167 | case 'a': | |
11168 | printf ("0x%08lx", oc & 0x1ffffff); | |
11169 | continue; | |
11170 | ||
11171 | case 'i': | |
11172 | case 'j': | |
11173 | case 'o': | |
11174 | case 'u': | |
11175 | printf ("%d", imm); | |
11176 | continue; | |
11177 | ||
11178 | case '<': | |
11179 | case '>': | |
11180 | printf ("$%d", shamt); | |
11181 | continue; | |
11182 | ||
11183 | default: | |
11184 | internalError (); | |
11185 | } | |
11186 | break; | |
11187 | } | |
11188 | return; | |
11189 | } | |
11190 | } | |
11191 | printf (_("%08lx UNDEFINED\n"), oc); | |
11192 | } | |
11193 | #endif | |
11194 | ||
11195 | static symbolS * | |
17a2f251 | 11196 | get_symbol (void) |
252b5132 RH |
11197 | { |
11198 | int c; | |
11199 | char *name; | |
11200 | symbolS *p; | |
11201 | ||
11202 | name = input_line_pointer; | |
11203 | c = get_symbol_end (); | |
11204 | p = (symbolS *) symbol_find_or_make (name); | |
11205 | *input_line_pointer = c; | |
11206 | return p; | |
11207 | } | |
11208 | ||
11209 | /* Align the current frag to a given power of two. The MIPS assembler | |
11210 | also automatically adjusts any preceding label. */ | |
11211 | ||
11212 | static void | |
17a2f251 | 11213 | mips_align (int to, int fill, symbolS *label) |
252b5132 | 11214 | { |
b34976b6 | 11215 | mips_emit_delays (FALSE); |
252b5132 RH |
11216 | frag_align (to, fill, 0); |
11217 | record_alignment (now_seg, to); | |
11218 | if (label != NULL) | |
11219 | { | |
11220 | assert (S_GET_SEGMENT (label) == now_seg); | |
49309057 | 11221 | symbol_set_frag (label, frag_now); |
252b5132 RH |
11222 | S_SET_VALUE (label, (valueT) frag_now_fix ()); |
11223 | } | |
11224 | } | |
11225 | ||
11226 | /* Align to a given power of two. .align 0 turns off the automatic | |
11227 | alignment used by the data creating pseudo-ops. */ | |
11228 | ||
11229 | static void | |
17a2f251 | 11230 | s_align (int x ATTRIBUTE_UNUSED) |
252b5132 RH |
11231 | { |
11232 | register int temp; | |
11233 | register long temp_fill; | |
11234 | long max_alignment = 15; | |
11235 | ||
11236 | /* | |
11237 | ||
67c1ffbe | 11238 | o Note that the assembler pulls down any immediately preceding label |
252b5132 RH |
11239 | to the aligned address. |
11240 | o It's not documented but auto alignment is reinstated by | |
11241 | a .align pseudo instruction. | |
11242 | o Note also that after auto alignment is turned off the mips assembler | |
11243 | issues an error on attempt to assemble an improperly aligned data item. | |
11244 | We don't. | |
11245 | ||
11246 | */ | |
11247 | ||
11248 | temp = get_absolute_expression (); | |
11249 | if (temp > max_alignment) | |
11250 | as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment); | |
11251 | else if (temp < 0) | |
11252 | { | |
11253 | as_warn (_("Alignment negative: 0 assumed.")); | |
11254 | temp = 0; | |
11255 | } | |
11256 | if (*input_line_pointer == ',') | |
11257 | { | |
f9419b05 | 11258 | ++input_line_pointer; |
252b5132 RH |
11259 | temp_fill = get_absolute_expression (); |
11260 | } | |
11261 | else | |
11262 | temp_fill = 0; | |
11263 | if (temp) | |
11264 | { | |
11265 | auto_align = 1; | |
11266 | mips_align (temp, (int) temp_fill, | |
11267 | insn_labels != NULL ? insn_labels->label : NULL); | |
11268 | } | |
11269 | else | |
11270 | { | |
11271 | auto_align = 0; | |
11272 | } | |
11273 | ||
11274 | demand_empty_rest_of_line (); | |
11275 | } | |
11276 | ||
11277 | void | |
17a2f251 | 11278 | mips_flush_pending_output (void) |
252b5132 | 11279 | { |
b34976b6 | 11280 | mips_emit_delays (FALSE); |
252b5132 RH |
11281 | mips_clear_insn_labels (); |
11282 | } | |
11283 | ||
11284 | static void | |
17a2f251 | 11285 | s_change_sec (int sec) |
252b5132 RH |
11286 | { |
11287 | segT seg; | |
11288 | ||
252b5132 RH |
11289 | #ifdef OBJ_ELF |
11290 | /* The ELF backend needs to know that we are changing sections, so | |
11291 | that .previous works correctly. We could do something like check | |
b6ff326e | 11292 | for an obj_section_change_hook macro, but that might be confusing |
252b5132 RH |
11293 | as it would not be appropriate to use it in the section changing |
11294 | functions in read.c, since obj-elf.c intercepts those. FIXME: | |
11295 | This should be cleaner, somehow. */ | |
11296 | obj_elf_section_change_hook (); | |
11297 | #endif | |
11298 | ||
b34976b6 | 11299 | mips_emit_delays (FALSE); |
252b5132 RH |
11300 | switch (sec) |
11301 | { | |
11302 | case 't': | |
11303 | s_text (0); | |
11304 | break; | |
11305 | case 'd': | |
11306 | s_data (0); | |
11307 | break; | |
11308 | case 'b': | |
11309 | subseg_set (bss_section, (subsegT) get_absolute_expression ()); | |
11310 | demand_empty_rest_of_line (); | |
11311 | break; | |
11312 | ||
11313 | case 'r': | |
4d0d148d TS |
11314 | seg = subseg_new (RDATA_SECTION_NAME, |
11315 | (subsegT) get_absolute_expression ()); | |
11316 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour) | |
252b5132 | 11317 | { |
4d0d148d TS |
11318 | bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD |
11319 | | SEC_READONLY | SEC_RELOC | |
11320 | | SEC_DATA)); | |
11321 | if (strcmp (TARGET_OS, "elf") != 0) | |
11322 | record_alignment (seg, 4); | |
252b5132 | 11323 | } |
4d0d148d | 11324 | demand_empty_rest_of_line (); |
252b5132 RH |
11325 | break; |
11326 | ||
11327 | case 's': | |
4d0d148d TS |
11328 | seg = subseg_new (".sdata", (subsegT) get_absolute_expression ()); |
11329 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour) | |
252b5132 | 11330 | { |
4d0d148d TS |
11331 | bfd_set_section_flags (stdoutput, seg, |
11332 | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA); | |
11333 | if (strcmp (TARGET_OS, "elf") != 0) | |
11334 | record_alignment (seg, 4); | |
252b5132 | 11335 | } |
4d0d148d TS |
11336 | demand_empty_rest_of_line (); |
11337 | break; | |
252b5132 RH |
11338 | } |
11339 | ||
11340 | auto_align = 1; | |
11341 | } | |
b34976b6 | 11342 | |
cca86cc8 | 11343 | void |
17a2f251 | 11344 | s_change_section (int ignore ATTRIBUTE_UNUSED) |
cca86cc8 | 11345 | { |
7ed4a06a | 11346 | #ifdef OBJ_ELF |
cca86cc8 SC |
11347 | char *section_name; |
11348 | char c; | |
684022ea | 11349 | char next_c = 0; |
cca86cc8 SC |
11350 | int section_type; |
11351 | int section_flag; | |
11352 | int section_entry_size; | |
11353 | int section_alignment; | |
b34976b6 | 11354 | |
7ed4a06a TS |
11355 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour) |
11356 | return; | |
11357 | ||
cca86cc8 SC |
11358 | section_name = input_line_pointer; |
11359 | c = get_symbol_end (); | |
a816d1ed AO |
11360 | if (c) |
11361 | next_c = *(input_line_pointer + 1); | |
cca86cc8 | 11362 | |
4cf0dd0d TS |
11363 | /* Do we have .section Name<,"flags">? */ |
11364 | if (c != ',' || (c == ',' && next_c == '"')) | |
cca86cc8 | 11365 | { |
4cf0dd0d TS |
11366 | /* just after name is now '\0'. */ |
11367 | *input_line_pointer = c; | |
cca86cc8 SC |
11368 | input_line_pointer = section_name; |
11369 | obj_elf_section (ignore); | |
11370 | return; | |
11371 | } | |
11372 | input_line_pointer++; | |
11373 | ||
11374 | /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */ | |
11375 | if (c == ',') | |
11376 | section_type = get_absolute_expression (); | |
11377 | else | |
11378 | section_type = 0; | |
11379 | if (*input_line_pointer++ == ',') | |
11380 | section_flag = get_absolute_expression (); | |
11381 | else | |
11382 | section_flag = 0; | |
11383 | if (*input_line_pointer++ == ',') | |
11384 | section_entry_size = get_absolute_expression (); | |
11385 | else | |
11386 | section_entry_size = 0; | |
11387 | if (*input_line_pointer++ == ',') | |
11388 | section_alignment = get_absolute_expression (); | |
11389 | else | |
11390 | section_alignment = 0; | |
11391 | ||
a816d1ed AO |
11392 | section_name = xstrdup (section_name); |
11393 | ||
8ab8a5c8 RS |
11394 | /* When using the generic form of .section (as implemented by obj-elf.c), |
11395 | there's no way to set the section type to SHT_MIPS_DWARF. Users have | |
11396 | traditionally had to fall back on the more common @progbits instead. | |
11397 | ||
11398 | There's nothing really harmful in this, since bfd will correct | |
11399 | SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it | |
11400 | means that, for backwards compatibiltiy, the special_section entries | |
11401 | for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF. | |
11402 | ||
11403 | Even so, we shouldn't force users of the MIPS .section syntax to | |
11404 | incorrectly label the sections as SHT_PROGBITS. The best compromise | |
11405 | seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the | |
11406 | generic type-checking code. */ | |
11407 | if (section_type == SHT_MIPS_DWARF) | |
11408 | section_type = SHT_PROGBITS; | |
11409 | ||
cca86cc8 SC |
11410 | obj_elf_change_section (section_name, section_type, section_flag, |
11411 | section_entry_size, 0, 0, 0); | |
a816d1ed AO |
11412 | |
11413 | if (now_seg->name != section_name) | |
11414 | free (section_name); | |
7ed4a06a | 11415 | #endif /* OBJ_ELF */ |
cca86cc8 | 11416 | } |
252b5132 RH |
11417 | |
11418 | void | |
17a2f251 | 11419 | mips_enable_auto_align (void) |
252b5132 RH |
11420 | { |
11421 | auto_align = 1; | |
11422 | } | |
11423 | ||
11424 | static void | |
17a2f251 | 11425 | s_cons (int log_size) |
252b5132 RH |
11426 | { |
11427 | symbolS *label; | |
11428 | ||
11429 | label = insn_labels != NULL ? insn_labels->label : NULL; | |
b34976b6 | 11430 | mips_emit_delays (FALSE); |
252b5132 RH |
11431 | if (log_size > 0 && auto_align) |
11432 | mips_align (log_size, 0, label); | |
11433 | mips_clear_insn_labels (); | |
11434 | cons (1 << log_size); | |
11435 | } | |
11436 | ||
11437 | static void | |
17a2f251 | 11438 | s_float_cons (int type) |
252b5132 RH |
11439 | { |
11440 | symbolS *label; | |
11441 | ||
11442 | label = insn_labels != NULL ? insn_labels->label : NULL; | |
11443 | ||
b34976b6 | 11444 | mips_emit_delays (FALSE); |
252b5132 RH |
11445 | |
11446 | if (auto_align) | |
49309057 ILT |
11447 | { |
11448 | if (type == 'd') | |
11449 | mips_align (3, 0, label); | |
11450 | else | |
11451 | mips_align (2, 0, label); | |
11452 | } | |
252b5132 RH |
11453 | |
11454 | mips_clear_insn_labels (); | |
11455 | ||
11456 | float_cons (type); | |
11457 | } | |
11458 | ||
11459 | /* Handle .globl. We need to override it because on Irix 5 you are | |
11460 | permitted to say | |
11461 | .globl foo .text | |
11462 | where foo is an undefined symbol, to mean that foo should be | |
11463 | considered to be the address of a function. */ | |
11464 | ||
11465 | static void | |
17a2f251 | 11466 | s_mips_globl (int x ATTRIBUTE_UNUSED) |
252b5132 RH |
11467 | { |
11468 | char *name; | |
11469 | int c; | |
11470 | symbolS *symbolP; | |
11471 | flagword flag; | |
11472 | ||
11473 | name = input_line_pointer; | |
11474 | c = get_symbol_end (); | |
11475 | symbolP = symbol_find_or_make (name); | |
11476 | *input_line_pointer = c; | |
11477 | SKIP_WHITESPACE (); | |
11478 | ||
11479 | /* On Irix 5, every global symbol that is not explicitly labelled as | |
11480 | being a function is apparently labelled as being an object. */ | |
11481 | flag = BSF_OBJECT; | |
11482 | ||
11483 | if (! is_end_of_line[(unsigned char) *input_line_pointer]) | |
11484 | { | |
11485 | char *secname; | |
11486 | asection *sec; | |
11487 | ||
11488 | secname = input_line_pointer; | |
11489 | c = get_symbol_end (); | |
11490 | sec = bfd_get_section_by_name (stdoutput, secname); | |
11491 | if (sec == NULL) | |
11492 | as_bad (_("%s: no such section"), secname); | |
11493 | *input_line_pointer = c; | |
11494 | ||
11495 | if (sec != NULL && (sec->flags & SEC_CODE) != 0) | |
11496 | flag = BSF_FUNCTION; | |
11497 | } | |
11498 | ||
49309057 | 11499 | symbol_get_bfdsym (symbolP)->flags |= flag; |
252b5132 RH |
11500 | |
11501 | S_SET_EXTERNAL (symbolP); | |
11502 | demand_empty_rest_of_line (); | |
11503 | } | |
11504 | ||
11505 | static void | |
17a2f251 | 11506 | s_option (int x ATTRIBUTE_UNUSED) |
252b5132 RH |
11507 | { |
11508 | char *opt; | |
11509 | char c; | |
11510 | ||
11511 | opt = input_line_pointer; | |
11512 | c = get_symbol_end (); | |
11513 | ||
11514 | if (*opt == 'O') | |
11515 | { | |
11516 | /* FIXME: What does this mean? */ | |
11517 | } | |
11518 | else if (strncmp (opt, "pic", 3) == 0) | |
11519 | { | |
11520 | int i; | |
11521 | ||
11522 | i = atoi (opt + 3); | |
11523 | if (i == 0) | |
11524 | mips_pic = NO_PIC; | |
11525 | else if (i == 2) | |
143d77c5 | 11526 | { |
252b5132 | 11527 | mips_pic = SVR4_PIC; |
143d77c5 EC |
11528 | mips_abicalls = TRUE; |
11529 | } | |
252b5132 RH |
11530 | else |
11531 | as_bad (_(".option pic%d not supported"), i); | |
11532 | ||
4d0d148d | 11533 | if (mips_pic == SVR4_PIC) |
252b5132 RH |
11534 | { |
11535 | if (g_switch_seen && g_switch_value != 0) | |
11536 | as_warn (_("-G may not be used with SVR4 PIC code")); | |
11537 | g_switch_value = 0; | |
11538 | bfd_set_gp_size (stdoutput, 0); | |
11539 | } | |
11540 | } | |
11541 | else | |
11542 | as_warn (_("Unrecognized option \"%s\""), opt); | |
11543 | ||
11544 | *input_line_pointer = c; | |
11545 | demand_empty_rest_of_line (); | |
11546 | } | |
11547 | ||
11548 | /* This structure is used to hold a stack of .set values. */ | |
11549 | ||
e972090a NC |
11550 | struct mips_option_stack |
11551 | { | |
252b5132 RH |
11552 | struct mips_option_stack *next; |
11553 | struct mips_set_options options; | |
11554 | }; | |
11555 | ||
11556 | static struct mips_option_stack *mips_opts_stack; | |
11557 | ||
11558 | /* Handle the .set pseudo-op. */ | |
11559 | ||
11560 | static void | |
17a2f251 | 11561 | s_mipsset (int x ATTRIBUTE_UNUSED) |
252b5132 RH |
11562 | { |
11563 | char *name = input_line_pointer, ch; | |
11564 | ||
11565 | while (!is_end_of_line[(unsigned char) *input_line_pointer]) | |
f9419b05 | 11566 | ++input_line_pointer; |
252b5132 RH |
11567 | ch = *input_line_pointer; |
11568 | *input_line_pointer = '\0'; | |
11569 | ||
11570 | if (strcmp (name, "reorder") == 0) | |
11571 | { | |
11572 | if (mips_opts.noreorder && prev_nop_frag != NULL) | |
11573 | { | |
11574 | /* If we still have pending nops, we can discard them. The | |
11575 | usual nop handling will insert any that are still | |
bdaaa2e1 | 11576 | needed. */ |
252b5132 RH |
11577 | prev_nop_frag->fr_fix -= (prev_nop_frag_holds |
11578 | * (mips_opts.mips16 ? 2 : 4)); | |
11579 | prev_nop_frag = NULL; | |
11580 | } | |
11581 | mips_opts.noreorder = 0; | |
11582 | } | |
11583 | else if (strcmp (name, "noreorder") == 0) | |
11584 | { | |
b34976b6 | 11585 | mips_emit_delays (TRUE); |
252b5132 RH |
11586 | mips_opts.noreorder = 1; |
11587 | mips_any_noreorder = 1; | |
11588 | } | |
11589 | else if (strcmp (name, "at") == 0) | |
11590 | { | |
11591 | mips_opts.noat = 0; | |
11592 | } | |
11593 | else if (strcmp (name, "noat") == 0) | |
11594 | { | |
11595 | mips_opts.noat = 1; | |
11596 | } | |
11597 | else if (strcmp (name, "macro") == 0) | |
11598 | { | |
11599 | mips_opts.warn_about_macros = 0; | |
11600 | } | |
11601 | else if (strcmp (name, "nomacro") == 0) | |
11602 | { | |
11603 | if (mips_opts.noreorder == 0) | |
11604 | as_bad (_("`noreorder' must be set before `nomacro'")); | |
11605 | mips_opts.warn_about_macros = 1; | |
11606 | } | |
11607 | else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0) | |
11608 | { | |
11609 | mips_opts.nomove = 0; | |
11610 | } | |
11611 | else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0) | |
11612 | { | |
11613 | mips_opts.nomove = 1; | |
11614 | } | |
11615 | else if (strcmp (name, "bopt") == 0) | |
11616 | { | |
11617 | mips_opts.nobopt = 0; | |
11618 | } | |
11619 | else if (strcmp (name, "nobopt") == 0) | |
11620 | { | |
11621 | mips_opts.nobopt = 1; | |
11622 | } | |
11623 | else if (strcmp (name, "mips16") == 0 | |
11624 | || strcmp (name, "MIPS-16") == 0) | |
11625 | mips_opts.mips16 = 1; | |
11626 | else if (strcmp (name, "nomips16") == 0 | |
11627 | || strcmp (name, "noMIPS-16") == 0) | |
11628 | mips_opts.mips16 = 0; | |
1f25f5d3 CD |
11629 | else if (strcmp (name, "mips3d") == 0) |
11630 | mips_opts.ase_mips3d = 1; | |
11631 | else if (strcmp (name, "nomips3d") == 0) | |
11632 | mips_opts.ase_mips3d = 0; | |
a4672219 TS |
11633 | else if (strcmp (name, "mdmx") == 0) |
11634 | mips_opts.ase_mdmx = 1; | |
11635 | else if (strcmp (name, "nomdmx") == 0) | |
11636 | mips_opts.ase_mdmx = 0; | |
1a2c1fad | 11637 | else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0) |
252b5132 | 11638 | { |
af7ee8bf | 11639 | int reset = 0; |
252b5132 | 11640 | |
1a2c1fad CD |
11641 | /* Permit the user to change the ISA and architecture on the fly. |
11642 | Needless to say, misuse can cause serious problems. */ | |
81a21e38 | 11643 | if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0) |
af7ee8bf CD |
11644 | { |
11645 | reset = 1; | |
11646 | mips_opts.isa = file_mips_isa; | |
1a2c1fad | 11647 | mips_opts.arch = file_mips_arch; |
1a2c1fad CD |
11648 | } |
11649 | else if (strncmp (name, "arch=", 5) == 0) | |
11650 | { | |
11651 | const struct mips_cpu_info *p; | |
11652 | ||
11653 | p = mips_parse_cpu("internal use", name + 5); | |
11654 | if (!p) | |
11655 | as_bad (_("unknown architecture %s"), name + 5); | |
11656 | else | |
11657 | { | |
11658 | mips_opts.arch = p->cpu; | |
11659 | mips_opts.isa = p->isa; | |
11660 | } | |
11661 | } | |
81a21e38 TS |
11662 | else if (strncmp (name, "mips", 4) == 0) |
11663 | { | |
11664 | const struct mips_cpu_info *p; | |
11665 | ||
11666 | p = mips_parse_cpu("internal use", name); | |
11667 | if (!p) | |
11668 | as_bad (_("unknown ISA level %s"), name + 4); | |
11669 | else | |
11670 | { | |
11671 | mips_opts.arch = p->cpu; | |
11672 | mips_opts.isa = p->isa; | |
11673 | } | |
11674 | } | |
af7ee8bf | 11675 | else |
81a21e38 | 11676 | as_bad (_("unknown ISA or architecture %s"), name); |
af7ee8bf CD |
11677 | |
11678 | switch (mips_opts.isa) | |
98d3f06f KH |
11679 | { |
11680 | case 0: | |
98d3f06f | 11681 | break; |
af7ee8bf CD |
11682 | case ISA_MIPS1: |
11683 | case ISA_MIPS2: | |
11684 | case ISA_MIPS32: | |
11685 | case ISA_MIPS32R2: | |
98d3f06f KH |
11686 | mips_opts.gp32 = 1; |
11687 | mips_opts.fp32 = 1; | |
11688 | break; | |
af7ee8bf CD |
11689 | case ISA_MIPS3: |
11690 | case ISA_MIPS4: | |
11691 | case ISA_MIPS5: | |
11692 | case ISA_MIPS64: | |
5f74bc13 | 11693 | case ISA_MIPS64R2: |
98d3f06f KH |
11694 | mips_opts.gp32 = 0; |
11695 | mips_opts.fp32 = 0; | |
11696 | break; | |
11697 | default: | |
11698 | as_bad (_("unknown ISA level %s"), name + 4); | |
11699 | break; | |
11700 | } | |
af7ee8bf | 11701 | if (reset) |
98d3f06f | 11702 | { |
af7ee8bf CD |
11703 | mips_opts.gp32 = file_mips_gp32; |
11704 | mips_opts.fp32 = file_mips_fp32; | |
98d3f06f | 11705 | } |
252b5132 RH |
11706 | } |
11707 | else if (strcmp (name, "autoextend") == 0) | |
11708 | mips_opts.noautoextend = 0; | |
11709 | else if (strcmp (name, "noautoextend") == 0) | |
11710 | mips_opts.noautoextend = 1; | |
11711 | else if (strcmp (name, "push") == 0) | |
11712 | { | |
11713 | struct mips_option_stack *s; | |
11714 | ||
11715 | s = (struct mips_option_stack *) xmalloc (sizeof *s); | |
11716 | s->next = mips_opts_stack; | |
11717 | s->options = mips_opts; | |
11718 | mips_opts_stack = s; | |
11719 | } | |
11720 | else if (strcmp (name, "pop") == 0) | |
11721 | { | |
11722 | struct mips_option_stack *s; | |
11723 | ||
11724 | s = mips_opts_stack; | |
11725 | if (s == NULL) | |
11726 | as_bad (_(".set pop with no .set push")); | |
11727 | else | |
11728 | { | |
11729 | /* If we're changing the reorder mode we need to handle | |
11730 | delay slots correctly. */ | |
11731 | if (s->options.noreorder && ! mips_opts.noreorder) | |
b34976b6 | 11732 | mips_emit_delays (TRUE); |
252b5132 RH |
11733 | else if (! s->options.noreorder && mips_opts.noreorder) |
11734 | { | |
11735 | if (prev_nop_frag != NULL) | |
11736 | { | |
11737 | prev_nop_frag->fr_fix -= (prev_nop_frag_holds | |
11738 | * (mips_opts.mips16 ? 2 : 4)); | |
11739 | prev_nop_frag = NULL; | |
11740 | } | |
11741 | } | |
11742 | ||
11743 | mips_opts = s->options; | |
11744 | mips_opts_stack = s->next; | |
11745 | free (s); | |
11746 | } | |
11747 | } | |
11748 | else | |
11749 | { | |
11750 | as_warn (_("Tried to set unrecognized symbol: %s\n"), name); | |
11751 | } | |
11752 | *input_line_pointer = ch; | |
11753 | demand_empty_rest_of_line (); | |
11754 | } | |
11755 | ||
11756 | /* Handle the .abicalls pseudo-op. I believe this is equivalent to | |
11757 | .option pic2. It means to generate SVR4 PIC calls. */ | |
11758 | ||
11759 | static void | |
17a2f251 | 11760 | s_abicalls (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
11761 | { |
11762 | mips_pic = SVR4_PIC; | |
143d77c5 | 11763 | mips_abicalls = TRUE; |
4d0d148d TS |
11764 | |
11765 | if (g_switch_seen && g_switch_value != 0) | |
11766 | as_warn (_("-G may not be used with SVR4 PIC code")); | |
11767 | g_switch_value = 0; | |
11768 | ||
252b5132 RH |
11769 | bfd_set_gp_size (stdoutput, 0); |
11770 | demand_empty_rest_of_line (); | |
11771 | } | |
11772 | ||
11773 | /* Handle the .cpload pseudo-op. This is used when generating SVR4 | |
11774 | PIC code. It sets the $gp register for the function based on the | |
11775 | function address, which is in the register named in the argument. | |
11776 | This uses a relocation against _gp_disp, which is handled specially | |
11777 | by the linker. The result is: | |
11778 | lui $gp,%hi(_gp_disp) | |
11779 | addiu $gp,$gp,%lo(_gp_disp) | |
11780 | addu $gp,$gp,.cpload argument | |
11781 | The .cpload argument is normally $25 == $t9. */ | |
11782 | ||
11783 | static void | |
17a2f251 | 11784 | s_cpload (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
11785 | { |
11786 | expressionS ex; | |
252b5132 | 11787 | |
6478892d TS |
11788 | /* If we are not generating SVR4 PIC code, or if this is NewABI code, |
11789 | .cpload is ignored. */ | |
11790 | if (mips_pic != SVR4_PIC || HAVE_NEWABI) | |
252b5132 RH |
11791 | { |
11792 | s_ignore (0); | |
11793 | return; | |
11794 | } | |
11795 | ||
d3ecfc59 | 11796 | /* .cpload should be in a .set noreorder section. */ |
252b5132 RH |
11797 | if (mips_opts.noreorder == 0) |
11798 | as_warn (_(".cpload not in noreorder section")); | |
11799 | ||
11800 | ex.X_op = O_symbol; | |
11801 | ex.X_add_symbol = symbol_find_or_make ("_gp_disp"); | |
11802 | ex.X_op_symbol = NULL; | |
11803 | ex.X_add_number = 0; | |
11804 | ||
11805 | /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */ | |
49309057 | 11806 | symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT; |
252b5132 | 11807 | |
584892a6 | 11808 | macro_start (); |
67c0d1eb RS |
11809 | macro_build_lui (&ex, mips_gp_register); |
11810 | macro_build (&ex, "addiu", "t,r,j", mips_gp_register, | |
17a2f251 | 11811 | mips_gp_register, BFD_RELOC_LO16); |
67c0d1eb | 11812 | macro_build (NULL, "addu", "d,v,t", mips_gp_register, |
17a2f251 | 11813 | mips_gp_register, tc_get_register (0)); |
584892a6 | 11814 | macro_end (); |
252b5132 RH |
11815 | |
11816 | demand_empty_rest_of_line (); | |
11817 | } | |
11818 | ||
6478892d TS |
11819 | /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is: |
11820 | .cpsetup $reg1, offset|$reg2, label | |
11821 | ||
11822 | If offset is given, this results in: | |
11823 | sd $gp, offset($sp) | |
956cd1d6 | 11824 | lui $gp, %hi(%neg(%gp_rel(label))) |
698b7d9d TS |
11825 | addiu $gp, $gp, %lo(%neg(%gp_rel(label))) |
11826 | daddu $gp, $gp, $reg1 | |
6478892d TS |
11827 | |
11828 | If $reg2 is given, this results in: | |
11829 | daddu $reg2, $gp, $0 | |
956cd1d6 | 11830 | lui $gp, %hi(%neg(%gp_rel(label))) |
698b7d9d TS |
11831 | addiu $gp, $gp, %lo(%neg(%gp_rel(label))) |
11832 | daddu $gp, $gp, $reg1 | |
11833 | $reg1 is normally $25 == $t9. */ | |
6478892d | 11834 | static void |
17a2f251 | 11835 | s_cpsetup (int ignore ATTRIBUTE_UNUSED) |
6478892d TS |
11836 | { |
11837 | expressionS ex_off; | |
11838 | expressionS ex_sym; | |
11839 | int reg1; | |
f21f8242 | 11840 | char *f; |
6478892d | 11841 | |
8586fc66 | 11842 | /* If we are not generating SVR4 PIC code, .cpsetup is ignored. |
6478892d TS |
11843 | We also need NewABI support. */ |
11844 | if (mips_pic != SVR4_PIC || ! HAVE_NEWABI) | |
11845 | { | |
11846 | s_ignore (0); | |
11847 | return; | |
11848 | } | |
11849 | ||
11850 | reg1 = tc_get_register (0); | |
11851 | SKIP_WHITESPACE (); | |
11852 | if (*input_line_pointer != ',') | |
11853 | { | |
11854 | as_bad (_("missing argument separator ',' for .cpsetup")); | |
11855 | return; | |
11856 | } | |
11857 | else | |
80245285 | 11858 | ++input_line_pointer; |
6478892d TS |
11859 | SKIP_WHITESPACE (); |
11860 | if (*input_line_pointer == '$') | |
80245285 TS |
11861 | { |
11862 | mips_cpreturn_register = tc_get_register (0); | |
11863 | mips_cpreturn_offset = -1; | |
11864 | } | |
6478892d | 11865 | else |
80245285 TS |
11866 | { |
11867 | mips_cpreturn_offset = get_absolute_expression (); | |
11868 | mips_cpreturn_register = -1; | |
11869 | } | |
6478892d TS |
11870 | SKIP_WHITESPACE (); |
11871 | if (*input_line_pointer != ',') | |
11872 | { | |
11873 | as_bad (_("missing argument separator ',' for .cpsetup")); | |
11874 | return; | |
11875 | } | |
11876 | else | |
f9419b05 | 11877 | ++input_line_pointer; |
6478892d | 11878 | SKIP_WHITESPACE (); |
f21f8242 | 11879 | expression (&ex_sym); |
6478892d | 11880 | |
584892a6 | 11881 | macro_start (); |
6478892d TS |
11882 | if (mips_cpreturn_register == -1) |
11883 | { | |
11884 | ex_off.X_op = O_constant; | |
11885 | ex_off.X_add_symbol = NULL; | |
11886 | ex_off.X_op_symbol = NULL; | |
11887 | ex_off.X_add_number = mips_cpreturn_offset; | |
11888 | ||
67c0d1eb | 11889 | macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register, |
17a2f251 | 11890 | BFD_RELOC_LO16, SP); |
6478892d TS |
11891 | } |
11892 | else | |
67c0d1eb | 11893 | macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register, |
17a2f251 | 11894 | mips_gp_register, 0); |
6478892d | 11895 | |
f21f8242 AO |
11896 | /* Ensure there's room for the next two instructions, so that `f' |
11897 | doesn't end up with an address in the wrong frag. */ | |
11898 | frag_grow (8); | |
11899 | f = frag_more (0); | |
67c0d1eb | 11900 | macro_build (&ex_sym, "lui", "t,u", mips_gp_register, BFD_RELOC_GPREL16); |
f21f8242 | 11901 | fix_new (frag_now, f - frag_now->fr_literal, |
a105a300 | 11902 | 8, NULL, 0, 0, BFD_RELOC_MIPS_SUB); |
f21f8242 | 11903 | fix_new (frag_now, f - frag_now->fr_literal, |
a105a300 | 11904 | 4, NULL, 0, 0, BFD_RELOC_HI16_S); |
f21f8242 AO |
11905 | |
11906 | f = frag_more (0); | |
67c0d1eb | 11907 | macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register, |
17a2f251 | 11908 | mips_gp_register, BFD_RELOC_GPREL16); |
f21f8242 | 11909 | fix_new (frag_now, f - frag_now->fr_literal, |
a105a300 | 11910 | 8, NULL, 0, 0, BFD_RELOC_MIPS_SUB); |
f21f8242 | 11911 | fix_new (frag_now, f - frag_now->fr_literal, |
a105a300 | 11912 | 4, NULL, 0, 0, BFD_RELOC_LO16); |
f21f8242 | 11913 | |
67c0d1eb | 11914 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register, |
17a2f251 | 11915 | mips_gp_register, reg1); |
584892a6 | 11916 | macro_end (); |
6478892d TS |
11917 | |
11918 | demand_empty_rest_of_line (); | |
11919 | } | |
11920 | ||
11921 | static void | |
17a2f251 | 11922 | s_cplocal (int ignore ATTRIBUTE_UNUSED) |
6478892d TS |
11923 | { |
11924 | /* If we are not generating SVR4 PIC code, or if this is not NewABI code, | |
11925 | .cplocal is ignored. */ | |
11926 | if (mips_pic != SVR4_PIC || ! HAVE_NEWABI) | |
11927 | { | |
11928 | s_ignore (0); | |
11929 | return; | |
11930 | } | |
11931 | ||
11932 | mips_gp_register = tc_get_register (0); | |
85b51719 | 11933 | demand_empty_rest_of_line (); |
6478892d TS |
11934 | } |
11935 | ||
252b5132 RH |
11936 | /* Handle the .cprestore pseudo-op. This stores $gp into a given |
11937 | offset from $sp. The offset is remembered, and after making a PIC | |
11938 | call $gp is restored from that location. */ | |
11939 | ||
11940 | static void | |
17a2f251 | 11941 | s_cprestore (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
11942 | { |
11943 | expressionS ex; | |
252b5132 | 11944 | |
6478892d | 11945 | /* If we are not generating SVR4 PIC code, or if this is NewABI code, |
c9914766 | 11946 | .cprestore is ignored. */ |
6478892d | 11947 | if (mips_pic != SVR4_PIC || HAVE_NEWABI) |
252b5132 RH |
11948 | { |
11949 | s_ignore (0); | |
11950 | return; | |
11951 | } | |
11952 | ||
11953 | mips_cprestore_offset = get_absolute_expression (); | |
7a621144 | 11954 | mips_cprestore_valid = 1; |
252b5132 RH |
11955 | |
11956 | ex.X_op = O_constant; | |
11957 | ex.X_add_symbol = NULL; | |
11958 | ex.X_op_symbol = NULL; | |
11959 | ex.X_add_number = mips_cprestore_offset; | |
11960 | ||
584892a6 | 11961 | macro_start (); |
67c0d1eb RS |
11962 | macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register, |
11963 | SP, HAVE_64BIT_ADDRESSES); | |
584892a6 | 11964 | macro_end (); |
252b5132 RH |
11965 | |
11966 | demand_empty_rest_of_line (); | |
11967 | } | |
11968 | ||
6478892d | 11969 | /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset |
67c1ffbe | 11970 | was given in the preceding .cpsetup, it results in: |
6478892d | 11971 | ld $gp, offset($sp) |
76b3015f | 11972 | |
6478892d | 11973 | If a register $reg2 was given there, it results in: |
609f23f4 | 11974 | daddu $gp, $reg2, $0 |
6478892d TS |
11975 | */ |
11976 | static void | |
17a2f251 | 11977 | s_cpreturn (int ignore ATTRIBUTE_UNUSED) |
6478892d TS |
11978 | { |
11979 | expressionS ex; | |
6478892d TS |
11980 | |
11981 | /* If we are not generating SVR4 PIC code, .cpreturn is ignored. | |
11982 | We also need NewABI support. */ | |
11983 | if (mips_pic != SVR4_PIC || ! HAVE_NEWABI) | |
11984 | { | |
11985 | s_ignore (0); | |
11986 | return; | |
11987 | } | |
11988 | ||
584892a6 | 11989 | macro_start (); |
6478892d TS |
11990 | if (mips_cpreturn_register == -1) |
11991 | { | |
11992 | ex.X_op = O_constant; | |
11993 | ex.X_add_symbol = NULL; | |
11994 | ex.X_op_symbol = NULL; | |
11995 | ex.X_add_number = mips_cpreturn_offset; | |
11996 | ||
67c0d1eb | 11997 | macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP); |
6478892d TS |
11998 | } |
11999 | else | |
67c0d1eb | 12000 | macro_build (NULL, "daddu", "d,v,t", mips_gp_register, |
17a2f251 | 12001 | mips_cpreturn_register, 0); |
584892a6 | 12002 | macro_end (); |
6478892d TS |
12003 | |
12004 | demand_empty_rest_of_line (); | |
12005 | } | |
12006 | ||
12007 | /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC | |
12008 | code. It sets the offset to use in gp_rel relocations. */ | |
12009 | ||
12010 | static void | |
17a2f251 | 12011 | s_gpvalue (int ignore ATTRIBUTE_UNUSED) |
6478892d TS |
12012 | { |
12013 | /* If we are not generating SVR4 PIC code, .gpvalue is ignored. | |
12014 | We also need NewABI support. */ | |
12015 | if (mips_pic != SVR4_PIC || ! HAVE_NEWABI) | |
12016 | { | |
12017 | s_ignore (0); | |
12018 | return; | |
12019 | } | |
12020 | ||
def2e0dd | 12021 | mips_gprel_offset = get_absolute_expression (); |
6478892d TS |
12022 | |
12023 | demand_empty_rest_of_line (); | |
12024 | } | |
12025 | ||
252b5132 RH |
12026 | /* Handle the .gpword pseudo-op. This is used when generating PIC |
12027 | code. It generates a 32 bit GP relative reloc. */ | |
12028 | ||
12029 | static void | |
17a2f251 | 12030 | s_gpword (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
12031 | { |
12032 | symbolS *label; | |
12033 | expressionS ex; | |
12034 | char *p; | |
12035 | ||
12036 | /* When not generating PIC code, this is treated as .word. */ | |
12037 | if (mips_pic != SVR4_PIC) | |
12038 | { | |
12039 | s_cons (2); | |
12040 | return; | |
12041 | } | |
12042 | ||
12043 | label = insn_labels != NULL ? insn_labels->label : NULL; | |
b34976b6 | 12044 | mips_emit_delays (TRUE); |
252b5132 RH |
12045 | if (auto_align) |
12046 | mips_align (2, 0, label); | |
12047 | mips_clear_insn_labels (); | |
12048 | ||
12049 | expression (&ex); | |
12050 | ||
12051 | if (ex.X_op != O_symbol || ex.X_add_number != 0) | |
12052 | { | |
12053 | as_bad (_("Unsupported use of .gpword")); | |
12054 | ignore_rest_of_line (); | |
12055 | } | |
12056 | ||
12057 | p = frag_more (4); | |
17a2f251 | 12058 | md_number_to_chars (p, 0, 4); |
b34976b6 | 12059 | fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE, |
cdf6fd85 | 12060 | BFD_RELOC_GPREL32); |
252b5132 RH |
12061 | |
12062 | demand_empty_rest_of_line (); | |
12063 | } | |
12064 | ||
10181a0d | 12065 | static void |
17a2f251 | 12066 | s_gpdword (int ignore ATTRIBUTE_UNUSED) |
10181a0d AO |
12067 | { |
12068 | symbolS *label; | |
12069 | expressionS ex; | |
12070 | char *p; | |
12071 | ||
12072 | /* When not generating PIC code, this is treated as .dword. */ | |
12073 | if (mips_pic != SVR4_PIC) | |
12074 | { | |
12075 | s_cons (3); | |
12076 | return; | |
12077 | } | |
12078 | ||
12079 | label = insn_labels != NULL ? insn_labels->label : NULL; | |
b34976b6 | 12080 | mips_emit_delays (TRUE); |
10181a0d AO |
12081 | if (auto_align) |
12082 | mips_align (3, 0, label); | |
12083 | mips_clear_insn_labels (); | |
12084 | ||
12085 | expression (&ex); | |
12086 | ||
12087 | if (ex.X_op != O_symbol || ex.X_add_number != 0) | |
12088 | { | |
12089 | as_bad (_("Unsupported use of .gpdword")); | |
12090 | ignore_rest_of_line (); | |
12091 | } | |
12092 | ||
12093 | p = frag_more (8); | |
17a2f251 | 12094 | md_number_to_chars (p, 0, 8); |
a105a300 | 12095 | fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE, |
10181a0d AO |
12096 | BFD_RELOC_GPREL32); |
12097 | ||
12098 | /* GPREL32 composed with 64 gives a 64-bit GP offset. */ | |
12099 | ex.X_op = O_absent; | |
12100 | ex.X_add_symbol = 0; | |
12101 | ex.X_add_number = 0; | |
b34976b6 | 12102 | fix_new_exp (frag_now, p - frag_now->fr_literal, 8, &ex, FALSE, |
10181a0d AO |
12103 | BFD_RELOC_64); |
12104 | ||
12105 | demand_empty_rest_of_line (); | |
12106 | } | |
12107 | ||
252b5132 RH |
12108 | /* Handle the .cpadd pseudo-op. This is used when dealing with switch |
12109 | tables in SVR4 PIC code. */ | |
12110 | ||
12111 | static void | |
17a2f251 | 12112 | s_cpadd (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 12113 | { |
252b5132 RH |
12114 | int reg; |
12115 | ||
10181a0d AO |
12116 | /* This is ignored when not generating SVR4 PIC code. */ |
12117 | if (mips_pic != SVR4_PIC) | |
252b5132 RH |
12118 | { |
12119 | s_ignore (0); | |
12120 | return; | |
12121 | } | |
12122 | ||
12123 | /* Add $gp to the register named as an argument. */ | |
584892a6 | 12124 | macro_start (); |
252b5132 | 12125 | reg = tc_get_register (0); |
67c0d1eb | 12126 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register); |
584892a6 | 12127 | macro_end (); |
252b5132 | 12128 | |
bdaaa2e1 | 12129 | demand_empty_rest_of_line (); |
252b5132 RH |
12130 | } |
12131 | ||
12132 | /* Handle the .insn pseudo-op. This marks instruction labels in | |
12133 | mips16 mode. This permits the linker to handle them specially, | |
12134 | such as generating jalx instructions when needed. We also make | |
12135 | them odd for the duration of the assembly, in order to generate the | |
12136 | right sort of code. We will make them even in the adjust_symtab | |
12137 | routine, while leaving them marked. This is convenient for the | |
12138 | debugger and the disassembler. The linker knows to make them odd | |
12139 | again. */ | |
12140 | ||
12141 | static void | |
17a2f251 | 12142 | s_insn (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 12143 | { |
f9419b05 | 12144 | mips16_mark_labels (); |
252b5132 RH |
12145 | |
12146 | demand_empty_rest_of_line (); | |
12147 | } | |
12148 | ||
12149 | /* Handle a .stabn directive. We need these in order to mark a label | |
12150 | as being a mips16 text label correctly. Sometimes the compiler | |
12151 | will emit a label, followed by a .stabn, and then switch sections. | |
12152 | If the label and .stabn are in mips16 mode, then the label is | |
12153 | really a mips16 text label. */ | |
12154 | ||
12155 | static void | |
17a2f251 | 12156 | s_mips_stab (int type) |
252b5132 | 12157 | { |
f9419b05 | 12158 | if (type == 'n') |
252b5132 RH |
12159 | mips16_mark_labels (); |
12160 | ||
12161 | s_stab (type); | |
12162 | } | |
12163 | ||
12164 | /* Handle the .weakext pseudo-op as defined in Kane and Heinrich. | |
12165 | */ | |
12166 | ||
12167 | static void | |
17a2f251 | 12168 | s_mips_weakext (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
12169 | { |
12170 | char *name; | |
12171 | int c; | |
12172 | symbolS *symbolP; | |
12173 | expressionS exp; | |
12174 | ||
12175 | name = input_line_pointer; | |
12176 | c = get_symbol_end (); | |
12177 | symbolP = symbol_find_or_make (name); | |
12178 | S_SET_WEAK (symbolP); | |
12179 | *input_line_pointer = c; | |
12180 | ||
12181 | SKIP_WHITESPACE (); | |
12182 | ||
12183 | if (! is_end_of_line[(unsigned char) *input_line_pointer]) | |
12184 | { | |
12185 | if (S_IS_DEFINED (symbolP)) | |
12186 | { | |
956cd1d6 | 12187 | as_bad ("ignoring attempt to redefine symbol %s", |
252b5132 RH |
12188 | S_GET_NAME (symbolP)); |
12189 | ignore_rest_of_line (); | |
12190 | return; | |
12191 | } | |
bdaaa2e1 | 12192 | |
252b5132 RH |
12193 | if (*input_line_pointer == ',') |
12194 | { | |
12195 | ++input_line_pointer; | |
12196 | SKIP_WHITESPACE (); | |
12197 | } | |
bdaaa2e1 | 12198 | |
252b5132 RH |
12199 | expression (&exp); |
12200 | if (exp.X_op != O_symbol) | |
12201 | { | |
12202 | as_bad ("bad .weakext directive"); | |
98d3f06f | 12203 | ignore_rest_of_line (); |
252b5132 RH |
12204 | return; |
12205 | } | |
49309057 | 12206 | symbol_set_value_expression (symbolP, &exp); |
252b5132 RH |
12207 | } |
12208 | ||
12209 | demand_empty_rest_of_line (); | |
12210 | } | |
12211 | ||
12212 | /* Parse a register string into a number. Called from the ECOFF code | |
12213 | to parse .frame. The argument is non-zero if this is the frame | |
12214 | register, so that we can record it in mips_frame_reg. */ | |
12215 | ||
12216 | int | |
17a2f251 | 12217 | tc_get_register (int frame) |
252b5132 RH |
12218 | { |
12219 | int reg; | |
12220 | ||
12221 | SKIP_WHITESPACE (); | |
12222 | if (*input_line_pointer++ != '$') | |
12223 | { | |
12224 | as_warn (_("expected `$'")); | |
85b51719 | 12225 | reg = ZERO; |
252b5132 | 12226 | } |
3882b010 | 12227 | else if (ISDIGIT (*input_line_pointer)) |
252b5132 RH |
12228 | { |
12229 | reg = get_absolute_expression (); | |
12230 | if (reg < 0 || reg >= 32) | |
12231 | { | |
12232 | as_warn (_("Bad register number")); | |
85b51719 | 12233 | reg = ZERO; |
252b5132 RH |
12234 | } |
12235 | } | |
12236 | else | |
12237 | { | |
76db943d | 12238 | if (strncmp (input_line_pointer, "ra", 2) == 0) |
85b51719 TS |
12239 | { |
12240 | reg = RA; | |
12241 | input_line_pointer += 2; | |
12242 | } | |
76db943d | 12243 | else if (strncmp (input_line_pointer, "fp", 2) == 0) |
85b51719 TS |
12244 | { |
12245 | reg = FP; | |
12246 | input_line_pointer += 2; | |
12247 | } | |
252b5132 | 12248 | else if (strncmp (input_line_pointer, "sp", 2) == 0) |
85b51719 TS |
12249 | { |
12250 | reg = SP; | |
12251 | input_line_pointer += 2; | |
12252 | } | |
252b5132 | 12253 | else if (strncmp (input_line_pointer, "gp", 2) == 0) |
85b51719 TS |
12254 | { |
12255 | reg = GP; | |
12256 | input_line_pointer += 2; | |
12257 | } | |
252b5132 | 12258 | else if (strncmp (input_line_pointer, "at", 2) == 0) |
85b51719 TS |
12259 | { |
12260 | reg = AT; | |
12261 | input_line_pointer += 2; | |
12262 | } | |
12263 | else if (strncmp (input_line_pointer, "kt0", 3) == 0) | |
12264 | { | |
12265 | reg = KT0; | |
12266 | input_line_pointer += 3; | |
12267 | } | |
12268 | else if (strncmp (input_line_pointer, "kt1", 3) == 0) | |
12269 | { | |
12270 | reg = KT1; | |
12271 | input_line_pointer += 3; | |
12272 | } | |
12273 | else if (strncmp (input_line_pointer, "zero", 4) == 0) | |
12274 | { | |
12275 | reg = ZERO; | |
12276 | input_line_pointer += 4; | |
12277 | } | |
252b5132 RH |
12278 | else |
12279 | { | |
12280 | as_warn (_("Unrecognized register name")); | |
85b51719 TS |
12281 | reg = ZERO; |
12282 | while (ISALNUM(*input_line_pointer)) | |
12283 | input_line_pointer++; | |
252b5132 | 12284 | } |
252b5132 RH |
12285 | } |
12286 | if (frame) | |
7a621144 DJ |
12287 | { |
12288 | mips_frame_reg = reg != 0 ? reg : SP; | |
12289 | mips_frame_reg_valid = 1; | |
12290 | mips_cprestore_valid = 0; | |
12291 | } | |
252b5132 RH |
12292 | return reg; |
12293 | } | |
12294 | ||
12295 | valueT | |
17a2f251 | 12296 | md_section_align (asection *seg, valueT addr) |
252b5132 RH |
12297 | { |
12298 | int align = bfd_get_section_alignment (stdoutput, seg); | |
12299 | ||
12300 | #ifdef OBJ_ELF | |
12301 | /* We don't need to align ELF sections to the full alignment. | |
12302 | However, Irix 5 may prefer that we align them at least to a 16 | |
12303 | byte boundary. We don't bother to align the sections if we are | |
12304 | targeted for an embedded system. */ | |
12305 | if (strcmp (TARGET_OS, "elf") == 0) | |
12306 | return addr; | |
12307 | if (align > 4) | |
12308 | align = 4; | |
12309 | #endif | |
12310 | ||
12311 | return ((addr + (1 << align) - 1) & (-1 << align)); | |
12312 | } | |
12313 | ||
12314 | /* Utility routine, called from above as well. If called while the | |
12315 | input file is still being read, it's only an approximation. (For | |
12316 | example, a symbol may later become defined which appeared to be | |
12317 | undefined earlier.) */ | |
12318 | ||
12319 | static int | |
17a2f251 | 12320 | nopic_need_relax (symbolS *sym, int before_relaxing) |
252b5132 RH |
12321 | { |
12322 | if (sym == 0) | |
12323 | return 0; | |
12324 | ||
4d0d148d | 12325 | if (g_switch_value > 0) |
252b5132 RH |
12326 | { |
12327 | const char *symname; | |
12328 | int change; | |
12329 | ||
c9914766 | 12330 | /* Find out whether this symbol can be referenced off the $gp |
252b5132 RH |
12331 | register. It can be if it is smaller than the -G size or if |
12332 | it is in the .sdata or .sbss section. Certain symbols can | |
c9914766 | 12333 | not be referenced off the $gp, although it appears as though |
252b5132 RH |
12334 | they can. */ |
12335 | symname = S_GET_NAME (sym); | |
12336 | if (symname != (const char *) NULL | |
12337 | && (strcmp (symname, "eprol") == 0 | |
12338 | || strcmp (symname, "etext") == 0 | |
12339 | || strcmp (symname, "_gp") == 0 | |
12340 | || strcmp (symname, "edata") == 0 | |
12341 | || strcmp (symname, "_fbss") == 0 | |
12342 | || strcmp (symname, "_fdata") == 0 | |
12343 | || strcmp (symname, "_ftext") == 0 | |
12344 | || strcmp (symname, "end") == 0 | |
12345 | || strcmp (symname, "_gp_disp") == 0)) | |
12346 | change = 1; | |
12347 | else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym)) | |
12348 | && (0 | |
12349 | #ifndef NO_ECOFF_DEBUGGING | |
49309057 ILT |
12350 | || (symbol_get_obj (sym)->ecoff_extern_size != 0 |
12351 | && (symbol_get_obj (sym)->ecoff_extern_size | |
12352 | <= g_switch_value)) | |
252b5132 RH |
12353 | #endif |
12354 | /* We must defer this decision until after the whole | |
12355 | file has been read, since there might be a .extern | |
12356 | after the first use of this symbol. */ | |
12357 | || (before_relaxing | |
12358 | #ifndef NO_ECOFF_DEBUGGING | |
49309057 | 12359 | && symbol_get_obj (sym)->ecoff_extern_size == 0 |
252b5132 RH |
12360 | #endif |
12361 | && S_GET_VALUE (sym) == 0) | |
12362 | || (S_GET_VALUE (sym) != 0 | |
12363 | && S_GET_VALUE (sym) <= g_switch_value))) | |
12364 | change = 0; | |
12365 | else | |
12366 | { | |
12367 | const char *segname; | |
12368 | ||
12369 | segname = segment_name (S_GET_SEGMENT (sym)); | |
12370 | assert (strcmp (segname, ".lit8") != 0 | |
12371 | && strcmp (segname, ".lit4") != 0); | |
12372 | change = (strcmp (segname, ".sdata") != 0 | |
fba2b7f9 GK |
12373 | && strcmp (segname, ".sbss") != 0 |
12374 | && strncmp (segname, ".sdata.", 7) != 0 | |
12375 | && strncmp (segname, ".gnu.linkonce.s.", 16) != 0); | |
252b5132 RH |
12376 | } |
12377 | return change; | |
12378 | } | |
12379 | else | |
c9914766 | 12380 | /* We are not optimizing for the $gp register. */ |
252b5132 RH |
12381 | return 1; |
12382 | } | |
12383 | ||
5919d012 RS |
12384 | |
12385 | /* Return true if the given symbol should be considered local for SVR4 PIC. */ | |
12386 | ||
12387 | static bfd_boolean | |
17a2f251 | 12388 | pic_need_relax (symbolS *sym, asection *segtype) |
5919d012 RS |
12389 | { |
12390 | asection *symsec; | |
12391 | bfd_boolean linkonce; | |
12392 | ||
12393 | /* Handle the case of a symbol equated to another symbol. */ | |
12394 | while (symbol_equated_reloc_p (sym)) | |
12395 | { | |
12396 | symbolS *n; | |
12397 | ||
12398 | /* It's possible to get a loop here in a badly written | |
12399 | program. */ | |
12400 | n = symbol_get_value_expression (sym)->X_add_symbol; | |
12401 | if (n == sym) | |
12402 | break; | |
12403 | sym = n; | |
12404 | } | |
12405 | ||
12406 | symsec = S_GET_SEGMENT (sym); | |
12407 | ||
12408 | /* duplicate the test for LINK_ONCE sections as in adjust_reloc_syms */ | |
12409 | linkonce = FALSE; | |
12410 | if (symsec != segtype && ! S_IS_LOCAL (sym)) | |
12411 | { | |
12412 | if ((bfd_get_section_flags (stdoutput, symsec) & SEC_LINK_ONCE) | |
12413 | != 0) | |
12414 | linkonce = TRUE; | |
12415 | ||
12416 | /* The GNU toolchain uses an extension for ELF: a section | |
12417 | beginning with the magic string .gnu.linkonce is a linkonce | |
12418 | section. */ | |
12419 | if (strncmp (segment_name (symsec), ".gnu.linkonce", | |
12420 | sizeof ".gnu.linkonce" - 1) == 0) | |
12421 | linkonce = TRUE; | |
12422 | } | |
12423 | ||
12424 | /* This must duplicate the test in adjust_reloc_syms. */ | |
12425 | return (symsec != &bfd_und_section | |
12426 | && symsec != &bfd_abs_section | |
12427 | && ! bfd_is_com_section (symsec) | |
12428 | && !linkonce | |
12429 | #ifdef OBJ_ELF | |
12430 | /* A global or weak symbol is treated as external. */ | |
12431 | && (OUTPUT_FLAVOR != bfd_target_elf_flavour | |
3e722fb5 | 12432 | || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym))) |
5919d012 RS |
12433 | #endif |
12434 | ); | |
12435 | } | |
12436 | ||
12437 | ||
252b5132 RH |
12438 | /* Given a mips16 variant frag FRAGP, return non-zero if it needs an |
12439 | extended opcode. SEC is the section the frag is in. */ | |
12440 | ||
12441 | static int | |
17a2f251 | 12442 | mips16_extended_frag (fragS *fragp, asection *sec, long stretch) |
252b5132 RH |
12443 | { |
12444 | int type; | |
12445 | register const struct mips16_immed_operand *op; | |
12446 | offsetT val; | |
12447 | int mintiny, maxtiny; | |
12448 | segT symsec; | |
98aa84af | 12449 | fragS *sym_frag; |
252b5132 RH |
12450 | |
12451 | if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype)) | |
12452 | return 0; | |
12453 | if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype)) | |
12454 | return 1; | |
12455 | ||
12456 | type = RELAX_MIPS16_TYPE (fragp->fr_subtype); | |
12457 | op = mips16_immed_operands; | |
12458 | while (op->type != type) | |
12459 | { | |
12460 | ++op; | |
12461 | assert (op < mips16_immed_operands + MIPS16_NUM_IMMED); | |
12462 | } | |
12463 | ||
12464 | if (op->unsp) | |
12465 | { | |
12466 | if (type == '<' || type == '>' || type == '[' || type == ']') | |
12467 | { | |
12468 | mintiny = 1; | |
12469 | maxtiny = 1 << op->nbits; | |
12470 | } | |
12471 | else | |
12472 | { | |
12473 | mintiny = 0; | |
12474 | maxtiny = (1 << op->nbits) - 1; | |
12475 | } | |
12476 | } | |
12477 | else | |
12478 | { | |
12479 | mintiny = - (1 << (op->nbits - 1)); | |
12480 | maxtiny = (1 << (op->nbits - 1)) - 1; | |
12481 | } | |
12482 | ||
98aa84af | 12483 | sym_frag = symbol_get_frag (fragp->fr_symbol); |
ac62c346 | 12484 | val = S_GET_VALUE (fragp->fr_symbol); |
98aa84af | 12485 | symsec = S_GET_SEGMENT (fragp->fr_symbol); |
252b5132 RH |
12486 | |
12487 | if (op->pcrel) | |
12488 | { | |
12489 | addressT addr; | |
12490 | ||
12491 | /* We won't have the section when we are called from | |
12492 | mips_relax_frag. However, we will always have been called | |
12493 | from md_estimate_size_before_relax first. If this is a | |
12494 | branch to a different section, we mark it as such. If SEC is | |
12495 | NULL, and the frag is not marked, then it must be a branch to | |
12496 | the same section. */ | |
12497 | if (sec == NULL) | |
12498 | { | |
12499 | if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype)) | |
12500 | return 1; | |
12501 | } | |
12502 | else | |
12503 | { | |
98aa84af | 12504 | /* Must have been called from md_estimate_size_before_relax. */ |
252b5132 RH |
12505 | if (symsec != sec) |
12506 | { | |
12507 | fragp->fr_subtype = | |
12508 | RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype); | |
12509 | ||
12510 | /* FIXME: We should support this, and let the linker | |
12511 | catch branches and loads that are out of range. */ | |
12512 | as_bad_where (fragp->fr_file, fragp->fr_line, | |
12513 | _("unsupported PC relative reference to different section")); | |
12514 | ||
12515 | return 1; | |
12516 | } | |
98aa84af AM |
12517 | if (fragp != sym_frag && sym_frag->fr_address == 0) |
12518 | /* Assume non-extended on the first relaxation pass. | |
12519 | The address we have calculated will be bogus if this is | |
12520 | a forward branch to another frag, as the forward frag | |
12521 | will have fr_address == 0. */ | |
12522 | return 0; | |
252b5132 RH |
12523 | } |
12524 | ||
12525 | /* In this case, we know for sure that the symbol fragment is in | |
98aa84af AM |
12526 | the same section. If the relax_marker of the symbol fragment |
12527 | differs from the relax_marker of this fragment, we have not | |
12528 | yet adjusted the symbol fragment fr_address. We want to add | |
252b5132 RH |
12529 | in STRETCH in order to get a better estimate of the address. |
12530 | This particularly matters because of the shift bits. */ | |
12531 | if (stretch != 0 | |
98aa84af | 12532 | && sym_frag->relax_marker != fragp->relax_marker) |
252b5132 RH |
12533 | { |
12534 | fragS *f; | |
12535 | ||
12536 | /* Adjust stretch for any alignment frag. Note that if have | |
12537 | been expanding the earlier code, the symbol may be | |
12538 | defined in what appears to be an earlier frag. FIXME: | |
12539 | This doesn't handle the fr_subtype field, which specifies | |
12540 | a maximum number of bytes to skip when doing an | |
12541 | alignment. */ | |
98aa84af | 12542 | for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next) |
252b5132 RH |
12543 | { |
12544 | if (f->fr_type == rs_align || f->fr_type == rs_align_code) | |
12545 | { | |
12546 | if (stretch < 0) | |
12547 | stretch = - ((- stretch) | |
12548 | & ~ ((1 << (int) f->fr_offset) - 1)); | |
12549 | else | |
12550 | stretch &= ~ ((1 << (int) f->fr_offset) - 1); | |
12551 | if (stretch == 0) | |
12552 | break; | |
12553 | } | |
12554 | } | |
12555 | if (f != NULL) | |
12556 | val += stretch; | |
12557 | } | |
12558 | ||
12559 | addr = fragp->fr_address + fragp->fr_fix; | |
12560 | ||
12561 | /* The base address rules are complicated. The base address of | |
12562 | a branch is the following instruction. The base address of a | |
12563 | PC relative load or add is the instruction itself, but if it | |
12564 | is in a delay slot (in which case it can not be extended) use | |
12565 | the address of the instruction whose delay slot it is in. */ | |
12566 | if (type == 'p' || type == 'q') | |
12567 | { | |
12568 | addr += 2; | |
12569 | ||
12570 | /* If we are currently assuming that this frag should be | |
12571 | extended, then, the current address is two bytes | |
bdaaa2e1 | 12572 | higher. */ |
252b5132 RH |
12573 | if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype)) |
12574 | addr += 2; | |
12575 | ||
12576 | /* Ignore the low bit in the target, since it will be set | |
12577 | for a text label. */ | |
12578 | if ((val & 1) != 0) | |
12579 | --val; | |
12580 | } | |
12581 | else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)) | |
12582 | addr -= 4; | |
12583 | else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype)) | |
12584 | addr -= 2; | |
12585 | ||
12586 | val -= addr & ~ ((1 << op->shift) - 1); | |
12587 | ||
12588 | /* Branch offsets have an implicit 0 in the lowest bit. */ | |
12589 | if (type == 'p' || type == 'q') | |
12590 | val /= 2; | |
12591 | ||
12592 | /* If any of the shifted bits are set, we must use an extended | |
12593 | opcode. If the address depends on the size of this | |
12594 | instruction, this can lead to a loop, so we arrange to always | |
12595 | use an extended opcode. We only check this when we are in | |
12596 | the main relaxation loop, when SEC is NULL. */ | |
12597 | if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL) | |
12598 | { | |
12599 | fragp->fr_subtype = | |
12600 | RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype); | |
12601 | return 1; | |
12602 | } | |
12603 | ||
12604 | /* If we are about to mark a frag as extended because the value | |
12605 | is precisely maxtiny + 1, then there is a chance of an | |
12606 | infinite loop as in the following code: | |
12607 | la $4,foo | |
12608 | .skip 1020 | |
12609 | .align 2 | |
12610 | foo: | |
12611 | In this case when the la is extended, foo is 0x3fc bytes | |
12612 | away, so the la can be shrunk, but then foo is 0x400 away, so | |
12613 | the la must be extended. To avoid this loop, we mark the | |
12614 | frag as extended if it was small, and is about to become | |
12615 | extended with a value of maxtiny + 1. */ | |
12616 | if (val == ((maxtiny + 1) << op->shift) | |
12617 | && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype) | |
12618 | && sec == NULL) | |
12619 | { | |
12620 | fragp->fr_subtype = | |
12621 | RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype); | |
12622 | return 1; | |
12623 | } | |
12624 | } | |
12625 | else if (symsec != absolute_section && sec != NULL) | |
12626 | as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation")); | |
12627 | ||
12628 | if ((val & ((1 << op->shift) - 1)) != 0 | |
12629 | || val < (mintiny << op->shift) | |
12630 | || val > (maxtiny << op->shift)) | |
12631 | return 1; | |
12632 | else | |
12633 | return 0; | |
12634 | } | |
12635 | ||
4a6a3df4 AO |
12636 | /* Compute the length of a branch sequence, and adjust the |
12637 | RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the | |
12638 | worst-case length is computed, with UPDATE being used to indicate | |
12639 | whether an unconditional (-1), branch-likely (+1) or regular (0) | |
12640 | branch is to be computed. */ | |
12641 | static int | |
17a2f251 | 12642 | relaxed_branch_length (fragS *fragp, asection *sec, int update) |
4a6a3df4 | 12643 | { |
b34976b6 | 12644 | bfd_boolean toofar; |
4a6a3df4 AO |
12645 | int length; |
12646 | ||
12647 | if (fragp | |
12648 | && S_IS_DEFINED (fragp->fr_symbol) | |
12649 | && sec == S_GET_SEGMENT (fragp->fr_symbol)) | |
12650 | { | |
12651 | addressT addr; | |
12652 | offsetT val; | |
12653 | ||
12654 | val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset; | |
12655 | ||
12656 | addr = fragp->fr_address + fragp->fr_fix + 4; | |
12657 | ||
12658 | val -= addr; | |
12659 | ||
12660 | toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2); | |
12661 | } | |
12662 | else if (fragp) | |
12663 | /* If the symbol is not defined or it's in a different segment, | |
12664 | assume the user knows what's going on and emit a short | |
12665 | branch. */ | |
b34976b6 | 12666 | toofar = FALSE; |
4a6a3df4 | 12667 | else |
b34976b6 | 12668 | toofar = TRUE; |
4a6a3df4 AO |
12669 | |
12670 | if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype)) | |
12671 | fragp->fr_subtype | |
af6ae2ad | 12672 | = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype), |
4a6a3df4 AO |
12673 | RELAX_BRANCH_LIKELY (fragp->fr_subtype), |
12674 | RELAX_BRANCH_LINK (fragp->fr_subtype), | |
12675 | toofar); | |
12676 | ||
12677 | length = 4; | |
12678 | if (toofar) | |
12679 | { | |
12680 | if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0)) | |
12681 | length += 8; | |
12682 | ||
12683 | if (mips_pic != NO_PIC) | |
12684 | { | |
12685 | /* Additional space for PIC loading of target address. */ | |
12686 | length += 8; | |
12687 | if (mips_opts.isa == ISA_MIPS1) | |
12688 | /* Additional space for $at-stabilizing nop. */ | |
12689 | length += 4; | |
12690 | } | |
12691 | ||
12692 | /* If branch is conditional. */ | |
12693 | if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0)) | |
12694 | length += 8; | |
12695 | } | |
b34976b6 | 12696 | |
4a6a3df4 AO |
12697 | return length; |
12698 | } | |
12699 | ||
252b5132 RH |
12700 | /* Estimate the size of a frag before relaxing. Unless this is the |
12701 | mips16, we are not really relaxing here, and the final size is | |
12702 | encoded in the subtype information. For the mips16, we have to | |
12703 | decide whether we are using an extended opcode or not. */ | |
12704 | ||
252b5132 | 12705 | int |
17a2f251 | 12706 | md_estimate_size_before_relax (fragS *fragp, asection *segtype) |
252b5132 | 12707 | { |
5919d012 | 12708 | int change; |
252b5132 | 12709 | |
4a6a3df4 AO |
12710 | if (RELAX_BRANCH_P (fragp->fr_subtype)) |
12711 | { | |
12712 | ||
b34976b6 AM |
12713 | fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE); |
12714 | ||
4a6a3df4 AO |
12715 | return fragp->fr_var; |
12716 | } | |
12717 | ||
252b5132 | 12718 | if (RELAX_MIPS16_P (fragp->fr_subtype)) |
177b4a6a AO |
12719 | /* We don't want to modify the EXTENDED bit here; it might get us |
12720 | into infinite loops. We change it only in mips_relax_frag(). */ | |
12721 | return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2); | |
252b5132 RH |
12722 | |
12723 | if (mips_pic == NO_PIC) | |
5919d012 | 12724 | change = nopic_need_relax (fragp->fr_symbol, 0); |
252b5132 | 12725 | else if (mips_pic == SVR4_PIC) |
5919d012 | 12726 | change = pic_need_relax (fragp->fr_symbol, segtype); |
252b5132 RH |
12727 | else |
12728 | abort (); | |
12729 | ||
12730 | if (change) | |
12731 | { | |
4d7206a2 | 12732 | fragp->fr_subtype |= RELAX_USE_SECOND; |
4d7206a2 | 12733 | return -RELAX_FIRST (fragp->fr_subtype); |
252b5132 | 12734 | } |
4d7206a2 RS |
12735 | else |
12736 | return -RELAX_SECOND (fragp->fr_subtype); | |
252b5132 RH |
12737 | } |
12738 | ||
12739 | /* This is called to see whether a reloc against a defined symbol | |
de7e6852 | 12740 | should be converted into a reloc against a section. */ |
252b5132 RH |
12741 | |
12742 | int | |
17a2f251 | 12743 | mips_fix_adjustable (fixS *fixp) |
252b5132 | 12744 | { |
de7e6852 RS |
12745 | /* Don't adjust MIPS16 jump relocations, so we don't have to worry |
12746 | about the format of the offset in the .o file. */ | |
252b5132 RH |
12747 | if (fixp->fx_r_type == BFD_RELOC_MIPS16_JMP) |
12748 | return 0; | |
a161fe53 | 12749 | |
252b5132 RH |
12750 | if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT |
12751 | || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY) | |
12752 | return 0; | |
a161fe53 | 12753 | |
252b5132 RH |
12754 | if (fixp->fx_addsy == NULL) |
12755 | return 1; | |
a161fe53 | 12756 | |
de7e6852 RS |
12757 | /* If symbol SYM is in a mergeable section, relocations of the form |
12758 | SYM + 0 can usually be made section-relative. The mergeable data | |
12759 | is then identified by the section offset rather than by the symbol. | |
12760 | ||
12761 | However, if we're generating REL LO16 relocations, the offset is split | |
12762 | between the LO16 and parterning high part relocation. The linker will | |
12763 | need to recalculate the complete offset in order to correctly identify | |
12764 | the merge data. | |
12765 | ||
12766 | The linker has traditionally not looked for the parterning high part | |
12767 | relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be | |
12768 | placed anywhere. Rather than break backwards compatibility by changing | |
12769 | this, it seems better not to force the issue, and instead keep the | |
12770 | original symbol. This will work with either linker behavior. */ | |
12771 | if ((fixp->fx_r_type == BFD_RELOC_LO16 || reloc_needs_lo_p (fixp->fx_r_type)) | |
12772 | && HAVE_IN_PLACE_ADDENDS | |
12773 | && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0) | |
12774 | return 0; | |
12775 | ||
252b5132 | 12776 | #ifdef OBJ_ELF |
de7e6852 RS |
12777 | /* Don't adjust relocations against mips16 symbols, so that the linker |
12778 | can find them if it needs to set up a stub. */ | |
252b5132 RH |
12779 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour |
12780 | && S_GET_OTHER (fixp->fx_addsy) == STO_MIPS16 | |
12781 | && fixp->fx_subsy == NULL) | |
12782 | return 0; | |
12783 | #endif | |
a161fe53 | 12784 | |
252b5132 RH |
12785 | return 1; |
12786 | } | |
12787 | ||
12788 | /* Translate internal representation of relocation info to BFD target | |
12789 | format. */ | |
12790 | ||
12791 | arelent ** | |
17a2f251 | 12792 | tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp) |
252b5132 RH |
12793 | { |
12794 | static arelent *retval[4]; | |
12795 | arelent *reloc; | |
12796 | bfd_reloc_code_real_type code; | |
12797 | ||
4b0cff4e TS |
12798 | memset (retval, 0, sizeof(retval)); |
12799 | reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent)); | |
49309057 ILT |
12800 | reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *)); |
12801 | *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy); | |
252b5132 RH |
12802 | reloc->address = fixp->fx_frag->fr_address + fixp->fx_where; |
12803 | ||
3e722fb5 CD |
12804 | assert (! fixp->fx_pcrel); |
12805 | reloc->addend = fixp->fx_addnumber; | |
252b5132 | 12806 | |
438c16b8 TS |
12807 | /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable |
12808 | entry to be used in the relocation's section offset. */ | |
12809 | if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY) | |
252b5132 RH |
12810 | { |
12811 | reloc->address = reloc->addend; | |
12812 | reloc->addend = 0; | |
12813 | } | |
12814 | ||
252b5132 | 12815 | code = fixp->fx_r_type; |
252b5132 | 12816 | |
3e722fb5 CD |
12817 | /* To support a PC relative reloc, we used a Cygnus extension. |
12818 | We check for that here to make sure that we don't let such a | |
12819 | reloc escape normally. (FIXME: This was formerly used by | |
12820 | embedded-PIC support, but is now used by branch handling in | |
12821 | general. That probably should be fixed.) */ | |
0b25d3e6 AO |
12822 | if ((OUTPUT_FLAVOR == bfd_target_ecoff_flavour |
12823 | || OUTPUT_FLAVOR == bfd_target_elf_flavour) | |
3e722fb5 | 12824 | && code == BFD_RELOC_16_PCREL_S2) |
0b25d3e6 AO |
12825 | reloc->howto = NULL; |
12826 | else | |
12827 | reloc->howto = bfd_reloc_type_lookup (stdoutput, code); | |
12828 | ||
252b5132 RH |
12829 | if (reloc->howto == NULL) |
12830 | { | |
12831 | as_bad_where (fixp->fx_file, fixp->fx_line, | |
12832 | _("Can not represent %s relocation in this object file format"), | |
12833 | bfd_get_reloc_code_name (code)); | |
12834 | retval[0] = NULL; | |
12835 | } | |
12836 | ||
12837 | return retval; | |
12838 | } | |
12839 | ||
12840 | /* Relax a machine dependent frag. This returns the amount by which | |
12841 | the current size of the frag should change. */ | |
12842 | ||
12843 | int | |
17a2f251 | 12844 | mips_relax_frag (asection *sec, fragS *fragp, long stretch) |
252b5132 | 12845 | { |
4a6a3df4 AO |
12846 | if (RELAX_BRANCH_P (fragp->fr_subtype)) |
12847 | { | |
12848 | offsetT old_var = fragp->fr_var; | |
b34976b6 AM |
12849 | |
12850 | fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE); | |
4a6a3df4 AO |
12851 | |
12852 | return fragp->fr_var - old_var; | |
12853 | } | |
12854 | ||
252b5132 RH |
12855 | if (! RELAX_MIPS16_P (fragp->fr_subtype)) |
12856 | return 0; | |
12857 | ||
c4e7957c | 12858 | if (mips16_extended_frag (fragp, NULL, stretch)) |
252b5132 RH |
12859 | { |
12860 | if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype)) | |
12861 | return 0; | |
12862 | fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype); | |
12863 | return 2; | |
12864 | } | |
12865 | else | |
12866 | { | |
12867 | if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)) | |
12868 | return 0; | |
12869 | fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype); | |
12870 | return -2; | |
12871 | } | |
12872 | ||
12873 | return 0; | |
12874 | } | |
12875 | ||
12876 | /* Convert a machine dependent frag. */ | |
12877 | ||
12878 | void | |
17a2f251 | 12879 | md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp) |
252b5132 | 12880 | { |
4a6a3df4 AO |
12881 | if (RELAX_BRANCH_P (fragp->fr_subtype)) |
12882 | { | |
12883 | bfd_byte *buf; | |
12884 | unsigned long insn; | |
12885 | expressionS exp; | |
12886 | fixS *fixp; | |
b34976b6 | 12887 | |
4a6a3df4 AO |
12888 | buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix; |
12889 | ||
12890 | if (target_big_endian) | |
12891 | insn = bfd_getb32 (buf); | |
12892 | else | |
12893 | insn = bfd_getl32 (buf); | |
b34976b6 | 12894 | |
4a6a3df4 AO |
12895 | if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype)) |
12896 | { | |
12897 | /* We generate a fixup instead of applying it right now | |
12898 | because, if there are linker relaxations, we're going to | |
12899 | need the relocations. */ | |
12900 | exp.X_op = O_symbol; | |
12901 | exp.X_add_symbol = fragp->fr_symbol; | |
12902 | exp.X_add_number = fragp->fr_offset; | |
12903 | ||
12904 | fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal, | |
0b25d3e6 AO |
12905 | 4, &exp, 1, |
12906 | BFD_RELOC_16_PCREL_S2); | |
4a6a3df4 AO |
12907 | fixp->fx_file = fragp->fr_file; |
12908 | fixp->fx_line = fragp->fr_line; | |
b34976b6 | 12909 | |
17a2f251 | 12910 | md_number_to_chars (buf, insn, 4); |
4a6a3df4 AO |
12911 | buf += 4; |
12912 | } | |
12913 | else | |
12914 | { | |
12915 | int i; | |
12916 | ||
12917 | as_warn_where (fragp->fr_file, fragp->fr_line, | |
12918 | _("relaxed out-of-range branch into a jump")); | |
12919 | ||
12920 | if (RELAX_BRANCH_UNCOND (fragp->fr_subtype)) | |
12921 | goto uncond; | |
12922 | ||
12923 | if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype)) | |
12924 | { | |
12925 | /* Reverse the branch. */ | |
12926 | switch ((insn >> 28) & 0xf) | |
12927 | { | |
12928 | case 4: | |
12929 | /* bc[0-3][tf]l? and bc1any[24][ft] instructions can | |
12930 | have the condition reversed by tweaking a single | |
12931 | bit, and their opcodes all have 0x4???????. */ | |
12932 | assert ((insn & 0xf1000000) == 0x41000000); | |
12933 | insn ^= 0x00010000; | |
12934 | break; | |
12935 | ||
12936 | case 0: | |
12937 | /* bltz 0x04000000 bgez 0x04010000 | |
12938 | bltzal 0x04100000 bgezal 0x04110000 */ | |
12939 | assert ((insn & 0xfc0e0000) == 0x04000000); | |
12940 | insn ^= 0x00010000; | |
12941 | break; | |
b34976b6 | 12942 | |
4a6a3df4 AO |
12943 | case 1: |
12944 | /* beq 0x10000000 bne 0x14000000 | |
12945 | blez 0x18000000 bgtz 0x1c000000 */ | |
12946 | insn ^= 0x04000000; | |
12947 | break; | |
12948 | ||
12949 | default: | |
12950 | abort (); | |
12951 | } | |
12952 | } | |
12953 | ||
12954 | if (RELAX_BRANCH_LINK (fragp->fr_subtype)) | |
12955 | { | |
12956 | /* Clear the and-link bit. */ | |
12957 | assert ((insn & 0xfc1c0000) == 0x04100000); | |
12958 | ||
12959 | /* bltzal 0x04100000 bgezal 0x04110000 | |
12960 | bltzall 0x04120000 bgezall 0x04130000 */ | |
12961 | insn &= ~0x00100000; | |
12962 | } | |
12963 | ||
12964 | /* Branch over the branch (if the branch was likely) or the | |
12965 | full jump (not likely case). Compute the offset from the | |
12966 | current instruction to branch to. */ | |
12967 | if (RELAX_BRANCH_LIKELY (fragp->fr_subtype)) | |
12968 | i = 16; | |
12969 | else | |
12970 | { | |
12971 | /* How many bytes in instructions we've already emitted? */ | |
12972 | i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix; | |
12973 | /* How many bytes in instructions from here to the end? */ | |
12974 | i = fragp->fr_var - i; | |
12975 | } | |
12976 | /* Convert to instruction count. */ | |
12977 | i >>= 2; | |
12978 | /* Branch counts from the next instruction. */ | |
b34976b6 | 12979 | i--; |
4a6a3df4 AO |
12980 | insn |= i; |
12981 | /* Branch over the jump. */ | |
17a2f251 | 12982 | md_number_to_chars (buf, insn, 4); |
4a6a3df4 AO |
12983 | buf += 4; |
12984 | ||
12985 | /* Nop */ | |
17a2f251 | 12986 | md_number_to_chars (buf, 0, 4); |
4a6a3df4 AO |
12987 | buf += 4; |
12988 | ||
12989 | if (RELAX_BRANCH_LIKELY (fragp->fr_subtype)) | |
12990 | { | |
12991 | /* beql $0, $0, 2f */ | |
12992 | insn = 0x50000000; | |
12993 | /* Compute the PC offset from the current instruction to | |
12994 | the end of the variable frag. */ | |
12995 | /* How many bytes in instructions we've already emitted? */ | |
12996 | i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix; | |
12997 | /* How many bytes in instructions from here to the end? */ | |
12998 | i = fragp->fr_var - i; | |
12999 | /* Convert to instruction count. */ | |
13000 | i >>= 2; | |
13001 | /* Don't decrement i, because we want to branch over the | |
13002 | delay slot. */ | |
13003 | ||
13004 | insn |= i; | |
17a2f251 | 13005 | md_number_to_chars (buf, insn, 4); |
4a6a3df4 AO |
13006 | buf += 4; |
13007 | ||
17a2f251 | 13008 | md_number_to_chars (buf, 0, 4); |
4a6a3df4 AO |
13009 | buf += 4; |
13010 | } | |
13011 | ||
13012 | uncond: | |
13013 | if (mips_pic == NO_PIC) | |
13014 | { | |
13015 | /* j or jal. */ | |
13016 | insn = (RELAX_BRANCH_LINK (fragp->fr_subtype) | |
13017 | ? 0x0c000000 : 0x08000000); | |
13018 | exp.X_op = O_symbol; | |
13019 | exp.X_add_symbol = fragp->fr_symbol; | |
13020 | exp.X_add_number = fragp->fr_offset; | |
13021 | ||
13022 | fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal, | |
13023 | 4, &exp, 0, BFD_RELOC_MIPS_JMP); | |
13024 | fixp->fx_file = fragp->fr_file; | |
13025 | fixp->fx_line = fragp->fr_line; | |
13026 | ||
17a2f251 | 13027 | md_number_to_chars (buf, insn, 4); |
4a6a3df4 AO |
13028 | buf += 4; |
13029 | } | |
13030 | else | |
13031 | { | |
13032 | /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */ | |
13033 | insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000; | |
13034 | exp.X_op = O_symbol; | |
13035 | exp.X_add_symbol = fragp->fr_symbol; | |
13036 | exp.X_add_number = fragp->fr_offset; | |
13037 | ||
13038 | if (fragp->fr_offset) | |
13039 | { | |
13040 | exp.X_add_symbol = make_expr_symbol (&exp); | |
13041 | exp.X_add_number = 0; | |
13042 | } | |
13043 | ||
13044 | fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal, | |
13045 | 4, &exp, 0, BFD_RELOC_MIPS_GOT16); | |
13046 | fixp->fx_file = fragp->fr_file; | |
13047 | fixp->fx_line = fragp->fr_line; | |
13048 | ||
17a2f251 | 13049 | md_number_to_chars (buf, insn, 4); |
4a6a3df4 | 13050 | buf += 4; |
b34976b6 | 13051 | |
4a6a3df4 AO |
13052 | if (mips_opts.isa == ISA_MIPS1) |
13053 | { | |
13054 | /* nop */ | |
17a2f251 | 13055 | md_number_to_chars (buf, 0, 4); |
4a6a3df4 AO |
13056 | buf += 4; |
13057 | } | |
13058 | ||
13059 | /* d/addiu $at, $at, <sym> R_MIPS_LO16 */ | |
13060 | insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000; | |
13061 | ||
13062 | fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal, | |
13063 | 4, &exp, 0, BFD_RELOC_LO16); | |
13064 | fixp->fx_file = fragp->fr_file; | |
13065 | fixp->fx_line = fragp->fr_line; | |
b34976b6 | 13066 | |
17a2f251 | 13067 | md_number_to_chars (buf, insn, 4); |
4a6a3df4 AO |
13068 | buf += 4; |
13069 | ||
13070 | /* j(al)r $at. */ | |
13071 | if (RELAX_BRANCH_LINK (fragp->fr_subtype)) | |
13072 | insn = 0x0020f809; | |
13073 | else | |
13074 | insn = 0x00200008; | |
13075 | ||
17a2f251 | 13076 | md_number_to_chars (buf, insn, 4); |
4a6a3df4 AO |
13077 | buf += 4; |
13078 | } | |
13079 | } | |
13080 | ||
13081 | assert (buf == (bfd_byte *)fragp->fr_literal | |
13082 | + fragp->fr_fix + fragp->fr_var); | |
13083 | ||
13084 | fragp->fr_fix += fragp->fr_var; | |
13085 | ||
13086 | return; | |
13087 | } | |
13088 | ||
252b5132 RH |
13089 | if (RELAX_MIPS16_P (fragp->fr_subtype)) |
13090 | { | |
13091 | int type; | |
13092 | register const struct mips16_immed_operand *op; | |
b34976b6 | 13093 | bfd_boolean small, ext; |
252b5132 RH |
13094 | offsetT val; |
13095 | bfd_byte *buf; | |
13096 | unsigned long insn; | |
b34976b6 | 13097 | bfd_boolean use_extend; |
252b5132 RH |
13098 | unsigned short extend; |
13099 | ||
13100 | type = RELAX_MIPS16_TYPE (fragp->fr_subtype); | |
13101 | op = mips16_immed_operands; | |
13102 | while (op->type != type) | |
13103 | ++op; | |
13104 | ||
13105 | if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype)) | |
13106 | { | |
b34976b6 AM |
13107 | small = FALSE; |
13108 | ext = TRUE; | |
252b5132 RH |
13109 | } |
13110 | else | |
13111 | { | |
b34976b6 AM |
13112 | small = TRUE; |
13113 | ext = FALSE; | |
252b5132 RH |
13114 | } |
13115 | ||
6386f3a7 | 13116 | resolve_symbol_value (fragp->fr_symbol); |
252b5132 RH |
13117 | val = S_GET_VALUE (fragp->fr_symbol); |
13118 | if (op->pcrel) | |
13119 | { | |
13120 | addressT addr; | |
13121 | ||
13122 | addr = fragp->fr_address + fragp->fr_fix; | |
13123 | ||
13124 | /* The rules for the base address of a PC relative reloc are | |
13125 | complicated; see mips16_extended_frag. */ | |
13126 | if (type == 'p' || type == 'q') | |
13127 | { | |
13128 | addr += 2; | |
13129 | if (ext) | |
13130 | addr += 2; | |
13131 | /* Ignore the low bit in the target, since it will be | |
13132 | set for a text label. */ | |
13133 | if ((val & 1) != 0) | |
13134 | --val; | |
13135 | } | |
13136 | else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)) | |
13137 | addr -= 4; | |
13138 | else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype)) | |
13139 | addr -= 2; | |
13140 | ||
13141 | addr &= ~ (addressT) ((1 << op->shift) - 1); | |
13142 | val -= addr; | |
13143 | ||
13144 | /* Make sure the section winds up with the alignment we have | |
13145 | assumed. */ | |
13146 | if (op->shift > 0) | |
13147 | record_alignment (asec, op->shift); | |
13148 | } | |
13149 | ||
13150 | if (ext | |
13151 | && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype) | |
13152 | || RELAX_MIPS16_DSLOT (fragp->fr_subtype))) | |
13153 | as_warn_where (fragp->fr_file, fragp->fr_line, | |
13154 | _("extended instruction in delay slot")); | |
13155 | ||
13156 | buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix); | |
13157 | ||
13158 | if (target_big_endian) | |
13159 | insn = bfd_getb16 (buf); | |
13160 | else | |
13161 | insn = bfd_getl16 (buf); | |
13162 | ||
13163 | mips16_immed (fragp->fr_file, fragp->fr_line, type, val, | |
13164 | RELAX_MIPS16_USER_EXT (fragp->fr_subtype), | |
13165 | small, ext, &insn, &use_extend, &extend); | |
13166 | ||
13167 | if (use_extend) | |
13168 | { | |
17a2f251 | 13169 | md_number_to_chars (buf, 0xf000 | extend, 2); |
252b5132 RH |
13170 | fragp->fr_fix += 2; |
13171 | buf += 2; | |
13172 | } | |
13173 | ||
17a2f251 | 13174 | md_number_to_chars (buf, insn, 2); |
252b5132 RH |
13175 | fragp->fr_fix += 2; |
13176 | buf += 2; | |
13177 | } | |
13178 | else | |
13179 | { | |
4d7206a2 RS |
13180 | int first, second; |
13181 | fixS *fixp; | |
252b5132 | 13182 | |
4d7206a2 RS |
13183 | first = RELAX_FIRST (fragp->fr_subtype); |
13184 | second = RELAX_SECOND (fragp->fr_subtype); | |
13185 | fixp = (fixS *) fragp->fr_opcode; | |
252b5132 | 13186 | |
584892a6 RS |
13187 | /* Possibly emit a warning if we've chosen the longer option. */ |
13188 | if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0) | |
13189 | == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0)) | |
13190 | { | |
13191 | const char *msg = macro_warning (fragp->fr_subtype); | |
13192 | if (msg != 0) | |
13193 | as_warn_where (fragp->fr_file, fragp->fr_line, msg); | |
13194 | } | |
13195 | ||
4d7206a2 RS |
13196 | /* Go through all the fixups for the first sequence. Disable them |
13197 | (by marking them as done) if we're going to use the second | |
13198 | sequence instead. */ | |
13199 | while (fixp | |
13200 | && fixp->fx_frag == fragp | |
13201 | && fixp->fx_where < fragp->fr_fix - second) | |
13202 | { | |
13203 | if (fragp->fr_subtype & RELAX_USE_SECOND) | |
13204 | fixp->fx_done = 1; | |
13205 | fixp = fixp->fx_next; | |
13206 | } | |
252b5132 | 13207 | |
4d7206a2 RS |
13208 | /* Go through the fixups for the second sequence. Disable them if |
13209 | we're going to use the first sequence, otherwise adjust their | |
13210 | addresses to account for the relaxation. */ | |
13211 | while (fixp && fixp->fx_frag == fragp) | |
13212 | { | |
13213 | if (fragp->fr_subtype & RELAX_USE_SECOND) | |
13214 | fixp->fx_where -= first; | |
13215 | else | |
13216 | fixp->fx_done = 1; | |
13217 | fixp = fixp->fx_next; | |
13218 | } | |
13219 | ||
13220 | /* Now modify the frag contents. */ | |
13221 | if (fragp->fr_subtype & RELAX_USE_SECOND) | |
13222 | { | |
13223 | char *start; | |
13224 | ||
13225 | start = fragp->fr_literal + fragp->fr_fix - first - second; | |
13226 | memmove (start, start + first, second); | |
13227 | fragp->fr_fix -= first; | |
13228 | } | |
13229 | else | |
13230 | fragp->fr_fix -= second; | |
252b5132 RH |
13231 | } |
13232 | } | |
13233 | ||
13234 | #ifdef OBJ_ELF | |
13235 | ||
13236 | /* This function is called after the relocs have been generated. | |
13237 | We've been storing mips16 text labels as odd. Here we convert them | |
13238 | back to even for the convenience of the debugger. */ | |
13239 | ||
13240 | void | |
17a2f251 | 13241 | mips_frob_file_after_relocs (void) |
252b5132 RH |
13242 | { |
13243 | asymbol **syms; | |
13244 | unsigned int count, i; | |
13245 | ||
13246 | if (OUTPUT_FLAVOR != bfd_target_elf_flavour) | |
13247 | return; | |
13248 | ||
13249 | syms = bfd_get_outsymbols (stdoutput); | |
13250 | count = bfd_get_symcount (stdoutput); | |
13251 | for (i = 0; i < count; i++, syms++) | |
13252 | { | |
13253 | if (elf_symbol (*syms)->internal_elf_sym.st_other == STO_MIPS16 | |
13254 | && ((*syms)->value & 1) != 0) | |
13255 | { | |
13256 | (*syms)->value &= ~1; | |
13257 | /* If the symbol has an odd size, it was probably computed | |
13258 | incorrectly, so adjust that as well. */ | |
13259 | if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0) | |
13260 | ++elf_symbol (*syms)->internal_elf_sym.st_size; | |
13261 | } | |
13262 | } | |
13263 | } | |
13264 | ||
13265 | #endif | |
13266 | ||
13267 | /* This function is called whenever a label is defined. It is used | |
13268 | when handling branch delays; if a branch has a label, we assume we | |
13269 | can not move it. */ | |
13270 | ||
13271 | void | |
17a2f251 | 13272 | mips_define_label (symbolS *sym) |
252b5132 RH |
13273 | { |
13274 | struct insn_label_list *l; | |
13275 | ||
13276 | if (free_insn_labels == NULL) | |
13277 | l = (struct insn_label_list *) xmalloc (sizeof *l); | |
13278 | else | |
13279 | { | |
13280 | l = free_insn_labels; | |
13281 | free_insn_labels = l->next; | |
13282 | } | |
13283 | ||
13284 | l->label = sym; | |
13285 | l->next = insn_labels; | |
13286 | insn_labels = l; | |
13287 | } | |
13288 | \f | |
13289 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
13290 | ||
13291 | /* Some special processing for a MIPS ELF file. */ | |
13292 | ||
13293 | void | |
17a2f251 | 13294 | mips_elf_final_processing (void) |
252b5132 RH |
13295 | { |
13296 | /* Write out the register information. */ | |
316f5878 | 13297 | if (mips_abi != N64_ABI) |
252b5132 RH |
13298 | { |
13299 | Elf32_RegInfo s; | |
13300 | ||
13301 | s.ri_gprmask = mips_gprmask; | |
13302 | s.ri_cprmask[0] = mips_cprmask[0]; | |
13303 | s.ri_cprmask[1] = mips_cprmask[1]; | |
13304 | s.ri_cprmask[2] = mips_cprmask[2]; | |
13305 | s.ri_cprmask[3] = mips_cprmask[3]; | |
13306 | /* The gp_value field is set by the MIPS ELF backend. */ | |
13307 | ||
13308 | bfd_mips_elf32_swap_reginfo_out (stdoutput, &s, | |
13309 | ((Elf32_External_RegInfo *) | |
13310 | mips_regmask_frag)); | |
13311 | } | |
13312 | else | |
13313 | { | |
13314 | Elf64_Internal_RegInfo s; | |
13315 | ||
13316 | s.ri_gprmask = mips_gprmask; | |
13317 | s.ri_pad = 0; | |
13318 | s.ri_cprmask[0] = mips_cprmask[0]; | |
13319 | s.ri_cprmask[1] = mips_cprmask[1]; | |
13320 | s.ri_cprmask[2] = mips_cprmask[2]; | |
13321 | s.ri_cprmask[3] = mips_cprmask[3]; | |
13322 | /* The gp_value field is set by the MIPS ELF backend. */ | |
13323 | ||
13324 | bfd_mips_elf64_swap_reginfo_out (stdoutput, &s, | |
13325 | ((Elf64_External_RegInfo *) | |
13326 | mips_regmask_frag)); | |
13327 | } | |
13328 | ||
13329 | /* Set the MIPS ELF flag bits. FIXME: There should probably be some | |
13330 | sort of BFD interface for this. */ | |
13331 | if (mips_any_noreorder) | |
13332 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER; | |
13333 | if (mips_pic != NO_PIC) | |
143d77c5 | 13334 | { |
252b5132 | 13335 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC; |
143d77c5 EC |
13336 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC; |
13337 | } | |
13338 | if (mips_abicalls) | |
13339 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC; | |
252b5132 | 13340 | |
98d3f06f | 13341 | /* Set MIPS ELF flags for ASEs. */ |
a4672219 TS |
13342 | if (file_ase_mips16) |
13343 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16; | |
1f25f5d3 CD |
13344 | #if 0 /* XXX FIXME */ |
13345 | if (file_ase_mips3d) | |
13346 | elf_elfheader (stdoutput)->e_flags |= ???; | |
13347 | #endif | |
deec1734 CD |
13348 | if (file_ase_mdmx) |
13349 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX; | |
1f25f5d3 | 13350 | |
bdaaa2e1 | 13351 | /* Set the MIPS ELF ABI flags. */ |
316f5878 | 13352 | if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32) |
252b5132 | 13353 | elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32; |
316f5878 | 13354 | else if (mips_abi == O64_ABI) |
252b5132 | 13355 | elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64; |
316f5878 | 13356 | else if (mips_abi == EABI_ABI) |
252b5132 | 13357 | { |
316f5878 | 13358 | if (!file_mips_gp32) |
252b5132 RH |
13359 | elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64; |
13360 | else | |
13361 | elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32; | |
13362 | } | |
316f5878 | 13363 | else if (mips_abi == N32_ABI) |
be00bddd TS |
13364 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2; |
13365 | ||
c9914766 | 13366 | /* Nothing to do for N64_ABI. */ |
252b5132 RH |
13367 | |
13368 | if (mips_32bitmode) | |
13369 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE; | |
13370 | } | |
13371 | ||
13372 | #endif /* OBJ_ELF || OBJ_MAYBE_ELF */ | |
13373 | \f | |
beae10d5 KH |
13374 | typedef struct proc { |
13375 | symbolS *isym; | |
13376 | unsigned long reg_mask; | |
13377 | unsigned long reg_offset; | |
13378 | unsigned long fpreg_mask; | |
13379 | unsigned long fpreg_offset; | |
13380 | unsigned long frame_offset; | |
13381 | unsigned long frame_reg; | |
13382 | unsigned long pc_reg; | |
13383 | } procS; | |
252b5132 RH |
13384 | |
13385 | static procS cur_proc; | |
13386 | static procS *cur_proc_ptr; | |
13387 | static int numprocs; | |
13388 | ||
0a9ef439 | 13389 | /* Fill in an rs_align_code fragment. */ |
a19d8eb0 | 13390 | |
0a9ef439 | 13391 | void |
17a2f251 | 13392 | mips_handle_align (fragS *fragp) |
a19d8eb0 | 13393 | { |
0a9ef439 RH |
13394 | if (fragp->fr_type != rs_align_code) |
13395 | return; | |
13396 | ||
13397 | if (mips_opts.mips16) | |
a19d8eb0 CP |
13398 | { |
13399 | static const unsigned char be_nop[] = { 0x65, 0x00 }; | |
13400 | static const unsigned char le_nop[] = { 0x00, 0x65 }; | |
13401 | ||
0a9ef439 RH |
13402 | int bytes; |
13403 | char *p; | |
a19d8eb0 | 13404 | |
0a9ef439 RH |
13405 | bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix; |
13406 | p = fragp->fr_literal + fragp->fr_fix; | |
13407 | ||
13408 | if (bytes & 1) | |
13409 | { | |
13410 | *p++ = 0; | |
f9419b05 | 13411 | fragp->fr_fix++; |
0a9ef439 RH |
13412 | } |
13413 | ||
13414 | memcpy (p, (target_big_endian ? be_nop : le_nop), 2); | |
13415 | fragp->fr_var = 2; | |
a19d8eb0 CP |
13416 | } |
13417 | ||
0a9ef439 | 13418 | /* For mips32, a nop is a zero, which we trivially get by doing nothing. */ |
a19d8eb0 CP |
13419 | } |
13420 | ||
252b5132 | 13421 | static void |
17a2f251 | 13422 | md_obj_begin (void) |
252b5132 RH |
13423 | { |
13424 | } | |
13425 | ||
13426 | static void | |
17a2f251 | 13427 | md_obj_end (void) |
252b5132 RH |
13428 | { |
13429 | /* check for premature end, nesting errors, etc */ | |
13430 | if (cur_proc_ptr) | |
9a41af64 | 13431 | as_warn (_("missing .end at end of assembly")); |
252b5132 RH |
13432 | } |
13433 | ||
13434 | static long | |
17a2f251 | 13435 | get_number (void) |
252b5132 RH |
13436 | { |
13437 | int negative = 0; | |
13438 | long val = 0; | |
13439 | ||
13440 | if (*input_line_pointer == '-') | |
13441 | { | |
13442 | ++input_line_pointer; | |
13443 | negative = 1; | |
13444 | } | |
3882b010 | 13445 | if (!ISDIGIT (*input_line_pointer)) |
956cd1d6 | 13446 | as_bad (_("expected simple number")); |
252b5132 RH |
13447 | if (input_line_pointer[0] == '0') |
13448 | { | |
13449 | if (input_line_pointer[1] == 'x') | |
13450 | { | |
13451 | input_line_pointer += 2; | |
3882b010 | 13452 | while (ISXDIGIT (*input_line_pointer)) |
252b5132 RH |
13453 | { |
13454 | val <<= 4; | |
13455 | val |= hex_value (*input_line_pointer++); | |
13456 | } | |
13457 | return negative ? -val : val; | |
13458 | } | |
13459 | else | |
13460 | { | |
13461 | ++input_line_pointer; | |
3882b010 | 13462 | while (ISDIGIT (*input_line_pointer)) |
252b5132 RH |
13463 | { |
13464 | val <<= 3; | |
13465 | val |= *input_line_pointer++ - '0'; | |
13466 | } | |
13467 | return negative ? -val : val; | |
13468 | } | |
13469 | } | |
3882b010 | 13470 | if (!ISDIGIT (*input_line_pointer)) |
252b5132 RH |
13471 | { |
13472 | printf (_(" *input_line_pointer == '%c' 0x%02x\n"), | |
13473 | *input_line_pointer, *input_line_pointer); | |
956cd1d6 | 13474 | as_warn (_("invalid number")); |
252b5132 RH |
13475 | return -1; |
13476 | } | |
3882b010 | 13477 | while (ISDIGIT (*input_line_pointer)) |
252b5132 RH |
13478 | { |
13479 | val *= 10; | |
13480 | val += *input_line_pointer++ - '0'; | |
13481 | } | |
13482 | return negative ? -val : val; | |
13483 | } | |
13484 | ||
13485 | /* The .file directive; just like the usual .file directive, but there | |
c5dd6aab DJ |
13486 | is an initial number which is the ECOFF file index. In the non-ECOFF |
13487 | case .file implies DWARF-2. */ | |
13488 | ||
13489 | static void | |
17a2f251 | 13490 | s_mips_file (int x ATTRIBUTE_UNUSED) |
c5dd6aab | 13491 | { |
ecb4347a DJ |
13492 | static int first_file_directive = 0; |
13493 | ||
c5dd6aab DJ |
13494 | if (ECOFF_DEBUGGING) |
13495 | { | |
13496 | get_number (); | |
13497 | s_app_file (0); | |
13498 | } | |
13499 | else | |
ecb4347a DJ |
13500 | { |
13501 | char *filename; | |
13502 | ||
13503 | filename = dwarf2_directive_file (0); | |
13504 | ||
13505 | /* Versions of GCC up to 3.1 start files with a ".file" | |
13506 | directive even for stabs output. Make sure that this | |
13507 | ".file" is handled. Note that you need a version of GCC | |
13508 | after 3.1 in order to support DWARF-2 on MIPS. */ | |
13509 | if (filename != NULL && ! first_file_directive) | |
13510 | { | |
13511 | (void) new_logical_line (filename, -1); | |
13512 | s_app_file_string (filename); | |
13513 | } | |
13514 | first_file_directive = 1; | |
13515 | } | |
c5dd6aab DJ |
13516 | } |
13517 | ||
13518 | /* The .loc directive, implying DWARF-2. */ | |
252b5132 RH |
13519 | |
13520 | static void | |
17a2f251 | 13521 | s_mips_loc (int x ATTRIBUTE_UNUSED) |
252b5132 | 13522 | { |
c5dd6aab DJ |
13523 | if (!ECOFF_DEBUGGING) |
13524 | dwarf2_directive_loc (0); | |
252b5132 RH |
13525 | } |
13526 | ||
252b5132 RH |
13527 | /* The .end directive. */ |
13528 | ||
13529 | static void | |
17a2f251 | 13530 | s_mips_end (int x ATTRIBUTE_UNUSED) |
252b5132 RH |
13531 | { |
13532 | symbolS *p; | |
252b5132 | 13533 | |
7a621144 DJ |
13534 | /* Following functions need their own .frame and .cprestore directives. */ |
13535 | mips_frame_reg_valid = 0; | |
13536 | mips_cprestore_valid = 0; | |
13537 | ||
252b5132 RH |
13538 | if (!is_end_of_line[(unsigned char) *input_line_pointer]) |
13539 | { | |
13540 | p = get_symbol (); | |
13541 | demand_empty_rest_of_line (); | |
13542 | } | |
13543 | else | |
13544 | p = NULL; | |
13545 | ||
14949570 | 13546 | if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0) |
252b5132 RH |
13547 | as_warn (_(".end not in text section")); |
13548 | ||
13549 | if (!cur_proc_ptr) | |
13550 | { | |
13551 | as_warn (_(".end directive without a preceding .ent directive.")); | |
13552 | demand_empty_rest_of_line (); | |
13553 | return; | |
13554 | } | |
13555 | ||
13556 | if (p != NULL) | |
13557 | { | |
13558 | assert (S_GET_NAME (p)); | |
13559 | if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->isym))) | |
13560 | as_warn (_(".end symbol does not match .ent symbol.")); | |
ecb4347a DJ |
13561 | |
13562 | if (debug_type == DEBUG_STABS) | |
13563 | stabs_generate_asm_endfunc (S_GET_NAME (p), | |
13564 | S_GET_NAME (p)); | |
252b5132 RH |
13565 | } |
13566 | else | |
13567 | as_warn (_(".end directive missing or unknown symbol")); | |
13568 | ||
ecb4347a DJ |
13569 | #ifdef OBJ_ELF |
13570 | /* Generate a .pdr section. */ | |
dcd410fe RO |
13571 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING |
13572 | && mips_flag_pdr) | |
ecb4347a DJ |
13573 | { |
13574 | segT saved_seg = now_seg; | |
13575 | subsegT saved_subseg = now_subseg; | |
13576 | valueT dot; | |
13577 | expressionS exp; | |
13578 | char *fragp; | |
252b5132 | 13579 | |
ecb4347a | 13580 | dot = frag_now_fix (); |
252b5132 RH |
13581 | |
13582 | #ifdef md_flush_pending_output | |
ecb4347a | 13583 | md_flush_pending_output (); |
252b5132 RH |
13584 | #endif |
13585 | ||
ecb4347a DJ |
13586 | assert (pdr_seg); |
13587 | subseg_set (pdr_seg, 0); | |
252b5132 | 13588 | |
ecb4347a DJ |
13589 | /* Write the symbol. */ |
13590 | exp.X_op = O_symbol; | |
13591 | exp.X_add_symbol = p; | |
13592 | exp.X_add_number = 0; | |
13593 | emit_expr (&exp, 4); | |
252b5132 | 13594 | |
ecb4347a | 13595 | fragp = frag_more (7 * 4); |
252b5132 | 13596 | |
17a2f251 TS |
13597 | md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4); |
13598 | md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4); | |
13599 | md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4); | |
13600 | md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4); | |
13601 | md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4); | |
13602 | md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4); | |
13603 | md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4); | |
252b5132 | 13604 | |
ecb4347a DJ |
13605 | subseg_set (saved_seg, saved_subseg); |
13606 | } | |
13607 | #endif /* OBJ_ELF */ | |
252b5132 RH |
13608 | |
13609 | cur_proc_ptr = NULL; | |
13610 | } | |
13611 | ||
13612 | /* The .aent and .ent directives. */ | |
13613 | ||
13614 | static void | |
17a2f251 | 13615 | s_mips_ent (int aent) |
252b5132 | 13616 | { |
252b5132 | 13617 | symbolS *symbolP; |
252b5132 RH |
13618 | |
13619 | symbolP = get_symbol (); | |
13620 | if (*input_line_pointer == ',') | |
f9419b05 | 13621 | ++input_line_pointer; |
252b5132 | 13622 | SKIP_WHITESPACE (); |
3882b010 | 13623 | if (ISDIGIT (*input_line_pointer) |
d9a62219 | 13624 | || *input_line_pointer == '-') |
874e8986 | 13625 | get_number (); |
252b5132 | 13626 | |
14949570 | 13627 | if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0) |
252b5132 RH |
13628 | as_warn (_(".ent or .aent not in text section.")); |
13629 | ||
13630 | if (!aent && cur_proc_ptr) | |
9a41af64 | 13631 | as_warn (_("missing .end")); |
252b5132 RH |
13632 | |
13633 | if (!aent) | |
13634 | { | |
7a621144 DJ |
13635 | /* This function needs its own .frame and .cprestore directives. */ |
13636 | mips_frame_reg_valid = 0; | |
13637 | mips_cprestore_valid = 0; | |
13638 | ||
252b5132 RH |
13639 | cur_proc_ptr = &cur_proc; |
13640 | memset (cur_proc_ptr, '\0', sizeof (procS)); | |
13641 | ||
13642 | cur_proc_ptr->isym = symbolP; | |
13643 | ||
49309057 | 13644 | symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION; |
252b5132 | 13645 | |
f9419b05 | 13646 | ++numprocs; |
ecb4347a DJ |
13647 | |
13648 | if (debug_type == DEBUG_STABS) | |
13649 | stabs_generate_asm_func (S_GET_NAME (symbolP), | |
13650 | S_GET_NAME (symbolP)); | |
252b5132 RH |
13651 | } |
13652 | ||
13653 | demand_empty_rest_of_line (); | |
13654 | } | |
13655 | ||
13656 | /* The .frame directive. If the mdebug section is present (IRIX 5 native) | |
bdaaa2e1 | 13657 | then ecoff.c (ecoff_directive_frame) is used. For embedded targets, |
252b5132 | 13658 | s_mips_frame is used so that we can set the PDR information correctly. |
bdaaa2e1 | 13659 | We can't use the ecoff routines because they make reference to the ecoff |
252b5132 RH |
13660 | symbol table (in the mdebug section). */ |
13661 | ||
13662 | static void | |
17a2f251 | 13663 | s_mips_frame (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 13664 | { |
ecb4347a DJ |
13665 | #ifdef OBJ_ELF |
13666 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING) | |
13667 | { | |
13668 | long val; | |
252b5132 | 13669 | |
ecb4347a DJ |
13670 | if (cur_proc_ptr == (procS *) NULL) |
13671 | { | |
13672 | as_warn (_(".frame outside of .ent")); | |
13673 | demand_empty_rest_of_line (); | |
13674 | return; | |
13675 | } | |
252b5132 | 13676 | |
ecb4347a DJ |
13677 | cur_proc_ptr->frame_reg = tc_get_register (1); |
13678 | ||
13679 | SKIP_WHITESPACE (); | |
13680 | if (*input_line_pointer++ != ',' | |
13681 | || get_absolute_expression_and_terminator (&val) != ',') | |
13682 | { | |
13683 | as_warn (_("Bad .frame directive")); | |
13684 | --input_line_pointer; | |
13685 | demand_empty_rest_of_line (); | |
13686 | return; | |
13687 | } | |
252b5132 | 13688 | |
ecb4347a DJ |
13689 | cur_proc_ptr->frame_offset = val; |
13690 | cur_proc_ptr->pc_reg = tc_get_register (0); | |
252b5132 | 13691 | |
252b5132 | 13692 | demand_empty_rest_of_line (); |
252b5132 | 13693 | } |
ecb4347a DJ |
13694 | else |
13695 | #endif /* OBJ_ELF */ | |
13696 | s_ignore (ignore); | |
252b5132 RH |
13697 | } |
13698 | ||
bdaaa2e1 KH |
13699 | /* The .fmask and .mask directives. If the mdebug section is present |
13700 | (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For | |
252b5132 | 13701 | embedded targets, s_mips_mask is used so that we can set the PDR |
bdaaa2e1 | 13702 | information correctly. We can't use the ecoff routines because they |
252b5132 RH |
13703 | make reference to the ecoff symbol table (in the mdebug section). */ |
13704 | ||
13705 | static void | |
17a2f251 | 13706 | s_mips_mask (int reg_type) |
252b5132 | 13707 | { |
ecb4347a DJ |
13708 | #ifdef OBJ_ELF |
13709 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour && ! ECOFF_DEBUGGING) | |
252b5132 | 13710 | { |
ecb4347a | 13711 | long mask, off; |
252b5132 | 13712 | |
ecb4347a DJ |
13713 | if (cur_proc_ptr == (procS *) NULL) |
13714 | { | |
13715 | as_warn (_(".mask/.fmask outside of .ent")); | |
13716 | demand_empty_rest_of_line (); | |
13717 | return; | |
13718 | } | |
252b5132 | 13719 | |
ecb4347a DJ |
13720 | if (get_absolute_expression_and_terminator (&mask) != ',') |
13721 | { | |
13722 | as_warn (_("Bad .mask/.fmask directive")); | |
13723 | --input_line_pointer; | |
13724 | demand_empty_rest_of_line (); | |
13725 | return; | |
13726 | } | |
252b5132 | 13727 | |
ecb4347a DJ |
13728 | off = get_absolute_expression (); |
13729 | ||
13730 | if (reg_type == 'F') | |
13731 | { | |
13732 | cur_proc_ptr->fpreg_mask = mask; | |
13733 | cur_proc_ptr->fpreg_offset = off; | |
13734 | } | |
13735 | else | |
13736 | { | |
13737 | cur_proc_ptr->reg_mask = mask; | |
13738 | cur_proc_ptr->reg_offset = off; | |
13739 | } | |
13740 | ||
13741 | demand_empty_rest_of_line (); | |
252b5132 RH |
13742 | } |
13743 | else | |
ecb4347a DJ |
13744 | #endif /* OBJ_ELF */ |
13745 | s_ignore (reg_type); | |
252b5132 RH |
13746 | } |
13747 | ||
13748 | /* The .loc directive. */ | |
13749 | ||
13750 | #if 0 | |
13751 | static void | |
17a2f251 | 13752 | s_loc (int x) |
252b5132 RH |
13753 | { |
13754 | symbolS *symbolP; | |
13755 | int lineno; | |
13756 | int addroff; | |
13757 | ||
13758 | assert (now_seg == text_section); | |
13759 | ||
13760 | lineno = get_number (); | |
13761 | addroff = frag_now_fix (); | |
13762 | ||
13763 | symbolP = symbol_new ("", N_SLINE, addroff, frag_now); | |
13764 | S_SET_TYPE (symbolP, N_SLINE); | |
13765 | S_SET_OTHER (symbolP, 0); | |
13766 | S_SET_DESC (symbolP, lineno); | |
13767 | symbolP->sy_segment = now_seg; | |
13768 | } | |
13769 | #endif | |
e7af610e | 13770 | |
316f5878 RS |
13771 | /* A table describing all the processors gas knows about. Names are |
13772 | matched in the order listed. | |
e7af610e | 13773 | |
316f5878 RS |
13774 | To ease comparison, please keep this table in the same order as |
13775 | gcc's mips_cpu_info_table[]. */ | |
e972090a NC |
13776 | static const struct mips_cpu_info mips_cpu_info_table[] = |
13777 | { | |
316f5878 RS |
13778 | /* Entries for generic ISAs */ |
13779 | { "mips1", 1, ISA_MIPS1, CPU_R3000 }, | |
13780 | { "mips2", 1, ISA_MIPS2, CPU_R6000 }, | |
13781 | { "mips3", 1, ISA_MIPS3, CPU_R4000 }, | |
13782 | { "mips4", 1, ISA_MIPS4, CPU_R8000 }, | |
13783 | { "mips5", 1, ISA_MIPS5, CPU_MIPS5 }, | |
13784 | { "mips32", 1, ISA_MIPS32, CPU_MIPS32 }, | |
af7ee8bf | 13785 | { "mips32r2", 1, ISA_MIPS32R2, CPU_MIPS32R2 }, |
316f5878 | 13786 | { "mips64", 1, ISA_MIPS64, CPU_MIPS64 }, |
5f74bc13 | 13787 | { "mips64r2", 1, ISA_MIPS64R2, CPU_MIPS64R2 }, |
316f5878 RS |
13788 | |
13789 | /* MIPS I */ | |
13790 | { "r3000", 0, ISA_MIPS1, CPU_R3000 }, | |
13791 | { "r2000", 0, ISA_MIPS1, CPU_R3000 }, | |
13792 | { "r3900", 0, ISA_MIPS1, CPU_R3900 }, | |
13793 | ||
13794 | /* MIPS II */ | |
13795 | { "r6000", 0, ISA_MIPS2, CPU_R6000 }, | |
13796 | ||
13797 | /* MIPS III */ | |
13798 | { "r4000", 0, ISA_MIPS3, CPU_R4000 }, | |
13799 | { "r4010", 0, ISA_MIPS2, CPU_R4010 }, | |
13800 | { "vr4100", 0, ISA_MIPS3, CPU_VR4100 }, | |
13801 | { "vr4111", 0, ISA_MIPS3, CPU_R4111 }, | |
60b63b72 RS |
13802 | { "vr4120", 0, ISA_MIPS3, CPU_VR4120 }, |
13803 | { "vr4130", 0, ISA_MIPS3, CPU_VR4120 }, | |
13804 | { "vr4181", 0, ISA_MIPS3, CPU_R4111 }, | |
316f5878 RS |
13805 | { "vr4300", 0, ISA_MIPS3, CPU_R4300 }, |
13806 | { "r4400", 0, ISA_MIPS3, CPU_R4400 }, | |
13807 | { "r4600", 0, ISA_MIPS3, CPU_R4600 }, | |
13808 | { "orion", 0, ISA_MIPS3, CPU_R4600 }, | |
13809 | { "r4650", 0, ISA_MIPS3, CPU_R4650 }, | |
13810 | ||
13811 | /* MIPS IV */ | |
13812 | { "r8000", 0, ISA_MIPS4, CPU_R8000 }, | |
13813 | { "r10000", 0, ISA_MIPS4, CPU_R10000 }, | |
13814 | { "r12000", 0, ISA_MIPS4, CPU_R12000 }, | |
13815 | { "vr5000", 0, ISA_MIPS4, CPU_R5000 }, | |
60b63b72 RS |
13816 | { "vr5400", 0, ISA_MIPS4, CPU_VR5400 }, |
13817 | { "vr5500", 0, ISA_MIPS4, CPU_VR5500 }, | |
316f5878 RS |
13818 | { "rm5200", 0, ISA_MIPS4, CPU_R5000 }, |
13819 | { "rm5230", 0, ISA_MIPS4, CPU_R5000 }, | |
13820 | { "rm5231", 0, ISA_MIPS4, CPU_R5000 }, | |
13821 | { "rm5261", 0, ISA_MIPS4, CPU_R5000 }, | |
13822 | { "rm5721", 0, ISA_MIPS4, CPU_R5000 }, | |
5a7ea749 RS |
13823 | { "rm7000", 0, ISA_MIPS4, CPU_RM7000 }, |
13824 | { "rm9000", 0, ISA_MIPS4, CPU_RM7000 }, | |
316f5878 RS |
13825 | |
13826 | /* MIPS 32 */ | |
fef14a42 | 13827 | { "4kc", 0, ISA_MIPS32, CPU_MIPS32 }, |
316f5878 RS |
13828 | { "4km", 0, ISA_MIPS32, CPU_MIPS32 }, |
13829 | { "4kp", 0, ISA_MIPS32, CPU_MIPS32 }, | |
e7af610e | 13830 | |
316f5878 RS |
13831 | /* MIPS 64 */ |
13832 | { "5kc", 0, ISA_MIPS64, CPU_MIPS64 }, | |
13833 | { "20kc", 0, ISA_MIPS64, CPU_MIPS64 }, | |
e7af610e | 13834 | |
c7a23324 | 13835 | /* Broadcom SB-1 CPU core */ |
316f5878 | 13836 | { "sb1", 0, ISA_MIPS64, CPU_SB1 }, |
e7af610e | 13837 | |
316f5878 RS |
13838 | /* End marker */ |
13839 | { NULL, 0, 0, 0 } | |
13840 | }; | |
e7af610e | 13841 | |
84ea6cf2 | 13842 | |
316f5878 RS |
13843 | /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL |
13844 | with a final "000" replaced by "k". Ignore case. | |
e7af610e | 13845 | |
316f5878 | 13846 | Note: this function is shared between GCC and GAS. */ |
c6c98b38 | 13847 | |
b34976b6 | 13848 | static bfd_boolean |
17a2f251 | 13849 | mips_strict_matching_cpu_name_p (const char *canonical, const char *given) |
316f5878 RS |
13850 | { |
13851 | while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical)) | |
13852 | given++, canonical++; | |
13853 | ||
13854 | return ((*given == 0 && *canonical == 0) | |
13855 | || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0)); | |
13856 | } | |
13857 | ||
13858 | ||
13859 | /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied | |
13860 | CPU name. We've traditionally allowed a lot of variation here. | |
13861 | ||
13862 | Note: this function is shared between GCC and GAS. */ | |
13863 | ||
b34976b6 | 13864 | static bfd_boolean |
17a2f251 | 13865 | mips_matching_cpu_name_p (const char *canonical, const char *given) |
316f5878 RS |
13866 | { |
13867 | /* First see if the name matches exactly, or with a final "000" | |
13868 | turned into "k". */ | |
13869 | if (mips_strict_matching_cpu_name_p (canonical, given)) | |
b34976b6 | 13870 | return TRUE; |
316f5878 RS |
13871 | |
13872 | /* If not, try comparing based on numerical designation alone. | |
13873 | See if GIVEN is an unadorned number, or 'r' followed by a number. */ | |
13874 | if (TOLOWER (*given) == 'r') | |
13875 | given++; | |
13876 | if (!ISDIGIT (*given)) | |
b34976b6 | 13877 | return FALSE; |
316f5878 RS |
13878 | |
13879 | /* Skip over some well-known prefixes in the canonical name, | |
13880 | hoping to find a number there too. */ | |
13881 | if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r') | |
13882 | canonical += 2; | |
13883 | else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm') | |
13884 | canonical += 2; | |
13885 | else if (TOLOWER (canonical[0]) == 'r') | |
13886 | canonical += 1; | |
13887 | ||
13888 | return mips_strict_matching_cpu_name_p (canonical, given); | |
13889 | } | |
13890 | ||
13891 | ||
13892 | /* Parse an option that takes the name of a processor as its argument. | |
13893 | OPTION is the name of the option and CPU_STRING is the argument. | |
13894 | Return the corresponding processor enumeration if the CPU_STRING is | |
13895 | recognized, otherwise report an error and return null. | |
13896 | ||
13897 | A similar function exists in GCC. */ | |
e7af610e NC |
13898 | |
13899 | static const struct mips_cpu_info * | |
17a2f251 | 13900 | mips_parse_cpu (const char *option, const char *cpu_string) |
e7af610e | 13901 | { |
316f5878 | 13902 | const struct mips_cpu_info *p; |
e7af610e | 13903 | |
316f5878 RS |
13904 | /* 'from-abi' selects the most compatible architecture for the given |
13905 | ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the | |
13906 | EABIs, we have to decide whether we're using the 32-bit or 64-bit | |
13907 | version. Look first at the -mgp options, if given, otherwise base | |
13908 | the choice on MIPS_DEFAULT_64BIT. | |
e7af610e | 13909 | |
316f5878 RS |
13910 | Treat NO_ABI like the EABIs. One reason to do this is that the |
13911 | plain 'mips' and 'mips64' configs have 'from-abi' as their default | |
13912 | architecture. This code picks MIPS I for 'mips' and MIPS III for | |
13913 | 'mips64', just as we did in the days before 'from-abi'. */ | |
13914 | if (strcasecmp (cpu_string, "from-abi") == 0) | |
13915 | { | |
13916 | if (ABI_NEEDS_32BIT_REGS (mips_abi)) | |
13917 | return mips_cpu_info_from_isa (ISA_MIPS1); | |
13918 | ||
13919 | if (ABI_NEEDS_64BIT_REGS (mips_abi)) | |
13920 | return mips_cpu_info_from_isa (ISA_MIPS3); | |
13921 | ||
13922 | if (file_mips_gp32 >= 0) | |
13923 | return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3); | |
13924 | ||
13925 | return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT | |
13926 | ? ISA_MIPS3 | |
13927 | : ISA_MIPS1); | |
13928 | } | |
13929 | ||
13930 | /* 'default' has traditionally been a no-op. Probably not very useful. */ | |
13931 | if (strcasecmp (cpu_string, "default") == 0) | |
13932 | return 0; | |
13933 | ||
13934 | for (p = mips_cpu_info_table; p->name != 0; p++) | |
13935 | if (mips_matching_cpu_name_p (p->name, cpu_string)) | |
13936 | return p; | |
13937 | ||
13938 | as_bad ("Bad value (%s) for %s", cpu_string, option); | |
13939 | return 0; | |
e7af610e NC |
13940 | } |
13941 | ||
316f5878 RS |
13942 | /* Return the canonical processor information for ISA (a member of the |
13943 | ISA_MIPS* enumeration). */ | |
13944 | ||
e7af610e | 13945 | static const struct mips_cpu_info * |
17a2f251 | 13946 | mips_cpu_info_from_isa (int isa) |
e7af610e NC |
13947 | { |
13948 | int i; | |
13949 | ||
13950 | for (i = 0; mips_cpu_info_table[i].name != NULL; i++) | |
13951 | if (mips_cpu_info_table[i].is_isa | |
316f5878 | 13952 | && isa == mips_cpu_info_table[i].isa) |
e7af610e NC |
13953 | return (&mips_cpu_info_table[i]); |
13954 | ||
e972090a | 13955 | return NULL; |
e7af610e | 13956 | } |
fef14a42 TS |
13957 | |
13958 | static const struct mips_cpu_info * | |
17a2f251 | 13959 | mips_cpu_info_from_arch (int arch) |
fef14a42 TS |
13960 | { |
13961 | int i; | |
13962 | ||
13963 | for (i = 0; mips_cpu_info_table[i].name != NULL; i++) | |
13964 | if (arch == mips_cpu_info_table[i].cpu) | |
13965 | return (&mips_cpu_info_table[i]); | |
13966 | ||
13967 | return NULL; | |
13968 | } | |
316f5878 RS |
13969 | \f |
13970 | static void | |
17a2f251 | 13971 | show (FILE *stream, const char *string, int *col_p, int *first_p) |
316f5878 RS |
13972 | { |
13973 | if (*first_p) | |
13974 | { | |
13975 | fprintf (stream, "%24s", ""); | |
13976 | *col_p = 24; | |
13977 | } | |
13978 | else | |
13979 | { | |
13980 | fprintf (stream, ", "); | |
13981 | *col_p += 2; | |
13982 | } | |
e7af610e | 13983 | |
316f5878 RS |
13984 | if (*col_p + strlen (string) > 72) |
13985 | { | |
13986 | fprintf (stream, "\n%24s", ""); | |
13987 | *col_p = 24; | |
13988 | } | |
13989 | ||
13990 | fprintf (stream, "%s", string); | |
13991 | *col_p += strlen (string); | |
13992 | ||
13993 | *first_p = 0; | |
13994 | } | |
13995 | ||
13996 | void | |
17a2f251 | 13997 | md_show_usage (FILE *stream) |
e7af610e | 13998 | { |
316f5878 RS |
13999 | int column, first; |
14000 | size_t i; | |
14001 | ||
14002 | fprintf (stream, _("\ | |
14003 | MIPS options:\n\ | |
316f5878 RS |
14004 | -EB generate big endian output\n\ |
14005 | -EL generate little endian output\n\ | |
14006 | -g, -g2 do not remove unneeded NOPs or swap branches\n\ | |
14007 | -G NUM allow referencing objects up to NUM bytes\n\ | |
14008 | implicitly with the gp register [default 8]\n")); | |
14009 | fprintf (stream, _("\ | |
14010 | -mips1 generate MIPS ISA I instructions\n\ | |
14011 | -mips2 generate MIPS ISA II instructions\n\ | |
14012 | -mips3 generate MIPS ISA III instructions\n\ | |
14013 | -mips4 generate MIPS ISA IV instructions\n\ | |
14014 | -mips5 generate MIPS ISA V instructions\n\ | |
14015 | -mips32 generate MIPS32 ISA instructions\n\ | |
af7ee8bf | 14016 | -mips32r2 generate MIPS32 release 2 ISA instructions\n\ |
316f5878 | 14017 | -mips64 generate MIPS64 ISA instructions\n\ |
5f74bc13 | 14018 | -mips64r2 generate MIPS64 release 2 ISA instructions\n\ |
316f5878 RS |
14019 | -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n")); |
14020 | ||
14021 | first = 1; | |
e7af610e NC |
14022 | |
14023 | for (i = 0; mips_cpu_info_table[i].name != NULL; i++) | |
316f5878 RS |
14024 | show (stream, mips_cpu_info_table[i].name, &column, &first); |
14025 | show (stream, "from-abi", &column, &first); | |
14026 | fputc ('\n', stream); | |
e7af610e | 14027 | |
316f5878 RS |
14028 | fprintf (stream, _("\ |
14029 | -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\ | |
14030 | -no-mCPU don't generate code specific to CPU.\n\ | |
14031 | For -mCPU and -no-mCPU, CPU must be one of:\n")); | |
14032 | ||
14033 | first = 1; | |
14034 | ||
14035 | show (stream, "3900", &column, &first); | |
14036 | show (stream, "4010", &column, &first); | |
14037 | show (stream, "4100", &column, &first); | |
14038 | show (stream, "4650", &column, &first); | |
14039 | fputc ('\n', stream); | |
14040 | ||
14041 | fprintf (stream, _("\ | |
14042 | -mips16 generate mips16 instructions\n\ | |
14043 | -no-mips16 do not generate mips16 instructions\n")); | |
14044 | fprintf (stream, _("\ | |
d766e8ec | 14045 | -mfix-vr4120 work around certain VR4120 errata\n\ |
316f5878 RS |
14046 | -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\ |
14047 | -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\ | |
14048 | -O0 remove unneeded NOPs, do not swap branches\n\ | |
14049 | -O remove unneeded NOPs and swap branches\n\ | |
316f5878 RS |
14050 | --[no-]construct-floats [dis]allow floating point values to be constructed\n\ |
14051 | --trap, --no-break trap exception on div by 0 and mult overflow\n\ | |
14052 | --break, --no-trap break exception on div by 0 and mult overflow\n")); | |
14053 | #ifdef OBJ_ELF | |
14054 | fprintf (stream, _("\ | |
14055 | -KPIC, -call_shared generate SVR4 position independent code\n\ | |
14056 | -non_shared do not generate position independent code\n\ | |
14057 | -xgot assume a 32 bit GOT\n\ | |
dcd410fe | 14058 | -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\ |
316f5878 RS |
14059 | -mabi=ABI create ABI conformant object file for:\n")); |
14060 | ||
14061 | first = 1; | |
14062 | ||
14063 | show (stream, "32", &column, &first); | |
14064 | show (stream, "o64", &column, &first); | |
14065 | show (stream, "n32", &column, &first); | |
14066 | show (stream, "64", &column, &first); | |
14067 | show (stream, "eabi", &column, &first); | |
14068 | ||
14069 | fputc ('\n', stream); | |
14070 | ||
14071 | fprintf (stream, _("\ | |
14072 | -32 create o32 ABI object file (default)\n\ | |
14073 | -n32 create n32 ABI object file\n\ | |
14074 | -64 create 64 ABI object file\n")); | |
14075 | #endif | |
e7af610e | 14076 | } |
14e777e0 KB |
14077 | |
14078 | enum dwarf2_format | |
17a2f251 | 14079 | mips_dwarf2_format (void) |
14e777e0 KB |
14080 | { |
14081 | if (mips_abi == N64_ABI) | |
1de5b6a1 AO |
14082 | { |
14083 | #ifdef TE_IRIX | |
14084 | return dwarf2_format_64bit_irix; | |
14085 | #else | |
14086 | return dwarf2_format_64bit; | |
14087 | #endif | |
14088 | } | |
14e777e0 KB |
14089 | else |
14090 | return dwarf2_format_32bit; | |
14091 | } | |
73369e65 EC |
14092 | |
14093 | int | |
14094 | mips_dwarf2_addr_size (void) | |
14095 | { | |
14096 | if (mips_abi == N64_ABI) | |
14097 | return 8; | |
73369e65 EC |
14098 | else |
14099 | return 4; | |
14100 | } |