]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* tc-mips.c -- assemble code for a MIPS chip. |
81912461 | 2 | Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, |
e7c604dd | 3 | 2003, 2004, 2005, 2006, 2007, 2008 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 | |
ec2655a6 | 13 | the Free Software Foundation; either version 3, or (at your option) |
252b5132 RH |
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 | |
4b4da160 NC |
23 | Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA |
24 | 02110-1301, USA. */ | |
252b5132 RH |
25 | |
26 | #include "as.h" | |
27 | #include "config.h" | |
28 | #include "subsegs.h" | |
3882b010 | 29 | #include "safe-ctype.h" |
252b5132 | 30 | |
252b5132 RH |
31 | #include "opcode/mips.h" |
32 | #include "itbl-ops.h" | |
c5dd6aab | 33 | #include "dwarf2dbg.h" |
5862107c | 34 | #include "dw2gencfi.h" |
252b5132 RH |
35 | |
36 | #ifdef DEBUG | |
37 | #define DBG(x) printf x | |
38 | #else | |
39 | #define DBG(x) | |
40 | #endif | |
41 | ||
42 | #ifdef OBJ_MAYBE_ELF | |
43 | /* Clean up namespace so we can include obj-elf.h too. */ | |
17a2f251 TS |
44 | static int mips_output_flavor (void); |
45 | static int mips_output_flavor (void) { return OUTPUT_FLAVOR; } | |
252b5132 RH |
46 | #undef OBJ_PROCESS_STAB |
47 | #undef OUTPUT_FLAVOR | |
48 | #undef S_GET_ALIGN | |
49 | #undef S_GET_SIZE | |
50 | #undef S_SET_ALIGN | |
51 | #undef S_SET_SIZE | |
252b5132 RH |
52 | #undef obj_frob_file |
53 | #undef obj_frob_file_after_relocs | |
54 | #undef obj_frob_symbol | |
55 | #undef obj_pop_insert | |
56 | #undef obj_sec_sym_ok_for_reloc | |
57 | #undef OBJ_COPY_SYMBOL_ATTRIBUTES | |
58 | ||
59 | #include "obj-elf.h" | |
60 | /* Fix any of them that we actually care about. */ | |
61 | #undef OUTPUT_FLAVOR | |
62 | #define OUTPUT_FLAVOR mips_output_flavor() | |
63 | #endif | |
64 | ||
65 | #if defined (OBJ_ELF) | |
66 | #include "elf/mips.h" | |
67 | #endif | |
68 | ||
69 | #ifndef ECOFF_DEBUGGING | |
70 | #define NO_ECOFF_DEBUGGING | |
71 | #define ECOFF_DEBUGGING 0 | |
72 | #endif | |
73 | ||
ecb4347a DJ |
74 | int mips_flag_mdebug = -1; |
75 | ||
dcd410fe RO |
76 | /* Control generation of .pdr sections. Off by default on IRIX: the native |
77 | linker doesn't know about and discards them, but relocations against them | |
78 | remain, leading to rld crashes. */ | |
79 | #ifdef TE_IRIX | |
80 | int mips_flag_pdr = FALSE; | |
81 | #else | |
82 | int mips_flag_pdr = TRUE; | |
83 | #endif | |
84 | ||
252b5132 RH |
85 | #include "ecoff.h" |
86 | ||
87 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
88 | static char *mips_regmask_frag; | |
89 | #endif | |
90 | ||
85b51719 | 91 | #define ZERO 0 |
741fe287 | 92 | #define ATREG 1 |
252b5132 RH |
93 | #define TREG 24 |
94 | #define PIC_CALL_REG 25 | |
95 | #define KT0 26 | |
96 | #define KT1 27 | |
97 | #define GP 28 | |
98 | #define SP 29 | |
99 | #define FP 30 | |
100 | #define RA 31 | |
101 | ||
102 | #define ILLEGAL_REG (32) | |
103 | ||
741fe287 MR |
104 | #define AT mips_opts.at |
105 | ||
252b5132 RH |
106 | /* Allow override of standard little-endian ECOFF format. */ |
107 | ||
108 | #ifndef ECOFF_LITTLE_FORMAT | |
109 | #define ECOFF_LITTLE_FORMAT "ecoff-littlemips" | |
110 | #endif | |
111 | ||
112 | extern int target_big_endian; | |
113 | ||
252b5132 | 114 | /* The name of the readonly data section. */ |
4d0d148d | 115 | #define RDATA_SECTION_NAME (OUTPUT_FLAVOR == bfd_target_ecoff_flavour \ |
252b5132 | 116 | ? ".rdata" \ |
056350c6 NC |
117 | : OUTPUT_FLAVOR == bfd_target_coff_flavour \ |
118 | ? ".rdata" \ | |
252b5132 RH |
119 | : OUTPUT_FLAVOR == bfd_target_elf_flavour \ |
120 | ? ".rodata" \ | |
121 | : (abort (), "")) | |
122 | ||
47e39b9d RS |
123 | /* Information about an instruction, including its format, operands |
124 | and fixups. */ | |
125 | struct mips_cl_insn | |
126 | { | |
127 | /* The opcode's entry in mips_opcodes or mips16_opcodes. */ | |
128 | const struct mips_opcode *insn_mo; | |
129 | ||
130 | /* True if this is a mips16 instruction and if we want the extended | |
131 | form of INSN_MO. */ | |
132 | bfd_boolean use_extend; | |
133 | ||
134 | /* The 16-bit extension instruction to use when USE_EXTEND is true. */ | |
135 | unsigned short extend; | |
136 | ||
137 | /* The 16-bit or 32-bit bitstring of the instruction itself. This is | |
138 | a copy of INSN_MO->match with the operands filled in. */ | |
139 | unsigned long insn_opcode; | |
140 | ||
141 | /* The frag that contains the instruction. */ | |
142 | struct frag *frag; | |
143 | ||
144 | /* The offset into FRAG of the first instruction byte. */ | |
145 | long where; | |
146 | ||
147 | /* The relocs associated with the instruction, if any. */ | |
148 | fixS *fixp[3]; | |
149 | ||
a38419a5 RS |
150 | /* True if this entry cannot be moved from its current position. */ |
151 | unsigned int fixed_p : 1; | |
47e39b9d | 152 | |
708587a4 | 153 | /* True if this instruction occurred in a .set noreorder block. */ |
47e39b9d RS |
154 | unsigned int noreorder_p : 1; |
155 | ||
2fa15973 RS |
156 | /* True for mips16 instructions that jump to an absolute address. */ |
157 | unsigned int mips16_absolute_jump_p : 1; | |
47e39b9d RS |
158 | }; |
159 | ||
a325df1d TS |
160 | /* The ABI to use. */ |
161 | enum mips_abi_level | |
162 | { | |
163 | NO_ABI = 0, | |
164 | O32_ABI, | |
165 | O64_ABI, | |
166 | N32_ABI, | |
167 | N64_ABI, | |
168 | EABI_ABI | |
169 | }; | |
170 | ||
171 | /* MIPS ABI we are using for this output file. */ | |
316f5878 | 172 | static enum mips_abi_level mips_abi = NO_ABI; |
a325df1d | 173 | |
143d77c5 EC |
174 | /* Whether or not we have code that can call pic code. */ |
175 | int mips_abicalls = FALSE; | |
176 | ||
aa6975fb ILT |
177 | /* Whether or not we have code which can be put into a shared |
178 | library. */ | |
179 | static bfd_boolean mips_in_shared = TRUE; | |
180 | ||
252b5132 RH |
181 | /* This is the set of options which may be modified by the .set |
182 | pseudo-op. We use a struct so that .set push and .set pop are more | |
183 | reliable. */ | |
184 | ||
e972090a NC |
185 | struct mips_set_options |
186 | { | |
252b5132 RH |
187 | /* MIPS ISA (Instruction Set Architecture) level. This is set to -1 |
188 | if it has not been initialized. Changed by `.set mipsN', and the | |
189 | -mipsN command line option, and the default CPU. */ | |
190 | int isa; | |
1f25f5d3 CD |
191 | /* Enabled Application Specific Extensions (ASEs). These are set to -1 |
192 | if they have not been initialized. Changed by `.set <asename>', by | |
193 | command line options, and based on the default architecture. */ | |
194 | int ase_mips3d; | |
deec1734 | 195 | int ase_mdmx; |
e16bfa71 | 196 | int ase_smartmips; |
74cd071d | 197 | int ase_dsp; |
8b082fb1 | 198 | int ase_dspr2; |
ef2e4d86 | 199 | int ase_mt; |
252b5132 RH |
200 | /* Whether we are assembling for the mips16 processor. 0 if we are |
201 | not, 1 if we are, and -1 if the value has not been initialized. | |
202 | Changed by `.set mips16' and `.set nomips16', and the -mips16 and | |
203 | -nomips16 command line options, and the default CPU. */ | |
204 | int mips16; | |
205 | /* Non-zero if we should not reorder instructions. Changed by `.set | |
206 | reorder' and `.set noreorder'. */ | |
207 | int noreorder; | |
741fe287 MR |
208 | /* Non-zero if we should not permit the register designated "assembler |
209 | temporary" to be used in instructions. The value is the register | |
210 | number, normally $at ($1). Changed by `.set at=REG', `.set noat' | |
211 | (same as `.set at=$0') and `.set at' (same as `.set at=$1'). */ | |
212 | unsigned int at; | |
252b5132 RH |
213 | /* Non-zero if we should warn when a macro instruction expands into |
214 | more than one machine instruction. Changed by `.set nomacro' and | |
215 | `.set macro'. */ | |
216 | int warn_about_macros; | |
217 | /* Non-zero if we should not move instructions. Changed by `.set | |
218 | move', `.set volatile', `.set nomove', and `.set novolatile'. */ | |
219 | int nomove; | |
220 | /* Non-zero if we should not optimize branches by moving the target | |
221 | of the branch into the delay slot. Actually, we don't perform | |
222 | this optimization anyhow. Changed by `.set bopt' and `.set | |
223 | nobopt'. */ | |
224 | int nobopt; | |
225 | /* Non-zero if we should not autoextend mips16 instructions. | |
226 | Changed by `.set autoextend' and `.set noautoextend'. */ | |
227 | int noautoextend; | |
a325df1d TS |
228 | /* Restrict general purpose registers and floating point registers |
229 | to 32 bit. This is initially determined when -mgp32 or -mfp32 | |
230 | is passed but can changed if the assembler code uses .set mipsN. */ | |
231 | int gp32; | |
232 | int fp32; | |
fef14a42 TS |
233 | /* MIPS architecture (CPU) type. Changed by .set arch=FOO, the -march |
234 | command line option, and the default CPU. */ | |
235 | int arch; | |
aed1a261 RS |
236 | /* True if ".set sym32" is in effect. */ |
237 | bfd_boolean sym32; | |
037b32b9 AN |
238 | /* True if floating-point operations are not allowed. Changed by .set |
239 | softfloat or .set hardfloat, by command line options -msoft-float or | |
240 | -mhard-float. The default is false. */ | |
241 | bfd_boolean soft_float; | |
242 | ||
243 | /* True if only single-precision floating-point operations are allowed. | |
244 | Changed by .set singlefloat or .set doublefloat, command-line options | |
245 | -msingle-float or -mdouble-float. The default is false. */ | |
246 | bfd_boolean single_float; | |
252b5132 RH |
247 | }; |
248 | ||
037b32b9 AN |
249 | /* This is the struct we use to hold the current set of options. Note |
250 | that we must set the isa field to ISA_UNKNOWN and the ASE fields to | |
251 | -1 to indicate that they have not been initialized. */ | |
252 | ||
a325df1d | 253 | /* True if -mgp32 was passed. */ |
a8e8e863 | 254 | static int file_mips_gp32 = -1; |
a325df1d TS |
255 | |
256 | /* True if -mfp32 was passed. */ | |
a8e8e863 | 257 | static int file_mips_fp32 = -1; |
a325df1d | 258 | |
037b32b9 AN |
259 | /* 1 if -msoft-float, 0 if -mhard-float. The default is 0. */ |
260 | static int file_mips_soft_float = 0; | |
261 | ||
262 | /* 1 if -msingle-float, 0 if -mdouble-float. The default is 0. */ | |
263 | static int file_mips_single_float = 0; | |
252b5132 | 264 | |
e972090a NC |
265 | static struct mips_set_options mips_opts = |
266 | { | |
037b32b9 AN |
267 | /* isa */ ISA_UNKNOWN, /* ase_mips3d */ -1, /* ase_mdmx */ -1, |
268 | /* ase_smartmips */ 0, /* ase_dsp */ -1, /* ase_dspr2 */ -1, /* ase_mt */ -1, | |
269 | /* mips16 */ -1, /* noreorder */ 0, /* at */ ATREG, | |
270 | /* warn_about_macros */ 0, /* nomove */ 0, /* nobopt */ 0, | |
271 | /* noautoextend */ 0, /* gp32 */ 0, /* fp32 */ 0, /* arch */ CPU_UNKNOWN, | |
272 | /* sym32 */ FALSE, /* soft_float */ FALSE, /* single_float */ FALSE | |
e7af610e | 273 | }; |
252b5132 RH |
274 | |
275 | /* These variables are filled in with the masks of registers used. | |
276 | The object format code reads them and puts them in the appropriate | |
277 | place. */ | |
278 | unsigned long mips_gprmask; | |
279 | unsigned long mips_cprmask[4]; | |
280 | ||
281 | /* MIPS ISA we are using for this output file. */ | |
e7af610e | 282 | static int file_mips_isa = ISA_UNKNOWN; |
252b5132 | 283 | |
a4672219 TS |
284 | /* True if -mips16 was passed or implied by arguments passed on the |
285 | command line (e.g., by -march). */ | |
286 | static int file_ase_mips16; | |
287 | ||
3994f87e TS |
288 | #define ISA_SUPPORTS_MIPS16E (mips_opts.isa == ISA_MIPS32 \ |
289 | || mips_opts.isa == ISA_MIPS32R2 \ | |
290 | || mips_opts.isa == ISA_MIPS64 \ | |
291 | || mips_opts.isa == ISA_MIPS64R2) | |
292 | ||
1f25f5d3 CD |
293 | /* True if -mips3d was passed or implied by arguments passed on the |
294 | command line (e.g., by -march). */ | |
295 | static int file_ase_mips3d; | |
296 | ||
deec1734 CD |
297 | /* True if -mdmx was passed or implied by arguments passed on the |
298 | command line (e.g., by -march). */ | |
299 | static int file_ase_mdmx; | |
300 | ||
e16bfa71 TS |
301 | /* True if -msmartmips was passed or implied by arguments passed on the |
302 | command line (e.g., by -march). */ | |
303 | static int file_ase_smartmips; | |
304 | ||
ad3fea08 TS |
305 | #define ISA_SUPPORTS_SMARTMIPS (mips_opts.isa == ISA_MIPS32 \ |
306 | || mips_opts.isa == ISA_MIPS32R2) | |
e16bfa71 | 307 | |
74cd071d CF |
308 | /* True if -mdsp was passed or implied by arguments passed on the |
309 | command line (e.g., by -march). */ | |
310 | static int file_ase_dsp; | |
311 | ||
ad3fea08 TS |
312 | #define ISA_SUPPORTS_DSP_ASE (mips_opts.isa == ISA_MIPS32R2 \ |
313 | || mips_opts.isa == ISA_MIPS64R2) | |
314 | ||
65263ce3 TS |
315 | #define ISA_SUPPORTS_DSP64_ASE (mips_opts.isa == ISA_MIPS64R2) |
316 | ||
8b082fb1 TS |
317 | /* True if -mdspr2 was passed or implied by arguments passed on the |
318 | command line (e.g., by -march). */ | |
319 | static int file_ase_dspr2; | |
320 | ||
321 | #define ISA_SUPPORTS_DSPR2_ASE (mips_opts.isa == ISA_MIPS32R2 \ | |
322 | || mips_opts.isa == ISA_MIPS64R2) | |
323 | ||
ef2e4d86 CF |
324 | /* True if -mmt was passed or implied by arguments passed on the |
325 | command line (e.g., by -march). */ | |
326 | static int file_ase_mt; | |
327 | ||
ad3fea08 TS |
328 | #define ISA_SUPPORTS_MT_ASE (mips_opts.isa == ISA_MIPS32R2 \ |
329 | || mips_opts.isa == ISA_MIPS64R2) | |
330 | ||
ec68c924 | 331 | /* The argument of the -march= flag. The architecture we are assembling. */ |
fef14a42 | 332 | static int file_mips_arch = CPU_UNKNOWN; |
316f5878 | 333 | static const char *mips_arch_string; |
ec68c924 EC |
334 | |
335 | /* The argument of the -mtune= flag. The architecture for which we | |
336 | are optimizing. */ | |
337 | static int mips_tune = CPU_UNKNOWN; | |
316f5878 | 338 | static const char *mips_tune_string; |
ec68c924 | 339 | |
316f5878 | 340 | /* True when generating 32-bit code for a 64-bit processor. */ |
252b5132 RH |
341 | static int mips_32bitmode = 0; |
342 | ||
316f5878 RS |
343 | /* True if the given ABI requires 32-bit registers. */ |
344 | #define ABI_NEEDS_32BIT_REGS(ABI) ((ABI) == O32_ABI) | |
345 | ||
346 | /* Likewise 64-bit registers. */ | |
707bfff6 TS |
347 | #define ABI_NEEDS_64BIT_REGS(ABI) \ |
348 | ((ABI) == N32_ABI \ | |
349 | || (ABI) == N64_ABI \ | |
316f5878 RS |
350 | || (ABI) == O64_ABI) |
351 | ||
ad3fea08 | 352 | /* Return true if ISA supports 64 bit wide gp registers. */ |
707bfff6 TS |
353 | #define ISA_HAS_64BIT_REGS(ISA) \ |
354 | ((ISA) == ISA_MIPS3 \ | |
355 | || (ISA) == ISA_MIPS4 \ | |
356 | || (ISA) == ISA_MIPS5 \ | |
357 | || (ISA) == ISA_MIPS64 \ | |
358 | || (ISA) == ISA_MIPS64R2) | |
9ce8a5dd | 359 | |
ad3fea08 TS |
360 | /* Return true if ISA supports 64 bit wide float registers. */ |
361 | #define ISA_HAS_64BIT_FPRS(ISA) \ | |
362 | ((ISA) == ISA_MIPS3 \ | |
363 | || (ISA) == ISA_MIPS4 \ | |
364 | || (ISA) == ISA_MIPS5 \ | |
365 | || (ISA) == ISA_MIPS32R2 \ | |
366 | || (ISA) == ISA_MIPS64 \ | |
367 | || (ISA) == ISA_MIPS64R2) | |
368 | ||
af7ee8bf CD |
369 | /* Return true if ISA supports 64-bit right rotate (dror et al.) |
370 | instructions. */ | |
707bfff6 TS |
371 | #define ISA_HAS_DROR(ISA) \ |
372 | ((ISA) == ISA_MIPS64R2) | |
af7ee8bf CD |
373 | |
374 | /* Return true if ISA supports 32-bit right rotate (ror et al.) | |
375 | instructions. */ | |
707bfff6 TS |
376 | #define ISA_HAS_ROR(ISA) \ |
377 | ((ISA) == ISA_MIPS32R2 \ | |
378 | || (ISA) == ISA_MIPS64R2 \ | |
379 | || mips_opts.ase_smartmips) | |
380 | ||
7455baf8 TS |
381 | /* Return true if ISA supports single-precision floats in odd registers. */ |
382 | #define ISA_HAS_ODD_SINGLE_FPR(ISA) \ | |
383 | ((ISA) == ISA_MIPS32 \ | |
384 | || (ISA) == ISA_MIPS32R2 \ | |
385 | || (ISA) == ISA_MIPS64 \ | |
386 | || (ISA) == ISA_MIPS64R2) | |
af7ee8bf | 387 | |
ad3fea08 TS |
388 | /* Return true if ISA supports move to/from high part of a 64-bit |
389 | floating-point register. */ | |
390 | #define ISA_HAS_MXHC1(ISA) \ | |
391 | ((ISA) == ISA_MIPS32R2 \ | |
392 | || (ISA) == ISA_MIPS64R2) | |
393 | ||
e013f690 | 394 | #define HAVE_32BIT_GPRS \ |
ad3fea08 | 395 | (mips_opts.gp32 || !ISA_HAS_64BIT_REGS (mips_opts.isa)) |
ca4e0257 | 396 | |
e013f690 | 397 | #define HAVE_32BIT_FPRS \ |
ad3fea08 | 398 | (mips_opts.fp32 || !ISA_HAS_64BIT_FPRS (mips_opts.isa)) |
ca4e0257 | 399 | |
ad3fea08 TS |
400 | #define HAVE_64BIT_GPRS (!HAVE_32BIT_GPRS) |
401 | #define HAVE_64BIT_FPRS (!HAVE_32BIT_FPRS) | |
ca4e0257 | 402 | |
316f5878 | 403 | #define HAVE_NEWABI (mips_abi == N32_ABI || mips_abi == N64_ABI) |
e013f690 | 404 | |
316f5878 | 405 | #define HAVE_64BIT_OBJECTS (mips_abi == N64_ABI) |
e013f690 | 406 | |
3b91255e RS |
407 | /* True if relocations are stored in-place. */ |
408 | #define HAVE_IN_PLACE_ADDENDS (!HAVE_NEWABI) | |
409 | ||
aed1a261 RS |
410 | /* The ABI-derived address size. */ |
411 | #define HAVE_64BIT_ADDRESSES \ | |
412 | (HAVE_64BIT_GPRS && (mips_abi == EABI_ABI || mips_abi == N64_ABI)) | |
413 | #define HAVE_32BIT_ADDRESSES (!HAVE_64BIT_ADDRESSES) | |
e013f690 | 414 | |
aed1a261 RS |
415 | /* The size of symbolic constants (i.e., expressions of the form |
416 | "SYMBOL" or "SYMBOL + OFFSET"). */ | |
417 | #define HAVE_32BIT_SYMBOLS \ | |
418 | (HAVE_32BIT_ADDRESSES || !HAVE_64BIT_OBJECTS || mips_opts.sym32) | |
419 | #define HAVE_64BIT_SYMBOLS (!HAVE_32BIT_SYMBOLS) | |
ca4e0257 | 420 | |
b7c7d6c1 TS |
421 | /* Addresses are loaded in different ways, depending on the address size |
422 | in use. The n32 ABI Documentation also mandates the use of additions | |
423 | with overflow checking, but existing implementations don't follow it. */ | |
f899b4b8 | 424 | #define ADDRESS_ADD_INSN \ |
b7c7d6c1 | 425 | (HAVE_32BIT_ADDRESSES ? "addu" : "daddu") |
f899b4b8 TS |
426 | |
427 | #define ADDRESS_ADDI_INSN \ | |
b7c7d6c1 | 428 | (HAVE_32BIT_ADDRESSES ? "addiu" : "daddiu") |
f899b4b8 TS |
429 | |
430 | #define ADDRESS_LOAD_INSN \ | |
431 | (HAVE_32BIT_ADDRESSES ? "lw" : "ld") | |
432 | ||
433 | #define ADDRESS_STORE_INSN \ | |
434 | (HAVE_32BIT_ADDRESSES ? "sw" : "sd") | |
435 | ||
a4672219 | 436 | /* Return true if the given CPU supports the MIPS16 ASE. */ |
3396de36 TS |
437 | #define CPU_HAS_MIPS16(cpu) \ |
438 | (strncmp (TARGET_CPU, "mips16", sizeof ("mips16") - 1) == 0 \ | |
439 | || strncmp (TARGET_CANONICAL, "mips-lsi-elf", sizeof ("mips-lsi-elf") - 1) == 0) | |
a4672219 | 440 | |
60b63b72 RS |
441 | /* True if CPU has a dror instruction. */ |
442 | #define CPU_HAS_DROR(CPU) ((CPU) == CPU_VR5400 || (CPU) == CPU_VR5500) | |
443 | ||
444 | /* True if CPU has a ror instruction. */ | |
445 | #define CPU_HAS_ROR(CPU) CPU_HAS_DROR (CPU) | |
446 | ||
dd3cbb7e NC |
447 | /* True if CPU has seq/sne and seqi/snei instructions. */ |
448 | #define CPU_HAS_SEQ(CPU) ((CPU) == CPU_OCTEON) | |
449 | ||
b19e8a9b AN |
450 | /* True if CPU does not implement the all the coprocessor insns. For these |
451 | CPUs only those COP insns are accepted that are explicitly marked to be | |
452 | available on the CPU. ISA membership for COP insns is ignored. */ | |
453 | #define NO_ISA_COP(CPU) ((CPU) == CPU_OCTEON) | |
454 | ||
c8978940 CD |
455 | /* True if mflo and mfhi can be immediately followed by instructions |
456 | which write to the HI and LO registers. | |
457 | ||
458 | According to MIPS specifications, MIPS ISAs I, II, and III need | |
459 | (at least) two instructions between the reads of HI/LO and | |
460 | instructions which write them, and later ISAs do not. Contradicting | |
461 | the MIPS specifications, some MIPS IV processor user manuals (e.g. | |
462 | the UM for the NEC Vr5000) document needing the instructions between | |
463 | HI/LO reads and writes, as well. Therefore, we declare only MIPS32, | |
464 | MIPS64 and later ISAs to have the interlocks, plus any specific | |
465 | earlier-ISA CPUs for which CPU documentation declares that the | |
466 | instructions are really interlocked. */ | |
467 | #define hilo_interlocks \ | |
468 | (mips_opts.isa == ISA_MIPS32 \ | |
469 | || mips_opts.isa == ISA_MIPS32R2 \ | |
470 | || mips_opts.isa == ISA_MIPS64 \ | |
471 | || mips_opts.isa == ISA_MIPS64R2 \ | |
472 | || mips_opts.arch == CPU_R4010 \ | |
473 | || mips_opts.arch == CPU_R10000 \ | |
474 | || mips_opts.arch == CPU_R12000 \ | |
475 | || mips_opts.arch == CPU_RM7000 \ | |
c8978940 CD |
476 | || mips_opts.arch == CPU_VR5500 \ |
477 | ) | |
252b5132 RH |
478 | |
479 | /* Whether the processor uses hardware interlocks to protect reads | |
81912461 ILT |
480 | from the GPRs after they are loaded from memory, and thus does not |
481 | require nops to be inserted. This applies to instructions marked | |
482 | INSN_LOAD_MEMORY_DELAY. These nops are only required at MIPS ISA | |
483 | level I. */ | |
252b5132 | 484 | #define gpr_interlocks \ |
e7af610e | 485 | (mips_opts.isa != ISA_MIPS1 \ |
fef14a42 | 486 | || mips_opts.arch == CPU_R3900) |
252b5132 | 487 | |
81912461 ILT |
488 | /* Whether the processor uses hardware interlocks to avoid delays |
489 | required by coprocessor instructions, and thus does not require | |
490 | nops to be inserted. This applies to instructions marked | |
491 | INSN_LOAD_COPROC_DELAY, INSN_COPROC_MOVE_DELAY, and to delays | |
492 | between instructions marked INSN_WRITE_COND_CODE and ones marked | |
493 | INSN_READ_COND_CODE. These nops are only required at MIPS ISA | |
494 | levels I, II, and III. */ | |
bdaaa2e1 | 495 | /* Itbl support may require additional care here. */ |
81912461 ILT |
496 | #define cop_interlocks \ |
497 | ((mips_opts.isa != ISA_MIPS1 \ | |
498 | && mips_opts.isa != ISA_MIPS2 \ | |
499 | && mips_opts.isa != ISA_MIPS3) \ | |
500 | || mips_opts.arch == CPU_R4300 \ | |
81912461 ILT |
501 | ) |
502 | ||
503 | /* Whether the processor uses hardware interlocks to protect reads | |
504 | from coprocessor registers after they are loaded from memory, and | |
505 | thus does not require nops to be inserted. This applies to | |
506 | instructions marked INSN_COPROC_MEMORY_DELAY. These nops are only | |
507 | requires at MIPS ISA level I. */ | |
508 | #define cop_mem_interlocks (mips_opts.isa != ISA_MIPS1) | |
252b5132 | 509 | |
6b76fefe CM |
510 | /* Is this a mfhi or mflo instruction? */ |
511 | #define MF_HILO_INSN(PINFO) \ | |
b19e8a9b AN |
512 | ((PINFO & INSN_READ_HI) || (PINFO & INSN_READ_LO)) |
513 | ||
514 | /* Returns true for a (non floating-point) coprocessor instruction. Reading | |
515 | or writing the condition code is only possible on the coprocessors and | |
516 | these insns are not marked with INSN_COP. Thus for these insns use the | |
517 | condition-code flags unless this is the floating-point coprocessor. */ | |
518 | #define COP_INSN(PINFO) \ | |
519 | (PINFO != INSN_MACRO \ | |
520 | && (((PINFO) & INSN_COP) \ | |
521 | || ((PINFO) & (INSN_READ_COND_CODE | INSN_WRITE_COND_CODE) \ | |
522 | && ((PINFO) & (FP_S | FP_D)) == 0))) | |
6b76fefe | 523 | |
252b5132 RH |
524 | /* MIPS PIC level. */ |
525 | ||
a161fe53 | 526 | enum mips_pic_level mips_pic; |
252b5132 | 527 | |
c9914766 | 528 | /* 1 if we should generate 32 bit offsets from the $gp register in |
252b5132 | 529 | SVR4_PIC mode. Currently has no meaning in other modes. */ |
c9914766 | 530 | static int mips_big_got = 0; |
252b5132 RH |
531 | |
532 | /* 1 if trap instructions should used for overflow rather than break | |
533 | instructions. */ | |
c9914766 | 534 | static int mips_trap = 0; |
252b5132 | 535 | |
119d663a | 536 | /* 1 if double width floating point constants should not be constructed |
b6ff326e | 537 | by assembling two single width halves into two single width floating |
119d663a NC |
538 | point registers which just happen to alias the double width destination |
539 | register. On some architectures this aliasing can be disabled by a bit | |
d547a75e | 540 | in the status register, and the setting of this bit cannot be determined |
119d663a NC |
541 | automatically at assemble time. */ |
542 | static int mips_disable_float_construction; | |
543 | ||
252b5132 RH |
544 | /* Non-zero if any .set noreorder directives were used. */ |
545 | ||
546 | static int mips_any_noreorder; | |
547 | ||
6b76fefe CM |
548 | /* Non-zero if nops should be inserted when the register referenced in |
549 | an mfhi/mflo instruction is read in the next two instructions. */ | |
550 | static int mips_7000_hilo_fix; | |
551 | ||
02ffd3e4 | 552 | /* The size of objects in the small data section. */ |
156c2f8b | 553 | static unsigned int g_switch_value = 8; |
252b5132 RH |
554 | /* Whether the -G option was used. */ |
555 | static int g_switch_seen = 0; | |
556 | ||
557 | #define N_RMASK 0xc4 | |
558 | #define N_VFP 0xd4 | |
559 | ||
560 | /* If we can determine in advance that GP optimization won't be | |
561 | possible, we can skip the relaxation stuff that tries to produce | |
562 | GP-relative references. This makes delay slot optimization work | |
563 | better. | |
564 | ||
565 | This function can only provide a guess, but it seems to work for | |
fba2b7f9 GK |
566 | gcc output. It needs to guess right for gcc, otherwise gcc |
567 | will put what it thinks is a GP-relative instruction in a branch | |
568 | delay slot. | |
252b5132 RH |
569 | |
570 | I don't know if a fix is needed for the SVR4_PIC mode. I've only | |
571 | fixed it for the non-PIC mode. KR 95/04/07 */ | |
17a2f251 | 572 | static int nopic_need_relax (symbolS *, int); |
252b5132 RH |
573 | |
574 | /* handle of the OPCODE hash table */ | |
575 | static struct hash_control *op_hash = NULL; | |
576 | ||
577 | /* The opcode hash table we use for the mips16. */ | |
578 | static struct hash_control *mips16_op_hash = NULL; | |
579 | ||
580 | /* This array holds the chars that always start a comment. If the | |
581 | pre-processor is disabled, these aren't very useful */ | |
582 | const char comment_chars[] = "#"; | |
583 | ||
584 | /* This array holds the chars that only start a comment at the beginning of | |
585 | a line. If the line seems to have the form '# 123 filename' | |
586 | .line and .file directives will appear in the pre-processed output */ | |
587 | /* Note that input_file.c hand checks for '#' at the beginning of the | |
588 | first line of the input file. This is because the compiler outputs | |
bdaaa2e1 | 589 | #NO_APP at the beginning of its output. */ |
252b5132 RH |
590 | /* Also note that C style comments are always supported. */ |
591 | const char line_comment_chars[] = "#"; | |
592 | ||
bdaaa2e1 | 593 | /* This array holds machine specific line separator characters. */ |
63a0b638 | 594 | const char line_separator_chars[] = ";"; |
252b5132 RH |
595 | |
596 | /* Chars that can be used to separate mant from exp in floating point nums */ | |
597 | const char EXP_CHARS[] = "eE"; | |
598 | ||
599 | /* Chars that mean this number is a floating point constant */ | |
600 | /* As in 0f12.456 */ | |
601 | /* or 0d1.2345e12 */ | |
602 | const char FLT_CHARS[] = "rRsSfFdDxXpP"; | |
603 | ||
604 | /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be | |
605 | changed in read.c . Ideally it shouldn't have to know about it at all, | |
606 | but nothing is ideal around here. | |
607 | */ | |
608 | ||
609 | static char *insn_error; | |
610 | ||
611 | static int auto_align = 1; | |
612 | ||
613 | /* When outputting SVR4 PIC code, the assembler needs to know the | |
614 | offset in the stack frame from which to restore the $gp register. | |
615 | This is set by the .cprestore pseudo-op, and saved in this | |
616 | variable. */ | |
617 | static offsetT mips_cprestore_offset = -1; | |
618 | ||
67c1ffbe | 619 | /* Similar for NewABI PIC code, where $gp is callee-saved. NewABI has some |
6478892d | 620 | more optimizations, it can use a register value instead of a memory-saved |
956cd1d6 | 621 | offset and even an other register than $gp as global pointer. */ |
6478892d TS |
622 | static offsetT mips_cpreturn_offset = -1; |
623 | static int mips_cpreturn_register = -1; | |
624 | static int mips_gp_register = GP; | |
def2e0dd | 625 | static int mips_gprel_offset = 0; |
6478892d | 626 | |
7a621144 DJ |
627 | /* Whether mips_cprestore_offset has been set in the current function |
628 | (or whether it has already been warned about, if not). */ | |
629 | static int mips_cprestore_valid = 0; | |
630 | ||
252b5132 RH |
631 | /* This is the register which holds the stack frame, as set by the |
632 | .frame pseudo-op. This is needed to implement .cprestore. */ | |
633 | static int mips_frame_reg = SP; | |
634 | ||
7a621144 DJ |
635 | /* Whether mips_frame_reg has been set in the current function |
636 | (or whether it has already been warned about, if not). */ | |
637 | static int mips_frame_reg_valid = 0; | |
638 | ||
252b5132 RH |
639 | /* To output NOP instructions correctly, we need to keep information |
640 | about the previous two instructions. */ | |
641 | ||
642 | /* Whether we are optimizing. The default value of 2 means to remove | |
643 | unneeded NOPs and swap branch instructions when possible. A value | |
644 | of 1 means to not swap branches. A value of 0 means to always | |
645 | insert NOPs. */ | |
646 | static int mips_optimize = 2; | |
647 | ||
648 | /* Debugging level. -g sets this to 2. -gN sets this to N. -g0 is | |
649 | equivalent to seeing no -g option at all. */ | |
650 | static int mips_debug = 0; | |
651 | ||
7d8e00cf RS |
652 | /* The maximum number of NOPs needed to avoid the VR4130 mflo/mfhi errata. */ |
653 | #define MAX_VR4130_NOPS 4 | |
654 | ||
655 | /* The maximum number of NOPs needed to fill delay slots. */ | |
656 | #define MAX_DELAY_NOPS 2 | |
657 | ||
658 | /* The maximum number of NOPs needed for any purpose. */ | |
659 | #define MAX_NOPS 4 | |
71400594 RS |
660 | |
661 | /* A list of previous instructions, with index 0 being the most recent. | |
662 | We need to look back MAX_NOPS instructions when filling delay slots | |
663 | or working around processor errata. We need to look back one | |
664 | instruction further if we're thinking about using history[0] to | |
665 | fill a branch delay slot. */ | |
666 | static struct mips_cl_insn history[1 + MAX_NOPS]; | |
252b5132 | 667 | |
1e915849 RS |
668 | /* Nop instructions used by emit_nop. */ |
669 | static struct mips_cl_insn nop_insn, mips16_nop_insn; | |
670 | ||
671 | /* The appropriate nop for the current mode. */ | |
672 | #define NOP_INSN (mips_opts.mips16 ? &mips16_nop_insn : &nop_insn) | |
252b5132 | 673 | |
252b5132 RH |
674 | /* If this is set, it points to a frag holding nop instructions which |
675 | were inserted before the start of a noreorder section. If those | |
676 | nops turn out to be unnecessary, the size of the frag can be | |
677 | decreased. */ | |
678 | static fragS *prev_nop_frag; | |
679 | ||
680 | /* The number of nop instructions we created in prev_nop_frag. */ | |
681 | static int prev_nop_frag_holds; | |
682 | ||
683 | /* The number of nop instructions that we know we need in | |
bdaaa2e1 | 684 | prev_nop_frag. */ |
252b5132 RH |
685 | static int prev_nop_frag_required; |
686 | ||
687 | /* The number of instructions we've seen since prev_nop_frag. */ | |
688 | static int prev_nop_frag_since; | |
689 | ||
690 | /* For ECOFF and ELF, relocations against symbols are done in two | |
691 | parts, with a HI relocation and a LO relocation. Each relocation | |
692 | has only 16 bits of space to store an addend. This means that in | |
693 | order for the linker to handle carries correctly, it must be able | |
694 | to locate both the HI and the LO relocation. This means that the | |
695 | relocations must appear in order in the relocation table. | |
696 | ||
697 | In order to implement this, we keep track of each unmatched HI | |
698 | relocation. We then sort them so that they immediately precede the | |
bdaaa2e1 | 699 | corresponding LO relocation. */ |
252b5132 | 700 | |
e972090a NC |
701 | struct mips_hi_fixup |
702 | { | |
252b5132 RH |
703 | /* Next HI fixup. */ |
704 | struct mips_hi_fixup *next; | |
705 | /* This fixup. */ | |
706 | fixS *fixp; | |
707 | /* The section this fixup is in. */ | |
708 | segT seg; | |
709 | }; | |
710 | ||
711 | /* The list of unmatched HI relocs. */ | |
712 | ||
713 | static struct mips_hi_fixup *mips_hi_fixup_list; | |
714 | ||
64bdfcaf RS |
715 | /* The frag containing the last explicit relocation operator. |
716 | Null if explicit relocations have not been used. */ | |
717 | ||
718 | static fragS *prev_reloc_op_frag; | |
719 | ||
252b5132 RH |
720 | /* Map normal MIPS register numbers to mips16 register numbers. */ |
721 | ||
722 | #define X ILLEGAL_REG | |
e972090a NC |
723 | static const int mips32_to_16_reg_map[] = |
724 | { | |
252b5132 RH |
725 | X, X, 2, 3, 4, 5, 6, 7, |
726 | X, X, X, X, X, X, X, X, | |
727 | 0, 1, X, X, X, X, X, X, | |
728 | X, X, X, X, X, X, X, X | |
729 | }; | |
730 | #undef X | |
731 | ||
732 | /* Map mips16 register numbers to normal MIPS register numbers. */ | |
733 | ||
e972090a NC |
734 | static const unsigned int mips16_to_32_reg_map[] = |
735 | { | |
252b5132 RH |
736 | 16, 17, 2, 3, 4, 5, 6, 7 |
737 | }; | |
60b63b72 | 738 | |
71400594 RS |
739 | /* Classifies the kind of instructions we're interested in when |
740 | implementing -mfix-vr4120. */ | |
741 | enum fix_vr4120_class { | |
742 | FIX_VR4120_MACC, | |
743 | FIX_VR4120_DMACC, | |
744 | FIX_VR4120_MULT, | |
745 | FIX_VR4120_DMULT, | |
746 | FIX_VR4120_DIV, | |
747 | FIX_VR4120_MTHILO, | |
748 | NUM_FIX_VR4120_CLASSES | |
749 | }; | |
750 | ||
751 | /* Given two FIX_VR4120_* values X and Y, bit Y of element X is set if | |
752 | there must be at least one other instruction between an instruction | |
753 | of type X and an instruction of type Y. */ | |
754 | static unsigned int vr4120_conflicts[NUM_FIX_VR4120_CLASSES]; | |
755 | ||
756 | /* True if -mfix-vr4120 is in force. */ | |
d766e8ec | 757 | static int mips_fix_vr4120; |
4a6a3df4 | 758 | |
7d8e00cf RS |
759 | /* ...likewise -mfix-vr4130. */ |
760 | static int mips_fix_vr4130; | |
761 | ||
4a6a3df4 AO |
762 | /* We don't relax branches by default, since this causes us to expand |
763 | `la .l2 - .l1' if there's a branch between .l1 and .l2, because we | |
764 | fail to compute the offset before expanding the macro to the most | |
765 | efficient expansion. */ | |
766 | ||
767 | static int mips_relax_branch; | |
252b5132 | 768 | \f |
4d7206a2 RS |
769 | /* The expansion of many macros depends on the type of symbol that |
770 | they refer to. For example, when generating position-dependent code, | |
771 | a macro that refers to a symbol may have two different expansions, | |
772 | one which uses GP-relative addresses and one which uses absolute | |
773 | addresses. When generating SVR4-style PIC, a macro may have | |
774 | different expansions for local and global symbols. | |
775 | ||
776 | We handle these situations by generating both sequences and putting | |
777 | them in variant frags. In position-dependent code, the first sequence | |
778 | will be the GP-relative one and the second sequence will be the | |
779 | absolute one. In SVR4 PIC, the first sequence will be for global | |
780 | symbols and the second will be for local symbols. | |
781 | ||
584892a6 RS |
782 | The frag's "subtype" is RELAX_ENCODE (FIRST, SECOND), where FIRST and |
783 | SECOND are the lengths of the two sequences in bytes. These fields | |
784 | can be extracted using RELAX_FIRST() and RELAX_SECOND(). In addition, | |
785 | the subtype has the following flags: | |
4d7206a2 | 786 | |
584892a6 RS |
787 | RELAX_USE_SECOND |
788 | Set if it has been decided that we should use the second | |
789 | sequence instead of the first. | |
790 | ||
791 | RELAX_SECOND_LONGER | |
792 | Set in the first variant frag if the macro's second implementation | |
793 | is longer than its first. This refers to the macro as a whole, | |
794 | not an individual relaxation. | |
795 | ||
796 | RELAX_NOMACRO | |
797 | Set in the first variant frag if the macro appeared in a .set nomacro | |
798 | block and if one alternative requires a warning but the other does not. | |
799 | ||
800 | RELAX_DELAY_SLOT | |
801 | Like RELAX_NOMACRO, but indicates that the macro appears in a branch | |
802 | delay slot. | |
4d7206a2 RS |
803 | |
804 | The frag's "opcode" points to the first fixup for relaxable code. | |
805 | ||
806 | Relaxable macros are generated using a sequence such as: | |
807 | ||
808 | relax_start (SYMBOL); | |
809 | ... generate first expansion ... | |
810 | relax_switch (); | |
811 | ... generate second expansion ... | |
812 | relax_end (); | |
813 | ||
814 | The code and fixups for the unwanted alternative are discarded | |
815 | by md_convert_frag. */ | |
584892a6 | 816 | #define RELAX_ENCODE(FIRST, SECOND) (((FIRST) << 8) | (SECOND)) |
4d7206a2 | 817 | |
584892a6 RS |
818 | #define RELAX_FIRST(X) (((X) >> 8) & 0xff) |
819 | #define RELAX_SECOND(X) ((X) & 0xff) | |
820 | #define RELAX_USE_SECOND 0x10000 | |
821 | #define RELAX_SECOND_LONGER 0x20000 | |
822 | #define RELAX_NOMACRO 0x40000 | |
823 | #define RELAX_DELAY_SLOT 0x80000 | |
252b5132 | 824 | |
4a6a3df4 AO |
825 | /* Branch without likely bit. If label is out of range, we turn: |
826 | ||
827 | beq reg1, reg2, label | |
828 | delay slot | |
829 | ||
830 | into | |
831 | ||
832 | bne reg1, reg2, 0f | |
833 | nop | |
834 | j label | |
835 | 0: delay slot | |
836 | ||
837 | with the following opcode replacements: | |
838 | ||
839 | beq <-> bne | |
840 | blez <-> bgtz | |
841 | bltz <-> bgez | |
842 | bc1f <-> bc1t | |
843 | ||
844 | bltzal <-> bgezal (with jal label instead of j label) | |
845 | ||
846 | Even though keeping the delay slot instruction in the delay slot of | |
847 | the branch would be more efficient, it would be very tricky to do | |
848 | correctly, because we'd have to introduce a variable frag *after* | |
849 | the delay slot instruction, and expand that instead. Let's do it | |
850 | the easy way for now, even if the branch-not-taken case now costs | |
851 | one additional instruction. Out-of-range branches are not supposed | |
852 | to be common, anyway. | |
853 | ||
854 | Branch likely. If label is out of range, we turn: | |
855 | ||
856 | beql reg1, reg2, label | |
857 | delay slot (annulled if branch not taken) | |
858 | ||
859 | into | |
860 | ||
861 | beql reg1, reg2, 1f | |
862 | nop | |
863 | beql $0, $0, 2f | |
864 | nop | |
865 | 1: j[al] label | |
866 | delay slot (executed only if branch taken) | |
867 | 2: | |
868 | ||
869 | It would be possible to generate a shorter sequence by losing the | |
870 | likely bit, generating something like: | |
b34976b6 | 871 | |
4a6a3df4 AO |
872 | bne reg1, reg2, 0f |
873 | nop | |
874 | j[al] label | |
875 | delay slot (executed only if branch taken) | |
876 | 0: | |
877 | ||
878 | beql -> bne | |
879 | bnel -> beq | |
880 | blezl -> bgtz | |
881 | bgtzl -> blez | |
882 | bltzl -> bgez | |
883 | bgezl -> bltz | |
884 | bc1fl -> bc1t | |
885 | bc1tl -> bc1f | |
886 | ||
887 | bltzall -> bgezal (with jal label instead of j label) | |
888 | bgezall -> bltzal (ditto) | |
889 | ||
890 | ||
891 | but it's not clear that it would actually improve performance. */ | |
af6ae2ad | 892 | #define RELAX_BRANCH_ENCODE(uncond, likely, link, toofar) \ |
4a6a3df4 AO |
893 | ((relax_substateT) \ |
894 | (0xc0000000 \ | |
895 | | ((toofar) ? 1 : 0) \ | |
896 | | ((link) ? 2 : 0) \ | |
897 | | ((likely) ? 4 : 0) \ | |
af6ae2ad | 898 | | ((uncond) ? 8 : 0))) |
4a6a3df4 | 899 | #define RELAX_BRANCH_P(i) (((i) & 0xf0000000) == 0xc0000000) |
4a6a3df4 AO |
900 | #define RELAX_BRANCH_UNCOND(i) (((i) & 8) != 0) |
901 | #define RELAX_BRANCH_LIKELY(i) (((i) & 4) != 0) | |
902 | #define RELAX_BRANCH_LINK(i) (((i) & 2) != 0) | |
ae6063d4 | 903 | #define RELAX_BRANCH_TOOFAR(i) (((i) & 1) != 0) |
4a6a3df4 | 904 | |
252b5132 RH |
905 | /* For mips16 code, we use an entirely different form of relaxation. |
906 | mips16 supports two versions of most instructions which take | |
907 | immediate values: a small one which takes some small value, and a | |
908 | larger one which takes a 16 bit value. Since branches also follow | |
909 | this pattern, relaxing these values is required. | |
910 | ||
911 | We can assemble both mips16 and normal MIPS code in a single | |
912 | object. Therefore, we need to support this type of relaxation at | |
913 | the same time that we support the relaxation described above. We | |
914 | use the high bit of the subtype field to distinguish these cases. | |
915 | ||
916 | The information we store for this type of relaxation is the | |
917 | argument code found in the opcode file for this relocation, whether | |
918 | the user explicitly requested a small or extended form, and whether | |
919 | the relocation is in a jump or jal delay slot. That tells us the | |
920 | size of the value, and how it should be stored. We also store | |
921 | whether the fragment is considered to be extended or not. We also | |
922 | store whether this is known to be a branch to a different section, | |
923 | whether we have tried to relax this frag yet, and whether we have | |
924 | ever extended a PC relative fragment because of a shift count. */ | |
925 | #define RELAX_MIPS16_ENCODE(type, small, ext, dslot, jal_dslot) \ | |
926 | (0x80000000 \ | |
927 | | ((type) & 0xff) \ | |
928 | | ((small) ? 0x100 : 0) \ | |
929 | | ((ext) ? 0x200 : 0) \ | |
930 | | ((dslot) ? 0x400 : 0) \ | |
931 | | ((jal_dslot) ? 0x800 : 0)) | |
4a6a3df4 | 932 | #define RELAX_MIPS16_P(i) (((i) & 0xc0000000) == 0x80000000) |
252b5132 RH |
933 | #define RELAX_MIPS16_TYPE(i) ((i) & 0xff) |
934 | #define RELAX_MIPS16_USER_SMALL(i) (((i) & 0x100) != 0) | |
935 | #define RELAX_MIPS16_USER_EXT(i) (((i) & 0x200) != 0) | |
936 | #define RELAX_MIPS16_DSLOT(i) (((i) & 0x400) != 0) | |
937 | #define RELAX_MIPS16_JAL_DSLOT(i) (((i) & 0x800) != 0) | |
938 | #define RELAX_MIPS16_EXTENDED(i) (((i) & 0x1000) != 0) | |
939 | #define RELAX_MIPS16_MARK_EXTENDED(i) ((i) | 0x1000) | |
940 | #define RELAX_MIPS16_CLEAR_EXTENDED(i) ((i) &~ 0x1000) | |
941 | #define RELAX_MIPS16_LONG_BRANCH(i) (((i) & 0x2000) != 0) | |
942 | #define RELAX_MIPS16_MARK_LONG_BRANCH(i) ((i) | 0x2000) | |
943 | #define RELAX_MIPS16_CLEAR_LONG_BRANCH(i) ((i) &~ 0x2000) | |
885add95 CD |
944 | |
945 | /* Is the given value a sign-extended 32-bit value? */ | |
946 | #define IS_SEXT_32BIT_NUM(x) \ | |
947 | (((x) &~ (offsetT) 0x7fffffff) == 0 \ | |
948 | || (((x) &~ (offsetT) 0x7fffffff) == ~ (offsetT) 0x7fffffff)) | |
949 | ||
950 | /* Is the given value a sign-extended 16-bit value? */ | |
951 | #define IS_SEXT_16BIT_NUM(x) \ | |
952 | (((x) &~ (offsetT) 0x7fff) == 0 \ | |
953 | || (((x) &~ (offsetT) 0x7fff) == ~ (offsetT) 0x7fff)) | |
954 | ||
2051e8c4 MR |
955 | /* Is the given value a zero-extended 32-bit value? Or a negated one? */ |
956 | #define IS_ZEXT_32BIT_NUM(x) \ | |
957 | (((x) &~ (offsetT) 0xffffffff) == 0 \ | |
958 | || (((x) &~ (offsetT) 0xffffffff) == ~ (offsetT) 0xffffffff)) | |
959 | ||
bf12938e RS |
960 | /* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in |
961 | VALUE << SHIFT. VALUE is evaluated exactly once. */ | |
962 | #define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \ | |
963 | (STRUCT) = (((STRUCT) & ~((MASK) << (SHIFT))) \ | |
964 | | (((VALUE) & (MASK)) << (SHIFT))) | |
965 | ||
966 | /* Extract bits MASK << SHIFT from STRUCT and shift them right | |
967 | SHIFT places. */ | |
968 | #define EXTRACT_BITS(STRUCT, MASK, SHIFT) \ | |
969 | (((STRUCT) >> (SHIFT)) & (MASK)) | |
970 | ||
971 | /* Change INSN's opcode so that the operand given by FIELD has value VALUE. | |
972 | INSN is a mips_cl_insn structure and VALUE is evaluated exactly once. | |
973 | ||
974 | include/opcode/mips.h specifies operand fields using the macros | |
975 | OP_MASK_<FIELD> and OP_SH_<FIELD>. The MIPS16 equivalents start | |
976 | with "MIPS16OP" instead of "OP". */ | |
977 | #define INSERT_OPERAND(FIELD, INSN, VALUE) \ | |
978 | INSERT_BITS ((INSN).insn_opcode, VALUE, OP_MASK_##FIELD, OP_SH_##FIELD) | |
979 | #define MIPS16_INSERT_OPERAND(FIELD, INSN, VALUE) \ | |
980 | INSERT_BITS ((INSN).insn_opcode, VALUE, \ | |
981 | MIPS16OP_MASK_##FIELD, MIPS16OP_SH_##FIELD) | |
982 | ||
983 | /* Extract the operand given by FIELD from mips_cl_insn INSN. */ | |
984 | #define EXTRACT_OPERAND(FIELD, INSN) \ | |
985 | EXTRACT_BITS ((INSN).insn_opcode, OP_MASK_##FIELD, OP_SH_##FIELD) | |
986 | #define MIPS16_EXTRACT_OPERAND(FIELD, INSN) \ | |
987 | EXTRACT_BITS ((INSN).insn_opcode, \ | |
988 | MIPS16OP_MASK_##FIELD, \ | |
989 | MIPS16OP_SH_##FIELD) | |
4d7206a2 RS |
990 | \f |
991 | /* Global variables used when generating relaxable macros. See the | |
992 | comment above RELAX_ENCODE for more details about how relaxation | |
993 | is used. */ | |
994 | static struct { | |
995 | /* 0 if we're not emitting a relaxable macro. | |
996 | 1 if we're emitting the first of the two relaxation alternatives. | |
997 | 2 if we're emitting the second alternative. */ | |
998 | int sequence; | |
999 | ||
1000 | /* The first relaxable fixup in the current frag. (In other words, | |
1001 | the first fixup that refers to relaxable code.) */ | |
1002 | fixS *first_fixup; | |
1003 | ||
1004 | /* sizes[0] says how many bytes of the first alternative are stored in | |
1005 | the current frag. Likewise sizes[1] for the second alternative. */ | |
1006 | unsigned int sizes[2]; | |
1007 | ||
1008 | /* The symbol on which the choice of sequence depends. */ | |
1009 | symbolS *symbol; | |
1010 | } mips_relax; | |
252b5132 | 1011 | \f |
584892a6 RS |
1012 | /* Global variables used to decide whether a macro needs a warning. */ |
1013 | static struct { | |
1014 | /* True if the macro is in a branch delay slot. */ | |
1015 | bfd_boolean delay_slot_p; | |
1016 | ||
1017 | /* For relaxable macros, sizes[0] is the length of the first alternative | |
1018 | in bytes and sizes[1] is the length of the second alternative. | |
1019 | For non-relaxable macros, both elements give the length of the | |
1020 | macro in bytes. */ | |
1021 | unsigned int sizes[2]; | |
1022 | ||
1023 | /* The first variant frag for this macro. */ | |
1024 | fragS *first_frag; | |
1025 | } mips_macro_warning; | |
1026 | \f | |
252b5132 RH |
1027 | /* Prototypes for static functions. */ |
1028 | ||
17a2f251 | 1029 | #define internalError() \ |
252b5132 | 1030 | as_fatal (_("internal Error, line %d, %s"), __LINE__, __FILE__) |
252b5132 RH |
1031 | |
1032 | enum mips_regclass { MIPS_GR_REG, MIPS_FP_REG, MIPS16_REG }; | |
1033 | ||
b34976b6 | 1034 | static void append_insn |
4d7206a2 | 1035 | (struct mips_cl_insn *ip, expressionS *p, bfd_reloc_code_real_type *r); |
7d10b47d | 1036 | static void mips_no_prev_insn (void); |
b34976b6 | 1037 | static void mips16_macro_build |
67c0d1eb RS |
1038 | (expressionS *, const char *, const char *, va_list); |
1039 | static void load_register (int, expressionS *, int); | |
584892a6 RS |
1040 | static void macro_start (void); |
1041 | static void macro_end (void); | |
17a2f251 TS |
1042 | static void macro (struct mips_cl_insn * ip); |
1043 | static void mips16_macro (struct mips_cl_insn * ip); | |
252b5132 | 1044 | #ifdef LOSING_COMPILER |
17a2f251 | 1045 | static void macro2 (struct mips_cl_insn * ip); |
252b5132 | 1046 | #endif |
17a2f251 TS |
1047 | static void mips_ip (char *str, struct mips_cl_insn * ip); |
1048 | static void mips16_ip (char *str, struct mips_cl_insn * ip); | |
b34976b6 | 1049 | static void mips16_immed |
17a2f251 TS |
1050 | (char *, unsigned int, int, offsetT, bfd_boolean, bfd_boolean, bfd_boolean, |
1051 | unsigned long *, bfd_boolean *, unsigned short *); | |
5e0116d5 | 1052 | static size_t my_getSmallExpression |
17a2f251 TS |
1053 | (expressionS *, bfd_reloc_code_real_type *, char *); |
1054 | static void my_getExpression (expressionS *, char *); | |
1055 | static void s_align (int); | |
1056 | static void s_change_sec (int); | |
1057 | static void s_change_section (int); | |
1058 | static void s_cons (int); | |
1059 | static void s_float_cons (int); | |
1060 | static void s_mips_globl (int); | |
1061 | static void s_option (int); | |
1062 | static void s_mipsset (int); | |
1063 | static void s_abicalls (int); | |
1064 | static void s_cpload (int); | |
1065 | static void s_cpsetup (int); | |
1066 | static void s_cplocal (int); | |
1067 | static void s_cprestore (int); | |
1068 | static void s_cpreturn (int); | |
741d6ea8 JM |
1069 | static void s_dtprelword (int); |
1070 | static void s_dtpreldword (int); | |
17a2f251 TS |
1071 | static void s_gpvalue (int); |
1072 | static void s_gpword (int); | |
1073 | static void s_gpdword (int); | |
1074 | static void s_cpadd (int); | |
1075 | static void s_insn (int); | |
1076 | static void md_obj_begin (void); | |
1077 | static void md_obj_end (void); | |
1078 | static void s_mips_ent (int); | |
1079 | static void s_mips_end (int); | |
1080 | static void s_mips_frame (int); | |
1081 | static void s_mips_mask (int reg_type); | |
1082 | static void s_mips_stab (int); | |
1083 | static void s_mips_weakext (int); | |
1084 | static void s_mips_file (int); | |
1085 | static void s_mips_loc (int); | |
1086 | static bfd_boolean pic_need_relax (symbolS *, asection *); | |
4a6a3df4 | 1087 | static int relaxed_branch_length (fragS *, asection *, int); |
17a2f251 | 1088 | static int validate_mips_insn (const struct mips_opcode *); |
e7af610e NC |
1089 | |
1090 | /* Table and functions used to map between CPU/ISA names, and | |
1091 | ISA levels, and CPU numbers. */ | |
1092 | ||
e972090a NC |
1093 | struct mips_cpu_info |
1094 | { | |
e7af610e | 1095 | const char *name; /* CPU or ISA name. */ |
ad3fea08 | 1096 | int flags; /* ASEs available, or ISA flag. */ |
e7af610e NC |
1097 | int isa; /* ISA level. */ |
1098 | int cpu; /* CPU number (default CPU if ISA). */ | |
1099 | }; | |
1100 | ||
ad3fea08 TS |
1101 | #define MIPS_CPU_IS_ISA 0x0001 /* Is this an ISA? (If 0, a CPU.) */ |
1102 | #define MIPS_CPU_ASE_SMARTMIPS 0x0002 /* CPU implements SmartMIPS ASE */ | |
1103 | #define MIPS_CPU_ASE_DSP 0x0004 /* CPU implements DSP ASE */ | |
1104 | #define MIPS_CPU_ASE_MT 0x0008 /* CPU implements MT ASE */ | |
1105 | #define MIPS_CPU_ASE_MIPS3D 0x0010 /* CPU implements MIPS-3D ASE */ | |
1106 | #define MIPS_CPU_ASE_MDMX 0x0020 /* CPU implements MDMX ASE */ | |
8b082fb1 | 1107 | #define MIPS_CPU_ASE_DSPR2 0x0040 /* CPU implements DSP R2 ASE */ |
ad3fea08 | 1108 | |
17a2f251 TS |
1109 | static const struct mips_cpu_info *mips_parse_cpu (const char *, const char *); |
1110 | static const struct mips_cpu_info *mips_cpu_info_from_isa (int); | |
1111 | static const struct mips_cpu_info *mips_cpu_info_from_arch (int); | |
252b5132 RH |
1112 | \f |
1113 | /* Pseudo-op table. | |
1114 | ||
1115 | The following pseudo-ops from the Kane and Heinrich MIPS book | |
1116 | should be defined here, but are currently unsupported: .alias, | |
1117 | .galive, .gjaldef, .gjrlive, .livereg, .noalias. | |
1118 | ||
1119 | The following pseudo-ops from the Kane and Heinrich MIPS book are | |
1120 | specific to the type of debugging information being generated, and | |
1121 | should be defined by the object format: .aent, .begin, .bend, | |
1122 | .bgnb, .end, .endb, .ent, .fmask, .frame, .loc, .mask, .verstamp, | |
1123 | .vreg. | |
1124 | ||
1125 | The following pseudo-ops from the Kane and Heinrich MIPS book are | |
1126 | not MIPS CPU specific, but are also not specific to the object file | |
1127 | format. This file is probably the best place to define them, but | |
d84bcf09 | 1128 | they are not currently supported: .asm0, .endr, .lab, .struct. */ |
252b5132 | 1129 | |
e972090a NC |
1130 | static const pseudo_typeS mips_pseudo_table[] = |
1131 | { | |
beae10d5 | 1132 | /* MIPS specific pseudo-ops. */ |
252b5132 RH |
1133 | {"option", s_option, 0}, |
1134 | {"set", s_mipsset, 0}, | |
1135 | {"rdata", s_change_sec, 'r'}, | |
1136 | {"sdata", s_change_sec, 's'}, | |
1137 | {"livereg", s_ignore, 0}, | |
1138 | {"abicalls", s_abicalls, 0}, | |
1139 | {"cpload", s_cpload, 0}, | |
6478892d TS |
1140 | {"cpsetup", s_cpsetup, 0}, |
1141 | {"cplocal", s_cplocal, 0}, | |
252b5132 | 1142 | {"cprestore", s_cprestore, 0}, |
6478892d | 1143 | {"cpreturn", s_cpreturn, 0}, |
741d6ea8 JM |
1144 | {"dtprelword", s_dtprelword, 0}, |
1145 | {"dtpreldword", s_dtpreldword, 0}, | |
6478892d | 1146 | {"gpvalue", s_gpvalue, 0}, |
252b5132 | 1147 | {"gpword", s_gpword, 0}, |
10181a0d | 1148 | {"gpdword", s_gpdword, 0}, |
252b5132 RH |
1149 | {"cpadd", s_cpadd, 0}, |
1150 | {"insn", s_insn, 0}, | |
1151 | ||
beae10d5 | 1152 | /* Relatively generic pseudo-ops that happen to be used on MIPS |
252b5132 | 1153 | chips. */ |
38a57ae7 | 1154 | {"asciiz", stringer, 8 + 1}, |
252b5132 RH |
1155 | {"bss", s_change_sec, 'b'}, |
1156 | {"err", s_err, 0}, | |
1157 | {"half", s_cons, 1}, | |
1158 | {"dword", s_cons, 3}, | |
1159 | {"weakext", s_mips_weakext, 0}, | |
7c752c2a TS |
1160 | {"origin", s_org, 0}, |
1161 | {"repeat", s_rept, 0}, | |
252b5132 | 1162 | |
beae10d5 | 1163 | /* These pseudo-ops are defined in read.c, but must be overridden |
252b5132 RH |
1164 | here for one reason or another. */ |
1165 | {"align", s_align, 0}, | |
1166 | {"byte", s_cons, 0}, | |
1167 | {"data", s_change_sec, 'd'}, | |
1168 | {"double", s_float_cons, 'd'}, | |
1169 | {"float", s_float_cons, 'f'}, | |
1170 | {"globl", s_mips_globl, 0}, | |
1171 | {"global", s_mips_globl, 0}, | |
1172 | {"hword", s_cons, 1}, | |
1173 | {"int", s_cons, 2}, | |
1174 | {"long", s_cons, 2}, | |
1175 | {"octa", s_cons, 4}, | |
1176 | {"quad", s_cons, 3}, | |
cca86cc8 | 1177 | {"section", s_change_section, 0}, |
252b5132 RH |
1178 | {"short", s_cons, 1}, |
1179 | {"single", s_float_cons, 'f'}, | |
1180 | {"stabn", s_mips_stab, 'n'}, | |
1181 | {"text", s_change_sec, 't'}, | |
1182 | {"word", s_cons, 2}, | |
add56521 | 1183 | |
add56521 | 1184 | { "extern", ecoff_directive_extern, 0}, |
add56521 | 1185 | |
43841e91 | 1186 | { NULL, NULL, 0 }, |
252b5132 RH |
1187 | }; |
1188 | ||
e972090a NC |
1189 | static const pseudo_typeS mips_nonecoff_pseudo_table[] = |
1190 | { | |
beae10d5 KH |
1191 | /* These pseudo-ops should be defined by the object file format. |
1192 | However, a.out doesn't support them, so we have versions here. */ | |
252b5132 RH |
1193 | {"aent", s_mips_ent, 1}, |
1194 | {"bgnb", s_ignore, 0}, | |
1195 | {"end", s_mips_end, 0}, | |
1196 | {"endb", s_ignore, 0}, | |
1197 | {"ent", s_mips_ent, 0}, | |
c5dd6aab | 1198 | {"file", s_mips_file, 0}, |
252b5132 RH |
1199 | {"fmask", s_mips_mask, 'F'}, |
1200 | {"frame", s_mips_frame, 0}, | |
c5dd6aab | 1201 | {"loc", s_mips_loc, 0}, |
252b5132 RH |
1202 | {"mask", s_mips_mask, 'R'}, |
1203 | {"verstamp", s_ignore, 0}, | |
43841e91 | 1204 | { NULL, NULL, 0 }, |
252b5132 RH |
1205 | }; |
1206 | ||
17a2f251 | 1207 | extern void pop_insert (const pseudo_typeS *); |
252b5132 RH |
1208 | |
1209 | void | |
17a2f251 | 1210 | mips_pop_insert (void) |
252b5132 RH |
1211 | { |
1212 | pop_insert (mips_pseudo_table); | |
1213 | if (! ECOFF_DEBUGGING) | |
1214 | pop_insert (mips_nonecoff_pseudo_table); | |
1215 | } | |
1216 | \f | |
1217 | /* Symbols labelling the current insn. */ | |
1218 | ||
e972090a NC |
1219 | struct insn_label_list |
1220 | { | |
252b5132 RH |
1221 | struct insn_label_list *next; |
1222 | symbolS *label; | |
1223 | }; | |
1224 | ||
252b5132 | 1225 | static struct insn_label_list *free_insn_labels; |
742a56fe | 1226 | #define label_list tc_segment_info_data.labels |
252b5132 | 1227 | |
17a2f251 | 1228 | static void mips_clear_insn_labels (void); |
252b5132 RH |
1229 | |
1230 | static inline void | |
17a2f251 | 1231 | mips_clear_insn_labels (void) |
252b5132 RH |
1232 | { |
1233 | register struct insn_label_list **pl; | |
a8dbcb85 | 1234 | segment_info_type *si; |
252b5132 | 1235 | |
a8dbcb85 TS |
1236 | if (now_seg) |
1237 | { | |
1238 | for (pl = &free_insn_labels; *pl != NULL; pl = &(*pl)->next) | |
1239 | ; | |
1240 | ||
1241 | si = seg_info (now_seg); | |
1242 | *pl = si->label_list; | |
1243 | si->label_list = NULL; | |
1244 | } | |
252b5132 | 1245 | } |
a8dbcb85 | 1246 | |
252b5132 RH |
1247 | \f |
1248 | static char *expr_end; | |
1249 | ||
1250 | /* Expressions which appear in instructions. These are set by | |
1251 | mips_ip. */ | |
1252 | ||
1253 | static expressionS imm_expr; | |
5f74bc13 | 1254 | static expressionS imm2_expr; |
252b5132 RH |
1255 | static expressionS offset_expr; |
1256 | ||
1257 | /* Relocs associated with imm_expr and offset_expr. */ | |
1258 | ||
f6688943 TS |
1259 | static bfd_reloc_code_real_type imm_reloc[3] |
1260 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
1261 | static bfd_reloc_code_real_type offset_reloc[3] | |
1262 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
252b5132 | 1263 | |
252b5132 RH |
1264 | /* These are set by mips16_ip if an explicit extension is used. */ |
1265 | ||
b34976b6 | 1266 | static bfd_boolean mips16_small, mips16_ext; |
252b5132 | 1267 | |
7ed4a06a | 1268 | #ifdef OBJ_ELF |
ecb4347a DJ |
1269 | /* The pdr segment for per procedure frame/regmask info. Not used for |
1270 | ECOFF debugging. */ | |
252b5132 RH |
1271 | |
1272 | static segT pdr_seg; | |
7ed4a06a | 1273 | #endif |
252b5132 | 1274 | |
e013f690 TS |
1275 | /* The default target format to use. */ |
1276 | ||
1277 | const char * | |
17a2f251 | 1278 | mips_target_format (void) |
e013f690 TS |
1279 | { |
1280 | switch (OUTPUT_FLAVOR) | |
1281 | { | |
e013f690 TS |
1282 | case bfd_target_ecoff_flavour: |
1283 | return target_big_endian ? "ecoff-bigmips" : ECOFF_LITTLE_FORMAT; | |
1284 | case bfd_target_coff_flavour: | |
1285 | return "pe-mips"; | |
1286 | case bfd_target_elf_flavour: | |
0a44bf69 RS |
1287 | #ifdef TE_VXWORKS |
1288 | if (!HAVE_64BIT_OBJECTS && !HAVE_NEWABI) | |
1289 | return (target_big_endian | |
1290 | ? "elf32-bigmips-vxworks" | |
1291 | : "elf32-littlemips-vxworks"); | |
1292 | #endif | |
e013f690 | 1293 | #ifdef TE_TMIPS |
cfe86eaa | 1294 | /* This is traditional mips. */ |
e013f690 | 1295 | return (target_big_endian |
cfe86eaa TS |
1296 | ? (HAVE_64BIT_OBJECTS |
1297 | ? "elf64-tradbigmips" | |
1298 | : (HAVE_NEWABI | |
1299 | ? "elf32-ntradbigmips" : "elf32-tradbigmips")) | |
1300 | : (HAVE_64BIT_OBJECTS | |
1301 | ? "elf64-tradlittlemips" | |
1302 | : (HAVE_NEWABI | |
1303 | ? "elf32-ntradlittlemips" : "elf32-tradlittlemips"))); | |
e013f690 TS |
1304 | #else |
1305 | return (target_big_endian | |
cfe86eaa TS |
1306 | ? (HAVE_64BIT_OBJECTS |
1307 | ? "elf64-bigmips" | |
1308 | : (HAVE_NEWABI | |
1309 | ? "elf32-nbigmips" : "elf32-bigmips")) | |
1310 | : (HAVE_64BIT_OBJECTS | |
1311 | ? "elf64-littlemips" | |
1312 | : (HAVE_NEWABI | |
1313 | ? "elf32-nlittlemips" : "elf32-littlemips"))); | |
e013f690 TS |
1314 | #endif |
1315 | default: | |
1316 | abort (); | |
1317 | return NULL; | |
1318 | } | |
1319 | } | |
1320 | ||
1e915849 RS |
1321 | /* Return the length of instruction INSN. */ |
1322 | ||
1323 | static inline unsigned int | |
1324 | insn_length (const struct mips_cl_insn *insn) | |
1325 | { | |
1326 | if (!mips_opts.mips16) | |
1327 | return 4; | |
1328 | return insn->mips16_absolute_jump_p || insn->use_extend ? 4 : 2; | |
1329 | } | |
1330 | ||
1331 | /* Initialise INSN from opcode entry MO. Leave its position unspecified. */ | |
1332 | ||
1333 | static void | |
1334 | create_insn (struct mips_cl_insn *insn, const struct mips_opcode *mo) | |
1335 | { | |
1336 | size_t i; | |
1337 | ||
1338 | insn->insn_mo = mo; | |
1339 | insn->use_extend = FALSE; | |
1340 | insn->extend = 0; | |
1341 | insn->insn_opcode = mo->match; | |
1342 | insn->frag = NULL; | |
1343 | insn->where = 0; | |
1344 | for (i = 0; i < ARRAY_SIZE (insn->fixp); i++) | |
1345 | insn->fixp[i] = NULL; | |
1346 | insn->fixed_p = (mips_opts.noreorder > 0); | |
1347 | insn->noreorder_p = (mips_opts.noreorder > 0); | |
1348 | insn->mips16_absolute_jump_p = 0; | |
1349 | } | |
1350 | ||
742a56fe RS |
1351 | /* Record the current MIPS16 mode in now_seg. */ |
1352 | ||
1353 | static void | |
1354 | mips_record_mips16_mode (void) | |
1355 | { | |
1356 | segment_info_type *si; | |
1357 | ||
1358 | si = seg_info (now_seg); | |
1359 | if (si->tc_segment_info_data.mips16 != mips_opts.mips16) | |
1360 | si->tc_segment_info_data.mips16 = mips_opts.mips16; | |
1361 | } | |
1362 | ||
1e915849 RS |
1363 | /* Install INSN at the location specified by its "frag" and "where" fields. */ |
1364 | ||
1365 | static void | |
1366 | install_insn (const struct mips_cl_insn *insn) | |
1367 | { | |
1368 | char *f = insn->frag->fr_literal + insn->where; | |
1369 | if (!mips_opts.mips16) | |
1370 | md_number_to_chars (f, insn->insn_opcode, 4); | |
1371 | else if (insn->mips16_absolute_jump_p) | |
1372 | { | |
1373 | md_number_to_chars (f, insn->insn_opcode >> 16, 2); | |
1374 | md_number_to_chars (f + 2, insn->insn_opcode & 0xffff, 2); | |
1375 | } | |
1376 | else | |
1377 | { | |
1378 | if (insn->use_extend) | |
1379 | { | |
1380 | md_number_to_chars (f, 0xf000 | insn->extend, 2); | |
1381 | f += 2; | |
1382 | } | |
1383 | md_number_to_chars (f, insn->insn_opcode, 2); | |
1384 | } | |
742a56fe | 1385 | mips_record_mips16_mode (); |
1e915849 RS |
1386 | } |
1387 | ||
1388 | /* Move INSN to offset WHERE in FRAG. Adjust the fixups accordingly | |
1389 | and install the opcode in the new location. */ | |
1390 | ||
1391 | static void | |
1392 | move_insn (struct mips_cl_insn *insn, fragS *frag, long where) | |
1393 | { | |
1394 | size_t i; | |
1395 | ||
1396 | insn->frag = frag; | |
1397 | insn->where = where; | |
1398 | for (i = 0; i < ARRAY_SIZE (insn->fixp); i++) | |
1399 | if (insn->fixp[i] != NULL) | |
1400 | { | |
1401 | insn->fixp[i]->fx_frag = frag; | |
1402 | insn->fixp[i]->fx_where = where; | |
1403 | } | |
1404 | install_insn (insn); | |
1405 | } | |
1406 | ||
1407 | /* Add INSN to the end of the output. */ | |
1408 | ||
1409 | static void | |
1410 | add_fixed_insn (struct mips_cl_insn *insn) | |
1411 | { | |
1412 | char *f = frag_more (insn_length (insn)); | |
1413 | move_insn (insn, frag_now, f - frag_now->fr_literal); | |
1414 | } | |
1415 | ||
1416 | /* Start a variant frag and move INSN to the start of the variant part, | |
1417 | marking it as fixed. The other arguments are as for frag_var. */ | |
1418 | ||
1419 | static void | |
1420 | add_relaxed_insn (struct mips_cl_insn *insn, int max_chars, int var, | |
1421 | relax_substateT subtype, symbolS *symbol, offsetT offset) | |
1422 | { | |
1423 | frag_grow (max_chars); | |
1424 | move_insn (insn, frag_now, frag_more (0) - frag_now->fr_literal); | |
1425 | insn->fixed_p = 1; | |
1426 | frag_var (rs_machine_dependent, max_chars, var, | |
1427 | subtype, symbol, offset, NULL); | |
1428 | } | |
1429 | ||
1430 | /* Insert N copies of INSN into the history buffer, starting at | |
1431 | position FIRST. Neither FIRST nor N need to be clipped. */ | |
1432 | ||
1433 | static void | |
1434 | insert_into_history (unsigned int first, unsigned int n, | |
1435 | const struct mips_cl_insn *insn) | |
1436 | { | |
1437 | if (mips_relax.sequence != 2) | |
1438 | { | |
1439 | unsigned int i; | |
1440 | ||
1441 | for (i = ARRAY_SIZE (history); i-- > first;) | |
1442 | if (i >= first + n) | |
1443 | history[i] = history[i - n]; | |
1444 | else | |
1445 | history[i] = *insn; | |
1446 | } | |
1447 | } | |
1448 | ||
1449 | /* Emit a nop instruction, recording it in the history buffer. */ | |
1450 | ||
1451 | static void | |
1452 | emit_nop (void) | |
1453 | { | |
1454 | add_fixed_insn (NOP_INSN); | |
1455 | insert_into_history (0, 1, NOP_INSN); | |
1456 | } | |
1457 | ||
71400594 RS |
1458 | /* Initialize vr4120_conflicts. There is a bit of duplication here: |
1459 | the idea is to make it obvious at a glance that each errata is | |
1460 | included. */ | |
1461 | ||
1462 | static void | |
1463 | init_vr4120_conflicts (void) | |
1464 | { | |
1465 | #define CONFLICT(FIRST, SECOND) \ | |
1466 | vr4120_conflicts[FIX_VR4120_##FIRST] |= 1 << FIX_VR4120_##SECOND | |
1467 | ||
1468 | /* Errata 21 - [D]DIV[U] after [D]MACC */ | |
1469 | CONFLICT (MACC, DIV); | |
1470 | CONFLICT (DMACC, DIV); | |
1471 | ||
1472 | /* Errata 23 - Continuous DMULT[U]/DMACC instructions. */ | |
1473 | CONFLICT (DMULT, DMULT); | |
1474 | CONFLICT (DMULT, DMACC); | |
1475 | CONFLICT (DMACC, DMULT); | |
1476 | CONFLICT (DMACC, DMACC); | |
1477 | ||
1478 | /* Errata 24 - MT{LO,HI} after [D]MACC */ | |
1479 | CONFLICT (MACC, MTHILO); | |
1480 | CONFLICT (DMACC, MTHILO); | |
1481 | ||
1482 | /* VR4181A errata MD(1): "If a MULT, MULTU, DMULT or DMULTU | |
1483 | instruction is executed immediately after a MACC or DMACC | |
1484 | instruction, the result of [either instruction] is incorrect." */ | |
1485 | CONFLICT (MACC, MULT); | |
1486 | CONFLICT (MACC, DMULT); | |
1487 | CONFLICT (DMACC, MULT); | |
1488 | CONFLICT (DMACC, DMULT); | |
1489 | ||
1490 | /* VR4181A errata MD(4): "If a MACC or DMACC instruction is | |
1491 | executed immediately after a DMULT, DMULTU, DIV, DIVU, | |
1492 | DDIV or DDIVU instruction, the result of the MACC or | |
1493 | DMACC instruction is incorrect.". */ | |
1494 | CONFLICT (DMULT, MACC); | |
1495 | CONFLICT (DMULT, DMACC); | |
1496 | CONFLICT (DIV, MACC); | |
1497 | CONFLICT (DIV, DMACC); | |
1498 | ||
1499 | #undef CONFLICT | |
1500 | } | |
1501 | ||
707bfff6 TS |
1502 | struct regname { |
1503 | const char *name; | |
1504 | unsigned int num; | |
1505 | }; | |
1506 | ||
1507 | #define RTYPE_MASK 0x1ff00 | |
1508 | #define RTYPE_NUM 0x00100 | |
1509 | #define RTYPE_FPU 0x00200 | |
1510 | #define RTYPE_FCC 0x00400 | |
1511 | #define RTYPE_VEC 0x00800 | |
1512 | #define RTYPE_GP 0x01000 | |
1513 | #define RTYPE_CP0 0x02000 | |
1514 | #define RTYPE_PC 0x04000 | |
1515 | #define RTYPE_ACC 0x08000 | |
1516 | #define RTYPE_CCC 0x10000 | |
1517 | #define RNUM_MASK 0x000ff | |
1518 | #define RWARN 0x80000 | |
1519 | ||
1520 | #define GENERIC_REGISTER_NUMBERS \ | |
1521 | {"$0", RTYPE_NUM | 0}, \ | |
1522 | {"$1", RTYPE_NUM | 1}, \ | |
1523 | {"$2", RTYPE_NUM | 2}, \ | |
1524 | {"$3", RTYPE_NUM | 3}, \ | |
1525 | {"$4", RTYPE_NUM | 4}, \ | |
1526 | {"$5", RTYPE_NUM | 5}, \ | |
1527 | {"$6", RTYPE_NUM | 6}, \ | |
1528 | {"$7", RTYPE_NUM | 7}, \ | |
1529 | {"$8", RTYPE_NUM | 8}, \ | |
1530 | {"$9", RTYPE_NUM | 9}, \ | |
1531 | {"$10", RTYPE_NUM | 10}, \ | |
1532 | {"$11", RTYPE_NUM | 11}, \ | |
1533 | {"$12", RTYPE_NUM | 12}, \ | |
1534 | {"$13", RTYPE_NUM | 13}, \ | |
1535 | {"$14", RTYPE_NUM | 14}, \ | |
1536 | {"$15", RTYPE_NUM | 15}, \ | |
1537 | {"$16", RTYPE_NUM | 16}, \ | |
1538 | {"$17", RTYPE_NUM | 17}, \ | |
1539 | {"$18", RTYPE_NUM | 18}, \ | |
1540 | {"$19", RTYPE_NUM | 19}, \ | |
1541 | {"$20", RTYPE_NUM | 20}, \ | |
1542 | {"$21", RTYPE_NUM | 21}, \ | |
1543 | {"$22", RTYPE_NUM | 22}, \ | |
1544 | {"$23", RTYPE_NUM | 23}, \ | |
1545 | {"$24", RTYPE_NUM | 24}, \ | |
1546 | {"$25", RTYPE_NUM | 25}, \ | |
1547 | {"$26", RTYPE_NUM | 26}, \ | |
1548 | {"$27", RTYPE_NUM | 27}, \ | |
1549 | {"$28", RTYPE_NUM | 28}, \ | |
1550 | {"$29", RTYPE_NUM | 29}, \ | |
1551 | {"$30", RTYPE_NUM | 30}, \ | |
1552 | {"$31", RTYPE_NUM | 31} | |
1553 | ||
1554 | #define FPU_REGISTER_NAMES \ | |
1555 | {"$f0", RTYPE_FPU | 0}, \ | |
1556 | {"$f1", RTYPE_FPU | 1}, \ | |
1557 | {"$f2", RTYPE_FPU | 2}, \ | |
1558 | {"$f3", RTYPE_FPU | 3}, \ | |
1559 | {"$f4", RTYPE_FPU | 4}, \ | |
1560 | {"$f5", RTYPE_FPU | 5}, \ | |
1561 | {"$f6", RTYPE_FPU | 6}, \ | |
1562 | {"$f7", RTYPE_FPU | 7}, \ | |
1563 | {"$f8", RTYPE_FPU | 8}, \ | |
1564 | {"$f9", RTYPE_FPU | 9}, \ | |
1565 | {"$f10", RTYPE_FPU | 10}, \ | |
1566 | {"$f11", RTYPE_FPU | 11}, \ | |
1567 | {"$f12", RTYPE_FPU | 12}, \ | |
1568 | {"$f13", RTYPE_FPU | 13}, \ | |
1569 | {"$f14", RTYPE_FPU | 14}, \ | |
1570 | {"$f15", RTYPE_FPU | 15}, \ | |
1571 | {"$f16", RTYPE_FPU | 16}, \ | |
1572 | {"$f17", RTYPE_FPU | 17}, \ | |
1573 | {"$f18", RTYPE_FPU | 18}, \ | |
1574 | {"$f19", RTYPE_FPU | 19}, \ | |
1575 | {"$f20", RTYPE_FPU | 20}, \ | |
1576 | {"$f21", RTYPE_FPU | 21}, \ | |
1577 | {"$f22", RTYPE_FPU | 22}, \ | |
1578 | {"$f23", RTYPE_FPU | 23}, \ | |
1579 | {"$f24", RTYPE_FPU | 24}, \ | |
1580 | {"$f25", RTYPE_FPU | 25}, \ | |
1581 | {"$f26", RTYPE_FPU | 26}, \ | |
1582 | {"$f27", RTYPE_FPU | 27}, \ | |
1583 | {"$f28", RTYPE_FPU | 28}, \ | |
1584 | {"$f29", RTYPE_FPU | 29}, \ | |
1585 | {"$f30", RTYPE_FPU | 30}, \ | |
1586 | {"$f31", RTYPE_FPU | 31} | |
1587 | ||
1588 | #define FPU_CONDITION_CODE_NAMES \ | |
1589 | {"$fcc0", RTYPE_FCC | 0}, \ | |
1590 | {"$fcc1", RTYPE_FCC | 1}, \ | |
1591 | {"$fcc2", RTYPE_FCC | 2}, \ | |
1592 | {"$fcc3", RTYPE_FCC | 3}, \ | |
1593 | {"$fcc4", RTYPE_FCC | 4}, \ | |
1594 | {"$fcc5", RTYPE_FCC | 5}, \ | |
1595 | {"$fcc6", RTYPE_FCC | 6}, \ | |
1596 | {"$fcc7", RTYPE_FCC | 7} | |
1597 | ||
1598 | #define COPROC_CONDITION_CODE_NAMES \ | |
1599 | {"$cc0", RTYPE_FCC | RTYPE_CCC | 0}, \ | |
1600 | {"$cc1", RTYPE_FCC | RTYPE_CCC | 1}, \ | |
1601 | {"$cc2", RTYPE_FCC | RTYPE_CCC | 2}, \ | |
1602 | {"$cc3", RTYPE_FCC | RTYPE_CCC | 3}, \ | |
1603 | {"$cc4", RTYPE_FCC | RTYPE_CCC | 4}, \ | |
1604 | {"$cc5", RTYPE_FCC | RTYPE_CCC | 5}, \ | |
1605 | {"$cc6", RTYPE_FCC | RTYPE_CCC | 6}, \ | |
1606 | {"$cc7", RTYPE_FCC | RTYPE_CCC | 7} | |
1607 | ||
1608 | #define N32N64_SYMBOLIC_REGISTER_NAMES \ | |
1609 | {"$a4", RTYPE_GP | 8}, \ | |
1610 | {"$a5", RTYPE_GP | 9}, \ | |
1611 | {"$a6", RTYPE_GP | 10}, \ | |
1612 | {"$a7", RTYPE_GP | 11}, \ | |
1613 | {"$ta0", RTYPE_GP | 8}, /* alias for $a4 */ \ | |
1614 | {"$ta1", RTYPE_GP | 9}, /* alias for $a5 */ \ | |
1615 | {"$ta2", RTYPE_GP | 10}, /* alias for $a6 */ \ | |
1616 | {"$ta3", RTYPE_GP | 11}, /* alias for $a7 */ \ | |
1617 | {"$t0", RTYPE_GP | 12}, \ | |
1618 | {"$t1", RTYPE_GP | 13}, \ | |
1619 | {"$t2", RTYPE_GP | 14}, \ | |
1620 | {"$t3", RTYPE_GP | 15} | |
1621 | ||
1622 | #define O32_SYMBOLIC_REGISTER_NAMES \ | |
1623 | {"$t0", RTYPE_GP | 8}, \ | |
1624 | {"$t1", RTYPE_GP | 9}, \ | |
1625 | {"$t2", RTYPE_GP | 10}, \ | |
1626 | {"$t3", RTYPE_GP | 11}, \ | |
1627 | {"$t4", RTYPE_GP | 12}, \ | |
1628 | {"$t5", RTYPE_GP | 13}, \ | |
1629 | {"$t6", RTYPE_GP | 14}, \ | |
1630 | {"$t7", RTYPE_GP | 15}, \ | |
1631 | {"$ta0", RTYPE_GP | 12}, /* alias for $t4 */ \ | |
1632 | {"$ta1", RTYPE_GP | 13}, /* alias for $t5 */ \ | |
1633 | {"$ta2", RTYPE_GP | 14}, /* alias for $t6 */ \ | |
1634 | {"$ta3", RTYPE_GP | 15} /* alias for $t7 */ | |
1635 | ||
1636 | /* Remaining symbolic register names */ | |
1637 | #define SYMBOLIC_REGISTER_NAMES \ | |
1638 | {"$zero", RTYPE_GP | 0}, \ | |
1639 | {"$at", RTYPE_GP | 1}, \ | |
1640 | {"$AT", RTYPE_GP | 1}, \ | |
1641 | {"$v0", RTYPE_GP | 2}, \ | |
1642 | {"$v1", RTYPE_GP | 3}, \ | |
1643 | {"$a0", RTYPE_GP | 4}, \ | |
1644 | {"$a1", RTYPE_GP | 5}, \ | |
1645 | {"$a2", RTYPE_GP | 6}, \ | |
1646 | {"$a3", RTYPE_GP | 7}, \ | |
1647 | {"$s0", RTYPE_GP | 16}, \ | |
1648 | {"$s1", RTYPE_GP | 17}, \ | |
1649 | {"$s2", RTYPE_GP | 18}, \ | |
1650 | {"$s3", RTYPE_GP | 19}, \ | |
1651 | {"$s4", RTYPE_GP | 20}, \ | |
1652 | {"$s5", RTYPE_GP | 21}, \ | |
1653 | {"$s6", RTYPE_GP | 22}, \ | |
1654 | {"$s7", RTYPE_GP | 23}, \ | |
1655 | {"$t8", RTYPE_GP | 24}, \ | |
1656 | {"$t9", RTYPE_GP | 25}, \ | |
1657 | {"$k0", RTYPE_GP | 26}, \ | |
1658 | {"$kt0", RTYPE_GP | 26}, \ | |
1659 | {"$k1", RTYPE_GP | 27}, \ | |
1660 | {"$kt1", RTYPE_GP | 27}, \ | |
1661 | {"$gp", RTYPE_GP | 28}, \ | |
1662 | {"$sp", RTYPE_GP | 29}, \ | |
1663 | {"$s8", RTYPE_GP | 30}, \ | |
1664 | {"$fp", RTYPE_GP | 30}, \ | |
1665 | {"$ra", RTYPE_GP | 31} | |
1666 | ||
1667 | #define MIPS16_SPECIAL_REGISTER_NAMES \ | |
1668 | {"$pc", RTYPE_PC | 0} | |
1669 | ||
1670 | #define MDMX_VECTOR_REGISTER_NAMES \ | |
1671 | /* {"$v0", RTYPE_VEC | 0}, clash with REG 2 above */ \ | |
1672 | /* {"$v1", RTYPE_VEC | 1}, clash with REG 3 above */ \ | |
1673 | {"$v2", RTYPE_VEC | 2}, \ | |
1674 | {"$v3", RTYPE_VEC | 3}, \ | |
1675 | {"$v4", RTYPE_VEC | 4}, \ | |
1676 | {"$v5", RTYPE_VEC | 5}, \ | |
1677 | {"$v6", RTYPE_VEC | 6}, \ | |
1678 | {"$v7", RTYPE_VEC | 7}, \ | |
1679 | {"$v8", RTYPE_VEC | 8}, \ | |
1680 | {"$v9", RTYPE_VEC | 9}, \ | |
1681 | {"$v10", RTYPE_VEC | 10}, \ | |
1682 | {"$v11", RTYPE_VEC | 11}, \ | |
1683 | {"$v12", RTYPE_VEC | 12}, \ | |
1684 | {"$v13", RTYPE_VEC | 13}, \ | |
1685 | {"$v14", RTYPE_VEC | 14}, \ | |
1686 | {"$v15", RTYPE_VEC | 15}, \ | |
1687 | {"$v16", RTYPE_VEC | 16}, \ | |
1688 | {"$v17", RTYPE_VEC | 17}, \ | |
1689 | {"$v18", RTYPE_VEC | 18}, \ | |
1690 | {"$v19", RTYPE_VEC | 19}, \ | |
1691 | {"$v20", RTYPE_VEC | 20}, \ | |
1692 | {"$v21", RTYPE_VEC | 21}, \ | |
1693 | {"$v22", RTYPE_VEC | 22}, \ | |
1694 | {"$v23", RTYPE_VEC | 23}, \ | |
1695 | {"$v24", RTYPE_VEC | 24}, \ | |
1696 | {"$v25", RTYPE_VEC | 25}, \ | |
1697 | {"$v26", RTYPE_VEC | 26}, \ | |
1698 | {"$v27", RTYPE_VEC | 27}, \ | |
1699 | {"$v28", RTYPE_VEC | 28}, \ | |
1700 | {"$v29", RTYPE_VEC | 29}, \ | |
1701 | {"$v30", RTYPE_VEC | 30}, \ | |
1702 | {"$v31", RTYPE_VEC | 31} | |
1703 | ||
1704 | #define MIPS_DSP_ACCUMULATOR_NAMES \ | |
1705 | {"$ac0", RTYPE_ACC | 0}, \ | |
1706 | {"$ac1", RTYPE_ACC | 1}, \ | |
1707 | {"$ac2", RTYPE_ACC | 2}, \ | |
1708 | {"$ac3", RTYPE_ACC | 3} | |
1709 | ||
1710 | static const struct regname reg_names[] = { | |
1711 | GENERIC_REGISTER_NUMBERS, | |
1712 | FPU_REGISTER_NAMES, | |
1713 | FPU_CONDITION_CODE_NAMES, | |
1714 | COPROC_CONDITION_CODE_NAMES, | |
1715 | ||
1716 | /* The $txx registers depends on the abi, | |
1717 | these will be added later into the symbol table from | |
1718 | one of the tables below once mips_abi is set after | |
1719 | parsing of arguments from the command line. */ | |
1720 | SYMBOLIC_REGISTER_NAMES, | |
1721 | ||
1722 | MIPS16_SPECIAL_REGISTER_NAMES, | |
1723 | MDMX_VECTOR_REGISTER_NAMES, | |
1724 | MIPS_DSP_ACCUMULATOR_NAMES, | |
1725 | {0, 0} | |
1726 | }; | |
1727 | ||
1728 | static const struct regname reg_names_o32[] = { | |
1729 | O32_SYMBOLIC_REGISTER_NAMES, | |
1730 | {0, 0} | |
1731 | }; | |
1732 | ||
1733 | static const struct regname reg_names_n32n64[] = { | |
1734 | N32N64_SYMBOLIC_REGISTER_NAMES, | |
1735 | {0, 0} | |
1736 | }; | |
1737 | ||
1738 | static int | |
1739 | reg_lookup (char **s, unsigned int types, unsigned int *regnop) | |
1740 | { | |
1741 | symbolS *symbolP; | |
1742 | char *e; | |
1743 | char save_c; | |
1744 | int reg = -1; | |
1745 | ||
1746 | /* Find end of name. */ | |
1747 | e = *s; | |
1748 | if (is_name_beginner (*e)) | |
1749 | ++e; | |
1750 | while (is_part_of_name (*e)) | |
1751 | ++e; | |
1752 | ||
1753 | /* Terminate name. */ | |
1754 | save_c = *e; | |
1755 | *e = '\0'; | |
1756 | ||
1757 | /* Look for a register symbol. */ | |
1758 | if ((symbolP = symbol_find (*s)) && S_GET_SEGMENT (symbolP) == reg_section) | |
1759 | { | |
1760 | int r = S_GET_VALUE (symbolP); | |
1761 | if (r & types) | |
1762 | reg = r & RNUM_MASK; | |
1763 | else if ((types & RTYPE_VEC) && (r & ~1) == (RTYPE_GP | 2)) | |
1764 | /* Convert GP reg $v0/1 to MDMX reg $v0/1! */ | |
1765 | reg = (r & RNUM_MASK) - 2; | |
1766 | } | |
1767 | /* Else see if this is a register defined in an itbl entry. */ | |
1768 | else if ((types & RTYPE_GP) && itbl_have_entries) | |
1769 | { | |
1770 | char *n = *s; | |
1771 | unsigned long r; | |
1772 | ||
1773 | if (*n == '$') | |
1774 | ++n; | |
1775 | if (itbl_get_reg_val (n, &r)) | |
1776 | reg = r & RNUM_MASK; | |
1777 | } | |
1778 | ||
1779 | /* Advance to next token if a register was recognised. */ | |
1780 | if (reg >= 0) | |
1781 | *s = e; | |
1782 | else if (types & RWARN) | |
1783 | as_warn ("Unrecognized register name `%s'", *s); | |
1784 | ||
1785 | *e = save_c; | |
1786 | if (regnop) | |
1787 | *regnop = reg; | |
1788 | return reg >= 0; | |
1789 | } | |
1790 | ||
037b32b9 AN |
1791 | /* Return TRUE if opcode MO is valid on the currently selected ISA and |
1792 | architecture. If EXPANSIONP is TRUE then this check is done while | |
1793 | expanding a macro. Use is_opcode_valid_16 for MIPS16 opcodes. */ | |
1794 | ||
1795 | static bfd_boolean | |
1796 | is_opcode_valid (const struct mips_opcode *mo, bfd_boolean expansionp) | |
1797 | { | |
1798 | int isa = mips_opts.isa; | |
1799 | int fp_s, fp_d; | |
1800 | ||
1801 | if (mips_opts.ase_mdmx) | |
1802 | isa |= INSN_MDMX; | |
1803 | if (mips_opts.ase_dsp) | |
1804 | isa |= INSN_DSP; | |
1805 | if (mips_opts.ase_dsp && ISA_SUPPORTS_DSP64_ASE) | |
1806 | isa |= INSN_DSP64; | |
1807 | if (mips_opts.ase_dspr2) | |
1808 | isa |= INSN_DSPR2; | |
1809 | if (mips_opts.ase_mt) | |
1810 | isa |= INSN_MT; | |
1811 | if (mips_opts.ase_mips3d) | |
1812 | isa |= INSN_MIPS3D; | |
1813 | if (mips_opts.ase_smartmips) | |
1814 | isa |= INSN_SMARTMIPS; | |
1815 | ||
1816 | /* For user code we don't check for mips_opts.mips16 since we want | |
1817 | to allow jalx if -mips16 was specified on the command line. */ | |
1818 | if (expansionp ? mips_opts.mips16 : file_ase_mips16) | |
1819 | isa |= INSN_MIPS16; | |
1820 | ||
b19e8a9b AN |
1821 | /* Don't accept instructions based on the ISA if the CPU does not implement |
1822 | all the coprocessor insns. */ | |
1823 | if (NO_ISA_COP (mips_opts.arch) | |
1824 | && COP_INSN (mo->pinfo)) | |
1825 | isa = 0; | |
1826 | ||
037b32b9 AN |
1827 | if (!OPCODE_IS_MEMBER (mo, isa, mips_opts.arch)) |
1828 | return FALSE; | |
1829 | ||
1830 | /* Check whether the instruction or macro requires single-precision or | |
1831 | double-precision floating-point support. Note that this information is | |
1832 | stored differently in the opcode table for insns and macros. */ | |
1833 | if (mo->pinfo == INSN_MACRO) | |
1834 | { | |
1835 | fp_s = mo->pinfo2 & INSN2_M_FP_S; | |
1836 | fp_d = mo->pinfo2 & INSN2_M_FP_D; | |
1837 | } | |
1838 | else | |
1839 | { | |
1840 | fp_s = mo->pinfo & FP_S; | |
1841 | fp_d = mo->pinfo & FP_D; | |
1842 | } | |
1843 | ||
1844 | if (fp_d && (mips_opts.soft_float || mips_opts.single_float)) | |
1845 | return FALSE; | |
1846 | ||
1847 | if (fp_s && mips_opts.soft_float) | |
1848 | return FALSE; | |
1849 | ||
1850 | return TRUE; | |
1851 | } | |
1852 | ||
1853 | /* Return TRUE if the MIPS16 opcode MO is valid on the currently | |
1854 | selected ISA and architecture. */ | |
1855 | ||
1856 | static bfd_boolean | |
1857 | is_opcode_valid_16 (const struct mips_opcode *mo) | |
1858 | { | |
1859 | return OPCODE_IS_MEMBER (mo, mips_opts.isa, mips_opts.arch) ? TRUE : FALSE; | |
1860 | } | |
1861 | ||
707bfff6 TS |
1862 | /* This function is called once, at assembler startup time. It should set up |
1863 | all the tables, etc. that the MD part of the assembler will need. */ | |
156c2f8b | 1864 | |
252b5132 | 1865 | void |
17a2f251 | 1866 | md_begin (void) |
252b5132 | 1867 | { |
3994f87e | 1868 | const char *retval = NULL; |
156c2f8b | 1869 | int i = 0; |
252b5132 | 1870 | int broken = 0; |
1f25f5d3 | 1871 | |
0a44bf69 RS |
1872 | if (mips_pic != NO_PIC) |
1873 | { | |
1874 | if (g_switch_seen && g_switch_value != 0) | |
1875 | as_bad (_("-G may not be used in position-independent code")); | |
1876 | g_switch_value = 0; | |
1877 | } | |
1878 | ||
fef14a42 | 1879 | if (! bfd_set_arch_mach (stdoutput, bfd_arch_mips, file_mips_arch)) |
252b5132 RH |
1880 | as_warn (_("Could not set architecture and machine")); |
1881 | ||
252b5132 RH |
1882 | op_hash = hash_new (); |
1883 | ||
1884 | for (i = 0; i < NUMOPCODES;) | |
1885 | { | |
1886 | const char *name = mips_opcodes[i].name; | |
1887 | ||
17a2f251 | 1888 | retval = hash_insert (op_hash, name, (void *) &mips_opcodes[i]); |
252b5132 RH |
1889 | if (retval != NULL) |
1890 | { | |
1891 | fprintf (stderr, _("internal error: can't hash `%s': %s\n"), | |
1892 | mips_opcodes[i].name, retval); | |
1893 | /* Probably a memory allocation problem? Give up now. */ | |
1894 | as_fatal (_("Broken assembler. No assembly attempted.")); | |
1895 | } | |
1896 | do | |
1897 | { | |
1898 | if (mips_opcodes[i].pinfo != INSN_MACRO) | |
1899 | { | |
1900 | if (!validate_mips_insn (&mips_opcodes[i])) | |
1901 | broken = 1; | |
1e915849 RS |
1902 | if (nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0) |
1903 | { | |
1904 | create_insn (&nop_insn, mips_opcodes + i); | |
1905 | nop_insn.fixed_p = 1; | |
1906 | } | |
252b5132 RH |
1907 | } |
1908 | ++i; | |
1909 | } | |
1910 | while ((i < NUMOPCODES) && !strcmp (mips_opcodes[i].name, name)); | |
1911 | } | |
1912 | ||
1913 | mips16_op_hash = hash_new (); | |
1914 | ||
1915 | i = 0; | |
1916 | while (i < bfd_mips16_num_opcodes) | |
1917 | { | |
1918 | const char *name = mips16_opcodes[i].name; | |
1919 | ||
17a2f251 | 1920 | retval = hash_insert (mips16_op_hash, name, (void *) &mips16_opcodes[i]); |
252b5132 RH |
1921 | if (retval != NULL) |
1922 | as_fatal (_("internal: can't hash `%s': %s"), | |
1923 | mips16_opcodes[i].name, retval); | |
1924 | do | |
1925 | { | |
1926 | if (mips16_opcodes[i].pinfo != INSN_MACRO | |
1927 | && ((mips16_opcodes[i].match & mips16_opcodes[i].mask) | |
1928 | != mips16_opcodes[i].match)) | |
1929 | { | |
1930 | fprintf (stderr, _("internal error: bad mips16 opcode: %s %s\n"), | |
1931 | mips16_opcodes[i].name, mips16_opcodes[i].args); | |
1932 | broken = 1; | |
1933 | } | |
1e915849 RS |
1934 | if (mips16_nop_insn.insn_mo == NULL && strcmp (name, "nop") == 0) |
1935 | { | |
1936 | create_insn (&mips16_nop_insn, mips16_opcodes + i); | |
1937 | mips16_nop_insn.fixed_p = 1; | |
1938 | } | |
252b5132 RH |
1939 | ++i; |
1940 | } | |
1941 | while (i < bfd_mips16_num_opcodes | |
1942 | && strcmp (mips16_opcodes[i].name, name) == 0); | |
1943 | } | |
1944 | ||
1945 | if (broken) | |
1946 | as_fatal (_("Broken assembler. No assembly attempted.")); | |
1947 | ||
1948 | /* We add all the general register names to the symbol table. This | |
1949 | helps us detect invalid uses of them. */ | |
707bfff6 TS |
1950 | for (i = 0; reg_names[i].name; i++) |
1951 | symbol_table_insert (symbol_new (reg_names[i].name, reg_section, | |
8fc4ee9b | 1952 | reg_names[i].num, /* & RNUM_MASK, */ |
707bfff6 TS |
1953 | &zero_address_frag)); |
1954 | if (HAVE_NEWABI) | |
1955 | for (i = 0; reg_names_n32n64[i].name; i++) | |
1956 | symbol_table_insert (symbol_new (reg_names_n32n64[i].name, reg_section, | |
8fc4ee9b | 1957 | reg_names_n32n64[i].num, /* & RNUM_MASK, */ |
252b5132 | 1958 | &zero_address_frag)); |
707bfff6 TS |
1959 | else |
1960 | for (i = 0; reg_names_o32[i].name; i++) | |
1961 | symbol_table_insert (symbol_new (reg_names_o32[i].name, reg_section, | |
8fc4ee9b | 1962 | reg_names_o32[i].num, /* & RNUM_MASK, */ |
6047c971 | 1963 | &zero_address_frag)); |
6047c971 | 1964 | |
7d10b47d | 1965 | mips_no_prev_insn (); |
252b5132 RH |
1966 | |
1967 | mips_gprmask = 0; | |
1968 | mips_cprmask[0] = 0; | |
1969 | mips_cprmask[1] = 0; | |
1970 | mips_cprmask[2] = 0; | |
1971 | mips_cprmask[3] = 0; | |
1972 | ||
1973 | /* set the default alignment for the text section (2**2) */ | |
1974 | record_alignment (text_section, 2); | |
1975 | ||
4d0d148d | 1976 | bfd_set_gp_size (stdoutput, g_switch_value); |
252b5132 | 1977 | |
707bfff6 | 1978 | #ifdef OBJ_ELF |
f43abd2b | 1979 | if (IS_ELF) |
252b5132 | 1980 | { |
0a44bf69 RS |
1981 | /* On a native system other than VxWorks, sections must be aligned |
1982 | to 16 byte boundaries. When configured for an embedded ELF | |
1983 | target, we don't bother. */ | |
c41e87e3 CF |
1984 | if (strncmp (TARGET_OS, "elf", 3) != 0 |
1985 | && strncmp (TARGET_OS, "vxworks", 7) != 0) | |
252b5132 RH |
1986 | { |
1987 | (void) bfd_set_section_alignment (stdoutput, text_section, 4); | |
1988 | (void) bfd_set_section_alignment (stdoutput, data_section, 4); | |
1989 | (void) bfd_set_section_alignment (stdoutput, bss_section, 4); | |
1990 | } | |
1991 | ||
1992 | /* Create a .reginfo section for register masks and a .mdebug | |
1993 | section for debugging information. */ | |
1994 | { | |
1995 | segT seg; | |
1996 | subsegT subseg; | |
1997 | flagword flags; | |
1998 | segT sec; | |
1999 | ||
2000 | seg = now_seg; | |
2001 | subseg = now_subseg; | |
2002 | ||
2003 | /* The ABI says this section should be loaded so that the | |
2004 | running program can access it. However, we don't load it | |
2005 | if we are configured for an embedded target */ | |
2006 | flags = SEC_READONLY | SEC_DATA; | |
c41e87e3 | 2007 | if (strncmp (TARGET_OS, "elf", 3) != 0) |
252b5132 RH |
2008 | flags |= SEC_ALLOC | SEC_LOAD; |
2009 | ||
316f5878 | 2010 | if (mips_abi != N64_ABI) |
252b5132 RH |
2011 | { |
2012 | sec = subseg_new (".reginfo", (subsegT) 0); | |
2013 | ||
195325d2 TS |
2014 | bfd_set_section_flags (stdoutput, sec, flags); |
2015 | bfd_set_section_alignment (stdoutput, sec, HAVE_NEWABI ? 3 : 2); | |
bdaaa2e1 | 2016 | |
252b5132 | 2017 | mips_regmask_frag = frag_more (sizeof (Elf32_External_RegInfo)); |
252b5132 RH |
2018 | } |
2019 | else | |
2020 | { | |
2021 | /* The 64-bit ABI uses a .MIPS.options section rather than | |
2022 | .reginfo section. */ | |
2023 | sec = subseg_new (".MIPS.options", (subsegT) 0); | |
195325d2 TS |
2024 | bfd_set_section_flags (stdoutput, sec, flags); |
2025 | bfd_set_section_alignment (stdoutput, sec, 3); | |
252b5132 | 2026 | |
252b5132 RH |
2027 | /* Set up the option header. */ |
2028 | { | |
2029 | Elf_Internal_Options opthdr; | |
2030 | char *f; | |
2031 | ||
2032 | opthdr.kind = ODK_REGINFO; | |
2033 | opthdr.size = (sizeof (Elf_External_Options) | |
2034 | + sizeof (Elf64_External_RegInfo)); | |
2035 | opthdr.section = 0; | |
2036 | opthdr.info = 0; | |
2037 | f = frag_more (sizeof (Elf_External_Options)); | |
2038 | bfd_mips_elf_swap_options_out (stdoutput, &opthdr, | |
2039 | (Elf_External_Options *) f); | |
2040 | ||
2041 | mips_regmask_frag = frag_more (sizeof (Elf64_External_RegInfo)); | |
2042 | } | |
252b5132 RH |
2043 | } |
2044 | ||
2045 | if (ECOFF_DEBUGGING) | |
2046 | { | |
2047 | sec = subseg_new (".mdebug", (subsegT) 0); | |
2048 | (void) bfd_set_section_flags (stdoutput, sec, | |
2049 | SEC_HAS_CONTENTS | SEC_READONLY); | |
2050 | (void) bfd_set_section_alignment (stdoutput, sec, 2); | |
2051 | } | |
f43abd2b | 2052 | else if (mips_flag_pdr) |
ecb4347a DJ |
2053 | { |
2054 | pdr_seg = subseg_new (".pdr", (subsegT) 0); | |
2055 | (void) bfd_set_section_flags (stdoutput, pdr_seg, | |
2056 | SEC_READONLY | SEC_RELOC | |
2057 | | SEC_DEBUGGING); | |
2058 | (void) bfd_set_section_alignment (stdoutput, pdr_seg, 2); | |
2059 | } | |
252b5132 RH |
2060 | |
2061 | subseg_set (seg, subseg); | |
2062 | } | |
2063 | } | |
707bfff6 | 2064 | #endif /* OBJ_ELF */ |
252b5132 RH |
2065 | |
2066 | if (! ECOFF_DEBUGGING) | |
2067 | md_obj_begin (); | |
71400594 RS |
2068 | |
2069 | if (mips_fix_vr4120) | |
2070 | init_vr4120_conflicts (); | |
252b5132 RH |
2071 | } |
2072 | ||
2073 | void | |
17a2f251 | 2074 | md_mips_end (void) |
252b5132 RH |
2075 | { |
2076 | if (! ECOFF_DEBUGGING) | |
2077 | md_obj_end (); | |
2078 | } | |
2079 | ||
2080 | void | |
17a2f251 | 2081 | md_assemble (char *str) |
252b5132 RH |
2082 | { |
2083 | struct mips_cl_insn insn; | |
f6688943 TS |
2084 | bfd_reloc_code_real_type unused_reloc[3] |
2085 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
252b5132 RH |
2086 | |
2087 | imm_expr.X_op = O_absent; | |
5f74bc13 | 2088 | imm2_expr.X_op = O_absent; |
252b5132 | 2089 | offset_expr.X_op = O_absent; |
f6688943 TS |
2090 | imm_reloc[0] = BFD_RELOC_UNUSED; |
2091 | imm_reloc[1] = BFD_RELOC_UNUSED; | |
2092 | imm_reloc[2] = BFD_RELOC_UNUSED; | |
2093 | offset_reloc[0] = BFD_RELOC_UNUSED; | |
2094 | offset_reloc[1] = BFD_RELOC_UNUSED; | |
2095 | offset_reloc[2] = BFD_RELOC_UNUSED; | |
252b5132 RH |
2096 | |
2097 | if (mips_opts.mips16) | |
2098 | mips16_ip (str, &insn); | |
2099 | else | |
2100 | { | |
2101 | mips_ip (str, &insn); | |
beae10d5 KH |
2102 | DBG ((_("returned from mips_ip(%s) insn_opcode = 0x%x\n"), |
2103 | str, insn.insn_opcode)); | |
252b5132 RH |
2104 | } |
2105 | ||
2106 | if (insn_error) | |
2107 | { | |
2108 | as_bad ("%s `%s'", insn_error, str); | |
2109 | return; | |
2110 | } | |
2111 | ||
2112 | if (insn.insn_mo->pinfo == INSN_MACRO) | |
2113 | { | |
584892a6 | 2114 | macro_start (); |
252b5132 RH |
2115 | if (mips_opts.mips16) |
2116 | mips16_macro (&insn); | |
2117 | else | |
2118 | macro (&insn); | |
584892a6 | 2119 | macro_end (); |
252b5132 RH |
2120 | } |
2121 | else | |
2122 | { | |
2123 | if (imm_expr.X_op != O_absent) | |
4d7206a2 | 2124 | append_insn (&insn, &imm_expr, imm_reloc); |
252b5132 | 2125 | else if (offset_expr.X_op != O_absent) |
4d7206a2 | 2126 | append_insn (&insn, &offset_expr, offset_reloc); |
252b5132 | 2127 | else |
4d7206a2 | 2128 | append_insn (&insn, NULL, unused_reloc); |
252b5132 RH |
2129 | } |
2130 | } | |
2131 | ||
738e5348 RS |
2132 | /* Convenience functions for abstracting away the differences between |
2133 | MIPS16 and non-MIPS16 relocations. */ | |
2134 | ||
2135 | static inline bfd_boolean | |
2136 | mips16_reloc_p (bfd_reloc_code_real_type reloc) | |
2137 | { | |
2138 | switch (reloc) | |
2139 | { | |
2140 | case BFD_RELOC_MIPS16_JMP: | |
2141 | case BFD_RELOC_MIPS16_GPREL: | |
2142 | case BFD_RELOC_MIPS16_GOT16: | |
2143 | case BFD_RELOC_MIPS16_CALL16: | |
2144 | case BFD_RELOC_MIPS16_HI16_S: | |
2145 | case BFD_RELOC_MIPS16_HI16: | |
2146 | case BFD_RELOC_MIPS16_LO16: | |
2147 | return TRUE; | |
2148 | ||
2149 | default: | |
2150 | return FALSE; | |
2151 | } | |
2152 | } | |
2153 | ||
2154 | static inline bfd_boolean | |
2155 | got16_reloc_p (bfd_reloc_code_real_type reloc) | |
2156 | { | |
2157 | return reloc == BFD_RELOC_MIPS_GOT16 || reloc == BFD_RELOC_MIPS16_GOT16; | |
2158 | } | |
2159 | ||
2160 | static inline bfd_boolean | |
2161 | hi16_reloc_p (bfd_reloc_code_real_type reloc) | |
2162 | { | |
2163 | return reloc == BFD_RELOC_HI16_S || reloc == BFD_RELOC_MIPS16_HI16_S; | |
2164 | } | |
2165 | ||
2166 | static inline bfd_boolean | |
2167 | lo16_reloc_p (bfd_reloc_code_real_type reloc) | |
2168 | { | |
2169 | return reloc == BFD_RELOC_LO16 || reloc == BFD_RELOC_MIPS16_LO16; | |
2170 | } | |
2171 | ||
5919d012 | 2172 | /* Return true if the given relocation might need a matching %lo(). |
0a44bf69 RS |
2173 | This is only "might" because SVR4 R_MIPS_GOT16 relocations only |
2174 | need a matching %lo() when applied to local symbols. */ | |
5919d012 RS |
2175 | |
2176 | static inline bfd_boolean | |
17a2f251 | 2177 | reloc_needs_lo_p (bfd_reloc_code_real_type reloc) |
5919d012 | 2178 | { |
3b91255e | 2179 | return (HAVE_IN_PLACE_ADDENDS |
738e5348 | 2180 | && (hi16_reloc_p (reloc) |
0a44bf69 RS |
2181 | /* VxWorks R_MIPS_GOT16 relocs never need a matching %lo(); |
2182 | all GOT16 relocations evaluate to "G". */ | |
738e5348 RS |
2183 | || (got16_reloc_p (reloc) && mips_pic != VXWORKS_PIC))); |
2184 | } | |
2185 | ||
2186 | /* Return the type of %lo() reloc needed by RELOC, given that | |
2187 | reloc_needs_lo_p. */ | |
2188 | ||
2189 | static inline bfd_reloc_code_real_type | |
2190 | matching_lo_reloc (bfd_reloc_code_real_type reloc) | |
2191 | { | |
2192 | return mips16_reloc_p (reloc) ? BFD_RELOC_MIPS16_LO16 : BFD_RELOC_LO16; | |
5919d012 RS |
2193 | } |
2194 | ||
2195 | /* Return true if the given fixup is followed by a matching R_MIPS_LO16 | |
2196 | relocation. */ | |
2197 | ||
2198 | static inline bfd_boolean | |
17a2f251 | 2199 | fixup_has_matching_lo_p (fixS *fixp) |
5919d012 RS |
2200 | { |
2201 | return (fixp->fx_next != NULL | |
738e5348 | 2202 | && fixp->fx_next->fx_r_type == matching_lo_reloc (fixp->fx_r_type) |
5919d012 RS |
2203 | && fixp->fx_addsy == fixp->fx_next->fx_addsy |
2204 | && fixp->fx_offset == fixp->fx_next->fx_offset); | |
2205 | } | |
2206 | ||
252b5132 RH |
2207 | /* See whether instruction IP reads register REG. CLASS is the type |
2208 | of register. */ | |
2209 | ||
2210 | static int | |
71400594 | 2211 | insn_uses_reg (const struct mips_cl_insn *ip, unsigned int reg, |
17a2f251 | 2212 | enum mips_regclass class) |
252b5132 RH |
2213 | { |
2214 | if (class == MIPS16_REG) | |
2215 | { | |
2216 | assert (mips_opts.mips16); | |
2217 | reg = mips16_to_32_reg_map[reg]; | |
2218 | class = MIPS_GR_REG; | |
2219 | } | |
2220 | ||
85b51719 TS |
2221 | /* Don't report on general register ZERO, since it never changes. */ |
2222 | if (class == MIPS_GR_REG && reg == ZERO) | |
252b5132 RH |
2223 | return 0; |
2224 | ||
2225 | if (class == MIPS_FP_REG) | |
2226 | { | |
2227 | assert (! mips_opts.mips16); | |
2228 | /* If we are called with either $f0 or $f1, we must check $f0. | |
2229 | This is not optimal, because it will introduce an unnecessary | |
2230 | NOP between "lwc1 $f0" and "swc1 $f1". To fix this we would | |
2231 | need to distinguish reading both $f0 and $f1 or just one of | |
2232 | them. Note that we don't have to check the other way, | |
2233 | because there is no instruction that sets both $f0 and $f1 | |
2234 | and requires a delay. */ | |
2235 | if ((ip->insn_mo->pinfo & INSN_READ_FPR_S) | |
bf12938e | 2236 | && ((EXTRACT_OPERAND (FS, *ip) & ~(unsigned) 1) |
252b5132 RH |
2237 | == (reg &~ (unsigned) 1))) |
2238 | return 1; | |
2239 | if ((ip->insn_mo->pinfo & INSN_READ_FPR_T) | |
bf12938e | 2240 | && ((EXTRACT_OPERAND (FT, *ip) & ~(unsigned) 1) |
252b5132 RH |
2241 | == (reg &~ (unsigned) 1))) |
2242 | return 1; | |
2243 | } | |
2244 | else if (! mips_opts.mips16) | |
2245 | { | |
2246 | if ((ip->insn_mo->pinfo & INSN_READ_GPR_S) | |
bf12938e | 2247 | && EXTRACT_OPERAND (RS, *ip) == reg) |
252b5132 RH |
2248 | return 1; |
2249 | if ((ip->insn_mo->pinfo & INSN_READ_GPR_T) | |
bf12938e | 2250 | && EXTRACT_OPERAND (RT, *ip) == reg) |
252b5132 RH |
2251 | return 1; |
2252 | } | |
2253 | else | |
2254 | { | |
2255 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_X) | |
bf12938e | 2256 | && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, *ip)] == reg) |
252b5132 RH |
2257 | return 1; |
2258 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Y) | |
bf12938e | 2259 | && mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RY, *ip)] == reg) |
252b5132 RH |
2260 | return 1; |
2261 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_Z) | |
bf12938e | 2262 | && (mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip)] |
252b5132 RH |
2263 | == reg)) |
2264 | return 1; | |
2265 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_T) && reg == TREG) | |
2266 | return 1; | |
2267 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_SP) && reg == SP) | |
2268 | return 1; | |
2269 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_31) && reg == RA) | |
2270 | return 1; | |
2271 | if ((ip->insn_mo->pinfo & MIPS16_INSN_READ_GPR_X) | |
bf12938e | 2272 | && MIPS16_EXTRACT_OPERAND (REGR32, *ip) == reg) |
252b5132 RH |
2273 | return 1; |
2274 | } | |
2275 | ||
2276 | return 0; | |
2277 | } | |
2278 | ||
2279 | /* This function returns true if modifying a register requires a | |
2280 | delay. */ | |
2281 | ||
2282 | static int | |
17a2f251 | 2283 | reg_needs_delay (unsigned int reg) |
252b5132 RH |
2284 | { |
2285 | unsigned long prev_pinfo; | |
2286 | ||
47e39b9d | 2287 | prev_pinfo = history[0].insn_mo->pinfo; |
252b5132 | 2288 | if (! mips_opts.noreorder |
81912461 ILT |
2289 | && (((prev_pinfo & INSN_LOAD_MEMORY_DELAY) |
2290 | && ! gpr_interlocks) | |
2291 | || ((prev_pinfo & INSN_LOAD_COPROC_DELAY) | |
2292 | && ! cop_interlocks))) | |
252b5132 | 2293 | { |
81912461 ILT |
2294 | /* A load from a coprocessor or from memory. All load delays |
2295 | delay the use of general register rt for one instruction. */ | |
bdaaa2e1 | 2296 | /* Itbl support may require additional care here. */ |
252b5132 | 2297 | know (prev_pinfo & INSN_WRITE_GPR_T); |
bf12938e | 2298 | if (reg == EXTRACT_OPERAND (RT, history[0])) |
252b5132 RH |
2299 | return 1; |
2300 | } | |
2301 | ||
2302 | return 0; | |
2303 | } | |
2304 | ||
404a8071 RS |
2305 | /* Move all labels in insn_labels to the current insertion point. */ |
2306 | ||
2307 | static void | |
2308 | mips_move_labels (void) | |
2309 | { | |
a8dbcb85 | 2310 | segment_info_type *si = seg_info (now_seg); |
404a8071 RS |
2311 | struct insn_label_list *l; |
2312 | valueT val; | |
2313 | ||
a8dbcb85 | 2314 | for (l = si->label_list; l != NULL; l = l->next) |
404a8071 RS |
2315 | { |
2316 | assert (S_GET_SEGMENT (l->label) == now_seg); | |
2317 | symbol_set_frag (l->label, frag_now); | |
2318 | val = (valueT) frag_now_fix (); | |
2319 | /* mips16 text labels are stored as odd. */ | |
2320 | if (mips_opts.mips16) | |
2321 | ++val; | |
2322 | S_SET_VALUE (l->label, val); | |
2323 | } | |
2324 | } | |
2325 | ||
5f0fe04b TS |
2326 | static bfd_boolean |
2327 | s_is_linkonce (symbolS *sym, segT from_seg) | |
2328 | { | |
2329 | bfd_boolean linkonce = FALSE; | |
2330 | segT symseg = S_GET_SEGMENT (sym); | |
2331 | ||
2332 | if (symseg != from_seg && !S_IS_LOCAL (sym)) | |
2333 | { | |
2334 | if ((bfd_get_section_flags (stdoutput, symseg) & SEC_LINK_ONCE)) | |
2335 | linkonce = TRUE; | |
2336 | #ifdef OBJ_ELF | |
2337 | /* The GNU toolchain uses an extension for ELF: a section | |
2338 | beginning with the magic string .gnu.linkonce is a | |
2339 | linkonce section. */ | |
2340 | if (strncmp (segment_name (symseg), ".gnu.linkonce", | |
2341 | sizeof ".gnu.linkonce" - 1) == 0) | |
2342 | linkonce = TRUE; | |
2343 | #endif | |
2344 | } | |
2345 | return linkonce; | |
2346 | } | |
2347 | ||
252b5132 RH |
2348 | /* Mark instruction labels in mips16 mode. This permits the linker to |
2349 | handle them specially, such as generating jalx instructions when | |
2350 | needed. We also make them odd for the duration of the assembly, in | |
2351 | order to generate the right sort of code. We will make them even | |
2352 | in the adjust_symtab routine, while leaving them marked. This is | |
2353 | convenient for the debugger and the disassembler. The linker knows | |
2354 | to make them odd again. */ | |
2355 | ||
2356 | static void | |
17a2f251 | 2357 | mips16_mark_labels (void) |
252b5132 | 2358 | { |
a8dbcb85 TS |
2359 | segment_info_type *si = seg_info (now_seg); |
2360 | struct insn_label_list *l; | |
252b5132 | 2361 | |
a8dbcb85 TS |
2362 | if (!mips_opts.mips16) |
2363 | return; | |
2364 | ||
2365 | for (l = si->label_list; l != NULL; l = l->next) | |
2366 | { | |
2367 | symbolS *label = l->label; | |
2368 | ||
2369 | #if defined(OBJ_ELF) || defined(OBJ_MAYBE_ELF) | |
f43abd2b | 2370 | if (IS_ELF) |
30c09090 | 2371 | S_SET_OTHER (label, ELF_ST_SET_MIPS16 (S_GET_OTHER (label))); |
252b5132 | 2372 | #endif |
5f0fe04b TS |
2373 | if ((S_GET_VALUE (label) & 1) == 0 |
2374 | /* Don't adjust the address if the label is global or weak, or | |
2375 | in a link-once section, since we'll be emitting symbol reloc | |
2376 | references to it which will be patched up by the linker, and | |
2377 | the final value of the symbol may or may not be MIPS16. */ | |
2378 | && ! S_IS_WEAK (label) | |
2379 | && ! S_IS_EXTERNAL (label) | |
2380 | && ! s_is_linkonce (label, now_seg)) | |
a8dbcb85 | 2381 | S_SET_VALUE (label, S_GET_VALUE (label) | 1); |
252b5132 RH |
2382 | } |
2383 | } | |
2384 | ||
4d7206a2 RS |
2385 | /* End the current frag. Make it a variant frag and record the |
2386 | relaxation info. */ | |
2387 | ||
2388 | static void | |
2389 | relax_close_frag (void) | |
2390 | { | |
584892a6 | 2391 | mips_macro_warning.first_frag = frag_now; |
4d7206a2 | 2392 | frag_var (rs_machine_dependent, 0, 0, |
584892a6 | 2393 | RELAX_ENCODE (mips_relax.sizes[0], mips_relax.sizes[1]), |
4d7206a2 RS |
2394 | mips_relax.symbol, 0, (char *) mips_relax.first_fixup); |
2395 | ||
2396 | memset (&mips_relax.sizes, 0, sizeof (mips_relax.sizes)); | |
2397 | mips_relax.first_fixup = 0; | |
2398 | } | |
2399 | ||
2400 | /* Start a new relaxation sequence whose expansion depends on SYMBOL. | |
2401 | See the comment above RELAX_ENCODE for more details. */ | |
2402 | ||
2403 | static void | |
2404 | relax_start (symbolS *symbol) | |
2405 | { | |
2406 | assert (mips_relax.sequence == 0); | |
2407 | mips_relax.sequence = 1; | |
2408 | mips_relax.symbol = symbol; | |
2409 | } | |
2410 | ||
2411 | /* Start generating the second version of a relaxable sequence. | |
2412 | See the comment above RELAX_ENCODE for more details. */ | |
252b5132 RH |
2413 | |
2414 | static void | |
4d7206a2 RS |
2415 | relax_switch (void) |
2416 | { | |
2417 | assert (mips_relax.sequence == 1); | |
2418 | mips_relax.sequence = 2; | |
2419 | } | |
2420 | ||
2421 | /* End the current relaxable sequence. */ | |
2422 | ||
2423 | static void | |
2424 | relax_end (void) | |
2425 | { | |
2426 | assert (mips_relax.sequence == 2); | |
2427 | relax_close_frag (); | |
2428 | mips_relax.sequence = 0; | |
2429 | } | |
2430 | ||
71400594 RS |
2431 | /* Classify an instruction according to the FIX_VR4120_* enumeration. |
2432 | Return NUM_FIX_VR4120_CLASSES if the instruction isn't affected | |
2433 | by VR4120 errata. */ | |
4d7206a2 | 2434 | |
71400594 RS |
2435 | static unsigned int |
2436 | classify_vr4120_insn (const char *name) | |
252b5132 | 2437 | { |
71400594 RS |
2438 | if (strncmp (name, "macc", 4) == 0) |
2439 | return FIX_VR4120_MACC; | |
2440 | if (strncmp (name, "dmacc", 5) == 0) | |
2441 | return FIX_VR4120_DMACC; | |
2442 | if (strncmp (name, "mult", 4) == 0) | |
2443 | return FIX_VR4120_MULT; | |
2444 | if (strncmp (name, "dmult", 5) == 0) | |
2445 | return FIX_VR4120_DMULT; | |
2446 | if (strstr (name, "div")) | |
2447 | return FIX_VR4120_DIV; | |
2448 | if (strcmp (name, "mtlo") == 0 || strcmp (name, "mthi") == 0) | |
2449 | return FIX_VR4120_MTHILO; | |
2450 | return NUM_FIX_VR4120_CLASSES; | |
2451 | } | |
252b5132 | 2452 | |
71400594 RS |
2453 | /* Return the number of instructions that must separate INSN1 and INSN2, |
2454 | where INSN1 is the earlier instruction. Return the worst-case value | |
2455 | for any INSN2 if INSN2 is null. */ | |
252b5132 | 2456 | |
71400594 RS |
2457 | static unsigned int |
2458 | insns_between (const struct mips_cl_insn *insn1, | |
2459 | const struct mips_cl_insn *insn2) | |
2460 | { | |
2461 | unsigned long pinfo1, pinfo2; | |
2462 | ||
2463 | /* This function needs to know which pinfo flags are set for INSN2 | |
2464 | and which registers INSN2 uses. The former is stored in PINFO2 and | |
2465 | the latter is tested via INSN2_USES_REG. If INSN2 is null, PINFO2 | |
2466 | will have every flag set and INSN2_USES_REG will always return true. */ | |
2467 | pinfo1 = insn1->insn_mo->pinfo; | |
2468 | pinfo2 = insn2 ? insn2->insn_mo->pinfo : ~0U; | |
252b5132 | 2469 | |
71400594 RS |
2470 | #define INSN2_USES_REG(REG, CLASS) \ |
2471 | (insn2 == NULL || insn_uses_reg (insn2, REG, CLASS)) | |
2472 | ||
2473 | /* For most targets, write-after-read dependencies on the HI and LO | |
2474 | registers must be separated by at least two instructions. */ | |
2475 | if (!hilo_interlocks) | |
252b5132 | 2476 | { |
71400594 RS |
2477 | if ((pinfo1 & INSN_READ_LO) && (pinfo2 & INSN_WRITE_LO)) |
2478 | return 2; | |
2479 | if ((pinfo1 & INSN_READ_HI) && (pinfo2 & INSN_WRITE_HI)) | |
2480 | return 2; | |
2481 | } | |
2482 | ||
2483 | /* If we're working around r7000 errata, there must be two instructions | |
2484 | between an mfhi or mflo and any instruction that uses the result. */ | |
2485 | if (mips_7000_hilo_fix | |
2486 | && MF_HILO_INSN (pinfo1) | |
2487 | && INSN2_USES_REG (EXTRACT_OPERAND (RD, *insn1), MIPS_GR_REG)) | |
2488 | return 2; | |
2489 | ||
2490 | /* If working around VR4120 errata, check for combinations that need | |
2491 | a single intervening instruction. */ | |
2492 | if (mips_fix_vr4120) | |
2493 | { | |
2494 | unsigned int class1, class2; | |
252b5132 | 2495 | |
71400594 RS |
2496 | class1 = classify_vr4120_insn (insn1->insn_mo->name); |
2497 | if (class1 != NUM_FIX_VR4120_CLASSES && vr4120_conflicts[class1] != 0) | |
252b5132 | 2498 | { |
71400594 RS |
2499 | if (insn2 == NULL) |
2500 | return 1; | |
2501 | class2 = classify_vr4120_insn (insn2->insn_mo->name); | |
2502 | if (vr4120_conflicts[class1] & (1 << class2)) | |
2503 | return 1; | |
252b5132 | 2504 | } |
71400594 RS |
2505 | } |
2506 | ||
2507 | if (!mips_opts.mips16) | |
2508 | { | |
2509 | /* Check for GPR or coprocessor load delays. All such delays | |
2510 | are on the RT register. */ | |
2511 | /* Itbl support may require additional care here. */ | |
2512 | if ((!gpr_interlocks && (pinfo1 & INSN_LOAD_MEMORY_DELAY)) | |
2513 | || (!cop_interlocks && (pinfo1 & INSN_LOAD_COPROC_DELAY))) | |
252b5132 | 2514 | { |
71400594 RS |
2515 | know (pinfo1 & INSN_WRITE_GPR_T); |
2516 | if (INSN2_USES_REG (EXTRACT_OPERAND (RT, *insn1), MIPS_GR_REG)) | |
2517 | return 1; | |
2518 | } | |
2519 | ||
2520 | /* Check for generic coprocessor hazards. | |
2521 | ||
2522 | This case is not handled very well. There is no special | |
2523 | knowledge of CP0 handling, and the coprocessors other than | |
2524 | the floating point unit are not distinguished at all. */ | |
2525 | /* Itbl support may require additional care here. FIXME! | |
2526 | Need to modify this to include knowledge about | |
2527 | user specified delays! */ | |
2528 | else if ((!cop_interlocks && (pinfo1 & INSN_COPROC_MOVE_DELAY)) | |
2529 | || (!cop_mem_interlocks && (pinfo1 & INSN_COPROC_MEMORY_DELAY))) | |
2530 | { | |
2531 | /* Handle cases where INSN1 writes to a known general coprocessor | |
2532 | register. There must be a one instruction delay before INSN2 | |
2533 | if INSN2 reads that register, otherwise no delay is needed. */ | |
2534 | if (pinfo1 & INSN_WRITE_FPR_T) | |
252b5132 | 2535 | { |
71400594 RS |
2536 | if (INSN2_USES_REG (EXTRACT_OPERAND (FT, *insn1), MIPS_FP_REG)) |
2537 | return 1; | |
252b5132 | 2538 | } |
71400594 | 2539 | else if (pinfo1 & INSN_WRITE_FPR_S) |
252b5132 | 2540 | { |
71400594 RS |
2541 | if (INSN2_USES_REG (EXTRACT_OPERAND (FS, *insn1), MIPS_FP_REG)) |
2542 | return 1; | |
252b5132 RH |
2543 | } |
2544 | else | |
2545 | { | |
71400594 RS |
2546 | /* Read-after-write dependencies on the control registers |
2547 | require a two-instruction gap. */ | |
2548 | if ((pinfo1 & INSN_WRITE_COND_CODE) | |
2549 | && (pinfo2 & INSN_READ_COND_CODE)) | |
2550 | return 2; | |
2551 | ||
2552 | /* We don't know exactly what INSN1 does. If INSN2 is | |
2553 | also a coprocessor instruction, assume there must be | |
2554 | a one instruction gap. */ | |
2555 | if (pinfo2 & INSN_COP) | |
2556 | return 1; | |
252b5132 RH |
2557 | } |
2558 | } | |
6b76fefe | 2559 | |
71400594 RS |
2560 | /* Check for read-after-write dependencies on the coprocessor |
2561 | control registers in cases where INSN1 does not need a general | |
2562 | coprocessor delay. This means that INSN1 is a floating point | |
2563 | comparison instruction. */ | |
2564 | /* Itbl support may require additional care here. */ | |
2565 | else if (!cop_interlocks | |
2566 | && (pinfo1 & INSN_WRITE_COND_CODE) | |
2567 | && (pinfo2 & INSN_READ_COND_CODE)) | |
2568 | return 1; | |
2569 | } | |
6b76fefe | 2570 | |
71400594 | 2571 | #undef INSN2_USES_REG |
6b76fefe | 2572 | |
71400594 RS |
2573 | return 0; |
2574 | } | |
6b76fefe | 2575 | |
7d8e00cf RS |
2576 | /* Return the number of nops that would be needed to work around the |
2577 | VR4130 mflo/mfhi errata if instruction INSN immediately followed | |
2578 | the MAX_VR4130_NOPS instructions described by HISTORY. */ | |
2579 | ||
2580 | static int | |
2581 | nops_for_vr4130 (const struct mips_cl_insn *history, | |
2582 | const struct mips_cl_insn *insn) | |
2583 | { | |
2584 | int i, j, reg; | |
2585 | ||
2586 | /* Check if the instruction writes to HI or LO. MTHI and MTLO | |
2587 | are not affected by the errata. */ | |
2588 | if (insn != 0 | |
2589 | && ((insn->insn_mo->pinfo & (INSN_WRITE_HI | INSN_WRITE_LO)) == 0 | |
2590 | || strcmp (insn->insn_mo->name, "mtlo") == 0 | |
2591 | || strcmp (insn->insn_mo->name, "mthi") == 0)) | |
2592 | return 0; | |
2593 | ||
2594 | /* Search for the first MFLO or MFHI. */ | |
2595 | for (i = 0; i < MAX_VR4130_NOPS; i++) | |
2596 | if (!history[i].noreorder_p && MF_HILO_INSN (history[i].insn_mo->pinfo)) | |
2597 | { | |
2598 | /* Extract the destination register. */ | |
2599 | if (mips_opts.mips16) | |
2600 | reg = mips16_to_32_reg_map[MIPS16_EXTRACT_OPERAND (RX, history[i])]; | |
2601 | else | |
2602 | reg = EXTRACT_OPERAND (RD, history[i]); | |
2603 | ||
2604 | /* No nops are needed if INSN reads that register. */ | |
2605 | if (insn != NULL && insn_uses_reg (insn, reg, MIPS_GR_REG)) | |
2606 | return 0; | |
2607 | ||
2608 | /* ...or if any of the intervening instructions do. */ | |
2609 | for (j = 0; j < i; j++) | |
2610 | if (insn_uses_reg (&history[j], reg, MIPS_GR_REG)) | |
2611 | return 0; | |
2612 | ||
2613 | return MAX_VR4130_NOPS - i; | |
2614 | } | |
2615 | return 0; | |
2616 | } | |
2617 | ||
71400594 RS |
2618 | /* Return the number of nops that would be needed if instruction INSN |
2619 | immediately followed the MAX_NOPS instructions given by HISTORY, | |
2620 | where HISTORY[0] is the most recent instruction. If INSN is null, | |
2621 | return the worse-case number of nops for any instruction. */ | |
bdaaa2e1 | 2622 | |
71400594 RS |
2623 | static int |
2624 | nops_for_insn (const struct mips_cl_insn *history, | |
2625 | const struct mips_cl_insn *insn) | |
2626 | { | |
2627 | int i, nops, tmp_nops; | |
bdaaa2e1 | 2628 | |
71400594 | 2629 | nops = 0; |
7d8e00cf | 2630 | for (i = 0; i < MAX_DELAY_NOPS; i++) |
71400594 RS |
2631 | if (!history[i].noreorder_p) |
2632 | { | |
2633 | tmp_nops = insns_between (history + i, insn) - i; | |
2634 | if (tmp_nops > nops) | |
2635 | nops = tmp_nops; | |
2636 | } | |
7d8e00cf RS |
2637 | |
2638 | if (mips_fix_vr4130) | |
2639 | { | |
2640 | tmp_nops = nops_for_vr4130 (history, insn); | |
2641 | if (tmp_nops > nops) | |
2642 | nops = tmp_nops; | |
2643 | } | |
2644 | ||
71400594 RS |
2645 | return nops; |
2646 | } | |
252b5132 | 2647 | |
71400594 RS |
2648 | /* The variable arguments provide NUM_INSNS extra instructions that |
2649 | might be added to HISTORY. Return the largest number of nops that | |
2650 | would be needed after the extended sequence. */ | |
252b5132 | 2651 | |
71400594 RS |
2652 | static int |
2653 | nops_for_sequence (int num_insns, const struct mips_cl_insn *history, ...) | |
2654 | { | |
2655 | va_list args; | |
2656 | struct mips_cl_insn buffer[MAX_NOPS]; | |
2657 | struct mips_cl_insn *cursor; | |
2658 | int nops; | |
2659 | ||
2660 | va_start (args, history); | |
2661 | cursor = buffer + num_insns; | |
2662 | memcpy (cursor, history, (MAX_NOPS - num_insns) * sizeof (*cursor)); | |
2663 | while (cursor > buffer) | |
2664 | *--cursor = *va_arg (args, const struct mips_cl_insn *); | |
2665 | ||
2666 | nops = nops_for_insn (buffer, NULL); | |
2667 | va_end (args); | |
2668 | return nops; | |
2669 | } | |
252b5132 | 2670 | |
71400594 RS |
2671 | /* Like nops_for_insn, but if INSN is a branch, take into account the |
2672 | worst-case delay for the branch target. */ | |
252b5132 | 2673 | |
71400594 RS |
2674 | static int |
2675 | nops_for_insn_or_target (const struct mips_cl_insn *history, | |
2676 | const struct mips_cl_insn *insn) | |
2677 | { | |
2678 | int nops, tmp_nops; | |
60b63b72 | 2679 | |
71400594 RS |
2680 | nops = nops_for_insn (history, insn); |
2681 | if (insn->insn_mo->pinfo & (INSN_UNCOND_BRANCH_DELAY | |
2682 | | INSN_COND_BRANCH_DELAY | |
2683 | | INSN_COND_BRANCH_LIKELY)) | |
2684 | { | |
2685 | tmp_nops = nops_for_sequence (2, history, insn, NOP_INSN); | |
2686 | if (tmp_nops > nops) | |
2687 | nops = tmp_nops; | |
2688 | } | |
2689 | else if (mips_opts.mips16 && (insn->insn_mo->pinfo & MIPS16_INSN_BRANCH)) | |
2690 | { | |
2691 | tmp_nops = nops_for_sequence (1, history, insn); | |
2692 | if (tmp_nops > nops) | |
2693 | nops = tmp_nops; | |
2694 | } | |
2695 | return nops; | |
2696 | } | |
2697 | ||
2698 | /* Output an instruction. IP is the instruction information. | |
2699 | ADDRESS_EXPR is an operand of the instruction to be used with | |
2700 | RELOC_TYPE. */ | |
2701 | ||
2702 | static void | |
2703 | append_insn (struct mips_cl_insn *ip, expressionS *address_expr, | |
2704 | bfd_reloc_code_real_type *reloc_type) | |
2705 | { | |
3994f87e | 2706 | unsigned long prev_pinfo, pinfo; |
71400594 RS |
2707 | relax_stateT prev_insn_frag_type = 0; |
2708 | bfd_boolean relaxed_branch = FALSE; | |
a8dbcb85 | 2709 | segment_info_type *si = seg_info (now_seg); |
71400594 RS |
2710 | |
2711 | /* Mark instruction labels in mips16 mode. */ | |
2712 | mips16_mark_labels (); | |
2713 | ||
2714 | prev_pinfo = history[0].insn_mo->pinfo; | |
2715 | pinfo = ip->insn_mo->pinfo; | |
2716 | ||
2717 | if (mips_relax.sequence != 2 && !mips_opts.noreorder) | |
2718 | { | |
2719 | /* There are a lot of optimizations we could do that we don't. | |
2720 | In particular, we do not, in general, reorder instructions. | |
2721 | If you use gcc with optimization, it will reorder | |
2722 | instructions and generally do much more optimization then we | |
2723 | do here; repeating all that work in the assembler would only | |
2724 | benefit hand written assembly code, and does not seem worth | |
2725 | it. */ | |
2726 | int nops = (mips_optimize == 0 | |
2727 | ? nops_for_insn (history, NULL) | |
2728 | : nops_for_insn_or_target (history, ip)); | |
2729 | if (nops > 0) | |
252b5132 RH |
2730 | { |
2731 | fragS *old_frag; | |
2732 | unsigned long old_frag_offset; | |
2733 | int i; | |
252b5132 RH |
2734 | |
2735 | old_frag = frag_now; | |
2736 | old_frag_offset = frag_now_fix (); | |
2737 | ||
2738 | for (i = 0; i < nops; i++) | |
2739 | emit_nop (); | |
2740 | ||
2741 | if (listing) | |
2742 | { | |
2743 | listing_prev_line (); | |
2744 | /* We may be at the start of a variant frag. In case we | |
2745 | are, make sure there is enough space for the frag | |
2746 | after the frags created by listing_prev_line. The | |
2747 | argument to frag_grow here must be at least as large | |
2748 | as the argument to all other calls to frag_grow in | |
2749 | this file. We don't have to worry about being in the | |
2750 | middle of a variant frag, because the variants insert | |
2751 | all needed nop instructions themselves. */ | |
2752 | frag_grow (40); | |
2753 | } | |
2754 | ||
404a8071 | 2755 | mips_move_labels (); |
252b5132 RH |
2756 | |
2757 | #ifndef NO_ECOFF_DEBUGGING | |
2758 | if (ECOFF_DEBUGGING) | |
2759 | ecoff_fix_loc (old_frag, old_frag_offset); | |
2760 | #endif | |
2761 | } | |
71400594 RS |
2762 | } |
2763 | else if (mips_relax.sequence != 2 && prev_nop_frag != NULL) | |
2764 | { | |
2765 | /* Work out how many nops in prev_nop_frag are needed by IP. */ | |
2766 | int nops = nops_for_insn_or_target (history, ip); | |
2767 | assert (nops <= prev_nop_frag_holds); | |
252b5132 | 2768 | |
71400594 RS |
2769 | /* Enforce NOPS as a minimum. */ |
2770 | if (nops > prev_nop_frag_required) | |
2771 | prev_nop_frag_required = nops; | |
252b5132 | 2772 | |
71400594 RS |
2773 | if (prev_nop_frag_holds == prev_nop_frag_required) |
2774 | { | |
2775 | /* Settle for the current number of nops. Update the history | |
2776 | accordingly (for the benefit of any future .set reorder code). */ | |
2777 | prev_nop_frag = NULL; | |
2778 | insert_into_history (prev_nop_frag_since, | |
2779 | prev_nop_frag_holds, NOP_INSN); | |
2780 | } | |
2781 | else | |
2782 | { | |
2783 | /* Allow this instruction to replace one of the nops that was | |
2784 | tentatively added to prev_nop_frag. */ | |
2785 | prev_nop_frag->fr_fix -= mips_opts.mips16 ? 2 : 4; | |
2786 | prev_nop_frag_holds--; | |
2787 | prev_nop_frag_since++; | |
252b5132 RH |
2788 | } |
2789 | } | |
2790 | ||
58e2ea4d MR |
2791 | #ifdef OBJ_ELF |
2792 | /* The value passed to dwarf2_emit_insn is the distance between | |
2793 | the beginning of the current instruction and the address that | |
2794 | should be recorded in the debug tables. For MIPS16 debug info | |
2795 | we want to use ISA-encoded addresses, so we pass -1 for an | |
2796 | address higher by one than the current. */ | |
2797 | dwarf2_emit_insn (mips_opts.mips16 ? -1 : 0); | |
2798 | #endif | |
2799 | ||
895921c9 | 2800 | /* Record the frag type before frag_var. */ |
47e39b9d RS |
2801 | if (history[0].frag) |
2802 | prev_insn_frag_type = history[0].frag->fr_type; | |
895921c9 | 2803 | |
4d7206a2 | 2804 | if (address_expr |
0b25d3e6 | 2805 | && *reloc_type == BFD_RELOC_16_PCREL_S2 |
4a6a3df4 AO |
2806 | && (pinfo & INSN_UNCOND_BRANCH_DELAY || pinfo & INSN_COND_BRANCH_DELAY |
2807 | || pinfo & INSN_COND_BRANCH_LIKELY) | |
2808 | && mips_relax_branch | |
2809 | /* Don't try branch relaxation within .set nomacro, or within | |
2810 | .set noat if we use $at for PIC computations. If it turns | |
2811 | out that the branch was out-of-range, we'll get an error. */ | |
2812 | && !mips_opts.warn_about_macros | |
741fe287 | 2813 | && (mips_opts.at || mips_pic == NO_PIC) |
4a6a3df4 AO |
2814 | && !mips_opts.mips16) |
2815 | { | |
895921c9 | 2816 | relaxed_branch = TRUE; |
1e915849 RS |
2817 | add_relaxed_insn (ip, (relaxed_branch_length |
2818 | (NULL, NULL, | |
2819 | (pinfo & INSN_UNCOND_BRANCH_DELAY) ? -1 | |
2820 | : (pinfo & INSN_COND_BRANCH_LIKELY) ? 1 | |
2821 | : 0)), 4, | |
2822 | RELAX_BRANCH_ENCODE | |
2823 | (pinfo & INSN_UNCOND_BRANCH_DELAY, | |
2824 | pinfo & INSN_COND_BRANCH_LIKELY, | |
2825 | pinfo & INSN_WRITE_GPR_31, | |
2826 | 0), | |
2827 | address_expr->X_add_symbol, | |
2828 | address_expr->X_add_number); | |
4a6a3df4 AO |
2829 | *reloc_type = BFD_RELOC_UNUSED; |
2830 | } | |
2831 | else if (*reloc_type > BFD_RELOC_UNUSED) | |
252b5132 RH |
2832 | { |
2833 | /* We need to set up a variant frag. */ | |
2834 | assert (mips_opts.mips16 && address_expr != NULL); | |
1e915849 RS |
2835 | add_relaxed_insn (ip, 4, 0, |
2836 | RELAX_MIPS16_ENCODE | |
2837 | (*reloc_type - BFD_RELOC_UNUSED, | |
2838 | mips16_small, mips16_ext, | |
2839 | prev_pinfo & INSN_UNCOND_BRANCH_DELAY, | |
2840 | history[0].mips16_absolute_jump_p), | |
2841 | make_expr_symbol (address_expr), 0); | |
252b5132 | 2842 | } |
252b5132 RH |
2843 | else if (mips_opts.mips16 |
2844 | && ! ip->use_extend | |
f6688943 | 2845 | && *reloc_type != BFD_RELOC_MIPS16_JMP) |
9497f5ac | 2846 | { |
b8ee1a6e DU |
2847 | if ((pinfo & INSN_UNCOND_BRANCH_DELAY) == 0) |
2848 | /* Make sure there is enough room to swap this instruction with | |
2849 | a following jump instruction. */ | |
2850 | frag_grow (6); | |
1e915849 | 2851 | add_fixed_insn (ip); |
252b5132 RH |
2852 | } |
2853 | else | |
2854 | { | |
2855 | if (mips_opts.mips16 | |
2856 | && mips_opts.noreorder | |
2857 | && (prev_pinfo & INSN_UNCOND_BRANCH_DELAY) != 0) | |
2858 | as_warn (_("extended instruction in delay slot")); | |
2859 | ||
4d7206a2 RS |
2860 | if (mips_relax.sequence) |
2861 | { | |
2862 | /* If we've reached the end of this frag, turn it into a variant | |
2863 | frag and record the information for the instructions we've | |
2864 | written so far. */ | |
2865 | if (frag_room () < 4) | |
2866 | relax_close_frag (); | |
2867 | mips_relax.sizes[mips_relax.sequence - 1] += 4; | |
2868 | } | |
2869 | ||
584892a6 RS |
2870 | if (mips_relax.sequence != 2) |
2871 | mips_macro_warning.sizes[0] += 4; | |
2872 | if (mips_relax.sequence != 1) | |
2873 | mips_macro_warning.sizes[1] += 4; | |
2874 | ||
1e915849 RS |
2875 | if (mips_opts.mips16) |
2876 | { | |
2877 | ip->fixed_p = 1; | |
2878 | ip->mips16_absolute_jump_p = (*reloc_type == BFD_RELOC_MIPS16_JMP); | |
2879 | } | |
2880 | add_fixed_insn (ip); | |
252b5132 RH |
2881 | } |
2882 | ||
01a3f561 | 2883 | if (address_expr != NULL && *reloc_type <= BFD_RELOC_UNUSED) |
252b5132 RH |
2884 | { |
2885 | if (address_expr->X_op == O_constant) | |
2886 | { | |
f17c130b | 2887 | unsigned int tmp; |
f6688943 TS |
2888 | |
2889 | switch (*reloc_type) | |
252b5132 RH |
2890 | { |
2891 | case BFD_RELOC_32: | |
2892 | ip->insn_opcode |= address_expr->X_add_number; | |
2893 | break; | |
2894 | ||
f6688943 | 2895 | case BFD_RELOC_MIPS_HIGHEST: |
f17c130b AM |
2896 | tmp = (address_expr->X_add_number + 0x800080008000ull) >> 48; |
2897 | ip->insn_opcode |= tmp & 0xffff; | |
f6688943 TS |
2898 | break; |
2899 | ||
2900 | case BFD_RELOC_MIPS_HIGHER: | |
f17c130b AM |
2901 | tmp = (address_expr->X_add_number + 0x80008000ull) >> 32; |
2902 | ip->insn_opcode |= tmp & 0xffff; | |
f6688943 TS |
2903 | break; |
2904 | ||
2905 | case BFD_RELOC_HI16_S: | |
f17c130b AM |
2906 | tmp = (address_expr->X_add_number + 0x8000) >> 16; |
2907 | ip->insn_opcode |= tmp & 0xffff; | |
f6688943 TS |
2908 | break; |
2909 | ||
2910 | case BFD_RELOC_HI16: | |
2911 | ip->insn_opcode |= (address_expr->X_add_number >> 16) & 0xffff; | |
2912 | break; | |
2913 | ||
01a3f561 | 2914 | case BFD_RELOC_UNUSED: |
252b5132 | 2915 | case BFD_RELOC_LO16: |
ed6fb7bd | 2916 | case BFD_RELOC_MIPS_GOT_DISP: |
252b5132 RH |
2917 | ip->insn_opcode |= address_expr->X_add_number & 0xffff; |
2918 | break; | |
2919 | ||
2920 | case BFD_RELOC_MIPS_JMP: | |
2921 | if ((address_expr->X_add_number & 3) != 0) | |
2922 | as_bad (_("jump to misaligned address (0x%lx)"), | |
2923 | (unsigned long) address_expr->X_add_number); | |
2924 | ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0x3ffffff; | |
2925 | break; | |
2926 | ||
2927 | case BFD_RELOC_MIPS16_JMP: | |
2928 | if ((address_expr->X_add_number & 3) != 0) | |
2929 | as_bad (_("jump to misaligned address (0x%lx)"), | |
2930 | (unsigned long) address_expr->X_add_number); | |
2931 | ip->insn_opcode |= | |
2932 | (((address_expr->X_add_number & 0x7c0000) << 3) | |
2933 | | ((address_expr->X_add_number & 0xf800000) >> 7) | |
2934 | | ((address_expr->X_add_number & 0x3fffc) >> 2)); | |
2935 | break; | |
2936 | ||
252b5132 | 2937 | case BFD_RELOC_16_PCREL_S2: |
bad36eac DJ |
2938 | if ((address_expr->X_add_number & 3) != 0) |
2939 | as_bad (_("branch to misaligned address (0x%lx)"), | |
2940 | (unsigned long) address_expr->X_add_number); | |
2941 | if (mips_relax_branch) | |
2942 | goto need_reloc; | |
2943 | if ((address_expr->X_add_number + 0x20000) & ~0x3ffff) | |
2944 | as_bad (_("branch address range overflow (0x%lx)"), | |
2945 | (unsigned long) address_expr->X_add_number); | |
2946 | ip->insn_opcode |= (address_expr->X_add_number >> 2) & 0xffff; | |
2947 | break; | |
252b5132 RH |
2948 | |
2949 | default: | |
2950 | internalError (); | |
2951 | } | |
2952 | } | |
01a3f561 | 2953 | else if (*reloc_type < BFD_RELOC_UNUSED) |
252b5132 | 2954 | need_reloc: |
4d7206a2 RS |
2955 | { |
2956 | reloc_howto_type *howto; | |
2957 | int i; | |
34ce925e | 2958 | |
4d7206a2 RS |
2959 | /* In a compound relocation, it is the final (outermost) |
2960 | operator that determines the relocated field. */ | |
2961 | for (i = 1; i < 3; i++) | |
2962 | if (reloc_type[i] == BFD_RELOC_UNUSED) | |
2963 | break; | |
34ce925e | 2964 | |
4d7206a2 | 2965 | howto = bfd_reloc_type_lookup (stdoutput, reloc_type[i - 1]); |
1e915849 RS |
2966 | ip->fixp[0] = fix_new_exp (ip->frag, ip->where, |
2967 | bfd_get_reloc_size (howto), | |
2968 | address_expr, | |
2969 | reloc_type[0] == BFD_RELOC_16_PCREL_S2, | |
2970 | reloc_type[0]); | |
4d7206a2 | 2971 | |
b314ec0e RS |
2972 | /* Tag symbols that have a R_MIPS16_26 relocation against them. */ |
2973 | if (reloc_type[0] == BFD_RELOC_MIPS16_JMP | |
2974 | && ip->fixp[0]->fx_addsy) | |
2975 | *symbol_get_tc (ip->fixp[0]->fx_addsy) = 1; | |
2976 | ||
4d7206a2 RS |
2977 | /* These relocations can have an addend that won't fit in |
2978 | 4 octets for 64bit assembly. */ | |
2979 | if (HAVE_64BIT_GPRS | |
2980 | && ! howto->partial_inplace | |
2981 | && (reloc_type[0] == BFD_RELOC_16 | |
2982 | || reloc_type[0] == BFD_RELOC_32 | |
2983 | || reloc_type[0] == BFD_RELOC_MIPS_JMP | |
4d7206a2 RS |
2984 | || reloc_type[0] == BFD_RELOC_GPREL16 |
2985 | || reloc_type[0] == BFD_RELOC_MIPS_LITERAL | |
2986 | || reloc_type[0] == BFD_RELOC_GPREL32 | |
2987 | || reloc_type[0] == BFD_RELOC_64 | |
2988 | || reloc_type[0] == BFD_RELOC_CTOR | |
2989 | || reloc_type[0] == BFD_RELOC_MIPS_SUB | |
2990 | || reloc_type[0] == BFD_RELOC_MIPS_HIGHEST | |
2991 | || reloc_type[0] == BFD_RELOC_MIPS_HIGHER | |
2992 | || reloc_type[0] == BFD_RELOC_MIPS_SCN_DISP | |
2993 | || reloc_type[0] == BFD_RELOC_MIPS_REL16 | |
d6f16593 MR |
2994 | || reloc_type[0] == BFD_RELOC_MIPS_RELGOT |
2995 | || reloc_type[0] == BFD_RELOC_MIPS16_GPREL | |
738e5348 RS |
2996 | || hi16_reloc_p (reloc_type[0]) |
2997 | || lo16_reloc_p (reloc_type[0]))) | |
1e915849 | 2998 | ip->fixp[0]->fx_no_overflow = 1; |
4d7206a2 RS |
2999 | |
3000 | if (mips_relax.sequence) | |
3001 | { | |
3002 | if (mips_relax.first_fixup == 0) | |
1e915849 | 3003 | mips_relax.first_fixup = ip->fixp[0]; |
4d7206a2 RS |
3004 | } |
3005 | else if (reloc_needs_lo_p (*reloc_type)) | |
3006 | { | |
3007 | struct mips_hi_fixup *hi_fixup; | |
252b5132 | 3008 | |
4d7206a2 RS |
3009 | /* Reuse the last entry if it already has a matching %lo. */ |
3010 | hi_fixup = mips_hi_fixup_list; | |
3011 | if (hi_fixup == 0 | |
3012 | || !fixup_has_matching_lo_p (hi_fixup->fixp)) | |
3013 | { | |
3014 | hi_fixup = ((struct mips_hi_fixup *) | |
3015 | xmalloc (sizeof (struct mips_hi_fixup))); | |
3016 | hi_fixup->next = mips_hi_fixup_list; | |
3017 | mips_hi_fixup_list = hi_fixup; | |
252b5132 | 3018 | } |
1e915849 | 3019 | hi_fixup->fixp = ip->fixp[0]; |
4d7206a2 RS |
3020 | hi_fixup->seg = now_seg; |
3021 | } | |
f6688943 | 3022 | |
4d7206a2 RS |
3023 | /* Add fixups for the second and third relocations, if given. |
3024 | Note that the ABI allows the second relocation to be | |
3025 | against RSS_UNDEF, RSS_GP, RSS_GP0 or RSS_LOC. At the | |
3026 | moment we only use RSS_UNDEF, but we could add support | |
3027 | for the others if it ever becomes necessary. */ | |
3028 | for (i = 1; i < 3; i++) | |
3029 | if (reloc_type[i] != BFD_RELOC_UNUSED) | |
3030 | { | |
1e915849 RS |
3031 | ip->fixp[i] = fix_new (ip->frag, ip->where, |
3032 | ip->fixp[0]->fx_size, NULL, 0, | |
3033 | FALSE, reloc_type[i]); | |
b1dca8ee RS |
3034 | |
3035 | /* Use fx_tcbit to mark compound relocs. */ | |
1e915849 RS |
3036 | ip->fixp[0]->fx_tcbit = 1; |
3037 | ip->fixp[i]->fx_tcbit = 1; | |
4d7206a2 | 3038 | } |
252b5132 RH |
3039 | } |
3040 | } | |
1e915849 | 3041 | install_insn (ip); |
252b5132 RH |
3042 | |
3043 | /* Update the register mask information. */ | |
3044 | if (! mips_opts.mips16) | |
3045 | { | |
3046 | if (pinfo & INSN_WRITE_GPR_D) | |
bf12938e | 3047 | mips_gprmask |= 1 << EXTRACT_OPERAND (RD, *ip); |
252b5132 | 3048 | if ((pinfo & (INSN_WRITE_GPR_T | INSN_READ_GPR_T)) != 0) |
bf12938e | 3049 | mips_gprmask |= 1 << EXTRACT_OPERAND (RT, *ip); |
252b5132 | 3050 | if (pinfo & INSN_READ_GPR_S) |
bf12938e | 3051 | mips_gprmask |= 1 << EXTRACT_OPERAND (RS, *ip); |
252b5132 | 3052 | if (pinfo & INSN_WRITE_GPR_31) |
f9419b05 | 3053 | mips_gprmask |= 1 << RA; |
252b5132 | 3054 | if (pinfo & INSN_WRITE_FPR_D) |
bf12938e | 3055 | mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FD, *ip); |
252b5132 | 3056 | if ((pinfo & (INSN_WRITE_FPR_S | INSN_READ_FPR_S)) != 0) |
bf12938e | 3057 | mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FS, *ip); |
252b5132 | 3058 | if ((pinfo & (INSN_WRITE_FPR_T | INSN_READ_FPR_T)) != 0) |
bf12938e | 3059 | mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FT, *ip); |
252b5132 | 3060 | if ((pinfo & INSN_READ_FPR_R) != 0) |
bf12938e | 3061 | mips_cprmask[1] |= 1 << EXTRACT_OPERAND (FR, *ip); |
252b5132 RH |
3062 | if (pinfo & INSN_COP) |
3063 | { | |
bdaaa2e1 KH |
3064 | /* We don't keep enough information to sort these cases out. |
3065 | The itbl support does keep this information however, although | |
3066 | we currently don't support itbl fprmats as part of the cop | |
3067 | instruction. May want to add this support in the future. */ | |
252b5132 RH |
3068 | } |
3069 | /* Never set the bit for $0, which is always zero. */ | |
beae10d5 | 3070 | mips_gprmask &= ~1 << 0; |
252b5132 RH |
3071 | } |
3072 | else | |
3073 | { | |
3074 | if (pinfo & (MIPS16_INSN_WRITE_X | MIPS16_INSN_READ_X)) | |
bf12938e | 3075 | mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RX, *ip); |
252b5132 | 3076 | if (pinfo & (MIPS16_INSN_WRITE_Y | MIPS16_INSN_READ_Y)) |
bf12938e | 3077 | mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RY, *ip); |
252b5132 | 3078 | if (pinfo & MIPS16_INSN_WRITE_Z) |
bf12938e | 3079 | mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (RZ, *ip); |
252b5132 RH |
3080 | if (pinfo & (MIPS16_INSN_WRITE_T | MIPS16_INSN_READ_T)) |
3081 | mips_gprmask |= 1 << TREG; | |
3082 | if (pinfo & (MIPS16_INSN_WRITE_SP | MIPS16_INSN_READ_SP)) | |
3083 | mips_gprmask |= 1 << SP; | |
3084 | if (pinfo & (MIPS16_INSN_WRITE_31 | MIPS16_INSN_READ_31)) | |
3085 | mips_gprmask |= 1 << RA; | |
3086 | if (pinfo & MIPS16_INSN_WRITE_GPR_Y) | |
3087 | mips_gprmask |= 1 << MIPS16OP_EXTRACT_REG32R (ip->insn_opcode); | |
3088 | if (pinfo & MIPS16_INSN_READ_Z) | |
bf12938e | 3089 | mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (MOVE32Z, *ip); |
252b5132 | 3090 | if (pinfo & MIPS16_INSN_READ_GPR_X) |
bf12938e | 3091 | mips_gprmask |= 1 << MIPS16_EXTRACT_OPERAND (REGR32, *ip); |
252b5132 RH |
3092 | } |
3093 | ||
4d7206a2 | 3094 | if (mips_relax.sequence != 2 && !mips_opts.noreorder) |
252b5132 RH |
3095 | { |
3096 | /* Filling the branch delay slot is more complex. We try to | |
3097 | switch the branch with the previous instruction, which we can | |
3098 | do if the previous instruction does not set up a condition | |
3099 | that the branch tests and if the branch is not itself the | |
3100 | target of any branch. */ | |
3101 | if ((pinfo & INSN_UNCOND_BRANCH_DELAY) | |
3102 | || (pinfo & INSN_COND_BRANCH_DELAY)) | |
3103 | { | |
3104 | if (mips_optimize < 2 | |
3105 | /* If we have seen .set volatile or .set nomove, don't | |
3106 | optimize. */ | |
3107 | || mips_opts.nomove != 0 | |
a38419a5 RS |
3108 | /* We can't swap if the previous instruction's position |
3109 | is fixed. */ | |
3110 | || history[0].fixed_p | |
252b5132 RH |
3111 | /* If the previous previous insn was in a .set |
3112 | noreorder, we can't swap. Actually, the MIPS | |
3113 | assembler will swap in this situation. However, gcc | |
3114 | configured -with-gnu-as will generate code like | |
3115 | .set noreorder | |
3116 | lw $4,XXX | |
3117 | .set reorder | |
3118 | INSN | |
3119 | bne $4,$0,foo | |
3120 | in which we can not swap the bne and INSN. If gcc is | |
3121 | not configured -with-gnu-as, it does not output the | |
a38419a5 | 3122 | .set pseudo-ops. */ |
47e39b9d | 3123 | || history[1].noreorder_p |
252b5132 RH |
3124 | /* If the branch is itself the target of a branch, we |
3125 | can not swap. We cheat on this; all we check for is | |
3126 | whether there is a label on this instruction. If | |
3127 | there are any branches to anything other than a | |
3128 | label, users must use .set noreorder. */ | |
a8dbcb85 | 3129 | || si->label_list != NULL |
895921c9 MR |
3130 | /* If the previous instruction is in a variant frag |
3131 | other than this branch's one, we cannot do the swap. | |
3132 | This does not apply to the mips16, which uses variant | |
3133 | frags for different purposes. */ | |
252b5132 | 3134 | || (! mips_opts.mips16 |
895921c9 | 3135 | && prev_insn_frag_type == rs_machine_dependent) |
71400594 RS |
3136 | /* Check for conflicts between the branch and the instructions |
3137 | before the candidate delay slot. */ | |
3138 | || nops_for_insn (history + 1, ip) > 0 | |
3139 | /* Check for conflicts between the swapped sequence and the | |
3140 | target of the branch. */ | |
3141 | || nops_for_sequence (2, history + 1, ip, history) > 0 | |
252b5132 RH |
3142 | /* We do not swap with a trap instruction, since it |
3143 | complicates trap handlers to have the trap | |
3144 | instruction be in a delay slot. */ | |
3145 | || (prev_pinfo & INSN_TRAP) | |
3146 | /* If the branch reads a register that the previous | |
3147 | instruction sets, we can not swap. */ | |
3148 | || (! mips_opts.mips16 | |
3149 | && (prev_pinfo & INSN_WRITE_GPR_T) | |
bf12938e | 3150 | && insn_uses_reg (ip, EXTRACT_OPERAND (RT, history[0]), |
252b5132 RH |
3151 | MIPS_GR_REG)) |
3152 | || (! mips_opts.mips16 | |
3153 | && (prev_pinfo & INSN_WRITE_GPR_D) | |
bf12938e | 3154 | && insn_uses_reg (ip, EXTRACT_OPERAND (RD, history[0]), |
252b5132 RH |
3155 | MIPS_GR_REG)) |
3156 | || (mips_opts.mips16 | |
3157 | && (((prev_pinfo & MIPS16_INSN_WRITE_X) | |
bf12938e RS |
3158 | && (insn_uses_reg |
3159 | (ip, MIPS16_EXTRACT_OPERAND (RX, history[0]), | |
3160 | MIPS16_REG))) | |
252b5132 | 3161 | || ((prev_pinfo & MIPS16_INSN_WRITE_Y) |
bf12938e RS |
3162 | && (insn_uses_reg |
3163 | (ip, MIPS16_EXTRACT_OPERAND (RY, history[0]), | |
3164 | MIPS16_REG))) | |
252b5132 | 3165 | || ((prev_pinfo & MIPS16_INSN_WRITE_Z) |
bf12938e RS |
3166 | && (insn_uses_reg |
3167 | (ip, MIPS16_EXTRACT_OPERAND (RZ, history[0]), | |
3168 | MIPS16_REG))) | |
252b5132 RH |
3169 | || ((prev_pinfo & MIPS16_INSN_WRITE_T) |
3170 | && insn_uses_reg (ip, TREG, MIPS_GR_REG)) | |
3171 | || ((prev_pinfo & MIPS16_INSN_WRITE_31) | |
3172 | && insn_uses_reg (ip, RA, MIPS_GR_REG)) | |
3173 | || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y) | |
3174 | && insn_uses_reg (ip, | |
47e39b9d RS |
3175 | MIPS16OP_EXTRACT_REG32R |
3176 | (history[0].insn_opcode), | |
252b5132 RH |
3177 | MIPS_GR_REG)))) |
3178 | /* If the branch writes a register that the previous | |
3179 | instruction sets, we can not swap (we know that | |
3180 | branches write only to RD or to $31). */ | |
3181 | || (! mips_opts.mips16 | |
3182 | && (prev_pinfo & INSN_WRITE_GPR_T) | |
3183 | && (((pinfo & INSN_WRITE_GPR_D) | |
bf12938e RS |
3184 | && (EXTRACT_OPERAND (RT, history[0]) |
3185 | == EXTRACT_OPERAND (RD, *ip))) | |
252b5132 | 3186 | || ((pinfo & INSN_WRITE_GPR_31) |
bf12938e | 3187 | && EXTRACT_OPERAND (RT, history[0]) == RA))) |
252b5132 RH |
3188 | || (! mips_opts.mips16 |
3189 | && (prev_pinfo & INSN_WRITE_GPR_D) | |
3190 | && (((pinfo & INSN_WRITE_GPR_D) | |
bf12938e RS |
3191 | && (EXTRACT_OPERAND (RD, history[0]) |
3192 | == EXTRACT_OPERAND (RD, *ip))) | |
252b5132 | 3193 | || ((pinfo & INSN_WRITE_GPR_31) |
bf12938e | 3194 | && EXTRACT_OPERAND (RD, history[0]) == RA))) |
252b5132 RH |
3195 | || (mips_opts.mips16 |
3196 | && (pinfo & MIPS16_INSN_WRITE_31) | |
3197 | && ((prev_pinfo & MIPS16_INSN_WRITE_31) | |
3198 | || ((prev_pinfo & MIPS16_INSN_WRITE_GPR_Y) | |
47e39b9d | 3199 | && (MIPS16OP_EXTRACT_REG32R (history[0].insn_opcode) |
252b5132 RH |
3200 | == RA)))) |
3201 | /* If the branch writes a register that the previous | |
3202 | instruction reads, we can not swap (we know that | |
3203 | branches only write to RD or to $31). */ | |
3204 | || (! mips_opts.mips16 | |
3205 | && (pinfo & INSN_WRITE_GPR_D) | |
47e39b9d | 3206 | && insn_uses_reg (&history[0], |
bf12938e | 3207 | EXTRACT_OPERAND (RD, *ip), |
252b5132 RH |
3208 | MIPS_GR_REG)) |
3209 | || (! mips_opts.mips16 | |
3210 | && (pinfo & INSN_WRITE_GPR_31) | |
47e39b9d | 3211 | && insn_uses_reg (&history[0], RA, MIPS_GR_REG)) |
252b5132 RH |
3212 | || (mips_opts.mips16 |
3213 | && (pinfo & MIPS16_INSN_WRITE_31) | |
47e39b9d | 3214 | && insn_uses_reg (&history[0], RA, MIPS_GR_REG)) |
252b5132 RH |
3215 | /* If one instruction sets a condition code and the |
3216 | other one uses a condition code, we can not swap. */ | |
3217 | || ((pinfo & INSN_READ_COND_CODE) | |
3218 | && (prev_pinfo & INSN_WRITE_COND_CODE)) | |
3219 | || ((pinfo & INSN_WRITE_COND_CODE) | |
3220 | && (prev_pinfo & INSN_READ_COND_CODE)) | |
3221 | /* If the previous instruction uses the PC, we can not | |
3222 | swap. */ | |
3223 | || (mips_opts.mips16 | |
3224 | && (prev_pinfo & MIPS16_INSN_READ_PC)) | |
252b5132 RH |
3225 | /* If the previous instruction had a fixup in mips16 |
3226 | mode, we can not swap. This normally means that the | |
3227 | previous instruction was a 4 byte branch anyhow. */ | |
47e39b9d | 3228 | || (mips_opts.mips16 && history[0].fixp[0]) |
bdaaa2e1 KH |
3229 | /* If the previous instruction is a sync, sync.l, or |
3230 | sync.p, we can not swap. */ | |
f173e82e | 3231 | || (prev_pinfo & INSN_SYNC)) |
252b5132 | 3232 | { |
29024861 DU |
3233 | if (mips_opts.mips16 |
3234 | && (pinfo & INSN_UNCOND_BRANCH_DELAY) | |
3235 | && (pinfo & (MIPS16_INSN_READ_X | MIPS16_INSN_READ_31)) | |
3994f87e | 3236 | && ISA_SUPPORTS_MIPS16E) |
29024861 DU |
3237 | { |
3238 | /* Convert MIPS16 jr/jalr into a "compact" jump. */ | |
3239 | ip->insn_opcode |= 0x0080; | |
3240 | install_insn (ip); | |
3241 | insert_into_history (0, 1, ip); | |
3242 | } | |
3243 | else | |
3244 | { | |
3245 | /* We could do even better for unconditional branches to | |
3246 | portions of this object file; we could pick up the | |
3247 | instruction at the destination, put it in the delay | |
3248 | slot, and bump the destination address. */ | |
3249 | insert_into_history (0, 1, ip); | |
3250 | emit_nop (); | |
3251 | } | |
3252 | ||
dd22970f ILT |
3253 | if (mips_relax.sequence) |
3254 | mips_relax.sizes[mips_relax.sequence - 1] += 4; | |
252b5132 RH |
3255 | } |
3256 | else | |
3257 | { | |
3258 | /* It looks like we can actually do the swap. */ | |
1e915849 RS |
3259 | struct mips_cl_insn delay = history[0]; |
3260 | if (mips_opts.mips16) | |
252b5132 | 3261 | { |
b8ee1a6e DU |
3262 | know (delay.frag == ip->frag); |
3263 | move_insn (ip, delay.frag, delay.where); | |
3264 | move_insn (&delay, ip->frag, ip->where + insn_length (ip)); | |
1e915849 RS |
3265 | } |
3266 | else if (relaxed_branch) | |
3267 | { | |
3268 | /* Add the delay slot instruction to the end of the | |
3269 | current frag and shrink the fixed part of the | |
3270 | original frag. If the branch occupies the tail of | |
3271 | the latter, move it backwards to cover the gap. */ | |
3272 | delay.frag->fr_fix -= 4; | |
3273 | if (delay.frag == ip->frag) | |
3274 | move_insn (ip, ip->frag, ip->where - 4); | |
3275 | add_fixed_insn (&delay); | |
252b5132 RH |
3276 | } |
3277 | else | |
3278 | { | |
1e915849 RS |
3279 | move_insn (&delay, ip->frag, ip->where); |
3280 | move_insn (ip, history[0].frag, history[0].where); | |
252b5132 | 3281 | } |
1e915849 RS |
3282 | history[0] = *ip; |
3283 | delay.fixed_p = 1; | |
3284 | insert_into_history (0, 1, &delay); | |
252b5132 | 3285 | } |
252b5132 RH |
3286 | |
3287 | /* If that was an unconditional branch, forget the previous | |
3288 | insn information. */ | |
3289 | if (pinfo & INSN_UNCOND_BRANCH_DELAY) | |
7d10b47d | 3290 | mips_no_prev_insn (); |
252b5132 RH |
3291 | } |
3292 | else if (pinfo & INSN_COND_BRANCH_LIKELY) | |
3293 | { | |
3294 | /* We don't yet optimize a branch likely. What we should do | |
3295 | is look at the target, copy the instruction found there | |
3296 | into the delay slot, and increment the branch to jump to | |
3297 | the next instruction. */ | |
1e915849 | 3298 | insert_into_history (0, 1, ip); |
252b5132 | 3299 | emit_nop (); |
252b5132 RH |
3300 | } |
3301 | else | |
1e915849 | 3302 | insert_into_history (0, 1, ip); |
252b5132 | 3303 | } |
1e915849 RS |
3304 | else |
3305 | insert_into_history (0, 1, ip); | |
252b5132 RH |
3306 | |
3307 | /* We just output an insn, so the next one doesn't have a label. */ | |
3308 | mips_clear_insn_labels (); | |
252b5132 RH |
3309 | } |
3310 | ||
7d10b47d | 3311 | /* Forget that there was any previous instruction or label. */ |
252b5132 RH |
3312 | |
3313 | static void | |
7d10b47d | 3314 | mips_no_prev_insn (void) |
252b5132 | 3315 | { |
7d10b47d RS |
3316 | prev_nop_frag = NULL; |
3317 | insert_into_history (0, ARRAY_SIZE (history), NOP_INSN); | |
252b5132 RH |
3318 | mips_clear_insn_labels (); |
3319 | } | |
3320 | ||
7d10b47d RS |
3321 | /* This function must be called before we emit something other than |
3322 | instructions. It is like mips_no_prev_insn except that it inserts | |
3323 | any NOPS that might be needed by previous instructions. */ | |
252b5132 | 3324 | |
7d10b47d RS |
3325 | void |
3326 | mips_emit_delays (void) | |
252b5132 RH |
3327 | { |
3328 | if (! mips_opts.noreorder) | |
3329 | { | |
71400594 | 3330 | int nops = nops_for_insn (history, NULL); |
252b5132 RH |
3331 | if (nops > 0) |
3332 | { | |
7d10b47d RS |
3333 | while (nops-- > 0) |
3334 | add_fixed_insn (NOP_INSN); | |
3335 | mips_move_labels (); | |
3336 | } | |
3337 | } | |
3338 | mips_no_prev_insn (); | |
3339 | } | |
3340 | ||
3341 | /* Start a (possibly nested) noreorder block. */ | |
3342 | ||
3343 | static void | |
3344 | start_noreorder (void) | |
3345 | { | |
3346 | if (mips_opts.noreorder == 0) | |
3347 | { | |
3348 | unsigned int i; | |
3349 | int nops; | |
3350 | ||
3351 | /* None of the instructions before the .set noreorder can be moved. */ | |
3352 | for (i = 0; i < ARRAY_SIZE (history); i++) | |
3353 | history[i].fixed_p = 1; | |
3354 | ||
3355 | /* Insert any nops that might be needed between the .set noreorder | |
3356 | block and the previous instructions. We will later remove any | |
3357 | nops that turn out not to be needed. */ | |
3358 | nops = nops_for_insn (history, NULL); | |
3359 | if (nops > 0) | |
3360 | { | |
3361 | if (mips_optimize != 0) | |
252b5132 RH |
3362 | { |
3363 | /* Record the frag which holds the nop instructions, so | |
3364 | that we can remove them if we don't need them. */ | |
3365 | frag_grow (mips_opts.mips16 ? nops * 2 : nops * 4); | |
3366 | prev_nop_frag = frag_now; | |
3367 | prev_nop_frag_holds = nops; | |
3368 | prev_nop_frag_required = 0; | |
3369 | prev_nop_frag_since = 0; | |
3370 | } | |
3371 | ||
3372 | for (; nops > 0; --nops) | |
1e915849 | 3373 | add_fixed_insn (NOP_INSN); |
252b5132 | 3374 | |
7d10b47d RS |
3375 | /* Move on to a new frag, so that it is safe to simply |
3376 | decrease the size of prev_nop_frag. */ | |
3377 | frag_wane (frag_now); | |
3378 | frag_new (0); | |
404a8071 | 3379 | mips_move_labels (); |
252b5132 | 3380 | } |
7d10b47d RS |
3381 | mips16_mark_labels (); |
3382 | mips_clear_insn_labels (); | |
252b5132 | 3383 | } |
7d10b47d RS |
3384 | mips_opts.noreorder++; |
3385 | mips_any_noreorder = 1; | |
3386 | } | |
252b5132 | 3387 | |
7d10b47d | 3388 | /* End a nested noreorder block. */ |
252b5132 | 3389 | |
7d10b47d RS |
3390 | static void |
3391 | end_noreorder (void) | |
3392 | { | |
3393 | mips_opts.noreorder--; | |
3394 | if (mips_opts.noreorder == 0 && prev_nop_frag != NULL) | |
3395 | { | |
3396 | /* Commit to inserting prev_nop_frag_required nops and go back to | |
3397 | handling nop insertion the .set reorder way. */ | |
3398 | prev_nop_frag->fr_fix -= ((prev_nop_frag_holds - prev_nop_frag_required) | |
3399 | * (mips_opts.mips16 ? 2 : 4)); | |
3400 | insert_into_history (prev_nop_frag_since, | |
3401 | prev_nop_frag_required, NOP_INSN); | |
3402 | prev_nop_frag = NULL; | |
3403 | } | |
252b5132 RH |
3404 | } |
3405 | ||
584892a6 RS |
3406 | /* Set up global variables for the start of a new macro. */ |
3407 | ||
3408 | static void | |
3409 | macro_start (void) | |
3410 | { | |
3411 | memset (&mips_macro_warning.sizes, 0, sizeof (mips_macro_warning.sizes)); | |
3412 | mips_macro_warning.delay_slot_p = (mips_opts.noreorder | |
47e39b9d | 3413 | && (history[0].insn_mo->pinfo |
584892a6 RS |
3414 | & (INSN_UNCOND_BRANCH_DELAY |
3415 | | INSN_COND_BRANCH_DELAY | |
3416 | | INSN_COND_BRANCH_LIKELY)) != 0); | |
3417 | } | |
3418 | ||
3419 | /* Given that a macro is longer than 4 bytes, return the appropriate warning | |
3420 | for it. Return null if no warning is needed. SUBTYPE is a bitmask of | |
3421 | RELAX_DELAY_SLOT and RELAX_NOMACRO. */ | |
3422 | ||
3423 | static const char * | |
3424 | macro_warning (relax_substateT subtype) | |
3425 | { | |
3426 | if (subtype & RELAX_DELAY_SLOT) | |
3427 | return _("Macro instruction expanded into multiple instructions" | |
3428 | " in a branch delay slot"); | |
3429 | else if (subtype & RELAX_NOMACRO) | |
3430 | return _("Macro instruction expanded into multiple instructions"); | |
3431 | else | |
3432 | return 0; | |
3433 | } | |
3434 | ||
3435 | /* Finish up a macro. Emit warnings as appropriate. */ | |
3436 | ||
3437 | static void | |
3438 | macro_end (void) | |
3439 | { | |
3440 | if (mips_macro_warning.sizes[0] > 4 || mips_macro_warning.sizes[1] > 4) | |
3441 | { | |
3442 | relax_substateT subtype; | |
3443 | ||
3444 | /* Set up the relaxation warning flags. */ | |
3445 | subtype = 0; | |
3446 | if (mips_macro_warning.sizes[1] > mips_macro_warning.sizes[0]) | |
3447 | subtype |= RELAX_SECOND_LONGER; | |
3448 | if (mips_opts.warn_about_macros) | |
3449 | subtype |= RELAX_NOMACRO; | |
3450 | if (mips_macro_warning.delay_slot_p) | |
3451 | subtype |= RELAX_DELAY_SLOT; | |
3452 | ||
3453 | if (mips_macro_warning.sizes[0] > 4 && mips_macro_warning.sizes[1] > 4) | |
3454 | { | |
3455 | /* Either the macro has a single implementation or both | |
3456 | implementations are longer than 4 bytes. Emit the | |
3457 | warning now. */ | |
3458 | const char *msg = macro_warning (subtype); | |
3459 | if (msg != 0) | |
3460 | as_warn (msg); | |
3461 | } | |
3462 | else | |
3463 | { | |
3464 | /* One implementation might need a warning but the other | |
3465 | definitely doesn't. */ | |
3466 | mips_macro_warning.first_frag->fr_subtype |= subtype; | |
3467 | } | |
3468 | } | |
3469 | } | |
3470 | ||
6e1304d8 RS |
3471 | /* Read a macro's relocation codes from *ARGS and store them in *R. |
3472 | The first argument in *ARGS will be either the code for a single | |
3473 | relocation or -1 followed by the three codes that make up a | |
3474 | composite relocation. */ | |
3475 | ||
3476 | static void | |
3477 | macro_read_relocs (va_list *args, bfd_reloc_code_real_type *r) | |
3478 | { | |
3479 | int i, next; | |
3480 | ||
3481 | next = va_arg (*args, int); | |
3482 | if (next >= 0) | |
3483 | r[0] = (bfd_reloc_code_real_type) next; | |
3484 | else | |
3485 | for (i = 0; i < 3; i++) | |
3486 | r[i] = (bfd_reloc_code_real_type) va_arg (*args, int); | |
3487 | } | |
3488 | ||
252b5132 RH |
3489 | /* Build an instruction created by a macro expansion. This is passed |
3490 | a pointer to the count of instructions created so far, an | |
3491 | expression, the name of the instruction to build, an operand format | |
3492 | string, and corresponding arguments. */ | |
3493 | ||
252b5132 | 3494 | static void |
67c0d1eb | 3495 | macro_build (expressionS *ep, const char *name, const char *fmt, ...) |
252b5132 | 3496 | { |
1e915849 | 3497 | const struct mips_opcode *mo; |
252b5132 | 3498 | struct mips_cl_insn insn; |
f6688943 | 3499 | bfd_reloc_code_real_type r[3]; |
252b5132 | 3500 | va_list args; |
252b5132 | 3501 | |
252b5132 | 3502 | va_start (args, fmt); |
252b5132 | 3503 | |
252b5132 RH |
3504 | if (mips_opts.mips16) |
3505 | { | |
67c0d1eb | 3506 | mips16_macro_build (ep, name, fmt, args); |
252b5132 RH |
3507 | va_end (args); |
3508 | return; | |
3509 | } | |
3510 | ||
f6688943 TS |
3511 | r[0] = BFD_RELOC_UNUSED; |
3512 | r[1] = BFD_RELOC_UNUSED; | |
3513 | r[2] = BFD_RELOC_UNUSED; | |
1e915849 RS |
3514 | mo = (struct mips_opcode *) hash_find (op_hash, name); |
3515 | assert (mo); | |
3516 | assert (strcmp (name, mo->name) == 0); | |
3517 | ||
8b082fb1 TS |
3518 | while (1) |
3519 | { | |
3520 | /* Search until we get a match for NAME. It is assumed here that | |
3521 | macros will never generate MDMX, MIPS-3D, or MT instructions. */ | |
3522 | if (strcmp (fmt, mo->args) == 0 | |
3523 | && mo->pinfo != INSN_MACRO | |
037b32b9 | 3524 | && is_opcode_valid (mo, TRUE)) |
8b082fb1 TS |
3525 | break; |
3526 | ||
1e915849 RS |
3527 | ++mo; |
3528 | assert (mo->name); | |
3529 | assert (strcmp (name, mo->name) == 0); | |
252b5132 RH |
3530 | } |
3531 | ||
1e915849 | 3532 | create_insn (&insn, mo); |
252b5132 RH |
3533 | for (;;) |
3534 | { | |
3535 | switch (*fmt++) | |
3536 | { | |
3537 | case '\0': | |
3538 | break; | |
3539 | ||
3540 | case ',': | |
3541 | case '(': | |
3542 | case ')': | |
3543 | continue; | |
3544 | ||
5f74bc13 CD |
3545 | case '+': |
3546 | switch (*fmt++) | |
3547 | { | |
3548 | case 'A': | |
3549 | case 'E': | |
bf12938e | 3550 | INSERT_OPERAND (SHAMT, insn, va_arg (args, int)); |
5f74bc13 CD |
3551 | continue; |
3552 | ||
3553 | case 'B': | |
3554 | case 'F': | |
3555 | /* Note that in the macro case, these arguments are already | |
3556 | in MSB form. (When handling the instruction in the | |
3557 | non-macro case, these arguments are sizes from which | |
3558 | MSB values must be calculated.) */ | |
bf12938e | 3559 | INSERT_OPERAND (INSMSB, insn, va_arg (args, int)); |
5f74bc13 CD |
3560 | continue; |
3561 | ||
3562 | case 'C': | |
3563 | case 'G': | |
3564 | case 'H': | |
3565 | /* Note that in the macro case, these arguments are already | |
3566 | in MSBD form. (When handling the instruction in the | |
3567 | non-macro case, these arguments are sizes from which | |
3568 | MSBD values must be calculated.) */ | |
bf12938e | 3569 | INSERT_OPERAND (EXTMSBD, insn, va_arg (args, int)); |
5f74bc13 CD |
3570 | continue; |
3571 | ||
dd3cbb7e NC |
3572 | case 'Q': |
3573 | INSERT_OPERAND (SEQI, insn, va_arg (args, int)); | |
3574 | continue; | |
3575 | ||
5f74bc13 CD |
3576 | default: |
3577 | internalError (); | |
3578 | } | |
3579 | continue; | |
3580 | ||
8b082fb1 TS |
3581 | case '2': |
3582 | INSERT_OPERAND (BP, insn, va_arg (args, int)); | |
3583 | continue; | |
3584 | ||
252b5132 RH |
3585 | case 't': |
3586 | case 'w': | |
3587 | case 'E': | |
bf12938e | 3588 | INSERT_OPERAND (RT, insn, va_arg (args, int)); |
252b5132 RH |
3589 | continue; |
3590 | ||
3591 | case 'c': | |
bf12938e | 3592 | INSERT_OPERAND (CODE, insn, va_arg (args, int)); |
38487616 TS |
3593 | continue; |
3594 | ||
252b5132 RH |
3595 | case 'T': |
3596 | case 'W': | |
bf12938e | 3597 | INSERT_OPERAND (FT, insn, va_arg (args, int)); |
252b5132 RH |
3598 | continue; |
3599 | ||
3600 | case 'd': | |
3601 | case 'G': | |
af7ee8bf | 3602 | case 'K': |
bf12938e | 3603 | INSERT_OPERAND (RD, insn, va_arg (args, int)); |
252b5132 RH |
3604 | continue; |
3605 | ||
4372b673 NC |
3606 | case 'U': |
3607 | { | |
3608 | int tmp = va_arg (args, int); | |
3609 | ||
bf12938e RS |
3610 | INSERT_OPERAND (RT, insn, tmp); |
3611 | INSERT_OPERAND (RD, insn, tmp); | |
beae10d5 | 3612 | continue; |
4372b673 NC |
3613 | } |
3614 | ||
252b5132 RH |
3615 | case 'V': |
3616 | case 'S': | |
bf12938e | 3617 | INSERT_OPERAND (FS, insn, va_arg (args, int)); |
252b5132 RH |
3618 | continue; |
3619 | ||
3620 | case 'z': | |
3621 | continue; | |
3622 | ||
3623 | case '<': | |
bf12938e | 3624 | INSERT_OPERAND (SHAMT, insn, va_arg (args, int)); |
252b5132 RH |
3625 | continue; |
3626 | ||
3627 | case 'D': | |
bf12938e | 3628 | INSERT_OPERAND (FD, insn, va_arg (args, int)); |
252b5132 RH |
3629 | continue; |
3630 | ||
3631 | case 'B': | |
bf12938e | 3632 | INSERT_OPERAND (CODE20, insn, va_arg (args, int)); |
252b5132 RH |
3633 | continue; |
3634 | ||
4372b673 | 3635 | case 'J': |
bf12938e | 3636 | INSERT_OPERAND (CODE19, insn, va_arg (args, int)); |
4372b673 NC |
3637 | continue; |
3638 | ||
252b5132 | 3639 | case 'q': |
bf12938e | 3640 | INSERT_OPERAND (CODE2, insn, va_arg (args, int)); |
252b5132 RH |
3641 | continue; |
3642 | ||
3643 | case 'b': | |
3644 | case 's': | |
3645 | case 'r': | |
3646 | case 'v': | |
bf12938e | 3647 | INSERT_OPERAND (RS, insn, va_arg (args, int)); |
252b5132 RH |
3648 | continue; |
3649 | ||
3650 | case 'i': | |
3651 | case 'j': | |
3652 | case 'o': | |
6e1304d8 | 3653 | macro_read_relocs (&args, r); |
cdf6fd85 | 3654 | assert (*r == BFD_RELOC_GPREL16 |
f6688943 TS |
3655 | || *r == BFD_RELOC_MIPS_LITERAL |
3656 | || *r == BFD_RELOC_MIPS_HIGHER | |
3657 | || *r == BFD_RELOC_HI16_S | |
3658 | || *r == BFD_RELOC_LO16 | |
3659 | || *r == BFD_RELOC_MIPS_GOT16 | |
3660 | || *r == BFD_RELOC_MIPS_CALL16 | |
438c16b8 TS |
3661 | || *r == BFD_RELOC_MIPS_GOT_DISP |
3662 | || *r == BFD_RELOC_MIPS_GOT_PAGE | |
3663 | || *r == BFD_RELOC_MIPS_GOT_OFST | |
f6688943 | 3664 | || *r == BFD_RELOC_MIPS_GOT_LO16 |
3e722fb5 | 3665 | || *r == BFD_RELOC_MIPS_CALL_LO16); |
252b5132 RH |
3666 | continue; |
3667 | ||
3668 | case 'u': | |
6e1304d8 | 3669 | macro_read_relocs (&args, r); |
252b5132 RH |
3670 | assert (ep != NULL |
3671 | && (ep->X_op == O_constant | |
3672 | || (ep->X_op == O_symbol | |
f6688943 TS |
3673 | && (*r == BFD_RELOC_MIPS_HIGHEST |
3674 | || *r == BFD_RELOC_HI16_S | |
3675 | || *r == BFD_RELOC_HI16 | |
3676 | || *r == BFD_RELOC_GPREL16 | |
3677 | || *r == BFD_RELOC_MIPS_GOT_HI16 | |
3e722fb5 | 3678 | || *r == BFD_RELOC_MIPS_CALL_HI16)))); |
252b5132 RH |
3679 | continue; |
3680 | ||
3681 | case 'p': | |
3682 | assert (ep != NULL); | |
bad36eac | 3683 | |
252b5132 RH |
3684 | /* |
3685 | * This allows macro() to pass an immediate expression for | |
3686 | * creating short branches without creating a symbol. | |
bad36eac DJ |
3687 | * |
3688 | * We don't allow branch relaxation for these branches, as | |
3689 | * they should only appear in ".set nomacro" anyway. | |
252b5132 RH |
3690 | */ |
3691 | if (ep->X_op == O_constant) | |
3692 | { | |
bad36eac DJ |
3693 | if ((ep->X_add_number & 3) != 0) |
3694 | as_bad (_("branch to misaligned address (0x%lx)"), | |
3695 | (unsigned long) ep->X_add_number); | |
3696 | if ((ep->X_add_number + 0x20000) & ~0x3ffff) | |
3697 | as_bad (_("branch address range overflow (0x%lx)"), | |
3698 | (unsigned long) ep->X_add_number); | |
252b5132 RH |
3699 | insn.insn_opcode |= (ep->X_add_number >> 2) & 0xffff; |
3700 | ep = NULL; | |
3701 | } | |
3702 | else | |
0b25d3e6 | 3703 | *r = BFD_RELOC_16_PCREL_S2; |
252b5132 RH |
3704 | continue; |
3705 | ||
3706 | case 'a': | |
3707 | assert (ep != NULL); | |
f6688943 | 3708 | *r = BFD_RELOC_MIPS_JMP; |
252b5132 RH |
3709 | continue; |
3710 | ||
3711 | case 'C': | |
a9e24354 | 3712 | INSERT_OPERAND (COPZ, insn, va_arg (args, unsigned long)); |
252b5132 RH |
3713 | continue; |
3714 | ||
d43b4baf | 3715 | case 'k': |
a9e24354 | 3716 | INSERT_OPERAND (CACHE, insn, va_arg (args, unsigned long)); |
d43b4baf TS |
3717 | continue; |
3718 | ||
252b5132 RH |
3719 | default: |
3720 | internalError (); | |
3721 | } | |
3722 | break; | |
3723 | } | |
3724 | va_end (args); | |
f6688943 | 3725 | assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL); |
252b5132 | 3726 | |
4d7206a2 | 3727 | append_insn (&insn, ep, r); |
252b5132 RH |
3728 | } |
3729 | ||
3730 | static void | |
67c0d1eb | 3731 | mips16_macro_build (expressionS *ep, const char *name, const char *fmt, |
17a2f251 | 3732 | va_list args) |
252b5132 | 3733 | { |
1e915849 | 3734 | struct mips_opcode *mo; |
252b5132 | 3735 | struct mips_cl_insn insn; |
f6688943 TS |
3736 | bfd_reloc_code_real_type r[3] |
3737 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
252b5132 | 3738 | |
1e915849 RS |
3739 | mo = (struct mips_opcode *) hash_find (mips16_op_hash, name); |
3740 | assert (mo); | |
3741 | assert (strcmp (name, mo->name) == 0); | |
252b5132 | 3742 | |
1e915849 | 3743 | while (strcmp (fmt, mo->args) != 0 || mo->pinfo == INSN_MACRO) |
252b5132 | 3744 | { |
1e915849 RS |
3745 | ++mo; |
3746 | assert (mo->name); | |
3747 | assert (strcmp (name, mo->name) == 0); | |
252b5132 RH |
3748 | } |
3749 | ||
1e915849 | 3750 | create_insn (&insn, mo); |
252b5132 RH |
3751 | for (;;) |
3752 | { | |
3753 | int c; | |
3754 | ||
3755 | c = *fmt++; | |
3756 | switch (c) | |
3757 | { | |
3758 | case '\0': | |
3759 | break; | |
3760 | ||
3761 | case ',': | |
3762 | case '(': | |
3763 | case ')': | |
3764 | continue; | |
3765 | ||
3766 | case 'y': | |
3767 | case 'w': | |
bf12938e | 3768 | MIPS16_INSERT_OPERAND (RY, insn, va_arg (args, int)); |
252b5132 RH |
3769 | continue; |
3770 | ||
3771 | case 'x': | |
3772 | case 'v': | |
bf12938e | 3773 | MIPS16_INSERT_OPERAND (RX, insn, va_arg (args, int)); |
252b5132 RH |
3774 | continue; |
3775 | ||
3776 | case 'z': | |
bf12938e | 3777 | MIPS16_INSERT_OPERAND (RZ, insn, va_arg (args, int)); |
252b5132 RH |
3778 | continue; |
3779 | ||
3780 | case 'Z': | |
bf12938e | 3781 | MIPS16_INSERT_OPERAND (MOVE32Z, insn, va_arg (args, int)); |
252b5132 RH |
3782 | continue; |
3783 | ||
3784 | case '0': | |
3785 | case 'S': | |
3786 | case 'P': | |
3787 | case 'R': | |
3788 | continue; | |
3789 | ||
3790 | case 'X': | |
bf12938e | 3791 | MIPS16_INSERT_OPERAND (REGR32, insn, va_arg (args, int)); |
252b5132 RH |
3792 | continue; |
3793 | ||
3794 | case 'Y': | |
3795 | { | |
3796 | int regno; | |
3797 | ||
3798 | regno = va_arg (args, int); | |
3799 | regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3); | |
a9e24354 | 3800 | MIPS16_INSERT_OPERAND (REG32R, insn, regno); |
252b5132 RH |
3801 | } |
3802 | continue; | |
3803 | ||
3804 | case '<': | |
3805 | case '>': | |
3806 | case '4': | |
3807 | case '5': | |
3808 | case 'H': | |
3809 | case 'W': | |
3810 | case 'D': | |
3811 | case 'j': | |
3812 | case '8': | |
3813 | case 'V': | |
3814 | case 'C': | |
3815 | case 'U': | |
3816 | case 'k': | |
3817 | case 'K': | |
3818 | case 'p': | |
3819 | case 'q': | |
3820 | { | |
3821 | assert (ep != NULL); | |
3822 | ||
3823 | if (ep->X_op != O_constant) | |
874e8986 | 3824 | *r = (int) BFD_RELOC_UNUSED + c; |
252b5132 RH |
3825 | else |
3826 | { | |
b34976b6 AM |
3827 | mips16_immed (NULL, 0, c, ep->X_add_number, FALSE, FALSE, |
3828 | FALSE, &insn.insn_opcode, &insn.use_extend, | |
c4e7957c | 3829 | &insn.extend); |
252b5132 | 3830 | ep = NULL; |
f6688943 | 3831 | *r = BFD_RELOC_UNUSED; |
252b5132 RH |
3832 | } |
3833 | } | |
3834 | continue; | |
3835 | ||
3836 | case '6': | |
bf12938e | 3837 | MIPS16_INSERT_OPERAND (IMM6, insn, va_arg (args, int)); |
252b5132 RH |
3838 | continue; |
3839 | } | |
3840 | ||
3841 | break; | |
3842 | } | |
3843 | ||
f6688943 | 3844 | assert (*r == BFD_RELOC_UNUSED ? ep == NULL : ep != NULL); |
252b5132 | 3845 | |
4d7206a2 | 3846 | append_insn (&insn, ep, r); |
252b5132 RH |
3847 | } |
3848 | ||
2051e8c4 MR |
3849 | /* |
3850 | * Sign-extend 32-bit mode constants that have bit 31 set and all | |
3851 | * higher bits unset. | |
3852 | */ | |
9f872bbe | 3853 | static void |
2051e8c4 MR |
3854 | normalize_constant_expr (expressionS *ex) |
3855 | { | |
9ee2a2d4 | 3856 | if (ex->X_op == O_constant |
2051e8c4 MR |
3857 | && IS_ZEXT_32BIT_NUM (ex->X_add_number)) |
3858 | ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000) | |
3859 | - 0x80000000); | |
3860 | } | |
3861 | ||
3862 | /* | |
3863 | * Sign-extend 32-bit mode address offsets that have bit 31 set and | |
3864 | * all higher bits unset. | |
3865 | */ | |
3866 | static void | |
3867 | normalize_address_expr (expressionS *ex) | |
3868 | { | |
3869 | if (((ex->X_op == O_constant && HAVE_32BIT_ADDRESSES) | |
3870 | || (ex->X_op == O_symbol && HAVE_32BIT_SYMBOLS)) | |
3871 | && IS_ZEXT_32BIT_NUM (ex->X_add_number)) | |
3872 | ex->X_add_number = (((ex->X_add_number & 0xffffffff) ^ 0x80000000) | |
3873 | - 0x80000000); | |
3874 | } | |
3875 | ||
438c16b8 TS |
3876 | /* |
3877 | * Generate a "jalr" instruction with a relocation hint to the called | |
3878 | * function. This occurs in NewABI PIC code. | |
3879 | */ | |
3880 | static void | |
67c0d1eb | 3881 | macro_build_jalr (expressionS *ep) |
438c16b8 | 3882 | { |
685736be | 3883 | char *f = NULL; |
b34976b6 | 3884 | |
438c16b8 | 3885 | if (HAVE_NEWABI) |
f21f8242 | 3886 | { |
cc3d92a5 | 3887 | frag_grow (8); |
f21f8242 AO |
3888 | f = frag_more (0); |
3889 | } | |
67c0d1eb | 3890 | macro_build (NULL, "jalr", "d,s", RA, PIC_CALL_REG); |
438c16b8 | 3891 | if (HAVE_NEWABI) |
f21f8242 | 3892 | fix_new_exp (frag_now, f - frag_now->fr_literal, |
a105a300 | 3893 | 4, ep, FALSE, BFD_RELOC_MIPS_JALR); |
438c16b8 TS |
3894 | } |
3895 | ||
252b5132 RH |
3896 | /* |
3897 | * Generate a "lui" instruction. | |
3898 | */ | |
3899 | static void | |
67c0d1eb | 3900 | macro_build_lui (expressionS *ep, int regnum) |
252b5132 RH |
3901 | { |
3902 | expressionS high_expr; | |
1e915849 | 3903 | const struct mips_opcode *mo; |
252b5132 | 3904 | struct mips_cl_insn insn; |
f6688943 TS |
3905 | bfd_reloc_code_real_type r[3] |
3906 | = {BFD_RELOC_UNUSED, BFD_RELOC_UNUSED, BFD_RELOC_UNUSED}; | |
5a38dc70 AM |
3907 | const char *name = "lui"; |
3908 | const char *fmt = "t,u"; | |
252b5132 RH |
3909 | |
3910 | assert (! mips_opts.mips16); | |
3911 | ||
4d7206a2 | 3912 | high_expr = *ep; |
252b5132 RH |
3913 | |
3914 | if (high_expr.X_op == O_constant) | |
3915 | { | |
54f4ddb3 | 3916 | /* We can compute the instruction now without a relocation entry. */ |
e7d556df TS |
3917 | high_expr.X_add_number = ((high_expr.X_add_number + 0x8000) |
3918 | >> 16) & 0xffff; | |
f6688943 | 3919 | *r = BFD_RELOC_UNUSED; |
252b5132 | 3920 | } |
78e1bb40 | 3921 | else |
252b5132 RH |
3922 | { |
3923 | assert (ep->X_op == O_symbol); | |
bbe506e8 TS |
3924 | /* _gp_disp is a special case, used from s_cpload. |
3925 | __gnu_local_gp is used if mips_no_shared. */ | |
252b5132 | 3926 | assert (mips_pic == NO_PIC |
78e1bb40 | 3927 | || (! HAVE_NEWABI |
aa6975fb ILT |
3928 | && strcmp (S_GET_NAME (ep->X_add_symbol), "_gp_disp") == 0) |
3929 | || (! mips_in_shared | |
bbe506e8 TS |
3930 | && strcmp (S_GET_NAME (ep->X_add_symbol), |
3931 | "__gnu_local_gp") == 0)); | |
f6688943 | 3932 | *r = BFD_RELOC_HI16_S; |
252b5132 RH |
3933 | } |
3934 | ||
1e915849 RS |
3935 | mo = hash_find (op_hash, name); |
3936 | assert (strcmp (name, mo->name) == 0); | |
3937 | assert (strcmp (fmt, mo->args) == 0); | |
3938 | create_insn (&insn, mo); | |
252b5132 | 3939 | |
bf12938e RS |
3940 | insn.insn_opcode = insn.insn_mo->match; |
3941 | INSERT_OPERAND (RT, insn, regnum); | |
f6688943 | 3942 | if (*r == BFD_RELOC_UNUSED) |
252b5132 RH |
3943 | { |
3944 | insn.insn_opcode |= high_expr.X_add_number; | |
4d7206a2 | 3945 | append_insn (&insn, NULL, r); |
252b5132 RH |
3946 | } |
3947 | else | |
4d7206a2 | 3948 | append_insn (&insn, &high_expr, r); |
252b5132 RH |
3949 | } |
3950 | ||
885add95 CD |
3951 | /* Generate a sequence of instructions to do a load or store from a constant |
3952 | offset off of a base register (breg) into/from a target register (treg), | |
3953 | using AT if necessary. */ | |
3954 | static void | |
67c0d1eb RS |
3955 | macro_build_ldst_constoffset (expressionS *ep, const char *op, |
3956 | int treg, int breg, int dbl) | |
885add95 CD |
3957 | { |
3958 | assert (ep->X_op == O_constant); | |
3959 | ||
256ab948 | 3960 | /* Sign-extending 32-bit constants makes their handling easier. */ |
2051e8c4 MR |
3961 | if (!dbl) |
3962 | normalize_constant_expr (ep); | |
256ab948 | 3963 | |
67c1ffbe | 3964 | /* Right now, this routine can only handle signed 32-bit constants. */ |
ecd13cd3 | 3965 | if (! IS_SEXT_32BIT_NUM(ep->X_add_number + 0x8000)) |
885add95 CD |
3966 | as_warn (_("operand overflow")); |
3967 | ||
3968 | if (IS_SEXT_16BIT_NUM(ep->X_add_number)) | |
3969 | { | |
3970 | /* Signed 16-bit offset will fit in the op. Easy! */ | |
67c0d1eb | 3971 | macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, breg); |
885add95 CD |
3972 | } |
3973 | else | |
3974 | { | |
3975 | /* 32-bit offset, need multiple instructions and AT, like: | |
3976 | lui $tempreg,const_hi (BFD_RELOC_HI16_S) | |
3977 | addu $tempreg,$tempreg,$breg | |
3978 | <op> $treg,const_lo($tempreg) (BFD_RELOC_LO16) | |
3979 | to handle the complete offset. */ | |
67c0d1eb RS |
3980 | macro_build_lui (ep, AT); |
3981 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); | |
3982 | macro_build (ep, op, "t,o(b)", treg, BFD_RELOC_LO16, AT); | |
885add95 | 3983 | |
741fe287 | 3984 | if (!mips_opts.at) |
8fc2e39e | 3985 | as_bad (_("Macro used $at after \".set noat\"")); |
885add95 CD |
3986 | } |
3987 | } | |
3988 | ||
252b5132 RH |
3989 | /* set_at() |
3990 | * Generates code to set the $at register to true (one) | |
3991 | * if reg is less than the immediate expression. | |
3992 | */ | |
3993 | static void | |
67c0d1eb | 3994 | set_at (int reg, int unsignedp) |
252b5132 RH |
3995 | { |
3996 | if (imm_expr.X_op == O_constant | |
3997 | && imm_expr.X_add_number >= -0x8000 | |
3998 | && imm_expr.X_add_number < 0x8000) | |
67c0d1eb RS |
3999 | macro_build (&imm_expr, unsignedp ? "sltiu" : "slti", "t,r,j", |
4000 | AT, reg, BFD_RELOC_LO16); | |
252b5132 RH |
4001 | else |
4002 | { | |
67c0d1eb RS |
4003 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
4004 | macro_build (NULL, unsignedp ? "sltu" : "slt", "d,v,t", AT, reg, AT); | |
252b5132 RH |
4005 | } |
4006 | } | |
4007 | ||
4008 | /* Warn if an expression is not a constant. */ | |
4009 | ||
4010 | static void | |
17a2f251 | 4011 | check_absolute_expr (struct mips_cl_insn *ip, expressionS *ex) |
252b5132 RH |
4012 | { |
4013 | if (ex->X_op == O_big) | |
4014 | as_bad (_("unsupported large constant")); | |
4015 | else if (ex->X_op != O_constant) | |
9ee2a2d4 MR |
4016 | as_bad (_("Instruction %s requires absolute expression"), |
4017 | ip->insn_mo->name); | |
13757d0c | 4018 | |
9ee2a2d4 MR |
4019 | if (HAVE_32BIT_GPRS) |
4020 | normalize_constant_expr (ex); | |
252b5132 RH |
4021 | } |
4022 | ||
4023 | /* Count the leading zeroes by performing a binary chop. This is a | |
4024 | bulky bit of source, but performance is a LOT better for the | |
4025 | majority of values than a simple loop to count the bits: | |
4026 | for (lcnt = 0; (lcnt < 32); lcnt++) | |
4027 | if ((v) & (1 << (31 - lcnt))) | |
4028 | break; | |
4029 | However it is not code size friendly, and the gain will drop a bit | |
4030 | on certain cached systems. | |
4031 | */ | |
4032 | #define COUNT_TOP_ZEROES(v) \ | |
4033 | (((v) & ~0xffff) == 0 \ | |
4034 | ? ((v) & ~0xff) == 0 \ | |
4035 | ? ((v) & ~0xf) == 0 \ | |
4036 | ? ((v) & ~0x3) == 0 \ | |
4037 | ? ((v) & ~0x1) == 0 \ | |
4038 | ? !(v) \ | |
4039 | ? 32 \ | |
4040 | : 31 \ | |
4041 | : 30 \ | |
4042 | : ((v) & ~0x7) == 0 \ | |
4043 | ? 29 \ | |
4044 | : 28 \ | |
4045 | : ((v) & ~0x3f) == 0 \ | |
4046 | ? ((v) & ~0x1f) == 0 \ | |
4047 | ? 27 \ | |
4048 | : 26 \ | |
4049 | : ((v) & ~0x7f) == 0 \ | |
4050 | ? 25 \ | |
4051 | : 24 \ | |
4052 | : ((v) & ~0xfff) == 0 \ | |
4053 | ? ((v) & ~0x3ff) == 0 \ | |
4054 | ? ((v) & ~0x1ff) == 0 \ | |
4055 | ? 23 \ | |
4056 | : 22 \ | |
4057 | : ((v) & ~0x7ff) == 0 \ | |
4058 | ? 21 \ | |
4059 | : 20 \ | |
4060 | : ((v) & ~0x3fff) == 0 \ | |
4061 | ? ((v) & ~0x1fff) == 0 \ | |
4062 | ? 19 \ | |
4063 | : 18 \ | |
4064 | : ((v) & ~0x7fff) == 0 \ | |
4065 | ? 17 \ | |
4066 | : 16 \ | |
4067 | : ((v) & ~0xffffff) == 0 \ | |
4068 | ? ((v) & ~0xfffff) == 0 \ | |
4069 | ? ((v) & ~0x3ffff) == 0 \ | |
4070 | ? ((v) & ~0x1ffff) == 0 \ | |
4071 | ? 15 \ | |
4072 | : 14 \ | |
4073 | : ((v) & ~0x7ffff) == 0 \ | |
4074 | ? 13 \ | |
4075 | : 12 \ | |
4076 | : ((v) & ~0x3fffff) == 0 \ | |
4077 | ? ((v) & ~0x1fffff) == 0 \ | |
4078 | ? 11 \ | |
4079 | : 10 \ | |
4080 | : ((v) & ~0x7fffff) == 0 \ | |
4081 | ? 9 \ | |
4082 | : 8 \ | |
4083 | : ((v) & ~0xfffffff) == 0 \ | |
4084 | ? ((v) & ~0x3ffffff) == 0 \ | |
4085 | ? ((v) & ~0x1ffffff) == 0 \ | |
4086 | ? 7 \ | |
4087 | : 6 \ | |
4088 | : ((v) & ~0x7ffffff) == 0 \ | |
4089 | ? 5 \ | |
4090 | : 4 \ | |
4091 | : ((v) & ~0x3fffffff) == 0 \ | |
4092 | ? ((v) & ~0x1fffffff) == 0 \ | |
4093 | ? 3 \ | |
4094 | : 2 \ | |
4095 | : ((v) & ~0x7fffffff) == 0 \ | |
4096 | ? 1 \ | |
4097 | : 0) | |
4098 | ||
4099 | /* load_register() | |
67c1ffbe | 4100 | * This routine generates the least number of instructions necessary to load |
252b5132 RH |
4101 | * an absolute expression value into a register. |
4102 | */ | |
4103 | static void | |
67c0d1eb | 4104 | load_register (int reg, expressionS *ep, int dbl) |
252b5132 RH |
4105 | { |
4106 | int freg; | |
4107 | expressionS hi32, lo32; | |
4108 | ||
4109 | if (ep->X_op != O_big) | |
4110 | { | |
4111 | assert (ep->X_op == O_constant); | |
256ab948 TS |
4112 | |
4113 | /* Sign-extending 32-bit constants makes their handling easier. */ | |
2051e8c4 MR |
4114 | if (!dbl) |
4115 | normalize_constant_expr (ep); | |
256ab948 TS |
4116 | |
4117 | if (IS_SEXT_16BIT_NUM (ep->X_add_number)) | |
252b5132 RH |
4118 | { |
4119 | /* We can handle 16 bit signed values with an addiu to | |
4120 | $zero. No need to ever use daddiu here, since $zero and | |
4121 | the result are always correct in 32 bit mode. */ | |
67c0d1eb | 4122 | macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16); |
252b5132 RH |
4123 | return; |
4124 | } | |
4125 | else if (ep->X_add_number >= 0 && ep->X_add_number < 0x10000) | |
4126 | { | |
4127 | /* We can handle 16 bit unsigned values with an ori to | |
4128 | $zero. */ | |
67c0d1eb | 4129 | macro_build (ep, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16); |
252b5132 RH |
4130 | return; |
4131 | } | |
256ab948 | 4132 | else if ((IS_SEXT_32BIT_NUM (ep->X_add_number))) |
252b5132 RH |
4133 | { |
4134 | /* 32 bit values require an lui. */ | |
67c0d1eb | 4135 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_HI16); |
252b5132 | 4136 | if ((ep->X_add_number & 0xffff) != 0) |
67c0d1eb | 4137 | macro_build (ep, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16); |
252b5132 RH |
4138 | return; |
4139 | } | |
4140 | } | |
4141 | ||
4142 | /* The value is larger than 32 bits. */ | |
4143 | ||
2051e8c4 | 4144 | if (!dbl || HAVE_32BIT_GPRS) |
252b5132 | 4145 | { |
55e08f71 NC |
4146 | char value[32]; |
4147 | ||
4148 | sprintf_vma (value, ep->X_add_number); | |
20e1fcfd | 4149 | as_bad (_("Number (0x%s) larger than 32 bits"), value); |
67c0d1eb | 4150 | macro_build (ep, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16); |
252b5132 RH |
4151 | return; |
4152 | } | |
4153 | ||
4154 | if (ep->X_op != O_big) | |
4155 | { | |
4156 | hi32 = *ep; | |
4157 | hi32.X_add_number = (valueT) hi32.X_add_number >> 16; | |
4158 | hi32.X_add_number = (valueT) hi32.X_add_number >> 16; | |
4159 | hi32.X_add_number &= 0xffffffff; | |
4160 | lo32 = *ep; | |
4161 | lo32.X_add_number &= 0xffffffff; | |
4162 | } | |
4163 | else | |
4164 | { | |
4165 | assert (ep->X_add_number > 2); | |
4166 | if (ep->X_add_number == 3) | |
4167 | generic_bignum[3] = 0; | |
4168 | else if (ep->X_add_number > 4) | |
4169 | as_bad (_("Number larger than 64 bits")); | |
4170 | lo32.X_op = O_constant; | |
4171 | lo32.X_add_number = generic_bignum[0] + (generic_bignum[1] << 16); | |
4172 | hi32.X_op = O_constant; | |
4173 | hi32.X_add_number = generic_bignum[2] + (generic_bignum[3] << 16); | |
4174 | } | |
4175 | ||
4176 | if (hi32.X_add_number == 0) | |
4177 | freg = 0; | |
4178 | else | |
4179 | { | |
4180 | int shift, bit; | |
4181 | unsigned long hi, lo; | |
4182 | ||
956cd1d6 | 4183 | if (hi32.X_add_number == (offsetT) 0xffffffff) |
beae10d5 KH |
4184 | { |
4185 | if ((lo32.X_add_number & 0xffff8000) == 0xffff8000) | |
4186 | { | |
67c0d1eb | 4187 | macro_build (&lo32, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16); |
beae10d5 KH |
4188 | return; |
4189 | } | |
4190 | if (lo32.X_add_number & 0x80000000) | |
4191 | { | |
67c0d1eb | 4192 | macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16); |
252b5132 | 4193 | if (lo32.X_add_number & 0xffff) |
67c0d1eb | 4194 | macro_build (&lo32, "ori", "t,r,i", reg, reg, BFD_RELOC_LO16); |
beae10d5 KH |
4195 | return; |
4196 | } | |
4197 | } | |
252b5132 RH |
4198 | |
4199 | /* Check for 16bit shifted constant. We know that hi32 is | |
4200 | non-zero, so start the mask on the first bit of the hi32 | |
4201 | value. */ | |
4202 | shift = 17; | |
4203 | do | |
beae10d5 KH |
4204 | { |
4205 | unsigned long himask, lomask; | |
4206 | ||
4207 | if (shift < 32) | |
4208 | { | |
4209 | himask = 0xffff >> (32 - shift); | |
4210 | lomask = (0xffff << shift) & 0xffffffff; | |
4211 | } | |
4212 | else | |
4213 | { | |
4214 | himask = 0xffff << (shift - 32); | |
4215 | lomask = 0; | |
4216 | } | |
4217 | if ((hi32.X_add_number & ~(offsetT) himask) == 0 | |
4218 | && (lo32.X_add_number & ~(offsetT) lomask) == 0) | |
4219 | { | |
4220 | expressionS tmp; | |
4221 | ||
4222 | tmp.X_op = O_constant; | |
4223 | if (shift < 32) | |
4224 | tmp.X_add_number = ((hi32.X_add_number << (32 - shift)) | |
4225 | | (lo32.X_add_number >> shift)); | |
4226 | else | |
4227 | tmp.X_add_number = hi32.X_add_number >> (shift - 32); | |
67c0d1eb RS |
4228 | macro_build (&tmp, "ori", "t,r,i", reg, 0, BFD_RELOC_LO16); |
4229 | macro_build (NULL, (shift >= 32) ? "dsll32" : "dsll", "d,w,<", | |
4230 | reg, reg, (shift >= 32) ? shift - 32 : shift); | |
beae10d5 KH |
4231 | return; |
4232 | } | |
f9419b05 | 4233 | ++shift; |
beae10d5 KH |
4234 | } |
4235 | while (shift <= (64 - 16)); | |
252b5132 RH |
4236 | |
4237 | /* Find the bit number of the lowest one bit, and store the | |
4238 | shifted value in hi/lo. */ | |
4239 | hi = (unsigned long) (hi32.X_add_number & 0xffffffff); | |
4240 | lo = (unsigned long) (lo32.X_add_number & 0xffffffff); | |
4241 | if (lo != 0) | |
4242 | { | |
4243 | bit = 0; | |
4244 | while ((lo & 1) == 0) | |
4245 | { | |
4246 | lo >>= 1; | |
4247 | ++bit; | |
4248 | } | |
4249 | lo |= (hi & (((unsigned long) 1 << bit) - 1)) << (32 - bit); | |
4250 | hi >>= bit; | |
4251 | } | |
4252 | else | |
4253 | { | |
4254 | bit = 32; | |
4255 | while ((hi & 1) == 0) | |
4256 | { | |
4257 | hi >>= 1; | |
4258 | ++bit; | |
4259 | } | |
4260 | lo = hi; | |
4261 | hi = 0; | |
4262 | } | |
4263 | ||
4264 | /* Optimize if the shifted value is a (power of 2) - 1. */ | |
4265 | if ((hi == 0 && ((lo + 1) & lo) == 0) | |
4266 | || (lo == 0xffffffff && ((hi + 1) & hi) == 0)) | |
beae10d5 KH |
4267 | { |
4268 | shift = COUNT_TOP_ZEROES ((unsigned int) hi32.X_add_number); | |
252b5132 | 4269 | if (shift != 0) |
beae10d5 | 4270 | { |
252b5132 RH |
4271 | expressionS tmp; |
4272 | ||
4273 | /* This instruction will set the register to be all | |
4274 | ones. */ | |
beae10d5 KH |
4275 | tmp.X_op = O_constant; |
4276 | tmp.X_add_number = (offsetT) -1; | |
67c0d1eb | 4277 | macro_build (&tmp, "addiu", "t,r,j", reg, 0, BFD_RELOC_LO16); |
beae10d5 KH |
4278 | if (bit != 0) |
4279 | { | |
4280 | bit += shift; | |
67c0d1eb RS |
4281 | macro_build (NULL, (bit >= 32) ? "dsll32" : "dsll", "d,w,<", |
4282 | reg, reg, (bit >= 32) ? bit - 32 : bit); | |
beae10d5 | 4283 | } |
67c0d1eb RS |
4284 | macro_build (NULL, (shift >= 32) ? "dsrl32" : "dsrl", "d,w,<", |
4285 | reg, reg, (shift >= 32) ? shift - 32 : shift); | |
beae10d5 KH |
4286 | return; |
4287 | } | |
4288 | } | |
252b5132 RH |
4289 | |
4290 | /* Sign extend hi32 before calling load_register, because we can | |
4291 | generally get better code when we load a sign extended value. */ | |
4292 | if ((hi32.X_add_number & 0x80000000) != 0) | |
beae10d5 | 4293 | hi32.X_add_number |= ~(offsetT) 0xffffffff; |
67c0d1eb | 4294 | load_register (reg, &hi32, 0); |
252b5132 RH |
4295 | freg = reg; |
4296 | } | |
4297 | if ((lo32.X_add_number & 0xffff0000) == 0) | |
4298 | { | |
4299 | if (freg != 0) | |
4300 | { | |
67c0d1eb | 4301 | macro_build (NULL, "dsll32", "d,w,<", reg, freg, 0); |
252b5132 RH |
4302 | freg = reg; |
4303 | } | |
4304 | } | |
4305 | else | |
4306 | { | |
4307 | expressionS mid16; | |
4308 | ||
956cd1d6 | 4309 | if ((freg == 0) && (lo32.X_add_number == (offsetT) 0xffffffff)) |
beae10d5 | 4310 | { |
67c0d1eb RS |
4311 | macro_build (&lo32, "lui", "t,u", reg, BFD_RELOC_HI16); |
4312 | macro_build (NULL, "dsrl32", "d,w,<", reg, reg, 0); | |
beae10d5 KH |
4313 | return; |
4314 | } | |
252b5132 RH |
4315 | |
4316 | if (freg != 0) | |
4317 | { | |
67c0d1eb | 4318 | macro_build (NULL, "dsll", "d,w,<", reg, freg, 16); |
252b5132 RH |
4319 | freg = reg; |
4320 | } | |
4321 | mid16 = lo32; | |
4322 | mid16.X_add_number >>= 16; | |
67c0d1eb RS |
4323 | macro_build (&mid16, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16); |
4324 | macro_build (NULL, "dsll", "d,w,<", reg, reg, 16); | |
252b5132 RH |
4325 | freg = reg; |
4326 | } | |
4327 | if ((lo32.X_add_number & 0xffff) != 0) | |
67c0d1eb | 4328 | macro_build (&lo32, "ori", "t,r,i", reg, freg, BFD_RELOC_LO16); |
252b5132 RH |
4329 | } |
4330 | ||
269137b2 TS |
4331 | static inline void |
4332 | load_delay_nop (void) | |
4333 | { | |
4334 | if (!gpr_interlocks) | |
4335 | macro_build (NULL, "nop", ""); | |
4336 | } | |
4337 | ||
252b5132 RH |
4338 | /* Load an address into a register. */ |
4339 | ||
4340 | static void | |
67c0d1eb | 4341 | load_address (int reg, expressionS *ep, int *used_at) |
252b5132 | 4342 | { |
252b5132 RH |
4343 | if (ep->X_op != O_constant |
4344 | && ep->X_op != O_symbol) | |
4345 | { | |
4346 | as_bad (_("expression too complex")); | |
4347 | ep->X_op = O_constant; | |
4348 | } | |
4349 | ||
4350 | if (ep->X_op == O_constant) | |
4351 | { | |
67c0d1eb | 4352 | load_register (reg, ep, HAVE_64BIT_ADDRESSES); |
252b5132 RH |
4353 | return; |
4354 | } | |
4355 | ||
4356 | if (mips_pic == NO_PIC) | |
4357 | { | |
4358 | /* If this is a reference to a GP relative symbol, we want | |
cdf6fd85 | 4359 | addiu $reg,$gp,<sym> (BFD_RELOC_GPREL16) |
252b5132 RH |
4360 | Otherwise we want |
4361 | lui $reg,<sym> (BFD_RELOC_HI16_S) | |
4362 | addiu $reg,$reg,<sym> (BFD_RELOC_LO16) | |
d6bc6245 | 4363 | If we have an addend, we always use the latter form. |
76b3015f | 4364 | |
d6bc6245 TS |
4365 | With 64bit address space and a usable $at we want |
4366 | lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
4367 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
4368 | daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
4369 | daddiu $at,<sym> (BFD_RELOC_LO16) | |
4370 | dsll32 $reg,0 | |
3a482fd5 | 4371 | daddu $reg,$reg,$at |
76b3015f | 4372 | |
c03099e6 | 4373 | If $at is already in use, we use a path which is suboptimal |
d6bc6245 TS |
4374 | on superscalar processors. |
4375 | lui $reg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
4376 | daddiu $reg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
4377 | dsll $reg,16 | |
4378 | daddiu $reg,<sym> (BFD_RELOC_HI16_S) | |
4379 | dsll $reg,16 | |
4380 | daddiu $reg,<sym> (BFD_RELOC_LO16) | |
6caf9ef4 TS |
4381 | |
4382 | For GP relative symbols in 64bit address space we can use | |
4383 | the same sequence as in 32bit address space. */ | |
aed1a261 | 4384 | if (HAVE_64BIT_SYMBOLS) |
d6bc6245 | 4385 | { |
6caf9ef4 TS |
4386 | if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET |
4387 | && !nopic_need_relax (ep->X_add_symbol, 1)) | |
4388 | { | |
4389 | relax_start (ep->X_add_symbol); | |
4390 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, | |
4391 | mips_gp_register, BFD_RELOC_GPREL16); | |
4392 | relax_switch (); | |
4393 | } | |
d6bc6245 | 4394 | |
741fe287 | 4395 | if (*used_at == 0 && mips_opts.at) |
d6bc6245 | 4396 | { |
67c0d1eb RS |
4397 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST); |
4398 | macro_build (ep, "lui", "t,u", AT, BFD_RELOC_HI16_S); | |
4399 | macro_build (ep, "daddiu", "t,r,j", reg, reg, | |
4400 | BFD_RELOC_MIPS_HIGHER); | |
4401 | macro_build (ep, "daddiu", "t,r,j", AT, AT, BFD_RELOC_LO16); | |
4402 | macro_build (NULL, "dsll32", "d,w,<", reg, reg, 0); | |
4403 | macro_build (NULL, "daddu", "d,v,t", reg, reg, AT); | |
d6bc6245 TS |
4404 | *used_at = 1; |
4405 | } | |
4406 | else | |
4407 | { | |
67c0d1eb RS |
4408 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_HIGHEST); |
4409 | macro_build (ep, "daddiu", "t,r,j", reg, reg, | |
4410 | BFD_RELOC_MIPS_HIGHER); | |
4411 | macro_build (NULL, "dsll", "d,w,<", reg, reg, 16); | |
4412 | macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_HI16_S); | |
4413 | macro_build (NULL, "dsll", "d,w,<", reg, reg, 16); | |
4414 | macro_build (ep, "daddiu", "t,r,j", reg, reg, BFD_RELOC_LO16); | |
d6bc6245 | 4415 | } |
6caf9ef4 TS |
4416 | |
4417 | if (mips_relax.sequence) | |
4418 | relax_end (); | |
d6bc6245 | 4419 | } |
252b5132 RH |
4420 | else |
4421 | { | |
d6bc6245 | 4422 | if ((valueT) ep->X_add_number <= MAX_GPREL_OFFSET |
6caf9ef4 | 4423 | && !nopic_need_relax (ep->X_add_symbol, 1)) |
d6bc6245 | 4424 | { |
4d7206a2 | 4425 | relax_start (ep->X_add_symbol); |
67c0d1eb | 4426 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, |
17a2f251 | 4427 | mips_gp_register, BFD_RELOC_GPREL16); |
4d7206a2 | 4428 | relax_switch (); |
d6bc6245 | 4429 | } |
67c0d1eb RS |
4430 | macro_build_lui (ep, reg); |
4431 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", | |
4432 | reg, reg, BFD_RELOC_LO16); | |
4d7206a2 RS |
4433 | if (mips_relax.sequence) |
4434 | relax_end (); | |
d6bc6245 | 4435 | } |
252b5132 | 4436 | } |
0a44bf69 | 4437 | else if (!mips_big_got) |
252b5132 RH |
4438 | { |
4439 | expressionS ex; | |
4440 | ||
4441 | /* If this is a reference to an external symbol, we want | |
4442 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
4443 | Otherwise we want | |
4444 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
4445 | nop | |
4446 | addiu $reg,$reg,<sym> (BFD_RELOC_LO16) | |
f5040a92 AO |
4447 | If there is a constant, it must be added in after. |
4448 | ||
ed6fb7bd | 4449 | If we have NewABI, we want |
f5040a92 AO |
4450 | lw $reg,<sym+cst>($gp) (BFD_RELOC_MIPS_GOT_DISP) |
4451 | unless we're referencing a global symbol with a non-zero | |
4452 | offset, in which case cst must be added separately. */ | |
ed6fb7bd SC |
4453 | if (HAVE_NEWABI) |
4454 | { | |
f5040a92 AO |
4455 | if (ep->X_add_number) |
4456 | { | |
4d7206a2 | 4457 | ex.X_add_number = ep->X_add_number; |
f5040a92 | 4458 | ep->X_add_number = 0; |
4d7206a2 | 4459 | relax_start (ep->X_add_symbol); |
67c0d1eb RS |
4460 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
4461 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
f5040a92 AO |
4462 | if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000) |
4463 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
4464 | ex.X_op = O_constant; | |
67c0d1eb | 4465 | macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", |
17a2f251 | 4466 | reg, reg, BFD_RELOC_LO16); |
f5040a92 | 4467 | ep->X_add_number = ex.X_add_number; |
4d7206a2 | 4468 | relax_switch (); |
f5040a92 | 4469 | } |
67c0d1eb | 4470 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
17a2f251 | 4471 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); |
4d7206a2 RS |
4472 | if (mips_relax.sequence) |
4473 | relax_end (); | |
ed6fb7bd SC |
4474 | } |
4475 | else | |
4476 | { | |
f5040a92 AO |
4477 | ex.X_add_number = ep->X_add_number; |
4478 | ep->X_add_number = 0; | |
67c0d1eb RS |
4479 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
4480 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
269137b2 | 4481 | load_delay_nop (); |
4d7206a2 RS |
4482 | relax_start (ep->X_add_symbol); |
4483 | relax_switch (); | |
67c0d1eb | 4484 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
17a2f251 | 4485 | BFD_RELOC_LO16); |
4d7206a2 | 4486 | relax_end (); |
ed6fb7bd | 4487 | |
f5040a92 AO |
4488 | if (ex.X_add_number != 0) |
4489 | { | |
4490 | if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000) | |
4491 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
4492 | ex.X_op = O_constant; | |
67c0d1eb | 4493 | macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", |
17a2f251 | 4494 | reg, reg, BFD_RELOC_LO16); |
f5040a92 | 4495 | } |
252b5132 RH |
4496 | } |
4497 | } | |
0a44bf69 | 4498 | else if (mips_big_got) |
252b5132 RH |
4499 | { |
4500 | expressionS ex; | |
252b5132 RH |
4501 | |
4502 | /* This is the large GOT case. If this is a reference to an | |
4503 | external symbol, we want | |
4504 | lui $reg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
4505 | addu $reg,$reg,$gp | |
4506 | lw $reg,<sym>($reg) (BFD_RELOC_MIPS_GOT_LO16) | |
f5040a92 AO |
4507 | |
4508 | Otherwise, for a reference to a local symbol in old ABI, we want | |
252b5132 RH |
4509 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) |
4510 | nop | |
4511 | addiu $reg,$reg,<sym> (BFD_RELOC_LO16) | |
684022ea | 4512 | If there is a constant, it must be added in after. |
f5040a92 AO |
4513 | |
4514 | In the NewABI, for local symbols, with or without offsets, we want: | |
438c16b8 TS |
4515 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE) |
4516 | addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST) | |
f5040a92 | 4517 | */ |
438c16b8 TS |
4518 | if (HAVE_NEWABI) |
4519 | { | |
4d7206a2 | 4520 | ex.X_add_number = ep->X_add_number; |
f5040a92 | 4521 | ep->X_add_number = 0; |
4d7206a2 | 4522 | relax_start (ep->X_add_symbol); |
67c0d1eb RS |
4523 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16); |
4524 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
4525 | reg, reg, mips_gp_register); | |
4526 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", | |
4527 | reg, BFD_RELOC_MIPS_GOT_LO16, reg); | |
f5040a92 AO |
4528 | if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000) |
4529 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
4530 | else if (ex.X_add_number) | |
4531 | { | |
4532 | ex.X_op = O_constant; | |
67c0d1eb RS |
4533 | macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
4534 | BFD_RELOC_LO16); | |
f5040a92 AO |
4535 | } |
4536 | ||
4537 | ep->X_add_number = ex.X_add_number; | |
4d7206a2 | 4538 | relax_switch (); |
67c0d1eb | 4539 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
17a2f251 | 4540 | BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register); |
67c0d1eb RS |
4541 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
4542 | BFD_RELOC_MIPS_GOT_OFST); | |
4d7206a2 | 4543 | relax_end (); |
438c16b8 | 4544 | } |
252b5132 | 4545 | else |
438c16b8 | 4546 | { |
f5040a92 AO |
4547 | ex.X_add_number = ep->X_add_number; |
4548 | ep->X_add_number = 0; | |
4d7206a2 | 4549 | relax_start (ep->X_add_symbol); |
67c0d1eb RS |
4550 | macro_build (ep, "lui", "t,u", reg, BFD_RELOC_MIPS_GOT_HI16); |
4551 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
4552 | reg, reg, mips_gp_register); | |
4553 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", | |
4554 | reg, BFD_RELOC_MIPS_GOT_LO16, reg); | |
4d7206a2 RS |
4555 | relax_switch (); |
4556 | if (reg_needs_delay (mips_gp_register)) | |
438c16b8 TS |
4557 | { |
4558 | /* We need a nop before loading from $gp. This special | |
4559 | check is required because the lui which starts the main | |
4560 | instruction stream does not refer to $gp, and so will not | |
4561 | insert the nop which may be required. */ | |
67c0d1eb | 4562 | macro_build (NULL, "nop", ""); |
438c16b8 | 4563 | } |
67c0d1eb | 4564 | macro_build (ep, ADDRESS_LOAD_INSN, "t,o(b)", reg, |
17a2f251 | 4565 | BFD_RELOC_MIPS_GOT16, mips_gp_register); |
269137b2 | 4566 | load_delay_nop (); |
67c0d1eb | 4567 | macro_build (ep, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
17a2f251 | 4568 | BFD_RELOC_LO16); |
4d7206a2 | 4569 | relax_end (); |
438c16b8 | 4570 | |
f5040a92 AO |
4571 | if (ex.X_add_number != 0) |
4572 | { | |
4573 | if (ex.X_add_number < -0x8000 || ex.X_add_number >= 0x8000) | |
4574 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
4575 | ex.X_op = O_constant; | |
67c0d1eb RS |
4576 | macro_build (&ex, ADDRESS_ADDI_INSN, "t,r,j", reg, reg, |
4577 | BFD_RELOC_LO16); | |
f5040a92 | 4578 | } |
252b5132 RH |
4579 | } |
4580 | } | |
252b5132 RH |
4581 | else |
4582 | abort (); | |
8fc2e39e | 4583 | |
741fe287 | 4584 | if (!mips_opts.at && *used_at == 1) |
8fc2e39e | 4585 | as_bad (_("Macro used $at after \".set noat\"")); |
252b5132 RH |
4586 | } |
4587 | ||
ea1fb5dc RS |
4588 | /* Move the contents of register SOURCE into register DEST. */ |
4589 | ||
4590 | static void | |
67c0d1eb | 4591 | move_register (int dest, int source) |
ea1fb5dc | 4592 | { |
67c0d1eb RS |
4593 | macro_build (NULL, HAVE_32BIT_GPRS ? "addu" : "daddu", "d,v,t", |
4594 | dest, source, 0); | |
ea1fb5dc RS |
4595 | } |
4596 | ||
4d7206a2 | 4597 | /* Emit an SVR4 PIC sequence to load address LOCAL into DEST, where |
f6a22291 MR |
4598 | LOCAL is the sum of a symbol and a 16-bit or 32-bit displacement. |
4599 | The two alternatives are: | |
4d7206a2 RS |
4600 | |
4601 | Global symbol Local sybmol | |
4602 | ------------- ------------ | |
4603 | lw DEST,%got(SYMBOL) lw DEST,%got(SYMBOL + OFFSET) | |
4604 | ... ... | |
4605 | addiu DEST,DEST,OFFSET addiu DEST,DEST,%lo(SYMBOL + OFFSET) | |
4606 | ||
4607 | load_got_offset emits the first instruction and add_got_offset | |
f6a22291 MR |
4608 | emits the second for a 16-bit offset or add_got_offset_hilo emits |
4609 | a sequence to add a 32-bit offset using a scratch register. */ | |
4d7206a2 RS |
4610 | |
4611 | static void | |
67c0d1eb | 4612 | load_got_offset (int dest, expressionS *local) |
4d7206a2 RS |
4613 | { |
4614 | expressionS global; | |
4615 | ||
4616 | global = *local; | |
4617 | global.X_add_number = 0; | |
4618 | ||
4619 | relax_start (local->X_add_symbol); | |
67c0d1eb RS |
4620 | macro_build (&global, ADDRESS_LOAD_INSN, "t,o(b)", dest, |
4621 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
4d7206a2 | 4622 | relax_switch (); |
67c0d1eb RS |
4623 | macro_build (local, ADDRESS_LOAD_INSN, "t,o(b)", dest, |
4624 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
4d7206a2 RS |
4625 | relax_end (); |
4626 | } | |
4627 | ||
4628 | static void | |
67c0d1eb | 4629 | add_got_offset (int dest, expressionS *local) |
4d7206a2 RS |
4630 | { |
4631 | expressionS global; | |
4632 | ||
4633 | global.X_op = O_constant; | |
4634 | global.X_op_symbol = NULL; | |
4635 | global.X_add_symbol = NULL; | |
4636 | global.X_add_number = local->X_add_number; | |
4637 | ||
4638 | relax_start (local->X_add_symbol); | |
67c0d1eb | 4639 | macro_build (&global, ADDRESS_ADDI_INSN, "t,r,j", |
4d7206a2 RS |
4640 | dest, dest, BFD_RELOC_LO16); |
4641 | relax_switch (); | |
67c0d1eb | 4642 | macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", dest, dest, BFD_RELOC_LO16); |
4d7206a2 RS |
4643 | relax_end (); |
4644 | } | |
4645 | ||
f6a22291 MR |
4646 | static void |
4647 | add_got_offset_hilo (int dest, expressionS *local, int tmp) | |
4648 | { | |
4649 | expressionS global; | |
4650 | int hold_mips_optimize; | |
4651 | ||
4652 | global.X_op = O_constant; | |
4653 | global.X_op_symbol = NULL; | |
4654 | global.X_add_symbol = NULL; | |
4655 | global.X_add_number = local->X_add_number; | |
4656 | ||
4657 | relax_start (local->X_add_symbol); | |
4658 | load_register (tmp, &global, HAVE_64BIT_ADDRESSES); | |
4659 | relax_switch (); | |
4660 | /* Set mips_optimize around the lui instruction to avoid | |
4661 | inserting an unnecessary nop after the lw. */ | |
4662 | hold_mips_optimize = mips_optimize; | |
4663 | mips_optimize = 2; | |
4664 | macro_build_lui (&global, tmp); | |
4665 | mips_optimize = hold_mips_optimize; | |
4666 | macro_build (local, ADDRESS_ADDI_INSN, "t,r,j", tmp, tmp, BFD_RELOC_LO16); | |
4667 | relax_end (); | |
4668 | ||
4669 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dest, dest, tmp); | |
4670 | } | |
4671 | ||
252b5132 RH |
4672 | /* |
4673 | * Build macros | |
4674 | * This routine implements the seemingly endless macro or synthesized | |
4675 | * instructions and addressing modes in the mips assembly language. Many | |
4676 | * of these macros are simple and are similar to each other. These could | |
67c1ffbe | 4677 | * probably be handled by some kind of table or grammar approach instead of |
252b5132 RH |
4678 | * this verbose method. Others are not simple macros but are more like |
4679 | * optimizing code generation. | |
4680 | * One interesting optimization is when several store macros appear | |
67c1ffbe | 4681 | * consecutively that would load AT with the upper half of the same address. |
252b5132 RH |
4682 | * The ensuing load upper instructions are ommited. This implies some kind |
4683 | * of global optimization. We currently only optimize within a single macro. | |
4684 | * For many of the load and store macros if the address is specified as a | |
4685 | * constant expression in the first 64k of memory (ie ld $2,0x4000c) we | |
4686 | * first load register 'at' with zero and use it as the base register. The | |
4687 | * mips assembler simply uses register $zero. Just one tiny optimization | |
4688 | * we're missing. | |
4689 | */ | |
4690 | static void | |
17a2f251 | 4691 | macro (struct mips_cl_insn *ip) |
252b5132 | 4692 | { |
741fe287 MR |
4693 | unsigned int treg, sreg, dreg, breg; |
4694 | unsigned int tempreg; | |
252b5132 | 4695 | int mask; |
43841e91 | 4696 | int used_at = 0; |
252b5132 RH |
4697 | expressionS expr1; |
4698 | const char *s; | |
4699 | const char *s2; | |
4700 | const char *fmt; | |
4701 | int likely = 0; | |
4702 | int dbl = 0; | |
4703 | int coproc = 0; | |
4704 | int lr = 0; | |
4705 | int imm = 0; | |
1abe91b1 | 4706 | int call = 0; |
252b5132 | 4707 | int off; |
67c0d1eb | 4708 | offsetT maxnum; |
252b5132 | 4709 | bfd_reloc_code_real_type r; |
252b5132 RH |
4710 | int hold_mips_optimize; |
4711 | ||
4712 | assert (! mips_opts.mips16); | |
4713 | ||
4714 | treg = (ip->insn_opcode >> 16) & 0x1f; | |
4715 | dreg = (ip->insn_opcode >> 11) & 0x1f; | |
4716 | sreg = breg = (ip->insn_opcode >> 21) & 0x1f; | |
4717 | mask = ip->insn_mo->mask; | |
4718 | ||
4719 | expr1.X_op = O_constant; | |
4720 | expr1.X_op_symbol = NULL; | |
4721 | expr1.X_add_symbol = NULL; | |
4722 | expr1.X_add_number = 1; | |
4723 | ||
4724 | switch (mask) | |
4725 | { | |
4726 | case M_DABS: | |
4727 | dbl = 1; | |
4728 | case M_ABS: | |
4729 | /* bgez $a0,.+12 | |
4730 | move v0,$a0 | |
4731 | sub v0,$zero,$a0 | |
4732 | */ | |
4733 | ||
7d10b47d | 4734 | start_noreorder (); |
252b5132 RH |
4735 | |
4736 | expr1.X_add_number = 8; | |
67c0d1eb | 4737 | macro_build (&expr1, "bgez", "s,p", sreg); |
252b5132 | 4738 | if (dreg == sreg) |
67c0d1eb | 4739 | macro_build (NULL, "nop", "", 0); |
252b5132 | 4740 | else |
67c0d1eb RS |
4741 | move_register (dreg, sreg); |
4742 | macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, 0, sreg); | |
252b5132 | 4743 | |
7d10b47d | 4744 | end_noreorder (); |
8fc2e39e | 4745 | break; |
252b5132 RH |
4746 | |
4747 | case M_ADD_I: | |
4748 | s = "addi"; | |
4749 | s2 = "add"; | |
4750 | goto do_addi; | |
4751 | case M_ADDU_I: | |
4752 | s = "addiu"; | |
4753 | s2 = "addu"; | |
4754 | goto do_addi; | |
4755 | case M_DADD_I: | |
4756 | dbl = 1; | |
4757 | s = "daddi"; | |
4758 | s2 = "dadd"; | |
4759 | goto do_addi; | |
4760 | case M_DADDU_I: | |
4761 | dbl = 1; | |
4762 | s = "daddiu"; | |
4763 | s2 = "daddu"; | |
4764 | do_addi: | |
4765 | if (imm_expr.X_op == O_constant | |
4766 | && imm_expr.X_add_number >= -0x8000 | |
4767 | && imm_expr.X_add_number < 0x8000) | |
4768 | { | |
67c0d1eb | 4769 | macro_build (&imm_expr, s, "t,r,j", treg, sreg, BFD_RELOC_LO16); |
8fc2e39e | 4770 | break; |
252b5132 | 4771 | } |
8fc2e39e | 4772 | used_at = 1; |
67c0d1eb RS |
4773 | load_register (AT, &imm_expr, dbl); |
4774 | macro_build (NULL, s2, "d,v,t", treg, sreg, AT); | |
252b5132 RH |
4775 | break; |
4776 | ||
4777 | case M_AND_I: | |
4778 | s = "andi"; | |
4779 | s2 = "and"; | |
4780 | goto do_bit; | |
4781 | case M_OR_I: | |
4782 | s = "ori"; | |
4783 | s2 = "or"; | |
4784 | goto do_bit; | |
4785 | case M_NOR_I: | |
4786 | s = ""; | |
4787 | s2 = "nor"; | |
4788 | goto do_bit; | |
4789 | case M_XOR_I: | |
4790 | s = "xori"; | |
4791 | s2 = "xor"; | |
4792 | do_bit: | |
4793 | if (imm_expr.X_op == O_constant | |
4794 | && imm_expr.X_add_number >= 0 | |
4795 | && imm_expr.X_add_number < 0x10000) | |
4796 | { | |
4797 | if (mask != M_NOR_I) | |
67c0d1eb | 4798 | macro_build (&imm_expr, s, "t,r,i", treg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
4799 | else |
4800 | { | |
67c0d1eb RS |
4801 | macro_build (&imm_expr, "ori", "t,r,i", |
4802 | treg, sreg, BFD_RELOC_LO16); | |
4803 | macro_build (NULL, "nor", "d,v,t", treg, treg, 0); | |
252b5132 | 4804 | } |
8fc2e39e | 4805 | break; |
252b5132 RH |
4806 | } |
4807 | ||
8fc2e39e | 4808 | used_at = 1; |
67c0d1eb RS |
4809 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
4810 | macro_build (NULL, s2, "d,v,t", treg, sreg, AT); | |
252b5132 RH |
4811 | break; |
4812 | ||
8b082fb1 TS |
4813 | case M_BALIGN: |
4814 | switch (imm_expr.X_add_number) | |
4815 | { | |
4816 | case 0: | |
4817 | macro_build (NULL, "nop", ""); | |
4818 | break; | |
4819 | case 2: | |
4820 | macro_build (NULL, "packrl.ph", "d,s,t", treg, treg, sreg); | |
4821 | break; | |
4822 | default: | |
4823 | macro_build (NULL, "balign", "t,s,2", treg, sreg, | |
4824 | (int)imm_expr.X_add_number); | |
4825 | break; | |
4826 | } | |
4827 | break; | |
4828 | ||
252b5132 RH |
4829 | case M_BEQ_I: |
4830 | s = "beq"; | |
4831 | goto beq_i; | |
4832 | case M_BEQL_I: | |
4833 | s = "beql"; | |
4834 | likely = 1; | |
4835 | goto beq_i; | |
4836 | case M_BNE_I: | |
4837 | s = "bne"; | |
4838 | goto beq_i; | |
4839 | case M_BNEL_I: | |
4840 | s = "bnel"; | |
4841 | likely = 1; | |
4842 | beq_i: | |
4843 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
4844 | { | |
67c0d1eb | 4845 | macro_build (&offset_expr, s, "s,t,p", sreg, 0); |
8fc2e39e | 4846 | break; |
252b5132 | 4847 | } |
8fc2e39e | 4848 | used_at = 1; |
67c0d1eb RS |
4849 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
4850 | macro_build (&offset_expr, s, "s,t,p", sreg, AT); | |
252b5132 RH |
4851 | break; |
4852 | ||
4853 | case M_BGEL: | |
4854 | likely = 1; | |
4855 | case M_BGE: | |
4856 | if (treg == 0) | |
4857 | { | |
67c0d1eb | 4858 | macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg); |
8fc2e39e | 4859 | break; |
252b5132 RH |
4860 | } |
4861 | if (sreg == 0) | |
4862 | { | |
67c0d1eb | 4863 | macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", treg); |
8fc2e39e | 4864 | break; |
252b5132 | 4865 | } |
8fc2e39e | 4866 | used_at = 1; |
67c0d1eb RS |
4867 | macro_build (NULL, "slt", "d,v,t", AT, sreg, treg); |
4868 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4869 | break; |
4870 | ||
4871 | case M_BGTL_I: | |
4872 | likely = 1; | |
4873 | case M_BGT_I: | |
4874 | /* check for > max integer */ | |
4875 | maxnum = 0x7fffffff; | |
ca4e0257 | 4876 | if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4) |
252b5132 RH |
4877 | { |
4878 | maxnum <<= 16; | |
4879 | maxnum |= 0xffff; | |
4880 | maxnum <<= 16; | |
4881 | maxnum |= 0xffff; | |
4882 | } | |
4883 | if (imm_expr.X_op == O_constant | |
4884 | && imm_expr.X_add_number >= maxnum | |
ca4e0257 | 4885 | && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4)) |
252b5132 RH |
4886 | { |
4887 | do_false: | |
4888 | /* result is always false */ | |
4889 | if (! likely) | |
67c0d1eb | 4890 | macro_build (NULL, "nop", "", 0); |
252b5132 | 4891 | else |
67c0d1eb | 4892 | macro_build (&offset_expr, "bnel", "s,t,p", 0, 0); |
8fc2e39e | 4893 | break; |
252b5132 RH |
4894 | } |
4895 | if (imm_expr.X_op != O_constant) | |
4896 | as_bad (_("Unsupported large constant")); | |
f9419b05 | 4897 | ++imm_expr.X_add_number; |
252b5132 RH |
4898 | /* FALLTHROUGH */ |
4899 | case M_BGE_I: | |
4900 | case M_BGEL_I: | |
4901 | if (mask == M_BGEL_I) | |
4902 | likely = 1; | |
4903 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
4904 | { | |
67c0d1eb | 4905 | macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", sreg); |
8fc2e39e | 4906 | break; |
252b5132 RH |
4907 | } |
4908 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
4909 | { | |
67c0d1eb | 4910 | macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg); |
8fc2e39e | 4911 | break; |
252b5132 RH |
4912 | } |
4913 | maxnum = 0x7fffffff; | |
ca4e0257 | 4914 | if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4) |
252b5132 RH |
4915 | { |
4916 | maxnum <<= 16; | |
4917 | maxnum |= 0xffff; | |
4918 | maxnum <<= 16; | |
4919 | maxnum |= 0xffff; | |
4920 | } | |
4921 | maxnum = - maxnum - 1; | |
4922 | if (imm_expr.X_op == O_constant | |
4923 | && imm_expr.X_add_number <= maxnum | |
ca4e0257 | 4924 | && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4)) |
252b5132 RH |
4925 | { |
4926 | do_true: | |
4927 | /* result is always true */ | |
4928 | as_warn (_("Branch %s is always true"), ip->insn_mo->name); | |
67c0d1eb | 4929 | macro_build (&offset_expr, "b", "p"); |
8fc2e39e | 4930 | break; |
252b5132 | 4931 | } |
8fc2e39e | 4932 | used_at = 1; |
67c0d1eb RS |
4933 | set_at (sreg, 0); |
4934 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4935 | break; |
4936 | ||
4937 | case M_BGEUL: | |
4938 | likely = 1; | |
4939 | case M_BGEU: | |
4940 | if (treg == 0) | |
4941 | goto do_true; | |
4942 | if (sreg == 0) | |
4943 | { | |
67c0d1eb | 4944 | macro_build (&offset_expr, likely ? "beql" : "beq", |
17a2f251 | 4945 | "s,t,p", 0, treg); |
8fc2e39e | 4946 | break; |
252b5132 | 4947 | } |
8fc2e39e | 4948 | used_at = 1; |
67c0d1eb RS |
4949 | macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg); |
4950 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4951 | break; |
4952 | ||
4953 | case M_BGTUL_I: | |
4954 | likely = 1; | |
4955 | case M_BGTU_I: | |
4956 | if (sreg == 0 | |
ca4e0257 | 4957 | || (HAVE_32BIT_GPRS |
252b5132 | 4958 | && imm_expr.X_op == O_constant |
956cd1d6 | 4959 | && imm_expr.X_add_number == (offsetT) 0xffffffff)) |
252b5132 RH |
4960 | goto do_false; |
4961 | if (imm_expr.X_op != O_constant) | |
4962 | as_bad (_("Unsupported large constant")); | |
f9419b05 | 4963 | ++imm_expr.X_add_number; |
252b5132 RH |
4964 | /* FALLTHROUGH */ |
4965 | case M_BGEU_I: | |
4966 | case M_BGEUL_I: | |
4967 | if (mask == M_BGEUL_I) | |
4968 | likely = 1; | |
4969 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
4970 | goto do_true; | |
4971 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
4972 | { | |
67c0d1eb | 4973 | macro_build (&offset_expr, likely ? "bnel" : "bne", |
17a2f251 | 4974 | "s,t,p", sreg, 0); |
8fc2e39e | 4975 | break; |
252b5132 | 4976 | } |
8fc2e39e | 4977 | used_at = 1; |
67c0d1eb RS |
4978 | set_at (sreg, 1); |
4979 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
4980 | break; |
4981 | ||
4982 | case M_BGTL: | |
4983 | likely = 1; | |
4984 | case M_BGT: | |
4985 | if (treg == 0) | |
4986 | { | |
67c0d1eb | 4987 | macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", sreg); |
8fc2e39e | 4988 | break; |
252b5132 RH |
4989 | } |
4990 | if (sreg == 0) | |
4991 | { | |
67c0d1eb | 4992 | macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", treg); |
8fc2e39e | 4993 | break; |
252b5132 | 4994 | } |
8fc2e39e | 4995 | used_at = 1; |
67c0d1eb RS |
4996 | macro_build (NULL, "slt", "d,v,t", AT, treg, sreg); |
4997 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
4998 | break; |
4999 | ||
5000 | case M_BGTUL: | |
5001 | likely = 1; | |
5002 | case M_BGTU: | |
5003 | if (treg == 0) | |
5004 | { | |
67c0d1eb | 5005 | macro_build (&offset_expr, likely ? "bnel" : "bne", |
17a2f251 | 5006 | "s,t,p", sreg, 0); |
8fc2e39e | 5007 | break; |
252b5132 RH |
5008 | } |
5009 | if (sreg == 0) | |
5010 | goto do_false; | |
8fc2e39e | 5011 | used_at = 1; |
67c0d1eb RS |
5012 | macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg); |
5013 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
5014 | break; |
5015 | ||
5016 | case M_BLEL: | |
5017 | likely = 1; | |
5018 | case M_BLE: | |
5019 | if (treg == 0) | |
5020 | { | |
67c0d1eb | 5021 | macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg); |
8fc2e39e | 5022 | break; |
252b5132 RH |
5023 | } |
5024 | if (sreg == 0) | |
5025 | { | |
67c0d1eb | 5026 | macro_build (&offset_expr, likely ? "bgezl" : "bgez", "s,p", treg); |
8fc2e39e | 5027 | break; |
252b5132 | 5028 | } |
8fc2e39e | 5029 | used_at = 1; |
67c0d1eb RS |
5030 | macro_build (NULL, "slt", "d,v,t", AT, treg, sreg); |
5031 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
5032 | break; |
5033 | ||
5034 | case M_BLEL_I: | |
5035 | likely = 1; | |
5036 | case M_BLE_I: | |
5037 | maxnum = 0x7fffffff; | |
ca4e0257 | 5038 | if (HAVE_64BIT_GPRS && sizeof (maxnum) > 4) |
252b5132 RH |
5039 | { |
5040 | maxnum <<= 16; | |
5041 | maxnum |= 0xffff; | |
5042 | maxnum <<= 16; | |
5043 | maxnum |= 0xffff; | |
5044 | } | |
5045 | if (imm_expr.X_op == O_constant | |
5046 | && imm_expr.X_add_number >= maxnum | |
ca4e0257 | 5047 | && (HAVE_32BIT_GPRS || sizeof (maxnum) > 4)) |
252b5132 RH |
5048 | goto do_true; |
5049 | if (imm_expr.X_op != O_constant) | |
5050 | as_bad (_("Unsupported large constant")); | |
f9419b05 | 5051 | ++imm_expr.X_add_number; |
252b5132 RH |
5052 | /* FALLTHROUGH */ |
5053 | case M_BLT_I: | |
5054 | case M_BLTL_I: | |
5055 | if (mask == M_BLTL_I) | |
5056 | likely = 1; | |
5057 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
5058 | { | |
67c0d1eb | 5059 | macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg); |
8fc2e39e | 5060 | break; |
252b5132 RH |
5061 | } |
5062 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
5063 | { | |
67c0d1eb | 5064 | macro_build (&offset_expr, likely ? "blezl" : "blez", "s,p", sreg); |
8fc2e39e | 5065 | break; |
252b5132 | 5066 | } |
8fc2e39e | 5067 | used_at = 1; |
67c0d1eb RS |
5068 | set_at (sreg, 0); |
5069 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
5070 | break; |
5071 | ||
5072 | case M_BLEUL: | |
5073 | likely = 1; | |
5074 | case M_BLEU: | |
5075 | if (treg == 0) | |
5076 | { | |
67c0d1eb | 5077 | macro_build (&offset_expr, likely ? "beql" : "beq", |
17a2f251 | 5078 | "s,t,p", sreg, 0); |
8fc2e39e | 5079 | break; |
252b5132 RH |
5080 | } |
5081 | if (sreg == 0) | |
5082 | goto do_true; | |
8fc2e39e | 5083 | used_at = 1; |
67c0d1eb RS |
5084 | macro_build (NULL, "sltu", "d,v,t", AT, treg, sreg); |
5085 | macro_build (&offset_expr, likely ? "beql" : "beq", "s,t,p", AT, 0); | |
252b5132 RH |
5086 | break; |
5087 | ||
5088 | case M_BLEUL_I: | |
5089 | likely = 1; | |
5090 | case M_BLEU_I: | |
5091 | if (sreg == 0 | |
ca4e0257 | 5092 | || (HAVE_32BIT_GPRS |
252b5132 | 5093 | && imm_expr.X_op == O_constant |
956cd1d6 | 5094 | && imm_expr.X_add_number == (offsetT) 0xffffffff)) |
252b5132 RH |
5095 | goto do_true; |
5096 | if (imm_expr.X_op != O_constant) | |
5097 | as_bad (_("Unsupported large constant")); | |
f9419b05 | 5098 | ++imm_expr.X_add_number; |
252b5132 RH |
5099 | /* FALLTHROUGH */ |
5100 | case M_BLTU_I: | |
5101 | case M_BLTUL_I: | |
5102 | if (mask == M_BLTUL_I) | |
5103 | likely = 1; | |
5104 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
5105 | goto do_false; | |
5106 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
5107 | { | |
67c0d1eb | 5108 | macro_build (&offset_expr, likely ? "beql" : "beq", |
252b5132 | 5109 | "s,t,p", sreg, 0); |
8fc2e39e | 5110 | break; |
252b5132 | 5111 | } |
8fc2e39e | 5112 | used_at = 1; |
67c0d1eb RS |
5113 | set_at (sreg, 1); |
5114 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
5115 | break; |
5116 | ||
5117 | case M_BLTL: | |
5118 | likely = 1; | |
5119 | case M_BLT: | |
5120 | if (treg == 0) | |
5121 | { | |
67c0d1eb | 5122 | macro_build (&offset_expr, likely ? "bltzl" : "bltz", "s,p", sreg); |
8fc2e39e | 5123 | break; |
252b5132 RH |
5124 | } |
5125 | if (sreg == 0) | |
5126 | { | |
67c0d1eb | 5127 | macro_build (&offset_expr, likely ? "bgtzl" : "bgtz", "s,p", treg); |
8fc2e39e | 5128 | break; |
252b5132 | 5129 | } |
8fc2e39e | 5130 | used_at = 1; |
67c0d1eb RS |
5131 | macro_build (NULL, "slt", "d,v,t", AT, sreg, treg); |
5132 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
5133 | break; |
5134 | ||
5135 | case M_BLTUL: | |
5136 | likely = 1; | |
5137 | case M_BLTU: | |
5138 | if (treg == 0) | |
5139 | goto do_false; | |
5140 | if (sreg == 0) | |
5141 | { | |
67c0d1eb | 5142 | macro_build (&offset_expr, likely ? "bnel" : "bne", |
17a2f251 | 5143 | "s,t,p", 0, treg); |
8fc2e39e | 5144 | break; |
252b5132 | 5145 | } |
8fc2e39e | 5146 | used_at = 1; |
67c0d1eb RS |
5147 | macro_build (NULL, "sltu", "d,v,t", AT, sreg, treg); |
5148 | macro_build (&offset_expr, likely ? "bnel" : "bne", "s,t,p", AT, 0); | |
252b5132 RH |
5149 | break; |
5150 | ||
5f74bc13 CD |
5151 | case M_DEXT: |
5152 | { | |
5153 | unsigned long pos; | |
5154 | unsigned long size; | |
5155 | ||
5156 | if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant) | |
5157 | { | |
5158 | as_bad (_("Unsupported large constant")); | |
5159 | pos = size = 1; | |
5160 | } | |
5161 | else | |
5162 | { | |
5163 | pos = (unsigned long) imm_expr.X_add_number; | |
5164 | size = (unsigned long) imm2_expr.X_add_number; | |
5165 | } | |
5166 | ||
5167 | if (pos > 63) | |
5168 | { | |
5169 | as_bad (_("Improper position (%lu)"), pos); | |
5170 | pos = 1; | |
5171 | } | |
5172 | if (size == 0 || size > 64 | |
5173 | || (pos + size - 1) > 63) | |
5174 | { | |
5175 | as_bad (_("Improper extract size (%lu, position %lu)"), | |
5176 | size, pos); | |
5177 | size = 1; | |
5178 | } | |
5179 | ||
5180 | if (size <= 32 && pos < 32) | |
5181 | { | |
5182 | s = "dext"; | |
5183 | fmt = "t,r,+A,+C"; | |
5184 | } | |
5185 | else if (size <= 32) | |
5186 | { | |
5187 | s = "dextu"; | |
5188 | fmt = "t,r,+E,+H"; | |
5189 | } | |
5190 | else | |
5191 | { | |
5192 | s = "dextm"; | |
5193 | fmt = "t,r,+A,+G"; | |
5194 | } | |
67c0d1eb | 5195 | macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, size - 1); |
5f74bc13 | 5196 | } |
8fc2e39e | 5197 | break; |
5f74bc13 CD |
5198 | |
5199 | case M_DINS: | |
5200 | { | |
5201 | unsigned long pos; | |
5202 | unsigned long size; | |
5203 | ||
5204 | if (imm_expr.X_op != O_constant || imm2_expr.X_op != O_constant) | |
5205 | { | |
5206 | as_bad (_("Unsupported large constant")); | |
5207 | pos = size = 1; | |
5208 | } | |
5209 | else | |
5210 | { | |
5211 | pos = (unsigned long) imm_expr.X_add_number; | |
5212 | size = (unsigned long) imm2_expr.X_add_number; | |
5213 | } | |
5214 | ||
5215 | if (pos > 63) | |
5216 | { | |
5217 | as_bad (_("Improper position (%lu)"), pos); | |
5218 | pos = 1; | |
5219 | } | |
5220 | if (size == 0 || size > 64 | |
5221 | || (pos + size - 1) > 63) | |
5222 | { | |
5223 | as_bad (_("Improper insert size (%lu, position %lu)"), | |
5224 | size, pos); | |
5225 | size = 1; | |
5226 | } | |
5227 | ||
5228 | if (pos < 32 && (pos + size - 1) < 32) | |
5229 | { | |
5230 | s = "dins"; | |
5231 | fmt = "t,r,+A,+B"; | |
5232 | } | |
5233 | else if (pos >= 32) | |
5234 | { | |
5235 | s = "dinsu"; | |
5236 | fmt = "t,r,+E,+F"; | |
5237 | } | |
5238 | else | |
5239 | { | |
5240 | s = "dinsm"; | |
5241 | fmt = "t,r,+A,+F"; | |
5242 | } | |
67c0d1eb RS |
5243 | macro_build ((expressionS *) NULL, s, fmt, treg, sreg, pos, |
5244 | pos + size - 1); | |
5f74bc13 | 5245 | } |
8fc2e39e | 5246 | break; |
5f74bc13 | 5247 | |
252b5132 RH |
5248 | case M_DDIV_3: |
5249 | dbl = 1; | |
5250 | case M_DIV_3: | |
5251 | s = "mflo"; | |
5252 | goto do_div3; | |
5253 | case M_DREM_3: | |
5254 | dbl = 1; | |
5255 | case M_REM_3: | |
5256 | s = "mfhi"; | |
5257 | do_div3: | |
5258 | if (treg == 0) | |
5259 | { | |
5260 | as_warn (_("Divide by zero.")); | |
5261 | if (mips_trap) | |
67c0d1eb | 5262 | macro_build (NULL, "teq", "s,t,q", 0, 0, 7); |
252b5132 | 5263 | else |
67c0d1eb | 5264 | macro_build (NULL, "break", "c", 7); |
8fc2e39e | 5265 | break; |
252b5132 RH |
5266 | } |
5267 | ||
7d10b47d | 5268 | start_noreorder (); |
252b5132 RH |
5269 | if (mips_trap) |
5270 | { | |
67c0d1eb RS |
5271 | macro_build (NULL, "teq", "s,t,q", treg, 0, 7); |
5272 | macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg); | |
252b5132 RH |
5273 | } |
5274 | else | |
5275 | { | |
5276 | expr1.X_add_number = 8; | |
67c0d1eb RS |
5277 | macro_build (&expr1, "bne", "s,t,p", treg, 0); |
5278 | macro_build (NULL, dbl ? "ddiv" : "div", "z,s,t", sreg, treg); | |
5279 | macro_build (NULL, "break", "c", 7); | |
252b5132 RH |
5280 | } |
5281 | expr1.X_add_number = -1; | |
8fc2e39e | 5282 | used_at = 1; |
f6a22291 | 5283 | load_register (AT, &expr1, dbl); |
252b5132 | 5284 | expr1.X_add_number = mips_trap ? (dbl ? 12 : 8) : (dbl ? 20 : 16); |
67c0d1eb | 5285 | macro_build (&expr1, "bne", "s,t,p", treg, AT); |
252b5132 RH |
5286 | if (dbl) |
5287 | { | |
5288 | expr1.X_add_number = 1; | |
f6a22291 | 5289 | load_register (AT, &expr1, dbl); |
67c0d1eb | 5290 | macro_build (NULL, "dsll32", "d,w,<", AT, AT, 31); |
252b5132 RH |
5291 | } |
5292 | else | |
5293 | { | |
5294 | expr1.X_add_number = 0x80000000; | |
67c0d1eb | 5295 | macro_build (&expr1, "lui", "t,u", AT, BFD_RELOC_HI16); |
252b5132 RH |
5296 | } |
5297 | if (mips_trap) | |
5298 | { | |
67c0d1eb | 5299 | macro_build (NULL, "teq", "s,t,q", sreg, AT, 6); |
252b5132 RH |
5300 | /* We want to close the noreorder block as soon as possible, so |
5301 | that later insns are available for delay slot filling. */ | |
7d10b47d | 5302 | end_noreorder (); |
252b5132 RH |
5303 | } |
5304 | else | |
5305 | { | |
5306 | expr1.X_add_number = 8; | |
67c0d1eb RS |
5307 | macro_build (&expr1, "bne", "s,t,p", sreg, AT); |
5308 | macro_build (NULL, "nop", "", 0); | |
252b5132 RH |
5309 | |
5310 | /* We want to close the noreorder block as soon as possible, so | |
5311 | that later insns are available for delay slot filling. */ | |
7d10b47d | 5312 | end_noreorder (); |
252b5132 | 5313 | |
67c0d1eb | 5314 | macro_build (NULL, "break", "c", 6); |
252b5132 | 5315 | } |
67c0d1eb | 5316 | macro_build (NULL, s, "d", dreg); |
252b5132 RH |
5317 | break; |
5318 | ||
5319 | case M_DIV_3I: | |
5320 | s = "div"; | |
5321 | s2 = "mflo"; | |
5322 | goto do_divi; | |
5323 | case M_DIVU_3I: | |
5324 | s = "divu"; | |
5325 | s2 = "mflo"; | |
5326 | goto do_divi; | |
5327 | case M_REM_3I: | |
5328 | s = "div"; | |
5329 | s2 = "mfhi"; | |
5330 | goto do_divi; | |
5331 | case M_REMU_3I: | |
5332 | s = "divu"; | |
5333 | s2 = "mfhi"; | |
5334 | goto do_divi; | |
5335 | case M_DDIV_3I: | |
5336 | dbl = 1; | |
5337 | s = "ddiv"; | |
5338 | s2 = "mflo"; | |
5339 | goto do_divi; | |
5340 | case M_DDIVU_3I: | |
5341 | dbl = 1; | |
5342 | s = "ddivu"; | |
5343 | s2 = "mflo"; | |
5344 | goto do_divi; | |
5345 | case M_DREM_3I: | |
5346 | dbl = 1; | |
5347 | s = "ddiv"; | |
5348 | s2 = "mfhi"; | |
5349 | goto do_divi; | |
5350 | case M_DREMU_3I: | |
5351 | dbl = 1; | |
5352 | s = "ddivu"; | |
5353 | s2 = "mfhi"; | |
5354 | do_divi: | |
5355 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
5356 | { | |
5357 | as_warn (_("Divide by zero.")); | |
5358 | if (mips_trap) | |
67c0d1eb | 5359 | macro_build (NULL, "teq", "s,t,q", 0, 0, 7); |
252b5132 | 5360 | else |
67c0d1eb | 5361 | macro_build (NULL, "break", "c", 7); |
8fc2e39e | 5362 | break; |
252b5132 RH |
5363 | } |
5364 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 1) | |
5365 | { | |
5366 | if (strcmp (s2, "mflo") == 0) | |
67c0d1eb | 5367 | move_register (dreg, sreg); |
252b5132 | 5368 | else |
67c0d1eb | 5369 | move_register (dreg, 0); |
8fc2e39e | 5370 | break; |
252b5132 RH |
5371 | } |
5372 | if (imm_expr.X_op == O_constant | |
5373 | && imm_expr.X_add_number == -1 | |
5374 | && s[strlen (s) - 1] != 'u') | |
5375 | { | |
5376 | if (strcmp (s2, "mflo") == 0) | |
5377 | { | |
67c0d1eb | 5378 | macro_build (NULL, dbl ? "dneg" : "neg", "d,w", dreg, sreg); |
252b5132 RH |
5379 | } |
5380 | else | |
67c0d1eb | 5381 | move_register (dreg, 0); |
8fc2e39e | 5382 | break; |
252b5132 RH |
5383 | } |
5384 | ||
8fc2e39e | 5385 | used_at = 1; |
67c0d1eb RS |
5386 | load_register (AT, &imm_expr, dbl); |
5387 | macro_build (NULL, s, "z,s,t", sreg, AT); | |
5388 | macro_build (NULL, s2, "d", dreg); | |
252b5132 RH |
5389 | break; |
5390 | ||
5391 | case M_DIVU_3: | |
5392 | s = "divu"; | |
5393 | s2 = "mflo"; | |
5394 | goto do_divu3; | |
5395 | case M_REMU_3: | |
5396 | s = "divu"; | |
5397 | s2 = "mfhi"; | |
5398 | goto do_divu3; | |
5399 | case M_DDIVU_3: | |
5400 | s = "ddivu"; | |
5401 | s2 = "mflo"; | |
5402 | goto do_divu3; | |
5403 | case M_DREMU_3: | |
5404 | s = "ddivu"; | |
5405 | s2 = "mfhi"; | |
5406 | do_divu3: | |
7d10b47d | 5407 | start_noreorder (); |
252b5132 RH |
5408 | if (mips_trap) |
5409 | { | |
67c0d1eb RS |
5410 | macro_build (NULL, "teq", "s,t,q", treg, 0, 7); |
5411 | macro_build (NULL, s, "z,s,t", sreg, treg); | |
252b5132 RH |
5412 | /* We want to close the noreorder block as soon as possible, so |
5413 | that later insns are available for delay slot filling. */ | |
7d10b47d | 5414 | end_noreorder (); |
252b5132 RH |
5415 | } |
5416 | else | |
5417 | { | |
5418 | expr1.X_add_number = 8; | |
67c0d1eb RS |
5419 | macro_build (&expr1, "bne", "s,t,p", treg, 0); |
5420 | macro_build (NULL, s, "z,s,t", sreg, treg); | |
252b5132 RH |
5421 | |
5422 | /* We want to close the noreorder block as soon as possible, so | |
5423 | that later insns are available for delay slot filling. */ | |
7d10b47d | 5424 | end_noreorder (); |
67c0d1eb | 5425 | macro_build (NULL, "break", "c", 7); |
252b5132 | 5426 | } |
67c0d1eb | 5427 | macro_build (NULL, s2, "d", dreg); |
8fc2e39e | 5428 | break; |
252b5132 | 5429 | |
1abe91b1 MR |
5430 | case M_DLCA_AB: |
5431 | dbl = 1; | |
5432 | case M_LCA_AB: | |
5433 | call = 1; | |
5434 | goto do_la; | |
252b5132 RH |
5435 | case M_DLA_AB: |
5436 | dbl = 1; | |
5437 | case M_LA_AB: | |
1abe91b1 | 5438 | do_la: |
252b5132 RH |
5439 | /* Load the address of a symbol into a register. If breg is not |
5440 | zero, we then add a base register to it. */ | |
5441 | ||
3bec30a8 TS |
5442 | if (dbl && HAVE_32BIT_GPRS) |
5443 | as_warn (_("dla used to load 32-bit register")); | |
5444 | ||
c90bbe5b | 5445 | if (! dbl && HAVE_64BIT_OBJECTS) |
3bec30a8 TS |
5446 | as_warn (_("la used to load 64-bit address")); |
5447 | ||
0c11417f MR |
5448 | if (offset_expr.X_op == O_constant |
5449 | && offset_expr.X_add_number >= -0x8000 | |
5450 | && offset_expr.X_add_number < 0x8000) | |
5451 | { | |
aed1a261 | 5452 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, |
17a2f251 | 5453 | "t,r,j", treg, sreg, BFD_RELOC_LO16); |
8fc2e39e | 5454 | break; |
0c11417f MR |
5455 | } |
5456 | ||
741fe287 | 5457 | if (mips_opts.at && (treg == breg)) |
afdbd6d0 CD |
5458 | { |
5459 | tempreg = AT; | |
5460 | used_at = 1; | |
5461 | } | |
5462 | else | |
5463 | { | |
5464 | tempreg = treg; | |
afdbd6d0 CD |
5465 | } |
5466 | ||
252b5132 RH |
5467 | if (offset_expr.X_op != O_symbol |
5468 | && offset_expr.X_op != O_constant) | |
5469 | { | |
5470 | as_bad (_("expression too complex")); | |
5471 | offset_expr.X_op = O_constant; | |
5472 | } | |
5473 | ||
252b5132 | 5474 | if (offset_expr.X_op == O_constant) |
aed1a261 | 5475 | load_register (tempreg, &offset_expr, HAVE_64BIT_ADDRESSES); |
252b5132 RH |
5476 | else if (mips_pic == NO_PIC) |
5477 | { | |
d6bc6245 | 5478 | /* If this is a reference to a GP relative symbol, we want |
cdf6fd85 | 5479 | addiu $tempreg,$gp,<sym> (BFD_RELOC_GPREL16) |
252b5132 RH |
5480 | Otherwise we want |
5481 | lui $tempreg,<sym> (BFD_RELOC_HI16_S) | |
5482 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
5483 | If we have a constant, we need two instructions anyhow, | |
d6bc6245 | 5484 | so we may as well always use the latter form. |
76b3015f | 5485 | |
6caf9ef4 TS |
5486 | With 64bit address space and a usable $at we want |
5487 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
5488 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
5489 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
5490 | daddiu $at,<sym> (BFD_RELOC_LO16) | |
5491 | dsll32 $tempreg,0 | |
5492 | daddu $tempreg,$tempreg,$at | |
5493 | ||
5494 | If $at is already in use, we use a path which is suboptimal | |
5495 | on superscalar processors. | |
5496 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
5497 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
5498 | dsll $tempreg,16 | |
5499 | daddiu $tempreg,<sym> (BFD_RELOC_HI16_S) | |
5500 | dsll $tempreg,16 | |
5501 | daddiu $tempreg,<sym> (BFD_RELOC_LO16) | |
5502 | ||
5503 | For GP relative symbols in 64bit address space we can use | |
5504 | the same sequence as in 32bit address space. */ | |
aed1a261 | 5505 | if (HAVE_64BIT_SYMBOLS) |
252b5132 | 5506 | { |
6caf9ef4 TS |
5507 | if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET |
5508 | && !nopic_need_relax (offset_expr.X_add_symbol, 1)) | |
5509 | { | |
5510 | relax_start (offset_expr.X_add_symbol); | |
5511 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", | |
5512 | tempreg, mips_gp_register, BFD_RELOC_GPREL16); | |
5513 | relax_switch (); | |
5514 | } | |
d6bc6245 | 5515 | |
741fe287 | 5516 | if (used_at == 0 && mips_opts.at) |
98d3f06f | 5517 | { |
67c0d1eb | 5518 | macro_build (&offset_expr, "lui", "t,u", |
17a2f251 | 5519 | tempreg, BFD_RELOC_MIPS_HIGHEST); |
67c0d1eb | 5520 | macro_build (&offset_expr, "lui", "t,u", |
17a2f251 | 5521 | AT, BFD_RELOC_HI16_S); |
67c0d1eb | 5522 | macro_build (&offset_expr, "daddiu", "t,r,j", |
17a2f251 | 5523 | tempreg, tempreg, BFD_RELOC_MIPS_HIGHER); |
67c0d1eb | 5524 | macro_build (&offset_expr, "daddiu", "t,r,j", |
17a2f251 | 5525 | AT, AT, BFD_RELOC_LO16); |
67c0d1eb RS |
5526 | macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0); |
5527 | macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT); | |
98d3f06f KH |
5528 | used_at = 1; |
5529 | } | |
5530 | else | |
5531 | { | |
67c0d1eb | 5532 | macro_build (&offset_expr, "lui", "t,u", |
17a2f251 | 5533 | tempreg, BFD_RELOC_MIPS_HIGHEST); |
67c0d1eb | 5534 | macro_build (&offset_expr, "daddiu", "t,r,j", |
17a2f251 | 5535 | tempreg, tempreg, BFD_RELOC_MIPS_HIGHER); |
67c0d1eb RS |
5536 | macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16); |
5537 | macro_build (&offset_expr, "daddiu", "t,r,j", | |
17a2f251 | 5538 | tempreg, tempreg, BFD_RELOC_HI16_S); |
67c0d1eb RS |
5539 | macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16); |
5540 | macro_build (&offset_expr, "daddiu", "t,r,j", | |
17a2f251 | 5541 | tempreg, tempreg, BFD_RELOC_LO16); |
98d3f06f | 5542 | } |
6caf9ef4 TS |
5543 | |
5544 | if (mips_relax.sequence) | |
5545 | relax_end (); | |
98d3f06f KH |
5546 | } |
5547 | else | |
5548 | { | |
5549 | if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET | |
6caf9ef4 | 5550 | && !nopic_need_relax (offset_expr.X_add_symbol, 1)) |
98d3f06f | 5551 | { |
4d7206a2 | 5552 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
5553 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", |
5554 | tempreg, mips_gp_register, BFD_RELOC_GPREL16); | |
4d7206a2 | 5555 | relax_switch (); |
98d3f06f | 5556 | } |
6943caf0 ILT |
5557 | if (!IS_SEXT_32BIT_NUM (offset_expr.X_add_number)) |
5558 | as_bad (_("offset too large")); | |
67c0d1eb RS |
5559 | macro_build_lui (&offset_expr, tempreg); |
5560 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", | |
5561 | tempreg, tempreg, BFD_RELOC_LO16); | |
4d7206a2 RS |
5562 | if (mips_relax.sequence) |
5563 | relax_end (); | |
98d3f06f | 5564 | } |
252b5132 | 5565 | } |
0a44bf69 | 5566 | else if (!mips_big_got && !HAVE_NEWABI) |
252b5132 | 5567 | { |
9117d219 NC |
5568 | int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16; |
5569 | ||
252b5132 RH |
5570 | /* If this is a reference to an external symbol, and there |
5571 | is no constant, we want | |
5572 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
1abe91b1 | 5573 | or for lca or if tempreg is PIC_CALL_REG |
9117d219 | 5574 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16) |
252b5132 RH |
5575 | For a local symbol, we want |
5576 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5577 | nop | |
5578 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
5579 | ||
5580 | If we have a small constant, and this is a reference to | |
5581 | an external symbol, we want | |
5582 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5583 | nop | |
5584 | addiu $tempreg,$tempreg,<constant> | |
5585 | For a local symbol, we want the same instruction | |
5586 | sequence, but we output a BFD_RELOC_LO16 reloc on the | |
5587 | addiu instruction. | |
5588 | ||
5589 | If we have a large constant, and this is a reference to | |
5590 | an external symbol, we want | |
5591 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5592 | lui $at,<hiconstant> | |
5593 | addiu $at,$at,<loconstant> | |
5594 | addu $tempreg,$tempreg,$at | |
5595 | For a local symbol, we want the same instruction | |
5596 | sequence, but we output a BFD_RELOC_LO16 reloc on the | |
ed6fb7bd | 5597 | addiu instruction. |
ed6fb7bd SC |
5598 | */ |
5599 | ||
4d7206a2 | 5600 | if (offset_expr.X_add_number == 0) |
252b5132 | 5601 | { |
0a44bf69 RS |
5602 | if (mips_pic == SVR4_PIC |
5603 | && breg == 0 | |
5604 | && (call || tempreg == PIC_CALL_REG)) | |
4d7206a2 RS |
5605 | lw_reloc_type = (int) BFD_RELOC_MIPS_CALL16; |
5606 | ||
5607 | relax_start (offset_expr.X_add_symbol); | |
67c0d1eb RS |
5608 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5609 | lw_reloc_type, mips_gp_register); | |
4d7206a2 | 5610 | if (breg != 0) |
252b5132 RH |
5611 | { |
5612 | /* We're going to put in an addu instruction using | |
5613 | tempreg, so we may as well insert the nop right | |
5614 | now. */ | |
269137b2 | 5615 | load_delay_nop (); |
252b5132 | 5616 | } |
4d7206a2 | 5617 | relax_switch (); |
67c0d1eb RS |
5618 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
5619 | tempreg, BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
269137b2 | 5620 | load_delay_nop (); |
67c0d1eb RS |
5621 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", |
5622 | tempreg, tempreg, BFD_RELOC_LO16); | |
4d7206a2 | 5623 | relax_end (); |
252b5132 RH |
5624 | /* FIXME: If breg == 0, and the next instruction uses |
5625 | $tempreg, then if this variant case is used an extra | |
5626 | nop will be generated. */ | |
5627 | } | |
4d7206a2 RS |
5628 | else if (offset_expr.X_add_number >= -0x8000 |
5629 | && offset_expr.X_add_number < 0x8000) | |
252b5132 | 5630 | { |
67c0d1eb | 5631 | load_got_offset (tempreg, &offset_expr); |
269137b2 | 5632 | load_delay_nop (); |
67c0d1eb | 5633 | add_got_offset (tempreg, &offset_expr); |
252b5132 RH |
5634 | } |
5635 | else | |
5636 | { | |
4d7206a2 RS |
5637 | expr1.X_add_number = offset_expr.X_add_number; |
5638 | offset_expr.X_add_number = | |
5639 | ((offset_expr.X_add_number + 0x8000) & 0xffff) - 0x8000; | |
67c0d1eb | 5640 | load_got_offset (tempreg, &offset_expr); |
f6a22291 | 5641 | offset_expr.X_add_number = expr1.X_add_number; |
252b5132 RH |
5642 | /* If we are going to add in a base register, and the |
5643 | target register and the base register are the same, | |
5644 | then we are using AT as a temporary register. Since | |
5645 | we want to load the constant into AT, we add our | |
5646 | current AT (from the global offset table) and the | |
5647 | register into the register now, and pretend we were | |
5648 | not using a base register. */ | |
67c0d1eb | 5649 | if (breg == treg) |
252b5132 | 5650 | { |
269137b2 | 5651 | load_delay_nop (); |
67c0d1eb | 5652 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5653 | treg, AT, breg); |
252b5132 RH |
5654 | breg = 0; |
5655 | tempreg = treg; | |
252b5132 | 5656 | } |
f6a22291 | 5657 | add_got_offset_hilo (tempreg, &offset_expr, AT); |
252b5132 RH |
5658 | used_at = 1; |
5659 | } | |
5660 | } | |
0a44bf69 | 5661 | else if (!mips_big_got && HAVE_NEWABI) |
f5040a92 | 5662 | { |
67c0d1eb | 5663 | int add_breg_early = 0; |
f5040a92 AO |
5664 | |
5665 | /* If this is a reference to an external, and there is no | |
5666 | constant, or local symbol (*), with or without a | |
5667 | constant, we want | |
5668 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP) | |
1abe91b1 | 5669 | or for lca or if tempreg is PIC_CALL_REG |
f5040a92 AO |
5670 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_CALL16) |
5671 | ||
5672 | If we have a small constant, and this is a reference to | |
5673 | an external symbol, we want | |
5674 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP) | |
5675 | addiu $tempreg,$tempreg,<constant> | |
5676 | ||
5677 | If we have a large constant, and this is a reference to | |
5678 | an external symbol, we want | |
5679 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_DISP) | |
5680 | lui $at,<hiconstant> | |
5681 | addiu $at,$at,<loconstant> | |
5682 | addu $tempreg,$tempreg,$at | |
5683 | ||
5684 | (*) Other assemblers seem to prefer GOT_PAGE/GOT_OFST for | |
5685 | local symbols, even though it introduces an additional | |
5686 | instruction. */ | |
5687 | ||
f5040a92 AO |
5688 | if (offset_expr.X_add_number) |
5689 | { | |
4d7206a2 | 5690 | expr1.X_add_number = offset_expr.X_add_number; |
f5040a92 AO |
5691 | offset_expr.X_add_number = 0; |
5692 | ||
4d7206a2 | 5693 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
5694 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5695 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
f5040a92 AO |
5696 | |
5697 | if (expr1.X_add_number >= -0x8000 | |
5698 | && expr1.X_add_number < 0x8000) | |
5699 | { | |
67c0d1eb RS |
5700 | macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j", |
5701 | tempreg, tempreg, BFD_RELOC_LO16); | |
f5040a92 | 5702 | } |
ecd13cd3 | 5703 | else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000)) |
f5040a92 AO |
5704 | { |
5705 | int dreg; | |
5706 | ||
5707 | /* If we are going to add in a base register, and the | |
5708 | target register and the base register are the same, | |
5709 | then we are using AT as a temporary register. Since | |
5710 | we want to load the constant into AT, we add our | |
5711 | current AT (from the global offset table) and the | |
5712 | register into the register now, and pretend we were | |
5713 | not using a base register. */ | |
5714 | if (breg != treg) | |
5715 | dreg = tempreg; | |
5716 | else | |
5717 | { | |
5718 | assert (tempreg == AT); | |
67c0d1eb RS |
5719 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
5720 | treg, AT, breg); | |
f5040a92 | 5721 | dreg = treg; |
67c0d1eb | 5722 | add_breg_early = 1; |
f5040a92 AO |
5723 | } |
5724 | ||
f6a22291 | 5725 | load_register (AT, &expr1, HAVE_64BIT_ADDRESSES); |
67c0d1eb | 5726 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5727 | dreg, dreg, AT); |
f5040a92 | 5728 | |
f5040a92 AO |
5729 | used_at = 1; |
5730 | } | |
5731 | else | |
5732 | as_bad (_("PIC code offset overflow (max 32 signed bits)")); | |
5733 | ||
4d7206a2 | 5734 | relax_switch (); |
f5040a92 AO |
5735 | offset_expr.X_add_number = expr1.X_add_number; |
5736 | ||
67c0d1eb RS |
5737 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5738 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
5739 | if (add_breg_early) | |
f5040a92 | 5740 | { |
67c0d1eb | 5741 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
f899b4b8 | 5742 | treg, tempreg, breg); |
f5040a92 AO |
5743 | breg = 0; |
5744 | tempreg = treg; | |
5745 | } | |
4d7206a2 | 5746 | relax_end (); |
f5040a92 | 5747 | } |
4d7206a2 | 5748 | else if (breg == 0 && (call || tempreg == PIC_CALL_REG)) |
f5040a92 | 5749 | { |
4d7206a2 | 5750 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
5751 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5752 | BFD_RELOC_MIPS_CALL16, mips_gp_register); | |
4d7206a2 | 5753 | relax_switch (); |
67c0d1eb RS |
5754 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5755 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
4d7206a2 | 5756 | relax_end (); |
f5040a92 | 5757 | } |
4d7206a2 | 5758 | else |
f5040a92 | 5759 | { |
67c0d1eb RS |
5760 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5761 | BFD_RELOC_MIPS_GOT_DISP, mips_gp_register); | |
f5040a92 AO |
5762 | } |
5763 | } | |
0a44bf69 | 5764 | else if (mips_big_got && !HAVE_NEWABI) |
252b5132 | 5765 | { |
67c0d1eb | 5766 | int gpdelay; |
9117d219 NC |
5767 | int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16; |
5768 | int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16; | |
ed6fb7bd | 5769 | int local_reloc_type = (int) BFD_RELOC_MIPS_GOT16; |
252b5132 RH |
5770 | |
5771 | /* This is the large GOT case. If this is a reference to an | |
5772 | external symbol, and there is no constant, we want | |
5773 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5774 | addu $tempreg,$tempreg,$gp | |
5775 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
1abe91b1 | 5776 | or for lca or if tempreg is PIC_CALL_REG |
9117d219 NC |
5777 | lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16) |
5778 | addu $tempreg,$tempreg,$gp | |
5779 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16) | |
252b5132 RH |
5780 | For a local symbol, we want |
5781 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5782 | nop | |
5783 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
5784 | ||
5785 | If we have a small constant, and this is a reference to | |
5786 | an external symbol, we want | |
5787 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5788 | addu $tempreg,$tempreg,$gp | |
5789 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
5790 | nop | |
5791 | addiu $tempreg,$tempreg,<constant> | |
5792 | For a local symbol, we want | |
5793 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5794 | nop | |
5795 | addiu $tempreg,$tempreg,<constant> (BFD_RELOC_LO16) | |
5796 | ||
5797 | If we have a large constant, and this is a reference to | |
5798 | an external symbol, we want | |
5799 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5800 | addu $tempreg,$tempreg,$gp | |
5801 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
5802 | lui $at,<hiconstant> | |
5803 | addiu $at,$at,<loconstant> | |
5804 | addu $tempreg,$tempreg,$at | |
5805 | For a local symbol, we want | |
5806 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
5807 | lui $at,<hiconstant> | |
5808 | addiu $at,$at,<loconstant> (BFD_RELOC_LO16) | |
5809 | addu $tempreg,$tempreg,$at | |
f5040a92 | 5810 | */ |
438c16b8 | 5811 | |
252b5132 RH |
5812 | expr1.X_add_number = offset_expr.X_add_number; |
5813 | offset_expr.X_add_number = 0; | |
4d7206a2 | 5814 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb | 5815 | gpdelay = reg_needs_delay (mips_gp_register); |
1abe91b1 MR |
5816 | if (expr1.X_add_number == 0 && breg == 0 |
5817 | && (call || tempreg == PIC_CALL_REG)) | |
9117d219 NC |
5818 | { |
5819 | lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16; | |
5820 | lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16; | |
5821 | } | |
67c0d1eb RS |
5822 | macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type); |
5823 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
17a2f251 | 5824 | tempreg, tempreg, mips_gp_register); |
67c0d1eb | 5825 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
17a2f251 | 5826 | tempreg, lw_reloc_type, tempreg); |
252b5132 RH |
5827 | if (expr1.X_add_number == 0) |
5828 | { | |
67c0d1eb | 5829 | if (breg != 0) |
252b5132 RH |
5830 | { |
5831 | /* We're going to put in an addu instruction using | |
5832 | tempreg, so we may as well insert the nop right | |
5833 | now. */ | |
269137b2 | 5834 | load_delay_nop (); |
252b5132 | 5835 | } |
252b5132 RH |
5836 | } |
5837 | else if (expr1.X_add_number >= -0x8000 | |
5838 | && expr1.X_add_number < 0x8000) | |
5839 | { | |
269137b2 | 5840 | load_delay_nop (); |
67c0d1eb | 5841 | macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j", |
17a2f251 | 5842 | tempreg, tempreg, BFD_RELOC_LO16); |
252b5132 RH |
5843 | } |
5844 | else | |
5845 | { | |
67c0d1eb | 5846 | int dreg; |
252b5132 RH |
5847 | |
5848 | /* If we are going to add in a base register, and the | |
5849 | target register and the base register are the same, | |
5850 | then we are using AT as a temporary register. Since | |
5851 | we want to load the constant into AT, we add our | |
5852 | current AT (from the global offset table) and the | |
5853 | register into the register now, and pretend we were | |
5854 | not using a base register. */ | |
5855 | if (breg != treg) | |
67c0d1eb | 5856 | dreg = tempreg; |
252b5132 RH |
5857 | else |
5858 | { | |
5859 | assert (tempreg == AT); | |
269137b2 | 5860 | load_delay_nop (); |
67c0d1eb | 5861 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5862 | treg, AT, breg); |
252b5132 | 5863 | dreg = treg; |
252b5132 RH |
5864 | } |
5865 | ||
f6a22291 | 5866 | load_register (AT, &expr1, HAVE_64BIT_ADDRESSES); |
67c0d1eb | 5867 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT); |
252b5132 | 5868 | |
252b5132 RH |
5869 | used_at = 1; |
5870 | } | |
4d7206a2 RS |
5871 | offset_expr.X_add_number = |
5872 | ((expr1.X_add_number + 0x8000) & 0xffff) - 0x8000; | |
5873 | relax_switch (); | |
252b5132 | 5874 | |
67c0d1eb | 5875 | if (gpdelay) |
252b5132 RH |
5876 | { |
5877 | /* This is needed because this instruction uses $gp, but | |
f5040a92 | 5878 | the first instruction on the main stream does not. */ |
67c0d1eb | 5879 | macro_build (NULL, "nop", ""); |
252b5132 | 5880 | } |
ed6fb7bd | 5881 | |
67c0d1eb RS |
5882 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
5883 | local_reloc_type, mips_gp_register); | |
f5040a92 | 5884 | if (expr1.X_add_number >= -0x8000 |
252b5132 RH |
5885 | && expr1.X_add_number < 0x8000) |
5886 | { | |
269137b2 | 5887 | load_delay_nop (); |
67c0d1eb RS |
5888 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", |
5889 | tempreg, tempreg, BFD_RELOC_LO16); | |
252b5132 | 5890 | /* FIXME: If add_number is 0, and there was no base |
f5040a92 AO |
5891 | register, the external symbol case ended with a load, |
5892 | so if the symbol turns out to not be external, and | |
5893 | the next instruction uses tempreg, an unnecessary nop | |
5894 | will be inserted. */ | |
252b5132 RH |
5895 | } |
5896 | else | |
5897 | { | |
5898 | if (breg == treg) | |
5899 | { | |
5900 | /* We must add in the base register now, as in the | |
f5040a92 | 5901 | external symbol case. */ |
252b5132 | 5902 | assert (tempreg == AT); |
269137b2 | 5903 | load_delay_nop (); |
67c0d1eb | 5904 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5905 | treg, AT, breg); |
252b5132 RH |
5906 | tempreg = treg; |
5907 | /* We set breg to 0 because we have arranged to add | |
f5040a92 | 5908 | it in in both cases. */ |
252b5132 RH |
5909 | breg = 0; |
5910 | } | |
5911 | ||
67c0d1eb RS |
5912 | macro_build_lui (&expr1, AT); |
5913 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", | |
17a2f251 | 5914 | AT, AT, BFD_RELOC_LO16); |
67c0d1eb | 5915 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 5916 | tempreg, tempreg, AT); |
8fc2e39e | 5917 | used_at = 1; |
252b5132 | 5918 | } |
4d7206a2 | 5919 | relax_end (); |
252b5132 | 5920 | } |
0a44bf69 | 5921 | else if (mips_big_got && HAVE_NEWABI) |
f5040a92 | 5922 | { |
f5040a92 AO |
5923 | int lui_reloc_type = (int) BFD_RELOC_MIPS_GOT_HI16; |
5924 | int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT_LO16; | |
67c0d1eb | 5925 | int add_breg_early = 0; |
f5040a92 AO |
5926 | |
5927 | /* This is the large GOT case. If this is a reference to an | |
5928 | external symbol, and there is no constant, we want | |
5929 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5930 | add $tempreg,$tempreg,$gp | |
5931 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
1abe91b1 | 5932 | or for lca or if tempreg is PIC_CALL_REG |
f5040a92 AO |
5933 | lui $tempreg,<sym> (BFD_RELOC_MIPS_CALL_HI16) |
5934 | add $tempreg,$tempreg,$gp | |
5935 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_CALL_LO16) | |
5936 | ||
5937 | If we have a small constant, and this is a reference to | |
5938 | an external symbol, we want | |
5939 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5940 | add $tempreg,$tempreg,$gp | |
5941 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
5942 | addi $tempreg,$tempreg,<constant> | |
5943 | ||
5944 | If we have a large constant, and this is a reference to | |
5945 | an external symbol, we want | |
5946 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
5947 | addu $tempreg,$tempreg,$gp | |
5948 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
5949 | lui $at,<hiconstant> | |
5950 | addi $at,$at,<loconstant> | |
5951 | add $tempreg,$tempreg,$at | |
5952 | ||
5953 | If we have NewABI, and we know it's a local symbol, we want | |
5954 | lw $reg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE) | |
5955 | addiu $reg,$reg,<sym> (BFD_RELOC_MIPS_GOT_OFST) | |
5956 | otherwise we have to resort to GOT_HI16/GOT_LO16. */ | |
5957 | ||
4d7206a2 | 5958 | relax_start (offset_expr.X_add_symbol); |
f5040a92 | 5959 | |
4d7206a2 | 5960 | expr1.X_add_number = offset_expr.X_add_number; |
f5040a92 AO |
5961 | offset_expr.X_add_number = 0; |
5962 | ||
1abe91b1 MR |
5963 | if (expr1.X_add_number == 0 && breg == 0 |
5964 | && (call || tempreg == PIC_CALL_REG)) | |
f5040a92 AO |
5965 | { |
5966 | lui_reloc_type = (int) BFD_RELOC_MIPS_CALL_HI16; | |
5967 | lw_reloc_type = (int) BFD_RELOC_MIPS_CALL_LO16; | |
5968 | } | |
67c0d1eb RS |
5969 | macro_build (&offset_expr, "lui", "t,u", tempreg, lui_reloc_type); |
5970 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
17a2f251 | 5971 | tempreg, tempreg, mips_gp_register); |
67c0d1eb RS |
5972 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
5973 | tempreg, lw_reloc_type, tempreg); | |
f5040a92 AO |
5974 | |
5975 | if (expr1.X_add_number == 0) | |
4d7206a2 | 5976 | ; |
f5040a92 AO |
5977 | else if (expr1.X_add_number >= -0x8000 |
5978 | && expr1.X_add_number < 0x8000) | |
5979 | { | |
67c0d1eb | 5980 | macro_build (&expr1, ADDRESS_ADDI_INSN, "t,r,j", |
17a2f251 | 5981 | tempreg, tempreg, BFD_RELOC_LO16); |
f5040a92 | 5982 | } |
ecd13cd3 | 5983 | else if (IS_SEXT_32BIT_NUM (expr1.X_add_number + 0x8000)) |
f5040a92 AO |
5984 | { |
5985 | int dreg; | |
5986 | ||
5987 | /* If we are going to add in a base register, and the | |
5988 | target register and the base register are the same, | |
5989 | then we are using AT as a temporary register. Since | |
5990 | we want to load the constant into AT, we add our | |
5991 | current AT (from the global offset table) and the | |
5992 | register into the register now, and pretend we were | |
5993 | not using a base register. */ | |
5994 | if (breg != treg) | |
5995 | dreg = tempreg; | |
5996 | else | |
5997 | { | |
5998 | assert (tempreg == AT); | |
67c0d1eb | 5999 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6000 | treg, AT, breg); |
f5040a92 | 6001 | dreg = treg; |
67c0d1eb | 6002 | add_breg_early = 1; |
f5040a92 AO |
6003 | } |
6004 | ||
f6a22291 | 6005 | load_register (AT, &expr1, HAVE_64BIT_ADDRESSES); |
67c0d1eb | 6006 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", dreg, dreg, AT); |
f5040a92 | 6007 | |
f5040a92 AO |
6008 | used_at = 1; |
6009 | } | |
6010 | else | |
6011 | as_bad (_("PIC code offset overflow (max 32 signed bits)")); | |
6012 | ||
4d7206a2 | 6013 | relax_switch (); |
f5040a92 | 6014 | offset_expr.X_add_number = expr1.X_add_number; |
67c0d1eb RS |
6015 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
6016 | BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register); | |
6017 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg, | |
6018 | tempreg, BFD_RELOC_MIPS_GOT_OFST); | |
6019 | if (add_breg_early) | |
f5040a92 | 6020 | { |
67c0d1eb | 6021 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6022 | treg, tempreg, breg); |
f5040a92 AO |
6023 | breg = 0; |
6024 | tempreg = treg; | |
6025 | } | |
4d7206a2 | 6026 | relax_end (); |
f5040a92 | 6027 | } |
252b5132 RH |
6028 | else |
6029 | abort (); | |
6030 | ||
6031 | if (breg != 0) | |
aed1a261 | 6032 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", treg, tempreg, breg); |
252b5132 RH |
6033 | break; |
6034 | ||
6035 | case M_J_A: | |
6036 | /* The j instruction may not be used in PIC code, since it | |
6037 | requires an absolute address. We convert it to a b | |
6038 | instruction. */ | |
6039 | if (mips_pic == NO_PIC) | |
67c0d1eb | 6040 | macro_build (&offset_expr, "j", "a"); |
252b5132 | 6041 | else |
67c0d1eb | 6042 | macro_build (&offset_expr, "b", "p"); |
8fc2e39e | 6043 | break; |
252b5132 RH |
6044 | |
6045 | /* The jal instructions must be handled as macros because when | |
6046 | generating PIC code they expand to multi-instruction | |
6047 | sequences. Normally they are simple instructions. */ | |
6048 | case M_JAL_1: | |
6049 | dreg = RA; | |
6050 | /* Fall through. */ | |
6051 | case M_JAL_2: | |
3e722fb5 | 6052 | if (mips_pic == NO_PIC) |
67c0d1eb | 6053 | macro_build (NULL, "jalr", "d,s", dreg, sreg); |
0a44bf69 | 6054 | else |
252b5132 RH |
6055 | { |
6056 | if (sreg != PIC_CALL_REG) | |
6057 | as_warn (_("MIPS PIC call to register other than $25")); | |
bdaaa2e1 | 6058 | |
67c0d1eb | 6059 | macro_build (NULL, "jalr", "d,s", dreg, sreg); |
0a44bf69 | 6060 | if (mips_pic == SVR4_PIC && !HAVE_NEWABI) |
252b5132 | 6061 | { |
6478892d TS |
6062 | if (mips_cprestore_offset < 0) |
6063 | as_warn (_("No .cprestore pseudo-op used in PIC code")); | |
6064 | else | |
6065 | { | |
7a621144 DJ |
6066 | if (! mips_frame_reg_valid) |
6067 | { | |
6068 | as_warn (_("No .frame pseudo-op used in PIC code")); | |
6069 | /* Quiet this warning. */ | |
6070 | mips_frame_reg_valid = 1; | |
6071 | } | |
6072 | if (! mips_cprestore_valid) | |
6073 | { | |
6074 | as_warn (_("No .cprestore pseudo-op used in PIC code")); | |
6075 | /* Quiet this warning. */ | |
6076 | mips_cprestore_valid = 1; | |
6077 | } | |
6478892d | 6078 | expr1.X_add_number = mips_cprestore_offset; |
67c0d1eb | 6079 | macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN, |
f899b4b8 | 6080 | mips_gp_register, |
256ab948 TS |
6081 | mips_frame_reg, |
6082 | HAVE_64BIT_ADDRESSES); | |
6478892d | 6083 | } |
252b5132 RH |
6084 | } |
6085 | } | |
252b5132 | 6086 | |
8fc2e39e | 6087 | break; |
252b5132 RH |
6088 | |
6089 | case M_JAL_A: | |
6090 | if (mips_pic == NO_PIC) | |
67c0d1eb | 6091 | macro_build (&offset_expr, "jal", "a"); |
252b5132 RH |
6092 | else if (mips_pic == SVR4_PIC) |
6093 | { | |
6094 | /* If this is a reference to an external symbol, and we are | |
6095 | using a small GOT, we want | |
6096 | lw $25,<sym>($gp) (BFD_RELOC_MIPS_CALL16) | |
6097 | nop | |
f9419b05 | 6098 | jalr $ra,$25 |
252b5132 RH |
6099 | nop |
6100 | lw $gp,cprestore($sp) | |
6101 | The cprestore value is set using the .cprestore | |
6102 | pseudo-op. If we are using a big GOT, we want | |
6103 | lui $25,<sym> (BFD_RELOC_MIPS_CALL_HI16) | |
6104 | addu $25,$25,$gp | |
6105 | lw $25,<sym>($25) (BFD_RELOC_MIPS_CALL_LO16) | |
6106 | nop | |
f9419b05 | 6107 | jalr $ra,$25 |
252b5132 RH |
6108 | nop |
6109 | lw $gp,cprestore($sp) | |
6110 | If the symbol is not external, we want | |
6111 | lw $25,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6112 | nop | |
6113 | addiu $25,$25,<sym> (BFD_RELOC_LO16) | |
f9419b05 | 6114 | jalr $ra,$25 |
252b5132 | 6115 | nop |
438c16b8 | 6116 | lw $gp,cprestore($sp) |
f5040a92 AO |
6117 | |
6118 | For NewABI, we use the same CALL16 or CALL_HI16/CALL_LO16 | |
6119 | sequences above, minus nops, unless the symbol is local, | |
6120 | which enables us to use GOT_PAGE/GOT_OFST (big got) or | |
6121 | GOT_DISP. */ | |
438c16b8 | 6122 | if (HAVE_NEWABI) |
252b5132 | 6123 | { |
f5040a92 AO |
6124 | if (! mips_big_got) |
6125 | { | |
4d7206a2 | 6126 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
6127 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
6128 | PIC_CALL_REG, BFD_RELOC_MIPS_CALL16, | |
f5040a92 | 6129 | mips_gp_register); |
4d7206a2 | 6130 | relax_switch (); |
67c0d1eb RS |
6131 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
6132 | PIC_CALL_REG, BFD_RELOC_MIPS_GOT_DISP, | |
4d7206a2 RS |
6133 | mips_gp_register); |
6134 | relax_end (); | |
f5040a92 AO |
6135 | } |
6136 | else | |
6137 | { | |
4d7206a2 | 6138 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
6139 | macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG, |
6140 | BFD_RELOC_MIPS_CALL_HI16); | |
6141 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG, | |
6142 | PIC_CALL_REG, mips_gp_register); | |
6143 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", | |
6144 | PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16, | |
6145 | PIC_CALL_REG); | |
4d7206a2 | 6146 | relax_switch (); |
67c0d1eb RS |
6147 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
6148 | PIC_CALL_REG, BFD_RELOC_MIPS_GOT_PAGE, | |
6149 | mips_gp_register); | |
6150 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", | |
6151 | PIC_CALL_REG, PIC_CALL_REG, | |
17a2f251 | 6152 | BFD_RELOC_MIPS_GOT_OFST); |
4d7206a2 | 6153 | relax_end (); |
f5040a92 | 6154 | } |
684022ea | 6155 | |
67c0d1eb | 6156 | macro_build_jalr (&offset_expr); |
252b5132 RH |
6157 | } |
6158 | else | |
6159 | { | |
4d7206a2 | 6160 | relax_start (offset_expr.X_add_symbol); |
438c16b8 TS |
6161 | if (! mips_big_got) |
6162 | { | |
67c0d1eb RS |
6163 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
6164 | PIC_CALL_REG, BFD_RELOC_MIPS_CALL16, | |
17a2f251 | 6165 | mips_gp_register); |
269137b2 | 6166 | load_delay_nop (); |
4d7206a2 | 6167 | relax_switch (); |
438c16b8 | 6168 | } |
252b5132 | 6169 | else |
252b5132 | 6170 | { |
67c0d1eb RS |
6171 | int gpdelay; |
6172 | ||
6173 | gpdelay = reg_needs_delay (mips_gp_register); | |
6174 | macro_build (&offset_expr, "lui", "t,u", PIC_CALL_REG, | |
6175 | BFD_RELOC_MIPS_CALL_HI16); | |
6176 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", PIC_CALL_REG, | |
6177 | PIC_CALL_REG, mips_gp_register); | |
6178 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", | |
6179 | PIC_CALL_REG, BFD_RELOC_MIPS_CALL_LO16, | |
6180 | PIC_CALL_REG); | |
269137b2 | 6181 | load_delay_nop (); |
4d7206a2 | 6182 | relax_switch (); |
67c0d1eb RS |
6183 | if (gpdelay) |
6184 | macro_build (NULL, "nop", ""); | |
252b5132 | 6185 | } |
67c0d1eb RS |
6186 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
6187 | PIC_CALL_REG, BFD_RELOC_MIPS_GOT16, | |
4d7206a2 | 6188 | mips_gp_register); |
269137b2 | 6189 | load_delay_nop (); |
67c0d1eb RS |
6190 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", |
6191 | PIC_CALL_REG, PIC_CALL_REG, BFD_RELOC_LO16); | |
4d7206a2 | 6192 | relax_end (); |
67c0d1eb | 6193 | macro_build_jalr (&offset_expr); |
438c16b8 | 6194 | |
6478892d TS |
6195 | if (mips_cprestore_offset < 0) |
6196 | as_warn (_("No .cprestore pseudo-op used in PIC code")); | |
6197 | else | |
6198 | { | |
7a621144 DJ |
6199 | if (! mips_frame_reg_valid) |
6200 | { | |
6201 | as_warn (_("No .frame pseudo-op used in PIC code")); | |
6202 | /* Quiet this warning. */ | |
6203 | mips_frame_reg_valid = 1; | |
6204 | } | |
6205 | if (! mips_cprestore_valid) | |
6206 | { | |
6207 | as_warn (_("No .cprestore pseudo-op used in PIC code")); | |
6208 | /* Quiet this warning. */ | |
6209 | mips_cprestore_valid = 1; | |
6210 | } | |
6478892d | 6211 | if (mips_opts.noreorder) |
67c0d1eb | 6212 | macro_build (NULL, "nop", ""); |
6478892d | 6213 | expr1.X_add_number = mips_cprestore_offset; |
67c0d1eb | 6214 | macro_build_ldst_constoffset (&expr1, ADDRESS_LOAD_INSN, |
f899b4b8 | 6215 | mips_gp_register, |
256ab948 TS |
6216 | mips_frame_reg, |
6217 | HAVE_64BIT_ADDRESSES); | |
6478892d | 6218 | } |
252b5132 RH |
6219 | } |
6220 | } | |
0a44bf69 RS |
6221 | else if (mips_pic == VXWORKS_PIC) |
6222 | as_bad (_("Non-PIC jump used in PIC library")); | |
252b5132 RH |
6223 | else |
6224 | abort (); | |
6225 | ||
8fc2e39e | 6226 | break; |
252b5132 RH |
6227 | |
6228 | case M_LB_AB: | |
6229 | s = "lb"; | |
6230 | goto ld; | |
6231 | case M_LBU_AB: | |
6232 | s = "lbu"; | |
6233 | goto ld; | |
6234 | case M_LH_AB: | |
6235 | s = "lh"; | |
6236 | goto ld; | |
6237 | case M_LHU_AB: | |
6238 | s = "lhu"; | |
6239 | goto ld; | |
6240 | case M_LW_AB: | |
6241 | s = "lw"; | |
6242 | goto ld; | |
6243 | case M_LWC0_AB: | |
6244 | s = "lwc0"; | |
bdaaa2e1 | 6245 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6246 | coproc = 1; |
6247 | goto ld; | |
6248 | case M_LWC1_AB: | |
6249 | s = "lwc1"; | |
bdaaa2e1 | 6250 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6251 | coproc = 1; |
6252 | goto ld; | |
6253 | case M_LWC2_AB: | |
6254 | s = "lwc2"; | |
bdaaa2e1 | 6255 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6256 | coproc = 1; |
6257 | goto ld; | |
6258 | case M_LWC3_AB: | |
6259 | s = "lwc3"; | |
bdaaa2e1 | 6260 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6261 | coproc = 1; |
6262 | goto ld; | |
6263 | case M_LWL_AB: | |
6264 | s = "lwl"; | |
6265 | lr = 1; | |
6266 | goto ld; | |
6267 | case M_LWR_AB: | |
6268 | s = "lwr"; | |
6269 | lr = 1; | |
6270 | goto ld; | |
6271 | case M_LDC1_AB: | |
252b5132 | 6272 | s = "ldc1"; |
bdaaa2e1 | 6273 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6274 | coproc = 1; |
6275 | goto ld; | |
6276 | case M_LDC2_AB: | |
6277 | s = "ldc2"; | |
bdaaa2e1 | 6278 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6279 | coproc = 1; |
6280 | goto ld; | |
6281 | case M_LDC3_AB: | |
6282 | s = "ldc3"; | |
bdaaa2e1 | 6283 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6284 | coproc = 1; |
6285 | goto ld; | |
6286 | case M_LDL_AB: | |
6287 | s = "ldl"; | |
6288 | lr = 1; | |
6289 | goto ld; | |
6290 | case M_LDR_AB: | |
6291 | s = "ldr"; | |
6292 | lr = 1; | |
6293 | goto ld; | |
6294 | case M_LL_AB: | |
6295 | s = "ll"; | |
6296 | goto ld; | |
6297 | case M_LLD_AB: | |
6298 | s = "lld"; | |
6299 | goto ld; | |
6300 | case M_LWU_AB: | |
6301 | s = "lwu"; | |
6302 | ld: | |
8fc2e39e | 6303 | if (breg == treg || coproc || lr) |
252b5132 RH |
6304 | { |
6305 | tempreg = AT; | |
6306 | used_at = 1; | |
6307 | } | |
6308 | else | |
6309 | { | |
6310 | tempreg = treg; | |
252b5132 RH |
6311 | } |
6312 | goto ld_st; | |
6313 | case M_SB_AB: | |
6314 | s = "sb"; | |
6315 | goto st; | |
6316 | case M_SH_AB: | |
6317 | s = "sh"; | |
6318 | goto st; | |
6319 | case M_SW_AB: | |
6320 | s = "sw"; | |
6321 | goto st; | |
6322 | case M_SWC0_AB: | |
6323 | s = "swc0"; | |
bdaaa2e1 | 6324 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6325 | coproc = 1; |
6326 | goto st; | |
6327 | case M_SWC1_AB: | |
6328 | s = "swc1"; | |
bdaaa2e1 | 6329 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6330 | coproc = 1; |
6331 | goto st; | |
6332 | case M_SWC2_AB: | |
6333 | s = "swc2"; | |
bdaaa2e1 | 6334 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6335 | coproc = 1; |
6336 | goto st; | |
6337 | case M_SWC3_AB: | |
6338 | s = "swc3"; | |
bdaaa2e1 | 6339 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6340 | coproc = 1; |
6341 | goto st; | |
6342 | case M_SWL_AB: | |
6343 | s = "swl"; | |
6344 | goto st; | |
6345 | case M_SWR_AB: | |
6346 | s = "swr"; | |
6347 | goto st; | |
6348 | case M_SC_AB: | |
6349 | s = "sc"; | |
6350 | goto st; | |
6351 | case M_SCD_AB: | |
6352 | s = "scd"; | |
6353 | goto st; | |
d43b4baf TS |
6354 | case M_CACHE_AB: |
6355 | s = "cache"; | |
6356 | goto st; | |
252b5132 | 6357 | case M_SDC1_AB: |
252b5132 RH |
6358 | s = "sdc1"; |
6359 | coproc = 1; | |
bdaaa2e1 | 6360 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6361 | goto st; |
6362 | case M_SDC2_AB: | |
6363 | s = "sdc2"; | |
bdaaa2e1 | 6364 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6365 | coproc = 1; |
6366 | goto st; | |
6367 | case M_SDC3_AB: | |
6368 | s = "sdc3"; | |
bdaaa2e1 | 6369 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6370 | coproc = 1; |
6371 | goto st; | |
6372 | case M_SDL_AB: | |
6373 | s = "sdl"; | |
6374 | goto st; | |
6375 | case M_SDR_AB: | |
6376 | s = "sdr"; | |
6377 | st: | |
8fc2e39e TS |
6378 | tempreg = AT; |
6379 | used_at = 1; | |
252b5132 | 6380 | ld_st: |
b19e8a9b AN |
6381 | if (coproc |
6382 | && NO_ISA_COP (mips_opts.arch) | |
6383 | && (ip->insn_mo->pinfo2 & (INSN2_M_FP_S | INSN2_M_FP_D)) == 0) | |
6384 | { | |
6385 | as_bad (_("opcode not supported on this processor: %s"), | |
6386 | mips_cpu_info_from_arch (mips_opts.arch)->name); | |
6387 | break; | |
6388 | } | |
6389 | ||
bdaaa2e1 | 6390 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6391 | if (mask == M_LWC1_AB |
6392 | || mask == M_SWC1_AB | |
6393 | || mask == M_LDC1_AB | |
6394 | || mask == M_SDC1_AB | |
6395 | || mask == M_L_DAB | |
6396 | || mask == M_S_DAB) | |
6397 | fmt = "T,o(b)"; | |
d43b4baf TS |
6398 | else if (mask == M_CACHE_AB) |
6399 | fmt = "k,o(b)"; | |
252b5132 RH |
6400 | else if (coproc) |
6401 | fmt = "E,o(b)"; | |
6402 | else | |
6403 | fmt = "t,o(b)"; | |
6404 | ||
6405 | if (offset_expr.X_op != O_constant | |
6406 | && offset_expr.X_op != O_symbol) | |
6407 | { | |
6408 | as_bad (_("expression too complex")); | |
6409 | offset_expr.X_op = O_constant; | |
6410 | } | |
6411 | ||
2051e8c4 MR |
6412 | if (HAVE_32BIT_ADDRESSES |
6413 | && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number)) | |
55e08f71 NC |
6414 | { |
6415 | char value [32]; | |
6416 | ||
6417 | sprintf_vma (value, offset_expr.X_add_number); | |
20e1fcfd | 6418 | as_bad (_("Number (0x%s) larger than 32 bits"), value); |
55e08f71 | 6419 | } |
2051e8c4 | 6420 | |
252b5132 RH |
6421 | /* A constant expression in PIC code can be handled just as it |
6422 | is in non PIC code. */ | |
aed1a261 RS |
6423 | if (offset_expr.X_op == O_constant) |
6424 | { | |
aed1a261 RS |
6425 | expr1.X_add_number = ((offset_expr.X_add_number + 0x8000) |
6426 | & ~(bfd_vma) 0xffff); | |
2051e8c4 | 6427 | normalize_address_expr (&expr1); |
aed1a261 RS |
6428 | load_register (tempreg, &expr1, HAVE_64BIT_ADDRESSES); |
6429 | if (breg != 0) | |
6430 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
6431 | tempreg, tempreg, breg); | |
6432 | macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, tempreg); | |
6433 | } | |
6434 | else if (mips_pic == NO_PIC) | |
252b5132 RH |
6435 | { |
6436 | /* If this is a reference to a GP relative symbol, and there | |
6437 | is no base register, we want | |
cdf6fd85 | 6438 | <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16) |
252b5132 RH |
6439 | Otherwise, if there is no base register, we want |
6440 | lui $tempreg,<sym> (BFD_RELOC_HI16_S) | |
6441 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
6442 | If we have a constant, we need two instructions anyhow, | |
6443 | so we always use the latter form. | |
6444 | ||
6445 | If we have a base register, and this is a reference to a | |
6446 | GP relative symbol, we want | |
6447 | addu $tempreg,$breg,$gp | |
cdf6fd85 | 6448 | <op> $treg,<sym>($tempreg) (BFD_RELOC_GPREL16) |
252b5132 RH |
6449 | Otherwise we want |
6450 | lui $tempreg,<sym> (BFD_RELOC_HI16_S) | |
6451 | addu $tempreg,$tempreg,$breg | |
6452 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
d6bc6245 | 6453 | With a constant we always use the latter case. |
76b3015f | 6454 | |
d6bc6245 TS |
6455 | With 64bit address space and no base register and $at usable, |
6456 | we want | |
6457 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
6458 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
6459 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
6460 | dsll32 $tempreg,0 | |
6461 | daddu $tempreg,$at | |
6462 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
6463 | If we have a base register, we want | |
6464 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
6465 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
6466 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
6467 | daddu $at,$breg | |
6468 | dsll32 $tempreg,0 | |
6469 | daddu $tempreg,$at | |
6470 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
6471 | ||
6472 | Without $at we can't generate the optimal path for superscalar | |
6473 | processors here since this would require two temporary registers. | |
6474 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
6475 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
6476 | dsll $tempreg,16 | |
6477 | daddiu $tempreg,<sym> (BFD_RELOC_HI16_S) | |
6478 | dsll $tempreg,16 | |
6479 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
6480 | If we have a base register, we want | |
6481 | lui $tempreg,<sym> (BFD_RELOC_MIPS_HIGHEST) | |
6482 | daddiu $tempreg,<sym> (BFD_RELOC_MIPS_HIGHER) | |
6483 | dsll $tempreg,16 | |
6484 | daddiu $tempreg,<sym> (BFD_RELOC_HI16_S) | |
6485 | dsll $tempreg,16 | |
6486 | daddu $tempreg,$tempreg,$breg | |
6487 | <op> $treg,<sym>($tempreg) (BFD_RELOC_LO16) | |
6373ee54 | 6488 | |
6caf9ef4 | 6489 | For GP relative symbols in 64bit address space we can use |
aed1a261 RS |
6490 | the same sequence as in 32bit address space. */ |
6491 | if (HAVE_64BIT_SYMBOLS) | |
d6bc6245 | 6492 | { |
aed1a261 | 6493 | if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET |
6caf9ef4 TS |
6494 | && !nopic_need_relax (offset_expr.X_add_symbol, 1)) |
6495 | { | |
6496 | relax_start (offset_expr.X_add_symbol); | |
6497 | if (breg == 0) | |
6498 | { | |
6499 | macro_build (&offset_expr, s, fmt, treg, | |
6500 | BFD_RELOC_GPREL16, mips_gp_register); | |
6501 | } | |
6502 | else | |
6503 | { | |
6504 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
6505 | tempreg, breg, mips_gp_register); | |
6506 | macro_build (&offset_expr, s, fmt, treg, | |
6507 | BFD_RELOC_GPREL16, tempreg); | |
6508 | } | |
6509 | relax_switch (); | |
6510 | } | |
d6bc6245 | 6511 | |
741fe287 | 6512 | if (used_at == 0 && mips_opts.at) |
d6bc6245 | 6513 | { |
67c0d1eb RS |
6514 | macro_build (&offset_expr, "lui", "t,u", tempreg, |
6515 | BFD_RELOC_MIPS_HIGHEST); | |
6516 | macro_build (&offset_expr, "lui", "t,u", AT, | |
6517 | BFD_RELOC_HI16_S); | |
6518 | macro_build (&offset_expr, "daddiu", "t,r,j", tempreg, | |
6519 | tempreg, BFD_RELOC_MIPS_HIGHER); | |
d6bc6245 | 6520 | if (breg != 0) |
67c0d1eb RS |
6521 | macro_build (NULL, "daddu", "d,v,t", AT, AT, breg); |
6522 | macro_build (NULL, "dsll32", "d,w,<", tempreg, tempreg, 0); | |
6523 | macro_build (NULL, "daddu", "d,v,t", tempreg, tempreg, AT); | |
6524 | macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_LO16, | |
6525 | tempreg); | |
d6bc6245 TS |
6526 | used_at = 1; |
6527 | } | |
6528 | else | |
6529 | { | |
67c0d1eb RS |
6530 | macro_build (&offset_expr, "lui", "t,u", tempreg, |
6531 | BFD_RELOC_MIPS_HIGHEST); | |
6532 | macro_build (&offset_expr, "daddiu", "t,r,j", tempreg, | |
6533 | tempreg, BFD_RELOC_MIPS_HIGHER); | |
6534 | macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16); | |
6535 | macro_build (&offset_expr, "daddiu", "t,r,j", tempreg, | |
6536 | tempreg, BFD_RELOC_HI16_S); | |
6537 | macro_build (NULL, "dsll", "d,w,<", tempreg, tempreg, 16); | |
d6bc6245 | 6538 | if (breg != 0) |
67c0d1eb | 6539 | macro_build (NULL, "daddu", "d,v,t", |
17a2f251 | 6540 | tempreg, tempreg, breg); |
67c0d1eb | 6541 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 6542 | BFD_RELOC_LO16, tempreg); |
d6bc6245 | 6543 | } |
6caf9ef4 TS |
6544 | |
6545 | if (mips_relax.sequence) | |
6546 | relax_end (); | |
8fc2e39e | 6547 | break; |
d6bc6245 | 6548 | } |
256ab948 | 6549 | |
252b5132 RH |
6550 | if (breg == 0) |
6551 | { | |
67c0d1eb | 6552 | if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET |
6caf9ef4 | 6553 | && !nopic_need_relax (offset_expr.X_add_symbol, 1)) |
252b5132 | 6554 | { |
4d7206a2 | 6555 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
6556 | macro_build (&offset_expr, s, fmt, treg, BFD_RELOC_GPREL16, |
6557 | mips_gp_register); | |
4d7206a2 | 6558 | relax_switch (); |
252b5132 | 6559 | } |
67c0d1eb RS |
6560 | macro_build_lui (&offset_expr, tempreg); |
6561 | macro_build (&offset_expr, s, fmt, treg, | |
17a2f251 | 6562 | BFD_RELOC_LO16, tempreg); |
4d7206a2 RS |
6563 | if (mips_relax.sequence) |
6564 | relax_end (); | |
252b5132 RH |
6565 | } |
6566 | else | |
6567 | { | |
67c0d1eb | 6568 | if ((valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET |
6caf9ef4 | 6569 | && !nopic_need_relax (offset_expr.X_add_symbol, 1)) |
252b5132 | 6570 | { |
4d7206a2 | 6571 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb | 6572 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6573 | tempreg, breg, mips_gp_register); |
67c0d1eb | 6574 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 6575 | BFD_RELOC_GPREL16, tempreg); |
4d7206a2 | 6576 | relax_switch (); |
252b5132 | 6577 | } |
67c0d1eb RS |
6578 | macro_build_lui (&offset_expr, tempreg); |
6579 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
17a2f251 | 6580 | tempreg, tempreg, breg); |
67c0d1eb | 6581 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 6582 | BFD_RELOC_LO16, tempreg); |
4d7206a2 RS |
6583 | if (mips_relax.sequence) |
6584 | relax_end (); | |
252b5132 RH |
6585 | } |
6586 | } | |
0a44bf69 | 6587 | else if (!mips_big_got) |
252b5132 | 6588 | { |
ed6fb7bd | 6589 | int lw_reloc_type = (int) BFD_RELOC_MIPS_GOT16; |
f9419b05 | 6590 | |
252b5132 RH |
6591 | /* If this is a reference to an external symbol, we want |
6592 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6593 | nop | |
6594 | <op> $treg,0($tempreg) | |
6595 | Otherwise we want | |
6596 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6597 | nop | |
6598 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
6599 | <op> $treg,0($tempreg) | |
f5040a92 AO |
6600 | |
6601 | For NewABI, we want | |
6602 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE) | |
6603 | <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) | |
6604 | ||
252b5132 RH |
6605 | If there is a base register, we add it to $tempreg before |
6606 | the <op>. If there is a constant, we stick it in the | |
6607 | <op> instruction. We don't handle constants larger than | |
6608 | 16 bits, because we have no way to load the upper 16 bits | |
6609 | (actually, we could handle them for the subset of cases | |
6610 | in which we are not using $at). */ | |
6611 | assert (offset_expr.X_op == O_symbol); | |
f5040a92 AO |
6612 | if (HAVE_NEWABI) |
6613 | { | |
67c0d1eb RS |
6614 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
6615 | BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register); | |
f5040a92 | 6616 | if (breg != 0) |
67c0d1eb | 6617 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6618 | tempreg, tempreg, breg); |
67c0d1eb | 6619 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 6620 | BFD_RELOC_MIPS_GOT_OFST, tempreg); |
f5040a92 AO |
6621 | break; |
6622 | } | |
252b5132 RH |
6623 | expr1.X_add_number = offset_expr.X_add_number; |
6624 | offset_expr.X_add_number = 0; | |
6625 | if (expr1.X_add_number < -0x8000 | |
6626 | || expr1.X_add_number >= 0x8000) | |
6627 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
67c0d1eb RS |
6628 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
6629 | lw_reloc_type, mips_gp_register); | |
269137b2 | 6630 | load_delay_nop (); |
4d7206a2 RS |
6631 | relax_start (offset_expr.X_add_symbol); |
6632 | relax_switch (); | |
67c0d1eb RS |
6633 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg, |
6634 | tempreg, BFD_RELOC_LO16); | |
4d7206a2 | 6635 | relax_end (); |
252b5132 | 6636 | if (breg != 0) |
67c0d1eb | 6637 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6638 | tempreg, tempreg, breg); |
67c0d1eb | 6639 | macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg); |
252b5132 | 6640 | } |
0a44bf69 | 6641 | else if (mips_big_got && !HAVE_NEWABI) |
252b5132 | 6642 | { |
67c0d1eb | 6643 | int gpdelay; |
252b5132 RH |
6644 | |
6645 | /* If this is a reference to an external symbol, we want | |
6646 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
6647 | addu $tempreg,$tempreg,$gp | |
6648 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
6649 | <op> $treg,0($tempreg) | |
6650 | Otherwise we want | |
6651 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
6652 | nop | |
6653 | addiu $tempreg,$tempreg,<sym> (BFD_RELOC_LO16) | |
6654 | <op> $treg,0($tempreg) | |
6655 | If there is a base register, we add it to $tempreg before | |
6656 | the <op>. If there is a constant, we stick it in the | |
6657 | <op> instruction. We don't handle constants larger than | |
6658 | 16 bits, because we have no way to load the upper 16 bits | |
6659 | (actually, we could handle them for the subset of cases | |
f5040a92 | 6660 | in which we are not using $at). */ |
252b5132 RH |
6661 | assert (offset_expr.X_op == O_symbol); |
6662 | expr1.X_add_number = offset_expr.X_add_number; | |
6663 | offset_expr.X_add_number = 0; | |
6664 | if (expr1.X_add_number < -0x8000 | |
6665 | || expr1.X_add_number >= 0x8000) | |
6666 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
67c0d1eb | 6667 | gpdelay = reg_needs_delay (mips_gp_register); |
4d7206a2 | 6668 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb | 6669 | macro_build (&offset_expr, "lui", "t,u", tempreg, |
17a2f251 | 6670 | BFD_RELOC_MIPS_GOT_HI16); |
67c0d1eb RS |
6671 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg, |
6672 | mips_gp_register); | |
6673 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, | |
6674 | BFD_RELOC_MIPS_GOT_LO16, tempreg); | |
4d7206a2 | 6675 | relax_switch (); |
67c0d1eb RS |
6676 | if (gpdelay) |
6677 | macro_build (NULL, "nop", ""); | |
6678 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, | |
6679 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
269137b2 | 6680 | load_delay_nop (); |
67c0d1eb RS |
6681 | macro_build (&offset_expr, ADDRESS_ADDI_INSN, "t,r,j", tempreg, |
6682 | tempreg, BFD_RELOC_LO16); | |
4d7206a2 RS |
6683 | relax_end (); |
6684 | ||
252b5132 | 6685 | if (breg != 0) |
67c0d1eb | 6686 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6687 | tempreg, tempreg, breg); |
67c0d1eb | 6688 | macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg); |
252b5132 | 6689 | } |
0a44bf69 | 6690 | else if (mips_big_got && HAVE_NEWABI) |
f5040a92 | 6691 | { |
f5040a92 AO |
6692 | /* If this is a reference to an external symbol, we want |
6693 | lui $tempreg,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
6694 | add $tempreg,$tempreg,$gp | |
6695 | lw $tempreg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_LO16) | |
6696 | <op> $treg,<ofst>($tempreg) | |
6697 | Otherwise, for local symbols, we want: | |
6698 | lw $tempreg,<sym>($gp) (BFD_RELOC_MIPS_GOT_PAGE) | |
6699 | <op> $treg,<sym>($tempreg) (BFD_RELOC_MIPS_GOT_OFST) */ | |
6700 | assert (offset_expr.X_op == O_symbol); | |
4d7206a2 | 6701 | expr1.X_add_number = offset_expr.X_add_number; |
f5040a92 AO |
6702 | offset_expr.X_add_number = 0; |
6703 | if (expr1.X_add_number < -0x8000 | |
6704 | || expr1.X_add_number >= 0x8000) | |
6705 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
4d7206a2 | 6706 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb | 6707 | macro_build (&offset_expr, "lui", "t,u", tempreg, |
17a2f251 | 6708 | BFD_RELOC_MIPS_GOT_HI16); |
67c0d1eb RS |
6709 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", tempreg, tempreg, |
6710 | mips_gp_register); | |
6711 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, | |
6712 | BFD_RELOC_MIPS_GOT_LO16, tempreg); | |
f5040a92 | 6713 | if (breg != 0) |
67c0d1eb | 6714 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6715 | tempreg, tempreg, breg); |
67c0d1eb | 6716 | macro_build (&expr1, s, fmt, treg, BFD_RELOC_LO16, tempreg); |
684022ea | 6717 | |
4d7206a2 | 6718 | relax_switch (); |
f5040a92 | 6719 | offset_expr.X_add_number = expr1.X_add_number; |
67c0d1eb RS |
6720 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", tempreg, |
6721 | BFD_RELOC_MIPS_GOT_PAGE, mips_gp_register); | |
f5040a92 | 6722 | if (breg != 0) |
67c0d1eb | 6723 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 6724 | tempreg, tempreg, breg); |
67c0d1eb | 6725 | macro_build (&offset_expr, s, fmt, treg, |
17a2f251 | 6726 | BFD_RELOC_MIPS_GOT_OFST, tempreg); |
4d7206a2 | 6727 | relax_end (); |
f5040a92 | 6728 | } |
252b5132 RH |
6729 | else |
6730 | abort (); | |
6731 | ||
252b5132 RH |
6732 | break; |
6733 | ||
6734 | case M_LI: | |
6735 | case M_LI_S: | |
67c0d1eb | 6736 | load_register (treg, &imm_expr, 0); |
8fc2e39e | 6737 | break; |
252b5132 RH |
6738 | |
6739 | case M_DLI: | |
67c0d1eb | 6740 | load_register (treg, &imm_expr, 1); |
8fc2e39e | 6741 | break; |
252b5132 RH |
6742 | |
6743 | case M_LI_SS: | |
6744 | if (imm_expr.X_op == O_constant) | |
6745 | { | |
8fc2e39e | 6746 | used_at = 1; |
67c0d1eb RS |
6747 | load_register (AT, &imm_expr, 0); |
6748 | macro_build (NULL, "mtc1", "t,G", AT, treg); | |
252b5132 RH |
6749 | break; |
6750 | } | |
6751 | else | |
6752 | { | |
6753 | assert (offset_expr.X_op == O_symbol | |
6754 | && strcmp (segment_name (S_GET_SEGMENT | |
6755 | (offset_expr.X_add_symbol)), | |
6756 | ".lit4") == 0 | |
6757 | && offset_expr.X_add_number == 0); | |
67c0d1eb | 6758 | macro_build (&offset_expr, "lwc1", "T,o(b)", treg, |
17a2f251 | 6759 | BFD_RELOC_MIPS_LITERAL, mips_gp_register); |
8fc2e39e | 6760 | break; |
252b5132 RH |
6761 | } |
6762 | ||
6763 | case M_LI_D: | |
ca4e0257 RS |
6764 | /* Check if we have a constant in IMM_EXPR. If the GPRs are 64 bits |
6765 | wide, IMM_EXPR is the entire value. Otherwise IMM_EXPR is the high | |
6766 | order 32 bits of the value and the low order 32 bits are either | |
6767 | zero or in OFFSET_EXPR. */ | |
252b5132 RH |
6768 | if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big) |
6769 | { | |
ca4e0257 | 6770 | if (HAVE_64BIT_GPRS) |
67c0d1eb | 6771 | load_register (treg, &imm_expr, 1); |
252b5132 RH |
6772 | else |
6773 | { | |
6774 | int hreg, lreg; | |
6775 | ||
6776 | if (target_big_endian) | |
6777 | { | |
6778 | hreg = treg; | |
6779 | lreg = treg + 1; | |
6780 | } | |
6781 | else | |
6782 | { | |
6783 | hreg = treg + 1; | |
6784 | lreg = treg; | |
6785 | } | |
6786 | ||
6787 | if (hreg <= 31) | |
67c0d1eb | 6788 | load_register (hreg, &imm_expr, 0); |
252b5132 RH |
6789 | if (lreg <= 31) |
6790 | { | |
6791 | if (offset_expr.X_op == O_absent) | |
67c0d1eb | 6792 | move_register (lreg, 0); |
252b5132 RH |
6793 | else |
6794 | { | |
6795 | assert (offset_expr.X_op == O_constant); | |
67c0d1eb | 6796 | load_register (lreg, &offset_expr, 0); |
252b5132 RH |
6797 | } |
6798 | } | |
6799 | } | |
8fc2e39e | 6800 | break; |
252b5132 RH |
6801 | } |
6802 | ||
6803 | /* We know that sym is in the .rdata section. First we get the | |
6804 | upper 16 bits of the address. */ | |
6805 | if (mips_pic == NO_PIC) | |
6806 | { | |
67c0d1eb | 6807 | macro_build_lui (&offset_expr, AT); |
8fc2e39e | 6808 | used_at = 1; |
252b5132 | 6809 | } |
0a44bf69 | 6810 | else |
252b5132 | 6811 | { |
67c0d1eb RS |
6812 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT, |
6813 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
8fc2e39e | 6814 | used_at = 1; |
252b5132 | 6815 | } |
bdaaa2e1 | 6816 | |
252b5132 | 6817 | /* Now we load the register(s). */ |
ca4e0257 | 6818 | if (HAVE_64BIT_GPRS) |
8fc2e39e TS |
6819 | { |
6820 | used_at = 1; | |
6821 | macro_build (&offset_expr, "ld", "t,o(b)", treg, BFD_RELOC_LO16, AT); | |
6822 | } | |
252b5132 RH |
6823 | else |
6824 | { | |
8fc2e39e | 6825 | used_at = 1; |
67c0d1eb | 6826 | macro_build (&offset_expr, "lw", "t,o(b)", treg, BFD_RELOC_LO16, AT); |
f9419b05 | 6827 | if (treg != RA) |
252b5132 RH |
6828 | { |
6829 | /* FIXME: How in the world do we deal with the possible | |
6830 | overflow here? */ | |
6831 | offset_expr.X_add_number += 4; | |
67c0d1eb | 6832 | macro_build (&offset_expr, "lw", "t,o(b)", |
17a2f251 | 6833 | treg + 1, BFD_RELOC_LO16, AT); |
252b5132 RH |
6834 | } |
6835 | } | |
252b5132 RH |
6836 | break; |
6837 | ||
6838 | case M_LI_DD: | |
ca4e0257 RS |
6839 | /* Check if we have a constant in IMM_EXPR. If the FPRs are 64 bits |
6840 | wide, IMM_EXPR is the entire value and the GPRs are known to be 64 | |
6841 | bits wide as well. Otherwise IMM_EXPR is the high order 32 bits of | |
6842 | the value and the low order 32 bits are either zero or in | |
6843 | OFFSET_EXPR. */ | |
252b5132 RH |
6844 | if (imm_expr.X_op == O_constant || imm_expr.X_op == O_big) |
6845 | { | |
8fc2e39e | 6846 | used_at = 1; |
67c0d1eb | 6847 | load_register (AT, &imm_expr, HAVE_64BIT_FPRS); |
ca4e0257 RS |
6848 | if (HAVE_64BIT_FPRS) |
6849 | { | |
6850 | assert (HAVE_64BIT_GPRS); | |
67c0d1eb | 6851 | macro_build (NULL, "dmtc1", "t,S", AT, treg); |
ca4e0257 | 6852 | } |
252b5132 RH |
6853 | else |
6854 | { | |
67c0d1eb | 6855 | macro_build (NULL, "mtc1", "t,G", AT, treg + 1); |
252b5132 | 6856 | if (offset_expr.X_op == O_absent) |
67c0d1eb | 6857 | macro_build (NULL, "mtc1", "t,G", 0, treg); |
252b5132 RH |
6858 | else |
6859 | { | |
6860 | assert (offset_expr.X_op == O_constant); | |
67c0d1eb RS |
6861 | load_register (AT, &offset_expr, 0); |
6862 | macro_build (NULL, "mtc1", "t,G", AT, treg); | |
252b5132 RH |
6863 | } |
6864 | } | |
6865 | break; | |
6866 | } | |
6867 | ||
6868 | assert (offset_expr.X_op == O_symbol | |
6869 | && offset_expr.X_add_number == 0); | |
6870 | s = segment_name (S_GET_SEGMENT (offset_expr.X_add_symbol)); | |
6871 | if (strcmp (s, ".lit8") == 0) | |
6872 | { | |
e7af610e | 6873 | if (mips_opts.isa != ISA_MIPS1) |
252b5132 | 6874 | { |
67c0d1eb | 6875 | macro_build (&offset_expr, "ldc1", "T,o(b)", treg, |
17a2f251 | 6876 | BFD_RELOC_MIPS_LITERAL, mips_gp_register); |
8fc2e39e | 6877 | break; |
252b5132 | 6878 | } |
c9914766 | 6879 | breg = mips_gp_register; |
252b5132 RH |
6880 | r = BFD_RELOC_MIPS_LITERAL; |
6881 | goto dob; | |
6882 | } | |
6883 | else | |
6884 | { | |
6885 | assert (strcmp (s, RDATA_SECTION_NAME) == 0); | |
8fc2e39e | 6886 | used_at = 1; |
0a44bf69 | 6887 | if (mips_pic != NO_PIC) |
67c0d1eb RS |
6888 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT, |
6889 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
252b5132 RH |
6890 | else |
6891 | { | |
6892 | /* FIXME: This won't work for a 64 bit address. */ | |
67c0d1eb | 6893 | macro_build_lui (&offset_expr, AT); |
252b5132 | 6894 | } |
bdaaa2e1 | 6895 | |
e7af610e | 6896 | if (mips_opts.isa != ISA_MIPS1) |
252b5132 | 6897 | { |
67c0d1eb RS |
6898 | macro_build (&offset_expr, "ldc1", "T,o(b)", |
6899 | treg, BFD_RELOC_LO16, AT); | |
252b5132 RH |
6900 | break; |
6901 | } | |
6902 | breg = AT; | |
6903 | r = BFD_RELOC_LO16; | |
6904 | goto dob; | |
6905 | } | |
6906 | ||
6907 | case M_L_DOB: | |
252b5132 RH |
6908 | /* Even on a big endian machine $fn comes before $fn+1. We have |
6909 | to adjust when loading from memory. */ | |
6910 | r = BFD_RELOC_LO16; | |
6911 | dob: | |
e7af610e | 6912 | assert (mips_opts.isa == ISA_MIPS1); |
67c0d1eb | 6913 | macro_build (&offset_expr, "lwc1", "T,o(b)", |
17a2f251 | 6914 | target_big_endian ? treg + 1 : treg, r, breg); |
252b5132 RH |
6915 | /* FIXME: A possible overflow which I don't know how to deal |
6916 | with. */ | |
6917 | offset_expr.X_add_number += 4; | |
67c0d1eb | 6918 | macro_build (&offset_expr, "lwc1", "T,o(b)", |
17a2f251 | 6919 | target_big_endian ? treg : treg + 1, r, breg); |
252b5132 RH |
6920 | break; |
6921 | ||
6922 | case M_L_DAB: | |
6923 | /* | |
6924 | * The MIPS assembler seems to check for X_add_number not | |
6925 | * being double aligned and generating: | |
6926 | * lui at,%hi(foo+1) | |
6927 | * addu at,at,v1 | |
6928 | * addiu at,at,%lo(foo+1) | |
6929 | * lwc1 f2,0(at) | |
6930 | * lwc1 f3,4(at) | |
6931 | * But, the resulting address is the same after relocation so why | |
6932 | * generate the extra instruction? | |
6933 | */ | |
bdaaa2e1 | 6934 | /* Itbl support may require additional care here. */ |
252b5132 | 6935 | coproc = 1; |
e7af610e | 6936 | if (mips_opts.isa != ISA_MIPS1) |
252b5132 RH |
6937 | { |
6938 | s = "ldc1"; | |
6939 | goto ld; | |
6940 | } | |
6941 | ||
6942 | s = "lwc1"; | |
6943 | fmt = "T,o(b)"; | |
6944 | goto ldd_std; | |
6945 | ||
6946 | case M_S_DAB: | |
e7af610e | 6947 | if (mips_opts.isa != ISA_MIPS1) |
252b5132 RH |
6948 | { |
6949 | s = "sdc1"; | |
6950 | goto st; | |
6951 | } | |
6952 | ||
6953 | s = "swc1"; | |
6954 | fmt = "T,o(b)"; | |
bdaaa2e1 | 6955 | /* Itbl support may require additional care here. */ |
252b5132 RH |
6956 | coproc = 1; |
6957 | goto ldd_std; | |
6958 | ||
6959 | case M_LD_AB: | |
ca4e0257 | 6960 | if (HAVE_64BIT_GPRS) |
252b5132 RH |
6961 | { |
6962 | s = "ld"; | |
6963 | goto ld; | |
6964 | } | |
6965 | ||
6966 | s = "lw"; | |
6967 | fmt = "t,o(b)"; | |
6968 | goto ldd_std; | |
6969 | ||
6970 | case M_SD_AB: | |
ca4e0257 | 6971 | if (HAVE_64BIT_GPRS) |
252b5132 RH |
6972 | { |
6973 | s = "sd"; | |
6974 | goto st; | |
6975 | } | |
6976 | ||
6977 | s = "sw"; | |
6978 | fmt = "t,o(b)"; | |
6979 | ||
6980 | ldd_std: | |
6981 | if (offset_expr.X_op != O_symbol | |
6982 | && offset_expr.X_op != O_constant) | |
6983 | { | |
6984 | as_bad (_("expression too complex")); | |
6985 | offset_expr.X_op = O_constant; | |
6986 | } | |
6987 | ||
2051e8c4 MR |
6988 | if (HAVE_32BIT_ADDRESSES |
6989 | && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number)) | |
55e08f71 NC |
6990 | { |
6991 | char value [32]; | |
6992 | ||
6993 | sprintf_vma (value, offset_expr.X_add_number); | |
20e1fcfd | 6994 | as_bad (_("Number (0x%s) larger than 32 bits"), value); |
55e08f71 | 6995 | } |
2051e8c4 | 6996 | |
252b5132 RH |
6997 | /* Even on a big endian machine $fn comes before $fn+1. We have |
6998 | to adjust when loading from memory. We set coproc if we must | |
6999 | load $fn+1 first. */ | |
bdaaa2e1 | 7000 | /* Itbl support may require additional care here. */ |
252b5132 RH |
7001 | if (! target_big_endian) |
7002 | coproc = 0; | |
7003 | ||
7004 | if (mips_pic == NO_PIC | |
7005 | || offset_expr.X_op == O_constant) | |
7006 | { | |
7007 | /* If this is a reference to a GP relative symbol, we want | |
cdf6fd85 TS |
7008 | <op> $treg,<sym>($gp) (BFD_RELOC_GPREL16) |
7009 | <op> $treg+1,<sym>+4($gp) (BFD_RELOC_GPREL16) | |
252b5132 RH |
7010 | If we have a base register, we use this |
7011 | addu $at,$breg,$gp | |
cdf6fd85 TS |
7012 | <op> $treg,<sym>($at) (BFD_RELOC_GPREL16) |
7013 | <op> $treg+1,<sym>+4($at) (BFD_RELOC_GPREL16) | |
252b5132 RH |
7014 | If this is not a GP relative symbol, we want |
7015 | lui $at,<sym> (BFD_RELOC_HI16_S) | |
7016 | <op> $treg,<sym>($at) (BFD_RELOC_LO16) | |
7017 | <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16) | |
7018 | If there is a base register, we add it to $at after the | |
7019 | lui instruction. If there is a constant, we always use | |
7020 | the last case. */ | |
39a59cf8 MR |
7021 | if (offset_expr.X_op == O_symbol |
7022 | && (valueT) offset_expr.X_add_number <= MAX_GPREL_OFFSET | |
6caf9ef4 | 7023 | && !nopic_need_relax (offset_expr.X_add_symbol, 1)) |
252b5132 | 7024 | { |
4d7206a2 | 7025 | relax_start (offset_expr.X_add_symbol); |
252b5132 RH |
7026 | if (breg == 0) |
7027 | { | |
c9914766 | 7028 | tempreg = mips_gp_register; |
252b5132 RH |
7029 | } |
7030 | else | |
7031 | { | |
67c0d1eb | 7032 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", |
17a2f251 | 7033 | AT, breg, mips_gp_register); |
252b5132 | 7034 | tempreg = AT; |
252b5132 RH |
7035 | used_at = 1; |
7036 | } | |
7037 | ||
beae10d5 | 7038 | /* Itbl support may require additional care here. */ |
67c0d1eb | 7039 | macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg, |
17a2f251 | 7040 | BFD_RELOC_GPREL16, tempreg); |
252b5132 RH |
7041 | offset_expr.X_add_number += 4; |
7042 | ||
7043 | /* Set mips_optimize to 2 to avoid inserting an | |
7044 | undesired nop. */ | |
7045 | hold_mips_optimize = mips_optimize; | |
7046 | mips_optimize = 2; | |
beae10d5 | 7047 | /* Itbl support may require additional care here. */ |
67c0d1eb | 7048 | macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1, |
17a2f251 | 7049 | BFD_RELOC_GPREL16, tempreg); |
252b5132 RH |
7050 | mips_optimize = hold_mips_optimize; |
7051 | ||
4d7206a2 | 7052 | relax_switch (); |
252b5132 RH |
7053 | |
7054 | /* We just generated two relocs. When tc_gen_reloc | |
7055 | handles this case, it will skip the first reloc and | |
7056 | handle the second. The second reloc already has an | |
7057 | extra addend of 4, which we added above. We must | |
7058 | subtract it out, and then subtract another 4 to make | |
7059 | the first reloc come out right. The second reloc | |
7060 | will come out right because we are going to add 4 to | |
7061 | offset_expr when we build its instruction below. | |
7062 | ||
7063 | If we have a symbol, then we don't want to include | |
7064 | the offset, because it will wind up being included | |
7065 | when we generate the reloc. */ | |
7066 | ||
7067 | if (offset_expr.X_op == O_constant) | |
7068 | offset_expr.X_add_number -= 8; | |
7069 | else | |
7070 | { | |
7071 | offset_expr.X_add_number = -4; | |
7072 | offset_expr.X_op = O_constant; | |
7073 | } | |
7074 | } | |
8fc2e39e | 7075 | used_at = 1; |
67c0d1eb | 7076 | macro_build_lui (&offset_expr, AT); |
252b5132 | 7077 | if (breg != 0) |
67c0d1eb | 7078 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT); |
beae10d5 | 7079 | /* Itbl support may require additional care here. */ |
67c0d1eb | 7080 | macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg, |
17a2f251 | 7081 | BFD_RELOC_LO16, AT); |
252b5132 RH |
7082 | /* FIXME: How do we handle overflow here? */ |
7083 | offset_expr.X_add_number += 4; | |
beae10d5 | 7084 | /* Itbl support may require additional care here. */ |
67c0d1eb | 7085 | macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1, |
17a2f251 | 7086 | BFD_RELOC_LO16, AT); |
4d7206a2 RS |
7087 | if (mips_relax.sequence) |
7088 | relax_end (); | |
bdaaa2e1 | 7089 | } |
0a44bf69 | 7090 | else if (!mips_big_got) |
252b5132 | 7091 | { |
252b5132 RH |
7092 | /* If this is a reference to an external symbol, we want |
7093 | lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
7094 | nop | |
7095 | <op> $treg,0($at) | |
7096 | <op> $treg+1,4($at) | |
7097 | Otherwise we want | |
7098 | lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
7099 | nop | |
7100 | <op> $treg,<sym>($at) (BFD_RELOC_LO16) | |
7101 | <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16) | |
7102 | If there is a base register we add it to $at before the | |
7103 | lwc1 instructions. If there is a constant we include it | |
7104 | in the lwc1 instructions. */ | |
7105 | used_at = 1; | |
7106 | expr1.X_add_number = offset_expr.X_add_number; | |
252b5132 RH |
7107 | if (expr1.X_add_number < -0x8000 |
7108 | || expr1.X_add_number >= 0x8000 - 4) | |
7109 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
67c0d1eb | 7110 | load_got_offset (AT, &offset_expr); |
269137b2 | 7111 | load_delay_nop (); |
252b5132 | 7112 | if (breg != 0) |
67c0d1eb | 7113 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT); |
252b5132 RH |
7114 | |
7115 | /* Set mips_optimize to 2 to avoid inserting an undesired | |
7116 | nop. */ | |
7117 | hold_mips_optimize = mips_optimize; | |
7118 | mips_optimize = 2; | |
4d7206a2 | 7119 | |
beae10d5 | 7120 | /* Itbl support may require additional care here. */ |
4d7206a2 | 7121 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
7122 | macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg, |
7123 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 7124 | expr1.X_add_number += 4; |
67c0d1eb RS |
7125 | macro_build (&expr1, s, fmt, coproc ? treg : treg + 1, |
7126 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 7127 | relax_switch (); |
67c0d1eb RS |
7128 | macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg, |
7129 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 7130 | offset_expr.X_add_number += 4; |
67c0d1eb RS |
7131 | macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1, |
7132 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 7133 | relax_end (); |
252b5132 | 7134 | |
4d7206a2 | 7135 | mips_optimize = hold_mips_optimize; |
252b5132 | 7136 | } |
0a44bf69 | 7137 | else if (mips_big_got) |
252b5132 | 7138 | { |
67c0d1eb | 7139 | int gpdelay; |
252b5132 RH |
7140 | |
7141 | /* If this is a reference to an external symbol, we want | |
7142 | lui $at,<sym> (BFD_RELOC_MIPS_GOT_HI16) | |
7143 | addu $at,$at,$gp | |
7144 | lw $at,<sym>($at) (BFD_RELOC_MIPS_GOT_LO16) | |
7145 | nop | |
7146 | <op> $treg,0($at) | |
7147 | <op> $treg+1,4($at) | |
7148 | Otherwise we want | |
7149 | lw $at,<sym>($gp) (BFD_RELOC_MIPS_GOT16) | |
7150 | nop | |
7151 | <op> $treg,<sym>($at) (BFD_RELOC_LO16) | |
7152 | <op> $treg+1,<sym>+4($at) (BFD_RELOC_LO16) | |
7153 | If there is a base register we add it to $at before the | |
7154 | lwc1 instructions. If there is a constant we include it | |
7155 | in the lwc1 instructions. */ | |
7156 | used_at = 1; | |
7157 | expr1.X_add_number = offset_expr.X_add_number; | |
7158 | offset_expr.X_add_number = 0; | |
7159 | if (expr1.X_add_number < -0x8000 | |
7160 | || expr1.X_add_number >= 0x8000 - 4) | |
7161 | as_bad (_("PIC code offset overflow (max 16 signed bits)")); | |
67c0d1eb | 7162 | gpdelay = reg_needs_delay (mips_gp_register); |
4d7206a2 | 7163 | relax_start (offset_expr.X_add_symbol); |
67c0d1eb RS |
7164 | macro_build (&offset_expr, "lui", "t,u", |
7165 | AT, BFD_RELOC_MIPS_GOT_HI16); | |
7166 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", | |
17a2f251 | 7167 | AT, AT, mips_gp_register); |
67c0d1eb | 7168 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", |
17a2f251 | 7169 | AT, BFD_RELOC_MIPS_GOT_LO16, AT); |
269137b2 | 7170 | load_delay_nop (); |
252b5132 | 7171 | if (breg != 0) |
67c0d1eb | 7172 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT); |
beae10d5 | 7173 | /* Itbl support may require additional care here. */ |
67c0d1eb | 7174 | macro_build (&expr1, s, fmt, coproc ? treg + 1 : treg, |
17a2f251 | 7175 | BFD_RELOC_LO16, AT); |
252b5132 RH |
7176 | expr1.X_add_number += 4; |
7177 | ||
7178 | /* Set mips_optimize to 2 to avoid inserting an undesired | |
7179 | nop. */ | |
7180 | hold_mips_optimize = mips_optimize; | |
7181 | mips_optimize = 2; | |
beae10d5 | 7182 | /* Itbl support may require additional care here. */ |
67c0d1eb | 7183 | macro_build (&expr1, s, fmt, coproc ? treg : treg + 1, |
17a2f251 | 7184 | BFD_RELOC_LO16, AT); |
252b5132 RH |
7185 | mips_optimize = hold_mips_optimize; |
7186 | expr1.X_add_number -= 4; | |
7187 | ||
4d7206a2 RS |
7188 | relax_switch (); |
7189 | offset_expr.X_add_number = expr1.X_add_number; | |
67c0d1eb RS |
7190 | if (gpdelay) |
7191 | macro_build (NULL, "nop", ""); | |
7192 | macro_build (&offset_expr, ADDRESS_LOAD_INSN, "t,o(b)", AT, | |
7193 | BFD_RELOC_MIPS_GOT16, mips_gp_register); | |
269137b2 | 7194 | load_delay_nop (); |
252b5132 | 7195 | if (breg != 0) |
67c0d1eb | 7196 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, breg, AT); |
beae10d5 | 7197 | /* Itbl support may require additional care here. */ |
67c0d1eb RS |
7198 | macro_build (&offset_expr, s, fmt, coproc ? treg + 1 : treg, |
7199 | BFD_RELOC_LO16, AT); | |
4d7206a2 | 7200 | offset_expr.X_add_number += 4; |
252b5132 RH |
7201 | |
7202 | /* Set mips_optimize to 2 to avoid inserting an undesired | |
7203 | nop. */ | |
7204 | hold_mips_optimize = mips_optimize; | |
7205 | mips_optimize = 2; | |
beae10d5 | 7206 | /* Itbl support may require additional care here. */ |
67c0d1eb RS |
7207 | macro_build (&offset_expr, s, fmt, coproc ? treg : treg + 1, |
7208 | BFD_RELOC_LO16, AT); | |
252b5132 | 7209 | mips_optimize = hold_mips_optimize; |
4d7206a2 | 7210 | relax_end (); |
252b5132 | 7211 | } |
252b5132 RH |
7212 | else |
7213 | abort (); | |
7214 | ||
252b5132 RH |
7215 | break; |
7216 | ||
7217 | case M_LD_OB: | |
7218 | s = "lw"; | |
7219 | goto sd_ob; | |
7220 | case M_SD_OB: | |
7221 | s = "sw"; | |
7222 | sd_ob: | |
ca4e0257 | 7223 | assert (HAVE_32BIT_ADDRESSES); |
67c0d1eb | 7224 | macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg); |
252b5132 | 7225 | offset_expr.X_add_number += 4; |
67c0d1eb | 7226 | macro_build (&offset_expr, s, "t,o(b)", treg + 1, BFD_RELOC_LO16, breg); |
8fc2e39e | 7227 | break; |
252b5132 RH |
7228 | |
7229 | /* New code added to support COPZ instructions. | |
7230 | This code builds table entries out of the macros in mip_opcodes. | |
7231 | R4000 uses interlocks to handle coproc delays. | |
7232 | Other chips (like the R3000) require nops to be inserted for delays. | |
7233 | ||
f72c8c98 | 7234 | FIXME: Currently, we require that the user handle delays. |
252b5132 RH |
7235 | In order to fill delay slots for non-interlocked chips, |
7236 | we must have a way to specify delays based on the coprocessor. | |
7237 | Eg. 4 cycles if load coproc reg from memory, 1 if in cache, etc. | |
7238 | What are the side-effects of the cop instruction? | |
7239 | What cache support might we have and what are its effects? | |
7240 | Both coprocessor & memory require delays. how long??? | |
bdaaa2e1 | 7241 | What registers are read/set/modified? |
252b5132 RH |
7242 | |
7243 | If an itbl is provided to interpret cop instructions, | |
bdaaa2e1 | 7244 | this knowledge can be encoded in the itbl spec. */ |
252b5132 RH |
7245 | |
7246 | case M_COP0: | |
7247 | s = "c0"; | |
7248 | goto copz; | |
7249 | case M_COP1: | |
7250 | s = "c1"; | |
7251 | goto copz; | |
7252 | case M_COP2: | |
7253 | s = "c2"; | |
7254 | goto copz; | |
7255 | case M_COP3: | |
7256 | s = "c3"; | |
7257 | copz: | |
b19e8a9b AN |
7258 | if (NO_ISA_COP (mips_opts.arch) |
7259 | && (ip->insn_mo->pinfo2 & INSN2_M_FP_S) == 0) | |
7260 | { | |
7261 | as_bad (_("opcode not supported on this processor: %s"), | |
7262 | mips_cpu_info_from_arch (mips_opts.arch)->name); | |
7263 | break; | |
7264 | } | |
7265 | ||
252b5132 RH |
7266 | /* For now we just do C (same as Cz). The parameter will be |
7267 | stored in insn_opcode by mips_ip. */ | |
67c0d1eb | 7268 | macro_build (NULL, s, "C", ip->insn_opcode); |
8fc2e39e | 7269 | break; |
252b5132 | 7270 | |
ea1fb5dc | 7271 | case M_MOVE: |
67c0d1eb | 7272 | move_register (dreg, sreg); |
8fc2e39e | 7273 | break; |
ea1fb5dc | 7274 | |
252b5132 RH |
7275 | #ifdef LOSING_COMPILER |
7276 | default: | |
7277 | /* Try and see if this is a new itbl instruction. | |
7278 | This code builds table entries out of the macros in mip_opcodes. | |
7279 | FIXME: For now we just assemble the expression and pass it's | |
7280 | value along as a 32-bit immediate. | |
bdaaa2e1 | 7281 | We may want to have the assembler assemble this value, |
252b5132 RH |
7282 | so that we gain the assembler's knowledge of delay slots, |
7283 | symbols, etc. | |
7284 | Would it be more efficient to use mask (id) here? */ | |
bdaaa2e1 | 7285 | if (itbl_have_entries |
252b5132 | 7286 | && (immed_expr = itbl_assemble (ip->insn_mo->name, ""))) |
beae10d5 | 7287 | { |
252b5132 RH |
7288 | s = ip->insn_mo->name; |
7289 | s2 = "cop3"; | |
7290 | coproc = ITBL_DECODE_PNUM (immed_expr);; | |
67c0d1eb | 7291 | macro_build (&immed_expr, s, "C"); |
8fc2e39e | 7292 | break; |
beae10d5 | 7293 | } |
252b5132 | 7294 | macro2 (ip); |
8fc2e39e | 7295 | break; |
252b5132 | 7296 | } |
741fe287 | 7297 | if (!mips_opts.at && used_at) |
8fc2e39e | 7298 | as_bad (_("Macro used $at after \".set noat\"")); |
252b5132 | 7299 | } |
bdaaa2e1 | 7300 | |
252b5132 | 7301 | static void |
17a2f251 | 7302 | macro2 (struct mips_cl_insn *ip) |
252b5132 | 7303 | { |
741fe287 MR |
7304 | unsigned int treg, sreg, dreg, breg; |
7305 | unsigned int tempreg; | |
252b5132 | 7306 | int mask; |
252b5132 RH |
7307 | int used_at; |
7308 | expressionS expr1; | |
7309 | const char *s; | |
7310 | const char *s2; | |
7311 | const char *fmt; | |
7312 | int likely = 0; | |
7313 | int dbl = 0; | |
7314 | int coproc = 0; | |
7315 | int lr = 0; | |
7316 | int imm = 0; | |
7317 | int off; | |
7318 | offsetT maxnum; | |
7319 | bfd_reloc_code_real_type r; | |
bdaaa2e1 | 7320 | |
252b5132 RH |
7321 | treg = (ip->insn_opcode >> 16) & 0x1f; |
7322 | dreg = (ip->insn_opcode >> 11) & 0x1f; | |
7323 | sreg = breg = (ip->insn_opcode >> 21) & 0x1f; | |
7324 | mask = ip->insn_mo->mask; | |
bdaaa2e1 | 7325 | |
252b5132 RH |
7326 | expr1.X_op = O_constant; |
7327 | expr1.X_op_symbol = NULL; | |
7328 | expr1.X_add_symbol = NULL; | |
7329 | expr1.X_add_number = 1; | |
bdaaa2e1 | 7330 | |
252b5132 RH |
7331 | switch (mask) |
7332 | { | |
7333 | #endif /* LOSING_COMPILER */ | |
7334 | ||
7335 | case M_DMUL: | |
7336 | dbl = 1; | |
7337 | case M_MUL: | |
67c0d1eb RS |
7338 | macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", sreg, treg); |
7339 | macro_build (NULL, "mflo", "d", dreg); | |
8fc2e39e | 7340 | break; |
252b5132 RH |
7341 | |
7342 | case M_DMUL_I: | |
7343 | dbl = 1; | |
7344 | case M_MUL_I: | |
7345 | /* The MIPS assembler some times generates shifts and adds. I'm | |
7346 | not trying to be that fancy. GCC should do this for us | |
7347 | anyway. */ | |
8fc2e39e | 7348 | used_at = 1; |
67c0d1eb RS |
7349 | load_register (AT, &imm_expr, dbl); |
7350 | macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, AT); | |
7351 | macro_build (NULL, "mflo", "d", dreg); | |
252b5132 RH |
7352 | break; |
7353 | ||
7354 | case M_DMULO_I: | |
7355 | dbl = 1; | |
7356 | case M_MULO_I: | |
7357 | imm = 1; | |
7358 | goto do_mulo; | |
7359 | ||
7360 | case M_DMULO: | |
7361 | dbl = 1; | |
7362 | case M_MULO: | |
7363 | do_mulo: | |
7d10b47d | 7364 | start_noreorder (); |
8fc2e39e | 7365 | used_at = 1; |
252b5132 | 7366 | if (imm) |
67c0d1eb RS |
7367 | load_register (AT, &imm_expr, dbl); |
7368 | macro_build (NULL, dbl ? "dmult" : "mult", "s,t", sreg, imm ? AT : treg); | |
7369 | macro_build (NULL, "mflo", "d", dreg); | |
7370 | macro_build (NULL, dbl ? "dsra32" : "sra", "d,w,<", dreg, dreg, RA); | |
7371 | macro_build (NULL, "mfhi", "d", AT); | |
252b5132 | 7372 | if (mips_trap) |
67c0d1eb | 7373 | macro_build (NULL, "tne", "s,t,q", dreg, AT, 6); |
252b5132 RH |
7374 | else |
7375 | { | |
7376 | expr1.X_add_number = 8; | |
67c0d1eb RS |
7377 | macro_build (&expr1, "beq", "s,t,p", dreg, AT); |
7378 | macro_build (NULL, "nop", "", 0); | |
7379 | macro_build (NULL, "break", "c", 6); | |
252b5132 | 7380 | } |
7d10b47d | 7381 | end_noreorder (); |
67c0d1eb | 7382 | macro_build (NULL, "mflo", "d", dreg); |
252b5132 RH |
7383 | break; |
7384 | ||
7385 | case M_DMULOU_I: | |
7386 | dbl = 1; | |
7387 | case M_MULOU_I: | |
7388 | imm = 1; | |
7389 | goto do_mulou; | |
7390 | ||
7391 | case M_DMULOU: | |
7392 | dbl = 1; | |
7393 | case M_MULOU: | |
7394 | do_mulou: | |
7d10b47d | 7395 | start_noreorder (); |
8fc2e39e | 7396 | used_at = 1; |
252b5132 | 7397 | if (imm) |
67c0d1eb RS |
7398 | load_register (AT, &imm_expr, dbl); |
7399 | macro_build (NULL, dbl ? "dmultu" : "multu", "s,t", | |
17a2f251 | 7400 | sreg, imm ? AT : treg); |
67c0d1eb RS |
7401 | macro_build (NULL, "mfhi", "d", AT); |
7402 | macro_build (NULL, "mflo", "d", dreg); | |
252b5132 | 7403 | if (mips_trap) |
67c0d1eb | 7404 | macro_build (NULL, "tne", "s,t,q", AT, 0, 6); |
252b5132 RH |
7405 | else |
7406 | { | |
7407 | expr1.X_add_number = 8; | |
67c0d1eb RS |
7408 | macro_build (&expr1, "beq", "s,t,p", AT, 0); |
7409 | macro_build (NULL, "nop", "", 0); | |
7410 | macro_build (NULL, "break", "c", 6); | |
252b5132 | 7411 | } |
7d10b47d | 7412 | end_noreorder (); |
252b5132 RH |
7413 | break; |
7414 | ||
771c7ce4 | 7415 | case M_DROL: |
fef14a42 | 7416 | if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) |
82dd0097 CD |
7417 | { |
7418 | if (dreg == sreg) | |
7419 | { | |
7420 | tempreg = AT; | |
7421 | used_at = 1; | |
7422 | } | |
7423 | else | |
7424 | { | |
7425 | tempreg = dreg; | |
82dd0097 | 7426 | } |
67c0d1eb RS |
7427 | macro_build (NULL, "dnegu", "d,w", tempreg, treg); |
7428 | macro_build (NULL, "drorv", "d,t,s", dreg, sreg, tempreg); | |
8fc2e39e | 7429 | break; |
82dd0097 | 7430 | } |
8fc2e39e | 7431 | used_at = 1; |
67c0d1eb RS |
7432 | macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg); |
7433 | macro_build (NULL, "dsrlv", "d,t,s", AT, sreg, AT); | |
7434 | macro_build (NULL, "dsllv", "d,t,s", dreg, sreg, treg); | |
7435 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 TS |
7436 | break; |
7437 | ||
252b5132 | 7438 | case M_ROL: |
fef14a42 | 7439 | if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch)) |
82dd0097 CD |
7440 | { |
7441 | if (dreg == sreg) | |
7442 | { | |
7443 | tempreg = AT; | |
7444 | used_at = 1; | |
7445 | } | |
7446 | else | |
7447 | { | |
7448 | tempreg = dreg; | |
82dd0097 | 7449 | } |
67c0d1eb RS |
7450 | macro_build (NULL, "negu", "d,w", tempreg, treg); |
7451 | macro_build (NULL, "rorv", "d,t,s", dreg, sreg, tempreg); | |
8fc2e39e | 7452 | break; |
82dd0097 | 7453 | } |
8fc2e39e | 7454 | used_at = 1; |
67c0d1eb RS |
7455 | macro_build (NULL, "subu", "d,v,t", AT, 0, treg); |
7456 | macro_build (NULL, "srlv", "d,t,s", AT, sreg, AT); | |
7457 | macro_build (NULL, "sllv", "d,t,s", dreg, sreg, treg); | |
7458 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
252b5132 RH |
7459 | break; |
7460 | ||
771c7ce4 TS |
7461 | case M_DROL_I: |
7462 | { | |
7463 | unsigned int rot; | |
82dd0097 | 7464 | char *l, *r; |
771c7ce4 TS |
7465 | |
7466 | if (imm_expr.X_op != O_constant) | |
82dd0097 | 7467 | as_bad (_("Improper rotate count")); |
771c7ce4 | 7468 | rot = imm_expr.X_add_number & 0x3f; |
fef14a42 | 7469 | if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) |
60b63b72 RS |
7470 | { |
7471 | rot = (64 - rot) & 0x3f; | |
7472 | if (rot >= 32) | |
67c0d1eb | 7473 | macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32); |
60b63b72 | 7474 | else |
67c0d1eb | 7475 | macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot); |
8fc2e39e | 7476 | break; |
60b63b72 | 7477 | } |
483fc7cd | 7478 | if (rot == 0) |
483fc7cd | 7479 | { |
67c0d1eb | 7480 | macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0); |
8fc2e39e | 7481 | break; |
483fc7cd | 7482 | } |
82dd0097 CD |
7483 | l = (rot < 0x20) ? "dsll" : "dsll32"; |
7484 | r = ((0x40 - rot) < 0x20) ? "dsrl" : "dsrl32"; | |
7485 | rot &= 0x1f; | |
8fc2e39e | 7486 | used_at = 1; |
67c0d1eb RS |
7487 | macro_build (NULL, l, "d,w,<", AT, sreg, rot); |
7488 | macro_build (NULL, r, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f); | |
7489 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 TS |
7490 | } |
7491 | break; | |
7492 | ||
252b5132 | 7493 | case M_ROL_I: |
771c7ce4 TS |
7494 | { |
7495 | unsigned int rot; | |
7496 | ||
7497 | if (imm_expr.X_op != O_constant) | |
82dd0097 | 7498 | as_bad (_("Improper rotate count")); |
771c7ce4 | 7499 | rot = imm_expr.X_add_number & 0x1f; |
fef14a42 | 7500 | if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch)) |
60b63b72 | 7501 | { |
67c0d1eb | 7502 | macro_build (NULL, "ror", "d,w,<", dreg, sreg, (32 - rot) & 0x1f); |
8fc2e39e | 7503 | break; |
60b63b72 | 7504 | } |
483fc7cd | 7505 | if (rot == 0) |
483fc7cd | 7506 | { |
67c0d1eb | 7507 | macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0); |
8fc2e39e | 7508 | break; |
483fc7cd | 7509 | } |
8fc2e39e | 7510 | used_at = 1; |
67c0d1eb RS |
7511 | macro_build (NULL, "sll", "d,w,<", AT, sreg, rot); |
7512 | macro_build (NULL, "srl", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f); | |
7513 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 TS |
7514 | } |
7515 | break; | |
7516 | ||
7517 | case M_DROR: | |
fef14a42 | 7518 | if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) |
82dd0097 | 7519 | { |
67c0d1eb | 7520 | macro_build (NULL, "drorv", "d,t,s", dreg, sreg, treg); |
8fc2e39e | 7521 | break; |
82dd0097 | 7522 | } |
8fc2e39e | 7523 | used_at = 1; |
67c0d1eb RS |
7524 | macro_build (NULL, "dsubu", "d,v,t", AT, 0, treg); |
7525 | macro_build (NULL, "dsllv", "d,t,s", AT, sreg, AT); | |
7526 | macro_build (NULL, "dsrlv", "d,t,s", dreg, sreg, treg); | |
7527 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
252b5132 RH |
7528 | break; |
7529 | ||
7530 | case M_ROR: | |
fef14a42 | 7531 | if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch)) |
82dd0097 | 7532 | { |
67c0d1eb | 7533 | macro_build (NULL, "rorv", "d,t,s", dreg, sreg, treg); |
8fc2e39e | 7534 | break; |
82dd0097 | 7535 | } |
8fc2e39e | 7536 | used_at = 1; |
67c0d1eb RS |
7537 | macro_build (NULL, "subu", "d,v,t", AT, 0, treg); |
7538 | macro_build (NULL, "sllv", "d,t,s", AT, sreg, AT); | |
7539 | macro_build (NULL, "srlv", "d,t,s", dreg, sreg, treg); | |
7540 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
252b5132 RH |
7541 | break; |
7542 | ||
771c7ce4 TS |
7543 | case M_DROR_I: |
7544 | { | |
7545 | unsigned int rot; | |
82dd0097 | 7546 | char *l, *r; |
771c7ce4 TS |
7547 | |
7548 | if (imm_expr.X_op != O_constant) | |
82dd0097 | 7549 | as_bad (_("Improper rotate count")); |
771c7ce4 | 7550 | rot = imm_expr.X_add_number & 0x3f; |
fef14a42 | 7551 | if (ISA_HAS_DROR (mips_opts.isa) || CPU_HAS_DROR (mips_opts.arch)) |
82dd0097 CD |
7552 | { |
7553 | if (rot >= 32) | |
67c0d1eb | 7554 | macro_build (NULL, "dror32", "d,w,<", dreg, sreg, rot - 32); |
82dd0097 | 7555 | else |
67c0d1eb | 7556 | macro_build (NULL, "dror", "d,w,<", dreg, sreg, rot); |
8fc2e39e | 7557 | break; |
82dd0097 | 7558 | } |
483fc7cd | 7559 | if (rot == 0) |
483fc7cd | 7560 | { |
67c0d1eb | 7561 | macro_build (NULL, "dsrl", "d,w,<", dreg, sreg, 0); |
8fc2e39e | 7562 | break; |
483fc7cd | 7563 | } |
82dd0097 CD |
7564 | r = (rot < 0x20) ? "dsrl" : "dsrl32"; |
7565 | l = ((0x40 - rot) < 0x20) ? "dsll" : "dsll32"; | |
7566 | rot &= 0x1f; | |
8fc2e39e | 7567 | used_at = 1; |
67c0d1eb RS |
7568 | macro_build (NULL, r, "d,w,<", AT, sreg, rot); |
7569 | macro_build (NULL, l, "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f); | |
7570 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 TS |
7571 | } |
7572 | break; | |
7573 | ||
252b5132 | 7574 | case M_ROR_I: |
771c7ce4 TS |
7575 | { |
7576 | unsigned int rot; | |
7577 | ||
7578 | if (imm_expr.X_op != O_constant) | |
82dd0097 | 7579 | as_bad (_("Improper rotate count")); |
771c7ce4 | 7580 | rot = imm_expr.X_add_number & 0x1f; |
fef14a42 | 7581 | if (ISA_HAS_ROR (mips_opts.isa) || CPU_HAS_ROR (mips_opts.arch)) |
82dd0097 | 7582 | { |
67c0d1eb | 7583 | macro_build (NULL, "ror", "d,w,<", dreg, sreg, rot); |
8fc2e39e | 7584 | break; |
82dd0097 | 7585 | } |
483fc7cd | 7586 | if (rot == 0) |
483fc7cd | 7587 | { |
67c0d1eb | 7588 | macro_build (NULL, "srl", "d,w,<", dreg, sreg, 0); |
8fc2e39e | 7589 | break; |
483fc7cd | 7590 | } |
8fc2e39e | 7591 | used_at = 1; |
67c0d1eb RS |
7592 | macro_build (NULL, "srl", "d,w,<", AT, sreg, rot); |
7593 | macro_build (NULL, "sll", "d,w,<", dreg, sreg, (0x20 - rot) & 0x1f); | |
7594 | macro_build (NULL, "or", "d,v,t", dreg, dreg, AT); | |
771c7ce4 | 7595 | } |
252b5132 RH |
7596 | break; |
7597 | ||
7598 | case M_S_DOB: | |
e7af610e | 7599 | assert (mips_opts.isa == ISA_MIPS1); |
252b5132 RH |
7600 | /* Even on a big endian machine $fn comes before $fn+1. We have |
7601 | to adjust when storing to memory. */ | |
67c0d1eb RS |
7602 | macro_build (&offset_expr, "swc1", "T,o(b)", |
7603 | target_big_endian ? treg + 1 : treg, BFD_RELOC_LO16, breg); | |
252b5132 | 7604 | offset_expr.X_add_number += 4; |
67c0d1eb RS |
7605 | macro_build (&offset_expr, "swc1", "T,o(b)", |
7606 | target_big_endian ? treg : treg + 1, BFD_RELOC_LO16, breg); | |
8fc2e39e | 7607 | break; |
252b5132 RH |
7608 | |
7609 | case M_SEQ: | |
7610 | if (sreg == 0) | |
67c0d1eb | 7611 | macro_build (&expr1, "sltiu", "t,r,j", dreg, treg, BFD_RELOC_LO16); |
252b5132 | 7612 | else if (treg == 0) |
67c0d1eb | 7613 | macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7614 | else |
7615 | { | |
67c0d1eb RS |
7616 | macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg); |
7617 | macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16); | |
252b5132 | 7618 | } |
8fc2e39e | 7619 | break; |
252b5132 RH |
7620 | |
7621 | case M_SEQ_I: | |
7622 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
7623 | { | |
67c0d1eb | 7624 | macro_build (&expr1, "sltiu", "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
8fc2e39e | 7625 | break; |
252b5132 RH |
7626 | } |
7627 | if (sreg == 0) | |
7628 | { | |
7629 | as_warn (_("Instruction %s: result is always false"), | |
7630 | ip->insn_mo->name); | |
67c0d1eb | 7631 | move_register (dreg, 0); |
8fc2e39e | 7632 | break; |
252b5132 | 7633 | } |
dd3cbb7e NC |
7634 | if (CPU_HAS_SEQ (mips_opts.arch) |
7635 | && -512 <= imm_expr.X_add_number | |
7636 | && imm_expr.X_add_number < 512) | |
7637 | { | |
7638 | macro_build (NULL, "seqi", "t,r,+Q", dreg, sreg, | |
7639 | imm_expr.X_add_number); | |
7640 | break; | |
7641 | } | |
252b5132 RH |
7642 | if (imm_expr.X_op == O_constant |
7643 | && imm_expr.X_add_number >= 0 | |
7644 | && imm_expr.X_add_number < 0x10000) | |
7645 | { | |
67c0d1eb | 7646 | macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7647 | } |
7648 | else if (imm_expr.X_op == O_constant | |
7649 | && imm_expr.X_add_number > -0x8000 | |
7650 | && imm_expr.X_add_number < 0) | |
7651 | { | |
7652 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 7653 | macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu", |
17a2f251 | 7654 | "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
252b5132 | 7655 | } |
dd3cbb7e NC |
7656 | else if (CPU_HAS_SEQ (mips_opts.arch)) |
7657 | { | |
7658 | used_at = 1; | |
7659 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); | |
7660 | macro_build (NULL, "seq", "d,v,t", dreg, sreg, AT); | |
7661 | break; | |
7662 | } | |
252b5132 RH |
7663 | else |
7664 | { | |
67c0d1eb RS |
7665 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7666 | macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7667 | used_at = 1; |
7668 | } | |
67c0d1eb | 7669 | macro_build (&expr1, "sltiu", "t,r,j", dreg, dreg, BFD_RELOC_LO16); |
8fc2e39e | 7670 | break; |
252b5132 RH |
7671 | |
7672 | case M_SGE: /* sreg >= treg <==> not (sreg < treg) */ | |
7673 | s = "slt"; | |
7674 | goto sge; | |
7675 | case M_SGEU: | |
7676 | s = "sltu"; | |
7677 | sge: | |
67c0d1eb RS |
7678 | macro_build (NULL, s, "d,v,t", dreg, sreg, treg); |
7679 | macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16); | |
8fc2e39e | 7680 | break; |
252b5132 RH |
7681 | |
7682 | case M_SGE_I: /* sreg >= I <==> not (sreg < I) */ | |
7683 | case M_SGEU_I: | |
7684 | if (imm_expr.X_op == O_constant | |
7685 | && imm_expr.X_add_number >= -0x8000 | |
7686 | && imm_expr.X_add_number < 0x8000) | |
7687 | { | |
67c0d1eb RS |
7688 | macro_build (&imm_expr, mask == M_SGE_I ? "slti" : "sltiu", "t,r,j", |
7689 | dreg, sreg, BFD_RELOC_LO16); | |
252b5132 RH |
7690 | } |
7691 | else | |
7692 | { | |
67c0d1eb RS |
7693 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7694 | macro_build (NULL, mask == M_SGE_I ? "slt" : "sltu", "d,v,t", | |
7695 | dreg, sreg, AT); | |
252b5132 RH |
7696 | used_at = 1; |
7697 | } | |
67c0d1eb | 7698 | macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16); |
8fc2e39e | 7699 | break; |
252b5132 RH |
7700 | |
7701 | case M_SGT: /* sreg > treg <==> treg < sreg */ | |
7702 | s = "slt"; | |
7703 | goto sgt; | |
7704 | case M_SGTU: | |
7705 | s = "sltu"; | |
7706 | sgt: | |
67c0d1eb | 7707 | macro_build (NULL, s, "d,v,t", dreg, treg, sreg); |
8fc2e39e | 7708 | break; |
252b5132 RH |
7709 | |
7710 | case M_SGT_I: /* sreg > I <==> I < sreg */ | |
7711 | s = "slt"; | |
7712 | goto sgti; | |
7713 | case M_SGTU_I: | |
7714 | s = "sltu"; | |
7715 | sgti: | |
8fc2e39e | 7716 | used_at = 1; |
67c0d1eb RS |
7717 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7718 | macro_build (NULL, s, "d,v,t", dreg, AT, sreg); | |
252b5132 RH |
7719 | break; |
7720 | ||
2396cfb9 | 7721 | case M_SLE: /* sreg <= treg <==> treg >= sreg <==> not (treg < sreg) */ |
252b5132 RH |
7722 | s = "slt"; |
7723 | goto sle; | |
7724 | case M_SLEU: | |
7725 | s = "sltu"; | |
7726 | sle: | |
67c0d1eb RS |
7727 | macro_build (NULL, s, "d,v,t", dreg, treg, sreg); |
7728 | macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16); | |
8fc2e39e | 7729 | break; |
252b5132 | 7730 | |
2396cfb9 | 7731 | case M_SLE_I: /* sreg <= I <==> I >= sreg <==> not (I < sreg) */ |
252b5132 RH |
7732 | s = "slt"; |
7733 | goto slei; | |
7734 | case M_SLEU_I: | |
7735 | s = "sltu"; | |
7736 | slei: | |
8fc2e39e | 7737 | used_at = 1; |
67c0d1eb RS |
7738 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7739 | macro_build (NULL, s, "d,v,t", dreg, AT, sreg); | |
7740 | macro_build (&expr1, "xori", "t,r,i", dreg, dreg, BFD_RELOC_LO16); | |
252b5132 RH |
7741 | break; |
7742 | ||
7743 | case M_SLT_I: | |
7744 | if (imm_expr.X_op == O_constant | |
7745 | && imm_expr.X_add_number >= -0x8000 | |
7746 | && imm_expr.X_add_number < 0x8000) | |
7747 | { | |
67c0d1eb | 7748 | macro_build (&imm_expr, "slti", "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
8fc2e39e | 7749 | break; |
252b5132 | 7750 | } |
8fc2e39e | 7751 | used_at = 1; |
67c0d1eb RS |
7752 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7753 | macro_build (NULL, "slt", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7754 | break; |
7755 | ||
7756 | case M_SLTU_I: | |
7757 | if (imm_expr.X_op == O_constant | |
7758 | && imm_expr.X_add_number >= -0x8000 | |
7759 | && imm_expr.X_add_number < 0x8000) | |
7760 | { | |
67c0d1eb | 7761 | macro_build (&imm_expr, "sltiu", "t,r,j", dreg, sreg, |
17a2f251 | 7762 | BFD_RELOC_LO16); |
8fc2e39e | 7763 | break; |
252b5132 | 7764 | } |
8fc2e39e | 7765 | used_at = 1; |
67c0d1eb RS |
7766 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7767 | macro_build (NULL, "sltu", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7768 | break; |
7769 | ||
7770 | case M_SNE: | |
7771 | if (sreg == 0) | |
67c0d1eb | 7772 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, treg); |
252b5132 | 7773 | else if (treg == 0) |
67c0d1eb | 7774 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg); |
252b5132 RH |
7775 | else |
7776 | { | |
67c0d1eb RS |
7777 | macro_build (NULL, "xor", "d,v,t", dreg, sreg, treg); |
7778 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg); | |
252b5132 | 7779 | } |
8fc2e39e | 7780 | break; |
252b5132 RH |
7781 | |
7782 | case M_SNE_I: | |
7783 | if (imm_expr.X_op == O_constant && imm_expr.X_add_number == 0) | |
7784 | { | |
67c0d1eb | 7785 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, sreg); |
8fc2e39e | 7786 | break; |
252b5132 RH |
7787 | } |
7788 | if (sreg == 0) | |
7789 | { | |
7790 | as_warn (_("Instruction %s: result is always true"), | |
7791 | ip->insn_mo->name); | |
67c0d1eb RS |
7792 | macro_build (&expr1, HAVE_32BIT_GPRS ? "addiu" : "daddiu", "t,r,j", |
7793 | dreg, 0, BFD_RELOC_LO16); | |
8fc2e39e | 7794 | break; |
252b5132 | 7795 | } |
dd3cbb7e NC |
7796 | if (CPU_HAS_SEQ (mips_opts.arch) |
7797 | && -512 <= imm_expr.X_add_number | |
7798 | && imm_expr.X_add_number < 512) | |
7799 | { | |
7800 | macro_build (NULL, "snei", "t,r,+Q", dreg, sreg, | |
7801 | imm_expr.X_add_number); | |
7802 | break; | |
7803 | } | |
252b5132 RH |
7804 | if (imm_expr.X_op == O_constant |
7805 | && imm_expr.X_add_number >= 0 | |
7806 | && imm_expr.X_add_number < 0x10000) | |
7807 | { | |
67c0d1eb | 7808 | macro_build (&imm_expr, "xori", "t,r,i", dreg, sreg, BFD_RELOC_LO16); |
252b5132 RH |
7809 | } |
7810 | else if (imm_expr.X_op == O_constant | |
7811 | && imm_expr.X_add_number > -0x8000 | |
7812 | && imm_expr.X_add_number < 0) | |
7813 | { | |
7814 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 7815 | macro_build (&imm_expr, HAVE_32BIT_GPRS ? "addiu" : "daddiu", |
17a2f251 | 7816 | "t,r,j", dreg, sreg, BFD_RELOC_LO16); |
252b5132 | 7817 | } |
dd3cbb7e NC |
7818 | else if (CPU_HAS_SEQ (mips_opts.arch)) |
7819 | { | |
7820 | used_at = 1; | |
7821 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); | |
7822 | macro_build (NULL, "sne", "d,v,t", dreg, sreg, AT); | |
7823 | break; | |
7824 | } | |
252b5132 RH |
7825 | else |
7826 | { | |
67c0d1eb RS |
7827 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7828 | macro_build (NULL, "xor", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7829 | used_at = 1; |
7830 | } | |
67c0d1eb | 7831 | macro_build (NULL, "sltu", "d,v,t", dreg, 0, dreg); |
8fc2e39e | 7832 | break; |
252b5132 RH |
7833 | |
7834 | case M_DSUB_I: | |
7835 | dbl = 1; | |
7836 | case M_SUB_I: | |
7837 | if (imm_expr.X_op == O_constant | |
7838 | && imm_expr.X_add_number > -0x8000 | |
7839 | && imm_expr.X_add_number <= 0x8000) | |
7840 | { | |
7841 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb RS |
7842 | macro_build (&imm_expr, dbl ? "daddi" : "addi", "t,r,j", |
7843 | dreg, sreg, BFD_RELOC_LO16); | |
8fc2e39e | 7844 | break; |
252b5132 | 7845 | } |
8fc2e39e | 7846 | used_at = 1; |
67c0d1eb RS |
7847 | load_register (AT, &imm_expr, dbl); |
7848 | macro_build (NULL, dbl ? "dsub" : "sub", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7849 | break; |
7850 | ||
7851 | case M_DSUBU_I: | |
7852 | dbl = 1; | |
7853 | case M_SUBU_I: | |
7854 | if (imm_expr.X_op == O_constant | |
7855 | && imm_expr.X_add_number > -0x8000 | |
7856 | && imm_expr.X_add_number <= 0x8000) | |
7857 | { | |
7858 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb RS |
7859 | macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "t,r,j", |
7860 | dreg, sreg, BFD_RELOC_LO16); | |
8fc2e39e | 7861 | break; |
252b5132 | 7862 | } |
8fc2e39e | 7863 | used_at = 1; |
67c0d1eb RS |
7864 | load_register (AT, &imm_expr, dbl); |
7865 | macro_build (NULL, dbl ? "dsubu" : "subu", "d,v,t", dreg, sreg, AT); | |
252b5132 RH |
7866 | break; |
7867 | ||
7868 | case M_TEQ_I: | |
7869 | s = "teq"; | |
7870 | goto trap; | |
7871 | case M_TGE_I: | |
7872 | s = "tge"; | |
7873 | goto trap; | |
7874 | case M_TGEU_I: | |
7875 | s = "tgeu"; | |
7876 | goto trap; | |
7877 | case M_TLT_I: | |
7878 | s = "tlt"; | |
7879 | goto trap; | |
7880 | case M_TLTU_I: | |
7881 | s = "tltu"; | |
7882 | goto trap; | |
7883 | case M_TNE_I: | |
7884 | s = "tne"; | |
7885 | trap: | |
8fc2e39e | 7886 | used_at = 1; |
67c0d1eb RS |
7887 | load_register (AT, &imm_expr, HAVE_64BIT_GPRS); |
7888 | macro_build (NULL, s, "s,t", sreg, AT); | |
252b5132 RH |
7889 | break; |
7890 | ||
252b5132 | 7891 | case M_TRUNCWS: |
43841e91 | 7892 | case M_TRUNCWD: |
e7af610e | 7893 | assert (mips_opts.isa == ISA_MIPS1); |
8fc2e39e | 7894 | used_at = 1; |
252b5132 RH |
7895 | sreg = (ip->insn_opcode >> 11) & 0x1f; /* floating reg */ |
7896 | dreg = (ip->insn_opcode >> 06) & 0x1f; /* floating reg */ | |
7897 | ||
7898 | /* | |
7899 | * Is the double cfc1 instruction a bug in the mips assembler; | |
7900 | * or is there a reason for it? | |
7901 | */ | |
7d10b47d | 7902 | start_noreorder (); |
67c0d1eb RS |
7903 | macro_build (NULL, "cfc1", "t,G", treg, RA); |
7904 | macro_build (NULL, "cfc1", "t,G", treg, RA); | |
7905 | macro_build (NULL, "nop", ""); | |
252b5132 | 7906 | expr1.X_add_number = 3; |
67c0d1eb | 7907 | macro_build (&expr1, "ori", "t,r,i", AT, treg, BFD_RELOC_LO16); |
252b5132 | 7908 | expr1.X_add_number = 2; |
67c0d1eb RS |
7909 | macro_build (&expr1, "xori", "t,r,i", AT, AT, BFD_RELOC_LO16); |
7910 | macro_build (NULL, "ctc1", "t,G", AT, RA); | |
7911 | macro_build (NULL, "nop", ""); | |
7912 | macro_build (NULL, mask == M_TRUNCWD ? "cvt.w.d" : "cvt.w.s", "D,S", | |
7913 | dreg, sreg); | |
7914 | macro_build (NULL, "ctc1", "t,G", treg, RA); | |
7915 | macro_build (NULL, "nop", ""); | |
7d10b47d | 7916 | end_noreorder (); |
252b5132 RH |
7917 | break; |
7918 | ||
7919 | case M_ULH: | |
7920 | s = "lb"; | |
7921 | goto ulh; | |
7922 | case M_ULHU: | |
7923 | s = "lbu"; | |
7924 | ulh: | |
8fc2e39e | 7925 | used_at = 1; |
252b5132 RH |
7926 | if (offset_expr.X_add_number >= 0x7fff) |
7927 | as_bad (_("operand overflow")); | |
252b5132 | 7928 | if (! target_big_endian) |
f9419b05 | 7929 | ++offset_expr.X_add_number; |
67c0d1eb | 7930 | macro_build (&offset_expr, s, "t,o(b)", AT, BFD_RELOC_LO16, breg); |
252b5132 | 7931 | if (! target_big_endian) |
f9419b05 | 7932 | --offset_expr.X_add_number; |
252b5132 | 7933 | else |
f9419b05 | 7934 | ++offset_expr.X_add_number; |
67c0d1eb RS |
7935 | macro_build (&offset_expr, "lbu", "t,o(b)", treg, BFD_RELOC_LO16, breg); |
7936 | macro_build (NULL, "sll", "d,w,<", AT, AT, 8); | |
7937 | macro_build (NULL, "or", "d,v,t", treg, treg, AT); | |
252b5132 RH |
7938 | break; |
7939 | ||
7940 | case M_ULD: | |
7941 | s = "ldl"; | |
7942 | s2 = "ldr"; | |
7943 | off = 7; | |
7944 | goto ulw; | |
7945 | case M_ULW: | |
7946 | s = "lwl"; | |
7947 | s2 = "lwr"; | |
7948 | off = 3; | |
7949 | ulw: | |
7950 | if (offset_expr.X_add_number >= 0x8000 - off) | |
7951 | as_bad (_("operand overflow")); | |
af22f5b2 CD |
7952 | if (treg != breg) |
7953 | tempreg = treg; | |
7954 | else | |
8fc2e39e TS |
7955 | { |
7956 | used_at = 1; | |
7957 | tempreg = AT; | |
7958 | } | |
252b5132 RH |
7959 | if (! target_big_endian) |
7960 | offset_expr.X_add_number += off; | |
67c0d1eb | 7961 | macro_build (&offset_expr, s, "t,o(b)", tempreg, BFD_RELOC_LO16, breg); |
252b5132 RH |
7962 | if (! target_big_endian) |
7963 | offset_expr.X_add_number -= off; | |
7964 | else | |
7965 | offset_expr.X_add_number += off; | |
67c0d1eb | 7966 | macro_build (&offset_expr, s2, "t,o(b)", tempreg, BFD_RELOC_LO16, breg); |
af22f5b2 CD |
7967 | |
7968 | /* If necessary, move the result in tempreg the final destination. */ | |
7969 | if (treg == tempreg) | |
8fc2e39e | 7970 | break; |
af22f5b2 | 7971 | /* Protect second load's delay slot. */ |
017315e4 | 7972 | load_delay_nop (); |
67c0d1eb | 7973 | move_register (treg, tempreg); |
af22f5b2 | 7974 | break; |
252b5132 RH |
7975 | |
7976 | case M_ULD_A: | |
7977 | s = "ldl"; | |
7978 | s2 = "ldr"; | |
7979 | off = 7; | |
7980 | goto ulwa; | |
7981 | case M_ULW_A: | |
7982 | s = "lwl"; | |
7983 | s2 = "lwr"; | |
7984 | off = 3; | |
7985 | ulwa: | |
d6bc6245 | 7986 | used_at = 1; |
67c0d1eb | 7987 | load_address (AT, &offset_expr, &used_at); |
252b5132 | 7988 | if (breg != 0) |
67c0d1eb | 7989 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); |
252b5132 RH |
7990 | if (! target_big_endian) |
7991 | expr1.X_add_number = off; | |
7992 | else | |
7993 | expr1.X_add_number = 0; | |
67c0d1eb | 7994 | macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
7995 | if (! target_big_endian) |
7996 | expr1.X_add_number = 0; | |
7997 | else | |
7998 | expr1.X_add_number = off; | |
67c0d1eb | 7999 | macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
8000 | break; |
8001 | ||
8002 | case M_ULH_A: | |
8003 | case M_ULHU_A: | |
d6bc6245 | 8004 | used_at = 1; |
67c0d1eb | 8005 | load_address (AT, &offset_expr, &used_at); |
252b5132 | 8006 | if (breg != 0) |
67c0d1eb | 8007 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); |
252b5132 RH |
8008 | if (target_big_endian) |
8009 | expr1.X_add_number = 0; | |
67c0d1eb | 8010 | macro_build (&expr1, mask == M_ULH_A ? "lb" : "lbu", "t,o(b)", |
17a2f251 | 8011 | treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
8012 | if (target_big_endian) |
8013 | expr1.X_add_number = 1; | |
8014 | else | |
8015 | expr1.X_add_number = 0; | |
67c0d1eb RS |
8016 | macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT); |
8017 | macro_build (NULL, "sll", "d,w,<", treg, treg, 8); | |
8018 | macro_build (NULL, "or", "d,v,t", treg, treg, AT); | |
252b5132 RH |
8019 | break; |
8020 | ||
8021 | case M_USH: | |
8fc2e39e | 8022 | used_at = 1; |
252b5132 RH |
8023 | if (offset_expr.X_add_number >= 0x7fff) |
8024 | as_bad (_("operand overflow")); | |
8025 | if (target_big_endian) | |
f9419b05 | 8026 | ++offset_expr.X_add_number; |
67c0d1eb RS |
8027 | macro_build (&offset_expr, "sb", "t,o(b)", treg, BFD_RELOC_LO16, breg); |
8028 | macro_build (NULL, "srl", "d,w,<", AT, treg, 8); | |
252b5132 | 8029 | if (target_big_endian) |
f9419b05 | 8030 | --offset_expr.X_add_number; |
252b5132 | 8031 | else |
f9419b05 | 8032 | ++offset_expr.X_add_number; |
67c0d1eb | 8033 | macro_build (&offset_expr, "sb", "t,o(b)", AT, BFD_RELOC_LO16, breg); |
252b5132 RH |
8034 | break; |
8035 | ||
8036 | case M_USD: | |
8037 | s = "sdl"; | |
8038 | s2 = "sdr"; | |
8039 | off = 7; | |
8040 | goto usw; | |
8041 | case M_USW: | |
8042 | s = "swl"; | |
8043 | s2 = "swr"; | |
8044 | off = 3; | |
8045 | usw: | |
8046 | if (offset_expr.X_add_number >= 0x8000 - off) | |
8047 | as_bad (_("operand overflow")); | |
8048 | if (! target_big_endian) | |
8049 | offset_expr.X_add_number += off; | |
67c0d1eb | 8050 | macro_build (&offset_expr, s, "t,o(b)", treg, BFD_RELOC_LO16, breg); |
252b5132 RH |
8051 | if (! target_big_endian) |
8052 | offset_expr.X_add_number -= off; | |
8053 | else | |
8054 | offset_expr.X_add_number += off; | |
67c0d1eb | 8055 | macro_build (&offset_expr, s2, "t,o(b)", treg, BFD_RELOC_LO16, breg); |
8fc2e39e | 8056 | break; |
252b5132 RH |
8057 | |
8058 | case M_USD_A: | |
8059 | s = "sdl"; | |
8060 | s2 = "sdr"; | |
8061 | off = 7; | |
8062 | goto uswa; | |
8063 | case M_USW_A: | |
8064 | s = "swl"; | |
8065 | s2 = "swr"; | |
8066 | off = 3; | |
8067 | uswa: | |
d6bc6245 | 8068 | used_at = 1; |
67c0d1eb | 8069 | load_address (AT, &offset_expr, &used_at); |
252b5132 | 8070 | if (breg != 0) |
67c0d1eb | 8071 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); |
252b5132 RH |
8072 | if (! target_big_endian) |
8073 | expr1.X_add_number = off; | |
8074 | else | |
8075 | expr1.X_add_number = 0; | |
67c0d1eb | 8076 | macro_build (&expr1, s, "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
8077 | if (! target_big_endian) |
8078 | expr1.X_add_number = 0; | |
8079 | else | |
8080 | expr1.X_add_number = off; | |
67c0d1eb | 8081 | macro_build (&expr1, s2, "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
8082 | break; |
8083 | ||
8084 | case M_USH_A: | |
d6bc6245 | 8085 | used_at = 1; |
67c0d1eb | 8086 | load_address (AT, &offset_expr, &used_at); |
252b5132 | 8087 | if (breg != 0) |
67c0d1eb | 8088 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", AT, AT, breg); |
252b5132 RH |
8089 | if (! target_big_endian) |
8090 | expr1.X_add_number = 0; | |
67c0d1eb RS |
8091 | macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT); |
8092 | macro_build (NULL, "srl", "d,w,<", treg, treg, 8); | |
252b5132 RH |
8093 | if (! target_big_endian) |
8094 | expr1.X_add_number = 1; | |
8095 | else | |
8096 | expr1.X_add_number = 0; | |
67c0d1eb | 8097 | macro_build (&expr1, "sb", "t,o(b)", treg, BFD_RELOC_LO16, AT); |
252b5132 RH |
8098 | if (! target_big_endian) |
8099 | expr1.X_add_number = 0; | |
8100 | else | |
8101 | expr1.X_add_number = 1; | |
67c0d1eb RS |
8102 | macro_build (&expr1, "lbu", "t,o(b)", AT, BFD_RELOC_LO16, AT); |
8103 | macro_build (NULL, "sll", "d,w,<", treg, treg, 8); | |
8104 | macro_build (NULL, "or", "d,v,t", treg, treg, AT); | |
252b5132 RH |
8105 | break; |
8106 | ||
8107 | default: | |
8108 | /* FIXME: Check if this is one of the itbl macros, since they | |
bdaaa2e1 | 8109 | are added dynamically. */ |
252b5132 RH |
8110 | as_bad (_("Macro %s not implemented yet"), ip->insn_mo->name); |
8111 | break; | |
8112 | } | |
741fe287 | 8113 | if (!mips_opts.at && used_at) |
8fc2e39e | 8114 | as_bad (_("Macro used $at after \".set noat\"")); |
252b5132 RH |
8115 | } |
8116 | ||
8117 | /* Implement macros in mips16 mode. */ | |
8118 | ||
8119 | static void | |
17a2f251 | 8120 | mips16_macro (struct mips_cl_insn *ip) |
252b5132 RH |
8121 | { |
8122 | int mask; | |
8123 | int xreg, yreg, zreg, tmp; | |
252b5132 RH |
8124 | expressionS expr1; |
8125 | int dbl; | |
8126 | const char *s, *s2, *s3; | |
8127 | ||
8128 | mask = ip->insn_mo->mask; | |
8129 | ||
bf12938e RS |
8130 | xreg = MIPS16_EXTRACT_OPERAND (RX, *ip); |
8131 | yreg = MIPS16_EXTRACT_OPERAND (RY, *ip); | |
8132 | zreg = MIPS16_EXTRACT_OPERAND (RZ, *ip); | |
252b5132 | 8133 | |
252b5132 RH |
8134 | expr1.X_op = O_constant; |
8135 | expr1.X_op_symbol = NULL; | |
8136 | expr1.X_add_symbol = NULL; | |
8137 | expr1.X_add_number = 1; | |
8138 | ||
8139 | dbl = 0; | |
8140 | ||
8141 | switch (mask) | |
8142 | { | |
8143 | default: | |
8144 | internalError (); | |
8145 | ||
8146 | case M_DDIV_3: | |
8147 | dbl = 1; | |
8148 | case M_DIV_3: | |
8149 | s = "mflo"; | |
8150 | goto do_div3; | |
8151 | case M_DREM_3: | |
8152 | dbl = 1; | |
8153 | case M_REM_3: | |
8154 | s = "mfhi"; | |
8155 | do_div3: | |
7d10b47d | 8156 | start_noreorder (); |
67c0d1eb | 8157 | macro_build (NULL, dbl ? "ddiv" : "div", "0,x,y", xreg, yreg); |
252b5132 | 8158 | expr1.X_add_number = 2; |
67c0d1eb RS |
8159 | macro_build (&expr1, "bnez", "x,p", yreg); |
8160 | macro_build (NULL, "break", "6", 7); | |
bdaaa2e1 | 8161 | |
252b5132 RH |
8162 | /* FIXME: The normal code checks for of -1 / -0x80000000 here, |
8163 | since that causes an overflow. We should do that as well, | |
8164 | but I don't see how to do the comparisons without a temporary | |
8165 | register. */ | |
7d10b47d | 8166 | end_noreorder (); |
67c0d1eb | 8167 | macro_build (NULL, s, "x", zreg); |
252b5132 RH |
8168 | break; |
8169 | ||
8170 | case M_DIVU_3: | |
8171 | s = "divu"; | |
8172 | s2 = "mflo"; | |
8173 | goto do_divu3; | |
8174 | case M_REMU_3: | |
8175 | s = "divu"; | |
8176 | s2 = "mfhi"; | |
8177 | goto do_divu3; | |
8178 | case M_DDIVU_3: | |
8179 | s = "ddivu"; | |
8180 | s2 = "mflo"; | |
8181 | goto do_divu3; | |
8182 | case M_DREMU_3: | |
8183 | s = "ddivu"; | |
8184 | s2 = "mfhi"; | |
8185 | do_divu3: | |
7d10b47d | 8186 | start_noreorder (); |
67c0d1eb | 8187 | macro_build (NULL, s, "0,x,y", xreg, yreg); |
252b5132 | 8188 | expr1.X_add_number = 2; |
67c0d1eb RS |
8189 | macro_build (&expr1, "bnez", "x,p", yreg); |
8190 | macro_build (NULL, "break", "6", 7); | |
7d10b47d | 8191 | end_noreorder (); |
67c0d1eb | 8192 | macro_build (NULL, s2, "x", zreg); |
252b5132 RH |
8193 | break; |
8194 | ||
8195 | case M_DMUL: | |
8196 | dbl = 1; | |
8197 | case M_MUL: | |
67c0d1eb RS |
8198 | macro_build (NULL, dbl ? "dmultu" : "multu", "x,y", xreg, yreg); |
8199 | macro_build (NULL, "mflo", "x", zreg); | |
8fc2e39e | 8200 | break; |
252b5132 RH |
8201 | |
8202 | case M_DSUBU_I: | |
8203 | dbl = 1; | |
8204 | goto do_subu; | |
8205 | case M_SUBU_I: | |
8206 | do_subu: | |
8207 | if (imm_expr.X_op != O_constant) | |
8208 | as_bad (_("Unsupported large constant")); | |
8209 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 8210 | macro_build (&imm_expr, dbl ? "daddiu" : "addiu", "y,x,4", yreg, xreg); |
252b5132 RH |
8211 | break; |
8212 | ||
8213 | case M_SUBU_I_2: | |
8214 | if (imm_expr.X_op != O_constant) | |
8215 | as_bad (_("Unsupported large constant")); | |
8216 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 8217 | macro_build (&imm_expr, "addiu", "x,k", xreg); |
252b5132 RH |
8218 | break; |
8219 | ||
8220 | case M_DSUBU_I_2: | |
8221 | if (imm_expr.X_op != O_constant) | |
8222 | as_bad (_("Unsupported large constant")); | |
8223 | imm_expr.X_add_number = -imm_expr.X_add_number; | |
67c0d1eb | 8224 | macro_build (&imm_expr, "daddiu", "y,j", yreg); |
252b5132 RH |
8225 | break; |
8226 | ||
8227 | case M_BEQ: | |
8228 | s = "cmp"; | |
8229 | s2 = "bteqz"; | |
8230 | goto do_branch; | |
8231 | case M_BNE: | |
8232 | s = "cmp"; | |
8233 | s2 = "btnez"; | |
8234 | goto do_branch; | |
8235 | case M_BLT: | |
8236 | s = "slt"; | |
8237 | s2 = "btnez"; | |
8238 | goto do_branch; | |
8239 | case M_BLTU: | |
8240 | s = "sltu"; | |
8241 | s2 = "btnez"; | |
8242 | goto do_branch; | |
8243 | case M_BLE: | |
8244 | s = "slt"; | |
8245 | s2 = "bteqz"; | |
8246 | goto do_reverse_branch; | |
8247 | case M_BLEU: | |
8248 | s = "sltu"; | |
8249 | s2 = "bteqz"; | |
8250 | goto do_reverse_branch; | |
8251 | case M_BGE: | |
8252 | s = "slt"; | |
8253 | s2 = "bteqz"; | |
8254 | goto do_branch; | |
8255 | case M_BGEU: | |
8256 | s = "sltu"; | |
8257 | s2 = "bteqz"; | |
8258 | goto do_branch; | |
8259 | case M_BGT: | |
8260 | s = "slt"; | |
8261 | s2 = "btnez"; | |
8262 | goto do_reverse_branch; | |
8263 | case M_BGTU: | |
8264 | s = "sltu"; | |
8265 | s2 = "btnez"; | |
8266 | ||
8267 | do_reverse_branch: | |
8268 | tmp = xreg; | |
8269 | xreg = yreg; | |
8270 | yreg = tmp; | |
8271 | ||
8272 | do_branch: | |
67c0d1eb RS |
8273 | macro_build (NULL, s, "x,y", xreg, yreg); |
8274 | macro_build (&offset_expr, s2, "p"); | |
252b5132 RH |
8275 | break; |
8276 | ||
8277 | case M_BEQ_I: | |
8278 | s = "cmpi"; | |
8279 | s2 = "bteqz"; | |
8280 | s3 = "x,U"; | |
8281 | goto do_branch_i; | |
8282 | case M_BNE_I: | |
8283 | s = "cmpi"; | |
8284 | s2 = "btnez"; | |
8285 | s3 = "x,U"; | |
8286 | goto do_branch_i; | |
8287 | case M_BLT_I: | |
8288 | s = "slti"; | |
8289 | s2 = "btnez"; | |
8290 | s3 = "x,8"; | |
8291 | goto do_branch_i; | |
8292 | case M_BLTU_I: | |
8293 | s = "sltiu"; | |
8294 | s2 = "btnez"; | |
8295 | s3 = "x,8"; | |
8296 | goto do_branch_i; | |
8297 | case M_BLE_I: | |
8298 | s = "slti"; | |
8299 | s2 = "btnez"; | |
8300 | s3 = "x,8"; | |
8301 | goto do_addone_branch_i; | |
8302 | case M_BLEU_I: | |
8303 | s = "sltiu"; | |
8304 | s2 = "btnez"; | |
8305 | s3 = "x,8"; | |
8306 | goto do_addone_branch_i; | |
8307 | case M_BGE_I: | |
8308 | s = "slti"; | |
8309 | s2 = "bteqz"; | |
8310 | s3 = "x,8"; | |
8311 | goto do_branch_i; | |
8312 | case M_BGEU_I: | |
8313 | s = "sltiu"; | |
8314 | s2 = "bteqz"; | |
8315 | s3 = "x,8"; | |
8316 | goto do_branch_i; | |
8317 | case M_BGT_I: | |
8318 | s = "slti"; | |
8319 | s2 = "bteqz"; | |
8320 | s3 = "x,8"; | |
8321 | goto do_addone_branch_i; | |
8322 | case M_BGTU_I: | |
8323 | s = "sltiu"; | |
8324 | s2 = "bteqz"; | |
8325 | s3 = "x,8"; | |
8326 | ||
8327 | do_addone_branch_i: | |
8328 | if (imm_expr.X_op != O_constant) | |
8329 | as_bad (_("Unsupported large constant")); | |
8330 | ++imm_expr.X_add_number; | |
8331 | ||
8332 | do_branch_i: | |
67c0d1eb RS |
8333 | macro_build (&imm_expr, s, s3, xreg); |
8334 | macro_build (&offset_expr, s2, "p"); | |
252b5132 RH |
8335 | break; |
8336 | ||
8337 | case M_ABS: | |
8338 | expr1.X_add_number = 0; | |
67c0d1eb | 8339 | macro_build (&expr1, "slti", "x,8", yreg); |
252b5132 | 8340 | if (xreg != yreg) |
67c0d1eb | 8341 | move_register (xreg, yreg); |
252b5132 | 8342 | expr1.X_add_number = 2; |
67c0d1eb RS |
8343 | macro_build (&expr1, "bteqz", "p"); |
8344 | macro_build (NULL, "neg", "x,w", xreg, xreg); | |
252b5132 RH |
8345 | } |
8346 | } | |
8347 | ||
8348 | /* For consistency checking, verify that all bits are specified either | |
8349 | by the match/mask part of the instruction definition, or by the | |
8350 | operand list. */ | |
8351 | static int | |
17a2f251 | 8352 | validate_mips_insn (const struct mips_opcode *opc) |
252b5132 RH |
8353 | { |
8354 | const char *p = opc->args; | |
8355 | char c; | |
8356 | unsigned long used_bits = opc->mask; | |
8357 | ||
8358 | if ((used_bits & opc->match) != opc->match) | |
8359 | { | |
8360 | as_bad (_("internal: bad mips opcode (mask error): %s %s"), | |
8361 | opc->name, opc->args); | |
8362 | return 0; | |
8363 | } | |
8364 | #define USE_BITS(mask,shift) (used_bits |= ((mask) << (shift))) | |
8365 | while (*p) | |
8366 | switch (c = *p++) | |
8367 | { | |
8368 | case ',': break; | |
8369 | case '(': break; | |
8370 | case ')': break; | |
af7ee8bf CD |
8371 | case '+': |
8372 | switch (c = *p++) | |
8373 | { | |
9bcd4f99 TS |
8374 | case '1': USE_BITS (OP_MASK_UDI1, OP_SH_UDI1); break; |
8375 | case '2': USE_BITS (OP_MASK_UDI2, OP_SH_UDI2); break; | |
8376 | case '3': USE_BITS (OP_MASK_UDI3, OP_SH_UDI3); break; | |
8377 | case '4': USE_BITS (OP_MASK_UDI4, OP_SH_UDI4); break; | |
af7ee8bf CD |
8378 | case 'A': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break; |
8379 | case 'B': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break; | |
8380 | case 'C': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break; | |
bbcc0807 CD |
8381 | case 'D': USE_BITS (OP_MASK_RD, OP_SH_RD); |
8382 | USE_BITS (OP_MASK_SEL, OP_SH_SEL); break; | |
5f74bc13 CD |
8383 | case 'E': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break; |
8384 | case 'F': USE_BITS (OP_MASK_INSMSB, OP_SH_INSMSB); break; | |
8385 | case 'G': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break; | |
8386 | case 'H': USE_BITS (OP_MASK_EXTMSBD, OP_SH_EXTMSBD); break; | |
8387 | case 'I': break; | |
ef2e4d86 CF |
8388 | case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break; |
8389 | case 'T': USE_BITS (OP_MASK_RT, OP_SH_RT); | |
8390 | USE_BITS (OP_MASK_SEL, OP_SH_SEL); break; | |
bb35fb24 NC |
8391 | case 'x': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break; |
8392 | case 'X': USE_BITS (OP_MASK_BBITIND, OP_SH_BBITIND); break; | |
8393 | case 'p': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break; | |
8394 | case 'P': USE_BITS (OP_MASK_CINSPOS, OP_SH_CINSPOS); break; | |
dd3cbb7e | 8395 | case 'Q': USE_BITS (OP_MASK_SEQI, OP_SH_SEQI); break; |
bb35fb24 NC |
8396 | case 's': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break; |
8397 | case 'S': USE_BITS (OP_MASK_CINSLM1, OP_SH_CINSLM1); break; | |
8398 | ||
af7ee8bf CD |
8399 | default: |
8400 | as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"), | |
8401 | c, opc->name, opc->args); | |
8402 | return 0; | |
8403 | } | |
8404 | break; | |
252b5132 RH |
8405 | case '<': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break; |
8406 | case '>': USE_BITS (OP_MASK_SHAMT, OP_SH_SHAMT); break; | |
8407 | case 'A': break; | |
4372b673 | 8408 | case 'B': USE_BITS (OP_MASK_CODE20, OP_SH_CODE20); break; |
252b5132 RH |
8409 | case 'C': USE_BITS (OP_MASK_COPZ, OP_SH_COPZ); break; |
8410 | case 'D': USE_BITS (OP_MASK_FD, OP_SH_FD); break; | |
8411 | case 'E': USE_BITS (OP_MASK_RT, OP_SH_RT); break; | |
8412 | case 'F': break; | |
8413 | case 'G': USE_BITS (OP_MASK_RD, OP_SH_RD); break; | |
156c2f8b | 8414 | case 'H': USE_BITS (OP_MASK_SEL, OP_SH_SEL); break; |
252b5132 | 8415 | case 'I': break; |
e972090a | 8416 | case 'J': USE_BITS (OP_MASK_CODE19, OP_SH_CODE19); break; |
af7ee8bf | 8417 | case 'K': USE_BITS (OP_MASK_RD, OP_SH_RD); break; |
252b5132 RH |
8418 | case 'L': break; |
8419 | case 'M': USE_BITS (OP_MASK_CCC, OP_SH_CCC); break; | |
8420 | case 'N': USE_BITS (OP_MASK_BCC, OP_SH_BCC); break; | |
deec1734 CD |
8421 | case 'O': USE_BITS (OP_MASK_ALN, OP_SH_ALN); break; |
8422 | case 'Q': USE_BITS (OP_MASK_VSEL, OP_SH_VSEL); | |
8423 | USE_BITS (OP_MASK_FT, OP_SH_FT); break; | |
252b5132 RH |
8424 | case 'R': USE_BITS (OP_MASK_FR, OP_SH_FR); break; |
8425 | case 'S': USE_BITS (OP_MASK_FS, OP_SH_FS); break; | |
8426 | case 'T': USE_BITS (OP_MASK_FT, OP_SH_FT); break; | |
8427 | case 'V': USE_BITS (OP_MASK_FS, OP_SH_FS); break; | |
8428 | case 'W': USE_BITS (OP_MASK_FT, OP_SH_FT); break; | |
deec1734 CD |
8429 | case 'X': USE_BITS (OP_MASK_FD, OP_SH_FD); break; |
8430 | case 'Y': USE_BITS (OP_MASK_FS, OP_SH_FS); break; | |
8431 | case 'Z': USE_BITS (OP_MASK_FT, OP_SH_FT); break; | |
252b5132 RH |
8432 | case 'a': USE_BITS (OP_MASK_TARGET, OP_SH_TARGET); break; |
8433 | case 'b': USE_BITS (OP_MASK_RS, OP_SH_RS); break; | |
8434 | case 'c': USE_BITS (OP_MASK_CODE, OP_SH_CODE); break; | |
8435 | case 'd': USE_BITS (OP_MASK_RD, OP_SH_RD); break; | |
8436 | case 'f': break; | |
8437 | case 'h': USE_BITS (OP_MASK_PREFX, OP_SH_PREFX); break; | |
8438 | case 'i': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break; | |
8439 | case 'j': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break; | |
8440 | case 'k': USE_BITS (OP_MASK_CACHE, OP_SH_CACHE); break; | |
8441 | case 'l': break; | |
8442 | case 'o': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break; | |
8443 | case 'p': USE_BITS (OP_MASK_DELTA, OP_SH_DELTA); break; | |
8444 | case 'q': USE_BITS (OP_MASK_CODE2, OP_SH_CODE2); break; | |
8445 | case 'r': USE_BITS (OP_MASK_RS, OP_SH_RS); break; | |
8446 | case 's': USE_BITS (OP_MASK_RS, OP_SH_RS); break; | |
8447 | case 't': USE_BITS (OP_MASK_RT, OP_SH_RT); break; | |
8448 | case 'u': USE_BITS (OP_MASK_IMMEDIATE, OP_SH_IMMEDIATE); break; | |
8449 | case 'v': USE_BITS (OP_MASK_RS, OP_SH_RS); break; | |
8450 | case 'w': USE_BITS (OP_MASK_RT, OP_SH_RT); break; | |
8451 | case 'x': break; | |
8452 | case 'z': break; | |
8453 | case 'P': USE_BITS (OP_MASK_PERFREG, OP_SH_PERFREG); break; | |
4372b673 NC |
8454 | case 'U': USE_BITS (OP_MASK_RD, OP_SH_RD); |
8455 | USE_BITS (OP_MASK_RT, OP_SH_RT); break; | |
60b63b72 RS |
8456 | case 'e': USE_BITS (OP_MASK_VECBYTE, OP_SH_VECBYTE); break; |
8457 | case '%': USE_BITS (OP_MASK_VECALIGN, OP_SH_VECALIGN); break; | |
8458 | case '[': break; | |
8459 | case ']': break; | |
8b082fb1 | 8460 | case '2': USE_BITS (OP_MASK_BP, OP_SH_BP); break; |
74cd071d CF |
8461 | case '3': USE_BITS (OP_MASK_SA3, OP_SH_SA3); break; |
8462 | case '4': USE_BITS (OP_MASK_SA4, OP_SH_SA4); break; | |
8463 | case '5': USE_BITS (OP_MASK_IMM8, OP_SH_IMM8); break; | |
8464 | case '6': USE_BITS (OP_MASK_RS, OP_SH_RS); break; | |
8465 | case '7': USE_BITS (OP_MASK_DSPACC, OP_SH_DSPACC); break; | |
8466 | case '8': USE_BITS (OP_MASK_WRDSP, OP_SH_WRDSP); break; | |
8467 | case '9': USE_BITS (OP_MASK_DSPACC_S, OP_SH_DSPACC_S);break; | |
8468 | case '0': USE_BITS (OP_MASK_DSPSFT, OP_SH_DSPSFT); break; | |
8469 | case '\'': USE_BITS (OP_MASK_RDDSP, OP_SH_RDDSP); break; | |
8470 | case ':': USE_BITS (OP_MASK_DSPSFT_7, OP_SH_DSPSFT_7);break; | |
8471 | case '@': USE_BITS (OP_MASK_IMM10, OP_SH_IMM10); break; | |
ef2e4d86 CF |
8472 | case '!': USE_BITS (OP_MASK_MT_U, OP_SH_MT_U); break; |
8473 | case '$': USE_BITS (OP_MASK_MT_H, OP_SH_MT_H); break; | |
8474 | case '*': USE_BITS (OP_MASK_MTACC_T, OP_SH_MTACC_T); break; | |
8475 | case '&': USE_BITS (OP_MASK_MTACC_D, OP_SH_MTACC_D); break; | |
8476 | case 'g': USE_BITS (OP_MASK_RD, OP_SH_RD); break; | |
252b5132 RH |
8477 | default: |
8478 | as_bad (_("internal: bad mips opcode (unknown operand type `%c'): %s %s"), | |
8479 | c, opc->name, opc->args); | |
8480 | return 0; | |
8481 | } | |
8482 | #undef USE_BITS | |
8483 | if (used_bits != 0xffffffff) | |
8484 | { | |
8485 | as_bad (_("internal: bad mips opcode (bits 0x%lx undefined): %s %s"), | |
8486 | ~used_bits & 0xffffffff, opc->name, opc->args); | |
8487 | return 0; | |
8488 | } | |
8489 | return 1; | |
8490 | } | |
8491 | ||
9bcd4f99 TS |
8492 | /* UDI immediates. */ |
8493 | struct mips_immed { | |
8494 | char type; | |
8495 | unsigned int shift; | |
8496 | unsigned long mask; | |
8497 | const char * desc; | |
8498 | }; | |
8499 | ||
8500 | static const struct mips_immed mips_immed[] = { | |
8501 | { '1', OP_SH_UDI1, OP_MASK_UDI1, 0}, | |
8502 | { '2', OP_SH_UDI2, OP_MASK_UDI2, 0}, | |
8503 | { '3', OP_SH_UDI3, OP_MASK_UDI3, 0}, | |
8504 | { '4', OP_SH_UDI4, OP_MASK_UDI4, 0}, | |
8505 | { 0,0,0,0 } | |
8506 | }; | |
8507 | ||
7455baf8 TS |
8508 | /* Check whether an odd floating-point register is allowed. */ |
8509 | static int | |
8510 | mips_oddfpreg_ok (const struct mips_opcode *insn, int argnum) | |
8511 | { | |
8512 | const char *s = insn->name; | |
8513 | ||
8514 | if (insn->pinfo == INSN_MACRO) | |
8515 | /* Let a macro pass, we'll catch it later when it is expanded. */ | |
8516 | return 1; | |
8517 | ||
8518 | if (ISA_HAS_ODD_SINGLE_FPR (mips_opts.isa)) | |
8519 | { | |
8520 | /* Allow odd registers for single-precision ops. */ | |
8521 | switch (insn->pinfo & (FP_S | FP_D)) | |
8522 | { | |
8523 | case FP_S: | |
8524 | case 0: | |
8525 | return 1; /* both single precision - ok */ | |
8526 | case FP_D: | |
8527 | return 0; /* both double precision - fail */ | |
8528 | default: | |
8529 | break; | |
8530 | } | |
8531 | ||
8532 | /* Cvt.w.x and cvt.x.w allow an odd register for a 'w' or 's' operand. */ | |
8533 | s = strchr (insn->name, '.'); | |
8534 | if (argnum == 2) | |
8535 | s = s != NULL ? strchr (s + 1, '.') : NULL; | |
8536 | return (s != NULL && (s[1] == 'w' || s[1] == 's')); | |
8537 | } | |
8538 | ||
8539 | /* Single-precision coprocessor loads and moves are OK too. */ | |
8540 | if ((insn->pinfo & FP_S) | |
8541 | && (insn->pinfo & (INSN_COPROC_MEMORY_DELAY | INSN_STORE_MEMORY | |
8542 | | INSN_LOAD_COPROC_DELAY | INSN_COPROC_MOVE_DELAY))) | |
8543 | return 1; | |
8544 | ||
8545 | return 0; | |
8546 | } | |
8547 | ||
252b5132 RH |
8548 | /* This routine assembles an instruction into its binary format. As a |
8549 | side effect, it sets one of the global variables imm_reloc or | |
8550 | offset_reloc to the type of relocation to do if one of the operands | |
8551 | is an address expression. */ | |
8552 | ||
8553 | static void | |
17a2f251 | 8554 | mips_ip (char *str, struct mips_cl_insn *ip) |
252b5132 RH |
8555 | { |
8556 | char *s; | |
8557 | const char *args; | |
43841e91 | 8558 | char c = 0; |
252b5132 RH |
8559 | struct mips_opcode *insn; |
8560 | char *argsStart; | |
8561 | unsigned int regno; | |
8562 | unsigned int lastregno = 0; | |
af7ee8bf | 8563 | unsigned int lastpos = 0; |
071742cf | 8564 | unsigned int limlo, limhi; |
252b5132 RH |
8565 | char *s_reset; |
8566 | char save_c = 0; | |
74cd071d | 8567 | offsetT min_range, max_range; |
707bfff6 TS |
8568 | int argnum; |
8569 | unsigned int rtype; | |
252b5132 RH |
8570 | |
8571 | insn_error = NULL; | |
8572 | ||
8573 | /* If the instruction contains a '.', we first try to match an instruction | |
8574 | including the '.'. Then we try again without the '.'. */ | |
8575 | insn = NULL; | |
3882b010 | 8576 | for (s = str; *s != '\0' && !ISSPACE (*s); ++s) |
252b5132 RH |
8577 | continue; |
8578 | ||
8579 | /* If we stopped on whitespace, then replace the whitespace with null for | |
8580 | the call to hash_find. Save the character we replaced just in case we | |
8581 | have to re-parse the instruction. */ | |
3882b010 | 8582 | if (ISSPACE (*s)) |
252b5132 RH |
8583 | { |
8584 | save_c = *s; | |
8585 | *s++ = '\0'; | |
8586 | } | |
bdaaa2e1 | 8587 | |
252b5132 RH |
8588 | insn = (struct mips_opcode *) hash_find (op_hash, str); |
8589 | ||
8590 | /* If we didn't find the instruction in the opcode table, try again, but | |
8591 | this time with just the instruction up to, but not including the | |
8592 | first '.'. */ | |
8593 | if (insn == NULL) | |
8594 | { | |
bdaaa2e1 | 8595 | /* Restore the character we overwrite above (if any). */ |
252b5132 RH |
8596 | if (save_c) |
8597 | *(--s) = save_c; | |
8598 | ||
8599 | /* Scan up to the first '.' or whitespace. */ | |
3882b010 L |
8600 | for (s = str; |
8601 | *s != '\0' && *s != '.' && !ISSPACE (*s); | |
8602 | ++s) | |
252b5132 RH |
8603 | continue; |
8604 | ||
8605 | /* If we did not find a '.', then we can quit now. */ | |
8606 | if (*s != '.') | |
8607 | { | |
8608 | insn_error = "unrecognized opcode"; | |
8609 | return; | |
8610 | } | |
8611 | ||
8612 | /* Lookup the instruction in the hash table. */ | |
8613 | *s++ = '\0'; | |
8614 | if ((insn = (struct mips_opcode *) hash_find (op_hash, str)) == NULL) | |
8615 | { | |
8616 | insn_error = "unrecognized opcode"; | |
8617 | return; | |
8618 | } | |
252b5132 RH |
8619 | } |
8620 | ||
8621 | argsStart = s; | |
8622 | for (;;) | |
8623 | { | |
b34976b6 | 8624 | bfd_boolean ok; |
252b5132 RH |
8625 | |
8626 | assert (strcmp (insn->name, str) == 0); | |
8627 | ||
037b32b9 | 8628 | ok = is_opcode_valid (insn, FALSE); |
252b5132 RH |
8629 | if (! ok) |
8630 | { | |
8631 | if (insn + 1 < &mips_opcodes[NUMOPCODES] | |
8632 | && strcmp (insn->name, insn[1].name) == 0) | |
8633 | { | |
8634 | ++insn; | |
8635 | continue; | |
8636 | } | |
252b5132 | 8637 | else |
beae10d5 | 8638 | { |
268f6bed L |
8639 | if (!insn_error) |
8640 | { | |
8641 | static char buf[100]; | |
fef14a42 TS |
8642 | sprintf (buf, |
8643 | _("opcode not supported on this processor: %s (%s)"), | |
8644 | mips_cpu_info_from_arch (mips_opts.arch)->name, | |
8645 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
268f6bed L |
8646 | insn_error = buf; |
8647 | } | |
8648 | if (save_c) | |
8649 | *(--s) = save_c; | |
2bd7f1f3 | 8650 | return; |
252b5132 | 8651 | } |
252b5132 RH |
8652 | } |
8653 | ||
1e915849 | 8654 | create_insn (ip, insn); |
268f6bed | 8655 | insn_error = NULL; |
707bfff6 | 8656 | argnum = 1; |
252b5132 RH |
8657 | for (args = insn->args;; ++args) |
8658 | { | |
deec1734 CD |
8659 | int is_mdmx; |
8660 | ||
ad8d3bb3 | 8661 | s += strspn (s, " \t"); |
deec1734 | 8662 | is_mdmx = 0; |
252b5132 RH |
8663 | switch (*args) |
8664 | { | |
8665 | case '\0': /* end of args */ | |
8666 | if (*s == '\0') | |
8667 | return; | |
8668 | break; | |
8669 | ||
8b082fb1 TS |
8670 | case '2': /* dsp 2-bit unsigned immediate in bit 11 */ |
8671 | my_getExpression (&imm_expr, s); | |
8672 | check_absolute_expr (ip, &imm_expr); | |
8673 | if ((unsigned long) imm_expr.X_add_number != 1 | |
8674 | && (unsigned long) imm_expr.X_add_number != 3) | |
8675 | { | |
8676 | as_bad (_("BALIGN immediate not 1 or 3 (%lu)"), | |
8677 | (unsigned long) imm_expr.X_add_number); | |
8678 | } | |
8679 | INSERT_OPERAND (BP, *ip, imm_expr.X_add_number); | |
8680 | imm_expr.X_op = O_absent; | |
8681 | s = expr_end; | |
8682 | continue; | |
8683 | ||
74cd071d CF |
8684 | case '3': /* dsp 3-bit unsigned immediate in bit 21 */ |
8685 | my_getExpression (&imm_expr, s); | |
8686 | check_absolute_expr (ip, &imm_expr); | |
8687 | if (imm_expr.X_add_number & ~OP_MASK_SA3) | |
8688 | { | |
a9e24354 TS |
8689 | as_bad (_("DSP immediate not in range 0..%d (%lu)"), |
8690 | OP_MASK_SA3, (unsigned long) imm_expr.X_add_number); | |
74cd071d | 8691 | } |
a9e24354 | 8692 | INSERT_OPERAND (SA3, *ip, imm_expr.X_add_number); |
74cd071d CF |
8693 | imm_expr.X_op = O_absent; |
8694 | s = expr_end; | |
8695 | continue; | |
8696 | ||
8697 | case '4': /* dsp 4-bit unsigned immediate in bit 21 */ | |
8698 | my_getExpression (&imm_expr, s); | |
8699 | check_absolute_expr (ip, &imm_expr); | |
8700 | if (imm_expr.X_add_number & ~OP_MASK_SA4) | |
8701 | { | |
a9e24354 TS |
8702 | as_bad (_("DSP immediate not in range 0..%d (%lu)"), |
8703 | OP_MASK_SA4, (unsigned long) imm_expr.X_add_number); | |
74cd071d | 8704 | } |
a9e24354 | 8705 | INSERT_OPERAND (SA4, *ip, imm_expr.X_add_number); |
74cd071d CF |
8706 | imm_expr.X_op = O_absent; |
8707 | s = expr_end; | |
8708 | continue; | |
8709 | ||
8710 | case '5': /* dsp 8-bit unsigned immediate in bit 16 */ | |
8711 | my_getExpression (&imm_expr, s); | |
8712 | check_absolute_expr (ip, &imm_expr); | |
8713 | if (imm_expr.X_add_number & ~OP_MASK_IMM8) | |
8714 | { | |
a9e24354 TS |
8715 | as_bad (_("DSP immediate not in range 0..%d (%lu)"), |
8716 | OP_MASK_IMM8, (unsigned long) imm_expr.X_add_number); | |
74cd071d | 8717 | } |
a9e24354 | 8718 | INSERT_OPERAND (IMM8, *ip, imm_expr.X_add_number); |
74cd071d CF |
8719 | imm_expr.X_op = O_absent; |
8720 | s = expr_end; | |
8721 | continue; | |
8722 | ||
8723 | case '6': /* dsp 5-bit unsigned immediate in bit 21 */ | |
8724 | my_getExpression (&imm_expr, s); | |
8725 | check_absolute_expr (ip, &imm_expr); | |
8726 | if (imm_expr.X_add_number & ~OP_MASK_RS) | |
8727 | { | |
a9e24354 TS |
8728 | as_bad (_("DSP immediate not in range 0..%d (%lu)"), |
8729 | OP_MASK_RS, (unsigned long) imm_expr.X_add_number); | |
74cd071d | 8730 | } |
a9e24354 | 8731 | INSERT_OPERAND (RS, *ip, imm_expr.X_add_number); |
74cd071d CF |
8732 | imm_expr.X_op = O_absent; |
8733 | s = expr_end; | |
8734 | continue; | |
8735 | ||
8736 | case '7': /* four dsp accumulators in bits 11,12 */ | |
8737 | if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' && | |
8738 | s[3] >= '0' && s[3] <= '3') | |
8739 | { | |
8740 | regno = s[3] - '0'; | |
8741 | s += 4; | |
a9e24354 | 8742 | INSERT_OPERAND (DSPACC, *ip, regno); |
74cd071d CF |
8743 | continue; |
8744 | } | |
8745 | else | |
8746 | as_bad (_("Invalid dsp acc register")); | |
8747 | break; | |
8748 | ||
8749 | case '8': /* dsp 6-bit unsigned immediate in bit 11 */ | |
8750 | my_getExpression (&imm_expr, s); | |
8751 | check_absolute_expr (ip, &imm_expr); | |
8752 | if (imm_expr.X_add_number & ~OP_MASK_WRDSP) | |
8753 | { | |
a9e24354 TS |
8754 | as_bad (_("DSP immediate not in range 0..%d (%lu)"), |
8755 | OP_MASK_WRDSP, | |
8756 | (unsigned long) imm_expr.X_add_number); | |
74cd071d | 8757 | } |
a9e24354 | 8758 | INSERT_OPERAND (WRDSP, *ip, imm_expr.X_add_number); |
74cd071d CF |
8759 | imm_expr.X_op = O_absent; |
8760 | s = expr_end; | |
8761 | continue; | |
8762 | ||
8763 | case '9': /* four dsp accumulators in bits 21,22 */ | |
8764 | if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' && | |
8765 | s[3] >= '0' && s[3] <= '3') | |
8766 | { | |
8767 | regno = s[3] - '0'; | |
8768 | s += 4; | |
a9e24354 | 8769 | INSERT_OPERAND (DSPACC_S, *ip, regno); |
74cd071d CF |
8770 | continue; |
8771 | } | |
8772 | else | |
8773 | as_bad (_("Invalid dsp acc register")); | |
8774 | break; | |
8775 | ||
8776 | case '0': /* dsp 6-bit signed immediate in bit 20 */ | |
8777 | my_getExpression (&imm_expr, s); | |
8778 | check_absolute_expr (ip, &imm_expr); | |
8779 | min_range = -((OP_MASK_DSPSFT + 1) >> 1); | |
8780 | max_range = ((OP_MASK_DSPSFT + 1) >> 1) - 1; | |
8781 | if (imm_expr.X_add_number < min_range || | |
8782 | imm_expr.X_add_number > max_range) | |
8783 | { | |
a9e24354 TS |
8784 | as_bad (_("DSP immediate not in range %ld..%ld (%ld)"), |
8785 | (long) min_range, (long) max_range, | |
8786 | (long) imm_expr.X_add_number); | |
74cd071d | 8787 | } |
a9e24354 | 8788 | INSERT_OPERAND (DSPSFT, *ip, imm_expr.X_add_number); |
74cd071d CF |
8789 | imm_expr.X_op = O_absent; |
8790 | s = expr_end; | |
8791 | continue; | |
8792 | ||
8793 | case '\'': /* dsp 6-bit unsigned immediate in bit 16 */ | |
8794 | my_getExpression (&imm_expr, s); | |
8795 | check_absolute_expr (ip, &imm_expr); | |
8796 | if (imm_expr.X_add_number & ~OP_MASK_RDDSP) | |
8797 | { | |
a9e24354 TS |
8798 | as_bad (_("DSP immediate not in range 0..%d (%lu)"), |
8799 | OP_MASK_RDDSP, | |
8800 | (unsigned long) imm_expr.X_add_number); | |
74cd071d | 8801 | } |
a9e24354 | 8802 | INSERT_OPERAND (RDDSP, *ip, imm_expr.X_add_number); |
74cd071d CF |
8803 | imm_expr.X_op = O_absent; |
8804 | s = expr_end; | |
8805 | continue; | |
8806 | ||
8807 | case ':': /* dsp 7-bit signed immediate in bit 19 */ | |
8808 | my_getExpression (&imm_expr, s); | |
8809 | check_absolute_expr (ip, &imm_expr); | |
8810 | min_range = -((OP_MASK_DSPSFT_7 + 1) >> 1); | |
8811 | max_range = ((OP_MASK_DSPSFT_7 + 1) >> 1) - 1; | |
8812 | if (imm_expr.X_add_number < min_range || | |
8813 | imm_expr.X_add_number > max_range) | |
8814 | { | |
a9e24354 TS |
8815 | as_bad (_("DSP immediate not in range %ld..%ld (%ld)"), |
8816 | (long) min_range, (long) max_range, | |
8817 | (long) imm_expr.X_add_number); | |
74cd071d | 8818 | } |
a9e24354 | 8819 | INSERT_OPERAND (DSPSFT_7, *ip, imm_expr.X_add_number); |
74cd071d CF |
8820 | imm_expr.X_op = O_absent; |
8821 | s = expr_end; | |
8822 | continue; | |
8823 | ||
8824 | case '@': /* dsp 10-bit signed immediate in bit 16 */ | |
8825 | my_getExpression (&imm_expr, s); | |
8826 | check_absolute_expr (ip, &imm_expr); | |
8827 | min_range = -((OP_MASK_IMM10 + 1) >> 1); | |
8828 | max_range = ((OP_MASK_IMM10 + 1) >> 1) - 1; | |
8829 | if (imm_expr.X_add_number < min_range || | |
8830 | imm_expr.X_add_number > max_range) | |
8831 | { | |
a9e24354 TS |
8832 | as_bad (_("DSP immediate not in range %ld..%ld (%ld)"), |
8833 | (long) min_range, (long) max_range, | |
8834 | (long) imm_expr.X_add_number); | |
74cd071d | 8835 | } |
a9e24354 | 8836 | INSERT_OPERAND (IMM10, *ip, imm_expr.X_add_number); |
74cd071d CF |
8837 | imm_expr.X_op = O_absent; |
8838 | s = expr_end; | |
8839 | continue; | |
8840 | ||
a9e24354 | 8841 | case '!': /* MT usermode flag bit. */ |
ef2e4d86 CF |
8842 | my_getExpression (&imm_expr, s); |
8843 | check_absolute_expr (ip, &imm_expr); | |
8844 | if (imm_expr.X_add_number & ~OP_MASK_MT_U) | |
a9e24354 TS |
8845 | as_bad (_("MT usermode bit not 0 or 1 (%lu)"), |
8846 | (unsigned long) imm_expr.X_add_number); | |
8847 | INSERT_OPERAND (MT_U, *ip, imm_expr.X_add_number); | |
ef2e4d86 CF |
8848 | imm_expr.X_op = O_absent; |
8849 | s = expr_end; | |
8850 | continue; | |
8851 | ||
a9e24354 | 8852 | case '$': /* MT load high flag bit. */ |
ef2e4d86 CF |
8853 | my_getExpression (&imm_expr, s); |
8854 | check_absolute_expr (ip, &imm_expr); | |
8855 | if (imm_expr.X_add_number & ~OP_MASK_MT_H) | |
a9e24354 TS |
8856 | as_bad (_("MT load high bit not 0 or 1 (%lu)"), |
8857 | (unsigned long) imm_expr.X_add_number); | |
8858 | INSERT_OPERAND (MT_H, *ip, imm_expr.X_add_number); | |
ef2e4d86 CF |
8859 | imm_expr.X_op = O_absent; |
8860 | s = expr_end; | |
8861 | continue; | |
8862 | ||
8863 | case '*': /* four dsp accumulators in bits 18,19 */ | |
8864 | if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' && | |
8865 | s[3] >= '0' && s[3] <= '3') | |
8866 | { | |
8867 | regno = s[3] - '0'; | |
8868 | s += 4; | |
a9e24354 | 8869 | INSERT_OPERAND (MTACC_T, *ip, regno); |
ef2e4d86 CF |
8870 | continue; |
8871 | } | |
8872 | else | |
8873 | as_bad (_("Invalid dsp/smartmips acc register")); | |
8874 | break; | |
8875 | ||
8876 | case '&': /* four dsp accumulators in bits 13,14 */ | |
8877 | if (s[0] == '$' && s[1] == 'a' && s[2] == 'c' && | |
8878 | s[3] >= '0' && s[3] <= '3') | |
8879 | { | |
8880 | regno = s[3] - '0'; | |
8881 | s += 4; | |
a9e24354 | 8882 | INSERT_OPERAND (MTACC_D, *ip, regno); |
ef2e4d86 CF |
8883 | continue; |
8884 | } | |
8885 | else | |
8886 | as_bad (_("Invalid dsp/smartmips acc register")); | |
8887 | break; | |
8888 | ||
252b5132 | 8889 | case ',': |
a339155f | 8890 | ++argnum; |
252b5132 RH |
8891 | if (*s++ == *args) |
8892 | continue; | |
8893 | s--; | |
8894 | switch (*++args) | |
8895 | { | |
8896 | case 'r': | |
8897 | case 'v': | |
bf12938e | 8898 | INSERT_OPERAND (RS, *ip, lastregno); |
252b5132 RH |
8899 | continue; |
8900 | ||
8901 | case 'w': | |
bf12938e | 8902 | INSERT_OPERAND (RT, *ip, lastregno); |
38487616 TS |
8903 | continue; |
8904 | ||
252b5132 | 8905 | case 'W': |
bf12938e | 8906 | INSERT_OPERAND (FT, *ip, lastregno); |
252b5132 RH |
8907 | continue; |
8908 | ||
8909 | case 'V': | |
bf12938e | 8910 | INSERT_OPERAND (FS, *ip, lastregno); |
252b5132 RH |
8911 | continue; |
8912 | } | |
8913 | break; | |
8914 | ||
8915 | case '(': | |
8916 | /* Handle optional base register. | |
8917 | Either the base register is omitted or | |
bdaaa2e1 | 8918 | we must have a left paren. */ |
252b5132 RH |
8919 | /* This is dependent on the next operand specifier |
8920 | is a base register specification. */ | |
8921 | assert (args[1] == 'b' || args[1] == '5' | |
8922 | || args[1] == '-' || args[1] == '4'); | |
8923 | if (*s == '\0') | |
8924 | return; | |
8925 | ||
8926 | case ')': /* these must match exactly */ | |
60b63b72 RS |
8927 | case '[': |
8928 | case ']': | |
252b5132 RH |
8929 | if (*s++ == *args) |
8930 | continue; | |
8931 | break; | |
8932 | ||
af7ee8bf CD |
8933 | case '+': /* Opcode extension character. */ |
8934 | switch (*++args) | |
8935 | { | |
9bcd4f99 TS |
8936 | case '1': /* UDI immediates. */ |
8937 | case '2': | |
8938 | case '3': | |
8939 | case '4': | |
8940 | { | |
8941 | const struct mips_immed *imm = mips_immed; | |
8942 | ||
8943 | while (imm->type && imm->type != *args) | |
8944 | ++imm; | |
8945 | if (! imm->type) | |
8946 | internalError (); | |
8947 | my_getExpression (&imm_expr, s); | |
8948 | check_absolute_expr (ip, &imm_expr); | |
8949 | if ((unsigned long) imm_expr.X_add_number & ~imm->mask) | |
8950 | { | |
8951 | as_warn (_("Illegal %s number (%lu, 0x%lx)"), | |
8952 | imm->desc ? imm->desc : ip->insn_mo->name, | |
8953 | (unsigned long) imm_expr.X_add_number, | |
8954 | (unsigned long) imm_expr.X_add_number); | |
8955 | imm_expr.X_add_number &= imm->mask; | |
8956 | } | |
8957 | ip->insn_opcode |= ((unsigned long) imm_expr.X_add_number | |
8958 | << imm->shift); | |
8959 | imm_expr.X_op = O_absent; | |
8960 | s = expr_end; | |
8961 | } | |
8962 | continue; | |
8963 | ||
071742cf CD |
8964 | case 'A': /* ins/ext position, becomes LSB. */ |
8965 | limlo = 0; | |
8966 | limhi = 31; | |
5f74bc13 CD |
8967 | goto do_lsb; |
8968 | case 'E': | |
8969 | limlo = 32; | |
8970 | limhi = 63; | |
8971 | goto do_lsb; | |
8972 | do_lsb: | |
071742cf CD |
8973 | my_getExpression (&imm_expr, s); |
8974 | check_absolute_expr (ip, &imm_expr); | |
8975 | if ((unsigned long) imm_expr.X_add_number < limlo | |
8976 | || (unsigned long) imm_expr.X_add_number > limhi) | |
8977 | { | |
8978 | as_bad (_("Improper position (%lu)"), | |
8979 | (unsigned long) imm_expr.X_add_number); | |
8980 | imm_expr.X_add_number = limlo; | |
8981 | } | |
8982 | lastpos = imm_expr.X_add_number; | |
bf12938e | 8983 | INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number); |
071742cf CD |
8984 | imm_expr.X_op = O_absent; |
8985 | s = expr_end; | |
8986 | continue; | |
8987 | ||
8988 | case 'B': /* ins size, becomes MSB. */ | |
8989 | limlo = 1; | |
8990 | limhi = 32; | |
5f74bc13 CD |
8991 | goto do_msb; |
8992 | case 'F': | |
8993 | limlo = 33; | |
8994 | limhi = 64; | |
8995 | goto do_msb; | |
8996 | do_msb: | |
071742cf CD |
8997 | my_getExpression (&imm_expr, s); |
8998 | check_absolute_expr (ip, &imm_expr); | |
8999 | /* Check for negative input so that small negative numbers | |
9000 | will not succeed incorrectly. The checks against | |
9001 | (pos+size) transitively check "size" itself, | |
9002 | assuming that "pos" is reasonable. */ | |
9003 | if ((long) imm_expr.X_add_number < 0 | |
9004 | || ((unsigned long) imm_expr.X_add_number | |
9005 | + lastpos) < limlo | |
9006 | || ((unsigned long) imm_expr.X_add_number | |
9007 | + lastpos) > limhi) | |
9008 | { | |
9009 | as_bad (_("Improper insert size (%lu, position %lu)"), | |
9010 | (unsigned long) imm_expr.X_add_number, | |
9011 | (unsigned long) lastpos); | |
9012 | imm_expr.X_add_number = limlo - lastpos; | |
9013 | } | |
bf12938e RS |
9014 | INSERT_OPERAND (INSMSB, *ip, |
9015 | lastpos + imm_expr.X_add_number - 1); | |
071742cf CD |
9016 | imm_expr.X_op = O_absent; |
9017 | s = expr_end; | |
9018 | continue; | |
9019 | ||
9020 | case 'C': /* ext size, becomes MSBD. */ | |
9021 | limlo = 1; | |
9022 | limhi = 32; | |
5f74bc13 CD |
9023 | goto do_msbd; |
9024 | case 'G': | |
9025 | limlo = 33; | |
9026 | limhi = 64; | |
9027 | goto do_msbd; | |
9028 | case 'H': | |
9029 | limlo = 33; | |
9030 | limhi = 64; | |
9031 | goto do_msbd; | |
9032 | do_msbd: | |
071742cf CD |
9033 | my_getExpression (&imm_expr, s); |
9034 | check_absolute_expr (ip, &imm_expr); | |
9035 | /* Check for negative input so that small negative numbers | |
9036 | will not succeed incorrectly. The checks against | |
9037 | (pos+size) transitively check "size" itself, | |
9038 | assuming that "pos" is reasonable. */ | |
9039 | if ((long) imm_expr.X_add_number < 0 | |
9040 | || ((unsigned long) imm_expr.X_add_number | |
9041 | + lastpos) < limlo | |
9042 | || ((unsigned long) imm_expr.X_add_number | |
9043 | + lastpos) > limhi) | |
9044 | { | |
9045 | as_bad (_("Improper extract size (%lu, position %lu)"), | |
9046 | (unsigned long) imm_expr.X_add_number, | |
9047 | (unsigned long) lastpos); | |
9048 | imm_expr.X_add_number = limlo - lastpos; | |
9049 | } | |
bf12938e | 9050 | INSERT_OPERAND (EXTMSBD, *ip, imm_expr.X_add_number - 1); |
071742cf CD |
9051 | imm_expr.X_op = O_absent; |
9052 | s = expr_end; | |
9053 | continue; | |
af7ee8bf | 9054 | |
bbcc0807 CD |
9055 | case 'D': |
9056 | /* +D is for disassembly only; never match. */ | |
9057 | break; | |
9058 | ||
5f74bc13 CD |
9059 | case 'I': |
9060 | /* "+I" is like "I", except that imm2_expr is used. */ | |
9061 | my_getExpression (&imm2_expr, s); | |
9062 | if (imm2_expr.X_op != O_big | |
9063 | && imm2_expr.X_op != O_constant) | |
9064 | insn_error = _("absolute expression required"); | |
9ee2a2d4 MR |
9065 | if (HAVE_32BIT_GPRS) |
9066 | normalize_constant_expr (&imm2_expr); | |
5f74bc13 CD |
9067 | s = expr_end; |
9068 | continue; | |
9069 | ||
707bfff6 | 9070 | case 'T': /* Coprocessor register. */ |
ef2e4d86 CF |
9071 | /* +T is for disassembly only; never match. */ |
9072 | break; | |
9073 | ||
707bfff6 | 9074 | case 't': /* Coprocessor register number. */ |
ef2e4d86 CF |
9075 | if (s[0] == '$' && ISDIGIT (s[1])) |
9076 | { | |
9077 | ++s; | |
9078 | regno = 0; | |
9079 | do | |
9080 | { | |
9081 | regno *= 10; | |
9082 | regno += *s - '0'; | |
9083 | ++s; | |
9084 | } | |
9085 | while (ISDIGIT (*s)); | |
9086 | if (regno > 31) | |
9087 | as_bad (_("Invalid register number (%d)"), regno); | |
9088 | else | |
9089 | { | |
a9e24354 | 9090 | INSERT_OPERAND (RT, *ip, regno); |
ef2e4d86 CF |
9091 | continue; |
9092 | } | |
9093 | } | |
9094 | else | |
9095 | as_bad (_("Invalid coprocessor 0 register number")); | |
9096 | break; | |
9097 | ||
bb35fb24 NC |
9098 | case 'x': |
9099 | /* bbit[01] and bbit[01]32 bit index. Give error if index | |
9100 | is not in the valid range. */ | |
9101 | my_getExpression (&imm_expr, s); | |
9102 | check_absolute_expr (ip, &imm_expr); | |
9103 | if ((unsigned) imm_expr.X_add_number > 31) | |
9104 | { | |
9105 | as_bad (_("Improper bit index (%lu)"), | |
9106 | (unsigned long) imm_expr.X_add_number); | |
9107 | imm_expr.X_add_number = 0; | |
9108 | } | |
9109 | INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number); | |
9110 | imm_expr.X_op = O_absent; | |
9111 | s = expr_end; | |
9112 | continue; | |
9113 | ||
9114 | case 'X': | |
9115 | /* bbit[01] bit index when bbit is used but we generate | |
9116 | bbit[01]32 because the index is over 32. Move to the | |
9117 | next candidate if index is not in the valid range. */ | |
9118 | my_getExpression (&imm_expr, s); | |
9119 | check_absolute_expr (ip, &imm_expr); | |
9120 | if ((unsigned) imm_expr.X_add_number < 32 | |
9121 | || (unsigned) imm_expr.X_add_number > 63) | |
9122 | break; | |
9123 | INSERT_OPERAND (BBITIND, *ip, imm_expr.X_add_number - 32); | |
9124 | imm_expr.X_op = O_absent; | |
9125 | s = expr_end; | |
9126 | continue; | |
9127 | ||
9128 | case 'p': | |
9129 | /* cins, cins32, exts and exts32 position field. Give error | |
9130 | if it's not in the valid range. */ | |
9131 | my_getExpression (&imm_expr, s); | |
9132 | check_absolute_expr (ip, &imm_expr); | |
9133 | if ((unsigned) imm_expr.X_add_number > 31) | |
9134 | { | |
9135 | as_bad (_("Improper position (%lu)"), | |
9136 | (unsigned long) imm_expr.X_add_number); | |
9137 | imm_expr.X_add_number = 0; | |
9138 | } | |
9139 | /* Make the pos explicit to simplify +S. */ | |
9140 | lastpos = imm_expr.X_add_number + 32; | |
9141 | INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number); | |
9142 | imm_expr.X_op = O_absent; | |
9143 | s = expr_end; | |
9144 | continue; | |
9145 | ||
9146 | case 'P': | |
9147 | /* cins, cins32, exts and exts32 position field. Move to | |
9148 | the next candidate if it's not in the valid range. */ | |
9149 | my_getExpression (&imm_expr, s); | |
9150 | check_absolute_expr (ip, &imm_expr); | |
9151 | if ((unsigned) imm_expr.X_add_number < 32 | |
9152 | || (unsigned) imm_expr.X_add_number > 63) | |
9153 | break; | |
9154 | lastpos = imm_expr.X_add_number; | |
9155 | INSERT_OPERAND (CINSPOS, *ip, imm_expr.X_add_number - 32); | |
9156 | imm_expr.X_op = O_absent; | |
9157 | s = expr_end; | |
9158 | continue; | |
9159 | ||
9160 | case 's': | |
9161 | /* cins and exts length-minus-one field. */ | |
9162 | my_getExpression (&imm_expr, s); | |
9163 | check_absolute_expr (ip, &imm_expr); | |
9164 | if ((unsigned long) imm_expr.X_add_number > 31) | |
9165 | { | |
9166 | as_bad (_("Improper size (%lu)"), | |
9167 | (unsigned long) imm_expr.X_add_number); | |
9168 | imm_expr.X_add_number = 0; | |
9169 | } | |
9170 | INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number); | |
9171 | imm_expr.X_op = O_absent; | |
9172 | s = expr_end; | |
9173 | continue; | |
9174 | ||
9175 | case 'S': | |
9176 | /* cins32/exts32 and cins/exts aliasing cint32/exts32 | |
9177 | length-minus-one field. */ | |
9178 | my_getExpression (&imm_expr, s); | |
9179 | check_absolute_expr (ip, &imm_expr); | |
9180 | if ((long) imm_expr.X_add_number < 0 | |
9181 | || (unsigned long) imm_expr.X_add_number + lastpos > 63) | |
9182 | { | |
9183 | as_bad (_("Improper size (%lu)"), | |
9184 | (unsigned long) imm_expr.X_add_number); | |
9185 | imm_expr.X_add_number = 0; | |
9186 | } | |
9187 | INSERT_OPERAND (CINSLM1, *ip, imm_expr.X_add_number); | |
9188 | imm_expr.X_op = O_absent; | |
9189 | s = expr_end; | |
9190 | continue; | |
9191 | ||
dd3cbb7e NC |
9192 | case 'Q': |
9193 | /* seqi/snei immediate field. */ | |
9194 | my_getExpression (&imm_expr, s); | |
9195 | check_absolute_expr (ip, &imm_expr); | |
9196 | if ((long) imm_expr.X_add_number < -512 | |
9197 | || (long) imm_expr.X_add_number >= 512) | |
9198 | { | |
9199 | as_bad (_("Improper immediate (%ld)"), | |
9200 | (long) imm_expr.X_add_number); | |
9201 | imm_expr.X_add_number = 0; | |
9202 | } | |
9203 | INSERT_OPERAND (SEQI, *ip, imm_expr.X_add_number); | |
9204 | imm_expr.X_op = O_absent; | |
9205 | s = expr_end; | |
9206 | continue; | |
9207 | ||
af7ee8bf CD |
9208 | default: |
9209 | as_bad (_("internal: bad mips opcode (unknown extension operand type `+%c'): %s %s"), | |
9210 | *args, insn->name, insn->args); | |
9211 | /* Further processing is fruitless. */ | |
9212 | return; | |
9213 | } | |
9214 | break; | |
9215 | ||
252b5132 RH |
9216 | case '<': /* must be at least one digit */ |
9217 | /* | |
9218 | * According to the manual, if the shift amount is greater | |
b6ff326e KH |
9219 | * than 31 or less than 0, then the shift amount should be |
9220 | * mod 32. In reality the mips assembler issues an error. | |
252b5132 RH |
9221 | * We issue a warning and mask out all but the low 5 bits. |
9222 | */ | |
9223 | my_getExpression (&imm_expr, s); | |
9224 | check_absolute_expr (ip, &imm_expr); | |
9225 | if ((unsigned long) imm_expr.X_add_number > 31) | |
bf12938e RS |
9226 | as_warn (_("Improper shift amount (%lu)"), |
9227 | (unsigned long) imm_expr.X_add_number); | |
9228 | INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number); | |
252b5132 RH |
9229 | imm_expr.X_op = O_absent; |
9230 | s = expr_end; | |
9231 | continue; | |
9232 | ||
9233 | case '>': /* shift amount minus 32 */ | |
9234 | my_getExpression (&imm_expr, s); | |
9235 | check_absolute_expr (ip, &imm_expr); | |
9236 | if ((unsigned long) imm_expr.X_add_number < 32 | |
9237 | || (unsigned long) imm_expr.X_add_number > 63) | |
9238 | break; | |
bf12938e | 9239 | INSERT_OPERAND (SHAMT, *ip, imm_expr.X_add_number - 32); |
252b5132 RH |
9240 | imm_expr.X_op = O_absent; |
9241 | s = expr_end; | |
9242 | continue; | |
9243 | ||
252b5132 RH |
9244 | case 'k': /* cache code */ |
9245 | case 'h': /* prefx code */ | |
9246 | my_getExpression (&imm_expr, s); | |
9247 | check_absolute_expr (ip, &imm_expr); | |
9248 | if ((unsigned long) imm_expr.X_add_number > 31) | |
bf12938e RS |
9249 | as_warn (_("Invalid value for `%s' (%lu)"), |
9250 | ip->insn_mo->name, | |
9251 | (unsigned long) imm_expr.X_add_number); | |
252b5132 | 9252 | if (*args == 'k') |
bf12938e | 9253 | INSERT_OPERAND (CACHE, *ip, imm_expr.X_add_number); |
252b5132 | 9254 | else |
bf12938e | 9255 | INSERT_OPERAND (PREFX, *ip, imm_expr.X_add_number); |
252b5132 RH |
9256 | imm_expr.X_op = O_absent; |
9257 | s = expr_end; | |
9258 | continue; | |
9259 | ||
9260 | case 'c': /* break code */ | |
9261 | my_getExpression (&imm_expr, s); | |
9262 | check_absolute_expr (ip, &imm_expr); | |
a9e24354 TS |
9263 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE) |
9264 | as_warn (_("Code for %s not in range 0..1023 (%lu)"), | |
9265 | ip->insn_mo->name, | |
bf12938e RS |
9266 | (unsigned long) imm_expr.X_add_number); |
9267 | INSERT_OPERAND (CODE, *ip, imm_expr.X_add_number); | |
252b5132 RH |
9268 | imm_expr.X_op = O_absent; |
9269 | s = expr_end; | |
9270 | continue; | |
9271 | ||
9272 | case 'q': /* lower break code */ | |
9273 | my_getExpression (&imm_expr, s); | |
9274 | check_absolute_expr (ip, &imm_expr); | |
a9e24354 TS |
9275 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE2) |
9276 | as_warn (_("Lower code for %s not in range 0..1023 (%lu)"), | |
9277 | ip->insn_mo->name, | |
bf12938e RS |
9278 | (unsigned long) imm_expr.X_add_number); |
9279 | INSERT_OPERAND (CODE2, *ip, imm_expr.X_add_number); | |
252b5132 RH |
9280 | imm_expr.X_op = O_absent; |
9281 | s = expr_end; | |
9282 | continue; | |
9283 | ||
4372b673 | 9284 | case 'B': /* 20-bit syscall/break code. */ |
156c2f8b | 9285 | my_getExpression (&imm_expr, s); |
156c2f8b | 9286 | check_absolute_expr (ip, &imm_expr); |
793b27f4 | 9287 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE20) |
a9e24354 TS |
9288 | as_warn (_("Code for %s not in range 0..1048575 (%lu)"), |
9289 | ip->insn_mo->name, | |
793b27f4 | 9290 | (unsigned long) imm_expr.X_add_number); |
bf12938e | 9291 | INSERT_OPERAND (CODE20, *ip, imm_expr.X_add_number); |
252b5132 RH |
9292 | imm_expr.X_op = O_absent; |
9293 | s = expr_end; | |
9294 | continue; | |
9295 | ||
98d3f06f | 9296 | case 'C': /* Coprocessor code */ |
beae10d5 | 9297 | my_getExpression (&imm_expr, s); |
252b5132 | 9298 | check_absolute_expr (ip, &imm_expr); |
a9e24354 | 9299 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_COPZ) |
252b5132 | 9300 | { |
793b27f4 TS |
9301 | as_warn (_("Coproccesor code > 25 bits (%lu)"), |
9302 | (unsigned long) imm_expr.X_add_number); | |
a9e24354 | 9303 | imm_expr.X_add_number &= OP_MASK_COPZ; |
252b5132 | 9304 | } |
a9e24354 | 9305 | INSERT_OPERAND (COPZ, *ip, imm_expr.X_add_number); |
beae10d5 KH |
9306 | imm_expr.X_op = O_absent; |
9307 | s = expr_end; | |
9308 | continue; | |
252b5132 | 9309 | |
4372b673 NC |
9310 | case 'J': /* 19-bit wait code. */ |
9311 | my_getExpression (&imm_expr, s); | |
9312 | check_absolute_expr (ip, &imm_expr); | |
793b27f4 | 9313 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_CODE19) |
a9e24354 TS |
9314 | { |
9315 | as_warn (_("Illegal 19-bit code (%lu)"), | |
9316 | (unsigned long) imm_expr.X_add_number); | |
9317 | imm_expr.X_add_number &= OP_MASK_CODE19; | |
9318 | } | |
bf12938e | 9319 | INSERT_OPERAND (CODE19, *ip, imm_expr.X_add_number); |
4372b673 NC |
9320 | imm_expr.X_op = O_absent; |
9321 | s = expr_end; | |
9322 | continue; | |
9323 | ||
707bfff6 | 9324 | case 'P': /* Performance register. */ |
beae10d5 | 9325 | my_getExpression (&imm_expr, s); |
252b5132 | 9326 | check_absolute_expr (ip, &imm_expr); |
beae10d5 | 9327 | if (imm_expr.X_add_number != 0 && imm_expr.X_add_number != 1) |
bf12938e RS |
9328 | as_warn (_("Invalid performance register (%lu)"), |
9329 | (unsigned long) imm_expr.X_add_number); | |
9330 | INSERT_OPERAND (PERFREG, *ip, imm_expr.X_add_number); | |
beae10d5 KH |
9331 | imm_expr.X_op = O_absent; |
9332 | s = expr_end; | |
9333 | continue; | |
252b5132 | 9334 | |
707bfff6 TS |
9335 | case 'G': /* Coprocessor destination register. */ |
9336 | if (((ip->insn_opcode >> OP_SH_OP) & OP_MASK_OP) == OP_OP_COP0) | |
9337 | ok = reg_lookup (&s, RTYPE_NUM | RTYPE_CP0, ®no); | |
9338 | else | |
9339 | ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, ®no); | |
a9e24354 | 9340 | INSERT_OPERAND (RD, *ip, regno); |
707bfff6 TS |
9341 | if (ok) |
9342 | { | |
9343 | lastregno = regno; | |
9344 | continue; | |
9345 | } | |
9346 | else | |
9347 | break; | |
9348 | ||
252b5132 RH |
9349 | case 'b': /* base register */ |
9350 | case 'd': /* destination register */ | |
9351 | case 's': /* source register */ | |
9352 | case 't': /* target register */ | |
9353 | case 'r': /* both target and source */ | |
9354 | case 'v': /* both dest and source */ | |
9355 | case 'w': /* both dest and target */ | |
9356 | case 'E': /* coprocessor target register */ | |
af7ee8bf | 9357 | case 'K': /* 'rdhwr' destination register */ |
252b5132 RH |
9358 | case 'x': /* ignore register name */ |
9359 | case 'z': /* must be zero register */ | |
4372b673 | 9360 | case 'U': /* destination register (clo/clz). */ |
ef2e4d86 | 9361 | case 'g': /* coprocessor destination register */ |
707bfff6 TS |
9362 | s_reset = s; |
9363 | if (*args == 'E' || *args == 'K') | |
9364 | ok = reg_lookup (&s, RTYPE_NUM, ®no); | |
9365 | else | |
9366 | { | |
9367 | ok = reg_lookup (&s, RTYPE_NUM | RTYPE_GP, ®no); | |
741fe287 MR |
9368 | if (regno == AT && mips_opts.at) |
9369 | { | |
9370 | if (mips_opts.at == ATREG) | |
9371 | as_warn (_("used $at without \".set noat\"")); | |
9372 | else | |
9373 | as_warn (_("used $%u with \".set at=$%u\""), | |
9374 | regno, mips_opts.at); | |
9375 | } | |
707bfff6 TS |
9376 | } |
9377 | if (ok) | |
252b5132 | 9378 | { |
252b5132 RH |
9379 | c = *args; |
9380 | if (*s == ' ') | |
f9419b05 | 9381 | ++s; |
252b5132 RH |
9382 | if (args[1] != *s) |
9383 | { | |
9384 | if (c == 'r' || c == 'v' || c == 'w') | |
9385 | { | |
9386 | regno = lastregno; | |
9387 | s = s_reset; | |
f9419b05 | 9388 | ++args; |
252b5132 RH |
9389 | } |
9390 | } | |
9391 | /* 'z' only matches $0. */ | |
9392 | if (c == 'z' && regno != 0) | |
9393 | break; | |
9394 | ||
e7c604dd CM |
9395 | if (c == 's' && !strcmp (ip->insn_mo->name, "jalr")) |
9396 | { | |
9397 | if (regno == lastregno) | |
9398 | { | |
9399 | insn_error = _("source and destinationations must be different"); | |
9400 | continue; | |
9401 | } | |
9402 | if (regno == 31 && lastregno == 0) | |
9403 | { | |
9404 | insn_error = _("a destination register must be supplied"); | |
9405 | continue; | |
9406 | } | |
9407 | } | |
bdaaa2e1 KH |
9408 | /* Now that we have assembled one operand, we use the args string |
9409 | * to figure out where it goes in the instruction. */ | |
252b5132 RH |
9410 | switch (c) |
9411 | { | |
9412 | case 'r': | |
9413 | case 's': | |
9414 | case 'v': | |
9415 | case 'b': | |
bf12938e | 9416 | INSERT_OPERAND (RS, *ip, regno); |
252b5132 RH |
9417 | break; |
9418 | case 'd': | |
9419 | case 'G': | |
af7ee8bf | 9420 | case 'K': |
ef2e4d86 | 9421 | case 'g': |
bf12938e | 9422 | INSERT_OPERAND (RD, *ip, regno); |
252b5132 | 9423 | break; |
4372b673 | 9424 | case 'U': |
bf12938e RS |
9425 | INSERT_OPERAND (RD, *ip, regno); |
9426 | INSERT_OPERAND (RT, *ip, regno); | |
4372b673 | 9427 | break; |
252b5132 RH |
9428 | case 'w': |
9429 | case 't': | |
9430 | case 'E': | |
bf12938e | 9431 | INSERT_OPERAND (RT, *ip, regno); |
252b5132 RH |
9432 | break; |
9433 | case 'x': | |
9434 | /* This case exists because on the r3000 trunc | |
9435 | expands into a macro which requires a gp | |
9436 | register. On the r6000 or r4000 it is | |
9437 | assembled into a single instruction which | |
9438 | ignores the register. Thus the insn version | |
9439 | is MIPS_ISA2 and uses 'x', and the macro | |
9440 | version is MIPS_ISA1 and uses 't'. */ | |
9441 | break; | |
9442 | case 'z': | |
9443 | /* This case is for the div instruction, which | |
9444 | acts differently if the destination argument | |
9445 | is $0. This only matches $0, and is checked | |
9446 | outside the switch. */ | |
9447 | break; | |
9448 | case 'D': | |
9449 | /* Itbl operand; not yet implemented. FIXME ?? */ | |
9450 | break; | |
9451 | /* What about all other operands like 'i', which | |
9452 | can be specified in the opcode table? */ | |
9453 | } | |
9454 | lastregno = regno; | |
9455 | continue; | |
9456 | } | |
252b5132 RH |
9457 | switch (*args++) |
9458 | { | |
9459 | case 'r': | |
9460 | case 'v': | |
bf12938e | 9461 | INSERT_OPERAND (RS, *ip, lastregno); |
252b5132 RH |
9462 | continue; |
9463 | case 'w': | |
bf12938e | 9464 | INSERT_OPERAND (RT, *ip, lastregno); |
252b5132 RH |
9465 | continue; |
9466 | } | |
9467 | break; | |
9468 | ||
deec1734 CD |
9469 | case 'O': /* MDMX alignment immediate constant. */ |
9470 | my_getExpression (&imm_expr, s); | |
9471 | check_absolute_expr (ip, &imm_expr); | |
9472 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_ALN) | |
bf12938e RS |
9473 | as_warn ("Improper align amount (%ld), using low bits", |
9474 | (long) imm_expr.X_add_number); | |
9475 | INSERT_OPERAND (ALN, *ip, imm_expr.X_add_number); | |
deec1734 CD |
9476 | imm_expr.X_op = O_absent; |
9477 | s = expr_end; | |
9478 | continue; | |
9479 | ||
9480 | case 'Q': /* MDMX vector, element sel, or const. */ | |
9481 | if (s[0] != '$') | |
9482 | { | |
9483 | /* MDMX Immediate. */ | |
9484 | my_getExpression (&imm_expr, s); | |
9485 | check_absolute_expr (ip, &imm_expr); | |
9486 | if ((unsigned long) imm_expr.X_add_number > OP_MASK_FT) | |
bf12938e RS |
9487 | as_warn (_("Invalid MDMX Immediate (%ld)"), |
9488 | (long) imm_expr.X_add_number); | |
9489 | INSERT_OPERAND (FT, *ip, imm_expr.X_add_number); | |
deec1734 CD |
9490 | if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL)) |
9491 | ip->insn_opcode |= MDMX_FMTSEL_IMM_QH << OP_SH_VSEL; | |
9492 | else | |
9493 | ip->insn_opcode |= MDMX_FMTSEL_IMM_OB << OP_SH_VSEL; | |
deec1734 CD |
9494 | imm_expr.X_op = O_absent; |
9495 | s = expr_end; | |
9496 | continue; | |
9497 | } | |
9498 | /* Not MDMX Immediate. Fall through. */ | |
9499 | case 'X': /* MDMX destination register. */ | |
9500 | case 'Y': /* MDMX source register. */ | |
9501 | case 'Z': /* MDMX target register. */ | |
9502 | is_mdmx = 1; | |
252b5132 RH |
9503 | case 'D': /* floating point destination register */ |
9504 | case 'S': /* floating point source register */ | |
9505 | case 'T': /* floating point target register */ | |
9506 | case 'R': /* floating point source register */ | |
9507 | case 'V': | |
9508 | case 'W': | |
707bfff6 TS |
9509 | rtype = RTYPE_FPU; |
9510 | if (is_mdmx | |
9511 | || (mips_opts.ase_mdmx | |
9512 | && (ip->insn_mo->pinfo & FP_D) | |
9513 | && (ip->insn_mo->pinfo & (INSN_COPROC_MOVE_DELAY | |
9514 | | INSN_COPROC_MEMORY_DELAY | |
9515 | | INSN_LOAD_COPROC_DELAY | |
9516 | | INSN_LOAD_MEMORY_DELAY | |
9517 | | INSN_STORE_MEMORY)))) | |
9518 | rtype |= RTYPE_VEC; | |
252b5132 | 9519 | s_reset = s; |
707bfff6 | 9520 | if (reg_lookup (&s, rtype, ®no)) |
252b5132 | 9521 | { |
252b5132 | 9522 | if ((regno & 1) != 0 |
ca4e0257 | 9523 | && HAVE_32BIT_FPRS |
7455baf8 | 9524 | && ! mips_oddfpreg_ok (ip->insn_mo, argnum)) |
252b5132 RH |
9525 | as_warn (_("Float register should be even, was %d"), |
9526 | regno); | |
9527 | ||
9528 | c = *args; | |
9529 | if (*s == ' ') | |
f9419b05 | 9530 | ++s; |
252b5132 RH |
9531 | if (args[1] != *s) |
9532 | { | |
9533 | if (c == 'V' || c == 'W') | |
9534 | { | |
9535 | regno = lastregno; | |
9536 | s = s_reset; | |
f9419b05 | 9537 | ++args; |
252b5132 RH |
9538 | } |
9539 | } | |
9540 | switch (c) | |
9541 | { | |
9542 | case 'D': | |
deec1734 | 9543 | case 'X': |
bf12938e | 9544 | INSERT_OPERAND (FD, *ip, regno); |
252b5132 RH |
9545 | break; |
9546 | case 'V': | |
9547 | case 'S': | |
deec1734 | 9548 | case 'Y': |
bf12938e | 9549 | INSERT_OPERAND (FS, *ip, regno); |
252b5132 | 9550 | break; |
deec1734 CD |
9551 | case 'Q': |
9552 | /* This is like 'Z', but also needs to fix the MDMX | |
9553 | vector/scalar select bits. Note that the | |
9554 | scalar immediate case is handled above. */ | |
9555 | if (*s == '[') | |
9556 | { | |
9557 | int is_qh = (ip->insn_opcode & (1 << OP_SH_VSEL)); | |
9558 | int max_el = (is_qh ? 3 : 7); | |
9559 | s++; | |
9560 | my_getExpression(&imm_expr, s); | |
9561 | check_absolute_expr (ip, &imm_expr); | |
9562 | s = expr_end; | |
9563 | if (imm_expr.X_add_number > max_el) | |
9564 | as_bad(_("Bad element selector %ld"), | |
9565 | (long) imm_expr.X_add_number); | |
9566 | imm_expr.X_add_number &= max_el; | |
9567 | ip->insn_opcode |= (imm_expr.X_add_number | |
9568 | << (OP_SH_VSEL + | |
9569 | (is_qh ? 2 : 1))); | |
01a3f561 | 9570 | imm_expr.X_op = O_absent; |
deec1734 CD |
9571 | if (*s != ']') |
9572 | as_warn(_("Expecting ']' found '%s'"), s); | |
9573 | else | |
9574 | s++; | |
9575 | } | |
9576 | else | |
9577 | { | |
9578 | if (ip->insn_opcode & (OP_MASK_VSEL << OP_SH_VSEL)) | |
9579 | ip->insn_opcode |= (MDMX_FMTSEL_VEC_QH | |
9580 | << OP_SH_VSEL); | |
9581 | else | |
9582 | ip->insn_opcode |= (MDMX_FMTSEL_VEC_OB << | |
9583 | OP_SH_VSEL); | |
9584 | } | |
9585 | /* Fall through */ | |
252b5132 RH |
9586 | case 'W': |
9587 | case 'T': | |
deec1734 | 9588 | case 'Z': |
bf12938e | 9589 | INSERT_OPERAND (FT, *ip, regno); |
252b5132 RH |
9590 | break; |
9591 | case 'R': | |
bf12938e | 9592 | INSERT_OPERAND (FR, *ip, regno); |
252b5132 RH |
9593 | break; |
9594 | } | |
9595 | lastregno = regno; | |
9596 | continue; | |
9597 | } | |
9598 | ||
252b5132 RH |
9599 | switch (*args++) |
9600 | { | |
9601 | case 'V': | |
bf12938e | 9602 | INSERT_OPERAND (FS, *ip, lastregno); |
252b5132 RH |
9603 | continue; |
9604 | case 'W': | |
bf12938e | 9605 | INSERT_OPERAND (FT, *ip, lastregno); |
252b5132 RH |
9606 | continue; |
9607 | } | |
9608 | break; | |
9609 | ||
9610 | case 'I': | |
9611 | my_getExpression (&imm_expr, s); | |
9612 | if (imm_expr.X_op != O_big | |
9613 | && imm_expr.X_op != O_constant) | |
9614 | insn_error = _("absolute expression required"); | |
9ee2a2d4 MR |
9615 | if (HAVE_32BIT_GPRS) |
9616 | normalize_constant_expr (&imm_expr); | |
252b5132 RH |
9617 | s = expr_end; |
9618 | continue; | |
9619 | ||
9620 | case 'A': | |
9621 | my_getExpression (&offset_expr, s); | |
2051e8c4 | 9622 | normalize_address_expr (&offset_expr); |
f6688943 | 9623 | *imm_reloc = BFD_RELOC_32; |
252b5132 RH |
9624 | s = expr_end; |
9625 | continue; | |
9626 | ||
9627 | case 'F': | |
9628 | case 'L': | |
9629 | case 'f': | |
9630 | case 'l': | |
9631 | { | |
9632 | int f64; | |
ca4e0257 | 9633 | int using_gprs; |
252b5132 RH |
9634 | char *save_in; |
9635 | char *err; | |
9636 | unsigned char temp[8]; | |
9637 | int len; | |
9638 | unsigned int length; | |
9639 | segT seg; | |
9640 | subsegT subseg; | |
9641 | char *p; | |
9642 | ||
9643 | /* These only appear as the last operand in an | |
9644 | instruction, and every instruction that accepts | |
9645 | them in any variant accepts them in all variants. | |
9646 | This means we don't have to worry about backing out | |
9647 | any changes if the instruction does not match. | |
9648 | ||
9649 | The difference between them is the size of the | |
9650 | floating point constant and where it goes. For 'F' | |
9651 | and 'L' the constant is 64 bits; for 'f' and 'l' it | |
9652 | is 32 bits. Where the constant is placed is based | |
9653 | on how the MIPS assembler does things: | |
9654 | F -- .rdata | |
9655 | L -- .lit8 | |
9656 | f -- immediate value | |
9657 | l -- .lit4 | |
9658 | ||
9659 | The .lit4 and .lit8 sections are only used if | |
9660 | permitted by the -G argument. | |
9661 | ||
ca4e0257 RS |
9662 | The code below needs to know whether the target register |
9663 | is 32 or 64 bits wide. It relies on the fact 'f' and | |
9664 | 'F' are used with GPR-based instructions and 'l' and | |
9665 | 'L' are used with FPR-based instructions. */ | |
252b5132 RH |
9666 | |
9667 | f64 = *args == 'F' || *args == 'L'; | |
ca4e0257 | 9668 | using_gprs = *args == 'F' || *args == 'f'; |
252b5132 RH |
9669 | |
9670 | save_in = input_line_pointer; | |
9671 | input_line_pointer = s; | |
9672 | err = md_atof (f64 ? 'd' : 'f', (char *) temp, &len); | |
9673 | length = len; | |
9674 | s = input_line_pointer; | |
9675 | input_line_pointer = save_in; | |
9676 | if (err != NULL && *err != '\0') | |
9677 | { | |
9678 | as_bad (_("Bad floating point constant: %s"), err); | |
9679 | memset (temp, '\0', sizeof temp); | |
9680 | length = f64 ? 8 : 4; | |
9681 | } | |
9682 | ||
156c2f8b | 9683 | assert (length == (unsigned) (f64 ? 8 : 4)); |
252b5132 RH |
9684 | |
9685 | if (*args == 'f' | |
9686 | || (*args == 'l' | |
3e722fb5 | 9687 | && (g_switch_value < 4 |
252b5132 RH |
9688 | || (temp[0] == 0 && temp[1] == 0) |
9689 | || (temp[2] == 0 && temp[3] == 0)))) | |
9690 | { | |
9691 | imm_expr.X_op = O_constant; | |
9692 | if (! target_big_endian) | |
9693 | imm_expr.X_add_number = bfd_getl32 (temp); | |
9694 | else | |
9695 | imm_expr.X_add_number = bfd_getb32 (temp); | |
9696 | } | |
9697 | else if (length > 4 | |
119d663a | 9698 | && ! mips_disable_float_construction |
ca4e0257 RS |
9699 | /* Constants can only be constructed in GPRs and |
9700 | copied to FPRs if the GPRs are at least as wide | |
9701 | as the FPRs. Force the constant into memory if | |
9702 | we are using 64-bit FPRs but the GPRs are only | |
9703 | 32 bits wide. */ | |
9704 | && (using_gprs | |
9705 | || ! (HAVE_64BIT_FPRS && HAVE_32BIT_GPRS)) | |
252b5132 RH |
9706 | && ((temp[0] == 0 && temp[1] == 0) |
9707 | || (temp[2] == 0 && temp[3] == 0)) | |
9708 | && ((temp[4] == 0 && temp[5] == 0) | |
9709 | || (temp[6] == 0 && temp[7] == 0))) | |
9710 | { | |
ca4e0257 RS |
9711 | /* The value is simple enough to load with a couple of |
9712 | instructions. If using 32-bit registers, set | |
9713 | imm_expr to the high order 32 bits and offset_expr to | |
9714 | the low order 32 bits. Otherwise, set imm_expr to | |
9715 | the entire 64 bit constant. */ | |
9716 | if (using_gprs ? HAVE_32BIT_GPRS : HAVE_32BIT_FPRS) | |
252b5132 RH |
9717 | { |
9718 | imm_expr.X_op = O_constant; | |
9719 | offset_expr.X_op = O_constant; | |
9720 | if (! target_big_endian) | |
9721 | { | |
9722 | imm_expr.X_add_number = bfd_getl32 (temp + 4); | |
9723 | offset_expr.X_add_number = bfd_getl32 (temp); | |
9724 | } | |
9725 | else | |
9726 | { | |
9727 | imm_expr.X_add_number = bfd_getb32 (temp); | |
9728 | offset_expr.X_add_number = bfd_getb32 (temp + 4); | |
9729 | } | |
9730 | if (offset_expr.X_add_number == 0) | |
9731 | offset_expr.X_op = O_absent; | |
9732 | } | |
9733 | else if (sizeof (imm_expr.X_add_number) > 4) | |
9734 | { | |
9735 | imm_expr.X_op = O_constant; | |
9736 | if (! target_big_endian) | |
9737 | imm_expr.X_add_number = bfd_getl64 (temp); | |
9738 | else | |
9739 | imm_expr.X_add_number = bfd_getb64 (temp); | |
9740 | } | |
9741 | else | |
9742 | { | |
9743 | imm_expr.X_op = O_big; | |
9744 | imm_expr.X_add_number = 4; | |
9745 | if (! target_big_endian) | |
9746 | { | |
9747 | generic_bignum[0] = bfd_getl16 (temp); | |
9748 | generic_bignum[1] = bfd_getl16 (temp + 2); | |
9749 | generic_bignum[2] = bfd_getl16 (temp + 4); | |
9750 | generic_bignum[3] = bfd_getl16 (temp + 6); | |
9751 | } | |
9752 | else | |
9753 | { | |
9754 | generic_bignum[0] = bfd_getb16 (temp + 6); | |
9755 | generic_bignum[1] = bfd_getb16 (temp + 4); | |
9756 | generic_bignum[2] = bfd_getb16 (temp + 2); | |
9757 | generic_bignum[3] = bfd_getb16 (temp); | |
9758 | } | |
9759 | } | |
9760 | } | |
9761 | else | |
9762 | { | |
9763 | const char *newname; | |
9764 | segT new_seg; | |
9765 | ||
9766 | /* Switch to the right section. */ | |
9767 | seg = now_seg; | |
9768 | subseg = now_subseg; | |
9769 | switch (*args) | |
9770 | { | |
9771 | default: /* unused default case avoids warnings. */ | |
9772 | case 'L': | |
9773 | newname = RDATA_SECTION_NAME; | |
3e722fb5 | 9774 | if (g_switch_value >= 8) |
252b5132 RH |
9775 | newname = ".lit8"; |
9776 | break; | |
9777 | case 'F': | |
3e722fb5 | 9778 | newname = RDATA_SECTION_NAME; |
252b5132 RH |
9779 | break; |
9780 | case 'l': | |
4d0d148d | 9781 | assert (g_switch_value >= 4); |
252b5132 RH |
9782 | newname = ".lit4"; |
9783 | break; | |
9784 | } | |
9785 | new_seg = subseg_new (newname, (subsegT) 0); | |
f43abd2b | 9786 | if (IS_ELF) |
252b5132 RH |
9787 | bfd_set_section_flags (stdoutput, new_seg, |
9788 | (SEC_ALLOC | |
9789 | | SEC_LOAD | |
9790 | | SEC_READONLY | |
9791 | | SEC_DATA)); | |
9792 | frag_align (*args == 'l' ? 2 : 3, 0, 0); | |
c41e87e3 | 9793 | if (IS_ELF && strncmp (TARGET_OS, "elf", 3) != 0) |
252b5132 RH |
9794 | record_alignment (new_seg, 4); |
9795 | else | |
9796 | record_alignment (new_seg, *args == 'l' ? 2 : 3); | |
9797 | if (seg == now_seg) | |
9798 | as_bad (_("Can't use floating point insn in this section")); | |
9799 | ||
9800 | /* Set the argument to the current address in the | |
9801 | section. */ | |
9802 | offset_expr.X_op = O_symbol; | |
9803 | offset_expr.X_add_symbol = | |
9804 | symbol_new ("L0\001", now_seg, | |
9805 | (valueT) frag_now_fix (), frag_now); | |
9806 | offset_expr.X_add_number = 0; | |
9807 | ||
9808 | /* Put the floating point number into the section. */ | |
9809 | p = frag_more ((int) length); | |
9810 | memcpy (p, temp, length); | |
9811 | ||
9812 | /* Switch back to the original section. */ | |
9813 | subseg_set (seg, subseg); | |
9814 | } | |
9815 | } | |
9816 | continue; | |
9817 | ||
9818 | case 'i': /* 16 bit unsigned immediate */ | |
9819 | case 'j': /* 16 bit signed immediate */ | |
f6688943 | 9820 | *imm_reloc = BFD_RELOC_LO16; |
5e0116d5 | 9821 | if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0) |
252b5132 RH |
9822 | { |
9823 | int more; | |
5e0116d5 RS |
9824 | offsetT minval, maxval; |
9825 | ||
9826 | more = (insn + 1 < &mips_opcodes[NUMOPCODES] | |
9827 | && strcmp (insn->name, insn[1].name) == 0); | |
9828 | ||
9829 | /* If the expression was written as an unsigned number, | |
9830 | only treat it as signed if there are no more | |
9831 | alternatives. */ | |
9832 | if (more | |
9833 | && *args == 'j' | |
9834 | && sizeof (imm_expr.X_add_number) <= 4 | |
9835 | && imm_expr.X_op == O_constant | |
9836 | && imm_expr.X_add_number < 0 | |
9837 | && imm_expr.X_unsigned | |
9838 | && HAVE_64BIT_GPRS) | |
9839 | break; | |
9840 | ||
9841 | /* For compatibility with older assemblers, we accept | |
9842 | 0x8000-0xffff as signed 16-bit numbers when only | |
9843 | signed numbers are allowed. */ | |
9844 | if (*args == 'i') | |
9845 | minval = 0, maxval = 0xffff; | |
9846 | else if (more) | |
9847 | minval = -0x8000, maxval = 0x7fff; | |
252b5132 | 9848 | else |
5e0116d5 RS |
9849 | minval = -0x8000, maxval = 0xffff; |
9850 | ||
9851 | if (imm_expr.X_op != O_constant | |
9852 | || imm_expr.X_add_number < minval | |
9853 | || imm_expr.X_add_number > maxval) | |
252b5132 RH |
9854 | { |
9855 | if (more) | |
9856 | break; | |
2ae7e77b AH |
9857 | if (imm_expr.X_op == O_constant |
9858 | || imm_expr.X_op == O_big) | |
5e0116d5 | 9859 | as_bad (_("expression out of range")); |
252b5132 RH |
9860 | } |
9861 | } | |
9862 | s = expr_end; | |
9863 | continue; | |
9864 | ||
9865 | case 'o': /* 16 bit offset */ | |
5e0116d5 RS |
9866 | /* Check whether there is only a single bracketed expression |
9867 | left. If so, it must be the base register and the | |
9868 | constant must be zero. */ | |
9869 | if (*s == '(' && strchr (s + 1, '(') == 0) | |
9870 | { | |
9871 | offset_expr.X_op = O_constant; | |
9872 | offset_expr.X_add_number = 0; | |
9873 | continue; | |
9874 | } | |
252b5132 RH |
9875 | |
9876 | /* If this value won't fit into a 16 bit offset, then go | |
9877 | find a macro that will generate the 32 bit offset | |
afdbd6d0 | 9878 | code pattern. */ |
5e0116d5 | 9879 | if (my_getSmallExpression (&offset_expr, offset_reloc, s) == 0 |
252b5132 RH |
9880 | && (offset_expr.X_op != O_constant |
9881 | || offset_expr.X_add_number >= 0x8000 | |
afdbd6d0 | 9882 | || offset_expr.X_add_number < -0x8000)) |
252b5132 RH |
9883 | break; |
9884 | ||
252b5132 RH |
9885 | s = expr_end; |
9886 | continue; | |
9887 | ||
9888 | case 'p': /* pc relative offset */ | |
0b25d3e6 | 9889 | *offset_reloc = BFD_RELOC_16_PCREL_S2; |
252b5132 RH |
9890 | my_getExpression (&offset_expr, s); |
9891 | s = expr_end; | |
9892 | continue; | |
9893 | ||
9894 | case 'u': /* upper 16 bits */ | |
5e0116d5 RS |
9895 | if (my_getSmallExpression (&imm_expr, imm_reloc, s) == 0 |
9896 | && imm_expr.X_op == O_constant | |
9897 | && (imm_expr.X_add_number < 0 | |
9898 | || imm_expr.X_add_number >= 0x10000)) | |
252b5132 RH |
9899 | as_bad (_("lui expression not in range 0..65535")); |
9900 | s = expr_end; | |
9901 | continue; | |
9902 | ||
9903 | case 'a': /* 26 bit address */ | |
9904 | my_getExpression (&offset_expr, s); | |
9905 | s = expr_end; | |
f6688943 | 9906 | *offset_reloc = BFD_RELOC_MIPS_JMP; |
252b5132 RH |
9907 | continue; |
9908 | ||
9909 | case 'N': /* 3 bit branch condition code */ | |
9910 | case 'M': /* 3 bit compare condition code */ | |
707bfff6 TS |
9911 | rtype = RTYPE_CCC; |
9912 | if (ip->insn_mo->pinfo & (FP_D| FP_S)) | |
9913 | rtype |= RTYPE_FCC; | |
9914 | if (!reg_lookup (&s, rtype, ®no)) | |
252b5132 | 9915 | break; |
30c378fd CD |
9916 | if ((strcmp(str + strlen(str) - 3, ".ps") == 0 |
9917 | || strcmp(str + strlen(str) - 5, "any2f") == 0 | |
9918 | || strcmp(str + strlen(str) - 5, "any2t") == 0) | |
9919 | && (regno & 1) != 0) | |
9920 | as_warn(_("Condition code register should be even for %s, was %d"), | |
9921 | str, regno); | |
9922 | if ((strcmp(str + strlen(str) - 5, "any4f") == 0 | |
9923 | || strcmp(str + strlen(str) - 5, "any4t") == 0) | |
9924 | && (regno & 3) != 0) | |
9925 | as_warn(_("Condition code register should be 0 or 4 for %s, was %d"), | |
9926 | str, regno); | |
252b5132 | 9927 | if (*args == 'N') |
bf12938e | 9928 | INSERT_OPERAND (BCC, *ip, regno); |
252b5132 | 9929 | else |
bf12938e | 9930 | INSERT_OPERAND (CCC, *ip, regno); |
beae10d5 | 9931 | continue; |
252b5132 | 9932 | |
156c2f8b NC |
9933 | case 'H': |
9934 | if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X')) | |
9935 | s += 2; | |
3882b010 | 9936 | if (ISDIGIT (*s)) |
156c2f8b NC |
9937 | { |
9938 | c = 0; | |
9939 | do | |
9940 | { | |
9941 | c *= 10; | |
9942 | c += *s - '0'; | |
9943 | ++s; | |
9944 | } | |
3882b010 | 9945 | while (ISDIGIT (*s)); |
156c2f8b NC |
9946 | } |
9947 | else | |
9948 | c = 8; /* Invalid sel value. */ | |
9949 | ||
9950 | if (c > 7) | |
9951 | as_bad (_("invalid coprocessor sub-selection value (0-7)")); | |
9952 | ip->insn_opcode |= c; | |
9953 | continue; | |
9954 | ||
60b63b72 RS |
9955 | case 'e': |
9956 | /* Must be at least one digit. */ | |
9957 | my_getExpression (&imm_expr, s); | |
9958 | check_absolute_expr (ip, &imm_expr); | |
9959 | ||
9960 | if ((unsigned long) imm_expr.X_add_number | |
9961 | > (unsigned long) OP_MASK_VECBYTE) | |
9962 | { | |
9963 | as_bad (_("bad byte vector index (%ld)"), | |
9964 | (long) imm_expr.X_add_number); | |
9965 | imm_expr.X_add_number = 0; | |
9966 | } | |
9967 | ||
bf12938e | 9968 | INSERT_OPERAND (VECBYTE, *ip, imm_expr.X_add_number); |
60b63b72 RS |
9969 | imm_expr.X_op = O_absent; |
9970 | s = expr_end; | |
9971 | continue; | |
9972 | ||
9973 | case '%': | |
9974 | my_getExpression (&imm_expr, s); | |
9975 | check_absolute_expr (ip, &imm_expr); | |
9976 | ||
9977 | if ((unsigned long) imm_expr.X_add_number | |
9978 | > (unsigned long) OP_MASK_VECALIGN) | |
9979 | { | |
9980 | as_bad (_("bad byte vector index (%ld)"), | |
9981 | (long) imm_expr.X_add_number); | |
9982 | imm_expr.X_add_number = 0; | |
9983 | } | |
9984 | ||
bf12938e | 9985 | INSERT_OPERAND (VECALIGN, *ip, imm_expr.X_add_number); |
60b63b72 RS |
9986 | imm_expr.X_op = O_absent; |
9987 | s = expr_end; | |
9988 | continue; | |
9989 | ||
252b5132 RH |
9990 | default: |
9991 | as_bad (_("bad char = '%c'\n"), *args); | |
9992 | internalError (); | |
9993 | } | |
9994 | break; | |
9995 | } | |
9996 | /* Args don't match. */ | |
9997 | if (insn + 1 < &mips_opcodes[NUMOPCODES] && | |
9998 | !strcmp (insn->name, insn[1].name)) | |
9999 | { | |
10000 | ++insn; | |
10001 | s = argsStart; | |
268f6bed | 10002 | insn_error = _("illegal operands"); |
252b5132 RH |
10003 | continue; |
10004 | } | |
268f6bed | 10005 | if (save_c) |
570de991 | 10006 | *(--argsStart) = save_c; |
252b5132 RH |
10007 | insn_error = _("illegal operands"); |
10008 | return; | |
10009 | } | |
10010 | } | |
10011 | ||
0499d65b TS |
10012 | #define SKIP_SPACE_TABS(S) { while (*(S) == ' ' || *(S) == '\t') ++(S); } |
10013 | ||
252b5132 RH |
10014 | /* This routine assembles an instruction into its binary format when |
10015 | assembling for the mips16. As a side effect, it sets one of the | |
10016 | global variables imm_reloc or offset_reloc to the type of | |
10017 | relocation to do if one of the operands is an address expression. | |
10018 | It also sets mips16_small and mips16_ext if the user explicitly | |
10019 | requested a small or extended instruction. */ | |
10020 | ||
10021 | static void | |
17a2f251 | 10022 | mips16_ip (char *str, struct mips_cl_insn *ip) |
252b5132 RH |
10023 | { |
10024 | char *s; | |
10025 | const char *args; | |
10026 | struct mips_opcode *insn; | |
10027 | char *argsstart; | |
10028 | unsigned int regno; | |
10029 | unsigned int lastregno = 0; | |
10030 | char *s_reset; | |
d6f16593 | 10031 | size_t i; |
252b5132 RH |
10032 | |
10033 | insn_error = NULL; | |
10034 | ||
b34976b6 AM |
10035 | mips16_small = FALSE; |
10036 | mips16_ext = FALSE; | |
252b5132 | 10037 | |
3882b010 | 10038 | for (s = str; ISLOWER (*s); ++s) |
252b5132 RH |
10039 | ; |
10040 | switch (*s) | |
10041 | { | |
10042 | case '\0': | |
10043 | break; | |
10044 | ||
10045 | case ' ': | |
10046 | *s++ = '\0'; | |
10047 | break; | |
10048 | ||
10049 | case '.': | |
10050 | if (s[1] == 't' && s[2] == ' ') | |
10051 | { | |
10052 | *s = '\0'; | |
b34976b6 | 10053 | mips16_small = TRUE; |
252b5132 RH |
10054 | s += 3; |
10055 | break; | |
10056 | } | |
10057 | else if (s[1] == 'e' && s[2] == ' ') | |
10058 | { | |
10059 | *s = '\0'; | |
b34976b6 | 10060 | mips16_ext = TRUE; |
252b5132 RH |
10061 | s += 3; |
10062 | break; | |
10063 | } | |
10064 | /* Fall through. */ | |
10065 | default: | |
10066 | insn_error = _("unknown opcode"); | |
10067 | return; | |
10068 | } | |
10069 | ||
10070 | if (mips_opts.noautoextend && ! mips16_ext) | |
b34976b6 | 10071 | mips16_small = TRUE; |
252b5132 RH |
10072 | |
10073 | if ((insn = (struct mips_opcode *) hash_find (mips16_op_hash, str)) == NULL) | |
10074 | { | |
10075 | insn_error = _("unrecognized opcode"); | |
10076 | return; | |
10077 | } | |
10078 | ||
10079 | argsstart = s; | |
10080 | for (;;) | |
10081 | { | |
9b3f89ee TS |
10082 | bfd_boolean ok; |
10083 | ||
252b5132 RH |
10084 | assert (strcmp (insn->name, str) == 0); |
10085 | ||
037b32b9 | 10086 | ok = is_opcode_valid_16 (insn); |
9b3f89ee TS |
10087 | if (! ok) |
10088 | { | |
10089 | if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] | |
10090 | && strcmp (insn->name, insn[1].name) == 0) | |
10091 | { | |
10092 | ++insn; | |
10093 | continue; | |
10094 | } | |
10095 | else | |
10096 | { | |
10097 | if (!insn_error) | |
10098 | { | |
10099 | static char buf[100]; | |
10100 | sprintf (buf, | |
10101 | _("opcode not supported on this processor: %s (%s)"), | |
10102 | mips_cpu_info_from_arch (mips_opts.arch)->name, | |
10103 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
10104 | insn_error = buf; | |
10105 | } | |
10106 | return; | |
10107 | } | |
10108 | } | |
10109 | ||
1e915849 | 10110 | create_insn (ip, insn); |
252b5132 | 10111 | imm_expr.X_op = O_absent; |
f6688943 TS |
10112 | imm_reloc[0] = BFD_RELOC_UNUSED; |
10113 | imm_reloc[1] = BFD_RELOC_UNUSED; | |
10114 | imm_reloc[2] = BFD_RELOC_UNUSED; | |
5f74bc13 | 10115 | imm2_expr.X_op = O_absent; |
252b5132 | 10116 | offset_expr.X_op = O_absent; |
f6688943 TS |
10117 | offset_reloc[0] = BFD_RELOC_UNUSED; |
10118 | offset_reloc[1] = BFD_RELOC_UNUSED; | |
10119 | offset_reloc[2] = BFD_RELOC_UNUSED; | |
252b5132 RH |
10120 | for (args = insn->args; 1; ++args) |
10121 | { | |
10122 | int c; | |
10123 | ||
10124 | if (*s == ' ') | |
10125 | ++s; | |
10126 | ||
10127 | /* In this switch statement we call break if we did not find | |
10128 | a match, continue if we did find a match, or return if we | |
10129 | are done. */ | |
10130 | ||
10131 | c = *args; | |
10132 | switch (c) | |
10133 | { | |
10134 | case '\0': | |
10135 | if (*s == '\0') | |
10136 | { | |
10137 | /* Stuff the immediate value in now, if we can. */ | |
10138 | if (imm_expr.X_op == O_constant | |
f6688943 | 10139 | && *imm_reloc > BFD_RELOC_UNUSED |
738e5348 RS |
10140 | && *imm_reloc != BFD_RELOC_MIPS16_GOT16 |
10141 | && *imm_reloc != BFD_RELOC_MIPS16_CALL16 | |
252b5132 RH |
10142 | && insn->pinfo != INSN_MACRO) |
10143 | { | |
d6f16593 MR |
10144 | valueT tmp; |
10145 | ||
10146 | switch (*offset_reloc) | |
10147 | { | |
10148 | case BFD_RELOC_MIPS16_HI16_S: | |
10149 | tmp = (imm_expr.X_add_number + 0x8000) >> 16; | |
10150 | break; | |
10151 | ||
10152 | case BFD_RELOC_MIPS16_HI16: | |
10153 | tmp = imm_expr.X_add_number >> 16; | |
10154 | break; | |
10155 | ||
10156 | case BFD_RELOC_MIPS16_LO16: | |
10157 | tmp = ((imm_expr.X_add_number + 0x8000) & 0xffff) | |
10158 | - 0x8000; | |
10159 | break; | |
10160 | ||
10161 | case BFD_RELOC_UNUSED: | |
10162 | tmp = imm_expr.X_add_number; | |
10163 | break; | |
10164 | ||
10165 | default: | |
10166 | internalError (); | |
10167 | } | |
10168 | *offset_reloc = BFD_RELOC_UNUSED; | |
10169 | ||
c4e7957c | 10170 | mips16_immed (NULL, 0, *imm_reloc - BFD_RELOC_UNUSED, |
d6f16593 | 10171 | tmp, TRUE, mips16_small, |
252b5132 RH |
10172 | mips16_ext, &ip->insn_opcode, |
10173 | &ip->use_extend, &ip->extend); | |
10174 | imm_expr.X_op = O_absent; | |
f6688943 | 10175 | *imm_reloc = BFD_RELOC_UNUSED; |
252b5132 RH |
10176 | } |
10177 | ||
10178 | return; | |
10179 | } | |
10180 | break; | |
10181 | ||
10182 | case ',': | |
10183 | if (*s++ == c) | |
10184 | continue; | |
10185 | s--; | |
10186 | switch (*++args) | |
10187 | { | |
10188 | case 'v': | |
bf12938e | 10189 | MIPS16_INSERT_OPERAND (RX, *ip, lastregno); |
252b5132 RH |
10190 | continue; |
10191 | case 'w': | |
bf12938e | 10192 | MIPS16_INSERT_OPERAND (RY, *ip, lastregno); |
252b5132 RH |
10193 | continue; |
10194 | } | |
10195 | break; | |
10196 | ||
10197 | case '(': | |
10198 | case ')': | |
10199 | if (*s++ == c) | |
10200 | continue; | |
10201 | break; | |
10202 | ||
10203 | case 'v': | |
10204 | case 'w': | |
10205 | if (s[0] != '$') | |
10206 | { | |
10207 | if (c == 'v') | |
bf12938e | 10208 | MIPS16_INSERT_OPERAND (RX, *ip, lastregno); |
252b5132 | 10209 | else |
bf12938e | 10210 | MIPS16_INSERT_OPERAND (RY, *ip, lastregno); |
252b5132 RH |
10211 | ++args; |
10212 | continue; | |
10213 | } | |
10214 | /* Fall through. */ | |
10215 | case 'x': | |
10216 | case 'y': | |
10217 | case 'z': | |
10218 | case 'Z': | |
10219 | case '0': | |
10220 | case 'S': | |
10221 | case 'R': | |
10222 | case 'X': | |
10223 | case 'Y': | |
707bfff6 TS |
10224 | s_reset = s; |
10225 | if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, ®no)) | |
252b5132 | 10226 | { |
707bfff6 | 10227 | if (c == 'v' || c == 'w') |
85b51719 | 10228 | { |
707bfff6 | 10229 | if (c == 'v') |
a9e24354 | 10230 | MIPS16_INSERT_OPERAND (RX, *ip, lastregno); |
707bfff6 | 10231 | else |
a9e24354 | 10232 | MIPS16_INSERT_OPERAND (RY, *ip, lastregno); |
707bfff6 TS |
10233 | ++args; |
10234 | continue; | |
85b51719 | 10235 | } |
707bfff6 | 10236 | break; |
252b5132 RH |
10237 | } |
10238 | ||
10239 | if (*s == ' ') | |
10240 | ++s; | |
10241 | if (args[1] != *s) | |
10242 | { | |
10243 | if (c == 'v' || c == 'w') | |
10244 | { | |
10245 | regno = mips16_to_32_reg_map[lastregno]; | |
10246 | s = s_reset; | |
f9419b05 | 10247 | ++args; |
252b5132 RH |
10248 | } |
10249 | } | |
10250 | ||
10251 | switch (c) | |
10252 | { | |
10253 | case 'x': | |
10254 | case 'y': | |
10255 | case 'z': | |
10256 | case 'v': | |
10257 | case 'w': | |
10258 | case 'Z': | |
10259 | regno = mips32_to_16_reg_map[regno]; | |
10260 | break; | |
10261 | ||
10262 | case '0': | |
10263 | if (regno != 0) | |
10264 | regno = ILLEGAL_REG; | |
10265 | break; | |
10266 | ||
10267 | case 'S': | |
10268 | if (regno != SP) | |
10269 | regno = ILLEGAL_REG; | |
10270 | break; | |
10271 | ||
10272 | case 'R': | |
10273 | if (regno != RA) | |
10274 | regno = ILLEGAL_REG; | |
10275 | break; | |
10276 | ||
10277 | case 'X': | |
10278 | case 'Y': | |
741fe287 MR |
10279 | if (regno == AT && mips_opts.at) |
10280 | { | |
10281 | if (mips_opts.at == ATREG) | |
10282 | as_warn (_("used $at without \".set noat\"")); | |
10283 | else | |
10284 | as_warn (_("used $%u with \".set at=$%u\""), | |
10285 | regno, mips_opts.at); | |
10286 | } | |
252b5132 RH |
10287 | break; |
10288 | ||
10289 | default: | |
10290 | internalError (); | |
10291 | } | |
10292 | ||
10293 | if (regno == ILLEGAL_REG) | |
10294 | break; | |
10295 | ||
10296 | switch (c) | |
10297 | { | |
10298 | case 'x': | |
10299 | case 'v': | |
bf12938e | 10300 | MIPS16_INSERT_OPERAND (RX, *ip, regno); |
252b5132 RH |
10301 | break; |
10302 | case 'y': | |
10303 | case 'w': | |
bf12938e | 10304 | MIPS16_INSERT_OPERAND (RY, *ip, regno); |
252b5132 RH |
10305 | break; |
10306 | case 'z': | |
bf12938e | 10307 | MIPS16_INSERT_OPERAND (RZ, *ip, regno); |
252b5132 RH |
10308 | break; |
10309 | case 'Z': | |
bf12938e | 10310 | MIPS16_INSERT_OPERAND (MOVE32Z, *ip, regno); |
252b5132 RH |
10311 | case '0': |
10312 | case 'S': | |
10313 | case 'R': | |
10314 | break; | |
10315 | case 'X': | |
bf12938e | 10316 | MIPS16_INSERT_OPERAND (REGR32, *ip, regno); |
252b5132 RH |
10317 | break; |
10318 | case 'Y': | |
10319 | regno = ((regno & 7) << 2) | ((regno & 0x18) >> 3); | |
bf12938e | 10320 | MIPS16_INSERT_OPERAND (REG32R, *ip, regno); |
252b5132 RH |
10321 | break; |
10322 | default: | |
10323 | internalError (); | |
10324 | } | |
10325 | ||
10326 | lastregno = regno; | |
10327 | continue; | |
10328 | ||
10329 | case 'P': | |
10330 | if (strncmp (s, "$pc", 3) == 0) | |
10331 | { | |
10332 | s += 3; | |
10333 | continue; | |
10334 | } | |
10335 | break; | |
10336 | ||
252b5132 RH |
10337 | case '5': |
10338 | case 'H': | |
10339 | case 'W': | |
10340 | case 'D': | |
10341 | case 'j': | |
252b5132 RH |
10342 | case 'V': |
10343 | case 'C': | |
10344 | case 'U': | |
10345 | case 'k': | |
10346 | case 'K': | |
d6f16593 MR |
10347 | i = my_getSmallExpression (&imm_expr, imm_reloc, s); |
10348 | if (i > 0) | |
252b5132 | 10349 | { |
d6f16593 | 10350 | if (imm_expr.X_op != O_constant) |
252b5132 | 10351 | { |
b34976b6 | 10352 | mips16_ext = TRUE; |
b34976b6 | 10353 | ip->use_extend = TRUE; |
252b5132 | 10354 | ip->extend = 0; |
252b5132 | 10355 | } |
d6f16593 MR |
10356 | else |
10357 | { | |
10358 | /* We need to relax this instruction. */ | |
10359 | *offset_reloc = *imm_reloc; | |
10360 | *imm_reloc = (int) BFD_RELOC_UNUSED + c; | |
10361 | } | |
10362 | s = expr_end; | |
10363 | continue; | |
252b5132 | 10364 | } |
d6f16593 MR |
10365 | *imm_reloc = BFD_RELOC_UNUSED; |
10366 | /* Fall through. */ | |
10367 | case '<': | |
10368 | case '>': | |
10369 | case '[': | |
10370 | case ']': | |
10371 | case '4': | |
10372 | case '8': | |
10373 | my_getExpression (&imm_expr, s); | |
252b5132 RH |
10374 | if (imm_expr.X_op == O_register) |
10375 | { | |
10376 | /* What we thought was an expression turned out to | |
10377 | be a register. */ | |
10378 | ||
10379 | if (s[0] == '(' && args[1] == '(') | |
10380 | { | |
10381 | /* It looks like the expression was omitted | |
10382 | before a register indirection, which means | |
10383 | that the expression is implicitly zero. We | |
10384 | still set up imm_expr, so that we handle | |
10385 | explicit extensions correctly. */ | |
10386 | imm_expr.X_op = O_constant; | |
10387 | imm_expr.X_add_number = 0; | |
f6688943 | 10388 | *imm_reloc = (int) BFD_RELOC_UNUSED + c; |
252b5132 RH |
10389 | continue; |
10390 | } | |
10391 | ||
10392 | break; | |
10393 | } | |
10394 | ||
10395 | /* We need to relax this instruction. */ | |
f6688943 | 10396 | *imm_reloc = (int) BFD_RELOC_UNUSED + c; |
252b5132 RH |
10397 | s = expr_end; |
10398 | continue; | |
10399 | ||
10400 | case 'p': | |
10401 | case 'q': | |
10402 | case 'A': | |
10403 | case 'B': | |
10404 | case 'E': | |
10405 | /* We use offset_reloc rather than imm_reloc for the PC | |
10406 | relative operands. This lets macros with both | |
10407 | immediate and address operands work correctly. */ | |
10408 | my_getExpression (&offset_expr, s); | |
10409 | ||
10410 | if (offset_expr.X_op == O_register) | |
10411 | break; | |
10412 | ||
10413 | /* We need to relax this instruction. */ | |
f6688943 | 10414 | *offset_reloc = (int) BFD_RELOC_UNUSED + c; |
252b5132 RH |
10415 | s = expr_end; |
10416 | continue; | |
10417 | ||
10418 | case '6': /* break code */ | |
10419 | my_getExpression (&imm_expr, s); | |
10420 | check_absolute_expr (ip, &imm_expr); | |
10421 | if ((unsigned long) imm_expr.X_add_number > 63) | |
bf12938e RS |
10422 | as_warn (_("Invalid value for `%s' (%lu)"), |
10423 | ip->insn_mo->name, | |
10424 | (unsigned long) imm_expr.X_add_number); | |
10425 | MIPS16_INSERT_OPERAND (IMM6, *ip, imm_expr.X_add_number); | |
252b5132 RH |
10426 | imm_expr.X_op = O_absent; |
10427 | s = expr_end; | |
10428 | continue; | |
10429 | ||
10430 | case 'a': /* 26 bit address */ | |
10431 | my_getExpression (&offset_expr, s); | |
10432 | s = expr_end; | |
f6688943 | 10433 | *offset_reloc = BFD_RELOC_MIPS16_JMP; |
252b5132 RH |
10434 | ip->insn_opcode <<= 16; |
10435 | continue; | |
10436 | ||
10437 | case 'l': /* register list for entry macro */ | |
10438 | case 'L': /* register list for exit macro */ | |
10439 | { | |
10440 | int mask; | |
10441 | ||
10442 | if (c == 'l') | |
10443 | mask = 0; | |
10444 | else | |
10445 | mask = 7 << 3; | |
10446 | while (*s != '\0') | |
10447 | { | |
707bfff6 | 10448 | unsigned int freg, reg1, reg2; |
252b5132 RH |
10449 | |
10450 | while (*s == ' ' || *s == ',') | |
10451 | ++s; | |
707bfff6 | 10452 | if (reg_lookup (&s, RTYPE_GP | RTYPE_NUM, ®1)) |
252b5132 | 10453 | freg = 0; |
707bfff6 TS |
10454 | else if (reg_lookup (&s, RTYPE_FPU, ®1)) |
10455 | freg = 1; | |
252b5132 RH |
10456 | else |
10457 | { | |
707bfff6 TS |
10458 | as_bad (_("can't parse register list")); |
10459 | break; | |
252b5132 RH |
10460 | } |
10461 | if (*s == ' ') | |
10462 | ++s; | |
10463 | if (*s != '-') | |
10464 | reg2 = reg1; | |
10465 | else | |
10466 | { | |
10467 | ++s; | |
707bfff6 TS |
10468 | if (!reg_lookup (&s, freg ? RTYPE_FPU |
10469 | : (RTYPE_GP | RTYPE_NUM), ®2)) | |
252b5132 | 10470 | { |
707bfff6 TS |
10471 | as_bad (_("invalid register list")); |
10472 | break; | |
252b5132 RH |
10473 | } |
10474 | } | |
10475 | if (freg && reg1 == 0 && reg2 == 0 && c == 'L') | |
10476 | { | |
10477 | mask &= ~ (7 << 3); | |
10478 | mask |= 5 << 3; | |
10479 | } | |
10480 | else if (freg && reg1 == 0 && reg2 == 1 && c == 'L') | |
10481 | { | |
10482 | mask &= ~ (7 << 3); | |
10483 | mask |= 6 << 3; | |
10484 | } | |
10485 | else if (reg1 == 4 && reg2 >= 4 && reg2 <= 7 && c != 'L') | |
10486 | mask |= (reg2 - 3) << 3; | |
10487 | else if (reg1 == 16 && reg2 >= 16 && reg2 <= 17) | |
10488 | mask |= (reg2 - 15) << 1; | |
f9419b05 | 10489 | else if (reg1 == RA && reg2 == RA) |
252b5132 RH |
10490 | mask |= 1; |
10491 | else | |
10492 | { | |
10493 | as_bad (_("invalid register list")); | |
10494 | break; | |
10495 | } | |
10496 | } | |
10497 | /* The mask is filled in in the opcode table for the | |
10498 | benefit of the disassembler. We remove it before | |
10499 | applying the actual mask. */ | |
10500 | ip->insn_opcode &= ~ ((7 << 3) << MIPS16OP_SH_IMM6); | |
10501 | ip->insn_opcode |= mask << MIPS16OP_SH_IMM6; | |
10502 | } | |
10503 | continue; | |
10504 | ||
0499d65b TS |
10505 | case 'm': /* Register list for save insn. */ |
10506 | case 'M': /* Register list for restore insn. */ | |
10507 | { | |
10508 | int opcode = 0; | |
10509 | int framesz = 0, seen_framesz = 0; | |
10510 | int args = 0, statics = 0, sregs = 0; | |
10511 | ||
10512 | while (*s != '\0') | |
10513 | { | |
10514 | unsigned int reg1, reg2; | |
10515 | ||
10516 | SKIP_SPACE_TABS (s); | |
10517 | while (*s == ',') | |
10518 | ++s; | |
10519 | SKIP_SPACE_TABS (s); | |
10520 | ||
10521 | my_getExpression (&imm_expr, s); | |
10522 | if (imm_expr.X_op == O_constant) | |
10523 | { | |
10524 | /* Handle the frame size. */ | |
10525 | if (seen_framesz) | |
10526 | { | |
10527 | as_bad (_("more than one frame size in list")); | |
10528 | break; | |
10529 | } | |
10530 | seen_framesz = 1; | |
10531 | framesz = imm_expr.X_add_number; | |
10532 | imm_expr.X_op = O_absent; | |
10533 | s = expr_end; | |
10534 | continue; | |
10535 | } | |
10536 | ||
707bfff6 | 10537 | if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, ®1)) |
0499d65b TS |
10538 | { |
10539 | as_bad (_("can't parse register list")); | |
10540 | break; | |
10541 | } | |
0499d65b | 10542 | |
707bfff6 TS |
10543 | while (*s == ' ') |
10544 | ++s; | |
10545 | ||
0499d65b TS |
10546 | if (*s != '-') |
10547 | reg2 = reg1; | |
10548 | else | |
10549 | { | |
10550 | ++s; | |
707bfff6 TS |
10551 | if (! reg_lookup (&s, RTYPE_GP | RTYPE_NUM, ®2) |
10552 | || reg2 < reg1) | |
0499d65b TS |
10553 | { |
10554 | as_bad (_("can't parse register list")); | |
10555 | break; | |
10556 | } | |
0499d65b TS |
10557 | } |
10558 | ||
10559 | while (reg1 <= reg2) | |
10560 | { | |
10561 | if (reg1 >= 4 && reg1 <= 7) | |
10562 | { | |
3a93f742 | 10563 | if (!seen_framesz) |
0499d65b TS |
10564 | /* args $a0-$a3 */ |
10565 | args |= 1 << (reg1 - 4); | |
10566 | else | |
10567 | /* statics $a0-$a3 */ | |
10568 | statics |= 1 << (reg1 - 4); | |
10569 | } | |
10570 | else if ((reg1 >= 16 && reg1 <= 23) || reg1 == 30) | |
10571 | { | |
10572 | /* $s0-$s8 */ | |
10573 | sregs |= 1 << ((reg1 == 30) ? 8 : (reg1 - 16)); | |
10574 | } | |
10575 | else if (reg1 == 31) | |
10576 | { | |
10577 | /* Add $ra to insn. */ | |
10578 | opcode |= 0x40; | |
10579 | } | |
10580 | else | |
10581 | { | |
10582 | as_bad (_("unexpected register in list")); | |
10583 | break; | |
10584 | } | |
10585 | if (++reg1 == 24) | |
10586 | reg1 = 30; | |
10587 | } | |
10588 | } | |
10589 | ||
10590 | /* Encode args/statics combination. */ | |
10591 | if (args & statics) | |
10592 | as_bad (_("arg/static registers overlap")); | |
10593 | else if (args == 0xf) | |
10594 | /* All $a0-$a3 are args. */ | |
10595 | opcode |= MIPS16_ALL_ARGS << 16; | |
10596 | else if (statics == 0xf) | |
10597 | /* All $a0-$a3 are statics. */ | |
10598 | opcode |= MIPS16_ALL_STATICS << 16; | |
10599 | else | |
10600 | { | |
10601 | int narg = 0, nstat = 0; | |
10602 | ||
10603 | /* Count arg registers. */ | |
10604 | while (args & 0x1) | |
10605 | { | |
10606 | args >>= 1; | |
10607 | narg++; | |
10608 | } | |
10609 | if (args != 0) | |
10610 | as_bad (_("invalid arg register list")); | |
10611 | ||
10612 | /* Count static registers. */ | |
10613 | while (statics & 0x8) | |
10614 | { | |
10615 | statics = (statics << 1) & 0xf; | |
10616 | nstat++; | |
10617 | } | |
10618 | if (statics != 0) | |
10619 | as_bad (_("invalid static register list")); | |
10620 | ||
10621 | /* Encode args/statics. */ | |
10622 | opcode |= ((narg << 2) | nstat) << 16; | |
10623 | } | |
10624 | ||
10625 | /* Encode $s0/$s1. */ | |
10626 | if (sregs & (1 << 0)) /* $s0 */ | |
10627 | opcode |= 0x20; | |
10628 | if (sregs & (1 << 1)) /* $s1 */ | |
10629 | opcode |= 0x10; | |
10630 | sregs >>= 2; | |
10631 | ||
10632 | if (sregs != 0) | |
10633 | { | |
10634 | /* Count regs $s2-$s8. */ | |
10635 | int nsreg = 0; | |
10636 | while (sregs & 1) | |
10637 | { | |
10638 | sregs >>= 1; | |
10639 | nsreg++; | |
10640 | } | |
10641 | if (sregs != 0) | |
10642 | as_bad (_("invalid static register list")); | |
10643 | /* Encode $s2-$s8. */ | |
10644 | opcode |= nsreg << 24; | |
10645 | } | |
10646 | ||
10647 | /* Encode frame size. */ | |
10648 | if (!seen_framesz) | |
10649 | as_bad (_("missing frame size")); | |
10650 | else if ((framesz & 7) != 0 || framesz < 0 | |
10651 | || framesz > 0xff * 8) | |
10652 | as_bad (_("invalid frame size")); | |
10653 | else if (framesz != 128 || (opcode >> 16) != 0) | |
10654 | { | |
10655 | framesz /= 8; | |
10656 | opcode |= (((framesz & 0xf0) << 16) | |
10657 | | (framesz & 0x0f)); | |
10658 | } | |
10659 | ||
10660 | /* Finally build the instruction. */ | |
10661 | if ((opcode >> 16) != 0 || framesz == 0) | |
10662 | { | |
10663 | ip->use_extend = TRUE; | |
10664 | ip->extend = opcode >> 16; | |
10665 | } | |
10666 | ip->insn_opcode |= opcode & 0x7f; | |
10667 | } | |
10668 | continue; | |
10669 | ||
252b5132 RH |
10670 | case 'e': /* extend code */ |
10671 | my_getExpression (&imm_expr, s); | |
10672 | check_absolute_expr (ip, &imm_expr); | |
10673 | if ((unsigned long) imm_expr.X_add_number > 0x7ff) | |
10674 | { | |
10675 | as_warn (_("Invalid value for `%s' (%lu)"), | |
10676 | ip->insn_mo->name, | |
10677 | (unsigned long) imm_expr.X_add_number); | |
10678 | imm_expr.X_add_number &= 0x7ff; | |
10679 | } | |
10680 | ip->insn_opcode |= imm_expr.X_add_number; | |
10681 | imm_expr.X_op = O_absent; | |
10682 | s = expr_end; | |
10683 | continue; | |
10684 | ||
10685 | default: | |
10686 | internalError (); | |
10687 | } | |
10688 | break; | |
10689 | } | |
10690 | ||
10691 | /* Args don't match. */ | |
10692 | if (insn + 1 < &mips16_opcodes[bfd_mips16_num_opcodes] && | |
10693 | strcmp (insn->name, insn[1].name) == 0) | |
10694 | { | |
10695 | ++insn; | |
10696 | s = argsstart; | |
10697 | continue; | |
10698 | } | |
10699 | ||
10700 | insn_error = _("illegal operands"); | |
10701 | ||
10702 | return; | |
10703 | } | |
10704 | } | |
10705 | ||
10706 | /* This structure holds information we know about a mips16 immediate | |
10707 | argument type. */ | |
10708 | ||
e972090a NC |
10709 | struct mips16_immed_operand |
10710 | { | |
252b5132 RH |
10711 | /* The type code used in the argument string in the opcode table. */ |
10712 | int type; | |
10713 | /* The number of bits in the short form of the opcode. */ | |
10714 | int nbits; | |
10715 | /* The number of bits in the extended form of the opcode. */ | |
10716 | int extbits; | |
10717 | /* The amount by which the short form is shifted when it is used; | |
10718 | for example, the sw instruction has a shift count of 2. */ | |
10719 | int shift; | |
10720 | /* The amount by which the short form is shifted when it is stored | |
10721 | into the instruction code. */ | |
10722 | int op_shift; | |
10723 | /* Non-zero if the short form is unsigned. */ | |
10724 | int unsp; | |
10725 | /* Non-zero if the extended form is unsigned. */ | |
10726 | int extu; | |
10727 | /* Non-zero if the value is PC relative. */ | |
10728 | int pcrel; | |
10729 | }; | |
10730 | ||
10731 | /* The mips16 immediate operand types. */ | |
10732 | ||
10733 | static const struct mips16_immed_operand mips16_immed_operands[] = | |
10734 | { | |
10735 | { '<', 3, 5, 0, MIPS16OP_SH_RZ, 1, 1, 0 }, | |
10736 | { '>', 3, 5, 0, MIPS16OP_SH_RX, 1, 1, 0 }, | |
10737 | { '[', 3, 6, 0, MIPS16OP_SH_RZ, 1, 1, 0 }, | |
10738 | { ']', 3, 6, 0, MIPS16OP_SH_RX, 1, 1, 0 }, | |
10739 | { '4', 4, 15, 0, MIPS16OP_SH_IMM4, 0, 0, 0 }, | |
10740 | { '5', 5, 16, 0, MIPS16OP_SH_IMM5, 1, 0, 0 }, | |
10741 | { 'H', 5, 16, 1, MIPS16OP_SH_IMM5, 1, 0, 0 }, | |
10742 | { 'W', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 0 }, | |
10743 | { 'D', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 0 }, | |
10744 | { 'j', 5, 16, 0, MIPS16OP_SH_IMM5, 0, 0, 0 }, | |
10745 | { '8', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 0, 0 }, | |
10746 | { 'V', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 0 }, | |
10747 | { 'C', 8, 16, 3, MIPS16OP_SH_IMM8, 1, 0, 0 }, | |
10748 | { 'U', 8, 16, 0, MIPS16OP_SH_IMM8, 1, 1, 0 }, | |
10749 | { 'k', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 0 }, | |
10750 | { 'K', 8, 16, 3, MIPS16OP_SH_IMM8, 0, 0, 0 }, | |
10751 | { 'p', 8, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 }, | |
10752 | { 'q', 11, 16, 0, MIPS16OP_SH_IMM8, 0, 0, 1 }, | |
10753 | { 'A', 8, 16, 2, MIPS16OP_SH_IMM8, 1, 0, 1 }, | |
10754 | { 'B', 5, 16, 3, MIPS16OP_SH_IMM5, 1, 0, 1 }, | |
10755 | { 'E', 5, 16, 2, MIPS16OP_SH_IMM5, 1, 0, 1 } | |
10756 | }; | |
10757 | ||
10758 | #define MIPS16_NUM_IMMED \ | |
10759 | (sizeof mips16_immed_operands / sizeof mips16_immed_operands[0]) | |
10760 | ||
10761 | /* Handle a mips16 instruction with an immediate value. This or's the | |
10762 | small immediate value into *INSN. It sets *USE_EXTEND to indicate | |
10763 | whether an extended value is needed; if one is needed, it sets | |
10764 | *EXTEND to the value. The argument type is TYPE. The value is VAL. | |
10765 | If SMALL is true, an unextended opcode was explicitly requested. | |
10766 | If EXT is true, an extended opcode was explicitly requested. If | |
10767 | WARN is true, warn if EXT does not match reality. */ | |
10768 | ||
10769 | static void | |
17a2f251 TS |
10770 | mips16_immed (char *file, unsigned int line, int type, offsetT val, |
10771 | bfd_boolean warn, bfd_boolean small, bfd_boolean ext, | |
10772 | unsigned long *insn, bfd_boolean *use_extend, | |
10773 | unsigned short *extend) | |
252b5132 | 10774 | { |
3994f87e | 10775 | const struct mips16_immed_operand *op; |
252b5132 | 10776 | int mintiny, maxtiny; |
b34976b6 | 10777 | bfd_boolean needext; |
252b5132 RH |
10778 | |
10779 | op = mips16_immed_operands; | |
10780 | while (op->type != type) | |
10781 | { | |
10782 | ++op; | |
10783 | assert (op < mips16_immed_operands + MIPS16_NUM_IMMED); | |
10784 | } | |
10785 | ||
10786 | if (op->unsp) | |
10787 | { | |
10788 | if (type == '<' || type == '>' || type == '[' || type == ']') | |
10789 | { | |
10790 | mintiny = 1; | |
10791 | maxtiny = 1 << op->nbits; | |
10792 | } | |
10793 | else | |
10794 | { | |
10795 | mintiny = 0; | |
10796 | maxtiny = (1 << op->nbits) - 1; | |
10797 | } | |
10798 | } | |
10799 | else | |
10800 | { | |
10801 | mintiny = - (1 << (op->nbits - 1)); | |
10802 | maxtiny = (1 << (op->nbits - 1)) - 1; | |
10803 | } | |
10804 | ||
10805 | /* Branch offsets have an implicit 0 in the lowest bit. */ | |
10806 | if (type == 'p' || type == 'q') | |
10807 | val /= 2; | |
10808 | ||
10809 | if ((val & ((1 << op->shift) - 1)) != 0 | |
10810 | || val < (mintiny << op->shift) | |
10811 | || val > (maxtiny << op->shift)) | |
b34976b6 | 10812 | needext = TRUE; |
252b5132 | 10813 | else |
b34976b6 | 10814 | needext = FALSE; |
252b5132 RH |
10815 | |
10816 | if (warn && ext && ! needext) | |
beae10d5 KH |
10817 | as_warn_where (file, line, |
10818 | _("extended operand requested but not required")); | |
252b5132 RH |
10819 | if (small && needext) |
10820 | as_bad_where (file, line, _("invalid unextended operand value")); | |
10821 | ||
10822 | if (small || (! ext && ! needext)) | |
10823 | { | |
10824 | int insnval; | |
10825 | ||
b34976b6 | 10826 | *use_extend = FALSE; |
252b5132 RH |
10827 | insnval = ((val >> op->shift) & ((1 << op->nbits) - 1)); |
10828 | insnval <<= op->op_shift; | |
10829 | *insn |= insnval; | |
10830 | } | |
10831 | else | |
10832 | { | |
10833 | long minext, maxext; | |
10834 | int extval; | |
10835 | ||
10836 | if (op->extu) | |
10837 | { | |
10838 | minext = 0; | |
10839 | maxext = (1 << op->extbits) - 1; | |
10840 | } | |
10841 | else | |
10842 | { | |
10843 | minext = - (1 << (op->extbits - 1)); | |
10844 | maxext = (1 << (op->extbits - 1)) - 1; | |
10845 | } | |
10846 | if (val < minext || val > maxext) | |
10847 | as_bad_where (file, line, | |
10848 | _("operand value out of range for instruction")); | |
10849 | ||
b34976b6 | 10850 | *use_extend = TRUE; |
252b5132 RH |
10851 | if (op->extbits == 16) |
10852 | { | |
10853 | extval = ((val >> 11) & 0x1f) | (val & 0x7e0); | |
10854 | val &= 0x1f; | |
10855 | } | |
10856 | else if (op->extbits == 15) | |
10857 | { | |
10858 | extval = ((val >> 11) & 0xf) | (val & 0x7f0); | |
10859 | val &= 0xf; | |
10860 | } | |
10861 | else | |
10862 | { | |
10863 | extval = ((val & 0x1f) << 6) | (val & 0x20); | |
10864 | val = 0; | |
10865 | } | |
10866 | ||
10867 | *extend = (unsigned short) extval; | |
10868 | *insn |= val; | |
10869 | } | |
10870 | } | |
10871 | \f | |
d6f16593 | 10872 | struct percent_op_match |
ad8d3bb3 | 10873 | { |
5e0116d5 RS |
10874 | const char *str; |
10875 | bfd_reloc_code_real_type reloc; | |
d6f16593 MR |
10876 | }; |
10877 | ||
10878 | static const struct percent_op_match mips_percent_op[] = | |
ad8d3bb3 | 10879 | { |
5e0116d5 | 10880 | {"%lo", BFD_RELOC_LO16}, |
ad8d3bb3 | 10881 | #ifdef OBJ_ELF |
5e0116d5 RS |
10882 | {"%call_hi", BFD_RELOC_MIPS_CALL_HI16}, |
10883 | {"%call_lo", BFD_RELOC_MIPS_CALL_LO16}, | |
10884 | {"%call16", BFD_RELOC_MIPS_CALL16}, | |
10885 | {"%got_disp", BFD_RELOC_MIPS_GOT_DISP}, | |
10886 | {"%got_page", BFD_RELOC_MIPS_GOT_PAGE}, | |
10887 | {"%got_ofst", BFD_RELOC_MIPS_GOT_OFST}, | |
10888 | {"%got_hi", BFD_RELOC_MIPS_GOT_HI16}, | |
10889 | {"%got_lo", BFD_RELOC_MIPS_GOT_LO16}, | |
10890 | {"%got", BFD_RELOC_MIPS_GOT16}, | |
10891 | {"%gp_rel", BFD_RELOC_GPREL16}, | |
10892 | {"%half", BFD_RELOC_16}, | |
10893 | {"%highest", BFD_RELOC_MIPS_HIGHEST}, | |
10894 | {"%higher", BFD_RELOC_MIPS_HIGHER}, | |
10895 | {"%neg", BFD_RELOC_MIPS_SUB}, | |
3f98094e DJ |
10896 | {"%tlsgd", BFD_RELOC_MIPS_TLS_GD}, |
10897 | {"%tlsldm", BFD_RELOC_MIPS_TLS_LDM}, | |
10898 | {"%dtprel_hi", BFD_RELOC_MIPS_TLS_DTPREL_HI16}, | |
10899 | {"%dtprel_lo", BFD_RELOC_MIPS_TLS_DTPREL_LO16}, | |
10900 | {"%tprel_hi", BFD_RELOC_MIPS_TLS_TPREL_HI16}, | |
10901 | {"%tprel_lo", BFD_RELOC_MIPS_TLS_TPREL_LO16}, | |
10902 | {"%gottprel", BFD_RELOC_MIPS_TLS_GOTTPREL}, | |
ad8d3bb3 | 10903 | #endif |
5e0116d5 | 10904 | {"%hi", BFD_RELOC_HI16_S} |
ad8d3bb3 TS |
10905 | }; |
10906 | ||
d6f16593 MR |
10907 | static const struct percent_op_match mips16_percent_op[] = |
10908 | { | |
10909 | {"%lo", BFD_RELOC_MIPS16_LO16}, | |
10910 | {"%gprel", BFD_RELOC_MIPS16_GPREL}, | |
738e5348 RS |
10911 | {"%got", BFD_RELOC_MIPS16_GOT16}, |
10912 | {"%call16", BFD_RELOC_MIPS16_CALL16}, | |
d6f16593 MR |
10913 | {"%hi", BFD_RELOC_MIPS16_HI16_S} |
10914 | }; | |
10915 | ||
252b5132 | 10916 | |
5e0116d5 RS |
10917 | /* Return true if *STR points to a relocation operator. When returning true, |
10918 | move *STR over the operator and store its relocation code in *RELOC. | |
10919 | Leave both *STR and *RELOC alone when returning false. */ | |
10920 | ||
10921 | static bfd_boolean | |
17a2f251 | 10922 | parse_relocation (char **str, bfd_reloc_code_real_type *reloc) |
252b5132 | 10923 | { |
d6f16593 MR |
10924 | const struct percent_op_match *percent_op; |
10925 | size_t limit, i; | |
10926 | ||
10927 | if (mips_opts.mips16) | |
10928 | { | |
10929 | percent_op = mips16_percent_op; | |
10930 | limit = ARRAY_SIZE (mips16_percent_op); | |
10931 | } | |
10932 | else | |
10933 | { | |
10934 | percent_op = mips_percent_op; | |
10935 | limit = ARRAY_SIZE (mips_percent_op); | |
10936 | } | |
76b3015f | 10937 | |
d6f16593 | 10938 | for (i = 0; i < limit; i++) |
5e0116d5 | 10939 | if (strncasecmp (*str, percent_op[i].str, strlen (percent_op[i].str)) == 0) |
394f9b3a | 10940 | { |
3f98094e DJ |
10941 | int len = strlen (percent_op[i].str); |
10942 | ||
10943 | if (!ISSPACE ((*str)[len]) && (*str)[len] != '(') | |
10944 | continue; | |
10945 | ||
5e0116d5 RS |
10946 | *str += strlen (percent_op[i].str); |
10947 | *reloc = percent_op[i].reloc; | |
394f9b3a | 10948 | |
5e0116d5 RS |
10949 | /* Check whether the output BFD supports this relocation. |
10950 | If not, issue an error and fall back on something safe. */ | |
10951 | if (!bfd_reloc_type_lookup (stdoutput, percent_op[i].reloc)) | |
394f9b3a | 10952 | { |
5e0116d5 RS |
10953 | as_bad ("relocation %s isn't supported by the current ABI", |
10954 | percent_op[i].str); | |
01a3f561 | 10955 | *reloc = BFD_RELOC_UNUSED; |
394f9b3a | 10956 | } |
5e0116d5 | 10957 | return TRUE; |
394f9b3a | 10958 | } |
5e0116d5 | 10959 | return FALSE; |
394f9b3a | 10960 | } |
ad8d3bb3 | 10961 | |
ad8d3bb3 | 10962 | |
5e0116d5 RS |
10963 | /* Parse string STR as a 16-bit relocatable operand. Store the |
10964 | expression in *EP and the relocations in the array starting | |
10965 | at RELOC. Return the number of relocation operators used. | |
ad8d3bb3 | 10966 | |
01a3f561 | 10967 | On exit, EXPR_END points to the first character after the expression. */ |
ad8d3bb3 | 10968 | |
5e0116d5 | 10969 | static size_t |
17a2f251 TS |
10970 | my_getSmallExpression (expressionS *ep, bfd_reloc_code_real_type *reloc, |
10971 | char *str) | |
ad8d3bb3 | 10972 | { |
5e0116d5 RS |
10973 | bfd_reloc_code_real_type reversed_reloc[3]; |
10974 | size_t reloc_index, i; | |
09b8f35a RS |
10975 | int crux_depth, str_depth; |
10976 | char *crux; | |
5e0116d5 RS |
10977 | |
10978 | /* Search for the start of the main expression, recoding relocations | |
09b8f35a RS |
10979 | in REVERSED_RELOC. End the loop with CRUX pointing to the start |
10980 | of the main expression and with CRUX_DEPTH containing the number | |
10981 | of open brackets at that point. */ | |
10982 | reloc_index = -1; | |
10983 | str_depth = 0; | |
10984 | do | |
fb1b3232 | 10985 | { |
09b8f35a RS |
10986 | reloc_index++; |
10987 | crux = str; | |
10988 | crux_depth = str_depth; | |
10989 | ||
10990 | /* Skip over whitespace and brackets, keeping count of the number | |
10991 | of brackets. */ | |
10992 | while (*str == ' ' || *str == '\t' || *str == '(') | |
10993 | if (*str++ == '(') | |
10994 | str_depth++; | |
5e0116d5 | 10995 | } |
09b8f35a RS |
10996 | while (*str == '%' |
10997 | && reloc_index < (HAVE_NEWABI ? 3 : 1) | |
10998 | && parse_relocation (&str, &reversed_reloc[reloc_index])); | |
ad8d3bb3 | 10999 | |
09b8f35a | 11000 | my_getExpression (ep, crux); |
5e0116d5 | 11001 | str = expr_end; |
394f9b3a | 11002 | |
5e0116d5 | 11003 | /* Match every open bracket. */ |
09b8f35a | 11004 | while (crux_depth > 0 && (*str == ')' || *str == ' ' || *str == '\t')) |
5e0116d5 | 11005 | if (*str++ == ')') |
09b8f35a | 11006 | crux_depth--; |
394f9b3a | 11007 | |
09b8f35a | 11008 | if (crux_depth > 0) |
5e0116d5 | 11009 | as_bad ("unclosed '('"); |
394f9b3a | 11010 | |
5e0116d5 | 11011 | expr_end = str; |
252b5132 | 11012 | |
01a3f561 | 11013 | if (reloc_index != 0) |
64bdfcaf RS |
11014 | { |
11015 | prev_reloc_op_frag = frag_now; | |
11016 | for (i = 0; i < reloc_index; i++) | |
11017 | reloc[i] = reversed_reloc[reloc_index - 1 - i]; | |
11018 | } | |
fb1b3232 | 11019 | |
5e0116d5 | 11020 | return reloc_index; |
252b5132 RH |
11021 | } |
11022 | ||
11023 | static void | |
17a2f251 | 11024 | my_getExpression (expressionS *ep, char *str) |
252b5132 RH |
11025 | { |
11026 | char *save_in; | |
98aa84af | 11027 | valueT val; |
252b5132 RH |
11028 | |
11029 | save_in = input_line_pointer; | |
11030 | input_line_pointer = str; | |
11031 | expression (ep); | |
11032 | expr_end = input_line_pointer; | |
11033 | input_line_pointer = save_in; | |
11034 | ||
11035 | /* If we are in mips16 mode, and this is an expression based on `.', | |
11036 | then we bump the value of the symbol by 1 since that is how other | |
11037 | text symbols are handled. We don't bother to handle complex | |
11038 | expressions, just `.' plus or minus a constant. */ | |
11039 | if (mips_opts.mips16 | |
11040 | && ep->X_op == O_symbol | |
11041 | && strcmp (S_GET_NAME (ep->X_add_symbol), FAKE_LABEL_NAME) == 0 | |
11042 | && S_GET_SEGMENT (ep->X_add_symbol) == now_seg | |
49309057 ILT |
11043 | && symbol_get_frag (ep->X_add_symbol) == frag_now |
11044 | && symbol_constant_p (ep->X_add_symbol) | |
98aa84af AM |
11045 | && (val = S_GET_VALUE (ep->X_add_symbol)) == frag_now_fix ()) |
11046 | S_SET_VALUE (ep->X_add_symbol, val + 1); | |
252b5132 RH |
11047 | } |
11048 | ||
252b5132 | 11049 | char * |
17a2f251 | 11050 | md_atof (int type, char *litP, int *sizeP) |
252b5132 | 11051 | { |
499ac353 | 11052 | return ieee_md_atof (type, litP, sizeP, target_big_endian); |
252b5132 RH |
11053 | } |
11054 | ||
11055 | void | |
17a2f251 | 11056 | md_number_to_chars (char *buf, valueT val, int n) |
252b5132 RH |
11057 | { |
11058 | if (target_big_endian) | |
11059 | number_to_chars_bigendian (buf, val, n); | |
11060 | else | |
11061 | number_to_chars_littleendian (buf, val, n); | |
11062 | } | |
11063 | \f | |
ae948b86 | 11064 | #ifdef OBJ_ELF |
e013f690 TS |
11065 | static int support_64bit_objects(void) |
11066 | { | |
11067 | const char **list, **l; | |
aa3d8fdf | 11068 | int yes; |
e013f690 TS |
11069 | |
11070 | list = bfd_target_list (); | |
11071 | for (l = list; *l != NULL; l++) | |
11072 | #ifdef TE_TMIPS | |
11073 | /* This is traditional mips */ | |
11074 | if (strcmp (*l, "elf64-tradbigmips") == 0 | |
11075 | || strcmp (*l, "elf64-tradlittlemips") == 0) | |
11076 | #else | |
11077 | if (strcmp (*l, "elf64-bigmips") == 0 | |
11078 | || strcmp (*l, "elf64-littlemips") == 0) | |
11079 | #endif | |
11080 | break; | |
aa3d8fdf | 11081 | yes = (*l != NULL); |
e013f690 | 11082 | free (list); |
aa3d8fdf | 11083 | return yes; |
e013f690 | 11084 | } |
ae948b86 | 11085 | #endif /* OBJ_ELF */ |
e013f690 | 11086 | |
78849248 | 11087 | const char *md_shortopts = "O::g::G:"; |
252b5132 | 11088 | |
e972090a NC |
11089 | struct option md_longopts[] = |
11090 | { | |
f9b4148d CD |
11091 | /* Options which specify architecture. */ |
11092 | #define OPTION_ARCH_BASE (OPTION_MD_BASE) | |
11093 | #define OPTION_MARCH (OPTION_ARCH_BASE + 0) | |
11094 | {"march", required_argument, NULL, OPTION_MARCH}, | |
11095 | #define OPTION_MTUNE (OPTION_ARCH_BASE + 1) | |
11096 | {"mtune", required_argument, NULL, OPTION_MTUNE}, | |
11097 | #define OPTION_MIPS1 (OPTION_ARCH_BASE + 2) | |
252b5132 RH |
11098 | {"mips0", no_argument, NULL, OPTION_MIPS1}, |
11099 | {"mips1", no_argument, NULL, OPTION_MIPS1}, | |
f9b4148d | 11100 | #define OPTION_MIPS2 (OPTION_ARCH_BASE + 3) |
252b5132 | 11101 | {"mips2", no_argument, NULL, OPTION_MIPS2}, |
f9b4148d | 11102 | #define OPTION_MIPS3 (OPTION_ARCH_BASE + 4) |
252b5132 | 11103 | {"mips3", no_argument, NULL, OPTION_MIPS3}, |
f9b4148d | 11104 | #define OPTION_MIPS4 (OPTION_ARCH_BASE + 5) |
252b5132 | 11105 | {"mips4", no_argument, NULL, OPTION_MIPS4}, |
f9b4148d | 11106 | #define OPTION_MIPS5 (OPTION_ARCH_BASE + 6) |
ae948b86 | 11107 | {"mips5", no_argument, NULL, OPTION_MIPS5}, |
f9b4148d | 11108 | #define OPTION_MIPS32 (OPTION_ARCH_BASE + 7) |
ae948b86 | 11109 | {"mips32", no_argument, NULL, OPTION_MIPS32}, |
f9b4148d | 11110 | #define OPTION_MIPS64 (OPTION_ARCH_BASE + 8) |
ae948b86 | 11111 | {"mips64", no_argument, NULL, OPTION_MIPS64}, |
f9b4148d CD |
11112 | #define OPTION_MIPS32R2 (OPTION_ARCH_BASE + 9) |
11113 | {"mips32r2", no_argument, NULL, OPTION_MIPS32R2}, | |
5f74bc13 CD |
11114 | #define OPTION_MIPS64R2 (OPTION_ARCH_BASE + 10) |
11115 | {"mips64r2", no_argument, NULL, OPTION_MIPS64R2}, | |
f9b4148d CD |
11116 | |
11117 | /* Options which specify Application Specific Extensions (ASEs). */ | |
5f74bc13 | 11118 | #define OPTION_ASE_BASE (OPTION_ARCH_BASE + 11) |
f9b4148d CD |
11119 | #define OPTION_MIPS16 (OPTION_ASE_BASE + 0) |
11120 | {"mips16", no_argument, NULL, OPTION_MIPS16}, | |
11121 | #define OPTION_NO_MIPS16 (OPTION_ASE_BASE + 1) | |
11122 | {"no-mips16", no_argument, NULL, OPTION_NO_MIPS16}, | |
11123 | #define OPTION_MIPS3D (OPTION_ASE_BASE + 2) | |
11124 | {"mips3d", no_argument, NULL, OPTION_MIPS3D}, | |
11125 | #define OPTION_NO_MIPS3D (OPTION_ASE_BASE + 3) | |
11126 | {"no-mips3d", no_argument, NULL, OPTION_NO_MIPS3D}, | |
11127 | #define OPTION_MDMX (OPTION_ASE_BASE + 4) | |
11128 | {"mdmx", no_argument, NULL, OPTION_MDMX}, | |
11129 | #define OPTION_NO_MDMX (OPTION_ASE_BASE + 5) | |
11130 | {"no-mdmx", no_argument, NULL, OPTION_NO_MDMX}, | |
74cd071d CF |
11131 | #define OPTION_DSP (OPTION_ASE_BASE + 6) |
11132 | {"mdsp", no_argument, NULL, OPTION_DSP}, | |
11133 | #define OPTION_NO_DSP (OPTION_ASE_BASE + 7) | |
11134 | {"mno-dsp", no_argument, NULL, OPTION_NO_DSP}, | |
ef2e4d86 CF |
11135 | #define OPTION_MT (OPTION_ASE_BASE + 8) |
11136 | {"mmt", no_argument, NULL, OPTION_MT}, | |
11137 | #define OPTION_NO_MT (OPTION_ASE_BASE + 9) | |
11138 | {"mno-mt", no_argument, NULL, OPTION_NO_MT}, | |
e16bfa71 TS |
11139 | #define OPTION_SMARTMIPS (OPTION_ASE_BASE + 10) |
11140 | {"msmartmips", no_argument, NULL, OPTION_SMARTMIPS}, | |
11141 | #define OPTION_NO_SMARTMIPS (OPTION_ASE_BASE + 11) | |
11142 | {"mno-smartmips", no_argument, NULL, OPTION_NO_SMARTMIPS}, | |
8b082fb1 TS |
11143 | #define OPTION_DSPR2 (OPTION_ASE_BASE + 12) |
11144 | {"mdspr2", no_argument, NULL, OPTION_DSPR2}, | |
11145 | #define OPTION_NO_DSPR2 (OPTION_ASE_BASE + 13) | |
11146 | {"mno-dspr2", no_argument, NULL, OPTION_NO_DSPR2}, | |
f9b4148d CD |
11147 | |
11148 | /* Old-style architecture options. Don't add more of these. */ | |
8b082fb1 | 11149 | #define OPTION_COMPAT_ARCH_BASE (OPTION_ASE_BASE + 14) |
f9b4148d CD |
11150 | #define OPTION_M4650 (OPTION_COMPAT_ARCH_BASE + 0) |
11151 | {"m4650", no_argument, NULL, OPTION_M4650}, | |
11152 | #define OPTION_NO_M4650 (OPTION_COMPAT_ARCH_BASE + 1) | |
11153 | {"no-m4650", no_argument, NULL, OPTION_NO_M4650}, | |
11154 | #define OPTION_M4010 (OPTION_COMPAT_ARCH_BASE + 2) | |
11155 | {"m4010", no_argument, NULL, OPTION_M4010}, | |
11156 | #define OPTION_NO_M4010 (OPTION_COMPAT_ARCH_BASE + 3) | |
11157 | {"no-m4010", no_argument, NULL, OPTION_NO_M4010}, | |
11158 | #define OPTION_M4100 (OPTION_COMPAT_ARCH_BASE + 4) | |
11159 | {"m4100", no_argument, NULL, OPTION_M4100}, | |
11160 | #define OPTION_NO_M4100 (OPTION_COMPAT_ARCH_BASE + 5) | |
11161 | {"no-m4100", no_argument, NULL, OPTION_NO_M4100}, | |
11162 | #define OPTION_M3900 (OPTION_COMPAT_ARCH_BASE + 6) | |
11163 | {"m3900", no_argument, NULL, OPTION_M3900}, | |
11164 | #define OPTION_NO_M3900 (OPTION_COMPAT_ARCH_BASE + 7) | |
11165 | {"no-m3900", no_argument, NULL, OPTION_NO_M3900}, | |
11166 | ||
11167 | /* Options which enable bug fixes. */ | |
11168 | #define OPTION_FIX_BASE (OPTION_COMPAT_ARCH_BASE + 8) | |
11169 | #define OPTION_M7000_HILO_FIX (OPTION_FIX_BASE + 0) | |
11170 | {"mfix7000", no_argument, NULL, OPTION_M7000_HILO_FIX}, | |
11171 | #define OPTION_MNO_7000_HILO_FIX (OPTION_FIX_BASE + 1) | |
11172 | {"no-fix-7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX}, | |
11173 | {"mno-fix7000", no_argument, NULL, OPTION_MNO_7000_HILO_FIX}, | |
d766e8ec RS |
11174 | #define OPTION_FIX_VR4120 (OPTION_FIX_BASE + 2) |
11175 | #define OPTION_NO_FIX_VR4120 (OPTION_FIX_BASE + 3) | |
11176 | {"mfix-vr4120", no_argument, NULL, OPTION_FIX_VR4120}, | |
11177 | {"mno-fix-vr4120", no_argument, NULL, OPTION_NO_FIX_VR4120}, | |
7d8e00cf RS |
11178 | #define OPTION_FIX_VR4130 (OPTION_FIX_BASE + 4) |
11179 | #define OPTION_NO_FIX_VR4130 (OPTION_FIX_BASE + 5) | |
11180 | {"mfix-vr4130", no_argument, NULL, OPTION_FIX_VR4130}, | |
11181 | {"mno-fix-vr4130", no_argument, NULL, OPTION_NO_FIX_VR4130}, | |
f9b4148d CD |
11182 | |
11183 | /* Miscellaneous options. */ | |
7d8e00cf | 11184 | #define OPTION_MISC_BASE (OPTION_FIX_BASE + 6) |
1ffcab4b | 11185 | #define OPTION_TRAP (OPTION_MISC_BASE + 0) |
252b5132 RH |
11186 | {"trap", no_argument, NULL, OPTION_TRAP}, |
11187 | {"no-break", no_argument, NULL, OPTION_TRAP}, | |
1ffcab4b | 11188 | #define OPTION_BREAK (OPTION_MISC_BASE + 1) |
252b5132 RH |
11189 | {"break", no_argument, NULL, OPTION_BREAK}, |
11190 | {"no-trap", no_argument, NULL, OPTION_BREAK}, | |
1ffcab4b | 11191 | #define OPTION_EB (OPTION_MISC_BASE + 2) |
252b5132 | 11192 | {"EB", no_argument, NULL, OPTION_EB}, |
1ffcab4b | 11193 | #define OPTION_EL (OPTION_MISC_BASE + 3) |
252b5132 | 11194 | {"EL", no_argument, NULL, OPTION_EL}, |
1ffcab4b | 11195 | #define OPTION_FP32 (OPTION_MISC_BASE + 4) |
ae948b86 | 11196 | {"mfp32", no_argument, NULL, OPTION_FP32}, |
1ffcab4b | 11197 | #define OPTION_GP32 (OPTION_MISC_BASE + 5) |
c97ef257 | 11198 | {"mgp32", no_argument, NULL, OPTION_GP32}, |
1ffcab4b | 11199 | #define OPTION_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 6) |
119d663a | 11200 | {"construct-floats", no_argument, NULL, OPTION_CONSTRUCT_FLOATS}, |
1ffcab4b | 11201 | #define OPTION_NO_CONSTRUCT_FLOATS (OPTION_MISC_BASE + 7) |
119d663a | 11202 | {"no-construct-floats", no_argument, NULL, OPTION_NO_CONSTRUCT_FLOATS}, |
1ffcab4b | 11203 | #define OPTION_FP64 (OPTION_MISC_BASE + 8) |
316f5878 | 11204 | {"mfp64", no_argument, NULL, OPTION_FP64}, |
1ffcab4b | 11205 | #define OPTION_GP64 (OPTION_MISC_BASE + 9) |
ae948b86 | 11206 | {"mgp64", no_argument, NULL, OPTION_GP64}, |
1ffcab4b CD |
11207 | #define OPTION_RELAX_BRANCH (OPTION_MISC_BASE + 10) |
11208 | #define OPTION_NO_RELAX_BRANCH (OPTION_MISC_BASE + 11) | |
4a6a3df4 AO |
11209 | {"relax-branch", no_argument, NULL, OPTION_RELAX_BRANCH}, |
11210 | {"no-relax-branch", no_argument, NULL, OPTION_NO_RELAX_BRANCH}, | |
aa6975fb ILT |
11211 | #define OPTION_MSHARED (OPTION_MISC_BASE + 12) |
11212 | #define OPTION_MNO_SHARED (OPTION_MISC_BASE + 13) | |
11213 | {"mshared", no_argument, NULL, OPTION_MSHARED}, | |
11214 | {"mno-shared", no_argument, NULL, OPTION_MNO_SHARED}, | |
aed1a261 RS |
11215 | #define OPTION_MSYM32 (OPTION_MISC_BASE + 14) |
11216 | #define OPTION_MNO_SYM32 (OPTION_MISC_BASE + 15) | |
11217 | {"msym32", no_argument, NULL, OPTION_MSYM32}, | |
11218 | {"mno-sym32", no_argument, NULL, OPTION_MNO_SYM32}, | |
037b32b9 AN |
11219 | #define OPTION_SOFT_FLOAT (OPTION_MISC_BASE + 16) |
11220 | #define OPTION_HARD_FLOAT (OPTION_MISC_BASE + 17) | |
11221 | {"msoft-float", no_argument, NULL, OPTION_SOFT_FLOAT}, | |
11222 | {"mhard-float", no_argument, NULL, OPTION_HARD_FLOAT}, | |
11223 | #define OPTION_SINGLE_FLOAT (OPTION_MISC_BASE + 18) | |
11224 | #define OPTION_DOUBLE_FLOAT (OPTION_MISC_BASE + 19) | |
11225 | {"msingle-float", no_argument, NULL, OPTION_SINGLE_FLOAT}, | |
11226 | {"mdouble-float", no_argument, NULL, OPTION_DOUBLE_FLOAT}, | |
11227 | ||
f9b4148d | 11228 | /* ELF-specific options. */ |
156c2f8b | 11229 | #ifdef OBJ_ELF |
037b32b9 | 11230 | #define OPTION_ELF_BASE (OPTION_MISC_BASE + 20) |
156c2f8b | 11231 | #define OPTION_CALL_SHARED (OPTION_ELF_BASE + 0) |
156c2f8b NC |
11232 | {"KPIC", no_argument, NULL, OPTION_CALL_SHARED}, |
11233 | {"call_shared", no_argument, NULL, OPTION_CALL_SHARED}, | |
861fb55a DJ |
11234 | #define OPTION_CALL_NONPIC (OPTION_ELF_BASE + 1) |
11235 | {"call_nonpic", no_argument, NULL, OPTION_CALL_NONPIC}, | |
11236 | #define OPTION_NON_SHARED (OPTION_ELF_BASE + 2) | |
156c2f8b | 11237 | {"non_shared", no_argument, NULL, OPTION_NON_SHARED}, |
861fb55a | 11238 | #define OPTION_XGOT (OPTION_ELF_BASE + 3) |
156c2f8b | 11239 | {"xgot", no_argument, NULL, OPTION_XGOT}, |
861fb55a | 11240 | #define OPTION_MABI (OPTION_ELF_BASE + 4) |
ae948b86 | 11241 | {"mabi", required_argument, NULL, OPTION_MABI}, |
861fb55a | 11242 | #define OPTION_32 (OPTION_ELF_BASE + 5) |
156c2f8b | 11243 | {"32", no_argument, NULL, OPTION_32}, |
861fb55a | 11244 | #define OPTION_N32 (OPTION_ELF_BASE + 6) |
e013f690 | 11245 | {"n32", no_argument, NULL, OPTION_N32}, |
861fb55a | 11246 | #define OPTION_64 (OPTION_ELF_BASE + 7) |
156c2f8b | 11247 | {"64", no_argument, NULL, OPTION_64}, |
861fb55a | 11248 | #define OPTION_MDEBUG (OPTION_ELF_BASE + 8) |
ecb4347a | 11249 | {"mdebug", no_argument, NULL, OPTION_MDEBUG}, |
861fb55a | 11250 | #define OPTION_NO_MDEBUG (OPTION_ELF_BASE + 9) |
ecb4347a | 11251 | {"no-mdebug", no_argument, NULL, OPTION_NO_MDEBUG}, |
861fb55a | 11252 | #define OPTION_PDR (OPTION_ELF_BASE + 10) |
dcd410fe | 11253 | {"mpdr", no_argument, NULL, OPTION_PDR}, |
861fb55a | 11254 | #define OPTION_NO_PDR (OPTION_ELF_BASE + 11) |
dcd410fe | 11255 | {"mno-pdr", no_argument, NULL, OPTION_NO_PDR}, |
861fb55a | 11256 | #define OPTION_MVXWORKS_PIC (OPTION_ELF_BASE + 12) |
0a44bf69 | 11257 | {"mvxworks-pic", no_argument, NULL, OPTION_MVXWORKS_PIC}, |
ae948b86 | 11258 | #endif /* OBJ_ELF */ |
f9b4148d | 11259 | |
252b5132 RH |
11260 | {NULL, no_argument, NULL, 0} |
11261 | }; | |
156c2f8b | 11262 | size_t md_longopts_size = sizeof (md_longopts); |
252b5132 | 11263 | |
316f5878 RS |
11264 | /* Set STRING_PTR (either &mips_arch_string or &mips_tune_string) to |
11265 | NEW_VALUE. Warn if another value was already specified. Note: | |
11266 | we have to defer parsing the -march and -mtune arguments in order | |
11267 | to handle 'from-abi' correctly, since the ABI might be specified | |
11268 | in a later argument. */ | |
11269 | ||
11270 | static void | |
17a2f251 | 11271 | mips_set_option_string (const char **string_ptr, const char *new_value) |
316f5878 RS |
11272 | { |
11273 | if (*string_ptr != 0 && strcasecmp (*string_ptr, new_value) != 0) | |
11274 | as_warn (_("A different %s was already specified, is now %s"), | |
11275 | string_ptr == &mips_arch_string ? "-march" : "-mtune", | |
11276 | new_value); | |
11277 | ||
11278 | *string_ptr = new_value; | |
11279 | } | |
11280 | ||
252b5132 | 11281 | int |
17a2f251 | 11282 | md_parse_option (int c, char *arg) |
252b5132 RH |
11283 | { |
11284 | switch (c) | |
11285 | { | |
119d663a NC |
11286 | case OPTION_CONSTRUCT_FLOATS: |
11287 | mips_disable_float_construction = 0; | |
11288 | break; | |
bdaaa2e1 | 11289 | |
119d663a NC |
11290 | case OPTION_NO_CONSTRUCT_FLOATS: |
11291 | mips_disable_float_construction = 1; | |
11292 | break; | |
bdaaa2e1 | 11293 | |
252b5132 RH |
11294 | case OPTION_TRAP: |
11295 | mips_trap = 1; | |
11296 | break; | |
11297 | ||
11298 | case OPTION_BREAK: | |
11299 | mips_trap = 0; | |
11300 | break; | |
11301 | ||
11302 | case OPTION_EB: | |
11303 | target_big_endian = 1; | |
11304 | break; | |
11305 | ||
11306 | case OPTION_EL: | |
11307 | target_big_endian = 0; | |
11308 | break; | |
11309 | ||
11310 | case 'O': | |
4ffff32f TS |
11311 | if (arg == NULL) |
11312 | mips_optimize = 1; | |
11313 | else if (arg[0] == '0') | |
11314 | mips_optimize = 0; | |
11315 | else if (arg[0] == '1') | |
252b5132 RH |
11316 | mips_optimize = 1; |
11317 | else | |
11318 | mips_optimize = 2; | |
11319 | break; | |
11320 | ||
11321 | case 'g': | |
11322 | if (arg == NULL) | |
11323 | mips_debug = 2; | |
11324 | else | |
11325 | mips_debug = atoi (arg); | |
252b5132 RH |
11326 | break; |
11327 | ||
11328 | case OPTION_MIPS1: | |
316f5878 | 11329 | file_mips_isa = ISA_MIPS1; |
252b5132 RH |
11330 | break; |
11331 | ||
11332 | case OPTION_MIPS2: | |
316f5878 | 11333 | file_mips_isa = ISA_MIPS2; |
252b5132 RH |
11334 | break; |
11335 | ||
11336 | case OPTION_MIPS3: | |
316f5878 | 11337 | file_mips_isa = ISA_MIPS3; |
252b5132 RH |
11338 | break; |
11339 | ||
11340 | case OPTION_MIPS4: | |
316f5878 | 11341 | file_mips_isa = ISA_MIPS4; |
e7af610e NC |
11342 | break; |
11343 | ||
84ea6cf2 | 11344 | case OPTION_MIPS5: |
316f5878 | 11345 | file_mips_isa = ISA_MIPS5; |
84ea6cf2 NC |
11346 | break; |
11347 | ||
e7af610e | 11348 | case OPTION_MIPS32: |
316f5878 | 11349 | file_mips_isa = ISA_MIPS32; |
252b5132 RH |
11350 | break; |
11351 | ||
af7ee8bf CD |
11352 | case OPTION_MIPS32R2: |
11353 | file_mips_isa = ISA_MIPS32R2; | |
11354 | break; | |
11355 | ||
5f74bc13 CD |
11356 | case OPTION_MIPS64R2: |
11357 | file_mips_isa = ISA_MIPS64R2; | |
11358 | break; | |
11359 | ||
84ea6cf2 | 11360 | case OPTION_MIPS64: |
316f5878 | 11361 | file_mips_isa = ISA_MIPS64; |
84ea6cf2 NC |
11362 | break; |
11363 | ||
ec68c924 | 11364 | case OPTION_MTUNE: |
316f5878 RS |
11365 | mips_set_option_string (&mips_tune_string, arg); |
11366 | break; | |
ec68c924 | 11367 | |
316f5878 RS |
11368 | case OPTION_MARCH: |
11369 | mips_set_option_string (&mips_arch_string, arg); | |
252b5132 RH |
11370 | break; |
11371 | ||
11372 | case OPTION_M4650: | |
316f5878 RS |
11373 | mips_set_option_string (&mips_arch_string, "4650"); |
11374 | mips_set_option_string (&mips_tune_string, "4650"); | |
252b5132 RH |
11375 | break; |
11376 | ||
11377 | case OPTION_NO_M4650: | |
11378 | break; | |
11379 | ||
11380 | case OPTION_M4010: | |
316f5878 RS |
11381 | mips_set_option_string (&mips_arch_string, "4010"); |
11382 | mips_set_option_string (&mips_tune_string, "4010"); | |
252b5132 RH |
11383 | break; |
11384 | ||
11385 | case OPTION_NO_M4010: | |
11386 | break; | |
11387 | ||
11388 | case OPTION_M4100: | |
316f5878 RS |
11389 | mips_set_option_string (&mips_arch_string, "4100"); |
11390 | mips_set_option_string (&mips_tune_string, "4100"); | |
252b5132 RH |
11391 | break; |
11392 | ||
11393 | case OPTION_NO_M4100: | |
11394 | break; | |
11395 | ||
252b5132 | 11396 | case OPTION_M3900: |
316f5878 RS |
11397 | mips_set_option_string (&mips_arch_string, "3900"); |
11398 | mips_set_option_string (&mips_tune_string, "3900"); | |
252b5132 | 11399 | break; |
bdaaa2e1 | 11400 | |
252b5132 RH |
11401 | case OPTION_NO_M3900: |
11402 | break; | |
11403 | ||
deec1734 CD |
11404 | case OPTION_MDMX: |
11405 | mips_opts.ase_mdmx = 1; | |
11406 | break; | |
11407 | ||
11408 | case OPTION_NO_MDMX: | |
11409 | mips_opts.ase_mdmx = 0; | |
11410 | break; | |
11411 | ||
74cd071d CF |
11412 | case OPTION_DSP: |
11413 | mips_opts.ase_dsp = 1; | |
8b082fb1 | 11414 | mips_opts.ase_dspr2 = 0; |
74cd071d CF |
11415 | break; |
11416 | ||
11417 | case OPTION_NO_DSP: | |
8b082fb1 TS |
11418 | mips_opts.ase_dsp = 0; |
11419 | mips_opts.ase_dspr2 = 0; | |
11420 | break; | |
11421 | ||
11422 | case OPTION_DSPR2: | |
11423 | mips_opts.ase_dspr2 = 1; | |
11424 | mips_opts.ase_dsp = 1; | |
11425 | break; | |
11426 | ||
11427 | case OPTION_NO_DSPR2: | |
11428 | mips_opts.ase_dspr2 = 0; | |
74cd071d CF |
11429 | mips_opts.ase_dsp = 0; |
11430 | break; | |
11431 | ||
ef2e4d86 CF |
11432 | case OPTION_MT: |
11433 | mips_opts.ase_mt = 1; | |
11434 | break; | |
11435 | ||
11436 | case OPTION_NO_MT: | |
11437 | mips_opts.ase_mt = 0; | |
11438 | break; | |
11439 | ||
252b5132 RH |
11440 | case OPTION_MIPS16: |
11441 | mips_opts.mips16 = 1; | |
7d10b47d | 11442 | mips_no_prev_insn (); |
252b5132 RH |
11443 | break; |
11444 | ||
11445 | case OPTION_NO_MIPS16: | |
11446 | mips_opts.mips16 = 0; | |
7d10b47d | 11447 | mips_no_prev_insn (); |
252b5132 RH |
11448 | break; |
11449 | ||
1f25f5d3 CD |
11450 | case OPTION_MIPS3D: |
11451 | mips_opts.ase_mips3d = 1; | |
11452 | break; | |
11453 | ||
11454 | case OPTION_NO_MIPS3D: | |
11455 | mips_opts.ase_mips3d = 0; | |
11456 | break; | |
11457 | ||
e16bfa71 TS |
11458 | case OPTION_SMARTMIPS: |
11459 | mips_opts.ase_smartmips = 1; | |
11460 | break; | |
11461 | ||
11462 | case OPTION_NO_SMARTMIPS: | |
11463 | mips_opts.ase_smartmips = 0; | |
11464 | break; | |
11465 | ||
d766e8ec RS |
11466 | case OPTION_FIX_VR4120: |
11467 | mips_fix_vr4120 = 1; | |
60b63b72 RS |
11468 | break; |
11469 | ||
d766e8ec RS |
11470 | case OPTION_NO_FIX_VR4120: |
11471 | mips_fix_vr4120 = 0; | |
60b63b72 RS |
11472 | break; |
11473 | ||
7d8e00cf RS |
11474 | case OPTION_FIX_VR4130: |
11475 | mips_fix_vr4130 = 1; | |
11476 | break; | |
11477 | ||
11478 | case OPTION_NO_FIX_VR4130: | |
11479 | mips_fix_vr4130 = 0; | |
11480 | break; | |
11481 | ||
4a6a3df4 AO |
11482 | case OPTION_RELAX_BRANCH: |
11483 | mips_relax_branch = 1; | |
11484 | break; | |
11485 | ||
11486 | case OPTION_NO_RELAX_BRANCH: | |
11487 | mips_relax_branch = 0; | |
11488 | break; | |
11489 | ||
aa6975fb ILT |
11490 | case OPTION_MSHARED: |
11491 | mips_in_shared = TRUE; | |
11492 | break; | |
11493 | ||
11494 | case OPTION_MNO_SHARED: | |
11495 | mips_in_shared = FALSE; | |
11496 | break; | |
11497 | ||
aed1a261 RS |
11498 | case OPTION_MSYM32: |
11499 | mips_opts.sym32 = TRUE; | |
11500 | break; | |
11501 | ||
11502 | case OPTION_MNO_SYM32: | |
11503 | mips_opts.sym32 = FALSE; | |
11504 | break; | |
11505 | ||
0f074f60 | 11506 | #ifdef OBJ_ELF |
252b5132 RH |
11507 | /* When generating ELF code, we permit -KPIC and -call_shared to |
11508 | select SVR4_PIC, and -non_shared to select no PIC. This is | |
11509 | intended to be compatible with Irix 5. */ | |
11510 | case OPTION_CALL_SHARED: | |
f43abd2b | 11511 | if (!IS_ELF) |
252b5132 RH |
11512 | { |
11513 | as_bad (_("-call_shared is supported only for ELF format")); | |
11514 | return 0; | |
11515 | } | |
11516 | mips_pic = SVR4_PIC; | |
143d77c5 | 11517 | mips_abicalls = TRUE; |
252b5132 RH |
11518 | break; |
11519 | ||
861fb55a DJ |
11520 | case OPTION_CALL_NONPIC: |
11521 | if (!IS_ELF) | |
11522 | { | |
11523 | as_bad (_("-call_nonpic is supported only for ELF format")); | |
11524 | return 0; | |
11525 | } | |
11526 | mips_pic = NO_PIC; | |
11527 | mips_abicalls = TRUE; | |
11528 | break; | |
11529 | ||
252b5132 | 11530 | case OPTION_NON_SHARED: |
f43abd2b | 11531 | if (!IS_ELF) |
252b5132 RH |
11532 | { |
11533 | as_bad (_("-non_shared is supported only for ELF format")); | |
11534 | return 0; | |
11535 | } | |
11536 | mips_pic = NO_PIC; | |
143d77c5 | 11537 | mips_abicalls = FALSE; |
252b5132 RH |
11538 | break; |
11539 | ||
44075ae2 TS |
11540 | /* The -xgot option tells the assembler to use 32 bit offsets |
11541 | when accessing the got in SVR4_PIC mode. It is for Irix | |
252b5132 RH |
11542 | compatibility. */ |
11543 | case OPTION_XGOT: | |
11544 | mips_big_got = 1; | |
11545 | break; | |
0f074f60 | 11546 | #endif /* OBJ_ELF */ |
252b5132 RH |
11547 | |
11548 | case 'G': | |
6caf9ef4 TS |
11549 | g_switch_value = atoi (arg); |
11550 | g_switch_seen = 1; | |
252b5132 RH |
11551 | break; |
11552 | ||
0f074f60 | 11553 | #ifdef OBJ_ELF |
34ba82a8 TS |
11554 | /* The -32, -n32 and -64 options are shortcuts for -mabi=32, -mabi=n32 |
11555 | and -mabi=64. */ | |
252b5132 | 11556 | case OPTION_32: |
f43abd2b | 11557 | if (!IS_ELF) |
34ba82a8 TS |
11558 | { |
11559 | as_bad (_("-32 is supported for ELF format only")); | |
11560 | return 0; | |
11561 | } | |
316f5878 | 11562 | mips_abi = O32_ABI; |
252b5132 RH |
11563 | break; |
11564 | ||
e013f690 | 11565 | case OPTION_N32: |
f43abd2b | 11566 | if (!IS_ELF) |
34ba82a8 TS |
11567 | { |
11568 | as_bad (_("-n32 is supported for ELF format only")); | |
11569 | return 0; | |
11570 | } | |
316f5878 | 11571 | mips_abi = N32_ABI; |
e013f690 | 11572 | break; |
252b5132 | 11573 | |
e013f690 | 11574 | case OPTION_64: |
f43abd2b | 11575 | if (!IS_ELF) |
34ba82a8 TS |
11576 | { |
11577 | as_bad (_("-64 is supported for ELF format only")); | |
11578 | return 0; | |
11579 | } | |
316f5878 | 11580 | mips_abi = N64_ABI; |
f43abd2b | 11581 | if (!support_64bit_objects()) |
e013f690 | 11582 | as_fatal (_("No compiled in support for 64 bit object file format")); |
252b5132 | 11583 | break; |
ae948b86 | 11584 | #endif /* OBJ_ELF */ |
252b5132 | 11585 | |
c97ef257 | 11586 | case OPTION_GP32: |
a325df1d | 11587 | file_mips_gp32 = 1; |
c97ef257 AH |
11588 | break; |
11589 | ||
11590 | case OPTION_GP64: | |
a325df1d | 11591 | file_mips_gp32 = 0; |
c97ef257 | 11592 | break; |
252b5132 | 11593 | |
ca4e0257 | 11594 | case OPTION_FP32: |
a325df1d | 11595 | file_mips_fp32 = 1; |
316f5878 RS |
11596 | break; |
11597 | ||
11598 | case OPTION_FP64: | |
11599 | file_mips_fp32 = 0; | |
ca4e0257 RS |
11600 | break; |
11601 | ||
037b32b9 AN |
11602 | case OPTION_SINGLE_FLOAT: |
11603 | file_mips_single_float = 1; | |
11604 | break; | |
11605 | ||
11606 | case OPTION_DOUBLE_FLOAT: | |
11607 | file_mips_single_float = 0; | |
11608 | break; | |
11609 | ||
11610 | case OPTION_SOFT_FLOAT: | |
11611 | file_mips_soft_float = 1; | |
11612 | break; | |
11613 | ||
11614 | case OPTION_HARD_FLOAT: | |
11615 | file_mips_soft_float = 0; | |
11616 | break; | |
11617 | ||
ae948b86 | 11618 | #ifdef OBJ_ELF |
252b5132 | 11619 | case OPTION_MABI: |
f43abd2b | 11620 | if (!IS_ELF) |
34ba82a8 TS |
11621 | { |
11622 | as_bad (_("-mabi is supported for ELF format only")); | |
11623 | return 0; | |
11624 | } | |
e013f690 | 11625 | if (strcmp (arg, "32") == 0) |
316f5878 | 11626 | mips_abi = O32_ABI; |
e013f690 | 11627 | else if (strcmp (arg, "o64") == 0) |
316f5878 | 11628 | mips_abi = O64_ABI; |
e013f690 | 11629 | else if (strcmp (arg, "n32") == 0) |
316f5878 | 11630 | mips_abi = N32_ABI; |
e013f690 TS |
11631 | else if (strcmp (arg, "64") == 0) |
11632 | { | |
316f5878 | 11633 | mips_abi = N64_ABI; |
e013f690 TS |
11634 | if (! support_64bit_objects()) |
11635 | as_fatal (_("No compiled in support for 64 bit object file " | |
11636 | "format")); | |
11637 | } | |
11638 | else if (strcmp (arg, "eabi") == 0) | |
316f5878 | 11639 | mips_abi = EABI_ABI; |
e013f690 | 11640 | else |
da0e507f TS |
11641 | { |
11642 | as_fatal (_("invalid abi -mabi=%s"), arg); | |
11643 | return 0; | |
11644 | } | |
252b5132 | 11645 | break; |
e013f690 | 11646 | #endif /* OBJ_ELF */ |
252b5132 | 11647 | |
6b76fefe | 11648 | case OPTION_M7000_HILO_FIX: |
b34976b6 | 11649 | mips_7000_hilo_fix = TRUE; |
6b76fefe CM |
11650 | break; |
11651 | ||
9ee72ff1 | 11652 | case OPTION_MNO_7000_HILO_FIX: |
b34976b6 | 11653 | mips_7000_hilo_fix = FALSE; |
6b76fefe CM |
11654 | break; |
11655 | ||
ecb4347a DJ |
11656 | #ifdef OBJ_ELF |
11657 | case OPTION_MDEBUG: | |
b34976b6 | 11658 | mips_flag_mdebug = TRUE; |
ecb4347a DJ |
11659 | break; |
11660 | ||
11661 | case OPTION_NO_MDEBUG: | |
b34976b6 | 11662 | mips_flag_mdebug = FALSE; |
ecb4347a | 11663 | break; |
dcd410fe RO |
11664 | |
11665 | case OPTION_PDR: | |
11666 | mips_flag_pdr = TRUE; | |
11667 | break; | |
11668 | ||
11669 | case OPTION_NO_PDR: | |
11670 | mips_flag_pdr = FALSE; | |
11671 | break; | |
0a44bf69 RS |
11672 | |
11673 | case OPTION_MVXWORKS_PIC: | |
11674 | mips_pic = VXWORKS_PIC; | |
11675 | break; | |
ecb4347a DJ |
11676 | #endif /* OBJ_ELF */ |
11677 | ||
252b5132 RH |
11678 | default: |
11679 | return 0; | |
11680 | } | |
11681 | ||
11682 | return 1; | |
11683 | } | |
316f5878 RS |
11684 | \f |
11685 | /* Set up globals to generate code for the ISA or processor | |
11686 | described by INFO. */ | |
252b5132 | 11687 | |
252b5132 | 11688 | static void |
17a2f251 | 11689 | mips_set_architecture (const struct mips_cpu_info *info) |
252b5132 | 11690 | { |
316f5878 | 11691 | if (info != 0) |
252b5132 | 11692 | { |
fef14a42 TS |
11693 | file_mips_arch = info->cpu; |
11694 | mips_opts.arch = info->cpu; | |
316f5878 | 11695 | mips_opts.isa = info->isa; |
252b5132 | 11696 | } |
252b5132 RH |
11697 | } |
11698 | ||
252b5132 | 11699 | |
316f5878 | 11700 | /* Likewise for tuning. */ |
252b5132 | 11701 | |
316f5878 | 11702 | static void |
17a2f251 | 11703 | mips_set_tune (const struct mips_cpu_info *info) |
316f5878 RS |
11704 | { |
11705 | if (info != 0) | |
fef14a42 | 11706 | mips_tune = info->cpu; |
316f5878 | 11707 | } |
80cc45a5 | 11708 | |
34ba82a8 | 11709 | |
252b5132 | 11710 | void |
17a2f251 | 11711 | mips_after_parse_args (void) |
e9670677 | 11712 | { |
fef14a42 TS |
11713 | const struct mips_cpu_info *arch_info = 0; |
11714 | const struct mips_cpu_info *tune_info = 0; | |
11715 | ||
e9670677 | 11716 | /* GP relative stuff not working for PE */ |
6caf9ef4 | 11717 | if (strncmp (TARGET_OS, "pe", 2) == 0) |
e9670677 | 11718 | { |
6caf9ef4 | 11719 | if (g_switch_seen && g_switch_value != 0) |
e9670677 MR |
11720 | as_bad (_("-G not supported in this configuration.")); |
11721 | g_switch_value = 0; | |
11722 | } | |
11723 | ||
cac012d6 AO |
11724 | if (mips_abi == NO_ABI) |
11725 | mips_abi = MIPS_DEFAULT_ABI; | |
11726 | ||
22923709 RS |
11727 | /* The following code determines the architecture and register size. |
11728 | Similar code was added to GCC 3.3 (see override_options() in | |
11729 | config/mips/mips.c). The GAS and GCC code should be kept in sync | |
11730 | as much as possible. */ | |
e9670677 | 11731 | |
316f5878 | 11732 | if (mips_arch_string != 0) |
fef14a42 | 11733 | arch_info = mips_parse_cpu ("-march", mips_arch_string); |
e9670677 | 11734 | |
316f5878 | 11735 | if (file_mips_isa != ISA_UNKNOWN) |
e9670677 | 11736 | { |
316f5878 | 11737 | /* Handle -mipsN. At this point, file_mips_isa contains the |
fef14a42 | 11738 | ISA level specified by -mipsN, while arch_info->isa contains |
316f5878 | 11739 | the -march selection (if any). */ |
fef14a42 | 11740 | if (arch_info != 0) |
e9670677 | 11741 | { |
316f5878 RS |
11742 | /* -march takes precedence over -mipsN, since it is more descriptive. |
11743 | There's no harm in specifying both as long as the ISA levels | |
11744 | are the same. */ | |
fef14a42 | 11745 | if (file_mips_isa != arch_info->isa) |
316f5878 RS |
11746 | as_bad (_("-%s conflicts with the other architecture options, which imply -%s"), |
11747 | mips_cpu_info_from_isa (file_mips_isa)->name, | |
fef14a42 | 11748 | mips_cpu_info_from_isa (arch_info->isa)->name); |
e9670677 | 11749 | } |
316f5878 | 11750 | else |
fef14a42 | 11751 | arch_info = mips_cpu_info_from_isa (file_mips_isa); |
e9670677 MR |
11752 | } |
11753 | ||
fef14a42 TS |
11754 | if (arch_info == 0) |
11755 | arch_info = mips_parse_cpu ("default CPU", MIPS_CPU_STRING_DEFAULT); | |
e9670677 | 11756 | |
fef14a42 | 11757 | if (ABI_NEEDS_64BIT_REGS (mips_abi) && !ISA_HAS_64BIT_REGS (arch_info->isa)) |
316f5878 | 11758 | as_bad ("-march=%s is not compatible with the selected ABI", |
fef14a42 TS |
11759 | arch_info->name); |
11760 | ||
11761 | mips_set_architecture (arch_info); | |
11762 | ||
11763 | /* Optimize for file_mips_arch, unless -mtune selects a different processor. */ | |
11764 | if (mips_tune_string != 0) | |
11765 | tune_info = mips_parse_cpu ("-mtune", mips_tune_string); | |
e9670677 | 11766 | |
fef14a42 TS |
11767 | if (tune_info == 0) |
11768 | mips_set_tune (arch_info); | |
11769 | else | |
11770 | mips_set_tune (tune_info); | |
e9670677 | 11771 | |
316f5878 | 11772 | if (file_mips_gp32 >= 0) |
e9670677 | 11773 | { |
316f5878 RS |
11774 | /* The user specified the size of the integer registers. Make sure |
11775 | it agrees with the ABI and ISA. */ | |
11776 | if (file_mips_gp32 == 0 && !ISA_HAS_64BIT_REGS (mips_opts.isa)) | |
11777 | as_bad (_("-mgp64 used with a 32-bit processor")); | |
11778 | else if (file_mips_gp32 == 1 && ABI_NEEDS_64BIT_REGS (mips_abi)) | |
11779 | as_bad (_("-mgp32 used with a 64-bit ABI")); | |
11780 | else if (file_mips_gp32 == 0 && ABI_NEEDS_32BIT_REGS (mips_abi)) | |
11781 | as_bad (_("-mgp64 used with a 32-bit ABI")); | |
e9670677 MR |
11782 | } |
11783 | else | |
11784 | { | |
316f5878 RS |
11785 | /* Infer the integer register size from the ABI and processor. |
11786 | Restrict ourselves to 32-bit registers if that's all the | |
11787 | processor has, or if the ABI cannot handle 64-bit registers. */ | |
11788 | file_mips_gp32 = (ABI_NEEDS_32BIT_REGS (mips_abi) | |
11789 | || !ISA_HAS_64BIT_REGS (mips_opts.isa)); | |
e9670677 MR |
11790 | } |
11791 | ||
ad3fea08 TS |
11792 | switch (file_mips_fp32) |
11793 | { | |
11794 | default: | |
11795 | case -1: | |
11796 | /* No user specified float register size. | |
11797 | ??? GAS treats single-float processors as though they had 64-bit | |
11798 | float registers (although it complains when double-precision | |
11799 | instructions are used). As things stand, saying they have 32-bit | |
11800 | registers would lead to spurious "register must be even" messages. | |
11801 | So here we assume float registers are never smaller than the | |
11802 | integer ones. */ | |
11803 | if (file_mips_gp32 == 0) | |
11804 | /* 64-bit integer registers implies 64-bit float registers. */ | |
11805 | file_mips_fp32 = 0; | |
11806 | else if ((mips_opts.ase_mips3d > 0 || mips_opts.ase_mdmx > 0) | |
11807 | && ISA_HAS_64BIT_FPRS (mips_opts.isa)) | |
11808 | /* -mips3d and -mdmx imply 64-bit float registers, if possible. */ | |
11809 | file_mips_fp32 = 0; | |
11810 | else | |
11811 | /* 32-bit float registers. */ | |
11812 | file_mips_fp32 = 1; | |
11813 | break; | |
11814 | ||
11815 | /* The user specified the size of the float registers. Check if it | |
11816 | agrees with the ABI and ISA. */ | |
11817 | case 0: | |
11818 | if (!ISA_HAS_64BIT_FPRS (mips_opts.isa)) | |
11819 | as_bad (_("-mfp64 used with a 32-bit fpu")); | |
11820 | else if (ABI_NEEDS_32BIT_REGS (mips_abi) | |
11821 | && !ISA_HAS_MXHC1 (mips_opts.isa)) | |
11822 | as_warn (_("-mfp64 used with a 32-bit ABI")); | |
11823 | break; | |
11824 | case 1: | |
11825 | if (ABI_NEEDS_64BIT_REGS (mips_abi)) | |
11826 | as_warn (_("-mfp32 used with a 64-bit ABI")); | |
11827 | break; | |
11828 | } | |
e9670677 | 11829 | |
316f5878 | 11830 | /* End of GCC-shared inference code. */ |
e9670677 | 11831 | |
17a2f251 TS |
11832 | /* This flag is set when we have a 64-bit capable CPU but use only |
11833 | 32-bit wide registers. Note that EABI does not use it. */ | |
11834 | if (ISA_HAS_64BIT_REGS (mips_opts.isa) | |
11835 | && ((mips_abi == NO_ABI && file_mips_gp32 == 1) | |
11836 | || mips_abi == O32_ABI)) | |
316f5878 | 11837 | mips_32bitmode = 1; |
e9670677 MR |
11838 | |
11839 | if (mips_opts.isa == ISA_MIPS1 && mips_trap) | |
11840 | as_bad (_("trap exception not supported at ISA 1")); | |
11841 | ||
e9670677 MR |
11842 | /* If the selected architecture includes support for ASEs, enable |
11843 | generation of code for them. */ | |
a4672219 | 11844 | if (mips_opts.mips16 == -1) |
fef14a42 | 11845 | mips_opts.mips16 = (CPU_HAS_MIPS16 (file_mips_arch)) ? 1 : 0; |
ffdefa66 | 11846 | if (mips_opts.ase_mips3d == -1) |
65263ce3 | 11847 | mips_opts.ase_mips3d = ((arch_info->flags & MIPS_CPU_ASE_MIPS3D) |
ad3fea08 TS |
11848 | && file_mips_fp32 == 0) ? 1 : 0; |
11849 | if (mips_opts.ase_mips3d && file_mips_fp32 == 1) | |
11850 | as_bad (_("-mfp32 used with -mips3d")); | |
11851 | ||
ffdefa66 | 11852 | if (mips_opts.ase_mdmx == -1) |
65263ce3 | 11853 | mips_opts.ase_mdmx = ((arch_info->flags & MIPS_CPU_ASE_MDMX) |
ad3fea08 TS |
11854 | && file_mips_fp32 == 0) ? 1 : 0; |
11855 | if (mips_opts.ase_mdmx && file_mips_fp32 == 1) | |
11856 | as_bad (_("-mfp32 used with -mdmx")); | |
11857 | ||
11858 | if (mips_opts.ase_smartmips == -1) | |
11859 | mips_opts.ase_smartmips = (arch_info->flags & MIPS_CPU_ASE_SMARTMIPS) ? 1 : 0; | |
11860 | if (mips_opts.ase_smartmips && !ISA_SUPPORTS_SMARTMIPS) | |
11861 | as_warn ("%s ISA does not support SmartMIPS", | |
11862 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
11863 | ||
74cd071d | 11864 | if (mips_opts.ase_dsp == -1) |
ad3fea08 TS |
11865 | mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0; |
11866 | if (mips_opts.ase_dsp && !ISA_SUPPORTS_DSP_ASE) | |
11867 | as_warn ("%s ISA does not support DSP ASE", | |
11868 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
11869 | ||
8b082fb1 TS |
11870 | if (mips_opts.ase_dspr2 == -1) |
11871 | { | |
11872 | mips_opts.ase_dspr2 = (arch_info->flags & MIPS_CPU_ASE_DSPR2) ? 1 : 0; | |
11873 | mips_opts.ase_dsp = (arch_info->flags & MIPS_CPU_ASE_DSP) ? 1 : 0; | |
11874 | } | |
11875 | if (mips_opts.ase_dspr2 && !ISA_SUPPORTS_DSPR2_ASE) | |
11876 | as_warn ("%s ISA does not support DSP R2 ASE", | |
11877 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
11878 | ||
ef2e4d86 | 11879 | if (mips_opts.ase_mt == -1) |
ad3fea08 TS |
11880 | mips_opts.ase_mt = (arch_info->flags & MIPS_CPU_ASE_MT) ? 1 : 0; |
11881 | if (mips_opts.ase_mt && !ISA_SUPPORTS_MT_ASE) | |
8b082fb1 | 11882 | as_warn ("%s ISA does not support MT ASE", |
ad3fea08 | 11883 | mips_cpu_info_from_isa (mips_opts.isa)->name); |
e9670677 | 11884 | |
e9670677 | 11885 | file_mips_isa = mips_opts.isa; |
a4672219 | 11886 | file_ase_mips16 = mips_opts.mips16; |
e9670677 MR |
11887 | file_ase_mips3d = mips_opts.ase_mips3d; |
11888 | file_ase_mdmx = mips_opts.ase_mdmx; | |
e16bfa71 | 11889 | file_ase_smartmips = mips_opts.ase_smartmips; |
74cd071d | 11890 | file_ase_dsp = mips_opts.ase_dsp; |
8b082fb1 | 11891 | file_ase_dspr2 = mips_opts.ase_dspr2; |
ef2e4d86 | 11892 | file_ase_mt = mips_opts.ase_mt; |
e9670677 MR |
11893 | mips_opts.gp32 = file_mips_gp32; |
11894 | mips_opts.fp32 = file_mips_fp32; | |
037b32b9 AN |
11895 | mips_opts.soft_float = file_mips_soft_float; |
11896 | mips_opts.single_float = file_mips_single_float; | |
e9670677 | 11897 | |
ecb4347a DJ |
11898 | if (mips_flag_mdebug < 0) |
11899 | { | |
11900 | #ifdef OBJ_MAYBE_ECOFF | |
11901 | if (OUTPUT_FLAVOR == bfd_target_ecoff_flavour) | |
11902 | mips_flag_mdebug = 1; | |
11903 | else | |
11904 | #endif /* OBJ_MAYBE_ECOFF */ | |
11905 | mips_flag_mdebug = 0; | |
11906 | } | |
e9670677 MR |
11907 | } |
11908 | \f | |
11909 | void | |
17a2f251 | 11910 | mips_init_after_args (void) |
252b5132 RH |
11911 | { |
11912 | /* initialize opcodes */ | |
11913 | bfd_mips_num_opcodes = bfd_mips_num_builtin_opcodes; | |
beae10d5 | 11914 | mips_opcodes = (struct mips_opcode *) mips_builtin_opcodes; |
252b5132 RH |
11915 | } |
11916 | ||
11917 | long | |
17a2f251 | 11918 | md_pcrel_from (fixS *fixP) |
252b5132 | 11919 | { |
a7ebbfdf TS |
11920 | valueT addr = fixP->fx_where + fixP->fx_frag->fr_address; |
11921 | switch (fixP->fx_r_type) | |
11922 | { | |
11923 | case BFD_RELOC_16_PCREL_S2: | |
11924 | case BFD_RELOC_MIPS_JMP: | |
11925 | /* Return the address of the delay slot. */ | |
11926 | return addr + 4; | |
11927 | default: | |
58ea3d6a | 11928 | /* We have no relocation type for PC relative MIPS16 instructions. */ |
64817874 TS |
11929 | if (fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != now_seg) |
11930 | as_bad_where (fixP->fx_file, fixP->fx_line, | |
11931 | _("PC relative MIPS16 instruction references a different section")); | |
a7ebbfdf TS |
11932 | return addr; |
11933 | } | |
252b5132 RH |
11934 | } |
11935 | ||
252b5132 RH |
11936 | /* This is called before the symbol table is processed. In order to |
11937 | work with gcc when using mips-tfile, we must keep all local labels. | |
11938 | However, in other cases, we want to discard them. If we were | |
11939 | called with -g, but we didn't see any debugging information, it may | |
11940 | mean that gcc is smuggling debugging information through to | |
11941 | mips-tfile, in which case we must generate all local labels. */ | |
11942 | ||
11943 | void | |
17a2f251 | 11944 | mips_frob_file_before_adjust (void) |
252b5132 RH |
11945 | { |
11946 | #ifndef NO_ECOFF_DEBUGGING | |
11947 | if (ECOFF_DEBUGGING | |
11948 | && mips_debug != 0 | |
11949 | && ! ecoff_debugging_seen) | |
11950 | flag_keep_locals = 1; | |
11951 | #endif | |
11952 | } | |
11953 | ||
3b91255e | 11954 | /* Sort any unmatched HI16 and GOT16 relocs so that they immediately precede |
55cf6793 | 11955 | the corresponding LO16 reloc. This is called before md_apply_fix and |
3b91255e RS |
11956 | tc_gen_reloc. Unmatched relocs can only be generated by use of explicit |
11957 | relocation operators. | |
11958 | ||
11959 | For our purposes, a %lo() expression matches a %got() or %hi() | |
11960 | expression if: | |
11961 | ||
11962 | (a) it refers to the same symbol; and | |
11963 | (b) the offset applied in the %lo() expression is no lower than | |
11964 | the offset applied in the %got() or %hi(). | |
11965 | ||
11966 | (b) allows us to cope with code like: | |
11967 | ||
11968 | lui $4,%hi(foo) | |
11969 | lh $4,%lo(foo+2)($4) | |
11970 | ||
11971 | ...which is legal on RELA targets, and has a well-defined behaviour | |
11972 | if the user knows that adding 2 to "foo" will not induce a carry to | |
11973 | the high 16 bits. | |
11974 | ||
11975 | When several %lo()s match a particular %got() or %hi(), we use the | |
11976 | following rules to distinguish them: | |
11977 | ||
11978 | (1) %lo()s with smaller offsets are a better match than %lo()s with | |
11979 | higher offsets. | |
11980 | ||
11981 | (2) %lo()s with no matching %got() or %hi() are better than those | |
11982 | that already have a matching %got() or %hi(). | |
11983 | ||
11984 | (3) later %lo()s are better than earlier %lo()s. | |
11985 | ||
11986 | These rules are applied in order. | |
11987 | ||
11988 | (1) means, among other things, that %lo()s with identical offsets are | |
11989 | chosen if they exist. | |
11990 | ||
11991 | (2) means that we won't associate several high-part relocations with | |
11992 | the same low-part relocation unless there's no alternative. Having | |
11993 | several high parts for the same low part is a GNU extension; this rule | |
11994 | allows careful users to avoid it. | |
11995 | ||
11996 | (3) is purely cosmetic. mips_hi_fixup_list is is in reverse order, | |
11997 | with the last high-part relocation being at the front of the list. | |
11998 | It therefore makes sense to choose the last matching low-part | |
11999 | relocation, all other things being equal. It's also easier | |
12000 | to code that way. */ | |
252b5132 RH |
12001 | |
12002 | void | |
17a2f251 | 12003 | mips_frob_file (void) |
252b5132 RH |
12004 | { |
12005 | struct mips_hi_fixup *l; | |
35903be0 | 12006 | bfd_reloc_code_real_type looking_for_rtype = BFD_RELOC_UNUSED; |
252b5132 RH |
12007 | |
12008 | for (l = mips_hi_fixup_list; l != NULL; l = l->next) | |
12009 | { | |
12010 | segment_info_type *seginfo; | |
3b91255e RS |
12011 | bfd_boolean matched_lo_p; |
12012 | fixS **hi_pos, **lo_pos, **pos; | |
252b5132 | 12013 | |
5919d012 | 12014 | assert (reloc_needs_lo_p (l->fixp->fx_r_type)); |
252b5132 | 12015 | |
5919d012 RS |
12016 | /* If a GOT16 relocation turns out to be against a global symbol, |
12017 | there isn't supposed to be a matching LO. */ | |
738e5348 | 12018 | if (got16_reloc_p (l->fixp->fx_r_type) |
5919d012 RS |
12019 | && !pic_need_relax (l->fixp->fx_addsy, l->seg)) |
12020 | continue; | |
12021 | ||
12022 | /* Check quickly whether the next fixup happens to be a matching %lo. */ | |
12023 | if (fixup_has_matching_lo_p (l->fixp)) | |
252b5132 RH |
12024 | continue; |
12025 | ||
252b5132 | 12026 | seginfo = seg_info (l->seg); |
252b5132 | 12027 | |
3b91255e RS |
12028 | /* Set HI_POS to the position of this relocation in the chain. |
12029 | Set LO_POS to the position of the chosen low-part relocation. | |
12030 | MATCHED_LO_P is true on entry to the loop if *POS is a low-part | |
12031 | relocation that matches an immediately-preceding high-part | |
12032 | relocation. */ | |
12033 | hi_pos = NULL; | |
12034 | lo_pos = NULL; | |
12035 | matched_lo_p = FALSE; | |
738e5348 | 12036 | looking_for_rtype = matching_lo_reloc (l->fixp->fx_r_type); |
35903be0 | 12037 | |
3b91255e RS |
12038 | for (pos = &seginfo->fix_root; *pos != NULL; pos = &(*pos)->fx_next) |
12039 | { | |
12040 | if (*pos == l->fixp) | |
12041 | hi_pos = pos; | |
12042 | ||
35903be0 | 12043 | if ((*pos)->fx_r_type == looking_for_rtype |
3b91255e RS |
12044 | && (*pos)->fx_addsy == l->fixp->fx_addsy |
12045 | && (*pos)->fx_offset >= l->fixp->fx_offset | |
12046 | && (lo_pos == NULL | |
12047 | || (*pos)->fx_offset < (*lo_pos)->fx_offset | |
12048 | || (!matched_lo_p | |
12049 | && (*pos)->fx_offset == (*lo_pos)->fx_offset))) | |
12050 | lo_pos = pos; | |
12051 | ||
12052 | matched_lo_p = (reloc_needs_lo_p ((*pos)->fx_r_type) | |
12053 | && fixup_has_matching_lo_p (*pos)); | |
12054 | } | |
12055 | ||
12056 | /* If we found a match, remove the high-part relocation from its | |
12057 | current position and insert it before the low-part relocation. | |
12058 | Make the offsets match so that fixup_has_matching_lo_p() | |
12059 | will return true. | |
12060 | ||
12061 | We don't warn about unmatched high-part relocations since some | |
12062 | versions of gcc have been known to emit dead "lui ...%hi(...)" | |
12063 | instructions. */ | |
12064 | if (lo_pos != NULL) | |
12065 | { | |
12066 | l->fixp->fx_offset = (*lo_pos)->fx_offset; | |
12067 | if (l->fixp->fx_next != *lo_pos) | |
252b5132 | 12068 | { |
3b91255e RS |
12069 | *hi_pos = l->fixp->fx_next; |
12070 | l->fixp->fx_next = *lo_pos; | |
12071 | *lo_pos = l->fixp; | |
252b5132 | 12072 | } |
252b5132 RH |
12073 | } |
12074 | } | |
12075 | } | |
12076 | ||
3e722fb5 | 12077 | /* We may have combined relocations without symbols in the N32/N64 ABI. |
f6688943 | 12078 | We have to prevent gas from dropping them. */ |
252b5132 | 12079 | |
252b5132 | 12080 | int |
17a2f251 | 12081 | mips_force_relocation (fixS *fixp) |
252b5132 | 12082 | { |
ae6063d4 | 12083 | if (generic_force_reloc (fixp)) |
252b5132 RH |
12084 | return 1; |
12085 | ||
f6688943 TS |
12086 | if (HAVE_NEWABI |
12087 | && S_GET_SEGMENT (fixp->fx_addsy) == bfd_abs_section_ptr | |
12088 | && (fixp->fx_r_type == BFD_RELOC_MIPS_SUB | |
738e5348 RS |
12089 | || hi16_reloc_p (fixp->fx_r_type) |
12090 | || lo16_reloc_p (fixp->fx_r_type))) | |
f6688943 TS |
12091 | return 1; |
12092 | ||
3e722fb5 | 12093 | return 0; |
252b5132 RH |
12094 | } |
12095 | ||
12096 | /* Apply a fixup to the object file. */ | |
12097 | ||
94f592af | 12098 | void |
55cf6793 | 12099 | md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) |
252b5132 | 12100 | { |
874e8986 | 12101 | bfd_byte *buf; |
98aa84af | 12102 | long insn; |
a7ebbfdf | 12103 | reloc_howto_type *howto; |
252b5132 | 12104 | |
a7ebbfdf TS |
12105 | /* We ignore generic BFD relocations we don't know about. */ |
12106 | howto = bfd_reloc_type_lookup (stdoutput, fixP->fx_r_type); | |
12107 | if (! howto) | |
12108 | return; | |
65551fa4 | 12109 | |
252b5132 RH |
12110 | assert (fixP->fx_size == 4 |
12111 | || fixP->fx_r_type == BFD_RELOC_16 | |
12112 | || fixP->fx_r_type == BFD_RELOC_64 | |
f6688943 TS |
12113 | || fixP->fx_r_type == BFD_RELOC_CTOR |
12114 | || fixP->fx_r_type == BFD_RELOC_MIPS_SUB | |
252b5132 | 12115 | || fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT |
741d6ea8 JM |
12116 | || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY |
12117 | || fixP->fx_r_type == BFD_RELOC_MIPS_TLS_DTPREL64); | |
252b5132 | 12118 | |
a7ebbfdf | 12119 | buf = (bfd_byte *) (fixP->fx_frag->fr_literal + fixP->fx_where); |
252b5132 | 12120 | |
3994f87e | 12121 | assert (!fixP->fx_pcrel || fixP->fx_r_type == BFD_RELOC_16_PCREL_S2); |
b1dca8ee RS |
12122 | |
12123 | /* Don't treat parts of a composite relocation as done. There are two | |
12124 | reasons for this: | |
12125 | ||
12126 | (1) The second and third parts will be against 0 (RSS_UNDEF) but | |
12127 | should nevertheless be emitted if the first part is. | |
12128 | ||
12129 | (2) In normal usage, composite relocations are never assembly-time | |
12130 | constants. The easiest way of dealing with the pathological | |
12131 | exceptions is to generate a relocation against STN_UNDEF and | |
12132 | leave everything up to the linker. */ | |
3994f87e | 12133 | if (fixP->fx_addsy == NULL && !fixP->fx_pcrel && fixP->fx_tcbit == 0) |
252b5132 RH |
12134 | fixP->fx_done = 1; |
12135 | ||
12136 | switch (fixP->fx_r_type) | |
12137 | { | |
3f98094e DJ |
12138 | case BFD_RELOC_MIPS_TLS_GD: |
12139 | case BFD_RELOC_MIPS_TLS_LDM: | |
741d6ea8 JM |
12140 | case BFD_RELOC_MIPS_TLS_DTPREL32: |
12141 | case BFD_RELOC_MIPS_TLS_DTPREL64: | |
3f98094e DJ |
12142 | case BFD_RELOC_MIPS_TLS_DTPREL_HI16: |
12143 | case BFD_RELOC_MIPS_TLS_DTPREL_LO16: | |
12144 | case BFD_RELOC_MIPS_TLS_GOTTPREL: | |
12145 | case BFD_RELOC_MIPS_TLS_TPREL_HI16: | |
12146 | case BFD_RELOC_MIPS_TLS_TPREL_LO16: | |
12147 | S_SET_THREAD_LOCAL (fixP->fx_addsy); | |
12148 | /* fall through */ | |
12149 | ||
252b5132 | 12150 | case BFD_RELOC_MIPS_JMP: |
e369bcce TS |
12151 | case BFD_RELOC_MIPS_SHIFT5: |
12152 | case BFD_RELOC_MIPS_SHIFT6: | |
12153 | case BFD_RELOC_MIPS_GOT_DISP: | |
12154 | case BFD_RELOC_MIPS_GOT_PAGE: | |
12155 | case BFD_RELOC_MIPS_GOT_OFST: | |
12156 | case BFD_RELOC_MIPS_SUB: | |
12157 | case BFD_RELOC_MIPS_INSERT_A: | |
12158 | case BFD_RELOC_MIPS_INSERT_B: | |
12159 | case BFD_RELOC_MIPS_DELETE: | |
12160 | case BFD_RELOC_MIPS_HIGHEST: | |
12161 | case BFD_RELOC_MIPS_HIGHER: | |
12162 | case BFD_RELOC_MIPS_SCN_DISP: | |
12163 | case BFD_RELOC_MIPS_REL16: | |
12164 | case BFD_RELOC_MIPS_RELGOT: | |
12165 | case BFD_RELOC_MIPS_JALR: | |
252b5132 RH |
12166 | case BFD_RELOC_HI16: |
12167 | case BFD_RELOC_HI16_S: | |
cdf6fd85 | 12168 | case BFD_RELOC_GPREL16: |
252b5132 RH |
12169 | case BFD_RELOC_MIPS_LITERAL: |
12170 | case BFD_RELOC_MIPS_CALL16: | |
12171 | case BFD_RELOC_MIPS_GOT16: | |
cdf6fd85 | 12172 | case BFD_RELOC_GPREL32: |
252b5132 RH |
12173 | case BFD_RELOC_MIPS_GOT_HI16: |
12174 | case BFD_RELOC_MIPS_GOT_LO16: | |
12175 | case BFD_RELOC_MIPS_CALL_HI16: | |
12176 | case BFD_RELOC_MIPS_CALL_LO16: | |
12177 | case BFD_RELOC_MIPS16_GPREL: | |
738e5348 RS |
12178 | case BFD_RELOC_MIPS16_GOT16: |
12179 | case BFD_RELOC_MIPS16_CALL16: | |
d6f16593 MR |
12180 | case BFD_RELOC_MIPS16_HI16: |
12181 | case BFD_RELOC_MIPS16_HI16_S: | |
252b5132 | 12182 | case BFD_RELOC_MIPS16_JMP: |
54f4ddb3 | 12183 | /* Nothing needed to do. The value comes from the reloc entry. */ |
252b5132 RH |
12184 | break; |
12185 | ||
252b5132 RH |
12186 | case BFD_RELOC_64: |
12187 | /* This is handled like BFD_RELOC_32, but we output a sign | |
12188 | extended value if we are only 32 bits. */ | |
3e722fb5 | 12189 | if (fixP->fx_done) |
252b5132 RH |
12190 | { |
12191 | if (8 <= sizeof (valueT)) | |
2132e3a3 | 12192 | md_number_to_chars ((char *) buf, *valP, 8); |
252b5132 RH |
12193 | else |
12194 | { | |
a7ebbfdf | 12195 | valueT hiv; |
252b5132 | 12196 | |
a7ebbfdf | 12197 | if ((*valP & 0x80000000) != 0) |
252b5132 RH |
12198 | hiv = 0xffffffff; |
12199 | else | |
12200 | hiv = 0; | |
b215186b | 12201 | md_number_to_chars ((char *)(buf + (target_big_endian ? 4 : 0)), |
a7ebbfdf | 12202 | *valP, 4); |
b215186b | 12203 | md_number_to_chars ((char *)(buf + (target_big_endian ? 0 : 4)), |
a7ebbfdf | 12204 | hiv, 4); |
252b5132 RH |
12205 | } |
12206 | } | |
12207 | break; | |
12208 | ||
056350c6 | 12209 | case BFD_RELOC_RVA: |
252b5132 | 12210 | case BFD_RELOC_32: |
252b5132 RH |
12211 | case BFD_RELOC_16: |
12212 | /* If we are deleting this reloc entry, we must fill in the | |
54f4ddb3 TS |
12213 | value now. This can happen if we have a .word which is not |
12214 | resolved when it appears but is later defined. */ | |
252b5132 | 12215 | if (fixP->fx_done) |
54f4ddb3 | 12216 | md_number_to_chars ((char *) buf, *valP, fixP->fx_size); |
252b5132 RH |
12217 | break; |
12218 | ||
12219 | case BFD_RELOC_LO16: | |
d6f16593 | 12220 | case BFD_RELOC_MIPS16_LO16: |
3e722fb5 CD |
12221 | /* FIXME: Now that embedded-PIC is gone, some of this code/comment |
12222 | may be safe to remove, but if so it's not obvious. */ | |
252b5132 RH |
12223 | /* When handling an embedded PIC switch statement, we can wind |
12224 | up deleting a LO16 reloc. See the 'o' case in mips_ip. */ | |
12225 | if (fixP->fx_done) | |
12226 | { | |
a7ebbfdf | 12227 | if (*valP + 0x8000 > 0xffff) |
252b5132 RH |
12228 | as_bad_where (fixP->fx_file, fixP->fx_line, |
12229 | _("relocation overflow")); | |
252b5132 RH |
12230 | if (target_big_endian) |
12231 | buf += 2; | |
2132e3a3 | 12232 | md_number_to_chars ((char *) buf, *valP, 2); |
252b5132 RH |
12233 | } |
12234 | break; | |
12235 | ||
12236 | case BFD_RELOC_16_PCREL_S2: | |
a7ebbfdf | 12237 | if ((*valP & 0x3) != 0) |
cb56d3d3 | 12238 | as_bad_where (fixP->fx_file, fixP->fx_line, |
bad36eac | 12239 | _("Branch to misaligned address (%lx)"), (long) *valP); |
cb56d3d3 | 12240 | |
54f4ddb3 TS |
12241 | /* We need to save the bits in the instruction since fixup_segment() |
12242 | might be deleting the relocation entry (i.e., a branch within | |
12243 | the current segment). */ | |
a7ebbfdf | 12244 | if (! fixP->fx_done) |
bb2d6cd7 | 12245 | break; |
252b5132 | 12246 | |
54f4ddb3 | 12247 | /* Update old instruction data. */ |
252b5132 RH |
12248 | if (target_big_endian) |
12249 | insn = (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3]; | |
12250 | else | |
12251 | insn = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0]; | |
12252 | ||
a7ebbfdf TS |
12253 | if (*valP + 0x20000 <= 0x3ffff) |
12254 | { | |
12255 | insn |= (*valP >> 2) & 0xffff; | |
2132e3a3 | 12256 | md_number_to_chars ((char *) buf, insn, 4); |
a7ebbfdf TS |
12257 | } |
12258 | else if (mips_pic == NO_PIC | |
12259 | && fixP->fx_done | |
12260 | && fixP->fx_frag->fr_address >= text_section->vma | |
12261 | && (fixP->fx_frag->fr_address | |
587aac4e | 12262 | < text_section->vma + bfd_get_section_size (text_section)) |
a7ebbfdf TS |
12263 | && ((insn & 0xffff0000) == 0x10000000 /* beq $0,$0 */ |
12264 | || (insn & 0xffff0000) == 0x04010000 /* bgez $0 */ | |
12265 | || (insn & 0xffff0000) == 0x04110000)) /* bgezal $0 */ | |
252b5132 RH |
12266 | { |
12267 | /* The branch offset is too large. If this is an | |
12268 | unconditional branch, and we are not generating PIC code, | |
12269 | we can convert it to an absolute jump instruction. */ | |
a7ebbfdf TS |
12270 | if ((insn & 0xffff0000) == 0x04110000) /* bgezal $0 */ |
12271 | insn = 0x0c000000; /* jal */ | |
252b5132 | 12272 | else |
a7ebbfdf TS |
12273 | insn = 0x08000000; /* j */ |
12274 | fixP->fx_r_type = BFD_RELOC_MIPS_JMP; | |
12275 | fixP->fx_done = 0; | |
12276 | fixP->fx_addsy = section_symbol (text_section); | |
12277 | *valP += md_pcrel_from (fixP); | |
2132e3a3 | 12278 | md_number_to_chars ((char *) buf, insn, 4); |
a7ebbfdf TS |
12279 | } |
12280 | else | |
12281 | { | |
12282 | /* If we got here, we have branch-relaxation disabled, | |
12283 | and there's nothing we can do to fix this instruction | |
12284 | without turning it into a longer sequence. */ | |
12285 | as_bad_where (fixP->fx_file, fixP->fx_line, | |
12286 | _("Branch out of range")); | |
252b5132 | 12287 | } |
252b5132 RH |
12288 | break; |
12289 | ||
12290 | case BFD_RELOC_VTABLE_INHERIT: | |
12291 | fixP->fx_done = 0; | |
12292 | if (fixP->fx_addsy | |
12293 | && !S_IS_DEFINED (fixP->fx_addsy) | |
12294 | && !S_IS_WEAK (fixP->fx_addsy)) | |
12295 | S_SET_WEAK (fixP->fx_addsy); | |
12296 | break; | |
12297 | ||
12298 | case BFD_RELOC_VTABLE_ENTRY: | |
12299 | fixP->fx_done = 0; | |
12300 | break; | |
12301 | ||
12302 | default: | |
12303 | internalError (); | |
12304 | } | |
a7ebbfdf TS |
12305 | |
12306 | /* Remember value for tc_gen_reloc. */ | |
12307 | fixP->fx_addnumber = *valP; | |
252b5132 RH |
12308 | } |
12309 | ||
252b5132 | 12310 | static symbolS * |
17a2f251 | 12311 | get_symbol (void) |
252b5132 RH |
12312 | { |
12313 | int c; | |
12314 | char *name; | |
12315 | symbolS *p; | |
12316 | ||
12317 | name = input_line_pointer; | |
12318 | c = get_symbol_end (); | |
12319 | p = (symbolS *) symbol_find_or_make (name); | |
12320 | *input_line_pointer = c; | |
12321 | return p; | |
12322 | } | |
12323 | ||
742a56fe RS |
12324 | /* Align the current frag to a given power of two. If a particular |
12325 | fill byte should be used, FILL points to an integer that contains | |
12326 | that byte, otherwise FILL is null. | |
12327 | ||
12328 | The MIPS assembler also automatically adjusts any preceding | |
12329 | label. */ | |
252b5132 RH |
12330 | |
12331 | static void | |
742a56fe | 12332 | mips_align (int to, int *fill, symbolS *label) |
252b5132 | 12333 | { |
7d10b47d | 12334 | mips_emit_delays (); |
742a56fe RS |
12335 | mips_record_mips16_mode (); |
12336 | if (fill == NULL && subseg_text_p (now_seg)) | |
12337 | frag_align_code (to, 0); | |
12338 | else | |
12339 | frag_align (to, fill ? *fill : 0, 0); | |
252b5132 RH |
12340 | record_alignment (now_seg, to); |
12341 | if (label != NULL) | |
12342 | { | |
12343 | assert (S_GET_SEGMENT (label) == now_seg); | |
49309057 | 12344 | symbol_set_frag (label, frag_now); |
252b5132 RH |
12345 | S_SET_VALUE (label, (valueT) frag_now_fix ()); |
12346 | } | |
12347 | } | |
12348 | ||
12349 | /* Align to a given power of two. .align 0 turns off the automatic | |
12350 | alignment used by the data creating pseudo-ops. */ | |
12351 | ||
12352 | static void | |
17a2f251 | 12353 | s_align (int x ATTRIBUTE_UNUSED) |
252b5132 | 12354 | { |
742a56fe | 12355 | int temp, fill_value, *fill_ptr; |
49954fb4 | 12356 | long max_alignment = 28; |
252b5132 | 12357 | |
54f4ddb3 | 12358 | /* o Note that the assembler pulls down any immediately preceding label |
252b5132 | 12359 | to the aligned address. |
54f4ddb3 | 12360 | o It's not documented but auto alignment is reinstated by |
252b5132 | 12361 | a .align pseudo instruction. |
54f4ddb3 | 12362 | o Note also that after auto alignment is turned off the mips assembler |
252b5132 | 12363 | issues an error on attempt to assemble an improperly aligned data item. |
54f4ddb3 | 12364 | We don't. */ |
252b5132 RH |
12365 | |
12366 | temp = get_absolute_expression (); | |
12367 | if (temp > max_alignment) | |
12368 | as_bad (_("Alignment too large: %d. assumed."), temp = max_alignment); | |
12369 | else if (temp < 0) | |
12370 | { | |
12371 | as_warn (_("Alignment negative: 0 assumed.")); | |
12372 | temp = 0; | |
12373 | } | |
12374 | if (*input_line_pointer == ',') | |
12375 | { | |
f9419b05 | 12376 | ++input_line_pointer; |
742a56fe RS |
12377 | fill_value = get_absolute_expression (); |
12378 | fill_ptr = &fill_value; | |
252b5132 RH |
12379 | } |
12380 | else | |
742a56fe | 12381 | fill_ptr = 0; |
252b5132 RH |
12382 | if (temp) |
12383 | { | |
a8dbcb85 TS |
12384 | segment_info_type *si = seg_info (now_seg); |
12385 | struct insn_label_list *l = si->label_list; | |
54f4ddb3 | 12386 | /* Auto alignment should be switched on by next section change. */ |
252b5132 | 12387 | auto_align = 1; |
742a56fe | 12388 | mips_align (temp, fill_ptr, l != NULL ? l->label : NULL); |
252b5132 RH |
12389 | } |
12390 | else | |
12391 | { | |
12392 | auto_align = 0; | |
12393 | } | |
12394 | ||
12395 | demand_empty_rest_of_line (); | |
12396 | } | |
12397 | ||
252b5132 | 12398 | static void |
17a2f251 | 12399 | s_change_sec (int sec) |
252b5132 RH |
12400 | { |
12401 | segT seg; | |
12402 | ||
252b5132 RH |
12403 | #ifdef OBJ_ELF |
12404 | /* The ELF backend needs to know that we are changing sections, so | |
12405 | that .previous works correctly. We could do something like check | |
b6ff326e | 12406 | for an obj_section_change_hook macro, but that might be confusing |
252b5132 RH |
12407 | as it would not be appropriate to use it in the section changing |
12408 | functions in read.c, since obj-elf.c intercepts those. FIXME: | |
12409 | This should be cleaner, somehow. */ | |
f43abd2b TS |
12410 | if (IS_ELF) |
12411 | obj_elf_section_change_hook (); | |
252b5132 RH |
12412 | #endif |
12413 | ||
7d10b47d | 12414 | mips_emit_delays (); |
252b5132 RH |
12415 | switch (sec) |
12416 | { | |
12417 | case 't': | |
12418 | s_text (0); | |
12419 | break; | |
12420 | case 'd': | |
12421 | s_data (0); | |
12422 | break; | |
12423 | case 'b': | |
12424 | subseg_set (bss_section, (subsegT) get_absolute_expression ()); | |
12425 | demand_empty_rest_of_line (); | |
12426 | break; | |
12427 | ||
12428 | case 'r': | |
4d0d148d TS |
12429 | seg = subseg_new (RDATA_SECTION_NAME, |
12430 | (subsegT) get_absolute_expression ()); | |
f43abd2b | 12431 | if (IS_ELF) |
252b5132 | 12432 | { |
4d0d148d TS |
12433 | bfd_set_section_flags (stdoutput, seg, (SEC_ALLOC | SEC_LOAD |
12434 | | SEC_READONLY | SEC_RELOC | |
12435 | | SEC_DATA)); | |
c41e87e3 | 12436 | if (strncmp (TARGET_OS, "elf", 3) != 0) |
4d0d148d | 12437 | record_alignment (seg, 4); |
252b5132 | 12438 | } |
4d0d148d | 12439 | demand_empty_rest_of_line (); |
252b5132 RH |
12440 | break; |
12441 | ||
12442 | case 's': | |
4d0d148d | 12443 | seg = subseg_new (".sdata", (subsegT) get_absolute_expression ()); |
f43abd2b | 12444 | if (IS_ELF) |
252b5132 | 12445 | { |
4d0d148d TS |
12446 | bfd_set_section_flags (stdoutput, seg, |
12447 | SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA); | |
c41e87e3 | 12448 | if (strncmp (TARGET_OS, "elf", 3) != 0) |
4d0d148d | 12449 | record_alignment (seg, 4); |
252b5132 | 12450 | } |
4d0d148d TS |
12451 | demand_empty_rest_of_line (); |
12452 | break; | |
252b5132 RH |
12453 | } |
12454 | ||
12455 | auto_align = 1; | |
12456 | } | |
b34976b6 | 12457 | |
cca86cc8 | 12458 | void |
17a2f251 | 12459 | s_change_section (int ignore ATTRIBUTE_UNUSED) |
cca86cc8 | 12460 | { |
7ed4a06a | 12461 | #ifdef OBJ_ELF |
cca86cc8 SC |
12462 | char *section_name; |
12463 | char c; | |
684022ea | 12464 | char next_c = 0; |
cca86cc8 SC |
12465 | int section_type; |
12466 | int section_flag; | |
12467 | int section_entry_size; | |
12468 | int section_alignment; | |
b34976b6 | 12469 | |
f43abd2b | 12470 | if (!IS_ELF) |
7ed4a06a TS |
12471 | return; |
12472 | ||
cca86cc8 SC |
12473 | section_name = input_line_pointer; |
12474 | c = get_symbol_end (); | |
a816d1ed AO |
12475 | if (c) |
12476 | next_c = *(input_line_pointer + 1); | |
cca86cc8 | 12477 | |
4cf0dd0d TS |
12478 | /* Do we have .section Name<,"flags">? */ |
12479 | if (c != ',' || (c == ',' && next_c == '"')) | |
cca86cc8 | 12480 | { |
4cf0dd0d TS |
12481 | /* just after name is now '\0'. */ |
12482 | *input_line_pointer = c; | |
cca86cc8 SC |
12483 | input_line_pointer = section_name; |
12484 | obj_elf_section (ignore); | |
12485 | return; | |
12486 | } | |
12487 | input_line_pointer++; | |
12488 | ||
12489 | /* Do we have .section Name<,type><,flag><,entry_size><,alignment> */ | |
12490 | if (c == ',') | |
12491 | section_type = get_absolute_expression (); | |
12492 | else | |
12493 | section_type = 0; | |
12494 | if (*input_line_pointer++ == ',') | |
12495 | section_flag = get_absolute_expression (); | |
12496 | else | |
12497 | section_flag = 0; | |
12498 | if (*input_line_pointer++ == ',') | |
12499 | section_entry_size = get_absolute_expression (); | |
12500 | else | |
12501 | section_entry_size = 0; | |
12502 | if (*input_line_pointer++ == ',') | |
12503 | section_alignment = get_absolute_expression (); | |
12504 | else | |
12505 | section_alignment = 0; | |
12506 | ||
a816d1ed AO |
12507 | section_name = xstrdup (section_name); |
12508 | ||
8ab8a5c8 RS |
12509 | /* When using the generic form of .section (as implemented by obj-elf.c), |
12510 | there's no way to set the section type to SHT_MIPS_DWARF. Users have | |
12511 | traditionally had to fall back on the more common @progbits instead. | |
12512 | ||
12513 | There's nothing really harmful in this, since bfd will correct | |
12514 | SHT_PROGBITS to SHT_MIPS_DWARF before writing out the file. But it | |
708587a4 | 12515 | means that, for backwards compatibility, the special_section entries |
8ab8a5c8 RS |
12516 | for dwarf sections must use SHT_PROGBITS rather than SHT_MIPS_DWARF. |
12517 | ||
12518 | Even so, we shouldn't force users of the MIPS .section syntax to | |
12519 | incorrectly label the sections as SHT_PROGBITS. The best compromise | |
12520 | seems to be to map SHT_MIPS_DWARF to SHT_PROGBITS before calling the | |
12521 | generic type-checking code. */ | |
12522 | if (section_type == SHT_MIPS_DWARF) | |
12523 | section_type = SHT_PROGBITS; | |
12524 | ||
cca86cc8 SC |
12525 | obj_elf_change_section (section_name, section_type, section_flag, |
12526 | section_entry_size, 0, 0, 0); | |
a816d1ed AO |
12527 | |
12528 | if (now_seg->name != section_name) | |
12529 | free (section_name); | |
7ed4a06a | 12530 | #endif /* OBJ_ELF */ |
cca86cc8 | 12531 | } |
252b5132 RH |
12532 | |
12533 | void | |
17a2f251 | 12534 | mips_enable_auto_align (void) |
252b5132 RH |
12535 | { |
12536 | auto_align = 1; | |
12537 | } | |
12538 | ||
12539 | static void | |
17a2f251 | 12540 | s_cons (int log_size) |
252b5132 | 12541 | { |
a8dbcb85 TS |
12542 | segment_info_type *si = seg_info (now_seg); |
12543 | struct insn_label_list *l = si->label_list; | |
252b5132 RH |
12544 | symbolS *label; |
12545 | ||
a8dbcb85 | 12546 | label = l != NULL ? l->label : NULL; |
7d10b47d | 12547 | mips_emit_delays (); |
252b5132 RH |
12548 | if (log_size > 0 && auto_align) |
12549 | mips_align (log_size, 0, label); | |
12550 | mips_clear_insn_labels (); | |
12551 | cons (1 << log_size); | |
12552 | } | |
12553 | ||
12554 | static void | |
17a2f251 | 12555 | s_float_cons (int type) |
252b5132 | 12556 | { |
a8dbcb85 TS |
12557 | segment_info_type *si = seg_info (now_seg); |
12558 | struct insn_label_list *l = si->label_list; | |
252b5132 RH |
12559 | symbolS *label; |
12560 | ||
a8dbcb85 | 12561 | label = l != NULL ? l->label : NULL; |
252b5132 | 12562 | |
7d10b47d | 12563 | mips_emit_delays (); |
252b5132 RH |
12564 | |
12565 | if (auto_align) | |
49309057 ILT |
12566 | { |
12567 | if (type == 'd') | |
12568 | mips_align (3, 0, label); | |
12569 | else | |
12570 | mips_align (2, 0, label); | |
12571 | } | |
252b5132 RH |
12572 | |
12573 | mips_clear_insn_labels (); | |
12574 | ||
12575 | float_cons (type); | |
12576 | } | |
12577 | ||
12578 | /* Handle .globl. We need to override it because on Irix 5 you are | |
12579 | permitted to say | |
12580 | .globl foo .text | |
12581 | where foo is an undefined symbol, to mean that foo should be | |
12582 | considered to be the address of a function. */ | |
12583 | ||
12584 | static void | |
17a2f251 | 12585 | s_mips_globl (int x ATTRIBUTE_UNUSED) |
252b5132 RH |
12586 | { |
12587 | char *name; | |
12588 | int c; | |
12589 | symbolS *symbolP; | |
12590 | flagword flag; | |
12591 | ||
8a06b769 | 12592 | do |
252b5132 | 12593 | { |
8a06b769 | 12594 | name = input_line_pointer; |
252b5132 | 12595 | c = get_symbol_end (); |
8a06b769 TS |
12596 | symbolP = symbol_find_or_make (name); |
12597 | S_SET_EXTERNAL (symbolP); | |
12598 | ||
252b5132 | 12599 | *input_line_pointer = c; |
8a06b769 | 12600 | SKIP_WHITESPACE (); |
252b5132 | 12601 | |
8a06b769 TS |
12602 | /* On Irix 5, every global symbol that is not explicitly labelled as |
12603 | being a function is apparently labelled as being an object. */ | |
12604 | flag = BSF_OBJECT; | |
252b5132 | 12605 | |
8a06b769 TS |
12606 | if (!is_end_of_line[(unsigned char) *input_line_pointer] |
12607 | && (*input_line_pointer != ',')) | |
12608 | { | |
12609 | char *secname; | |
12610 | asection *sec; | |
12611 | ||
12612 | secname = input_line_pointer; | |
12613 | c = get_symbol_end (); | |
12614 | sec = bfd_get_section_by_name (stdoutput, secname); | |
12615 | if (sec == NULL) | |
12616 | as_bad (_("%s: no such section"), secname); | |
12617 | *input_line_pointer = c; | |
12618 | ||
12619 | if (sec != NULL && (sec->flags & SEC_CODE) != 0) | |
12620 | flag = BSF_FUNCTION; | |
12621 | } | |
12622 | ||
12623 | symbol_get_bfdsym (symbolP)->flags |= flag; | |
12624 | ||
12625 | c = *input_line_pointer; | |
12626 | if (c == ',') | |
12627 | { | |
12628 | input_line_pointer++; | |
12629 | SKIP_WHITESPACE (); | |
12630 | if (is_end_of_line[(unsigned char) *input_line_pointer]) | |
12631 | c = '\n'; | |
12632 | } | |
12633 | } | |
12634 | while (c == ','); | |
252b5132 | 12635 | |
252b5132 RH |
12636 | demand_empty_rest_of_line (); |
12637 | } | |
12638 | ||
12639 | static void | |
17a2f251 | 12640 | s_option (int x ATTRIBUTE_UNUSED) |
252b5132 RH |
12641 | { |
12642 | char *opt; | |
12643 | char c; | |
12644 | ||
12645 | opt = input_line_pointer; | |
12646 | c = get_symbol_end (); | |
12647 | ||
12648 | if (*opt == 'O') | |
12649 | { | |
12650 | /* FIXME: What does this mean? */ | |
12651 | } | |
12652 | else if (strncmp (opt, "pic", 3) == 0) | |
12653 | { | |
12654 | int i; | |
12655 | ||
12656 | i = atoi (opt + 3); | |
12657 | if (i == 0) | |
12658 | mips_pic = NO_PIC; | |
12659 | else if (i == 2) | |
143d77c5 | 12660 | { |
252b5132 | 12661 | mips_pic = SVR4_PIC; |
143d77c5 EC |
12662 | mips_abicalls = TRUE; |
12663 | } | |
252b5132 RH |
12664 | else |
12665 | as_bad (_(".option pic%d not supported"), i); | |
12666 | ||
4d0d148d | 12667 | if (mips_pic == SVR4_PIC) |
252b5132 RH |
12668 | { |
12669 | if (g_switch_seen && g_switch_value != 0) | |
12670 | as_warn (_("-G may not be used with SVR4 PIC code")); | |
12671 | g_switch_value = 0; | |
12672 | bfd_set_gp_size (stdoutput, 0); | |
12673 | } | |
12674 | } | |
12675 | else | |
12676 | as_warn (_("Unrecognized option \"%s\""), opt); | |
12677 | ||
12678 | *input_line_pointer = c; | |
12679 | demand_empty_rest_of_line (); | |
12680 | } | |
12681 | ||
12682 | /* This structure is used to hold a stack of .set values. */ | |
12683 | ||
e972090a NC |
12684 | struct mips_option_stack |
12685 | { | |
252b5132 RH |
12686 | struct mips_option_stack *next; |
12687 | struct mips_set_options options; | |
12688 | }; | |
12689 | ||
12690 | static struct mips_option_stack *mips_opts_stack; | |
12691 | ||
12692 | /* Handle the .set pseudo-op. */ | |
12693 | ||
12694 | static void | |
17a2f251 | 12695 | s_mipsset (int x ATTRIBUTE_UNUSED) |
252b5132 RH |
12696 | { |
12697 | char *name = input_line_pointer, ch; | |
12698 | ||
12699 | while (!is_end_of_line[(unsigned char) *input_line_pointer]) | |
f9419b05 | 12700 | ++input_line_pointer; |
252b5132 RH |
12701 | ch = *input_line_pointer; |
12702 | *input_line_pointer = '\0'; | |
12703 | ||
12704 | if (strcmp (name, "reorder") == 0) | |
12705 | { | |
7d10b47d RS |
12706 | if (mips_opts.noreorder) |
12707 | end_noreorder (); | |
252b5132 RH |
12708 | } |
12709 | else if (strcmp (name, "noreorder") == 0) | |
12710 | { | |
7d10b47d RS |
12711 | if (!mips_opts.noreorder) |
12712 | start_noreorder (); | |
252b5132 | 12713 | } |
741fe287 MR |
12714 | else if (strncmp (name, "at=", 3) == 0) |
12715 | { | |
12716 | char *s = name + 3; | |
12717 | ||
12718 | if (!reg_lookup (&s, RTYPE_NUM | RTYPE_GP, &mips_opts.at)) | |
12719 | as_bad (_("Unrecognized register name `%s'"), s); | |
12720 | } | |
252b5132 RH |
12721 | else if (strcmp (name, "at") == 0) |
12722 | { | |
741fe287 | 12723 | mips_opts.at = ATREG; |
252b5132 RH |
12724 | } |
12725 | else if (strcmp (name, "noat") == 0) | |
12726 | { | |
741fe287 | 12727 | mips_opts.at = ZERO; |
252b5132 RH |
12728 | } |
12729 | else if (strcmp (name, "macro") == 0) | |
12730 | { | |
12731 | mips_opts.warn_about_macros = 0; | |
12732 | } | |
12733 | else if (strcmp (name, "nomacro") == 0) | |
12734 | { | |
12735 | if (mips_opts.noreorder == 0) | |
12736 | as_bad (_("`noreorder' must be set before `nomacro'")); | |
12737 | mips_opts.warn_about_macros = 1; | |
12738 | } | |
12739 | else if (strcmp (name, "move") == 0 || strcmp (name, "novolatile") == 0) | |
12740 | { | |
12741 | mips_opts.nomove = 0; | |
12742 | } | |
12743 | else if (strcmp (name, "nomove") == 0 || strcmp (name, "volatile") == 0) | |
12744 | { | |
12745 | mips_opts.nomove = 1; | |
12746 | } | |
12747 | else if (strcmp (name, "bopt") == 0) | |
12748 | { | |
12749 | mips_opts.nobopt = 0; | |
12750 | } | |
12751 | else if (strcmp (name, "nobopt") == 0) | |
12752 | { | |
12753 | mips_opts.nobopt = 1; | |
12754 | } | |
ad3fea08 TS |
12755 | else if (strcmp (name, "gp=default") == 0) |
12756 | mips_opts.gp32 = file_mips_gp32; | |
12757 | else if (strcmp (name, "gp=32") == 0) | |
12758 | mips_opts.gp32 = 1; | |
12759 | else if (strcmp (name, "gp=64") == 0) | |
12760 | { | |
12761 | if (!ISA_HAS_64BIT_REGS (mips_opts.isa)) | |
12762 | as_warn ("%s isa does not support 64-bit registers", | |
12763 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
12764 | mips_opts.gp32 = 0; | |
12765 | } | |
12766 | else if (strcmp (name, "fp=default") == 0) | |
12767 | mips_opts.fp32 = file_mips_fp32; | |
12768 | else if (strcmp (name, "fp=32") == 0) | |
12769 | mips_opts.fp32 = 1; | |
12770 | else if (strcmp (name, "fp=64") == 0) | |
12771 | { | |
12772 | if (!ISA_HAS_64BIT_FPRS (mips_opts.isa)) | |
12773 | as_warn ("%s isa does not support 64-bit floating point registers", | |
12774 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
12775 | mips_opts.fp32 = 0; | |
12776 | } | |
037b32b9 AN |
12777 | else if (strcmp (name, "softfloat") == 0) |
12778 | mips_opts.soft_float = 1; | |
12779 | else if (strcmp (name, "hardfloat") == 0) | |
12780 | mips_opts.soft_float = 0; | |
12781 | else if (strcmp (name, "singlefloat") == 0) | |
12782 | mips_opts.single_float = 1; | |
12783 | else if (strcmp (name, "doublefloat") == 0) | |
12784 | mips_opts.single_float = 0; | |
252b5132 RH |
12785 | else if (strcmp (name, "mips16") == 0 |
12786 | || strcmp (name, "MIPS-16") == 0) | |
12787 | mips_opts.mips16 = 1; | |
12788 | else if (strcmp (name, "nomips16") == 0 | |
12789 | || strcmp (name, "noMIPS-16") == 0) | |
12790 | mips_opts.mips16 = 0; | |
e16bfa71 TS |
12791 | else if (strcmp (name, "smartmips") == 0) |
12792 | { | |
ad3fea08 | 12793 | if (!ISA_SUPPORTS_SMARTMIPS) |
e16bfa71 TS |
12794 | as_warn ("%s ISA does not support SmartMIPS ASE", |
12795 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
12796 | mips_opts.ase_smartmips = 1; | |
12797 | } | |
12798 | else if (strcmp (name, "nosmartmips") == 0) | |
12799 | mips_opts.ase_smartmips = 0; | |
1f25f5d3 CD |
12800 | else if (strcmp (name, "mips3d") == 0) |
12801 | mips_opts.ase_mips3d = 1; | |
12802 | else if (strcmp (name, "nomips3d") == 0) | |
12803 | mips_opts.ase_mips3d = 0; | |
a4672219 TS |
12804 | else if (strcmp (name, "mdmx") == 0) |
12805 | mips_opts.ase_mdmx = 1; | |
12806 | else if (strcmp (name, "nomdmx") == 0) | |
12807 | mips_opts.ase_mdmx = 0; | |
74cd071d | 12808 | else if (strcmp (name, "dsp") == 0) |
ad3fea08 TS |
12809 | { |
12810 | if (!ISA_SUPPORTS_DSP_ASE) | |
12811 | as_warn ("%s ISA does not support DSP ASE", | |
12812 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
12813 | mips_opts.ase_dsp = 1; | |
8b082fb1 | 12814 | mips_opts.ase_dspr2 = 0; |
ad3fea08 | 12815 | } |
74cd071d | 12816 | else if (strcmp (name, "nodsp") == 0) |
8b082fb1 TS |
12817 | { |
12818 | mips_opts.ase_dsp = 0; | |
12819 | mips_opts.ase_dspr2 = 0; | |
12820 | } | |
12821 | else if (strcmp (name, "dspr2") == 0) | |
12822 | { | |
12823 | if (!ISA_SUPPORTS_DSPR2_ASE) | |
12824 | as_warn ("%s ISA does not support DSP R2 ASE", | |
12825 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
12826 | mips_opts.ase_dspr2 = 1; | |
12827 | mips_opts.ase_dsp = 1; | |
12828 | } | |
12829 | else if (strcmp (name, "nodspr2") == 0) | |
12830 | { | |
12831 | mips_opts.ase_dspr2 = 0; | |
12832 | mips_opts.ase_dsp = 0; | |
12833 | } | |
ef2e4d86 | 12834 | else if (strcmp (name, "mt") == 0) |
ad3fea08 TS |
12835 | { |
12836 | if (!ISA_SUPPORTS_MT_ASE) | |
12837 | as_warn ("%s ISA does not support MT ASE", | |
12838 | mips_cpu_info_from_isa (mips_opts.isa)->name); | |
12839 | mips_opts.ase_mt = 1; | |
12840 | } | |
ef2e4d86 CF |
12841 | else if (strcmp (name, "nomt") == 0) |
12842 | mips_opts.ase_mt = 0; | |
1a2c1fad | 12843 | else if (strncmp (name, "mips", 4) == 0 || strncmp (name, "arch=", 5) == 0) |
252b5132 | 12844 | { |
af7ee8bf | 12845 | int reset = 0; |
252b5132 | 12846 | |
1a2c1fad CD |
12847 | /* Permit the user to change the ISA and architecture on the fly. |
12848 | Needless to say, misuse can cause serious problems. */ | |
81a21e38 | 12849 | if (strcmp (name, "mips0") == 0 || strcmp (name, "arch=default") == 0) |
af7ee8bf CD |
12850 | { |
12851 | reset = 1; | |
12852 | mips_opts.isa = file_mips_isa; | |
1a2c1fad | 12853 | mips_opts.arch = file_mips_arch; |
1a2c1fad CD |
12854 | } |
12855 | else if (strncmp (name, "arch=", 5) == 0) | |
12856 | { | |
12857 | const struct mips_cpu_info *p; | |
12858 | ||
12859 | p = mips_parse_cpu("internal use", name + 5); | |
12860 | if (!p) | |
12861 | as_bad (_("unknown architecture %s"), name + 5); | |
12862 | else | |
12863 | { | |
12864 | mips_opts.arch = p->cpu; | |
12865 | mips_opts.isa = p->isa; | |
12866 | } | |
12867 | } | |
81a21e38 TS |
12868 | else if (strncmp (name, "mips", 4) == 0) |
12869 | { | |
12870 | const struct mips_cpu_info *p; | |
12871 | ||
12872 | p = mips_parse_cpu("internal use", name); | |
12873 | if (!p) | |
12874 | as_bad (_("unknown ISA level %s"), name + 4); | |
12875 | else | |
12876 | { | |
12877 | mips_opts.arch = p->cpu; | |
12878 | mips_opts.isa = p->isa; | |
12879 | } | |
12880 | } | |
af7ee8bf | 12881 | else |
81a21e38 | 12882 | as_bad (_("unknown ISA or architecture %s"), name); |
af7ee8bf CD |
12883 | |
12884 | switch (mips_opts.isa) | |
98d3f06f KH |
12885 | { |
12886 | case 0: | |
98d3f06f | 12887 | break; |
af7ee8bf CD |
12888 | case ISA_MIPS1: |
12889 | case ISA_MIPS2: | |
12890 | case ISA_MIPS32: | |
12891 | case ISA_MIPS32R2: | |
98d3f06f KH |
12892 | mips_opts.gp32 = 1; |
12893 | mips_opts.fp32 = 1; | |
12894 | break; | |
af7ee8bf CD |
12895 | case ISA_MIPS3: |
12896 | case ISA_MIPS4: | |
12897 | case ISA_MIPS5: | |
12898 | case ISA_MIPS64: | |
5f74bc13 | 12899 | case ISA_MIPS64R2: |
98d3f06f KH |
12900 | mips_opts.gp32 = 0; |
12901 | mips_opts.fp32 = 0; | |
12902 | break; | |
12903 | default: | |
12904 | as_bad (_("unknown ISA level %s"), name + 4); | |
12905 | break; | |
12906 | } | |
af7ee8bf | 12907 | if (reset) |
98d3f06f | 12908 | { |
af7ee8bf CD |
12909 | mips_opts.gp32 = file_mips_gp32; |
12910 | mips_opts.fp32 = file_mips_fp32; | |
98d3f06f | 12911 | } |
252b5132 RH |
12912 | } |
12913 | else if (strcmp (name, "autoextend") == 0) | |
12914 | mips_opts.noautoextend = 0; | |
12915 | else if (strcmp (name, "noautoextend") == 0) | |
12916 | mips_opts.noautoextend = 1; | |
12917 | else if (strcmp (name, "push") == 0) | |
12918 | { | |
12919 | struct mips_option_stack *s; | |
12920 | ||
12921 | s = (struct mips_option_stack *) xmalloc (sizeof *s); | |
12922 | s->next = mips_opts_stack; | |
12923 | s->options = mips_opts; | |
12924 | mips_opts_stack = s; | |
12925 | } | |
12926 | else if (strcmp (name, "pop") == 0) | |
12927 | { | |
12928 | struct mips_option_stack *s; | |
12929 | ||
12930 | s = mips_opts_stack; | |
12931 | if (s == NULL) | |
12932 | as_bad (_(".set pop with no .set push")); | |
12933 | else | |
12934 | { | |
12935 | /* If we're changing the reorder mode we need to handle | |
12936 | delay slots correctly. */ | |
12937 | if (s->options.noreorder && ! mips_opts.noreorder) | |
7d10b47d | 12938 | start_noreorder (); |
252b5132 | 12939 | else if (! s->options.noreorder && mips_opts.noreorder) |
7d10b47d | 12940 | end_noreorder (); |
252b5132 RH |
12941 | |
12942 | mips_opts = s->options; | |
12943 | mips_opts_stack = s->next; | |
12944 | free (s); | |
12945 | } | |
12946 | } | |
aed1a261 RS |
12947 | else if (strcmp (name, "sym32") == 0) |
12948 | mips_opts.sym32 = TRUE; | |
12949 | else if (strcmp (name, "nosym32") == 0) | |
12950 | mips_opts.sym32 = FALSE; | |
e6559e01 JM |
12951 | else if (strchr (name, ',')) |
12952 | { | |
12953 | /* Generic ".set" directive; use the generic handler. */ | |
12954 | *input_line_pointer = ch; | |
12955 | input_line_pointer = name; | |
12956 | s_set (0); | |
12957 | return; | |
12958 | } | |
252b5132 RH |
12959 | else |
12960 | { | |
12961 | as_warn (_("Tried to set unrecognized symbol: %s\n"), name); | |
12962 | } | |
12963 | *input_line_pointer = ch; | |
12964 | demand_empty_rest_of_line (); | |
12965 | } | |
12966 | ||
12967 | /* Handle the .abicalls pseudo-op. I believe this is equivalent to | |
12968 | .option pic2. It means to generate SVR4 PIC calls. */ | |
12969 | ||
12970 | static void | |
17a2f251 | 12971 | s_abicalls (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
12972 | { |
12973 | mips_pic = SVR4_PIC; | |
143d77c5 | 12974 | mips_abicalls = TRUE; |
4d0d148d TS |
12975 | |
12976 | if (g_switch_seen && g_switch_value != 0) | |
12977 | as_warn (_("-G may not be used with SVR4 PIC code")); | |
12978 | g_switch_value = 0; | |
12979 | ||
252b5132 RH |
12980 | bfd_set_gp_size (stdoutput, 0); |
12981 | demand_empty_rest_of_line (); | |
12982 | } | |
12983 | ||
12984 | /* Handle the .cpload pseudo-op. This is used when generating SVR4 | |
12985 | PIC code. It sets the $gp register for the function based on the | |
12986 | function address, which is in the register named in the argument. | |
12987 | This uses a relocation against _gp_disp, which is handled specially | |
12988 | by the linker. The result is: | |
12989 | lui $gp,%hi(_gp_disp) | |
12990 | addiu $gp,$gp,%lo(_gp_disp) | |
12991 | addu $gp,$gp,.cpload argument | |
aa6975fb ILT |
12992 | The .cpload argument is normally $25 == $t9. |
12993 | ||
12994 | The -mno-shared option changes this to: | |
bbe506e8 TS |
12995 | lui $gp,%hi(__gnu_local_gp) |
12996 | addiu $gp,$gp,%lo(__gnu_local_gp) | |
aa6975fb ILT |
12997 | and the argument is ignored. This saves an instruction, but the |
12998 | resulting code is not position independent; it uses an absolute | |
bbe506e8 TS |
12999 | address for __gnu_local_gp. Thus code assembled with -mno-shared |
13000 | can go into an ordinary executable, but not into a shared library. */ | |
252b5132 RH |
13001 | |
13002 | static void | |
17a2f251 | 13003 | s_cpload (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
13004 | { |
13005 | expressionS ex; | |
aa6975fb ILT |
13006 | int reg; |
13007 | int in_shared; | |
252b5132 | 13008 | |
6478892d TS |
13009 | /* If we are not generating SVR4 PIC code, or if this is NewABI code, |
13010 | .cpload is ignored. */ | |
13011 | if (mips_pic != SVR4_PIC || HAVE_NEWABI) | |
252b5132 RH |
13012 | { |
13013 | s_ignore (0); | |
13014 | return; | |
13015 | } | |
13016 | ||
d3ecfc59 | 13017 | /* .cpload should be in a .set noreorder section. */ |
252b5132 RH |
13018 | if (mips_opts.noreorder == 0) |
13019 | as_warn (_(".cpload not in noreorder section")); | |
13020 | ||
aa6975fb ILT |
13021 | reg = tc_get_register (0); |
13022 | ||
13023 | /* If we need to produce a 64-bit address, we are better off using | |
13024 | the default instruction sequence. */ | |
aed1a261 | 13025 | in_shared = mips_in_shared || HAVE_64BIT_SYMBOLS; |
aa6975fb | 13026 | |
252b5132 | 13027 | ex.X_op = O_symbol; |
bbe506e8 TS |
13028 | ex.X_add_symbol = symbol_find_or_make (in_shared ? "_gp_disp" : |
13029 | "__gnu_local_gp"); | |
252b5132 RH |
13030 | ex.X_op_symbol = NULL; |
13031 | ex.X_add_number = 0; | |
13032 | ||
13033 | /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */ | |
49309057 | 13034 | symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT; |
252b5132 | 13035 | |
584892a6 | 13036 | macro_start (); |
67c0d1eb RS |
13037 | macro_build_lui (&ex, mips_gp_register); |
13038 | macro_build (&ex, "addiu", "t,r,j", mips_gp_register, | |
17a2f251 | 13039 | mips_gp_register, BFD_RELOC_LO16); |
aa6975fb ILT |
13040 | if (in_shared) |
13041 | macro_build (NULL, "addu", "d,v,t", mips_gp_register, | |
13042 | mips_gp_register, reg); | |
584892a6 | 13043 | macro_end (); |
252b5132 RH |
13044 | |
13045 | demand_empty_rest_of_line (); | |
13046 | } | |
13047 | ||
6478892d TS |
13048 | /* Handle the .cpsetup pseudo-op defined for NewABI PIC code. The syntax is: |
13049 | .cpsetup $reg1, offset|$reg2, label | |
13050 | ||
13051 | If offset is given, this results in: | |
13052 | sd $gp, offset($sp) | |
956cd1d6 | 13053 | lui $gp, %hi(%neg(%gp_rel(label))) |
698b7d9d TS |
13054 | addiu $gp, $gp, %lo(%neg(%gp_rel(label))) |
13055 | daddu $gp, $gp, $reg1 | |
6478892d TS |
13056 | |
13057 | If $reg2 is given, this results in: | |
13058 | daddu $reg2, $gp, $0 | |
956cd1d6 | 13059 | lui $gp, %hi(%neg(%gp_rel(label))) |
698b7d9d TS |
13060 | addiu $gp, $gp, %lo(%neg(%gp_rel(label))) |
13061 | daddu $gp, $gp, $reg1 | |
aa6975fb ILT |
13062 | $reg1 is normally $25 == $t9. |
13063 | ||
13064 | The -mno-shared option replaces the last three instructions with | |
13065 | lui $gp,%hi(_gp) | |
54f4ddb3 | 13066 | addiu $gp,$gp,%lo(_gp) */ |
aa6975fb | 13067 | |
6478892d | 13068 | static void |
17a2f251 | 13069 | s_cpsetup (int ignore ATTRIBUTE_UNUSED) |
6478892d TS |
13070 | { |
13071 | expressionS ex_off; | |
13072 | expressionS ex_sym; | |
13073 | int reg1; | |
6478892d | 13074 | |
8586fc66 | 13075 | /* If we are not generating SVR4 PIC code, .cpsetup is ignored. |
6478892d TS |
13076 | We also need NewABI support. */ |
13077 | if (mips_pic != SVR4_PIC || ! HAVE_NEWABI) | |
13078 | { | |
13079 | s_ignore (0); | |
13080 | return; | |
13081 | } | |
13082 | ||
13083 | reg1 = tc_get_register (0); | |
13084 | SKIP_WHITESPACE (); | |
13085 | if (*input_line_pointer != ',') | |
13086 | { | |
13087 | as_bad (_("missing argument separator ',' for .cpsetup")); | |
13088 | return; | |
13089 | } | |
13090 | else | |
80245285 | 13091 | ++input_line_pointer; |
6478892d TS |
13092 | SKIP_WHITESPACE (); |
13093 | if (*input_line_pointer == '$') | |
80245285 TS |
13094 | { |
13095 | mips_cpreturn_register = tc_get_register (0); | |
13096 | mips_cpreturn_offset = -1; | |
13097 | } | |
6478892d | 13098 | else |
80245285 TS |
13099 | { |
13100 | mips_cpreturn_offset = get_absolute_expression (); | |
13101 | mips_cpreturn_register = -1; | |
13102 | } | |
6478892d TS |
13103 | SKIP_WHITESPACE (); |
13104 | if (*input_line_pointer != ',') | |
13105 | { | |
13106 | as_bad (_("missing argument separator ',' for .cpsetup")); | |
13107 | return; | |
13108 | } | |
13109 | else | |
f9419b05 | 13110 | ++input_line_pointer; |
6478892d | 13111 | SKIP_WHITESPACE (); |
f21f8242 | 13112 | expression (&ex_sym); |
6478892d | 13113 | |
584892a6 | 13114 | macro_start (); |
6478892d TS |
13115 | if (mips_cpreturn_register == -1) |
13116 | { | |
13117 | ex_off.X_op = O_constant; | |
13118 | ex_off.X_add_symbol = NULL; | |
13119 | ex_off.X_op_symbol = NULL; | |
13120 | ex_off.X_add_number = mips_cpreturn_offset; | |
13121 | ||
67c0d1eb | 13122 | macro_build (&ex_off, "sd", "t,o(b)", mips_gp_register, |
17a2f251 | 13123 | BFD_RELOC_LO16, SP); |
6478892d TS |
13124 | } |
13125 | else | |
67c0d1eb | 13126 | macro_build (NULL, "daddu", "d,v,t", mips_cpreturn_register, |
17a2f251 | 13127 | mips_gp_register, 0); |
6478892d | 13128 | |
aed1a261 | 13129 | if (mips_in_shared || HAVE_64BIT_SYMBOLS) |
aa6975fb ILT |
13130 | { |
13131 | macro_build (&ex_sym, "lui", "t,u", mips_gp_register, | |
13132 | -1, BFD_RELOC_GPREL16, BFD_RELOC_MIPS_SUB, | |
13133 | BFD_RELOC_HI16_S); | |
13134 | ||
13135 | macro_build (&ex_sym, "addiu", "t,r,j", mips_gp_register, | |
13136 | mips_gp_register, -1, BFD_RELOC_GPREL16, | |
13137 | BFD_RELOC_MIPS_SUB, BFD_RELOC_LO16); | |
13138 | ||
13139 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", mips_gp_register, | |
13140 | mips_gp_register, reg1); | |
13141 | } | |
13142 | else | |
13143 | { | |
13144 | expressionS ex; | |
13145 | ||
13146 | ex.X_op = O_symbol; | |
4184909a | 13147 | ex.X_add_symbol = symbol_find_or_make ("__gnu_local_gp"); |
aa6975fb ILT |
13148 | ex.X_op_symbol = NULL; |
13149 | ex.X_add_number = 0; | |
6e1304d8 | 13150 | |
aa6975fb ILT |
13151 | /* In ELF, this symbol is implicitly an STT_OBJECT symbol. */ |
13152 | symbol_get_bfdsym (ex.X_add_symbol)->flags |= BSF_OBJECT; | |
13153 | ||
13154 | macro_build_lui (&ex, mips_gp_register); | |
13155 | macro_build (&ex, "addiu", "t,r,j", mips_gp_register, | |
13156 | mips_gp_register, BFD_RELOC_LO16); | |
13157 | } | |
f21f8242 | 13158 | |
584892a6 | 13159 | macro_end (); |
6478892d TS |
13160 | |
13161 | demand_empty_rest_of_line (); | |
13162 | } | |
13163 | ||
13164 | static void | |
17a2f251 | 13165 | s_cplocal (int ignore ATTRIBUTE_UNUSED) |
6478892d TS |
13166 | { |
13167 | /* If we are not generating SVR4 PIC code, or if this is not NewABI code, | |
54f4ddb3 | 13168 | .cplocal is ignored. */ |
6478892d TS |
13169 | if (mips_pic != SVR4_PIC || ! HAVE_NEWABI) |
13170 | { | |
13171 | s_ignore (0); | |
13172 | return; | |
13173 | } | |
13174 | ||
13175 | mips_gp_register = tc_get_register (0); | |
85b51719 | 13176 | demand_empty_rest_of_line (); |
6478892d TS |
13177 | } |
13178 | ||
252b5132 RH |
13179 | /* Handle the .cprestore pseudo-op. This stores $gp into a given |
13180 | offset from $sp. The offset is remembered, and after making a PIC | |
13181 | call $gp is restored from that location. */ | |
13182 | ||
13183 | static void | |
17a2f251 | 13184 | s_cprestore (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
13185 | { |
13186 | expressionS ex; | |
252b5132 | 13187 | |
6478892d | 13188 | /* If we are not generating SVR4 PIC code, or if this is NewABI code, |
c9914766 | 13189 | .cprestore is ignored. */ |
6478892d | 13190 | if (mips_pic != SVR4_PIC || HAVE_NEWABI) |
252b5132 RH |
13191 | { |
13192 | s_ignore (0); | |
13193 | return; | |
13194 | } | |
13195 | ||
13196 | mips_cprestore_offset = get_absolute_expression (); | |
7a621144 | 13197 | mips_cprestore_valid = 1; |
252b5132 RH |
13198 | |
13199 | ex.X_op = O_constant; | |
13200 | ex.X_add_symbol = NULL; | |
13201 | ex.X_op_symbol = NULL; | |
13202 | ex.X_add_number = mips_cprestore_offset; | |
13203 | ||
584892a6 | 13204 | macro_start (); |
67c0d1eb RS |
13205 | macro_build_ldst_constoffset (&ex, ADDRESS_STORE_INSN, mips_gp_register, |
13206 | SP, HAVE_64BIT_ADDRESSES); | |
584892a6 | 13207 | macro_end (); |
252b5132 RH |
13208 | |
13209 | demand_empty_rest_of_line (); | |
13210 | } | |
13211 | ||
6478892d | 13212 | /* Handle the .cpreturn pseudo-op defined for NewABI PIC code. If an offset |
67c1ffbe | 13213 | was given in the preceding .cpsetup, it results in: |
6478892d | 13214 | ld $gp, offset($sp) |
76b3015f | 13215 | |
6478892d | 13216 | If a register $reg2 was given there, it results in: |
54f4ddb3 TS |
13217 | daddu $gp, $reg2, $0 */ |
13218 | ||
6478892d | 13219 | static void |
17a2f251 | 13220 | s_cpreturn (int ignore ATTRIBUTE_UNUSED) |
6478892d TS |
13221 | { |
13222 | expressionS ex; | |
6478892d TS |
13223 | |
13224 | /* If we are not generating SVR4 PIC code, .cpreturn is ignored. | |
13225 | We also need NewABI support. */ | |
13226 | if (mips_pic != SVR4_PIC || ! HAVE_NEWABI) | |
13227 | { | |
13228 | s_ignore (0); | |
13229 | return; | |
13230 | } | |
13231 | ||
584892a6 | 13232 | macro_start (); |
6478892d TS |
13233 | if (mips_cpreturn_register == -1) |
13234 | { | |
13235 | ex.X_op = O_constant; | |
13236 | ex.X_add_symbol = NULL; | |
13237 | ex.X_op_symbol = NULL; | |
13238 | ex.X_add_number = mips_cpreturn_offset; | |
13239 | ||
67c0d1eb | 13240 | macro_build (&ex, "ld", "t,o(b)", mips_gp_register, BFD_RELOC_LO16, SP); |
6478892d TS |
13241 | } |
13242 | else | |
67c0d1eb | 13243 | macro_build (NULL, "daddu", "d,v,t", mips_gp_register, |
17a2f251 | 13244 | mips_cpreturn_register, 0); |
584892a6 | 13245 | macro_end (); |
6478892d TS |
13246 | |
13247 | demand_empty_rest_of_line (); | |
13248 | } | |
13249 | ||
741d6ea8 JM |
13250 | /* Handle the .dtprelword and .dtpreldword pseudo-ops. They generate |
13251 | a 32-bit or 64-bit DTP-relative relocation (BYTES says which) for | |
13252 | use in DWARF debug information. */ | |
13253 | ||
13254 | static void | |
13255 | s_dtprel_internal (size_t bytes) | |
13256 | { | |
13257 | expressionS ex; | |
13258 | char *p; | |
13259 | ||
13260 | expression (&ex); | |
13261 | ||
13262 | if (ex.X_op != O_symbol) | |
13263 | { | |
13264 | as_bad (_("Unsupported use of %s"), (bytes == 8 | |
13265 | ? ".dtpreldword" | |
13266 | : ".dtprelword")); | |
13267 | ignore_rest_of_line (); | |
13268 | } | |
13269 | ||
13270 | p = frag_more (bytes); | |
13271 | md_number_to_chars (p, 0, bytes); | |
13272 | fix_new_exp (frag_now, p - frag_now->fr_literal, bytes, &ex, FALSE, | |
13273 | (bytes == 8 | |
13274 | ? BFD_RELOC_MIPS_TLS_DTPREL64 | |
13275 | : BFD_RELOC_MIPS_TLS_DTPREL32)); | |
13276 | ||
13277 | demand_empty_rest_of_line (); | |
13278 | } | |
13279 | ||
13280 | /* Handle .dtprelword. */ | |
13281 | ||
13282 | static void | |
13283 | s_dtprelword (int ignore ATTRIBUTE_UNUSED) | |
13284 | { | |
13285 | s_dtprel_internal (4); | |
13286 | } | |
13287 | ||
13288 | /* Handle .dtpreldword. */ | |
13289 | ||
13290 | static void | |
13291 | s_dtpreldword (int ignore ATTRIBUTE_UNUSED) | |
13292 | { | |
13293 | s_dtprel_internal (8); | |
13294 | } | |
13295 | ||
6478892d TS |
13296 | /* Handle the .gpvalue pseudo-op. This is used when generating NewABI PIC |
13297 | code. It sets the offset to use in gp_rel relocations. */ | |
13298 | ||
13299 | static void | |
17a2f251 | 13300 | s_gpvalue (int ignore ATTRIBUTE_UNUSED) |
6478892d TS |
13301 | { |
13302 | /* If we are not generating SVR4 PIC code, .gpvalue is ignored. | |
13303 | We also need NewABI support. */ | |
13304 | if (mips_pic != SVR4_PIC || ! HAVE_NEWABI) | |
13305 | { | |
13306 | s_ignore (0); | |
13307 | return; | |
13308 | } | |
13309 | ||
def2e0dd | 13310 | mips_gprel_offset = get_absolute_expression (); |
6478892d TS |
13311 | |
13312 | demand_empty_rest_of_line (); | |
13313 | } | |
13314 | ||
252b5132 RH |
13315 | /* Handle the .gpword pseudo-op. This is used when generating PIC |
13316 | code. It generates a 32 bit GP relative reloc. */ | |
13317 | ||
13318 | static void | |
17a2f251 | 13319 | s_gpword (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 13320 | { |
a8dbcb85 TS |
13321 | segment_info_type *si; |
13322 | struct insn_label_list *l; | |
252b5132 RH |
13323 | symbolS *label; |
13324 | expressionS ex; | |
13325 | char *p; | |
13326 | ||
13327 | /* When not generating PIC code, this is treated as .word. */ | |
13328 | if (mips_pic != SVR4_PIC) | |
13329 | { | |
13330 | s_cons (2); | |
13331 | return; | |
13332 | } | |
13333 | ||
a8dbcb85 TS |
13334 | si = seg_info (now_seg); |
13335 | l = si->label_list; | |
13336 | label = l != NULL ? l->label : NULL; | |
7d10b47d | 13337 | mips_emit_delays (); |
252b5132 RH |
13338 | if (auto_align) |
13339 | mips_align (2, 0, label); | |
13340 | mips_clear_insn_labels (); | |
13341 | ||
13342 | expression (&ex); | |
13343 | ||
13344 | if (ex.X_op != O_symbol || ex.X_add_number != 0) | |
13345 | { | |
13346 | as_bad (_("Unsupported use of .gpword")); | |
13347 | ignore_rest_of_line (); | |
13348 | } | |
13349 | ||
13350 | p = frag_more (4); | |
17a2f251 | 13351 | md_number_to_chars (p, 0, 4); |
b34976b6 | 13352 | fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE, |
cdf6fd85 | 13353 | BFD_RELOC_GPREL32); |
252b5132 RH |
13354 | |
13355 | demand_empty_rest_of_line (); | |
13356 | } | |
13357 | ||
10181a0d | 13358 | static void |
17a2f251 | 13359 | s_gpdword (int ignore ATTRIBUTE_UNUSED) |
10181a0d | 13360 | { |
a8dbcb85 TS |
13361 | segment_info_type *si; |
13362 | struct insn_label_list *l; | |
10181a0d AO |
13363 | symbolS *label; |
13364 | expressionS ex; | |
13365 | char *p; | |
13366 | ||
13367 | /* When not generating PIC code, this is treated as .dword. */ | |
13368 | if (mips_pic != SVR4_PIC) | |
13369 | { | |
13370 | s_cons (3); | |
13371 | return; | |
13372 | } | |
13373 | ||
a8dbcb85 TS |
13374 | si = seg_info (now_seg); |
13375 | l = si->label_list; | |
13376 | label = l != NULL ? l->label : NULL; | |
7d10b47d | 13377 | mips_emit_delays (); |
10181a0d AO |
13378 | if (auto_align) |
13379 | mips_align (3, 0, label); | |
13380 | mips_clear_insn_labels (); | |
13381 | ||
13382 | expression (&ex); | |
13383 | ||
13384 | if (ex.X_op != O_symbol || ex.X_add_number != 0) | |
13385 | { | |
13386 | as_bad (_("Unsupported use of .gpdword")); | |
13387 | ignore_rest_of_line (); | |
13388 | } | |
13389 | ||
13390 | p = frag_more (8); | |
17a2f251 | 13391 | md_number_to_chars (p, 0, 8); |
a105a300 | 13392 | fix_new_exp (frag_now, p - frag_now->fr_literal, 4, &ex, FALSE, |
6e1304d8 | 13393 | BFD_RELOC_GPREL32)->fx_tcbit = 1; |
10181a0d AO |
13394 | |
13395 | /* GPREL32 composed with 64 gives a 64-bit GP offset. */ | |
6e1304d8 RS |
13396 | fix_new (frag_now, p - frag_now->fr_literal, 8, NULL, 0, |
13397 | FALSE, BFD_RELOC_64)->fx_tcbit = 1; | |
10181a0d AO |
13398 | |
13399 | demand_empty_rest_of_line (); | |
13400 | } | |
13401 | ||
252b5132 RH |
13402 | /* Handle the .cpadd pseudo-op. This is used when dealing with switch |
13403 | tables in SVR4 PIC code. */ | |
13404 | ||
13405 | static void | |
17a2f251 | 13406 | s_cpadd (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 13407 | { |
252b5132 RH |
13408 | int reg; |
13409 | ||
10181a0d AO |
13410 | /* This is ignored when not generating SVR4 PIC code. */ |
13411 | if (mips_pic != SVR4_PIC) | |
252b5132 RH |
13412 | { |
13413 | s_ignore (0); | |
13414 | return; | |
13415 | } | |
13416 | ||
13417 | /* Add $gp to the register named as an argument. */ | |
584892a6 | 13418 | macro_start (); |
252b5132 | 13419 | reg = tc_get_register (0); |
67c0d1eb | 13420 | macro_build (NULL, ADDRESS_ADD_INSN, "d,v,t", reg, reg, mips_gp_register); |
584892a6 | 13421 | macro_end (); |
252b5132 | 13422 | |
bdaaa2e1 | 13423 | demand_empty_rest_of_line (); |
252b5132 RH |
13424 | } |
13425 | ||
13426 | /* Handle the .insn pseudo-op. This marks instruction labels in | |
13427 | mips16 mode. This permits the linker to handle them specially, | |
13428 | such as generating jalx instructions when needed. We also make | |
13429 | them odd for the duration of the assembly, in order to generate the | |
13430 | right sort of code. We will make them even in the adjust_symtab | |
13431 | routine, while leaving them marked. This is convenient for the | |
13432 | debugger and the disassembler. The linker knows to make them odd | |
13433 | again. */ | |
13434 | ||
13435 | static void | |
17a2f251 | 13436 | s_insn (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 13437 | { |
f9419b05 | 13438 | mips16_mark_labels (); |
252b5132 RH |
13439 | |
13440 | demand_empty_rest_of_line (); | |
13441 | } | |
13442 | ||
13443 | /* Handle a .stabn directive. We need these in order to mark a label | |
13444 | as being a mips16 text label correctly. Sometimes the compiler | |
13445 | will emit a label, followed by a .stabn, and then switch sections. | |
13446 | If the label and .stabn are in mips16 mode, then the label is | |
13447 | really a mips16 text label. */ | |
13448 | ||
13449 | static void | |
17a2f251 | 13450 | s_mips_stab (int type) |
252b5132 | 13451 | { |
f9419b05 | 13452 | if (type == 'n') |
252b5132 RH |
13453 | mips16_mark_labels (); |
13454 | ||
13455 | s_stab (type); | |
13456 | } | |
13457 | ||
54f4ddb3 | 13458 | /* Handle the .weakext pseudo-op as defined in Kane and Heinrich. */ |
252b5132 RH |
13459 | |
13460 | static void | |
17a2f251 | 13461 | s_mips_weakext (int ignore ATTRIBUTE_UNUSED) |
252b5132 RH |
13462 | { |
13463 | char *name; | |
13464 | int c; | |
13465 | symbolS *symbolP; | |
13466 | expressionS exp; | |
13467 | ||
13468 | name = input_line_pointer; | |
13469 | c = get_symbol_end (); | |
13470 | symbolP = symbol_find_or_make (name); | |
13471 | S_SET_WEAK (symbolP); | |
13472 | *input_line_pointer = c; | |
13473 | ||
13474 | SKIP_WHITESPACE (); | |
13475 | ||
13476 | if (! is_end_of_line[(unsigned char) *input_line_pointer]) | |
13477 | { | |
13478 | if (S_IS_DEFINED (symbolP)) | |
13479 | { | |
956cd1d6 | 13480 | as_bad ("ignoring attempt to redefine symbol %s", |
252b5132 RH |
13481 | S_GET_NAME (symbolP)); |
13482 | ignore_rest_of_line (); | |
13483 | return; | |
13484 | } | |
bdaaa2e1 | 13485 | |
252b5132 RH |
13486 | if (*input_line_pointer == ',') |
13487 | { | |
13488 | ++input_line_pointer; | |
13489 | SKIP_WHITESPACE (); | |
13490 | } | |
bdaaa2e1 | 13491 | |
252b5132 RH |
13492 | expression (&exp); |
13493 | if (exp.X_op != O_symbol) | |
13494 | { | |
13495 | as_bad ("bad .weakext directive"); | |
98d3f06f | 13496 | ignore_rest_of_line (); |
252b5132 RH |
13497 | return; |
13498 | } | |
49309057 | 13499 | symbol_set_value_expression (symbolP, &exp); |
252b5132 RH |
13500 | } |
13501 | ||
13502 | demand_empty_rest_of_line (); | |
13503 | } | |
13504 | ||
13505 | /* Parse a register string into a number. Called from the ECOFF code | |
13506 | to parse .frame. The argument is non-zero if this is the frame | |
13507 | register, so that we can record it in mips_frame_reg. */ | |
13508 | ||
13509 | int | |
17a2f251 | 13510 | tc_get_register (int frame) |
252b5132 | 13511 | { |
707bfff6 | 13512 | unsigned int reg; |
252b5132 RH |
13513 | |
13514 | SKIP_WHITESPACE (); | |
707bfff6 TS |
13515 | if (! reg_lookup (&input_line_pointer, RWARN | RTYPE_NUM | RTYPE_GP, ®)) |
13516 | reg = 0; | |
252b5132 | 13517 | if (frame) |
7a621144 DJ |
13518 | { |
13519 | mips_frame_reg = reg != 0 ? reg : SP; | |
13520 | mips_frame_reg_valid = 1; | |
13521 | mips_cprestore_valid = 0; | |
13522 | } | |
252b5132 RH |
13523 | return reg; |
13524 | } | |
13525 | ||
13526 | valueT | |
17a2f251 | 13527 | md_section_align (asection *seg, valueT addr) |
252b5132 RH |
13528 | { |
13529 | int align = bfd_get_section_alignment (stdoutput, seg); | |
13530 | ||
b4c71f56 TS |
13531 | if (IS_ELF) |
13532 | { | |
13533 | /* We don't need to align ELF sections to the full alignment. | |
13534 | However, Irix 5 may prefer that we align them at least to a 16 | |
13535 | byte boundary. We don't bother to align the sections if we | |
13536 | are targeted for an embedded system. */ | |
c41e87e3 | 13537 | if (strncmp (TARGET_OS, "elf", 3) == 0) |
b4c71f56 TS |
13538 | return addr; |
13539 | if (align > 4) | |
13540 | align = 4; | |
13541 | } | |
252b5132 RH |
13542 | |
13543 | return ((addr + (1 << align) - 1) & (-1 << align)); | |
13544 | } | |
13545 | ||
13546 | /* Utility routine, called from above as well. If called while the | |
13547 | input file is still being read, it's only an approximation. (For | |
13548 | example, a symbol may later become defined which appeared to be | |
13549 | undefined earlier.) */ | |
13550 | ||
13551 | static int | |
17a2f251 | 13552 | nopic_need_relax (symbolS *sym, int before_relaxing) |
252b5132 RH |
13553 | { |
13554 | if (sym == 0) | |
13555 | return 0; | |
13556 | ||
4d0d148d | 13557 | if (g_switch_value > 0) |
252b5132 RH |
13558 | { |
13559 | const char *symname; | |
13560 | int change; | |
13561 | ||
c9914766 | 13562 | /* Find out whether this symbol can be referenced off the $gp |
252b5132 RH |
13563 | register. It can be if it is smaller than the -G size or if |
13564 | it is in the .sdata or .sbss section. Certain symbols can | |
c9914766 | 13565 | not be referenced off the $gp, although it appears as though |
252b5132 RH |
13566 | they can. */ |
13567 | symname = S_GET_NAME (sym); | |
13568 | if (symname != (const char *) NULL | |
13569 | && (strcmp (symname, "eprol") == 0 | |
13570 | || strcmp (symname, "etext") == 0 | |
13571 | || strcmp (symname, "_gp") == 0 | |
13572 | || strcmp (symname, "edata") == 0 | |
13573 | || strcmp (symname, "_fbss") == 0 | |
13574 | || strcmp (symname, "_fdata") == 0 | |
13575 | || strcmp (symname, "_ftext") == 0 | |
13576 | || strcmp (symname, "end") == 0 | |
13577 | || strcmp (symname, "_gp_disp") == 0)) | |
13578 | change = 1; | |
13579 | else if ((! S_IS_DEFINED (sym) || S_IS_COMMON (sym)) | |
13580 | && (0 | |
13581 | #ifndef NO_ECOFF_DEBUGGING | |
49309057 ILT |
13582 | || (symbol_get_obj (sym)->ecoff_extern_size != 0 |
13583 | && (symbol_get_obj (sym)->ecoff_extern_size | |
13584 | <= g_switch_value)) | |
252b5132 RH |
13585 | #endif |
13586 | /* We must defer this decision until after the whole | |
13587 | file has been read, since there might be a .extern | |
13588 | after the first use of this symbol. */ | |
13589 | || (before_relaxing | |
13590 | #ifndef NO_ECOFF_DEBUGGING | |
49309057 | 13591 | && symbol_get_obj (sym)->ecoff_extern_size == 0 |
252b5132 RH |
13592 | #endif |
13593 | && S_GET_VALUE (sym) == 0) | |
13594 | || (S_GET_VALUE (sym) != 0 | |
13595 | && S_GET_VALUE (sym) <= g_switch_value))) | |
13596 | change = 0; | |
13597 | else | |
13598 | { | |
13599 | const char *segname; | |
13600 | ||
13601 | segname = segment_name (S_GET_SEGMENT (sym)); | |
13602 | assert (strcmp (segname, ".lit8") != 0 | |
13603 | && strcmp (segname, ".lit4") != 0); | |
13604 | change = (strcmp (segname, ".sdata") != 0 | |
fba2b7f9 GK |
13605 | && strcmp (segname, ".sbss") != 0 |
13606 | && strncmp (segname, ".sdata.", 7) != 0 | |
d4dc2f22 TS |
13607 | && strncmp (segname, ".sbss.", 6) != 0 |
13608 | && strncmp (segname, ".gnu.linkonce.sb.", 17) != 0 | |
fba2b7f9 | 13609 | && strncmp (segname, ".gnu.linkonce.s.", 16) != 0); |
252b5132 RH |
13610 | } |
13611 | return change; | |
13612 | } | |
13613 | else | |
c9914766 | 13614 | /* We are not optimizing for the $gp register. */ |
252b5132 RH |
13615 | return 1; |
13616 | } | |
13617 | ||
5919d012 RS |
13618 | |
13619 | /* Return true if the given symbol should be considered local for SVR4 PIC. */ | |
13620 | ||
13621 | static bfd_boolean | |
17a2f251 | 13622 | pic_need_relax (symbolS *sym, asection *segtype) |
5919d012 RS |
13623 | { |
13624 | asection *symsec; | |
5919d012 RS |
13625 | |
13626 | /* Handle the case of a symbol equated to another symbol. */ | |
13627 | while (symbol_equated_reloc_p (sym)) | |
13628 | { | |
13629 | symbolS *n; | |
13630 | ||
5f0fe04b | 13631 | /* It's possible to get a loop here in a badly written program. */ |
5919d012 RS |
13632 | n = symbol_get_value_expression (sym)->X_add_symbol; |
13633 | if (n == sym) | |
13634 | break; | |
13635 | sym = n; | |
13636 | } | |
13637 | ||
df1f3cda DD |
13638 | if (symbol_section_p (sym)) |
13639 | return TRUE; | |
13640 | ||
5919d012 RS |
13641 | symsec = S_GET_SEGMENT (sym); |
13642 | ||
5919d012 RS |
13643 | /* This must duplicate the test in adjust_reloc_syms. */ |
13644 | return (symsec != &bfd_und_section | |
13645 | && symsec != &bfd_abs_section | |
5f0fe04b TS |
13646 | && !bfd_is_com_section (symsec) |
13647 | && !s_is_linkonce (sym, segtype) | |
5919d012 RS |
13648 | #ifdef OBJ_ELF |
13649 | /* A global or weak symbol is treated as external. */ | |
f43abd2b | 13650 | && (!IS_ELF || (! S_IS_WEAK (sym) && ! S_IS_EXTERNAL (sym))) |
5919d012 RS |
13651 | #endif |
13652 | ); | |
13653 | } | |
13654 | ||
13655 | ||
252b5132 RH |
13656 | /* Given a mips16 variant frag FRAGP, return non-zero if it needs an |
13657 | extended opcode. SEC is the section the frag is in. */ | |
13658 | ||
13659 | static int | |
17a2f251 | 13660 | mips16_extended_frag (fragS *fragp, asection *sec, long stretch) |
252b5132 RH |
13661 | { |
13662 | int type; | |
3994f87e | 13663 | const struct mips16_immed_operand *op; |
252b5132 RH |
13664 | offsetT val; |
13665 | int mintiny, maxtiny; | |
13666 | segT symsec; | |
98aa84af | 13667 | fragS *sym_frag; |
252b5132 RH |
13668 | |
13669 | if (RELAX_MIPS16_USER_SMALL (fragp->fr_subtype)) | |
13670 | return 0; | |
13671 | if (RELAX_MIPS16_USER_EXT (fragp->fr_subtype)) | |
13672 | return 1; | |
13673 | ||
13674 | type = RELAX_MIPS16_TYPE (fragp->fr_subtype); | |
13675 | op = mips16_immed_operands; | |
13676 | while (op->type != type) | |
13677 | { | |
13678 | ++op; | |
13679 | assert (op < mips16_immed_operands + MIPS16_NUM_IMMED); | |
13680 | } | |
13681 | ||
13682 | if (op->unsp) | |
13683 | { | |
13684 | if (type == '<' || type == '>' || type == '[' || type == ']') | |
13685 | { | |
13686 | mintiny = 1; | |
13687 | maxtiny = 1 << op->nbits; | |
13688 | } | |
13689 | else | |
13690 | { | |
13691 | mintiny = 0; | |
13692 | maxtiny = (1 << op->nbits) - 1; | |
13693 | } | |
13694 | } | |
13695 | else | |
13696 | { | |
13697 | mintiny = - (1 << (op->nbits - 1)); | |
13698 | maxtiny = (1 << (op->nbits - 1)) - 1; | |
13699 | } | |
13700 | ||
98aa84af | 13701 | sym_frag = symbol_get_frag (fragp->fr_symbol); |
ac62c346 | 13702 | val = S_GET_VALUE (fragp->fr_symbol); |
98aa84af | 13703 | symsec = S_GET_SEGMENT (fragp->fr_symbol); |
252b5132 RH |
13704 | |
13705 | if (op->pcrel) | |
13706 | { | |
13707 | addressT addr; | |
13708 | ||
13709 | /* We won't have the section when we are called from | |
13710 | mips_relax_frag. However, we will always have been called | |
13711 | from md_estimate_size_before_relax first. If this is a | |
13712 | branch to a different section, we mark it as such. If SEC is | |
13713 | NULL, and the frag is not marked, then it must be a branch to | |
13714 | the same section. */ | |
13715 | if (sec == NULL) | |
13716 | { | |
13717 | if (RELAX_MIPS16_LONG_BRANCH (fragp->fr_subtype)) | |
13718 | return 1; | |
13719 | } | |
13720 | else | |
13721 | { | |
98aa84af | 13722 | /* Must have been called from md_estimate_size_before_relax. */ |
252b5132 RH |
13723 | if (symsec != sec) |
13724 | { | |
13725 | fragp->fr_subtype = | |
13726 | RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype); | |
13727 | ||
13728 | /* FIXME: We should support this, and let the linker | |
13729 | catch branches and loads that are out of range. */ | |
13730 | as_bad_where (fragp->fr_file, fragp->fr_line, | |
13731 | _("unsupported PC relative reference to different section")); | |
13732 | ||
13733 | return 1; | |
13734 | } | |
98aa84af AM |
13735 | if (fragp != sym_frag && sym_frag->fr_address == 0) |
13736 | /* Assume non-extended on the first relaxation pass. | |
13737 | The address we have calculated will be bogus if this is | |
13738 | a forward branch to another frag, as the forward frag | |
13739 | will have fr_address == 0. */ | |
13740 | return 0; | |
252b5132 RH |
13741 | } |
13742 | ||
13743 | /* In this case, we know for sure that the symbol fragment is in | |
98aa84af AM |
13744 | the same section. If the relax_marker of the symbol fragment |
13745 | differs from the relax_marker of this fragment, we have not | |
13746 | yet adjusted the symbol fragment fr_address. We want to add | |
252b5132 RH |
13747 | in STRETCH in order to get a better estimate of the address. |
13748 | This particularly matters because of the shift bits. */ | |
13749 | if (stretch != 0 | |
98aa84af | 13750 | && sym_frag->relax_marker != fragp->relax_marker) |
252b5132 RH |
13751 | { |
13752 | fragS *f; | |
13753 | ||
13754 | /* Adjust stretch for any alignment frag. Note that if have | |
13755 | been expanding the earlier code, the symbol may be | |
13756 | defined in what appears to be an earlier frag. FIXME: | |
13757 | This doesn't handle the fr_subtype field, which specifies | |
13758 | a maximum number of bytes to skip when doing an | |
13759 | alignment. */ | |
98aa84af | 13760 | for (f = fragp; f != NULL && f != sym_frag; f = f->fr_next) |
252b5132 RH |
13761 | { |
13762 | if (f->fr_type == rs_align || f->fr_type == rs_align_code) | |
13763 | { | |
13764 | if (stretch < 0) | |
13765 | stretch = - ((- stretch) | |
13766 | & ~ ((1 << (int) f->fr_offset) - 1)); | |
13767 | else | |
13768 | stretch &= ~ ((1 << (int) f->fr_offset) - 1); | |
13769 | if (stretch == 0) | |
13770 | break; | |
13771 | } | |
13772 | } | |
13773 | if (f != NULL) | |
13774 | val += stretch; | |
13775 | } | |
13776 | ||
13777 | addr = fragp->fr_address + fragp->fr_fix; | |
13778 | ||
13779 | /* The base address rules are complicated. The base address of | |
13780 | a branch is the following instruction. The base address of a | |
13781 | PC relative load or add is the instruction itself, but if it | |
13782 | is in a delay slot (in which case it can not be extended) use | |
13783 | the address of the instruction whose delay slot it is in. */ | |
13784 | if (type == 'p' || type == 'q') | |
13785 | { | |
13786 | addr += 2; | |
13787 | ||
13788 | /* If we are currently assuming that this frag should be | |
13789 | extended, then, the current address is two bytes | |
bdaaa2e1 | 13790 | higher. */ |
252b5132 RH |
13791 | if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype)) |
13792 | addr += 2; | |
13793 | ||
13794 | /* Ignore the low bit in the target, since it will be set | |
13795 | for a text label. */ | |
13796 | if ((val & 1) != 0) | |
13797 | --val; | |
13798 | } | |
13799 | else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)) | |
13800 | addr -= 4; | |
13801 | else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype)) | |
13802 | addr -= 2; | |
13803 | ||
13804 | val -= addr & ~ ((1 << op->shift) - 1); | |
13805 | ||
13806 | /* Branch offsets have an implicit 0 in the lowest bit. */ | |
13807 | if (type == 'p' || type == 'q') | |
13808 | val /= 2; | |
13809 | ||
13810 | /* If any of the shifted bits are set, we must use an extended | |
13811 | opcode. If the address depends on the size of this | |
13812 | instruction, this can lead to a loop, so we arrange to always | |
13813 | use an extended opcode. We only check this when we are in | |
13814 | the main relaxation loop, when SEC is NULL. */ | |
13815 | if ((val & ((1 << op->shift) - 1)) != 0 && sec == NULL) | |
13816 | { | |
13817 | fragp->fr_subtype = | |
13818 | RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype); | |
13819 | return 1; | |
13820 | } | |
13821 | ||
13822 | /* If we are about to mark a frag as extended because the value | |
13823 | is precisely maxtiny + 1, then there is a chance of an | |
13824 | infinite loop as in the following code: | |
13825 | la $4,foo | |
13826 | .skip 1020 | |
13827 | .align 2 | |
13828 | foo: | |
13829 | In this case when the la is extended, foo is 0x3fc bytes | |
13830 | away, so the la can be shrunk, but then foo is 0x400 away, so | |
13831 | the la must be extended. To avoid this loop, we mark the | |
13832 | frag as extended if it was small, and is about to become | |
13833 | extended with a value of maxtiny + 1. */ | |
13834 | if (val == ((maxtiny + 1) << op->shift) | |
13835 | && ! RELAX_MIPS16_EXTENDED (fragp->fr_subtype) | |
13836 | && sec == NULL) | |
13837 | { | |
13838 | fragp->fr_subtype = | |
13839 | RELAX_MIPS16_MARK_LONG_BRANCH (fragp->fr_subtype); | |
13840 | return 1; | |
13841 | } | |
13842 | } | |
13843 | else if (symsec != absolute_section && sec != NULL) | |
13844 | as_bad_where (fragp->fr_file, fragp->fr_line, _("unsupported relocation")); | |
13845 | ||
13846 | if ((val & ((1 << op->shift) - 1)) != 0 | |
13847 | || val < (mintiny << op->shift) | |
13848 | || val > (maxtiny << op->shift)) | |
13849 | return 1; | |
13850 | else | |
13851 | return 0; | |
13852 | } | |
13853 | ||
4a6a3df4 AO |
13854 | /* Compute the length of a branch sequence, and adjust the |
13855 | RELAX_BRANCH_TOOFAR bit accordingly. If FRAGP is NULL, the | |
13856 | worst-case length is computed, with UPDATE being used to indicate | |
13857 | whether an unconditional (-1), branch-likely (+1) or regular (0) | |
13858 | branch is to be computed. */ | |
13859 | static int | |
17a2f251 | 13860 | relaxed_branch_length (fragS *fragp, asection *sec, int update) |
4a6a3df4 | 13861 | { |
b34976b6 | 13862 | bfd_boolean toofar; |
4a6a3df4 AO |
13863 | int length; |
13864 | ||
13865 | if (fragp | |
13866 | && S_IS_DEFINED (fragp->fr_symbol) | |
13867 | && sec == S_GET_SEGMENT (fragp->fr_symbol)) | |
13868 | { | |
13869 | addressT addr; | |
13870 | offsetT val; | |
13871 | ||
13872 | val = S_GET_VALUE (fragp->fr_symbol) + fragp->fr_offset; | |
13873 | ||
13874 | addr = fragp->fr_address + fragp->fr_fix + 4; | |
13875 | ||
13876 | val -= addr; | |
13877 | ||
13878 | toofar = val < - (0x8000 << 2) || val >= (0x8000 << 2); | |
13879 | } | |
13880 | else if (fragp) | |
13881 | /* If the symbol is not defined or it's in a different segment, | |
13882 | assume the user knows what's going on and emit a short | |
13883 | branch. */ | |
b34976b6 | 13884 | toofar = FALSE; |
4a6a3df4 | 13885 | else |
b34976b6 | 13886 | toofar = TRUE; |
4a6a3df4 AO |
13887 | |
13888 | if (fragp && update && toofar != RELAX_BRANCH_TOOFAR (fragp->fr_subtype)) | |
13889 | fragp->fr_subtype | |
af6ae2ad | 13890 | = RELAX_BRANCH_ENCODE (RELAX_BRANCH_UNCOND (fragp->fr_subtype), |
4a6a3df4 AO |
13891 | RELAX_BRANCH_LIKELY (fragp->fr_subtype), |
13892 | RELAX_BRANCH_LINK (fragp->fr_subtype), | |
13893 | toofar); | |
13894 | ||
13895 | length = 4; | |
13896 | if (toofar) | |
13897 | { | |
13898 | if (fragp ? RELAX_BRANCH_LIKELY (fragp->fr_subtype) : (update > 0)) | |
13899 | length += 8; | |
13900 | ||
13901 | if (mips_pic != NO_PIC) | |
13902 | { | |
13903 | /* Additional space for PIC loading of target address. */ | |
13904 | length += 8; | |
13905 | if (mips_opts.isa == ISA_MIPS1) | |
13906 | /* Additional space for $at-stabilizing nop. */ | |
13907 | length += 4; | |
13908 | } | |
13909 | ||
13910 | /* If branch is conditional. */ | |
13911 | if (fragp ? !RELAX_BRANCH_UNCOND (fragp->fr_subtype) : (update >= 0)) | |
13912 | length += 8; | |
13913 | } | |
b34976b6 | 13914 | |
4a6a3df4 AO |
13915 | return length; |
13916 | } | |
13917 | ||
252b5132 RH |
13918 | /* Estimate the size of a frag before relaxing. Unless this is the |
13919 | mips16, we are not really relaxing here, and the final size is | |
13920 | encoded in the subtype information. For the mips16, we have to | |
13921 | decide whether we are using an extended opcode or not. */ | |
13922 | ||
252b5132 | 13923 | int |
17a2f251 | 13924 | md_estimate_size_before_relax (fragS *fragp, asection *segtype) |
252b5132 | 13925 | { |
5919d012 | 13926 | int change; |
252b5132 | 13927 | |
4a6a3df4 AO |
13928 | if (RELAX_BRANCH_P (fragp->fr_subtype)) |
13929 | { | |
13930 | ||
b34976b6 AM |
13931 | fragp->fr_var = relaxed_branch_length (fragp, segtype, FALSE); |
13932 | ||
4a6a3df4 AO |
13933 | return fragp->fr_var; |
13934 | } | |
13935 | ||
252b5132 | 13936 | if (RELAX_MIPS16_P (fragp->fr_subtype)) |
177b4a6a AO |
13937 | /* We don't want to modify the EXTENDED bit here; it might get us |
13938 | into infinite loops. We change it only in mips_relax_frag(). */ | |
13939 | return (RELAX_MIPS16_EXTENDED (fragp->fr_subtype) ? 4 : 2); | |
252b5132 RH |
13940 | |
13941 | if (mips_pic == NO_PIC) | |
5919d012 | 13942 | change = nopic_need_relax (fragp->fr_symbol, 0); |
252b5132 | 13943 | else if (mips_pic == SVR4_PIC) |
5919d012 | 13944 | change = pic_need_relax (fragp->fr_symbol, segtype); |
0a44bf69 RS |
13945 | else if (mips_pic == VXWORKS_PIC) |
13946 | /* For vxworks, GOT16 relocations never have a corresponding LO16. */ | |
13947 | change = 0; | |
252b5132 RH |
13948 | else |
13949 | abort (); | |
13950 | ||
13951 | if (change) | |
13952 | { | |
4d7206a2 | 13953 | fragp->fr_subtype |= RELAX_USE_SECOND; |
4d7206a2 | 13954 | return -RELAX_FIRST (fragp->fr_subtype); |
252b5132 | 13955 | } |
4d7206a2 RS |
13956 | else |
13957 | return -RELAX_SECOND (fragp->fr_subtype); | |
252b5132 RH |
13958 | } |
13959 | ||
13960 | /* This is called to see whether a reloc against a defined symbol | |
de7e6852 | 13961 | should be converted into a reloc against a section. */ |
252b5132 RH |
13962 | |
13963 | int | |
17a2f251 | 13964 | mips_fix_adjustable (fixS *fixp) |
252b5132 | 13965 | { |
252b5132 RH |
13966 | if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT |
13967 | || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY) | |
13968 | return 0; | |
a161fe53 | 13969 | |
252b5132 RH |
13970 | if (fixp->fx_addsy == NULL) |
13971 | return 1; | |
a161fe53 | 13972 | |
de7e6852 RS |
13973 | /* If symbol SYM is in a mergeable section, relocations of the form |
13974 | SYM + 0 can usually be made section-relative. The mergeable data | |
13975 | is then identified by the section offset rather than by the symbol. | |
13976 | ||
13977 | However, if we're generating REL LO16 relocations, the offset is split | |
13978 | between the LO16 and parterning high part relocation. The linker will | |
13979 | need to recalculate the complete offset in order to correctly identify | |
13980 | the merge data. | |
13981 | ||
13982 | The linker has traditionally not looked for the parterning high part | |
13983 | relocation, and has thus allowed orphaned R_MIPS_LO16 relocations to be | |
13984 | placed anywhere. Rather than break backwards compatibility by changing | |
13985 | this, it seems better not to force the issue, and instead keep the | |
13986 | original symbol. This will work with either linker behavior. */ | |
738e5348 | 13987 | if ((lo16_reloc_p (fixp->fx_r_type) |
704803a9 | 13988 | || reloc_needs_lo_p (fixp->fx_r_type)) |
de7e6852 RS |
13989 | && HAVE_IN_PLACE_ADDENDS |
13990 | && (S_GET_SEGMENT (fixp->fx_addsy)->flags & SEC_MERGE) != 0) | |
13991 | return 0; | |
13992 | ||
252b5132 | 13993 | #ifdef OBJ_ELF |
b314ec0e RS |
13994 | /* R_MIPS16_26 relocations against non-MIPS16 functions might resolve |
13995 | to a floating-point stub. The same is true for non-R_MIPS16_26 | |
13996 | relocations against MIPS16 functions; in this case, the stub becomes | |
13997 | the function's canonical address. | |
13998 | ||
13999 | Floating-point stubs are stored in unique .mips16.call.* or | |
14000 | .mips16.fn.* sections. If a stub T for function F is in section S, | |
14001 | the first relocation in section S must be against F; this is how the | |
14002 | linker determines the target function. All relocations that might | |
14003 | resolve to T must also be against F. We therefore have the following | |
14004 | restrictions, which are given in an intentionally-redundant way: | |
14005 | ||
14006 | 1. We cannot reduce R_MIPS16_26 relocations against non-MIPS16 | |
14007 | symbols. | |
14008 | ||
14009 | 2. We cannot reduce a stub's relocations against non-MIPS16 symbols | |
14010 | if that stub might be used. | |
14011 | ||
14012 | 3. We cannot reduce non-R_MIPS16_26 relocations against MIPS16 | |
14013 | symbols. | |
14014 | ||
14015 | 4. We cannot reduce a stub's relocations against MIPS16 symbols if | |
14016 | that stub might be used. | |
14017 | ||
14018 | There is a further restriction: | |
14019 | ||
14020 | 5. We cannot reduce R_MIPS16_26 relocations against MIPS16 symbols | |
14021 | on targets with in-place addends; the relocation field cannot | |
14022 | encode the low bit. | |
14023 | ||
14024 | For simplicity, we deal with (3)-(5) by not reducing _any_ relocation | |
14025 | against a MIPS16 symbol. | |
14026 | ||
14027 | We deal with (1)-(2) by saying that, if there's a R_MIPS16_26 | |
14028 | relocation against some symbol R, no relocation against R may be | |
14029 | reduced. (Note that this deals with (2) as well as (1) because | |
14030 | relocations against global symbols will never be reduced on ELF | |
14031 | targets.) This approach is a little simpler than trying to detect | |
14032 | stub sections, and gives the "all or nothing" per-symbol consistency | |
14033 | that we have for MIPS16 symbols. */ | |
f43abd2b | 14034 | if (IS_ELF |
b314ec0e | 14035 | && fixp->fx_subsy == NULL |
30c09090 | 14036 | && (ELF_ST_IS_MIPS16 (S_GET_OTHER (fixp->fx_addsy)) |
b314ec0e | 14037 | || *symbol_get_tc (fixp->fx_addsy))) |
252b5132 RH |
14038 | return 0; |
14039 | #endif | |
a161fe53 | 14040 | |
252b5132 RH |
14041 | return 1; |
14042 | } | |
14043 | ||
14044 | /* Translate internal representation of relocation info to BFD target | |
14045 | format. */ | |
14046 | ||
14047 | arelent ** | |
17a2f251 | 14048 | tc_gen_reloc (asection *section ATTRIBUTE_UNUSED, fixS *fixp) |
252b5132 RH |
14049 | { |
14050 | static arelent *retval[4]; | |
14051 | arelent *reloc; | |
14052 | bfd_reloc_code_real_type code; | |
14053 | ||
4b0cff4e TS |
14054 | memset (retval, 0, sizeof(retval)); |
14055 | reloc = retval[0] = (arelent *) xcalloc (1, sizeof (arelent)); | |
49309057 ILT |
14056 | reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *)); |
14057 | *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy); | |
252b5132 RH |
14058 | reloc->address = fixp->fx_frag->fr_address + fixp->fx_where; |
14059 | ||
bad36eac DJ |
14060 | if (fixp->fx_pcrel) |
14061 | { | |
14062 | assert (fixp->fx_r_type == BFD_RELOC_16_PCREL_S2); | |
14063 | ||
14064 | /* At this point, fx_addnumber is "symbol offset - pcrel address". | |
14065 | Relocations want only the symbol offset. */ | |
14066 | reloc->addend = fixp->fx_addnumber + reloc->address; | |
f43abd2b | 14067 | if (!IS_ELF) |
bad36eac DJ |
14068 | { |
14069 | /* A gruesome hack which is a result of the gruesome gas | |
14070 | reloc handling. What's worse, for COFF (as opposed to | |
14071 | ECOFF), we might need yet another copy of reloc->address. | |
14072 | See bfd_install_relocation. */ | |
14073 | reloc->addend += reloc->address; | |
14074 | } | |
14075 | } | |
14076 | else | |
14077 | reloc->addend = fixp->fx_addnumber; | |
252b5132 | 14078 | |
438c16b8 TS |
14079 | /* Since the old MIPS ELF ABI uses Rel instead of Rela, encode the vtable |
14080 | entry to be used in the relocation's section offset. */ | |
14081 | if (! HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY) | |
252b5132 RH |
14082 | { |
14083 | reloc->address = reloc->addend; | |
14084 | reloc->addend = 0; | |
14085 | } | |
14086 | ||
252b5132 | 14087 | code = fixp->fx_r_type; |
252b5132 | 14088 | |
bad36eac | 14089 | reloc->howto = bfd_reloc_type_lookup (stdoutput, code); |
252b5132 RH |
14090 | if (reloc->howto == NULL) |
14091 | { | |
14092 | as_bad_where (fixp->fx_file, fixp->fx_line, | |
14093 | _("Can not represent %s relocation in this object file format"), | |
14094 | bfd_get_reloc_code_name (code)); | |
14095 | retval[0] = NULL; | |
14096 | } | |
14097 | ||
14098 | return retval; | |
14099 | } | |
14100 | ||
14101 | /* Relax a machine dependent frag. This returns the amount by which | |
14102 | the current size of the frag should change. */ | |
14103 | ||
14104 | int | |
17a2f251 | 14105 | mips_relax_frag (asection *sec, fragS *fragp, long stretch) |
252b5132 | 14106 | { |
4a6a3df4 AO |
14107 | if (RELAX_BRANCH_P (fragp->fr_subtype)) |
14108 | { | |
14109 | offsetT old_var = fragp->fr_var; | |
b34976b6 AM |
14110 | |
14111 | fragp->fr_var = relaxed_branch_length (fragp, sec, TRUE); | |
4a6a3df4 AO |
14112 | |
14113 | return fragp->fr_var - old_var; | |
14114 | } | |
14115 | ||
252b5132 RH |
14116 | if (! RELAX_MIPS16_P (fragp->fr_subtype)) |
14117 | return 0; | |
14118 | ||
c4e7957c | 14119 | if (mips16_extended_frag (fragp, NULL, stretch)) |
252b5132 RH |
14120 | { |
14121 | if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype)) | |
14122 | return 0; | |
14123 | fragp->fr_subtype = RELAX_MIPS16_MARK_EXTENDED (fragp->fr_subtype); | |
14124 | return 2; | |
14125 | } | |
14126 | else | |
14127 | { | |
14128 | if (! RELAX_MIPS16_EXTENDED (fragp->fr_subtype)) | |
14129 | return 0; | |
14130 | fragp->fr_subtype = RELAX_MIPS16_CLEAR_EXTENDED (fragp->fr_subtype); | |
14131 | return -2; | |
14132 | } | |
14133 | ||
14134 | return 0; | |
14135 | } | |
14136 | ||
14137 | /* Convert a machine dependent frag. */ | |
14138 | ||
14139 | void | |
17a2f251 | 14140 | md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp) |
252b5132 | 14141 | { |
4a6a3df4 AO |
14142 | if (RELAX_BRANCH_P (fragp->fr_subtype)) |
14143 | { | |
14144 | bfd_byte *buf; | |
14145 | unsigned long insn; | |
14146 | expressionS exp; | |
14147 | fixS *fixp; | |
b34976b6 | 14148 | |
4a6a3df4 AO |
14149 | buf = (bfd_byte *)fragp->fr_literal + fragp->fr_fix; |
14150 | ||
14151 | if (target_big_endian) | |
14152 | insn = bfd_getb32 (buf); | |
14153 | else | |
14154 | insn = bfd_getl32 (buf); | |
b34976b6 | 14155 | |
4a6a3df4 AO |
14156 | if (!RELAX_BRANCH_TOOFAR (fragp->fr_subtype)) |
14157 | { | |
14158 | /* We generate a fixup instead of applying it right now | |
14159 | because, if there are linker relaxations, we're going to | |
14160 | need the relocations. */ | |
14161 | exp.X_op = O_symbol; | |
14162 | exp.X_add_symbol = fragp->fr_symbol; | |
14163 | exp.X_add_number = fragp->fr_offset; | |
14164 | ||
14165 | fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal, | |
3994f87e | 14166 | 4, &exp, TRUE, BFD_RELOC_16_PCREL_S2); |
4a6a3df4 AO |
14167 | fixp->fx_file = fragp->fr_file; |
14168 | fixp->fx_line = fragp->fr_line; | |
b34976b6 | 14169 | |
2132e3a3 | 14170 | md_number_to_chars ((char *) buf, insn, 4); |
4a6a3df4 AO |
14171 | buf += 4; |
14172 | } | |
14173 | else | |
14174 | { | |
14175 | int i; | |
14176 | ||
14177 | as_warn_where (fragp->fr_file, fragp->fr_line, | |
14178 | _("relaxed out-of-range branch into a jump")); | |
14179 | ||
14180 | if (RELAX_BRANCH_UNCOND (fragp->fr_subtype)) | |
14181 | goto uncond; | |
14182 | ||
14183 | if (!RELAX_BRANCH_LIKELY (fragp->fr_subtype)) | |
14184 | { | |
14185 | /* Reverse the branch. */ | |
14186 | switch ((insn >> 28) & 0xf) | |
14187 | { | |
14188 | case 4: | |
14189 | /* bc[0-3][tf]l? and bc1any[24][ft] instructions can | |
14190 | have the condition reversed by tweaking a single | |
14191 | bit, and their opcodes all have 0x4???????. */ | |
14192 | assert ((insn & 0xf1000000) == 0x41000000); | |
14193 | insn ^= 0x00010000; | |
14194 | break; | |
14195 | ||
14196 | case 0: | |
14197 | /* bltz 0x04000000 bgez 0x04010000 | |
54f4ddb3 | 14198 | bltzal 0x04100000 bgezal 0x04110000 */ |
4a6a3df4 AO |
14199 | assert ((insn & 0xfc0e0000) == 0x04000000); |
14200 | insn ^= 0x00010000; | |
14201 | break; | |
b34976b6 | 14202 | |
4a6a3df4 AO |
14203 | case 1: |
14204 | /* beq 0x10000000 bne 0x14000000 | |
54f4ddb3 | 14205 | blez 0x18000000 bgtz 0x1c000000 */ |
4a6a3df4 AO |
14206 | insn ^= 0x04000000; |
14207 | break; | |
14208 | ||
14209 | default: | |
14210 | abort (); | |
14211 | } | |
14212 | } | |
14213 | ||
14214 | if (RELAX_BRANCH_LINK (fragp->fr_subtype)) | |
14215 | { | |
14216 | /* Clear the and-link bit. */ | |
14217 | assert ((insn & 0xfc1c0000) == 0x04100000); | |
14218 | ||
54f4ddb3 TS |
14219 | /* bltzal 0x04100000 bgezal 0x04110000 |
14220 | bltzall 0x04120000 bgezall 0x04130000 */ | |
4a6a3df4 AO |
14221 | insn &= ~0x00100000; |
14222 | } | |
14223 | ||
14224 | /* Branch over the branch (if the branch was likely) or the | |
14225 | full jump (not likely case). Compute the offset from the | |
14226 | current instruction to branch to. */ | |
14227 | if (RELAX_BRANCH_LIKELY (fragp->fr_subtype)) | |
14228 | i = 16; | |
14229 | else | |
14230 | { | |
14231 | /* How many bytes in instructions we've already emitted? */ | |
14232 | i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix; | |
14233 | /* How many bytes in instructions from here to the end? */ | |
14234 | i = fragp->fr_var - i; | |
14235 | } | |
14236 | /* Convert to instruction count. */ | |
14237 | i >>= 2; | |
14238 | /* Branch counts from the next instruction. */ | |
b34976b6 | 14239 | i--; |
4a6a3df4 AO |
14240 | insn |= i; |
14241 | /* Branch over the jump. */ | |
2132e3a3 | 14242 | md_number_to_chars ((char *) buf, insn, 4); |
4a6a3df4 AO |
14243 | buf += 4; |
14244 | ||
54f4ddb3 | 14245 | /* nop */ |
2132e3a3 | 14246 | md_number_to_chars ((char *) buf, 0, 4); |
4a6a3df4 AO |
14247 | buf += 4; |
14248 | ||
14249 | if (RELAX_BRANCH_LIKELY (fragp->fr_subtype)) | |
14250 | { | |
14251 | /* beql $0, $0, 2f */ | |
14252 | insn = 0x50000000; | |
14253 | /* Compute the PC offset from the current instruction to | |
14254 | the end of the variable frag. */ | |
14255 | /* How many bytes in instructions we've already emitted? */ | |
14256 | i = buf - (bfd_byte *)fragp->fr_literal - fragp->fr_fix; | |
14257 | /* How many bytes in instructions from here to the end? */ | |
14258 | i = fragp->fr_var - i; | |
14259 | /* Convert to instruction count. */ | |
14260 | i >>= 2; | |
14261 | /* Don't decrement i, because we want to branch over the | |
14262 | delay slot. */ | |
14263 | ||
14264 | insn |= i; | |
2132e3a3 | 14265 | md_number_to_chars ((char *) buf, insn, 4); |
4a6a3df4 AO |
14266 | buf += 4; |
14267 | ||
2132e3a3 | 14268 | md_number_to_chars ((char *) buf, 0, 4); |
4a6a3df4 AO |
14269 | buf += 4; |
14270 | } | |
14271 | ||
14272 | uncond: | |
14273 | if (mips_pic == NO_PIC) | |
14274 | { | |
14275 | /* j or jal. */ | |
14276 | insn = (RELAX_BRANCH_LINK (fragp->fr_subtype) | |
14277 | ? 0x0c000000 : 0x08000000); | |
14278 | exp.X_op = O_symbol; | |
14279 | exp.X_add_symbol = fragp->fr_symbol; | |
14280 | exp.X_add_number = fragp->fr_offset; | |
14281 | ||
14282 | fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal, | |
3994f87e | 14283 | 4, &exp, FALSE, BFD_RELOC_MIPS_JMP); |
4a6a3df4 AO |
14284 | fixp->fx_file = fragp->fr_file; |
14285 | fixp->fx_line = fragp->fr_line; | |
14286 | ||
2132e3a3 | 14287 | md_number_to_chars ((char *) buf, insn, 4); |
4a6a3df4 AO |
14288 | buf += 4; |
14289 | } | |
14290 | else | |
14291 | { | |
14292 | /* lw/ld $at, <sym>($gp) R_MIPS_GOT16 */ | |
14293 | insn = HAVE_64BIT_ADDRESSES ? 0xdf810000 : 0x8f810000; | |
14294 | exp.X_op = O_symbol; | |
14295 | exp.X_add_symbol = fragp->fr_symbol; | |
14296 | exp.X_add_number = fragp->fr_offset; | |
14297 | ||
14298 | if (fragp->fr_offset) | |
14299 | { | |
14300 | exp.X_add_symbol = make_expr_symbol (&exp); | |
14301 | exp.X_add_number = 0; | |
14302 | } | |
14303 | ||
14304 | fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal, | |
3994f87e | 14305 | 4, &exp, FALSE, BFD_RELOC_MIPS_GOT16); |
4a6a3df4 AO |
14306 | fixp->fx_file = fragp->fr_file; |
14307 | fixp->fx_line = fragp->fr_line; | |
14308 | ||
2132e3a3 | 14309 | md_number_to_chars ((char *) buf, insn, 4); |
4a6a3df4 | 14310 | buf += 4; |
b34976b6 | 14311 | |
4a6a3df4 AO |
14312 | if (mips_opts.isa == ISA_MIPS1) |
14313 | { | |
14314 | /* nop */ | |
2132e3a3 | 14315 | md_number_to_chars ((char *) buf, 0, 4); |
4a6a3df4 AO |
14316 | buf += 4; |
14317 | } | |
14318 | ||
14319 | /* d/addiu $at, $at, <sym> R_MIPS_LO16 */ | |
14320 | insn = HAVE_64BIT_ADDRESSES ? 0x64210000 : 0x24210000; | |
14321 | ||
14322 | fixp = fix_new_exp (fragp, buf - (bfd_byte *)fragp->fr_literal, | |
3994f87e | 14323 | 4, &exp, FALSE, BFD_RELOC_LO16); |
4a6a3df4 AO |
14324 | fixp->fx_file = fragp->fr_file; |
14325 | fixp->fx_line = fragp->fr_line; | |
b34976b6 | 14326 | |
2132e3a3 | 14327 | md_number_to_chars ((char *) buf, insn, 4); |
4a6a3df4 AO |
14328 | buf += 4; |
14329 | ||
14330 | /* j(al)r $at. */ | |
14331 | if (RELAX_BRANCH_LINK (fragp->fr_subtype)) | |
14332 | insn = 0x0020f809; | |
14333 | else | |
14334 | insn = 0x00200008; | |
14335 | ||
2132e3a3 | 14336 | md_number_to_chars ((char *) buf, insn, 4); |
4a6a3df4 AO |
14337 | buf += 4; |
14338 | } | |
14339 | } | |
14340 | ||
14341 | assert (buf == (bfd_byte *)fragp->fr_literal | |
14342 | + fragp->fr_fix + fragp->fr_var); | |
14343 | ||
14344 | fragp->fr_fix += fragp->fr_var; | |
14345 | ||
14346 | return; | |
14347 | } | |
14348 | ||
252b5132 RH |
14349 | if (RELAX_MIPS16_P (fragp->fr_subtype)) |
14350 | { | |
14351 | int type; | |
3994f87e | 14352 | const struct mips16_immed_operand *op; |
b34976b6 | 14353 | bfd_boolean small, ext; |
252b5132 RH |
14354 | offsetT val; |
14355 | bfd_byte *buf; | |
14356 | unsigned long insn; | |
b34976b6 | 14357 | bfd_boolean use_extend; |
252b5132 RH |
14358 | unsigned short extend; |
14359 | ||
14360 | type = RELAX_MIPS16_TYPE (fragp->fr_subtype); | |
14361 | op = mips16_immed_operands; | |
14362 | while (op->type != type) | |
14363 | ++op; | |
14364 | ||
14365 | if (RELAX_MIPS16_EXTENDED (fragp->fr_subtype)) | |
14366 | { | |
b34976b6 AM |
14367 | small = FALSE; |
14368 | ext = TRUE; | |
252b5132 RH |
14369 | } |
14370 | else | |
14371 | { | |
b34976b6 AM |
14372 | small = TRUE; |
14373 | ext = FALSE; | |
252b5132 RH |
14374 | } |
14375 | ||
6386f3a7 | 14376 | resolve_symbol_value (fragp->fr_symbol); |
252b5132 RH |
14377 | val = S_GET_VALUE (fragp->fr_symbol); |
14378 | if (op->pcrel) | |
14379 | { | |
14380 | addressT addr; | |
14381 | ||
14382 | addr = fragp->fr_address + fragp->fr_fix; | |
14383 | ||
14384 | /* The rules for the base address of a PC relative reloc are | |
14385 | complicated; see mips16_extended_frag. */ | |
14386 | if (type == 'p' || type == 'q') | |
14387 | { | |
14388 | addr += 2; | |
14389 | if (ext) | |
14390 | addr += 2; | |
14391 | /* Ignore the low bit in the target, since it will be | |
14392 | set for a text label. */ | |
14393 | if ((val & 1) != 0) | |
14394 | --val; | |
14395 | } | |
14396 | else if (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype)) | |
14397 | addr -= 4; | |
14398 | else if (RELAX_MIPS16_DSLOT (fragp->fr_subtype)) | |
14399 | addr -= 2; | |
14400 | ||
14401 | addr &= ~ (addressT) ((1 << op->shift) - 1); | |
14402 | val -= addr; | |
14403 | ||
14404 | /* Make sure the section winds up with the alignment we have | |
14405 | assumed. */ | |
14406 | if (op->shift > 0) | |
14407 | record_alignment (asec, op->shift); | |
14408 | } | |
14409 | ||
14410 | if (ext | |
14411 | && (RELAX_MIPS16_JAL_DSLOT (fragp->fr_subtype) | |
14412 | || RELAX_MIPS16_DSLOT (fragp->fr_subtype))) | |
14413 | as_warn_where (fragp->fr_file, fragp->fr_line, | |
14414 | _("extended instruction in delay slot")); | |
14415 | ||
14416 | buf = (bfd_byte *) (fragp->fr_literal + fragp->fr_fix); | |
14417 | ||
14418 | if (target_big_endian) | |
14419 | insn = bfd_getb16 (buf); | |
14420 | else | |
14421 | insn = bfd_getl16 (buf); | |
14422 | ||
14423 | mips16_immed (fragp->fr_file, fragp->fr_line, type, val, | |
14424 | RELAX_MIPS16_USER_EXT (fragp->fr_subtype), | |
14425 | small, ext, &insn, &use_extend, &extend); | |
14426 | ||
14427 | if (use_extend) | |
14428 | { | |
2132e3a3 | 14429 | md_number_to_chars ((char *) buf, 0xf000 | extend, 2); |
252b5132 RH |
14430 | fragp->fr_fix += 2; |
14431 | buf += 2; | |
14432 | } | |
14433 | ||
2132e3a3 | 14434 | md_number_to_chars ((char *) buf, insn, 2); |
252b5132 RH |
14435 | fragp->fr_fix += 2; |
14436 | buf += 2; | |
14437 | } | |
14438 | else | |
14439 | { | |
4d7206a2 RS |
14440 | int first, second; |
14441 | fixS *fixp; | |
252b5132 | 14442 | |
4d7206a2 RS |
14443 | first = RELAX_FIRST (fragp->fr_subtype); |
14444 | second = RELAX_SECOND (fragp->fr_subtype); | |
14445 | fixp = (fixS *) fragp->fr_opcode; | |
252b5132 | 14446 | |
584892a6 RS |
14447 | /* Possibly emit a warning if we've chosen the longer option. */ |
14448 | if (((fragp->fr_subtype & RELAX_USE_SECOND) != 0) | |
14449 | == ((fragp->fr_subtype & RELAX_SECOND_LONGER) != 0)) | |
14450 | { | |
14451 | const char *msg = macro_warning (fragp->fr_subtype); | |
14452 | if (msg != 0) | |
14453 | as_warn_where (fragp->fr_file, fragp->fr_line, msg); | |
14454 | } | |
14455 | ||
4d7206a2 RS |
14456 | /* Go through all the fixups for the first sequence. Disable them |
14457 | (by marking them as done) if we're going to use the second | |
14458 | sequence instead. */ | |
14459 | while (fixp | |
14460 | && fixp->fx_frag == fragp | |
14461 | && fixp->fx_where < fragp->fr_fix - second) | |
14462 | { | |
14463 | if (fragp->fr_subtype & RELAX_USE_SECOND) | |
14464 | fixp->fx_done = 1; | |
14465 | fixp = fixp->fx_next; | |
14466 | } | |
252b5132 | 14467 | |
4d7206a2 RS |
14468 | /* Go through the fixups for the second sequence. Disable them if |
14469 | we're going to use the first sequence, otherwise adjust their | |
14470 | addresses to account for the relaxation. */ | |
14471 | while (fixp && fixp->fx_frag == fragp) | |
14472 | { | |
14473 | if (fragp->fr_subtype & RELAX_USE_SECOND) | |
14474 | fixp->fx_where -= first; | |
14475 | else | |
14476 | fixp->fx_done = 1; | |
14477 | fixp = fixp->fx_next; | |
14478 | } | |
14479 | ||
14480 | /* Now modify the frag contents. */ | |
14481 | if (fragp->fr_subtype & RELAX_USE_SECOND) | |
14482 | { | |
14483 | char *start; | |
14484 | ||
14485 | start = fragp->fr_literal + fragp->fr_fix - first - second; | |
14486 | memmove (start, start + first, second); | |
14487 | fragp->fr_fix -= first; | |
14488 | } | |
14489 | else | |
14490 | fragp->fr_fix -= second; | |
252b5132 RH |
14491 | } |
14492 | } | |
14493 | ||
14494 | #ifdef OBJ_ELF | |
14495 | ||
14496 | /* This function is called after the relocs have been generated. | |
14497 | We've been storing mips16 text labels as odd. Here we convert them | |
14498 | back to even for the convenience of the debugger. */ | |
14499 | ||
14500 | void | |
17a2f251 | 14501 | mips_frob_file_after_relocs (void) |
252b5132 RH |
14502 | { |
14503 | asymbol **syms; | |
14504 | unsigned int count, i; | |
14505 | ||
f43abd2b | 14506 | if (!IS_ELF) |
252b5132 RH |
14507 | return; |
14508 | ||
14509 | syms = bfd_get_outsymbols (stdoutput); | |
14510 | count = bfd_get_symcount (stdoutput); | |
14511 | for (i = 0; i < count; i++, syms++) | |
14512 | { | |
30c09090 | 14513 | if (ELF_ST_IS_MIPS16 (elf_symbol (*syms)->internal_elf_sym.st_other) |
252b5132 RH |
14514 | && ((*syms)->value & 1) != 0) |
14515 | { | |
14516 | (*syms)->value &= ~1; | |
14517 | /* If the symbol has an odd size, it was probably computed | |
14518 | incorrectly, so adjust that as well. */ | |
14519 | if ((elf_symbol (*syms)->internal_elf_sym.st_size & 1) != 0) | |
14520 | ++elf_symbol (*syms)->internal_elf_sym.st_size; | |
14521 | } | |
14522 | } | |
14523 | } | |
14524 | ||
14525 | #endif | |
14526 | ||
14527 | /* This function is called whenever a label is defined. It is used | |
14528 | when handling branch delays; if a branch has a label, we assume we | |
14529 | can not move it. */ | |
14530 | ||
14531 | void | |
17a2f251 | 14532 | mips_define_label (symbolS *sym) |
252b5132 | 14533 | { |
a8dbcb85 | 14534 | segment_info_type *si = seg_info (now_seg); |
252b5132 RH |
14535 | struct insn_label_list *l; |
14536 | ||
14537 | if (free_insn_labels == NULL) | |
14538 | l = (struct insn_label_list *) xmalloc (sizeof *l); | |
14539 | else | |
14540 | { | |
14541 | l = free_insn_labels; | |
14542 | free_insn_labels = l->next; | |
14543 | } | |
14544 | ||
14545 | l->label = sym; | |
a8dbcb85 TS |
14546 | l->next = si->label_list; |
14547 | si->label_list = l; | |
07a53e5c RH |
14548 | |
14549 | #ifdef OBJ_ELF | |
14550 | dwarf2_emit_label (sym); | |
14551 | #endif | |
252b5132 RH |
14552 | } |
14553 | \f | |
14554 | #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) | |
14555 | ||
14556 | /* Some special processing for a MIPS ELF file. */ | |
14557 | ||
14558 | void | |
17a2f251 | 14559 | mips_elf_final_processing (void) |
252b5132 RH |
14560 | { |
14561 | /* Write out the register information. */ | |
316f5878 | 14562 | if (mips_abi != N64_ABI) |
252b5132 RH |
14563 | { |
14564 | Elf32_RegInfo s; | |
14565 | ||
14566 | s.ri_gprmask = mips_gprmask; | |
14567 | s.ri_cprmask[0] = mips_cprmask[0]; | |
14568 | s.ri_cprmask[1] = mips_cprmask[1]; | |
14569 | s.ri_cprmask[2] = mips_cprmask[2]; | |
14570 | s.ri_cprmask[3] = mips_cprmask[3]; | |
14571 | /* The gp_value field is set by the MIPS ELF backend. */ | |
14572 | ||
14573 | bfd_mips_elf32_swap_reginfo_out (stdoutput, &s, | |
14574 | ((Elf32_External_RegInfo *) | |
14575 | mips_regmask_frag)); | |
14576 | } | |
14577 | else | |
14578 | { | |
14579 | Elf64_Internal_RegInfo s; | |
14580 | ||
14581 | s.ri_gprmask = mips_gprmask; | |
14582 | s.ri_pad = 0; | |
14583 | s.ri_cprmask[0] = mips_cprmask[0]; | |
14584 | s.ri_cprmask[1] = mips_cprmask[1]; | |
14585 | s.ri_cprmask[2] = mips_cprmask[2]; | |
14586 | s.ri_cprmask[3] = mips_cprmask[3]; | |
14587 | /* The gp_value field is set by the MIPS ELF backend. */ | |
14588 | ||
14589 | bfd_mips_elf64_swap_reginfo_out (stdoutput, &s, | |
14590 | ((Elf64_External_RegInfo *) | |
14591 | mips_regmask_frag)); | |
14592 | } | |
14593 | ||
14594 | /* Set the MIPS ELF flag bits. FIXME: There should probably be some | |
14595 | sort of BFD interface for this. */ | |
14596 | if (mips_any_noreorder) | |
14597 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_NOREORDER; | |
14598 | if (mips_pic != NO_PIC) | |
143d77c5 | 14599 | { |
252b5132 | 14600 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_PIC; |
143d77c5 EC |
14601 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC; |
14602 | } | |
14603 | if (mips_abicalls) | |
14604 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_CPIC; | |
252b5132 | 14605 | |
98d3f06f | 14606 | /* Set MIPS ELF flags for ASEs. */ |
74cd071d CF |
14607 | /* We may need to define a new flag for DSP ASE, and set this flag when |
14608 | file_ase_dsp is true. */ | |
8b082fb1 | 14609 | /* Same for DSP R2. */ |
ef2e4d86 CF |
14610 | /* We may need to define a new flag for MT ASE, and set this flag when |
14611 | file_ase_mt is true. */ | |
a4672219 TS |
14612 | if (file_ase_mips16) |
14613 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_M16; | |
1f25f5d3 CD |
14614 | #if 0 /* XXX FIXME */ |
14615 | if (file_ase_mips3d) | |
14616 | elf_elfheader (stdoutput)->e_flags |= ???; | |
14617 | #endif | |
deec1734 CD |
14618 | if (file_ase_mdmx) |
14619 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ARCH_ASE_MDMX; | |
1f25f5d3 | 14620 | |
bdaaa2e1 | 14621 | /* Set the MIPS ELF ABI flags. */ |
316f5878 | 14622 | if (mips_abi == O32_ABI && USE_E_MIPS_ABI_O32) |
252b5132 | 14623 | elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O32; |
316f5878 | 14624 | else if (mips_abi == O64_ABI) |
252b5132 | 14625 | elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_O64; |
316f5878 | 14626 | else if (mips_abi == EABI_ABI) |
252b5132 | 14627 | { |
316f5878 | 14628 | if (!file_mips_gp32) |
252b5132 RH |
14629 | elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI64; |
14630 | else | |
14631 | elf_elfheader (stdoutput)->e_flags |= E_MIPS_ABI_EABI32; | |
14632 | } | |
316f5878 | 14633 | else if (mips_abi == N32_ABI) |
be00bddd TS |
14634 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_ABI2; |
14635 | ||
c9914766 | 14636 | /* Nothing to do for N64_ABI. */ |
252b5132 RH |
14637 | |
14638 | if (mips_32bitmode) | |
14639 | elf_elfheader (stdoutput)->e_flags |= EF_MIPS_32BITMODE; | |
ad3fea08 TS |
14640 | |
14641 | #if 0 /* XXX FIXME */ | |
14642 | /* 32 bit code with 64 bit FP registers. */ | |
14643 | if (!file_mips_fp32 && ABI_NEEDS_32BIT_REGS (mips_abi)) | |
14644 | elf_elfheader (stdoutput)->e_flags |= ???; | |
14645 | #endif | |
252b5132 RH |
14646 | } |
14647 | ||
14648 | #endif /* OBJ_ELF || OBJ_MAYBE_ELF */ | |
14649 | \f | |
beae10d5 | 14650 | typedef struct proc { |
9b2f1d35 EC |
14651 | symbolS *func_sym; |
14652 | symbolS *func_end_sym; | |
beae10d5 KH |
14653 | unsigned long reg_mask; |
14654 | unsigned long reg_offset; | |
14655 | unsigned long fpreg_mask; | |
14656 | unsigned long fpreg_offset; | |
14657 | unsigned long frame_offset; | |
14658 | unsigned long frame_reg; | |
14659 | unsigned long pc_reg; | |
14660 | } procS; | |
252b5132 RH |
14661 | |
14662 | static procS cur_proc; | |
14663 | static procS *cur_proc_ptr; | |
14664 | static int numprocs; | |
14665 | ||
742a56fe RS |
14666 | /* Implement NOP_OPCODE. We encode a MIPS16 nop as "1" and a normal |
14667 | nop as "0". */ | |
14668 | ||
14669 | char | |
14670 | mips_nop_opcode (void) | |
14671 | { | |
14672 | return seg_info (now_seg)->tc_segment_info_data.mips16; | |
14673 | } | |
14674 | ||
14675 | /* Fill in an rs_align_code fragment. This only needs to do something | |
14676 | for MIPS16 code, where 0 is not a nop. */ | |
a19d8eb0 | 14677 | |
0a9ef439 | 14678 | void |
17a2f251 | 14679 | mips_handle_align (fragS *fragp) |
a19d8eb0 | 14680 | { |
742a56fe RS |
14681 | char *p; |
14682 | ||
0a9ef439 RH |
14683 | if (fragp->fr_type != rs_align_code) |
14684 | return; | |
14685 | ||
742a56fe RS |
14686 | p = fragp->fr_literal + fragp->fr_fix; |
14687 | if (*p) | |
a19d8eb0 | 14688 | { |
0a9ef439 | 14689 | int bytes; |
a19d8eb0 | 14690 | |
0a9ef439 | 14691 | bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix; |
0a9ef439 RH |
14692 | if (bytes & 1) |
14693 | { | |
14694 | *p++ = 0; | |
f9419b05 | 14695 | fragp->fr_fix++; |
0a9ef439 | 14696 | } |
742a56fe | 14697 | md_number_to_chars (p, mips16_nop_insn.insn_opcode, 2); |
0a9ef439 | 14698 | fragp->fr_var = 2; |
a19d8eb0 | 14699 | } |
a19d8eb0 CP |
14700 | } |
14701 | ||
252b5132 | 14702 | static void |
17a2f251 | 14703 | md_obj_begin (void) |
252b5132 RH |
14704 | { |
14705 | } | |
14706 | ||
14707 | static void | |
17a2f251 | 14708 | md_obj_end (void) |
252b5132 | 14709 | { |
54f4ddb3 | 14710 | /* Check for premature end, nesting errors, etc. */ |
252b5132 | 14711 | if (cur_proc_ptr) |
9a41af64 | 14712 | as_warn (_("missing .end at end of assembly")); |
252b5132 RH |
14713 | } |
14714 | ||
14715 | static long | |
17a2f251 | 14716 | get_number (void) |
252b5132 RH |
14717 | { |
14718 | int negative = 0; | |
14719 | long val = 0; | |
14720 | ||
14721 | if (*input_line_pointer == '-') | |
14722 | { | |
14723 | ++input_line_pointer; | |
14724 | negative = 1; | |
14725 | } | |
3882b010 | 14726 | if (!ISDIGIT (*input_line_pointer)) |
956cd1d6 | 14727 | as_bad (_("expected simple number")); |
252b5132 RH |
14728 | if (input_line_pointer[0] == '0') |
14729 | { | |
14730 | if (input_line_pointer[1] == 'x') | |
14731 | { | |
14732 | input_line_pointer += 2; | |
3882b010 | 14733 | while (ISXDIGIT (*input_line_pointer)) |
252b5132 RH |
14734 | { |
14735 | val <<= 4; | |
14736 | val |= hex_value (*input_line_pointer++); | |
14737 | } | |
14738 | return negative ? -val : val; | |
14739 | } | |
14740 | else | |
14741 | { | |
14742 | ++input_line_pointer; | |
3882b010 | 14743 | while (ISDIGIT (*input_line_pointer)) |
252b5132 RH |
14744 | { |
14745 | val <<= 3; | |
14746 | val |= *input_line_pointer++ - '0'; | |
14747 | } | |
14748 | return negative ? -val : val; | |
14749 | } | |
14750 | } | |
3882b010 | 14751 | if (!ISDIGIT (*input_line_pointer)) |
252b5132 RH |
14752 | { |
14753 | printf (_(" *input_line_pointer == '%c' 0x%02x\n"), | |
14754 | *input_line_pointer, *input_line_pointer); | |
956cd1d6 | 14755 | as_warn (_("invalid number")); |
252b5132 RH |
14756 | return -1; |
14757 | } | |
3882b010 | 14758 | while (ISDIGIT (*input_line_pointer)) |
252b5132 RH |
14759 | { |
14760 | val *= 10; | |
14761 | val += *input_line_pointer++ - '0'; | |
14762 | } | |
14763 | return negative ? -val : val; | |
14764 | } | |
14765 | ||
14766 | /* The .file directive; just like the usual .file directive, but there | |
c5dd6aab DJ |
14767 | is an initial number which is the ECOFF file index. In the non-ECOFF |
14768 | case .file implies DWARF-2. */ | |
14769 | ||
14770 | static void | |
17a2f251 | 14771 | s_mips_file (int x ATTRIBUTE_UNUSED) |
c5dd6aab | 14772 | { |
ecb4347a DJ |
14773 | static int first_file_directive = 0; |
14774 | ||
c5dd6aab DJ |
14775 | if (ECOFF_DEBUGGING) |
14776 | { | |
14777 | get_number (); | |
14778 | s_app_file (0); | |
14779 | } | |
14780 | else | |
ecb4347a DJ |
14781 | { |
14782 | char *filename; | |
14783 | ||
14784 | filename = dwarf2_directive_file (0); | |
14785 | ||
14786 | /* Versions of GCC up to 3.1 start files with a ".file" | |
14787 | directive even for stabs output. Make sure that this | |
14788 | ".file" is handled. Note that you need a version of GCC | |
14789 | after 3.1 in order to support DWARF-2 on MIPS. */ | |
14790 | if (filename != NULL && ! first_file_directive) | |
14791 | { | |
14792 | (void) new_logical_line (filename, -1); | |
c04f5787 | 14793 | s_app_file_string (filename, 0); |
ecb4347a DJ |
14794 | } |
14795 | first_file_directive = 1; | |
14796 | } | |
c5dd6aab DJ |
14797 | } |
14798 | ||
14799 | /* The .loc directive, implying DWARF-2. */ | |
252b5132 RH |
14800 | |
14801 | static void | |
17a2f251 | 14802 | s_mips_loc (int x ATTRIBUTE_UNUSED) |
252b5132 | 14803 | { |
c5dd6aab DJ |
14804 | if (!ECOFF_DEBUGGING) |
14805 | dwarf2_directive_loc (0); | |
252b5132 RH |
14806 | } |
14807 | ||
252b5132 RH |
14808 | /* The .end directive. */ |
14809 | ||
14810 | static void | |
17a2f251 | 14811 | s_mips_end (int x ATTRIBUTE_UNUSED) |
252b5132 RH |
14812 | { |
14813 | symbolS *p; | |
252b5132 | 14814 | |
7a621144 DJ |
14815 | /* Following functions need their own .frame and .cprestore directives. */ |
14816 | mips_frame_reg_valid = 0; | |
14817 | mips_cprestore_valid = 0; | |
14818 | ||
252b5132 RH |
14819 | if (!is_end_of_line[(unsigned char) *input_line_pointer]) |
14820 | { | |
14821 | p = get_symbol (); | |
14822 | demand_empty_rest_of_line (); | |
14823 | } | |
14824 | else | |
14825 | p = NULL; | |
14826 | ||
14949570 | 14827 | if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0) |
252b5132 RH |
14828 | as_warn (_(".end not in text section")); |
14829 | ||
14830 | if (!cur_proc_ptr) | |
14831 | { | |
14832 | as_warn (_(".end directive without a preceding .ent directive.")); | |
14833 | demand_empty_rest_of_line (); | |
14834 | return; | |
14835 | } | |
14836 | ||
14837 | if (p != NULL) | |
14838 | { | |
14839 | assert (S_GET_NAME (p)); | |
9b2f1d35 | 14840 | if (strcmp (S_GET_NAME (p), S_GET_NAME (cur_proc_ptr->func_sym))) |
252b5132 | 14841 | as_warn (_(".end symbol does not match .ent symbol.")); |
ecb4347a DJ |
14842 | |
14843 | if (debug_type == DEBUG_STABS) | |
14844 | stabs_generate_asm_endfunc (S_GET_NAME (p), | |
14845 | S_GET_NAME (p)); | |
252b5132 RH |
14846 | } |
14847 | else | |
14848 | as_warn (_(".end directive missing or unknown symbol")); | |
14849 | ||
2132e3a3 | 14850 | #ifdef OBJ_ELF |
9b2f1d35 EC |
14851 | /* Create an expression to calculate the size of the function. */ |
14852 | if (p && cur_proc_ptr) | |
14853 | { | |
14854 | OBJ_SYMFIELD_TYPE *obj = symbol_get_obj (p); | |
14855 | expressionS *exp = xmalloc (sizeof (expressionS)); | |
14856 | ||
14857 | obj->size = exp; | |
14858 | exp->X_op = O_subtract; | |
14859 | exp->X_add_symbol = symbol_temp_new_now (); | |
14860 | exp->X_op_symbol = p; | |
14861 | exp->X_add_number = 0; | |
14862 | ||
14863 | cur_proc_ptr->func_end_sym = exp->X_add_symbol; | |
14864 | } | |
14865 | ||
ecb4347a | 14866 | /* Generate a .pdr section. */ |
f43abd2b | 14867 | if (IS_ELF && !ECOFF_DEBUGGING && mips_flag_pdr) |
ecb4347a DJ |
14868 | { |
14869 | segT saved_seg = now_seg; | |
14870 | subsegT saved_subseg = now_subseg; | |
14871 | valueT dot; | |
14872 | expressionS exp; | |
14873 | char *fragp; | |
252b5132 | 14874 | |
ecb4347a | 14875 | dot = frag_now_fix (); |
252b5132 RH |
14876 | |
14877 | #ifdef md_flush_pending_output | |
ecb4347a | 14878 | md_flush_pending_output (); |
252b5132 RH |
14879 | #endif |
14880 | ||
ecb4347a DJ |
14881 | assert (pdr_seg); |
14882 | subseg_set (pdr_seg, 0); | |
252b5132 | 14883 | |
ecb4347a DJ |
14884 | /* Write the symbol. */ |
14885 | exp.X_op = O_symbol; | |
14886 | exp.X_add_symbol = p; | |
14887 | exp.X_add_number = 0; | |
14888 | emit_expr (&exp, 4); | |
252b5132 | 14889 | |
ecb4347a | 14890 | fragp = frag_more (7 * 4); |
252b5132 | 14891 | |
17a2f251 TS |
14892 | md_number_to_chars (fragp, cur_proc_ptr->reg_mask, 4); |
14893 | md_number_to_chars (fragp + 4, cur_proc_ptr->reg_offset, 4); | |
14894 | md_number_to_chars (fragp + 8, cur_proc_ptr->fpreg_mask, 4); | |
14895 | md_number_to_chars (fragp + 12, cur_proc_ptr->fpreg_offset, 4); | |
14896 | md_number_to_chars (fragp + 16, cur_proc_ptr->frame_offset, 4); | |
14897 | md_number_to_chars (fragp + 20, cur_proc_ptr->frame_reg, 4); | |
14898 | md_number_to_chars (fragp + 24, cur_proc_ptr->pc_reg, 4); | |
252b5132 | 14899 | |
ecb4347a DJ |
14900 | subseg_set (saved_seg, saved_subseg); |
14901 | } | |
14902 | #endif /* OBJ_ELF */ | |
252b5132 RH |
14903 | |
14904 | cur_proc_ptr = NULL; | |
14905 | } | |
14906 | ||
14907 | /* The .aent and .ent directives. */ | |
14908 | ||
14909 | static void | |
17a2f251 | 14910 | s_mips_ent (int aent) |
252b5132 | 14911 | { |
252b5132 | 14912 | symbolS *symbolP; |
252b5132 RH |
14913 | |
14914 | symbolP = get_symbol (); | |
14915 | if (*input_line_pointer == ',') | |
f9419b05 | 14916 | ++input_line_pointer; |
252b5132 | 14917 | SKIP_WHITESPACE (); |
3882b010 | 14918 | if (ISDIGIT (*input_line_pointer) |
d9a62219 | 14919 | || *input_line_pointer == '-') |
874e8986 | 14920 | get_number (); |
252b5132 | 14921 | |
14949570 | 14922 | if ((bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) == 0) |
252b5132 RH |
14923 | as_warn (_(".ent or .aent not in text section.")); |
14924 | ||
14925 | if (!aent && cur_proc_ptr) | |
9a41af64 | 14926 | as_warn (_("missing .end")); |
252b5132 RH |
14927 | |
14928 | if (!aent) | |
14929 | { | |
7a621144 DJ |
14930 | /* This function needs its own .frame and .cprestore directives. */ |
14931 | mips_frame_reg_valid = 0; | |
14932 | mips_cprestore_valid = 0; | |
14933 | ||
252b5132 RH |
14934 | cur_proc_ptr = &cur_proc; |
14935 | memset (cur_proc_ptr, '\0', sizeof (procS)); | |
14936 | ||
9b2f1d35 | 14937 | cur_proc_ptr->func_sym = symbolP; |
252b5132 | 14938 | |
49309057 | 14939 | symbol_get_bfdsym (symbolP)->flags |= BSF_FUNCTION; |
252b5132 | 14940 | |
f9419b05 | 14941 | ++numprocs; |
ecb4347a DJ |
14942 | |
14943 | if (debug_type == DEBUG_STABS) | |
14944 | stabs_generate_asm_func (S_GET_NAME (symbolP), | |
14945 | S_GET_NAME (symbolP)); | |
252b5132 RH |
14946 | } |
14947 | ||
14948 | demand_empty_rest_of_line (); | |
14949 | } | |
14950 | ||
14951 | /* The .frame directive. If the mdebug section is present (IRIX 5 native) | |
bdaaa2e1 | 14952 | then ecoff.c (ecoff_directive_frame) is used. For embedded targets, |
252b5132 | 14953 | s_mips_frame is used so that we can set the PDR information correctly. |
bdaaa2e1 | 14954 | We can't use the ecoff routines because they make reference to the ecoff |
252b5132 RH |
14955 | symbol table (in the mdebug section). */ |
14956 | ||
14957 | static void | |
17a2f251 | 14958 | s_mips_frame (int ignore ATTRIBUTE_UNUSED) |
252b5132 | 14959 | { |
ecb4347a | 14960 | #ifdef OBJ_ELF |
f43abd2b | 14961 | if (IS_ELF && !ECOFF_DEBUGGING) |
ecb4347a DJ |
14962 | { |
14963 | long val; | |
252b5132 | 14964 | |
ecb4347a DJ |
14965 | if (cur_proc_ptr == (procS *) NULL) |
14966 | { | |
14967 | as_warn (_(".frame outside of .ent")); | |
14968 | demand_empty_rest_of_line (); | |
14969 | return; | |
14970 | } | |
252b5132 | 14971 | |
ecb4347a DJ |
14972 | cur_proc_ptr->frame_reg = tc_get_register (1); |
14973 | ||
14974 | SKIP_WHITESPACE (); | |
14975 | if (*input_line_pointer++ != ',' | |
14976 | || get_absolute_expression_and_terminator (&val) != ',') | |
14977 | { | |
14978 | as_warn (_("Bad .frame directive")); | |
14979 | --input_line_pointer; | |
14980 | demand_empty_rest_of_line (); | |
14981 | return; | |
14982 | } | |
252b5132 | 14983 | |
ecb4347a DJ |
14984 | cur_proc_ptr->frame_offset = val; |
14985 | cur_proc_ptr->pc_reg = tc_get_register (0); | |
252b5132 | 14986 | |
252b5132 | 14987 | demand_empty_rest_of_line (); |
252b5132 | 14988 | } |
ecb4347a DJ |
14989 | else |
14990 | #endif /* OBJ_ELF */ | |
14991 | s_ignore (ignore); | |
252b5132 RH |
14992 | } |
14993 | ||
bdaaa2e1 KH |
14994 | /* The .fmask and .mask directives. If the mdebug section is present |
14995 | (IRIX 5 native) then ecoff.c (ecoff_directive_mask) is used. For | |
252b5132 | 14996 | embedded targets, s_mips_mask is used so that we can set the PDR |
bdaaa2e1 | 14997 | information correctly. We can't use the ecoff routines because they |
252b5132 RH |
14998 | make reference to the ecoff symbol table (in the mdebug section). */ |
14999 | ||
15000 | static void | |
17a2f251 | 15001 | s_mips_mask (int reg_type) |
252b5132 | 15002 | { |
ecb4347a | 15003 | #ifdef OBJ_ELF |
f43abd2b | 15004 | if (IS_ELF && !ECOFF_DEBUGGING) |
252b5132 | 15005 | { |
ecb4347a | 15006 | long mask, off; |
252b5132 | 15007 | |
ecb4347a DJ |
15008 | if (cur_proc_ptr == (procS *) NULL) |
15009 | { | |
15010 | as_warn (_(".mask/.fmask outside of .ent")); | |
15011 | demand_empty_rest_of_line (); | |
15012 | return; | |
15013 | } | |
252b5132 | 15014 | |
ecb4347a DJ |
15015 | if (get_absolute_expression_and_terminator (&mask) != ',') |
15016 | { | |
15017 | as_warn (_("Bad .mask/.fmask directive")); | |
15018 | --input_line_pointer; | |
15019 | demand_empty_rest_of_line (); | |
15020 | return; | |
15021 | } | |
252b5132 | 15022 | |
ecb4347a DJ |
15023 | off = get_absolute_expression (); |
15024 | ||
15025 | if (reg_type == 'F') | |
15026 | { | |
15027 | cur_proc_ptr->fpreg_mask = mask; | |
15028 | cur_proc_ptr->fpreg_offset = off; | |
15029 | } | |
15030 | else | |
15031 | { | |
15032 | cur_proc_ptr->reg_mask = mask; | |
15033 | cur_proc_ptr->reg_offset = off; | |
15034 | } | |
15035 | ||
15036 | demand_empty_rest_of_line (); | |
252b5132 RH |
15037 | } |
15038 | else | |
ecb4347a DJ |
15039 | #endif /* OBJ_ELF */ |
15040 | s_ignore (reg_type); | |
252b5132 RH |
15041 | } |
15042 | ||
316f5878 RS |
15043 | /* A table describing all the processors gas knows about. Names are |
15044 | matched in the order listed. | |
e7af610e | 15045 | |
316f5878 RS |
15046 | To ease comparison, please keep this table in the same order as |
15047 | gcc's mips_cpu_info_table[]. */ | |
e972090a NC |
15048 | static const struct mips_cpu_info mips_cpu_info_table[] = |
15049 | { | |
316f5878 | 15050 | /* Entries for generic ISAs */ |
ad3fea08 TS |
15051 | { "mips1", MIPS_CPU_IS_ISA, ISA_MIPS1, CPU_R3000 }, |
15052 | { "mips2", MIPS_CPU_IS_ISA, ISA_MIPS2, CPU_R6000 }, | |
15053 | { "mips3", MIPS_CPU_IS_ISA, ISA_MIPS3, CPU_R4000 }, | |
15054 | { "mips4", MIPS_CPU_IS_ISA, ISA_MIPS4, CPU_R8000 }, | |
15055 | { "mips5", MIPS_CPU_IS_ISA, ISA_MIPS5, CPU_MIPS5 }, | |
15056 | { "mips32", MIPS_CPU_IS_ISA, ISA_MIPS32, CPU_MIPS32 }, | |
15057 | { "mips32r2", MIPS_CPU_IS_ISA, ISA_MIPS32R2, CPU_MIPS32R2 }, | |
15058 | { "mips64", MIPS_CPU_IS_ISA, ISA_MIPS64, CPU_MIPS64 }, | |
15059 | { "mips64r2", MIPS_CPU_IS_ISA, ISA_MIPS64R2, CPU_MIPS64R2 }, | |
316f5878 RS |
15060 | |
15061 | /* MIPS I */ | |
ad3fea08 TS |
15062 | { "r3000", 0, ISA_MIPS1, CPU_R3000 }, |
15063 | { "r2000", 0, ISA_MIPS1, CPU_R3000 }, | |
15064 | { "r3900", 0, ISA_MIPS1, CPU_R3900 }, | |
316f5878 RS |
15065 | |
15066 | /* MIPS II */ | |
ad3fea08 | 15067 | { "r6000", 0, ISA_MIPS2, CPU_R6000 }, |
316f5878 RS |
15068 | |
15069 | /* MIPS III */ | |
ad3fea08 TS |
15070 | { "r4000", 0, ISA_MIPS3, CPU_R4000 }, |
15071 | { "r4010", 0, ISA_MIPS2, CPU_R4010 }, | |
15072 | { "vr4100", 0, ISA_MIPS3, CPU_VR4100 }, | |
15073 | { "vr4111", 0, ISA_MIPS3, CPU_R4111 }, | |
15074 | { "vr4120", 0, ISA_MIPS3, CPU_VR4120 }, | |
15075 | { "vr4130", 0, ISA_MIPS3, CPU_VR4120 }, | |
15076 | { "vr4181", 0, ISA_MIPS3, CPU_R4111 }, | |
15077 | { "vr4300", 0, ISA_MIPS3, CPU_R4300 }, | |
15078 | { "r4400", 0, ISA_MIPS3, CPU_R4400 }, | |
15079 | { "r4600", 0, ISA_MIPS3, CPU_R4600 }, | |
15080 | { "orion", 0, ISA_MIPS3, CPU_R4600 }, | |
15081 | { "r4650", 0, ISA_MIPS3, CPU_R4650 }, | |
b15591bb AN |
15082 | /* ST Microelectronics Loongson 2E and 2F cores */ |
15083 | { "loongson2e", 0, ISA_MIPS3, CPU_LOONGSON_2E }, | |
15084 | { "loongson2f", 0, ISA_MIPS3, CPU_LOONGSON_2F }, | |
316f5878 RS |
15085 | |
15086 | /* MIPS IV */ | |
ad3fea08 TS |
15087 | { "r8000", 0, ISA_MIPS4, CPU_R8000 }, |
15088 | { "r10000", 0, ISA_MIPS4, CPU_R10000 }, | |
15089 | { "r12000", 0, ISA_MIPS4, CPU_R12000 }, | |
15090 | { "vr5000", 0, ISA_MIPS4, CPU_R5000 }, | |
15091 | { "vr5400", 0, ISA_MIPS4, CPU_VR5400 }, | |
15092 | { "vr5500", 0, ISA_MIPS4, CPU_VR5500 }, | |
15093 | { "rm5200", 0, ISA_MIPS4, CPU_R5000 }, | |
15094 | { "rm5230", 0, ISA_MIPS4, CPU_R5000 }, | |
15095 | { "rm5231", 0, ISA_MIPS4, CPU_R5000 }, | |
15096 | { "rm5261", 0, ISA_MIPS4, CPU_R5000 }, | |
15097 | { "rm5721", 0, ISA_MIPS4, CPU_R5000 }, | |
15098 | { "rm7000", 0, ISA_MIPS4, CPU_RM7000 }, | |
15099 | { "rm9000", 0, ISA_MIPS4, CPU_RM9000 }, | |
316f5878 RS |
15100 | |
15101 | /* MIPS 32 */ | |
ad3fea08 TS |
15102 | { "4kc", 0, ISA_MIPS32, CPU_MIPS32 }, |
15103 | { "4km", 0, ISA_MIPS32, CPU_MIPS32 }, | |
15104 | { "4kp", 0, ISA_MIPS32, CPU_MIPS32 }, | |
15105 | { "4ksc", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32, CPU_MIPS32 }, | |
15106 | ||
15107 | /* MIPS 32 Release 2 */ | |
15108 | { "4kec", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, | |
15109 | { "4kem", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, | |
15110 | { "4kep", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, | |
15111 | { "4ksd", MIPS_CPU_ASE_SMARTMIPS, ISA_MIPS32R2, CPU_MIPS32R2 }, | |
15112 | { "m4k", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, | |
15113 | { "m4kp", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, | |
ad3fea08 | 15114 | { "24kc", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, |
0fdf1951 | 15115 | { "24kf2_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, |
ad3fea08 | 15116 | { "24kf", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, |
0fdf1951 RS |
15117 | { "24kf1_1", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, |
15118 | /* Deprecated forms of the above. */ | |
15119 | { "24kfx", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, | |
ad3fea08 | 15120 | { "24kx", 0, ISA_MIPS32R2, CPU_MIPS32R2 }, |
01fd108f | 15121 | /* 24KE is a 24K with DSP ASE, other ASEs are optional. */ |
ad3fea08 | 15122 | { "24kec", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 }, |
0fdf1951 | 15123 | { "24kef2_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 }, |
ad3fea08 | 15124 | { "24kef", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 }, |
0fdf1951 RS |
15125 | { "24kef1_1", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 }, |
15126 | /* Deprecated forms of the above. */ | |
15127 | { "24kefx", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 }, | |
65263ce3 | 15128 | { "24kex", MIPS_CPU_ASE_DSP, ISA_MIPS32R2, CPU_MIPS32R2 }, |
01fd108f | 15129 | /* 34K is a 24K with DSP and MT ASE, other ASEs are optional. */ |
a360e743 TS |
15130 | { "34kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT, |
15131 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
0fdf1951 RS |
15132 | { "34kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT, |
15133 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
a360e743 TS |
15134 | { "34kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT, |
15135 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
0fdf1951 RS |
15136 | { "34kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT, |
15137 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
15138 | /* Deprecated forms of the above. */ | |
15139 | { "34kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT, | |
15140 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
a360e743 TS |
15141 | { "34kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_MT, |
15142 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
01fd108f TS |
15143 | /* 74K with DSP and DSPR2 ASE, other ASEs are optional. */ |
15144 | { "74kc", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2, | |
15145 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
0fdf1951 RS |
15146 | { "74kf2_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2, |
15147 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
01fd108f TS |
15148 | { "74kf", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2, |
15149 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
0fdf1951 RS |
15150 | { "74kf1_1", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2, |
15151 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
15152 | { "74kf3_2", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2, | |
15153 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
15154 | /* Deprecated forms of the above. */ | |
15155 | { "74kfx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2, | |
15156 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
01fd108f TS |
15157 | { "74kx", MIPS_CPU_ASE_DSP | MIPS_CPU_ASE_DSPR2, |
15158 | ISA_MIPS32R2, CPU_MIPS32R2 }, | |
32b26a03 | 15159 | |
316f5878 | 15160 | /* MIPS 64 */ |
ad3fea08 TS |
15161 | { "5kc", 0, ISA_MIPS64, CPU_MIPS64 }, |
15162 | { "5kf", 0, ISA_MIPS64, CPU_MIPS64 }, | |
15163 | { "20kc", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 }, | |
7764b395 | 15164 | { "25kf", MIPS_CPU_ASE_MIPS3D, ISA_MIPS64, CPU_MIPS64 }, |
ad3fea08 TS |
15165 | |
15166 | /* MIPS 64 Release 2 */ | |
e7af610e | 15167 | |
c7a23324 | 15168 | /* Broadcom SB-1 CPU core */ |
65263ce3 TS |
15169 | { "sb1", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX, |
15170 | ISA_MIPS64, CPU_SB1 }, | |
1e85aad8 JW |
15171 | /* Broadcom SB-1A CPU core */ |
15172 | { "sb1a", MIPS_CPU_ASE_MIPS3D | MIPS_CPU_ASE_MDMX, | |
15173 | ISA_MIPS64, CPU_SB1 }, | |
e7af610e | 15174 | |
967344c6 AN |
15175 | /* Cavium Networks Octeon CPU core */ |
15176 | { "octeon", 0, ISA_MIPS64R2, CPU_OCTEON }, | |
15177 | ||
316f5878 RS |
15178 | /* End marker */ |
15179 | { NULL, 0, 0, 0 } | |
15180 | }; | |
e7af610e | 15181 | |
84ea6cf2 | 15182 | |
316f5878 RS |
15183 | /* Return true if GIVEN is the same as CANONICAL, or if it is CANONICAL |
15184 | with a final "000" replaced by "k". Ignore case. | |
e7af610e | 15185 | |
316f5878 | 15186 | Note: this function is shared between GCC and GAS. */ |
c6c98b38 | 15187 | |
b34976b6 | 15188 | static bfd_boolean |
17a2f251 | 15189 | mips_strict_matching_cpu_name_p (const char *canonical, const char *given) |
316f5878 RS |
15190 | { |
15191 | while (*given != 0 && TOLOWER (*given) == TOLOWER (*canonical)) | |
15192 | given++, canonical++; | |
15193 | ||
15194 | return ((*given == 0 && *canonical == 0) | |
15195 | || (strcmp (canonical, "000") == 0 && strcasecmp (given, "k") == 0)); | |
15196 | } | |
15197 | ||
15198 | ||
15199 | /* Return true if GIVEN matches CANONICAL, where GIVEN is a user-supplied | |
15200 | CPU name. We've traditionally allowed a lot of variation here. | |
15201 | ||
15202 | Note: this function is shared between GCC and GAS. */ | |
15203 | ||
b34976b6 | 15204 | static bfd_boolean |
17a2f251 | 15205 | mips_matching_cpu_name_p (const char *canonical, const char *given) |
316f5878 RS |
15206 | { |
15207 | /* First see if the name matches exactly, or with a final "000" | |
15208 | turned into "k". */ | |
15209 | if (mips_strict_matching_cpu_name_p (canonical, given)) | |
b34976b6 | 15210 | return TRUE; |
316f5878 RS |
15211 | |
15212 | /* If not, try comparing based on numerical designation alone. | |
15213 | See if GIVEN is an unadorned number, or 'r' followed by a number. */ | |
15214 | if (TOLOWER (*given) == 'r') | |
15215 | given++; | |
15216 | if (!ISDIGIT (*given)) | |
b34976b6 | 15217 | return FALSE; |
316f5878 RS |
15218 | |
15219 | /* Skip over some well-known prefixes in the canonical name, | |
15220 | hoping to find a number there too. */ | |
15221 | if (TOLOWER (canonical[0]) == 'v' && TOLOWER (canonical[1]) == 'r') | |
15222 | canonical += 2; | |
15223 | else if (TOLOWER (canonical[0]) == 'r' && TOLOWER (canonical[1]) == 'm') | |
15224 | canonical += 2; | |
15225 | else if (TOLOWER (canonical[0]) == 'r') | |
15226 | canonical += 1; | |
15227 | ||
15228 | return mips_strict_matching_cpu_name_p (canonical, given); | |
15229 | } | |
15230 | ||
15231 | ||
15232 | /* Parse an option that takes the name of a processor as its argument. | |
15233 | OPTION is the name of the option and CPU_STRING is the argument. | |
15234 | Return the corresponding processor enumeration if the CPU_STRING is | |
15235 | recognized, otherwise report an error and return null. | |
15236 | ||
15237 | A similar function exists in GCC. */ | |
e7af610e NC |
15238 | |
15239 | static const struct mips_cpu_info * | |
17a2f251 | 15240 | mips_parse_cpu (const char *option, const char *cpu_string) |
e7af610e | 15241 | { |
316f5878 | 15242 | const struct mips_cpu_info *p; |
e7af610e | 15243 | |
316f5878 RS |
15244 | /* 'from-abi' selects the most compatible architecture for the given |
15245 | ABI: MIPS I for 32-bit ABIs and MIPS III for 64-bit ABIs. For the | |
15246 | EABIs, we have to decide whether we're using the 32-bit or 64-bit | |
15247 | version. Look first at the -mgp options, if given, otherwise base | |
15248 | the choice on MIPS_DEFAULT_64BIT. | |
e7af610e | 15249 | |
316f5878 RS |
15250 | Treat NO_ABI like the EABIs. One reason to do this is that the |
15251 | plain 'mips' and 'mips64' configs have 'from-abi' as their default | |
15252 | architecture. This code picks MIPS I for 'mips' and MIPS III for | |
15253 | 'mips64', just as we did in the days before 'from-abi'. */ | |
15254 | if (strcasecmp (cpu_string, "from-abi") == 0) | |
15255 | { | |
15256 | if (ABI_NEEDS_32BIT_REGS (mips_abi)) | |
15257 | return mips_cpu_info_from_isa (ISA_MIPS1); | |
15258 | ||
15259 | if (ABI_NEEDS_64BIT_REGS (mips_abi)) | |
15260 | return mips_cpu_info_from_isa (ISA_MIPS3); | |
15261 | ||
15262 | if (file_mips_gp32 >= 0) | |
15263 | return mips_cpu_info_from_isa (file_mips_gp32 ? ISA_MIPS1 : ISA_MIPS3); | |
15264 | ||
15265 | return mips_cpu_info_from_isa (MIPS_DEFAULT_64BIT | |
15266 | ? ISA_MIPS3 | |
15267 | : ISA_MIPS1); | |
15268 | } | |
15269 | ||
15270 | /* 'default' has traditionally been a no-op. Probably not very useful. */ | |
15271 | if (strcasecmp (cpu_string, "default") == 0) | |
15272 | return 0; | |
15273 | ||
15274 | for (p = mips_cpu_info_table; p->name != 0; p++) | |
15275 | if (mips_matching_cpu_name_p (p->name, cpu_string)) | |
15276 | return p; | |
15277 | ||
15278 | as_bad ("Bad value (%s) for %s", cpu_string, option); | |
15279 | return 0; | |
e7af610e NC |
15280 | } |
15281 | ||
316f5878 RS |
15282 | /* Return the canonical processor information for ISA (a member of the |
15283 | ISA_MIPS* enumeration). */ | |
15284 | ||
e7af610e | 15285 | static const struct mips_cpu_info * |
17a2f251 | 15286 | mips_cpu_info_from_isa (int isa) |
e7af610e NC |
15287 | { |
15288 | int i; | |
15289 | ||
15290 | for (i = 0; mips_cpu_info_table[i].name != NULL; i++) | |
ad3fea08 | 15291 | if ((mips_cpu_info_table[i].flags & MIPS_CPU_IS_ISA) |
316f5878 | 15292 | && isa == mips_cpu_info_table[i].isa) |
e7af610e NC |
15293 | return (&mips_cpu_info_table[i]); |
15294 | ||
e972090a | 15295 | return NULL; |
e7af610e | 15296 | } |
fef14a42 TS |
15297 | |
15298 | static const struct mips_cpu_info * | |
17a2f251 | 15299 | mips_cpu_info_from_arch (int arch) |
fef14a42 TS |
15300 | { |
15301 | int i; | |
15302 | ||
15303 | for (i = 0; mips_cpu_info_table[i].name != NULL; i++) | |
15304 | if (arch == mips_cpu_info_table[i].cpu) | |
15305 | return (&mips_cpu_info_table[i]); | |
15306 | ||
15307 | return NULL; | |
15308 | } | |
316f5878 RS |
15309 | \f |
15310 | static void | |
17a2f251 | 15311 | show (FILE *stream, const char *string, int *col_p, int *first_p) |
316f5878 RS |
15312 | { |
15313 | if (*first_p) | |
15314 | { | |
15315 | fprintf (stream, "%24s", ""); | |
15316 | *col_p = 24; | |
15317 | } | |
15318 | else | |
15319 | { | |
15320 | fprintf (stream, ", "); | |
15321 | *col_p += 2; | |
15322 | } | |
e7af610e | 15323 | |
316f5878 RS |
15324 | if (*col_p + strlen (string) > 72) |
15325 | { | |
15326 | fprintf (stream, "\n%24s", ""); | |
15327 | *col_p = 24; | |
15328 | } | |
15329 | ||
15330 | fprintf (stream, "%s", string); | |
15331 | *col_p += strlen (string); | |
15332 | ||
15333 | *first_p = 0; | |
15334 | } | |
15335 | ||
15336 | void | |
17a2f251 | 15337 | md_show_usage (FILE *stream) |
e7af610e | 15338 | { |
316f5878 RS |
15339 | int column, first; |
15340 | size_t i; | |
15341 | ||
15342 | fprintf (stream, _("\ | |
15343 | MIPS options:\n\ | |
316f5878 RS |
15344 | -EB generate big endian output\n\ |
15345 | -EL generate little endian output\n\ | |
15346 | -g, -g2 do not remove unneeded NOPs or swap branches\n\ | |
15347 | -G NUM allow referencing objects up to NUM bytes\n\ | |
15348 | implicitly with the gp register [default 8]\n")); | |
15349 | fprintf (stream, _("\ | |
15350 | -mips1 generate MIPS ISA I instructions\n\ | |
15351 | -mips2 generate MIPS ISA II instructions\n\ | |
15352 | -mips3 generate MIPS ISA III instructions\n\ | |
15353 | -mips4 generate MIPS ISA IV instructions\n\ | |
15354 | -mips5 generate MIPS ISA V instructions\n\ | |
15355 | -mips32 generate MIPS32 ISA instructions\n\ | |
af7ee8bf | 15356 | -mips32r2 generate MIPS32 release 2 ISA instructions\n\ |
316f5878 | 15357 | -mips64 generate MIPS64 ISA instructions\n\ |
5f74bc13 | 15358 | -mips64r2 generate MIPS64 release 2 ISA instructions\n\ |
316f5878 RS |
15359 | -march=CPU/-mtune=CPU generate code/schedule for CPU, where CPU is one of:\n")); |
15360 | ||
15361 | first = 1; | |
e7af610e NC |
15362 | |
15363 | for (i = 0; mips_cpu_info_table[i].name != NULL; i++) | |
316f5878 RS |
15364 | show (stream, mips_cpu_info_table[i].name, &column, &first); |
15365 | show (stream, "from-abi", &column, &first); | |
15366 | fputc ('\n', stream); | |
e7af610e | 15367 | |
316f5878 RS |
15368 | fprintf (stream, _("\ |
15369 | -mCPU equivalent to -march=CPU -mtune=CPU. Deprecated.\n\ | |
15370 | -no-mCPU don't generate code specific to CPU.\n\ | |
15371 | For -mCPU and -no-mCPU, CPU must be one of:\n")); | |
15372 | ||
15373 | first = 1; | |
15374 | ||
15375 | show (stream, "3900", &column, &first); | |
15376 | show (stream, "4010", &column, &first); | |
15377 | show (stream, "4100", &column, &first); | |
15378 | show (stream, "4650", &column, &first); | |
15379 | fputc ('\n', stream); | |
15380 | ||
15381 | fprintf (stream, _("\ | |
15382 | -mips16 generate mips16 instructions\n\ | |
15383 | -no-mips16 do not generate mips16 instructions\n")); | |
15384 | fprintf (stream, _("\ | |
e16bfa71 TS |
15385 | -msmartmips generate smartmips instructions\n\ |
15386 | -mno-smartmips do not generate smartmips instructions\n")); | |
15387 | fprintf (stream, _("\ | |
74cd071d CF |
15388 | -mdsp generate DSP instructions\n\ |
15389 | -mno-dsp do not generate DSP instructions\n")); | |
15390 | fprintf (stream, _("\ | |
8b082fb1 TS |
15391 | -mdspr2 generate DSP R2 instructions\n\ |
15392 | -mno-dspr2 do not generate DSP R2 instructions\n")); | |
15393 | fprintf (stream, _("\ | |
ef2e4d86 CF |
15394 | -mmt generate MT instructions\n\ |
15395 | -mno-mt do not generate MT instructions\n")); | |
15396 | fprintf (stream, _("\ | |
d766e8ec | 15397 | -mfix-vr4120 work around certain VR4120 errata\n\ |
7d8e00cf | 15398 | -mfix-vr4130 work around VR4130 mflo/mfhi errata\n\ |
316f5878 RS |
15399 | -mgp32 use 32-bit GPRs, regardless of the chosen ISA\n\ |
15400 | -mfp32 use 32-bit FPRs, regardless of the chosen ISA\n\ | |
aed1a261 | 15401 | -msym32 assume all symbols have 32-bit values\n\ |
316f5878 RS |
15402 | -O0 remove unneeded NOPs, do not swap branches\n\ |
15403 | -O remove unneeded NOPs and swap branches\n\ | |
316f5878 RS |
15404 | --trap, --no-break trap exception on div by 0 and mult overflow\n\ |
15405 | --break, --no-trap break exception on div by 0 and mult overflow\n")); | |
037b32b9 AN |
15406 | fprintf (stream, _("\ |
15407 | -mhard-float allow floating-point instructions\n\ | |
15408 | -msoft-float do not allow floating-point instructions\n\ | |
15409 | -msingle-float only allow 32-bit floating-point operations\n\ | |
15410 | -mdouble-float allow 32-bit and 64-bit floating-point operations\n\ | |
15411 | --[no-]construct-floats [dis]allow floating point values to be constructed\n" | |
15412 | )); | |
316f5878 RS |
15413 | #ifdef OBJ_ELF |
15414 | fprintf (stream, _("\ | |
15415 | -KPIC, -call_shared generate SVR4 position independent code\n\ | |
861fb55a | 15416 | -call_nonpic generate non-PIC code that can operate with DSOs\n\ |
0c000745 | 15417 | -mvxworks-pic generate VxWorks position independent code\n\ |
861fb55a | 15418 | -non_shared do not generate code that can operate with DSOs\n\ |
316f5878 | 15419 | -xgot assume a 32 bit GOT\n\ |
dcd410fe | 15420 | -mpdr, -mno-pdr enable/disable creation of .pdr sections\n\ |
bbe506e8 | 15421 | -mshared, -mno-shared disable/enable .cpload optimization for\n\ |
d821e36b | 15422 | position dependent (non shared) code\n\ |
316f5878 RS |
15423 | -mabi=ABI create ABI conformant object file for:\n")); |
15424 | ||
15425 | first = 1; | |
15426 | ||
15427 | show (stream, "32", &column, &first); | |
15428 | show (stream, "o64", &column, &first); | |
15429 | show (stream, "n32", &column, &first); | |
15430 | show (stream, "64", &column, &first); | |
15431 | show (stream, "eabi", &column, &first); | |
15432 | ||
15433 | fputc ('\n', stream); | |
15434 | ||
15435 | fprintf (stream, _("\ | |
15436 | -32 create o32 ABI object file (default)\n\ | |
15437 | -n32 create n32 ABI object file\n\ | |
15438 | -64 create 64 ABI object file\n")); | |
15439 | #endif | |
e7af610e | 15440 | } |
14e777e0 KB |
15441 | |
15442 | enum dwarf2_format | |
413a266c | 15443 | mips_dwarf2_format (asection *sec ATTRIBUTE_UNUSED) |
14e777e0 | 15444 | { |
369943fe | 15445 | if (HAVE_64BIT_SYMBOLS) |
1de5b6a1 AO |
15446 | { |
15447 | #ifdef TE_IRIX | |
15448 | return dwarf2_format_64bit_irix; | |
15449 | #else | |
15450 | return dwarf2_format_64bit; | |
15451 | #endif | |
15452 | } | |
14e777e0 KB |
15453 | else |
15454 | return dwarf2_format_32bit; | |
15455 | } | |
73369e65 EC |
15456 | |
15457 | int | |
15458 | mips_dwarf2_addr_size (void) | |
15459 | { | |
369943fe | 15460 | if (HAVE_64BIT_SYMBOLS) |
73369e65 | 15461 | return 8; |
73369e65 EC |
15462 | else |
15463 | return 4; | |
15464 | } | |
5862107c EC |
15465 | |
15466 | /* Standard calling conventions leave the CFA at SP on entry. */ | |
15467 | void | |
15468 | mips_cfi_frame_initial_instructions (void) | |
15469 | { | |
15470 | cfi_add_CFA_def_cfa_register (SP); | |
15471 | } | |
15472 | ||
707bfff6 TS |
15473 | int |
15474 | tc_mips_regname_to_dw2regnum (char *regname) | |
15475 | { | |
15476 | unsigned int regnum = -1; | |
15477 | unsigned int reg; | |
15478 | ||
15479 | if (reg_lookup (®name, RTYPE_GP | RTYPE_NUM, ®)) | |
15480 | regnum = reg; | |
15481 | ||
15482 | return regnum; | |
15483 | } |